diff --git a/com.unity.postprocessing/.signature b/com.unity.postprocessing/.signature new file mode 100644 index 0000000..89ef440 --- /dev/null +++ b/com.unity.postprocessing/.signature @@ -0,0 +1,5 @@ +{ + "timestamp": 1649276899, + "signature": "Uz3yekLHtnWL7w25ej6xvIKNRTSenmg5xgFVCW/d13pvms7Gv/OvUgVrm6FkjXVGQ+jf42aX7CK3w9lk70098i7QvvIchXRRiVE3gsdPJ33GJFqwbBJHhtc9mG3Y0DAwjbEWOYPlf55IgtXUmKyvaa4+jD+hBs4T0NqNhleIinDVOvSVZBLIBhnmQAMMOqhMqV4f8MnfbYxE1V2bq6D1bTyJ0toVLdEzteCrlIMc/Wudo2MUV3/ewvRWsVmPJuNPSzriRgZ/bArBz/uMX1TZgIzYPPif5y++cAa2higr7kcCS6WZwrq5wS+h/zeQpstDB8gv/GtS+GI+WiG1qqeOubKe30Ug4zlG9pL0wniTpJ6ZYAOTSvcOYqstKpDBM/EoCOn7y+ZxkKOVbAt2b6faRTJGrtTs+fnRQwj14ybInBXRWthTuiTXAbu3MN5N0eR/JFWB3C1+1siBTkJoWAD13jHK33fBtKctzCxED3DGMmjFQiUUVEo8XetLspKJCpHD", + "publicKey": "LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQm9qQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FZOEFNSUlCaWdLQ0FZRUFzdUhXYUhsZ0I1cVF4ZEJjTlJKSAordHR4SmoxcVY1NTdvMlZaRE1XaXhYRVBkRTBEMVFkT1JIRXNSS1RscmplUXlERU83ZlNQS0ZwZ1A3MU5TTnJCCkFHM2NFSU45aHNQVDhOVmllZmdWem5QTkVMenFkVmdEbFhpb2VpUnV6OERKWFgvblpmU1JWKytwbk9ySTRibG4KS0twelJlNW14OTc1SjhxZ1FvRktKT0NNRlpHdkJMR2MxSzZZaEIzOHJFODZCZzgzbUovWjBEYkVmQjBxZm13cgo2ZDVFUXFsd0E5Y3JZT1YyV1VpWXprSnBLNmJZNzRZNmM1TmpBcEFKeGNiaTFOaDlRVEhUcU44N0ZtMDF0R1ZwCjVNd1pXSWZuYVRUemEvTGZLelR5U0pka0tldEZMVGdkYXpMYlpzUEE2aHBSK0FJRTJhc0tLTi84UUk1N3UzU2cKL2xyMnZKS1IvU2l5eEN1Q20vQWJkYnJMbXk0WjlSdm1jMGdpclA4T0lLQWxBRWZ2TzV5Z2hSKy8vd1RpTFlzUQp1SllDM0V2UE16ZGdKUzdGR2FscnFLZzlPTCsxVzROY05yNWdveVdSUUJ0cktKaWlTZEJVWmVxb0RvSUY5NHpCCndGbzJJT1JFdXFqcU51M3diMWZIM3p1dGdtalFra3IxVjJhd3hmcExLWlROQWdNQkFBRT0KLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg" +} \ No newline at end of file diff --git a/com.unity.postprocessing/CHANGELOG.md b/com.unity.postprocessing/CHANGELOG.md new file mode 100644 index 0000000..12023f3 --- /dev/null +++ b/com.unity.postprocessing/CHANGELOG.md @@ -0,0 +1,337 @@ +# Changelog +All notable changes to this package will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [3.3.1] - 2023-06-02 + +### Fixed +- Fixed obsolete FormatUsage bug + +## [3.3.0] - 2023-05-11 + +### Fixed +- Fixed some post effects not scaling correctly when dynamic resolution is enabled on a camera's target texture (case 1166603) +- Fixed obsolete API call GetScriptingDefineSymbolsForGroup +- Remove support for OpenGL ES 2.0 in Unity 2023.1 or newer + +## [3.2.2] - 2022-04-05 + +### Fixed +- Fixed FXAA artefact when trying to preserve alpha channel output. +- Fixed MSVO aliasing artifact by using a z-Bias parameter. (case 1375337) + +## [3.2.1] - 2022-01-12 + +### Fixed +- Fixed missing XR warnings for XR non-friendly effects when using XR plugins (case 1328062) +- Fixed rendering artifacts when depth buffer is used after screen space reflections pass on iOS and M1 (case 1341052) +- Fixed compilation error when built-in VR module is disabled (case 1389160) +- Fixed bug where alpha could not be used with HDR on mobile (case 1387848). HDR texture format is now set from Graphics Tier Settings when using Unity 2019.3 or newer. +- Fixed incorrect Screen-space Reflections rendering on OpenGL platforms (case 1368370) + +## [3.2.0] - 2021-11-15 + +### Fixed +- Catch thrown errors in `PostProcessEffectRenderer`, preventing resources allocation leaks and crash (case 1221972) +- Fixed error thrown when changing post process layer right after creation or before destruction. +- Fix FXAA when render-target has no alpha channel (case 1344618) (case 1351502) + +## [3.1.1] - 2021-03-08 + +### Fixed +- Fix for broken MSVO on desktop platforms. +- Fix for compilation issue with BuildTarget error on XboxOne platform. + +## [3.1.0] - 2021-03-02 + +### Added +- Support for the PlayStation 5 platform has been added. +- Support for the XboxSeries platform has been added. + +### Fixed +- Fix for issue thrown upon unloading a scene from an AssetBundle (case 1262826) +- Fix for MSVO when used with dynamic resolution reallocating temporary render targets whenever the dynamic resolution scale was changed which could cause a higher peak VRAM usage and fragmentation (Case 1285605). Temporary targets will now use dynamic scaling as well to solve this. Please note there is a bug in Unity that breaks this fix (case 1285577) To make use of dynamic resolution and MSVO please use Unity 2019.4.19f1, 2020.2.2f1, 2021.1.0a9 or later. +- Fix for compilation error in the FinalPass shader with GLES2/WebGL1 (case 1311160) +- Fix for MSVO errors on unsupported Android platforms (case 1316915) + +## [3.0.3] - 2021-02-19 + +- bump version to 3.0.3 to not conflict with unrelease 3.0.2 + +## [3.0.2] - 2020-12-08 + +### Fixed +- Fix FXAA when running on render-targets without alpha channel: force using green channel as luminance + +### Changed +- ResetProjection isn't being called anymore if Temporal Anti-aliasing isn't enabled, allowing the use of custom projection matrices. + +## [3.0.1] - 2020-10-15 + +### Fixed +- Fix for a compilation error in the Depth of Field shader on Linux. + +## [3.0.0] - 2020-10-13 + +### Fixed +- Fix for VR Single Pass Instancing (SPI) not working with the built-in renderers. Only effects that currently support SPI for use with SRP will work correctly (so AO for example will not work with SPI even with this fix) (case 1187257) +- Fix for shader compilation errors when importing the 3D+Extras template (case 1234411) +- Fix Duplicated RenderTextures when using MultiScaleVO on Xbox (case 1235888) +- Fix for the rendering being broken when an SRP is in use and its asset comes from quality settings instead of graphics settings. +- Fix for burger buttons on volume components being misaligned on 2019.3+ (case 1238461) +- Fix for depth buffer being discarded when using deferred fog with Vulkan (case 1271512) +- Fix for compilation errors when the built-in VR package is disabled (case 1266931) +- Fix for Temporal Anti-Aliasing produces artifacts on the edges of objects when using VR (case 1167219) +- Fix for blurry image when using the Post Process Layer in single-pass VR (case 1173697) +- Fix for ambient occlusion is misaligned when using single pass rendering VR mode (case 1217583) + +### Changed +- Motion Blur and Lens Distortion are disabled only when rendering with stereo cameras instead of having VR enabled in the project. +- Minimum Unity version for this version has been bumped to 2018.4. + +## [2.3.0] - 2020-01-10 + +### Fixed +- Fix for XR multipass and legacy built-in renderer (case 1197855, 1152584) +- Optimized type lookup on domain reload in the editor (case 1203325) +- Fixed a serialization issue causing an assertion on resources (case 1202441) + +## [2.2.2] - 2019-11-18 + +### Fixed +- Fixed deprecated XR API usage. + +## [2.2.1] - 2019-11-07 + +### Fixed +- Fixed a compilation warning with Unity 2019.3 and 2020.1. + +### Changed +- Following a change in the compilation pipeline, this version is only compatible with Unity 2017.2 and up. + +## [2.1.9] - 2019-10-24 + +### Fixed +- Shader compilation error on PS4 with Unity 2019.3. + +## [2.1.8] - 2019-10-11 + +### Added +- Support for dynamic resolution. + +### Fixed +- Potential fp16 overflow in Depth of Field that could cause NaN on some platforms. +- Error with Screen-space Reflections when HDR is disabled. +- Internal "copy" materials were recreated on every frame after the asset bundle-related fix from 2.1.7. + +## [2.1.7] - 2019-06-12 + +### Added +- Initial Stadia platform support. + +### Fixed +- Viewport handling wasn't working correctly when FXAA or SMAA were used with builtin pipelines. +- Depth of Field could end up fully blurry depending on the project setup. +- Reloading an asset bundle that has references to post-processing was broken. + +### Changed +- Warning for mobiles about using post-processing with non-fullscreen cameras. +- Directly to Camera Target on the PostProcessLayer component is now disabled by default. +- The framework now uses its own random number generator instead of the default Unity one. + +## [2.1.6] - 2019-04-11 + +### Fixed +- Post-processing would crash if "Managed Stripping Level" was set to Medium or High. +- Serialization warnings on build. +- Removed unwanted garbage collection. + +## [2.1.5] - 2019-03-25 + +### Fixed +- LDR Color grading in gamma mode no longer produces banding artifacts on Mali GPUs on OpenGL ES2. +- Gamma mode no longer darken the screen with LWRP. + +## [2.1.4] - 2019-02-27 + +### Fixed +- Shader compilation errors with OpenGL ES2 and other platforms. +- Proper viewport support on Builtin render pipelines. + +## [2.1.3] - 2019-01-30 + +### Fixed +- Color grading would output negative values in some cases and break rendering on some platforms. +- Custom effects with `allowInSceneView` set to `false` could make the scene view flicker to black. +- R8_SRGB error in 2019.1 when Depth of Field and Temporal Anti-aliasing are enabled at the same time. +- Auto-exposure compute shader on Metal/iOS. + +## [2.1.2] - 2018-12-05 + +### Fixed +- Made the package manager happy. + +## [2.1.1] - 2018-11-30 + +### Fixed +- Optimized volume texture blending. +- Compilation issues with 2019.1+ on some platforms. + +### Changed +- Chromatic aberration is now forced to "fast mode" when running on GLES2.0 platforms due to compatibility issues. + +## [2.1.0] - 2018-11-26 + +### Changed +- Minor version bump following the release of 2018.3 and verified compatibility with 2019.1. + +## [2.0.20] - 2018-11-22 + +### Fixed +- Camera viewport wasn't working properly when outputting directly to the backbuffer. +- More improvements to VR support. +- Compatibility fixes for 2017.1 to 2017.4. +- Post-processing wouldn't work when loaded from an asset bundle. +- Compilation issue when Cinemachine is used with Post-processing. + +### Changed +- Scriptable Render Pipelines should now call `PostProcessLayer.UpdateVolumeSystem(Camera, CommandBuffer)` at the beginning of the frame. + +## [2.0.17-preview] - 2018-11-06 + +### Fixed +- First pass at improving VR support. +- Assert on Invalid LDR Lookup Texture size; added a check in the inspector for the user. +- Improved performance on Unity 2019.1+ by avoiding unnecessary blits if no other image effect is active. +- Use new ASTC enums on unity 2019.1+. + +## [2.0.16-preview] - 2018-10-23 + +### Fixed +- Grain shader compilation errors on some mobile GPUs. +- Compilation issue with Unity 2019.1+ due to an internal API change. + +## [2.0.15-preview] - 2018-10-12 + +### Fixed +- Warning on `[ShaderIncludePath]` in 2018.3+. + +## [2.0.14-preview] - 2018-10-05 + +### Fixed +- Bloom flicker in single-pass double-wide stereo rendering. +- Right eye bloom offset in single-pass double-wide stereo rendering. +- If any parent of PostProcessingVolume has non-identity scale the Gizmo is rendered incorrectly. +- Cleanup error when going back'n'forth between Builtins & Scriptable pipelines. + +### Changed +- Use `ExecuteAlways` in 2018.3+ for better compatibility with "Prefab Mode". + +## [2.0.13-preview] - 2018-09-14 + +### Fixed +- Compilation issue with Unity 2019.1. +- Screen-space reflection memory leak. + +## [2.0.12-preview] - 2018-09-07 + +### Fixed +- Ambient Occlusion could distort the screen on Android/Vulkan. +- Warning about SettingsProvider in 2018.3. +- Fixed issue with physical camera mode not working with post-processing. +- Fixed thread group warning message on Metal and Intel Iris. +- Fixed compatibility with versions pre-2018.2. + +## [2.0.10-preview] - 2018-07-24 + +### Fixed +- Better handling of volumes in nested-prefabs. +- The Multi-scale volumetric obscurance effect wasn't properly releasing some of its temporary targets. +- N3DS deprecation warnings in 2018.3. + +## [2.0.9-preview] - 2018-07-16 + +### Changed +- Update assembly definitions to output assemblies that match Unity naming convention (Unity.*). + +## [2.0.8-preview] - 2018-07-06 + +### Fixed +- Post-processing is now working with VR SRP in PC. +- Crash on Vulkan when blending 3D textures. +- `RuntimeUtilities.DestroyVolume()` works as expected now. +- Excessive CPU usage on PS4 due to a badly initialized render texture. + +### Changed +- Improved volume texture blending. + +### Added +- `Depth` debug mode can now display linear depth instead of the raw platform depth. + +## [2.0.7-preview] - 2018-05-31 + +### Fixed +- Post-processing wasn't working on Unity 2018.3. + +### Added +- Bloom now comes with a `Clamp` parameter to limit the amount of bloom that comes with ultra-bright pixels. + +## [2.0.6-preview] - 2018-05-24 + +### Fixed +- On large scenes, the first object you'd add to a profile could throw a `NullReferenceException`. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) +- Dithering now works correctly in dark areas when working in Gamma mode. +- Colored grain wasn't colored when `POSTFX_DEBUG_STATIC_GRAIN` was set. +- No more warning in the console when `POSTFX_DEBUG_STATIC_GRAIN` is set. + +### Changed +- Minor scripting API improvements. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) +- More implicit casts for `VectorXParameter` and `ColorParameter` to `Vector2`, `Vector3` and `Vector4`. +- Script-instantiated profiles in volumes are now properly supported in the inspector. ([#530](https://github.com/Unity-Technologies/PostProcessing/pull/530)) +- Improved volume UI & styling. + +## [2.0.5-preview] - 2018-04-20 + +### Fixed +- More XR/platform-specific related fixes. + +## [2.0.4-preview] - 2018-04-19 + +### Fixed +- Temporal Anti-aliasing creating NaN values in some cases. ([#337](https://github.com/Unity-Technologies/PostProcessing/issues/337)) +- Auto-exposure has been fixed to work the same way it did before the full-compute port. +- XR compilation errors specific-platforms (2018.2). +- `ArgumentNullException` when attempting to get a property sheet for a null shader. ([#515](https://github.com/Unity-Technologies/PostProcessing/pull/515)) +- Stop NaN Propagation not working for opaque-only effects. +- HDR color grading had a slight color temperature offset. +- PSVita compatibility. +- Tizen warning on 2018.2. +- Errors in the console when toggling lighting on/off in the scene view when working in Deferred. +- Debug monitors now work properly with HDRP. + +### Added +- Contribution slider for the LDR Lut. +- Support for proper render target load/store actions on mobile (2018.2). + +### Changed +- Slightly improved speed & quality of Temporal Anti-aliasing. +- Improved volume texture blending. +- Improved support for LDR Luts of sizes other than 1024x32. ([#507](https://github.com/Unity-Technologies/PostProcessing/issues/507)) +- Bloom's `Fast Mode` has been made faster. +- Depth of Field focus is now independent from the screen resolution. +- The number of variants for some shaders has been reduced to improve first-build speed. The biggest one, Uber, is down to 576 variants. + +## [2.0.3-preview] - 2018-03-13 + +### Fixed +- Disabled debug compute shaders on OpenGL ES3 to avoid crashes on a lot of Android devices. +- `NullReferenceException` while mixing volumes and global volumes. ([#498](https://github.com/Unity-Technologies/PostProcessing/issues/498)) + +### Changed +- Improved performances when blending between identical textures. + +## [2.0.2-preview] - 2018-03-07 + +This is the first release of *PostProcessing*. diff --git a/com.unity.postprocessing/CHANGELOG.md.meta b/com.unity.postprocessing/CHANGELOG.md.meta new file mode 100644 index 0000000..d950c2e --- /dev/null +++ b/com.unity.postprocessing/CHANGELOG.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 76eb0b51417a8442180aa67edda7d01a +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Documentation~/Ambient-Occlusion.md b/com.unity.postprocessing/Documentation~/Ambient-Occlusion.md new file mode 100644 index 0000000..d14b599 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Ambient-Occlusion.md @@ -0,0 +1,68 @@ +# Ambient Occlusion + +The **Ambient Occlusion** effect calculates points in your scene that are exposed to ambient lighting. It then darkens areas that are hidden from the ambient light, such as creases, holes, and spaces between objects which are close together. + +You can achieve the **Ambient Occlusion** effect in two ways: in real-time as a full-screen post-processing effect, or as a baked lighting effect (see [Baked Ambient Occlusion](https://docs.unity3d.com/Manual/LightingBakedAmbientOcclusion.html)). The real-time **Ambient Occlusion** effect can be resource-intensive, which makes it better for desktop or console platforms. Its impact on processing time depends on screen resolution and effects properties. + +The **Ambient Occlusion** effect in this package has two modes: + +- Scalable Ambient Obscurance +- Multi-scale Volumetric Occlusion + +![Scene rendered without Ambient Occlusion effect](images/ao-off.png) +Scene without **Ambient Occlusion**. + +![Scene rendered with Ambient Occlusion effect](images/ao-on.png) +Scene with **Ambient Occlusion**. + +## Scalable Ambient Obscurance + +This is a standard implementation of ambient obscurance that works on older platforms. If you need to target a compute-enabled platform, use the [**Multi-scale Volumetric Occlusion**](multi-scale-volumetric-occlusion) mode instead. + +### Performance + +The **Scalable Ambient Obscurance** mode can be resource-intensive, especially when viewed very close to the Camera. To improve performance, use a low `Radius` setting, to sample pixels that are close and in clip space to the source pixel. This makes caching more efficient. Using a higher `Radius` setting generates samples further away from the source pixel and won’t benefit from caching, which slows down the effect. + +Because of the Camera’s perspective, objects near the front plane use larger radiuses than those far away, so computing the ambient occlusion pass for an object close to the camera will be slower than for an object further away that only occupies a few pixels on screen. + +Dropping the `Quality` setting down will improve performance too. + +**Scalable Ambient Obsurance** should not be used on mobile platforms or consoles as the **Multi-scale Volumetric Occlusion** mode is faster and provides better graphics for these platforms. + +### Requirements + +- Depth & Normals textures +- Shader model 3 + +### Properties + +| Property | Function | +| :----------- | :------------------------------------------------------------ | +| Mode | Select the type of **Ambient Occlusion** to use. | +| Intensity | Adjust the degree of darkness **Ambient Occlusion** produces. | +| Radius | Set the radius of sample points, which controls the extent of darkened areas. | +| Quality | Define the number of sample points, which affects quality and performance. | +| Color | Set the tint color of the ambient occlusion. | +| Ambient Only | Enable this checkbox to make the **Ambient Occlusion** effect only affect ambient lighting. This option is only available with the Deferred rendering path and HDR rendering. | + + + +## Multi-scale Volumetric Occlusion + +This mode is optimized for consoles and desktop platforms. It has better graphics and runs faster than **Scalable Ambient Obscurance** on these platforms but requires [compute shader support](https://docs.unity3d.com/Manual/class-ComputeShader.html). + +### Requirements + +- Compute shader support +- Shader model 4.5 + +### Properties + +| Property | Function | +| :----------------- | :------------------------------------------------------------ | +| Mode | Select the type of **Ambient Occlusion** to use. | +| Intensity | Adjust the degree of darkness **Ambient Occlusion** produces. | +| Thickness Modifier | Modify the thickness of occluders. This increases dark areas but can introduce dark halos around objects. | +| Z Bias | Modifies the z-bias to the depth buffer. This eliminates the banding aliasing artifact for MSVO. | +| Color | Set the tint color of the ambient occlusion. | +| Ambient Only | Enable this checkbox to make the **Ambient Occlusion** effect only affect ambient lighting. This option is only available with the Deferred rendering path and HDR rendering. | diff --git a/com.unity.postprocessing/Documentation~/Anti-aliasing.md b/com.unity.postprocessing/Documentation~/Anti-aliasing.md new file mode 100644 index 0000000..ba71062 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Anti-aliasing.md @@ -0,0 +1,89 @@ +# Anti-aliasing + +The **Anti-aliasing** effect softens the appearance of edges in your scene. To do this, it surrounds the edge with similar points of color. This reduces the jagged effect caused by [aliasing](https://en.wikipedia.org/wiki/Aliasing). + +![Example of anti-aliasing smoothing the edges of shapes](images/screenshot-antialiasing.png) + +The Post-processing anti-aliasing algorithms are image-based, which is useful when support for traditional multisampling is not available, such as the [deferred rendering](https://docs.unity3d.com/Manual/RenderTech-DeferredShading.html) path. You can configure the rendering settings in the [Quality settings](https://docs.unity3d.com/Manual/class-QualitySettings.html) window. + +The Post-processing stack offers the following anti-aliasing modes: + +- [**Fast Approximate Anti-aliasing (FXAA)**](#fast-approximate-anti-aliasing); a fast algorithm for mobile and platforms that don’t support motion vectors. +- [**Subpixel Morphological Anti-aliasing (SMAA)**](#subpixel-morphological-anti-aliasing); a high-quality but slower algorithm for mobile and platforms that don’t support motion vectors. +- [**Temporal Anti-aliasing (TAA)**](#temporal-anti-aliasing); an advanced technique which requires motion vectors. Ideal for desktop and console platforms. + +Each mode is set per-camera in the **Post-process Layer** component. + + + +## Fast Approximate Anti-aliasing (FXAA) + +**FXAA** is the most efficient anti-aliasing technique. It's ideal for mobile and other platforms that don’t support motion vectors, which are required for **Temporal Anti-aliasing**. + +### Properties + +| Property | Function | +| :--------- | :----------------------------------------------------------- | +| Mode | Select the type of **Anti-Aliasing** to use. | +| Fast Mode | Enable **Fast Mode** for a lower quality but faster variant of FXAA. This option is ideal for mobile platforms. | +| Keep Alpha | Enable **Keep Alpha** to keep the alpha channel untouched by post-processing. If Keep Alpha is disabled, Unity uses the alpha channel to store internal data used to speed up and improve visual quality. | + +### Performance + +Enable `Fast Mode` if you are developing for mobile devices to get a performance boost. It will also provide a small boost for consoles. `Fast Mode` does not provide any extra benefits for desktop GPUs. In this case regular mode should be used for added visual quality. + +### Requirements + +- Shader Model 3 + + + +## Subpixel Morphological Anti-aliasing (SMAA) + +**SMAA** is a higher quality anti-aliasing effect than **FXAA** but it's also slower. Depending on the art-style of your game it can work as well as **Temporal Anti-aliasing** while avoiding some of the shortcomings of this technique. + +### Properties + +| Property | Function | +| :------- | :----------------------------------------------- | +| Mode | Select the type of **Anti-Aliasing** to use. | +| Quality | Set the overall quality of the anti-aliasing filter. | + +### Performance + +Lowering the `Quality` setting makes the effect run faster. Do not use **SMAA** on mobile platforms. + +### Known issues and limitations + +- SMAA doesn't support AR/VR. + +### Requirements + +- Shader Model 3 + + + +## Temporal Anti-aliasing (TAA) + +**TAA** is an advanced anti-aliasing technique where frames are accumulated over time in a history buffer to be used to smooth edges more effectively. It is substantially better at smoothing edges in motion but requires motion vectors and is more expensive than **FXAA**. It is ideal for desktop and console platforms. + +### Properties + +| Property | Function | +| :------------------ | :----------------------------------------------------------- | +| Mode | Select the type of **Anti-Aliasing** to use. | +| Jitter Spread | Set the diameter (in texels) over which Unity spreads jitter samples. Smaller values result in crisper but a more aliased output. Larger values result in more stable but blurrier output. | +| Stationary Blending | Set the blend coefficient for stationary fragments. This setting controls the percentage of history sample blended into final color for fragments with minimal active motion. | +| Motion Blending | Set the blending coefficient for moving fragments. This setting controls the percentage of history sample blended into the final color for fragments with significant active motion. | +| Sharpness | Set the sharpness to alleviate the slight loss of details in high frequency regions which can be caused by TAA. | + +### Known issues and limitations + +- Not supported on GLES2 platforms. +- [Universal Render Pipeline (URP)](https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@7.5/manual/index.html) does not support Temporal Anti-aliasing. + +### Requirements + +- Motion vectors +- Depth texture +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Auto-Exposure.md b/com.unity.postprocessing/Documentation~/Auto-Exposure.md new file mode 100644 index 0000000..00d2f67 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Auto-Exposure.md @@ -0,0 +1,51 @@ +# Auto Exposure + +The **Auto Exposure** effect simulates how the human eye adjusts to changes in brightness in real-time. To do this, it dynamically adjusts the exposure of an image to match its mid-tone. + +In Unity, this effect generates a histogram on every frame and filters it to find the average luminance value. This histogram and the **Auto Exposure** effect requires [Compute shader](https://docs.unity3d.com/Manual/class-ComputeShader.html) support. + +![Scene rendered without the Auto Exposure effect](images/auto-exposure-off.png) +Scene without **Auto Exposure**. + +![Scene rendered with the Auto Exposure effect](images/auto-exposure-on.png) +Scene with **Auto Exposure**. + +### Properties + +**Exposure** settings: + +| Property | Function | +| :--------------------- | :------------------------------------------------------------ | +| Filtering | Set the lower and upper percentages of the histogram that find a stable average luminance. Values outside of this range will be discarded and won't contribute to the average luminance. | +| Minimum | Set the minimum average luminance to consider for auto exposure in EV. | +| Maximum | Set the maximum average luminance to consider for auto exposure in EV. | +| Exposure Compensation | Set the middle-grey value to compensate the global exposure of the scene. | + +**Adaptation** settings: + +| Property | Function | +| :---------- | :------------------------------------------------------------ | +| Type | Select the Adaptation type. **Progressive** animates the Auto Exposure. **Fixed** does not animate the Auto Exposure. | +| Speed Up | Set the Adaptation speed from a dark to a light environment. | +| Speed Down | Set the Adaptation speed from a light to a dark environment. | + +### Details + +Use the `Filtering` range to exclude the darkest and brightest part of the image so that very dark and very bright pixels do not contribute to the average luminance. Values are in percent. + +`Minimum`/`Maximum` values clamp the computed average luminance into a given range. + +You can set the `Type` to `Fixed` and it will behave like an auto-exposure setting. + +You can debug the exposure in your scene with the **Post-process Debug** component. To do this, add the **Post-process Debug** component to your Camera and enable the **Light Meter** monitor. + +The Light Meter monitor creates a logarithmic histogram that appears in the **Game** window. This displays information about the exposure in your scene in real time. For more information, see [Debugging](#Debugging). + +![Debugging Light Meter Graph](Images/Ppv2-Debugging-Light-Meter-Graph.png) + +The Light Meter monitor. + +### Requirements + +- Compute shader +- Shader model 5 diff --git a/com.unity.postprocessing/Documentation~/Bloom.md b/com.unity.postprocessing/Documentation~/Bloom.md new file mode 100644 index 0000000..e07aef0 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Bloom.md @@ -0,0 +1,43 @@ +# Bloom + +The **Bloom** effect makes bright areas in your image glow. To do this, it creates fringes of light that extend from bright areas in your image. This simulates the effect a real-world camera gives when light overwhelms the lens. + +The Bloom effect also has a **Dirtiness** feature, which you can use to apply a full-screen layer of smudges or dust to diffract the Bloom effect. + +![Bloom applied to a glowing orb in a dark space](images/PostProcessing-Bloom-0.png) + +### Properties + +**Bloom** settings: + +| Property | Function | +| :---------------- | :------------------------------------------------------------ | +| Intensity | Set the strength of the **Bloom** filter. | +| Threshold | Set the level of brightness to filter out pixels under this level. This value is expressed in gamma-space. | +| Soft Knee | Set the gradual threshold for transitions between under/over-threshold (0 = hard threshold, 1 = soft threshold). | +| Clamp | Set the value for clamping pixels to control the **Bloom** amount. This value is expressed in gamma-space. | +| Diffusion | Set the extent of veiling effects in a screen resolution-independent fashion. | +| Anamorphic Ratio | Set the ratio to scale the **Bloom** vertically (in range [-1,0]) or horizontally (in range [0,1]). This emulates the effect of an anamorphic lens. | +| Color | Select the color of the tint of the **Bloom** filter. | +| Fast Mode | Enable this checkbox to boost performance by lowering the **Bloom** effect quality. | + +**Dirtiness** settings: + +| Property | Function | +| --------- | ----------------------------------------------------- | +| Texture | Select a Dirtiness texture to add smudges or dust to the lens. | +| Intensity | Set the amount of lens dirtiness. | + +### Details + +With properly exposed HDR scenes, the `Threshold` should be set to ~1 so that only pixels with values above 1 leak into surrounding objects. Lower this value when working in LDR or the Bloom effect won’t be visible. + +### Performance + +Lowering the `Diffusion` parameter will make the effect faster. The further away `Anamorphic Ratio` is from 0, the slower it will be. Enable `Fast Mode` if you are developing for mobile or low-end platforms to get a significant boost in performance. + +Lower resolution lens dirt textures result in faster lookup and blending across volumes. + +### Requirements + +- Shader model 3 diff --git a/com.unity.postprocessing/Documentation~/Chromatic-Aberration.md b/com.unity.postprocessing/Documentation~/Chromatic-Aberration.md new file mode 100644 index 0000000..2a740bf --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Chromatic-Aberration.md @@ -0,0 +1,42 @@ +# Chromatic Aberration + +The **Chromatic Aberration** effect splits color along boundaries in an image into their red, green, and blue channels. This reproduces the effect a real-world camera produces when light refracts and causes the wavelengths to disperse in the lens. + +Unity provides support for red/blue and green/purple fringing. You can define fringing colors by using an input texture. + +![Scene without Chromatic Aberration](images/PostProcessing-ChromaticAberration-1.png) +Scene without **Chromatic Aberration**. + +![Scene with Chromatic Aberration](images/PostProcessing-ChromaticAberration-0.png) +Scene with **Chromatic Aberration**. + +### Properties + +| Property | Function | +| :------------ | :------------------------------------------------------------ | +| Spectral Lut | Select the texture used for a custom fringing color. When left empty, Unity will use the default texture. | +| Intensity | Set the strength of the **Chromatic Aberration** effect. | +| Fast Mode | Use a faster variant of **Chromatic Aberration** effect for improved performance. | + +### Details + +**Chromatic Aberration** uses a `Spectral Lut` input for custom fringing. Four example spectral textures are provided in the repository: + +- Red/Blue (Default) +- Blue/Red +- Green/Purple +- Purple/Green + +You can create custom spectral textures in any image editing software. While the resolution size of spectral textures are not limited, small sizes like the 3x1 textures provided work best. + +You can achieve a rougher effect by manually setting the **Filter Mode** of the input texture to **Point (no filter)** in the [Texture Import Settings](https://docs.unity3d.com/Manual/class-TextureImporter.html) window. + +### Performance + +The performance of the **Chromatic Aberration** effect depends on its `Intensity` value. If the `Intensity` value is high, the render uses more samples to render smooth chromatic aberrations. This makes the process take more time. + +**Fast Mode** is the quickest mode and recommended where possible. However, it's not as smooth as the regular mode. + +### Requirements + +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Color-Grading.md b/com.unity.postprocessing/Documentation~/Color-Grading.md new file mode 100644 index 0000000..542b8c0 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Color-Grading.md @@ -0,0 +1,142 @@ +# Color Grading + +The **Color Grading** effect alters or corrects the color and luminance of the final image that Unity produces. You can use this to alter the look and feel of your application. + +![Three examples of how you can use Color Grading](images/screenshot-grading.png) + +The **Color Grading** effect comes with three modes: + +- **Low Definition Range (LDR):** ideal for lower-end platforms. Grading is applied to the final rendered frame clamped in a [0,1] range and stored in a standard LUT. +- **High Definition Range (HDR):** ideal for platforms that support HDR rendering. All color operations are applied in HDR and stored into a 3D log-encoded LUT to ensure a sufficient range coverage and precision (Alexa LogC El1000). +- **External:** for use with custom 3D LUTs authored in external software. + +## Global Settings + +Use these settings to control how the **Color Grading** effect operates. + +The Lookup Texture and Contribution settings are only available for **Low Definition Range** and **External** modes. + +### Properties + +| Property | Function | +| :-------------- | :------------------------------------------------------------ | +| Mode | Select the **Color Grading** effect mode. | +| Lookup Texture | **LDR:** Select a custom lookup texture (strip format, e.g. 256x16) to apply before the rest of the color grading operators. If none is provided, a neutral one will be generated internally.

**External**: A custom 3D log-encoded texture.| +| Contribution | **LDR:** Set how much of the lookup texture will contribute to the color grading. | + +> **Note:** Volume blending between multiple LDR lookup textures is supported but only works correctly if they're the same size. For this reason it is recommended to stick to a single LUT size for the whole project (256x16 or 1024x32). + +## Tonemapping + +The **Tonemapping** effect remaps high dynamic range (HDR) colors into a range suitable for mediums with low dynamic range (LDR), such as CRT or LCD screens. Its most common purpose is to make an image with a low dynamic range appear to have a higher range of colors. + +This result increases the range of colors and contrast in an image to give a more dynamic and realistic effect. See Wikipedia: [Tone mapping](https://en.wikipedia.org/wiki/Tone_mapping). + +Always apply **Tonemapping** when using an HDR camera, otherwise color intensity values above 1 will be clamped at 1, altering the Scene's luminance balance. + +### Properties + +![Tonemapping UI](images/tonemapping.png) + +| Property | Function | +| :----------------- | :------------------------------------------------------------ | +| Mode | Only available in the **High Definition Range** mode. Select the Tonemapping mode from the dropdown menu.
**None**: No **Tonemapping** applied.
**Neutral**: Applies a range-remapping with minimal impact on color hue and saturation.
**ACES**: Applies a close approximation of the reference [ACES](http://www.oscars.org/science-technology/sci-tech-projects/aces) tonemapper for a cinematic look. This effect has more contrast than **Neutral** affects color hue and saturation. When this tonemapper is enabled, all grading operations are performed in the ACES color spaces for optimal precision and results.
**Custom**: A fully parametric tonemapper. This is the only tonemapper with its own settings. | +| Toe Strength | Set a value for the transition between the toe and the mid section of the curve. A value of 0 means no toe, a value of 1 means a very hard transition. | +| Toe Length | Set the value for how much of the dynamic range is in the toe. With a small value, the toe will be very short and quickly transition into the linear section, and with a longer value having a longer toe. | +| Shoulder Strength | Set the value for the transition between the mid section and the shoulder of the curve. A value of 0 means no shoulder, value of 1 means a very hard transition. | +| Shoulder Length | Set the value for how many F-stops (EV) to add to the dynamic range of the curve. | +| Shoulder Angle | Set the value for how much overshot to add to the shoulder. | +| Gamma | Set the value for applying a gamma function to the curve. | + +## White Balance + +**White Balance** allows you to adjust the overall tint and temperature of your image to create a colder or warmer feel in the final render. + +### Properties + +| Property | Function | +| :----------- | :------------------------------------------------------------ | +| Temperature | Set the white balance to a custom color temperature. | +| Tint | Set the white balance to compensate for a green or magenta tint. | + +## Tone + +### Properties + +| Property | Function | +| :------------- | :------------------------------------------------------------ | +| Post-exposure | Only available in the **High Definition Range (HDR)** mode.
Set the value for the overall exposure of the scene in EV units. This is applied after HDR effect and right before tonemapping so it won’t affect previous effects in the chain. | +| Color Filter | Select a color for the Tint of the render. | +| Hue Shift | Adjust the hue of all colors. | +| Saturation | Adjust the intensity of all colors. | +| Brightness | Only available in the **Low Definition Range (LDR)** mode.
Adjust the brightness of the image.
| +| Contrast | Adjust the overall range of tonal values. | + +## Channel Mixer + +You can use the **Channel Mixer** to adjust the color balance of your image. + +The **Channel Mixer** effect modifies the influence each input color channel has on the overall mix of the output channel. For example, if you increase the influence of the green channel on the overall mix of the red channel, all areas of the final image that include a green tone tint to a more reddish hue. + +### Properties + +| Property | Function | +| :-------- | :------------------------------------------------------------ | +| Channel | Select the output channel to modify. | +| Red | Adjust the influence of the red channel within the overall mix. | +| Green | Adjust the influence of the green channel within the overall mix. | +| Blue | Adjust the influence of the blue channel within the overall mix. | + +## Trackballs + +Use **Trackballs** to perform three-way color grading. Adjust the position of the point on the trackball to shift the hue of the image towards that color in each tonal range. Each trackball affects different ranges within the image. Adjust the slider under the trackball to offset the color lightness of that range. + +> **Note:** you can right-click a trackball to reset it to its default value. To change the trackball's sensitivity go to `Edit -> Preferences -> PostProcessing`. + +![Trackballs UI](images/trackballs.png) + +### Properties + +| Property | Function | +| :-------- | :------------------------------------ | +| Lift | Adjust the dark tones (or shadows). | +| Gamma | Adjust the mid-tones. | +| Gain | Adjust the highlights. | + +## Grading Curves + +**Grading Curves** allows you to adjust specific ranges in hue, saturation, or luminosity. You can adjust the curves on the eight available graphs to achieve effects such as specific hue replacement or desaturating certain luminosities. + +### YRGB Curves + +**YRGB Curves** are only available in the **Low Definition Range (LDR)** mode. These curves, also called `Master`, `Red`, `Green` and `Blue` affect the selected input channel's intensity across the whole image. The X axis of the graph represents input intensity and the Y axis represents output intensity for the selected channel. Use these curves to adjust the appearance of attributes such as contrast and brightness. + +![YRGB Curves UI](images/yrgb-curves.png) + +### Hue vs Hue + +Use **Hue vs Hue** to shift hues within specific ranges. This curve shifts the input hue (X axis) according to the output hue (Y axis). Use this setting to fine tune hues of specific ranges or perform color replacement. + +![Hue vs Hue UI](images/hue-vs-hue.png) + +### Hue vs Sat + +Use **Hue vs Sat** to adjust the saturation of hues within specific ranges. This curve adjusts saturation (Y axis) according to the input hue (X axis). Use this setting to tone down particularly bright areas or create artistic effects. + +![Hue vs Sat UI](images/hue-vs-sat.png) + +### Sat vs Sat + +Use **Sat vs Sat** to adjust the saturation of areas of certain saturation. This curve adjusts saturation (Y axis) according to the input saturation (X axis). Use this setting to fine tune saturation adjustments made with settings from the [**Tone**](#tone) section. + +![Sat vs Sat UI](images/sat-vs-sat.png) + +### Lum vs Sat + +Use **Lum vs Sat** to adjust the saturation of areas of certain luminance. This curve adjusts saturation (Y axis) according to the input luminance (X axis). use this setting to desaturate areas of darkness to provide an interesting visual contrast. + +![Lum vs Sat UI](images/lum-vs-sat.png) + +### Requirements + +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Debugging-Post-processing-effects.md b/com.unity.postprocessing/Documentation~/Debugging-Post-processing-effects.md new file mode 100644 index 0000000..52683e1 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Debugging-Post-processing-effects.md @@ -0,0 +1,101 @@ +# Debugging Post-processing effects + +The **Post-process Debug** component displays real-time data about post-processing effects. You can use this data to debug your post-processing effects, and to see the results of adjusting your effects in real time. + +When you attach the Post-Process Debug component to a GameObject with a Camera component, the Post-Process Debug component displays its data on top of that Camera's output. You can use the Post-process Debug component in the Unity Editor, or when your application is running on a device. + +![The Histogram monitor as it appears in the Game window.](images/Ppv2_Debugging_Histogram.png) + +## Using the Post-Process Debug component + +To use the Post-Process Debug component, create a **Post-process Debug** component on a GameObject. To do this, go to the Inspector window and select **Add component** > **Post-process Debug.** + +Use **Post Process Layer** to choose the post-processing layer that you want to view debug information for. If you create the Post-process Debug component on the Main Camera, Unity automatically assigns Main Camera to this field. +To view an overlay that shows the state of an intermediate pass, select an intermediate pass from the **Debug Overlay** drop-down menu. Unity displays the overlay in the Game window. + +To use the [Light Meter](#light-meter) monitor, enable **Light Meter**. Unity displays a logarithmic histogram in the Game view that represents exposure. If you have the [**Auto Exposure**](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Auto-Exposure.html) post processing effect enabled, the histogram contains a thin line that indicates the current exposure. There is also a translucent area between the maximum and minimum exposure values. You can configure these exposure values in the **Auto Exposure** effect. The result of your changes appear in the Light Meter monitor in real-time. + +To view Tonemapping curves in the Light Meter histogram, enable **Show Curves**. + +To use the [Histogram](#histogram) monitor, enable **Histogram**. Unity displays a linear Gamma histogram in the Game view that represents exposure data in real-time in the rendered image. **Histogram** displays exposure data in more detail than **Light Meter**. Use the **Channel** drop-down menu to select the color data the Histogram displays. + +To use [Waveform](#waveform) monitor, enable **Waveform**. Unity displays a waveform in the Game view which represents the full spectrum of Luma (brightness) data in real-time in the rendered image. + +## Properties + +This section describes the settings that the Unity Editor displays in the Inspector for the **Post-Process Debug** component. + +| **Property** | **Description** | +|--------------------|-----------------| +| Post Process Layer | Select the post-processing layer that the Post-process Debug component uses.| + +### Overlay + +**Overlay** determines the intermediate pass that Unity displays in the Game window. + +| **Property** | **Description** | +| ------------- | ------------------------------------------------------------ | +| Debug overlay | Set the overlay view. Choose between different key intermediate passes to observe the state at this point in the frame. | + +## Monitors + +**Monitors** allow you to view data that Unity collects from the Game window in real-time. + + +### Light meter +The **Light Meter monitor** displays a logarithmic histogram in the Game window that represents exposure in the Camera’s output. You can control the exposure using the [**Auto Exposure**](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Auto-Exposure.html) component. When you configure the exposure values, Unity creates two new bars on the histogram: + +- A thin pink bar that indicates the current exposure value. +- A translucent blue bar that indicates the area between the maximum and minimum exposure values. + +![The Light Meter Histogram](images/Ppv2-Debugging-Light-Meter-Graph.png) +The **Light Meter Histogram** that Unity shows in the Game window. + +| **Property** | **Description** | +|--------------|---------------------------------------------------------------------------------------------| +| Light meter | Enable this checkbox to display the **Light meter** monitor in the Game window. | +| Show Curves | Enable this checkbox to display Tonemapping curves monitor in the **Light meter** histogram | + + +### Histogram +The **Histogram** monitor displays a gamma histogram in the Game. A histogram graphs the number of pixels at each color intensity level, to illustrate how pixels in an image are distributed. It can help you determine whether an image is properly exposed or not. + +![The Debugging Histogram](images/Ppv2-Debugging-Histogram-Graph.png) + +The **Histogram** that Unity shows in the Game window. + +| **Property** | **Description** | +|--------------|-----------------| +| Histogram |Enable this checkbox to display the **Histogram** monitor in the Game window.| +| Channel | Select the color value.| + + +### Waveform + +The **Waveform** monitor displays the full range of Luma (brightness) information in the Camera’s output. Unity displays the Waveform in the Game window. The horizontal axis of the graph corresponds to the render (from left to right) and the vertical axis is the brightness value. + +![The Debugging Waveform Graph](images/Ppv2-Debugging-Waveform-Graph.png) + +The **Waveform** that Unity shows in the Game window. + +| **Property** | **Description** | +| ------------ | ------------------------------------------------------------ | +| Waveform | Enable this checkbox to display the **Waveform** monitor in the Game window. | +| Exposure | Set the exposure value this graph samples from. | + +### **Vectorscope** + +The **Vectorscope** monitor measures the overall range of hue and saturation within the Camera’s image in real-time. To display the data, it uses a scatter graph relative to the center of the Vectorscope. + +The Vectorscope measures hue values between yellow, red, magenta, blue, cyan and green. The center of the Vectorscope represents absolute zero saturation and the edges represent the highest level of saturation. To determine the hues in your scene and their saturation, look at the distribution of the Vectorscope’s scatter graph. + +To identify whether there is a color imbalance in the image, look at how close the middle of the Vectorscope graph is to the absolute center. If the Vectorscope graph is off-center, this indicates that there is a color cast (tint) in the image. + +![The Debugging Vectorscope Graph](images/Ppv2-Debugging-Vectorscope-Graph.png) + +The **Vectorscope** that Unity displays in the Game window. + +| **Property** | **Description** | +|--------------|-----------------| +| Vectorscope | Enable this checkbox to display the **Vectorscope** monitor in the Game window.| +| Exposure |Set the exposure value this graph samples from.| diff --git a/com.unity.postprocessing/Documentation~/Deferred-Fog.md b/com.unity.postprocessing/Documentation~/Deferred-Fog.md new file mode 100644 index 0000000..9c43d38 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Deferred-Fog.md @@ -0,0 +1,25 @@ +# Deferred Fog + +The **Deferred Fog** effect simulates the look of fog or mist in outdoor environments. To do this, it overlays a color onto objects depending on how far away they are from the Camera. + + ![Scene rendered with Deferred Fog enabled](images/screenshot-fog.png) + +You can also use the Deferred fog effect to hide object clipping. This is useful if you want to bring the Camera’s far clip plane forward to improve performance. + +The **Deferred Fog** effect creates a screen-space fog based on the camera’s [depth texture](https://docs.unity3d.com/Manual/SL-DepthTextures.html). It supports Linear, Exponential and Exponential Squared fog types. **Deferred Fog** settings are on the **Scene** tab of the [**Lighting window**](https://docs.unity3d.com/Manual/lighting-window.html) in **Window > Rendering > Lighting Settings**. + +### Properties + +| Property | Function | +| :-------------- | :--------------------------------- | +| Enabled | Enable this checkbox to turn the **Deferred Fog** effect on.| +| Exclude Skybox | Enable this checkbox to exclude fog from the [skybox](https://docs.unity3d.com/Manual/class-Skybox.html). | + +### Details + +The **Deferred Fog** effect only appears in your [**Post-process Layer**](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Quick-start.html#post-process-layer) if the camera is set to render with the [**Deferred rendering path**](https://docs.unity3d.com/Manual/RenderTech-DeferredShading.html). It is enabled by default and adds the support of **Deferred Fog** from the [**Lighting window**](https://docs.unity3d.com/Manual/lighting-window.html), which would otherwise only work with the [**Forward rendering path**](https://docs.unity3d.com/Manual/RenderTech-ForwardRendering.html). + +### Requirements + +- Depth texture +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Depth-of-Field.md b/com.unity.postprocessing/Documentation~/Depth-of-Field.md new file mode 100644 index 0000000..d458213 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Depth-of-Field.md @@ -0,0 +1,25 @@ +# Depth of Field + +The **Depth of Field** effect blurs the background of your image while the objects in the foreground stay in focus. This simulates the focal properties of a real-world camera lens. + + ![A scene with the Depth of Field effect applied](images/screenshot-dof.png) + +A real-world **camera** can focus sharply on an object at a specific distance. Objects nearer or farther from the **camera’s** focal point appear slightly out of focus or blurred. This blurring gives a visual cue about an object’s distance, and introduces “bokeh” which refers to visual artifacts that appear around bright areas of the image as they fall out of focus. + +### Properties + +| Property | Function | +| :-------------- | :------------------------------------------------------------ | +| Focus Distance | Set the distance to the point of focus. | +| Aperture | Set the ratio of the aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is. | +| Focal Length | Set the distance between the lens and the film. The larger the value is, the shallower the depth of field is. | +| Max Blur Size | Select the convolution kernel size of the bokeh filter from the dropdown. This setting determines the maximum radius of bokeh. It also affects the performance. The larger the kernel is, the longer the GPU time is required. | + +### Performance + +The speed of the **Depth of Field** effect is tied to **Max Blur Size**. Only use a value higher than `Medium` if you are developing for desktop computers and, depending on the post-processing budget of your game, consoles. Use the lowest value when developing for mobile platforms. + +### Requirements + +- Depth texture +- Shader Model 3.5 diff --git a/com.unity.postprocessing/Documentation~/Grain.md b/com.unity.postprocessing/Documentation~/Grain.md new file mode 100644 index 0000000..07aa8d6 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Grain.md @@ -0,0 +1,29 @@ +# Grain + +The **Grain** effect overlays film noise onto your image. Film noise is the effect that real-world cameras produce when small particles in the camera’s film give the image a coarse, unprocessed effect. +Unity’s **Grain** effect is based on a coherent gradient noise. This gives your game a gritty effect that simulates the imperfections of film. + +The **Grain** effect available in Unity is based on a coherent gradient noise. + +![Scene without Grain](images/Grain_image_1.png) +Scene without the **Grain** effect. + +![Scene with Grain](images/Grain_image_0.png) +Scene with the **Grain** effect. + +### Properties + +| Property | Function | +| :---------------------- | :------------------------------------------------------------ | +| Colored | Enable the checkbox to use colored grain. | +| Intensity | Set the value of the **Grain** strength. Higher values show more visible grain. | +| Size | Set the value of the **Grain** particle size. | +| Luminance Contribution | Set the value to control the noisiness response curve. This value is based on scene luminance. Lower values mean less noise in dark areas. | + +### Performance + +Disabling **Colored** makes the Grain effect run faster. + +### Requirements + +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Installation.md b/com.unity.postprocessing/Documentation~/Installation.md new file mode 100644 index 0000000..d49587b --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Installation.md @@ -0,0 +1,21 @@ +# Installation + +Use the [**Package Manager**](https://docs.unity3d.com/Manual/upm-ui.html) to install the **Post Processing** package or to update an installed package to the latest version. + +To install the **Post Processing** package: + +1. Open the Package Manager in **Window > Package Manager**. +2. In the [Filter for scope](https://docs.unity3d.com/Manual/upm-ui-filter.html) menu, select **All packages**. +3. In the list of packages, select **Post Processing**. +4. In the bottom-right corner of the Package Manager window, select **Install**. + +For more information on the Package Manager and installing packages, see the following pages: +* [Unity’s Package Manager](https://docs.unity3d.com/Manual/Packages.html). +* [Adding and removing packages](https://docs.unity3d.com/Manual/upm-ui-actions.html). + +## Source code + +> **Note**: The best way to install a package is directly from the Unity registry using the Package Manager. The latest source code might contain unsupported or breaking changes. + +The source code for the **Post Processing** package is in the following repository: +* [https://github.com/Unity-Technologies/PostProcessing](https://github.com/Unity-Technologies/PostProcessing) diff --git a/com.unity.postprocessing/Documentation~/Lens-Distortion.md b/com.unity.postprocessing/Documentation~/Lens-Distortion.md new file mode 100644 index 0000000..bc191f0 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Lens-Distortion.md @@ -0,0 +1,28 @@ +# Lens Distortion + +The **Lens Distortion** effect simulates distortion caused by the shape of a real-world camera lens. You can adjust the intensity of this effect between barrel distortion and pincushion distortion. + +![Scene without Lens Distortion effect](images/no-lens-distortion.png) +Scene without **Lens Distortion**. + +![Scene with Lens Distortion effect](images/lens-distortion.png) +Scene with **Lens Distortion**. + +### Properties + +| Property | Function | +| :------------ | :------------------------------------------------------------ | +| Intensity | Set the value for the total distortion amount. | +| X Multiplier | Set the Intensity multiplier on X axis. Set it to 0 to disable distortion on this axis. | +| Y Multiplier | Set the Intensity multiplier on Y axis. Set it to 0 to disable distortion on this axis. | +| Center X | Set the Distortion center point (X axis). | +| Center Y | Set the Distortion center point (Y axis). | +| Scale | Set the value for global screen scaling. | + +### Known issues and limitations + +- Lens distortion doesn't support AR/VR. + +### Requirements + +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Manipulating-the-Stack.md b/com.unity.postprocessing/Documentation~/Manipulating-the-Stack.md new file mode 100644 index 0000000..553bb3b --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Manipulating-the-Stack.md @@ -0,0 +1,115 @@ +# Controlling effects using scripts + +This guide explains how to modify a post-processing script to create time-based events or temporary post-processing effects. + +## Quick Volumes + +Use the `QuickVolume` method to quickly spawn new volumes in the scene, to create time-based events or temporary states: + +```csharp +[ +public PostProcessVolume QuickVolume(int layer, float priority, params PostProcessEffectSettings[] settings) +] +``` +The following example demonstrates how to use a script to create a pulsating vignette effect: + +```csharp +[ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; +public class VignettePulse : MonoBehaviour +{ + PostProcessVolume m_Volume; + Vignette m_Vignette + void Start() + { + // Create an instance of a vignette + m_Vignette = ScriptableObject.CreateInstance(); + m_Vignette.enabled.Override(true); + m_Vignette.intensity.Override(1f); + // Use the QuickVolume method to create a volume with a priority of 100, and assign the vignette to this volume + m_Volume = PostProcessManager.instance.QuickVolume(gameObject.layer, 100f, m_Vignette); + void Update() + { + // Change vignette intensity using a sinus curve + m_Vignette.intensity.value = Mathf.Sin(Time.realtimeSinceStartup); + } + void OnDestroy() + { + RuntimeUtilities.DestroyVolume(m_Volume, true, true); + } +} +``` + +This code creates a new vignette and assigns it to a newly spawned volume. Then, on every frame, it changes the vignette intensity.To avoid memory leaks, destroy the volume and the attached profile when you don’t need them anymore. + +## Using tweening libraries with effects + +To change the parameters of effect over time or based on a gameplay event, you can manipulate Volume or effect parameters. You can do this in an Update method (as demonstrated in the vignette example above), or you can use a tweening library. + +A tweening library is a code library that provides utility functions for simple, code-based animations called "tweens". A few third-party tweening libraries are available for Unity for free, such as[ DOTween](http://dotween.demigiant.com/),[ iTween](http://www.pixelplacement.com/itween/index.php) or[ LeanTween](https://github.com/dentedpixel/LeanTween). The following example uses DOTween. For more information, see the [DOTween documentation](http://dotween.demigiant.com/documentation.php). + +This example spawns a volume with a vignette. Its weight is initially set to 0. The code uses the [sequencing feature](http://dotween.demigiant.com/documentation.php#creatingSequence) of DOTween to chain a set of tweening events that set the value of the weight parameter: fade in, pause for a second, fade out. After this sequence has completed, the code destroys the Volume and the `Vignette Pulse` component. + +```csharp +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; +using DG.Tweening; +public class VignettePulse : MonoBehaviour +{ + void Start() + { + var vignette = ScriptableObject.CreateInstance(); + vignette.enabled.Override(true); + vignette.intensity.Override(1f); + var volume = PostProcessManager.instance.QuickVolume(gameObject.layer, 100f, vignette); + volume.weight = 0f; + DOTween.Sequence() + .Append(DOTween.To(() => volume.weight, x => volume.weight = x, 1f, 1f)) + .AppendInterval(1f) + .Append(DOTween.To(() => volume.weight, x => volume.weight = x, 0f, 1f)) + .OnComplete(() => + { + RuntimeUtilities.DestroyVolume(volume, true, true); + Destroy(this); + }); + } +} +``` + +## Profile Editing + +The above examples demonstrate how to create new effects and Volumes at runtime, but you can also manually edit an existing Profile that is used by one or more Volumes. To do this, you can use one of two fields on the `PostProcessVolume` . Each field has a slightly different effects: + +- Modify the shared profile directly: + - Class field name: [`sharedProfile`](...api/UnityEngine.Rendering.PostProcessing.PostProcessVolume.html#UnityEngine_Rendering_PostProcessing_PostProcessVolume_sharedProfile.html) + - Applies changes to all volumes using the same profile + - Modifies the asset and doesn’t reset when you exit play mode +- Request a clone of the shared Profile that will only be used for this Volume: + - Class field name: [`profile`](...api/UnityEngine.Rendering.PostProcessing.PostProcessVolume.html#UnityEngine_Rendering_PostProcessing_PostProcessVolume_profile.html) + - Applies changes to the specified volume + - Resets when you exit play mode + - You must manually destroy the profile when you don't need it anymore + +The `PostProcessProfile` class contains the following utility methods to help you manage assigned effects: +| Utility method | **Description** | +| ------------------------------------------------------------ | ------------------------------------------------------------ | +| [`T AddSettings()`](...api/UnityEngine.Rendering.PostProcessing.PostProcessProfile.html#UnityEngine_Rendering_PostProcessing_PostProcessProfile_AddSettings__1) | Creates, adds and returns a new effect of type `T` to the profile. It throws an exception if it already exist | +| [`PostProcessEffectSettings AddSettings(PostProcessEffectSettings effect)`](api/UnityEngine.Rendering.PostProcessing.PostProcessProfile.html#UnityEngine_Rendering_PostProcessing_PostProcessProfile_AddSettings_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_) | Adds and returns an effect that you created to the profile. | +| [`void RemoveSettings()`](api/UnityEngine.Rendering.PostProcessing.PostProcessProfile.html#UnityEngine_Rendering_PostProcessing_PostProcessProfile_RemoveSettings__1) | Removes an effect from the profile. It throws an exception if it doesn't exist. | +| [`bool TryGetSettings(out T outSetting)`](...api/UnityEngine.Rendering.PostProcessing.PostProcessProfile.html#UnityEngine_Rendering_PostProcessing_PostProcessProfile_TryGetSettings__1___0__) | Gets an effect from the profile, returns `true` if it found a profile, or `false` if it did not find a profile. | + +You can find more methods in the `/PostProcessing/Runtime/PostProcessProfile.cs` source file. + +**Important:** You must destroy any manually created profiles or effects. + +## Additional notes + +If you need to instantiate `PostProcessLayer` at runtime, you must bind your resources to it. To do this, add your component and call `Init()` on your `PostProcessLayer` with a reference to the `PostProcessResources` file as a parameter. + +Here is an example: + +```csharp +var postProcessLayer = gameObject.AddComponent(); +postProcessLayer.Init(resources); +``` diff --git a/com.unity.postprocessing/Documentation~/Motion-Blur.md b/com.unity.postprocessing/Documentation~/Motion-Blur.md new file mode 100644 index 0000000..291287d --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Motion-Blur.md @@ -0,0 +1,27 @@ +# Motion Blur + +The **Motion Blur** effect blurs the image in the direction of the **Camera’s** movement. This simulates the blur effect a real-world camera creates when it moves with the lens aperture open, or when it captures an object moving faster than the camera’s exposure time. + +![Scene using the Motion Blur effect](images/screenshot-motionblur.png) + +### Properties + +| Property | Function | +| :------------- | :------------------------------------------------------------ | +| Shutter Angle | Set the angle of the rotary shutter. Larger values give longer exposure and a stronger blur effect. | +| Sample Count | Set the value for the amount of sample points. This affects quality and performance. | + +### Performance + +Using a lower `Sample Count` will improve performance. + +### Known issues and limitations + +- Motion blur doesn't support AR/VR. +- Versions 7.0 to 7.5 of [Universal Render Pipeline (URP)](https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@7.5/manual/index.html) do not support this version of the Motion Blur effect. Instead, use [Motion Blur for URP](https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest?/manual/Post-Processing-Motion-Blur.html). + +### Requirements + +- Motion vectors +- Depth texture +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Quick-start.md b/com.unity.postprocessing/Documentation~/Quick-start.md new file mode 100644 index 0000000..3a0e1ea --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Quick-start.md @@ -0,0 +1,100 @@ +# Getting started with post-processing + +This page explains how to set up the components required to create post-processing effects in your scene. + + + +## Post-process Layer + +To enable post-processing in your scene, add the **Rendering** > **Post Process Layer** component to the Main Camera GameObject. This component allows you to configure anti-aliasing for this post-process layer, choose which layer it will apply the post-processing to, and select the GameObject that triggers this post-process layer. + + +![](images/quickstart-1.png) + + +### Volume blending + +You can use a Volume framework to manage and blend between post-processing effects in Unity. Each Volume can either be global or have local boundaries. They each contain scene setting property values that Unity blends between, depending on the position of the Camera, in order to calculate a final value. + +Volumes can contain different combinations of Volume overrides that you can blend between. For example, one Volume can hold a Physically Based Sky Volume override, while another Volume holds an Exponential Fog Volume override. + +You can use local Volumes to change environment settings, such as fog color and density, to alter the mood of different areas of your Scene. + +**Volume blending** assigns a trigger for a **Post-processing Layer** and controls which layer affects the Camera. + +| Property | Description | +| -------- | ------------------------------------------------------------ | +| Trigger | This transform controls the volume blending feature. Unity assigns the Camera to the **Trigger** by default.

You can use other GameObjects to control the blending feature. For example, in a top-down game you might want to assign the player character GameObject to drive the blending instead of the Camera Transform.

When this field is set to None, it disables local volumes for this layer (global ones work normally). | +| Layer | A mask of layers that Unity considers for volume blending. It allows you to control which layers affect the camera (volume filtering).

**Layer** also optimizes volume traversal, the update process of the volume system that blends parameters.

**Layer** is set to Nothing by default. It must have a layer assigned, otherwise volumes won’t take effect in your scene.

For best performance, keep your volumes in dedicated layers instead of the default one. For more information, see[ Layers](https://docs.unity3d.com/Manual/Layers.html). | + +### Anti-aliasing + +[**Anti-aliasing**](Anti-aliasing.html) reduces the appearance of jagged edges in your scene.. + +The Post-process Layer component allows you to set up the anti-aliasing effect per-camera. You can use this to optimize the anti-aliasing in your scene. For example, you can enable [**Temporal Anti-aliasing (TAA)**](Anti-aliasing#temporal-anti-aliasing.html) on your Main Camera, and a less resource-intensive form of anti-aliasing like [**Fast approximate anti-aliasing** **(FXAA)**](Anti-aliasing#fast-approximate-anti-aliasing.html) on another camera. + +You can use this setting to optimize your cameras to only use anti-aliasing when needed. + +| Property | Description | +| ------------------------- | ------------------------------------------------------------ | +| Mode | Select the type of anti-aliasing this component uses. | +| Stop NaN propagation | Destroys any pixels with positive or negative infinite values and pixels without any numeric data, known as Not a Number (NaN) pixels. It then replaces each pixel with a black color before Unity applies any post-processing effects. This avoids the presence of post-processing artifacts caused by broken data in the scene.

**Stop NaN propagation** can have a performance impact on some platforms. You should only enable it if you see post-processing artifacts as this setting does impact performance. | +| Directly to Camera Target | Builds the anti-aliasing result directly to the Camera’s target. This can help with performance. You might find this useful if you are targeting low-end hardware and post-processing is causing performance issues at runtime.

**Directly to Camera Target** is not compatible with older post-processing effects that use the `OnRenderImage` API. | + +### Toolkit +The Toolkit section comes with a few utilities. +| Property | Description | +| ------------------------------- | ------------------------------------------------------------ | +| Export the current frame to EXR | Supports the following modes:
- **Full Frame (as displayed):** Exports the current frame of the Camera’s view. For example, if it is set to the Camera shown in the Game View, the export looks exactly like what is shown in the Game View.
- **Disable post-processing:** Exports the current frame of the Camera’s view, without any post-processing applied.
- **Break before Color Grading (linear):** Exports the current frame of the Camera’s view, but stops rendering just before **Color Grading** is applied. This is useful if you want to author grading LUTs in an external software.
- **Break before Color Grading (log):** Exports the current frame of the Camera’s view and log-encodes the output. This is useful if you want to author full-precision HDR grading LUTs in an external software. | +| Select all layer volumes | Selects all **Post-process Volume** components that can affect this **Post-process Layer**. | +| Select all active volumes | Selects all **Post-process Volume** components currently affecting this **Post-process Layer**. | +### Custom Effect Sorting + +**Custom Effect Sorting** allows you to change the rendering order of custom effects. Custom effects in your scene appear here in a reorderable list from first to last. You can drag and drop each setting to change their order. + +For more information on custom effects, see [Writing Custom Effects](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Writing-Custom-Effects.html). + + + +## Post Process Volume + +The **Post-process Volume** component allows you to control the priority and blending of each local and global volume. You can also create a set of effect overrides to automatically blend post-processing settings in your scene. + +For example, if you have a global light vignette effect, you could control the **Intensity** setting of the vignette when the player enters a cave to make it darker, while the other post-processing settings are unchanged. + +You can add the Post Process Volume component to any GameObject, including the Main Camera GameObject. However, the optimal way to use this component is to create a dedicated GameObject for each volume. To do this: + +- Create an empty GameObject. +- Add the Post-process Volume component to your new GameObject in the Inspector. To do this, select **Add** **Component > Post-process Volume.** +- View your Main Camera’s Inspector, and in the Post-process Layer component, set **Layer** to the new GameObject you have just created. + + +![](images/quickstart-2.png) + +The **Post Process Volume** component is empty by default. Each post-process volume has two modes: + +- **Global:** A global volume has no boundaries and Unity applies it to the whole scene. You can have several of these in your scene. +- **Local:** A local volume needs a collider or trigger component attached to it to define its boundaries. Any type of 3D collider is suitable, but complex meshes can be more resource-intensive. Local volumes have a **Blend Distance** property, which represents the outer distance from the volume surface where blending starts. + +| **Property** | **Description** | +| -------------- | ------------------------------------------------------------ | +| Is Global | Defines this volume as a Global volume. | +| Blend Distance | The outer distance from the volume surface where blending starts.
This property only appears when **Is Global** is disabled. | +| Weight | Reduces the global contribution of the volume and all its overrides.0 indicates no contribution and 1 indicates full contribution. | +| Priority | Defines this volume’s order in the stack. The higher this number is, the higher this volume is placed in the stack. This means that Unity runs this volume before volumes in the stack that have a lower **Priority** number. | +| Profile | Defines the profile for this volume. You can create a new profile using **New** or clone an existing profile.
When you assign a profile to this field, the **Clone** button appears. You can use this to duplicate the assigned profile and assign it to this volume. | + +## Adding post-processing effects to the stack +Once you have assigned a post-processing profile to the [Post Process Volume](#post-process-volume) component, you can add post-processing effects to the stack. To do this, click the **Add effect** button at the bottom of the component, and choose the post-processing effect you want to use from the drop-down list. The Post Process Volume component displays all applied post-processing effects, and their properties, in a list at the bottom of the component’s Inspector. + +The Post Process Volume component displays the following settings for each post-processing effect in the list: + +![](images/quickstart-3.png) + +A. Effect overrides toggle (checkbox): This checkbox toggles all overrides for this effect in this particular volume, but preserves your override selections when you disable and re-enable it. + +B. Effect name: Right-click an effect name to show a quick-action menu to copy, paste, remove, or reset settings. + +C. Effect toggle: Select the **On** or **Off** buttons to toggle an effect within this volume. This is useful if you want to manually disable an effect in this volume that is enabled globally or in a higher priority volume. + +D. Property override toggle (checkbox): Enable this override checkbox to edit an individual setting. You can also quickly toggle all property overrides on or off with the small **All** and **None** shortcuts below the effect title. diff --git a/com.unity.postprocessing/Documentation~/Screen-Space-Reflections.md b/com.unity.postprocessing/Documentation~/Screen-Space-Reflections.md new file mode 100644 index 0000000..90ca2e3 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Screen-Space-Reflections.md @@ -0,0 +1,35 @@ +# Screen Space Reflections + +The **Screen Space Reflection** effect creates subtle reflections that simulate wet floor surfaces or puddles. It reflects both static and dynamic GameObjects to create realistic reflections. + +Screen Space Reflection replaces specular highlights on a surface, which makes it an ideal effect to limit the amount of [specular light](https://docs.unity3d.com/Manual/shader-NormalSpecular.html) leaking. + +![Scene with Screen Space Reflections](images/screenshot-ssr.png) + +### Properties + +| Property | Function | +| :----------------------- | :------------------------------------------------------------ | +| Preset | Select the quality preset from the dropdown. Use **Custom** to fine tune the quality. | +| Maximum Iteration Count (`Custom` preset only) | Set the maximum number of steps in the raymarching pass. A higher value creates more reflections. | +| Thickness (`Custom` preset only)| Set the value of the ray thickness. A lower value detects smaller details but it is resource-intensive. | +| Resolution (`Custom` preset only)| Select the size of the internal buffer. Select **Downsample** to maximize performance. **Supersample** is slower but produces higher quality results. | +| Maximum March Distance | Set the maximum distance to draw reflections in the scene. | +| Distance Fade | Set the value for the distance to fade reflections close to the near plane. This is useful to hide common artifacts. | +| Vignette | Set the value to fade the reflections close to the screen edges. | + +### Performance + +The `Custom` preset is very resource-intensive and best for beauty shots. If you are developing for consoles, use **Medium** as the maximum, unless you have plenty of GPU time to spare. On lower resolutions you can boost the quality preset and get similar timings with a higher visual quality. + +### Known issues and limitations + +- Screen-space reflections doesn't support AR/VR. +- [Universal Render Pipeline (URP)](https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@7.5/manual/index.html) do not support Screen Space Reflections. + +### Requirements + +- Compute shader +- Motion vectors +- Deferred rendering path +- Shader Model 5.0 diff --git a/com.unity.postprocessing/Documentation~/TableOfContents.md b/com.unity.postprocessing/Documentation~/TableOfContents.md new file mode 100644 index 0000000..2424dc5 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/TableOfContents.md @@ -0,0 +1,23 @@ +* [Post-Processing Stack v2](index) +* [Requirements](requirements) +* [Installation](Installation) +* [Getting started](Quick-Start) +* Effects + * [Ambient Occlusion](Ambient-Occlusion) + * [Anti-aliasing](Anti-aliasing) + * [Auto Exposure](Auto-Exposure) + * [Bloom](Bloom) + * [Chromatic Aberration](Chromatic-Aberration) + * [Color Grading](Color-Grading) + * [Deferred Fog](Deferred-Fog) + * [Depth of Field](Depth-of-Field) + * [Grain](Grain) + * [Lens Distortion](Lens-Distortion) + * [Motion Blur](Motion-Blur) + * [Screen Space Reflections](Screen-Space-Reflections) + * [Vignette](Vignette) +* Scripting + * [Controlling effects using scripts](Manipulating-the-Stack) + * [Writing custom effects](Writing-Custom-Effects) +* [Known issues](known-issues) +* [Debugging Post-processing effects](Debugging-Post-processing-effects) diff --git a/com.unity.postprocessing/Documentation~/Vignette.md b/com.unity.postprocessing/Documentation~/Vignette.md new file mode 100644 index 0000000..57eb02f --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Vignette.md @@ -0,0 +1,49 @@ +# Vignette + +The **Vignette** effect darkens the edges of an image. This simulates the effect in a real-world camera lens caused by thick or stacked filters, secondary lenses, or an improper lens hood. You can use the **Vignette** effect to draw attention to the center of an image. + +![Scene without Vignette](images/PostProcessing-Vignette-1.png) +Scene without **Vignette** effect. + +![Scene with Vignette](images/PostProcessing-Vignette-2.png) +Scene with **Vignette** effect. + +The Vignette effect in the post-processing stack has two modes: + +- [Classic](#classic) +- [Masked](#masked) + + +## Classic + +**Classic** mode has parametric controls for the position, shape and intensity of the Vignette. This is the most common way to use the effect. + +### Properties + +| Property | Function | +| :-------------- | :------------------------------------------------------------ | +| Mode | Select the type of **Vignette** to use. | +| Color | Set the color of the Vignette. | +| Center | Set the Vignette center point (screen center is [0.5,0.5]). | +| Intensity | Set the amount of vignetting on screen. | +| Smoothness | Set the smoothness of the Vignette borders. | +| Roundness | Set the value to round the Vignette. Lower values will make a more squared vignette. | +| Rounded | Enable this checkbox to make the vignette perfectly round. When disable, the Vignette effect is dependent on the current aspect ratio. | + + +## Masked + +**Masked** mode uses a custom texture mask and multiplies it over the scene to create a Vignette effect. This mode can be used to create less common or irregular vignetting effects. + +### Properties + +| Property | Function | +| :------------- | :------------------------------------------------------- | +| Mode | Select the type of **Vignette** to use. | +| Color | Set the color of the Vignette. Use the alpha channel for transparency. | +| Mask | Select a black and white mask to use as a vignette. | +| Opacity | Set the mask opacity value. | + +### Requirements + +- Shader Model 3 diff --git a/com.unity.postprocessing/Documentation~/Writing-Custom-Effects.md b/com.unity.postprocessing/Documentation~/Writing-Custom-Effects.md new file mode 100644 index 0000000..62b830d --- /dev/null +++ b/com.unity.postprocessing/Documentation~/Writing-Custom-Effects.md @@ -0,0 +1,240 @@ +# Writing custom effects + +This quick-start guide demonstrates how to write a custom [post-processing effect](https://docs.unity3d.com/Manual/PostProcessingOverview.html) and include it in the post-processing stack. This process does not require you to modify the codebase. + +Custom post-processing effects require a minimum of two files: + +- A C# source file +- An [HLSL](https://en.wikipedia.org/wiki/High-Level_Shading_Language) source file + +Unity cross-compiles HLSL to [GLSL](https://docs.unity3d.com/Manual/SL-GLSLShaderPrograms.html), [Metal](https://docs.unity3d.com/Manual/Metal.html), and other APIs. This means it is not restricted to DirectX. + +This quick-start guide requires a basic knowledge of programming C# in Unity and HLSL shader programming. + +## C# source code + +The following example demonstrates how to use a C# script to create a custom grayscale post-processing effect. The script in this example calls APIs from the Post Processing framework and works with volume blending. This example is compatible with versions of Unity from 2018 onwards. It is not compatible with [HDRP](https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@latest?subfolder=/manual/): + +```csharp +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +[Serializable] +[PostProcess(typeof(GrayscaleRenderer), PostProcessEvent.AfterStack, "Custom/Grayscale")] +public sealed class Grayscale : PostProcessEffectSettings +{ + [Range(0f, 1f), Tooltip("Grayscale effect intensity.")] + public FloatParameter blend = new FloatParameter { value = 0.5f }; +} +public sealed class GrayscaleRenderer : PostProcessEffectRenderer +{ + public override void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/Grayscale")); + sheet.properties.SetFloat("_Blend", settings.blend); + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } +} +``` + +> **Important**: This file name of this script must match the name of its class for it to serialize correctly. In this case, the script must be stored in a file named `Grayscale.cs`. + +### Classes + +A custom post-processing effect script requires two classes: + +- a data class to store settings +- a logic class to render the effect + +### Data class + +The data class holds all the settings fields the user sees in the Inspector window for that volume profile. Here is how the data class works in the example script described in C# source code: + +```csharp +//The Serializable attribute allows Unity to serialize this class and extend PostProcessEffectSettings. +[Serializable] +// The [PostProcess()] attribute tells Unity that this class holds post-processing data. The first parameter links the settings to a renderer. The second parameter creates the injection point for the effect. The third parameter is the menu entry for the effect. You can use a forward slash (/) to create sub-menu categories. +[PostProcess(typeof(GrayscaleRenderer), PostProcessEvent.AfterStack, "Custom/Grayscale")] +public sealed class Grayscale : PostProcessEffectSettings +{ + // You can create boxed fields to override or blend parameters. This example uses a FloatParameter with a fixed range from 0 to 1. + [Range(0f, 1f), Tooltip("Grayscale effect intensity.")] + public FloatParameter blend = new FloatParameter { value = 0.5f }; +} +``` + +#### Notes: + +The second parameter of the `[PostProcess()]` attribute is the injection point for the effect. There are three injection points available: + +- `BeforeTransparent`: Unity only applies the effect to opaque objects before Unity runs the transparent pass. +- `BeforeStack`: Unity injects the effect before applying the built-in stack. This applies to all post processing effects except [Temporal anti-aliasing (TAA),](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Anti-aliasing.html) which Unity applies before any injection points. +- `AfterStack`: Unity applies the effect after the built-in stack and before [FXAA](https://docs.unity3d.com/Packages/com.unity.postprocessing@latest?subfolder=/manual/Anti-aliasing#fast-approximate-anti-aliasing.html) (if it's enabled) and final-pass dithering. + +The `[PostProcess()]` attribute has an optional fourth parameter called `allowInSceneView`. You can use this parameter to enable or disable the effect in the scene. It's set to true by default, but you can disable it for temporal effects or effects that get in the way of editing the scene easily. + +For a full list of built-in parameter classes, see the `ParameterOverride.cs` source file in **/PostProcessing/Runtime/**. + +If you want to set your own requirements for the effect or disable it until a condition is met, you can override the `IsEnabledAndSupported()` method of `PostProcessEffectSettings`. For example, the following script automatically disables an effect if the blend parameter is `0`: + +```csharp +public override bool IsEnabledAndSupported(PostProcessRenderContext context) +{ + return enabled.value + && blend.value > 0f; +} +``` + +### Logic class + +The logic class tells Unity how to render this post-processing effect. Here is how the logic class works in the example script described in C# source code: + +```csharp +// This renderer extends PostProcessEffectRenderer, where T is the settings type Unity attaches to this renderer. +public sealed class GrayscaleRenderer : PostProcessEffectRenderer +{ + // Everything that happens in the Render() method takes a PostProcessRenderContext as parameter. + public override void Render(PostProcessRenderContext context) + { +// Request a PropertySheet for our shader and set the uniform within it. + var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/Grayscale")); +// Send the blend parameter value to the shader. + sheet.properties.SetFloat("_Blend", settings.blend); + // This context provides a command buffer which you can use to blit a fullscreen pass using a source image as an input with a destination for the shader, sheet and pass number. + context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } +} +``` + +#### Notes: + +The `PostProcessRenderContext` context holds data that Unity passes around effects when it renders them. You can find out what data is available in **/PostProcessing/Runtime/PostProcessRenderContext.cs**. + +The example grayscale effect script only uses [command buffers](https://docs.unity3d.com/ScriptReference/Rendering.CommandBuffer.html) which means the system relies on `MaterialPropertyBlock` to store shader data. Unity’s framework automatically pools the shader data to save time and optimize performance. This script requests a `PropertySheet` for the shader and sets the uniform inside it, so that you do not need to create `MaterialPropertyBlock` manually. + +`PostProcessEffectRenderer` has the following methods you can override: + +| Method | Description | +| ----------------------------------------- | ------------------------------------------------------------ | +| `void Init()` | This method is called when the renderer is created | +| `DepthTextureMode GetLegacyCameraFlags()` | This method sets Camera flags and requests depth maps, motion vectors, etc. | +| `void ResetHistory()` | This method is called when a "reset history" event is dispatched. Use this to clear history buffers for temporal effects. | +| `void Release()` | This method is called when the renderer is destroyed. You can perform a cleanup here | + +## HLSL source code + +Unity uses the HLSL programming language for shader programs. For more information, see [Shading language used in Unity](https://docs.unity3d.com/Manual/SL-ShadingLanguage.html). + +The following example demonstrates how to create an HLSL script for a custom grayscale post-processing effect: + +```hlsl +Shader "Hidden/Custom/Grayscale" +{ + HLSLINCLUDE +// StdLib.hlsl holds pre-configured vertex shaders (VertDefault), varying structs (VaryingsDefault), and most of the data you need to write common effects. + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +// Lerp the pixel color with the luminance using the _Blend uniform. + float _Blend; + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); +// Compute the luminance for the current pixel + float luminance = dot(color.rgb, float3(0.2126729, 0.7151522, 0.0721750)); + color.rgb = lerp(color.rgb, luminance.xxx, _Blend.xxx); +// Return the result + return color; + } + ENDHLSL + SubShader + { + Cull Off ZWrite Off ZTest Always + Pass + { + HLSLPROGRAM + #pragma vertex VertDefault + #pragma fragment Frag + ENDHLSL + } + } +} + +``` + +#### Notes: + +This framework uses [shader preprocessor macros](https://docs.unity3d.com/Manual/SL-BuiltinMacros.html) to define platform differences. This helps to maintain compatibility across platforms and render pipelines. + +This script also uses macros to declare textures. For a list of available macros, see the API files in **/PostProcessing/Shaders/API/**. + +This script uses HLSL blocks instead of CG blocks to avoid compatibility issues between render pipelines. Inside the HLSL block is the varying structs parameter, `VaryingsDefault i`. This parameter can use the following variables: +```hlsl +struct VaryingsDefault +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; +#if STEREO_INSTANCING_ENABLED + uint stereoTargetEyeIndex : SV_RenderTargetArrayIndex; +#endif +}; +``` + +- `vertex`: The vertex position. +- `texcoord`: The UV coordinate for the fragment. +- `texcoordStereo`: The UV coordinate for the fragment in stereo mode +- `stereoTargetEyeIndex`: The current eye index (only available with VR + stereo instancing). + +Unity cannot build a shader if it is not referenced in a scene. This means the effect does not work when the application is running outside of the Editor. To fix this, add your shader to a[ Resources folder](https://docs.unity3d.com/Manual/LoadingResourcesatRuntime.html) or include it in the [**Always Included Shaders**](https://docs.unity3d.com/Manual/class-GraphicsSettings.html#Always) list in **Edit > Project Settings > Graphics**. + +## Ordering post-processing effects + +Unity automatically sorts built-in effects, but it handles custom effects differently. When you create a new effect or import it into your project, Unity does the following: + +- Adds the custom effect to the Custom Effect Sorting list in the Post Process Layer component on a Camera. +- Sorts each custom effect by its injection point. You can change the order of the custom effects in the [Post Process Layer](#Quick-start) component using **Custom Effect Sorting**. + +Unity orders custom effects within each layer, which means you can order your custom effects differently for each Camera. + +## Creating a custom editor + +Unity automatically creates editors for settings classes. If you want to control how Unity displays certain fields, you can create a custom editor. + +The following example uses the default editor script to create a custom editor for a `Grayscale` effect: + +```csharp +using UnityEngine.Rendering.PostProcessing; +using UnityEditor.Rendering.PostProcessing; + +[PostProcessEditor(typeof(Grayscale))] +public sealed class GrayscaleEditor : PostProcessEffectEditor +{ + SerializedParameterOverride m_Blend; + + public override void OnEnable() + { + m_Blend = FindParameterOverride(x => x.blend); + } + + public override void OnInspectorGUI() + { + PropertyField(m_Blend); + } +} +``` + +#### Notes: + +For Unity to recognise your custom editor, it has to be in an Editor folder. + +## FXAA compatibility with custom effects + +If you apply [**FXAA**](Anti-aliasing#fast-approximate-anti-aliasing.html) in a scene with custom effects, the order of your post-processing effects might stop it from working correctly. This is because FXAA looks for the LDR (Low dynamic range) luminance value of each pixel in the alpha channel of its source target to optimise performance. + +If you inject custom effects at the `AfterStack` injection point, as demonstrated in the example above, FXAA looks for LDR luminance in the last executed effect. If it can’t find it, FXAA won’t work correctly. + +You can fix this in your custom shader in one of two ways: + +- Make sure that the last executed effect contains LDR luminance in the alpha channel. +- Copy the alpha from the incoming source. diff --git a/com.unity.postprocessing/Documentation~/images/Grain_image_0.png b/com.unity.postprocessing/Documentation~/images/Grain_image_0.png new file mode 100644 index 0000000..16c493e Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Grain_image_0.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Grain_image_1.png b/com.unity.postprocessing/Documentation~/images/Grain_image_1.png new file mode 100644 index 0000000..b9bc6e8 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Grain_image_1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/PostProcessing-Bloom-0.png b/com.unity.postprocessing/Documentation~/images/PostProcessing-Bloom-0.png new file mode 100644 index 0000000..96d2050 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/PostProcessing-Bloom-0.png differ diff --git a/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-0.png b/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-0.png new file mode 100644 index 0000000..0f3d8b4 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-0.png differ diff --git a/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-1.png b/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-1.png new file mode 100644 index 0000000..3415870 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/PostProcessing-ChromaticAberration-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-1.png b/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-1.png new file mode 100644 index 0000000..dbc7975 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-2.png b/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-2.png new file mode 100644 index 0000000..efb341a Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/PostProcessing-Vignette-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Light meter_Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Light meter_Graph.png new file mode 100644 index 0000000..33dd90d Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Light meter_Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Vectorscope_Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Vectorscope_Graph.png new file mode 100644 index 0000000..4347594 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2 _ Debugging_Vectorscope_Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Histogram-Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Histogram-Graph.png new file mode 100644 index 0000000..aa14e99 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Histogram-Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Light-Meter-Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Light-Meter-Graph.png new file mode 100644 index 0000000..33dd90d Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Light-Meter-Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Vectorscope-Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Vectorscope-Graph.png new file mode 100644 index 0000000..4347594 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Vectorscope-Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Waveform-Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Waveform-Graph.png new file mode 100644 index 0000000..7663a69 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2-Debugging-Waveform-Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Histogram.png b/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Histogram.png new file mode 100644 index 0000000..df78e34 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Histogram.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Waveform_Graph.png b/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Waveform_Graph.png new file mode 100644 index 0000000..7663a69 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2_Debugging_Waveform_Graph.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2_Light Meter.png b/com.unity.postprocessing/Documentation~/images/Ppv2_Light Meter.png new file mode 100644 index 0000000..0548bc7 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2_Light Meter.png differ diff --git a/com.unity.postprocessing/Documentation~/images/Ppv2_Post-processing-Debug.png b/com.unity.postprocessing/Documentation~/images/Ppv2_Post-processing-Debug.png new file mode 100644 index 0000000..0597c33 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/Ppv2_Post-processing-Debug.png differ diff --git a/com.unity.postprocessing/Documentation~/images/aa-1.png b/com.unity.postprocessing/Documentation~/images/aa-1.png new file mode 100644 index 0000000..21eb1c2 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/aa-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/aa-2.png b/com.unity.postprocessing/Documentation~/images/aa-2.png new file mode 100644 index 0000000..b503812 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/aa-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/aa-3.png b/com.unity.postprocessing/Documentation~/images/aa-3.png new file mode 100644 index 0000000..cd0007f Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/aa-3.png differ diff --git a/com.unity.postprocessing/Documentation~/images/ao-off.png b/com.unity.postprocessing/Documentation~/images/ao-off.png new file mode 100644 index 0000000..c0a352c Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/ao-off.png differ diff --git a/com.unity.postprocessing/Documentation~/images/ao-on.png b/com.unity.postprocessing/Documentation~/images/ao-on.png new file mode 100644 index 0000000..91ea2c2 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/ao-on.png differ diff --git a/com.unity.postprocessing/Documentation~/images/auto-exposure-off.png b/com.unity.postprocessing/Documentation~/images/auto-exposure-off.png new file mode 100644 index 0000000..98b5792 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/auto-exposure-off.png differ diff --git a/com.unity.postprocessing/Documentation~/images/auto-exposure-on.png b/com.unity.postprocessing/Documentation~/images/auto-exposure-on.png new file mode 100644 index 0000000..c68fe58 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/auto-exposure-on.png differ diff --git a/com.unity.postprocessing/Documentation~/images/autoexposure.png b/com.unity.postprocessing/Documentation~/images/autoexposure.png new file mode 100644 index 0000000..db753b3 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/autoexposure.png differ diff --git a/com.unity.postprocessing/Documentation~/images/bloom.png b/com.unity.postprocessing/Documentation~/images/bloom.png new file mode 100644 index 0000000..b73457b Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/bloom.png differ diff --git a/com.unity.postprocessing/Documentation~/images/chroma.png b/com.unity.postprocessing/Documentation~/images/chroma.png new file mode 100644 index 0000000..68e2afb Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/chroma.png differ diff --git a/com.unity.postprocessing/Documentation~/images/custom-effect-sorting.png b/com.unity.postprocessing/Documentation~/images/custom-effect-sorting.png new file mode 100644 index 0000000..b80a44f Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/custom-effect-sorting.png differ diff --git a/com.unity.postprocessing/Documentation~/images/deferredfog.png b/com.unity.postprocessing/Documentation~/images/deferredfog.png new file mode 100644 index 0000000..3f7b0fe Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/deferredfog.png differ diff --git a/com.unity.postprocessing/Documentation~/images/dof.png b/com.unity.postprocessing/Documentation~/images/dof.png new file mode 100644 index 0000000..1a3f48c Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/dof.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-1.png b/com.unity.postprocessing/Documentation~/images/grading-1.png new file mode 100644 index 0000000..b6ef7c6 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-10.png b/com.unity.postprocessing/Documentation~/images/grading-10.png new file mode 100644 index 0000000..d3da775 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-10.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-11.png b/com.unity.postprocessing/Documentation~/images/grading-11.png new file mode 100644 index 0000000..1ecd6ee Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-11.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-2.png b/com.unity.postprocessing/Documentation~/images/grading-2.png new file mode 100644 index 0000000..7cfcef2 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-3.png b/com.unity.postprocessing/Documentation~/images/grading-3.png new file mode 100644 index 0000000..339ab52 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-3.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-4.png b/com.unity.postprocessing/Documentation~/images/grading-4.png new file mode 100644 index 0000000..68f2739 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-4.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-5.png b/com.unity.postprocessing/Documentation~/images/grading-5.png new file mode 100644 index 0000000..a5d0012 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-5.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-6.png b/com.unity.postprocessing/Documentation~/images/grading-6.png new file mode 100644 index 0000000..900259a Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-6.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-7.png b/com.unity.postprocessing/Documentation~/images/grading-7.png new file mode 100644 index 0000000..3cd56fe Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-7.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-8.png b/com.unity.postprocessing/Documentation~/images/grading-8.png new file mode 100644 index 0000000..b919341 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-8.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grading-9.png b/com.unity.postprocessing/Documentation~/images/grading-9.png new file mode 100644 index 0000000..bbd74f7 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grading-9.png differ diff --git a/com.unity.postprocessing/Documentation~/images/grain.png b/com.unity.postprocessing/Documentation~/images/grain.png new file mode 100644 index 0000000..3271913 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/grain.png differ diff --git a/com.unity.postprocessing/Documentation~/images/home-after.png b/com.unity.postprocessing/Documentation~/images/home-after.png new file mode 100644 index 0000000..11c5ba3 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/home-after.png differ diff --git a/com.unity.postprocessing/Documentation~/images/home-before.png b/com.unity.postprocessing/Documentation~/images/home-before.png new file mode 100644 index 0000000..16ff58f Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/home-before.png differ diff --git a/com.unity.postprocessing/Documentation~/images/hue-vs-hue.png b/com.unity.postprocessing/Documentation~/images/hue-vs-hue.png new file mode 100644 index 0000000..b3ab5ab Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/hue-vs-hue.png differ diff --git a/com.unity.postprocessing/Documentation~/images/hue-vs-sat.png b/com.unity.postprocessing/Documentation~/images/hue-vs-sat.png new file mode 100644 index 0000000..0db61dc Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/hue-vs-sat.png differ diff --git a/com.unity.postprocessing/Documentation~/images/lens-distortion.png b/com.unity.postprocessing/Documentation~/images/lens-distortion.png new file mode 100644 index 0000000..9d0cb1f Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/lens-distortion.png differ diff --git a/com.unity.postprocessing/Documentation~/images/lensdistortion.png b/com.unity.postprocessing/Documentation~/images/lensdistortion.png new file mode 100644 index 0000000..54b4911 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/lensdistortion.png differ diff --git a/com.unity.postprocessing/Documentation~/images/lum-vs-sat.png b/com.unity.postprocessing/Documentation~/images/lum-vs-sat.png new file mode 100644 index 0000000..f17b1dc Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/lum-vs-sat.png differ diff --git a/com.unity.postprocessing/Documentation~/images/motionblur.png b/com.unity.postprocessing/Documentation~/images/motionblur.png new file mode 100644 index 0000000..984f771 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/motionblur.png differ diff --git a/com.unity.postprocessing/Documentation~/images/no-lens-distortion.png b/com.unity.postprocessing/Documentation~/images/no-lens-distortion.png new file mode 100644 index 0000000..39e30d5 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/no-lens-distortion.png differ diff --git a/com.unity.postprocessing/Documentation~/images/quickstart-1.png b/com.unity.postprocessing/Documentation~/images/quickstart-1.png new file mode 100644 index 0000000..9983f16 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/quickstart-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/quickstart-2.png b/com.unity.postprocessing/Documentation~/images/quickstart-2.png new file mode 100644 index 0000000..30fe17f Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/quickstart-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/quickstart-3.png b/com.unity.postprocessing/Documentation~/images/quickstart-3.png new file mode 100644 index 0000000..5bc2896 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/quickstart-3.png differ diff --git a/com.unity.postprocessing/Documentation~/images/sat-vs-sat.png b/com.unity.postprocessing/Documentation~/images/sat-vs-sat.png new file mode 100644 index 0000000..5971afb Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/sat-vs-sat.png differ diff --git a/com.unity.postprocessing/Documentation~/images/ssao-1.png b/com.unity.postprocessing/Documentation~/images/ssao-1.png new file mode 100644 index 0000000..5128158 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/ssao-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/ssao-2.png b/com.unity.postprocessing/Documentation~/images/ssao-2.png new file mode 100644 index 0000000..4012afc Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/ssao-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/ssr.png b/com.unity.postprocessing/Documentation~/images/ssr.png new file mode 100644 index 0000000..63ed7bc Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/ssr.png differ diff --git a/com.unity.postprocessing/Documentation~/images/tonemapping.png b/com.unity.postprocessing/Documentation~/images/tonemapping.png new file mode 100644 index 0000000..6b70420 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/tonemapping.png differ diff --git a/com.unity.postprocessing/Documentation~/images/trackballs.png b/com.unity.postprocessing/Documentation~/images/trackballs.png new file mode 100644 index 0000000..fe18b0b Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/trackballs.png differ diff --git a/com.unity.postprocessing/Documentation~/images/vignette-1.png b/com.unity.postprocessing/Documentation~/images/vignette-1.png new file mode 100644 index 0000000..83192a7 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/vignette-1.png differ diff --git a/com.unity.postprocessing/Documentation~/images/vignette-2.png b/com.unity.postprocessing/Documentation~/images/vignette-2.png new file mode 100644 index 0000000..1616b21 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/vignette-2.png differ diff --git a/com.unity.postprocessing/Documentation~/images/yrgb-curves.png b/com.unity.postprocessing/Documentation~/images/yrgb-curves.png new file mode 100644 index 0000000..e8b9b72 Binary files /dev/null and b/com.unity.postprocessing/Documentation~/images/yrgb-curves.png differ diff --git a/com.unity.postprocessing/Documentation~/index.md b/com.unity.postprocessing/Documentation~/index.md new file mode 100644 index 0000000..f826845 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/index.md @@ -0,0 +1,15 @@ +## Post Processing Stack v2 overview + +Post-processing is a generic term for a full-screen image processing effect that occurs after the camera draws the scene but before the scene is rendered on the screen. Post-processing can drastically improve the visuals of your product with little setup time. + +You can use post-processing effects to simulate physical camera and film properties. + +For information about requirements and compatibility, see section [Requirements](requirements.html). + +The images below demonstrate a scene with and without post-processing: + +![Without post-processing](images/home-before.png) +
+ +![With post-processing](images/home-after.png) +
diff --git a/com.unity.postprocessing/Documentation~/known-issues.md b/com.unity.postprocessing/Documentation~/known-issues.md new file mode 100644 index 0000000..d158d08 --- /dev/null +++ b/com.unity.postprocessing/Documentation~/known-issues.md @@ -0,0 +1,5 @@ +# Known issues + +- The **Post Processing** package doesn't work on MacOS X 10.11.6 when running Metal in the editor due to a driver bug on this specific version of the OS. + +For limitations and known issues for each effect, see the specific effect page. diff --git a/com.unity.postprocessing/Documentation~/requirements.md b/com.unity.postprocessing/Documentation~/requirements.md new file mode 100644 index 0000000..664e64f --- /dev/null +++ b/com.unity.postprocessing/Documentation~/requirements.md @@ -0,0 +1,23 @@ +# Requirements and compatibility + +This page contains information on system requirements and compatibility of this Post-processing module. + +## Unity Editor compatibility + +The **Post processing** package is compatible with the following versions of the Unity Editor: + +* Unity 2018.1 and later. + +## Render pipeline compatibility + +This package is compatible with the following render pipeline versions: + +* Built-in render pipeline. +* Universal Render Pipeline (URP) 7.x, with Unity 2018 LTS, and 2019 LTS. Certain effects are not compatible with URP. +* Scriptable Render Pipeline (SRP). + +## Unity Player system requirements + +This package does not add any platform-specific requirements to Unity. For more information on Unity system requirements, see [System requirements for Unity](https://docs.unity3d.com/Manual/system-requirements.html). + +Some **Post Processing** effects have extra requirements in addition to the common Unity Player system requirements. For system requirements for each effect, see the specific effect page. diff --git a/com.unity.postprocessing/LICENSE.md b/com.unity.postprocessing/LICENSE.md new file mode 100644 index 0000000..bab8330 --- /dev/null +++ b/com.unity.postprocessing/LICENSE.md @@ -0,0 +1,5 @@ +com.unity.postprocessing copyright © 2020 Unity Technologies ApS + +Licensed under the Unity Companion License for Unity-dependent projects--see [Unity Companion License](http://www.unity3d.com/legal/licenses/Unity_Companion_License). + +Unless expressly provided otherwise, the Software under this license is made available strictly on an “AS IS” BASIS WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. Please review the license for details on these and other terms and conditions. diff --git a/com.unity.postprocessing/LICENSE.md.meta b/com.unity.postprocessing/LICENSE.md.meta new file mode 100644 index 0000000..c0254d1 --- /dev/null +++ b/com.unity.postprocessing/LICENSE.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 19d205ceab90d42038ad1d376affc356 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing.meta b/com.unity.postprocessing/PostProcessing.meta new file mode 100644 index 0000000..30be565 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d256a256b5667448bb3f33f75dbb4bf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor.meta b/com.unity.postprocessing/PostProcessing/Editor.meta new file mode 100644 index 0000000..0b9e415 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 10af18f17ff5ecf47bc4dbd1551b36d2 +folderAsset: yes +timeCreated: 1488201031 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Attributes.meta b/com.unity.postprocessing/PostProcessing/Editor/Attributes.meta new file mode 100644 index 0000000..b57a722 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Attributes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f5422948b83b1d34c86e710f0d9fea30 +folderAsset: yes +timeCreated: 1492690959 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs b/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs new file mode 100644 index 0000000..bf46ff5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs @@ -0,0 +1,27 @@ +using System; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Tells a class which inspector attribute it's a decorator + /// for. + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class DecoratorAttribute : Attribute + { + /// + /// The attribute type that this decorator can inspect. + /// + public readonly Type attributeType; + + /// + /// Creates a new attribute. + /// + /// The type that this decorator can inspect + public DecoratorAttribute(Type attributeType) + { + this.attributeType = attributeType; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta new file mode 100644 index 0000000..5fb571d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9753335d6f48da542be1c720aa07bbf5 +timeCreated: 1493109769 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs b/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs new file mode 100644 index 0000000..86d8048 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs @@ -0,0 +1,28 @@ +using System; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Tells a class which run-time type it's an editor + /// for. When you make a custom editor for an effect, you need put this attribute on the editor + /// class. + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class PostProcessEditorAttribute : Attribute + { + /// + /// The type that this editor can edit. + /// + public readonly Type settingsType; + + /// + /// Creates a new attribute. + /// + /// The type that this editor can edit + public PostProcessEditorAttribute(Type settingsType) + { + this.settingsType = settingsType; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta new file mode 100644 index 0000000..c28444c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 70ea2ab329ffbac43a0a02daa61dbe6b +timeCreated: 1492690987 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs new file mode 100644 index 0000000..51ecfdc --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs @@ -0,0 +1,59 @@ +using System; +using System.Linq.Expressions; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Small wrapper on top of to ease the access of the underlying component + /// and its serialized fields. + /// + /// The type of the target component to make an editor for + /// + /// + /// public class MyMonoBehaviour : MonoBehaviour + /// { + /// public float myProperty = 1.0f; + /// } + /// + /// [CustomEditor(typeof(MyMonoBehaviour))] + /// public sealed class MyMonoBehaviourEditor : BaseEditor<MyMonoBehaviour> + /// { + /// SerializedProperty m_MyProperty; + /// + /// void OnEnable() + /// { + /// m_MyProperty = FindProperty(x => x.myProperty); + /// } + /// + /// public override void OnInspectorGUI() + /// { + /// EditorGUILayout.PropertyField(m_MyProperty); + /// } + /// } + /// + /// + public class BaseEditor : Editor + where T : MonoBehaviour + { + /// + /// The target component. + /// + protected T m_Target + { + get { return (T)target; } + } + + /// + /// + /// + /// + /// + /// + protected SerializedProperty FindProperty(Expression> expr) + { + return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs.meta new file mode 100644 index 0000000..f865b53 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/BaseEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 69a4fc27499557744827c787d71fdf08 +timeCreated: 1488275908 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators.meta b/com.unity.postprocessing/PostProcessing/Editor/Decorators.meta new file mode 100644 index 0000000..872280e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 21a375b704549664589881dfc892e7e7 +folderAsset: yes +timeCreated: 1493051174 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs b/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs new file mode 100644 index 0000000..98ba5f6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs @@ -0,0 +1,35 @@ +using System; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The base abstract class for all attribute decorators. + /// + public abstract class AttributeDecorator + { + /// + /// Override this and return false if you want to customize the override checkbox + /// position, else it'll automatically draw it and put the property content in a + /// horizontal scope. + /// + /// true if the override checkbox should be automatically put next to the + /// property, false if it uses a custom position + public virtual bool IsAutoProperty() + { + return true; + } + + /// + /// The rendering method called for the custom GUI. + /// + /// The property to draw the UI for + /// The override checkbox property + /// The title and tooltip for the property + /// A reference to the property attribute set on the original field + /// + /// true if the property UI got rendered successfully, false to + /// fallback on the default editor UI for this property + public abstract bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute); + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta new file mode 100644 index 0000000..ffd22a3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b2666165a17bbd4e851c1382898651e +timeCreated: 1493051184 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs b/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs new file mode 100644 index 0000000..e5fcce9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs @@ -0,0 +1,143 @@ +using System; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + [Decorator(typeof(RangeAttribute))] + internal sealed class RangeDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (RangeAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + property.floatValue = EditorGUILayout.Slider(title, property.floatValue, attr.min, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + property.intValue = EditorGUILayout.IntSlider(title, property.intValue, (int)attr.min, (int)attr.max); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinAttribute))] + internal sealed class MinDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MinAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Max(v, attr.min); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Max(v, (int)attr.min); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MaxAttribute))] + internal sealed class MaxDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MaxAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Min(v, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Min(v, (int)attr.max); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinMaxAttribute))] + internal sealed class MinMaxDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MinMaxAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Clamp(v, attr.min, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Clamp(v, (int)attr.min, (int)attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Vector2) + { + var v = property.vector2Value; + EditorGUILayout.MinMaxSlider(title, ref v.x, ref v.y, attr.min, attr.max); + property.vector2Value = v; + return true; + } + + return false; + } + } + + [Decorator(typeof(ColorUsageAttribute))] + internal sealed class ColorUsageDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (ColorUsageAttribute)attribute; + + if (property.propertyType != SerializedPropertyType.Color) + return false; + +#if UNITY_2018_1_OR_NEWER + property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr); +#else + ColorPickerHDRConfig hdrConfig = null; + + if (attr.hdr) + { + hdrConfig = new ColorPickerHDRConfig( + attr.minBrightness, + attr.maxBrightness, + attr.minExposureValue, + attr.maxExposureValue + ); + } + + property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr, hdrConfig); +#endif + + return true; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs.meta new file mode 100644 index 0000000..773f5fd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/Decorators.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6ae47710b8593e41960a944bb29e6c3 +timeCreated: 1493051241 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs b/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs new file mode 100644 index 0000000..beb49d6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs @@ -0,0 +1,212 @@ +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [Decorator(typeof(TrackballAttribute))] + internal sealed class TrackballDecorator : AttributeDecorator + { + static readonly int k_ThumbHash = "colorWheelThumb".GetHashCode(); + static Material s_Material; + + bool m_ResetState; + Vector2 m_CursorPos; + + public override bool IsAutoProperty() + { + return false; + } + + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + if (property.propertyType != SerializedPropertyType.Vector4) + return false; + + var value = property.vector4Value; + + using (new EditorGUILayout.VerticalScope()) + { + using (new EditorGUI.DisabledScope(!overrideState.boolValue)) + DrawWheel(ref value, overrideState.boolValue, (TrackballAttribute)attribute); + + DrawLabelAndOverride(title, overrideState); + } + + if (m_ResetState) + { + value = Vector4.zero; + m_ResetState = false; + } + + property.vector4Value = value; + + return true; + } + + void DrawWheel(ref Vector4 value, bool overrideState, TrackballAttribute attr) + { + var wheelRect = GUILayoutUtility.GetAspectRect(1f); + float size = wheelRect.width; + float hsize = size / 2f; + float radius = 0.38f * size; + + Vector3 hsv; + Color.RGBToHSV(value, out hsv.x, out hsv.y, out hsv.z); + float offset = value.w; + + // Thumb + var thumbPos = Vector2.zero; + float theta = hsv.x * (Mathf.PI * 2f); + thumbPos.x = Mathf.Cos(theta + (Mathf.PI / 2f)); + thumbPos.y = Mathf.Sin(theta - (Mathf.PI / 2f)); + thumbPos *= hsv.y * radius; + + // Draw the wheel + if (Event.current.type == EventType.Repaint) + { + // Retina support + float scale = EditorGUIUtility.pixelsPerPoint; + + if (s_Material == null) + s_Material = new Material(Shader.Find("Hidden/PostProcessing/Editor/Trackball")) { hideFlags = HideFlags.HideAndDontSave }; + + // Wheel texture +#if UNITY_2018_1_OR_NEWER + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; +#else + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; +#endif + + var oldRT = RenderTexture.active; + var rt = RenderTexture.GetTemporary((int)(size * scale), (int)(size * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); + s_Material.SetFloat("_Offset", offset); + s_Material.SetFloat("_DisabledState", overrideState ? 1f : 0.5f); + s_Material.SetVector("_Resolution", new Vector2(size * scale, size * scale / 2f)); + Graphics.Blit(null, rt, s_Material, EditorGUIUtility.isProSkin ? 0 : 1); + RenderTexture.active = oldRT; + + GUI.DrawTexture(wheelRect, rt); + RenderTexture.ReleaseTemporary(rt); + + var thumbSize = Styling.wheelThumbSize; + var thumbSizeH = thumbSize / 2f; + Styling.wheelThumb.Draw(new Rect(wheelRect.x + hsize + thumbPos.x - thumbSizeH.x, wheelRect.y + hsize + thumbPos.y - thumbSizeH.y, thumbSize.x, thumbSize.y), false, false, false, false); + } + + // Input + var bounds = wheelRect; + bounds.x += hsize - radius; + bounds.y += hsize - radius; + bounds.width = bounds.height = radius * 2f; + hsv = GetInput(bounds, hsv, thumbPos, radius); + value = Color.HSVToRGB(hsv.x, hsv.y, 1f); + value.w = offset; + + // Offset + var sliderRect = GUILayoutUtility.GetRect(1f, 17f); + float padding = sliderRect.width * 0.05f; // 5% padding + sliderRect.xMin += padding; + sliderRect.xMax -= padding; + value.w = GUI.HorizontalSlider(sliderRect, value.w, -1f, 1f); + + if (attr.mode == TrackballAttribute.Mode.None) + return; + + // Values + var displayValue = Vector3.zero; + + switch (attr.mode) + { + case TrackballAttribute.Mode.Lift: + displayValue = ColorUtilities.ColorToLift(value); + break; + case TrackballAttribute.Mode.Gamma: + displayValue = ColorUtilities.ColorToInverseGamma(value); + break; + case TrackballAttribute.Mode.Gain: + displayValue = ColorUtilities.ColorToGain(value); + break; + } + + using (new EditorGUI.DisabledGroupScope(true)) + { + var valuesRect = GUILayoutUtility.GetRect(1f, 17f); + valuesRect.width /= 3f; + GUI.Label(valuesRect, displayValue.x.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + GUI.Label(valuesRect, displayValue.y.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + GUI.Label(valuesRect, displayValue.z.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + } + } + + void DrawLabelAndOverride(GUIContent title, SerializedProperty overrideState) + { + // Title + var areaRect = GUILayoutUtility.GetRect(1f, 17f); + var labelSize = Styling.wheelLabel.CalcSize(title); + var labelRect = new Rect(areaRect.x + areaRect.width / 2 - labelSize.x / 2, areaRect.y, labelSize.x, labelSize.y); + GUI.Label(labelRect, title, Styling.wheelLabel); + + // Override checkbox + var overrideRect = new Rect(labelRect.x - 17, labelRect.y + 3, 17f, 17f); + EditorUtilities.DrawOverrideCheckbox(overrideRect, overrideState); + } + + Vector3 GetInput(Rect bounds, Vector3 hsv, Vector2 thumbPos, float radius) + { + var e = Event.current; + var id = GUIUtility.GetControlID(k_ThumbHash, FocusType.Passive, bounds); + var mousePos = e.mousePosition; + + if (e.type == EventType.MouseDown && GUIUtility.hotControl == 0 && bounds.Contains(mousePos)) + { + if (e.button == 0) + { + var center = new Vector2(bounds.x + radius, bounds.y + radius); + float dist = Vector2.Distance(center, mousePos); + + if (dist <= radius) + { + e.Use(); + m_CursorPos = new Vector2(thumbPos.x + radius, thumbPos.y + radius); + GUIUtility.hotControl = id; + GUI.changed = true; + } + } + else if (e.button == 1) + { + e.Use(); + GUI.changed = true; + m_ResetState = true; + } + } + else if (e.type == EventType.MouseDrag && e.button == 0 && GUIUtility.hotControl == id) + { + e.Use(); + GUI.changed = true; + m_CursorPos += e.delta * GlobalSettings.trackballSensitivity; + GetWheelHueSaturation(m_CursorPos.x, m_CursorPos.y, radius, out hsv.x, out hsv.y); + } + else if (e.rawType == EventType.MouseUp && e.button == 0 && GUIUtility.hotControl == id) + { + e.Use(); + GUIUtility.hotControl = 0; + } + + return hsv; + } + + void GetWheelHueSaturation(float x, float y, float radius, out float hue, out float saturation) + { + float dx = (x - radius) / radius; + float dy = (y - radius) / radius; + float d = Mathf.Sqrt(dx * dx + dy * dy); + hue = Mathf.Atan2(dx, -dy); + hue = 1f - ((hue > 0) ? hue : (Mathf.PI * 2f) + hue) / (Mathf.PI * 2f); + saturation = Mathf.Clamp01(d); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta new file mode 100644 index 0000000..52832a6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 26ed99f46b86df8449003e6ec0f65144 +timeCreated: 1493900975 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs new file mode 100644 index 0000000..52f3502 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs @@ -0,0 +1,345 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Assertions; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// This class is used to draw the user interface in the inspector for all the settings + /// contained in a . + /// + public sealed class EffectListEditor + { + /// + /// A reference to the being displayed by this editor. + /// + public PostProcessProfile asset { get; private set; } + + Editor m_BaseEditor; + + SerializedObject m_SerializedObject; + SerializedProperty m_SettingsProperty; + + Dictionary m_EditorTypes; // SettingsType => EditorType + List m_Editors; + + /// + /// Creates a new instance to be used inside an existing . + /// + /// A reference to the parent editor instance. + public EffectListEditor(Editor editor) + { + Assert.IsNotNull(editor); + m_BaseEditor = editor; + } + + /// + /// Initializes the editor. This method should be called before is + /// called. + /// + /// A reference to the that will be + /// displayed. + /// A of the given instance. + public void Init(PostProcessProfile asset, SerializedObject serializedObject) + { + Assert.IsNotNull(asset); + Assert.IsNotNull(serializedObject); + + this.asset = asset; + m_SerializedObject = serializedObject; + m_SettingsProperty = serializedObject.FindProperty("settings"); + Assert.IsNotNull(m_SettingsProperty); + + m_EditorTypes = new Dictionary(); + m_Editors = new List(); + + // Gets the list of all available postfx editors + var editorTypes = RuntimeUtilities.GetAllTypesDerivedFrom() + .Where( + t => t.IsDefined(typeof(PostProcessEditorAttribute), false) + && !t.IsAbstract + ); + + // Map them to their corresponding settings type + foreach (var editorType in editorTypes) + { + var attribute = editorType.GetAttribute(); + m_EditorTypes.Add(attribute.settingsType, editorType); + } + + // Create editors for existing settings + for (int i = 0; i < this.asset.settings.Count; i++) + CreateEditor(this.asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); + + // Keep track of undo/redo to redraw the inspector when that happens + Undo.undoRedoPerformed += OnUndoRedoPerformed; + } + + void OnUndoRedoPerformed() + { + asset.isDirty = true; + + // Dumb hack to make sure the serialized object is up to date on undo (else there'll be + // a state mismatch when this class is used in a GameObject inspector). + m_SerializedObject.Update(); + m_SerializedObject.ApplyModifiedProperties(); + + // Seems like there's an issue with the inspector not repainting after some undo events + // This will take care of that + m_BaseEditor.Repaint(); + } + + void CreateEditor(PostProcessEffectSettings settings, SerializedProperty property, int index = -1) + { + var settingsType = settings.GetType(); + Type editorType; + + if (!m_EditorTypes.TryGetValue(settingsType, out editorType)) + editorType = typeof(DefaultPostProcessEffectEditor); + + var editor = (PostProcessEffectBaseEditor)Activator.CreateInstance(editorType); + editor.Init(settings, m_BaseEditor); + editor.baseProperty = property.Copy(); + + if (index < 0) + m_Editors.Add(editor); + else + m_Editors[index] = editor; + } + + // Clears & recreate all editors - mainly used when the volume has been modified outside of + // the editor (user scripts, inspector reset etc). + void RefreshEditors() + { + // Disable all editors first + foreach (var editor in m_Editors) + editor.OnDisable(); + + // Remove them + m_Editors.Clear(); + + // Recreate editors for existing settings, if any + for (int i = 0; i < asset.settings.Count; i++) + CreateEditor(asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); + } + + /// + /// This method should be called when the editor is destroyed or disabled. + /// + public void Clear() + { + if (m_Editors == null) + return; // Hasn't been inited yet + + foreach (var editor in m_Editors) + editor.OnDisable(); + + m_Editors.Clear(); + m_EditorTypes.Clear(); + + Undo.undoRedoPerformed -= OnUndoRedoPerformed; + } + + /// + /// Draws the settings for the referenced in the editor. + /// + public void OnGUI() + { + if (asset == null) + return; + + if (asset.isDirty) + { + RefreshEditors(); + asset.isDirty = false; + } + + bool isEditable = !VersionControl.Provider.isActive + || AssetDatabase.IsOpenForEdit(asset, StatusQueryOptions.UseCachedIfPossible); + + using (new EditorGUI.DisabledScope(!isEditable)) + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Overrides"), EditorStyles.boldLabel); + + // Override list + for (int i = 0; i < m_Editors.Count; i++) + { + var editor = m_Editors[i]; + string title = editor.GetDisplayTitle(); + int id = i; // Needed for closure capture below + + EditorUtilities.DrawSplitter(); + bool displayContent = EditorUtilities.DrawHeader( + title, + editor.baseProperty, + editor.activeProperty, + editor.target, + () => ResetEffectOverride(editor.target.GetType(), id), + () => RemoveEffectOverride(id) + ); + + if (displayContent) + { + using (new EditorGUI.DisabledScope(!editor.activeProperty.boolValue)) + editor.OnInternalInspectorGUI(); + } + } + + if (m_Editors.Count > 0) + { + EditorUtilities.DrawSplitter(); + EditorGUILayout.Space(); + } + else + { + EditorGUILayout.HelpBox("No override set on this volume.", MessageType.Info); + } + + if (GUILayout.Button("Add effect...", EditorStyles.miniButton)) + { + var menu = new GenericMenu(); + + var typeMap = PostProcessManager.instance.settingsTypes; + foreach (var kvp in typeMap) + { + var type = kvp.Key; + var title = EditorUtilities.GetContent(kvp.Value.menuItem); + bool exists = asset.HasSettings(type); + + if (!exists) + menu.AddItem(title, false, () => AddEffectOverride(type)); + else + menu.AddDisabledItem(title); + } + + menu.ShowAsContext(); + } + + EditorGUILayout.Space(); + } + } + + void AddEffectOverride(Type type) + { + m_SerializedObject.Update(); + + var effect = CreateNewEffect(type); + Undo.RegisterCreatedObjectUndo(effect, "Add Effect Override"); + + // Store this new effect as a subasset so we can reference it safely afterwards. Only when its not an instantiated profile + if (EditorUtility.IsPersistent(asset)) + AssetDatabase.AddObjectToAsset(effect, asset); + + // Grow the list first, then add - that's how serialized lists work in Unity + m_SettingsProperty.arraySize++; + var effectProp = m_SettingsProperty.GetArrayElementAtIndex(m_SettingsProperty.arraySize - 1); + effectProp.objectReferenceValue = effect; + + // Create & store the internal editor object for this effect + CreateEditor(effect, effectProp); + + m_SerializedObject.ApplyModifiedProperties(); + + // Force save / refresh. Important to do this last because SaveAssets can cause effect to become null! + if (EditorUtility.IsPersistent(asset)) + { + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + } + + void RemoveEffectOverride(int id) + { + // Huh. Hack to keep foldout state on the next element... + bool nextFoldoutState = false; + if (id < m_Editors.Count - 1) + nextFoldoutState = m_Editors[id + 1].baseProperty.isExpanded; + + // Remove from the cached editors list + m_Editors[id].OnDisable(); + m_Editors.RemoveAt(id); + + m_SerializedObject.Update(); + + var property = m_SettingsProperty.GetArrayElementAtIndex(id); + var effect = property.objectReferenceValue; + + // Unassign it (should be null already but serialization does funky things + property.objectReferenceValue = null; + + // ...and remove the array index itself from the list + m_SettingsProperty.DeleteArrayElementAtIndex(id); + + // Finally refresh editor reference to the serialized settings list + for (int i = 0; i < m_Editors.Count; i++) + m_Editors[i].baseProperty = m_SettingsProperty.GetArrayElementAtIndex(i).Copy(); + + if (id < m_Editors.Count) + m_Editors[id].baseProperty.isExpanded = nextFoldoutState; + + m_SerializedObject.ApplyModifiedProperties(); + + // Destroy the setting object after ApplyModifiedProperties(). If we do it before, redo + // actions will be in the wrong order and the reference to the setting object in the + // list will be lost. + Undo.DestroyObjectImmediate(effect); + + // Force save / refresh + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + + // Reset is done by deleting and removing the object from the list and adding a new one in + // the place as it was before + void ResetEffectOverride(Type type, int id) + { + // Remove from the cached editors list + m_Editors[id].OnDisable(); + m_Editors[id] = null; + + m_SerializedObject.Update(); + + var property = m_SettingsProperty.GetArrayElementAtIndex(id); + var prevSettings = property.objectReferenceValue; + + // Unassign it but down remove it from the array to keep the index available + property.objectReferenceValue = null; + + // Create a new object + var newEffect = CreateNewEffect(type); + Undo.RegisterCreatedObjectUndo(newEffect, "Reset Effect Override"); + + // Store this new effect as a subasset so we can reference it safely afterwards + AssetDatabase.AddObjectToAsset(newEffect, asset); + + // Put it in the reserved space + property.objectReferenceValue = newEffect; + + // Create & store the internal editor object for this effect + CreateEditor(newEffect, property, id); + + m_SerializedObject.ApplyModifiedProperties(); + + // Same as RemoveEffectOverride, destroy at the end so it's recreated first on Undo to + // make sure the GUID exists before undoing the list state + Undo.DestroyObjectImmediate(prevSettings); + + // Force save / refresh + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + + PostProcessEffectSettings CreateNewEffect(Type type) + { + var effect = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + effect.name = type.Name; + effect.enabled.value = true; + return effect; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs.meta new file mode 100644 index 0000000..201d41e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/EffectListEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9f9fffe306f3969418c31ee836b6ffee +timeCreated: 1494328254 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects.meta new file mode 100644 index 0000000..c7143a1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1da84851b99c43746afb49e79ae2b1d6 +folderAsset: yes +timeCreated: 1492696579 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs new file mode 100644 index 0000000..c200d59 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs @@ -0,0 +1,69 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(AmbientOcclusion))] + internal sealed class AmbientOcclusionEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Mode; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Color; + SerializedParameterOverride m_AmbientOnly; + SerializedParameterOverride m_ThicknessModifier; + SerializedParameterOverride m_ZBias; + SerializedParameterOverride m_DirectLightingStrength; + SerializedParameterOverride m_Quality; + SerializedParameterOverride m_Radius; + + public override void OnEnable() + { + m_Mode = FindParameterOverride(x => x.mode); + m_Intensity = FindParameterOverride(x => x.intensity); + m_Color = FindParameterOverride(x => x.color); + m_AmbientOnly = FindParameterOverride(x => x.ambientOnly); + m_ThicknessModifier = FindParameterOverride(x => x.thicknessModifier); + m_ZBias = FindParameterOverride(x => x.zBias); + m_DirectLightingStrength = FindParameterOverride(x => x.directLightingStrength); + m_Quality = FindParameterOverride(x => x.quality); + m_Radius = FindParameterOverride(x => x.radius); + } + + public override void OnInspectorGUI() + { + PropertyField(m_Mode); + int aoMode = m_Mode.value.intValue; + + if (RuntimeUtilities.scriptableRenderPipelineActive && aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) + { + EditorGUILayout.HelpBox("Scalable ambient obscurance doesn't work with scriptable render pipelines.", MessageType.Warning); + return; + } + + PropertyField(m_Intensity); + + if (aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) + { + PropertyField(m_Radius); + PropertyField(m_Quality); + } + else if (aoMode == (int)AmbientOcclusionMode.MultiScaleVolumetricObscurance) + { + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("Multi-scale volumetric obscurance requires compute shader support.", MessageType.Warning); + + PropertyField(m_ThicknessModifier); + PropertyField(m_ZBias); + + if (RuntimeUtilities.scriptableRenderPipelineActive) + PropertyField(m_DirectLightingStrength); + } + + PropertyField(m_Color); + PropertyField(m_AmbientOnly); + + if (m_AmbientOnly.overrideState.boolValue && m_AmbientOnly.value.boolValue && !RuntimeUtilities.scriptableRenderPipelineActive) + EditorGUILayout.HelpBox("Ambient-only only works with cameras rendering in Deferred + HDR", MessageType.Info); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta new file mode 100644 index 0000000..05a9d62 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 67909952e72978b4ea41880509c936ff +timeCreated: 1505217529 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs new file mode 100644 index 0000000..cdf1e78 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs @@ -0,0 +1,63 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(AutoExposure))] + internal sealed class AutoExposureEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Filtering; + + SerializedParameterOverride m_MinLuminance; + SerializedParameterOverride m_MaxLuminance; + SerializedParameterOverride m_KeyValue; + + SerializedParameterOverride m_EyeAdaptation; + SerializedParameterOverride m_SpeedUp; + SerializedParameterOverride m_SpeedDown; + + public override void OnEnable() + { + m_Filtering = FindParameterOverride(x => x.filtering); + + m_MinLuminance = FindParameterOverride(x => x.minLuminance); + m_MaxLuminance = FindParameterOverride(x => x.maxLuminance); + m_KeyValue = FindParameterOverride(x => x.keyValue); + + m_EyeAdaptation = FindParameterOverride(x => x.eyeAdaptation); + m_SpeedUp = FindParameterOverride(x => x.speedUp); + m_SpeedDown = FindParameterOverride(x => x.speedDown); + } + + public override void OnInspectorGUI() + { + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("Auto exposure requires compute shader support.", MessageType.Warning); + + EditorUtilities.DrawHeaderLabel("Exposure"); + + PropertyField(m_Filtering); + PropertyField(m_MinLuminance); + PropertyField(m_MaxLuminance); + + // Clamp min/max adaptation values + float minLum = m_MinLuminance.value.floatValue; + float maxLum = m_MaxLuminance.value.floatValue; + m_MinLuminance.value.floatValue = Mathf.Min(minLum, maxLum); + m_MaxLuminance.value.floatValue = Mathf.Max(minLum, maxLum); + + PropertyField(m_KeyValue); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Adaptation"); + + PropertyField(m_EyeAdaptation); + + if (m_EyeAdaptation.value.intValue == (int)EyeAdaptation.Progressive) + { + PropertyField(m_SpeedUp); + PropertyField(m_SpeedDown); + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta new file mode 100644 index 0000000..d901e9c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3051d2fb25301fa4a81e797109712feb +timeCreated: 1493022639 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs new file mode 100644 index 0000000..e0b0c17 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs @@ -0,0 +1,65 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(Bloom))] + internal sealed class BloomEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Threshold; + SerializedParameterOverride m_SoftKnee; + SerializedParameterOverride m_Clamp; + SerializedParameterOverride m_Diffusion; + SerializedParameterOverride m_AnamorphicRatio; + SerializedParameterOverride m_Color; + SerializedParameterOverride m_FastMode; + + SerializedParameterOverride m_DirtTexture; + SerializedParameterOverride m_DirtIntensity; + + public override void OnEnable() + { + m_Intensity = FindParameterOverride(x => x.intensity); + m_Threshold = FindParameterOverride(x => x.threshold); + m_SoftKnee = FindParameterOverride(x => x.softKnee); + m_Clamp = FindParameterOverride(x => x.clamp); + m_Diffusion = FindParameterOverride(x => x.diffusion); + m_AnamorphicRatio = FindParameterOverride(x => x.anamorphicRatio); + m_Color = FindParameterOverride(x => x.color); + m_FastMode = FindParameterOverride(x => x.fastMode); + + m_DirtTexture = FindParameterOverride(x => x.dirtTexture); + m_DirtIntensity = FindParameterOverride(x => x.dirtIntensity); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Bloom"); + + PropertyField(m_Intensity); + PropertyField(m_Threshold); + PropertyField(m_SoftKnee); + PropertyField(m_Clamp); + PropertyField(m_Diffusion); + PropertyField(m_AnamorphicRatio); + PropertyField(m_Color); + PropertyField(m_FastMode); + + if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Dirtiness"); + + PropertyField(m_DirtTexture); + PropertyField(m_DirtIntensity); + + if (EditorUtilities.isVREnabled) + { + if ((m_DirtIntensity.overrideState.boolValue && m_DirtIntensity.value.floatValue > 0f) + || (m_DirtTexture.overrideState.boolValue && m_DirtTexture.value.objectReferenceValue != null)) + EditorGUILayout.HelpBox("Using a dirt texture in VR is not recommended.", MessageType.Warning); + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs.meta new file mode 100644 index 0000000..38ac202 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/BloomEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 47feae56b7bdcf4499b96c2aa3c6ce07 +timeCreated: 1493116477 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs new file mode 100644 index 0000000..daf32a5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs @@ -0,0 +1,31 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ChromaticAberration))] + internal sealed class ChromaticAberrationEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_SpectralLut; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_FastMode; + + public override void OnEnable() + { + m_SpectralLut = FindParameterOverride(x => x.spectralLut); + m_Intensity = FindParameterOverride(x => x.intensity); + m_FastMode = FindParameterOverride(x => x.fastMode); + } + + public override void OnInspectorGUI() + { + base.OnInspectorGUI(); + + PropertyField(m_SpectralLut); + PropertyField(m_Intensity); + PropertyField(m_FastMode); + + if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta new file mode 100644 index 0000000..adb717a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f8e5f5614c0d72445b292f4b16ab660b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs new file mode 100644 index 0000000..8658443 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs @@ -0,0 +1,754 @@ +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ColorGrading))] + internal sealed class ColorGradingEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_GradingMode; + + static GUIContent[] s_Curves = + { + new GUIContent("Master"), + new GUIContent("Red"), + new GUIContent("Green"), + new GUIContent("Blue"), + new GUIContent("Hue Vs Hue"), + new GUIContent("Hue Vs Sat"), + new GUIContent("Sat Vs Sat"), + new GUIContent("Lum Vs Sat") + }; + + SerializedParameterOverride m_ExternalLut; + + SerializedParameterOverride m_Tonemapper; + SerializedParameterOverride m_ToneCurveToeStrength; + SerializedParameterOverride m_ToneCurveToeLength; + SerializedParameterOverride m_ToneCurveShoulderStrength; + SerializedParameterOverride m_ToneCurveShoulderLength; + SerializedParameterOverride m_ToneCurveShoulderAngle; + SerializedParameterOverride m_ToneCurveGamma; + + SerializedParameterOverride m_LdrLut; + SerializedParameterOverride m_LdrLutContribution; + + SerializedParameterOverride m_Temperature; + SerializedParameterOverride m_Tint; + + SerializedParameterOverride m_ColorFilter; + SerializedParameterOverride m_HueShift; + SerializedParameterOverride m_Saturation; + SerializedParameterOverride m_Brightness; + SerializedParameterOverride m_PostExposure; + SerializedParameterOverride m_Contrast; + + SerializedParameterOverride m_MixerRedOutRedIn; + SerializedParameterOverride m_MixerRedOutGreenIn; + SerializedParameterOverride m_MixerRedOutBlueIn; + + SerializedParameterOverride m_MixerGreenOutRedIn; + SerializedParameterOverride m_MixerGreenOutGreenIn; + SerializedParameterOverride m_MixerGreenOutBlueIn; + + SerializedParameterOverride m_MixerBlueOutRedIn; + SerializedParameterOverride m_MixerBlueOutGreenIn; + SerializedParameterOverride m_MixerBlueOutBlueIn; + + SerializedParameterOverride m_Lift; + SerializedParameterOverride m_Gamma; + SerializedParameterOverride m_Gain; + + SerializedParameterOverride m_MasterCurve; + SerializedParameterOverride m_RedCurve; + SerializedParameterOverride m_GreenCurve; + SerializedParameterOverride m_BlueCurve; + + SerializedParameterOverride m_HueVsHueCurve; + SerializedParameterOverride m_HueVsSatCurve; + SerializedParameterOverride m_SatVsSatCurve; + SerializedParameterOverride m_LumVsSatCurve; + + // Internal references to the actual animation curves + // Needed for the curve editor + SerializedProperty m_RawMasterCurve; + SerializedProperty m_RawRedCurve; + SerializedProperty m_RawGreenCurve; + SerializedProperty m_RawBlueCurve; + + SerializedProperty m_RawHueVsHueCurve; + SerializedProperty m_RawHueVsSatCurve; + SerializedProperty m_RawSatVsSatCurve; + SerializedProperty m_RawLumVsSatCurve; + + CurveEditor m_CurveEditor; + Dictionary m_CurveDict; + + // Custom tone curve drawing + const int k_CustomToneCurveResolution = 48; + const float k_CustomToneCurveRangeY = 1.025f; + readonly Vector3[] m_RectVertices = new Vector3[4]; + readonly Vector3[] m_LineVertices = new Vector3[2]; + readonly Vector3[] m_CurveVertices = new Vector3[k_CustomToneCurveResolution]; + Rect m_CustomToneCurveRect; + readonly HableCurve m_HableCurve = new HableCurve(); + + public override void OnEnable() + { + m_GradingMode = FindParameterOverride(x => x.gradingMode); + + m_ExternalLut = FindParameterOverride(x => x.externalLut); + + m_Tonemapper = FindParameterOverride(x => x.tonemapper); + m_ToneCurveToeStrength = FindParameterOverride(x => x.toneCurveToeStrength); + m_ToneCurveToeLength = FindParameterOverride(x => x.toneCurveToeLength); + m_ToneCurveShoulderStrength = FindParameterOverride(x => x.toneCurveShoulderStrength); + m_ToneCurveShoulderLength = FindParameterOverride(x => x.toneCurveShoulderLength); + m_ToneCurveShoulderAngle = FindParameterOverride(x => x.toneCurveShoulderAngle); + m_ToneCurveGamma = FindParameterOverride(x => x.toneCurveGamma); + + m_LdrLut = FindParameterOverride(x => x.ldrLut); + m_LdrLutContribution = FindParameterOverride(x => x.ldrLutContribution); + + m_Temperature = FindParameterOverride(x => x.temperature); + m_Tint = FindParameterOverride(x => x.tint); + + m_ColorFilter = FindParameterOverride(x => x.colorFilter); + m_HueShift = FindParameterOverride(x => x.hueShift); + m_Saturation = FindParameterOverride(x => x.saturation); + m_Brightness = FindParameterOverride(x => x.brightness); + m_PostExposure = FindParameterOverride(x => x.postExposure); + m_Contrast = FindParameterOverride(x => x.contrast); + + m_MixerRedOutRedIn = FindParameterOverride(x => x.mixerRedOutRedIn); + m_MixerRedOutGreenIn = FindParameterOverride(x => x.mixerRedOutGreenIn); + m_MixerRedOutBlueIn = FindParameterOverride(x => x.mixerRedOutBlueIn); + + m_MixerGreenOutRedIn = FindParameterOverride(x => x.mixerGreenOutRedIn); + m_MixerGreenOutGreenIn = FindParameterOverride(x => x.mixerGreenOutGreenIn); + m_MixerGreenOutBlueIn = FindParameterOverride(x => x.mixerGreenOutBlueIn); + + m_MixerBlueOutRedIn = FindParameterOverride(x => x.mixerBlueOutRedIn); + m_MixerBlueOutGreenIn = FindParameterOverride(x => x.mixerBlueOutGreenIn); + m_MixerBlueOutBlueIn = FindParameterOverride(x => x.mixerBlueOutBlueIn); + + m_Lift = FindParameterOverride(x => x.lift); + m_Gamma = FindParameterOverride(x => x.gamma); + m_Gain = FindParameterOverride(x => x.gain); + + m_MasterCurve = FindParameterOverride(x => x.masterCurve); + m_RedCurve = FindParameterOverride(x => x.redCurve); + m_GreenCurve = FindParameterOverride(x => x.greenCurve); + m_BlueCurve = FindParameterOverride(x => x.blueCurve); + + m_HueVsHueCurve = FindParameterOverride(x => x.hueVsHueCurve); + m_HueVsSatCurve = FindParameterOverride(x => x.hueVsSatCurve); + m_SatVsSatCurve = FindParameterOverride(x => x.satVsSatCurve); + m_LumVsSatCurve = FindParameterOverride(x => x.lumVsSatCurve); + + m_RawMasterCurve = FindProperty(x => x.masterCurve.value.curve); + m_RawRedCurve = FindProperty(x => x.redCurve.value.curve); + m_RawGreenCurve = FindProperty(x => x.greenCurve.value.curve); + m_RawBlueCurve = FindProperty(x => x.blueCurve.value.curve); + + m_RawHueVsHueCurve = FindProperty(x => x.hueVsHueCurve.value.curve); + m_RawHueVsSatCurve = FindProperty(x => x.hueVsSatCurve.value.curve); + m_RawSatVsSatCurve = FindProperty(x => x.satVsSatCurve.value.curve); + m_RawLumVsSatCurve = FindProperty(x => x.lumVsSatCurve.value.curve); + + m_CurveEditor = new CurveEditor(); + m_CurveDict = new Dictionary(); + + // Prepare the curve editor + SetupCurve(m_RawMasterCurve, new Color(1f, 1f, 1f), 2, false); + SetupCurve(m_RawRedCurve, new Color(1f, 0f, 0f), 2, false); + SetupCurve(m_RawGreenCurve, new Color(0f, 1f, 0f), 2, false); + SetupCurve(m_RawBlueCurve, new Color(0f, 0.5f, 1f), 2, false); + SetupCurve(m_RawHueVsHueCurve, new Color(1f, 1f, 1f), 0, true); + SetupCurve(m_RawHueVsSatCurve, new Color(1f, 1f, 1f), 0, true); + SetupCurve(m_RawSatVsSatCurve, new Color(1f, 1f, 1f), 0, false); + SetupCurve(m_RawLumVsSatCurve, new Color(1f, 1f, 1f), 0, false); + } + + public override void OnInspectorGUI() + { + PropertyField(m_GradingMode); + + var gradingMode = (GradingMode)m_GradingMode.value.intValue; + + // Check if we're in gamma or linear and display a warning if we're trying to do hdr + // color grading while being in gamma mode + if (gradingMode != GradingMode.LowDefinitionRange) + { + if (QualitySettings.activeColorSpace == ColorSpace.Gamma) + EditorGUILayout.HelpBox("ColorSpace in project settings is set to Gamma, HDR color grading won't look correct. Switch to Linear or use LDR color grading mode instead.", MessageType.Warning); + } + + if (m_GradingMode.overrideState.boolValue && gradingMode == GradingMode.External) + { + if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("HDR color grading requires compute shader & 3D render texture support.", MessageType.Warning); + } + + if (gradingMode == GradingMode.LowDefinitionRange) + DoStandardModeGUI(false); + else if (gradingMode == GradingMode.HighDefinitionRange) + DoStandardModeGUI(true); + else if (gradingMode == GradingMode.External) + DoExternalModeGUI(); + + EditorGUILayout.Space(); + } + + void SetupCurve(SerializedProperty prop, Color color, uint minPointCount, bool loop) + { + var state = CurveEditor.CurveState.defaultState; + state.color = color; + state.visible = false; + state.minPointCount = minPointCount; + state.onlyShowHandlesOnSelection = true; + state.zeroKeyConstantValue = 0.5f; + state.loopInBounds = loop; + m_CurveEditor.Add(prop, state); + m_CurveDict.Add(prop, color); + } + + void DoExternalModeGUI() + { + PropertyField(m_ExternalLut); + + var lut = m_ExternalLut.value.objectReferenceValue; + if (lut != null) + { + if (lut.GetType() == typeof(Texture3D)) + { + var o = (Texture3D)lut; + if (o.width == o.height && o.height == o.depth) + return; + } + else if (lut.GetType() == typeof(RenderTexture)) + { + var o = (RenderTexture)lut; + if (o.width == o.height && o.height == o.volumeDepth) + return; + } + + EditorGUILayout.HelpBox("Custom LUTs have to be log-encoded 3D textures or 3D render textures with cube format.", MessageType.Warning); + } + } + + void DoStandardModeGUI(bool hdr) + { + if (!hdr) + { + PropertyField(m_LdrLut); + PropertyField(m_LdrLutContribution); + + var lut = (target as ColorGrading).ldrLut.value; + CheckLutImportSettings(lut); + } + + if (hdr) + { + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Tonemapping"); + PropertyField(m_Tonemapper); + + if (m_Tonemapper.value.intValue == (int)Tonemapper.Custom) + { + DrawCustomToneCurve(); + PropertyField(m_ToneCurveToeStrength); + PropertyField(m_ToneCurveToeLength); + PropertyField(m_ToneCurveShoulderStrength); + PropertyField(m_ToneCurveShoulderLength); + PropertyField(m_ToneCurveShoulderAngle); + PropertyField(m_ToneCurveGamma); + } + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("White Balance"); + + PropertyField(m_Temperature); + PropertyField(m_Tint); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Tone"); + + if (hdr) + PropertyField(m_PostExposure); + + PropertyField(m_ColorFilter); + PropertyField(m_HueShift); + PropertyField(m_Saturation); + + if (!hdr) + PropertyField(m_Brightness); + + PropertyField(m_Contrast); + + EditorGUILayout.Space(); + int currentChannel = GlobalSettings.currentChannelMixer; + + using (new EditorGUILayout.HorizontalScope()) + { + EditorGUILayout.PrefixLabel("Channel Mixer", GUIStyle.none, Styling.headerLabel); + + EditorGUI.BeginChangeCheck(); + { + using (new EditorGUILayout.HorizontalScope()) + { + GUILayoutUtility.GetRect(9f, 18f, GUILayout.ExpandWidth(false)); // Dirty hack to do proper right column alignement + if (GUILayout.Toggle(currentChannel == 0, EditorUtilities.GetContent("Red|Red output channel."), EditorStyles.miniButtonLeft)) currentChannel = 0; + if (GUILayout.Toggle(currentChannel == 1, EditorUtilities.GetContent("Green|Green output channel."), EditorStyles.miniButtonMid)) currentChannel = 1; + if (GUILayout.Toggle(currentChannel == 2, EditorUtilities.GetContent("Blue|Blue output channel."), EditorStyles.miniButtonRight)) currentChannel = 2; + } + } + if (EditorGUI.EndChangeCheck()) + GUI.FocusControl(null); + } + + GlobalSettings.currentChannelMixer = currentChannel; + + if (currentChannel == 0) + { + PropertyField(m_MixerRedOutRedIn); + PropertyField(m_MixerRedOutGreenIn); + PropertyField(m_MixerRedOutBlueIn); + } + else if (currentChannel == 1) + { + PropertyField(m_MixerGreenOutRedIn); + PropertyField(m_MixerGreenOutGreenIn); + PropertyField(m_MixerGreenOutBlueIn); + } + else + { + PropertyField(m_MixerBlueOutRedIn); + PropertyField(m_MixerBlueOutGreenIn); + PropertyField(m_MixerBlueOutBlueIn); + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Trackballs"); + + using (new EditorGUILayout.HorizontalScope()) + { + PropertyField(m_Lift); + GUILayout.Space(4f); + PropertyField(m_Gamma); + GUILayout.Space(4f); + PropertyField(m_Gain); + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Grading Curves"); + + DoCurvesGUI(hdr); + } + + void CheckLutImportSettings(Texture lut) + { + if (lut != null) + { + var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(lut)) as TextureImporter; + + // Fails when using an internal texture as you can't change import settings on + // builtin resources, thus the check for null + if (importer != null) + { + bool valid = importer.anisoLevel == 0 + && importer.mipmapEnabled == false + && importer.sRGBTexture == false + && importer.textureCompression == TextureImporterCompression.Uncompressed + && importer.wrapMode == TextureWrapMode.Clamp; + + if (!valid) + EditorUtilities.DrawFixMeBox("Invalid LUT import settings.", () => SetLutImportSettings(importer)); + } + + if (lut.width != lut.height * lut.height) + { + EditorGUILayout.HelpBox("The Lookup Texture size is invalid. Width should be Height * Height.", MessageType.Error); + } + } + } + + void SetLutImportSettings(TextureImporter importer) + { + importer.textureType = TextureImporterType.Default; + importer.mipmapEnabled = false; + importer.anisoLevel = 0; + importer.sRGBTexture = false; + importer.npotScale = TextureImporterNPOTScale.None; + importer.textureCompression = TextureImporterCompression.Uncompressed; + importer.alphaSource = TextureImporterAlphaSource.None; + importer.wrapMode = TextureWrapMode.Clamp; + importer.SaveAndReimport(); + AssetDatabase.Refresh(); + } + + void DrawCustomToneCurve() + { + EditorGUILayout.Space(); + + // Reserve GUI space + using (new GUILayout.HorizontalScope()) + { + GUILayout.Space(EditorGUI.indentLevel * 15f); + m_CustomToneCurveRect = GUILayoutUtility.GetRect(128, 80); + } + + if (Event.current.type != EventType.Repaint) + return; + + // Prepare curve data + float toeStrength = m_ToneCurveToeStrength.value.floatValue; + float toeLength = m_ToneCurveToeLength.value.floatValue; + float shoulderStrength = m_ToneCurveShoulderStrength.value.floatValue; + float shoulderLength = m_ToneCurveShoulderLength.value.floatValue; + float shoulderAngle = m_ToneCurveShoulderAngle.value.floatValue; + float gamma = m_ToneCurveGamma.value.floatValue; + m_HableCurve.Init( + toeStrength, + toeLength, + shoulderStrength, + shoulderLength, + shoulderAngle, + gamma + ); + + float endPoint = m_HableCurve.whitePoint; + + // Background + m_RectVertices[0] = PointInRect(0f, 0f, endPoint); + m_RectVertices[1] = PointInRect(endPoint, 0f, endPoint); + m_RectVertices[2] = PointInRect(endPoint, k_CustomToneCurveRangeY, endPoint); + m_RectVertices[3] = PointInRect(0f, k_CustomToneCurveRangeY, endPoint); + Handles.DrawSolidRectangleWithOutline(m_RectVertices, Color.white * 0.1f, Color.white * 0.4f); + + // Vertical guides + if (endPoint < m_CustomToneCurveRect.width / 3) + { + int steps = Mathf.CeilToInt(endPoint); + for (var i = 1; i < steps; i++) + DrawLine(i, 0, i, k_CustomToneCurveRangeY, 0.4f, endPoint); + } + + // Label + Handles.Label(m_CustomToneCurveRect.position + Vector2.right, "Custom Tone Curve", EditorStyles.miniLabel); + + // Draw the acual curve + var vcount = 0; + while (vcount < k_CustomToneCurveResolution) + { + float x = endPoint * vcount / (k_CustomToneCurveResolution - 1); + float y = m_HableCurve.Eval(x); + + if (y < k_CustomToneCurveRangeY) + { + m_CurveVertices[vcount++] = PointInRect(x, y, endPoint); + } + else + { + if (vcount > 1) + { + // Extend the last segment to the top edge of the rect. + var v1 = m_CurveVertices[vcount - 2]; + var v2 = m_CurveVertices[vcount - 1]; + var clip = (m_CustomToneCurveRect.y - v1.y) / (v2.y - v1.y); + m_CurveVertices[vcount - 1] = v1 + (v2 - v1) * clip; + } + break; + } + } + + if (vcount > 1) + { + Handles.color = Color.white * 0.9f; + Handles.DrawAAPolyLine(2f, vcount, m_CurveVertices); + } + } + + void DrawLine(float x1, float y1, float x2, float y2, float grayscale, float rangeX) + { + m_LineVertices[0] = PointInRect(x1, y1, rangeX); + m_LineVertices[1] = PointInRect(x2, y2, rangeX); + Handles.color = Color.white * grayscale; + Handles.DrawAAPolyLine(2f, m_LineVertices); + } + + Vector3 PointInRect(float x, float y, float rangeX) + { + x = Mathf.Lerp(m_CustomToneCurveRect.x, m_CustomToneCurveRect.xMax, x / rangeX); + y = Mathf.Lerp(m_CustomToneCurveRect.yMax, m_CustomToneCurveRect.y, y / k_CustomToneCurveRangeY); + return new Vector3(x, y, 0); + } + + void ResetVisibleCurves() + { + foreach (var curve in m_CurveDict) + { + var state = m_CurveEditor.GetCurveState(curve.Key); + state.visible = false; + m_CurveEditor.SetCurveState(curve.Key, state); + } + } + + void SetCurveVisible(SerializedProperty rawProp, SerializedProperty overrideProp) + { + var state = m_CurveEditor.GetCurveState(rawProp); + state.visible = true; + state.editable = overrideProp.boolValue; + m_CurveEditor.SetCurveState(rawProp, state); + } + + void CurveOverrideToggle(SerializedProperty overrideProp) + { + overrideProp.boolValue = GUILayout.Toggle(overrideProp.boolValue, EditorUtilities.GetContent("Override"), EditorStyles.toolbarButton); + } + + static Material s_MaterialGrid; + + void DoCurvesGUI(bool hdr) + { + EditorGUILayout.Space(); + ResetVisibleCurves(); + + using (new EditorGUI.DisabledGroupScope(serializedObject.isEditingMultipleObjects)) + { + int curveEditingId = 0; + SerializedProperty currentCurveRawProp = null; + + // Top toolbar + using (new GUILayout.HorizontalScope(EditorStyles.toolbar)) + { + curveEditingId = DoCurveSelectionPopup(GlobalSettings.currentCurve, hdr); + curveEditingId = Mathf.Clamp(curveEditingId, hdr ? 4 : 0, 7); + + EditorGUILayout.Space(); + + switch (curveEditingId) + { + case 0: + CurveOverrideToggle(m_MasterCurve.overrideState); + SetCurveVisible(m_RawMasterCurve, m_MasterCurve.overrideState); + currentCurveRawProp = m_RawMasterCurve; + break; + case 1: + CurveOverrideToggle(m_RedCurve.overrideState); + SetCurveVisible(m_RawRedCurve, m_RedCurve.overrideState); + currentCurveRawProp = m_RawRedCurve; + break; + case 2: + CurveOverrideToggle(m_GreenCurve.overrideState); + SetCurveVisible(m_RawGreenCurve, m_GreenCurve.overrideState); + currentCurveRawProp = m_RawGreenCurve; + break; + case 3: + CurveOverrideToggle(m_BlueCurve.overrideState); + SetCurveVisible(m_RawBlueCurve, m_BlueCurve.overrideState); + currentCurveRawProp = m_RawBlueCurve; + break; + case 4: + CurveOverrideToggle(m_HueVsHueCurve.overrideState); + SetCurveVisible(m_RawHueVsHueCurve, m_HueVsHueCurve.overrideState); + currentCurveRawProp = m_RawHueVsHueCurve; + break; + case 5: + CurveOverrideToggle(m_HueVsSatCurve.overrideState); + SetCurveVisible(m_RawHueVsSatCurve, m_HueVsSatCurve.overrideState); + currentCurveRawProp = m_RawHueVsSatCurve; + break; + case 6: + CurveOverrideToggle(m_SatVsSatCurve.overrideState); + SetCurveVisible(m_RawSatVsSatCurve, m_SatVsSatCurve.overrideState); + currentCurveRawProp = m_RawSatVsSatCurve; + break; + case 7: + CurveOverrideToggle(m_LumVsSatCurve.overrideState); + SetCurveVisible(m_RawLumVsSatCurve, m_LumVsSatCurve.overrideState); + currentCurveRawProp = m_RawLumVsSatCurve; + break; + } + + GUILayout.FlexibleSpace(); + + if (GUILayout.Button("Reset", EditorStyles.toolbarButton)) + { + switch (curveEditingId) + { + case 0: + m_RawMasterCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 1: + m_RawRedCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 2: + m_RawGreenCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 3: + m_RawBlueCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 4: + m_RawHueVsHueCurve.animationCurveValue = new AnimationCurve(); + break; + case 5: + m_RawHueVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + case 6: + m_RawSatVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + case 7: + m_RawLumVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + } + } + + GlobalSettings.currentCurve = curveEditingId; + } + + // Curve area + var settings = m_CurveEditor.settings; + var rect = GUILayoutUtility.GetAspectRect(2f); + var innerRect = settings.padding.Remove(rect); + + if (Event.current.type == EventType.Repaint) + { + // Background + EditorGUI.DrawRect(rect, new Color(0.15f, 0.15f, 0.15f, 1f)); + + if (curveEditingId == 4 || curveEditingId == 5) + DrawBackgroundTexture(innerRect, 0); + else if (curveEditingId == 6 || curveEditingId == 7) + DrawBackgroundTexture(innerRect, 1); + + // Bounds + Handles.color = Color.white * (GUI.enabled ? 1f : 0.5f); + Handles.DrawSolidRectangleWithOutline(innerRect, Color.clear, new Color(0.8f, 0.8f, 0.8f, 0.5f)); + + // Grid setup + Handles.color = new Color(1f, 1f, 1f, 0.05f); + int hLines = (int)Mathf.Sqrt(innerRect.width); + int vLines = (int)(hLines / (innerRect.width / innerRect.height)); + + // Vertical grid + int gridOffset = Mathf.FloorToInt(innerRect.width / hLines); + int gridPadding = ((int)(innerRect.width) % hLines) / 2; + + for (int i = 1; i < hLines; i++) + { + var offset = gridOffset * i * Vector2.right; + offset.x += gridPadding; + Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.x, innerRect.yMax - 1) + offset); + } + + // Horizontal grid + gridOffset = Mathf.FloorToInt(innerRect.height / vLines); + gridPadding = ((int)(innerRect.height) % vLines) / 2; + + for (int i = 1; i < vLines; i++) + { + var offset = gridOffset * i * Vector2.up; + offset.y += gridPadding; + Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.xMax - 1, innerRect.y) + offset); + } + } + + // Curve editor + if (m_CurveEditor.OnGUI(rect)) + { + Repaint(); + GUI.changed = true; + } + + if (Event.current.type == EventType.Repaint) + { + // Borders + Handles.color = Color.black; + Handles.DrawLine(new Vector2(rect.x, rect.y - 18f), new Vector2(rect.xMax, rect.y - 18f)); + Handles.DrawLine(new Vector2(rect.x, rect.y - 19f), new Vector2(rect.x, rect.yMax)); + Handles.DrawLine(new Vector2(rect.x, rect.yMax), new Vector2(rect.xMax, rect.yMax)); + Handles.DrawLine(new Vector2(rect.xMax, rect.yMax), new Vector2(rect.xMax, rect.y - 18f)); + + bool editable = m_CurveEditor.GetCurveState(currentCurveRawProp).editable; + string editableString = editable ? string.Empty : "(Not Overriding)\n"; + + // Selection info + var selection = m_CurveEditor.GetSelection(); + var infoRect = innerRect; + infoRect.x += 5f; + infoRect.width = 100f; + infoRect.height = 30f; + + if (selection.curve != null && selection.keyframeIndex > -1) + { + var key = selection.keyframe.Value; + GUI.Label(infoRect, string.Format("{0}\n{1}", key.time.ToString("F3"), key.value.ToString("F3")), Styling.preLabel); + } + else + { + GUI.Label(infoRect, editableString, Styling.preLabel); + } + } + } + } + + void DrawBackgroundTexture(Rect rect, int pass) + { + if (s_MaterialGrid == null) + s_MaterialGrid = new Material(Shader.Find("Hidden/PostProcessing/Editor/CurveGrid")) { hideFlags = HideFlags.HideAndDontSave }; + + float scale = EditorGUIUtility.pixelsPerPoint; + +#if UNITY_2018_1_OR_NEWER + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; +#else + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; +#endif + + var oldRt = RenderTexture.active; + var rt = RenderTexture.GetTemporary(Mathf.CeilToInt(rect.width * scale), Mathf.CeilToInt(rect.height * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); + s_MaterialGrid.SetFloat("_DisabledState", GUI.enabled ? 1f : 0.5f); + s_MaterialGrid.SetFloat("_PixelScaling", EditorGUIUtility.pixelsPerPoint); + + Graphics.Blit(null, rt, s_MaterialGrid, pass); + RenderTexture.active = oldRt; + + GUI.DrawTexture(rect, rt); + RenderTexture.ReleaseTemporary(rt); + } + + int DoCurveSelectionPopup(int id, bool hdr) + { + GUILayout.Label(s_Curves[id], EditorStyles.toolbarPopup, GUILayout.MaxWidth(150f)); + + var lastRect = GUILayoutUtility.GetLastRect(); + var e = Event.current; + + if (e.type == EventType.MouseDown && e.button == 0 && lastRect.Contains(e.mousePosition)) + { + var menu = new GenericMenu(); + + for (int i = 0; i < s_Curves.Length; i++) + { + if (i == 4) + menu.AddSeparator(""); + + if (hdr && i < 4) + menu.AddDisabledItem(s_Curves[i]); + else + { + int current = i; // Capture local for closure + menu.AddItem(s_Curves[i], current == id, () => GlobalSettings.currentCurve = current); + } + } + + menu.DropDown(new Rect(lastRect.xMin, lastRect.yMax, 1f, 1f)); + } + + return id; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta new file mode 100644 index 0000000..fdc2a13 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f79c8927d684af6499f512361e23bace +timeCreated: 1493026581 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs new file mode 100644 index 0000000..490fd73 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A default effect editor that gathers all parameters and list them vertically in the + /// inspector. + /// + public class DefaultPostProcessEffectEditor : PostProcessEffectBaseEditor + { + List m_Parameters; + + /// + /// Called when the editor is initialized. + /// + public override void OnEnable() + { + m_Parameters = new List(); + + var fields = target.GetType() + .GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic) + .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride)) && t.Name != "enabled" && ((t.IsPublic && t.GetCustomAttributes(typeof(NonSerializedAttribute), false).Length == 0) + || (t.GetCustomAttributes(typeof(UnityEngine.SerializeField), false).Length > 0)) +) + .ToList(); + + foreach (var field in fields) + { + var property = serializedObject.FindProperty(field.Name); + var attributes = field.GetCustomAttributes(false).Cast().ToArray(); + var parameter = new SerializedParameterOverride(property, attributes); + m_Parameters.Add(parameter); + } + } + + /// + /// Called every time the inspector is being redrawn. This is where you should add your UI + /// drawing code. + /// + public override void OnInspectorGUI() + { + foreach (var parameter in m_Parameters) + PropertyField(parameter); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta new file mode 100644 index 0000000..9289be6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4b0cd5ddb61a56b4f86ea0fd0a102fe7 +timeCreated: 1492705253 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs new file mode 100644 index 0000000..9e58d67 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs @@ -0,0 +1,33 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(DepthOfField))] + internal sealed class DepthOfFieldEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_FocusDistance; + SerializedParameterOverride m_Aperture; + SerializedParameterOverride m_FocalLength; + SerializedParameterOverride m_KernelSize; + + public override void OnEnable() + { + m_FocusDistance = FindParameterOverride(x => x.focusDistance); + m_Aperture = FindParameterOverride(x => x.aperture); + m_FocalLength = FindParameterOverride(x => x.focalLength); + m_KernelSize = FindParameterOverride(x => x.kernelSize); + } + + public override void OnInspectorGUI() + { + if (SystemInfo.graphicsShaderLevel < 35) + EditorGUILayout.HelpBox("Depth Of Field is only supported on the following platforms:\nDX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, PS4/XB1 consoles.", MessageType.Warning); + + PropertyField(m_FocusDistance); + PropertyField(m_Aperture); + PropertyField(m_FocalLength); + PropertyField(m_KernelSize); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta new file mode 100644 index 0000000..826cd59 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eb4c0b518e013c8418135b3bd8a91b6c +timeCreated: 1513004657 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs new file mode 100644 index 0000000..7310e8b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs @@ -0,0 +1,16 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(LensDistortion))] + internal sealed class LensDistortionEditor : DefaultPostProcessEffectEditor + { + public override void OnInspectorGUI() + { + if (EditorUtilities.isVREnabled) + EditorGUILayout.HelpBox("Lens Distortion is available only for non-stereo cameras.", MessageType.Warning); + + base.OnInspectorGUI(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta new file mode 100644 index 0000000..f3b8147 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7758395f983044344b2c8ea743e956c3 +timeCreated: 1519742257 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs new file mode 100644 index 0000000..3fee812 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs @@ -0,0 +1,16 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(MotionBlur))] + internal sealed class MotionBlurEditor : DefaultPostProcessEffectEditor + { + public override void OnInspectorGUI() + { + if (EditorUtilities.isVREnabled) + EditorGUILayout.HelpBox("Motion Blur is available only for non-stereo cameras.", MessageType.Warning); + + base.OnInspectorGUI(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs.meta new file mode 100644 index 0000000..5143d3a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/MotionBlurEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: de3d46fc4bda066408aeba6fb8e44d6a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs new file mode 100644 index 0000000..8fe1451 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs @@ -0,0 +1,58 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ScreenSpaceReflections))] + internal sealed class ScreenSpaceReflectionsEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Preset; + SerializedParameterOverride m_MaximumIterationCount; + SerializedParameterOverride m_Thickness; + SerializedParameterOverride m_Resolution; + SerializedParameterOverride m_MaximumMarchDistance; + SerializedParameterOverride m_DistanceFade; + SerializedParameterOverride m_Vignette; + + public override void OnEnable() + { + m_Preset = FindParameterOverride(x => x.preset); + m_MaximumIterationCount = FindParameterOverride(x => x.maximumIterationCount); + m_Thickness = FindParameterOverride(x => x.thickness); + m_Resolution = FindParameterOverride(x => x.resolution); + m_MaximumMarchDistance = FindParameterOverride(x => x.maximumMarchDistance); + m_DistanceFade = FindParameterOverride(x => x.distanceFade); + m_Vignette = FindParameterOverride(x => x.vignette); + } + + public override void OnInspectorGUI() + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + { + EditorGUILayout.HelpBox("This effect doesn't work with scriptable render pipelines yet.", MessageType.Warning); + return; + } + + if (Camera.main != null && Camera.main.actualRenderingPath != RenderingPath.DeferredShading) + EditorGUILayout.HelpBox("This effect only works with the deferred rendering path.", MessageType.Warning); + + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("This effect requires compute shader support.", MessageType.Warning); + + PropertyField(m_Preset); + + if (m_Preset.value.intValue == (int)ScreenSpaceReflectionPreset.Custom) + { + PropertyField(m_MaximumIterationCount); + PropertyField(m_Thickness); + PropertyField(m_Resolution); + + EditorGUILayout.Space(); + } + + PropertyField(m_MaximumMarchDistance); + PropertyField(m_DistanceFade); + PropertyField(m_Vignette); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta new file mode 100644 index 0000000..1d8d116 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d798d5719bf3b434eafb013385f872eb +timeCreated: 1505226497 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs new file mode 100644 index 0000000..0351076 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs @@ -0,0 +1,91 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(Vignette))] + internal sealed class VignetteEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Mode; + SerializedParameterOverride m_Color; + + SerializedParameterOverride m_Center; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Smoothness; + SerializedParameterOverride m_Roundness; + SerializedParameterOverride m_Rounded; + + SerializedParameterOverride m_Mask; + SerializedParameterOverride m_Opacity; + + public override void OnEnable() + { + m_Mode = FindParameterOverride(x => x.mode); + m_Color = FindParameterOverride(x => x.color); + + m_Center = FindParameterOverride(x => x.center); + m_Intensity = FindParameterOverride(x => x.intensity); + m_Smoothness = FindParameterOverride(x => x.smoothness); + m_Roundness = FindParameterOverride(x => x.roundness); + m_Rounded = FindParameterOverride(x => x.rounded); + + m_Mask = FindParameterOverride(x => x.mask); + m_Opacity = FindParameterOverride(x => x.opacity); + } + + public override void OnInspectorGUI() + { + PropertyField(m_Mode); + PropertyField(m_Color); + + if (m_Mode.value.intValue == (int)VignetteMode.Classic) + { + PropertyField(m_Center); + PropertyField(m_Intensity); + PropertyField(m_Smoothness); + PropertyField(m_Roundness); + PropertyField(m_Rounded); + } + else + { + PropertyField(m_Mask); + + var mask = (target as Vignette).mask.value; + + // Checks import settings on the mask + if (mask != null) + { + var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(mask)) as TextureImporter; + + // Fails when using an internal texture as you can't change import settings on + // builtin resources, thus the check for null + if (importer != null) + { + bool valid = importer.anisoLevel == 0 + && importer.mipmapEnabled == false + && importer.alphaSource == TextureImporterAlphaSource.FromGrayScale + && importer.textureCompression == TextureImporterCompression.Uncompressed + && importer.wrapMode == TextureWrapMode.Clamp; + + if (!valid) + EditorUtilities.DrawFixMeBox("Invalid mask import settings.", () => SetMaskImportSettings(importer)); + } + } + + PropertyField(m_Opacity); + } + } + + void SetMaskImportSettings(TextureImporter importer) + { + importer.textureType = TextureImporterType.SingleChannel; + importer.alphaSource = TextureImporterAlphaSource.FromGrayScale; + importer.textureCompression = TextureImporterCompression.Uncompressed; + importer.anisoLevel = 0; + importer.mipmapEnabled = false; + importer.wrapMode = TextureWrapMode.Clamp; + importer.SaveAndReimport(); + AssetDatabase.Refresh(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs.meta new file mode 100644 index 0000000..d4da4fd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Effects/VignetteEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3869d037332a74744a54736f00d62763 +timeCreated: 1492696599 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs new file mode 100644 index 0000000..2455861 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs @@ -0,0 +1,144 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CustomEditor(typeof(PostProcessDebug))] + sealed class PostProcessDebugEditor : BaseEditor + { + SerializedProperty m_PostProcessLayer; + SerializedProperty m_LightMeterEnabled; + SerializedProperty m_HistogramEnabled; + SerializedProperty m_WaveformEnabled; + SerializedProperty m_VectorscopeEnabled; + SerializedProperty m_Overlay; + + SerializedObject m_LayerObject; + + SerializedProperty m_LightMeterShowCurves; + SerializedProperty m_HistogramChannel; + SerializedProperty m_WaveformExposure; + SerializedProperty m_VectorscopeExposure; + + SerializedProperty m_LinearDepth; + SerializedProperty m_MotionColorIntensity; + SerializedProperty m_MotionGridSize; + SerializedProperty m_ColorBlindness; + SerializedProperty m_ColorBlindnessStrength; + + void OnEnable() + { + m_PostProcessLayer = FindProperty(x => x.postProcessLayer); + m_LightMeterEnabled = FindProperty(x => x.lightMeter); + m_HistogramEnabled = FindProperty(x => x.histogram); + m_WaveformEnabled = FindProperty(x => x.waveform); + m_VectorscopeEnabled = FindProperty(x => x.vectorscope); + m_Overlay = FindProperty(x => x.debugOverlay); + + if (m_PostProcessLayer.objectReferenceValue != null) + RebuildProperties(); + } + + void RebuildProperties() + { + if (m_PostProcessLayer.objectReferenceValue == null) + return; + + m_LayerObject = new SerializedObject(m_Target.postProcessLayer); + + m_LightMeterShowCurves = m_LayerObject.FindProperty("debugLayer.lightMeter.showCurves"); + m_HistogramChannel = m_LayerObject.FindProperty("debugLayer.histogram.channel"); + m_WaveformExposure = m_LayerObject.FindProperty("debugLayer.waveform.exposure"); + m_VectorscopeExposure = m_LayerObject.FindProperty("debugLayer.vectorscope.exposure"); + + m_LinearDepth = m_LayerObject.FindProperty("debugLayer.overlaySettings.linearDepth"); + m_MotionColorIntensity = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionColorIntensity"); + m_MotionGridSize = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionGridSize"); + m_ColorBlindness = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessType"); + m_ColorBlindnessStrength = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessStrength"); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + using (var changed = new EditorGUI.ChangeCheckScope()) + { + EditorGUILayout.PropertyField(m_PostProcessLayer); + serializedObject.ApplyModifiedProperties(); // Needed to rebuild properties after a change + serializedObject.Update(); + + if (changed.changed) + RebuildProperties(); + } + + if (RuntimeUtilities.scriptableRenderPipelineActive) + { + EditorGUILayout.Space(); + EditorGUILayout.HelpBox("A scriptable render pipeline is active, these features might not be available.", MessageType.Info); + } + + if (m_PostProcessLayer.objectReferenceValue != null) + { + m_LayerObject.Update(); + + // Overlays + EditorGUILayout.Space(); + EditorGUILayout.LabelField(EditorUtilities.GetContent("Overlay"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + EditorGUILayout.PropertyField(m_Overlay); + DoOverlayGUI(DebugOverlay.Depth, m_LinearDepth); + DoOverlayGUI(DebugOverlay.MotionVectors, m_MotionColorIntensity, m_MotionGridSize); + DoOverlayGUI(DebugOverlay.ColorBlindnessSimulation, m_ColorBlindness, m_ColorBlindnessStrength); + + // Special cases + if (m_Overlay.intValue == (int)DebugOverlay.NANTracker && m_Target.postProcessLayer.stopNaNPropagation) + EditorGUILayout.HelpBox("Disable \"Stop NaN Propagation\" in the Post-process layer or NaNs will be overwritten!", MessageType.Warning); + + EditorGUI.indentLevel--; + + // Monitors + EditorGUILayout.Space(); + EditorGUILayout.LabelField(EditorUtilities.GetContent("Monitors"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + DoMonitorGUI(EditorUtilities.GetContent("Light Meter"), m_LightMeterEnabled, m_LightMeterShowCurves); + DoMonitorGUI(EditorUtilities.GetContent("Histogram"), m_HistogramEnabled, m_HistogramChannel); + DoMonitorGUI(EditorUtilities.GetContent("Waveform"), m_WaveformEnabled, m_WaveformExposure); + DoMonitorGUI(EditorUtilities.GetContent("Vectorscope"), m_VectorscopeEnabled, m_VectorscopeExposure); + EditorGUI.indentLevel--; + + m_LayerObject.ApplyModifiedProperties(); + } + + serializedObject.ApplyModifiedProperties(); + } + + void DoMonitorGUI(GUIContent content, SerializedProperty prop, params SerializedProperty[] settings) + { + EditorGUILayout.PropertyField(prop, content); + + if (settings == null || settings.Length == 0) + return; + + if (prop.boolValue) + { + EditorGUI.indentLevel++; + foreach (var p in settings) + EditorGUILayout.PropertyField(p); + EditorGUI.indentLevel--; + } + } + + void DoOverlayGUI(DebugOverlay overlay, params SerializedProperty[] settings) + { + if (m_Overlay.intValue != (int)overlay) + return; + + if (settings == null || settings.Length == 0) + return; + + foreach (var p in settings) + EditorGUILayout.PropertyField(p); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs.meta new file mode 100644 index 0000000..c58dbc5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessDebugEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 75be0b76c5da33a41a2e679cfb7f453c +timeCreated: 1499771607 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs new file mode 100644 index 0000000..a5c0b89 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs @@ -0,0 +1,216 @@ +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The base class for all post-processing effect related editors. If you want to customize the + /// look of a custom post-processing effect, inherit from + /// instead. + /// + /// + public class PostProcessEffectBaseEditor + { + internal PostProcessEffectSettings target { get; private set; } + internal SerializedObject serializedObject { get; private set; } + + internal SerializedProperty baseProperty; + internal SerializedProperty activeProperty; + + SerializedProperty m_Enabled; + Editor m_Inspector; + + internal PostProcessEffectBaseEditor() + { + } + + /// + /// Repaints the inspector. + /// + public void Repaint() + { + m_Inspector.Repaint(); + } + + internal void Init(PostProcessEffectSettings target, Editor inspector) + { + this.target = target; + m_Inspector = inspector; + serializedObject = new SerializedObject(target); + m_Enabled = serializedObject.FindProperty("enabled.value"); + activeProperty = serializedObject.FindProperty("active"); + OnEnable(); + } + + /// + /// Called when the editor is initialized. + /// + public virtual void OnEnable() + { + } + + /// + /// Called when the editor is de-initialized. + /// + public virtual void OnDisable() + { + } + + internal void OnInternalInspectorGUI() + { + serializedObject.Update(); + TopRowFields(); + OnInspectorGUI(); + EditorGUILayout.Space(); + serializedObject.ApplyModifiedProperties(); + } + + /// + /// Called every time the inspector is being redrawn. This is where you should add your UI + /// drawing code. + /// + public virtual void OnInspectorGUI() + { + } + + /// + /// Returns the label to use as the effect title. You can override this to return a custom + /// label, else it will use the effect type as the title. + /// + /// The label to use as the effect title + public virtual string GetDisplayTitle() + { + return ObjectNames.NicifyVariableName(target.GetType().Name); + } + + void TopRowFields() + { + using (new EditorGUILayout.HorizontalScope()) + { + if (GUILayout.Button(EditorUtilities.GetContent("All|Toggle all overrides on. To maximize performances you should only toggle overrides that you actually need."), Styling.miniLabelButton, GUILayout.Width(17f), GUILayout.ExpandWidth(false))) + SetAllOverridesTo(true); + + if (GUILayout.Button(EditorUtilities.GetContent("None|Toggle all overrides off."), Styling.miniLabelButton, GUILayout.Width(32f), GUILayout.ExpandWidth(false))) + SetAllOverridesTo(false); + + GUILayout.FlexibleSpace(); + + bool enabled = m_Enabled.boolValue; + enabled = GUILayout.Toggle(enabled, EditorUtilities.GetContent("On|Enable this effect."), EditorStyles.miniButtonLeft, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); + enabled = !GUILayout.Toggle(!enabled, EditorUtilities.GetContent("Off|Disable this effect."), EditorStyles.miniButtonRight, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); + m_Enabled.boolValue = enabled; + } + } + + void SetAllOverridesTo(bool state) + { + Undo.RecordObject(target, "Toggle All"); + target.SetAllOverridesTo(state); + serializedObject.Update(); + } + + /// + /// Draws a property UI element. + /// + /// The property to draw + protected void PropertyField(SerializedParameterOverride property) + { + var title = EditorUtilities.GetContent(property.displayName); + PropertyField(property, title); + } + + /// + /// Draws a property UI element with a custom title and/or tooltip. + /// + /// The property to draw + /// A custom title and/or tooltip + protected void PropertyField(SerializedParameterOverride property, GUIContent title) + { + // Check for DisplayNameAttribute first + var displayNameAttr = property.GetAttribute(); + if (displayNameAttr != null) + title.text = displayNameAttr.displayName; + + // Add tooltip if it's missing and an attribute is available + if (string.IsNullOrEmpty(title.tooltip)) + { + var tooltipAttr = property.GetAttribute(); + if (tooltipAttr != null) + title.tooltip = tooltipAttr.tooltip; + } + + // Look for a compatible attribute decorator + AttributeDecorator decorator = null; + Attribute attribute = null; + + foreach (var attr in property.attributes) + { + // Use the first decorator we found + if (decorator == null) + { + decorator = EditorUtilities.GetDecorator(attr.GetType()); + attribute = attr; + } + + // Draw unity built-in Decorators (Space, Header) + if (attr is PropertyAttribute) + { + if (attr is SpaceAttribute) + { + EditorGUILayout.GetControlRect(false, (attr as SpaceAttribute).height); + } + else if (attr is HeaderAttribute) + { + var rect = EditorGUILayout.GetControlRect(false, 24f); + rect.y += 8f; + rect = EditorGUI.IndentedRect(rect); + EditorGUI.LabelField(rect, (attr as HeaderAttribute).header, Styling.headerLabel); + } + } + } + + bool invalidProp = false; + + if (decorator != null && !decorator.IsAutoProperty()) + { + if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) + return; + + // Attribute is invalid for the specified property; use default unity field instead + invalidProp = true; + } + + using (new EditorGUILayout.HorizontalScope()) + { + // Override checkbox + var overrideRect = GUILayoutUtility.GetRect(17f, 17f, GUILayout.ExpandWidth(false)); + overrideRect.yMin += 4f; + EditorUtilities.DrawOverrideCheckbox(overrideRect, property.overrideState); + + // Property + using (new EditorGUI.DisabledScope(!property.overrideState.boolValue)) + { + if (decorator != null && !invalidProp) + { + if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) + return; + } + + // Default unity field + if (property.value.hasVisibleChildren + && property.value.propertyType != SerializedPropertyType.Vector2 + && property.value.propertyType != SerializedPropertyType.Vector3) + { + GUILayout.Space(12f); + EditorGUILayout.PropertyField(property.value, title, true); + } + else + { + EditorGUILayout.PropertyField(property.value, title); + } + } + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta new file mode 100644 index 0000000..9cf37b8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5a7e5d36c781f1a469ea8f981b785506 +timeCreated: 1492689813 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs new file mode 100644 index 0000000..f948cf6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs @@ -0,0 +1,88 @@ +using System; +using System.Linq.Expressions; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The class to inherit from when designing custom effect editors. + /// + /// The effect type to create an editor for + public class PostProcessEffectEditor : PostProcessEffectBaseEditor + where T : PostProcessEffectSettings + { + /// + /// Find a serialized property using an expression instead of a string. This is safer as it + /// helps avoiding typos and make code refactoring easier. + /// + /// The serialized value type + /// The expression to parse to reach the property + /// A or null if none was found + /// + /// + /// [Serializable] + /// public class MyEffect : PostProcessEffectSettings + /// { + /// public float myParameter = 1f; + /// } + /// + /// [PostProcessEditor(typeof(MyEffect))] + /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> + /// { + /// SerializedProperty m_MyParameter; + /// + /// public override void OnEnable() + /// { + /// m_MyParameter = FindProperty(x => x.myParameter); + /// } + /// } + /// + /// + /// + /// If you're trying to retrieve a , you should + /// use instead. + /// + /// + /// + protected SerializedProperty FindProperty(Expression> expr) + { + return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + } + + /// + /// Find a serialized parameter override using an expression instead of a string. This is + /// safer as it helps avoiding typos and make code refactoring easier. + /// + /// The serialized value type + /// The expression to parse to reach the parameter override + /// A or null if none was + /// found + /// + /// + /// [Serializable] + /// public class MyEffect : PostProcessEffectSettings + /// { + /// public FloatParameter myParameter = new FloatParameter { value = 1f }; + /// } + /// + /// [PostProcessEditor(typeof(MyEffect))] + /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> + /// { + /// SerializedParameterOverride m_MyParameter; + /// + /// public override void OnEnable() + /// { + /// m_MyParameter = FindParameterOverride(x => x.myParameter); + /// } + /// } + /// + /// + /// + protected SerializedParameterOverride FindParameterOverride(Expression> expr) + { + var property = serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + var attributes = RuntimeUtilities.GetMemberAttributes(expr); + return new SerializedParameterOverride(property, attributes); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs.meta new file mode 100644 index 0000000..dd6be58 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessEffectEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e81ec1796a6c9844f9ab3847494d7911 +timeCreated: 1492690838 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs new file mode 100644 index 0000000..20f363c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs @@ -0,0 +1,472 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; +using UnityEditorInternal; +using System.IO; + +namespace UnityEditor.Rendering.PostProcessing +{ + using SerializedBundleRef = PostProcessLayer.SerializedBundleRef; + using EXRFlags = Texture2D.EXRFlags; + + [CanEditMultipleObjects, CustomEditor(typeof(PostProcessLayer))] + sealed class PostProcessLayerEditor : BaseEditor + { + SerializedProperty m_StopNaNPropagation; +#pragma warning disable 414 + SerializedProperty m_DirectToCameraTarget; +#pragma warning restore 414 + SerializedProperty m_VolumeTrigger; + SerializedProperty m_VolumeLayer; + + SerializedProperty m_AntialiasingMode; + SerializedProperty m_TaaJitterSpread; + SerializedProperty m_TaaSharpness; + SerializedProperty m_TaaStationaryBlending; + SerializedProperty m_TaaMotionBlending; + SerializedProperty m_SmaaQuality; + SerializedProperty m_FxaaFastMode; + SerializedProperty m_FxaaKeepAlpha; + + SerializedProperty m_FsrQualityMode; + SerializedProperty m_FsrPerformSharpen; + SerializedProperty m_FsrSharpness; + SerializedProperty m_FsrEnableFP16; + SerializedProperty m_FsrExposureSource; + SerializedProperty m_FsrExposureTexture; + SerializedProperty m_FsrPreExposure; + SerializedProperty m_FsrAutoReactive; + SerializedProperty m_FsrAutoReactiveParams; + SerializedProperty m_FsrReactiveMaskTexture; + SerializedProperty m_FsrAutoTcr; + SerializedProperty m_FsrAutoTcrParams; + SerializedProperty m_FsrTcrMaskTexture; + + SerializedProperty m_FogEnabled; + SerializedProperty m_FogExcludeSkybox; + + SerializedProperty m_ShowToolkit; + SerializedProperty m_ShowCustomSorter; + + Dictionary m_CustomLists; + +#if UNITY_2017_3_OR_NEWER + Camera m_TargetCameraComponent; +#endif + + static GUIContent[] s_AntialiasingMethodNames = + { + new GUIContent("No Anti-aliasing"), + new GUIContent("Fast Approximate Anti-aliasing (FXAA)"), + new GUIContent("Subpixel Morphological Anti-aliasing (SMAA)"), + new GUIContent("Temporal Anti-aliasing (TAA)"), + new GUIContent("FidelityFX Super Resolution 2 (FSR2)") + }; + + enum ExportMode + { + FullFrame, + DisablePost, + BreakBeforeColorGradingLinear, + BreakBeforeColorGradingLog + } + + void OnEnable() + { + m_StopNaNPropagation = FindProperty(x => x.stopNaNPropagation); + m_DirectToCameraTarget = FindProperty(x => x.finalBlitToCameraTarget); + m_VolumeTrigger = FindProperty(x => x.volumeTrigger); + m_VolumeLayer = FindProperty(x => x.volumeLayer); + + m_AntialiasingMode = FindProperty(x => x.antialiasingMode); + m_TaaJitterSpread = FindProperty(x => x.temporalAntialiasing.jitterSpread); + m_TaaSharpness = FindProperty(x => x.temporalAntialiasing.sharpness); + m_TaaStationaryBlending = FindProperty(x => x.temporalAntialiasing.stationaryBlending); + m_TaaMotionBlending = FindProperty(x => x.temporalAntialiasing.motionBlending); + m_SmaaQuality = FindProperty(x => x.subpixelMorphologicalAntialiasing.quality); + m_FxaaFastMode = FindProperty(x => x.fastApproximateAntialiasing.fastMode); + m_FxaaKeepAlpha = FindProperty(x => x.fastApproximateAntialiasing.keepAlpha); + + m_FsrQualityMode = FindProperty(x => x.superResolution.qualityMode); + m_FsrPerformSharpen = FindProperty(x => x.superResolution.performSharpenPass); + m_FsrSharpness = FindProperty(x => x.superResolution.sharpness); + m_FsrEnableFP16 = FindProperty(x => x.superResolution.enableFP16); + m_FsrExposureSource = FindProperty(x => x.superResolution.exposureSource); + m_FsrExposureTexture = FindProperty(x => x.superResolution.exposure); + m_FsrPreExposure = FindProperty(x => x.superResolution.preExposure); + m_FsrAutoReactive = FindProperty(x => x.superResolution.autoGenerateReactiveMask); + m_FsrAutoReactiveParams = FindProperty(x => x.superResolution.generateReactiveParameters); + m_FsrReactiveMaskTexture = FindProperty(x => x.superResolution.reactiveMask); + m_FsrAutoTcr = FindProperty(x => x.superResolution.autoGenerateTransparencyAndComposition); + m_FsrAutoTcrParams = FindProperty(x => x.superResolution.generateTransparencyAndCompositionParameters); + m_FsrTcrMaskTexture = FindProperty(x => x.superResolution.transparencyAndCompositionMask); + + m_FogEnabled = FindProperty(x => x.fog.enabled); + m_FogExcludeSkybox = FindProperty(x => x.fog.excludeSkybox); + + m_ShowToolkit = serializedObject.FindProperty("m_ShowToolkit"); + m_ShowCustomSorter = serializedObject.FindProperty("m_ShowCustomSorter"); + +#if UNITY_2017_3_OR_NEWER + m_TargetCameraComponent = m_Target.GetComponent(); +#endif + } + + void OnDisable() + { + m_CustomLists = null; + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + var camera = m_Target.GetComponent(); + + DoVolumeBlending(); + DoAntialiasing(); + DoFog(camera); + + EditorGUILayout.PropertyField(m_StopNaNPropagation, EditorUtilities.GetContent("Stop NaN Propagation|Automatically replaces NaN/Inf in shaders by a black pixel to avoid breaking some effects. This will slightly affect performances and should only be used if you experience NaN issues that you can't fix. Has no effect on GLES2 platforms.")); + +#if UNITY_2019_1_OR_NEWER + if (!RuntimeUtilities.scriptableRenderPipelineActive) + EditorGUILayout.PropertyField(m_DirectToCameraTarget, EditorUtilities.GetContent("Directly to Camera Target|Use the final blit to the camera render target for postprocessing. This has less overhead but breaks compatibility with legacy image effect that use OnRenderImage.")); +#endif + + EditorGUILayout.Space(); + + DoToolkit(); + DoCustomEffectSorter(); + + EditorUtilities.DrawSplitter(); + EditorGUILayout.Space(); + + serializedObject.ApplyModifiedProperties(); + } + + void DoVolumeBlending() + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Volume blending"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + // The layout system sort of break alignement when mixing inspector fields with + // custom layouted fields, do the layout manually instead + var indentOffset = EditorGUI.indentLevel * 15f; + var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); + var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); + var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - 60f, lineRect.height); + var buttonRect = new Rect(fieldRect.xMax, lineRect.y, 60f, lineRect.height); + + EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent("Trigger|A transform that will act as a trigger for volume blending.")); + m_VolumeTrigger.objectReferenceValue = (Transform)EditorGUI.ObjectField(fieldRect, m_VolumeTrigger.objectReferenceValue, typeof(Transform), true); + if (GUI.Button(buttonRect, EditorUtilities.GetContent("This|Assigns the current GameObject as a trigger."), EditorStyles.miniButton)) + m_VolumeTrigger.objectReferenceValue = m_Target.transform; + + if (m_VolumeTrigger.objectReferenceValue == null) + EditorGUILayout.HelpBox("No trigger has been set, the camera will only be affected by global volumes.", MessageType.Info); + + EditorGUILayout.PropertyField(m_VolumeLayer, EditorUtilities.GetContent("Layer|This camera will only be affected by volumes in the selected scene-layers.")); + + int mask = m_VolumeLayer.intValue; + if (mask == 0) + EditorGUILayout.HelpBox("No layer has been set, the trigger will never be affected by volumes.", MessageType.Warning); + else if (mask == -1 || ((mask & 1) != 0)) + EditorGUILayout.HelpBox("Do not use \"Everything\" or \"Default\" as a layer mask as it will slow down the volume blending process! Put post-processing volumes in their own dedicated layer for best performances.", MessageType.Warning); + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoAntialiasing() + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Anti-aliasing"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + m_AntialiasingMode.intValue = EditorGUILayout.Popup(EditorUtilities.GetContent("Mode|The anti-aliasing method to use. FXAA is fast but low quality. SMAA works well for non-HDR scenes. TAA is a bit slower but higher quality and works well with HDR."), m_AntialiasingMode.intValue, s_AntialiasingMethodNames); + + if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.TemporalAntialiasing) + { +#if !UNITY_2017_3_OR_NEWER + if (RuntimeUtilities.isSinglePassStereoSelected) + EditorGUILayout.HelpBox("TAA requires Unity 2017.3+ for Single-pass stereo rendering support.", MessageType.Warning); +#endif +#if UNITY_2017_3_OR_NEWER + if (m_TargetCameraComponent != null && RuntimeUtilities.IsDynamicResolutionEnabled(m_TargetCameraComponent)) + EditorGUILayout.HelpBox("TAA is not supported with Dynamic Resolution.", MessageType.Warning); +#endif + + EditorGUILayout.PropertyField(m_TaaJitterSpread); + EditorGUILayout.PropertyField(m_TaaStationaryBlending); + EditorGUILayout.PropertyField(m_TaaMotionBlending); + EditorGUILayout.PropertyField(m_TaaSharpness); + } + else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.SubpixelMorphologicalAntialiasing) + { + if (RuntimeUtilities.isSinglePassStereoSelected) + EditorGUILayout.HelpBox("SMAA doesn't work with Single-pass stereo rendering.", MessageType.Warning); + + EditorGUILayout.PropertyField(m_SmaaQuality); + + if (m_SmaaQuality.intValue != (int)SubpixelMorphologicalAntialiasing.Quality.Low && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Low Quality on mobile and console platforms.", MessageType.Warning); + } + else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.FastApproximateAntialiasing) + { + EditorGUILayout.PropertyField(m_FxaaFastMode); + EditorGUILayout.PropertyField(m_FxaaKeepAlpha); + + if (!m_FxaaFastMode.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + } + else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.SuperResolution) + { + EditorGUILayout.PropertyField(m_FsrQualityMode); + EditorGUILayout.PropertyField(m_FsrPerformSharpen); + EditorGUILayout.PropertyField(m_FsrSharpness); + EditorGUILayout.PropertyField(m_FsrEnableFP16); + EditorGUILayout.PropertyField(m_FsrExposureSource); + if (m_FsrExposureSource.intValue == (int)SuperResolution.ExposureSource.Manual) EditorGUILayout.PropertyField(m_FsrExposureTexture); + EditorGUILayout.PropertyField(m_FsrPreExposure); + EditorGUILayout.PropertyField(m_FsrAutoReactive); + EditorGUILayout.PropertyField(m_FsrAutoReactive.boolValue ? m_FsrAutoReactiveParams : m_FsrReactiveMaskTexture); + EditorGUILayout.PropertyField(m_FsrAutoTcr); + EditorGUILayout.PropertyField(m_FsrAutoTcr.boolValue ? m_FsrAutoTcrParams : m_FsrTcrMaskTexture); + } + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoFog(Camera camera) + { + if (camera == null || camera.actualRenderingPath != RenderingPath.DeferredShading) + return; + + EditorGUILayout.LabelField(EditorUtilities.GetContent("Deferred Fog"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + EditorGUILayout.PropertyField(m_FogEnabled); + + if (m_FogEnabled.boolValue) + { + EditorGUILayout.PropertyField(m_FogExcludeSkybox); + EditorGUILayout.HelpBox("This adds fog compatibility to the deferred rendering path; actual fog settings should be set in the Lighting panel.", MessageType.Info); + } + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoToolkit() + { + EditorUtilities.DrawSplitter(); + m_ShowToolkit.boolValue = EditorUtilities.DrawHeader("Toolkit", m_ShowToolkit.boolValue); + + if (m_ShowToolkit.boolValue) + { + GUILayout.Space(2); + + if (GUILayout.Button(EditorUtilities.GetContent("Export frame to EXR..."), EditorStyles.miniButton)) + { + var menu = new GenericMenu(); + menu.AddItem(EditorUtilities.GetContent("Full Frame (as displayed)"), false, () => ExportFrameToExr(ExportMode.FullFrame)); + menu.AddItem(EditorUtilities.GetContent("Disable post-processing"), false, () => ExportFrameToExr(ExportMode.DisablePost)); + menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Linear)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLinear)); + menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Log)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLog)); + menu.ShowAsContext(); + } + + if (GUILayout.Button(EditorUtilities.GetContent("Select all layer volumes|Selects all the volumes that will influence this layer."), EditorStyles.miniButton)) + { + var volumes = RuntimeUtilities.GetAllSceneObjects() + .Where(x => (m_VolumeLayer.intValue & (1 << x.gameObject.layer)) != 0) + .Select(x => x.gameObject) + .Cast() + .ToArray(); + + if (volumes.Length > 0) + Selection.objects = volumes; + } + + if (GUILayout.Button(EditorUtilities.GetContent("Select all active volumes|Selects all volumes currently affecting the layer."), EditorStyles.miniButton)) + { + var volumes = new List(); + PostProcessManager.instance.GetActiveVolumes(m_Target, volumes); + + if (volumes.Count > 0) + { + Selection.objects = volumes + .Select(x => x.gameObject) + .Cast() + .ToArray(); + } + } + + GUILayout.Space(3); + } + } + + void DoCustomEffectSorter() + { + EditorUtilities.DrawSplitter(); + m_ShowCustomSorter.boolValue = EditorUtilities.DrawHeader("Custom Effect Sorting", m_ShowCustomSorter.boolValue); + + if (m_ShowCustomSorter.boolValue) + { + bool isInPrefab = false; + + // Init lists if needed + if (m_CustomLists == null) + { + // In some cases the editor will refresh before components which means + // components might not have been fully initialized yet. In this case we also + // need to make sure that we're not in a prefab as sorteBundles isn't a + // serializable object and won't exist until put on a scene. + if (m_Target.sortedBundles == null) + { + isInPrefab = string.IsNullOrEmpty(m_Target.gameObject.scene.name); + + if (!isInPrefab) + { + // sortedBundles will be initialized and ready to use on the next frame + Repaint(); + } + } + else + { + // Create a reorderable list for each injection event + m_CustomLists = new Dictionary(); + foreach (var evt in Enum.GetValues(typeof(PostProcessEvent)).Cast()) + { + var bundles = m_Target.sortedBundles[evt]; + var listName = ObjectNames.NicifyVariableName(evt.ToString()); + + var list = new ReorderableList(bundles, typeof(SerializedBundleRef), true, true, false, false); + + list.drawHeaderCallback = (rect) => + { + EditorGUI.LabelField(rect, listName); + }; + + list.drawElementCallback = (rect, index, isActive, isFocused) => + { + var sbr = (SerializedBundleRef)list.list[index]; + EditorGUI.LabelField(rect, sbr.bundle.attribute.menuItem); + }; + + list.onReorderCallback = (l) => + { + EditorUtility.SetDirty(m_Target); + }; + + m_CustomLists.Add(evt, list); + } + } + } + + GUILayout.Space(5); + + if (isInPrefab) + { + EditorGUILayout.HelpBox("Not supported in prefabs.", MessageType.Info); + GUILayout.Space(3); + return; + } + + bool anyList = false; + if (m_CustomLists != null) + { + foreach (var kvp in m_CustomLists) + { + var list = kvp.Value; + + // Skip empty lists to avoid polluting the inspector + if (list.count == 0) + continue; + + list.DoLayoutList(); + anyList = true; + } + } + + if (!anyList) + { + EditorGUILayout.HelpBox("No custom effect loaded.", MessageType.Info); + GUILayout.Space(3); + } + } + } + + void ExportFrameToExr(ExportMode mode) + { + string path = EditorUtility.SaveFilePanel("Export EXR...", "", "Frame", "exr"); + + if (string.IsNullOrEmpty(path)) + return; + + EditorUtility.DisplayProgressBar("Export EXR", "Rendering...", 0f); + + var camera = m_Target.GetComponent(); + var w = camera.pixelWidth; + var h = camera.pixelHeight; + + var texOut = new Texture2D(w, h, TextureFormat.RGBAFloat, false, true); + var target = RenderTexture.GetTemporary(w, h, 24, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); + + var lastActive = RenderTexture.active; + var lastTargetSet = camera.targetTexture; + var lastPostFXState = m_Target.enabled; + var lastBreakColorGradingState = m_Target.breakBeforeColorGrading; + + if (mode == ExportMode.DisablePost) + m_Target.enabled = false; + else if (mode == ExportMode.BreakBeforeColorGradingLinear || mode == ExportMode.BreakBeforeColorGradingLog) + m_Target.breakBeforeColorGrading = true; + + camera.targetTexture = target; + camera.Render(); + camera.targetTexture = lastTargetSet; + + EditorUtility.DisplayProgressBar("Export EXR", "Reading...", 0.25f); + + m_Target.enabled = lastPostFXState; + m_Target.breakBeforeColorGrading = lastBreakColorGradingState; + + if (mode == ExportMode.BreakBeforeColorGradingLog) + { + // Convert to log + var material = new Material(Shader.Find("Hidden/PostProcessing/Editor/ConvertToLog")); + var newTarget = RenderTexture.GetTemporary(w, h, 0, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); + Graphics.Blit(target, newTarget, material, 0); + RenderTexture.ReleaseTemporary(target); + DestroyImmediate(material); + target = newTarget; + } + + RenderTexture.active = target; + texOut.ReadPixels(new Rect(0, 0, w, h), 0, 0); + texOut.Apply(); + RenderTexture.active = lastActive; + + EditorUtility.DisplayProgressBar("Export EXR", "Encoding...", 0.5f); + + var bytes = texOut.EncodeToEXR(EXRFlags.OutputAsFloat | EXRFlags.CompressZIP); + + EditorUtility.DisplayProgressBar("Export EXR", "Saving...", 0.75f); + + File.WriteAllBytes(path, bytes); + + EditorUtility.ClearProgressBar(); + AssetDatabase.Refresh(); + + RenderTexture.ReleaseTemporary(target); + DestroyImmediate(texOut); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs.meta new file mode 100644 index 0000000..1819aa2 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessLayerEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c89984c2a3e6cd4492c6f695f07bae6 +timeCreated: 1488275719 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs new file mode 100644 index 0000000..2f586c3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs @@ -0,0 +1,29 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CustomEditor(typeof(PostProcessProfile))] + sealed class PostProcessProfileEditor : Editor + { + EffectListEditor m_EffectList; + + void OnEnable() + { + m_EffectList = new EffectListEditor(this); + m_EffectList.Init(target as PostProcessProfile, serializedObject); + } + + void OnDisable() + { + if (m_EffectList != null) + m_EffectList.Clear(); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + m_EffectList.OnGUI(); + serializedObject.ApplyModifiedProperties(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs.meta new file mode 100644 index 0000000..6357b95 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessProfileEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1fcb2f1e4a7d9ba42bc5940a5611f302 +timeCreated: 1494339151 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs new file mode 100644 index 0000000..a8de440 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs @@ -0,0 +1,166 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CanEditMultipleObjects, CustomEditor(typeof(PostProcessVolume))] + sealed class PostProcessVolumeEditor : BaseEditor + { + SerializedProperty m_Profile; + + SerializedProperty m_IsGlobal; + SerializedProperty m_BlendRadius; + SerializedProperty m_Weight; + SerializedProperty m_Priority; + + EffectListEditor m_EffectList; + + void OnEnable() + { + m_Profile = FindProperty(x => x.sharedProfile); + + m_IsGlobal = FindProperty(x => x.isGlobal); + m_BlendRadius = FindProperty(x => x.blendDistance); + m_Weight = FindProperty(x => x.weight); + m_Priority = FindProperty(x => x.priority); + + m_EffectList = new EffectListEditor(this); + RefreshEffectListEditor(m_Target.sharedProfile); + } + + void OnDisable() + { + if (m_EffectList != null) + m_EffectList.Clear(); + } + + void RefreshEffectListEditor(PostProcessProfile asset) + { + m_EffectList.Clear(); + + if (asset != null) + m_EffectList.Init(asset, new SerializedObject(asset)); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + EditorGUILayout.PropertyField(m_IsGlobal); + + if (!m_IsGlobal.boolValue) // Blend radius is not needed for global volumes + EditorGUILayout.PropertyField(m_BlendRadius); + + EditorGUILayout.PropertyField(m_Weight); + EditorGUILayout.PropertyField(m_Priority); + + bool assetHasChanged = false; + bool showCopy = m_Profile.objectReferenceValue != null; + bool multiEdit = m_Profile.hasMultipleDifferentValues; + + // The layout system sort of break alignement when mixing inspector fields with custom + // layouted fields, do the layout manually instead + int buttonWidth = showCopy ? 45 : 60; + float indentOffset = EditorGUI.indentLevel * 15f; + var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); + var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); + var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - buttonWidth * (showCopy ? 2 : 1), lineRect.height); + var buttonNewRect = new Rect(fieldRect.xMax, lineRect.y, buttonWidth, lineRect.height); + var buttonCopyRect = new Rect(buttonNewRect.xMax, lineRect.y, buttonWidth, lineRect.height); + + EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Profile (Instance)|A copy of a profile asset." : "Profile|A reference to a profile asset.")); + + using (var scope = new EditorGUI.ChangeCheckScope()) + { + EditorGUI.BeginProperty(fieldRect, GUIContent.none, m_Profile); + PostProcessProfile profile = null; + + if (m_Target.HasInstantiatedProfile()) + profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Target.profile, typeof(PostProcessProfile), false); + else + profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Profile.objectReferenceValue, typeof(PostProcessProfile), false); + + if (scope.changed) + { + assetHasChanged = true; + + m_Profile.objectReferenceValue = profile; + + if (m_Target.HasInstantiatedProfile()) // Clear the instantiated profile, from now on we're using shared again. + m_Target.profile = null; + } + + EditorGUI.EndProperty(); + } + + using (new EditorGUI.DisabledScope(multiEdit)) + { + if (GUI.Button(buttonNewRect, EditorUtilities.GetContent("New|Create a new profile."), showCopy ? EditorStyles.miniButtonLeft : EditorStyles.miniButton)) + { + // By default, try to put assets in a folder next to the currently active + // scene file. If the user isn't a scene, put them in root instead. + var targetName = m_Target.name; + var scene = m_Target.gameObject.scene; + var asset = ProfileFactory.CreatePostProcessProfile(scene, targetName); + m_Profile.objectReferenceValue = asset; + m_Target.profile = null; // Make sure we're not using an instantiated profile anymore + + assetHasChanged = true; + } + + if (showCopy && GUI.Button(buttonCopyRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Save|Save the instantiated profile" : "Clone|Create a new profile and copy the content of the currently assigned profile."), EditorStyles.miniButtonRight)) + { + // Duplicate the currently assigned profile and save it as a new profile + var origin = profileRef; + var path = AssetDatabase.GetAssetPath(m_Profile.objectReferenceValue); + path = AssetDatabase.GenerateUniqueAssetPath(path); + + var asset = Instantiate(origin); + asset.settings.Clear(); + AssetDatabase.CreateAsset(asset, path); + + foreach (var item in origin.settings) + { + var itemCopy = Instantiate(item); + itemCopy.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + itemCopy.name = item.name; + asset.settings.Add(itemCopy); + AssetDatabase.AddObjectToAsset(itemCopy, asset); + } + + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + + m_Profile.objectReferenceValue = asset; + m_Target.profile = null; // Make sure we're not using an instantiated profile anymore + assetHasChanged = true; + } + } + + EditorGUILayout.Space(); + + if (m_Profile.objectReferenceValue == null && !m_Target.HasInstantiatedProfile()) + { + if (assetHasChanged) + m_EffectList.Clear(); // Asset wasn't null before, do some cleanup + + EditorGUILayout.HelpBox("Assign a Post-process Profile to this volume using the \"Asset\" field or create one automatically by clicking the \"New\" button.\nAssets are automatically put in a folder next to your scene file. If you scene hasn't been saved yet they will be created at the root of the Assets folder.", MessageType.Info); + } + else + { + if (assetHasChanged || profileRef != m_EffectList.asset) //Refresh when the user just dragged in a new asset, or when it was instantiated by code. + RefreshEffectListEditor(profileRef); + + if (!multiEdit) + m_EffectList.OnGUI(); + } + + serializedObject.ApplyModifiedProperties(); + } + + public PostProcessProfile profileRef + { + get { return m_Target.HasInstantiatedProfile() ? m_Target.profile : m_Target.sharedProfile; } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta new file mode 100644 index 0000000..237ca4d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4e487364a0cd33f4a9ef2ed93819d4d7 +timeCreated: 1488201040 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools.meta new file mode 100644 index 0000000..813d5f4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e58158d9d8b440d4ca944a07d6cde9af +folderAsset: yes +timeCreated: 1496736709 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs new file mode 100644 index 0000000..9bd09ec --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs @@ -0,0 +1,58 @@ +using System; +using System.IO; +using System.Text; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + // CUBE lut specs: + // http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf + static class CubeLutAssetFactory + { + const int kVersion = 1; + const int kSize = 33; + +#if POSTFX_DEBUG_MENUS + [MenuItem("Tools/Post-processing/Create Utility Luts")] +#endif + static void CreateLuts() + { + Dump("Linear to Unity Log r" + kVersion, ColorUtilities.LinearToLogC); + Dump("Unity Log to Linear r" + kVersion, ColorUtilities.LogCToLinear); + Dump("sRGB to Unity Log r" + kVersion, x => ColorUtilities.LinearToLogC(Mathf.GammaToLinearSpace(x))); + Dump("Unity Log to sRGB r" + kVersion, x => Mathf.LinearToGammaSpace(ColorUtilities.LogCToLinear(x))); + Dump("Linear to sRGB r" + kVersion, Mathf.LinearToGammaSpace); + Dump("sRGB to Linear r" + kVersion, Mathf.GammaToLinearSpace); + + AssetDatabase.Refresh(); + } + + static void Dump(string title, Func eval) + { + var sb = new StringBuilder(); + sb.AppendFormat("TITLE \"{0}\"\n", title); + sb.AppendFormat("LUT_3D_SIZE {0}\n", kSize); + sb.AppendFormat("DOMAIN_MIN {0} {0} {0}\n", 0f); + sb.AppendFormat("DOMAIN_MAX {0} {0} {0}\n", 1f); + + const float kSizeMinusOne = (float)kSize - 1f; + + for (int x = 0; x < kSize; x++) + for (int y = 0; y < kSize; y++) + for (int z = 0; z < kSize; z++) + { + float ox = eval((float)x / kSizeMinusOne); + float oy = eval((float)y / kSizeMinusOne); + float oz = eval((float)z / kSizeMinusOne); + + // Resolve & Photoshop use BGR as default, let's make it easier for users + sb.AppendFormat("{0} {1} {2}\n", oz, oy, ox); + } + + var content = sb.ToString(); + var path = Path.Combine(Application.dataPath, string.Format("{0}.cube", title)); + File.WriteAllText(path, content); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta new file mode 100644 index 0000000..e3de84f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4d506bd5da20d0248bfa343c6693d655 +timeCreated: 1496740688 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs new file mode 100644 index 0000000..137d19f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs @@ -0,0 +1,218 @@ +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Text; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + sealed class CubeLutAssetImporter : AssetPostprocessor + { + static List s_Excluded = new List() + { + "Linear_to_sRGB_r1", + "Linear_to_Unity_Log_r1", + "sRGB_to_Linear_r1", + "sRGB_to_Unity_Log_r1", + "Unity_Log_to_Linear_r1", + "Unity_Log_to_sRGB_r1" + }; + + static void OnPostprocessAllAssets(string[] imported, string[] deleted, string[] moved, string[] movedFrom) + { + foreach (string path in imported) + { + string ext = Path.GetExtension(path); + string filename = Path.GetFileNameWithoutExtension(path); + + if (string.IsNullOrEmpty(ext) || s_Excluded.Contains(filename)) + continue; + + ext = ext.ToLowerInvariant(); + if (ext.Equals(".cube")) + ImportCubeLut(path); + } + } + + // Basic CUBE lut parser + // Specs: http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf + static void ImportCubeLut(string path) + { + // Remove the 'Assets' part of the path & build absolute path + string fullpath = path.Substring(7); + fullpath = Path.Combine(Application.dataPath, fullpath); + + // Read the lut data + string[] lines = File.ReadAllLines(fullpath); + + // Start parsing + int i = 0; + int size = -1; + int sizeCube = -1; + var table = new List(); + var domainMin = Color.black; + var domainMax = Color.white; + + while (true) + { + if (i >= lines.Length) + { + if (table.Count != sizeCube) + Debug.LogError("Premature end of file"); + + break; + } + + string line = FilterLine(lines[i]); + + if (string.IsNullOrEmpty(line)) + goto next; + + // Header data + if (line.StartsWith("TITLE")) + goto next; // Skip the title tag, we don't need it + + if (line.StartsWith("LUT_3D_SIZE")) + { + string sizeStr = line.Substring(11).TrimStart(); + + if (!int.TryParse(sizeStr, out size)) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + if (size < 2 || size > 256) + { + Debug.LogError("LUT size out of range"); + break; + } + + sizeCube = size * size * size; + goto next; + } + + if (line.StartsWith("DOMAIN_MIN")) + { + if (!ParseDomain(i, line, ref domainMin)) break; + goto next; + } + + if (line.StartsWith("DOMAIN_MAX")) + { + if (!ParseDomain(i, line, ref domainMax)) break; + goto next; + } + + // Table + string[] row = line.Split(); + + if (row.Length != 3) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + var color = Color.black; + for (int j = 0; j < 3; j++) + { + float d; + if (!float.TryParse(row[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + color[j] = d; + } + + table.Add(color); + + next: + i++; + } + + if (sizeCube != table.Count) + { + Debug.LogError("Wrong table size - Expected " + sizeCube + " elements, got " + table.Count); + return; + } + + // Check if the Texture3D already exists, update it in this case (better workflow for + // the user) + string assetPath = Path.ChangeExtension(path, ".asset"); + var tex = AssetDatabase.LoadAssetAtPath(assetPath); + + if (tex != null) + { + tex.SetPixels(table.ToArray(), 0); + tex.Apply(); + } + else + { + // Generate a new Texture3D + tex = new Texture3D(size, size, size, TextureFormat.RGBAHalf, false) + { + anisoLevel = 0, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + }; + + tex.SetPixels(table.ToArray(), 0); + tex.Apply(); + + // Save to disk + AssetDatabase.CreateAsset(tex, assetPath); + } + + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + } + + static string FilterLine(string line) + { + var filtered = new StringBuilder(); + line = line.TrimStart().TrimEnd(); + int len = line.Length; + int i = 0; + + while (i < len) + { + char c = line[i]; + + if (c == '#') // Filters comment out + break; + + filtered.Append(c); + i++; + } + + return filtered.ToString(); + } + + static bool ParseDomain(int i, string line, ref Color domain) + { + string[] domainStrs = line.Substring(10).TrimStart().Split(); + + if (domainStrs.Length != 3) + { + Debug.LogError("Invalid data on line " + i); + return false; + } + + for (int j = 0; j < 3; j++) + { + float d; + if (!float.TryParse(domainStrs[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) + { + Debug.LogError("Invalid data on line " + i); + return false; + } + + domain[j] = d; + } + + return true; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta new file mode 100644 index 0000000..e53d8c5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3e4b5d9a1abab984cbe0cbdb31fca939 +timeCreated: 1496737252 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs new file mode 100644 index 0000000..b6c9611 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs @@ -0,0 +1,58 @@ +using System; +using System.Linq; +#if UNITY_2021_3_OR_NEWER +using UnityEditor.Build; +#endif + +namespace UnityEditor.Rendering.PostProcessing +{ + [InitializeOnLoad] + sealed class DefineSetter + { + const string k_Define = "UNITY_POST_PROCESSING_STACK_V2"; + + static DefineSetter() + { + var targets = Enum.GetValues(typeof(BuildTargetGroup)) + .Cast() + .Where(x => x != BuildTargetGroup.Unknown) + .Where(x => !IsObsolete(x)); + + foreach (var target in targets) + { +#if UNITY_2021_3_OR_NEWER + var namedTarget = NamedBuildTarget.FromBuildTargetGroup(target); + var defines = PlayerSettings.GetScriptingDefineSymbols(namedTarget).Trim(); +#else + var defines = PlayerSettings.GetScriptingDefineSymbolsForGroup(target).Trim(); +#endif + + var list = defines.Split(';', ' ') + .Where(x => !string.IsNullOrEmpty(x)) + .ToList(); + + if (list.Contains(k_Define)) + continue; + + list.Add(k_Define); + defines = list.Aggregate((a, b) => a + ";" + b); + +#if UNITY_2021_3_OR_NEWER + PlayerSettings.SetScriptingDefineSymbols(namedTarget, defines); +#else + PlayerSettings.SetScriptingDefineSymbolsForGroup(target, defines); +#endif + } + } + + + static bool IsObsolete(BuildTargetGroup group) + { + var attrs = typeof(BuildTargetGroup) + .GetField(group.ToString()) + .GetCustomAttributes(typeof(ObsoleteAttribute), false); + + return attrs != null && attrs.Length > 0; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs.meta new file mode 100644 index 0000000..d68eb21 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/DefineSetter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 21c950a797aa518438786fc341790e14 +timeCreated: 1499857026 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs new file mode 100644 index 0000000..8dfd4af --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs @@ -0,0 +1,82 @@ +using UnityEngine; +using UnityEditor.ProjectWindowCallback; +using System.IO; +using UnityEngine.SceneManagement; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// An utility class to help the creation of new post-processing profile assets. + /// + public sealed class ProfileFactory + { + [MenuItem("Assets/Create/Post-processing Profile", priority = 201)] + static void CreatePostProcessProfile() + { + //var icon = EditorGUIUtility.FindTexture("ScriptableObject Icon"); + ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, ScriptableObject.CreateInstance(), "New Post-processing Profile.asset", null, null); + } + + /// + /// Creates a post-processing profile asset at the given location. + /// + /// The path to use relative to the project folder + /// The newly created profile + public static PostProcessProfile CreatePostProcessProfileAtPath(string path) + { + var profile = ScriptableObject.CreateInstance(); + profile.name = Path.GetFileName(path); + AssetDatabase.CreateAsset(profile, path); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + return profile; + } + + /// + /// Creates a post-processing profile asset and automatically put it in a sub folder next + /// to the given scene. + /// + /// A scene + /// A name for the new profile + /// The newly created profile + public static PostProcessProfile CreatePostProcessProfile(Scene scene, string targetName) + { + var path = string.Empty; + + if (string.IsNullOrEmpty(scene.path)) + { + path = "Assets/"; + } + else + { + var scenePath = Path.GetDirectoryName(scene.path); + var extPath = scene.name + "_Profiles"; + var profilePath = scenePath + "/" + extPath; + + if (!AssetDatabase.IsValidFolder(profilePath)) + AssetDatabase.CreateFolder(scenePath, extPath); + + path = profilePath + "/"; + } + + path += targetName + " Profile.asset"; + path = AssetDatabase.GenerateUniqueAssetPath(path); + + var profile = ScriptableObject.CreateInstance(); + AssetDatabase.CreateAsset(profile, path); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + return profile; + } + } + + class DoCreatePostProcessProfile : EndNameEditAction + { + public override void Action(int instanceId, string pathName, string resourceFile) + { + var profile = ProfileFactory.CreatePostProcessProfileAtPath(pathName); + ProjectWindowUtil.ShowCreatedAsset(profile); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs.meta new file mode 100644 index 0000000..3ae3175 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/ProfileFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ac5668592895c1742a0c6e9d111f870b +timeCreated: 1498836357 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs new file mode 100644 index 0000000..0ea2470 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs @@ -0,0 +1,19 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + static class ResourceAssetFactory + { +#if POSTFX_DEBUG_MENUS + [MenuItem("Tools/Post-processing/Create Resources Asset")] +#endif + static void CreateAsset() + { + var asset = ScriptableObject.CreateInstance(); + AssetDatabase.CreateAsset(asset, "Assets/PostProcessResources.asset"); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta new file mode 100644 index 0000000..7ac577f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d4351734f8a0aaa42a51a99db92e92e2 +timeCreated: 1496736723 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs b/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs new file mode 100644 index 0000000..c518a07 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs @@ -0,0 +1,21 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + internal static class VolumeFactory + { + [MenuItem("GameObject/3D Object/Post-process Volume")] + static void CreateVolume() + { + var gameObject = new GameObject("Post-process Volume"); + var collider = gameObject.AddComponent(); + collider.size = Vector3.one; + collider.isTrigger = true; + gameObject.AddComponent(); + + Selection.objects = new[] { gameObject }; + EditorApplication.ExecuteMenuItem("GameObject/Move To View"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs.meta new file mode 100644 index 0000000..9c81e30 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Tools/VolumeFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0f3902e2aa2609f47ab0c956e56ea0bf +timeCreated: 1497707764 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef b/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef new file mode 100644 index 0000000..a96f35c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef @@ -0,0 +1,36 @@ +{ + "name": "Unity.Postprocessing.Editor", + "rootNamespace": "", + "references": [ + "Unity.Postprocessing.Runtime", + "Unity.XR.Management", + "Unity.XR.Management.Editor" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [ + { + "name": "com.unity.xr.management", + "expression": "4.0.1", + "define": "XR_MANAGEMENT_4_0_1_OR_NEWER" + }, + { + "name": "com.unity.modules.vr", + "expression": "1.0.0", + "define": "ENABLE_VR_MODULE" + }, + { + "name": "com.unity.modules.xr", + "expression": "1.0.0", + "define": "ENABLE_XR_MODULE" + } + ], + "noEngineReferences": false +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta b/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta new file mode 100644 index 0000000..e586d97 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a35efad8797223d499f8c68b1f545dbc +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils.meta new file mode 100644 index 0000000..6ed3793 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 018e19d6c1b36224b85b5c0ddd6a895e +folderAsset: yes +timeCreated: 1489051059 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs b/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs new file mode 100644 index 0000000..72fac1d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs @@ -0,0 +1,859 @@ +using System; +using System.Collections.Generic; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + internal sealed class CurveEditor + { + #region Enums + + enum EditMode + { + None, + Moving, + TangentEdit + } + + enum Tangent + { + In, + Out + } + + #endregion + + #region Structs + + public struct Settings + { + public Rect bounds; + public RectOffset padding; + public Color selectionColor; + public float curvePickingDistance; + public float keyTimeClampingDistance; + + public static Settings defaultSettings + { + get + { + return new Settings + { + bounds = new Rect(0f, 0f, 1f, 1f), + padding = new RectOffset(10, 10, 10, 10), + selectionColor = Color.yellow, + curvePickingDistance = 6f, + keyTimeClampingDistance = 1e-4f + }; + } + } + } + + public struct CurveState + { + public bool visible; + public bool editable; + public uint minPointCount; + public float zeroKeyConstantValue; + public Color color; + public float width; + public float handleWidth; + public bool showNonEditableHandles; + public bool onlyShowHandlesOnSelection; + public bool loopInBounds; + + public static CurveState defaultState + { + get + { + return new CurveState + { + visible = true, + editable = true, + minPointCount = 2, + zeroKeyConstantValue = 0f, + color = Color.white, + width = 2f, + handleWidth = 2f, + showNonEditableHandles = true, + onlyShowHandlesOnSelection = false, + loopInBounds = false + }; + } + } + } + + public struct Selection + { + public SerializedProperty curve; + public int keyframeIndex; + public Keyframe? keyframe; + + public Selection(SerializedProperty curve, int keyframeIndex, Keyframe? keyframe) + { + this.curve = curve; + this.keyframeIndex = keyframeIndex; + this.keyframe = keyframe; + } + } + + internal struct MenuAction + { + internal SerializedProperty curve; + internal int index; + internal Vector3 position; + + internal MenuAction(SerializedProperty curve) + { + this.curve = curve; + this.index = -1; + this.position = Vector3.zero; + } + + internal MenuAction(SerializedProperty curve, int index) + { + this.curve = curve; + this.index = index; + this.position = Vector3.zero; + } + + internal MenuAction(SerializedProperty curve, Vector3 position) + { + this.curve = curve; + this.index = -1; + this.position = position; + } + } + + #endregion + + #region Fields & properties + + public Settings settings { get; private set; } + + readonly Dictionary m_Curves; + Rect m_CurveArea; + + SerializedProperty m_SelectedCurve; + int m_SelectedKeyframeIndex = -1; + + EditMode m_EditMode = EditMode.None; + Tangent m_TangentEditMode; + + bool m_Dirty; + + #endregion + + #region Constructors & destructors + + public CurveEditor() + : this(Settings.defaultSettings) + { } + + public CurveEditor(Settings settings) + { + this.settings = settings; + m_Curves = new Dictionary(); + } + + #endregion + + #region Public API + + public void Add(params SerializedProperty[] curves) + { + foreach (var curve in curves) + Add(curve, CurveState.defaultState); + } + + public void Add(SerializedProperty curve) + { + Add(curve, CurveState.defaultState); + } + + public void Add(SerializedProperty curve, CurveState state) + { + // Make sure the property is in fact an AnimationCurve + var animCurve = curve.animationCurveValue; + if (animCurve == null) + throw new ArgumentException("curve"); + + if (m_Curves.ContainsKey(curve)) + Debug.LogWarning("Curve has already been added to the editor"); + + m_Curves.Add(curve, state); + } + + public void Remove(SerializedProperty curve) + { + m_Curves.Remove(curve); + } + + public void RemoveAll() + { + m_Curves.Clear(); + } + + public CurveState GetCurveState(SerializedProperty curve) + { + CurveState state; + if (!m_Curves.TryGetValue(curve, out state)) + throw new KeyNotFoundException("curve"); + + return state; + } + + public void SetCurveState(SerializedProperty curve, CurveState state) + { + if (!m_Curves.ContainsKey(curve)) + throw new KeyNotFoundException("curve"); + + m_Curves[curve] = state; + } + + public Selection GetSelection() + { + Keyframe? key = null; + if (m_SelectedKeyframeIndex > -1) + { + var curve = m_SelectedCurve.animationCurveValue; + + if (m_SelectedKeyframeIndex >= curve.length) + m_SelectedKeyframeIndex = -1; + else + key = curve[m_SelectedKeyframeIndex]; + } + + return new Selection(m_SelectedCurve, m_SelectedKeyframeIndex, key); + } + + public void SetKeyframe(SerializedProperty curve, int keyframeIndex, Keyframe keyframe) + { + var animCurve = curve.animationCurveValue; + SetKeyframe(animCurve, keyframeIndex, keyframe); + SaveCurve(curve, animCurve); + } + + public bool OnGUI(Rect rect) + { + if (Event.current.type == EventType.Repaint) + m_Dirty = false; + + GUI.BeginClip(rect); + { + var area = new Rect(Vector2.zero, rect.size); + m_CurveArea = settings.padding.Remove(area); + + foreach (var curve in m_Curves) + OnCurveGUI(area, curve.Key, curve.Value); + + OnGeneralUI(area); + } + GUI.EndClip(); + + return m_Dirty; + } + + #endregion + + #region UI & events + + void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state) + { + // Discard invisible curves + if (!state.visible) + return; + + var animCurve = curve.animationCurveValue; + var keys = animCurve.keys; + var length = keys.Length; + + // Curve drawing + // Slightly dim non-editable curves + var color = state.color; + if (!state.editable || !GUI.enabled) + color.a *= 0.5f; + + Handles.color = color; + var bounds = settings.bounds; + + if (length == 0) + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, state.zeroKeyConstantValue)); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, state.zeroKeyConstantValue)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + else if (length == 1) + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[0].value)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + else + { + var prevKey = keys[0]; + for (int k = 1; k < length; k++) + { + var key = keys[k]; + var pts = BezierSegment(prevKey, key); + + if (float.IsInfinity(prevKey.outTangent) || float.IsInfinity(key.inTangent)) + { + var s = HardSegment(prevKey, key); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + + prevKey = key; + } + + // Curve extents & loops + if (keys[0].time > bounds.xMin) + { + if (state.loopInBounds) + { + var p1 = keys[length - 1]; + p1.time -= settings.bounds.width; + var p2 = keys[0]; + var pts = BezierSegment(p1, p2); + + if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) + { + var s = HardSegment(p1, p2); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + } + else + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); + var p2 = CurveToCanvas(keys[0]); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + } + + if (keys[length - 1].time < bounds.xMax) + { + if (state.loopInBounds) + { + var p1 = keys[length - 1]; + var p2 = keys[0]; + p2.time += settings.bounds.width; + var pts = BezierSegment(p1, p2); + + if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) + { + var s = HardSegment(p1, p2); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + } + else + { + var p1 = CurveToCanvas(keys[length - 1]); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[length - 1].value)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + } + } + + // Make sure selection is correct (undo can break it) + bool isCurrentlySelectedCurve = curve == m_SelectedCurve; + + if (isCurrentlySelectedCurve && m_SelectedKeyframeIndex >= length) + m_SelectedKeyframeIndex = -1; + + if (!state.editable) + m_SelectedKeyframeIndex = -1; + + float enabledFactor = GUI.enabled ? 1f : 0.8f; + + // Handles & keys + for (int k = 0; k < length; k++) + { + bool isCurrentlySelectedKeyframe = k == m_SelectedKeyframeIndex; + var e = Event.current; + + var pos = CurveToCanvas(keys[k]); + var hitRect = new Rect(pos.x - 8f, pos.y - 8f, 16f, 16f); + var offset = isCurrentlySelectedCurve + ? new RectOffset(5, 5, 5, 5) + : new RectOffset(6, 6, 6, 6); + + var outTangent = pos + CurveTangentToCanvas(keys[k].outTangent).normalized * 40f; + var inTangent = pos - CurveTangentToCanvas(keys[k].inTangent).normalized * 40f; + var inTangentHitRect = new Rect(inTangent.x - 7f, inTangent.y - 7f, 14f, 14f); + var outTangentHitrect = new Rect(outTangent.x - 7f, outTangent.y - 7f, 14f, 14f); + + // Draw + if (state.editable || state.showNonEditableHandles) + { + if (e.type == EventType.Repaint) + { + var selectedColor = (isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + ? settings.selectionColor + : state.color; + + // Keyframe + EditorGUI.DrawRect(offset.Remove(hitRect), selectedColor * enabledFactor); + + // Tangents + if (isCurrentlySelectedCurve && (!state.onlyShowHandlesOnSelection || (state.onlyShowHandlesOnSelection && isCurrentlySelectedKeyframe))) + { + Handles.color = selectedColor * enabledFactor; + + if (k > 0 || state.loopInBounds) + { + Handles.DrawAAPolyLine(state.handleWidth, pos, inTangent); + EditorGUI.DrawRect(offset.Remove(inTangentHitRect), selectedColor); + } + + if (k < length - 1 || state.loopInBounds) + { + Handles.DrawAAPolyLine(state.handleWidth, pos, outTangent); + EditorGUI.DrawRect(offset.Remove(outTangentHitrect), selectedColor); + } + } + } + } + + // Events + if (state.editable) + { + // Keyframe move + if (m_EditMode == EditMode.Moving && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + { + EditMoveKeyframe(animCurve, keys, k); + } + + // Tangent editing + if (m_EditMode == EditMode.TangentEdit && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + { + bool alreadyBroken = !(Mathf.Approximately(keys[k].inTangent, keys[k].outTangent) || (float.IsInfinity(keys[k].inTangent) && float.IsInfinity(keys[k].outTangent))); + EditMoveTangent(animCurve, keys, k, m_TangentEditMode, e.shift || !(alreadyBroken || e.control)); + } + + // Keyframe selection & context menu + if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) + { + if (hitRect.Contains(e.mousePosition)) + { + if (e.button == 0) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.Moving; + e.Use(); + } + else if (e.button == 1) + { + // Keyframe context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Delete Key"), false, (x) => + { + var action = (MenuAction)x; + var curveValue = action.curve.animationCurveValue; + action.curve.serializedObject.Update(); + RemoveKeyframe(curveValue, action.index); + m_SelectedKeyframeIndex = -1; + SaveCurve(action.curve, curveValue); + action.curve.serializedObject.ApplyModifiedProperties(); + }, new MenuAction(curve, k)); + menu.ShowAsContext(); + e.Use(); + } + } + } + + // Tangent selection & edit mode + if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) + { + if (inTangentHitRect.Contains(e.mousePosition) && (k > 0 || state.loopInBounds)) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.TangentEdit; + m_TangentEditMode = Tangent.In; + e.Use(); + } + else if (outTangentHitrect.Contains(e.mousePosition) && (k < length - 1 || state.loopInBounds)) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.TangentEdit; + m_TangentEditMode = Tangent.Out; + e.Use(); + } + } + + // Mouse up - clean up states + if (e.rawType == EventType.MouseUp && m_EditMode != EditMode.None) + { + m_EditMode = EditMode.None; + } + + // Set cursors + { + EditorGUIUtility.AddCursorRect(hitRect, MouseCursor.MoveArrow); + + if (k > 0 || state.loopInBounds) + EditorGUIUtility.AddCursorRect(inTangentHitRect, MouseCursor.RotateArrow); + + if (k < length - 1 || state.loopInBounds) + EditorGUIUtility.AddCursorRect(outTangentHitrect, MouseCursor.RotateArrow); + } + } + } + + Handles.color = Color.white; + SaveCurve(curve, animCurve); + } + + void OnGeneralUI(Rect rect) + { + var e = Event.current; + + // Selection + if (e.type == EventType.MouseDown) + { + GUI.FocusControl(null); + m_SelectedCurve = null; + m_SelectedKeyframeIndex = -1; + bool used = false; + + var hit = CanvasToCurve(e.mousePosition); + float curvePickValue = CurveToCanvas(hit).y; + + // Try and select a curve + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + var animCurve = prop.animationCurveValue; + float hitY = animCurve.length == 0 + ? state.zeroKeyConstantValue + : animCurve.Evaluate(hit.x); + + var curvePos = CurveToCanvas(new Vector3(hit.x, hitY)); + + if (Mathf.Abs(curvePos.y - curvePickValue) < settings.curvePickingDistance) + { + m_SelectedCurve = prop; + + if (e.clickCount == 2 && e.button == 0) + { + // Create a keyframe on double-click on this curve + EditCreateKeyframe(animCurve, hit, true, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + else if (e.button == 1) + { + // Curve context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Add Key"), false, (x) => + { + var action = (MenuAction)x; + var curveValue = action.curve.animationCurveValue; + action.curve.serializedObject.Update(); + EditCreateKeyframe(curveValue, hit, true, 0f); + SaveCurve(action.curve, curveValue); + action.curve.serializedObject.ApplyModifiedProperties(); + }, new MenuAction(prop, hit)); + menu.ShowAsContext(); + e.Use(); + used = true; + } + } + } + + if (e.clickCount == 2 && e.button == 0 && m_SelectedCurve == null) + { + // Create a keyframe on every curve on double-click + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + var animCurve = prop.animationCurveValue; + EditCreateKeyframe(animCurve, hit, e.alt, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + } + else if (!used && e.button == 1) + { + // Global context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Add Key At Position"), false, () => ContextMenuAddKey(hit, false)); + menu.AddItem(new GUIContent("Add Key On Curves"), false, () => ContextMenuAddKey(hit, true)); + menu.ShowAsContext(); + } + + e.Use(); + } + + // Delete selected key(s) + if (e.type == EventType.KeyDown && (e.keyCode == KeyCode.Delete || e.keyCode == KeyCode.Backspace)) + { + if (m_SelectedKeyframeIndex != -1 && m_SelectedCurve != null) + { + var animCurve = m_SelectedCurve.animationCurveValue; + var length = animCurve.length; + + if (m_Curves[m_SelectedCurve].minPointCount < length && length >= 0) + { + EditDeleteKeyframe(animCurve, m_SelectedKeyframeIndex); + m_SelectedKeyframeIndex = -1; + SaveCurve(m_SelectedCurve, animCurve); + } + + e.Use(); + } + } + } + + void SaveCurve(SerializedProperty prop, AnimationCurve curve) + { + prop.animationCurveValue = curve; + } + + void Invalidate() + { + m_Dirty = true; + } + + #endregion + + #region Keyframe manipulations + + void SelectKeyframe(SerializedProperty curve, int keyframeIndex) + { + m_SelectedKeyframeIndex = keyframeIndex; + m_SelectedCurve = curve; + Invalidate(); + } + + void ContextMenuAddKey(Vector3 hit, bool createOnCurve) + { + SerializedObject serializedObject = null; + + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + + if (serializedObject == null) + { + serializedObject = prop.serializedObject; + serializedObject.Update(); + } + + var animCurve = prop.animationCurveValue; + EditCreateKeyframe(animCurve, hit, createOnCurve, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + + if (serializedObject != null) + serializedObject.ApplyModifiedProperties(); + + Invalidate(); + } + + void EditCreateKeyframe(AnimationCurve curve, Vector3 position, bool createOnCurve, float zeroKeyConstantValue) + { + float tangent = EvaluateTangent(curve, position.x); + + if (createOnCurve) + { + position.y = curve.length == 0 + ? zeroKeyConstantValue + : curve.Evaluate(position.x); + } + + AddKeyframe(curve, new Keyframe(position.x, position.y, tangent, tangent)); + } + + void EditDeleteKeyframe(AnimationCurve curve, int keyframeIndex) + { + RemoveKeyframe(curve, keyframeIndex); + } + + void AddKeyframe(AnimationCurve curve, Keyframe newValue) + { + curve.AddKey(newValue); + Invalidate(); + } + + void RemoveKeyframe(AnimationCurve curve, int keyframeIndex) + { + curve.RemoveKey(keyframeIndex); + Invalidate(); + } + + void SetKeyframe(AnimationCurve curve, int keyframeIndex, Keyframe newValue) + { + var keys = curve.keys; + + if (keyframeIndex > 0) + newValue.time = Mathf.Max(keys[keyframeIndex - 1].time + settings.keyTimeClampingDistance, newValue.time); + + if (keyframeIndex < keys.Length - 1) + newValue.time = Mathf.Min(keys[keyframeIndex + 1].time - settings.keyTimeClampingDistance, newValue.time); + + curve.MoveKey(keyframeIndex, newValue); + Invalidate(); + } + + void EditMoveKeyframe(AnimationCurve curve, Keyframe[] keys, int keyframeIndex) + { + var key = CanvasToCurve(Event.current.mousePosition); + float inTgt = keys[keyframeIndex].inTangent; + float outTgt = keys[keyframeIndex].outTangent; + SetKeyframe(curve, keyframeIndex, new Keyframe(key.x, key.y, inTgt, outTgt)); + } + + void EditMoveTangent(AnimationCurve curve, Keyframe[] keys, int keyframeIndex, Tangent targetTangent, bool linkTangents) + { + var pos = CanvasToCurve(Event.current.mousePosition); + + float time = keys[keyframeIndex].time; + float value = keys[keyframeIndex].value; + + pos -= new Vector3(time, value); + + if (targetTangent == Tangent.In && pos.x > 0f) + pos.x = 0f; + + if (targetTangent == Tangent.Out && pos.x < 0f) + pos.x = 0f; + + float tangent; + + if (Mathf.Approximately(pos.x, 0f)) + tangent = pos.y < 0f ? float.PositiveInfinity : float.NegativeInfinity; + else + tangent = pos.y / pos.x; + + float inTangent = keys[keyframeIndex].inTangent; + float outTangent = keys[keyframeIndex].outTangent; + + if (targetTangent == Tangent.In || linkTangents) + inTangent = tangent; + if (targetTangent == Tangent.Out || linkTangents) + outTangent = tangent; + + SetKeyframe(curve, keyframeIndex, new Keyframe(time, value, inTangent, outTangent)); + } + + #endregion + + #region Maths utilities + + Vector3 CurveToCanvas(Keyframe keyframe) + { + return CurveToCanvas(new Vector3(keyframe.time, keyframe.value)); + } + + Vector3 CurveToCanvas(Vector3 position) + { + var bounds = settings.bounds; + var output = new Vector3((position.x - bounds.x) / (bounds.xMax - bounds.x), (position.y - bounds.y) / (bounds.yMax - bounds.y)); + output.x = output.x * (m_CurveArea.xMax - m_CurveArea.xMin) + m_CurveArea.xMin; + output.y = (1f - output.y) * (m_CurveArea.yMax - m_CurveArea.yMin) + m_CurveArea.yMin; + return output; + } + + Vector3 CanvasToCurve(Vector3 position) + { + var bounds = settings.bounds; + var output = position; + output.x = (output.x - m_CurveArea.xMin) / (m_CurveArea.xMax - m_CurveArea.xMin); + output.y = (output.y - m_CurveArea.yMin) / (m_CurveArea.yMax - m_CurveArea.yMin); + output.x = Mathf.Lerp(bounds.x, bounds.xMax, output.x); + output.y = Mathf.Lerp(bounds.yMax, bounds.y, output.y); + return output; + } + + Vector3 CurveTangentToCanvas(float tangent) + { + if (!float.IsInfinity(tangent)) + { + var bounds = settings.bounds; + float ratio = (m_CurveArea.width / m_CurveArea.height) / ((bounds.xMax - bounds.x) / (bounds.yMax - bounds.y)); + return new Vector3(1f, -tangent / ratio).normalized; + } + + return float.IsPositiveInfinity(tangent) ? Vector3.up : Vector3.down; + } + + Vector3[] BezierSegment(Keyframe start, Keyframe end) + { + var segment = new Vector3[4]; + + segment[0] = CurveToCanvas(new Vector3(start.time, start.value)); + segment[3] = CurveToCanvas(new Vector3(end.time, end.value)); + + float middle = start.time + ((end.time - start.time) * 0.333333f); + float middle2 = start.time + ((end.time - start.time) * 0.666666f); + + segment[1] = CurveToCanvas(new Vector3(middle, ProjectTangent(start.time, start.value, start.outTangent, middle))); + segment[2] = CurveToCanvas(new Vector3(middle2, ProjectTangent(end.time, end.value, end.inTangent, middle2))); + + return segment; + } + + Vector3[] HardSegment(Keyframe start, Keyframe end) + { + var segment = new Vector3[3]; + + segment[0] = CurveToCanvas(start); + segment[1] = CurveToCanvas(new Vector3(end.time, start.value)); + segment[2] = CurveToCanvas(end); + + return segment; + } + + float ProjectTangent(float inPosition, float inValue, float inTangent, float projPosition) + { + return inValue + ((projPosition - inPosition) * inTangent); + } + + float EvaluateTangent(AnimationCurve curve, float time) + { + int prev = -1, next = 0; + for (int i = 0; i < curve.keys.Length; i++) + { + if (time > curve.keys[i].time) + { + prev = i; + next = i + 1; + } + else break; + } + + if (next == 0) + return 0f; + + if (prev == curve.keys.Length - 1) + return 0f; + + const float kD = 1e-3f; + float tp = Mathf.Max(time - kD, curve.keys[prev].time); + float tn = Mathf.Min(time + kD, curve.keys[next].time); + + float vp = curve.Evaluate(tp); + float vn = curve.Evaluate(tn); + + if (Mathf.Approximately(tn, tp)) + return (vn - vp > 0f) ? float.PositiveInfinity : float.NegativeInfinity; + + return (vn - vp) / (tn - tp); + } + + #endregion + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs.meta new file mode 100644 index 0000000..c76f2b0 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/CurveEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ce0f0631fee52da41884853337cab99d +timeCreated: 1493979438 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs b/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs new file mode 100644 index 0000000..276f775 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs @@ -0,0 +1,391 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Assertions; +using UnityEngine.Rendering.PostProcessing; + +#if XR_MANAGEMENT_4_0_1_OR_NEWER +using UnityEditor.XR.Management; +#endif + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A set of editor utilities used in post-processing editors. + /// + public static class EditorUtilities + { + static Dictionary s_GUIContentCache; + static Dictionary s_AttributeDecorators; + + static PostProcessEffectSettings s_ClipboardContent; + + /// + /// Returns true if the current target is a console, false otherwise. + /// + public static bool isTargetingConsoles + { + get + { + var t = EditorUserBuildSettings.activeBuildTarget; + return t == BuildTarget.PS4 +#if UNITY_PS5 + || t == BuildTarget.PS5 +#endif + || t == BuildTarget.XboxOne +#if UNITY_GAMECORE + || t == BuildTarget.GameCoreXboxSeries + || t == BuildTarget.GameCoreXboxOne +#endif + || t == BuildTarget.Switch; + } + } + + /// + /// Returns true if the current target is a mobile, false otherwise. + /// + public static bool isTargetingMobiles + { + get + { + var t = EditorUserBuildSettings.activeBuildTarget; + return t == BuildTarget.Android + || t == BuildTarget.iOS + || t == BuildTarget.tvOS +#if !UNITY_2018_2_OR_NEWER + || t == BuildTarget.Tizen +#endif +#if !UNITY_2018_3_OR_NEWER + || t == BuildTarget.N3DS + || t == BuildTarget.PSP2 +#endif + ; + } + } + + /// + /// Returns true if the current target is a console or a mobile, false + /// otherwise. + /// + public static bool isTargetingConsolesOrMobiles + { + get { return isTargetingConsoles || isTargetingMobiles; } + } + + static EditorUtilities() + { + s_GUIContentCache = new Dictionary(); + s_AttributeDecorators = new Dictionary(); + ReloadDecoratorTypes(); + } + + [Callbacks.DidReloadScripts] + static void OnEditorReload() + { + ReloadDecoratorTypes(); + } + + static void ReloadDecoratorTypes() + { + s_AttributeDecorators.Clear(); + + // Look for all the valid attribute decorators + var types = RuntimeUtilities.GetAllTypesDerivedFrom() + .Where( + t => t.IsDefined(typeof(DecoratorAttribute), false) + && !t.IsAbstract + ); + + // Store them + foreach (var type in types) + { + var attr = type.GetAttribute(); + var decorator = (AttributeDecorator)Activator.CreateInstance(type); + s_AttributeDecorators.Add(attr.attributeType, decorator); + } + } + + internal static AttributeDecorator GetDecorator(Type attributeType) + { + AttributeDecorator decorator; + return !s_AttributeDecorators.TryGetValue(attributeType, out decorator) + ? null + : decorator; + } + + /// + /// Gets a for the given label and tooltip. These are recycled + /// internally and help reduce the garbage collector pressure in the editor. + /// + /// The label and tooltip separated by a | + /// character + /// A recycled + public static GUIContent GetContent(string textAndTooltip) + { + if (string.IsNullOrEmpty(textAndTooltip)) + return GUIContent.none; + + GUIContent content; + + if (!s_GUIContentCache.TryGetValue(textAndTooltip, out content)) + { + var s = textAndTooltip.Split('|'); + content = new GUIContent(s[0]); + + if (s.Length > 1 && !string.IsNullOrEmpty(s[1])) + content.tooltip = s[1]; + + s_GUIContentCache.Add(textAndTooltip, content); + } + + return content; + } + + /// + /// Draws a UI box with a description and a "Fix Me" button next to it. + /// + /// The description + /// The action to execute when the button is clicked + public static void DrawFixMeBox(string text, Action action) + { + Assert.IsNotNull(action); + + EditorGUILayout.HelpBox(text, MessageType.Warning); + + GUILayout.Space(-32); + using (new EditorGUILayout.HorizontalScope()) + { + GUILayout.FlexibleSpace(); + + if (GUILayout.Button("Fix", GUILayout.Width(60))) + action(); + + GUILayout.Space(8); + } + GUILayout.Space(11); + } + + /// + /// Draws a horizontal split line. + /// + public static void DrawSplitter() + { + var rect = GUILayoutUtility.GetRect(1f, 1f); + + // Splitter rect should be full-width + rect.xMin = 0f; + rect.width += 4f; + + if (Event.current.type != EventType.Repaint) + return; + + EditorGUI.DrawRect(rect, Styling.splitter); + } + + /// + /// Draws a toggle using the "override checkbox" style. + /// + /// The position and size of the toggle + /// The override state property for the toggle + public static void DrawOverrideCheckbox(Rect rect, SerializedProperty property) + { + property.boolValue = GUI.Toggle(rect, property.boolValue, GetContent("|Override this setting for this volume."), Styling.smallTickbox); + } + + /// + /// Draws a header label. + /// + /// The label to display as a header + public static void DrawHeaderLabel(string title) + { + EditorGUILayout.LabelField(title, Styling.headerLabel); + } + + internal static bool DrawHeader(string title, bool state) + { + var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); + + var labelRect = backgroundRect; + labelRect.xMin += 16f; + labelRect.xMax -= 20f; + + var foldoutRect = backgroundRect; + foldoutRect.y += 1f; + foldoutRect.width = 13f; + foldoutRect.height = 13f; + + // Background rect should be full-width + backgroundRect.xMin = 0f; + backgroundRect.width += 4f; + + // Background + EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); + + // Title + EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); + + // Foldout + state = GUI.Toggle(foldoutRect, state, GUIContent.none, EditorStyles.foldout); + + var e = Event.current; + if (e.type == EventType.MouseDown && backgroundRect.Contains(e.mousePosition) && e.button == 0) + { + state = !state; + e.Use(); + } + + return state; + } + + internal static bool DrawHeader(string title, SerializedProperty group, SerializedProperty activeField, PostProcessEffectSettings target, Action resetAction, Action removeAction) + { + Assert.IsNotNull(group); + Assert.IsNotNull(activeField); + Assert.IsNotNull(target); + + var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); + + var labelRect = backgroundRect; + labelRect.xMin += 32f; + labelRect.xMax -= 20f; + + var foldoutRect = backgroundRect; + foldoutRect.y += 1f; + foldoutRect.width = 13f; + foldoutRect.height = 13f; + + var toggleRect = backgroundRect; + toggleRect.x += 16f; + toggleRect.y += 2f; + toggleRect.width = 13f; + toggleRect.height = 13f; + + var menuIcon = Styling.paneOptionsIcon; +#if UNITY_2019_3_OR_NEWER + var menuRect = new Rect(labelRect.xMax + 4f, labelRect.y, menuIcon.width, menuIcon.height); +#else + var menuRect = new Rect(labelRect.xMax + 4f, labelRect.y + 4f, menuIcon.width, menuIcon.height); +#endif + + // Background rect should be full-width + backgroundRect.xMin = 0f; + backgroundRect.width += 4f; + + // Background + EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); + + // Title + using (new EditorGUI.DisabledScope(!activeField.boolValue)) + EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); + + // foldout + group.serializedObject.Update(); + group.isExpanded = GUI.Toggle(foldoutRect, group.isExpanded, GUIContent.none, EditorStyles.foldout); + group.serializedObject.ApplyModifiedProperties(); + + // Active checkbox + activeField.serializedObject.Update(); + activeField.boolValue = GUI.Toggle(toggleRect, activeField.boolValue, GUIContent.none, Styling.smallTickbox); + activeField.serializedObject.ApplyModifiedProperties(); + + // Dropdown menu icon + GUI.DrawTexture(menuRect, menuIcon); + + // Handle events + var e = Event.current; + + if (e.type == EventType.MouseDown) + { + if (menuRect.Contains(e.mousePosition)) + { + ShowHeaderContextMenu(new Vector2(menuRect.x, menuRect.yMax), target, resetAction, removeAction); + e.Use(); + } + else if (labelRect.Contains(e.mousePosition)) + { + if (e.button == 0) + group.isExpanded = !group.isExpanded; + else + ShowHeaderContextMenu(e.mousePosition, target, resetAction, removeAction); + + e.Use(); + } + } + + return group.isExpanded; + } + + static void ShowHeaderContextMenu(Vector2 position, PostProcessEffectSettings target, Action resetAction, Action removeAction) + { + Assert.IsNotNull(resetAction); + Assert.IsNotNull(removeAction); + + var menu = new GenericMenu(); + menu.AddItem(GetContent("Reset"), false, () => resetAction()); + menu.AddItem(GetContent("Remove"), false, () => removeAction()); + menu.AddSeparator(string.Empty); + menu.AddItem(GetContent("Copy Settings"), false, () => CopySettings(target)); + + if (CanPaste(target)) + menu.AddItem(GetContent("Paste Settings"), false, () => PasteSettings(target)); + else + menu.AddDisabledItem(GetContent("Paste Settings")); + + menu.DropDown(new Rect(position, Vector2.zero)); + } + + static void CopySettings(PostProcessEffectSettings target) + { + Assert.IsNotNull(target); + + if (s_ClipboardContent != null) + { + RuntimeUtilities.Destroy(s_ClipboardContent); + s_ClipboardContent = null; + } + + s_ClipboardContent = (PostProcessEffectSettings)ScriptableObject.CreateInstance(target.GetType()); + EditorUtility.CopySerializedIfDifferent(target, s_ClipboardContent); + } + + static void PasteSettings(PostProcessEffectSettings target) + { + Assert.IsNotNull(target); + Assert.IsNotNull(s_ClipboardContent); + Assert.AreEqual(s_ClipboardContent.GetType(), target.GetType()); + + Undo.RecordObject(target, "Paste Settings"); + EditorUtility.CopySerializedIfDifferent(s_ClipboardContent, target); + } + + static bool CanPaste(PostProcessEffectSettings target) + { + return s_ClipboardContent != null + && s_ClipboardContent.GetType() == target.GetType(); + } + + internal static bool isVREnabled + { + get + { +#if ENABLE_VR_MODULE && ENABLE_VR +#if ENABLE_XR_MODULE && XR_MANAGEMENT_4_0_1_OR_NEWER + // If XR manager extension is available, we can query it to know if any XR extension is currently active + var buildTargetSettings = XRGeneralSettingsPerBuildTarget.XRGeneralSettingsForBuildTarget(BuildTargetGroup.Standalone); + return (buildTargetSettings != null && buildTargetSettings.AssignedSettings != null && + buildTargetSettings.AssignedSettings.activeLoaders.Count > 0); +#elif !UNITY_2020_1_OR_NEWER + // This will only work with 2019.3 and older since it rely on the old VR module + return UnityEditorInternal.VR.VREditor.GetVREnabledOnTargetGroup(BuildPipeline.GetBuildTargetGroup(EditorUserBuildSettings.activeBuildTarget)); +#else + // If we reach this code-path, it means we can't really detect if VR/XR is active in the Editor, so return false + return false; +#endif +#else + return false; +#endif + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs.meta new file mode 100644 index 0000000..2ce480e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/EditorUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09e002b759745fa499d539b9021af38e +timeCreated: 1489050987 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs b/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs new file mode 100644 index 0000000..6940697 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs @@ -0,0 +1,116 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + static class GlobalSettings + { + static class Keys + { + internal const string trackballSensitivity = "PostProcessing.Trackball.Sensitivity"; + internal const string volumeGizmoColor = "PostProcessing.Volume.GizmoColor"; + internal const string currentChannelMixer = "PostProcessing.ChannelMixer.CurrentChannel"; + internal const string currentCurve = "PostProcessing.Curve.Current"; + } + + static bool m_Loaded = false; + + static float m_TrackballSensitivity = 0.2f; + internal static float trackballSensitivity + { + get { return m_TrackballSensitivity; } + set { TrySave(ref m_TrackballSensitivity, value, Keys.trackballSensitivity); } + } + + static Color m_VolumeGizmoColor = new Color(0.2f, 0.8f, 0.1f, 0.5f); + internal static Color volumeGizmoColor + { + get { return m_VolumeGizmoColor; } + set { TrySave(ref m_VolumeGizmoColor, value, Keys.volumeGizmoColor); } + } + + static int m_CurrentChannelMixer = 0; + internal static int currentChannelMixer + { + get { return m_CurrentChannelMixer; } + set { TrySave(ref m_CurrentChannelMixer, value, Keys.currentChannelMixer); } + } + + static int m_CurrentCurve = 0; + internal static int currentCurve + { + get { return m_CurrentCurve; } + set { TrySave(ref m_CurrentCurve, value, Keys.currentCurve); } + } + + static GlobalSettings() + { + Load(); + } + +#if UNITY_2018_3_OR_NEWER + [SettingsProvider] + static SettingsProvider PreferenceGUI() + { + return new SettingsProvider("Preferences/Post-processing", SettingsScope.User) + { + guiHandler = searchContext => OpenGUI() + }; + } + +#else + [PreferenceItem("Post-processing")] + static void PreferenceGUI() + { + OpenGUI(); + } + +#endif + + static void OpenGUI() + { + if (!m_Loaded) + Load(); + + EditorGUILayout.Space(); + + trackballSensitivity = EditorGUILayout.Slider("Trackballs Sensitivity", trackballSensitivity, 0.05f, 1f); + volumeGizmoColor = EditorGUILayout.ColorField("Volume Gizmo Color", volumeGizmoColor); + } + + static void Load() + { + m_TrackballSensitivity = EditorPrefs.GetFloat(Keys.trackballSensitivity, 0.2f); + m_VolumeGizmoColor = GetColor(Keys.volumeGizmoColor, new Color(0.2f, 0.8f, 0.1f, 0.5f)); + m_CurrentChannelMixer = EditorPrefs.GetInt(Keys.currentChannelMixer, 0); + m_CurrentCurve = EditorPrefs.GetInt(Keys.currentCurve, 0); + + m_Loaded = true; + } + + static Color GetColor(string key, Color defaultValue) + { + int value = EditorPrefs.GetInt(key, (int)ColorUtilities.ToHex(defaultValue)); + return ColorUtilities.ToRGBA((uint)value); + } + + static void TrySave(ref T field, T newValue, string key) + { + if (field.Equals(newValue)) + return; + + if (typeof(T) == typeof(float)) + EditorPrefs.SetFloat(key, (float)(object)newValue); + else if (typeof(T) == typeof(int)) + EditorPrefs.SetInt(key, (int)(object)newValue); + else if (typeof(T) == typeof(bool)) + EditorPrefs.SetBool(key, (bool)(object)newValue); + else if (typeof(T) == typeof(string)) + EditorPrefs.SetString(key, (string)(object)newValue); + else if (typeof(T) == typeof(Color)) + EditorPrefs.SetInt(key, (int)ColorUtilities.ToHex((Color)(object)newValue)); + + field = newValue; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs.meta new file mode 100644 index 0000000..de260de --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/GlobalSettings.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eff4db1c9252e5247b661dec568df962 +timeCreated: 1494714307 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs b/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs new file mode 100644 index 0000000..db1b1d6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs @@ -0,0 +1,62 @@ +using System; +using System.Linq; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A wrapper used for serialization and easy access to the + /// underlying property and override state. + /// + public sealed class SerializedParameterOverride + { + /// + /// The override state property of the serialized parameter. + /// + public SerializedProperty overrideState { get; private set; } + + /// + /// The value property of the serialized parameter. + /// + public SerializedProperty value { get; private set; } + + /// + /// An array of all attributes set on the original parameter. + /// + public Attribute[] attributes { get; private set; } + + internal SerializedProperty baseProperty; + + /// + /// Returns the display name of the property. + /// + public string displayName + { + get { return baseProperty.displayName; } + } + + internal SerializedParameterOverride(SerializedProperty property, Attribute[] attributes) + { + baseProperty = property.Copy(); + + var localCopy = baseProperty.Copy(); + localCopy.Next(true); + overrideState = localCopy.Copy(); + localCopy.Next(false); + value = localCopy.Copy(); + + this.attributes = attributes; + } + + /// + /// Gets the attribute of type T from the original parameter. + /// + /// The type of attribute to look for + /// And attribute or type T, or null if none has been found + public T GetAttribute() + where T : Attribute + { + return (T)attributes.FirstOrDefault(x => x is T); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta new file mode 100644 index 0000000..ab8030f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f48a0d4b798943a448e8d2e5d891133c +timeCreated: 1492899655 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs b/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs new file mode 100644 index 0000000..e411830 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs @@ -0,0 +1,114 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Common styles used for Post-processing editor controls. + /// + public static class Styling + { + /// + /// Style for the override checkbox. + /// + public static readonly GUIStyle smallTickbox; + + /// + /// Style for the labels in the toolbar of each effect. + /// + public static readonly GUIStyle miniLabelButton; + + static readonly Color splitterDark; + static readonly Color splitterLight; + + /// + /// Color of UI splitters. + /// + public static Color splitter { get { return EditorGUIUtility.isProSkin ? splitterDark : splitterLight; } } + + static readonly Texture2D paneOptionsIconDark; + static readonly Texture2D paneOptionsIconLight; + + /// + /// Option icon used in effect headers. + /// + public static Texture2D paneOptionsIcon { get { return EditorGUIUtility.isProSkin ? paneOptionsIconDark : paneOptionsIconLight; } } + + /// + /// Style for effect header labels. + /// + public static readonly GUIStyle headerLabel; + + static readonly Color headerBackgroundDark; + static readonly Color headerBackgroundLight; + + /// + /// Color of effect header backgrounds. + /// + public static Color headerBackground { get { return EditorGUIUtility.isProSkin ? headerBackgroundDark : headerBackgroundLight; } } + + /// + /// Style for the trackball labels. + /// + public static readonly GUIStyle wheelLabel; + + /// + /// Style for the trackball cursors. + /// + public static readonly GUIStyle wheelThumb; + + /// + /// Size of the trackball cursors. + /// + public static readonly Vector2 wheelThumbSize; + + /// + /// Style for the curve editor position info. + /// + public static readonly GUIStyle preLabel; + + static Styling() + { + smallTickbox = new GUIStyle("ShurikenToggle"); + + miniLabelButton = new GUIStyle(EditorStyles.miniLabel); + miniLabelButton.normal = new GUIStyleState + { + background = RuntimeUtilities.transparentTexture, + scaledBackgrounds = null, + textColor = Color.grey + }; + var activeState = new GUIStyleState + { + background = RuntimeUtilities.transparentTexture, + scaledBackgrounds = null, + textColor = Color.white + }; + miniLabelButton.active = activeState; + miniLabelButton.onNormal = activeState; + miniLabelButton.onActive = activeState; + + splitterDark = new Color(0.12f, 0.12f, 0.12f, 1.333f); + splitterLight = new Color(0.6f, 0.6f, 0.6f, 1.333f); + + headerBackgroundDark = new Color(0.1f, 0.1f, 0.1f, 0.2f); + headerBackgroundLight = new Color(1f, 1f, 1f, 0.2f); + + paneOptionsIconDark = (Texture2D)EditorGUIUtility.Load("Builtin Skins/DarkSkin/Images/pane options.png"); + paneOptionsIconLight = (Texture2D)EditorGUIUtility.Load("Builtin Skins/LightSkin/Images/pane options.png"); + + headerLabel = new GUIStyle(EditorStyles.miniLabel); + + wheelThumb = new GUIStyle("ColorPicker2DThumb"); + + wheelThumbSize = new Vector2( + !Mathf.Approximately(wheelThumb.fixedWidth, 0f) ? wheelThumb.fixedWidth : wheelThumb.padding.horizontal, + !Mathf.Approximately(wheelThumb.fixedHeight, 0f) ? wheelThumb.fixedHeight : wheelThumb.padding.vertical + ); + + wheelLabel = new GUIStyle(EditorStyles.miniLabel); + + preLabel = new GUIStyle("ShurikenLabel"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs.meta b/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs.meta new file mode 100644 index 0000000..daf42e9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Editor/Utils/Styling.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c884467f149574e44b21c869b7fc3401 +timeCreated: 1492697266 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Gizmos.meta b/com.unity.postprocessing/PostProcessing/Gizmos.meta new file mode 100644 index 0000000..cf2b531 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Gizmos.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 62591175d691aac46a9db652057e905c +folderAsset: yes +timeCreated: 1488200725 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png b/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png new file mode 100644 index 0000000..c0a61de Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png differ diff --git a/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png.meta b/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png.meta new file mode 100644 index 0000000..ee62d08 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Gizmos/PostProcessLayer.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 5f51e0b22aa8cb84b9f422576ce87ff9 +timeCreated: 1488200847 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/PostProcessResources.asset b/com.unity.postprocessing/PostProcessing/PostProcessResources.asset new file mode 100644 index 0000000..ae78db2 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/PostProcessResources.asset @@ -0,0 +1,155 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30f4b897495c7ad40b2d47143e02aaba, type: 3} + m_Name: PostProcessResources + m_EditorClassIdentifier: + blueNoise64: + - {fileID: 2800000, guid: 50b54341495978843a6f85583ed4417d, type: 3} + - {fileID: 2800000, guid: 3c2f1fb7e4b66e74191b7c328ada52d9, type: 3} + - {fileID: 2800000, guid: a469f920b21fc7c4fb5b950917ce2fb2, type: 3} + - {fileID: 2800000, guid: 373f9bf6b0841af4ebf26d25e4a3f4e2, type: 3} + - {fileID: 2800000, guid: 6fa5cf178eaaa5f42b820f636bb6e0bd, type: 3} + - {fileID: 2800000, guid: a1ae041906217ae44a774d4ca139af50, type: 3} + - {fileID: 2800000, guid: 79b86f3419b87f3429164a956da8cfab, type: 3} + - {fileID: 2800000, guid: 3ac02e7e783571c468f9c086d2384ba7, type: 3} + - {fileID: 2800000, guid: c55042318a938344ab23cd7f09dd0076, type: 3} + - {fileID: 2800000, guid: 71583cfd8899717428d5b1a95fa39cda, type: 3} + - {fileID: 2800000, guid: afe1e502240079342a0a980484b6da8b, type: 3} + - {fileID: 2800000, guid: 771903fe7b4674445829e52e91cff019, type: 3} + - {fileID: 2800000, guid: 980acadb960f8424c94307ec0e585b4e, type: 3} + - {fileID: 2800000, guid: 68613e6a221be1a4b9f31d7fa1c2d1bf, type: 3} + - {fileID: 2800000, guid: f6439b54b28f3884eb67579dec0b6f21, type: 3} + - {fileID: 2800000, guid: 2ee161d8945169243b5698fec114e1b7, type: 3} + - {fileID: 2800000, guid: 153f7d6dfbe713d4884df0f1e243ba92, type: 3} + - {fileID: 2800000, guid: bf95b6fdc179b0e4f890c841406193fc, type: 3} + - {fileID: 2800000, guid: 74aca53eb7273624baffc2bf5e5cc173, type: 3} + - {fileID: 2800000, guid: 729a3ae164bcb3b4380459386adcf331, type: 3} + - {fileID: 2800000, guid: 6dda07f1420a968449cf4c6620c44d9f, type: 3} + - {fileID: 2800000, guid: b7f000750830ddb4bbc80065b9314ce9, type: 3} + - {fileID: 2800000, guid: df01d03f056c6f445b4b8a0ae054207c, type: 3} + - {fileID: 2800000, guid: bfe953600e8fb1849a804ee08ace7b4c, type: 3} + - {fileID: 2800000, guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad, type: 3} + - {fileID: 2800000, guid: f4b8ab78b57749d4e96d36f6d8a395d0, type: 3} + - {fileID: 2800000, guid: 09f6c01f98a3ded4daf1afc52a3c260f, type: 3} + - {fileID: 2800000, guid: bdd06fb88ef36ed4a85dd506352c2d80, type: 3} + - {fileID: 2800000, guid: 02c0a84bd64c6f044954d8bde9b46ec8, type: 3} + - {fileID: 2800000, guid: aa80dc44aa4fe4c43bb9d51d90cf2958, type: 3} + - {fileID: 2800000, guid: 0fa10b21877c61b4db40ba5708815f81, type: 3} + - {fileID: 2800000, guid: 6b0a189df0bd4d5448eaefb4e673ace8, type: 3} + - {fileID: 2800000, guid: 87a5e40cc271ea648b583616f6ebe7fe, type: 3} + - {fileID: 2800000, guid: b71bb466b71fd13449dd736f63caeb67, type: 3} + - {fileID: 2800000, guid: 319b8e66db3faa4438cf6982e9c89b2f, type: 3} + - {fileID: 2800000, guid: 0a79c155edf9b2d429d4736abee5acdb, type: 3} + - {fileID: 2800000, guid: 351e95d0e20a54849bd4ce5f9b498934, type: 3} + - {fileID: 2800000, guid: 1d6958e30e40a254dbe5a54c573eeb3c, type: 3} + - {fileID: 2800000, guid: 9660a4ca1ca8425408ac25c641932977, type: 3} + - {fileID: 2800000, guid: 547dbd5f858c74047ba3f213e4408307, type: 3} + - {fileID: 2800000, guid: 1a9ce5640cde5934aae0022f020464a6, type: 3} + - {fileID: 2800000, guid: cd9006dc442cc244e89b3f492384d46a, type: 3} + - {fileID: 2800000, guid: b266511438fae724f9d3ce6bd26583e8, type: 3} + - {fileID: 2800000, guid: 71bc1b6b66e8b784b972199b7e90204e, type: 3} + - {fileID: 2800000, guid: 15e54aa23a938444389469d53765d741, type: 3} + - {fileID: 2800000, guid: b9960364038cbfa4aa49d7b2032d3110, type: 3} + - {fileID: 2800000, guid: 8ecbbcae4cc747a4abbc4adce795d25e, type: 3} + - {fileID: 2800000, guid: 1378a33cdd085d64c9da863d2484ff21, type: 3} + - {fileID: 2800000, guid: aff59c63d25d43f4c938f248837c30fb, type: 3} + - {fileID: 2800000, guid: 3f7c3687170b90e4a8d2ee6b142670f4, type: 3} + - {fileID: 2800000, guid: d8c290e38ff0425409d0ae6a98c95e41, type: 3} + - {fileID: 2800000, guid: d5a51525b27e3ee4aadbeb39cbcf0750, type: 3} + - {fileID: 2800000, guid: d2e8e90fac2e6a341a38e1c3963c218d, type: 3} + - {fileID: 2800000, guid: c94b57b5a32a22d43ade66e09f6a4bd2, type: 3} + - {fileID: 2800000, guid: 936dea238abb0864ab3985a995e16a29, type: 3} + - {fileID: 2800000, guid: 5e542d0126a2c7848b66bffc428905fd, type: 3} + - {fileID: 2800000, guid: 70f23eaf7d8ae9147aa542d20e93733b, type: 3} + - {fileID: 2800000, guid: e138166e7a7c70f49943be7edda35d35, type: 3} + - {fileID: 2800000, guid: 85a45a6d8b2ffb84987d2b028ecfb220, type: 3} + - {fileID: 2800000, guid: d96974690c77f50489eb60ec84bd8dac, type: 3} + - {fileID: 2800000, guid: 404fa8def46b1c447817e1ebdaa7144e, type: 3} + - {fileID: 2800000, guid: 119591e0bb084e848835d237546b3882, type: 3} + - {fileID: 2800000, guid: a03c400b0e3959f428ee99dfc6cfc263, type: 3} + - {fileID: 2800000, guid: 4a11d65ce13d5f542a0ff136cc2f3fba, type: 3} + blueNoise256: + - {fileID: 2800000, guid: 6017f374382d64245a0a4aab668e6f38, type: 3} + - {fileID: 2800000, guid: 0f8fa14b3731cda4e947062e734d5e1e, type: 3} + - {fileID: 2800000, guid: 1abfe0e165ca1e9428b455ffc9a2d9ef, type: 3} + - {fileID: 2800000, guid: c072b653e98a06e40857d76ca8c7eecd, type: 3} + - {fileID: 2800000, guid: b52d5033b68309943a2386c270a90f44, type: 3} + - {fileID: 2800000, guid: acde5141d5f4f7a4188394bd52c4dc38, type: 3} + - {fileID: 2800000, guid: 999434725cbc2be4eb54043b36efd4a8, type: 3} + - {fileID: 2800000, guid: 70d0a1182b29d6347ac70374c3593bba, type: 3} + smaaLuts: + area: {fileID: 2800000, guid: 73ec4ae984a0a0f44a2be737e41a6f2f, type: 3} + search: {fileID: 2800000, guid: d99701099481a2f489610e977df6dcbc, type: 3} + shaders: + bloom: {fileID: 4800000, guid: c1e1d3119c6fd4646aea0b4b74cacc1a, type: 3} + copy: {fileID: 4800000, guid: cdbdb71de5f9c454b980f6d0e87f0afb, type: 3} + copyStd: {fileID: 4800000, guid: 4bf4cff0d0bac3d43894e2e8839feb40, type: 3} + copyStdFromTexArray: {fileID: 4800000, guid: 02d2da9bc88d25c4d878c1ed4e0b3854, + type: 3} + copyStdFromDoubleWide: {fileID: 4800000, guid: e8ce9961912f3214586fe8709b9012c1, + type: 3} + discardAlpha: {fileID: 4800000, guid: 5ab0816423f0dfe45841cab3b05ec9ef, type: 3} + depthOfField: {fileID: 4800000, guid: 0ef78d24e85a44f4da9d5b5eaa00e50b, type: 3} + finalPass: {fileID: 4800000, guid: f75014305794b3948a3c6d5ccd550e05, type: 3} + grainBaker: {fileID: 4800000, guid: 0d8afcb51cc9f0349a6d190da929b838, type: 3} + motionBlur: {fileID: 4800000, guid: 2c459b89a7c8b1a4fbefe0d81341651c, type: 3} + temporalAntialiasing: {fileID: 4800000, guid: 51bcf79c50dc92e47ba87821b61100c3, + type: 3} + subpixelMorphologicalAntialiasing: {fileID: 4800000, guid: 81af42a93ade3dd46a9b583d4eec76d6, + type: 3} + texture2dLerp: {fileID: 4800000, guid: 34a819c9e33402547a81619693adc8d5, type: 3} + uber: {fileID: 4800000, guid: 382151503e2a43a4ebb7366d1632731d, type: 3} + lut2DBaker: {fileID: 4800000, guid: 7ad194cbe7d006f4bace915156972026, type: 3} + lightMeter: {fileID: 4800000, guid: b34a29e523cb9d545881e193a079f2df, type: 3} + gammaHistogram: {fileID: 4800000, guid: f7ea35cfb33fcad4ab8f2429ec103bef, type: 3} + waveform: {fileID: 4800000, guid: 3020ac7ece79a7f4eb789a236f8bd6c5, type: 3} + vectorscope: {fileID: 4800000, guid: a71093f2a4fe26a40805c22739e10e4a, type: 3} + debugOverlays: {fileID: 4800000, guid: b958ad1c92bd3d64c9e61318b8681dab, type: 3} + deferredFog: {fileID: 4800000, guid: 4117fce9491711c4094d33a048e36e73, type: 3} + scalableAO: {fileID: 4800000, guid: d7640629310e79646af0f46eb55ae466, type: 3} + multiScaleAO: {fileID: 4800000, guid: 67f9497810829eb4791ec19e95781e51, type: 3} + screenSpaceReflections: {fileID: 4800000, guid: f997a3dc9254c44459323cced085150c, + type: 3} + computeShaders: + autoExposure: {fileID: 7200000, guid: 34845e0ca016b7448842e965db5890a5, type: 3} + exposureHistogram: {fileID: 7200000, guid: 8c2fcbdf9bc58664f89917f7b9d79501, type: 3} + lut3DBaker: {fileID: 7200000, guid: 42496b74c071f5749950ca1abe33e945, type: 3} + texture3dLerp: {fileID: 7200000, guid: 31e9175024adfd44aba2530ff9b77494, type: 3} + gammaHistogram: {fileID: 7200000, guid: 18183ebfeeab97749b43e38b928604a7, type: 3} + waveform: {fileID: 7200000, guid: 92c63830cd50c0b4fbb8233613839958, type: 3} + vectorscope: {fileID: 7200000, guid: e1efca7c36fd01840aae0dd10378de5c, type: 3} + multiScaleAODownsample1: {fileID: 7200000, guid: 4c63bc487e6c29a4a99f85a6c47b292b, + type: 3} + multiScaleAODownsample2: {fileID: 7200000, guid: e4d3e4779e48a374f91d48d4c0aedb7b, + type: 3} + multiScaleAORender: {fileID: 7200000, guid: 34a460e8a2e66c243a9c12024e5a798d, + type: 3} + multiScaleAOUpsample: {fileID: 7200000, guid: 600d6212b59bb40409d19d750b5fd1e9, + type: 3} + gaussianDownsample: {fileID: 7200000, guid: 6dba4103d23a7904fbc49099355aff3e, + type: 3} + namedShaders: + - name: FSR2/ffx_fsr2_compute_luminance_pyramid_pass + shader: {fileID: 7200000, guid: 0894ebeefb6aa7d4680c71dffbda3fee, type: 3} + - name: FSR2/ffx_fsr2_reconstruct_previous_depth_pass + shader: {fileID: 7200000, guid: 6ef1b4c25874e334dad5ba3ac6345e32, type: 3} + - name: FSR2/ffx_fsr2_depth_clip_pass + shader: {fileID: 7200000, guid: 8026d9d8542eab6499c32d5d46beb2b6, type: 3} + - name: FSR2/ffx_fsr2_lock_pass + shader: {fileID: 7200000, guid: 3c96d72b39a840c428c901628dab92c0, type: 3} + - name: FSR2/ffx_fsr2_accumulate_pass + shader: {fileID: 7200000, guid: 702560780e923c84394c9b22ba460a9c, type: 3} + - name: FSR2/ffx_fsr2_rcas_pass + shader: {fileID: 7200000, guid: 5a82801f160ff6a4eb47db567216e592, type: 3} + - name: FSR2/ffx_fsr2_autogen_reactive_pass + shader: {fileID: 7200000, guid: d18fb8811ca4753469c439784546104e, type: 3} + - name: FSR2/ffx_fsr2_tcr_autogen_pass + shader: {fileID: 7200000, guid: b478fba0a6a87b44b8be7c35deb5f0dc, type: 3} diff --git a/com.unity.postprocessing/PostProcessing/PostProcessResources.asset.meta b/com.unity.postprocessing/PostProcessing/PostProcessResources.asset.meta new file mode 100644 index 0000000..b8f940c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/PostProcessResources.asset.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d82512f9c8e5d4a4d938b575d47f88d4 +timeCreated: 1493713586 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime.meta b/com.unity.postprocessing/PostProcessing/Runtime.meta new file mode 100644 index 0000000..b58a1ac --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1bdda73de20b6a54592f998f94de3b64 +folderAsset: yes +timeCreated: 1484302934 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes.meta new file mode 100644 index 0000000..b90a0f6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18b9eca2f52e6624db241af91bab06c9 +folderAsset: yes +timeCreated: 1488204491 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs new file mode 100644 index 0000000..1045b6b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to change the label of a field displayed in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class DisplayNameAttribute : Attribute + { + /// + /// The label displayed in the inspector. + /// + public readonly string displayName; + + /// + /// Creates a new attribute. + /// + /// The label to display in the inspector + public DisplayNameAttribute(string displayName) + { + this.displayName = displayName; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta new file mode 100644 index 0000000..5422d69 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 912e288507f1e724492c7c721fa1deb8 +timeCreated: 1493047701 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs new file mode 100644 index 0000000..826879f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to clamp floating point values to a maximum value in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MaxAttribute : Attribute + { + /// + /// The maximum value the field will be clamped to. + /// + public readonly float max; + + /// + /// Creates a new attribute. + /// + /// The maximum value the field will be clamped to + public MaxAttribute(float max) + { + this.max = max; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta new file mode 100644 index 0000000..06fe9c2 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8c72b20f77adb59439f8eed4f25a950a +timeCreated: 1493113243 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs new file mode 100644 index 0000000..8a624f8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to clamp floating point values to a minimum value in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MinAttribute : Attribute + { + /// + /// The minimum value the field will be clamped to. + /// + public readonly float min; + + /// + /// Creates a new attribute. + /// + /// The minimum value the field will be clamped to + public MinAttribute(float min) + { + this.min = min; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta new file mode 100644 index 0000000..93d3ab3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63007e9c3f71cad46a59f223a8b32d46 +timeCreated: 1493113232 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs new file mode 100644 index 0000000..aa5d087 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs @@ -0,0 +1,32 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to specify a range between a min and a max value. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MinMaxAttribute : Attribute + { + /// + /// The minimum limit of the user defined range. + /// + public readonly float min; + + /// + /// The maximum limit of the user defined range. + /// + public readonly float max; + + /// + /// Creates a new attribute. + /// + /// The minimum limit of the user defined range + /// The maximum limit of the user defined range + public MinMaxAttribute(float min, float max) + { + this.min = min; + this.max = max; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta new file mode 100644 index 0000000..a0e5848 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1d2cae9d8c54de04fab072666ddd1e57 +timeCreated: 1493113280 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs new file mode 100644 index 0000000..0219249 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs @@ -0,0 +1,60 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to associate a to a + /// type. + /// + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class PostProcessAttribute : Attribute + { + /// + /// The renderer type to associate with a . + /// + public readonly Type renderer; + + /// + /// The injection point for the effect. + /// + public readonly PostProcessEvent eventType; + + /// + /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. + /// + public readonly string menuItem; + + /// + /// Should this effect be allowed in the Scene View? + /// + public readonly bool allowInSceneView; + + internal readonly bool builtinEffect; + + /// + /// Creates a new attribute. + /// + /// The renderer type to associate with a + /// The injection point for the effect + /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. + /// Should this effect be allowed in the Scene View? + public PostProcessAttribute(Type renderer, PostProcessEvent eventType, string menuItem, bool allowInSceneView = true) + { + this.renderer = renderer; + this.eventType = eventType; + this.menuItem = menuItem; + this.allowInSceneView = allowInSceneView; + builtinEffect = false; + } + + internal PostProcessAttribute(Type renderer, string menuItem, bool allowInSceneView = true) + { + this.renderer = renderer; + this.menuItem = menuItem; + this.allowInSceneView = allowInSceneView; + builtinEffect = true; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta new file mode 100644 index 0000000..f189e4c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 28cff9aae95df994e98129a9b35627de +timeCreated: 1488204519 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs new file mode 100644 index 0000000..f7c2a31 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs @@ -0,0 +1,52 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to draw a trackball in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class TrackballAttribute : Attribute + { + /// + /// Trackball modes. These are used to compute and display pre-filtered trackball vales in + /// the inspector. + /// + public enum Mode + { + /// + /// Don't display pre-filtered values. + /// + None, + + /// + /// Display pre-filtered lift values. + /// + Lift, + + /// + /// Display pre-filtered gamma values. + /// + Gamma, + + /// + /// Display pre-filtered grain values. + /// + Gain + } + + /// + /// The mode used to display pre-filtered values in the inspector. + /// + public readonly Mode mode; + + /// + /// Creates a new attribute. + /// + /// A mode used to display pre-filtered values in the inspector + public TrackballAttribute(Mode mode) + { + this.mode = mode; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta new file mode 100644 index 0000000..5efefc9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 44788f6e7bbf9174181bfe4689e66131 +timeCreated: 1493900877 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects.meta new file mode 100644 index 0000000..01457a5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d220742cb204f8e4e9fe5f7b1efa7b54 +folderAsset: yes +timeCreated: 1487844780 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs new file mode 100644 index 0000000..9812775 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs @@ -0,0 +1,282 @@ +using System; +using UnityEngine.Experimental.Rendering; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Ambient occlusion modes. + /// + public enum AmbientOcclusionMode + { + /// + /// A standard implementation of ambient obscurance that works on non modern platforms. If + /// you target a compute-enabled platform we recommend that you use + /// instead. + /// + ScalableAmbientObscurance, + + /// + /// A modern version of ambient occlusion heavily optimized for consoles and desktop + /// platforms. + /// + MultiScaleVolumetricObscurance + } + + /// + /// Quality settings for . + /// + public enum AmbientOcclusionQuality + { + /// + /// 4 samples + downsampling. + /// + Lowest, + + /// + /// 6 samples + downsampling. + /// + Low, + + /// + /// 10 samples + downsampling. + /// + Medium, + + /// + /// 8 samples. + /// + High, + + /// + /// 12 samples. + /// + Ultra + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class AmbientOcclusionModeParameter : ParameterOverride { } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class AmbientOcclusionQualityParameter : ParameterOverride { } + + /// + /// This class holds settings for the Ambient Occlusion effect. + /// + [Serializable] + [PostProcess(typeof(AmbientOcclusionRenderer), "Unity/Ambient Occlusion")] + public sealed class AmbientOcclusion : PostProcessEffectSettings + { + // Shared parameters + + /// + /// The ambient occlusion method to use. + /// + [Tooltip("The ambient occlusion method to use. \"Multi Scale Volumetric Obscurance\" is higher quality and faster on desktop & console platforms but requires compute shader support.")] + public AmbientOcclusionModeParameter mode = new AmbientOcclusionModeParameter { value = AmbientOcclusionMode.MultiScaleVolumetricObscurance }; + + /// + /// The degree of darkness added by ambient occlusion. + /// + [Range(0f, 4f), Tooltip("The degree of darkness added by ambient occlusion. Higher values produce darker areas.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// A custom color to use for the ambient occlusion. + /// + [ColorUsage(false), Tooltip("The custom color to use for the ambient occlusion. The default is black.")] + public ColorParameter color = new ColorParameter { value = Color.black }; + + /// + /// Only affects ambient lighting. This mode is only available with the Deferred rendering + /// path and HDR rendering. Objects rendered with the Forward rendering path won't get any + /// ambient occlusion. + /// + [Tooltip("Check this box to mark this Volume as to only affect ambient lighting. This mode is only available with the Deferred rendering path and HDR rendering. Objects rendered with the Forward rendering path won't get any ambient occlusion.")] + public BoolParameter ambientOnly = new BoolParameter { value = true }; + + // MSVO-only parameters + + /// + /// The tolerance of the noise filter to changes in the depth pyramid. + /// + [Range(-8f, 0f)] + public FloatParameter noiseFilterTolerance = new FloatParameter { value = 0f }; // Hidden + + /// + /// The tolerance of the bilateral blur filter to depth changes. + /// + [Range(-8f, -1f)] + public FloatParameter blurTolerance = new FloatParameter { value = -4.6f }; // Hidden + + /// + /// The tolerance of the upsampling pass to depth changes. + /// + [Range(-12f, -1f)] + public FloatParameter upsampleTolerance = new FloatParameter { value = -12f }; // Hidden + + /// + /// Modifies the thickness of occluders. This increases dark areas but also introduces dark + /// halo around objects. + /// + [Range(1f, 10f), Tooltip("This modifies the thickness of occluders. It increases the size of dark areas and also introduces a dark halo around objects.")] + public FloatParameter thicknessModifier = new FloatParameter { value = 1f }; + + /// + /// Add a bias distance to sampled depth in AO to reduce self-shadowing aliasing artifacts. + /// + [Range(0f, 0.001f), Tooltip("Add a bias distance to sampled depth in AO to reduce self-shadowing aliasing artifacts. ")] + public FloatParameter zBias = new FloatParameter { value = 0.0001f }; + + // HDRP-only parameters + + /// + /// Modifies he influence of direct lighting on ambient occlusion. This is only used in the + /// HD Render Pipeline currently. + /// + [Range(0f, 1f), Tooltip("Modifies the influence of direct lighting on ambient occlusion.")] + public FloatParameter directLightingStrength = new FloatParameter { value = 0f }; + + // SAO-only parameters + + /// + /// Radius of sample points, which affects extent of darkened areas. + /// + [Tooltip("The radius of sample points. This affects the size of darkened areas.")] + public FloatParameter radius = new FloatParameter { value = 0.25f }; + + /// + /// The number of sample points, which affects quality and performance. Lowest, Low and Medium + /// passes are downsampled. High and Ultra are not and should only be used on high-end + /// hardware. + /// + [Tooltip("The number of sample points. This affects both quality and performance. For \"Lowest\", \"Low\", and \"Medium\", passes are downsampled. For \"High\" and \"Ultra\", they are not and therefore you should only \"High\" and \"Ultra\" on high-end hardware.")] + public AmbientOcclusionQualityParameter quality = new AmbientOcclusionQualityParameter { value = AmbientOcclusionQuality.Medium }; + + // SRPs can call this method without a context set (see HDRP). + // We need a better way to handle this than checking for a null context, context should + // never be null. + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + bool state = enabled.value + && intensity.value > 0f; + + if (mode.value == AmbientOcclusionMode.ScalableAmbientObscurance) + { + state &= !RuntimeUtilities.scriptableRenderPipelineActive; + + if (context != null) + { + state &= context.resources.shaders.scalableAO + && context.resources.shaders.scalableAO.isSupported; + } + } + else if (mode.value == AmbientOcclusionMode.MultiScaleVolumetricObscurance) + { + if (context != null) + { + state &= context.resources.shaders.multiScaleAO + && context.resources.shaders.multiScaleAO.isSupported + && context.resources.computeShaders.multiScaleAODownsample1 + && context.resources.computeShaders.multiScaleAODownsample2 + && context.resources.computeShaders.multiScaleAORender + && context.resources.computeShaders.multiScaleAOUpsample; + } + + state &= SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL +#if UNITY_2023_2_OR_NEWER + && SystemInfo.IsFormatSupported(GraphicsFormat.R32_SFloat, GraphicsFormatUsage.Render | GraphicsFormatUsage.Sparse) + && SystemInfo.IsFormatSupported(GraphicsFormat.R16_SFloat, GraphicsFormatUsage.Render | GraphicsFormatUsage.Sparse) + && SystemInfo.IsFormatSupported(GraphicsFormat.R8_UNorm, GraphicsFormatUsage.Render | GraphicsFormatUsage.Sparse); +#else + && SystemInfo.IsFormatSupported(GraphicsFormat.R32_SFloat, FormatUsage.Render) + && SystemInfo.IsFormatSupported(GraphicsFormat.R32_SFloat, FormatUsage.Sparse) + && SystemInfo.IsFormatSupported(GraphicsFormat.R16_SFloat, FormatUsage.Render) + && SystemInfo.IsFormatSupported(GraphicsFormat.R16_SFloat, FormatUsage.Sparse) + && SystemInfo.IsFormatSupported(GraphicsFormat.R8_UNorm, FormatUsage.Render) + && SystemInfo.IsFormatSupported(GraphicsFormat.R8_UNorm, FormatUsage.Sparse); +#endif + } + + return state; + } + } + + internal interface IAmbientOcclusionMethod + { + DepthTextureMode GetCameraFlags(); + void RenderAfterOpaque(PostProcessRenderContext context); + void RenderAmbientOnly(PostProcessRenderContext context); + void CompositeAmbientOnly(PostProcessRenderContext context); + void Release(); + } + + [UnityEngine.Scripting.Preserve] + internal sealed class AmbientOcclusionRenderer : PostProcessEffectRenderer + { + IAmbientOcclusionMethod[] m_Methods; + + public override void Init() + { + if (m_Methods == null) + { + m_Methods = new IAmbientOcclusionMethod[] + { + new ScalableAO(settings), + new MultiScaleVO(settings), + }; + } + } + + public bool IsAmbientOnly(PostProcessRenderContext context) + { + var camera = context.camera; + return settings.ambientOnly.value + && camera.actualRenderingPath == RenderingPath.DeferredShading + && camera.allowHDR; + } + + public IAmbientOcclusionMethod Get() + { + return m_Methods[(int)settings.mode.value]; + } + + public override DepthTextureMode GetCameraFlags() + { + return Get().GetCameraFlags(); + } + + public override void Release() + { + foreach (var m in m_Methods) + m.Release(); + } + + public ScalableAO GetScalableAO() + { + return (ScalableAO)m_Methods[(int)AmbientOcclusionMode.ScalableAmbientObscurance]; + } + + public MultiScaleVO GetMultiScaleVO() + { + return (MultiScaleVO)m_Methods[(int)AmbientOcclusionMode.MultiScaleVolumetricObscurance]; + } + + // Unused + public override void Render(PostProcessRenderContext context) + { + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta new file mode 100644 index 0000000..940bb4b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c1cb7e9e120078f43bce4f0b1be547a7 +timeCreated: 1498493415 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs new file mode 100644 index 0000000..79b8696 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs @@ -0,0 +1,201 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Eye adaptation modes. + /// + public enum EyeAdaptation + { + /// + /// Progressive (smooth) eye adaptation. + /// + Progressive, + + /// + /// Fixed (instant) eye adaptation. + /// + Fixed + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class EyeAdaptationParameter : ParameterOverride { } + + /// + /// This class holds settings for the Auto Exposure effect. + /// + [Serializable] + [PostProcess(typeof(AutoExposureRenderer), "Unity/Auto Exposure")] + public sealed class AutoExposure : PostProcessEffectSettings + { + /// + /// These values are the lower and upper percentages of the histogram that will be used to + /// find a stable average luminance. Values outside of this range will be discarded and wont + /// contribute to the average luminance. + /// + [MinMax(1f, 99f), DisplayName("Filtering (%)"), Tooltip("Filters the bright and dark parts of the histogram when computing the average luminance. This is to avoid very dark pixels and very bright pixels from contributing to the auto exposure. Unit is in percent.")] + public Vector2Parameter filtering = new Vector2Parameter { value = new Vector2(50f, 95f) }; + + /// + /// Minimum average luminance to consider for auto exposure (in EV). + /// + [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Minimum (EV)"), Tooltip("Minimum average luminance to consider for auto exposure. Unit is EV.")] + public FloatParameter minLuminance = new FloatParameter { value = 0f }; + + /// + /// Maximum average luminance to consider for auto exposure (in EV). + /// + [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Maximum (EV)"), Tooltip("Maximum average luminance to consider for auto exposure. Unit is EV.")] + public FloatParameter maxLuminance = new FloatParameter { value = 0f }; + + /// + /// Middle-grey value. Use this to compensate the global exposure of the scene. + /// + [Min(0f), DisplayName("Exposure Compensation"), Tooltip("Use this to scale the global exposure of the scene.")] + public FloatParameter keyValue = new FloatParameter { value = 1f }; + + /// + /// The type of eye adaptation to use. + /// + [DisplayName("Type"), Tooltip("Use \"Progressive\" if you want auto exposure to be animated. Use \"Fixed\" otherwise.")] + public EyeAdaptationParameter eyeAdaptation = new EyeAdaptationParameter { value = EyeAdaptation.Progressive }; + + /// + /// The adaptation speed from a dark to a light environment. + /// + [Min(0f), Tooltip("Adaptation speed from a dark to a light environment.")] + public FloatParameter speedUp = new FloatParameter { value = 2f }; + + /// + /// The adaptation speed from a light to a dark environment. + /// + [Min(0f), Tooltip("Adaptation speed from a light to a dark environment.")] + public FloatParameter speedDown = new FloatParameter { value = 1f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL + && RenderTextureFormat.RFloat.IsSupported() + && context.resources.computeShaders.autoExposure + && context.resources.computeShaders.exposureHistogram; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class AutoExposureRenderer : PostProcessEffectRenderer + { + const int k_NumEyes = 2; + const int k_NumAutoExposureTextures = 2; + + readonly RenderTexture[][] m_AutoExposurePool = new RenderTexture[k_NumEyes][]; + int[] m_AutoExposurePingPong = new int[k_NumEyes]; + RenderTexture m_CurrentAutoExposure; + + public AutoExposureRenderer() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + m_AutoExposurePool[eye] = new RenderTexture[k_NumAutoExposureTextures]; + m_AutoExposurePingPong[eye] = 0; + } + } + + void CheckTexture(int eye, int id) + { + if (m_AutoExposurePool[eye][id] == null || !m_AutoExposurePool[eye][id].IsCreated()) + { + m_AutoExposurePool[eye][id] = new RenderTexture(1, 1, 0, RenderTextureFormat.RFloat) { enableRandomWrite = true }; + m_AutoExposurePool[eye][id].Create(); + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("AutoExposureLookup"); + + // Prepare autoExpo texture pool + CheckTexture(context.xrActiveEye, 0); + CheckTexture(context.xrActiveEye, 1); + + // Make sure filtering values are correct to avoid apocalyptic consequences + float lowPercent = settings.filtering.value.x; + float highPercent = settings.filtering.value.y; + const float kMinDelta = 1e-2f; + highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); + lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); + + // Clamp min/max adaptation values as well + float minLum = settings.minLuminance.value; + float maxLum = settings.maxLuminance.value; + settings.minLuminance.value = Mathf.Min(minLum, maxLum); + settings.maxLuminance.value = Mathf.Max(minLum, maxLum); + + // Compute average luminance & auto exposure + bool firstFrame = m_ResetHistory || !Application.isPlaying; + string adaptation = null; + + if (firstFrame || settings.eyeAdaptation.value == EyeAdaptation.Fixed) + adaptation = "KAutoExposureAvgLuminance_fixed"; + else + adaptation = "KAutoExposureAvgLuminance_progressive"; + + var compute = context.resources.computeShaders.autoExposure; + int kernel = compute.FindKernel(adaptation); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", context.logHistogram.data); + cmd.SetComputeVectorParam(compute, "_Params1", new Vector4(lowPercent * 0.01f, highPercent * 0.01f, RuntimeUtilities.Exp2(settings.minLuminance.value), RuntimeUtilities.Exp2(settings.maxLuminance.value))); + cmd.SetComputeVectorParam(compute, "_Params2", new Vector4(settings.speedDown.value, settings.speedUp.value, settings.keyValue.value, Time.deltaTime)); + cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", context.logHistogram.GetHistogramScaleOffsetRes(context)); + + if (firstFrame) + { + // We don't want eye adaptation when not in play mode because the GameView isn't + // animated, thus making it harder to tweak. Just use the final audo exposure value. + m_CurrentAutoExposure = m_AutoExposurePool[context.xrActiveEye][0]; + cmd.SetComputeTextureParam(compute, kernel, "_Destination", m_CurrentAutoExposure); + cmd.DispatchCompute(compute, kernel, 1, 1, 1); + + // Copy current exposure to the other pingpong target to avoid adapting from black + RuntimeUtilities.CopyTexture(cmd, m_AutoExposurePool[context.xrActiveEye][0], m_AutoExposurePool[context.xrActiveEye][1]); + m_ResetHistory = false; + } + else + { + int pp = m_AutoExposurePingPong[context.xrActiveEye]; + var src = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; + var dst = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; + + cmd.SetComputeTextureParam(compute, kernel, "_Source", src); + cmd.SetComputeTextureParam(compute, kernel, "_Destination", dst); + cmd.DispatchCompute(compute, kernel, 1, 1, 1); + + m_AutoExposurePingPong[context.xrActiveEye] = ++pp % 2; + m_CurrentAutoExposure = dst; + } + + cmd.EndSample("AutoExposureLookup"); + + context.autoExposureTexture = m_CurrentAutoExposure; + context.autoExposure = settings; + } + + public override void Release() + { + foreach (var rtEyeSet in m_AutoExposurePool) + { + foreach (var rt in rtEyeSet) + RuntimeUtilities.Destroy(rt); + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs.meta new file mode 100644 index 0000000..4ada827 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/AutoExposure.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b3f6f3f7c722b4544b97e3c75840aa33 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs new file mode 100644 index 0000000..8f230f4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs @@ -0,0 +1,274 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + // For now and by popular request, this bloom effect is geared toward artists so they have full + // control over how it looks at the expense of physical correctness. + // Eventually we will need a "true" natural bloom effect with proper energy conservation. + + /// + /// This class holds settings for the Bloom effect. + /// + [Serializable] + [PostProcess(typeof(BloomRenderer), "Unity/Bloom")] + public sealed class Bloom : PostProcessEffectSettings + { + /// + /// The strength of the bloom filter. + /// + [Min(0f), Tooltip("Strength of the bloom filter. Values higher than 1 will make bloom contribute more energy to the final render.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// Filters out pixels under this level of brightness. This value is expressed in + /// gamma-space. + /// + [Min(0f), Tooltip("Filters out pixels under this level of brightness. Value is in gamma-space.")] + public FloatParameter threshold = new FloatParameter { value = 1f }; + + /// + /// Makes transition between under/over-threshold gradual (0 = hard threshold, 1 = soft + /// threshold). + /// + [Range(0f, 1f), Tooltip("Makes transitions between under/over-threshold gradual. 0 for a hard threshold, 1 for a soft threshold).")] + public FloatParameter softKnee = new FloatParameter { value = 0.5f }; + + /// + /// Clamps pixels to control the bloom amount. This value is expressed in gamma-space. + /// + [Tooltip("Clamps pixels to control the bloom amount. Value is in gamma-space.")] + public FloatParameter clamp = new FloatParameter { value = 65472f }; + + /// + /// Changes extent of veiling effects in a screen resolution-independent fashion. For + /// maximum quality stick to integer values. Because this value changes the internal + /// iteration count, animating it isn't recommended as it may introduce small hiccups in + /// the perceived radius. + /// + [Range(1f, 10f), Tooltip("Changes the extent of veiling effects. For maximum quality, use integer values. Because this value changes the internal iteration count, You should not animating it as it may introduce issues with the perceived radius.")] + public FloatParameter diffusion = new FloatParameter { value = 7f }; + + /// + /// Distorts the bloom to give an anamorphic look. Negative values distort vertically, + /// positive values distort horizontally. + /// + [Range(-1f, 1f), Tooltip("Distorts the bloom to give an anamorphic look. Negative values distort vertically, positive values distort horizontally.")] + public FloatParameter anamorphicRatio = new FloatParameter { value = 0f }; + + /// + /// The tint of the Bloom filter. + /// +#if UNITY_2018_1_OR_NEWER + [ColorUsage(false, true), Tooltip("Global tint of the bloom filter.")] +#else + [ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Global tint of the bloom filter.")] +#endif + public ColorParameter color = new ColorParameter { value = Color.white }; + + /// + /// Boost performances by lowering the effect quality. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performance by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public BoolParameter fastMode = new BoolParameter { value = false }; + + /// + /// The dirtiness texture to add smudges or dust to the lens. + /// + [Tooltip("The lens dirt texture used to add smudges or dust to the bloom effect."), DisplayName("Texture")] + public TextureParameter dirtTexture = new TextureParameter { value = null }; + + /// + /// The amount of lens dirtiness. + /// + [Min(0f), Tooltip("The intensity of the lens dirtiness."), DisplayName("Intensity")] + public FloatParameter dirtIntensity = new FloatParameter { value = 0f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class BloomRenderer : PostProcessEffectRenderer + { + enum Pass + { + Prefilter13, + Prefilter4, + Downsample13, + Downsample4, + UpsampleTent, + UpsampleBox, + DebugOverlayThreshold, + DebugOverlayTent, + DebugOverlayBox + } + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; // Just to make sure we handle 64k screens... Future-proof! + + struct Level + { + internal int down; + internal int up; + } + + public override void Init() + { + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down = Shader.PropertyToID("_BloomMipDown" + i), + up = Shader.PropertyToID("_BloomMipUp" + i) + }; + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("BloomPyramid"); + + var sheet = context.propertySheets.Get(context.resources.shaders.bloom); + + // Apply auto exposure adjustment in the prefiltering pass + sheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); + + // Negative anamorphic ratio values distort vertically - positive is horizontal + float ratio = Mathf.Clamp(settings.anamorphicRatio, -1, 1); + float rw = ratio < 0 ? -ratio : 0f; + float rh = ratio > 0 ? ratio : 0f; + + // Do bloom on a half-res buffer, full-res doesn't bring much and kills performances on + // fillrate limited platforms + int tw = Mathf.FloorToInt(context.screenWidth / (2f - rw)); + int th = Mathf.FloorToInt(context.screenHeight / (2f - rh)); + bool singlePassDoubleWide = (context.stereoActive && (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) && (context.camera.stereoTargetEye == StereoTargetEyeMask.Both)); + int tw_stereo = singlePassDoubleWide ? tw * 2 : tw; + + // Determine the iteration count + int s = Mathf.Max(tw, th); + float logs = Mathf.Log(s, 2f) + Mathf.Min(settings.diffusion.value, 10f) - 10f; + int logs_i = Mathf.FloorToInt(logs); + int iterations = Mathf.Clamp(logs_i, 1, k_MaxPyramidSize); + float sampleScale = 0.5f + logs - logs_i; + sheet.properties.SetFloat(ShaderIDs.SampleScale, sampleScale); + + // Prefiltering parameters + float lthresh = Mathf.GammaToLinearSpace(settings.threshold.value); + float knee = lthresh * settings.softKnee.value + 1e-5f; + var threshold = new Vector4(lthresh, lthresh - knee, knee * 2f, 0.25f / knee); + sheet.properties.SetVector(ShaderIDs.Threshold, threshold); + float lclamp = Mathf.GammaToLinearSpace(settings.clamp.value); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(lclamp, 0f, 0f, 0f)); + + int qualityOffset = settings.fastMode ? 1 : 0; + + // Downsample + var lastDown = context.source; + for (int i = 0; i < iterations; i++) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + int pass = i == 0 + ? (int)Pass.Prefilter13 + qualityOffset + : (int)Pass.Downsample13 + qualityOffset; + + context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); + cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, pass); + + lastDown = mipDown; + tw_stereo = (singlePassDoubleWide && ((tw_stereo / 2) % 2 > 0)) ? 1 + tw_stereo / 2 : tw_stereo / 2; + tw_stereo = Mathf.Max(tw_stereo, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[iterations - 1].down; + for (int i = iterations - 2; i >= 0; i--) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + cmd.SetGlobalTexture(ShaderIDs.BloomTex, mipDown); + cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, (int)Pass.UpsampleTent + qualityOffset); + lastUp = mipUp; + } + + var linearColor = settings.color.value.linear; + float intensity = RuntimeUtilities.Exp2(settings.intensity.value / 10f) - 1f; + var shaderSettings = new Vector4(sampleScale, intensity, settings.dirtIntensity.value, iterations); + + // Debug overlays + if (context.IsDebugOverlayEnabled(DebugOverlay.BloomThreshold)) + { + context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlayThreshold); + } + else if (context.IsDebugOverlayEnabled(DebugOverlay.BloomBuffer)) + { + sheet.properties.SetVector(ShaderIDs.ColorIntensity, new Vector4(linearColor.r, linearColor.g, linearColor.b, intensity)); + context.PushDebugOverlay(cmd, m_Pyramid[0].up, sheet, (int)Pass.DebugOverlayTent + qualityOffset); + } + + // Lens dirtiness + // Keep the aspect ratio correct & center the dirt texture, we don't want it to be + // stretched or squashed + var dirtTexture = settings.dirtTexture.value == null + ? RuntimeUtilities.blackTexture + : settings.dirtTexture.value; + + var dirtRatio = (float)dirtTexture.width / (float)dirtTexture.height; + var screenRatio = (float)context.screenWidth / (float)context.screenHeight; + var dirtTileOffset = new Vector4(1f, 1f, 0f, 0f); + + if (dirtRatio > screenRatio) + { + dirtTileOffset.x = screenRatio / dirtRatio; + dirtTileOffset.z = (1f - dirtTileOffset.x) * 0.5f; + } + else if (screenRatio > dirtRatio) + { + dirtTileOffset.y = dirtRatio / screenRatio; + dirtTileOffset.w = (1f - dirtTileOffset.y) * 0.5f; + } + + // Shader properties + var uberSheet = context.uberSheet; + if (settings.fastMode) + uberSheet.EnableKeyword("BLOOM_LOW"); + else + uberSheet.EnableKeyword("BLOOM"); + uberSheet.properties.SetVector(ShaderIDs.Bloom_DirtTileOffset, dirtTileOffset); + uberSheet.properties.SetVector(ShaderIDs.Bloom_Settings, shaderSettings); + uberSheet.properties.SetColor(ShaderIDs.Bloom_Color, linearColor); + uberSheet.properties.SetTexture(ShaderIDs.Bloom_DirtTex, dirtTexture); + cmd.SetGlobalTexture(ShaderIDs.BloomTex, lastUp); + + // Cleanup + for (int i = 0; i < iterations; i++) + { + if (m_Pyramid[i].down != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down); + if (m_Pyramid[i].up != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up); + } + + cmd.EndSample("BloomPyramid"); + + context.bloomBufferNameID = lastUp; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs.meta new file mode 100644 index 0000000..aa52d21 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Bloom.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 48a79b01ea5641d4aa6daa2e23605641 +timeCreated: 1491826542 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs new file mode 100644 index 0000000..ee93909 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs @@ -0,0 +1,101 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Chromatic Aberration effect. + /// + [Serializable] + [PostProcess(typeof(ChromaticAberrationRenderer), "Unity/Chromatic Aberration")] + public sealed class ChromaticAberration : PostProcessEffectSettings + { + /// + /// A texture used for custom fringing color (it will use a default one when null). + /// + [Tooltip("Shifts the hue of chromatic aberrations.")] + public TextureParameter spectralLut = new TextureParameter { value = null }; + + /// + /// The amount of tangential distortion. + /// + [Range(0f, 1f), Tooltip("Amount of tangential distortion.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// If true, it will use a faster variant of the effect for improved performances. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performances by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public BoolParameter fastMode = new BoolParameter { value = false }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class ChromaticAberrationRenderer : PostProcessEffectRenderer + { + Texture2D m_InternalSpectralLut; + + public override void Render(PostProcessRenderContext context) + { + var spectralLut = settings.spectralLut.value; + + if (spectralLut == null) + { + if (m_InternalSpectralLut == null) + { + m_InternalSpectralLut = new Texture2D(3, 1, TextureFormat.RGB24, false) + { + name = "Chromatic Aberration Spectrum Lookup", + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + hideFlags = HideFlags.DontSave + }; + + m_InternalSpectralLut.SetPixels(new[] + { + new Color(1f, 0f, 0f), + new Color(0f, 1f, 0f), + new Color(0f, 0f, 1f) + }); + + m_InternalSpectralLut.Apply(); + } + + spectralLut = m_InternalSpectralLut; + } + + var sheet = context.uberSheet; + bool fastMode = settings.fastMode +#if !UNITY_2023_1_OR_NEWER + || SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLES2; +#else + ; +#endif + + sheet.EnableKeyword(fastMode + ? "CHROMATIC_ABERRATION_LOW" + : "CHROMATIC_ABERRATION" + ); + sheet.properties.SetFloat(ShaderIDs.ChromaticAberration_Amount, settings.intensity * 0.05f); + sheet.properties.SetTexture(ShaderIDs.ChromaticAberration_SpectralLut, spectralLut); + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_InternalSpectralLut); + m_InternalSpectralLut = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta new file mode 100644 index 0000000..f3ff2b8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6050e2d5de785ce4d931e4dbdbf2d755 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs new file mode 100644 index 0000000..481530b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs @@ -0,0 +1,849 @@ +using System; + +using UnityEngine.Experimental.Rendering; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Color grading modes. + /// + public enum GradingMode + { + /// + /// This mode is aimed at lower-end platforms but it can be used on any platform. Grading is + /// applied to the final rendered frame clamped in a [0,1] range and stored in a standard + /// LUT. + /// + LowDefinitionRange, + + /// + /// This mode is aimed at platforms that support HDR rendering. All the color operations + /// will be applied in HDR and stored into a 3D log-encoded LUT to ensure a sufficient range + /// coverage and precision (Alexa LogC El1000). + /// + HighDefinitionRange, + + /// + /// This mode allows you to provide a custom 3D LUT authored in an external software. + /// + External + } + + /// + /// Tonemapping methods. + /// + public enum Tonemapper + { + /// + /// No tonemapping will be applied. + /// + None, + + /// + /// This method only does range-remapping with minimal impact on color hue & saturation and + /// is generally a great starting point for extensive color grading. + /// + Neutral, + + /// + /// This method uses a close approximation of the reference ACES tonemapper for a more + /// filmic look. Because of that, it is more contrasted than and has + /// an effect on actual color hue & saturation. Note that if you enable this tonemapper all + /// the grading operations will be done in the ACES color spaces for optimal precision and + /// results. + /// + ACES, + + /// + /// This method offers a fully parametric, artist-friendly tonemapper. + /// + Custom + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class GradingModeParameter : ParameterOverride { } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class TonemapperParameter : ParameterOverride { } + + /// + /// This class holds settings for the Color Grading effect. + /// + // TODO: Could use some refactoring, too much duplicated code here + [Serializable] + [PostProcess(typeof(ColorGradingRenderer), "Unity/Color Grading")] + public sealed class ColorGrading : PostProcessEffectSettings + { + /// + /// The grading mode to use. + /// + [DisplayName("Mode"), Tooltip("Select a color grading mode that fits your dynamic range and workflow. Use HDR if your camera is set to render in HDR and your target platform supports it. Use LDR for low-end mobiles or devices that don't support HDR. Use External if you prefer authoring a Log LUT in an external software.")] + public GradingModeParameter gradingMode = new GradingModeParameter { value = GradingMode.HighDefinitionRange }; + + /// + /// A custom 3D log-encoded texture. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Lookup Texture"), Tooltip("A custom 3D log-encoded texture.")] + public TextureParameter externalLut = new TextureParameter { value = null }; + + /// + /// The tonemapping algorithm to use at the end of the color grading process. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Mode"), Tooltip("Select a tonemapping algorithm to use at the end of the color grading process.")] + public TonemapperParameter tonemapper = new TonemapperParameter { value = Tonemapper.None }; + + /// + /// Affects the transition between the toe and the mid section of the curve. A value of 0 + /// means no toe, a value of 1 means a very hard transition. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Toe Strength"), Range(0f, 1f), Tooltip("Affects the transition between the toe and the mid section of the curve. A value of 0 means no toe, a value of 1 means a very hard transition.")] + public FloatParameter toneCurveToeStrength = new FloatParameter { value = 0f }; + + /// + /// Affects how much of the dynamic range is in the toe. With a small value, the toe will be + /// very short and quickly transition into the linear section, and with a longer value + /// having a longer toe. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Toe Length"), Range(0f, 1f), Tooltip("Affects how much of the dynamic range is in the toe. With a small value, the toe will be very short and quickly transition into the linear section, with a larger value, the toe will be longer.")] + public FloatParameter toneCurveToeLength = new FloatParameter { value = 0.5f }; + + /// + /// Affects the transition between the mid section and the shoulder of the curve. A value of + /// 0 means no shoulder, value of 1 means a very hard transition. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Strength"), Range(0f, 1f), Tooltip("Affects the transition between the mid section and the shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard transition.")] + public FloatParameter toneCurveShoulderStrength = new FloatParameter { value = 0f }; + + /// + /// Affects how many F-stops (EV) to add to the dynamic range of the curve. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Length"), Min(0f), Tooltip("Affects how many F-stops (EV) to add to the dynamic range of the curve.")] + public FloatParameter toneCurveShoulderLength = new FloatParameter { value = 0.5f }; + + /// + /// Affects how much overshot to add to the shoulder. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Angle"), Range(0f, 1f), Tooltip("Affects how much overshoot to add to the shoulder.")] + public FloatParameter toneCurveShoulderAngle = new FloatParameter { value = 0f }; + + /// + /// Applies a gamma function to the curve. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Gamma"), Min(0.001f), Tooltip("Applies a gamma function to the curve.")] + public FloatParameter toneCurveGamma = new FloatParameter { value = 1f }; + + /// + /// A custom lookup texture (strip format, e.g. 256x16) to apply before the rest of the + /// color grading operators. If none is provided, a neutral one will be generated + /// internally. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Lookup Texture"), Tooltip("Custom lookup texture (strip format, for example 256x16) to apply before the rest of the color grading operators. If none is provided, a neutral one will be generated internally.")] + public TextureParameter ldrLut = new TextureParameter { value = null, defaultState = TextureParameterDefault.Lut2D }; // LDR only + + /// + /// How much of the lookup texture will contribute to the color grading. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Contribution"), Range(0f, 1f), Tooltip("How much of the lookup texture will contribute to the color grading effect.")] + public FloatParameter ldrLutContribution = new FloatParameter { value = 1f }; + + /// + /// Sets the white balance to a custom color temperature. + /// + [DisplayName("Temperature"), Range(-100f, 100f), Tooltip("Sets the white balance to a custom color temperature.")] + public FloatParameter temperature = new FloatParameter { value = 0f }; + + /// + /// Sets the white balance to compensate for a green or magenta tint. + /// + [DisplayName("Tint"), Range(-100f, 100f), Tooltip("Sets the white balance to compensate for a green or magenta tint.")] + public FloatParameter tint = new FloatParameter { value = 0f }; + + /// + /// Tints the render by multiplying a color. + /// +#if UNITY_2018_1_OR_NEWER + [DisplayName("Color Filter"), ColorUsage(false, true), Tooltip("Tint the render by multiplying a color.")] +#else + [DisplayName("Color Filter"), ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Tint the render by multiplying a color.")] +#endif + public ColorParameter colorFilter = new ColorParameter { value = Color.white }; + + /// + /// Shifts the hue of all colors. + /// + [DisplayName("Hue Shift"), Range(-180f, 180f), Tooltip("Shift the hue of all colors.")] + public FloatParameter hueShift = new FloatParameter { value = 0f }; + + /// + /// Pushes the intensity of all colors. + /// + [DisplayName("Saturation"), Range(-100f, 100f), Tooltip("Pushes the intensity of all colors.")] + public FloatParameter saturation = new FloatParameter { value = 0f }; + + /// + /// Makes the image brighter or darker. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Brightness"), Range(-100f, 100f), Tooltip("Makes the image brighter or darker.")] + public FloatParameter brightness = new FloatParameter { value = 0f }; // LDR only + + /// + /// Adjusts the overall exposure of the scene in EV units. This is applied after HDR effect + /// and right before tonemapping so it won't affect previous effects in the chain. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Post-exposure (EV)"), Tooltip("Adjusts the overall exposure of the scene in EV units. This is applied after the HDR effect and right before tonemapping so it won't affect previous effects in the chain.")] + public FloatParameter postExposure = new FloatParameter { value = 0f }; // HDR only + + /// + /// Expands or shrinks the overall range of tonal values. + /// + [DisplayName("Contrast"), Range(-100f, 100f), Tooltip("Expands or shrinks the overall range of tonal values.")] + public FloatParameter contrast = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerRedOutRedIn = new FloatParameter { value = 100f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerRedOutGreenIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerRedOutBlueIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerGreenOutRedIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerGreenOutGreenIn = new FloatParameter { value = 100f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerGreenOutBlueIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerBlueOutRedIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerBlueOutGreenIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerBlueOutBlueIn = new FloatParameter { value = 100f }; + + /// + /// Controls the darkest portions of the render. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Lift"), Tooltip("Controls the darkest portions of the render."), Trackball(TrackballAttribute.Mode.Lift)] + public Vector4Parameter lift = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// A power function that controls mid-range tones. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Gamma"), Tooltip("Power function that controls mid-range tones."), Trackball(TrackballAttribute.Mode.Gamma)] + public Vector4Parameter gamma = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// Controls the lightest portions of the render. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Gain"), Tooltip("Controls the lightest portions of the render."), Trackball(TrackballAttribute.Mode.Gain)] + public Vector4Parameter gain = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// Remaps the luminosity values. + /// + /// + /// This is only used when working with . + /// + public SplineParameter masterCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the red channel. + /// + /// + /// This is only used when working with . + /// + public SplineParameter redCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the green channel/ + /// + /// + /// This is only used when working with . + /// + public SplineParameter greenCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the blue channel. + /// + /// + /// This is only used when working with . + /// + public SplineParameter blueCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the hue according to the current hue. + /// + public SplineParameter hueVsHueCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current hue. + /// + public SplineParameter hueVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current saturation. + /// + public SplineParameter satVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current luminance. + /// + public SplineParameter lumVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + if (gradingMode.value == GradingMode.External) + { + if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) + return false; + } + + return enabled.value; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class ColorGradingRenderer : PostProcessEffectRenderer + { + enum Pass + { + LutGenLDRFromScratch, + LutGenLDR, + LutGenHDR2D + } + + Texture2D m_GradingCurves; + readonly Color[] m_Pixels = new Color[Spline.k_Precision * 2]; // Avoids GC stress + + RenderTexture m_InternalLdrLut; + RenderTexture m_InternalLogLut; + const int k_Lut2DSize = 32; + const int k_Lut3DSize = 33; + + readonly HableCurve m_HableCurve = new HableCurve(); + + public override void Render(PostProcessRenderContext context) + { + var gradingMode = settings.gradingMode.value; + var supportComputeTex3D = SystemInfo.supports3DRenderTextures + && SystemInfo.supportsComputeShaders + && context.resources.computeShaders.lut3DBaker != null + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLCore + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES3; + + if (gradingMode == GradingMode.External) + RenderExternalPipeline3D(context); + else if (gradingMode == GradingMode.HighDefinitionRange && supportComputeTex3D) + RenderHDRPipeline3D(context); + else if (gradingMode == GradingMode.HighDefinitionRange) + RenderHDRPipeline2D(context); + else + RenderLDRPipeline2D(context); + } + + // Do color grading using an externally authored 3D lut; it requires Texture3D support and + // compute shaders in case blending is required - Desktop / Consoles / Some high-end mobiles + void RenderExternalPipeline3D(PostProcessRenderContext context) + { + var lut = settings.externalLut.value; + + if (lut == null) + return; + + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); + uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); + uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + context.logLut = lut; + } + + // HDR color pipeline is rendered to a 3D lut; it requires Texture3D & compute shaders + // support - Desktop / Consoles / Some high-end mobiles + // TODO: Use ShaderIDs for compute once the compatible APIs go in + void RenderHDRPipeline3D(PostProcessRenderContext context) + { + // Unfortunately because AnimationCurve doesn't implement GetHashCode and we don't have + // any reliable way to figure out if a curve data is different from another one we can't + // skip regenerating the Lut if nothing has changed. So it has to be done on every + // frame... + // It's not a very expensive operation anyway (we're talking about filling a 33x33x33 + // Lut on the GPU) but every little thing helps, especially on mobile. + { + CheckInternalLogLut(); + + // Lut setup + var compute = context.resources.computeShaders.lut3DBaker; + int kernel = 0; + + switch (settings.tonemapper.value) + { + case Tonemapper.None: + kernel = compute.FindKernel("KGenLut3D_NoTonemap"); + break; + case Tonemapper.Neutral: + kernel = compute.FindKernel("KGenLut3D_NeutralTonemap"); + break; + case Tonemapper.ACES: + kernel = compute.FindKernel("KGenLut3D_AcesTonemap"); + break; + case Tonemapper.Custom: + kernel = compute.FindKernel("KGenLut3D_CustomTonemap"); + break; + } + + var cmd = context.command; + cmd.SetComputeTextureParam(compute, kernel, "_Output", m_InternalLogLut); + cmd.SetComputeVectorParam(compute, "_Size", new Vector4(k_Lut3DSize, 1f / (k_Lut3DSize - 1f), 0f, 0f)); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + cmd.SetComputeVectorParam(compute, "_ColorBalance", colorBalance); + cmd.SetComputeVectorParam(compute, "_ColorFilter", settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + cmd.SetComputeVectorParam(compute, "_HueSatCon", new Vector4(hue, sat, con, 0f)); + + var channelMixerR = new Vector4(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn, 0f); + var channelMixerG = new Vector4(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn, 0f); + var channelMixerB = new Vector4(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn, 0f); + cmd.SetComputeVectorParam(compute, "_ChannelMixerRed", channelMixerR / 100f); // Remap to [-2;2] + cmd.SetComputeVectorParam(compute, "_ChannelMixerGreen", channelMixerG / 100f); + cmd.SetComputeVectorParam(compute, "_ChannelMixerBlue", channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); + var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); + cmd.SetComputeVectorParam(compute, "_Lift", new Vector4(lift.x, lift.y, lift.z, 0f)); + cmd.SetComputeVectorParam(compute, "_InvGamma", new Vector4(invgamma.x, invgamma.y, invgamma.z, 0f)); + cmd.SetComputeVectorParam(compute, "_Gain", new Vector4(gain.x, gain.y, gain.z, 0f)); + + cmd.SetComputeTextureParam(compute, kernel, "_Curves", GetCurveTexture(true)); + + if (settings.tonemapper.value == Tonemapper.Custom) + { + m_HableCurve.Init( + settings.toneCurveToeStrength.value, + settings.toneCurveToeLength.value, + settings.toneCurveShoulderStrength.value, + settings.toneCurveShoulderLength.value, + settings.toneCurveShoulderAngle.value, + settings.toneCurveGamma.value + ); + + cmd.SetComputeVectorParam(compute, "_CustomToneCurve", m_HableCurve.uniforms.curve); + cmd.SetComputeVectorParam(compute, "_ToeSegmentA", m_HableCurve.uniforms.toeSegmentA); + cmd.SetComputeVectorParam(compute, "_ToeSegmentB", m_HableCurve.uniforms.toeSegmentB); + cmd.SetComputeVectorParam(compute, "_MidSegmentA", m_HableCurve.uniforms.midSegmentA); + cmd.SetComputeVectorParam(compute, "_MidSegmentB", m_HableCurve.uniforms.midSegmentB); + cmd.SetComputeVectorParam(compute, "_ShoSegmentA", m_HableCurve.uniforms.shoSegmentA); + cmd.SetComputeVectorParam(compute, "_ShoSegmentB", m_HableCurve.uniforms.shoSegmentB); + } + + // Generate the lut + context.command.BeginSample("HdrColorGradingLut3D"); + int groupSize = Mathf.CeilToInt(k_Lut3DSize / 4f); + cmd.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); + context.command.EndSample("HdrColorGradingLut3D"); + } + + var lut = m_InternalLogLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); + uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); + uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + + context.logLut = lut; + } + + // HDR color pipeline is rendered to a 2D strip lut (works on HDR platforms without compute + // and 3D texture support). Precision is sliiiiiiightly lower than when using a 3D texture + // LUT (33^3 -> 32^3) but most of the time it's imperceptible. + void RenderHDRPipeline2D(PostProcessRenderContext context) + { + // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame + { + CheckInternalStripLut(); + + // Lut setup + var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); + lutSheet.ClearKeywords(); + + lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); + lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); + + var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); + var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); + var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); + var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); + lutSheet.properties.SetVector(ShaderIDs.Lift, lift); + lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); + lutSheet.properties.SetVector(ShaderIDs.Gain, gain); + + lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(true)); + + var tonemapper = settings.tonemapper.value; + if (tonemapper == Tonemapper.Custom) + { + lutSheet.EnableKeyword("TONEMAPPING_CUSTOM"); + + m_HableCurve.Init( + settings.toneCurveToeStrength.value, + settings.toneCurveToeLength.value, + settings.toneCurveShoulderStrength.value, + settings.toneCurveShoulderLength.value, + settings.toneCurveShoulderAngle.value, + settings.toneCurveGamma.value + ); + + lutSheet.properties.SetVector(ShaderIDs.CustomToneCurve, m_HableCurve.uniforms.curve); + lutSheet.properties.SetVector(ShaderIDs.ToeSegmentA, m_HableCurve.uniforms.toeSegmentA); + lutSheet.properties.SetVector(ShaderIDs.ToeSegmentB, m_HableCurve.uniforms.toeSegmentB); + lutSheet.properties.SetVector(ShaderIDs.MidSegmentA, m_HableCurve.uniforms.midSegmentA); + lutSheet.properties.SetVector(ShaderIDs.MidSegmentB, m_HableCurve.uniforms.midSegmentB); + lutSheet.properties.SetVector(ShaderIDs.ShoSegmentA, m_HableCurve.uniforms.shoSegmentA); + lutSheet.properties.SetVector(ShaderIDs.ShoSegmentB, m_HableCurve.uniforms.shoSegmentB); + } + else if (tonemapper == Tonemapper.ACES) + lutSheet.EnableKeyword("TONEMAPPING_ACES"); + else if (tonemapper == Tonemapper.Neutral) + lutSheet.EnableKeyword("TONEMAPPING_NEUTRAL"); + + // Generate the lut + context.command.BeginSample("HdrColorGradingLut2D"); + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenHDR2D); + context.command.EndSample("HdrColorGradingLut2D"); + } + + var lut = m_InternalLdrLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_2D"); + uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); + uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + } + + // LDR color pipeline is rendered to a 2D strip lut (works on every platform) + void RenderLDRPipeline2D(PostProcessRenderContext context) + { + // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame + { + CheckInternalStripLut(); + + // Lut setup + var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); + lutSheet.ClearKeywords(); + + lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); + lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); + + var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); + var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); + var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value); + var gain = ColorUtilities.ColorToGain(settings.gain.value); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value); + lutSheet.properties.SetVector(ShaderIDs.Lift, lift); + lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); + lutSheet.properties.SetVector(ShaderIDs.Gain, gain); + + lutSheet.properties.SetFloat(ShaderIDs.Brightness, (settings.brightness.value + 100f) / 100f); + lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(false)); + + // Generate the lut + context.command.BeginSample("LdrColorGradingLut2D"); + + var userLut = settings.ldrLut.value; + if (userLut == null || userLut.width != userLut.height * userLut.height) + { + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDRFromScratch); + } + else + { + lutSheet.properties.SetVector(ShaderIDs.UserLut2D_Params, new Vector4(1f / userLut.width, 1f / userLut.height, userLut.height - 1f, settings.ldrLutContribution)); + context.command.BlitFullscreenTriangle(userLut, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDR); + } + + context.command.EndSample("LdrColorGradingLut2D"); + } + + var lut = m_InternalLdrLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_LDR_2D"); + uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); + uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); + } + + void CheckInternalLogLut() + { + // Check internal lut state, (re)create it if needed + if (m_InternalLogLut == null || !m_InternalLogLut.IsCreated()) + { + RuntimeUtilities.Destroy(m_InternalLogLut); + + var format = GetLutFormat(); + m_InternalLogLut = new RenderTexture(k_Lut3DSize, k_Lut3DSize, 0, format, RenderTextureReadWrite.Linear) + { + name = "Color Grading Log Lut", + dimension = TextureDimension.Tex3D, + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + enableRandomWrite = true, + volumeDepth = k_Lut3DSize, + autoGenerateMips = false, + useMipMap = false + }; + m_InternalLogLut.Create(); + } + } + + void CheckInternalStripLut() + { + // Check internal lut state, (re)create it if needed + if (m_InternalLdrLut == null || !m_InternalLdrLut.IsCreated()) + { + RuntimeUtilities.Destroy(m_InternalLdrLut); + + var format = GetLutFormat(); + m_InternalLdrLut = new RenderTexture(k_Lut2DSize * k_Lut2DSize, k_Lut2DSize, 0, format, RenderTextureReadWrite.Linear) + { + name = "Color Grading Strip Lut", + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + autoGenerateMips = false, + useMipMap = false + }; + m_InternalLdrLut.Create(); + } + } + + Texture2D GetCurveTexture(bool hdr) + { + if (m_GradingCurves == null) + { + var format = GetCurveFormat(); + m_GradingCurves = new Texture2D(Spline.k_Precision, 2, format, false, true) + { + name = "Internal Curves Texture", + hideFlags = HideFlags.DontSave, + anisoLevel = 0, + wrapMode = TextureWrapMode.Clamp, + filterMode = FilterMode.Bilinear + }; + } + + var hueVsHueCurve = settings.hueVsHueCurve.value; + var hueVsSatCurve = settings.hueVsSatCurve.value; + var satVsSatCurve = settings.satVsSatCurve.value; + var lumVsSatCurve = settings.lumVsSatCurve.value; + var masterCurve = settings.masterCurve.value; + var redCurve = settings.redCurve.value; + var greenCurve = settings.greenCurve.value; + var blueCurve = settings.blueCurve.value; + + var pixels = m_Pixels; + + for (int i = 0; i < Spline.k_Precision; i++) + { + // Secondary/VS curves + float x = hueVsHueCurve.cachedData[i]; + float y = hueVsSatCurve.cachedData[i]; + float z = satVsSatCurve.cachedData[i]; + float w = lumVsSatCurve.cachedData[i]; + pixels[i] = new Color(x, y, z, w); + + // YRGB + if (!hdr) + { + float m = masterCurve.cachedData[i]; + float r = redCurve.cachedData[i]; + float g = greenCurve.cachedData[i]; + float b = blueCurve.cachedData[i]; + pixels[i + Spline.k_Precision] = new Color(r, g, b, m); + } + } + + m_GradingCurves.SetPixels(pixels); + m_GradingCurves.Apply(false, false); + + return m_GradingCurves; + } + + static bool IsRenderTextureFormatSupportedForLinearFiltering(RenderTextureFormat format) + { +#if UNITY_2023_2_OR_NEWER + var gFormat = GraphicsFormatUtility.GetGraphicsFormat(format, RenderTextureReadWrite.Linear); + return SystemInfo.IsFormatSupported(gFormat, GraphicsFormatUsage.Linear); +#elif UNITY_2019_1_OR_NEWER + var gFormat = GraphicsFormatUtility.GetGraphicsFormat(format, RenderTextureReadWrite.Linear); + return SystemInfo.IsFormatSupported(gFormat, FormatUsage.Linear); +#else + // No good/fast way to test it on pre-2019.1 + return format.IsSupported(); +#endif + } + + static RenderTextureFormat GetLutFormat() + { + // Use ARGBHalf if possible, fallback on ARGB2101010 and ARGB32 otherwise + var format = RenderTextureFormat.ARGBHalf; + + if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) + { + format = RenderTextureFormat.ARGB2101010; + + // Note that using a log lut in ARGB32 is a *very* bad idea but we need it for + // compatibility reasons (else if a platform doesn't support one of the previous + // format it'll output a black screen, or worse will segfault on the user). + if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) + format = RenderTextureFormat.ARGB32; + } + + return format; + } + + static TextureFormat GetCurveFormat() + { + // Use RGBAHalf if possible, fallback on ARGB32 otherwise + var format = TextureFormat.RGBAHalf; + + if (!SystemInfo.SupportsTextureFormat(format)) + format = TextureFormat.ARGB32; + + return format; + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_InternalLdrLut); + m_InternalLdrLut = null; + + RuntimeUtilities.Destroy(m_InternalLogLut); + m_InternalLogLut = null; + + RuntimeUtilities.Destroy(m_GradingCurves); + m_GradingCurves = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs.meta new file mode 100644 index 0000000..d5735f4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ColorGrading.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: adb84e30e02715445aeb9959894e3b4d +timeCreated: 1493024209 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs new file mode 100644 index 0000000..0ecd9f7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs @@ -0,0 +1,267 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Convolution kernel size for the Depth of Field effect. + /// + public enum KernelSize + { + /// + /// Small filter. + /// + Small, + + /// + /// Medium filter. + /// + Medium, + + /// + /// Large filter. + /// + Large, + + /// + /// Very large filter. + /// + VeryLarge + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class KernelSizeParameter : ParameterOverride { } + + /// + /// This class holds settings for the Depth of Field effect. + /// + [Serializable] + [PostProcess(typeof(DepthOfFieldRenderer), "Unity/Depth of Field", false)] + public sealed class DepthOfField : PostProcessEffectSettings + { + /// + /// The distance to the point of focus. + /// + [Min(0.1f), Tooltip("Distance to the point of focus.")] + public FloatParameter focusDistance = new FloatParameter { value = 10f }; + + /// + /// The ratio of the aperture (known as f-stop or f-number). The smaller the value is, the + /// shallower the depth of field is. + /// + [Range(0.05f, 32f), Tooltip("Ratio of aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is.")] + public FloatParameter aperture = new FloatParameter { value = 5.6f }; + + /// + /// The distance between the lens and the film. The larger the value is, the shallower the + /// depth of field is. + /// + [Range(1f, 300f), Tooltip("Distance between the lens and the film. The larger the value is, the shallower the depth of field is.")] + public FloatParameter focalLength = new FloatParameter { value = 50f }; + + /// + /// The convolution kernel size of the bokeh filter, which determines the maximum radius of + /// bokeh. It also affects the performance (the larger the kernel is, the longer the GPU + /// time is required). + /// + [DisplayName("Max Blur Size"), Tooltip("Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects performances (the larger the kernel is, the longer the GPU time is required).")] + public KernelSizeParameter kernelSize = new KernelSizeParameter { value = KernelSize.Medium }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && SystemInfo.graphicsShaderLevel >= 35; + } + } + + [UnityEngine.Scripting.Preserve] + // TODO: Doesn't play nice with alpha propagation, see if it can be fixed without killing performances + internal sealed class DepthOfFieldRenderer : PostProcessEffectRenderer + { + enum Pass + { + CoCCalculation, + CoCTemporalFilter, + DownsampleAndPrefilter, + BokehSmallKernel, + BokehMediumKernel, + BokehLargeKernel, + BokehVeryLargeKernel, + PostFilter, + Combine, + DebugOverlay + } + + // Ping-pong between two history textures as we can't read & write the same target in the + // same pass + const int k_NumEyes = 2; + const int k_NumCoCHistoryTextures = 2; + readonly RenderTexture[][] m_CoCHistoryTextures = new RenderTexture[k_NumEyes][]; + int[] m_HistoryPingPong = new int[k_NumEyes]; + + // Height of the 35mm full-frame format (36mm x 24mm) + // TODO: Should be set by a physical camera + const float k_FilmHeight = 0.024f; + + public DepthOfFieldRenderer() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + m_CoCHistoryTextures[eye] = new RenderTexture[k_NumCoCHistoryTextures]; + m_HistoryPingPong[eye] = 0; + } + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + RenderTextureFormat SelectFormat(RenderTextureFormat primary, RenderTextureFormat secondary) + { + if (primary.IsSupported()) + return primary; + + if (secondary.IsSupported()) + return secondary; + + return RenderTextureFormat.Default; + } + + float CalculateMaxCoCRadius(int screenHeight) + { + // Estimate the allowable maximum radius of CoC from the kernel + // size (the equation below was empirically derived). + float radiusInPixels = (float)settings.kernelSize.value * 4f + 6f; + + // Applying a 5% limit to the CoC radius to keep the size of + // TileMax/NeighborMax small enough. + return Mathf.Min(0.05f, radiusInPixels / screenHeight); + } + + RenderTexture CheckHistory(int eye, int id, PostProcessRenderContext context, RenderTextureFormat format) + { + var rt = m_CoCHistoryTextures[eye][id]; + + if (m_ResetHistory || rt == null || !rt.IsCreated() || rt.width != context.width || rt.height != context.height) + { + RenderTexture.ReleaseTemporary(rt); + + rt = context.GetScreenSpaceTemporaryRT(0, format, RenderTextureReadWrite.Linear); + rt.name = "CoC History, Eye: " + eye + ", ID: " + id; + rt.filterMode = FilterMode.Bilinear; + rt.Create(); + m_CoCHistoryTextures[eye][id] = rt; + } + + return rt; + } + + public override void Render(PostProcessRenderContext context) + { + // The coc is stored in alpha so we need a 4 channels target. Note that using ARGB32 + // will result in a very weak near-blur. + var colorFormat = context.camera.allowHDR ? RenderTextureFormat.ARGBHalf : RenderTextureFormat.ARGB32; + var cocFormat = SelectFormat(RenderTextureFormat.R8, RenderTextureFormat.RHalf); + + // Material setup + float scaledFilmHeight = k_FilmHeight * (context.height / 1080f); + var f = settings.focalLength.value / 1000f; + var s1 = Mathf.Max(settings.focusDistance.value, f); + var aspect = (float)context.screenWidth / (float)context.screenHeight; + var coeff = f * f / (settings.aperture.value * (s1 - f) * scaledFilmHeight * 2f); + var maxCoC = CalculateMaxCoCRadius(context.screenHeight); + + var sheet = context.propertySheets.Get(context.resources.shaders.depthOfField); + sheet.properties.Clear(); + sheet.properties.SetFloat(ShaderIDs.Distance, s1); + sheet.properties.SetFloat(ShaderIDs.LensCoeff, coeff); + sheet.properties.SetFloat(ShaderIDs.MaxCoC, maxCoC); + sheet.properties.SetFloat(ShaderIDs.RcpMaxCoC, 1f / maxCoC); + sheet.properties.SetFloat(ShaderIDs.RcpAspect, 1f / aspect); + + var cmd = context.command; + cmd.BeginSample("DepthOfField"); + + // CoC calculation pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.CoCTex, 0, cocFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, ShaderIDs.CoCTex, sheet, (int)Pass.CoCCalculation); + + // CoC temporal filter pass when TAA is enabled + if (context.IsTemporalAntialiasingActive()) + { + float motionBlending = context.temporalAntialiasing.motionBlending; + float blend = m_ResetHistory ? 0f : motionBlending; // Handles first frame blending + var jitter = context.temporalAntialiasing.jitter; + + sheet.properties.SetVector(ShaderIDs.TaaParams, new Vector3(jitter.x, jitter.y, blend)); + } + else if (context.IsSuperResolutionActive()) + { + var jitter = context.superResolution.jitter; + sheet.properties.SetVector(ShaderIDs.TaaParams, new Vector3(jitter.x, jitter.y, m_ResetHistory ? 0f : 0.85f)); + } + + if (context.IsTemporalAntialiasingActive() || context.IsSuperResolutionActive()) + { + int pp = m_HistoryPingPong[context.xrActiveEye]; + var historyRead = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); + var historyWrite = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); + m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; + + cmd.BlitFullscreenTriangle(historyRead, historyWrite, sheet, (int)Pass.CoCTemporalFilter); + cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); + cmd.SetGlobalTexture(ShaderIDs.CoCTex, historyWrite); + } + + // Downsampling and prefiltering pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTex, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.DownsampleAndPrefilter); + + // Bokeh simulation pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTemp, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); + cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTex, ShaderIDs.DepthOfFieldTemp, sheet, (int)Pass.BokehSmallKernel + (int)settings.kernelSize.value); + + // Postfilter pass + cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTemp, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.PostFilter); + cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTemp); + + // Debug overlay pass + if (context.IsDebugOverlayEnabled(DebugOverlay.DepthOfField)) + context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlay); + + // Combine pass + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Combine); + cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTex); + + if (!context.IsTemporalAntialiasingActive() && !context.IsSuperResolutionActive()) + cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); + + cmd.EndSample("DepthOfField"); + + m_ResetHistory = false; + } + + public override void Release() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + for (int i = 0; i < m_CoCHistoryTextures[eye].Length; i++) + { + RenderTexture.ReleaseTemporary(m_CoCHistoryTextures[eye][i]); + m_CoCHistoryTextures[eye][i] = null; + } + m_HistoryPingPong[eye] = 0; + } + + ResetHistory(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs.meta new file mode 100644 index 0000000..f77b54a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/DepthOfField.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 556797029e73b2347956b6579e77e05b +timeCreated: 1491828776 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs new file mode 100644 index 0000000..f4618fe --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs @@ -0,0 +1,42 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + [UnityEngine.Scripting.Preserve] + [Serializable] + internal sealed class Dithering + { + int m_NoiseTextureIndex = 0; + System.Random m_Random = new System.Random(1234); + + internal void Render(PostProcessRenderContext context) + { + var blueNoise = context.resources.blueNoise64; + Assert.IsTrue(blueNoise != null && blueNoise.Length > 0); + +#if POSTFX_DEBUG_STATIC_DITHERING // Used by QA for automated testing + m_NoiseTextureIndex = 0; + float rndOffsetX = 0f; + float rndOffsetY = 0f; +#else + if (++m_NoiseTextureIndex >= blueNoise.Length) + m_NoiseTextureIndex = 0; + + float rndOffsetX = (float)m_Random.NextDouble(); + float rndOffsetY = (float)m_Random.NextDouble(); +#endif + + var noiseTex = blueNoise[m_NoiseTextureIndex]; + var uberSheet = context.uberSheet; + + uberSheet.properties.SetTexture(ShaderIDs.DitheringTex, noiseTex); + uberSheet.properties.SetVector(ShaderIDs.Dithering_Coords, new Vector4( + (float)context.screenWidth / (float)noiseTex.width, + (float)context.screenHeight / (float)noiseTex.height, + rndOffsetX, + rndOffsetY + )); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs.meta new file mode 100644 index 0000000..952e482 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Dithering.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 75066207954ccc44aa9d134af49040de +timeCreated: 1490188285 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs new file mode 100644 index 0000000..640acdb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs @@ -0,0 +1,28 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Fast Approximate Anti-aliasing (FXAA) effect. + /// + [UnityEngine.Scripting.Preserve] + [Serializable] + public sealed class FastApproximateAntialiasing + { + /// + /// If true, it will use a slightly lower quality but faster variant of FXAA. Highly + /// recommended on mobile platforms. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performances by lowering the effect quality. This setting is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public bool fastMode = false; + + /// + /// Set this to true if you need to keep the alpha channel untouched. Else it will + /// use this channel to store internal data used to speed up and improve visual quality. + /// + [Tooltip("Keep alpha channel. This will slightly lower the effect quality but allows rendering against a transparent background.\nThis setting has no effect if the camera render target has no alpha channel.")] + public bool keepAlpha = false; + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta new file mode 100644 index 0000000..00bef62 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: efd3e892ff9d0b94c94e039ad5619e5d +timeCreated: 1493489448 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs new file mode 100644 index 0000000..2d1e953 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs @@ -0,0 +1,53 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Fog effect with the deferred rendering path. + /// + [UnityEngine.Scripting.Preserve] + [Serializable] + public sealed class Fog + { + /// + /// If true, enables the internal deferred fog pass. Actual fog settings should be + /// set in the Lighting panel. + /// + [Tooltip("Enables the internal deferred fog pass. Actual fog settings should be set in the Lighting panel.")] + public bool enabled = true; + + /// + /// Should the fog affect the skybox? + /// + [Tooltip("Mark true for the fog to ignore the skybox")] + public bool excludeSkybox = true; + + internal DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + internal bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled + && RenderSettings.fog + && !RuntimeUtilities.scriptableRenderPipelineActive + && context.resources.shaders.deferredFog + && context.resources.shaders.deferredFog.isSupported + && context.camera.actualRenderingPath == RenderingPath.DeferredShading; // In forward fog is already done at shader level + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.deferredFog); + sheet.ClearKeywords(); + + var fogColor = RuntimeUtilities.isLinearColorSpace ? RenderSettings.fogColor.linear : RenderSettings.fogColor; + sheet.properties.SetVector(ShaderIDs.FogColor, fogColor); + sheet.properties.SetVector(ShaderIDs.FogParams, new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance)); + + var cmd = context.command; + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, excludeSkybox ? 1 : 0, false, null, true); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs.meta new file mode 100644 index 0000000..45dbd91 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Fog.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 62e2b920ea5fcaa4982e7fc50bf690a8 +timeCreated: 1498381577 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs new file mode 100644 index 0000000..edd6593 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs @@ -0,0 +1,127 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Grain effect. + /// + [Serializable] + [PostProcess(typeof(GrainRenderer), "Unity/Grain")] + public sealed class Grain : PostProcessEffectSettings + { + /// + /// Set to true to render colored grain, false for grayscale grain. + /// + [Tooltip("Enable the use of colored grain.")] + public BoolParameter colored = new BoolParameter { value = true }; + + /// + /// The strength (or visibility) of the Grain effect on screen. Higher values mean more visible grain. + /// + [Range(0f, 1f), Tooltip("Grain strength. Higher values mean more visible grain.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// The size of grain particle on screen. + /// + [Range(0.3f, 3f), Tooltip("Grain particle size.")] + public FloatParameter size = new FloatParameter { value = 1f }; + + /// + /// Controls the noisiness response curve based on scene luminance. Lower values mean less noise in dark areas. + /// + [Range(0f, 1f), DisplayName("Luminance Contribution"), Tooltip("Controls the noise response curve based on scene luminance. Lower values mean less noise in dark areas.")] + public FloatParameter lumContrib = new FloatParameter { value = 0.8f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + +#if POSTFX_DEBUG_STATIC_GRAIN +#pragma warning disable 414 +#endif + [UnityEngine.Scripting.Preserve] + internal sealed class GrainRenderer : PostProcessEffectRenderer + { + RenderTexture m_GrainLookupRT; + + const int k_SampleCount = 1024; + int m_SampleIndex; + + public override void Render(PostProcessRenderContext context) + { +#if POSTFX_DEBUG_STATIC_GRAIN + // Chosen by a fair dice roll + float time = 0.4f; + float rndOffsetX = 0f; + float rndOffsetY = 0f; +#else + float time = Time.realtimeSinceStartup; + float rndOffsetX = HaltonSeq.Get(m_SampleIndex & 1023, 2); + float rndOffsetY = HaltonSeq.Get(m_SampleIndex & 1023, 3); + + if (++m_SampleIndex >= k_SampleCount) + m_SampleIndex = 0; +#endif + + // Generate the grain lut for the current frame first + if (m_GrainLookupRT == null || !m_GrainLookupRT.IsCreated()) + { + RuntimeUtilities.Destroy(m_GrainLookupRT); + + m_GrainLookupRT = new RenderTexture(128, 128, 0, GetLookupFormat()) + { + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Repeat, + anisoLevel = 0, + name = "Grain Lookup Texture" + }; + + m_GrainLookupRT.Create(); + } + + var sheet = context.propertySheets.Get(context.resources.shaders.grainBaker); + sheet.properties.Clear(); + sheet.properties.SetFloat(ShaderIDs.Phase, time % 10f); + sheet.properties.SetVector(ShaderIDs.GrainNoiseParameters, new Vector3(12.9898f, 78.233f, 43758.5453f)); + + context.command.BeginSample("GrainLookup"); + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_GrainLookupRT, sheet, settings.colored.value ? 1 : 0); + context.command.EndSample("GrainLookup"); + + // Send everything to the uber shader + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("GRAIN"); + uberSheet.properties.SetTexture(ShaderIDs.GrainTex, m_GrainLookupRT); + uberSheet.properties.SetVector(ShaderIDs.Grain_Params1, new Vector2(settings.lumContrib.value, settings.intensity.value * 20f)); + uberSheet.properties.SetVector(ShaderIDs.Grain_Params2, new Vector4((float)context.width / (float)m_GrainLookupRT.width / settings.size.value, (float)context.height / (float)m_GrainLookupRT.height / settings.size.value, rndOffsetX, rndOffsetY)); + } + + RenderTextureFormat GetLookupFormat() + { + if (RenderTextureFormat.ARGBHalf.IsSupported()) + return RenderTextureFormat.ARGBHalf; + + return RenderTextureFormat.ARGB32; + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_GrainLookupRT); + m_GrainLookupRT = null; + m_SampleIndex = 0; + } + } + +#if POSTFX_DEBUG_STATIC_GRAIN +#pragma warning restore 414 +#endif +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs.meta new file mode 100644 index 0000000..c7c70fa --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Grain.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d65e486e4de6e5448a8fbb43dc8756a0 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs new file mode 100644 index 0000000..421a97e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs @@ -0,0 +1,82 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Lens Distortion effect. + /// + [Serializable] + [PostProcess(typeof(LensDistortionRenderer), "Unity/Lens Distortion")] + public sealed class LensDistortion : PostProcessEffectSettings + { + /// + /// The total amount of distortion to apply. + /// + [Range(-100f, 100f), Tooltip("Total distortion amount.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// Multiplies the intensity value on the x-axis. Setting this value to 0 will disable distortion on this axis. + /// + [Range(0f, 1f), DisplayName("X Multiplier"), Tooltip("Intensity multiplier on the x-axis. Set it to 0 to disable distortion on this axis.")] + public FloatParameter intensityX = new FloatParameter { value = 1f }; + + /// + /// Multiplies the intensity value on the y-axis. Setting this value to 0 will disable distortion on this axis. + /// + [Range(0f, 1f), DisplayName("Y Multiplier"), Tooltip("Intensity multiplier on the y-axis. Set it to 0 to disable distortion on this axis.")] + public FloatParameter intensityY = new FloatParameter { value = 1f }; + + /// + /// The center point for the distortion (x-axis). + /// + [Space] + [Range(-1f, 1f), Tooltip("Distortion center point (x-axis).")] + public FloatParameter centerX = new FloatParameter { value = 0f }; + + /// + /// The center point for the distortion (y-axis). + /// + [Range(-1f, 1f), Tooltip("Distortion center point (y-axis).")] + public FloatParameter centerY = new FloatParameter { value = 0f }; + + /// + /// A global screen scaling factor. + /// + [Space] + [Range(0.01f, 5f), Tooltip("Global screen scaling.")] + public FloatParameter scale = new FloatParameter { value = 1f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && !Mathf.Approximately(intensity, 0f) + && (intensityX > 0f || intensityY > 0f) + && !context.stereoActive; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class LensDistortionRenderer : PostProcessEffectRenderer + { + public override void Render(PostProcessRenderContext context) + { + var sheet = context.uberSheet; + + float amount = 1.6f * Math.Max(Mathf.Abs(settings.intensity.value), 1f); + float theta = Mathf.Deg2Rad * Math.Min(160f, amount); + float sigma = 2f * Mathf.Tan(theta * 0.5f); + var p0 = new Vector4(settings.centerX.value, settings.centerY.value, Mathf.Max(settings.intensityX.value, 1e-4f), Mathf.Max(settings.intensityY.value, 1e-4f)); + var p1 = new Vector4(settings.intensity.value >= 0f ? theta : 1f / theta, sigma, 1f / settings.scale.value, settings.intensity.value); + + sheet.EnableKeyword("DISTORT"); + sheet.properties.SetVector(ShaderIDs.Distortion_CenterScale, p0); + sheet.properties.SetVector(ShaderIDs.Distortion_Amount, p1); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs.meta new file mode 100644 index 0000000..bb6b529 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/LensDistortion.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9b77c5407dc277943b591ade9e6b18c5 +timeCreated: 1519737209 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs new file mode 100644 index 0000000..46cf8e8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs @@ -0,0 +1,157 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Motion Blur effect. + /// + [Serializable] + [PostProcess(typeof(MotionBlurRenderer), "Unity/Motion Blur", false)] + public sealed class MotionBlur : PostProcessEffectSettings + { + /// + /// The angle of the rotary shutter. Larger values give longer exposure therefore a stronger + /// blur effect. + /// + [Range(0f, 360f), Tooltip("The angle of rotary shutter. Larger values give longer exposure.")] + public FloatParameter shutterAngle = new FloatParameter { value = 270f }; + + /// + /// The amount of sample points, which affects quality and performances. + /// + [Range(4, 32), Tooltip("The amount of sample points. This affects quality and performance.")] + public IntParameter sampleCount = new IntParameter { value = 10 }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && shutterAngle.value > 0f +#if UNITY_EDITOR + // Don't render motion blur preview when the editor is not playing as it can in some + // cases results in ugly artifacts (i.e. when resizing the game view). + && Application.isPlaying +#endif + && SystemInfo.supportsMotionVectors + && RenderTextureFormat.RGHalf.IsSupported() + && !context.stereoActive; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class MotionBlurRenderer : PostProcessEffectRenderer + { + enum Pass + { + VelocitySetup, + TileMax1, + TileMax2, + TileMaxV, + NeighborMax, + Reconstruction + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + private void CreateTemporaryRT(PostProcessRenderContext context, int nameID, int width, int height, RenderTextureFormat RTFormat) + { + var cmd = context.command; + var rtDesc = context.GetDescriptor(0, RTFormat, RenderTextureReadWrite.Linear); + rtDesc.width = width; + rtDesc.height = height; +#if UNITY_2019_1_OR_NEWER + cmd.GetTemporaryRT(nameID, rtDesc, FilterMode.Point); +#elif UNITY_2017_3_OR_NEWER + cmd.GetTemporaryRT(nameID, rtDesc.width, rtDesc.height, rtDesc.depthBufferBits, FilterMode.Point, rtDesc.colorFormat, RenderTextureReadWrite.Linear, rtDesc.msaaSamples, rtDesc.enableRandomWrite, rtDesc.memoryless, RuntimeUtilities.IsDynamicResolutionEnabled(context.camera)); +#else + cmd.GetTemporaryRT(nameID, rtDesc.width, rtDesc.height, rtDesc.depthBufferBits, FilterMode.Point, rtDesc.colorFormat, RenderTextureReadWrite.Linear, rtDesc.msaaSamples, rtDesc.enableRandomWrite, rtDesc.memoryless); +#endif + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + + if (m_ResetHistory) + { + cmd.BlitFullscreenTriangle(context.source, context.destination); + m_ResetHistory = false; + return; + } + + const float kMaxBlurRadius = 5f; + var vectorRTFormat = RenderTextureFormat.RGHalf; + var packedRTFormat = RenderTextureFormat.ARGB2101010.IsSupported() + ? RenderTextureFormat.ARGB2101010 + : RenderTextureFormat.ARGB32; + + var sheet = context.propertySheets.Get(context.resources.shaders.motionBlur); + cmd.BeginSample("MotionBlur"); + + // Calculate the maximum blur radius in pixels. + int maxBlurPixels = (int)(kMaxBlurRadius * context.height / 100); + + // Calculate the TileMax size. + // It should be a multiple of 8 and larger than maxBlur. + int tileSize = ((maxBlurPixels - 1) / 8 + 1) * 8; + + // Pass 1 - Velocity/depth packing + var velocityScale = settings.shutterAngle / 360f; + sheet.properties.SetFloat(ShaderIDs.VelocityScale, velocityScale); + sheet.properties.SetFloat(ShaderIDs.MaxBlurRadius, maxBlurPixels); + sheet.properties.SetFloat(ShaderIDs.RcpMaxBlurRadius, 1f / maxBlurPixels); + + int vbuffer = ShaderIDs.VelocityTex; + CreateTemporaryRT(context, vbuffer, context.width, context.height, packedRTFormat); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, vbuffer, sheet, (int)Pass.VelocitySetup); + + // Pass 2 - First TileMax filter (1/2 downsize) + int tile2 = ShaderIDs.Tile2RT; + CreateTemporaryRT(context, tile2, context.width / 2, context.height / 2, vectorRTFormat); + cmd.BlitFullscreenTriangle(vbuffer, tile2, sheet, (int)Pass.TileMax1); + + // Pass 3 - Second TileMax filter (1/2 downsize) + int tile4 = ShaderIDs.Tile4RT; + CreateTemporaryRT(context, tile4, context.width / 4, context.height / 4, vectorRTFormat); + cmd.BlitFullscreenTriangle(tile2, tile4, sheet, (int)Pass.TileMax2); + cmd.ReleaseTemporaryRT(tile2); + + // Pass 4 - Third TileMax filter (1/2 downsize) + int tile8 = ShaderIDs.Tile8RT; + CreateTemporaryRT(context, tile8, context.width / 8, context.height / 8, vectorRTFormat); + cmd.BlitFullscreenTriangle(tile4, tile8, sheet, (int)Pass.TileMax2); + cmd.ReleaseTemporaryRT(tile4); + + // Pass 5 - Fourth TileMax filter (reduce to tileSize) + var tileMaxOffs = (tileSize / 8f - 1f) * -0.5f * Vector2.one; + sheet.properties.SetVector(ShaderIDs.TileMaxOffs, tileMaxOffs); + sheet.properties.SetFloat(ShaderIDs.TileMaxLoop, (int)(tileSize / 8f)); + + int tile = ShaderIDs.TileVRT; + CreateTemporaryRT(context, tile, context.width / tileSize, context.height / tileSize, vectorRTFormat); + cmd.BlitFullscreenTriangle(tile8, tile, sheet, (int)Pass.TileMaxV); + cmd.ReleaseTemporaryRT(tile8); + + // Pass 6 - NeighborMax filter + int neighborMax = ShaderIDs.NeighborMaxTex; + CreateTemporaryRT(context, neighborMax, context.width / tileSize, context.height / tileSize, vectorRTFormat); + cmd.BlitFullscreenTriangle(tile, neighborMax, sheet, (int)Pass.NeighborMax); + cmd.ReleaseTemporaryRT(tile); + + // Pass 7 - Reconstruction pass + sheet.properties.SetFloat(ShaderIDs.LoopCount, Mathf.Clamp(settings.sampleCount / 2, 1, 64)); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Reconstruction); + + cmd.ReleaseTemporaryRT(vbuffer); + cmd.ReleaseTemporaryRT(neighborMax); + cmd.EndSample("MotionBlur"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs.meta new file mode 100644 index 0000000..c5ba8cd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MotionBlur.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b94fcd11afffcb142908bfcb1e261fba +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs new file mode 100644 index 0000000..a1af379 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs @@ -0,0 +1,567 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Multi-scale volumetric obscurance + // TODO: Fix VR support + + [UnityEngine.Scripting.Preserve] + [Serializable] + internal sealed class MultiScaleVO : IAmbientOcclusionMethod + { + internal enum MipLevel { Original, L1, L2, L3, L4, L5, L6 } + + enum Pass + { + DepthCopy, + CompositionDeferred, + CompositionForward, + DebugOverlay + } + + // The arrays below are reused between frames to reduce GC allocation. + readonly float[] m_SampleThickness = + { + Mathf.Sqrt(1f - 0.2f * 0.2f), + Mathf.Sqrt(1f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.2f * 0.2f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.6f * 0.6f - 0.6f * 0.6f) + }; + + readonly float[] m_InvThicknessTable = new float[12]; + readonly float[] m_SampleWeightTable = new float[12]; + + readonly int[] m_Widths = new int[7]; + readonly int[] m_Heights = new int[7]; + // Scaled dimensions used with dynamic resolution + readonly int[] m_ScaledWidths = new int[7]; + readonly int[] m_ScaledHeights = new int[7]; + + AmbientOcclusion m_Settings; + PropertySheet m_PropertySheet; + PostProcessResources m_Resources; + + // Can't use a temporary because we need to share it between cmdbuffers - also fixes a weird + // command buffer warning + RenderTexture m_AmbientOnlyAO; + + readonly RenderTargetIdentifier[] m_MRT = + { + BuiltinRenderTextureType.GBuffer0, // Albedo, Occ + BuiltinRenderTextureType.CameraTarget // Ambient + }; + + public MultiScaleVO(AmbientOcclusion settings) + { + m_Settings = settings; + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + // Special case for AO [because SRPs], please don't do this in other effects, it's bad + // practice in this framework + public void SetResources(PostProcessResources resources) + { + m_Resources = resources; + } + + void Alloc(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav, bool dynamicScale) + { + int sizeId = (int)size; + cmd.GetTemporaryRT(id, new RenderTextureDescriptor + { +#if UNITY_2019_4_OR_NEWER + width = m_Widths[sizeId], + height = m_Heights[sizeId], +#else + width = m_ScaledWidths[sizeId], + height = m_ScaledHeights[sizeId], +#endif + colorFormat = format, + depthBufferBits = 0, + volumeDepth = 1, + autoGenerateMips = false, + msaaSamples = 1, +#if UNITY_2019_2_OR_NEWER + mipCount = 1, +#endif +#if UNITY_2019_4_OR_NEWER + useDynamicScale = dynamicScale, +#endif + enableRandomWrite = uav, + dimension = TextureDimension.Tex2D, + sRGB = false + }, FilterMode.Point); + } + + void AllocArray(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav, bool dynamicScale) + { + int sizeId = (int)size; + cmd.GetTemporaryRT(id, new RenderTextureDescriptor + { +#if UNITY_2019_4_OR_NEWER + width = m_Widths[sizeId], + height = m_Heights[sizeId], +#else + width = m_ScaledWidths[sizeId], + height = m_ScaledHeights[sizeId], +#endif + colorFormat = format, + depthBufferBits = 0, + volumeDepth = 16, + autoGenerateMips = false, + msaaSamples = 1, +#if UNITY_2019_2_OR_NEWER + mipCount = 1, +#endif +#if UNITY_2019_4_OR_NEWER + useDynamicScale = dynamicScale, +#endif + enableRandomWrite = uav, + dimension = TextureDimension.Tex2DArray, + sRGB = false + }, FilterMode.Point); + } + + void Release(CommandBuffer cmd, int id) + { + cmd.ReleaseTemporaryRT(id); + } + + // Calculate values in _ZBuferParams (built-in shader variable) + // We can't use _ZBufferParams in compute shaders, so this function is + // used to give the values in it to compute shaders. + Vector4 CalculateZBufferParams(Camera camera) + { + float fpn = camera.farClipPlane / camera.nearClipPlane; + + if (SystemInfo.usesReversedZBuffer) + return new Vector4(fpn - 1f, 1f, 0f, 0f); + + return new Vector4(1f - fpn, fpn, 0f, 0f); + } + + float CalculateTanHalfFovHeight(Camera camera) + { + return 1f / camera.projectionMatrix[0, 0]; + } + + Vector2 GetSize(MipLevel mip) + { + return new Vector2(m_ScaledWidths[(int)mip], m_ScaledHeights[(int)mip]); + } + + Vector3 GetSizeArray(MipLevel mip) + { + return new Vector3(m_ScaledWidths[(int)mip], m_ScaledHeights[(int)mip], 16); + } + + public void GenerateAOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA) + { + // Base size + m_Widths[0] = m_ScaledWidths[0] = camera.pixelWidth * (RuntimeUtilities.isSinglePassStereoEnabled ? 2 : 1); + m_Heights[0] = m_ScaledHeights[0] = camera.pixelHeight; +#if UNITY_2017_3_OR_NEWER + m_ScaledWidths[0] = camera.scaledPixelWidth * (RuntimeUtilities.isSinglePassStereoEnabled ? 2 : 1); + m_ScaledHeights[0] = camera.scaledPixelHeight; +#endif + float widthScalingFactor = ScalableBufferManager.widthScaleFactor; + float heightScalingFactor = ScalableBufferManager.heightScaleFactor; + // L1 -> L6 sizes + for (int i = 1; i < 7; i++) + { + int div = 1 << i; + m_Widths[i] = (m_Widths[0] + (div - 1)) / div; + m_Heights[i] = (m_Heights[0] + (div - 1)) / div; + m_ScaledWidths[i] = Mathf.CeilToInt(m_Widths[i] * widthScalingFactor); + m_ScaledHeights[i] = Mathf.CeilToInt(m_Heights[i] * heightScalingFactor); + } + + // Allocate temporary textures + PushAllocCommands(cmd, isMSAA, camera); + + // Render logic + PushDownsampleCommands(cmd, camera, depthMap, isMSAA); + + float tanHalfFovH = CalculateTanHalfFovHeight(camera); + PushRenderCommands(cmd, ShaderIDs.TiledDepth1, ShaderIDs.Occlusion1, GetSizeArray(MipLevel.L3), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth2, ShaderIDs.Occlusion2, GetSizeArray(MipLevel.L4), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth3, ShaderIDs.Occlusion3, GetSizeArray(MipLevel.L5), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth4, ShaderIDs.Occlusion4, GetSizeArray(MipLevel.L6), tanHalfFovH, isMSAA); + + PushUpsampleCommands(cmd, ShaderIDs.LowDepth4, ShaderIDs.Occlusion4, ShaderIDs.LowDepth3, ShaderIDs.Occlusion3, ShaderIDs.Combined3, GetSize(MipLevel.L4), GetSize(MipLevel.L3), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth3, ShaderIDs.Combined3, ShaderIDs.LowDepth2, ShaderIDs.Occlusion2, ShaderIDs.Combined2, GetSize(MipLevel.L3), GetSize(MipLevel.L2), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth2, ShaderIDs.Combined2, ShaderIDs.LowDepth1, ShaderIDs.Occlusion1, ShaderIDs.Combined1, GetSize(MipLevel.L2), GetSize(MipLevel.L1), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth1, ShaderIDs.Combined1, ShaderIDs.LinearDepth, null, destination, GetSize(MipLevel.L1), GetSize(MipLevel.Original), isMSAA, invert); + + // Cleanup + PushReleaseCommands(cmd); + } + + void PushAllocCommands(CommandBuffer cmd, bool isMSAA, Camera camera) + { + bool dynamicResolutionEnabled = RuntimeUtilities.IsDynamicResolutionEnabled(camera); + if (isMSAA) + { + Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RGHalf, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RGFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RGFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RGFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RGFloat, true, dynamicResolutionEnabled); + + AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RGHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RGHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RGHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RGHalf, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.RG16, true, dynamicResolutionEnabled); + } + else + { + Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RHalf, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RFloat, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RFloat, true, dynamicResolutionEnabled); + + AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RHalf, true, dynamicResolutionEnabled); + AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RHalf, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + + Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.R8, true, dynamicResolutionEnabled); + } + } + + void PushDownsampleCommands(CommandBuffer cmd, Camera camera, RenderTargetIdentifier? depthMap, bool isMSAA) + { + RenderTargetIdentifier depthMapId; + bool needDepthMapRelease = false; + + if (depthMap != null) + { + depthMapId = depthMap.Value; + } + else + { + // Make a copy of the depth texture, or reuse the resolved depth + // buffer (it's only available in some specific situations). + if (!RuntimeUtilities.IsResolvedDepthAvailable(camera)) + { + Alloc(cmd, ShaderIDs.DepthCopy, MipLevel.Original, RenderTextureFormat.RFloat, false, RuntimeUtilities.IsDynamicResolutionEnabled(camera)); + depthMapId = new RenderTargetIdentifier(ShaderIDs.DepthCopy); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, depthMapId, m_PropertySheet, (int)Pass.DepthCopy); + needDepthMapRelease = true; + } + else + { + depthMapId = BuiltinRenderTextureType.ResolvedDepth; + } + } + + // 1st downsampling pass. + var cs = m_Resources.computeShaders.multiScaleAODownsample1; + int kernel = cs.FindKernel(isMSAA ? "MultiScaleVODownsample1_MSAA" : "MultiScaleVODownsample1"); + + cmd.SetComputeTextureParam(cs, kernel, "LinearZ", ShaderIDs.LinearDepth); + cmd.SetComputeTextureParam(cs, kernel, "DS2x", ShaderIDs.LowDepth1); + cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); + cmd.SetComputeTextureParam(cs, kernel, "DS2xAtlas", ShaderIDs.TiledDepth1); + cmd.SetComputeTextureParam(cs, kernel, "DS4xAtlas", ShaderIDs.TiledDepth2); + cmd.SetComputeVectorParam(cs, "ZBufferParams", CalculateZBufferParams(camera)); + cmd.SetComputeTextureParam(cs, kernel, "Depth", depthMapId); + + cmd.DispatchCompute(cs, kernel, m_ScaledWidths[(int)MipLevel.L4], m_ScaledHeights[(int)MipLevel.L4], 1); + + if (needDepthMapRelease) + Release(cmd, ShaderIDs.DepthCopy); + + // 2nd downsampling pass. + cs = m_Resources.computeShaders.multiScaleAODownsample2; + kernel = isMSAA ? cs.FindKernel("MultiScaleVODownsample2_MSAA") : cs.FindKernel("MultiScaleVODownsample2"); + + cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); + cmd.SetComputeTextureParam(cs, kernel, "DS8x", ShaderIDs.LowDepth3); + cmd.SetComputeTextureParam(cs, kernel, "DS16x", ShaderIDs.LowDepth4); + cmd.SetComputeTextureParam(cs, kernel, "DS8xAtlas", ShaderIDs.TiledDepth3); + cmd.SetComputeTextureParam(cs, kernel, "DS16xAtlas", ShaderIDs.TiledDepth4); + + cmd.DispatchCompute(cs, kernel, m_ScaledWidths[(int)MipLevel.L6], m_ScaledHeights[(int)MipLevel.L6], 1); + } + + void PushRenderCommands(CommandBuffer cmd, int source, int destination, Vector3 sourceSize, float tanHalfFovH, bool isMSAA) + { + // Here we compute multipliers that convert the center depth value into (the reciprocal + // of) sphere thicknesses at each sample location. This assumes a maximum sample radius + // of 5 units, but since a sphere has no thickness at its extent, we don't need to + // sample that far out. Only samples whole integer offsets with distance less than 25 + // are used. This means that there is no sample at (3, 4) because its distance is + // exactly 25 (and has a thickness of 0.) + + // The shaders are set up to sample a circular region within a 5-pixel radius. + const float kScreenspaceDiameter = 10f; + + // SphereDiameter = CenterDepth * ThicknessMultiplier. This will compute the thickness + // of a sphere centered at a specific depth. The ellipsoid scale can stretch a sphere + // into an ellipsoid, which changes the characteristics of the AO. + // TanHalfFovH: Radius of sphere in depth units if its center lies at Z = 1 + // ScreenspaceDiameter: Diameter of sample sphere in pixel units + // ScreenspaceDiameter / BufferWidth: Ratio of the screen width that the sphere actually covers + float thicknessMultiplier = 2f * tanHalfFovH * kScreenspaceDiameter / sourceSize.x; + if (RuntimeUtilities.isSinglePassStereoEnabled) + thicknessMultiplier *= 2f; + + // This will transform a depth value from [0, thickness] to [0, 1]. + float inverseRangeFactor = 1f / thicknessMultiplier; + + // The thicknesses are smaller for all off-center samples of the sphere. Compute + // thicknesses relative to the center sample. + for (int i = 0; i < 12; i++) + m_InvThicknessTable[i] = inverseRangeFactor / m_SampleThickness[i]; + + // These are the weights that are multiplied against the samples because not all samples + // are equally important. The farther the sample is from the center location, the less + // they matter. We use the thickness of the sphere to determine the weight. The scalars + // in front are the number of samples with this weight because we sum the samples + // together before multiplying by the weight, so as an aggregate all of those samples + // matter more. After generating this table, the weights are normalized. + m_SampleWeightTable[0] = 4 * m_SampleThickness[0]; // Axial + m_SampleWeightTable[1] = 4 * m_SampleThickness[1]; // Axial + m_SampleWeightTable[2] = 4 * m_SampleThickness[2]; // Axial + m_SampleWeightTable[3] = 4 * m_SampleThickness[3]; // Axial + m_SampleWeightTable[4] = 4 * m_SampleThickness[4]; // Diagonal + m_SampleWeightTable[5] = 8 * m_SampleThickness[5]; // L-shaped + m_SampleWeightTable[6] = 8 * m_SampleThickness[6]; // L-shaped + m_SampleWeightTable[7] = 8 * m_SampleThickness[7]; // L-shaped + m_SampleWeightTable[8] = 4 * m_SampleThickness[8]; // Diagonal + m_SampleWeightTable[9] = 8 * m_SampleThickness[9]; // L-shaped + m_SampleWeightTable[10] = 8 * m_SampleThickness[10]; // L-shaped + m_SampleWeightTable[11] = 4 * m_SampleThickness[11]; // Diagonal + + // Zero out the unused samples. + // FIXME: should we support SAMPLE_EXHAUSTIVELY mode? + m_SampleWeightTable[0] = 0; + m_SampleWeightTable[2] = 0; + m_SampleWeightTable[5] = 0; + m_SampleWeightTable[7] = 0; + m_SampleWeightTable[9] = 0; + + // Normalize the weights by dividing by the sum of all weights + var totalWeight = 0f; + + foreach (float w in m_SampleWeightTable) + totalWeight += w; + + for (int i = 0; i < m_SampleWeightTable.Length; i++) + m_SampleWeightTable[i] /= totalWeight; + + // Set the arguments for the render kernel. + var cs = m_Resources.computeShaders.multiScaleAORender; + int kernel = isMSAA ? cs.FindKernel("MultiScaleVORender_MSAA_interleaved") : cs.FindKernel("MultiScaleVORender_interleaved"); + + cmd.SetComputeFloatParams(cs, "gInvThicknessTable", m_InvThicknessTable); + cmd.SetComputeFloatParams(cs, "gSampleWeightTable", m_SampleWeightTable); + cmd.SetComputeVectorParam(cs, "gInvSliceDimension", new Vector2(1f / sourceSize.x, 1f / sourceSize.y)); + cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector3(-1f / m_Settings.thicknessModifier.value, m_Settings.intensity.value, m_Settings.zBias.value)); + cmd.SetComputeTextureParam(cs, kernel, "DepthTex", source); + cmd.SetComputeTextureParam(cs, kernel, "Occlusion", destination); + + // Calculate the thread group count and add a dispatch command with them. + uint xsize, ysize, zsize; + cs.GetKernelThreadGroupSizes(kernel, out xsize, out ysize, out zsize); + + cmd.DispatchCompute( + cs, kernel, + ((int)sourceSize.x + (int)xsize - 1) / (int)xsize, + ((int)sourceSize.y + (int)ysize - 1) / (int)ysize, + ((int)sourceSize.z + (int)zsize - 1) / (int)zsize + ); + } + + void PushUpsampleCommands(CommandBuffer cmd, int lowResDepth, int interleavedAO, int highResDepth, int? highResAO, RenderTargetIdentifier dest, Vector3 lowResDepthSize, Vector2 highResDepthSize, bool isMSAA, bool invert = false) + { + var cs = m_Resources.computeShaders.multiScaleAOUpsample; + int kernel = 0; + if (!isMSAA) + { + kernel = cs.FindKernel(highResAO == null ? invert + ? "MultiScaleVOUpSample_invert" + : "MultiScaleVOUpSample" + : "MultiScaleVOUpSample_blendout"); + } + else + { + kernel = cs.FindKernel(highResAO == null ? invert + ? "MultiScaleVOUpSample_MSAA_invert" + : "MultiScaleVOUpSample_MSAA" + : "MultiScaleVOUpSample_MSAA_blendout"); + } + + + float stepSize = 1920f / lowResDepthSize.x; + float bTolerance = 1f - Mathf.Pow(10f, m_Settings.blurTolerance.value) * stepSize; + bTolerance *= bTolerance; + float uTolerance = Mathf.Pow(10f, m_Settings.upsampleTolerance.value); + float noiseFilterWeight = 1f / (Mathf.Pow(10f, m_Settings.noiseFilterTolerance.value) + uTolerance); + + cmd.SetComputeVectorParam(cs, "InvLowResolution", new Vector2(1f / lowResDepthSize.x, 1f / lowResDepthSize.y)); + cmd.SetComputeVectorParam(cs, "InvHighResolution", new Vector2(1f / highResDepthSize.x, 1f / highResDepthSize.y)); + cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector4(noiseFilterWeight, stepSize, bTolerance, uTolerance)); + + cmd.SetComputeTextureParam(cs, kernel, "LoResDB", lowResDepth); + cmd.SetComputeTextureParam(cs, kernel, "HiResDB", highResDepth); + cmd.SetComputeTextureParam(cs, kernel, "LoResAO1", interleavedAO); + + if (highResAO != null) + cmd.SetComputeTextureParam(cs, kernel, "HiResAO", highResAO.Value); + + cmd.SetComputeTextureParam(cs, kernel, "AoResult", dest); + + int xcount = ((int)highResDepthSize.x + 17) / 16; + int ycount = ((int)highResDepthSize.y + 17) / 16; + cmd.DispatchCompute(cs, kernel, xcount, ycount, 1); + } + + void PushReleaseCommands(CommandBuffer cmd) + { + Release(cmd, ShaderIDs.LinearDepth); + + Release(cmd, ShaderIDs.LowDepth1); + Release(cmd, ShaderIDs.LowDepth2); + Release(cmd, ShaderIDs.LowDepth3); + Release(cmd, ShaderIDs.LowDepth4); + + Release(cmd, ShaderIDs.TiledDepth1); + Release(cmd, ShaderIDs.TiledDepth2); + Release(cmd, ShaderIDs.TiledDepth3); + Release(cmd, ShaderIDs.TiledDepth4); + + Release(cmd, ShaderIDs.Occlusion1); + Release(cmd, ShaderIDs.Occlusion2); + Release(cmd, ShaderIDs.Occlusion3); + Release(cmd, ShaderIDs.Occlusion4); + + Release(cmd, ShaderIDs.Combined1); + Release(cmd, ShaderIDs.Combined2); + Release(cmd, ShaderIDs.Combined3); + } + + void PreparePropertySheet(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(m_Resources.shaders.multiScaleAO); + sheet.ClearKeywords(); + sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); + m_PropertySheet = sheet; + } + + void CheckAOTexture(PostProcessRenderContext context) + { + bool AOUpdateNeeded = m_AmbientOnlyAO == null || !m_AmbientOnlyAO.IsCreated() || m_AmbientOnlyAO.width != context.width || m_AmbientOnlyAO.height != context.height; +#if UNITY_2017_3_OR_NEWER + bool dynamicResolutionEnabled = RuntimeUtilities.IsDynamicResolutionEnabled(context.camera); + AOUpdateNeeded = AOUpdateNeeded || m_AmbientOnlyAO.useDynamicScale != dynamicResolutionEnabled; +#endif + if (AOUpdateNeeded) + { + RuntimeUtilities.Destroy(m_AmbientOnlyAO); + + m_AmbientOnlyAO = new RenderTexture(context.width, context.height, 0, RenderTextureFormat.R8, RenderTextureReadWrite.Linear) + { + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Point, + enableRandomWrite = true, +#if UNITY_2017_3_OR_NEWER + useDynamicScale = dynamicResolutionEnabled +#endif + }; + m_AmbientOnlyAO.Create(); + } + } + + void PushDebug(PostProcessRenderContext context) + { + if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) + context.PushDebugOverlay(context.command, m_AmbientOnlyAO, m_PropertySheet, (int)Pass.DebugOverlay); + } + + public void RenderAfterOpaque(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion"); + SetResources(context.resources); + PreparePropertySheet(context); + CheckAOTexture(context); + + // In Forward mode, fog is applied at the object level in the grometry pass so we need + // to apply it to AO as well or it'll drawn on top of the fog effect. + if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) + { + m_PropertySheet.EnableKeyword("APPLY_FORWARD_FOG"); + m_PropertySheet.properties.SetVector( + ShaderIDs.FogParams, + new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) + ); + } + + GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); + PushDebug(context); + cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); + cmd.EndSample("Ambient Occlusion"); + } + + public void RenderAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Render"); + SetResources(context.resources); + PreparePropertySheet(context); + CheckAOTexture(context); + GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); + PushDebug(context); + cmd.EndSample("Ambient Occlusion Render"); + } + + public void CompositeAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Composite"); + cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); + cmd.EndSample("Ambient Occlusion Composite"); + } + + public void Release() + { + RuntimeUtilities.Destroy(m_AmbientOnlyAO); + m_AmbientOnlyAO = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta new file mode 100644 index 0000000..f7f7f95 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f59da4cf1b7dee244bc37fa6add23b00 +timeCreated: 1503308000 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs new file mode 100644 index 0000000..9842b73 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs @@ -0,0 +1,166 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Scalable ambient obscurance + [UnityEngine.Scripting.Preserve] + [Serializable] + internal sealed class ScalableAO : IAmbientOcclusionMethod + { + RenderTexture m_Result; + PropertySheet m_PropertySheet; + AmbientOcclusion m_Settings; + + readonly RenderTargetIdentifier[] m_MRT = + { + BuiltinRenderTextureType.GBuffer0, // Albedo, Occ + BuiltinRenderTextureType.CameraTarget // Ambient + }; + + readonly int[] m_SampleCount = { 4, 6, 10, 8, 12 }; + + enum Pass + { + OcclusionEstimationForward, + OcclusionEstimationDeferred, + HorizontalBlurForward, + HorizontalBlurDeferred, + VerticalBlur, + CompositionForward, + CompositionDeferred, + DebugOverlay + } + + public ScalableAO(AmbientOcclusion settings) + { + m_Settings = settings; + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.DepthNormals; + } + + void DoLazyInitialization(PostProcessRenderContext context) + { + m_PropertySheet = context.propertySheets.Get(context.resources.shaders.scalableAO); + + bool reset = false; + + if (m_Result == null || !m_Result.IsCreated()) + { + // Initial allocation + m_Result = context.GetScreenSpaceTemporaryRT(0, RenderTextureFormat.ARGB32, RenderTextureReadWrite.Linear); + m_Result.hideFlags = HideFlags.DontSave; + m_Result.filterMode = FilterMode.Bilinear; + + reset = true; + } + else if (m_Result.width != context.width || m_Result.height != context.height) + { + // Release and reallocate + m_Result.Release(); + m_Result.width = context.width; + m_Result.height = context.height; + reset = true; + } + + if (reset) + m_Result.Create(); + } + + void Render(PostProcessRenderContext context, CommandBuffer cmd, int occlusionSource) + { + DoLazyInitialization(context); + m_Settings.radius.value = Mathf.Max(m_Settings.radius.value, 1e-4f); + + // Material setup + // Always use a quater-res AO buffer unless High/Ultra quality is set. + bool downsampling = (int)m_Settings.quality.value < (int)AmbientOcclusionQuality.High; + float px = m_Settings.intensity.value; + float py = m_Settings.radius.value; + float pz = downsampling ? 0.5f : 1f; + float pw = m_SampleCount[(int)m_Settings.quality.value]; + + var sheet = m_PropertySheet; + sheet.ClearKeywords(); + sheet.properties.SetVector(ShaderIDs.AOParams, new Vector4(px, py, pz, pw)); + sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); + + // In forward fog is applied at the object level in the grometry pass so we need to + // apply it to AO as well or it'll drawn on top of the fog effect. + // Not needed in Deferred. + if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) + { + sheet.EnableKeyword("APPLY_FORWARD_FOG"); + sheet.properties.SetVector( + ShaderIDs.FogParams, + new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) + ); + } + + // Texture setup + int ts = downsampling ? 2 : 1; + const RenderTextureFormat kFormat = RenderTextureFormat.ARGB32; + const RenderTextureReadWrite kRWMode = RenderTextureReadWrite.Linear; + const FilterMode kFilter = FilterMode.Bilinear; + + // AO buffer + var rtMask = ShaderIDs.OcclusionTexture1; + int scaledWidth = context.width / ts; + int scaledHeight = context.height / ts; + context.GetScreenSpaceTemporaryRT(cmd, rtMask, 0, kFormat, kRWMode, kFilter, scaledWidth, scaledHeight); + + // AO estimation + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, rtMask, sheet, (int)Pass.OcclusionEstimationForward + occlusionSource); + + // Blur buffer + var rtBlur = ShaderIDs.OcclusionTexture2; + context.GetScreenSpaceTemporaryRT(cmd, rtBlur, 0, kFormat, kRWMode, kFilter); + + // Separable blur (horizontal pass) + cmd.BlitFullscreenTriangle(rtMask, rtBlur, sheet, (int)Pass.HorizontalBlurForward + occlusionSource); + cmd.ReleaseTemporaryRT(rtMask); + + // Separable blur (vertical pass) + cmd.BlitFullscreenTriangle(rtBlur, m_Result, sheet, (int)Pass.VerticalBlur); + cmd.ReleaseTemporaryRT(rtBlur); + + if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) + context.PushDebugOverlay(cmd, m_Result, sheet, (int)Pass.DebugOverlay); + } + + public void RenderAfterOpaque(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion"); + Render(context, cmd, 0); + cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); + cmd.EndSample("Ambient Occlusion"); + } + + public void RenderAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Render"); + Render(context, cmd, 1); + cmd.EndSample("Ambient Occlusion Render"); + } + + public void CompositeAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Composite"); + cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); + cmd.EndSample("Ambient Occlusion Composite"); + } + + public void Release() + { + RuntimeUtilities.Destroy(m_Result); + m_Result = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs.meta new file mode 100644 index 0000000..41a662c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScalableAO.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c564cc69bd8582a48b2e0a2090d28361 +timeCreated: 1503307993 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs new file mode 100644 index 0000000..354710b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs @@ -0,0 +1,343 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Screen-space Reflections quality presets. + /// + public enum ScreenSpaceReflectionPreset + { + /// + /// Lowest quality. + /// + Lower, + + /// + /// Low quality. + /// + Low, + + /// + /// Medium quality. + /// + Medium, + + /// + /// High quality. + /// + High, + + /// + /// Higher quality. + /// + Higher, + + /// + /// Ultra quality. + /// + Ultra, + + /// + /// Overkill (as in: don't use) quality. + /// + Overkill, + + /// + /// Custom, tweakable quality settings. + /// + Custom + } + + /// + /// Screen-space Reflections buffer sizes. + /// + public enum ScreenSpaceReflectionResolution + { + /// + /// Downsampled buffer. Faster but lower quality. + /// + Downsampled, + + /// + /// Full-sized buffer. Slower but higher quality. + /// + FullSize, + + /// + /// Supersampled buffer. Very slow but much higher quality. + /// + Supersampled + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class ScreenSpaceReflectionPresetParameter : ParameterOverride { } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class ScreenSpaceReflectionResolutionParameter : ParameterOverride { } + + /// + /// This class holds settings for the Screen-space Reflections effect. + /// + [Serializable] + [PostProcess(typeof(ScreenSpaceReflectionsRenderer), "Unity/Screen-space reflections")] + public sealed class ScreenSpaceReflections : PostProcessEffectSettings + { + /// + /// The quality preset to use for rendering. Use + /// to tweak settings. + /// + [Tooltip("Choose a quality preset, or use \"Custom\" to create your own custom preset. Don't use a preset higher than \"Medium\" if you desire good performance on consoles.")] + public ScreenSpaceReflectionPresetParameter preset = new ScreenSpaceReflectionPresetParameter { value = ScreenSpaceReflectionPreset.Medium }; + + /// + /// The maximum number of steps in the raymarching pass. Higher values mean more reflections. + /// + [Range(0, 256), Tooltip("Maximum number of steps in the raymarching pass. Higher values mean more reflections.")] + public IntParameter maximumIterationCount = new IntParameter { value = 16 }; + + /// + /// Changes the size of the internal buffer. Downsample it to maximize performances or + /// supersample it to get slow but higher quality results. + /// + [Tooltip("Changes the size of the SSR buffer. Downsample it to maximize performances or supersample it for higher quality results with reduced performance.")] + public ScreenSpaceReflectionResolutionParameter resolution = new ScreenSpaceReflectionResolutionParameter { value = ScreenSpaceReflectionResolution.Downsampled }; + + /// + /// The ray thickness. Lower values are more expensive but allow the effect to detect + /// smaller details. + /// + [Range(1f, 64f), Tooltip("Ray thickness. Lower values are more expensive but allow the effect to detect smaller details.")] + public FloatParameter thickness = new FloatParameter { value = 8f }; + + /// + /// The maximum distance to traverse in the scene after which it will stop drawing + /// reflections. + /// + [Tooltip("Maximum distance to traverse after which it will stop drawing reflections.")] + public FloatParameter maximumMarchDistance = new FloatParameter { value = 100f }; + + /// + /// Fades reflections close to the near plane. This is useful to hide common artifacts. + /// + [Range(0f, 1f), Tooltip("Fades reflections close to the near planes.")] + public FloatParameter distanceFade = new FloatParameter { value = 0.5f }; + + /// + /// Fades reflections close to the screen edges. + /// + [Range(0f, 1f), Tooltip("Fades reflections close to the screen edges.")] + public FloatParameter vignette = new FloatParameter { value = 0.5f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled + && context.camera.actualRenderingPath == RenderingPath.DeferredShading + && SystemInfo.supportsMotionVectors + && SystemInfo.supportsComputeShaders + && SystemInfo.copyTextureSupport > CopyTextureSupport.None + && context.resources.shaders.screenSpaceReflections + && context.resources.shaders.screenSpaceReflections.isSupported + && context.resources.computeShaders.gaussianDownsample; + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class ScreenSpaceReflectionsRenderer : PostProcessEffectRenderer + { + RenderTexture m_Resolve; + RenderTexture m_History; + int[] m_MipIDs; + + class QualityPreset + { + public int maximumIterationCount; + public float thickness; + public ScreenSpaceReflectionResolution downsampling; + } + + readonly QualityPreset[] m_Presets = + { + new QualityPreset { maximumIterationCount = 10, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Lower + new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Low + new QualityPreset { maximumIterationCount = 32, thickness = 16, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Medium + new QualityPreset { maximumIterationCount = 48, thickness = 8, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // High + new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Higher + new QualityPreset { maximumIterationCount = 48, thickness = 16, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Ultra + new QualityPreset { maximumIterationCount = 128, thickness = 12, downsampling = ScreenSpaceReflectionResolution.Supersampled }, // Overkill + }; + + enum Pass + { + Test, + Resolve, + Reproject, + Composite + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + internal void CheckRT(ref RenderTexture rt, int width, int height, FilterMode filterMode, bool useMipMap) + { + if (rt == null || !rt.IsCreated() || rt.width != width || rt.height != height) + { + if (rt != null) + { + rt.Release(); + RuntimeUtilities.Destroy(rt); + } + + rt = new RenderTexture(width, height, 0, RuntimeUtilities.defaultHDRRenderTextureFormat) + { + filterMode = filterMode, + useMipMap = useMipMap, + autoGenerateMips = false, + hideFlags = HideFlags.HideAndDontSave + }; + + rt.Create(); + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Screen-space Reflections"); + + // Get quality settings + if (settings.preset.value != ScreenSpaceReflectionPreset.Custom) + { + int id = (int)settings.preset.value; + settings.maximumIterationCount.value = m_Presets[id].maximumIterationCount; + settings.thickness.value = m_Presets[id].thickness; + settings.resolution.value = m_Presets[id].downsampling; + } + + settings.maximumMarchDistance.value = Mathf.Max(0f, settings.maximumMarchDistance.value); + + // Square POT target + int size = Mathf.ClosestPowerOfTwo(Mathf.Min(context.width, context.height)); + + if (settings.resolution.value == ScreenSpaceReflectionResolution.Downsampled) + size >>= 1; + else if (settings.resolution.value == ScreenSpaceReflectionResolution.Supersampled) + size <<= 1; + + // The gaussian pyramid compute works in blocks of 8x8 so make sure the last lod has a + // minimum size of 8x8 + const int kMaxLods = 12; + int lodCount = Mathf.FloorToInt(Mathf.Log(size, 2f) - 3f); + lodCount = Mathf.Min(lodCount, kMaxLods); + + CheckRT(ref m_Resolve, size, size, FilterMode.Trilinear, true); + + var noiseTex = context.resources.blueNoise256[0]; + var sheet = context.propertySheets.Get(context.resources.shaders.screenSpaceReflections); + sheet.properties.SetTexture(ShaderIDs.Noise, noiseTex); + + var screenSpaceProjectionMatrix = new Matrix4x4(); + screenSpaceProjectionMatrix.SetRow(0, new Vector4(size * 0.5f, 0f, 0f, size * 0.5f)); + screenSpaceProjectionMatrix.SetRow(1, new Vector4(0f, size * 0.5f, 0f, size * 0.5f)); + screenSpaceProjectionMatrix.SetRow(2, new Vector4(0f, 0f, 1f, 0f)); + screenSpaceProjectionMatrix.SetRow(3, new Vector4(0f, 0f, 0f, 1f)); + + var projectionMatrix = GL.GetGPUProjectionMatrix(context.camera.projectionMatrix, false); + screenSpaceProjectionMatrix *= projectionMatrix; + + sheet.properties.SetMatrix(ShaderIDs.ViewMatrix, context.camera.worldToCameraMatrix); + sheet.properties.SetMatrix(ShaderIDs.InverseViewMatrix, context.camera.worldToCameraMatrix.inverse); + sheet.properties.SetMatrix(ShaderIDs.ScreenSpaceProjectionMatrix, screenSpaceProjectionMatrix); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4((float)settings.vignette.value, settings.distanceFade.value, settings.maximumMarchDistance.value, lodCount)); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector4((float)context.width / (float)context.height, (float)size / (float)noiseTex.width, settings.thickness.value, settings.maximumIterationCount.value)); + + cmd.GetTemporaryRT(ShaderIDs.Test, size, size, 0, FilterMode.Point, context.sourceFormat); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.Test, sheet, (int)Pass.Test); + + if (context.isSceneView) + { + cmd.BlitFullscreenTriangle(context.source, m_Resolve, sheet, (int)Pass.Resolve); + } + else + { + CheckRT(ref m_History, size, size, FilterMode.Bilinear, false); + + if (m_ResetHistory) + { + context.command.BlitFullscreenTriangle(context.source, m_History); + m_ResetHistory = false; + } + + cmd.GetTemporaryRT(ShaderIDs.SSRResolveTemp, size, size, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SSRResolveTemp, sheet, (int)Pass.Resolve); + + sheet.properties.SetTexture(ShaderIDs.History, m_History); + cmd.BlitFullscreenTriangle(ShaderIDs.SSRResolveTemp, m_Resolve, sheet, (int)Pass.Reproject); + + cmd.CopyTexture(m_Resolve, 0, 0, m_History, 0, 0); + + cmd.ReleaseTemporaryRT(ShaderIDs.SSRResolveTemp); + } + + cmd.ReleaseTemporaryRT(ShaderIDs.Test); + + // Pre-cache mipmaps ids + if (m_MipIDs == null || m_MipIDs.Length == 0) + { + m_MipIDs = new int[kMaxLods]; + + for (int i = 0; i < kMaxLods; i++) + m_MipIDs[i] = Shader.PropertyToID("_SSRGaussianMip" + i); + } + + var compute = context.resources.computeShaders.gaussianDownsample; + int kernel = compute.FindKernel("KMain"); + var mipFormat = RuntimeUtilities.defaultHDRRenderTextureFormat; + + var last = new RenderTargetIdentifier(m_Resolve); + + for (int i = 0; i < lodCount; i++) + { + size >>= 1; + Assert.IsTrue(size > 0); + + cmd.GetTemporaryRT(m_MipIDs[i], size, size, 0, FilterMode.Bilinear, mipFormat, RenderTextureReadWrite.Default, 1, true); + cmd.SetComputeTextureParam(compute, kernel, "_Source", last); + cmd.SetComputeTextureParam(compute, kernel, "_Result", m_MipIDs[i]); + cmd.SetComputeVectorParam(compute, "_Size", new Vector4(size, size, 1f / size, 1f / size)); + cmd.DispatchCompute(compute, kernel, size / 8, size / 8, 1); + cmd.CopyTexture(m_MipIDs[i], 0, 0, m_Resolve, 0, i + 1); + + last = m_MipIDs[i]; + } + + for (int i = 0; i < lodCount; i++) + cmd.ReleaseTemporaryRT(m_MipIDs[i]); + + sheet.properties.SetTexture(ShaderIDs.Resolve, m_Resolve); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Composite, preserveDepth: true); + cmd.EndSample("Screen-space Reflections"); + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_Resolve); + RuntimeUtilities.Destroy(m_History); + m_Resolve = null; + m_History = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta new file mode 100644 index 0000000..521f001 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7a34fa72bd4185749832024e9c8010bf +timeCreated: 1503573119 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs new file mode 100644 index 0000000..bf29cec --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs @@ -0,0 +1,84 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Subpixel Morphological Anti-aliasing (SMAA) effect. + /// + [UnityEngine.Scripting.Preserve] + [Serializable] + public sealed class SubpixelMorphologicalAntialiasing + { + enum Pass + { + EdgeDetection = 0, + BlendWeights = 3, + NeighborhoodBlending = 6 + } + + /// + /// Quality presets. + /// + public enum Quality + { + /// + /// Low quality. + /// + Low = 0, + + /// + /// Medium quality. + /// + Medium = 1, + + /// + /// High quality. + /// + High = 2 + } + + /// + /// The quality preset to use for the anti-aliasing filter. + /// + [Tooltip("Lower quality is faster at the expense of visual quality (Low = ~60%, Medium = ~80%).")] + public Quality quality = Quality.High; + + /// + /// Checks if the effect is supported on the target platform. + /// + /// true if the anti-aliasing filter is supported, false otherwise + public bool IsSupported() + { + return !RuntimeUtilities.isSinglePassStereoEnabled; + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.subpixelMorphologicalAntialiasing); + sheet.properties.SetTexture("_AreaTex", context.resources.smaaLuts.area); + sheet.properties.SetTexture("_SearchTex", context.resources.smaaLuts.search); + + var cmd = context.command; + cmd.BeginSample("SubpixelMorphologicalAntialiasing"); + +#if UNITY_2017_3_OR_NEWER + bool dynamicResolutionEnabled = RuntimeUtilities.IsDynamicResolutionEnabled(context.camera); + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flip, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear, 1, false, RenderTextureMemoryless.None, dynamicResolutionEnabled); + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flop, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear, 1, false, RenderTextureMemoryless.None, dynamicResolutionEnabled); +#else + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flip, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear, 1, false); + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flop, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear, 1, false); +#endif + + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SMAA_Flip, sheet, (int)Pass.EdgeDetection + (int)quality, true); + cmd.BlitFullscreenTriangle(ShaderIDs.SMAA_Flip, ShaderIDs.SMAA_Flop, sheet, (int)Pass.BlendWeights + (int)quality); + cmd.SetGlobalTexture("_BlendTex", ShaderIDs.SMAA_Flop); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.NeighborhoodBlending); + + cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flip); + cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flop); + + cmd.EndSample("SubpixelMorphologicalAntialiasing"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta new file mode 100644 index 0000000..709478c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f3b0ecb61e2f1e54ebd4572178bfd8b1 +timeCreated: 1497735449 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs new file mode 100644 index 0000000..b9c653c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs @@ -0,0 +1,350 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Experimental.Rendering; +using FidelityFX; + +namespace UnityEngine.Rendering.PostProcessing +{ + [UnityEngine.Scripting.Preserve] + [Serializable] + public class SuperResolution + { + public Func callbacksFactory { get; set; } = (context) => new Callbacks(context.resources); + + [Tooltip("Standard scaling ratio presets.")] + public Fsr2.QualityMode qualityMode = Fsr2.QualityMode.Quality; + + [Tooltip("Apply RCAS sharpening to the image after upscaling.")] + public bool performSharpenPass = true; + [Tooltip("Strength of the sharpening effect.")] + [Range(0, 1)] public float sharpness = 0.8f; + + [Tooltip("Allow the use of half precision compute operations, potentially improving performance if the platform supports it.")] + public bool enableFP16 = false; + + [Tooltip("Choose where to get the exposure value from. Use auto-exposure from either FSR2 or Unity, provide a manual exposure texture, or use a default value.")] + public ExposureSource exposureSource = ExposureSource.Auto; + [Tooltip("Value by which the input signal will be divided, to get back to the original signal produced by the game.")] + public float preExposure = 1.0f; + [Tooltip("Optional 1x1 texture containing the exposure value for the current frame.")] + public Texture exposure = null; + + public enum ExposureSource + { + Default, + Auto, + Unity, + Manual, + } + + [Tooltip("Optional texture to control the influence of the current frame on the reconstructed output. If unset, either an auto-generated or a default cleared reactive mask will be used.")] + public Texture reactiveMask = null; + [Tooltip("Optional texture for marking areas of specialist rendering which should be accounted for during the upscaling process. If unset, a default cleared mask will be used.")] + public Texture transparencyAndCompositionMask = null; + [Tooltip("Automatically generate a reactive mask based on the difference between opaque-only render output and the final render output including alpha transparencies.")] + public bool autoGenerateReactiveMask = true; + [Tooltip("Parameters to control the process of auto-generating a reactive mask.")] + public GenerateReactiveParameters generateReactiveParameters = new GenerateReactiveParameters(); + + [Serializable] + public class GenerateReactiveParameters + { + [Tooltip("A value to scale the output")] + [Range(0, 2)] public float scale = 0.5f; + [Tooltip("A threshold value to generate a binary reactive mask")] + [Range(0, 1)] public float cutoffThreshold = 0.2f; + [Tooltip("A value to set for the binary reactive mask")] + [Range(0, 1)] public float binaryValue = 0.9f; + [Tooltip("Flags to determine how to generate the reactive mask")] + public Fsr2.GenerateReactiveFlags flags = Fsr2.GenerateReactiveFlags.ApplyTonemap | Fsr2.GenerateReactiveFlags.ApplyThreshold | Fsr2.GenerateReactiveFlags.UseComponentsMax; + } + + [Tooltip("(Experimental) Automatically generate and use Reactive mask and Transparency & composition mask internally.")] + public bool autoGenerateTransparencyAndComposition = false; + [Tooltip("Parameters to control the process of auto-generating transparency and composition masks.")] + public GenerateTcrParameters generateTransparencyAndCompositionParameters = new GenerateTcrParameters(); + + [Serializable] + public class GenerateTcrParameters + { + [Tooltip("Setting this value too small will cause visual instability. Larger values can cause ghosting.")] + [Range(0, 1)] public float autoTcThreshold = 0.05f; + [Tooltip("Smaller values will increase stability at hard edges of translucent objects.")] + [Range(0, 2)] public float autoTcScale = 1.0f; + [Tooltip("Larger values result in more reactive pixels.")] + [Range(0, 10)] public float autoReactiveScale = 5.0f; + [Tooltip("Maximum value reactivity can reach.")] + [Range(0, 1)] public float autoReactiveMax = 0.9f; + } + + public Vector2 jitter { get; private set; } + public Vector2Int renderSize => _renderSize; + public Vector2Int displaySize => _displaySize; + public RenderTargetIdentifier colorOpaqueOnly { get; set; } + + private Fsr2Context _fsrContext; + private Vector2Int _renderSize; + private Vector2Int _displaySize; + private bool _resetHistory; + + private IFsr2Callbacks _callbacks; + private float _appliedBiasOffset; + + private readonly Fsr2.DispatchDescription _dispatchDescription = new Fsr2.DispatchDescription(); + private readonly Fsr2.GenerateReactiveDescription _genReactiveDescription = new Fsr2.GenerateReactiveDescription(); + + private Fsr2.QualityMode _prevQualityMode; + private ExposureSource _prevExposureSource; + private Vector2Int _prevDisplaySize; + + private Rect _originalRect; + + public bool IsSupported() + { + return SystemInfo.supportsComputeShaders && SystemInfo.supportsMotionVectors; + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + public void Release() + { + DestroyFsrContext(); + } + + public void ResetHistory() + { + _resetHistory = true; + } + + public void ConfigureJitteredProjectionMatrix(PostProcessRenderContext context) + { + ApplyJitter(context.camera); + } + + public void ConfigureCameraViewport(PostProcessRenderContext context) + { + var camera = context.camera; + _originalRect = camera.rect; + + // Determine the desired rendering and display resolutions + _displaySize = new Vector2Int(camera.pixelWidth, camera.pixelHeight); + Fsr2.GetRenderResolutionFromQualityMode(out int renderWidth, out int renderHeight, _displaySize.x, _displaySize.y, qualityMode); + _renderSize = new Vector2Int(renderWidth, renderHeight); + + // Render to a smaller portion of the screen by manipulating the camera's viewport rect + camera.aspect = (_displaySize.x * _originalRect.width) / (_displaySize.y * _originalRect.height); + camera.rect = new Rect(0, 0, _originalRect.width * _renderSize.x / _displaySize.x, _originalRect.height * _renderSize.y / _displaySize.y); + } + + public void ResetCameraViewport(PostProcessRenderContext context) + { + context.camera.rect = _originalRect; + } + + public void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("FSR2"); + + // Monitor for any resolution changes and recreate the FSR2 context if necessary + // We can't create an FSR2 context without info from the post-processing context, so delay the initial setup until here + if (_fsrContext == null || _displaySize.x != _prevDisplaySize.x || _displaySize.y != _prevDisplaySize.y || qualityMode != _prevQualityMode || exposureSource != _prevExposureSource) + { + DestroyFsrContext(); + CreateFsrContext(context); + } + + cmd.SetGlobalTexture(Fsr2ShaderIDs.SrvInputColor, context.source); + cmd.SetGlobalTexture(Fsr2ShaderIDs.SrvInputDepth, BuiltinRenderTextureType.CameraTarget, RenderTextureSubElement.Depth); + cmd.SetGlobalTexture(Fsr2ShaderIDs.SrvInputMotionVectors, BuiltinRenderTextureType.MotionVectors); + + SetupDispatchDescription(context); + + if (autoGenerateReactiveMask) + { + SetupAutoReactiveDescription(context); + + cmd.GetTemporaryRT(Fsr2ShaderIDs.UavAutoReactive, _renderSize.x, _renderSize.y, 0, default, GraphicsFormat.R8_UNorm, 1, true); + _fsrContext.GenerateReactiveMask(_genReactiveDescription, cmd); + _dispatchDescription.Reactive = Fsr2ShaderIDs.UavAutoReactive; + } + + _fsrContext.Dispatch(_dispatchDescription, cmd); + + cmd.EndSample("FSR2"); + + _resetHistory = false; + } + + private void CreateFsrContext(PostProcessRenderContext context) + { + _prevQualityMode = qualityMode; + _prevExposureSource = exposureSource; + _prevDisplaySize = _displaySize; + + // Initialize FSR2 context + Fsr2.InitializationFlags flags = 0; + if (context.camera.allowHDR) flags |= Fsr2.InitializationFlags.EnableHighDynamicRange; + if (enableFP16) flags |= Fsr2.InitializationFlags.EnableFP16Usage; + if (exposureSource == ExposureSource.Auto) flags |= Fsr2.InitializationFlags.EnableAutoExposure; + + _callbacks = callbacksFactory(context); + _fsrContext = Fsr2.CreateContext(_displaySize, _renderSize, _callbacks, flags); + + // Apply a mipmap bias so that textures retain their sharpness + float biasOffset = Fsr2.GetMipmapBiasOffset(_renderSize.x, _displaySize.x); + if (!float.IsNaN(biasOffset) && !float.IsInfinity(biasOffset)) + { + _callbacks.ApplyMipmapBias(biasOffset); + _appliedBiasOffset = biasOffset; + } + else + { + _appliedBiasOffset = 0f; + } + } + + private void DestroyFsrContext() + { + if (_fsrContext != null) + { + _fsrContext.Destroy(); + _fsrContext = null; + } + + // Undo the current mipmap bias offset + if (!float.IsNaN(_appliedBiasOffset) && !float.IsInfinity(_appliedBiasOffset) && _appliedBiasOffset != 0f) + { + _callbacks.ApplyMipmapBias(-_appliedBiasOffset); + _appliedBiasOffset = 0f; + } + } + + private void ApplyJitter(Camera camera) + { + // Perform custom jittering of the camera's projection matrix according to FSR2's recipe + int jitterPhaseCount = Fsr2.GetJitterPhaseCount(_renderSize.x, _displaySize.x); + Fsr2.GetJitterOffset(out float jitterX, out float jitterY, Time.frameCount, jitterPhaseCount); + + _dispatchDescription.JitterOffset = new Vector2(jitterX, jitterY); + + jitterX = 2.0f * jitterX / _renderSize.x; + jitterY = 2.0f * jitterY / _renderSize.y; + + var jitterTranslationMatrix = Matrix4x4.Translate(new Vector3(jitterX, jitterY, 0)); + camera.nonJitteredProjectionMatrix = camera.projectionMatrix; + camera.projectionMatrix = jitterTranslationMatrix * camera.nonJitteredProjectionMatrix; + camera.useJitteredProjectionMatrixForTransparentRendering = false; + + jitter = new Vector2(jitterX, jitterY); + } + + private void SetupDispatchDescription(PostProcessRenderContext context) + { + var camera = context.camera; + + // Set up the main FSR2 dispatch parameters + // The input textures are left blank here, as they get bound directly through SetGlobalTexture elsewhere in this source file + _dispatchDescription.Color = null; + _dispatchDescription.Depth = null; + _dispatchDescription.MotionVectors = null; + _dispatchDescription.Exposure = null; + _dispatchDescription.Reactive = null; + _dispatchDescription.TransparencyAndComposition = null; + + if (exposureSource == ExposureSource.Manual && exposure != null) _dispatchDescription.Exposure = exposure; + if (exposureSource == ExposureSource.Unity) _dispatchDescription.Exposure = context.autoExposureTexture; + if (reactiveMask != null) _dispatchDescription.Reactive = reactiveMask; + if (transparencyAndCompositionMask != null) _dispatchDescription.TransparencyAndComposition = transparencyAndCompositionMask; + + _dispatchDescription.Output = context.destination; + _dispatchDescription.PreExposure = preExposure; + _dispatchDescription.EnableSharpening = performSharpenPass; + _dispatchDescription.Sharpness = sharpness; + _dispatchDescription.MotionVectorScale.x = -_renderSize.x; + _dispatchDescription.MotionVectorScale.y = -_renderSize.y; + _dispatchDescription.RenderSize = _renderSize; + _dispatchDescription.InputResourceSize = _renderSize; // TODO: this may need to be maxRenderSize to support dynamic resolution + _dispatchDescription.FrameTimeDelta = Time.unscaledDeltaTime; + _dispatchDescription.CameraNear = camera.nearClipPlane; + _dispatchDescription.CameraFar = camera.farClipPlane; + _dispatchDescription.CameraFovAngleVertical = camera.fieldOfView * Mathf.Deg2Rad; + _dispatchDescription.ViewSpaceToMetersFactor = 1.0f; // 1 unit is 1 meter in Unity + _dispatchDescription.Reset = _resetHistory; + + // Set up the parameters for the optional experimental auto-TCR feature + _dispatchDescription.EnableAutoReactive = autoGenerateTransparencyAndComposition; + if (autoGenerateTransparencyAndComposition) + { + _dispatchDescription.ColorOpaqueOnly = colorOpaqueOnly; + _dispatchDescription.AutoTcThreshold = generateTransparencyAndCompositionParameters.autoTcThreshold; + _dispatchDescription.AutoTcScale = generateTransparencyAndCompositionParameters.autoTcScale; + _dispatchDescription.AutoReactiveScale = generateTransparencyAndCompositionParameters.autoReactiveScale; + _dispatchDescription.AutoReactiveMax = generateTransparencyAndCompositionParameters.autoReactiveMax; + } + + if (SystemInfo.usesReversedZBuffer) + { + // Swap the near and far clip plane distances as FSR2 expects this when using inverted depth + (_dispatchDescription.CameraNear, _dispatchDescription.CameraFar) = (_dispatchDescription.CameraFar, _dispatchDescription.CameraNear); + } + } + + private void SetupAutoReactiveDescription(PostProcessRenderContext context) + { + // Set up the parameters to auto-generate a reactive mask + _genReactiveDescription.ColorOpaqueOnly = colorOpaqueOnly; + _genReactiveDescription.ColorPreUpscale = null; + _genReactiveDescription.OutReactive = null; + _genReactiveDescription.RenderSize = _renderSize; + _genReactiveDescription.Scale = generateReactiveParameters.scale; + _genReactiveDescription.CutoffThreshold = generateReactiveParameters.cutoffThreshold; + _genReactiveDescription.BinaryValue = generateReactiveParameters.binaryValue; + _genReactiveDescription.Flags = generateReactiveParameters.flags; + } + + private class Callbacks : Fsr2CallbacksBase + { + private readonly PostProcessResources _resources; + + public Callbacks(PostProcessResources resources) + { + _resources = resources; + } + + public override ComputeShader LoadComputeShader(string name) + { + return _resources.computeShaders.FindComputeShader(name); + } + + public override void UnloadComputeShader(ComputeShader shader) + { + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs.meta new file mode 100644 index 0000000..979fe66 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/SuperResolution.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 804fb4cfea0948247a52576cc4a79609 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs new file mode 100644 index 0000000..2b9b5bd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs @@ -0,0 +1,293 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Temporal Anti-aliasing (TAA) effect. + /// + [UnityEngine.Scripting.Preserve] + [Serializable] + public sealed class TemporalAntialiasing + { + /// + /// The diameter (in texels) inside which jitter samples are spread. Smaller values result + /// in crisper but more aliased output, while larger values result in more stable but + /// blurrier output. + /// + [Tooltip("The diameter (in texels) inside which jitter samples are spread. Smaller values result in crisper but more aliased output, while larger values result in more stable, but blurrier, output.")] + [Range(0.1f, 1f)] + public float jitterSpread = 0.75f; + + /// + /// Controls the amount of sharpening applied to the color buffer. High values may introduce + /// dark-border artifacts. + /// + [Tooltip("Controls the amount of sharpening applied to the color buffer. High values may introduce dark-border artifacts.")] + [Range(0f, 3f)] + public float sharpness = 0.25f; + + /// + /// The blend coefficient for a stationary fragment. Controls the percentage of history + /// sample blended into the final color. + /// + [Tooltip("The blend coefficient for a stationary fragment. Controls the percentage of history sample blended into the final color.")] + [Range(0f, 0.99f)] + public float stationaryBlending = 0.95f; + + /// + /// The blend coefficient for a fragment with significant motion. Controls the percentage of + /// history sample blended into the final color. + /// + [Tooltip("The blend coefficient for a fragment with significant motion. Controls the percentage of history sample blended into the final color.")] + [Range(0f, 0.99f)] + public float motionBlending = 0.85f; + + /// + /// Sets a custom function that will be called to generate the jittered projection matrice. + /// + public Func jitteredMatrixFunc; + + /// + /// The current jitter amount + /// + public Vector2 jitter { get; private set; } + + enum Pass + { + SolverDilate, + SolverNoDilate + } + + readonly RenderTargetIdentifier[] m_Mrt = new RenderTargetIdentifier[2]; + bool m_ResetHistory = true; + + const int k_SampleCount = 8; + + /// + /// The current sample index. + /// + public int sampleIndex { get; private set; } + + // Ping-pong between two history textures as we can't read & write the same target in the + // same pass + const int k_NumEyes = 2; + const int k_NumHistoryTextures = 2; + readonly RenderTexture[][] m_HistoryTextures = new RenderTexture[k_NumEyes][]; + + readonly int[] m_HistoryPingPong = new int[k_NumEyes]; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// true if the effect is currently enabled and supported + public bool IsSupported() + { + return SystemInfo.supportedRenderTargetCount >= 2 + && SystemInfo.supportsMotionVectors +#if !UNITY_2017_3_OR_NEWER + && !RuntimeUtilities.isVREnabled +#endif +#if !UNITY_2023_1_OR_NEWER + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES2; +#else + ; +#endif + } + + internal DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + internal void ResetHistory() + { + m_ResetHistory = true; + } + + Vector2 GenerateRandomOffset() + { + // The variance between 0 and the actual halton sequence values reveals noticeable instability + // in Unity's shadow maps, so we avoid index 0. + var offset = new Vector2( + HaltonSeq.Get((sampleIndex & 1023) + 1, 2) - 0.5f, + HaltonSeq.Get((sampleIndex & 1023) + 1, 3) - 0.5f + ); + + if (++sampleIndex >= k_SampleCount) + sampleIndex = 0; + + return offset; + } + + /// + /// Generates a jittered projection matrix for a given camera. + /// + /// The camera to get a jittered projection matrix for. + /// A jittered projection matrix. + public Matrix4x4 GetJitteredProjectionMatrix(Camera camera) + { + Matrix4x4 cameraProj; + jitter = GenerateRandomOffset(); + jitter *= jitterSpread; + + if (jitteredMatrixFunc != null) + { + cameraProj = jitteredMatrixFunc(camera, jitter); + } + else + { + cameraProj = camera.orthographic + ? RuntimeUtilities.GetJitteredOrthographicProjectionMatrix(camera, jitter) + : RuntimeUtilities.GetJitteredPerspectiveProjectionMatrix(camera, jitter); + } + + jitter = new Vector2(jitter.x / camera.pixelWidth, jitter.y / camera.pixelHeight); + return cameraProj; + } + + /// + /// Prepares the jittered and non jittered projection matrices. + /// + /// The current post-processing context. + public void ConfigureJitteredProjectionMatrix(PostProcessRenderContext context) + { + var camera = context.camera; + camera.nonJitteredProjectionMatrix = camera.projectionMatrix; + camera.projectionMatrix = GetJitteredProjectionMatrix(camera); + camera.useJitteredProjectionMatrixForTransparentRendering = false; + } + + /// + /// Prepares the jittered and non jittered projection matrices for stereo rendering. + /// + /// The current post-processing context. + // TODO: We'll probably need to isolate most of this for SRPs + public void ConfigureStereoJitteredProjectionMatrices(PostProcessRenderContext context) + { +#if UNITY_2017_3_OR_NEWER + var camera = context.camera; + jitter = GenerateRandomOffset(); + jitter *= jitterSpread; + + for (var eye = Camera.StereoscopicEye.Left; eye <= Camera.StereoscopicEye.Right; eye++) + { + // This saves off the device generated projection matrices as non-jittered + context.camera.CopyStereoDeviceProjectionMatrixToNonJittered(eye); + var originalProj = context.camera.GetStereoNonJitteredProjectionMatrix(eye); + + // Currently no support for custom jitter func, as VR devices would need to provide + // original projection matrix as input along with jitter + var jitteredMatrix = RuntimeUtilities.GenerateJitteredProjectionMatrixFromOriginal(context, originalProj, jitter); + context.camera.SetStereoProjectionMatrix(eye, jitteredMatrix); + } + + // jitter has to be scaled for the actual eye texture size, not just the intermediate texture size + // which could be double-wide in certain stereo rendering scenarios + jitter = new Vector2(jitter.x / context.screenWidth, jitter.y / context.screenHeight); + camera.useJitteredProjectionMatrixForTransparentRendering = false; +#endif + } + + void GenerateHistoryName(RenderTexture rt, int id, PostProcessRenderContext context) + { + rt.name = "Temporal Anti-aliasing History id #" + id; + + if (context.stereoActive) + rt.name += " for eye " + context.xrActiveEye; + } + + RenderTexture CheckHistory(int id, PostProcessRenderContext context) + { + int activeEye = context.xrActiveEye; + + if (m_HistoryTextures[activeEye] == null) + m_HistoryTextures[activeEye] = new RenderTexture[k_NumHistoryTextures]; + + var rt = m_HistoryTextures[activeEye][id]; + + if (m_ResetHistory || rt == null || !rt.IsCreated()) + { + RenderTexture.ReleaseTemporary(rt); + + rt = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); + GenerateHistoryName(rt, id, context); + + rt.filterMode = FilterMode.Bilinear; + m_HistoryTextures[activeEye][id] = rt; + + context.command.BlitFullscreenTriangle(context.source, rt); + } + else if (rt.width != context.width || rt.height != context.height) + { + // On size change, simply copy the old history to the new one. This looks better + // than completely discarding the history and seeing a few aliased frames. + var rt2 = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); + GenerateHistoryName(rt2, id, context); + + rt2.filterMode = FilterMode.Bilinear; + m_HistoryTextures[activeEye][id] = rt2; + + context.command.BlitFullscreenTriangle(rt, rt2); + RenderTexture.ReleaseTemporary(rt); + } + + return m_HistoryTextures[activeEye][id]; + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.temporalAntialiasing); + + var cmd = context.command; + cmd.BeginSample("TemporalAntialiasing"); + + int pp = m_HistoryPingPong[context.xrActiveEye]; + var historyRead = CheckHistory(++pp % 2, context); + var historyWrite = CheckHistory(++pp % 2, context); + m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; + + const float kMotionAmplification = 100f * 60f; + sheet.properties.SetVector(ShaderIDs.Jitter, jitter); + sheet.properties.SetFloat(ShaderIDs.Sharpness, sharpness); + sheet.properties.SetVector(ShaderIDs.FinalBlendParameters, new Vector4(stationaryBlending, motionBlending, kMotionAmplification, 0f)); + sheet.properties.SetTexture(ShaderIDs.HistoryTex, historyRead); + + // TODO: Account for different possible RenderViewportScale value from previous frame... + + int pass = context.camera.orthographic ? (int)Pass.SolverNoDilate : (int)Pass.SolverDilate; + m_Mrt[0] = context.destination; + m_Mrt[1] = historyWrite; + + cmd.BlitFullscreenTriangle(context.source, m_Mrt, context.source, sheet, pass); + cmd.EndSample("TemporalAntialiasing"); + + m_ResetHistory = false; + } + + internal void Release() + { + if (m_HistoryTextures != null) + { + for (int i = 0; i < m_HistoryTextures.Length; i++) + { + if (m_HistoryTextures[i] == null) + continue; + + for (int j = 0; j < m_HistoryTextures[i].Length; j++) + { + RenderTexture.ReleaseTemporary(m_HistoryTextures[i][j]); + m_HistoryTextures[i][j] = null; + } + + m_HistoryTextures[i] = null; + } + } + + sampleIndex = 0; + m_HistoryPingPong[0] = 0; + m_HistoryPingPong[1] = 0; + + ResetHistory(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta new file mode 100644 index 0000000..9b76b52 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5a7fc26078c70a6469392d9775f433be +timeCreated: 1490188293 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs new file mode 100644 index 0000000..48e5c78 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs @@ -0,0 +1,125 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A list of available render modes for the Vignette effect. + /// + public enum VignetteMode + { + /// + /// This mode offers parametric controls for the position, shape and intensity of the Vignette. + /// + Classic, + + /// + /// This mode multiplies a custom texture mask over the screen to create a Vignette effect. + /// + Masked + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class VignetteModeParameter : ParameterOverride { } + + /// + /// This class holds settings for the Vignette effect. + /// + [Serializable] + [PostProcess(typeof(VignetteRenderer), "Unity/Vignette")] + public sealed class Vignette : PostProcessEffectSettings + { + /// + /// Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask. + /// + [Tooltip("Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask.")] + public VignetteModeParameter mode = new VignetteModeParameter { value = VignetteMode.Classic }; + + /// + /// The color to use to tint the vignette. + /// + [Tooltip("Vignette color.")] + public ColorParameter color = new ColorParameter { value = new Color(0f, 0f, 0f, 1f) }; + + /// + /// Sets the vignette center point (screen center is [0.5,0.5]). + /// + [Tooltip("Sets the vignette center point (screen center is [0.5, 0.5]).")] + public Vector2Parameter center = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; + + /// + /// The amount of vignetting on screen. + /// + [Range(0f, 1f), Tooltip("Amount of vignetting on screen.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// The smoothness of the vignette borders. + /// + [Range(0.01f, 1f), Tooltip("Smoothness of the vignette borders.")] + public FloatParameter smoothness = new FloatParameter { value = 0.2f }; + + /// + /// Lower values will make a square-ish vignette. + /// + [Range(0f, 1f), Tooltip("Lower values will make a square-ish vignette.")] + public FloatParameter roundness = new FloatParameter { value = 1f }; + + /// + /// Should the vignette be perfectly round or be dependent on the current aspect ratio? + /// + [Tooltip("Set to true to mark the vignette to be perfectly round. False will make its shape dependent on the current aspect ratio.")] + public BoolParameter rounded = new BoolParameter { value = false }; + + /// + /// A black and white mask to use as a vignette. + /// + [Tooltip("A black and white mask to use as a vignette.")] + public TextureParameter mask = new TextureParameter { value = null }; + + /// + /// Mask opacity. + /// + [Range(0f, 1f), Tooltip("Mask opacity.")] + public FloatParameter opacity = new FloatParameter { value = 1f }; + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && ((mode.value == VignetteMode.Classic && intensity.value > 0f) + || (mode.value == VignetteMode.Masked && opacity.value > 0f && mask.value != null)); + } + } + + [UnityEngine.Scripting.Preserve] + internal sealed class VignetteRenderer : PostProcessEffectRenderer + { + public override void Render(PostProcessRenderContext context) + { + var sheet = context.uberSheet; + sheet.EnableKeyword("VIGNETTE"); + sheet.properties.SetColor(ShaderIDs.Vignette_Color, settings.color.value); + + if (settings.mode == VignetteMode.Classic) + { + sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 0f); + sheet.properties.SetVector(ShaderIDs.Vignette_Center, settings.center.value); + float roundness = (1f - settings.roundness.value) * 6f + settings.roundness.value; + sheet.properties.SetVector(ShaderIDs.Vignette_Settings, new Vector4(settings.intensity.value * 3f, settings.smoothness.value * 5f, roundness, settings.rounded.value ? 1f : 0f)); + } + else // Masked + { + sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 1f); + sheet.properties.SetTexture(ShaderIDs.Vignette_Mask, settings.mask.value); + sheet.properties.SetFloat(ShaderIDs.Vignette_Opacity, Mathf.Clamp01(settings.opacity.value)); + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs.meta new file mode 100644 index 0000000..f2f06ce --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Effects/Vignette.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 40b924e2dad56384a8df2a1e111bb675 +timeCreated: 1491826542 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2.meta new file mode 100644 index 0000000..1579387 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e2d87f36f288024cb500a20acaae11e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs new file mode 100644 index 0000000..772cfc3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs @@ -0,0 +1,289 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using System; +using System.Runtime.InteropServices; +using UnityEngine; +using UnityEngine.Rendering; + +namespace FidelityFX +{ + /// + /// A collection of helper functions and data structures required by the FSR2 process. + /// + public static class Fsr2 + { + /// + /// Creates a new FSR2 context with standard parameters that are appropriate for the current platform. + /// + public static Fsr2Context CreateContext(Vector2Int displaySize, Vector2Int maxRenderSize, IFsr2Callbacks callbacks, InitializationFlags flags = 0) + { + if (SystemInfo.usesReversedZBuffer) + flags |= InitializationFlags.EnableDepthInverted; + else + flags &= ~InitializationFlags.EnableDepthInverted; + +#if UNITY_EDITOR || DEVELOPMENT_BUILD + flags |= InitializationFlags.EnableDebugChecking; +#endif + + Debug.Log($"Setting up FSR2 with render size: {maxRenderSize.x}x{maxRenderSize.y}, display size: {displaySize.x}x{displaySize.y}, flags: {flags}"); + + var contextDescription = new ContextDescription + { + Flags = flags, + DisplaySize = displaySize, + MaxRenderSize = maxRenderSize, + Callbacks = callbacks, + }; + + var context = new Fsr2Context(); + context.Create(contextDescription); + return context; + } + + public static float GetUpscaleRatioFromQualityMode(QualityMode qualityMode) + { + switch (qualityMode) + { + case QualityMode.UltraQuality: + return 1.2f; + case QualityMode.Quality: + return 1.5f; + case QualityMode.Balanced: + return 1.7f; + case QualityMode.Performance: + return 2.0f; + case QualityMode.UltraPerformance: + return 3.0f; + default: + return 1.0f; + } + } + + public static void GetRenderResolutionFromQualityMode( + out int renderWidth, out int renderHeight, + int displayWidth, int displayHeight, QualityMode qualityMode) + { + float ratio = GetUpscaleRatioFromQualityMode(qualityMode); + renderWidth = Mathf.RoundToInt(displayWidth / ratio); + renderHeight = Mathf.RoundToInt(displayHeight / ratio); + } + + public static float GetMipmapBiasOffset(int renderWidth, int displayWidth) + { + return Mathf.Log((float)renderWidth / displayWidth, 2.0f) - 1.0f; + } + + public static int GetJitterPhaseCount(int renderWidth, int displayWidth) + { + const float basePhaseCount = 8.0f; + int jitterPhaseCount = (int)(basePhaseCount * Mathf.Pow((float)displayWidth / renderWidth, 2.0f)); + return jitterPhaseCount; + } + + public static void GetJitterOffset(out float outX, out float outY, int index, int phaseCount) + { + outX = Halton((index % phaseCount) + 1, 2) - 0.5f; + outY = Halton((index % phaseCount) + 1, 3) - 0.5f; + } + + // Calculate halton number for index and base. + private static float Halton(int index, int @base) + { + float f = 1.0f, result = 0.0f; + + for (int currentIndex = index; currentIndex > 0;) { + + f /= @base; + result += f * (currentIndex % @base); + currentIndex = (int)Mathf.Floor((float)currentIndex / @base); + } + + return result; + } + + public static float Lanczos2(float value) + { + return Mathf.Abs(value) < Mathf.Epsilon ? 1.0f : Mathf.Sin(Mathf.PI * value) / (Mathf.PI * value) * (Mathf.Sin(0.5f * Mathf.PI * value) / (0.5f * Mathf.PI * value)); + } + + public enum QualityMode + { + UltraQuality = 0, + Quality = 1, + Balanced = 2, + Performance = 3, + UltraPerformance = 4, + } + + [Flags] + public enum InitializationFlags + { + EnableHighDynamicRange = 1 << 0, + EnableDisplayResolutionMotionVectors = 1 << 1, + EnableMotionVectorsJitterCancellation = 1 << 2, + EnableDepthInverted = 1 << 3, + EnableDepthInfinite = 1 << 4, + EnableAutoExposure = 1 << 5, + EnableDynamicResolution = 1 << 6, + EnableFP16Usage = 1 << 7, + EnableDebugChecking = 1 << 8, + } + + public struct ContextDescription + { + public InitializationFlags Flags; + public Vector2Int MaxRenderSize; + public Vector2Int DisplaySize; + public IFsr2Callbacks Callbacks; + } + + /// + /// The input and output resources are all optional. If they are null, the Fsr2Context won't try to bind them to any shaders. + /// This allows for customized and more efficient resource management outside of Fsr2Context, tailored to the specific scenario. + /// + public class DispatchDescription + { + public RenderTargetIdentifier? Color; + public RenderTargetIdentifier? Depth; + public RenderTargetIdentifier? MotionVectors; + public RenderTargetIdentifier? Exposure; + public RenderTargetIdentifier? Reactive; + public RenderTargetIdentifier? TransparencyAndComposition; + public RenderTargetIdentifier? Output; + public Vector2 JitterOffset; + public Vector2 MotionVectorScale; + public Vector2Int RenderSize; + public Vector2Int InputResourceSize; + public bool EnableSharpening; + public float Sharpness; + public float FrameTimeDelta; // in seconds + public float PreExposure; + public bool Reset; + public float CameraNear; + public float CameraFar; + public float CameraFovAngleVertical; + public float ViewSpaceToMetersFactor; + + // EXPERIMENTAL reactive mask generation parameters + public bool EnableAutoReactive; + public RenderTargetIdentifier? ColorOpaqueOnly; + public float AutoTcThreshold = 0.05f; + public float AutoTcScale = 1.0f; + public float AutoReactiveScale = 5.0f; + public float AutoReactiveMax = 0.9f; + } + + /// + /// The default values for Scale, CutoffThreshold, BinaryValue and Flags were taken from the FSR2 demo project. + /// + public class GenerateReactiveDescription + { + public RenderTargetIdentifier? ColorOpaqueOnly; + public RenderTargetIdentifier? ColorPreUpscale; + public RenderTargetIdentifier? OutReactive; + public Vector2Int RenderSize; + public float Scale = 0.5f; + public float CutoffThreshold = 0.2f; + public float BinaryValue = 0.9f; + public GenerateReactiveFlags Flags = GenerateReactiveFlags.ApplyTonemap | GenerateReactiveFlags.ApplyThreshold | GenerateReactiveFlags.UseComponentsMax; + } + + [Flags] + public enum GenerateReactiveFlags + { + ApplyTonemap = 1 << 0, + ApplyInverseTonemap = 1 << 1, + ApplyThreshold = 1 << 2, + UseComponentsMax = 1 << 3, + } + + [Serializable, StructLayout(LayoutKind.Sequential)] + internal struct Fsr2Constants + { + public Vector2Int renderSize; + public Vector2Int maxRenderSize; + public Vector2Int displaySize; + public Vector2Int inputColorResourceDimensions; + public Vector2Int lumaMipDimensions; + public int lumaMipLevelToUse; + public int frameIndex; + + public Vector4 deviceToViewDepth; + public Vector2 jitterOffset; + public Vector2 motionVectorScale; + public Vector2 downscaleFactor; + public Vector2 motionVectorJitterCancellation; + public float preExposure; + public float previousFramePreExposure; + public float tanHalfFOV; + public float jitterPhaseCount; + public float deltaTime; + public float dynamicResChangeFactor; + public float viewSpaceToMetersFactor; + + public int dummy; + } + + [Serializable, StructLayout(LayoutKind.Sequential)] + internal struct SpdConstants + { + public uint mips; + public uint numWorkGroups; + public uint workGroupOffsetX, workGroupOffsetY; + public uint renderSizeX, renderSizeY; + } + + [Serializable, StructLayout(LayoutKind.Sequential)] + internal struct GenerateReactiveConstants + { + public float scale; + public float threshold; + public float binaryValue; + public uint flags; + } + + [Serializable, StructLayout(LayoutKind.Sequential)] + internal struct GenerateReactiveConstants2 + { + public float autoTcThreshold; + public float autoTcScale; + public float autoReactiveScale; + public float autoReactiveMax; + } + + [Serializable, StructLayout(LayoutKind.Sequential)] + internal struct RcasConstants + { + public RcasConstants(uint sharpness, uint halfSharp) + { + this.sharpness = sharpness; + this.halfSharp = halfSharp; + dummy0 = dummy1 = 0; + } + + public readonly uint sharpness; + public readonly uint halfSharp; + public readonly uint dummy0; + public readonly uint dummy1; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs.meta new file mode 100644 index 0000000..10fe120 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 742d52dc87714f0d93f3b59719859dff +timeCreated: 1673441954 \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs new file mode 100644 index 0000000..cc384f9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs @@ -0,0 +1,85 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using UnityEngine; + +namespace FidelityFX +{ + /// + /// A collection of callbacks required by the FSR2 process. + /// This allows some customization by the game dev on how to integrate FSR2 into their own game setup. + /// + public interface IFsr2Callbacks + { + Shader LoadShader(string name); + void UnloadShader(Shader shader); + ComputeShader LoadComputeShader(string name); + void UnloadComputeShader(ComputeShader shader); + + /// + /// Apply a mipmap bias to in-game textures to prevent them from becoming blurry as the internal rendering resolution lowers. + /// This will need to be customized on a per-game basis, as there is no clear universal way to determine what are "in-game" textures. + /// The default implementation will simply apply a mipmap bias to all 2D textures, which will include things like UI textures and which might miss things like terrain texture arrays. + /// + /// Depending on how your game organizes its assets, you will want to create a filter that more specifically selects the textures that need to have this mipmap bias applied. + /// You may also want to store the bias offset value and apply it to any assets that are loaded in on demand. + /// + void ApplyMipmapBias(float biasOffset); + } + + /// + /// Default implementation of IFsr2Callbacks using simple Resources calls. + /// These are fine for testing but a proper game will want to extend and override these methods. + /// + public class Fsr2CallbacksBase: IFsr2Callbacks + { + protected float CurrentBiasOffset = 0; + + public virtual Shader LoadShader(string name) + { + return Resources.Load(name); + } + + public virtual void UnloadShader(Shader shader) + { + Resources.UnloadAsset(shader); + } + + public virtual ComputeShader LoadComputeShader(string name) + { + return Resources.Load(name); + } + + public virtual void UnloadComputeShader(ComputeShader shader) + { + Resources.UnloadAsset(shader); + } + + public virtual void ApplyMipmapBias(float biasOffset) + { + CurrentBiasOffset += biasOffset; + + foreach (var texture in Resources.FindObjectsOfTypeAll()) + { + texture.mipMapBias += biasOffset; + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs.meta new file mode 100644 index 0000000..abc4d96 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Callbacks.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5906deeb6ec2854449bf33db2e71a046 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs new file mode 100644 index 0000000..c8b17c1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs @@ -0,0 +1,607 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; +using UnityEngine; +using UnityEngine.Rendering; + +namespace FidelityFX +{ + /// + /// This class loosely matches the FfxFsr2Context struct from the original FSR2 codebase. + /// It manages the various resources and compute passes required by the FSR2 process. + /// Note that this class does not know anything about Unity render pipelines; all it knows is CommandBuffers and RenderTargetIdentifiers. + /// This should make it suitable for integration with any of the available Unity render pipelines. + /// + public class Fsr2Context + { + private const int MaxQueuedFrames = 16; + + private Fsr2.ContextDescription _contextDescription; + private CommandBuffer _commandBuffer; + + private Fsr2Pipeline _depthClipPipeline; + private Fsr2Pipeline _reconstructPreviousDepthPipeline; + private Fsr2Pipeline _lockPipeline; + private Fsr2Pipeline _accumulatePipeline; + private Fsr2Pipeline _rcasPipeline; + private Fsr2Pipeline _computeLuminancePyramidPipeline; + private Fsr2Pipeline _generateReactivePipeline; + private Fsr2Pipeline _tcrAutogeneratePipeline; + + private readonly Fsr2Resources _resources = new Fsr2Resources(); + + private ComputeBuffer _fsr2ConstantsBuffer; + private readonly Fsr2.Fsr2Constants[] _fsr2ConstantsArray = { new Fsr2.Fsr2Constants() }; + private ref Fsr2.Fsr2Constants Constants => ref _fsr2ConstantsArray[0]; + + private ComputeBuffer _spdConstantsBuffer; + private readonly Fsr2.SpdConstants[] _spdConstantsArray = { new Fsr2.SpdConstants() }; + private ref Fsr2.SpdConstants SpdConsts => ref _spdConstantsArray[0]; + + private ComputeBuffer _rcasConstantsBuffer; + private readonly Fsr2.RcasConstants[] _rcasConstantsArray = new Fsr2.RcasConstants[1]; + private ref Fsr2.RcasConstants RcasConsts => ref _rcasConstantsArray[0]; + + private ComputeBuffer _generateReactiveConstantsBuffer; + private readonly Fsr2.GenerateReactiveConstants[] _generateReactiveConstantsArray = { new Fsr2.GenerateReactiveConstants() }; + private ref Fsr2.GenerateReactiveConstants GenReactiveConsts => ref _generateReactiveConstantsArray[0]; + + private ComputeBuffer _tcrAutogenerateConstantsBuffer; + private readonly Fsr2.GenerateReactiveConstants2[] _tcrAutogenerateConstantsArray = { new Fsr2.GenerateReactiveConstants2() }; + private ref Fsr2.GenerateReactiveConstants2 TcrAutoGenConsts => ref _tcrAutogenerateConstantsArray[0]; + + private bool _firstExecution; + private Vector2 _previousJitterOffset; + private int _resourceFrameIndex; + + public void Create(Fsr2.ContextDescription contextDescription) + { + _contextDescription = contextDescription; + _commandBuffer = new CommandBuffer { name = "FSR2" }; + + _fsr2ConstantsBuffer = CreateConstantBuffer(); + _spdConstantsBuffer = CreateConstantBuffer(); + _rcasConstantsBuffer = CreateConstantBuffer(); + _generateReactiveConstantsBuffer = CreateConstantBuffer(); + _tcrAutogenerateConstantsBuffer = CreateConstantBuffer(); + + // Set defaults + _firstExecution = true; + _resourceFrameIndex = 0; + + Constants.displaySize = _contextDescription.DisplaySize; + + _resources.Create(_contextDescription); + CreatePipelines(); + } + + private void CreatePipelines() + { + _computeLuminancePyramidPipeline = new Fsr2ComputeLuminancePyramidPipeline(_contextDescription, _resources, _fsr2ConstantsBuffer, _spdConstantsBuffer); + _reconstructPreviousDepthPipeline = new Fsr2ReconstructPreviousDepthPipeline(_contextDescription, _resources, _fsr2ConstantsBuffer); + _depthClipPipeline = new Fsr2DepthClipPipeline(_contextDescription, _resources, _fsr2ConstantsBuffer); + _lockPipeline = new Fsr2LockPipeline(_contextDescription, _resources, _fsr2ConstantsBuffer); + _accumulatePipeline = new Fsr2AccumulatePipeline(_contextDescription, _resources, _fsr2ConstantsBuffer); + _rcasPipeline = new Fsr2RcasPipeline(_contextDescription, _resources, _fsr2ConstantsBuffer, _rcasConstantsBuffer); + _generateReactivePipeline = new Fsr2GenerateReactivePipeline(_contextDescription, _resources, _generateReactiveConstantsBuffer); + _tcrAutogeneratePipeline = new Fsr2TcrAutogeneratePipeline(_contextDescription, _resources, _fsr2ConstantsBuffer, _tcrAutogenerateConstantsBuffer); + } + + public void Destroy() + { + DestroyPipeline(ref _tcrAutogeneratePipeline); + DestroyPipeline(ref _generateReactivePipeline); + DestroyPipeline(ref _computeLuminancePyramidPipeline); + DestroyPipeline(ref _rcasPipeline); + DestroyPipeline(ref _accumulatePipeline); + DestroyPipeline(ref _lockPipeline); + DestroyPipeline(ref _reconstructPreviousDepthPipeline); + DestroyPipeline(ref _depthClipPipeline); + + _resources.Destroy(); + + DestroyConstantBuffer(ref _tcrAutogenerateConstantsBuffer); + DestroyConstantBuffer(ref _generateReactiveConstantsBuffer); + DestroyConstantBuffer(ref _rcasConstantsBuffer); + DestroyConstantBuffer(ref _spdConstantsBuffer); + DestroyConstantBuffer(ref _fsr2ConstantsBuffer); + + _commandBuffer.Dispose(); + _commandBuffer = null; + } + + public void Dispatch(Fsr2.DispatchDescription dispatchParams) + { + _commandBuffer.Clear(); + Dispatch(dispatchParams, _commandBuffer); + Graphics.ExecuteCommandBuffer(_commandBuffer); + } + + public void Dispatch(Fsr2.DispatchDescription dispatchParams, CommandBuffer commandBuffer) + { + if ((_contextDescription.Flags & Fsr2.InitializationFlags.EnableDebugChecking) != 0) + { + DebugCheckDispatch(dispatchParams); + } + + if (_firstExecution) + { + commandBuffer.SetRenderTarget(_resources.LockStatus[0]); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + commandBuffer.SetRenderTarget(_resources.LockStatus[1]); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + + // Reset atomic counter to 0 + commandBuffer.SetRenderTarget(_resources.SpdAtomicCounter); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + } + + int frameIndex = _resourceFrameIndex % 2; + bool resetAccumulation = dispatchParams.Reset || _firstExecution; + _firstExecution = false; + + // If auto exposure is enabled use the auto exposure SRV, otherwise what the app sends + if ((_contextDescription.Flags & Fsr2.InitializationFlags.EnableAutoExposure) != 0) + dispatchParams.Exposure = _resources.AutoExposure; + else if (dispatchParams.Exposure == null) + dispatchParams.Exposure = _resources.DefaultExposure; + + if (dispatchParams.EnableAutoReactive) + { + // Create the auto-TCR resources only when we need them + if (_resources.AutoReactive == null) + _resources.CreateTcrAutogenResources(_contextDescription); + + if (resetAccumulation) + commandBuffer.Blit(_resources.PrevPreAlpha[frameIndex ^ 1], dispatchParams.ColorOpaqueOnly ?? Fsr2ShaderIDs.SrvOpaqueOnly); + } + else if (_resources.AutoReactive != null) + { + // Destroy the auto-TCR resources if we don't use the feature + _resources.DestroyTcrAutogenResources(); + } + + if (dispatchParams.Reactive == null) dispatchParams.Reactive = _resources.DefaultReactive; + if (dispatchParams.TransparencyAndComposition == null) dispatchParams.TransparencyAndComposition = _resources.DefaultReactive; + Fsr2Resources.CreateAliasableResources(commandBuffer, _contextDescription, dispatchParams); + + SetupConstants(dispatchParams, resetAccumulation); + + // Reactive mask bias + const int threadGroupWorkRegionDim = 8; + int dispatchSrcX = (Constants.renderSize.x + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + int dispatchSrcY = (Constants.renderSize.y + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + int dispatchDstX = (_contextDescription.DisplaySize.x + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + int dispatchDstY = (_contextDescription.DisplaySize.y + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + + // Clear reconstructed depth for max depth store + if (resetAccumulation) + { + commandBuffer.SetRenderTarget(_resources.LockStatus[frameIndex ^ 1]); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + + commandBuffer.SetRenderTarget(_resources.InternalUpscaled[frameIndex ^ 1]); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + + commandBuffer.SetRenderTarget(_resources.SceneLuminance); + commandBuffer.ClearRenderTarget(false, true, Color.clear); + + // Auto exposure always used to track luma changes in locking logic + commandBuffer.SetRenderTarget(_resources.AutoExposure); + commandBuffer.ClearRenderTarget(false, true, new Color(-1f, 1e8f, 0f, 0f)); + } + + // Auto exposure + SetupSpdConstants(dispatchParams, out var dispatchThreadGroupCount); + + // Initialize constant buffers data + _fsr2ConstantsBuffer.SetData(_fsr2ConstantsArray); + _spdConstantsBuffer.SetData(_spdConstantsArray); + + // Auto reactive + if (dispatchParams.EnableAutoReactive) + { + GenerateTransparencyCompositionReactive(dispatchParams, commandBuffer, frameIndex); + dispatchParams.Reactive = _resources.AutoReactive; + dispatchParams.TransparencyAndComposition = _resources.AutoComposition; + } + + // Compute luminance pyramid + _computeLuminancePyramidPipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchThreadGroupCount.x, dispatchThreadGroupCount.y); + + // Reconstruct previous depth + _reconstructPreviousDepthPipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchSrcX, dispatchSrcY); + + // Depth clip + _depthClipPipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchSrcX, dispatchSrcY); + + // Create locks + _lockPipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchSrcX, dispatchSrcY); + + // Accumulate + _accumulatePipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchDstX, dispatchDstY); + + if (dispatchParams.EnableSharpening) + { + // Compute the constants + SetupRcasConstants(dispatchParams); + _rcasConstantsBuffer.SetData(_rcasConstantsArray); + + // Dispatch RCAS + const int threadGroupWorkRegionDimRcas = 16; + int threadGroupsX = (Screen.width + threadGroupWorkRegionDimRcas - 1) / threadGroupWorkRegionDimRcas; + int threadGroupsY = (Screen.height + threadGroupWorkRegionDimRcas - 1) / threadGroupWorkRegionDimRcas; + _rcasPipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, threadGroupsX, threadGroupsY); + } + + _resourceFrameIndex = (_resourceFrameIndex + 1) % MaxQueuedFrames; + + Fsr2Resources.DestroyAliasableResources(commandBuffer); + } + + public void GenerateReactiveMask(Fsr2.GenerateReactiveDescription dispatchParams) + { + _commandBuffer.Clear(); + GenerateReactiveMask(dispatchParams, _commandBuffer); + Graphics.ExecuteCommandBuffer(_commandBuffer); + } + + public void GenerateReactiveMask(Fsr2.GenerateReactiveDescription dispatchParams, CommandBuffer commandBuffer) + { + const int threadGroupWorkRegionDim = 8; + int dispatchSrcX = (dispatchParams.RenderSize.x + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + int dispatchSrcY = (dispatchParams.RenderSize.y + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + + GenReactiveConsts.scale = dispatchParams.Scale; + GenReactiveConsts.threshold = dispatchParams.CutoffThreshold; + GenReactiveConsts.binaryValue = dispatchParams.BinaryValue; + GenReactiveConsts.flags = (uint)dispatchParams.Flags; + _generateReactiveConstantsBuffer.SetData(_generateReactiveConstantsArray); + + ((Fsr2GenerateReactivePipeline)_generateReactivePipeline).ScheduleDispatch(commandBuffer, dispatchParams, dispatchSrcX, dispatchSrcY); + } + + private void GenerateTransparencyCompositionReactive(Fsr2.DispatchDescription dispatchParams, CommandBuffer commandBuffer, int frameIndex) + { + const int threadGroupWorkRegionDim = 8; + int dispatchSrcX = (dispatchParams.RenderSize.x + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + int dispatchSrcY = (dispatchParams.RenderSize.y + (threadGroupWorkRegionDim - 1)) / threadGroupWorkRegionDim; + + TcrAutoGenConsts.autoTcThreshold = dispatchParams.AutoTcThreshold; + TcrAutoGenConsts.autoTcScale = dispatchParams.AutoTcScale; + TcrAutoGenConsts.autoReactiveScale = dispatchParams.AutoReactiveScale; + TcrAutoGenConsts.autoReactiveMax = dispatchParams.AutoReactiveMax; + _tcrAutogenerateConstantsBuffer.SetData(_tcrAutogenerateConstantsArray); + + _tcrAutogeneratePipeline.ScheduleDispatch(commandBuffer, dispatchParams, frameIndex, dispatchSrcX, dispatchSrcY); + } + + private void SetupConstants(Fsr2.DispatchDescription dispatchParams, bool resetAccumulation) + { + ref Fsr2.Fsr2Constants constants = ref Constants; + + constants.jitterOffset = dispatchParams.JitterOffset; + constants.renderSize = dispatchParams.RenderSize; + constants.maxRenderSize = _contextDescription.MaxRenderSize; + constants.inputColorResourceDimensions = dispatchParams.InputResourceSize; + + // Compute the horizontal FOV for the shader from the vertical one + float aspectRatio = (float)dispatchParams.RenderSize.x / dispatchParams.RenderSize.y; + float cameraAngleHorizontal = Mathf.Atan(Mathf.Tan(dispatchParams.CameraFovAngleVertical / 2.0f) * aspectRatio) * 2.0f; + constants.tanHalfFOV = Mathf.Tan(cameraAngleHorizontal * 0.5f); + constants.viewSpaceToMetersFactor = (dispatchParams.ViewSpaceToMetersFactor > 0.0f) ? dispatchParams.ViewSpaceToMetersFactor : 1.0f; + + // Compute params to enable device depth to view space depth computation in shader + constants.deviceToViewDepth = SetupDeviceDepthToViewSpaceDepthParams(dispatchParams); + + // To be updated if resource is larger than the actual image size + constants.downscaleFactor = new Vector2((float)constants.renderSize.x / _contextDescription.DisplaySize.x, (float)constants.renderSize.y / _contextDescription.DisplaySize.y); + constants.previousFramePreExposure = constants.preExposure; + constants.preExposure = (dispatchParams.PreExposure != 0) ? dispatchParams.PreExposure : 1.0f; + + // Motion vector data + Vector2Int motionVectorsTargetSize = (_contextDescription.Flags & Fsr2.InitializationFlags.EnableDisplayResolutionMotionVectors) != 0 ? constants.displaySize : constants.renderSize; + constants.motionVectorScale = dispatchParams.MotionVectorScale / motionVectorsTargetSize; + + // Compute jitter cancellation + if ((_contextDescription.Flags & Fsr2.InitializationFlags.EnableMotionVectorsJitterCancellation) != 0) + { + constants.motionVectorJitterCancellation = (_previousJitterOffset - constants.jitterOffset) / motionVectorsTargetSize; + _previousJitterOffset = constants.jitterOffset; + } + + int jitterPhaseCount = Fsr2.GetJitterPhaseCount(dispatchParams.RenderSize.x, _contextDescription.DisplaySize.x); + if (resetAccumulation || constants.jitterPhaseCount == 0) + { + constants.jitterPhaseCount = jitterPhaseCount; + } + else + { + int jitterPhaseCountDelta = (int)(jitterPhaseCount - constants.jitterPhaseCount); + if (jitterPhaseCountDelta > 0) + constants.jitterPhaseCount++; + else if (jitterPhaseCountDelta < 0) + constants.jitterPhaseCount--; + } + + // Convert delta time to seconds and clamp to [0, 1] + constants.deltaTime = Mathf.Clamp01(dispatchParams.FrameTimeDelta); + + if (resetAccumulation) + constants.frameIndex = 0; + else + constants.frameIndex++; + + // Shading change usage of the SPD mip levels + constants.lumaMipLevelToUse = Fsr2Pipeline.ShadingChangeMipLevel; + + float mipDiv = 2 << constants.lumaMipLevelToUse; + constants.lumaMipDimensions.x = (int)(constants.maxRenderSize.x / mipDiv); + constants.lumaMipDimensions.y = (int)(constants.maxRenderSize.y / mipDiv); + } + + private Vector4 SetupDeviceDepthToViewSpaceDepthParams(Fsr2.DispatchDescription dispatchParams) + { + bool inverted = (_contextDescription.Flags & Fsr2.InitializationFlags.EnableDepthInverted) != 0; + bool infinite = (_contextDescription.Flags & Fsr2.InitializationFlags.EnableDepthInfinite) != 0; + + // make sure it has no impact if near and far plane values are swapped in dispatch params + // the flags "inverted" and "infinite" will decide what transform to use + float min = Mathf.Min(dispatchParams.CameraNear, dispatchParams.CameraFar); + float max = Mathf.Max(dispatchParams.CameraNear, dispatchParams.CameraFar); + + if (inverted) + { + (min, max) = (max, min); + } + + float q = max / (min - max); + float d = -1.0f; + + Vector4 matrixElemC = new Vector4(q, -1.0f - Mathf.Epsilon, q, 0.0f + Mathf.Epsilon); + Vector4 matrixElemE = new Vector4(q * min, -min - Mathf.Epsilon, q * min, max); + + // Revert x and y coords + float aspect = (float)dispatchParams.RenderSize.x / dispatchParams.RenderSize.y; + float cotHalfFovY = Mathf.Cos(0.5f * dispatchParams.CameraFovAngleVertical) / Mathf.Sin(0.5f * dispatchParams.CameraFovAngleVertical); + + int matrixIndex = (inverted ? 2 : 0) + (infinite ? 1 : 0); + return new Vector4( + d * matrixElemC[matrixIndex], + matrixElemE[matrixIndex], + aspect / cotHalfFovY, + 1.0f / cotHalfFovY); + } + + private void SetupRcasConstants(Fsr2.DispatchDescription dispatchParams) + { + int sharpnessIndex = Mathf.RoundToInt(Mathf.Clamp01(dispatchParams.Sharpness) * (RcasConfigs.Count - 1)); + RcasConsts = RcasConfigs[sharpnessIndex]; + } + + private void SetupSpdConstants(Fsr2.DispatchDescription dispatchParams, out Vector2Int dispatchThreadGroupCount) + { + RectInt rectInfo = new RectInt(0, 0, dispatchParams.RenderSize.x, dispatchParams.RenderSize.y); + SpdSetup(rectInfo, out dispatchThreadGroupCount, out var workGroupOffset, out var numWorkGroupsAndMips); + + // Downsample + ref Fsr2.SpdConstants spdConstants = ref SpdConsts; + spdConstants.numWorkGroups = (uint)numWorkGroupsAndMips.x; + spdConstants.mips = (uint)numWorkGroupsAndMips.y; + spdConstants.workGroupOffsetX = (uint)workGroupOffset.x; + spdConstants.workGroupOffsetY = (uint)workGroupOffset.y; + spdConstants.renderSizeX = (uint)dispatchParams.RenderSize.x; + spdConstants.renderSizeY = (uint)dispatchParams.RenderSize.y; + } + + private static void SpdSetup(RectInt rectInfo, out Vector2Int dispatchThreadGroupCount, out Vector2Int workGroupOffset, out Vector2Int numWorkGroupsAndMips, int mips = -1) + { + workGroupOffset = new Vector2Int(rectInfo.x / 64, rectInfo.y / 64); + + int endIndexX = (rectInfo.x + rectInfo.width - 1) / 64; + int endIndexY = (rectInfo.y + rectInfo.height - 1) / 64; + + dispatchThreadGroupCount = new Vector2Int(endIndexX + 1 - workGroupOffset.x, endIndexY + 1 - workGroupOffset.y); + + numWorkGroupsAndMips = new Vector2Int(dispatchThreadGroupCount.x * dispatchThreadGroupCount.y, mips); + if (mips < 0) + { + float resolution = Math.Max(rectInfo.width, rectInfo.height); + numWorkGroupsAndMips.y = Math.Min(Mathf.FloorToInt(Mathf.Log(resolution, 2.0f)), 12); + } + } + + private void DebugCheckDispatch(Fsr2.DispatchDescription dispatchParams) + { + // Global texture binding may be queued as part of the command list, which is why we check these after running the process at least once + if (!_firstExecution && !dispatchParams.Reset) + { + if (!dispatchParams.Color.HasValue && Shader.GetGlobalTexture(Fsr2ShaderIDs.SrvInputColor) == null) + { + Debug.LogError("Color resource is null"); + } + + if (!dispatchParams.Depth.HasValue && Shader.GetGlobalTexture(Fsr2ShaderIDs.SrvInputDepth) == null) + { + Debug.LogError("Depth resource is null"); + } + + if (!dispatchParams.MotionVectors.HasValue && Shader.GetGlobalTexture(Fsr2ShaderIDs.SrvInputMotionVectors) == null) + { + Debug.LogError("MotionVectors resource is null"); + } + + if (!dispatchParams.Output.HasValue && Shader.GetGlobalTexture(Fsr2ShaderIDs.UavUpscaledOutput) == null) + { + Debug.LogError("Output resource is null"); + } + } + + if (dispatchParams.Exposure.HasValue && (_contextDescription.Flags & Fsr2.InitializationFlags.EnableAutoExposure) != 0) + { + Debug.LogWarning("Exposure resource provided, however auto exposure flag is present"); + } + + if (Mathf.Abs(dispatchParams.JitterOffset.x) > 1.0f || Mathf.Abs(dispatchParams.JitterOffset.y) > 1.0f) + { + Debug.LogWarning("JitterOffset contains value outside of expected range [-1.0, 1.0]"); + } + + if (dispatchParams.MotionVectorScale.x > _contextDescription.MaxRenderSize.x || dispatchParams.MotionVectorScale.y > _contextDescription.MaxRenderSize.y) + { + Debug.LogWarning("MotionVectorScale contains scale value greater than MaxRenderSize"); + } + + if (dispatchParams.MotionVectorScale.x == 0.0f || dispatchParams.MotionVectorScale.y == 0.0f) + { + Debug.LogWarning("MotionVectorScale contains zero scale value"); + } + + if (dispatchParams.RenderSize.x > _contextDescription.MaxRenderSize.x || dispatchParams.RenderSize.y > _contextDescription.MaxRenderSize.y) + { + Debug.LogWarning("RenderSize is greater than context MaxRenderSize"); + } + + if (dispatchParams.RenderSize.x == 0 || dispatchParams.RenderSize.y == 0) + { + Debug.LogWarning("RenderSize contains zero dimension"); + } + + if (dispatchParams.FrameTimeDelta > 1.0f) + { + Debug.LogWarning("FrameTimeDelta is greater than 1.0f - this value should be seconds (~0.0166 for 60fps)"); + } + + if (dispatchParams.PreExposure == 0.0f) + { + Debug.LogError("PreExposure provided as 0.0f which is invalid"); + } + + bool infiniteDepth = (_contextDescription.Flags & Fsr2.InitializationFlags.EnableDepthInfinite) != 0; + bool inverseDepth = (_contextDescription.Flags & Fsr2.InitializationFlags.EnableDepthInverted) != 0; + + if (inverseDepth) + { + if (dispatchParams.CameraNear < dispatchParams.CameraFar) + { + Debug.LogWarning("EnableDepthInverted flag is present yet CameraNear is less than CameraFar"); + } + + if (infiniteDepth) + { + if (dispatchParams.CameraNear < float.MaxValue) + { + Debug.LogWarning("EnableDepthInfinite and EnableDepthInverted present, yet CameraNear != float.MaxValue"); + } + } + + if (dispatchParams.CameraFar < 0.075f) + { + Debug.LogWarning("EnableDepthInverted present, CameraFar value is very low which may result in depth separation artefacting"); + } + } + else + { + if (dispatchParams.CameraNear > dispatchParams.CameraFar) + { + Debug.LogWarning("CameraNear is greater than CameraFar in non-inverted-depth context"); + } + + if (infiniteDepth) + { + if (dispatchParams.CameraFar < float.MaxValue) + { + Debug.LogWarning("EnableDepthInfinite present, yet CameraFar != float.MaxValue"); + } + } + + if (dispatchParams.CameraNear < 0.075f) + { + Debug.LogWarning("CameraNear value is very low which may result in depth separation artefacting"); + } + } + + if (dispatchParams.CameraFovAngleVertical <= 0.0f) + { + Debug.LogError("CameraFovAngleVertical is 0.0f - this value should be > 0.0f"); + } + + if (dispatchParams.CameraFovAngleVertical > Mathf.PI) + { + Debug.LogError("CameraFovAngleVertical is greater than 180 degrees/PI"); + } + } + + /// + /// The FSR2 C++ codebase uses floats bitwise converted to ints to pass sharpness parameters to the RCAS shader. + /// This is not possible in C# without enabling unsafe code compilation, so to avoid that we instead use a table of precomputed values. + /// + private static readonly List RcasConfigs = new List() + { + new Fsr2.RcasConstants(1048576000u, 872428544u), + new Fsr2.RcasConstants(1049178080u, 877212745u), + new Fsr2.RcasConstants(1049823372u, 882390168u), + new Fsr2.RcasConstants(1050514979u, 887895276u), + new Fsr2.RcasConstants(1051256227u, 893859143u), + new Fsr2.RcasConstants(1052050675u, 900216232u), + new Fsr2.RcasConstants(1052902144u, 907032080u), + new Fsr2.RcasConstants(1053814727u, 914306687u), + new Fsr2.RcasConstants(1054792807u, 922105590u), + new Fsr2.RcasConstants(1055841087u, 930494326u), + new Fsr2.RcasConstants(1056964608u, 939538432u), + new Fsr2.RcasConstants(1057566688u, 944322633u), + new Fsr2.RcasConstants(1058211980u, 949500056u), + new Fsr2.RcasConstants(1058903587u, 955005164u), + new Fsr2.RcasConstants(1059644835u, 960969031u), + new Fsr2.RcasConstants(1060439283u, 967326120u), + new Fsr2.RcasConstants(1061290752u, 974141968u), + new Fsr2.RcasConstants(1062203335u, 981416575u), + new Fsr2.RcasConstants(1063181415u, 989215478u), + new Fsr2.RcasConstants(1064229695u, 997604214u), + new Fsr2.RcasConstants(1065353216u, 1006648320), + }; + + private static ComputeBuffer CreateConstantBuffer() where TConstants: struct + { + return new ComputeBuffer(1, Marshal.SizeOf(), ComputeBufferType.Constant); + } + + private static void DestroyConstantBuffer(ref ComputeBuffer bufferRef) + { + if (bufferRef == null) + return; + + bufferRef.Release(); + bufferRef = null; + } + + private static void DestroyPipeline(ref Fsr2Pipeline pipeline) + { + if (pipeline == null) + return; + + pipeline.Dispose(); + pipeline = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs.meta new file mode 100644 index 0000000..ed50468 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Context.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 2f00ea267c3443d88bbd0e9dd7c08b4a +timeCreated: 1673442225 \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs new file mode 100644 index 0000000..5b963f0 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs @@ -0,0 +1,403 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using System; +using System.Runtime.InteropServices; +using UnityEngine; +using UnityEngine.Rendering; + +namespace FidelityFX +{ + /// + /// Base class for all of the compute passes that make up the FSR2 process. + /// This loosely matches the FfxPipelineState struct from the original FSR2 codebase, wrapped in an object-oriented blanket. + /// These classes are responsible for loading compute shaders, managing temporary resources, binding resources to shader kernels and dispatching said shaders. + /// + internal abstract class Fsr2Pipeline: IDisposable + { + internal const int ShadingChangeMipLevel = 4; // This matches the FFX_FSR2_SHADING_CHANGE_MIP_LEVEL define + + protected readonly Fsr2.ContextDescription ContextDescription; + protected readonly Fsr2Resources Resources; + protected readonly ComputeBuffer Constants; + + protected ComputeShader ComputeShader; + protected int KernelIndex; + + protected virtual bool AllowFP16 => true; + + protected Fsr2Pipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants) + { + ContextDescription = contextDescription; + Resources = resources; + Constants = constants; + } + + public virtual void Dispose() + { + UnloadComputeShader(); + } + + public abstract void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY); + + protected void LoadComputeShader(string name) + { + LoadComputeShader(name, ContextDescription.Flags, ref ComputeShader, out KernelIndex); + } + + private void LoadComputeShader(string name, Fsr2.InitializationFlags flags, ref ComputeShader shaderRef, out int kernelIndex) + { + if (shaderRef == null) + { + shaderRef = ContextDescription.Callbacks.LoadComputeShader(name); + if (shaderRef == null) + throw new MissingReferenceException($"Shader '{name}' could not be loaded! Please ensure it is included in the project correctly."); + } + + kernelIndex = shaderRef.FindKernel("CS"); + + bool useLut = false; +#if UNITY_2022_1_OR_NEWER // This will also work in 2020.3.43+ and 2021.3.14+ + if (SystemInfo.computeSubGroupSize == 64) + { + useLut = true; + } +#endif + + // Allow 16-bit floating point as a configuration option, except on passes that explicitly disable it + bool supportedFP16 = ((flags & Fsr2.InitializationFlags.EnableFP16Usage) != 0 && AllowFP16); + + // This matches the permutation rules from the CreatePipeline* functions + if ((flags & Fsr2.InitializationFlags.EnableHighDynamicRange) != 0) shaderRef.EnableKeyword("FFX_FSR2_OPTION_HDR_COLOR_INPUT"); + if ((flags & Fsr2.InitializationFlags.EnableDisplayResolutionMotionVectors) == 0) shaderRef.EnableKeyword("FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS"); + if ((flags & Fsr2.InitializationFlags.EnableMotionVectorsJitterCancellation) != 0) shaderRef.EnableKeyword("FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS"); + if ((flags & Fsr2.InitializationFlags.EnableDepthInverted) != 0) shaderRef.EnableKeyword("FFX_FSR2_OPTION_INVERTED_DEPTH"); + if (useLut) shaderRef.EnableKeyword("FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE"); + if (supportedFP16) shaderRef.EnableKeyword("FFX_HALF"); + + // Inform the shader which render pipeline we're currently using + var pipeline = GraphicsSettings.currentRenderPipeline; + if (pipeline != null && pipeline.GetType().Name.Contains("HDRenderPipeline")) + { + shaderRef.EnableKeyword("UNITY_FSR2_HDRP"); + } + } + + private void UnloadComputeShader() + { + UnloadComputeShader(ref ComputeShader); + } + + private void UnloadComputeShader(ref ComputeShader shaderRef) + { + if (shaderRef == null) + return; + + ContextDescription.Callbacks.UnloadComputeShader(shaderRef); + shaderRef = null; + } + } + + internal class Fsr2ComputeLuminancePyramidPipeline : Fsr2Pipeline + { + private readonly ComputeBuffer _spdConstants; + + public Fsr2ComputeLuminancePyramidPipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants, ComputeBuffer spdConstants) + : base(contextDescription, resources, constants) + { + _spdConstants = spdConstants; + + LoadComputeShader("FSR2/ffx_fsr2_compute_luminance_pyramid_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + if (dispatchParams.Color.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputColor, dispatchParams.Color.Value, 0, RenderTextureSubElement.Color); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavSpdAtomicCount, Resources.SpdAtomicCounter); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavExposureMipLumaChange, Resources.SceneLuminance, ShadingChangeMipLevel); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavExposureMip5, Resources.SceneLuminance, 5); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavAutoExposure, Resources.AutoExposure); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbSpd, _spdConstants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2ReconstructPreviousDepthPipeline : Fsr2Pipeline + { + public Fsr2ReconstructPreviousDepthPipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants) + : base(contextDescription, resources, constants) + { + LoadComputeShader("FSR2/ffx_fsr2_reconstruct_previous_depth_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + if (dispatchParams.Color.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputColor, dispatchParams.Color.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.Depth.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputDepth, dispatchParams.Depth.Value, 0, RenderTextureSubElement.Depth); + + if (dispatchParams.MotionVectors.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputMotionVectors, dispatchParams.MotionVectors.Value); + + if (dispatchParams.Exposure.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputExposure, dispatchParams.Exposure.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavDilatedMotionVectors, Resources.DilatedMotionVectors[frameIndex]); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2DepthClipPipeline : Fsr2Pipeline + { + public Fsr2DepthClipPipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants) + : base(contextDescription, resources, constants) + { + LoadComputeShader("FSR2/ffx_fsr2_depth_clip_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + if (dispatchParams.Color.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputColor, dispatchParams.Color.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.Depth.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputDepth, dispatchParams.Depth.Value, 0, RenderTextureSubElement.Depth); + + if (dispatchParams.MotionVectors.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputMotionVectors, dispatchParams.MotionVectors.Value); + + if (dispatchParams.Exposure.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputExposure, dispatchParams.Exposure.Value); + + if (dispatchParams.Reactive.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvReactiveMask, dispatchParams.Reactive.Value); + + if (dispatchParams.TransparencyAndComposition.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvTransparencyAndCompositionMask, dispatchParams.TransparencyAndComposition.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvReconstructedPrevNearestDepth, Fsr2ShaderIDs.UavReconstructedPrevNearestDepth); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvDilatedMotionVectors, Resources.DilatedMotionVectors[frameIndex]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvDilatedDepth, Fsr2ShaderIDs.UavDilatedDepth); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvPrevDilatedMotionVectors, Resources.DilatedMotionVectors[frameIndex ^ 1]); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2LockPipeline : Fsr2Pipeline + { + public Fsr2LockPipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants) + : base(contextDescription, resources, constants) + { + LoadComputeShader("FSR2/ffx_fsr2_lock_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvLockInputLuma, Fsr2ShaderIDs.UavLockInputLuma); + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2AccumulatePipeline : Fsr2Pipeline + { + private const string SharpeningKeyword = "FFX_FSR2_OPTION_APPLY_SHARPENING"; + + // Workaround: Disable FP16 path for the accumulate pass on NVIDIA due to reduced occupancy and high VRAM throughput. + protected override bool AllowFP16 => SystemInfo.graphicsDeviceVendorID != 0x10DE; + +#if UNITY_2021_2_OR_NEWER + private readonly LocalKeyword _sharpeningKeyword; +#endif + + public Fsr2AccumulatePipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants) + : base(contextDescription, resources, constants) + { + LoadComputeShader("FSR2/ffx_fsr2_accumulate_pass"); +#if UNITY_2021_2_OR_NEWER + _sharpeningKeyword = new LocalKeyword(ComputeShader, SharpeningKeyword); +#endif + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { +#if UNITY_2021_2_OR_NEWER + if (dispatchParams.EnableSharpening) + commandBuffer.EnableKeyword(ComputeShader, _sharpeningKeyword); + else + commandBuffer.DisableKeyword(ComputeShader, _sharpeningKeyword); +#else + if (dispatchParams.EnableSharpening) + commandBuffer.EnableShaderKeyword(SharpeningKeyword); + else + commandBuffer.DisableShaderKeyword(SharpeningKeyword); +#endif + + if ((ContextDescription.Flags & Fsr2.InitializationFlags.EnableDisplayResolutionMotionVectors) == 0) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvDilatedMotionVectors, Resources.DilatedMotionVectors[frameIndex]); + else if (dispatchParams.MotionVectors.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputMotionVectors, dispatchParams.MotionVectors.Value); + + if (dispatchParams.Exposure.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputExposure, dispatchParams.Exposure.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvDilatedReactiveMasks, Fsr2ShaderIDs.UavDilatedReactiveMasks); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInternalUpscaled, Resources.InternalUpscaled[frameIndex ^ 1]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvLockStatus, Resources.LockStatus[frameIndex ^ 1]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvPreparedInputColor, Fsr2ShaderIDs.UavPreparedInputColor); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvLanczosLut, Resources.LanczosLut); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvUpscaleMaximumBiasLut, Resources.MaximumBiasLut); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvSceneLuminanceMips, Resources.SceneLuminance); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvAutoExposure, Resources.AutoExposure); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvLumaHistory, Resources.LumaHistory[frameIndex ^ 1]); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavInternalUpscaled, Resources.InternalUpscaled[frameIndex]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavLockStatus, Resources.LockStatus[frameIndex]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavLumaHistory, Resources.LumaHistory[frameIndex]); + + if (dispatchParams.Output.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavUpscaledOutput, dispatchParams.Output.Value); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2RcasPipeline : Fsr2Pipeline + { + private readonly ComputeBuffer _rcasConstants; + + public Fsr2RcasPipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants, ComputeBuffer rcasConstants) + : base(contextDescription, resources, constants) + { + _rcasConstants = rcasConstants; + + LoadComputeShader("FSR2/ffx_fsr2_rcas_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + if (dispatchParams.Exposure.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputExposure, dispatchParams.Exposure.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvRcasInput, Resources.InternalUpscaled[frameIndex]); + + if (dispatchParams.Output.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavUpscaledOutput, dispatchParams.Output.Value); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbRcas, _rcasConstants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2GenerateReactivePipeline : Fsr2Pipeline + { + private readonly ComputeBuffer _generateReactiveConstants; + + public Fsr2GenerateReactivePipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer generateReactiveConstants) + : base(contextDescription, resources, null) + { + _generateReactiveConstants = generateReactiveConstants; + + LoadComputeShader("FSR2/ffx_fsr2_autogen_reactive_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + } + + public void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.GenerateReactiveDescription dispatchParams, int dispatchX, int dispatchY) + { + if (dispatchParams.ColorOpaqueOnly.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvOpaqueOnly, dispatchParams.ColorOpaqueOnly.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.ColorPreUpscale.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputColor, dispatchParams.ColorPreUpscale.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.OutReactive.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavAutoReactive, dispatchParams.OutReactive.Value); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbGenReactive, _generateReactiveConstants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } + + internal class Fsr2TcrAutogeneratePipeline : Fsr2Pipeline + { + private readonly ComputeBuffer _tcrAutogenerateConstants; + + public Fsr2TcrAutogeneratePipeline(Fsr2.ContextDescription contextDescription, Fsr2Resources resources, ComputeBuffer constants, ComputeBuffer tcrAutogenerateConstants) + : base(contextDescription, resources, constants) + { + _tcrAutogenerateConstants = tcrAutogenerateConstants; + + LoadComputeShader("FSR2/ffx_fsr2_tcr_autogen_pass"); + } + + public override void ScheduleDispatch(CommandBuffer commandBuffer, Fsr2.DispatchDescription dispatchParams, int frameIndex, int dispatchX, int dispatchY) + { + if (dispatchParams.ColorOpaqueOnly.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvOpaqueOnly, dispatchParams.ColorOpaqueOnly.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.Color.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputColor, dispatchParams.Color.Value, 0, RenderTextureSubElement.Color); + + if (dispatchParams.MotionVectors.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvInputMotionVectors, dispatchParams.MotionVectors.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvPrevColorPreAlpha, Resources.PrevPreAlpha[frameIndex ^ 1]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvPrevColorPostAlpha, Resources.PrevPostAlpha[frameIndex ^ 1]); + + if (dispatchParams.Reactive.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvReactiveMask, dispatchParams.Reactive.Value); + + if (dispatchParams.TransparencyAndComposition.HasValue) + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.SrvTransparencyAndCompositionMask, dispatchParams.TransparencyAndComposition.Value); + + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavAutoReactive, Resources.AutoReactive); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavAutoComposition, Resources.AutoComposition); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavPrevColorPreAlpha, Resources.PrevPreAlpha[frameIndex]); + commandBuffer.SetComputeTextureParam(ComputeShader, KernelIndex, Fsr2ShaderIDs.UavPrevColorPostAlpha, Resources.PrevPostAlpha[frameIndex]); + + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbFsr2, Constants, 0, Marshal.SizeOf()); + commandBuffer.SetComputeConstantBufferParam(ComputeShader, Fsr2ShaderIDs.CbGenReactive, _tcrAutogenerateConstants, 0, Marshal.SizeOf()); + + commandBuffer.DispatchCompute(ComputeShader, KernelIndex, dispatchX, dispatchY, 1); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs.meta new file mode 100644 index 0000000..06ce7e4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Pipeline.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 14234aed75ce454183019d2e20a44d24 +timeCreated: 1676885169 \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs new file mode 100644 index 0000000..a3e8e27 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs @@ -0,0 +1,251 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using System; +using UnityEngine; +using UnityEngine.Experimental.Rendering; +using UnityEngine.Rendering; + +namespace FidelityFX +{ + /// + /// Helper class for bundling and managing persistent resources required by the FSR2 process. + /// This includes lookup tables, default fallback resources and double-buffered resources that get swapped between frames. + /// + internal class Fsr2Resources + { + public Texture2D DefaultExposure; + public Texture2D DefaultReactive; + public Texture2D LanczosLut; + public Texture2D MaximumBiasLut; + public RenderTexture SpdAtomicCounter; + public RenderTexture AutoExposure; + public RenderTexture SceneLuminance; + public RenderTexture AutoReactive; + public RenderTexture AutoComposition; + public readonly RenderTexture[] DilatedMotionVectors = new RenderTexture[2]; + public readonly RenderTexture[] LockStatus = new RenderTexture[2]; + public readonly RenderTexture[] InternalUpscaled = new RenderTexture[2]; + public readonly RenderTexture[] LumaHistory = new RenderTexture[2]; + public readonly RenderTexture[] PrevPreAlpha = new RenderTexture[2]; + public readonly RenderTexture[] PrevPostAlpha = new RenderTexture[2]; + + public void Create(Fsr2.ContextDescription contextDescription) + { + // Generate the data for the LUT + const int lanczos2LutWidth = 128; + float[] lanczos2Weights = new float[lanczos2LutWidth]; + for (int currentLanczosWidthIndex = 0; currentLanczosWidthIndex < lanczos2LutWidth; ++currentLanczosWidthIndex) + { + float x = 2.0f * currentLanczosWidthIndex / (lanczos2LutWidth - 1); + float y = Fsr2.Lanczos2(x); + lanczos2Weights[currentLanczosWidthIndex] = y; + } + + float[] maximumBias = new float[MaximumBiasTextureWidth * MaximumBiasTextureHeight]; + for (int i = 0; i < maximumBias.Length; ++i) + { + maximumBias[i] = MaximumBias[i] / 2.0f; + } + + // Resource FSR2_LanczosLutData: FFX_RESOURCE_USAGE_READ_ONLY, FFX_SURFACE_FORMAT_R16_SNORM, FFX_RESOURCE_FLAGS_NONE + // R16_SNorm textures are not supported by Unity on most platforms, strangely enough. So instead we use R32_SFloat and upload pre-normalized float data. + LanczosLut = new Texture2D(lanczos2LutWidth, 1, GraphicsFormat.R32_SFloat, TextureCreationFlags.None) { name = "FSR2_LanczosLutData" }; + LanczosLut.SetPixelData(lanczos2Weights, 0); + LanczosLut.Apply(); + + // Resource FSR2_MaximumUpsampleBias: FFX_RESOURCE_USAGE_READ_ONLY, FFX_SURFACE_FORMAT_R16_SNORM, FFX_RESOURCE_FLAGS_NONE + MaximumBiasLut = new Texture2D(MaximumBiasTextureWidth, MaximumBiasTextureHeight, GraphicsFormat.R32_SFloat, TextureCreationFlags.None) { name = "FSR2_MaximumUpsampleBias" }; + MaximumBiasLut.SetPixelData(maximumBias, 0); + MaximumBiasLut.Apply(); + + // Resource FSR2_DefaultExposure: FFX_RESOURCE_USAGE_READ_ONLY, FFX_SURFACE_FORMAT_R32G32_FLOAT, FFX_RESOURCE_FLAGS_NONE + DefaultExposure = new Texture2D(1, 1, GraphicsFormat.R32G32_SFloat, TextureCreationFlags.None) { name = "FSR2_DefaultExposure" }; + DefaultExposure.SetPixel(0, 0, Color.clear); + DefaultExposure.Apply(); + + // Resource FSR2_DefaultReactivityMask: FFX_RESOURCE_USAGE_READ_ONLY, FFX_SURFACE_FORMAT_R8_UNORM, FFX_RESOURCE_FLAGS_NONE + DefaultReactive = new Texture2D(1, 1, GraphicsFormat.R8_UNorm, TextureCreationFlags.None) { name = "FSR2_DefaultReactivityMask" }; + DefaultReactive.SetPixel(0, 0, Color.clear); + DefaultReactive.Apply(); + + // Resource FSR2_SpdAtomicCounter: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R32_UINT, FFX_RESOURCE_FLAGS_ALIASABLE + // Despite what the original FSR2 codebase says, this resource really isn't aliasable. Resetting this counter to 0 every frame breaks auto-exposure on MacOS Metal. + SpdAtomicCounter = new RenderTexture(1, 1, 0, GraphicsFormat.R32_UInt) { name = "FSR2_SpdAtomicCounter", enableRandomWrite = true }; + SpdAtomicCounter.Create(); + + // Resource FSR2_AutoExposure: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R32G32_FLOAT, FFX_RESOURCE_FLAGS_NONE + AutoExposure = new RenderTexture(1, 1, 0, GraphicsFormat.R32G32_SFloat) { name = "FSR2_AutoExposure", enableRandomWrite = true }; + AutoExposure.Create(); + + // Resource FSR2_ExposureMips: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16_FLOAT, FFX_RESOURCE_FLAGS_ALIASABLE + // This is a rather special case: it's an aliasable resource, but because we require a mipmap chain and bind specific mip levels per shader, we can't easily use temporary RTs for this. + int w = contextDescription.MaxRenderSize.x / 2, h = contextDescription.MaxRenderSize.y / 2; + int mipCount = 1 + Mathf.FloorToInt(Mathf.Log(Math.Max(w, h), 2.0f)); + SceneLuminance = new RenderTexture(w, h, 0, GraphicsFormat.R16_SFloat, mipCount) { name = "FSR2_ExposureMips", enableRandomWrite = true, useMipMap = true, autoGenerateMips = false }; + SceneLuminance.Create(); + + // Resources FSR2_InternalDilatedVelocity1/2: FFX_RESOURCE_USAGE_RENDERTARGET | FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16G16_FLOAT, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(DilatedMotionVectors, "FSR2_InternalDilatedVelocity", contextDescription.MaxRenderSize, GraphicsFormat.R16G16_SFloat); + + // Resources FSR2_LockStatus1/2: FFX_RESOURCE_USAGE_RENDERTARGET | FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16G16_FLOAT, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(LockStatus, "FSR2_LockStatus", contextDescription.DisplaySize, GraphicsFormat.R16G16_SFloat); + + // Resources FSR2_InternalUpscaled1/2: FFX_RESOURCE_USAGE_RENDERTARGET | FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16G16B16A16_FLOAT, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(InternalUpscaled, "FSR2_InternalUpscaled", contextDescription.DisplaySize, GraphicsFormat.R16G16B16A16_SFloat); + + // Resources FSR2_LumaHistory1/2: FFX_RESOURCE_USAGE_RENDERTARGET | FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R8G8B8A8_UNORM, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(LumaHistory, "FSR2_LumaHistory", contextDescription.DisplaySize, GraphicsFormat.R8G8B8A8_UNorm); + } + + public void CreateTcrAutogenResources(Fsr2.ContextDescription contextDescription) + { + // Resource FSR2_AutoReactive: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R8_UNORM, FFX_RESOURCE_FLAGS_NONE + AutoReactive = new RenderTexture(contextDescription.MaxRenderSize.x, contextDescription.MaxRenderSize.y, 0, GraphicsFormat.R8_UNorm) { name = "FSR2_AutoReactive", enableRandomWrite = true }; + AutoReactive.Create(); + + // Resource FSR2_AutoComposition: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R8_UNORM, FFX_RESOURCE_FLAGS_NONE + AutoComposition = new RenderTexture(contextDescription.MaxRenderSize.x, contextDescription.MaxRenderSize.y, 0, GraphicsFormat.R8_UNorm) { name = "FSR2_AutoComposition", enableRandomWrite = true }; + AutoComposition.Create(); + + // Resources FSR2_PrevPreAlpha0/1: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R11G11B10_FLOAT, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(PrevPreAlpha, "FSR2_PrevPreAlpha", contextDescription.MaxRenderSize, GraphicsFormat.B10G11R11_UFloatPack32); + + // Resources FSR2_PrevPostAlpha0/1: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R11G11B10_FLOAT, FFX_RESOURCE_FLAGS_NONE + CreateDoubleBufferedResource(PrevPostAlpha, "FSR2_PrevPostAlpha", contextDescription.MaxRenderSize, GraphicsFormat.B10G11R11_UFloatPack32); + } + + // Set up shared aliasable resources, i.e. temporary render textures + // These do not need to persist between frames, but they do need to be available between passes + public static void CreateAliasableResources(CommandBuffer commandBuffer, Fsr2.ContextDescription contextDescription, Fsr2.DispatchDescription dispatchParams) + { + Vector2Int displaySize = contextDescription.DisplaySize; + Vector2Int maxRenderSize = contextDescription.MaxRenderSize; + + // FSR2_ReconstructedPrevNearestDepth: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R32_UINT, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavReconstructedPrevNearestDepth, maxRenderSize.x, maxRenderSize.y, 0, default, GraphicsFormat.R32_UInt, 1, true); + + // FSR2_DilatedDepth: FFX_RESOURCE_USAGE_RENDERTARGET | FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R32_FLOAT, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavDilatedDepth, maxRenderSize.x, maxRenderSize.y, 0, default, GraphicsFormat.R32_SFloat, 1, true); + + // FSR2_LockInputLuma: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16_FLOAT, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavLockInputLuma, maxRenderSize.x, maxRenderSize.y, 0, default, GraphicsFormat.R16_SFloat, 1, true); + + // FSR2_DilatedReactiveMasks: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R8G8_UNORM, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavDilatedReactiveMasks, maxRenderSize.x, maxRenderSize.y, 0, default, GraphicsFormat.R8G8_UNorm, 1, true); + + // FSR2_PreparedInputColor: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R16G16B16A16_FLOAT, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavPreparedInputColor, maxRenderSize.x, maxRenderSize.y, 0, default, GraphicsFormat.R16G16B16A16_SFloat, 1, true); + + // FSR2_NewLocks: FFX_RESOURCE_USAGE_UAV, FFX_SURFACE_FORMAT_R8_UNORM, FFX_RESOURCE_FLAGS_ALIASABLE + commandBuffer.GetTemporaryRT(Fsr2ShaderIDs.UavNewLocks, displaySize.x, displaySize.y, 0, default, GraphicsFormat.R8_UNorm, 1, true); + } + + public static void DestroyAliasableResources(CommandBuffer commandBuffer) + { + // Release all of the aliasable resources used this frame + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavReconstructedPrevNearestDepth); + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavDilatedDepth); + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavLockInputLuma); + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavDilatedReactiveMasks); + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavPreparedInputColor); + commandBuffer.ReleaseTemporaryRT(Fsr2ShaderIDs.UavNewLocks); + } + + private static void CreateDoubleBufferedResource(RenderTexture[] resource, string name, Vector2Int size, GraphicsFormat format) + { + for (int i = 0; i < 2; ++i) + { + resource[i] = new RenderTexture(size.x, size.y, 0, format) { name = name + (i + 1), enableRandomWrite = true }; + resource[i].Create(); + } + } + + public void Destroy() + { + DestroyTcrAutogenResources(); + + DestroyResource(LumaHistory); + DestroyResource(InternalUpscaled); + DestroyResource(LockStatus); + DestroyResource(DilatedMotionVectors); + DestroyResource(ref SceneLuminance); + DestroyResource(ref AutoExposure); + DestroyResource(ref DefaultReactive); + DestroyResource(ref DefaultExposure); + DestroyResource(ref MaximumBiasLut); + DestroyResource(ref LanczosLut); + } + + public void DestroyTcrAutogenResources() + { + DestroyResource(PrevPostAlpha); + DestroyResource(PrevPreAlpha); + DestroyResource(ref AutoComposition); + DestroyResource(ref AutoReactive); + } + + private static void DestroyResource(ref Texture2D resource) + { + if (resource == null) + return; + + UnityEngine.Object.Destroy(resource); + resource = null; + } + + private static void DestroyResource(ref RenderTexture resource) + { + if (resource == null) + return; + + resource.Release(); + resource = null; + } + + private static void DestroyResource(RenderTexture[] resource) + { + for (int i = 0; i < resource.Length; ++i) + DestroyResource(ref resource[i]); + } + + private const int MaximumBiasTextureWidth = 16; + private const int MaximumBiasTextureHeight = 16; + private static readonly float[] MaximumBias = + { + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.876f, 1.809f, 1.772f, 1.753f, 1.748f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.869f, 1.801f, 1.764f, 1.745f, 1.739f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.976f, 1.841f, 1.774f, 1.737f, 1.716f, 1.71f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.914f, 1.784f, 1.716f, 1.673f, 1.649f, 1.641f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.793f, 1.676f, 1.604f, 1.562f, 1.54f, 1.533f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.802f, 1.619f, 1.536f, 1.492f, 1.467f, 1.454f, 1.449f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.812f, 1.575f, 1.496f, 1.456f, 1.432f, 1.416f, 1.408f, 1.405f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.555f, 1.479f, 1.438f, 1.413f, 1.398f, 1.387f, 1.381f, 1.379f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.812f, 1.555f, 1.474f, 1.43f, 1.404f, 1.387f, 1.376f, 1.368f, 1.363f, 1.362f, + 2.0f, 2.0f, 2.0f, 2.0f, 2.0f, 1.802f, 1.575f, 1.479f, 1.43f, 1.401f, 1.382f, 1.369f, 1.36f, 1.354f, 1.351f, 1.35f, + 2.0f, 2.0f, 1.976f, 1.914f, 1.793f, 1.619f, 1.496f, 1.438f, 1.404f, 1.382f, 1.367f, 1.357f, 1.349f, 1.344f, 1.341f, 1.34f, + 1.876f, 1.869f, 1.841f, 1.784f, 1.676f, 1.536f, 1.456f, 1.413f, 1.387f, 1.369f, 1.357f, 1.347f, 1.341f, 1.336f, 1.333f, 1.332f, + 1.809f, 1.801f, 1.774f, 1.716f, 1.604f, 1.492f, 1.432f, 1.398f, 1.376f, 1.36f, 1.349f, 1.341f, 1.335f, 1.33f, 1.328f, 1.327f, + 1.772f, 1.764f, 1.737f, 1.673f, 1.562f, 1.467f, 1.416f, 1.387f, 1.368f, 1.354f, 1.344f, 1.336f, 1.33f, 1.326f, 1.323f, 1.323f, + 1.753f, 1.745f, 1.716f, 1.649f, 1.54f, 1.454f, 1.408f, 1.381f, 1.363f, 1.351f, 1.341f, 1.333f, 1.328f, 1.323f, 1.321f, 1.32f, + 1.748f, 1.739f, 1.71f, 1.641f, 1.533f, 1.449f, 1.405f, 1.379f, 1.362f, 1.35f, 1.34f, 1.332f, 1.327f, 1.323f, 1.32f, 1.319f, + }; + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs.meta new file mode 100644 index 0000000..0e993b4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2Resources.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: 22ad49193f244ab4a36d0a1512f3015f +timeCreated: 1677236102 \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs new file mode 100644 index 0000000..b07c967 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs @@ -0,0 +1,80 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +using UnityEngine; + +namespace FidelityFX +{ + internal static class Fsr2ShaderIDs + { + // Shader resource views, i.e. read-only bindings + internal static readonly int SrvInputColor = Shader.PropertyToID("r_input_color_jittered"); + internal static readonly int SrvOpaqueOnly = Shader.PropertyToID("r_input_opaque_only"); + internal static readonly int SrvInputMotionVectors = Shader.PropertyToID("r_input_motion_vectors"); + internal static readonly int SrvInputDepth = Shader.PropertyToID("r_input_depth"); + internal static readonly int SrvInputExposure = Shader.PropertyToID("r_input_exposure"); + internal static readonly int SrvAutoExposure = Shader.PropertyToID("r_auto_exposure"); + internal static readonly int SrvReactiveMask = Shader.PropertyToID("r_reactive_mask"); + internal static readonly int SrvTransparencyAndCompositionMask = Shader.PropertyToID("r_transparency_and_composition_mask"); + internal static readonly int SrvReconstructedPrevNearestDepth = Shader.PropertyToID("r_reconstructed_previous_nearest_depth"); + internal static readonly int SrvDilatedMotionVectors = Shader.PropertyToID("r_dilated_motion_vectors"); + internal static readonly int SrvPrevDilatedMotionVectors = Shader.PropertyToID("r_previous_dilated_motion_vectors"); + internal static readonly int SrvDilatedDepth = Shader.PropertyToID("r_dilatedDepth"); + internal static readonly int SrvInternalUpscaled = Shader.PropertyToID("r_internal_upscaled_color"); + internal static readonly int SrvLockStatus = Shader.PropertyToID("r_lock_status"); + internal static readonly int SrvLockInputLuma = Shader.PropertyToID("r_lock_input_luma"); + internal static readonly int SrvPreparedInputColor = Shader.PropertyToID("r_prepared_input_color"); + internal static readonly int SrvLumaHistory = Shader.PropertyToID("r_luma_history"); + internal static readonly int SrvRcasInput = Shader.PropertyToID("r_rcas_input"); + internal static readonly int SrvLanczosLut = Shader.PropertyToID("r_lanczos_lut"); + internal static readonly int SrvSceneLuminanceMips = Shader.PropertyToID("r_imgMips"); + internal static readonly int SrvUpscaleMaximumBiasLut = Shader.PropertyToID("r_upsample_maximum_bias_lut"); + internal static readonly int SrvDilatedReactiveMasks = Shader.PropertyToID("r_dilated_reactive_masks"); + internal static readonly int SrvPrevColorPreAlpha = Shader.PropertyToID("r_input_prev_color_pre_alpha"); + internal static readonly int SrvPrevColorPostAlpha = Shader.PropertyToID("r_input_prev_color_post_alpha"); + + // Unordered access views, i.e. random read/write bindings + internal static readonly int UavReconstructedPrevNearestDepth = Shader.PropertyToID("rw_reconstructed_previous_nearest_depth"); + internal static readonly int UavDilatedMotionVectors = Shader.PropertyToID("rw_dilated_motion_vectors"); + internal static readonly int UavDilatedDepth = Shader.PropertyToID("rw_dilatedDepth"); + internal static readonly int UavInternalUpscaled = Shader.PropertyToID("rw_internal_upscaled_color"); + internal static readonly int UavLockStatus = Shader.PropertyToID("rw_lock_status"); + internal static readonly int UavLockInputLuma = Shader.PropertyToID("rw_lock_input_luma"); + internal static readonly int UavNewLocks = Shader.PropertyToID("rw_new_locks"); + internal static readonly int UavPreparedInputColor = Shader.PropertyToID("rw_prepared_input_color"); + internal static readonly int UavLumaHistory = Shader.PropertyToID("rw_luma_history"); + internal static readonly int UavUpscaledOutput = Shader.PropertyToID("rw_upscaled_output"); + internal static readonly int UavExposureMipLumaChange = Shader.PropertyToID("rw_img_mip_shading_change"); + internal static readonly int UavExposureMip5 = Shader.PropertyToID("rw_img_mip_5"); + internal static readonly int UavDilatedReactiveMasks = Shader.PropertyToID("rw_dilated_reactive_masks"); + internal static readonly int UavAutoExposure = Shader.PropertyToID("rw_auto_exposure"); + internal static readonly int UavSpdAtomicCount = Shader.PropertyToID("rw_spd_global_atomic"); + internal static readonly int UavAutoReactive = Shader.PropertyToID("rw_output_autoreactive"); + internal static readonly int UavAutoComposition = Shader.PropertyToID("rw_output_autocomposition"); + internal static readonly int UavPrevColorPreAlpha = Shader.PropertyToID("rw_output_prev_color_pre_alpha"); + internal static readonly int UavPrevColorPostAlpha = Shader.PropertyToID("rw_output_prev_color_post_alpha"); + + // Constant buffer bindings + internal static readonly int CbFsr2 = Shader.PropertyToID("cbFSR2"); + internal static readonly int CbSpd = Shader.PropertyToID("cbSPD"); + internal static readonly int CbRcas = Shader.PropertyToID("cbRCAS"); + internal static readonly int CbGenReactive = Shader.PropertyToID("cbGenerateReactive"); + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs.meta new file mode 100644 index 0000000..ef83135 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/FSR2/Fsr2ShaderIDs.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: ad1eca9398174f6c85d8bc01d10993df +timeCreated: 1679060863 \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors.meta new file mode 100644 index 0000000..d288f89 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0a243807ad889ae44bf63a9bcdc984af +folderAsset: yes +timeCreated: 1499676298 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs new file mode 100644 index 0000000..fef48f9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs @@ -0,0 +1,120 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Histogram monitor. + /// + [Serializable] + public sealed class HistogramMonitor : Monitor + { + /// + /// Displayable channels. + /// + public enum Channel + { + /// + /// The red channel. + /// + Red, + + /// + /// The green channel. + /// + Green, + + /// + /// The blue channel. + /// + Blue, + + /// + /// The master (luminance) channel. + /// + Master + } + + /// + /// The width of the rendered histogram. + /// + public int width = 512; + + /// + /// The height of the rendered histogram. + /// + public int height = 256; + + /// + /// The channel to render. + /// + public Channel channel = Channel.Master; + + ComputeBuffer m_Data; + const int k_NumBins = 256; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.gammaHistogram; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(width, height); + + if (m_Data == null) + m_Data = new ComputeBuffer(k_NumBins, sizeof(uint)); + + var compute = context.resources.computeShaders.gammaHistogram; + var cmd = context.command; + cmd.BeginSample("GammaHistogram"); + + // Clear the buffer on every frame as we use it to accumulate values on every frame + int kernel = compute.FindKernel("KHistogramClear"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_NumBins / (float)k_ThreadGroupSizeX), 1, 1); + + // Gather all pixels and fill in our histogram + kernel = compute.FindKernel("KHistogramGather"); + var parameters = new Vector4( + context.width / 2, + context.height / 2, + RuntimeUtilities.isLinearColorSpace ? 1 : 0, + (int)channel + ); + + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), + Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), + 1 + ); + + // Generate the histogram texture + var sheet = context.propertySheets.Get(context.resources.shaders.gammaHistogram); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, 0f, 0f)); + sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("GammaHistogram"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta new file mode 100644 index 0000000..dd9a92e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cce62646e6d421c41b0aa1c300fcd0fe +timeCreated: 1499676418 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs new file mode 100644 index 0000000..b2b43ab --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs @@ -0,0 +1,83 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Light Meter monitor. + /// + [Serializable] + public sealed class LightMeterMonitor : Monitor + { + /// + /// The width of the rendered light meter. + /// + public int width = 512; + + /// + /// The height of the rendered light meter. + /// + public int height = 256; + + /// + /// Should we display grading and tonemapping curves on top? + /// + /// + /// This only works when is active. + /// + public bool showCurves = true; + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.shaders.lightMeter && context.resources.shaders.lightMeter.isSupported; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(width, height); + + var histogram = context.logHistogram; + + var sheet = context.propertySheets.Get(context.resources.shaders.lightMeter); + sheet.ClearKeywords(); + sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, histogram.data); + + var scaleOffsetRes = histogram.GetHistogramScaleOffsetRes(context); + scaleOffsetRes.z = 1f / width; + scaleOffsetRes.w = 1f / height; + + sheet.properties.SetVector(ShaderIDs.ScaleOffsetRes, scaleOffsetRes); + + if (context.logLut != null && showCurves) + { + sheet.EnableKeyword("COLOR_GRADING_HDR"); + sheet.properties.SetTexture(ShaderIDs.Lut3D, context.logLut); + } + + var autoExpo = context.autoExposure; + if (autoExpo != null) + { + // Make sure filtering values are correct to avoid apocalyptic consequences + float lowPercent = autoExpo.filtering.value.x; + float highPercent = autoExpo.filtering.value.y; + const float kMinDelta = 1e-2f; + highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); + lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); + + var parameters = new Vector4( + lowPercent * 0.01f, + highPercent * 0.01f, + RuntimeUtilities.Exp2(autoExpo.minLuminance.value), + RuntimeUtilities.Exp2(autoExpo.maxLuminance.value) + ); + + sheet.EnableKeyword("AUTO_EXPOSURE"); + sheet.properties.SetVector(ShaderIDs.Params, parameters); + } + + var cmd = context.command; + cmd.BeginSample("LightMeter"); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + cmd.EndSample("LightMeter"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta new file mode 100644 index 0000000..96a3a25 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 322fbe1dae0fe4a4e9645768b3944aae +timeCreated: 1499676398 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs new file mode 100644 index 0000000..4cb3ad9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs @@ -0,0 +1,92 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Debug monitor types. + /// + public enum MonitorType + { + /// + /// Light meter. + /// + LightMeter, + + /// + /// Gamma histogram. + /// + Histogram, + + /// + /// Waveform. + /// + Waveform, + + /// + /// YUV vectorscope. + /// + Vectorscope + } + + /// + /// The base class for all debug monitors. + /// + public abstract class Monitor + { + /// + /// The target texture to render this monitor to. + /// + public RenderTexture output { get; protected set; } + + internal bool requested = false; + + /// + /// Checks if a monitor is supported and should be rendered. + /// + /// The current post-processing context. + /// true if supported and enabled, false otherwise. + public bool IsRequestedAndSupported(PostProcessRenderContext context) + { + return requested + && SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL + && ShaderResourcesAvailable(context); + } + + internal abstract bool ShaderResourcesAvailable(PostProcessRenderContext context); + + internal virtual bool NeedsHalfRes() + { + return false; + } + + /// + /// Validates the output texture. + /// + /// The output width. + /// The output height. + protected void CheckOutput(int width, int height) + { + if (output == null || !output.IsCreated() || output.width != width || output.height != height) + { + RuntimeUtilities.Destroy(output); + output = new RenderTexture(width, height, 0, RenderTextureFormat.ARGB32) + { + anisoLevel = 0, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + useMipMap = false + }; + } + } + + internal virtual void OnEnable() + { + } + + internal virtual void OnDisable() + { + RuntimeUtilities.Destroy(output); + } + + internal abstract void Render(PostProcessRenderContext context); + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs.meta new file mode 100644 index 0000000..6313025 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/Monitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5d05ae29f423ce241b6cddfe46280b4c +timeCreated: 1499676521 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs new file mode 100644 index 0000000..70c3129 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs @@ -0,0 +1,99 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Vectorscope monitor. + /// + [Serializable] + public sealed class VectorscopeMonitor : Monitor + { + /// + /// The width and height of the rendered vectorscope. + /// + public int size = 256; + + /// + /// The exposure multiplier applied to the vectorscope values. + /// + public float exposure = 0.12f; + + ComputeBuffer m_Data; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.vectorscope; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(size, size); + exposure = Mathf.Max(0f, exposure); + + int count = size * size; + if (m_Data == null) + m_Data = new ComputeBuffer(count, sizeof(uint)); + else if (m_Data.count != count) + { + m_Data.Release(); + m_Data = new ComputeBuffer(count, sizeof(uint)); + } + + var compute = context.resources.computeShaders.vectorscope; + var cmd = context.command; + cmd.BeginSample("Vectorscope"); + + var parameters = new Vector4( + context.width / 2, + context.height / 2, + size, + RuntimeUtilities.isLinearColorSpace ? 1 : 0 + ); + + // Clear the buffer on every frame as we use it to accumulate values on every frame + int kernel = compute.FindKernel("KVectorscopeClear"); + cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(size / (float)k_ThreadGroupSizeX), + Mathf.CeilToInt(size / (float)k_ThreadGroupSizeY), + 1 + ); + + // Gather all pixels and fill in our histogram + kernel = compute.FindKernel("KVectorscopeGather"); + cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), + Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), + 1 + ); + + // Generate the histogram texture + var sheet = context.propertySheets.Get(context.resources.shaders.vectorscope); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, size, exposure, 0f)); + sheet.properties.SetBuffer(ShaderIDs.VectorscopeBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("Vectorscope"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta new file mode 100644 index 0000000..5b15b30 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 279b45d82a92b4d4fa0b30d03486fa68 +timeCreated: 1499676436 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs new file mode 100644 index 0000000..7917ae1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs @@ -0,0 +1,111 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Waveform monitor. + /// + [Serializable] + public sealed class WaveformMonitor : Monitor + { + /// + /// The exposure multiplier applied to the waveform values. + /// + public float exposure = 0.12f; + + /// + /// The height of the rendered waveform. + /// + /// + /// Waveforms display localized values so the width is dynamic and depends on the current + /// aspect ratio. + /// + public int height = 256; + + ComputeBuffer m_Data; + + const int k_ThreadGroupSize = 256; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.waveform; + } + + internal override void Render(PostProcessRenderContext context) + { + // Waveform show localized data, so width depends on the aspect ratio + float ratio = (context.width / 2f) / (context.height / 2f); + int width = Mathf.FloorToInt(height * ratio); + + CheckOutput(width, height); + exposure = Mathf.Max(0f, exposure); + + int count = width * height; + if (m_Data == null) + { + m_Data = new ComputeBuffer(count, sizeof(uint) << 2); + } + else if (m_Data.count < count) + { + m_Data.Release(); + m_Data = new ComputeBuffer(count, sizeof(uint) << 2); + } + + var compute = context.resources.computeShaders.waveform; + var cmd = context.command; + cmd.BeginSample("Waveform"); + + var parameters = new Vector4( + width, + height, + RuntimeUtilities.isLinearColorSpace ? 1 : 0, + 0f + ); + + // Clear the buffer on every frame + int kernel = compute.FindKernel("KWaveformClear"); + cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(width / (float)k_ThreadGroupSizeX), Mathf.CeilToInt(height / (float)k_ThreadGroupSizeY), 1); + + // For performance reasons, especially on consoles, we'll just downscale the source + // again to reduce VMEM stalls. Eventually the whole algorithm needs to be rewritten as + // it's currently pretty naive. + cmd.GetTemporaryRT(ShaderIDs.WaveformSource, width, height, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.BlitFullscreenTriangle(ShaderIDs.HalfResFinalCopy, ShaderIDs.WaveformSource); + + // Gather all pixels and fill in our waveform + kernel = compute.FindKernel("KWaveformGather"); + cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.WaveformSource); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, width, Mathf.CeilToInt(height / (float)k_ThreadGroupSize), 1); + cmd.ReleaseTemporaryRT(ShaderIDs.WaveformSource); + + // Generate the waveform texture + var sheet = context.propertySheets.Get(context.resources.shaders.waveform); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, exposure, 0f)); + sheet.properties.SetBuffer(ShaderIDs.WaveformBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("Waveform"); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta new file mode 100644 index 0000000..a5f61be --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d579562c49280d84cb532cd67d19da5d +timeCreated: 1499676423 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs b/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs new file mode 100644 index 0000000..6a3558a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs @@ -0,0 +1,633 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base abstract class for all parameter override types. + /// + /// + public abstract class ParameterOverride + { + /// + /// The override state of this parameter. + /// + public bool overrideState; + + internal abstract void Interp(ParameterOverride from, ParameterOverride to, float t); + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public abstract int GetHash(); + + /// + /// Casts and returns the value stored in this parameter. + /// + /// The type to cast to + /// The value stored in this parameter + public T GetValue() + { + return ((ParameterOverride)this).value; + } + + /// + /// This method is called right after the parent has + /// been initialized. This is used in case you need to access fields or properties that + /// can't be accessed in the constructor of a + /// (ParameterOverride objects are generally declared and initialized in a + /// ). + /// + /// + protected internal virtual void OnEnable() + { + } + + /// + /// This method is called right before the parent + /// gets de-initialized. + /// + /// + protected internal virtual void OnDisable() + { + } + + internal abstract void SetValue(ParameterOverride parameter); + } + + /// + /// The base typed class for all parameter override types. + /// + /// The type of value to store in this ParameterOverride + /// + /// Due to limitations with the serialization system in Unity you shouldn't use this class + /// directly. Use one of the pre-flatten types (like or make your + /// own by extending this class. + /// + /// + /// This sample code shows how to make a custom parameter holding a float. + /// + /// [Serializable] + /// public sealed class FloatParameter : ParameterOverride<float> + /// { + /// public override void Interp(float from, float to, float t) + /// { + /// value = from + (to - from) * t; + /// } + /// } + /// + /// + [Serializable] + public class ParameterOverride : ParameterOverride + { + /// + /// The value stored in this parameter. + /// + public T value; + + /// + /// Creates a ParameterOverride with a default and + /// set to false. + /// + public ParameterOverride() + : this(default(T), false) + { + } + + /// + /// Creates a ParameterOverride with a given value and + /// set to false. + /// + /// The value to set this parameter to + public ParameterOverride(T value) + : this(value, false) + { + } + + /// + /// Creates a ParameterOverride with a given value and override state. + /// + /// The value to set this parameter to + /// The override state for this value + public ParameterOverride(T value, bool overrideState) + { + this.value = value; + this.overrideState = overrideState; + } + + internal override void Interp(ParameterOverride from, ParameterOverride to, float t) + { + // Note: this isn't completely safe but it'll do fine + Interp(from.GetValue(), to.GetValue(), t); + } + + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public virtual void Interp(T from, T to, float t) + { + // Returns `to` if `dt > 0` by default so we don't have to write overrides for bools and + // enumerations. + value = t > 0f ? to : from; + } + + /// + /// Sets the value for this parameter to and mark the override state + /// to true. + /// + /// + public void Override(T x) + { + overrideState = true; + value = x; + } + + internal override void SetValue(ParameterOverride parameter) + { + value = parameter.GetValue(); + } + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public override int GetHash() + { + unchecked + { + int hash = 17; + hash = hash * 23 + overrideState.GetHashCode(); + hash = hash * 23 + value.GetHashCode(); + return hash; + } + } + + /// + /// Implicit conversion between and its value type. + /// + /// The parameter to implicitly cast + /// A value of type . + public static implicit operator T(ParameterOverride prop) + { + return prop.value; + } + } + + // Bypassing the limited unity serialization system... + + /// + /// A that holds a float value. + /// + /// + /// The interpolation method for this parameter is the same as . + /// + [Serializable] + public sealed class FloatParameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(float from, float to, float t) + { + value = from + (to - from) * t; + } + } + + /// + /// A that holds a int value. + /// + /// + /// The interpolation method for this parameter is the same as + /// casted to int. + /// + [Serializable] + public sealed class IntParameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(int from, int to, float t) + { + // Int snapping interpolation. Don't use this for enums as they don't necessarily have + // contiguous values. Use the default interpolator instead (same as bool). + value = (int)(from + (to - from) * t); + } + } + + /// + /// A that holds a bool value. + /// + [Serializable] + public sealed class BoolParameter : ParameterOverride { } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each channel. + /// + [Serializable] + public sealed class ColorParameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Color from, Color to, float t) + { + // Lerping color values is a sensitive subject... We looked into lerping colors using + // HSV and LCH but they have some downsides that make them not work correctly in all + // situations, so we stick with RGB lerping for now, at least its behavior is + // predictable despite looking desaturated when `t ~= 0.5` and it's faster anyway. + value.r = from.r + (to.r - from.r) * t; + value.g = from.g + (to.g - from.g) * t; + value.b = from.b + (to.b - from.b) * t; + value.a = from.a + (to.a - from.a) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector4. + public static implicit operator Vector4(ColorParameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector2Parameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Vector2 from, Vector2 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector3. + public static implicit operator Vector3(Vector2Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector4. + public static implicit operator Vector4(Vector2Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector3Parameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Vector3 from, Vector3 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + value.z = from.z + (to.z - from.z) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector2. + public static implicit operator Vector2(Vector3Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector4. + public static implicit operator Vector4(Vector3Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector4Parameter : ParameterOverride + { + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Vector4 from, Vector4 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + value.z = from.z + (to.z - from.z) * t; + value.w = from.w + (to.w - from.w) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector2. + public static implicit operator Vector2(Vector4Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + /// A Vector3. + public static implicit operator Vector3(Vector4Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each point on the curve. + /// + [Serializable] + public sealed class SplineParameter : ParameterOverride + { + /// + /// This method is called right after the parent has + /// been initialized. This is used in case you need to access fields or properties that + /// can't be accessed in the constructor of a + /// (ParameterOverride objects are generally declared and initialized in a + /// ). + /// + /// + protected internal override void OnEnable() + { + if (value != null) + value.Cache(int.MinValue); + } + + internal override void SetValue(ParameterOverride parameter) + { + base.SetValue(parameter); + + if (value != null) + value.Cache(Time.renderedFrameCount); + } + + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Spline from, Spline to, float t) + { + if (from == null || to == null) + { + base.Interp(from, to, t); + return; + } + + int frameCount = Time.renderedFrameCount; + from.Cache(frameCount); + to.Cache(frameCount); + + for (int i = 0; i < Spline.k_Precision; i++) + { + float a = from.cachedData[i]; + float b = to.cachedData[i]; + value.cachedData[i] = a + (b - a) * t; + } + } + } + + /// + /// A set of default textures to use as default values for . + /// + public enum TextureParameterDefault + { + /// + /// No texture, or null. + /// + None, + + /// + /// A black texture. + /// + Black, + + /// + /// A white texture. + /// + White, + + /// + /// A transparent texture. + /// + Transparent, + + /// + /// A 2D lookup table in strip format with width = height * height. + /// + Lut2D + } + + /// + /// A that holds a value. + /// + /// + /// Texture interpolation is done using a classic linear interpolation method. + /// + [Serializable] + public sealed class TextureParameter : ParameterOverride + { + /// The default state & type for the texture. + public TextureParameterDefault defaultState = TextureParameterDefault.Black; + + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public override void Interp(Texture from, Texture to, float t) + { + // Both are null, do nothing + if (from == null && to == null) + { + value = null; + return; + } + + // Both aren't null we're ready to blend + if (from != null && to != null) + { + value = TextureLerper.instance.Lerp(from, to, t); + return; + } + + // One of them is null, blend to/from a default value is applicable + { + if (defaultState == TextureParameterDefault.Lut2D) + { + int size = from != null ? from.height : to.height; + Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); + + if (from == null) from = defaultTexture; + if (to == null) to = defaultTexture; + } + + Color tgtColor; + + switch (defaultState) + { + case TextureParameterDefault.Black: + tgtColor = Color.black; + break; + case TextureParameterDefault.White: + tgtColor = Color.white; + break; + case TextureParameterDefault.Transparent: + tgtColor = Color.clear; + break; + case TextureParameterDefault.Lut2D: + { + // Find the current lut size + int size = from != null ? from.height : to.height; + Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); + if (from == null) from = defaultTexture; + if (to == null) to = defaultTexture; + + // Fail safe in case the lut size is incorrect + if (from.width != to.width || from.height != to.height) + { + value = null; + return; + } + + value = TextureLerper.instance.Lerp(from, to, t); + // All done, return + return; + } + default: + // defaultState is none, so just interpolate the base and return + base.Interp(from, to, t); + return; + } + // If we made it this far, tgtColor contains the color we'll be lerping into (or out of) + if (from == null) + { + // color -> texture lerp, invert ratio + value = TextureLerper.instance.Lerp(to, tgtColor, 1f - t); + } + else + { + value = TextureLerper.instance.Lerp(from, tgtColor, t); + } + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs.meta new file mode 100644 index 0000000..00e09d6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/ParameterOverride.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bc5d8aaf03e613843a0ecaff18e0dfbd +timeCreated: 1487257630 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs new file mode 100644 index 0000000..c06b991 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs @@ -0,0 +1,77 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A tuple-like class that holds reference to an effect settings and its associated attribute + /// and renderer. + /// + public sealed class PostProcessBundle + { + /// + /// The attribute set on the effect. + /// + public PostProcessAttribute attribute { get; private set; } + + /// + /// The settings for the effect. + /// + public PostProcessEffectSettings settings { get; private set; } + + internal PostProcessEffectRenderer renderer + { + get + { + if (m_Renderer == null) + { + Assert.IsNotNull(attribute.renderer); + var rendererType = attribute.renderer; + m_Renderer = (PostProcessEffectRenderer)Activator.CreateInstance(rendererType); + m_Renderer.SetSettings(settings); + m_Renderer.Init(); + } + + return m_Renderer; + } + } + + PostProcessEffectRenderer m_Renderer; + + internal PostProcessBundle(PostProcessEffectSettings settings) + { + // If settings is null, it means that at some point a null element has been added to + // the volume effect list or there was a deserialization error and a reference to + // the settings scriptableobject was lost + Assert.IsNotNull(settings); + this.settings = settings; + attribute = settings.GetType().GetAttribute(); + } + + internal void Release() + { + if (m_Renderer != null) + m_Renderer.Release(); + + RuntimeUtilities.Destroy(settings); + } + + internal void ResetHistory() + { + if (m_Renderer != null) + m_Renderer.ResetHistory(); + } + + internal T CastSettings() + where T : PostProcessEffectSettings + { + return (T)settings; + } + + internal T CastRenderer() + where T : PostProcessEffectRenderer + { + return (T)renderer; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs.meta new file mode 100644 index 0000000..b22a4a6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessBundle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 79092fbfc2fc7394aa0754682e3089f7 +timeCreated: 1493281307 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs new file mode 100644 index 0000000..c63f333 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs @@ -0,0 +1,160 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This component holds a set of debugging utilities related to post-processing. + /// + /// + /// These utilities can be used at runtime to debug on device. + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [AddComponentMenu("Rendering/Post-process Debug", 1002)] + public sealed class PostProcessDebug : MonoBehaviour + { + /// + /// A reference to a to debug. + /// + public PostProcessLayer postProcessLayer; + PostProcessLayer m_PreviousPostProcessLayer; + + /// + /// Holds settings for the light meter. + /// + public bool lightMeter; + + /// + /// Holds settings for the histogram. + /// + public bool histogram; + + /// + /// Holds settings for the waveform. + /// + public bool waveform; + + /// + /// Holds settings for the vectorscope. + /// + public bool vectorscope; + + /// + /// The currently set overlay. + /// + public DebugOverlay debugOverlay = DebugOverlay.None; + + Camera m_CurrentCamera; + CommandBuffer m_CmdAfterEverything; + + void OnEnable() + { + m_CmdAfterEverything = new CommandBuffer { name = "Post-processing Debug Overlay" }; + +#if UNITY_EDITOR + // Update is only called on object change when ExecuteInEditMode is set, but we need it + // to execute on every frame no matter what when not in play mode, so we'll use the + // editor update loop instead... + UnityEditor.EditorApplication.update += UpdateStates; +#endif + } + + void OnDisable() + { +#if UNITY_EDITOR + UnityEditor.EditorApplication.update -= UpdateStates; +#endif + + if (m_CurrentCamera != null) + m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + + m_CurrentCamera = null; + m_PreviousPostProcessLayer = null; + } + +#if !UNITY_EDITOR + void Update() + { + UpdateStates(); + } + +#endif + + void Reset() + { + postProcessLayer = GetComponent(); + } + + void UpdateStates() + { + if (m_PreviousPostProcessLayer != postProcessLayer) + { + // Remove cmdbuffer from previously set camera + if (m_CurrentCamera != null) + { + m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + m_CurrentCamera = null; + } + + m_PreviousPostProcessLayer = postProcessLayer; + + // Add cmdbuffer to the currently set camera + if (postProcessLayer != null) + { + m_CurrentCamera = postProcessLayer.GetComponent(); + m_CurrentCamera.AddCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + } + } + + if (postProcessLayer == null || !postProcessLayer.enabled) + return; + + // Monitors + if (lightMeter) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.LightMeter); + if (histogram) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Histogram); + if (waveform) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Waveform); + if (vectorscope) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Vectorscope); + + // Overlay + postProcessLayer.debugLayer.RequestDebugOverlay(debugOverlay); + } + + void OnPostRender() + { + m_CmdAfterEverything.Clear(); + + if (postProcessLayer == null || !postProcessLayer.enabled || !postProcessLayer.debugLayer.debugOverlayActive) + return; + + m_CmdAfterEverything.Blit(postProcessLayer.debugLayer.debugOverlayTarget, BuiltinRenderTextureType.CameraTarget); + } + + void OnGUI() + { + if (postProcessLayer == null || !postProcessLayer.enabled) + return; + + // Some SRPs don't unbind render targets and leave them as-is + RenderTexture.active = null; + + var rect = new Rect(5, 5, 0, 0); + var debugLayer = postProcessLayer.debugLayer; + DrawMonitor(ref rect, debugLayer.lightMeter, lightMeter); + DrawMonitor(ref rect, debugLayer.histogram, histogram); + DrawMonitor(ref rect, debugLayer.waveform, waveform); + DrawMonitor(ref rect, debugLayer.vectorscope, vectorscope); + } + + void DrawMonitor(ref Rect rect, Monitor monitor, bool enabled) + { + if (!enabled || monitor.output == null) + return; + + rect.width = monitor.output.width; + rect.height = monitor.output.height; + GUI.DrawTexture(rect, monitor.output); + rect.x += monitor.output.width + 5f; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs.meta new file mode 100644 index 0000000..83ea241 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebug.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c520d478f3d2445429bd7ac9c92b03a3 +timeCreated: 1499764102 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs new file mode 100644 index 0000000..6264dd9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs @@ -0,0 +1,368 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A list of debug overlays. + /// + public enum DebugOverlay + { + /// + /// No overlay. + /// + None, + + /// + /// Displays the depth buffer. + /// + Depth, + + /// + /// Displays the screen-space normals buffer. + /// + Normals, + + /// + /// Displays the screen-space motion vectors. + /// + MotionVectors, + + /// + /// Dims the screen and displays NaN and Inf pixels with a bright pink color. + /// + NANTracker, + + /// + /// A color blindness simulator. + /// + ColorBlindnessSimulation, + + /// + /// A menu item separator for the inspector. Do not use. + /// + _, + + /// + /// Displays the raw ambient occlusion map. + /// + AmbientOcclusion, + + /// + /// Displays the bloom buffer. + /// + BloomBuffer, + + /// + /// Displays the thresholded buffer used to generate bloom. + /// + BloomThreshold, + + /// + /// Displays depth of field helpers. + /// + DepthOfField + } + + /// + /// A list of color blindness types. + /// + public enum ColorBlindnessType + { + /// + /// Deuteranopia (red-green color blindness). + /// + Deuteranopia, + + /// + /// Protanopia (red-green color blindness). + /// + Protanopia, + + /// + /// Tritanopia (blue-yellow color blindness). + /// + Tritanopia + } + + /// + /// This class centralizes rendering commands for debug modes. + /// + [Serializable] + public sealed class PostProcessDebugLayer + { + /// + /// Light meter renderer. + /// + public LightMeterMonitor lightMeter; + + /// + /// Histogram renderer. + /// + public HistogramMonitor histogram; + + /// + /// Waveform renderer. + /// + public WaveformMonitor waveform; + + /// + /// Vectorscope monitor. + /// + public VectorscopeMonitor vectorscope; + + Dictionary m_Monitors; + + // Current frame size + int frameWidth; + int frameHeight; + + /// + /// The render target used to render debug overlays in. + /// + public RenderTexture debugOverlayTarget { get; private set; } + + /// + /// Returns true if the frame that was just drawn had an active debug overlay. + /// + public bool debugOverlayActive { get; private set; } + + /// + /// The debug overlay requested for the current frame. It is reset to None once the + /// frame has finished rendering. + /// + public DebugOverlay debugOverlay { get; private set; } + + /// + /// Debug overlay settings wrapper. + /// + [Serializable] + public class OverlaySettings + { + /// + /// Should we remap depth to a linear range? + /// + public bool linearDepth = false; + + /// + /// The intensity of motion vector colors. + /// + [Range(0f, 16f)] + public float motionColorIntensity = 4f; + + /// + /// The size of the motion vector grid. + /// + [Range(4, 128)] + public int motionGridSize = 64; + + /// + /// The color blindness type to simulate. + /// + public ColorBlindnessType colorBlindnessType = ColorBlindnessType.Deuteranopia; + + /// + /// The strength of the selected color blindness type. + /// + [Range(0f, 1f)] + public float colorBlindnessStrength = 1f; + } + + /// + /// Debug overlay settings. + /// + public OverlaySettings overlaySettings; + + internal void OnEnable() + { + RuntimeUtilities.CreateIfNull(ref lightMeter); + RuntimeUtilities.CreateIfNull(ref histogram); + RuntimeUtilities.CreateIfNull(ref waveform); + RuntimeUtilities.CreateIfNull(ref vectorscope); + RuntimeUtilities.CreateIfNull(ref overlaySettings); + + m_Monitors = new Dictionary + { + { MonitorType.LightMeter, lightMeter }, + { MonitorType.Histogram, histogram }, + { MonitorType.Waveform, waveform }, + { MonitorType.Vectorscope, vectorscope } + }; + + foreach (var kvp in m_Monitors) + kvp.Value.OnEnable(); + } + + internal void OnDisable() + { + foreach (var kvp in m_Monitors) + kvp.Value.OnDisable(); + + DestroyDebugOverlayTarget(); + } + + void DestroyDebugOverlayTarget() + { + RuntimeUtilities.Destroy(debugOverlayTarget); + debugOverlayTarget = null; + } + + /// + /// Requests the drawing of a monitor for the current frame. + /// + /// The monitor to request + public void RequestMonitorPass(MonitorType monitor) + { + m_Monitors[monitor].requested = true; + } + + /// + /// Requests the drawing of a debug overlay for the current frame. + /// + /// The debug overlay to request + public void RequestDebugOverlay(DebugOverlay mode) + { + debugOverlay = mode; + } + + // Sets the current frame size - used to make sure the debug overlay target is always the + // correct size - mostly useful in the editor as the user can easily resize the gameview. + internal void SetFrameSize(int width, int height) + { + frameWidth = width; + frameHeight = height; + debugOverlayActive = false; + } + + /// + /// Blit a source render target to the debug overlay target. + /// + /// The command buffer to send render commands to + /// The source target + /// The property sheet to use for the blit + /// The pass to use for the property sheet + public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) + { + if (debugOverlayTarget == null || !debugOverlayTarget.IsCreated() || debugOverlayTarget.width != frameWidth || debugOverlayTarget.height != frameHeight) + { + RuntimeUtilities.Destroy(debugOverlayTarget); + + debugOverlayTarget = new RenderTexture(frameWidth, frameHeight, 0, RenderTextureFormat.ARGB32) + { + name = "Debug Overlay Target", + anisoLevel = 1, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + hideFlags = HideFlags.HideAndDontSave + }; + debugOverlayTarget.Create(); + } + + cmd.BlitFullscreenTriangle(source, debugOverlayTarget, sheet, pass); + debugOverlayActive = true; + } + + internal DepthTextureMode GetCameraFlags() + { + if (debugOverlay == DebugOverlay.Depth) + return DepthTextureMode.Depth; + + if (debugOverlay == DebugOverlay.Normals) + return DepthTextureMode.DepthNormals; + + if (debugOverlay == DebugOverlay.MotionVectors) + return DepthTextureMode.MotionVectors | DepthTextureMode.Depth; + + return DepthTextureMode.None; + } + + internal void RenderMonitors(PostProcessRenderContext context) + { + // Monitors + bool anyActive = false; + bool needsHalfRes = false; + + foreach (var kvp in m_Monitors) + { + bool active = kvp.Value.IsRequestedAndSupported(context); + anyActive |= active; + needsHalfRes |= active && kvp.Value.NeedsHalfRes(); + } + + if (!anyActive) + return; + + var cmd = context.command; + cmd.BeginSample("Monitors"); + + if (needsHalfRes) + { + cmd.GetTemporaryRT(ShaderIDs.HalfResFinalCopy, context.width / 2, context.height / 2, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.Blit(context.destination, ShaderIDs.HalfResFinalCopy); + } + + foreach (var kvp in m_Monitors) + { + var monitor = kvp.Value; + + if (monitor.requested) + monitor.Render(context); + } + + if (needsHalfRes) + cmd.ReleaseTemporaryRT(ShaderIDs.HalfResFinalCopy); + + cmd.EndSample("Monitors"); + } + + internal void RenderSpecialOverlays(PostProcessRenderContext context) + { + if (debugOverlay == DebugOverlay.Depth) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.linearDepth ? 1f : 0f, 0f, 0f, 0f)); + PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 0); + } + else if (debugOverlay == DebugOverlay.Normals) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.ClearKeywords(); + +#if !UNITY_2022_1_OR_NEWER + if (context.camera.actualRenderingPath == RenderingPath.DeferredLighting) + sheet.EnableKeyword("SOURCE_GBUFFER"); +#endif + + PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 1); + } + else if (debugOverlay == DebugOverlay.MotionVectors) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.motionColorIntensity, overlaySettings.motionGridSize, 0f, 0f)); + PushDebugOverlay(context.command, context.source, sheet, 2); + } + else if (debugOverlay == DebugOverlay.NANTracker) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + PushDebugOverlay(context.command, context.source, sheet, 3); + } + else if (debugOverlay == DebugOverlay.ColorBlindnessSimulation) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.colorBlindnessStrength, 0f, 0f, 0f)); + PushDebugOverlay(context.command, context.source, sheet, 4 + (int)overlaySettings.colorBlindnessType); + } + } + + internal void EndFrame() + { + foreach (var kvp in m_Monitors) + kvp.Value.requested = false; + + if (!debugOverlayActive) + DestroyDebugOverlayTarget(); + + debugOverlay = DebugOverlay.None; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta new file mode 100644 index 0000000..4d04343 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 314a03e1d67d9fb4b85926a765017e02 +timeCreated: 1499676807 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs new file mode 100644 index 0000000..9a5b293 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs @@ -0,0 +1,78 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base abstract class for all effect renderer types. If you're writing your own effect you + /// should rather use . + /// + /// + public abstract class PostProcessEffectRenderer + { + /// + /// This member is set to true when is + /// called by the user to reset temporal effects and other history-based effects. + /// + protected bool m_ResetHistory = true; + + /// + /// Called when the renderer is created and its associated settings have been set. + /// + /// + public virtual void Init() + { + } + + /// + /// Override this method if your renderer needs access to any of the buffers defined in + /// . + /// + /// The currently set depth texture modes + /// + public virtual DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.None; + } + + /// + /// Resets the history state for this renderer. This is automatically called when + /// is called by the user. + /// + public virtual void ResetHistory() + { + m_ResetHistory = true; + } + + /// + /// Override this method to release any resource allocated by your renderer. + /// + public virtual void Release() + { + ResetHistory(); + } + + /// + /// The render method called by when the effect is rendered. + /// + /// A context object + public abstract void Render(PostProcessRenderContext context); + + internal abstract void SetSettings(PostProcessEffectSettings settings); + } + + /// + /// The base abstract class for all effect renderer types. + /// + /// The associated type of settings for this renderer + public abstract class PostProcessEffectRenderer : PostProcessEffectRenderer + where T : PostProcessEffectSettings + { + /// + /// The current state of the effect settings associated with this renderer. + /// + public T settings { get; internal set; } + + internal override void SetSettings(PostProcessEffectSettings settings) + { + this.settings = (T)settings; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta new file mode 100644 index 0000000..cc41dbd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5cfe6169b379ff84eb9796502a1a144d +timeCreated: 1488642315 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs new file mode 100644 index 0000000..bc68c03 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.ObjectModel; +using System.Reflection; +using System.Linq; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base class for all post-processing effect settings. Any + /// members found in this class will be automatically handled and interpolated by the volume + /// framework. + /// + /// + /// + /// [Serializable] + /// [PostProcess(typeof(ExampleRenderer), "Custom/ExampleEffect")] + /// public sealed class ExampleEffect : PostProcessEffectSettings + /// { + /// [Range(0f, 1f), Tooltip("Effect intensity.")] + /// public FloatParameter intensity = new FloatParameter { value = 0f }; + /// + /// public override bool IsEnabledAndSupported(PostProcessRenderContext context) + /// { + /// return enabled.value + /// && intensity.value > 0f; // Only render the effect if intensity is greater than 0 + /// } + /// } + /// + /// + [Serializable] + public class PostProcessEffectSettings : ScriptableObject + { + /// + /// The active state of the set of parameter defined in this class. + /// + /// + public bool active = true; + + /// + /// The true state of the effect override in the stack. Setting this to false will + /// disable rendering for this effect assuming a volume with a higher priority doesn't + /// override it to true. + /// + public BoolParameter enabled = new BoolParameter { overrideState = true, value = false }; + + internal ReadOnlyCollection parameters; + + void OnEnable() + { + // Automatically grab all fields of type ParameterOverride for this instance + parameters = GetType() + .GetFields(BindingFlags.Public | BindingFlags.Instance) + .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride))) + .OrderBy(t => t.MetadataToken) // Guaranteed order + .Select(t => (ParameterOverride)t.GetValue(this)) + .ToList() + .AsReadOnly(); + + foreach (var parameter in parameters) + parameter.OnEnable(); + } + + void OnDisable() + { + if (parameters == null) + return; + + foreach (var parameter in parameters) + parameter.OnDisable(); + } + + /// + /// Sets all the overrides for this effect to a given value. + /// + /// The value to set the override states to + /// If false, the field will also + /// be set to the given value. + public void SetAllOverridesTo(bool state, bool excludeEnabled = true) + { + foreach (var prop in parameters) + { + if (excludeEnabled && prop == enabled) + continue; + + prop.overrideState = state; + } + } + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public virtual bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value; + } + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public int GetHash() + { + // Custom hashing function used to compare the state of settings (it's not meant to be + // unique but to be a quick way to check if two setting sets have the same state or not). + // Hash collision rate should be pretty low. + unchecked + { + //return parameters.Aggregate(17, (i, p) => i * 23 + p.GetHash()); + + int hash = 17; + + foreach (var p in parameters) + hash = hash * 23 + p.GetHash(); + + return hash; + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta new file mode 100644 index 0000000..4e2b545 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2df5c9d441da8704c8eab449a2f79d85 +timeCreated: 1487259888 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs new file mode 100644 index 0000000..beb55b3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs @@ -0,0 +1,51 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Injection points for custom effects. + /// + public enum PostProcessEvent + { + /// + /// Effects at this injection points will execute before transparent objects are rendered. + /// These effects will be rendered at the internal render resolution. + /// + BeforeTransparent = 0, + + /// + /// Effects at this injection point will execute before upscaling and temporal anti-aliasing. + /// These effects will be rendered at the internal render resolution. + /// + BeforeUpscaling = 1, + + /// + /// Effects at this injection points will execute after temporal anti-aliasing and before + /// builtin effects are rendered. + /// These effects will be rendered at the display resolution. + /// + BeforeStack = 2, + + /// + /// Effects at this injection points will execute after builtin effects have been rendered + /// and before the final pass that does FXAA and applies dithering. + /// These effects will be rendered at the display resolution. + /// + AfterStack = 3, + } + + // Box free comparer for our `PostProcessEvent` enum, else the runtime will box the type when + // used as a key in a dictionary, thus leading to garbage generation... *sigh* + internal struct PostProcessEventComparer : IEqualityComparer + { + public bool Equals(PostProcessEvent x, PostProcessEvent y) + { + return x == y; + } + + public int GetHashCode(PostProcessEvent obj) + { + return (int)obj; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs.meta new file mode 100644 index 0000000..f2fdd0b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessEvent.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4732e1210a3d39459db8b431f866659 +timeCreated: 1492527856 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs new file mode 100644 index 0000000..7bc836b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs @@ -0,0 +1,1561 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ +#if (ENABLE_VR_MODULE && ENABLE_VR) + using XRSettings = UnityEngine.XR.XRSettings; +#endif + + /// + /// This is the component responsible for rendering post-processing effects. It must be put on + /// every camera you want post-processing to be applied to. + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [DisallowMultipleComponent, ImageEffectAllowedInSceneView] + [AddComponentMenu("Rendering/Post-process Layer", 1000)] + [RequireComponent(typeof(Camera))] + public sealed class PostProcessLayer : MonoBehaviour + { + /// + /// Builtin anti-aliasing methods. + /// + public enum Antialiasing + { + /// + /// No anti-aliasing. + /// + None, + + /// + /// Fast Approximate Anti-aliasing (FXAA). Fast but low quality. + /// + FastApproximateAntialiasing, + + /// + /// Subpixel Morphological Anti-aliasing (SMAA). Slower but higher quality than FXAA. + /// + SubpixelMorphologicalAntialiasing, + + /// + /// Temporal Anti-aliasing (TAA). As fast as SMAA but generally higher quality. Because + /// of it's temporal nature, it can introduce ghosting artifacts on fast moving objects + /// in highly contrasted areas. + /// + TemporalAntialiasing, + + /// + /// FidelityFX Super Resolution 2 (FSR2). + /// + SuperResolution, + } + + /// + /// This is transform that will be drive the volume blending feature. In some cases you may + /// want to use a transform other than the camera, e.g. for a top down game you'll want the + /// player character to drive the blending instead of the actual camera transform. + /// Setting this field to null will disable local volumes for this layer (global ones + /// will still work). + /// + public Transform volumeTrigger; + + /// + /// A mask of layers to consider for volume blending. It allows you to do volume filtering + /// and is especially useful to optimize volume traversal. You should always have your + /// volumes in dedicated layers instead of the default one for best performances. + /// + public LayerMask volumeLayer; + + /// + /// If true, it will kill any invalid / NaN pixel and replace it with a black color + /// before post-processing is applied. It's generally a good idea to keep this enabled to + /// avoid post-processing artifacts cause by broken data in the scene. + /// + public bool stopNaNPropagation = true; + + /// + /// If true, it will render straight to the backbuffer and save the final blit done + /// by the engine. This has less overhead and will improve performance on lower-end platforms + /// (like mobiles) but breaks compatibility with legacy image effect that use OnRenderImage. + /// + public bool finalBlitToCameraTarget = false; + + /// + /// The anti-aliasing method to use for this camera. By default it's set to None. + /// + public Antialiasing antialiasingMode = Antialiasing.None; + + /// + /// Temporal Anti-aliasing settings for this camera. + /// + public TemporalAntialiasing temporalAntialiasing; + + /// + /// FSR2 upscaling & anti-aliasing settings for this camera. + /// + public SuperResolution superResolution; + + /// + /// Subpixel Morphological Anti-aliasing settings for this camera. + /// + public SubpixelMorphologicalAntialiasing subpixelMorphologicalAntialiasing; + + /// + /// Fast Approximate Anti-aliasing settings for this camera. + /// + public FastApproximateAntialiasing fastApproximateAntialiasing; + + /// + /// Fog settings for this camera. + /// + public Fog fog; + + Dithering dithering; + + /// + /// The debug layer is reponsible for rendering debugging information on the screen. It will + /// only be used if this layer is referenced in a component. + /// + /// + public PostProcessDebugLayer debugLayer; + + [SerializeField] + PostProcessResources m_Resources; + + // Some juggling needed to track down reference to the resource asset when loaded from asset + // bundle (guid conflict) + [NonSerialized] + PostProcessResources m_OldResources; + + // UI states + [UnityEngine.Scripting.Preserve] + [SerializeField] + bool m_ShowToolkit; + + [UnityEngine.Scripting.Preserve] + [SerializeField] + bool m_ShowCustomSorter; + + /// + /// If true, it will stop applying post-processing effects just before color grading + /// is applied. This is used internally to export to EXR without color grading. + /// + public bool breakBeforeColorGrading = false; + + // Pre-ordered custom user effects + // These are automatically populated and made to work properly with the serialization + // system AND the editor. Modify at your own risk. + + /// + /// A wrapper around bundles to allow their serialization in lists. + /// + [Serializable] + public sealed class SerializedBundleRef + { + /// + /// The assembly qualified name used for serialization as we can't serialize the types + /// themselves. + /// + public string assemblyQualifiedName; // We only need this at init time anyway so it's fine + + /// + /// A reference to the bundle itself. + /// + public PostProcessBundle bundle; // Not serialized, is set/reset when deserialization kicks in + } + + [SerializeField] + List m_BeforeTransparentBundles; + + [SerializeField] + List m_BeforeUpscalingBundles; + + [SerializeField] + List m_BeforeStackBundles; + + [SerializeField] + List m_AfterStackBundles; + + /// + /// Pre-ordered effects mapped to available injection points. + /// + public Dictionary> sortedBundles { get; private set; } + + /// + /// The current flags set on the camera for the built-in render pipeline. + /// + public DepthTextureMode cameraDepthFlags { get; private set; } + + // We need to keep track of bundle initialization because for some obscure reason, on + // assembly reload a MonoBehavior's Editor OnEnable will be called BEFORE the MonoBehavior's + // own OnEnable... So we'll use it to pre-init bundles if the layer inspector is opened and + // the component hasn't been enabled yet. + + /// + /// Returns true if the bundles have been initialized properly. + /// + public bool haveBundlesBeenInited { get; private set; } + + // Settings/Renderer bundles mapped to settings types + Dictionary m_Bundles; + + PropertySheetFactory m_PropertySheetFactory; + CommandBuffer m_LegacyCmdBufferBeforeReflections; + CommandBuffer m_LegacyCmdBufferBeforeLighting; + CommandBuffer m_LegacyCmdBufferOpaque; + CommandBuffer m_LegacyCmdBuffer; + Camera m_Camera; + PostProcessRenderContext m_CurrentContext; + LogHistogram m_LogHistogram; + + RenderTexture m_opaqueOnly; + RenderTexture m_upscaledOutput; + RenderTexture m_originalTargetTexture; + + bool m_SettingsUpdateNeeded = true; + bool m_IsRenderingInSceneView = false; + + TargetPool m_TargetPool; + + bool m_NaNKilled = false; + + // Recycled list - used to reduce GC stress when gathering active effects in a bundle list + // on each frame + readonly List m_ActiveEffects = new List(); + readonly List m_Targets = new List(); + + void OnEnable() + { + Init(null); + + if (!haveBundlesBeenInited) + InitBundles(); + + m_LogHistogram = new LogHistogram(); + m_PropertySheetFactory = new PropertySheetFactory(); + m_TargetPool = new TargetPool(); + + debugLayer.OnEnable(); + + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + InitLegacy(); + } + + void InitLegacy() + { + m_LegacyCmdBufferBeforeReflections = new CommandBuffer { name = "Deferred Ambient Occlusion" }; + m_LegacyCmdBufferBeforeLighting = new CommandBuffer { name = "Deferred Ambient Occlusion" }; + m_LegacyCmdBufferOpaque = new CommandBuffer { name = "Opaque Only Post-processing" }; + m_LegacyCmdBuffer = new CommandBuffer { name = "Post-processing" }; + + m_Camera = GetComponent(); + +#if !UNITY_2019_1_OR_NEWER // OnRenderImage (below) implies forceIntoRenderTexture + m_Camera.forceIntoRenderTexture = true; // Needed when running Forward / LDR / No MSAA +#endif + + m_Camera.AddCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); + m_Camera.AddCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); + m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); + m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); + + // Internal context used if no SRP is set + m_CurrentContext = new PostProcessRenderContext(); + } + +#if UNITY_2019_1_OR_NEWER + bool DynamicResolutionAllowsFinalBlitToCameraTarget() + { + return (!RuntimeUtilities.IsDynamicResolutionEnabled(m_Camera) || (ScalableBufferManager.heightScaleFactor == 1.0 && ScalableBufferManager.widthScaleFactor == 1.0)); + } + +#endif + +#if UNITY_2019_1_OR_NEWER + // We always use a CommandBuffer to blit to the final render target + // OnRenderImage is used only to avoid the automatic blit from the RenderTexture of Camera.forceIntoRenderTexture to the actual target + [ImageEffectUsesCommandBuffer] + void OnRenderImage(RenderTexture src, RenderTexture dst) + { + if (m_opaqueOnly != null) + { + RenderTexture.ReleaseTemporary(m_opaqueOnly); + m_opaqueOnly = null; + } + + if (!finalBlitToCameraTarget && m_CurrentContext.IsSuperResolutionActive()) + { + // Set the camera back to its original parameters, so we can output at full display resolution + superResolution.ResetCameraViewport(m_CurrentContext); + + // Blit the upscaled image to the backbuffer + if (m_originalTargetTexture != null) + { + Graphics.Blit(m_upscaledOutput, m_originalTargetTexture); + RenderTexture.active = dst; + + // Put the original target texture back at the end of the frame + m_Camera.targetTexture = m_originalTargetTexture; + m_originalTargetTexture = null; + } + else + { + Graphics.Blit(m_upscaledOutput, dst); + } + + RenderTexture.ReleaseTemporary(m_upscaledOutput); + m_upscaledOutput = null; + return; + } + + if (finalBlitToCameraTarget && !m_CurrentContext.stereoActive && DynamicResolutionAllowsFinalBlitToCameraTarget()) + RenderTexture.active = dst; // silence warning + else + Graphics.Blit(src, dst); + } + +#endif + + /// + /// Initializes this layer. If you create the layer via scripting you should always call + /// this method. + /// + /// A reference to the resource asset + public void Init(PostProcessResources resources) + { + if (resources != null) m_Resources = resources; + + RuntimeUtilities.CreateIfNull(ref temporalAntialiasing); + RuntimeUtilities.CreateIfNull(ref superResolution); + RuntimeUtilities.CreateIfNull(ref subpixelMorphologicalAntialiasing); + RuntimeUtilities.CreateIfNull(ref fastApproximateAntialiasing); + RuntimeUtilities.CreateIfNull(ref dithering); + RuntimeUtilities.CreateIfNull(ref fog); + RuntimeUtilities.CreateIfNull(ref debugLayer); + } + + /// + /// Initializes all the effect bundles. This is called automatically by the framework. + /// + public void InitBundles() + { + if (haveBundlesBeenInited) + return; + + // Create these lists only once, the serialization system will take over after that + RuntimeUtilities.CreateIfNull(ref m_BeforeTransparentBundles); + RuntimeUtilities.CreateIfNull(ref m_BeforeUpscalingBundles); + RuntimeUtilities.CreateIfNull(ref m_BeforeStackBundles); + RuntimeUtilities.CreateIfNull(ref m_AfterStackBundles); + + // Create a bundle for each effect type + m_Bundles = new Dictionary(); + + foreach (var type in PostProcessManager.instance.settingsTypes.Keys) + { + var settings = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + var bundle = new PostProcessBundle(settings); + m_Bundles.Add(type, bundle); + } + + // Update sorted lists with newly added or removed effects in the assemblies + UpdateBundleSortList(m_BeforeTransparentBundles, PostProcessEvent.BeforeTransparent); + UpdateBundleSortList(m_BeforeUpscalingBundles, PostProcessEvent.BeforeUpscaling); + UpdateBundleSortList(m_BeforeStackBundles, PostProcessEvent.BeforeStack); + UpdateBundleSortList(m_AfterStackBundles, PostProcessEvent.AfterStack); + + // Push all sorted lists in a dictionary for easier access + sortedBundles = new Dictionary>(new PostProcessEventComparer()) + { + { PostProcessEvent.BeforeTransparent, m_BeforeTransparentBundles }, + { PostProcessEvent.BeforeUpscaling, m_BeforeUpscalingBundles }, + { PostProcessEvent.BeforeStack, m_BeforeStackBundles }, + { PostProcessEvent.AfterStack, m_AfterStackBundles } + }; + + // Done + haveBundlesBeenInited = true; + } + + void UpdateBundleSortList(List sortedList, PostProcessEvent evt) + { + // First get all effects associated with the injection point + var effects = m_Bundles.Where(kvp => kvp.Value.attribute.eventType == evt && !kvp.Value.attribute.builtinEffect) + .Select(kvp => kvp.Value) + .ToList(); + + // Remove types that don't exist anymore + sortedList.RemoveAll(x => + { + string searchStr = x.assemblyQualifiedName; + return !effects.Exists(b => b.settings.GetType().AssemblyQualifiedName == searchStr); + }); + + // Add new ones + foreach (var effect in effects) + { + string typeName = effect.settings.GetType().AssemblyQualifiedName; + + if (!sortedList.Exists(b => b.assemblyQualifiedName == typeName)) + { + var sbr = new SerializedBundleRef { assemblyQualifiedName = typeName }; + sortedList.Add(sbr); + } + } + + // Link internal references + foreach (var effect in sortedList) + { + string typeName = effect.assemblyQualifiedName; + var bundle = effects.Find(b => b.settings.GetType().AssemblyQualifiedName == typeName); + effect.bundle = bundle; + } + } + + void OnDisable() + { + // Have to check for null camera in case the user is doing back'n'forth between SRP and + // legacy + if (m_Camera != null) + { + if (m_LegacyCmdBufferBeforeReflections != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); + if (m_LegacyCmdBufferBeforeLighting != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); + if (m_LegacyCmdBufferOpaque != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); + if (m_LegacyCmdBuffer != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); + } + + temporalAntialiasing.Release(); + superResolution.Release(); + m_LogHistogram.Release(); + + foreach (var bundle in m_Bundles.Values) + bundle.Release(); + + m_Bundles.Clear(); + m_PropertySheetFactory.Release(); + + if (debugLayer != null) + debugLayer.OnDisable(); + + // Might be an issue if several layers are blending in the same frame... + TextureLerper.instance.Clear(); + + haveBundlesBeenInited = false; + } + + // Called everytime the user resets the component from the inspector and more importantly + // the first time it's added to a GameObject. As we don't have added/removed event for + // components, this will do fine + void Reset() + { + volumeTrigger = transform; + } + + void LateUpdate() + { + // Temporarily take control of the camera's target texture, so that the upscaled output doesn't get clipped + if (m_Camera.targetTexture != null && m_CurrentContext.IsSuperResolutionActive()) + { + m_originalTargetTexture = m_Camera.targetTexture; + m_Camera.targetTexture = null; + } + } + + void OnPreCull() + { + // Unused in scriptable render pipelines + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + if (m_Camera == null || m_CurrentContext == null) + InitLegacy(); + + // Postprocessing does tweak load/store actions when it uses render targets. + // But when using builtin render pipeline, Camera will silently apply viewport when setting render target, + // meaning that Postprocessing might think that it is rendering to fullscreen RT + // and use LoadAction.DontCare freely, which will ruin the RT if we are using viewport. + // It should actually check for having tiled architecture but this is not exposed to script, + // so we are checking for mobile as a good substitute +#if UNITY_2019_3_OR_NEWER + if (SystemInfo.usesLoadStoreActions) +#else + if (Application.isMobilePlatform) +#endif + { + Rect r = m_Camera.rect; + if (Mathf.Abs(r.x) > 1e-6f || Mathf.Abs(r.y) > 1e-6f || Mathf.Abs(1.0f - r.width) > 1e-6f || Mathf.Abs(1.0f - r.height) > 1e-6f) + { + Debug.LogWarning("When used with builtin render pipeline, Postprocessing package expects to be used on a fullscreen Camera.\nPlease note that using Camera viewport may result in visual artefacts or some things not working.", m_Camera); + } + } + + // Resets the projection matrix from previous frame in case TAA was enabled. + // We also need to force reset the non-jittered projection matrix here as it's not done + // when ResetProjectionMatrix() is called and will break transparent rendering if TAA + // is switched off and the FOV or any other camera property changes. + if (m_CurrentContext.IsTemporalAntialiasingActive() || m_CurrentContext.IsSuperResolutionActive()) + { +#if UNITY_2018_2_OR_NEWER + if (!m_Camera.usePhysicalProperties) +#endif + { + m_Camera.ResetProjectionMatrix(); + m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; +#if (ENABLE_VR_MODULE && ENABLE_VR) + if (m_Camera.stereoEnabled) + { + m_Camera.ResetStereoProjectionMatrices(); + if (m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) + { + m_Camera.CopyStereoDeviceProjectionMatrixToNonJittered(Camera.StereoscopicEye.Right); + m_Camera.projectionMatrix = m_Camera.GetStereoNonJitteredProjectionMatrix(Camera.StereoscopicEye.Right); + m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; + m_Camera.SetStereoProjectionMatrix(Camera.StereoscopicEye.Right, m_Camera.GetStereoProjectionMatrix(Camera.StereoscopicEye.Right)); + } + else if (m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Left || m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Mono) + { + m_Camera.CopyStereoDeviceProjectionMatrixToNonJittered(Camera.StereoscopicEye.Left); // device to unjittered + m_Camera.projectionMatrix = m_Camera.GetStereoNonJitteredProjectionMatrix(Camera.StereoscopicEye.Left); + m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; + m_Camera.SetStereoProjectionMatrix(Camera.StereoscopicEye.Left, m_Camera.GetStereoProjectionMatrix(Camera.StereoscopicEye.Left)); + } + } +#endif + } + } + +#if (ENABLE_VR_MODULE && ENABLE_VR) + if (m_Camera.stereoEnabled) + { + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, XRSettings.renderViewportScale); + } + else +#endif + { + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1.0f); + } + + BuildCommandBuffers(); + } + + void OnPreRender() + { + // Unused in scriptable render pipelines + // Only needed for multi-pass stereo right eye + if (RuntimeUtilities.scriptableRenderPipelineActive || + (m_Camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right)) + return; + + BuildCommandBuffers(); + } + + static bool RequiresInitialBlit(Camera camera, PostProcessRenderContext context) + { + // [ImageEffectUsesCommandBuffer] is currently broken, FIXME + return true; + + /* +#if UNITY_2019_1_OR_NEWER + if (camera.allowMSAA) // this shouldn't be necessary, but until re-tested on older Unity versions just do the blits + return true; + if (RuntimeUtilities.scriptableRenderPipelineActive) // Should never be called from SRP + return true; + + return false; +#else + return true; +#endif + */ + } + + void UpdateSrcDstForOpaqueOnly(ref int src, ref int dst, PostProcessRenderContext context, RenderTargetIdentifier cameraTarget, int opaqueOnlyEffectsRemaining) + { + if (src > -1) + context.command.ReleaseTemporaryRT(src); + + context.source = context.destination; + src = dst; + + if (opaqueOnlyEffectsRemaining == 1) + { + context.destination = cameraTarget; + } + else + { + dst = m_TargetPool.Get(); + context.destination = dst; + context.GetScreenSpaceTemporaryRT(context.command, dst, 0, context.sourceFormat); + } + } + + void BuildCommandBuffers() + { + var context = m_CurrentContext; + var sourceFormat = m_Camera.targetTexture ? m_Camera.targetTexture.format : (m_Camera.allowHDR ? RuntimeUtilities.defaultHDRRenderTextureFormat : RenderTextureFormat.Default); + + if (!RuntimeUtilities.isFloatingPointFormat(sourceFormat)) + m_NaNKilled = true; + + context.Reset(); + context.camera = m_Camera; + context.sourceFormat = sourceFormat; + + // TODO: Investigate retaining command buffers on XR multi-pass right eye + m_LegacyCmdBufferBeforeReflections.Clear(); + m_LegacyCmdBufferBeforeLighting.Clear(); + m_LegacyCmdBufferOpaque.Clear(); + m_LegacyCmdBuffer.Clear(); + + SetupContext(context); + + // Modify internal rendering resolution for both the camera and the pre-upscaling post-processing effects + if (context.IsSuperResolutionActive()) + { + superResolution.ConfigureCameraViewport(context); + context.SetRenderSize(superResolution.renderSize); + } + else + { + // Ensure all of FSR2's resources are released when it's not in use + superResolution.Release(); + } + + context.command = m_LegacyCmdBufferOpaque; + TextureLerper.instance.BeginFrame(context); + UpdateVolumeSystem(context.camera, context.command); + + // Lighting & opaque-only effects + var aoBundle = GetBundle(); + var aoSettings = aoBundle.CastSettings(); + var aoRenderer = aoBundle.CastRenderer(); + + bool aoSupported = aoSettings.IsEnabledAndSupported(context); + bool aoAmbientOnly = aoRenderer.IsAmbientOnly(context); + bool isAmbientOcclusionDeferred = aoSupported && aoAmbientOnly; + bool isAmbientOcclusionOpaque = aoSupported && !aoAmbientOnly; + + var ssrBundle = GetBundle(); + var ssrSettings = ssrBundle.settings; + var ssrRenderer = ssrBundle.renderer; + bool isScreenSpaceReflectionsActive = ssrSettings.IsEnabledAndSupported(context); + +#if UNITY_2019_1_OR_NEWER + if (context.stereoActive) + context.UpdateSinglePassStereoState(context.IsTemporalAntialiasingActive() || context.IsSuperResolutionActive(), aoSupported, isScreenSpaceReflectionsActive); +#endif + // Ambient-only AO is a special case and has to be done in separate command buffers + if (isAmbientOcclusionDeferred) + { + var ao = aoRenderer.Get(); + + // Render as soon as possible - should be done async in SRPs when available + context.command = m_LegacyCmdBufferBeforeReflections; + ao.RenderAmbientOnly(context); + + // Composite with GBuffer right before the lighting pass + context.command = m_LegacyCmdBufferBeforeLighting; + ao.CompositeAmbientOnly(context); + } + else if (isAmbientOcclusionOpaque) + { + context.command = m_LegacyCmdBufferOpaque; + aoRenderer.Get().RenderAfterOpaque(context); + } + + bool fsrRequiresOpaque = context.IsSuperResolutionActive() && (superResolution.autoGenerateReactiveMask || superResolution.autoGenerateTransparencyAndComposition); + + bool isFogActive = fog.IsEnabledAndSupported(context); + bool hasCustomOpaqueOnlyEffects = HasOpaqueOnlyEffects(context); + int opaqueOnlyEffects = 0; + opaqueOnlyEffects += fsrRequiresOpaque ? 1 : 0; + opaqueOnlyEffects += isScreenSpaceReflectionsActive ? 1 : 0; + opaqueOnlyEffects += isFogActive ? 1 : 0; + opaqueOnlyEffects += hasCustomOpaqueOnlyEffects ? 1 : 0; + + // This works on right eye because it is resolved/populated at runtime + var cameraTarget = new RenderTargetIdentifier(BuiltinRenderTextureType.CameraTarget); + + if (opaqueOnlyEffects > 0) + { + var cmd = m_LegacyCmdBufferOpaque; + context.command = cmd; + context.source = cameraTarget; + context.destination = cameraTarget; + int srcTarget = -1; + int dstTarget = -1; + + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects + 1); // + 1 for blit + + if (RequiresInitialBlit(m_Camera, context) || opaqueOnlyEffects == 1) + { + cmd.BuiltinBlit(context.source, context.destination, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (fsrRequiresOpaque) + { + m_opaqueOnly = context.GetScreenSpaceTemporaryRT(); + cmd.BuiltinBlit(context.source, m_opaqueOnly); + opaqueOnlyEffects--; + } + + if (isScreenSpaceReflectionsActive) + { + ssrRenderer.RenderOrLog(context); + opaqueOnlyEffects--; + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (isFogActive) + { + fog.Render(context); + opaqueOnlyEffects--; + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (hasCustomOpaqueOnlyEffects) + RenderOpaqueOnly(context); + + cmd.ReleaseTemporaryRT(srcTarget); + } + + // Post-transparency stack + int tempRt = -1; + bool forceNanKillPass = (!m_NaNKilled && stopNaNPropagation && RuntimeUtilities.isFloatingPointFormat(sourceFormat)); + bool vrSinglePassInstancingEnabled = context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced; + if (!vrSinglePassInstancingEnabled && (RequiresInitialBlit(m_Camera, context) || forceNanKillPass)) + { + int width = context.width; +#if UNITY_2019_1_OR_NEWER && ENABLE_VR_MODULE && ENABLE_VR + var xrDesc = XRSettings.eyeTextureDesc; + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + width = xrDesc.width; +#endif + tempRt = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(m_LegacyCmdBuffer, tempRt, 0, sourceFormat, RenderTextureReadWrite.sRGB, FilterMode.Bilinear, width); + m_LegacyCmdBuffer.BuiltinBlit(cameraTarget, tempRt, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); + if (!m_NaNKilled) + m_NaNKilled = stopNaNPropagation; + + context.source = tempRt; + } + else + { + context.source = cameraTarget; + } + + context.destination = cameraTarget; + + if (!finalBlitToCameraTarget && m_CurrentContext.IsSuperResolutionActive()) + { + var displaySize = superResolution.displaySize; + m_upscaledOutput = context.GetScreenSpaceTemporaryRT(widthOverride: displaySize.x, heightOverride: displaySize.y); + context.destination = m_upscaledOutput; + } + +#if UNITY_2019_1_OR_NEWER + if (finalBlitToCameraTarget && !m_CurrentContext.stereoActive && !RuntimeUtilities.scriptableRenderPipelineActive && DynamicResolutionAllowsFinalBlitToCameraTarget()) + { + if (m_Camera.targetTexture) + { + context.destination = m_Camera.targetTexture.colorBuffer; + } + else + { + context.flip = true; + context.destination = Display.main.colorBuffer; + } + } +#endif + + context.command = m_LegacyCmdBuffer; + + Render(context); + + if (tempRt > -1) + m_LegacyCmdBuffer.ReleaseTemporaryRT(tempRt); + } + + void OnPostRender() + { + // Unused in scriptable render pipelines + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + // Set the camera back to its original parameters, so we can output at full display resolution + if (finalBlitToCameraTarget && m_CurrentContext.IsSuperResolutionActive()) + { + superResolution.ResetCameraViewport(m_CurrentContext); + } + + if (m_CurrentContext.IsTemporalAntialiasingActive() || m_CurrentContext.IsSuperResolutionActive()) + { +#if UNITY_2018_2_OR_NEWER + // TAA calls SetProjectionMatrix so if the camera projection mode was physical, it gets set to explicit. So we set it back to physical. + if (m_CurrentContext.physicalCamera) + m_Camera.usePhysicalProperties = true; + else +#endif + { + // The camera must be reset on precull and post render to avoid issues with alpha when toggling TAA. + m_Camera.ResetProjectionMatrix(); +#if (ENABLE_VR_MODULE && ENABLE_VR) + if (m_CurrentContext.stereoActive) + { + if (RuntimeUtilities.isSinglePassStereoEnabled || m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) + { + m_Camera.ResetStereoProjectionMatrices(); + // copy the left eye onto the projection matrix so that we're using the correct projection matrix after calling m_Camera.ResetProjectionMatrix(); above. + if (XRSettings.stereoRenderingMode == XRSettings.StereoRenderingMode.MultiPass) + m_Camera.projectionMatrix = m_Camera.GetStereoProjectionMatrix(Camera.StereoscopicEye.Left); + } + } +#endif + } + } + } + + /// + /// Grabs the bundle for the given effect type. + /// + /// An effect type. + /// The bundle for the effect of type + public PostProcessBundle GetBundle() + where T : PostProcessEffectSettings + { + return GetBundle(typeof(T)); + } + + /// + /// Grabs the bundle for the given effect type. + /// + /// An effect type. + /// The bundle for the effect of type + public PostProcessBundle GetBundle(Type settingsType) + { + Assert.IsTrue(m_Bundles.ContainsKey(settingsType), "Invalid type"); + return m_Bundles[settingsType]; + } + + /// + /// Gets the current settings for a given effect. + /// + /// The type of effect to look for + /// The current state of an effect + public T GetSettings() + where T : PostProcessEffectSettings + { + return GetBundle().CastSettings(); + } + + /// + /// Utility method to bake a multi-scale volumetric obscurance map for the current camera. + /// This will only work if ambient occlusion is active in the scene. + /// + /// The command buffer to use for rendering steps + /// The camera to render ambient occlusion for + /// The destination render target + /// The depth map to use. If null, it will use the depth map + /// from the given camera + /// Should the result be inverted? + /// Should use MSAA? + public void BakeMSVOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA = false) + { + var bundle = GetBundle(); + var renderer = bundle.CastRenderer().GetMultiScaleVO(); + renderer.SetResources(m_Resources); + renderer.GenerateAOMap(cmd, camera, destination, depthMap, invert, isMSAA); + } + + internal void OverrideSettings(List baseSettings, float interpFactor) + { + // Go through all settings & overriden parameters for the given volume and lerp values + foreach (var settings in baseSettings) + { + if (!settings.active) + continue; + + var target = GetBundle(settings.GetType()).settings; + int count = settings.parameters.Count; + + for (int i = 0; i < count; i++) + { + var toParam = settings.parameters[i]; + if (toParam.overrideState) + { + var fromParam = target.parameters[i]; + fromParam.Interp(fromParam, toParam, interpFactor); + } + } + } + } + + // In the legacy render loop you have to explicitely set flags on camera to tell that you + // need depth, depth+normals or motion vectors... This won't have any effect with most + // scriptable render pipelines. + void SetLegacyCameraFlags(PostProcessRenderContext context) + { + var flags = DepthTextureMode.None; + + foreach (var bundle in m_Bundles) + { + if (bundle.Value.settings.IsEnabledAndSupported(context)) + flags |= bundle.Value.renderer.GetCameraFlags(); + } + + // Special case for AA & lighting effects + if (context.IsTemporalAntialiasingActive()) + flags |= temporalAntialiasing.GetCameraFlags(); + + if (context.IsSuperResolutionActive()) + flags |= superResolution.GetCameraFlags(); + + if (fog.IsEnabledAndSupported(context)) + flags |= fog.GetCameraFlags(); + + if (debugLayer.debugOverlay != DebugOverlay.None) + flags |= debugLayer.GetCameraFlags(); + + context.camera.depthTextureMode |= flags; + cameraDepthFlags = flags; + } + + /// + /// This method should be called whenever you need to reset any temporal effect, e.g. when + /// doing camera cuts. + /// + public void ResetHistory() + { + foreach (var bundle in m_Bundles) + bundle.Value.ResetHistory(); + + temporalAntialiasing.ResetHistory(); + superResolution.ResetHistory(); + } + + /// + /// Checks if this layer has any active opaque-only effect. + /// + /// The current render context + /// true if opaque-only effects are active, false otherwise + public bool HasOpaqueOnlyEffects(PostProcessRenderContext context) + { + return HasActiveEffects(PostProcessEvent.BeforeTransparent, context); + } + + /// + /// Checks if this layer has any active effect at the given injection point. + /// + /// The injection point to look for + /// The current render context + /// true if any effect at the given injection point is active, false + /// otherwise + public bool HasActiveEffects(PostProcessEvent evt, PostProcessRenderContext context) + { + var list = sortedBundles[evt]; + + foreach (var item in list) + { + bool enabledAndSupported = item.bundle.settings.IsEnabledAndSupported(context); + + if (context.isSceneView) + { + if (item.bundle.attribute.allowInSceneView && enabledAndSupported) + return true; + } + else if (enabledAndSupported) + { + return true; + } + } + + return false; + } + + void SetupContext(PostProcessRenderContext context) + { + // Juggling required when a scene with post processing is loaded from an asset bundle + // See #1148230 + // Additional !RuntimeUtilities.isValidResources() to fix #1262826 + // The static member s_Resources is unset by addressable. The code is ill formed as it + // is not made to handle multiple scene. + if (m_OldResources != m_Resources || !RuntimeUtilities.isValidResources()) + { + RuntimeUtilities.UpdateResources(m_Resources); + m_OldResources = m_Resources; + } + + m_IsRenderingInSceneView = context.camera.cameraType == CameraType.SceneView; + context.isSceneView = m_IsRenderingInSceneView; + context.resources = m_Resources; + context.propertySheets = m_PropertySheetFactory; + context.debugLayer = debugLayer; + context.antialiasing = antialiasingMode; + context.temporalAntialiasing = temporalAntialiasing; + context.superResolution = superResolution; + context.logHistogram = m_LogHistogram; + +#if UNITY_2018_2_OR_NEWER + context.physicalCamera = context.camera.usePhysicalProperties; +#endif + + SetLegacyCameraFlags(context); + + // Prepare debug overlay + debugLayer.SetFrameSize(context.width, context.height); + + // Unsafe to keep this around but we need it for OnGUI events for debug views + // Will be removed eventually + m_CurrentContext = context; + } + + /// + /// Updates the state of the volume system. This should be called before any other + /// post-processing method when running in a scriptable render pipeline. You don't need to + /// call this method when running in one of the builtin pipelines. + /// + /// The currently rendering camera. + /// A command buffer to fill. + public void UpdateVolumeSystem(Camera cam, CommandBuffer cmd) + { + if (m_SettingsUpdateNeeded) + { + cmd.BeginSample("VolumeBlending"); + PostProcessManager.instance.UpdateSettings(this, cam); + cmd.EndSample("VolumeBlending"); + m_TargetPool.Reset(); + + // TODO: fix me once VR support is in SRP + // Needed in SRP so that _RenderViewportScaleFactor isn't 0 + if (RuntimeUtilities.scriptableRenderPipelineActive) + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1f); + } + + m_SettingsUpdateNeeded = false; + } + + /// + /// Renders effects in the bucket. You + /// should call before calling this method as it won't + /// automatically blit source into destination if no opaque-only effect is active. + /// + /// The current post-processing context. + public void RenderOpaqueOnly(PostProcessRenderContext context) + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + SetupContext(context); + + TextureLerper.instance.BeginFrame(context); + + // Update & override layer settings first (volume blending), will only be done once per + // frame, either here or in Render() if there isn't any opaque-only effect to render. + // TODO: should be removed, keeping this here for older SRPs + UpdateVolumeSystem(context.camera, context.command); + + RenderList(sortedBundles[PostProcessEvent.BeforeTransparent], context, "OpaqueOnly"); + } + + /// + /// Renders all effects not in the bucket. + /// + /// The current post-processing context. + public void Render(PostProcessRenderContext context) + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + SetupContext(context); + + TextureLerper.instance.BeginFrame(context); + var cmd = context.command; + + // Update & override layer settings first (volume blending) if the opaque only pass + // hasn't been called this frame. + // TODO: should be removed, keeping this here for older SRPs + UpdateVolumeSystem(context.camera, context.command); + + // Do a NaN killing pass if needed + int lastTarget = -1; + RenderTargetIdentifier cameraTexture = context.source; + +#if UNITY_2019_1_OR_NEWER + if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.SetSinglePassStereo(SinglePassStereoMode.None); + cmd.DisableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); + } +#endif + + for (int eye = 0; eye < context.numberOfEyes; eye++) + { + bool preparedStereoSource = false; + + if (stopNaNPropagation && !m_NaNKilled) + { + lastTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); + if (context.stereoActive && context.numberOfEyes > 1) + { + if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); + preparedStereoSource = true; + } + else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, 1, eye); + preparedStereoSource = true; + } + } + else + cmd.BlitFullscreenTriangle(context.source, lastTarget, RuntimeUtilities.copySheet, 1); + context.source = lastTarget; + m_NaNKilled = true; + } + + if (!preparedStereoSource && context.numberOfEyes > 1) + { + lastTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); + if (context.stereoActive) + { + if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); + preparedStereoSource = true; + } + else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, stopNaNPropagation ? 1 : 0, eye); + preparedStereoSource = true; + } + } + context.source = lastTarget; + } + + // Right before upscaling & temporal anti-aliasing + if (HasActiveEffects(PostProcessEvent.BeforeUpscaling, context)) + lastTarget = RenderInjectionPoint(PostProcessEvent.BeforeUpscaling, context, "BeforeUpscaling", lastTarget); + + // Do temporal anti-aliasing first + if (context.IsTemporalAntialiasingActive()) + { + if (!RuntimeUtilities.scriptableRenderPipelineActive) + { + if (context.stereoActive) + { + // We only need to configure all of this once for stereo, during OnPreCull + if (context.camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right) + temporalAntialiasing.ConfigureStereoJitteredProjectionMatrices(context); + } + else + { + temporalAntialiasing.ConfigureJitteredProjectionMatrix(context); + } + } + + var taaTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + context.GetScreenSpaceTemporaryRT(cmd, taaTarget, 0, context.sourceFormat); + context.destination = taaTarget; + temporalAntialiasing.Render(context); + context.source = taaTarget; + context.destination = finalDestination; + + if (lastTarget > -1) + cmd.ReleaseTemporaryRT(lastTarget); + + lastTarget = taaTarget; + } + else if (context.IsSuperResolutionActive()) + { + superResolution.ConfigureJitteredProjectionMatrix(context); + + // Set the upscaler's output to full display resolution, as well as for all following post-processing effects + context.SetRenderSize(superResolution.displaySize); + + var fsrTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + context.GetScreenSpaceTemporaryRT(cmd, fsrTarget, 0, context.sourceFormat, enableRandomWrite: true); + context.destination = fsrTarget; + superResolution.colorOpaqueOnly = m_opaqueOnly; + superResolution.Render(context); + context.source = fsrTarget; + context.destination = finalDestination; + + if (lastTarget > -1) + cmd.ReleaseTemporaryRT(lastTarget); + + lastTarget = fsrTarget; + } + + bool hasBeforeStackEffects = HasActiveEffects(PostProcessEvent.BeforeStack, context); + bool hasAfterStackEffects = HasActiveEffects(PostProcessEvent.AfterStack, context) && !breakBeforeColorGrading; + bool needsFinalPass = (hasAfterStackEffects + || (antialiasingMode == Antialiasing.FastApproximateAntialiasing) || (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported())) + && !breakBeforeColorGrading; + + // Right before the builtin stack + if (hasBeforeStackEffects) + lastTarget = RenderInjectionPoint(PostProcessEvent.BeforeStack, context, "BeforeStack", lastTarget); + + // Builtin stack + lastTarget = RenderBuiltins(context, !needsFinalPass, lastTarget, eye); + + // After the builtin stack but before the final pass (before FXAA & Dithering) + if (hasAfterStackEffects) + lastTarget = RenderInjectionPoint(PostProcessEvent.AfterStack, context, "AfterStack", lastTarget); + + // And close with the final pass + if (needsFinalPass) + RenderFinalPass(context, lastTarget, eye); + + if (context.stereoActive) + context.source = cameraTexture; + } + +#if UNITY_2019_1_OR_NEWER + if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.SetSinglePassStereo(SinglePassStereoMode.SideBySide); + cmd.EnableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); + } +#endif + + // Render debug monitors & overlay if requested + debugLayer.RenderSpecialOverlays(context); + debugLayer.RenderMonitors(context); + + // End frame cleanup + TextureLerper.instance.EndFrame(); + debugLayer.EndFrame(); + m_SettingsUpdateNeeded = true; + m_NaNKilled = false; + } + + int RenderInjectionPoint(PostProcessEvent evt, PostProcessRenderContext context, string marker, int releaseTargetAfterUse = -1) + { + int tempTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + + var cmd = context.command; + context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + RenderList(sortedBundles[evt], context, marker); + context.source = tempTarget; + context.destination = finalDestination; + + if (releaseTargetAfterUse > -1) + cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + + return tempTarget; + } + + void RenderList(List list, PostProcessRenderContext context, string marker) + { + var cmd = context.command; + cmd.BeginSample(marker); + + // First gather active effects - we need this to manage render targets more efficiently + m_ActiveEffects.Clear(); + for (int i = 0; i < list.Count; i++) + { + var effect = list[i].bundle; + if (effect.settings.IsEnabledAndSupported(context)) + { + if (!context.isSceneView || (context.isSceneView && effect.attribute.allowInSceneView)) + m_ActiveEffects.Add(effect.renderer); + } + } + + int count = m_ActiveEffects.Count; + + // If there's only one active effect, we can simply execute it and skip the rest + if (count == 1) + { + m_ActiveEffects[0].RenderOrLog(context); + } + else + { + // Else create the target chain + m_Targets.Clear(); + m_Targets.Add(context.source); // First target is always source + + int tempTarget1 = m_TargetPool.Get(); + int tempTarget2 = m_TargetPool.Get(); + + for (int i = 0; i < count - 1; i++) + m_Targets.Add(i % 2 == 0 ? tempTarget1 : tempTarget2); + + m_Targets.Add(context.destination); // Last target is always destination + + // Render + context.GetScreenSpaceTemporaryRT(cmd, tempTarget1, 0, context.sourceFormat); + if (count > 2) + context.GetScreenSpaceTemporaryRT(cmd, tempTarget2, 0, context.sourceFormat); + + for (int i = 0; i < count; i++) + { + context.source = m_Targets[i]; + context.destination = m_Targets[i + 1]; + m_ActiveEffects[i].RenderOrLog(context); + } + + cmd.ReleaseTemporaryRT(tempTarget1); + if (count > 2) + cmd.ReleaseTemporaryRT(tempTarget2); + } + + cmd.EndSample(marker); + } + + void ApplyFlip(PostProcessRenderContext context, MaterialPropertyBlock properties) + { + if (context.flip && !context.isSceneView) + properties.SetVector(ShaderIDs.UVTransform, new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); + else + ApplyDefaultFlip(properties); + } + + void ApplyDefaultFlip(MaterialPropertyBlock properties) + { + properties.SetVector(ShaderIDs.UVTransform, SystemInfo.graphicsUVStartsAtTop ? new Vector4(1.0f, -1.0f, 0.0f, 1.0f) : new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); + } + + int RenderBuiltins(PostProcessRenderContext context, bool isFinalPass, int releaseTargetAfterUse = -1, int eye = -1) + { + var uberSheet = context.propertySheets.Get(context.resources.shaders.uber); + uberSheet.ClearKeywords(); + uberSheet.properties.Clear(); + context.uberSheet = uberSheet; + context.autoExposureTexture = RuntimeUtilities.whiteTexture; + context.bloomBufferNameID = -1; + + if (isFinalPass && context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + var cmd = context.command; + cmd.BeginSample("BuiltinStack"); + + int tempTarget = -1; + var finalDestination = context.destination; + + if (!isFinalPass) + { + // Render to an intermediate target as this won't be the final pass + tempTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + + // Handle FXAA's keep alpha mode + if (antialiasingMode == Antialiasing.FastApproximateAntialiasing && !fastApproximateAntialiasing.keepAlpha && RuntimeUtilities.hasAlpha(context.sourceFormat)) + uberSheet.properties.SetFloat(ShaderIDs.LumaInAlpha, 1f); + } + + // Depth of field final combination pass used to be done in Uber which led to artifacts + // when used at the same time as Bloom (because both effects used the same source, so + // the stronger bloom was, the more DoF was eaten away in out of focus areas) + int depthOfFieldTarget = RenderEffect(context, true); + + // Motion blur is a separate pass - could potentially be done after DoF depending on the + // kind of results you're looking for... + int motionBlurTarget = RenderEffect(context, true); + + // Prepare exposure histogram if needed + if (ShouldGenerateLogHistogram(context)) + m_LogHistogram.Generate(context); + + // Uber effects + // 1336238: override xrActiveEye in multipass with the currently rendered eye to fix flickering issue. + int xrActiveEyeBackup = context.xrActiveEye; + if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.MultiPass) + context.xrActiveEye = eye; + RenderEffect(context); + context.xrActiveEye = xrActiveEyeBackup; // restore the eye + + uberSheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); + + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + + if (!breakBeforeColorGrading) + RenderEffect(context); + + if (isFinalPass) + { + uberSheet.EnableKeyword("FINALPASS"); + dithering.Render(context); + ApplyFlip(context, uberSheet.properties); + } + else + { + ApplyDefaultFlip(uberSheet.properties); + } + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); + } + else if (isFinalPass && context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); + } +#if LWRP_1_0_0_OR_NEWER || UNIVERSAL_1_0_0_OR_NEWER + else if (isFinalPass) + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); +#endif + else + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0); + + context.source = context.destination; + context.destination = finalDestination; + + if (releaseTargetAfterUse > -1) cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + if (motionBlurTarget > -1) cmd.ReleaseTemporaryRT(motionBlurTarget); + if (depthOfFieldTarget > -1) cmd.ReleaseTemporaryRT(depthOfFieldTarget); + if (context.bloomBufferNameID > -1) cmd.ReleaseTemporaryRT(context.bloomBufferNameID); + + cmd.EndSample("BuiltinStack"); + + return tempTarget; + } + + // This pass will have to be disabled for HDR screen output as it's an LDR pass + void RenderFinalPass(PostProcessRenderContext context, int releaseTargetAfterUse = -1, int eye = -1) + { + var cmd = context.command; + cmd.BeginSample("FinalPass"); + + if (breakBeforeColorGrading) + { + var sheet = context.propertySheets.Get(context.resources.shaders.discardAlpha); + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + sheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + sheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, sheet, 0, false, eye); + } + else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, sheet, 0, eye); + } + else + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + else + { + var uberSheet = context.propertySheets.Get(context.resources.shaders.finalPass); + uberSheet.ClearKeywords(); + uberSheet.properties.Clear(); + context.uberSheet = uberSheet; + int tempTarget = -1; + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + if (antialiasingMode == Antialiasing.FastApproximateAntialiasing) + { + uberSheet.EnableKeyword(fastApproximateAntialiasing.fastMode + ? "FXAA_LOW" + : "FXAA" + ); + + if (RuntimeUtilities.hasAlpha(context.sourceFormat)) + { + if (fastApproximateAntialiasing.keepAlpha) + uberSheet.EnableKeyword("FXAA_KEEP_ALPHA"); + } + else + uberSheet.EnableKeyword("FXAA_NO_ALPHA"); + } + else if (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported()) + { + tempTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + subpixelMorphologicalAntialiasing.Render(context); + context.source = tempTarget; + context.destination = finalDestination; + } + + dithering.Render(context); + + ApplyFlip(context, uberSheet.properties); + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); + } + else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); + } + else +#if LWRP_1_0_0_OR_NEWER || UNIVERSAL_1_0_0_OR_NEWER + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); +#else + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0); +#endif + + if (tempTarget > -1) + cmd.ReleaseTemporaryRT(tempTarget); + } + + if (releaseTargetAfterUse > -1) + cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + + cmd.EndSample("FinalPass"); + } + + int RenderEffect(PostProcessRenderContext context, bool useTempTarget = false) + where T : PostProcessEffectSettings + { + var effect = GetBundle(); + + if (!effect.settings.IsEnabledAndSupported(context)) + return -1; + + if (m_IsRenderingInSceneView && !effect.attribute.allowInSceneView) + return -1; + + if (!useTempTarget) + { + effect.renderer.RenderOrLog(context); + return -1; + } + + var finalDestination = context.destination; + var tempTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + effect.renderer.RenderOrLog(context); + context.source = tempTarget; + context.destination = finalDestination; + return tempTarget; + } + + bool ShouldGenerateLogHistogram(PostProcessRenderContext context) + { + bool autoExpo = GetBundle().settings.IsEnabledAndSupported(context); + bool lightMeter = debugLayer.lightMeter.IsRequestedAndSupported(context); + return autoExpo || lightMeter; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs.meta new file mode 100644 index 0000000..522d05b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessLayer.cs.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 948f4100a11a5c24981795d21301da5c +timeCreated: 1493713997 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: + - volumeTrigger: {instanceID: 0} + - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs new file mode 100644 index 0000000..f6b5a01 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs @@ -0,0 +1,462 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This manager tracks all volumes in the scene and does all the interpolation work. It is + /// automatically created as soon as Post-processing is active in a scene. + /// + public sealed class PostProcessManager + { + static PostProcessManager s_Instance; + + /// + /// The current singleton instance of . + /// + public static PostProcessManager instance + { + get + { + if (s_Instance == null) + s_Instance = new PostProcessManager(); + + return s_Instance; + } + } + + const int k_MaxLayerCount = 32; // Max amount of layers available in Unity + readonly Dictionary> m_SortedVolumes; + readonly List m_Volumes; + readonly Dictionary m_SortNeeded; + readonly List m_BaseSettings; + readonly List m_TempColliders; + + /// + /// This dictionary maps all available to their + /// corresponding . It can be used to list all loaded + /// builtin and custom effects. + /// + public readonly Dictionary settingsTypes; + + PostProcessManager() + { + m_SortedVolumes = new Dictionary>(); + m_Volumes = new List(); + m_SortNeeded = new Dictionary(); + m_BaseSettings = new List(); + m_TempColliders = new List(5); + + settingsTypes = new Dictionary(); + ReloadBaseTypes(); + } + +#if UNITY_EDITOR + // Called every time Unity recompile scripts in the editor. We need this to keep track of + // any new custom effect the user might add to the project + [UnityEditor.Callbacks.DidReloadScripts] + static void OnEditorReload() + { + instance.ReloadBaseTypes(); + } + +#endif + + void CleanBaseTypes() + { + settingsTypes.Clear(); + + foreach (var settings in m_BaseSettings) + RuntimeUtilities.Destroy(settings); + + m_BaseSettings.Clear(); + } + + // This will be called only once at runtime and everytime script reload kicks-in in the + // editor as we need to keep track of any compatible post-processing effects in the project + void ReloadBaseTypes() + { + CleanBaseTypes(); + + // Rebuild the base type map + var types = RuntimeUtilities.GetAllTypesDerivedFrom() + .Where( + t => t.IsDefined(typeof(PostProcessAttribute), false) + && !t.IsAbstract + ); + + foreach (var type in types) + { + settingsTypes.Add(type, type.GetAttribute()); + + // Create an instance for each effect type, these will be used for the lowest + // priority global volume as we need a default state when exiting volume ranges + var inst = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + inst.SetAllOverridesTo(true, false); + m_BaseSettings.Add(inst); + } + } + + /// + /// Gets a list of all volumes currently affecting the given layer. Results aren't sorted + /// and the list isn't cleared. + /// + /// The layer to look for + /// A list to store the volumes found + /// Should we skip disabled volumes? + /// Should we skip 0-weight volumes? + public void GetActiveVolumes(PostProcessLayer layer, List results, bool skipDisabled = true, bool skipZeroWeight = true) + { + // If no trigger is set, only global volumes will have influence + int mask = layer.volumeLayer.value; + var volumeTrigger = layer.volumeTrigger; + bool onlyGlobal = volumeTrigger == null; + var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; + + // Sort the cached volume list(s) for the given layer mask if needed and return it + var volumes = GrabVolumes(mask); + + // Traverse all volumes + foreach (var volume in volumes) + { + // Skip disabled volumes and volumes without any data or weight + if ((skipDisabled && !volume.enabled) || volume.profileRef == null || (skipZeroWeight && volume.weight <= 0f)) + continue; + + // Global volume always have influence + if (volume.isGlobal) + { + results.Add(volume); + continue; + } + + if (onlyGlobal) + continue; + + // If volume isn't global and has no collider, skip it as it's useless + var colliders = m_TempColliders; + volume.GetComponents(colliders); + if (colliders.Count == 0) + continue; + + // Find closest distance to volume, 0 means it's inside it + float closestDistanceSqr = float.PositiveInfinity; + + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API + var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; + + if (d < closestDistanceSqr) + closestDistanceSqr = d; + } + + colliders.Clear(); + float blendDistSqr = volume.blendDistance * volume.blendDistance; + + // Check for influence + if (closestDistanceSqr <= blendDistSqr) + results.Add(volume); + } + } + + /// + /// Gets the highest priority volume affecting a given layer. + /// + /// The layer to look for + /// The highest priority volume affecting the layer + public PostProcessVolume GetHighestPriorityVolume(PostProcessLayer layer) + { + if (layer == null) + throw new ArgumentNullException("layer"); + + return GetHighestPriorityVolume(layer.volumeLayer); + } + + /// + /// Gets the highest priority volume affecting in a given + /// . + /// + /// The layer mask to look for + /// The highest priority volume affecting the layer mask + /// + public PostProcessVolume GetHighestPriorityVolume(LayerMask mask) + { + float highestPriority = float.NegativeInfinity; + PostProcessVolume output = null; + + List volumes; + if (m_SortedVolumes.TryGetValue(mask, out volumes)) + { + foreach (var volume in volumes) + { + if (volume.priority > highestPriority) + { + highestPriority = volume.priority; + output = volume; + } + } + } + + return output; + } + + /// + /// Helper method to spawn a new volume in the scene. + /// + /// The unity layer to put the volume in + /// The priority to set this volume to + /// A list of effects to put in this volume + /// + public PostProcessVolume QuickVolume(int layer, float priority, params PostProcessEffectSettings[] settings) + { + var gameObject = new GameObject() + { + name = "Quick Volume", + layer = layer, + hideFlags = HideFlags.HideAndDontSave + }; + + var volume = gameObject.AddComponent(); + volume.priority = priority; + volume.isGlobal = true; + var profile = volume.profile; + + foreach (var s in settings) + { + Assert.IsNotNull(s, "Trying to create a volume with null effects"); + profile.AddSettings(s); + } + + return volume; + } + + internal void SetLayerDirty(int layer) + { + Assert.IsTrue(layer >= 0 && layer <= k_MaxLayerCount, "Invalid layer bit"); + + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + if ((mask & (1 << layer)) != 0) + m_SortNeeded[mask] = true; + } + } + + internal void UpdateVolumeLayer(PostProcessVolume volume, int prevLayer, int newLayer) + { + Assert.IsTrue(prevLayer >= 0 && prevLayer <= k_MaxLayerCount, "Invalid layer bit"); + Unregister(volume, prevLayer); + Unregister(volume, newLayer); + Register(volume, newLayer); + } + + void Register(PostProcessVolume volume, int layer) + { + m_Volumes.Add(volume); + + // Look for existing cached layer masks and add it there if needed + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + if ((mask & (1 << layer)) != 0) + kvp.Value.Add(volume); + } + + SetLayerDirty(layer); + } + + internal void Register(PostProcessVolume volume) + { + int layer = volume.gameObject.layer; + Register(volume, layer); + } + + void Unregister(PostProcessVolume volume, int layer) + { + m_Volumes.Remove(volume); + + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + // Skip layer masks this volume doesn't belong to + if ((mask & (1 << layer)) == 0) + continue; + + kvp.Value.Remove(volume); + } + } + + internal void Unregister(PostProcessVolume volume) + { + Unregister(volume, volume.previousLayer); + Unregister(volume, volume.gameObject.layer); + } + + // Faster version of OverrideSettings to force replace values in the global state + void ReplaceData(PostProcessLayer postProcessLayer) + { + foreach (var settings in m_BaseSettings) + { + var target = postProcessLayer.GetBundle(settings.GetType()).settings; + int count = settings.parameters.Count; + + for (int i = 0; i < count; i++) + target.parameters[i].SetValue(settings.parameters[i]); + } + } + + internal void UpdateSettings(PostProcessLayer postProcessLayer, Camera camera) + { + // Reset to base state + ReplaceData(postProcessLayer); + + // If no trigger is set, only global volumes will have influence + int mask = postProcessLayer.volumeLayer.value; + var volumeTrigger = postProcessLayer.volumeTrigger; + bool onlyGlobal = volumeTrigger == null; + var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; + + // Sort the cached volume list(s) for the given layer mask if needed and return it + var volumes = GrabVolumes(mask); + + // Traverse all volumes + foreach (var volume in volumes) + { +#if UNITY_EDITOR + // Skip volumes that aren't in the scene currently displayed in the scene view + if (!IsVolumeRenderedByCamera(volume, camera)) + continue; +#endif + + // Skip disabled volumes and volumes without any data or weight + if (!volume.enabled || volume.profileRef == null || volume.weight <= 0f) + continue; + + var settings = volume.profileRef.settings; + + // Global volume always have influence + if (volume.isGlobal) + { + postProcessLayer.OverrideSettings(settings, Mathf.Clamp01(volume.weight)); + continue; + } + + if (onlyGlobal) + continue; + + // If volume isn't global and has no collider, skip it as it's useless + var colliders = m_TempColliders; + volume.GetComponents(colliders); + if (colliders.Count == 0) + continue; + + // Find closest distance to volume, 0 means it's inside it + float closestDistanceSqr = float.PositiveInfinity; + + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API + var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; + + if (d < closestDistanceSqr) + closestDistanceSqr = d; + } + + colliders.Clear(); + float blendDistSqr = volume.blendDistance * volume.blendDistance; + + // Volume has no influence, ignore it + // Note: Volume doesn't do anything when `closestDistanceSqr = blendDistSqr` but + // we can't use a >= comparison as blendDistSqr could be set to 0 in which + // case volume would have total influence + if (closestDistanceSqr > blendDistSqr) + continue; + + // Volume has influence + float interpFactor = 1f; + + if (blendDistSqr > 0f) + interpFactor = 1f - (closestDistanceSqr / blendDistSqr); + + // No need to clamp01 the interpolation factor as it'll always be in [0;1[ range + postProcessLayer.OverrideSettings(settings, interpFactor * Mathf.Clamp01(volume.weight)); + } + } + + List GrabVolumes(LayerMask mask) + { + List list; + + if (!m_SortedVolumes.TryGetValue(mask, out list)) + { + // New layer mask detected, create a new list and cache all the volumes that belong + // to this mask in it + list = new List(); + + foreach (var volume in m_Volumes) + { + if ((mask & (1 << volume.gameObject.layer)) == 0) + continue; + + list.Add(volume); + m_SortNeeded[mask] = true; + } + + m_SortedVolumes.Add(mask, list); + } + + // Check sorting state + bool sortNeeded; + if (m_SortNeeded.TryGetValue(mask, out sortNeeded) && sortNeeded) + { + m_SortNeeded[mask] = false; + SortByPriority(list); + } + + return list; + } + + // Custom insertion sort. First sort will be slower but after that it'll be faster than + // using List.Sort() which is also unstable by nature. + // Sort order is ascending. + static void SortByPriority(List volumes) + { + Assert.IsNotNull(volumes, "Trying to sort volumes of non-initialized layer"); + + for (int i = 1; i < volumes.Count; i++) + { + var temp = volumes[i]; + int j = i - 1; + + while (j >= 0 && volumes[j].priority > temp.priority) + { + volumes[j + 1] = volumes[j]; + j--; + } + + volumes[j + 1] = temp; + } + } + + static bool IsVolumeRenderedByCamera(PostProcessVolume volume, Camera camera) + { +#if UNITY_2018_3_OR_NEWER && UNITY_EDITOR + return UnityEditor.SceneManagement.StageUtility.IsGameObjectRenderedByCamera(volume.gameObject, camera); +#else + return true; +#endif + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs.meta new file mode 100644 index 0000000..8baecdb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 18ff20fea2d39cf428e31d3e75b4ae79 +timeCreated: 1485268412 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs new file mode 100644 index 0000000..7f4b543 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs @@ -0,0 +1,190 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// An asset holding a set of post-processing settings to use with a . + /// + /// + public sealed class PostProcessProfile : ScriptableObject + { + /// + /// A list of all settings stored in this profile. + /// + [Tooltip("A list of all settings currently stored in this profile.")] + public List settings = new List(); + + /// + /// Sets to true if the content of the profile has changed. This is only really used + /// in the editor to handle inspector refreshes. + /// + [NonSerialized] + public bool isDirty = true; + + void OnEnable() + { + // Make sure every setting is valid. If a profile holds a script that doesn't exist + // anymore, nuke it to keep the profile clean. Note that if you delete a script that is + // currently in use in a profile you'll still get a one-time error in the console, it's + // harmless and happens because Unity does a redraw of the editor (and thus the current + // frame) before the recompilation step. + settings.RemoveAll(x => x == null); + } + + /// + /// Adds settings for an effect to the profile. + /// + /// A type of + /// The instance created from the given type + /// + public T AddSettings() + where T : PostProcessEffectSettings + { + return (T)AddSettings(typeof(T)); + } + + /// + /// Adds settings for an effect to the profile. + /// + /// A type of + /// The instance created from the given type + /// + public PostProcessEffectSettings AddSettings(Type type) + { + if (HasSettings(type)) + throw new InvalidOperationException("Effect already exists in the stack"); + + var effect = (PostProcessEffectSettings)CreateInstance(type); + effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + effect.name = type.Name; + effect.enabled.value = true; + settings.Add(effect); + isDirty = true; + return effect; + } + + /// + /// Adds settings for an effect to the profile. + /// + /// An instance of + /// The given effect instance + /// + public PostProcessEffectSettings AddSettings(PostProcessEffectSettings effect) + { + if (HasSettings(settings.GetType())) + throw new InvalidOperationException("Effect already exists in the stack"); + + settings.Add(effect); + isDirty = true; + return effect; + } + + /// + /// Removes settings for an effect from the profile. + /// + /// The type to look for and remove from the profile + /// Thrown if the effect doesn't exist in the + /// profile + public void RemoveSettings() + where T : PostProcessEffectSettings + { + RemoveSettings(typeof(T)); + } + + /// + /// Removes settings for an effect from the profile. + /// + /// The type to look for and remove from the profile + /// Thrown if the effect doesn't exist in the + /// profile + public void RemoveSettings(Type type) + { + int toRemove = -1; + + for (int i = 0; i < settings.Count; i++) + { + if (settings[i].GetType() == type) + { + toRemove = i; + break; + } + } + + if (toRemove < 0) + throw new InvalidOperationException("Effect doesn't exist in the profile"); + + settings.RemoveAt(toRemove); + isDirty = true; + } + + /// + /// Checks if an effect has been added to the profile. + /// + /// The type to look for + /// true if the effect exists in the profile, false otherwise + public bool HasSettings() + where T : PostProcessEffectSettings + { + return HasSettings(typeof(T)); + } + + /// + /// Checks if an effect has been added to the profile. + /// + /// The type to look for + /// true if the effect exists in the profile, false otherwise + public bool HasSettings(Type type) + { + foreach (var setting in settings) + { + if (setting.GetType() == type) + return true; + } + + return false; + } + + /// + /// Returns settings for a given effect type. + /// + /// The type to look for + /// Settings for the given effect type, null otherwise + public T GetSetting() where T : PostProcessEffectSettings + { + foreach (var setting in settings) + { + if (setting is T) + return setting as T; + } + + return null; + } + + /// + /// Gets settings for a given effect type. + /// + /// The type to look for + /// When this method returns, contains the value associated with + /// the specified type, if the type is found; otherwise, this parameter will be null. + /// This parameter is passed uninitialized. + /// true if the effect exists in the profile, false otherwise + public bool TryGetSettings(out T outSetting) + where T : PostProcessEffectSettings + { + var type = typeof(T); + outSetting = null; + + foreach (var setting in settings) + { + if (setting.GetType() == type) + { + outSetting = (T)setting; + return true; + } + } + + return false; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs.meta new file mode 100644 index 0000000..940b439 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessProfile.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8e6292b2c06870d4495f009f912b9600 +timeCreated: 1507906488 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs new file mode 100644 index 0000000..bc6f560 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs @@ -0,0 +1,461 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ +#if (ENABLE_VR_MODULE && ENABLE_VR) + using XRSettings = UnityEngine.XR.XRSettings; +#endif + + /// + /// A context object passed around all post-processing effects in a frame. + /// + public sealed class PostProcessRenderContext + { + // ----------------------------------------------------------------------------------------- + // The following should be filled by the render pipeline + + Camera m_Camera; + + /// + /// The camera currently being rendered. + /// + public Camera camera + { + get { return m_Camera; } + set + { + m_Camera = value; + +#if !UNITY_SWITCH && (ENABLE_VR_MODULE && ENABLE_VR) + if (m_Camera.stereoEnabled) + { + var xrDesc = XRSettings.eyeTextureDesc; + stereoRenderingMode = StereoRenderingMode.SinglePass; + numberOfEyes = 1; + +#if UNITY_2018_3_OR_NEWER + if (XRSettings.stereoRenderingMode == XRSettings.StereoRenderingMode.MultiPass) + stereoRenderingMode = StereoRenderingMode.MultiPass; +#endif + +#if UNITY_STANDALONE || UNITY_EDITOR || UNITY_PS4 || UNITY_PS5 + if (xrDesc.dimension == TextureDimension.Tex2DArray) + stereoRenderingMode = StereoRenderingMode.SinglePassInstanced; +#endif + if (stereoRenderingMode == StereoRenderingMode.SinglePassInstanced) + numberOfEyes = 2; + + width = xrDesc.width; + height = xrDesc.height; + m_sourceDescriptor = xrDesc; + + if (m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) + xrActiveEye = (int)Camera.StereoscopicEye.Right; + + screenWidth = XRSettings.eyeTextureWidth; + screenHeight = XRSettings.eyeTextureHeight; + stereoActive = true; + } + else +#endif + { + width = m_Camera.pixelWidth; + height = m_Camera.pixelHeight; + m_sourceDescriptor.width = width; + m_sourceDescriptor.height = height; + screenWidth = width; + screenHeight = height; + stereoActive = false; + numberOfEyes = 1; + } + } + } + + public void SetRenderSize(Vector2Int renderSize) + { + // TODO: I suppose we should support XR as well at some point + width = renderSize.x; + height = renderSize.y; + m_sourceDescriptor.width = width; + m_sourceDescriptor.height = height; + } + + /// + /// The command buffer to fill render commands in. + /// + public CommandBuffer command { get; set; } + + /// + /// The source target for this pass (can't be the same as ). + /// + public RenderTargetIdentifier source { get; set; } + + /// + /// The destination target for this pass (can't be the same as ). + /// + public RenderTargetIdentifier destination { get; set; } + + /// + /// The texture format used for the source target. + /// + // We need this to be set explictely as we don't have any way of knowing if we're rendering + // using HDR or not as scriptable render pipelines may ignore the HDR toggle on camera + // completely + public RenderTextureFormat sourceFormat { get; set; } + + /// + /// Should we flip the last pass? + /// + public bool flip { get; set; } + + // ----------------------------------------------------------------------------------------- + // The following is auto-populated by the post-processing stack + + /// + /// The resource asset contains reference to external resources (shaders, textures...). + /// + public PostProcessResources resources { get; internal set; } + + /// + /// The property sheet factory handled by the currently active . + /// + public PropertySheetFactory propertySheets { get; internal set; } + + /// + /// A dictionary to store custom user data objects. This is handy to share data between + /// custom effects. + /// + public Dictionary userData { get; private set; } + + /// + /// A reference to the internal debug layer. + /// + public PostProcessDebugLayer debugLayer { get; internal set; } + + /// + /// The current camera width (in pixels). + /// + public int width { get; private set; } + + /// + /// The current camera height (in pixels). + /// + public int height { get; private set; } + + /// + /// Is stereo rendering active? + /// + public bool stereoActive { get; private set; } + + /// + /// The current active rendering eye (for XR). + /// + public int xrActiveEye { get; set; } + + /// + /// The number of eyes for XR outputs. + /// + public int numberOfEyes { get; private set; } + + /// + /// Available XR rendering modes. + /// + public enum StereoRenderingMode + { + /// + /// Multi-pass. + /// + MultiPass = 0, + + /// + /// Single-pass. + /// + SinglePass, + + /// + /// Single-pass instanced. + /// + SinglePassInstanced, + + /// + /// Single-pass multi-view. + /// + SinglePassMultiview + } + + /// + /// The current rendering mode for XR. + /// + public StereoRenderingMode stereoRenderingMode { get; private set; } + + /// + /// The width of the logical screen size. + /// + public int screenWidth { get; private set; } + + /// + /// The height of the logical screen size. + /// + public int screenHeight { get; private set; } + + /// + /// Are we currently rendering in the scene view? + /// + public bool isSceneView { get; internal set; } + + /// + /// The current anti-aliasing method used by the camera. + /// + public PostProcessLayer.Antialiasing antialiasing { get; internal set; } + + /// + /// A reference to the temporal anti-aliasing settings for the rendering layer. This is + /// mostly used to grab the jitter vector and other TAA-related values when an effect needs + /// to do temporal reprojection. + /// + public TemporalAntialiasing temporalAntialiasing { get; internal set; } + + /// + /// A reference to the FSR2 settings for the rendering layer. + /// + public SuperResolution superResolution { get; internal set; } + + // Internal values used for builtin effects + // Beware, these may not have been set before a specific builtin effect has been executed + internal PropertySheet uberSheet; + internal Texture autoExposureTexture; + internal LogHistogram logHistogram; + internal Texture logLut; + internal AutoExposure autoExposure; + internal int bloomBufferNameID; +#if UNITY_2018_2_OR_NEWER + internal bool physicalCamera; +#endif + + /// + /// Resets the state of this context object. This is called by the render pipeline on every + /// frame and allows re-using the same context object between frames without having to + /// recreate a new one. + /// + public void Reset() + { + m_Camera = null; + width = 0; + height = 0; + m_sourceDescriptor = new RenderTextureDescriptor(0, 0); +#if UNITY_2018_2_OR_NEWER + physicalCamera = false; +#endif + stereoActive = false; + xrActiveEye = (int)Camera.StereoscopicEye.Left; + screenWidth = 0; + screenHeight = 0; + + command = null; + source = 0; + destination = 0; + sourceFormat = RenderTextureFormat.ARGB32; + flip = false; + + resources = null; + propertySheets = null; + debugLayer = null; + isSceneView = false; + antialiasing = PostProcessLayer.Antialiasing.None; + temporalAntialiasing = null; + + uberSheet = null; + autoExposureTexture = null; + logLut = null; + autoExposure = null; + bloomBufferNameID = -1; + + if (userData == null) + userData = new Dictionary(); + + userData.Clear(); + } + + /// + /// Checks if temporal anti-aliasing is supported and enabled. + /// + /// true if temporal anti-aliasing is supported and enabled, false + /// otherwise + public bool IsTemporalAntialiasingActive() + { + return antialiasing == PostProcessLayer.Antialiasing.TemporalAntialiasing + && !isSceneView + && temporalAntialiasing.IsSupported(); + } + + public bool IsSuperResolutionActive() + { + return antialiasing == PostProcessLayer.Antialiasing.SuperResolution + && Application.isPlaying + && !isSceneView + && superResolution.IsSupported(); + } + + /// + /// Checks if a specific debug overlay is enabled. + /// + /// The debug overlay to look for + /// true if the specified debug overlay is enable, false + /// otherwise + public bool IsDebugOverlayEnabled(DebugOverlay overlay) + { + return debugLayer.debugOverlay == overlay; + } + + /// + /// Blit a source render target to the debug overlay target. This is a direct shortcut to + /// . + /// + /// The command buffer to send render commands to + /// The source target + /// The property sheet to use for the blit + /// The pass to use for the property sheet + /// + public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) + { + debugLayer.PushDebugOverlay(cmd, source, sheet, pass); + } + + // TODO: Change w/h name to texture w/h in order to make + // size usages explicit + RenderTextureDescriptor m_sourceDescriptor; + internal RenderTextureDescriptor GetDescriptor(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default) + { + var modifiedDesc = new RenderTextureDescriptor(m_sourceDescriptor.width, m_sourceDescriptor.height, + m_sourceDescriptor.colorFormat, depthBufferBits); + modifiedDesc.dimension = m_sourceDescriptor.dimension; + modifiedDesc.volumeDepth = m_sourceDescriptor.volumeDepth; + modifiedDesc.vrUsage = m_sourceDescriptor.vrUsage; + modifiedDesc.msaaSamples = m_sourceDescriptor.msaaSamples; + modifiedDesc.memoryless = m_sourceDescriptor.memoryless; + + modifiedDesc.useMipMap = m_sourceDescriptor.useMipMap; + modifiedDesc.autoGenerateMips = m_sourceDescriptor.autoGenerateMips; + modifiedDesc.enableRandomWrite = m_sourceDescriptor.enableRandomWrite; + modifiedDesc.shadowSamplingMode = m_sourceDescriptor.shadowSamplingMode; + +#if UNITY_2019_1_OR_NEWER + if (RuntimeUtilities.IsDynamicResolutionEnabled(m_Camera)) + modifiedDesc.useDynamicScale = true; +#endif + + if (colorFormat != RenderTextureFormat.Default) + modifiedDesc.colorFormat = colorFormat; + +#if UNITY_2019_1_OR_NEWER + if (readWrite == RenderTextureReadWrite.sRGB) + modifiedDesc.sRGB = true; + else if (readWrite == RenderTextureReadWrite.Linear) + modifiedDesc.sRGB = false; + else if (readWrite == RenderTextureReadWrite.Default) + modifiedDesc.sRGB = QualitySettings.activeColorSpace != ColorSpace.Gamma; +#else + modifiedDesc.sRGB = readWrite != RenderTextureReadWrite.Linear; +#endif + + return modifiedDesc; + } + + /// + /// Grabs a temporary render target with the current display size. + /// + /// The command buffer to grab a render target from + /// The shader property name for this texture + /// The number of bits to use for the depth buffer + /// The render texture format + /// The color space conversion mode + /// The texture filtering mode + /// Override the display width; use 0 to disable the override + /// Override the display height; use 0 to disable the override + /// Enable random access write into this render texture + public void GetScreenSpaceTemporaryRT(CommandBuffer cmd, int nameID, + int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, + FilterMode filter = FilterMode.Bilinear, int widthOverride = 0, int heightOverride = 0, bool enableRandomWrite = false) + { + var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); + if (widthOverride > 0) + desc.width = widthOverride; + if (heightOverride > 0) + desc.height = heightOverride; + + //intermediates in VR are unchanged + if (stereoActive && desc.dimension == Rendering.TextureDimension.Tex2DArray) + desc.dimension = Rendering.TextureDimension.Tex2D; + + if (enableRandomWrite) + desc.enableRandomWrite = true; + +#if UNITY_2019_1_OR_NEWER + cmd.GetTemporaryRT(nameID, desc, filter); +#elif UNITY_2017_3_OR_NEWER + cmd.GetTemporaryRT(nameID, desc.width, desc.height, desc.depthBufferBits, filter, desc.colorFormat, readWrite, desc.msaaSamples, desc.enableRandomWrite, desc.memoryless, RuntimeUtilities.IsDynamicResolutionEnabled(m_Camera)); +#else + cmd.GetTemporaryRT(nameID, desc.width, desc.height, desc.depthBufferBits, filter, desc.colorFormat, readWrite, desc.msaaSamples, desc.enableRandomWrite, desc.memoryless); +#endif + } + + /// + /// Grabs a temporary render target with the current display size. + /// + /// The number of bits to use for the depth buffer + /// The render texture format + /// The color space conversion mode + /// Override the display width; use 0 to disable the override + /// Override the display height; use 0 to disable the override + /// A temporary render target + public RenderTexture GetScreenSpaceTemporaryRT(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, + RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, int widthOverride = 0, int heightOverride = 0) + { + var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); + if (widthOverride > 0) + desc.width = widthOverride; + if (heightOverride > 0) + desc.height = heightOverride; + + return RenderTexture.GetTemporary(desc); + } + + /// + /// Update current single-pass stereo state for TAA, AO, etc. + /// + /// The enabled state of Temporal Anti-aliasing + /// The enabled state of Ambient Occlusion + /// The enabled state of Screen-space Reflections + public void UpdateSinglePassStereoState(bool isTAAEnabled, bool isAOEnabled, bool isSSREnabled) + { +#if UNITY_2019_1_OR_NEWER && ENABLE_VR_MODULE && ENABLE_VR + var xrDesc = XRSettings.eyeTextureDesc; + screenWidth = XRSettings.eyeTextureWidth; + + if (stereoRenderingMode == StereoRenderingMode.SinglePass) + { + //For complex effects, it's more efficient to disable XR single-pass interface + if (isTAAEnabled || isAOEnabled || isSSREnabled) + { + numberOfEyes = 1; + } + else + { + //Use XR-interface method: + //We take care of providing stereoized camera render texture to postprocessing framework and rendering out the final postprocessed results to the each of the eye textures + // https://docs.google.com/document/d/1hANbhKCRIJs6ww7XoAIXbX3ArdAs7OBOTfZL1MqgtPI + + numberOfEyes = 2; + xrDesc.width /= 2; + xrDesc.vrUsage = VRTextureUsage.None; + screenWidth /= 2; + } + + width = xrDesc.width; + height = xrDesc.height; + m_sourceDescriptor = xrDesc; + } +#endif + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs.meta new file mode 100644 index 0000000..780771f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessRenderContext.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7733f6a6fd11474e8fc598901f90fab +timeCreated: 1488801729 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs new file mode 100644 index 0000000..fb9e469 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs @@ -0,0 +1,310 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This asset is used to store references to shaders and other resources we might need at + /// runtime without having to use a `Resources` folder. This allows for better memory management, + /// better dependency tracking and better interoperability with asset bundles. + /// + public sealed class PostProcessResources : ScriptableObject + { + /// + /// All the shaders used by post-processing. + /// + [Serializable] + public sealed class Shaders + { + /// + /// The shader used for the bloom effect. + /// + public Shader bloom; + + /// + /// The shader used for internal blit copies. + /// + public Shader copy; + + /// + /// The shader used for built-in blit copies in the built-in pipeline. + /// + public Shader copyStd; + + /// + /// The shader used for built-in blit copies in the built-in pipeline when using a + /// texture array (for stereo rendering). + /// + public Shader copyStdFromTexArray; + + /// + /// The shader used for built-in blit copies in the built-in pipeline when using a + /// double-wide texture (for stereo rendering). + /// + public Shader copyStdFromDoubleWide; + + /// + /// The shader used to kill the alpha. + /// + public Shader discardAlpha; + + /// + /// The shader used for the depth of field effect. + /// + public Shader depthOfField; + + /// + /// The shader used for the final pass. + /// + public Shader finalPass; + + /// + /// The shader used to generate the grain texture. + /// + public Shader grainBaker; + + /// + /// The shader used for the motion blur effect. + /// + public Shader motionBlur; + + /// + /// The shader used for the temporal anti-aliasing effect. + /// + public Shader temporalAntialiasing; + + /// + /// The shader used for the sub-pixel morphological anti-aliasing effect. + /// + public Shader subpixelMorphologicalAntialiasing; + + /// + /// The shader use by the volume manager to interpolate between two 2D textures. + /// + public Shader texture2dLerp; + + /// + /// The uber shader that combine several effects into one. + /// + public Shader uber; + + /// + /// The shader used to bake the 2D lookup table for color grading. + /// + public Shader lut2DBaker; + + /// + /// The shader used to draw the light meter monitor. + /// + public Shader lightMeter; + + /// + /// The shader used to draw the histogram monitor. + /// + public Shader gammaHistogram; + + /// + /// The shader used to draw the waveform monitor. + /// + public Shader waveform; + + /// + /// The shader used to draw the vectorscope monitor. + /// + public Shader vectorscope; + + /// + /// The shader used to draw debug overlays. + /// + public Shader debugOverlays; + + /// + /// The shader used for the deferred fog effect. + /// + public Shader deferredFog; + + /// + /// The shader used for the scalable ambient occlusion effect. + /// + public Shader scalableAO; + + /// + /// The shader used for the multi-scale ambient occlusion effect. + /// + public Shader multiScaleAO; + + /// + /// The shader used for the screen-space reflection effect. + /// + public Shader screenSpaceReflections; + + /// + /// Returns a copy of this class and its content. + /// + /// A copy of this class and its content. + public Shaders Clone() + { + return (Shaders)MemberwiseClone(); + } + } + + /// + /// All the compute shaders used by post-processing. + /// + [Serializable] + public sealed class ComputeShaders + { + /// + /// The compute shader used for the auto-exposure effect. + /// + public ComputeShader autoExposure; + + /// + /// The compute shader used to compute an histogram of the current frame. + /// + public ComputeShader exposureHistogram; + + /// + /// The compute shader used to bake the 3D lookup table for color grading. + /// + public ComputeShader lut3DBaker; + + /// + /// The compute shader used by the volume manager to interpolate between two 3D textures. + /// + public ComputeShader texture3dLerp; + + /// + /// The compute shader used to compute the histogram monitor. + /// + public ComputeShader gammaHistogram; + + /// + /// The compute shader used to compute the waveform monitor. + /// + public ComputeShader waveform; + + /// + /// The compute shader used to compute the vectorscope monitor. + /// + public ComputeShader vectorscope; + + /// + /// The compute shader used for the first downsampling pass of MSVO. + /// + public ComputeShader multiScaleAODownsample1; + + /// + /// The compute shader used for the second downsampling pass of MSVO. + /// + public ComputeShader multiScaleAODownsample2; + + /// + /// The compute shader used for the render pass of MSVO. + /// + public ComputeShader multiScaleAORender; + + /// + /// The compute shader used for the upsampling pass of MSVO. + /// + public ComputeShader multiScaleAOUpsample; + + /// + /// The compute shader used to a fast gaussian downsample. + /// + public ComputeShader gaussianDownsample; + + /// + /// Compute shaders that need to be looked up by name. + /// + public NamedComputeShader[] namedShaders; + + /// + /// Returns a copy of this class and its content. + /// + /// A copy of this class and its content. + public ComputeShaders Clone() + { + return (ComputeShaders)MemberwiseClone(); + } + + public ComputeShader FindComputeShader(string name) + { + for (int i = 0; i < namedShaders.Length; ++i) + { + if (namedShaders[i].name == name) + return namedShaders[i].shader; + } + + return null; + } + } + + [Serializable] + public class NamedComputeShader + { + public string name; + public ComputeShader shader; + } + + /// + /// A set of textures needed by the sub-pixel morphological anti-aliasing effect. + /// + [Serializable] + public sealed class SMAALuts + { + /// + /// The area lookup table. + /// + public Texture2D area; + + /// + /// The search lookup table. + /// + public Texture2D search; + } + + /// + /// A set of 64x64, single-channel blue noise textures. + /// + public Texture2D[] blueNoise64; + + /// + /// A set of 256x256, single-channel blue noise textures. + /// + public Texture2D[] blueNoise256; + + /// + /// Lookup tables used by the sub-pixel morphological anti-aliasing effect. + /// + public SMAALuts smaaLuts; + + /// + /// All the shaders used by post-processing. + /// + public Shaders shaders; + + /// + /// All the compute shaders used by post-processing. + /// + public ComputeShaders computeShaders; + +#if UNITY_EDITOR + /// + /// A delegate used to track resource changes. + /// + public delegate void ChangeHandler(); + + /// + /// Set this callback to be notified of resource changes. + /// + public ChangeHandler changeHandler; + + void OnValidate() + { + if (changeHandler != null) + changeHandler(); + } + +#endif + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs.meta new file mode 100644 index 0000000..6111ab7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessResources.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 30f4b897495c7ad40b2d47143e02aaba +timeCreated: 1493713089 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs new file mode 100644 index 0000000..fa78775 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs @@ -0,0 +1,279 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + // + // Here's a quick look at the architecture of this framework and how it's integrated into Unity + // (written between versions 5.6 and 2017.1): + // + // Users have to be able to plug in their own effects without having to modify the codebase and + // these custom effects should work out-of-the-box with all the other features we provide + // (volume blending etc). This relies on heavy use of polymorphism, but the only way to get + // the serialization system to work well with polymorphism in Unity is to use ScriptableObjects. + // + // Users can push their custom effects at different (hardcoded) injection points. + // + // Each effect consists of at least two classes (+ shaders): a POD "Settings" class which only + // stores parameters, and a "Renderer" class that holds the rendering logic. Settings are linked + // to renderers using a PostProcessAttribute. These are automatically collected at init time + // using reflection. Settings in this case are ScriptableObjects, we only need to serialize + // these. + // + // We could store these settings object straight into each volume and call it a day, but + // unfortunately there's one feature of Unity that doesn't work well with scene-stored assets: + // prefabs. So we need to store all of these settings in a disk-asset and treat them as + // sub-assets. + // + // Note: We have to use ScriptableObject for everything but these don't work with the Animator + // tool. It's unfortunate but it's the only way to make it easily extensible. On the other + // hand, users can animate post-processing effects using Volumes or straight up scripting. + // + // Volume blending leverages the physics system for distance checks to the nearest point on + // volume colliders. Each volume can have several colliders or any type (cube, mesh...), making + // it quite a powerful feature to use. + // + // Volumes & blending are handled by a singleton manager (see PostProcessManager). + // + // Rendering is handled by a PostProcessLayer component living on the camera, which mean you + // can easily toggle post-processing on & off or change the anti-aliasing type per-camera, + // which is very useful when doing multi-layered camera rendering or any other technique that + // involves multiple-camera setups. This PostProcessLayer component can also filters volumes + // by layers (as in Unity layers) so you can easily choose which volumes should affect the + // camera. + // + // All post-processing shaders MUST use the custom Standard Shader Library bundled with the + // framework. The reason for that is because the codebase is meant to work without any + // modification on the Classic Render Pipelines (Forward, Deferred...) and the upcoming + // Scriptable Render Pipelines (HDPipe, LDPipe...). But these don't have compatible shader + // libraries so instead of writing two code paths we chose to provide a minimalist, generic + // Standard Library geared toward post-processing use. An added bonus to that if users create + // their own post-processing effects using this framework, then they'll work without any + // modification on both Classic and Scriptable Render Pipelines. + // + + /// + /// A post-process volume component holding a post-process profile. + /// + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [AddComponentMenu("Rendering/Post-process Volume", 1001)] + public sealed class PostProcessVolume : MonoBehaviour + { + /// + /// The shared profile of this volume. + /// Modifying sharedProfile will change all volumes using this profile, and change + /// profile settings that are stored in the project too. + /// + /// + /// It is not recommended to modify profiles returned by sharedProfile. If you want + /// to modify the profile of a volume use instead. + /// + /// + public PostProcessProfile sharedProfile; + + /// + /// Should this volume be applied to the whole scene? + /// + [Tooltip("Check this box to mark this volume as global. This volume's Profile will be applied to the whole Scene.")] + public bool isGlobal = false; + + /// + /// The outer distance to start blending from. A value of 0 means no blending and the volume + /// overrides will be applied immediatly upon entry. + /// + [Min(0f), Tooltip("The distance (from the attached Collider) to start blending from. A value of 0 means there will be no blending and the Volume overrides will be applied immediatly upon entry to the attached Collider.")] + public float blendDistance = 0f; + + /// + /// The total weight of this volume in the scene. 0 means it won't do anything, 1 means full + /// effect. + /// + [Range(0f, 1f), Tooltip("The total weight of this Volume in the Scene. A value of 0 signifies that it will have no effect, 1 signifies full effect.")] + public float weight = 1f; + + /// + /// The volume priority in the stack. Higher number means higher priority. Negative values + /// are supported. + /// + [Tooltip("The volume priority in the stack. A higher value means higher priority. Negative values are supported.")] + public float priority = 0f; + + /// + /// Returns the first instantiated assigned to the volume. + /// Modifying will change the profile for this volume only. If + /// the profile is used by any other volume, this will clone the shared profile and start + /// using it from now on. + /// + /// + /// This property automatically instantiates the profile and make it unique to this volume + /// so you can safely edit it via scripting at runtime without changing the original asset + /// in the project. + /// Note that if you pass in your own profile, it is your responsibility to destroy it once + /// it's not in use anymore. + /// + /// + /// + public PostProcessProfile profile + { + get + { + if (m_InternalProfile == null) + { + m_InternalProfile = ScriptableObject.CreateInstance(); + + if (sharedProfile != null) + { + foreach (var item in sharedProfile.settings) + { + var itemCopy = Instantiate(item); + m_InternalProfile.settings.Add(itemCopy); + } + } + } + + return m_InternalProfile; + } + set + { + m_InternalProfile = value; + } + } + + internal PostProcessProfile profileRef + { + get + { + return m_InternalProfile == null + ? sharedProfile + : m_InternalProfile; + } + } + + /// + /// Checks if the volume has an intantiated profile or is using a shared profile. + /// + /// true if the profile has been intantiated + /// + /// + public bool HasInstantiatedProfile() + { + return m_InternalProfile != null; + } + + internal int previousLayer => m_PreviousLayer; + + int m_PreviousLayer; + float m_PreviousPriority; + List m_TempColliders; + PostProcessProfile m_InternalProfile; + + void OnEnable() + { + PostProcessManager.instance.Register(this); + m_PreviousLayer = gameObject.layer; + m_TempColliders = new List(); + } + + void OnDisable() + { + PostProcessManager.instance.Unregister(this); + } + + void Update() + { + // Unfortunately we need to track the current layer to update the volume manager in + // real-time as the user could change it at any time in the editor or at runtime. + // Because no event is raised when the layer changes, we have to track it on every + // frame :/ + int layer = gameObject.layer; + if (layer != m_PreviousLayer) + { + PostProcessManager.instance.UpdateVolumeLayer(this, m_PreviousLayer, layer); + m_PreviousLayer = layer; + } + + // Same for `priority`. We could use a property instead, but it doesn't play nice with + // the serialization system. Using a custom Attribute/PropertyDrawer for a property is + // possible but it doesn't work with Undo/Redo in the editor, which makes it useless. + if (priority != m_PreviousPriority) + { + PostProcessManager.instance.SetLayerDirty(layer); + m_PreviousPriority = priority; + } + } + + // TODO: Look into a better volume previsualization system + void OnDrawGizmos() + { + var colliders = m_TempColliders; + GetComponents(colliders); + + if (isGlobal || colliders == null) + return; + +#if UNITY_EDITOR + // Can't access the UnityEditor.Rendering.PostProcessing namespace from here, so + // we'll get the preferred color manually + unchecked + { + int value = UnityEditor.EditorPrefs.GetInt("PostProcessing.Volume.GizmoColor", (int)0x8033cc1a); + Gizmos.color = ColorUtilities.ToRGBA((uint)value); + } +#endif + + var scale = transform.lossyScale; + var invScale = new Vector3(1f / scale.x, 1f / scale.y, 1f / scale.z); + Gizmos.matrix = Matrix4x4.TRS(transform.position, transform.rotation, scale); + + // Draw a separate gizmo for each collider + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + // We'll just use scaling as an approximation for volume skin. It's far from being + // correct (and is completely wrong in some cases). Ultimately we'd use a distance + // field or at least a tesselate + push modifier on the collider's mesh to get a + // better approximation, but the current Gizmo system is a bit limited and because + // everything is dynamic in Unity and can be changed at anytime, it's hard to keep + // track of changes in an elegant way (which we'd need to implement a nice cache + // system for generated volume meshes). + var type = collider.GetType(); + + if (type == typeof(BoxCollider)) + { + var c = (BoxCollider)collider; + Gizmos.DrawCube(c.center, c.size); + Gizmos.DrawWireCube(c.center, c.size + 4f * blendDistance * invScale); + } + else if (type == typeof(SphereCollider)) + { + var c = (SphereCollider)collider; + Gizmos.DrawSphere(c.center, c.radius); + Gizmos.DrawWireSphere(c.center, c.radius + invScale.x * blendDistance * 2f); + } + else if (type == typeof(MeshCollider)) + { + var c = (MeshCollider)collider; + + // Only convex mesh colliders are allowed + if (!c.convex) + c.convex = true; + + // Mesh pivot should be centered or this won't work + Gizmos.DrawMesh(c.sharedMesh); + Gizmos.DrawWireMesh(c.sharedMesh, Vector3.zero, Quaternion.identity, Vector3.one + 4f * blendDistance * invScale); + } + + // Nothing for capsule (DrawCapsule isn't exposed in Gizmo), terrain, wheel and + // other colliders... + } + + colliders.Clear(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs.meta new file mode 100644 index 0000000..6396bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/PostProcessVolume.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b9a305e18de0c04dbd257a21cd47087 +timeCreated: 1492775877 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef b/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef new file mode 100644 index 0000000..91449de --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef @@ -0,0 +1,29 @@ +{ + "name": "Unity.Postprocessing.Runtime", + "references": [], + "optionalUnityReferences": [], + "includePlatforms": [], + "excludePlatforms": [], + "versionDefines": [ + { + "name": "com.unity.render-pipelines.lightweight", + "expression": "1.0.0", + "define": "LWRP_1_0_0_OR_NEWER" + }, + { + "name": "com.unity.render-pipelines.universal", + "expression": "1.0.0", + "define": "UNIVERSAL_1_0_0_OR_NEWER" + }, + { + "name": "com.unity.modules.vr", + "expression": "1.0.0", + "define": "ENABLE_VR_MODULE" + }, + { + "name": "com.unity.modules.xr", + "expression": "1.0.0", + "define": "ENABLE_XR_MODULE" + } + ] +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta b/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta new file mode 100644 index 0000000..43f1ab1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d60799ab2a985554ea1a39cd38695018 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils.meta new file mode 100644 index 0000000..4ff2fa6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8f735421c1ed8e54c992b4640aca9a89 +folderAsset: yes +timeCreated: 1487868402 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs new file mode 100644 index 0000000..5a97975 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs @@ -0,0 +1,182 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A set of utilities to manipulate color values. + /// + public static class ColorUtilities + { + /// + /// Gets the Y coordinate for the chromaticity of the standard illuminant. + /// + /// The X coordinate + /// The Y coordinate for the chromaticity of the standard illuminant + /// + /// Based on: "An analytical model of chromaticity of the standard illuminant" by Judd et al. + /// http://en.wikipedia.org/wiki/Standard_illuminant#Illuminant_series_D + /// Slightly modified to adjust it with the D65 white point (x=0.31271, y=0.32902). + /// + public static float StandardIlluminantY(float x) + { + return 2.87f * x - 3f * x * x - 0.27509507f; + } + + /// + /// Converts CIExy chromaticity to CAT02 LMS. + /// + /// The X coordinate + /// The Y coordinate + /// The CIExy chromaticity converted to CAT02 LMS + /// + /// See: http://en.wikipedia.org/wiki/LMS_color_space#CAT02 + /// + public static Vector3 CIExyToLMS(float x, float y) + { + float Y = 1f; + float X = Y * x / y; + float Z = Y * (1f - x - y) / y; + + float L = 0.7328f * X + 0.4296f * Y - 0.1624f * Z; + float M = -0.7036f * X + 1.6975f * Y + 0.0061f * Z; + float S = 0.0030f * X + 0.0136f * Y + 0.9834f * Z; + + return new Vector3(L, M, S); + } + + /// + /// Computes the color balance coefficients in the CAT02 LMS space. + /// + /// The color temperature offset + /// The color tint offset (green/magenta) + /// The color balance coefficients in the CAT02 LMS space. + public static Vector3 ComputeColorBalance(float temperature, float tint) + { + // Range ~[-1.67;1.67] works best + float t1 = temperature / 60f; + float t2 = tint / 60f; + + // Get the CIE xy chromaticity of the reference white point. + // Note: 0.31271 = x value on the D65 white point + float x = 0.31271f - t1 * (t1 < 0f ? 0.1f : 0.05f); + float y = StandardIlluminantY(x) + t2 * 0.05f; + + // Calculate the coefficients in the LMS space. + var w1 = new Vector3(0.949237f, 1.03542f, 1.08728f); // D65 white point + var w2 = CIExyToLMS(x, y); + return new Vector3(w1.x / w2.x, w1.y / w2.y, w1.z / w2.z); + } + + /// + /// Converts trackball values to Lift coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToLift(Vector4 color) + { + // Shadows + var S = new Vector3(color.x, color.y, color.z); + float lumLift = S.x * 0.2126f + S.y * 0.7152f + S.z * 0.0722f; + S = new Vector3(S.x - lumLift, S.y - lumLift, S.z - lumLift); + + float liftOffset = color.w; + return new Vector3(S.x + liftOffset, S.y + liftOffset, S.z + liftOffset); + } + + /// + /// Converts trackball values to inverted Gamma coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToInverseGamma(Vector4 color) + { + // Midtones + var M = new Vector3(color.x, color.y, color.z); + float lumGamma = M.x * 0.2126f + M.y * 0.7152f + M.z * 0.0722f; + M = new Vector3(M.x - lumGamma, M.y - lumGamma, M.z - lumGamma); + + float gammaOffset = color.w + 1f; + return new Vector3( + 1f / Mathf.Max(M.x + gammaOffset, 1e-03f), + 1f / Mathf.Max(M.y + gammaOffset, 1e-03f), + 1f / Mathf.Max(M.z + gammaOffset, 1e-03f) + ); + } + + /// + /// Converts trackball values to Gain coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToGain(Vector4 color) + { + // Highlights + var H = new Vector3(color.x, color.y, color.z); + float lumGain = H.x * 0.2126f + H.y * 0.7152f + H.z * 0.0722f; + H = new Vector3(H.x - lumGain, H.y - lumGain, H.z - lumGain); + + float gainOffset = color.w + 1f; + return new Vector3(H.x + gainOffset, H.y + gainOffset, H.z + gainOffset); + } + + // Alexa LogC converters (El 1000) + // See http://www.vocas.nl/webfm_send/964 + const float logC_cut = 0.011361f; + const float logC_a = 5.555556f; + const float logC_b = 0.047996f; + const float logC_c = 0.244161f; + const float logC_d = 0.386036f; + const float logC_e = 5.301883f; + const float logC_f = 0.092819f; + + /// + /// Converts a LogC (Alexa El 1000) value to linear. + /// + /// A LogC (Alexa El 1000) value + /// The input convert to linear + public static float LogCToLinear(float x) + { + return x > logC_e * logC_cut + logC_f + ? (Mathf.Pow(10f, (x - logC_d) / logC_c) - logC_b) / logC_a + : (x - logC_f) / logC_e; + } + + /// + /// Converts a linear value to LogC (Alexa El 1000). + /// + /// A linear value + /// The input value converted to LogC + public static float LinearToLogC(float x) + { + return x > logC_cut + ? logC_c * Mathf.Log10(logC_a * x + logC_b) + logC_d + : logC_e * x + logC_f; + } + + /// + /// Converts a color to its ARGB hexadecimal representation. + /// + /// The color to convert + /// The color converted to its ARGB hexadecimal representation + public static uint ToHex(Color c) + { + return ((uint)(c.a * 255) << 24) + | ((uint)(c.r * 255) << 16) + | ((uint)(c.g * 255) << 8) + | ((uint)(c.b * 255)); + } + + /// + /// Converts an ARGB hexadecimal input to a color structure. + /// + /// The hexadecimal input + /// The ARGB hexadecimal input converted to a color structure. + public static Color ToRGBA(uint hex) + { + return new Color( + ((hex >> 16) & 0xff) / 255f, // r + ((hex >> 8) & 0xff) / 255f, // g + ((hex) & 0xff) / 255f, // b + ((hex >> 24) & 0xff) / 255f // a + ); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta new file mode 100644 index 0000000..b15a270 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c3c112f1ddeedfe45839158cc4b148d4 +timeCreated: 1494794407 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs new file mode 100644 index 0000000..3af960c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs @@ -0,0 +1,394 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A raw implementation of John Hable's artist-friendly tonemapping curve. + /// See http://filmicworlds.com/blog/filmic-tonemapping-with-piecewise-power-curves/ + /// + public class HableCurve + { + class Segment + { + public float offsetX; + public float offsetY; + public float scaleX; + public float scaleY; + public float lnA; + public float B; + + public float Eval(float x) + { + float x0 = (x - offsetX) * scaleX; + float y0 = 0f; + + // log(0) is undefined but our function should evaluate to 0. There are better ways to handle this, + // but it's doing it the slow way here for clarity. + if (x0 > 0) + y0 = Mathf.Exp(lnA + B * Mathf.Log(x0)); + + return y0 * scaleY + offsetY; + } + } + + struct DirectParams + { + internal float x0; + internal float y0; + internal float x1; + internal float y1; + internal float W; + + internal float overshootX; + internal float overshootY; + + internal float gamma; + } + + /// + /// The curve's white point. + /// + public float whitePoint { get; private set; } + + /// + /// The inverse of the curve's white point. + /// + public float inverseWhitePoint { get; private set; } + + internal float x0 { get; private set; } + internal float x1 { get; private set; } + + // Toe, mid, shoulder + readonly Segment[] m_Segments = new Segment[3]; + + /// + /// Creates a new curve. + /// + public HableCurve() + { + for (int i = 0; i < 3; i++) + m_Segments[i] = new Segment(); + + uniforms = new Uniforms(this); + } + + /// + /// Evaluates a given point on the curve. + /// + /// The point within the curve to evaluate (on the horizontal axis) + /// The value of the curve, at the point specified + public float Eval(float x) + { + float normX = x * inverseWhitePoint; + int index = (normX < x0) ? 0 : ((normX < x1) ? 1 : 2); + var segment = m_Segments[index]; + float ret = segment.Eval(normX); + return ret; + } + + /// + /// Initializes the curve with given settings. + /// + /// Affects the transition between the toe and the mid section of + /// the curve. A value of 0 means no toe, a value of 1 means a very hard transition + /// Affects how much of the dynamic range is in the toe. With a + /// small value, the toe will be very short and quickly transition into the linear section, + /// and with a longer value having a longer toe + /// Affects the transition between the mid section and the + /// shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard + /// transition + /// Affects how many F-stops (EV) to add to the dynamic range + /// of the curve + /// Affects how much overshoot to add to the shoulder + /// Applies a gamma function to the curve + public void Init(float toeStrength, float toeLength, float shoulderStrength, float shoulderLength, float shoulderAngle, float gamma) + { + var dstParams = new DirectParams(); + + // This is not actually the display gamma. It's just a UI space to avoid having to + // enter small numbers for the input. + const float kPerceptualGamma = 2.2f; + + // Constraints + { + toeLength = Mathf.Pow(Mathf.Clamp01(toeLength), kPerceptualGamma); + toeStrength = Mathf.Clamp01(toeStrength); + shoulderAngle = Mathf.Clamp01(shoulderAngle); + shoulderStrength = Mathf.Clamp(shoulderStrength, 1e-5f, 1f - 1e-5f); + shoulderLength = Mathf.Max(0f, shoulderLength); + gamma = Mathf.Max(1e-5f, gamma); + } + + // Apply base params + { + // Toe goes from 0 to 0.5 + float x0 = toeLength * 0.5f; + float y0 = (1f - toeStrength) * x0; // Lerp from 0 to x0 + + float remainingY = 1f - y0; + + float initialW = x0 + remainingY; + + float y1_offset = (1f - shoulderStrength) * remainingY; + float x1 = x0 + y1_offset; + float y1 = y0 + y1_offset; + + // Filmic shoulder strength is in F stops + float extraW = RuntimeUtilities.Exp2(shoulderLength) - 1f; + + float W = initialW + extraW; + + dstParams.x0 = x0; + dstParams.y0 = y0; + dstParams.x1 = x1; + dstParams.y1 = y1; + dstParams.W = W; + + // Bake the linear to gamma space conversion + dstParams.gamma = gamma; + } + + dstParams.overshootX = (dstParams.W * 2f) * shoulderAngle * shoulderLength; + dstParams.overshootY = 0.5f * shoulderAngle * shoulderLength; + + InitSegments(dstParams); + } + + void InitSegments(DirectParams srcParams) + { + var paramsCopy = srcParams; + + whitePoint = srcParams.W; + inverseWhitePoint = 1f / srcParams.W; + + // normalize params to 1.0 range + paramsCopy.W = 1f; + paramsCopy.x0 /= srcParams.W; + paramsCopy.x1 /= srcParams.W; + paramsCopy.overshootX = srcParams.overshootX / srcParams.W; + + float toeM = 0f; + float shoulderM = 0f; + { + float m, b; + AsSlopeIntercept(out m, out b, paramsCopy.x0, paramsCopy.x1, paramsCopy.y0, paramsCopy.y1); + + float g = srcParams.gamma; + + // Base function of linear section plus gamma is + // y = (mx+b)^g + // + // which we can rewrite as + // y = exp(g*ln(m) + g*ln(x+b/m)) + // + // and our evaluation function is (skipping the if parts): + /* + float x0 = (x - offsetX) * scaleX; + y0 = exp(m_lnA + m_B*log(x0)); + return y0*scaleY + m_offsetY; + */ + + var midSegment = m_Segments[1]; + midSegment.offsetX = -(b / m); + midSegment.offsetY = 0f; + midSegment.scaleX = 1f; + midSegment.scaleY = 1f; + midSegment.lnA = g * Mathf.Log(m); + midSegment.B = g; + + toeM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x0); + shoulderM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x1); + + // apply gamma to endpoints + paramsCopy.y0 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y0, paramsCopy.gamma)); + paramsCopy.y1 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y1, paramsCopy.gamma)); + + paramsCopy.overshootY = Mathf.Pow(1f + paramsCopy.overshootY, paramsCopy.gamma) - 1f; + } + + this.x0 = paramsCopy.x0; + this.x1 = paramsCopy.x1; + + // Toe section + { + var toeSegment = m_Segments[0]; + toeSegment.offsetX = 0; + toeSegment.offsetY = 0f; + toeSegment.scaleX = 1f; + toeSegment.scaleY = 1f; + + float lnA, B; + SolveAB(out lnA, out B, paramsCopy.x0, paramsCopy.y0, toeM); + toeSegment.lnA = lnA; + toeSegment.B = B; + } + + // Shoulder section + { + // Use the simple version that is usually too flat + var shoulderSegment = m_Segments[2]; + + float x0 = (1f + paramsCopy.overshootX) - paramsCopy.x1; + float y0 = (1f + paramsCopy.overshootY) - paramsCopy.y1; + + float lnA, B; + SolveAB(out lnA, out B, x0, y0, shoulderM); + + shoulderSegment.offsetX = (1f + paramsCopy.overshootX); + shoulderSegment.offsetY = (1f + paramsCopy.overshootY); + + shoulderSegment.scaleX = -1f; + shoulderSegment.scaleY = -1f; + shoulderSegment.lnA = lnA; + shoulderSegment.B = B; + } + + // Normalize so that we hit 1.0 at our white point. We wouldn't have do this if we + // skipped the overshoot part. + { + // Evaluate shoulder at the end of the curve + float scale = m_Segments[2].Eval(1f); + float invScale = 1f / scale; + + m_Segments[0].offsetY *= invScale; + m_Segments[0].scaleY *= invScale; + + m_Segments[1].offsetY *= invScale; + m_Segments[1].scaleY *= invScale; + + m_Segments[2].offsetY *= invScale; + m_Segments[2].scaleY *= invScale; + } + } + + // Find a function of the form: + // f(x) = e^(lnA + Bln(x)) + // where + // f(0) = 0; not really a constraint + // f(x0) = y0 + // f'(x0) = m + void SolveAB(out float lnA, out float B, float x0, float y0, float m) + { + B = (m * x0) / y0; + lnA = Mathf.Log(y0) - B * Mathf.Log(x0); + } + + // Convert to y=mx+b + void AsSlopeIntercept(out float m, out float b, float x0, float x1, float y0, float y1) + { + float dy = (y1 - y0); + float dx = (x1 - x0); + + if (dx == 0) + m = 1f; + else + m = dy / dx; + + b = y0 - x0 * m; + } + + // f(x) = (mx+b)^g + // f'(x) = gm(mx+b)^(g-1) + float EvalDerivativeLinearGamma(float m, float b, float g, float x) + { + float ret = g * m * Mathf.Pow(m * x + b, g - 1f); + return ret; + } + + /// + /// Utility class to retrieve curve values for shader evaluation. + /// + public class Uniforms + { + HableCurve parent; + + internal Uniforms(HableCurve parent) + { + this.parent = parent; + } + + /// + /// A pre-built holding: (inverseWhitePoint, x0, x1, 0). + /// + public Vector4 curve + { + get { return new Vector4(parent.inverseWhitePoint, parent.x0, parent.x1, 0f); } + } + + /// + /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). + /// + public Vector4 toeSegmentA + { + get + { + var toe = parent.m_Segments[0]; + return new Vector4(toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY); + } + } + + /// + /// A pre-built holding: (toe.lnA, toe.B, 0, 0). + /// + public Vector4 toeSegmentB + { + get + { + var toe = parent.m_Segments[0]; + return new Vector4(toe.lnA, toe.B, 0f, 0f); + } + } + + /// + /// A pre-built holding: (mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY). + /// + public Vector4 midSegmentA + { + get + { + var mid = parent.m_Segments[1]; + return new Vector4(mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY); + } + } + + /// + /// A pre-built holding: (mid.lnA, mid.B, 0, 0). + /// + public Vector4 midSegmentB + { + get + { + var mid = parent.m_Segments[1]; + return new Vector4(mid.lnA, mid.B, 0f, 0f); + } + } + + /// + /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). + /// + public Vector4 shoSegmentA + { + get + { + var sho = parent.m_Segments[2]; + return new Vector4(sho.offsetX, sho.offsetY, sho.scaleX, sho.scaleY); + } + } + + /// + /// A pre-built holding: (sho.lnA, sho.B, 0, 0). + /// + public Vector4 shoSegmentB + { + get + { + var sho = parent.m_Segments[2]; + return new Vector4(sho.lnA, sho.B, 0f, 0f); + } + } + } + + /// + /// The builtin instance for this curve. + /// + public readonly Uniforms uniforms; + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs.meta new file mode 100644 index 0000000..7ee502c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HableCurve.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 599b4e72f6c212d40819cfde14826671 +timeCreated: 1494795842 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs new file mode 100644 index 0000000..ab29694 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs @@ -0,0 +1,30 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Halton sequence utility. + /// + public static class HaltonSeq + { + /// + /// Gets a value from the Halton sequence for a given index and radix. + /// + /// The sequence index + /// The sequence base + /// A number from the Halton sequence between 0 and 1. + public static float Get(int index, int radix) + { + float result = 0f; + float fraction = 1f / (float)radix; + + while (index > 0) + { + result += (float)(index % radix) * fraction; + + index /= radix; + fraction /= (float)radix; + } + + return result; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta new file mode 100644 index 0000000..8cff6e3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 616483d5bdbf13c43ae1b005134b8c11 +timeCreated: 1493633892 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs new file mode 100644 index 0000000..abf2ce9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs @@ -0,0 +1,62 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + internal sealed class LogHistogram + { + public const int rangeMin = -9; // ev + public const int rangeMax = 9; // ev + + // Don't forget to update 'ExposureHistogram.hlsl' if you change these values ! + const int k_Bins = 128; + + public ComputeBuffer data { get; private set; } + + public void Generate(PostProcessRenderContext context) + { + if (data == null) + data = new ComputeBuffer(k_Bins, sizeof(uint)); + + uint threadX, threadY, threadZ; + var scaleOffsetRes = GetHistogramScaleOffsetRes(context); + var compute = context.resources.computeShaders.exposureHistogram; + var cmd = context.command; + cmd.BeginSample("LogHistogram"); + + // Clear the buffer on every frame as we use it to accumulate luminance values on each frame + int kernel = compute.FindKernel("KEyeHistogramClear"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); + compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_Bins / (float)threadX), 1, 1); + + // Get a log histogram + kernel = compute.FindKernel("KEyeHistogram"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", context.source); + cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", scaleOffsetRes); + + compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(scaleOffsetRes.z / 2f / threadX), + Mathf.CeilToInt(scaleOffsetRes.w / 2f / threadY), + 1 + ); + + cmd.EndSample("LogHistogram"); + } + + public Vector4 GetHistogramScaleOffsetRes(PostProcessRenderContext context) + { + float diff = rangeMax - rangeMin; + float scale = 1f / diff; + float offset = -rangeMin * scale; + return new Vector4(scale, offset, context.width, context.height); + } + + public void Release() + { + if (data != null) + data.Release(); + + data = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs.meta new file mode 100644 index 0000000..1b01a15 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/LogHistogram.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a4b23776a3150a74ea5ad6271a3d8f15 +timeCreated: 1496324052 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs new file mode 100644 index 0000000..08e5bba --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + static class MeshUtilities + { + static Dictionary s_Primitives; + static Dictionary s_ColliderPrimitives; + + static MeshUtilities() + { + s_Primitives = new Dictionary(); + s_ColliderPrimitives = new Dictionary + { + { typeof(BoxCollider), PrimitiveType.Cube }, + { typeof(SphereCollider), PrimitiveType.Sphere }, + { typeof(CapsuleCollider), PrimitiveType.Capsule } + }; + } + + internal static Mesh GetColliderMesh(Collider collider) + { + var type = collider.GetType(); + + if (type == typeof(MeshCollider)) + return ((MeshCollider)collider).sharedMesh; + + Assert.IsTrue(s_ColliderPrimitives.ContainsKey(type), "Unknown collider"); + return GetPrimitive(s_ColliderPrimitives[type]); + } + + internal static Mesh GetPrimitive(PrimitiveType primitiveType) + { + Mesh mesh; + + if (!s_Primitives.TryGetValue(primitiveType, out mesh)) + { + mesh = GetBuiltinMesh(primitiveType); + s_Primitives.Add(primitiveType, mesh); + } + + return mesh; + } + + // (Not pretty) hack to get meshes from `unity default resources` in user land + // What it does is create a new GameObject using the CreatePrimitive utility, retrieve its + // mesh and discard it... + static Mesh GetBuiltinMesh(PrimitiveType primitiveType) + { + var gameObject = GameObject.CreatePrimitive(primitiveType); + var mesh = gameObject.GetComponent().sharedMesh; + RuntimeUtilities.Destroy(gameObject); + return mesh; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta new file mode 100644 index 0000000..7405ea4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4b42fa3a7c4baed49bb4f6a56dadc03f +timeCreated: 1488548727 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs new file mode 100644 index 0000000..8cd80b7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs @@ -0,0 +1,34 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + static class PostProcessEffectRendererExtensions + { + /// + /// Render with a try catch for all exception. + /// + /// If an exception occurs during the call, it will be logged + /// and returned. + /// + /// Use this method instead of in critical contexts + /// to avoid entering the exception flow. + /// + /// The renderer to render. + /// A context object + /// + public static Exception RenderOrLog(this PostProcessEffectRenderer self, PostProcessRenderContext context) + { + try + { + self.Render(context); + } + catch (Exception e) + { + Debug.LogException(e); + return e; + } + + return null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs.meta new file mode 100644 index 0000000..08a476a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PostProcessEffectRendererExtensions.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 442c24ca7e1a877449477a4154f887f8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs new file mode 100644 index 0000000..9dcc1f8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs @@ -0,0 +1,58 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The post-processing stack is entirely built around the use of + /// and as such requires the use of to properly deal with + /// the deferred nature of . + /// This wrapper abstracts the creation and destruction of + /// and to make the process easier. + /// + /// + public sealed class PropertySheet + { + /// + /// The actual to fill. + /// + public MaterialPropertyBlock properties { get; private set; } + + internal Material material { get; private set; } + + internal PropertySheet(Material material) + { + this.material = material; + properties = new MaterialPropertyBlock(); + } + + /// + /// Clears all keywords set on the source material. + /// + public void ClearKeywords() + { + material.shaderKeywords = null; + } + + /// + /// Enableds a given keyword on the source material. + /// + /// The keyword to enable + public void EnableKeyword(string keyword) + { + material.EnableKeyword(keyword); + } + + /// + /// Disables a given keyword on the source material. + /// + /// The keyword to disable + public void DisableKeyword(string keyword) + { + material.DisableKeyword(keyword); + } + + internal void Release() + { + RuntimeUtilities.Destroy(material); + material = null; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs.meta new file mode 100644 index 0000000..0ecf547 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheet.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4da61023839a0604d834e6ffde67ad52 +timeCreated: 1489745652 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs new file mode 100644 index 0000000..b707009 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs @@ -0,0 +1,89 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A factory for easy creation and destruction of + /// and . + /// + /// + public sealed class PropertySheetFactory + { + readonly Dictionary m_Sheets; + + /// + /// Creates a new factory. + /// + public PropertySheetFactory() + { + m_Sheets = new Dictionary(); + } + + /// + /// Gets a for a given shader identifier. Sheets are recycled + /// so you can safely call this method on every frame. + /// + /// The name of the shader to retrieve a sheet for + /// A sheet for the given shader + /// + /// This method will not work when loading post-processing from an asset bundle. For this + /// reason it is recommended to use instead. + /// + /// Thrown if the shader is invalid + [Obsolete("Use PropertySheet.Get(Shader) with a direct reference to the Shader instead.")] + public PropertySheet Get(string shaderName) + { + var shader = Shader.Find(shaderName); + + if (shader == null) + throw new ArgumentException(string.Format("Invalid shader ({0})", shaderName)); + + return Get(shader); + } + + /// + /// Gets a for a given shader instance. Sheets are recycled so + /// you can safely call this method on every frame. + /// + /// A shader instance to retrieve a sheet for + /// A sheet for the given shader + /// Thrown if the shader is invalid + public PropertySheet Get(Shader shader) + { + PropertySheet sheet; + + if (shader == null) + throw new ArgumentException(string.Format("Invalid shader ({0})", shader)); + + if (m_Sheets.TryGetValue(shader, out sheet)) + return sheet; + + var shaderName = shader.name; + var material = new Material(shader) + { + name = string.Format("PostProcess - {0}", shaderName.Substring(shaderName.LastIndexOf('/') + 1)), + hideFlags = HideFlags.DontSave + }; + + sheet = new PropertySheet(material); + m_Sheets.Add(shader, sheet); + return sheet; + } + + /// + /// Releases all resources used by this factory. + /// + /// + /// You don't need to call this method when using the builtin factory from + /// . + /// + public void Release() + { + foreach (var sheet in m_Sheets.Values) + sheet.Release(); + + m_Sheets.Clear(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta new file mode 100644 index 0000000..52eb27a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e034505fdac568a45af53ec1cdb0fbb3 +timeCreated: 1489748399 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs new file mode 100644 index 0000000..13497b8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs @@ -0,0 +1,1285 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Reflection; +using System.Text; +using UnityEngine.Assertions; + +#if UNITY_EDITOR +using UnityEditor; +#endif + +namespace UnityEngine.Rendering.PostProcessing +{ + using SceneManagement; + using UnityObject = UnityEngine.Object; + using LoadAction = RenderBufferLoadAction; + using StoreAction = RenderBufferStoreAction; + + /// + /// A set of runtime utilities used by the post-processing stack. + /// + public static class RuntimeUtilities + { + #region Textures + + static Texture2D m_WhiteTexture; + + /// + /// A 1x1 white texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D whiteTexture + { + get + { + if (m_WhiteTexture == null) + { + m_WhiteTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "White Texture" }; + m_WhiteTexture.SetPixel(0, 0, Color.white); + m_WhiteTexture.Apply(); + } + + return m_WhiteTexture; + } + } + + static Texture3D m_WhiteTexture3D; + + /// + /// A 1x1x1 white texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D whiteTexture3D + { + get + { + if (m_WhiteTexture3D == null) + { + m_WhiteTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "White Texture 3D" }; + m_WhiteTexture3D.SetPixels(new Color[] { Color.white }); + m_WhiteTexture3D.Apply(); + } + + return m_WhiteTexture3D; + } + } + + static Texture2D m_BlackTexture; + + /// + /// A 1x1 black texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D blackTexture + { + get + { + if (m_BlackTexture == null) + { + m_BlackTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Black Texture" }; + m_BlackTexture.SetPixel(0, 0, Color.black); + m_BlackTexture.Apply(); + } + + return m_BlackTexture; + } + } + + static Texture3D m_BlackTexture3D; + + /// + /// A 1x1x1 black texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D blackTexture3D + { + get + { + if (m_BlackTexture3D == null) + { + m_BlackTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Black Texture 3D" }; + m_BlackTexture3D.SetPixels(new Color[] { Color.black }); + m_BlackTexture3D.Apply(); + } + + return m_BlackTexture3D; + } + } + + static Texture2D m_TransparentTexture; + + /// + /// A 1x1 transparent texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D transparentTexture + { + get + { + if (m_TransparentTexture == null) + { + m_TransparentTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture" }; + m_TransparentTexture.SetPixel(0, 0, Color.clear); + m_TransparentTexture.Apply(); + } + + return m_TransparentTexture; + } + } + + static Texture3D m_TransparentTexture3D; + + /// + /// A 1x1x1 transparent texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D transparentTexture3D + { + get + { + if (m_TransparentTexture3D == null) + { + m_TransparentTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture 3D" }; + m_TransparentTexture3D.SetPixels(new Color[] { Color.clear }); + m_TransparentTexture3D.Apply(); + } + + return m_TransparentTexture3D; + } + } + + static Dictionary m_LutStrips = new Dictionary(); + + /// + /// Gets a 2D lookup table for color grading use. Its size will be width = height * height. + /// + /// The height of the lookup table + /// A 2D lookup table + /// + /// Lookup tables are recycled and only created once per size. You shouldn't modify them. + /// + public static Texture2D GetLutStrip(int size) + { + Texture2D texture; + if (!m_LutStrips.TryGetValue(size, out texture)) + { + int width = size * size; + int height = size; + var pixels = new Color[width * height]; + float inv = 1f / (size - 1f); + + for (int z = 0; z < size; z++) + { + var offset = z * size; + var b = z * inv; + + for (int y = 0; y < size; y++) + { + var g = y * inv; + + for (int x = 0; x < size; x++) + { + var r = x * inv; + pixels[y * width + offset + x] = new Color(r, g, b); + } + } + } + + var format = TextureFormat.RGBAHalf; + if (!format.IsSupported()) + format = TextureFormat.ARGB32; + + texture = new Texture2D(size * size, size, format, false, true) + { + name = "Strip Lut" + size, + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0 + }; + texture.SetPixels(pixels); + texture.Apply(); + m_LutStrips.Add(size, texture); + } + + return texture; + } + + #endregion + + #region Rendering + + static PostProcessResources s_Resources; + static Mesh s_FullscreenTriangle; + + /// + /// A fullscreen triangle mesh. + /// + public static Mesh fullscreenTriangle + { + get + { + if (s_FullscreenTriangle != null) + return s_FullscreenTriangle; + + s_FullscreenTriangle = new Mesh { name = "Fullscreen Triangle" }; + + // Because we have to support older platforms (GLES2/3, DX9 etc) we can't do all of + // this directly in the vertex shader using vertex ids :( + s_FullscreenTriangle.SetVertices(new List + { + new Vector3(-1f, -1f, 0f), + new Vector3(-1f, 3f, 0f), + new Vector3(3f, -1f, 0f) + }); + s_FullscreenTriangle.SetIndices(new[] { 0, 1, 2 }, MeshTopology.Triangles, 0, false); + s_FullscreenTriangle.UploadMeshData(false); + + return s_FullscreenTriangle; + } + } + + static Material s_CopyStdMaterial; + + /// + /// A simple copy material to use with the builtin pipelines. + /// + public static Material copyStdMaterial + { + get + { + if (s_CopyStdMaterial != null) + return s_CopyStdMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStd; + s_CopyStdMaterial = new Material(shader) + { + name = "PostProcess - CopyStd", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyStdMaterial; + } + } + + static Material s_CopyStdFromDoubleWideMaterial; + + /// + /// A double-wide copy material to use with VR and the builtin pipelines. + /// + public static Material copyStdFromDoubleWideMaterial + { + get + { + if (s_CopyStdFromDoubleWideMaterial != null) + return s_CopyStdFromDoubleWideMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStdFromDoubleWide; + s_CopyStdFromDoubleWideMaterial = new Material(shader) + { + name = "PostProcess - CopyStdFromDoubleWide", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyStdFromDoubleWideMaterial; + } + } + + static Material s_CopyMaterial; + + /// + /// A simple copy material independent from the rendering pipeline. + /// + public static Material copyMaterial + { + get + { + if (s_CopyMaterial != null) + return s_CopyMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copy; + s_CopyMaterial = new Material(shader) + { + name = "PostProcess - Copy", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyMaterial; + } + } + + static Material s_CopyFromTexArrayMaterial; + + /// + /// A copy material with a texture array slice as a source for the builtin pipelines. + /// + public static Material copyFromTexArrayMaterial + { + get + { + if (s_CopyFromTexArrayMaterial != null) + return s_CopyFromTexArrayMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStdFromTexArray; + s_CopyFromTexArrayMaterial = new Material(shader) + { + name = "PostProcess - CopyFromTexArray", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyFromTexArrayMaterial; + } + } + + static PropertySheet s_CopySheet; + + /// + /// A pre-configured for . + /// + public static PropertySheet copySheet + { + get + { + if (s_CopySheet == null) + s_CopySheet = new PropertySheet(copyMaterial); + + return s_CopySheet; + } + } + + static PropertySheet s_CopyFromTexArraySheet; + + /// + /// A pre-configured for . + /// + public static PropertySheet copyFromTexArraySheet + { + get + { + if (s_CopyFromTexArraySheet == null) + s_CopyFromTexArraySheet = new PropertySheet(copyFromTexArrayMaterial); + + return s_CopyFromTexArraySheet; + } + } + + internal static bool isValidResources() + { + return s_Resources != null; + } + + internal static void UpdateResources(PostProcessResources resources) + { + Destroy(s_CopyMaterial); + Destroy(s_CopyStdMaterial); + Destroy(s_CopyFromTexArrayMaterial); + Destroy(s_CopyStdFromDoubleWideMaterial); + + s_CopyMaterial = null; + s_CopyStdMaterial = null; + s_CopyFromTexArrayMaterial = null; + s_CopyStdFromDoubleWideMaterial = null; + + s_CopySheet = null; + s_CopyFromTexArraySheet = null; + + s_Resources = resources; + } + + /// + /// Sets the current render target using specified . + /// + /// The command buffer to set the render target on + /// The render target to set + /// The load action + /// The store action + /// + /// are only used on Unity 2018.2 or newer. + /// + public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, RenderTargetIdentifier rt, RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction) + { +#if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(rt, loadAction, storeAction); +#else + cmd.SetRenderTarget(rt); +#endif + } + + /// + /// Sets the current render target using specified . + /// + /// The command buffer to set the render target on + /// The render target to set + /// The load action + /// The store action + /// The load action for the depth/stencil part of rt + /// The store action for the depth/stencil part of rt + /// + /// are only used on Unity 2018.2 or newer. + /// + public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, RenderTargetIdentifier rt, + RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction, + RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction) + { +#if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(rt, loadAction, storeAction, depthLoadAction, depthStoreAction); +#else + cmd.SetRenderTarget(rt); +#endif + } + + /// + /// Sets the current render target and its depth using specified . + /// + /// The command buffer to set the render target on + /// The render target to set as color + /// The load action for the color render target + /// The store action for the color render target + /// The render target to set as depth + /// The load action for the depth render target + /// The store action for the depth render target + public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, + RenderTargetIdentifier color, RenderBufferLoadAction colorLoadAction, RenderBufferStoreAction colorStoreAction, + RenderTargetIdentifier depth, RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction) + { +#if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(color, colorLoadAction, colorStoreAction, depth, depthLoadAction, depthStoreAction); +#else + cmd.SetRenderTarget(color, depth); +#endif + } + + /// + /// Does a copy of source to destination using a fullscreen triangle. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + /// Should the depth buffer be preserved? + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, bool clear = false, Rect? viewport = null, bool preserveDepth = false) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + var colorLoad = viewport == null ? LoadAction.DontCare : LoadAction.Load; + cmd.SetRenderTargetWithLoadStoreAction(destination, colorLoad, StoreAction.Store, preserveDepth ? LoadAction.Load : colorLoad, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, copyMaterial, 0, 0); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// The load action for this blit + /// An optional viewport to consider for the blit + /// Should the depth buffer be preserved? + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, RenderBufferLoadAction loadAction, Rect? viewport = null, bool preserveDepth = false) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); +#if UNITY_2018_2_OR_NEWER + bool clear = (loadAction == LoadAction.Clear); + if (clear) + loadAction = LoadAction.DontCare; +#else + bool clear = false; +#endif + if (viewport != null) + loadAction = LoadAction.Load; + + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, preserveDepth ? LoadAction.Load : loadAction, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + /// Should the depth buffer be preserved? + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null, bool preserveDepth = false) + { +#if UNITY_2018_2_OR_NEWER + cmd.BlitFullscreenTriangle(source, destination, propertySheet, pass, clear ? LoadAction.Clear : LoadAction.DontCare, viewport, preserveDepth); +#else + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + var loadAction = viewport == null ? LoadAction.DontCare : LoadAction.Load; + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, preserveDepth ? LoadAction.Load : loadAction, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); +#endif + } + + /// + /// Blits a fullscreen triangle from a double-wide source. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The material to use for the blit + /// The pass from the material to use + /// The target eye + public static void BlitFullscreenTriangleFromDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, Material material, int pass, int eye) + { + Vector4 uvScaleOffset = new Vector4(0.5f, 1.0f, 0, 0); + + if (eye == 1) + uvScaleOffset.z = 0.5f; + cmd.SetGlobalVector(ShaderIDs.UVScaleOffset, uvScaleOffset); + cmd.BuiltinBlit(source, destination, material, pass); + } + + /// + /// Blits a fullscreen triangle to a double-wide destination. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// The target eye + public static void BlitFullscreenTriangleToDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, int eye) + { + Vector4 posScaleOffset = new Vector4(0.5f, 1.0f, -0.5f, 0); + + if (eye == 1) + posScaleOffset.z = 0.5f; + propertySheet.EnableKeyword("STEREO_DOUBLEWIDE_TARGET"); + propertySheet.properties.SetVector(ShaderIDs.PosScaleOffset, posScaleOffset); + cmd.BlitFullscreenTriangle(source, destination, propertySheet, 0); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source texture array + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// The slice to use for the texture array + public static void BlitFullscreenTriangleFromTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); + cmd.SetRenderTargetWithLoadStoreAction(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// The array slice to consider as a source + public static void BlitFullscreenTriangleToTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); + cmd.SetRenderTarget(destination, 0, CubemapFace.Unknown, -1); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The depth render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + + LoadAction loadAction = viewport == null ? LoadAction.DontCare : LoadAction.Load; + if (clear) + { + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, loadAction, StoreAction.Store); + cmd.ClearRenderTarget(true, true, Color.clear); + } + else + { + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, LoadAction.Load, StoreAction.Store); + } + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// An array of destinations render targets + /// The depth render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier[] destinations, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetRenderTarget(destinations, depth); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Does a copy of source to destination using the builtin blit command. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination) + { +#if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + destination = BuiltinRenderTextureType.CurrentActive; +#endif + cmd.Blit(source, destination); + } + + /// + /// Blits a fullscreen quad using the builtin blit command and a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The material to use for the blit + /// The pass from the material to use + public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination, Material mat, int pass = 0) + { +#if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + destination = BuiltinRenderTextureType.CurrentActive; +#endif + cmd.Blit(source, destination, mat, pass); + } + + // Fast basic copy texture if available, falls back to blit copy if not + // Assumes that both textures have the exact same type and format + /// + /// Copies the content of a texture into the other. Both textures must have the same size + /// and format or this method will fail. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// + /// If the CopyTexture command isn't supported on the target platform it will revert to a + /// fullscreen blit command instead. + /// + public static void CopyTexture(CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination) + { + if (SystemInfo.copyTextureSupport > CopyTextureSupport.None) + { + cmd.CopyTexture(source, destination); + return; + } + + cmd.BlitFullscreenTriangle(source, destination); + } + + // TODO: Generalize the GetTemporaryRT and Blit commands in order to support + // RT Arrays for Stereo Instancing/MultiView + + #endregion + + #region Unity specifics & misc methods + + /// + /// Returns true if a scriptable render pipeline is currently in use, false + /// otherwise. + /// + public static bool scriptableRenderPipelineActive + { +#if UNITY_2019_3_OR_NEWER + get { return GraphicsSettings.currentRenderPipeline != null; } +#else + get { return GraphicsSettings.renderPipelineAsset != null; } +#endif + } + + /// + /// Returns true if deferred shading is supported on the target platform, + /// false otherwise. + /// + public static bool supportsDeferredShading + { + get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DeferredShading) != BuiltinShaderMode.Disabled; } + } + + /// + /// Returns true if is supported on the + /// target platform, false otherwise. + /// + public static bool supportsDepthNormals + { + get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DepthNormals) != BuiltinShaderMode.Disabled; } + } + +#if UNITY_EDITOR + /// + /// Returns true if single-pass stereo rendering is selected, false otherwise. + /// + /// + /// This property only works in the editor. + /// + public static bool isSinglePassStereoSelected + { + get + { +#if (ENABLE_VR_MODULE && ENABLE_VR) && !UNITY_2020_1_OR_NEWER + return UnityEditorInternal.VR.VREditor.GetVREnabledOnTargetGroup(BuildPipeline.GetBuildTargetGroup(EditorUserBuildSettings.activeBuildTarget)) + && PlayerSettings.stereoRenderingPath == UnityEditor.StereoRenderingPath.SinglePass; +#else + return false; +#endif + } + } +#endif + + /// + /// Returns true if single-pass stereo rendering is active, false otherwise. + /// + /// + /// This property only works in the editor. + /// + // TODO: Check for SPSR support at runtime + public static bool isSinglePassStereoEnabled + { + get + { +#if UNITY_EDITOR + return isSinglePassStereoSelected && Application.isPlaying; +#elif !(ENABLE_VR_MODULE && ENABLE_VR) + return false; +#else + return UnityEngine.XR.XRSettings.eyeTextureDesc.vrUsage == VRTextureUsage.TwoEyes; +#endif + } + } + + /// + /// Returns true if VR is enabled, false otherwise. + /// + public static bool isVREnabled + { + get + { +#if (ENABLE_VR_MODULE && ENABLE_VR) && UNITY_EDITOR && !UNITY_2020_1_OR_NEWER + return UnityEditorInternal.VR.VREditor.GetVREnabledOnTargetGroup(BuildPipeline.GetBuildTargetGroup(EditorUserBuildSettings.activeBuildTarget)); +#elif UNITY_XBOXONE || !(ENABLE_VR_MODULE && ENABLE_VR) + return false; +#else + return UnityEngine.XR.XRSettings.enabled; +#endif + } + } + + /// + /// Returns true if the target platform is Android and the selected API is OpenGL, + /// false otherwise. + /// + public static bool isAndroidOpenGL + { + get { return Application.platform == RuntimePlatform.Android && SystemInfo.graphicsDeviceType != GraphicsDeviceType.Vulkan; } + } + + /// + /// Gets the default HDR render texture format for the current target platform. + /// + public static RenderTextureFormat defaultHDRRenderTextureFormat + { + get + { +#if !UNITY_2019_3_OR_NEWER && (UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_EDITOR) + RenderTextureFormat format = RenderTextureFormat.RGB111110Float; +#if UNITY_EDITOR + var target = EditorUserBuildSettings.activeBuildTarget; + if (target != BuildTarget.Android && target != BuildTarget.iOS && target != BuildTarget.tvOS) + return RenderTextureFormat.DefaultHDR; +#endif // UNITY_EDITOR + if (format.IsSupported()) + return format; +#endif // #if !UNITY_2019_3_OR_NEWER && (UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_EDITOR) + return RenderTextureFormat.DefaultHDR; + } + } + + /// + /// Checks if a given render texture format is a floating-point format. + /// + /// The format to test + /// true if the format is floating-point, false otherwise + public static bool isFloatingPointFormat(RenderTextureFormat format) + { + return format == RenderTextureFormat.DefaultHDR || format == RenderTextureFormat.ARGBHalf || format == RenderTextureFormat.ARGBFloat || + format == RenderTextureFormat.RGFloat || format == RenderTextureFormat.RGHalf || + format == RenderTextureFormat.RFloat || format == RenderTextureFormat.RHalf || + format == RenderTextureFormat.RGB111110Float; + } + + /// + /// Checks if a given render texture format has an alpha channel. + /// + /// The format to test + /// true if the format has an alpha channel, false otherwise + internal static bool hasAlpha(RenderTextureFormat format) + { + UnityEngine.Experimental.Rendering.GraphicsFormat gformat = UnityEngine.Experimental.Rendering.GraphicsFormatUtility.GetGraphicsFormat(format, RenderTextureReadWrite.Default); + return UnityEngine.Experimental.Rendering.GraphicsFormatUtility.HasAlphaChannel(gformat); + } + + /// + /// Properly destroys a given Unity object. + /// + /// The object to destroy + public static void Destroy(UnityObject obj) + { + if (obj != null) + { +#if UNITY_EDITOR + if (Application.isPlaying) + UnityObject.Destroy(obj); + else + UnityObject.DestroyImmediate(obj); +#else + UnityObject.Destroy(obj); +#endif + } + } + + /// + /// Returns true if the current color space setting is set to Linear, + /// false otherwise. + /// + public static bool isLinearColorSpace + { + get { return QualitySettings.activeColorSpace == ColorSpace.Linear; } + } + + /// + /// Checks if resolved depth is available on the current target platform. + /// + /// A rendering camera + /// true if resolved depth is available, false otherwise + public static bool IsResolvedDepthAvailable(Camera camera) + { + // AFAIK resolved depth is only available on D3D11/12 via BuiltinRenderTextureType.ResolvedDepth + // TODO: Is there more proper way to determine this? What about SRPs? + var gtype = SystemInfo.graphicsDeviceType; + return camera.actualRenderingPath == RenderingPath.DeferredShading && + (gtype == GraphicsDeviceType.Direct3D11 + || gtype == GraphicsDeviceType.Direct3D12 +#if UNITY_GAMECORE + || gtype == GraphicsDeviceType.GameCoreXboxSeries + || gtype == GraphicsDeviceType.GameCoreXboxOne +#endif + || gtype == GraphicsDeviceType.XboxOne + || gtype == GraphicsDeviceType.XboxOneD3D12 + ); + } + + /// + /// Properly destroys a given profile. + /// + /// The profile to destroy + /// Should we destroy all the embedded settings? + public static void DestroyProfile(PostProcessProfile profile, bool destroyEffects) + { + if (destroyEffects) + { + foreach (var effect in profile.settings) + Destroy(effect); + } + + Destroy(profile); + } + + /// + /// Properly destroys a volume. + /// + /// The volume to destroy + /// Should we destroy the attached profile? + /// Should we destroy the volume Game Object? + public static void DestroyVolume(PostProcessVolume volume, bool destroyProfile, bool destroyGameObject = false) + { + if (destroyProfile) + DestroyProfile(volume.profileRef, true); + + var gameObject = volume.gameObject; + Destroy(volume); + + if (destroyGameObject) + Destroy(gameObject); + } + + /// + /// Checks if a post-processing layer is active. + /// + /// The layer to check; can be null + /// true if the layer is enabled, false otherwise + public static bool IsPostProcessingActive(PostProcessLayer layer) + { + return layer != null + && layer.enabled; + } + + /// + /// Checks if temporal anti-aliasing is active on a given post-process layer. + /// + /// The layer to check + /// true if temporal anti-aliasing is active, false otherwise + public static bool IsTemporalAntialiasingActive(PostProcessLayer layer) + { + return IsPostProcessingActive(layer) + && layer.antialiasingMode == PostProcessLayer.Antialiasing.TemporalAntialiasing + && layer.temporalAntialiasing.IsSupported(); + } +#if UNITY_2017_3_OR_NEWER + /// + /// Checks if dynamic resolution is enabled on a given camera. + /// + /// The camera to check + /// true if dynamic resolution is enabled, false otherwise + public static bool IsDynamicResolutionEnabled(Camera camera) + { + return camera.allowDynamicResolution || (camera.targetTexture != null && camera.targetTexture.useDynamicScale); + } +#endif + /// + /// Gets all scene objects in the hierarchy, including inactive objects. This method is slow + /// on large scenes and should be used with extreme caution. + /// + /// The component to look for + /// A list of all components of type T in the scene + public static IEnumerable GetAllSceneObjects() + where T : Component + { + var queue = new Queue(); + var roots = SceneManager.GetActiveScene().GetRootGameObjects(); + + foreach (var root in roots) + { + queue.Enqueue(root.transform); + + if (root.TryGetComponent(out var comp)) + yield return comp; + } + + while (queue.Count > 0) + { + foreach (Transform child in queue.Dequeue()) + { + queue.Enqueue(child); + + if (child.TryGetComponent(out var comp)) + yield return comp; + } + } + } + + /// + /// Creates an instance of a class if it's null. + /// + /// The type to create + /// A reference to an instance to check and create if needed + public static void CreateIfNull(ref T obj) + where T : class, new() + { + if (obj == null) + obj = new T(); + } + + #endregion + + #region Maths + + /// + /// Returns the base-2 exponential function of , which is 2 + /// raised to the power . + /// + /// Value of the exponent + /// The base-2 exponential function of + public static float Exp2(float x) + { + return Mathf.Exp(x * 0.69314718055994530941723212145818f); + } + + /// + /// Gets a jittered perspective projection matrix for a given camera. + /// + /// The camera to build the projection matrix for + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GetJitteredPerspectiveProjectionMatrix(Camera camera, Vector2 offset) + { + float near = camera.nearClipPlane; + float far = camera.farClipPlane; + + float vertical = Mathf.Tan(0.5f * Mathf.Deg2Rad * camera.fieldOfView) * near; + float horizontal = vertical * camera.aspect; + + offset.x *= horizontal / (0.5f * camera.pixelWidth); + offset.y *= vertical / (0.5f * camera.pixelHeight); + + var matrix = camera.projectionMatrix; + + matrix[0, 2] += offset.x / horizontal; + matrix[1, 2] += offset.y / vertical; + + return matrix; + } + + /// + /// Gets a jittered orthographic projection matrix for a given camera. + /// + /// The camera to build the orthographic matrix for + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GetJitteredOrthographicProjectionMatrix(Camera camera, Vector2 offset) + { + float vertical = camera.orthographicSize; + float horizontal = vertical * camera.aspect; + + offset.x *= horizontal / (0.5f * camera.pixelWidth); + offset.y *= vertical / (0.5f * camera.pixelHeight); + + float left = offset.x - horizontal; + float right = offset.x + horizontal; + float top = offset.y + vertical; + float bottom = offset.y - vertical; + + return Matrix4x4.Ortho(left, right, bottom, top, camera.nearClipPlane, camera.farClipPlane); + } + + /// + /// Gets a jittered perspective projection matrix from an original projection matrix. + /// + /// The current render context + /// The original projection matrix + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GenerateJitteredProjectionMatrixFromOriginal(PostProcessRenderContext context, Matrix4x4 origProj, Vector2 jitter) + { + var planes = origProj.decomposeProjection; + + float vertFov = Math.Abs(planes.top) + Math.Abs(planes.bottom); + float horizFov = Math.Abs(planes.left) + Math.Abs(planes.right); + + var planeJitter = new Vector2(jitter.x * horizFov / context.screenWidth, + jitter.y * vertFov / context.screenHeight); + + planes.left += planeJitter.x; + planes.right += planeJitter.x; + planes.top += planeJitter.y; + planes.bottom += planeJitter.y; + + var jitteredMatrix = Matrix4x4.Frustum(planes); + + return jitteredMatrix; + } + + #endregion + + #region Reflection + + static IEnumerable m_AssemblyTypes; + + /// + /// Gets all currently available assembly types. + /// + /// A list of all currently available assembly types + /// + /// This method is slow and should be use with extreme caution. We recommend you use + /// instead if possible. + /// + /// + public static IEnumerable GetAllAssemblyTypes() + { + if (m_AssemblyTypes == null) + { + m_AssemblyTypes = AppDomain.CurrentDomain.GetAssemblies() + .SelectMany(t => + { + // Ugly hack to handle mis-versioned dlls + var innerTypes = new Type[0]; + try + { + innerTypes = t.GetTypes(); + } + catch { } + return innerTypes; + }); + } + + return m_AssemblyTypes; + } + + /// + /// Gets all currently available assembly types derived from type . + /// + /// The type to look for + /// A list of all currently available assembly types derived from type + public static IEnumerable GetAllTypesDerivedFrom() + { +#if UNITY_EDITOR && UNITY_2019_2_OR_NEWER + return UnityEditor.TypeCache.GetTypesDerivedFrom(); +#else + return GetAllAssemblyTypes().Where(t => t.IsSubclassOf(typeof(T))); +#endif + } + + /// + /// Helper method to get the first attribute of type T on a given type. + /// + /// The attribute type to look for + /// The type to explore + /// The attribute found + public static T GetAttribute(this Type type) where T : Attribute + { + Assert.IsTrue(type.IsDefined(typeof(T), false), "Attribute not found"); + return (T)type.GetCustomAttributes(typeof(T), false)[0]; + } + + /// + /// Returns all attributes set on a specific member. + /// + /// The class type where the member is defined + /// The member type + /// An expression path to the member + /// An array of attributes + /// + /// This method doesn't return inherited attributes, only explicit ones. + /// + public static Attribute[] GetMemberAttributes(Expression> expr) + { + Expression body = expr; + + if (body is LambdaExpression) + body = ((LambdaExpression)body).Body; + + switch (body.NodeType) + { + case ExpressionType.MemberAccess: + var fi = (FieldInfo)((MemberExpression)body).Member; + return fi.GetCustomAttributes(false).Cast().ToArray(); + default: + throw new InvalidOperationException(); + } + } + + /// + /// Returns a string path from an expression. This is mostly used to retrieve serialized + /// properties without hardcoding the field path as a string and thus allowing proper + /// refactoring features. + /// + /// The class type where the member is defined + /// The member type + /// An expression path fo the member + /// A string representation of the expression path + public static string GetFieldPath(Expression> expr) + { + MemberExpression me; + switch (expr.Body.NodeType) + { + case ExpressionType.MemberAccess: + me = expr.Body as MemberExpression; + break; + default: + throw new InvalidOperationException(); + } + + var members = new List(); + while (me != null) + { + members.Add(me.Member.Name); + me = me.Expression as MemberExpression; + } + + var sb = new StringBuilder(); + for (int i = members.Count - 1; i >= 0; i--) + { + sb.Append(members[i]); + if (i > 0) sb.Append('.'); + } + + return sb.ToString(); + } + + #endregion + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta new file mode 100644 index 0000000..f26dd0e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2ed510c13db63f4ea5749ef503a99b5 +timeCreated: 1487868442 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs new file mode 100644 index 0000000..f555f7b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs @@ -0,0 +1,158 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + // Pre-hashed shader ids - naming conventions are a bit off in this file as we use the same + // fields names as in the shaders for ease of use... Would be nice to clean this up at some + // point. + static class ShaderIDs + { + internal static readonly int MainTex = Shader.PropertyToID("_MainTex"); + + internal static readonly int Jitter = Shader.PropertyToID("_Jitter"); + internal static readonly int Sharpness = Shader.PropertyToID("_Sharpness"); + internal static readonly int FinalBlendParameters = Shader.PropertyToID("_FinalBlendParameters"); + internal static readonly int HistoryTex = Shader.PropertyToID("_HistoryTex"); + + internal static readonly int SMAA_Flip = Shader.PropertyToID("_SMAA_Flip"); + internal static readonly int SMAA_Flop = Shader.PropertyToID("_SMAA_Flop"); + + internal static readonly int AOParams = Shader.PropertyToID("_AOParams"); + internal static readonly int AOColor = Shader.PropertyToID("_AOColor"); + internal static readonly int OcclusionTexture1 = Shader.PropertyToID("_OcclusionTexture1"); + internal static readonly int OcclusionTexture2 = Shader.PropertyToID("_OcclusionTexture2"); + internal static readonly int SAOcclusionTexture = Shader.PropertyToID("_SAOcclusionTexture"); + internal static readonly int MSVOcclusionTexture = Shader.PropertyToID("_MSVOcclusionTexture"); + internal static readonly int DepthCopy = Shader.PropertyToID("DepthCopy"); + internal static readonly int LinearDepth = Shader.PropertyToID("LinearDepth"); + internal static readonly int LowDepth1 = Shader.PropertyToID("LowDepth1"); + internal static readonly int LowDepth2 = Shader.PropertyToID("LowDepth2"); + internal static readonly int LowDepth3 = Shader.PropertyToID("LowDepth3"); + internal static readonly int LowDepth4 = Shader.PropertyToID("LowDepth4"); + internal static readonly int TiledDepth1 = Shader.PropertyToID("TiledDepth1"); + internal static readonly int TiledDepth2 = Shader.PropertyToID("TiledDepth2"); + internal static readonly int TiledDepth3 = Shader.PropertyToID("TiledDepth3"); + internal static readonly int TiledDepth4 = Shader.PropertyToID("TiledDepth4"); + internal static readonly int Occlusion1 = Shader.PropertyToID("Occlusion1"); + internal static readonly int Occlusion2 = Shader.PropertyToID("Occlusion2"); + internal static readonly int Occlusion3 = Shader.PropertyToID("Occlusion3"); + internal static readonly int Occlusion4 = Shader.PropertyToID("Occlusion4"); + internal static readonly int Combined1 = Shader.PropertyToID("Combined1"); + internal static readonly int Combined2 = Shader.PropertyToID("Combined2"); + internal static readonly int Combined3 = Shader.PropertyToID("Combined3"); + + internal static readonly int SSRResolveTemp = Shader.PropertyToID("_SSRResolveTemp"); + internal static readonly int Noise = Shader.PropertyToID("_Noise"); + internal static readonly int Test = Shader.PropertyToID("_Test"); + internal static readonly int Resolve = Shader.PropertyToID("_Resolve"); + internal static readonly int History = Shader.PropertyToID("_History"); + internal static readonly int ViewMatrix = Shader.PropertyToID("_ViewMatrix"); + internal static readonly int InverseViewMatrix = Shader.PropertyToID("_InverseViewMatrix"); + internal static readonly int ScreenSpaceProjectionMatrix = Shader.PropertyToID("_ScreenSpaceProjectionMatrix"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + + internal static readonly int FogColor = Shader.PropertyToID("_FogColor"); + internal static readonly int FogParams = Shader.PropertyToID("_FogParams"); + + internal static readonly int VelocityScale = Shader.PropertyToID("_VelocityScale"); + internal static readonly int MaxBlurRadius = Shader.PropertyToID("_MaxBlurRadius"); + internal static readonly int RcpMaxBlurRadius = Shader.PropertyToID("_RcpMaxBlurRadius"); + internal static readonly int VelocityTex = Shader.PropertyToID("_VelocityTex"); + internal static readonly int Tile2RT = Shader.PropertyToID("_Tile2RT"); + internal static readonly int Tile4RT = Shader.PropertyToID("_Tile4RT"); + internal static readonly int Tile8RT = Shader.PropertyToID("_Tile8RT"); + internal static readonly int TileMaxOffs = Shader.PropertyToID("_TileMaxOffs"); + internal static readonly int TileMaxLoop = Shader.PropertyToID("_TileMaxLoop"); + internal static readonly int TileVRT = Shader.PropertyToID("_TileVRT"); + internal static readonly int NeighborMaxTex = Shader.PropertyToID("_NeighborMaxTex"); + internal static readonly int LoopCount = Shader.PropertyToID("_LoopCount"); + + internal static readonly int DepthOfFieldTemp = Shader.PropertyToID("_DepthOfFieldTemp"); + internal static readonly int DepthOfFieldTex = Shader.PropertyToID("_DepthOfFieldTex"); + internal static readonly int Distance = Shader.PropertyToID("_Distance"); + internal static readonly int LensCoeff = Shader.PropertyToID("_LensCoeff"); + internal static readonly int MaxCoC = Shader.PropertyToID("_MaxCoC"); + internal static readonly int RcpMaxCoC = Shader.PropertyToID("_RcpMaxCoC"); + internal static readonly int RcpAspect = Shader.PropertyToID("_RcpAspect"); + internal static readonly int CoCTex = Shader.PropertyToID("_CoCTex"); + internal static readonly int TaaParams = Shader.PropertyToID("_TaaParams"); + + internal static readonly int AutoExposureTex = Shader.PropertyToID("_AutoExposureTex"); + internal static readonly int HistogramBuffer = Shader.PropertyToID("_HistogramBuffer"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int ScaleOffsetRes = Shader.PropertyToID("_ScaleOffsetRes"); + + internal static readonly int BloomTex = Shader.PropertyToID("_BloomTex"); + internal static readonly int SampleScale = Shader.PropertyToID("_SampleScale"); + internal static readonly int Threshold = Shader.PropertyToID("_Threshold"); + internal static readonly int ColorIntensity = Shader.PropertyToID("_ColorIntensity"); + internal static readonly int Bloom_DirtTex = Shader.PropertyToID("_Bloom_DirtTex"); + internal static readonly int Bloom_Settings = Shader.PropertyToID("_Bloom_Settings"); + internal static readonly int Bloom_Color = Shader.PropertyToID("_Bloom_Color"); + internal static readonly int Bloom_DirtTileOffset = Shader.PropertyToID("_Bloom_DirtTileOffset"); + + internal static readonly int ChromaticAberration_Amount = Shader.PropertyToID("_ChromaticAberration_Amount"); + internal static readonly int ChromaticAberration_SpectralLut = Shader.PropertyToID("_ChromaticAberration_SpectralLut"); + + internal static readonly int Distortion_CenterScale = Shader.PropertyToID("_Distortion_CenterScale"); + internal static readonly int Distortion_Amount = Shader.PropertyToID("_Distortion_Amount"); + + internal static readonly int Lut2D = Shader.PropertyToID("_Lut2D"); + internal static readonly int Lut3D = Shader.PropertyToID("_Lut3D"); + internal static readonly int Lut3D_Params = Shader.PropertyToID("_Lut3D_Params"); + internal static readonly int Lut2D_Params = Shader.PropertyToID("_Lut2D_Params"); + internal static readonly int UserLut2D_Params = Shader.PropertyToID("_UserLut2D_Params"); + internal static readonly int PostExposure = Shader.PropertyToID("_PostExposure"); + internal static readonly int ColorBalance = Shader.PropertyToID("_ColorBalance"); + internal static readonly int ColorFilter = Shader.PropertyToID("_ColorFilter"); + internal static readonly int HueSatCon = Shader.PropertyToID("_HueSatCon"); + internal static readonly int Brightness = Shader.PropertyToID("_Brightness"); + internal static readonly int ChannelMixerRed = Shader.PropertyToID("_ChannelMixerRed"); + internal static readonly int ChannelMixerGreen = Shader.PropertyToID("_ChannelMixerGreen"); + internal static readonly int ChannelMixerBlue = Shader.PropertyToID("_ChannelMixerBlue"); + internal static readonly int Lift = Shader.PropertyToID("_Lift"); + internal static readonly int InvGamma = Shader.PropertyToID("_InvGamma"); + internal static readonly int Gain = Shader.PropertyToID("_Gain"); + internal static readonly int Curves = Shader.PropertyToID("_Curves"); + internal static readonly int CustomToneCurve = Shader.PropertyToID("_CustomToneCurve"); + internal static readonly int ToeSegmentA = Shader.PropertyToID("_ToeSegmentA"); + internal static readonly int ToeSegmentB = Shader.PropertyToID("_ToeSegmentB"); + internal static readonly int MidSegmentA = Shader.PropertyToID("_MidSegmentA"); + internal static readonly int MidSegmentB = Shader.PropertyToID("_MidSegmentB"); + internal static readonly int ShoSegmentA = Shader.PropertyToID("_ShoSegmentA"); + internal static readonly int ShoSegmentB = Shader.PropertyToID("_ShoSegmentB"); + + internal static readonly int Vignette_Color = Shader.PropertyToID("_Vignette_Color"); + internal static readonly int Vignette_Center = Shader.PropertyToID("_Vignette_Center"); + internal static readonly int Vignette_Settings = Shader.PropertyToID("_Vignette_Settings"); + internal static readonly int Vignette_Mask = Shader.PropertyToID("_Vignette_Mask"); + internal static readonly int Vignette_Opacity = Shader.PropertyToID("_Vignette_Opacity"); + internal static readonly int Vignette_Mode = Shader.PropertyToID("_Vignette_Mode"); + + internal static readonly int Grain_Params1 = Shader.PropertyToID("_Grain_Params1"); + internal static readonly int Grain_Params2 = Shader.PropertyToID("_Grain_Params2"); + internal static readonly int GrainTex = Shader.PropertyToID("_GrainTex"); + internal static readonly int Phase = Shader.PropertyToID("_Phase"); + internal static readonly int GrainNoiseParameters = Shader.PropertyToID("_NoiseParameters"); + + internal static readonly int LumaInAlpha = Shader.PropertyToID("_LumaInAlpha"); + + internal static readonly int DitheringTex = Shader.PropertyToID("_DitheringTex"); + internal static readonly int Dithering_Coords = Shader.PropertyToID("_Dithering_Coords"); + + internal static readonly int From = Shader.PropertyToID("_From"); + internal static readonly int To = Shader.PropertyToID("_To"); + internal static readonly int Interp = Shader.PropertyToID("_Interp"); + internal static readonly int TargetColor = Shader.PropertyToID("_TargetColor"); + + internal static readonly int HalfResFinalCopy = Shader.PropertyToID("_HalfResFinalCopy"); + internal static readonly int WaveformSource = Shader.PropertyToID("_WaveformSource"); + internal static readonly int WaveformBuffer = Shader.PropertyToID("_WaveformBuffer"); + internal static readonly int VectorscopeBuffer = Shader.PropertyToID("_VectorscopeBuffer"); + + internal static readonly int RenderViewportScaleFactor = Shader.PropertyToID("_RenderViewportScaleFactor"); + + internal static readonly int UVTransform = Shader.PropertyToID("_UVTransform"); + internal static readonly int DepthSlice = Shader.PropertyToID("_DepthSlice"); + internal static readonly int UVScaleOffset = Shader.PropertyToID("_UVScaleOffset"); + internal static readonly int PosScaleOffset = Shader.PropertyToID("_PosScaleOffset"); + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta new file mode 100644 index 0000000..51297d7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4026acd2810a474b9be96bbeb80b959 +timeCreated: 1488904676 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs new file mode 100644 index 0000000..2195044 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs @@ -0,0 +1,148 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A wrapper on top of to handle zero-key curves and keyframe + /// loops. + /// + [Serializable] + public sealed class Spline + { + /// + /// Precision of the curve. + /// + public const int k_Precision = 128; + + /// + /// The inverse of the precision of the curve. + /// + public const float k_Step = 1f / k_Precision; + + /// + /// The underlying animation curve instance. + /// + public AnimationCurve curve; + + [SerializeField] + bool m_Loop; + + [SerializeField] + float m_ZeroValue; + + [SerializeField] + float m_Range; + + AnimationCurve m_InternalLoopingCurve; + + // Used to track frame changes for data caching + int frameCount = -1; + + /// + /// An array holding pre-computed curve values. + /// + public float[] cachedData; + + /// + /// Creates a new spline. + /// + /// The animation curve to base this spline off + /// The value to return when the curve has no keyframe + /// Should this curve loop? + /// The curve bounds + public Spline(AnimationCurve curve, float zeroValue, bool loop, Vector2 bounds) + { + Assert.IsNotNull(curve); + this.curve = curve; + m_ZeroValue = zeroValue; + m_Loop = loop; + m_Range = bounds.magnitude; + cachedData = new float[k_Precision]; + } + + /// + /// Caches the curve data at a given frame. The curve data will only be cached once per + /// frame. + /// + /// A frame number + public void Cache(int frame) + { + // Note: it would be nice to have a way to check if a curve has changed in any way, that + // would save quite a few CPU cycles instead of having to force cache it once per frame :/ + + // Only cache once per frame + if (frame == frameCount) + return; + + var length = curve.length; + + if (m_Loop && length > 1) + { + if (m_InternalLoopingCurve == null) + m_InternalLoopingCurve = new AnimationCurve(); + + var prev = curve[length - 1]; + prev.time -= m_Range; + var next = curve[0]; + next.time += m_Range; + m_InternalLoopingCurve.keys = curve.keys; + m_InternalLoopingCurve.AddKey(prev); + m_InternalLoopingCurve.AddKey(next); + } + + for (int i = 0; i < k_Precision; i++) + cachedData[i] = Evaluate((float)i * k_Step, length); + + frameCount = Time.renderedFrameCount; + } + + /// + /// Evaluates the curve at a point in time. + /// + /// The time to evaluate + /// The number of keyframes in the curve + /// The value of the curve at time + public float Evaluate(float t, int length) + { + if (length == 0) + return m_ZeroValue; + + if (!m_Loop || length == 1) + return curve.Evaluate(t); + + return m_InternalLoopingCurve.Evaluate(t); + } + + /// + /// Evaluates the curve at a point in time. + /// + /// The time to evaluate + /// The value of the curve at time + /// + /// Calling the length getter on a curve is expensive to it's better to cache its length and + /// call instead of getting the length for every call. + /// + public float Evaluate(float t) + { + // Calling the length getter on a curve is expensive (!?) so it's better to cache its + // length and call Evaluate(t, length) instead of getting the length for every call to + // Evaluate(t) + return Evaluate(t, curve.length); + } + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public override int GetHashCode() + { + unchecked + { + int hash = 17; + hash = hash * 23 + curve.GetHashCode(); // Not implemented in Unity, so it'll always return the same value :( + return hash; + } + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs.meta new file mode 100644 index 0000000..ca5720b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/Spline.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c687cf9a3e8607a4b991e6d445a2f9bf +timeCreated: 1493978176 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs new file mode 100644 index 0000000..cf72342 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs @@ -0,0 +1,48 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + class TargetPool + { + readonly List m_Pool; + int m_Current; + + internal TargetPool() + { + m_Pool = new List(); + Get(); // Pre-warm with a default target to avoid black frame on first frame + } + + internal int Get() + { + int ret = Get(m_Current); + m_Current++; + return ret; + } + + int Get(int i) + { + int ret; + + if (m_Pool.Count > i) + { + ret = m_Pool[i]; + } + else + { + // Avoid discontinuities + while (m_Pool.Count <= i) + m_Pool.Add(Shader.PropertyToID("_TargetPool" + i)); + + ret = m_Pool[i]; + } + + return ret; + } + + internal void Reset() + { + m_Current = 0; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs.meta new file mode 100644 index 0000000..994555e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TargetPool.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3ae5839b763bada47af0cca23c360452 +timeCreated: 1495121926 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs new file mode 100644 index 0000000..fc92663 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs @@ -0,0 +1,173 @@ +using System; +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Temporary code dump until the texture format refactor goes into trunk... + + /// + /// A set of utilities to deal with texture formats. + /// + public static class TextureFormatUtilities + { + static Dictionary s_FormatAliasMap; + static Dictionary s_SupportedRenderTextureFormats; + static Dictionary s_SupportedTextureFormats; + + static TextureFormatUtilities() + { + s_FormatAliasMap = new Dictionary + { + { (int)TextureFormat.Alpha8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ARGB4444, RenderTextureFormat.ARGB4444 }, + { (int)TextureFormat.RGB24, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGBA32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ARGB32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGB565, RenderTextureFormat.RGB565 }, + { (int)TextureFormat.R16, RenderTextureFormat.RHalf }, + { (int)TextureFormat.DXT1, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.DXT5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGBA4444, RenderTextureFormat.ARGB4444 }, + { (int)TextureFormat.BGRA32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RHalf, RenderTextureFormat.RHalf }, + { (int)TextureFormat.RGHalf, RenderTextureFormat.RGHalf }, + { (int)TextureFormat.RGBAHalf, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.RFloat, RenderTextureFormat.RFloat }, + { (int)TextureFormat.RGFloat, RenderTextureFormat.RGFloat }, + { (int)TextureFormat.RGBAFloat, RenderTextureFormat.ARGBFloat }, + { (int)TextureFormat.RGB9e5Float, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.BC4, RenderTextureFormat.R8 }, + { (int)TextureFormat.BC5, RenderTextureFormat.RGHalf }, + { (int)TextureFormat.BC6H, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.BC7, RenderTextureFormat.ARGB32 }, + #if !UNITY_IOS && !UNITY_TVOS + { (int)TextureFormat.DXT1Crunched, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.DXT5Crunched, RenderTextureFormat.ARGB32 }, + #endif + { (int)TextureFormat.PVRTC_RGB2, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGBA2, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGBA4, RenderTextureFormat.ARGB32 }, + #if !UNITY_2018_1_OR_NEWER + { (int)TextureFormat.ATC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ATC_RGBA8, RenderTextureFormat.ARGB32 }, + #endif + { (int)TextureFormat.ETC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGB, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGBA1, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGBA8, RenderTextureFormat.ARGB32 }, + #if UNITY_2019_1_OR_NEWER + { (int)TextureFormat.ASTC_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_12x12, RenderTextureFormat.ARGB32 }, + #else + { (int)TextureFormat.ASTC_RGB_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_12x12, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_12x12, RenderTextureFormat.ARGB32 }, + #endif + #if !UNITY_2018_3_OR_NEWER + { (int)TextureFormat.ETC_RGB4_3DS, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC_RGBA8_3DS, RenderTextureFormat.ARGB32 } + #endif + }; + + // TODO: refactor the next two scopes in a generic function once we have support for enum constraints on generics + // In 2018.1 SystemInfo.SupportsRenderTextureFormat() generates garbage so we need to + // cache its calls to avoid that... + { + s_SupportedRenderTextureFormats = new Dictionary(); + var values = Enum.GetValues(typeof(RenderTextureFormat)); + + foreach (var format in values) + { + if ((int)format < 0) // Safe guard, negative values are deprecated stuff + continue; + + if (IsObsolete(format)) + continue; + + bool supported = SystemInfo.SupportsRenderTextureFormat((RenderTextureFormat)format); + s_SupportedRenderTextureFormats[(int)format] = supported; + } + } + + // Same for TextureFormat + { + s_SupportedTextureFormats = new Dictionary(); + var values = Enum.GetValues(typeof(TextureFormat)); + + foreach (var format in values) + { + if ((int)format < 0) // Crashes the runtime otherwise (!) + continue; + + if (IsObsolete(format)) + continue; + + bool supported = SystemInfo.SupportsTextureFormat((TextureFormat)format); + s_SupportedTextureFormats[(int)format] = supported; + } + } + } + + static bool IsObsolete(object value) + { + var fieldInfo = value.GetType().GetField(value.ToString()); + var attributes = (ObsoleteAttribute[])fieldInfo.GetCustomAttributes(typeof(ObsoleteAttribute), false); + return attributes != null && attributes.Length > 0; + } + + /// + /// Returns a compatible with the given texture's format. + /// + /// A texture to get a compatible format from + /// A compatible render texture format + public static RenderTextureFormat GetUncompressedRenderTextureFormat(Texture texture) + { + Assert.IsNotNull(texture); + + if (texture is RenderTexture) + return (texture as RenderTexture).format; + + if (texture is Texture2D) + { + var inFormat = ((Texture2D)texture).format; + RenderTextureFormat outFormat; + + if (!s_FormatAliasMap.TryGetValue((int)inFormat, out outFormat)) + throw new NotSupportedException("Texture format not supported"); + + return outFormat; + } + + return RenderTextureFormat.Default; + } + + internal static bool IsSupported(this RenderTextureFormat format) + { + bool supported; + s_SupportedRenderTextureFormats.TryGetValue((int)format, out supported); + return supported; + } + + internal static bool IsSupported(this TextureFormat format) + { + bool supported; + s_SupportedTextureFormats.TryGetValue((int)format, out supported); + return supported; + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta new file mode 100644 index 0000000..cd71444 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f8baf5b99881c054d90afcd1dffd11eb +timeCreated: 1493127411 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs new file mode 100644 index 0000000..bbb7ab6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs @@ -0,0 +1,228 @@ +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + class TextureLerper + { + static TextureLerper m_Instance; + internal static TextureLerper instance + { + get + { + if (m_Instance == null) + m_Instance = new TextureLerper(); + + return m_Instance; + } + } + + CommandBuffer m_Command; + PropertySheetFactory m_PropertySheets; + PostProcessResources m_Resources; + + List m_Recycled; + List m_Actives; + + TextureLerper() + { + m_Recycled = new List(); + m_Actives = new List(); + } + + internal void BeginFrame(PostProcessRenderContext context) + { + m_Command = context.command; + m_PropertySheets = context.propertySheets; + m_Resources = context.resources; + } + + internal void EndFrame() + { + // Release any remaining RT in the recycled list + if (m_Recycled.Count > 0) + { + foreach (var rt in m_Recycled) + RuntimeUtilities.Destroy(rt); + + m_Recycled.Clear(); + } + + // There's a high probability that RTs will be requested in the same order on next + // frame so keep them in the same order + if (m_Actives.Count > 0) + { + m_Recycled.AddRange(m_Actives); + + m_Actives.Clear(); + } + } + + RenderTexture Get(RenderTextureFormat format, int w, int h, int d = 1, bool enableRandomWrite = false, bool force3D = false) + { + RenderTexture rt = null; + int i, len = m_Recycled.Count; + + for (i = 0; i < len; i++) + { + var r = m_Recycled[i]; + if (r.width == w && r.height == h && r.volumeDepth == d && r.format == format && r.enableRandomWrite == enableRandomWrite && (!force3D || (r.dimension == TextureDimension.Tex3D))) + { + rt = r; + break; + } + } + + if (rt == null) + { + var dimension = (d > 1) || force3D + ? TextureDimension.Tex3D + : TextureDimension.Tex2D; + + rt = new RenderTexture(w, h, 0, format) + { + dimension = dimension, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + volumeDepth = d, + enableRandomWrite = enableRandomWrite + }; + rt.Create(); + } + else m_Recycled.RemoveAt(i); + + m_Actives.Add(rt); + return rt; + } + + internal Texture Lerp(Texture from, Texture to, float t) + { + Assert.IsNotNull(from); + Assert.IsNotNull(to); + Assert.AreEqual(from.width, to.width); + Assert.AreEqual(from.height, to.height); + + // Saves a potentially expensive fullscreen blit when using dirt textures & the likes + if (from == to) + return from; + + // Don't need to lerp boundary conditions + if (t <= 0f) return from; + if (t >= 1f) return to; + + bool is3D = from is Texture3D + || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); + + RenderTexture rt; + + // 3D texture blending is a special case and only works on compute enabled platforms + if (is3D) + { + int dpth = @from is Texture3D ? ((Texture3D)@from).depth : ((RenderTexture)@from).volumeDepth; + int size = Mathf.Max(from.width, from.height); + size = Mathf.Max(size, dpth); + + rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); + + var compute = m_Resources.computeShaders.texture3dLerp; + int kernel = compute.FindKernel("KTexture3DLerp"); + m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); + m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); + m_Command.SetComputeTextureParam(compute, kernel, "_From", from); + m_Command.SetComputeTextureParam(compute, kernel, "_To", to); + + uint tgsX, tgsY, tgsZ; + compute.GetKernelThreadGroupSizes(kernel, out tgsX, out tgsY, out tgsZ); + Assert.AreEqual(tgsX, tgsY); + int groupSizeXY = Mathf.CeilToInt(size / (float)tgsX); + int groupSizeZ = Mathf.CeilToInt(size / (float)tgsZ); + + m_Command.DispatchCompute(compute, kernel, groupSizeXY, groupSizeXY, groupSizeZ); + return rt; + } + + // 2D texture blending + // We could handle textures with different sizes by picking the biggest one to avoid + // popping effects. This would work in most cases but will still pop if one texture is + // wider but shorter than the other. Generally speaking you're expected to use same-size + // textures anyway so we decided not to handle this case at the moment, especially since + // it would waste a lot of texture memory as soon as you start using bigger textures + // (snow ball effect). + var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(to); + rt = Get(format, to.width, to.height); + + var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); + sheet.properties.SetTexture(ShaderIDs.To, to); + sheet.properties.SetFloat(ShaderIDs.Interp, t); + + m_Command.BlitFullscreenTriangle(from, rt, sheet, 0); + + return rt; + } + + internal Texture Lerp(Texture from, Color to, float t) + { + Assert.IsNotNull(from); + + if (t < 0.00001) + return from; + + bool is3D = from is Texture3D + || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); + + RenderTexture rt; + + // 3D texture blending is a special case and only works on compute enabled platforms + if (is3D) + { + int dpth = @from is Texture3D ? ((Texture3D)@from).depth : ((RenderTexture)@from).volumeDepth; + int size = Mathf.Max(from.width, from.height); + size = Mathf.Max(size, dpth); + + rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); + + var compute = m_Resources.computeShaders.texture3dLerp; + int kernel = compute.FindKernel("KTexture3DLerpToColor"); + m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); + m_Command.SetComputeVectorParam(compute, "_TargetColor", new Vector4(to.r, to.g, to.b, to.a)); + m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); + m_Command.SetComputeTextureParam(compute, kernel, "_From", from); + + int groupSize = Mathf.CeilToInt(size / 4f); + m_Command.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); + return rt; + } + + // 2D texture blending + // We could handle textures with different sizes by picking the biggest one to avoid + // popping effects. This would work in most cases but will still pop if one texture is + // wider but shorter than the other. Generally speaking you're expected to use same-size + // textures anyway so we decided not to handle this case at the moment, especially since + // it would waste a lot of texture memory as soon as you start using bigger textures + // (snow ball effect). + var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(from); + rt = Get(format, from.width, from.height); + + var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); + sheet.properties.SetVector(ShaderIDs.TargetColor, new Vector4(to.r, to.g, to.b, to.a)); + sheet.properties.SetFloat(ShaderIDs.Interp, t); + + m_Command.BlitFullscreenTriangle(from, rt, sheet, 1); + + return rt; + } + + internal void Clear() + { + foreach (var rt in m_Actives) + RuntimeUtilities.Destroy(rt); + + foreach (var rt in m_Recycled) + RuntimeUtilities.Destroy(rt); + + m_Actives.Clear(); + m_Recycled.Clear(); + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs.meta new file mode 100644 index 0000000..3ee298c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/TextureLerper.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f85e8d04208ed5145a521dd27d174830 +timeCreated: 1496844853 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs b/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs new file mode 100644 index 0000000..bdce8ed --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs @@ -0,0 +1,27 @@ +// Small shim +#if ((UNITY_XBOXONE || UNITY_SWITCH || UNITY_PSP2) && !UNITY_2018_3_OR_NEWER) && !UNITY_EDITOR +using System; + +namespace UnityEngine.XR +{ + public static class XRSettings + { + public static bool enabled { get; set; } + public static bool isDeviceActive { get; private set; } + public static bool showDeviceView { get; set; } + [Obsolete("renderScale is deprecated, use XRSettings.eyeTextureResolutionScale instead (UnityUpgradable) -> eyeTextureResolutionScale")] + public static float renderScale { get; set; } + public static float eyeTextureResolutionScale { get; set; } + public static int eyeTextureWidth { get; private set; } + public static int eyeTextureHeight { get; private set; } + public static RenderTextureDescriptor eyeTextureDesc { get; private set; } + public static float renderViewportScale { get; set; } + public static float occlusionMaskScale { get; set; } + public static bool useOcclusionMesh { get; set; } + public static string loadedDeviceName { get; private set; } + public static string[] supportedDevices { get; private set; } + public static void LoadDeviceByName(string deviceName) {} + public static void LoadDeviceByName(string[] prioritizedDeviceNameList) {} + } +} +#endif diff --git a/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs.meta b/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs.meta new file mode 100644 index 0000000..3505161 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Runtime/Utils/XRSettings.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c387aa7210e2f324b85febd7211d6c9f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders.meta b/com.unity.postprocessing/PostProcessing/Shaders.meta new file mode 100644 index 0000000..95e67ba --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 660a3ee04f28e0a4a97dc5831c5a1de3 +folderAsset: yes +timeCreated: 1488806877 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl new file mode 100644 index 0000000..9f77efe --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl @@ -0,0 +1,1309 @@ +#ifndef __ACES__ +#define __ACES__ + +/** + * https://github.com/ampas/aces-dev + * + * Academy Color Encoding System (ACES) software and tools are provided by the + * Academy under the following terms and conditions: A worldwide, royalty-free, + * non-exclusive right to copy, modify, create derivatives, and use, in source and + * binary forms, is hereby granted, subject to acceptance of this license. + * + * Copyright 2015 Academy of Motion Picture Arts and Sciences (A.M.P.A.S.). + * Portions contributed by others as indicated. All rights reserved. + * + * Performance of any of the aforementioned acts indicates acceptance to be bound + * by the following terms and conditions: + * + * * Copies of source code, in whole or in part, must retain the above copyright + * notice, this list of conditions and the Disclaimer of Warranty. + * + * * Use in binary form must retain the above copyright notice, this list of + * conditions and the Disclaimer of Warranty in the documentation and/or other + * materials provided with the distribution. + * + * * Nothing in this license shall be deemed to grant any rights to trademarks, + * copyrights, patents, trade secrets or any other intellectual property of + * A.M.P.A.S. or any contributors, except as expressly stated herein. + * + * * Neither the name "A.M.P.A.S." nor the name of any other contributors to this + * software may be used to endorse or promote products derivative of or based on + * this software without express prior written permission of A.M.P.A.S. or the + * contributors, as appropriate. + * + * This license shall be construed pursuant to the laws of the State of + * California, and any disputes related thereto shall be subject to the + * jurisdiction of the courts therein. + * + * Disclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND + * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., OR ANY + * CONTRIBUTORS OR DISTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, RESITUTIONARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, THE ACADEMY SPECIFICALLY + * DISCLAIMS ANY REPRESENTATIONS OR WARRANTIES WHATSOEVER RELATED TO PATENT OR + * OTHER INTELLECTUAL PROPERTY RIGHTS IN THE ACADEMY COLOR ENCODING SYSTEM, OR + * APPLICATIONS THEREOF, HELD BY PARTIES OTHER THAN A.M.P.A.S.,WHETHER DISCLOSED OR + * UNDISCLOSED. + */ + +#include "StdLib.hlsl" + +#define ACEScc_MAX 1.4679964 +#define ACEScc_MIDGRAY 0.4135884 + +// +// Precomputed matrices (pre-transposed) +// See https://github.com/ampas/aces-dev/blob/master/transforms/ctl/README-MATRIX.md +// +static const half3x3 sRGB_2_AP0 = { + 0.4397010, 0.3829780, 0.1773350, + 0.0897923, 0.8134230, 0.0967616, + 0.0175440, 0.1115440, 0.8707040 +}; + +static const half3x3 sRGB_2_AP1 = { + 0.61319, 0.33951, 0.04737, + 0.07021, 0.91634, 0.01345, + 0.02062, 0.10957, 0.86961 +}; + +static const half3x3 AP0_2_sRGB = { + 2.52169, -1.13413, -0.38756, + -0.27648, 1.37272, -0.09624, + -0.01538, -0.15298, 1.16835, +}; + +static const half3x3 AP1_2_sRGB = { + 1.70505, -0.62179, -0.08326, + -0.13026, 1.14080, -0.01055, + -0.02400, -0.12897, 1.15297, +}; + +static const half3x3 AP0_2_AP1_MAT = { + 1.4514393161, -0.2365107469, -0.2149285693, + -0.0765537734, 1.1762296998, -0.0996759264, + 0.0083161484, -0.0060324498, 0.9977163014 +}; + +static const half3x3 AP1_2_AP0_MAT = { + 0.6954522414, 0.1406786965, 0.1638690622, + 0.0447945634, 0.8596711185, 0.0955343182, + -0.0055258826, 0.0040252103, 1.0015006723 +}; + +static const half3x3 AP1_2_XYZ_MAT = { + 0.6624541811, 0.1340042065, 0.1561876870, + 0.2722287168, 0.6740817658, 0.0536895174, + -0.0055746495, 0.0040607335, 1.0103391003 +}; + +static const half3x3 XYZ_2_AP1_MAT = { + 1.6410233797, -0.3248032942, -0.2364246952, + -0.6636628587, 1.6153315917, 0.0167563477, + 0.0117218943, -0.0082844420, 0.9883948585 +}; + +static const half3x3 XYZ_2_REC709_MAT = { + 3.2409699419, -1.5373831776, -0.4986107603, + -0.9692436363, 1.8759675015, 0.0415550574, + 0.0556300797, -0.2039769589, 1.0569715142 +}; + +static const half3x3 XYZ_2_REC2020_MAT = { + 1.7166511880, -0.3556707838, -0.2533662814, + -0.6666843518, 1.6164812366, 0.0157685458, + 0.0176398574, -0.0427706133, 0.9421031212 +}; + +static const half3x3 XYZ_2_DCIP3_MAT = { + 2.7253940305, -1.0180030062, -0.4401631952, + -0.7951680258, 1.6897320548, 0.0226471906, + 0.0412418914, -0.0876390192, 1.1009293786 +}; + +static const half3 AP1_RGB2Y = half3(0.272229, 0.674082, 0.0536895); + +static const half3x3 RRT_SAT_MAT = { + 0.9708890, 0.0269633, 0.00214758, + 0.0108892, 0.9869630, 0.00214758, + 0.0108892, 0.0269633, 0.96214800 +}; + +static const half3x3 ODT_SAT_MAT = { + 0.949056, 0.0471857, 0.00375827, + 0.019056, 0.9771860, 0.00375827, + 0.019056, 0.0471857, 0.93375800 +}; + +static const half3x3 D60_2_D65_CAT = { + 0.98722400, -0.00611327, 0.0159533, + -0.00759836, 1.00186000, 0.0053302, + 0.00307257, -0.00509595, 1.0816800 +}; + +// +// Unity to ACES +// +// converts Unity raw (sRGB primaries) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 unity_to_ACES(half3 x) +{ + x = mul(sRGB_2_AP0, x); + return x; +} + +// +// ACES to Unity +// +// converts ACES2065-1 (AP0 w/ linear encoding) +// Unity raw (sRGB primaries) to +// +half3 ACES_to_unity(half3 x) +{ + x = mul(AP0_2_sRGB, x); + return x; +} + +// +// Unity to ACEScg +// +// converts Unity raw (sRGB primaries) to +// ACEScg (AP1 w/ linear encoding) +// +half3 unity_to_ACEScg(half3 x) +{ + x = mul(sRGB_2_AP1, x); + return x; +} + +// +// ACEScg to Unity +// +// converts ACEScg (AP1 w/ linear encoding) to +// Unity raw (sRGB primaries) +// +half3 ACEScg_to_unity(half3 x) +{ + x = mul(AP1_2_sRGB, x); + return x; +} + +// +// ACES Color Space Conversion - ACES to ACEScc +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScc (AP1 w/ logarithmic encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACES_to_ACEScc(half x) +{ + if (x <= 0.0) + return -0.35828683; // = (log2(pow(2.0, -15.0) * 0.5) + 9.72) / 17.52 + else if (x < pow(2.0, -15.0)) + return (log2(pow(2.0, -16.0) + x * 0.5) + 9.72) / 17.52; + else // (x >= pow(2.0, -15.0)) + return (log2(x) + 9.72) / 17.52; +} + +half3 ACES_to_ACEScc(half3 x) +{ + x = clamp(x, 0.0, HALF_MAX); + + // x is clamped to [0, HALF_MAX], skip the <= 0 check + return (x < 0.00003051757) ? (log2(0.00001525878 + x * 0.5) + 9.72) / 17.52 : (log2(x) + 9.72) / 17.52; + + /* + return half3( + ACES_to_ACEScc(x.r), + ACES_to_ACEScc(x.g), + ACES_to_ACEScc(x.b) + ); + */ +} + +// +// ACES Color Space Conversion - ACEScc to ACES +// +// converts ACEScc (AP1 w/ ACESlog encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACEScc_to_ACES(half x) +{ + // TODO: Optimize me + if (x < -0.3013698630) // (9.72 - 15) / 17.52 + return (pow(2.0, x * 17.52 - 9.72) - pow(2.0, -16.0)) * 2.0; + else if (x < (log2(HALF_MAX) + 9.72) / 17.52) + return pow(2.0, x * 17.52 - 9.72); + else // (x >= (log2(HALF_MAX) + 9.72) / 17.52) + return HALF_MAX; +} + +half3 ACEScc_to_ACES(half3 x) +{ + return half3( + ACEScc_to_ACES(x.r), + ACEScc_to_ACES(x.g), + ACEScc_to_ACES(x.b) + ); +} + +// +// ACES Color Space Conversion - ACES to ACEScg +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScg (AP1 w/ linear encoding) +// +half3 ACES_to_ACEScg(half3 x) +{ + return mul(AP0_2_AP1_MAT, x); +} + +// +// ACES Color Space Conversion - ACEScg to ACES +// +// converts ACEScg (AP1 w/ linear encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 ACEScg_to_ACES(half3 x) +{ + return mul(AP1_2_AP0_MAT, x); +} + +// +// Reference Rendering Transform (RRT) +// +// Input is ACES +// Output is OCES +// +half rgb_2_saturation(half3 rgb) +{ + const half TINY = 1e-4; + half mi = Min3(rgb.r, rgb.g, rgb.b); + half ma = Max3(rgb.r, rgb.g, rgb.b); + return (max(ma, TINY) - max(mi, TINY)) / max(ma, 1e-2); +} + +half rgb_2_yc(half3 rgb) +{ + const half ycRadiusWeight = 1.75; + + // Converts RGB to a luminance proxy, here called YC + // YC is ~ Y + K * Chroma + // Constant YC is a cone-shaped surface in RGB space, with the tip on the + // neutral axis, towards white. + // YC is normalized: RGB 1 1 1 maps to YC = 1 + // + // ycRadiusWeight defaults to 1.75, although can be overridden in function + // call to rgb_2_yc + // ycRadiusWeight = 1 -> YC for pure cyan, magenta, yellow == YC for neutral + // of same value + // ycRadiusWeight = 2 -> YC for pure red, green, blue == YC for neutral of + // same value. + + half r = rgb.x; + half g = rgb.y; + half b = rgb.z; + half chroma = sqrt(b * (b - g) + g * (g - r) + r * (r - b)); + return (b + g + r + ycRadiusWeight * chroma) / 3.0; +} + +half rgb_2_hue(half3 rgb) +{ + // Returns a geometric hue angle in degrees (0-360) based on RGB values. + // For neutral colors, hue is undefined and the function will return a quiet NaN value. + half hue; + if (rgb.x == rgb.y && rgb.y == rgb.z) + hue = 0.0; // RGB triplets where RGB are equal have an undefined hue + else + hue = (180.0 / PI) * atan2(sqrt(3.0) * (rgb.y - rgb.z), 2.0 * rgb.x - rgb.y - rgb.z); + + if (hue < 0.0) hue = hue + 360.0; + + return hue; +} + +half center_hue(half hue, half centerH) +{ + half hueCentered = hue - centerH; + if (hueCentered < -180.0) hueCentered = hueCentered + 360.0; + else if (hueCentered > 180.0) hueCentered = hueCentered - 360.0; + return hueCentered; +} + +half sigmoid_shaper(half x) +{ + // Sigmoid function in the range 0 to 1 spanning -2 to +2. + + half t = max(1.0 - abs(x / 2.0), 0.0); + half y = 1.0 + FastSign(x) * (1.0 - t * t); + + return y / 2.0; +} + +half glow_fwd(half ycIn, half glowGainIn, half glowMid) +{ + half glowGainOut; + + if (ycIn <= 2.0 / 3.0 * glowMid) + glowGainOut = glowGainIn; + else if (ycIn >= 2.0 * glowMid) + glowGainOut = 0.0; + else + glowGainOut = glowGainIn * (glowMid / ycIn - 1.0 / 2.0); + + return glowGainOut; +} + +/* +half cubic_basis_shaper +( + half x, + half w // full base width of the shaper function (in degrees) +) +{ + half M[4][4] = { + { -1.0 / 6, 3.0 / 6, -3.0 / 6, 1.0 / 6 }, + { 3.0 / 6, -6.0 / 6, 3.0 / 6, 0.0 / 6 }, + { -3.0 / 6, 0.0 / 6, 3.0 / 6, 0.0 / 6 }, + { 1.0 / 6, 4.0 / 6, 1.0 / 6, 0.0 / 6 } + }; + + half knots[5] = { + -w / 2.0, + -w / 4.0, + 0.0, + w / 4.0, + w / 2.0 + }; + + half y = 0.0; + if ((x > knots[0]) && (x < knots[4])) + { + half knot_coord = (x - knots[0]) * 4.0 / w; + int j = knot_coord; + half t = knot_coord - j; + + half monomials[4] = { t*t*t, t*t, t, 1.0 }; + + // (if/else structure required for compatibility with CTL < v1.5.) + if (j == 3) + { + y = monomials[0] * M[0][0] + monomials[1] * M[1][0] + + monomials[2] * M[2][0] + monomials[3] * M[3][0]; + } + else if (j == 2) + { + y = monomials[0] * M[0][1] + monomials[1] * M[1][1] + + monomials[2] * M[2][1] + monomials[3] * M[3][1]; + } + else if (j == 1) + { + y = monomials[0] * M[0][2] + monomials[1] * M[1][2] + + monomials[2] * M[2][2] + monomials[3] * M[3][2]; + } + else if (j == 0) + { + y = monomials[0] * M[0][3] + monomials[1] * M[1][3] + + monomials[2] * M[2][3] + monomials[3] * M[3][3]; + } + else + { + y = 0.0; + } + } + + return y * 3.0 / 2.0; +} +*/ + +static const half3x3 M = { + 0.5, -1.0, 0.5, + -1.0, 1.0, 0.0, + 0.5, 0.5, 0.0 +}; + +half segmented_spline_c5_fwd(half x) +{ + const half coefsLow[6] = { -4.0000000000, -4.0000000000, -3.1573765773, -0.4852499958, 1.8477324706, 1.8477324706 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[6] = { -0.7185482425, 2.0810307172, 3.6681241237, 4.0000000000, 4.0000000000, 4.0000000000 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(0.18 * exp2(-15.0), 0.0001); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(0.18, 0.48); // {luminance, luminance} + const half2 maxPoint = half2(0.18 * exp2(18.0), 10000.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.0; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 4; + const int N_KNOTS_HIGH = 4; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to ACESMIN.1 + float xCheck = x; + if (xCheck <= 0.0) xCheck = 0.00006103515; // = pow(2.0, -14.0); + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +half segmented_spline_c9_fwd(half x) +{ + const half coefsLow[10] = { -1.6989700043, -1.6989700043, -1.4779000000, -1.2291000000, -0.8648000000, -0.4480000000, 0.0051800000, 0.4511080334, 0.9113744414, 0.9113744414 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[10] = { 0.5154386965, 0.8470437783, 1.1358000000, 1.3802000000, 1.5197000000, 1.5985000000, 1.6467000000, 1.6746091357, 1.6878733390, 1.6878733390 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(-6.5)), 0.02); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(segmented_spline_c5_fwd(0.18), 4.8); // {luminance, luminance} + const half2 maxPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(6.5)), 48.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.04; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 8; + const int N_KNOTS_HIGH = 8; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to OCESMIN. + half xCheck = x; + if (xCheck <= 0.0) xCheck = 1e-4; + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +static const half RRT_GLOW_GAIN = 0.05; +static const half RRT_GLOW_MID = 0.08; + +static const half RRT_RED_SCALE = 0.82; +static const half RRT_RED_PIVOT = 0.03; +static const half RRT_RED_HUE = 0.0; +static const half RRT_RED_WIDTH = 135.0; + +static const half RRT_SAT_FACTOR = 0.96; + +half3 RRT(half3 aces) +{ + // --- Glow module --- // + half saturation = rgb_2_saturation(aces); + half ycIn = rgb_2_yc(aces); + half s = sigmoid_shaper((saturation - 0.4) / 0.2); + half addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + half hue = rgb_2_hue(aces); + half centeredHue = center_hue(hue, RRT_RED_HUE); + half hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + aces = clamp(aces, 0.0, HALF_MAX); // avoids saturated negative colors from becoming positive in the matrix + half3 rgbPre = mul(AP0_2_AP1_MAT, aces); + rgbPre = clamp(rgbPre, 0, HALF_MAX); + + // --- Global desaturation --- // + //rgbPre = mul(RRT_SAT_MAT, rgbPre); + rgbPre = lerp(dot(rgbPre, AP1_RGB2Y).xxx, rgbPre, RRT_SAT_FACTOR.xxx); + + // --- Apply the tonescale independently in rendering-space RGB --- // + half3 rgbPost; + rgbPost.x = segmented_spline_c5_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c5_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c5_fwd(rgbPre.z); + + // --- RGB rendering space to OCES --- // + half3 rgbOces = mul(AP1_2_AP0_MAT, rgbPost); + + return rgbOces; +} + +// +// Output Device Transform +// +half3 Y_2_linCV(half3 Y, half Ymax, half Ymin) +{ + return (Y - Ymin) / (Ymax - Ymin); +} + +half3 XYZ_2_xyY(half3 XYZ) +{ + half divisor = max(dot(XYZ, (1.0).xxx), 1e-4); + return half3(XYZ.xy / divisor, XYZ.y); +} + +half3 xyY_2_XYZ(half3 xyY) +{ + half m = xyY.z / max(xyY.y, 1e-4); + half3 XYZ = half3(xyY.xz, (1.0 - xyY.x - xyY.y)); + XYZ.xz *= m; + return XYZ; +} + +static const half DIM_SURROUND_GAMMA = 0.9811; + +half3 darkSurround_to_dimSurround(half3 linearCV) +{ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + half3 xyY = XYZ_2_xyY(XYZ); + xyY.z = clamp(xyY.z, 0.0, HALF_MAX); + xyY.z = pow(xyY.z, DIM_SURROUND_GAMMA); + XYZ = xyY_2_XYZ(xyY); + + return mul(XYZ_2_AP1_MAT, XYZ); +} + +half moncurve_r(half y, half gamma, half offs) +{ + // Reverse monitor curve + half x; + const half yb = pow(offs * gamma / ((gamma - 1.0) * (1.0 + offs)), gamma); + const half rs = pow((gamma - 1.0) / offs, gamma - 1.0) * pow((1.0 + offs) / gamma, gamma); + if (y >= yb) + x = (1.0 + offs) * pow(y, 1.0 / gamma) - offs; + else + x = y * rs; + return x; +} + +half bt1886_r(half L, half gamma, half Lw, half Lb) +{ + // The reference EOTF specified in Rec. ITU-R BT.1886 + // L = a(max[(V+b),0])^g + half a = pow(pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma), gamma); + half b = pow(Lb, 1.0 / gamma) / (pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma)); + half V = pow(max(L / a, 0.0), 1.0 / gamma) - b; + return V; +} + +half roll_white_fwd( + half x, // color value to adjust (white scaled to around 1.0) + half new_wht, // white adjustment (e.g. 0.9 for 10% darkening) + half width // adjusted width (e.g. 0.25 for top quarter of the tone scale) + ) +{ + const half x0 = -1.0; + const half x1 = x0 + width; + const half y0 = -new_wht; + const half y1 = x1; + const half m1 = (x1 - x0); + const half a = y0 - y1 + m1; + const half b = 2.0 * (y1 - y0) - m1; + const half c = y0; + const half t = (-x - x0) / (x1 - x0); + half o = 0.0; + if (t < 0.0) + o = -(t * b + c); + else if (t > 1.0) + o = x; + else + o = -((t * a + b) * t + c); + return o; +} + +half3 linear_to_sRGB(half3 x) +{ + return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055); +} + +half3 linear_to_bt1886(half3 x, half gamma, half Lw, half Lb) +{ + // Good enough approximation for now, may consider using the exact formula instead + // TODO: Experiment + return pow(max(x, 0.0), 1.0 / 2.4); + + // Correct implementation (Reference EOTF specified in Rec. ITU-R BT.1886) : + // L = a(max[(V+b),0])^g + half invgamma = 1.0 / gamma; + half p_Lw = pow(Lw, invgamma); + half p_Lb = pow(Lb, invgamma); + half3 a = pow(p_Lw - p_Lb, gamma).xxx; + half3 b = (p_Lb / p_Lw - p_Lb).xxx; + half3 V = pow(max(x / a, 0.0), invgamma.xxx) - b; + return V; +} + +static const half CINEMA_WHITE = 48.0; +static const half CINEMA_BLACK = CINEMA_WHITE / 2400.0; +static const half ODT_SAT_FACTOR = 0.93; + +// ODT.Academy.RGBmonitor_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB + +// +// Output Device Transform - RGB computer monitor +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D65, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.RGBmonitor_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB (D60 sim.) + +// +// Output Device Transform - RGB computer monitor (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D60, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.Rec709_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 + +// +// Output Device Transform - Rec709 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D65, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be HDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec709_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 (D60 sim.) + +// +// Output Device Transform - Rec709 (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D60, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be cinema "soft-proofing". +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values must be sent to the display to achieve + // the chromaticities of D60. More specifically, in order to produce D60 on a device + // calibrated to a D65 white point (i.e. equal code values yield CIE x,y + // chromaticities of 0.3127, 0.329) the red channel must be slightly higher than + // that of green and blue in order to compensate for the relatively more "blue-ish" + // D65 white. This unequalness of color channels is the correct behavior but it + // means that as neutral highlights increase, the red channel will hit the + // device maximum first and clip, resulting in a small chromaticity shift as the + // green and blue channels continue to increase to their maximums. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec2020_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.2020 + +// +// Output Device Transform - Rec2020 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.2020 broadcast +// monitor that is calibrated to a D65 white point at 100 cd/m^2. The assumed +// observer adapted white is D65, and the viewing environment is that of a dim +// surround. +// +// A possible use case for this transform would be UHDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.2020 +// CIE 1931 chromaticities: x y Y +// Red: 0.708 0.292 +// Green: 0.17 0.797 +// Blue: 0.131 0.046 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// + +half3 ODT_Rec2020_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC2020_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.P3DCI_48nits.a1.0.3 +// ACES 1.0 Output - P3-DCI + +// +// Output Device Transform - P3DCI (D60 Simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a P3 digital cinema +// projector that is calibrated to a DCI white point at 48 cd/m^2. The assumed +// observer adapted white is D60, and the viewing environment is that of a dark +// theater. +// +// Device Primaries : +// CIE 1931 chromaticities: x y Y +// Red: 0.68 0.32 +// Green: 0.265 0.69 +// Blue: 0.15 0.06 +// White: 0.314 0.351 48 cd/m^2 +// +// Display EOTF : +// Gamma: 2.6 +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// Environment specified in SMPTE RP 431-2-2007 +// +half3 ODT_P3DCI_48nits(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. However, the + // magnitude of the scale factor required for the P3DCI ODT was considered too + // large. Therefore, the scale factor was reduced and the additional required + // compression was achieved via a reshaping of the highlight rolloff in + // conjunction with the scale. The shape of this rolloff was determined + // throught subjective experiments and deemed to best reproduce the + // "character" of the highlights in the P3D60 ODT. + + // Roll off highlights to avoid need for as much scaling + const half NEW_WHT = 0.918; + const half ROLL_WIDTH = 0.5; + linearCV.x = roll_white_fwd(linearCV.x, NEW_WHT, ROLL_WIDTH); + linearCV.y = roll_white_fwd(linearCV.y, NEW_WHT, ROLL_WIDTH); + linearCV.z = roll_white_fwd(linearCV.z, NEW_WHT, ROLL_WIDTH); + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.96; + linearCV = min(linearCV, NEW_WHT) * SCALE; + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_DCIP3_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.6; + half3 outputCV = pow(linearCV, 1.0 / DISPGAMMA); + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +#endif // __ACES__ diff --git a/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl.meta new file mode 100644 index 0000000..2a351eb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d7de89b714449b04391f3a2fb53a9022 +timeCreated: 1493731593 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API.meta b/com.unity.postprocessing/PostProcessing/Shaders/API.meta new file mode 100644 index 0000000..c020934 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fc4403a2b9698954c81d797b70e8a3e2 +folderAsset: yes +timeCreated: 1489753963 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl.meta new file mode 100644 index 0000000..f4b2c38 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D11.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d4e61b1eb5c3ac248add7bb738198560 +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl.meta new file mode 100644 index 0000000..8591a6d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D12.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ed6416461734f3a4d97b2475252d5f6c +timeCreated: 1489754075 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl new file mode 100644 index 0000000..8427b9c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl @@ -0,0 +1,43 @@ +// ALso used for Direct3D 11 "feature level 9.x" target for Windows Store and Windows Phone +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl.meta new file mode 100644 index 0000000..bb4b211 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/D3D9.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a741cbbb27e6ad747a354440a9132a66 +timeCreated: 1489754265 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl new file mode 100644 index 0000000..5091698 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl @@ -0,0 +1,47 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED 0 // Currently broken on Metal for some reason (May 2017) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#define FXAA_HLSL_4 1 // See UNITY_GATHER_SUPPORTED +#define SMAA_HLSL_4 1 diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl.meta new file mode 100644 index 0000000..40b26e7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Metal.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 38502e5cb7782364ba3db59850a9a8ad +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl new file mode 100644 index 0000000..9c7cd11 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl @@ -0,0 +1,57 @@ +// For now OpenGL is considered at GLES2 level +#define UNITY_UV_STARTS_AT_TOP 0 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#if SHADER_API_GLES +# define UNITY_BRANCH +# define UNITY_FLATTEN +# define UNITY_UNROLL +# define UNITY_LOOP +# define UNITY_FASTOPT +#else +# define UNITY_BRANCH [branch] +# define UNITY_FLATTEN [flatten] +# define UNITY_UNROLL [unroll] +# define UNITY_LOOP [loop] +# define UNITY_FASTOPT [fastopt] +#endif + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl.meta new file mode 100644 index 0000000..76f5212 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/OpenGL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6a0c0086cde60e74e9ad1fce57eab9f1 +timeCreated: 1489754265 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl new file mode 100644 index 0000000..dcb0c7e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl @@ -0,0 +1,48 @@ + +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 0 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) tex2D(textureName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)).r + +// 3D textures are not supported on Vita, use 2D to avoid compile errors. +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D(textureName) sampler2D textureName +#define SAMPLER3D(samplerName) +#define TEXTURE3D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex2D(textureName, coord3) + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl.meta new file mode 100644 index 0000000..8bbb61a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/PSP2.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d916afaf5049bb24989e8e823280e99c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl.meta new file mode 100644 index 0000000..e442407 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/PSSL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2399c8729aaf8344e8f9cf4721c5803a +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl new file mode 100644 index 0000000..bf2d233 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl @@ -0,0 +1,51 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl.meta new file mode 100644 index 0000000..aac6044 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Switch.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18095202690616846a484e633db69455 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl.meta new file mode 100644 index 0000000..5c00788 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/Vulkan.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4f2b019548c499944923c5da221047a6 +timeCreated: 1489754021 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl.meta new file mode 100644 index 0000000..b9eb304 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/API/XboxOne.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cd7292cede5bbe44cb888e1e40efac1e +timeCreated: 1489754021 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins.meta new file mode 100644 index 0000000..cc44d0e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2ea9ecb99e9d2604c9c553b14e63a67f +folderAsset: yes +timeCreated: 1492175377 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute new file mode 100644 index 0000000..59ed9b3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute @@ -0,0 +1,88 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel KAutoExposureAvgLuminance_fixed MAIN=KAutoExposureAvgLuminance_fixed +#pragma kernel KAutoExposureAvgLuminance_progressive MAIN=KAutoExposureAvgLuminance_progressive PROGRESSIVE + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl" + +StructuredBuffer _HistogramBuffer; +Texture2D _Source; +RWTexture2D _Destination; + +CBUFFER_START(Params) + float4 _Params1; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness + float4 _Params2; // x: speed down, y: speed up, z: exposure compensation, w: delta time + float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height +CBUFFER_END + +groupshared uint gs_pyramid[HISTOGRAM_REDUCTION_BINS]; + +float GetExposureMultiplier(float avgLuminance) +{ + avgLuminance = max(EPSILON, avgLuminance); + //float keyValue = 1.03 - (2.0 / (2.0 + log2(avgLuminance + 1.0))); + float keyValue = _Params2.z; + float exposure = keyValue / avgLuminance; + return exposure; +} + +float InterpolateExposure(float newExposure, float oldExposure) +{ + float delta = newExposure - oldExposure; + float speed = delta > 0.0 ? _Params2.x : _Params2.y; + float exposure = oldExposure + delta * (1.0 - exp2(-_Params2.w * speed)); + return exposure; +} + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(HISTOGRAM_REDUCTION_THREAD_X, HISTOGRAM_REDUCTION_THREAD_Y, 1)] +void MAIN(uint2 groupThreadId : SV_GroupThreadID) +{ +#if HISTOGRAM_REDUCTION_ALT_PATH + const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; + gs_pyramid[thread_id] = max(_HistogramBuffer[thread_id], _HistogramBuffer[thread_id + HISTOGRAM_REDUCTION_BINS]); +#else + const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; + gs_pyramid[thread_id] = _HistogramBuffer[thread_id]; +#endif + + GroupMemoryBarrierWithGroupSync(); + + // Parallel reduction to find the max value + UNITY_UNROLL + for (uint i = HISTOGRAM_REDUCTION_BINS >> 1u; i > 0u; i >>= 1u) + { + if (thread_id < i) + gs_pyramid[thread_id] = max(gs_pyramid[thread_id], gs_pyramid[thread_id + i]); + + GroupMemoryBarrierWithGroupSync(); + } + + GroupMemoryBarrierWithGroupSync(); + + if (thread_id == 0u) + { + float maxValue = 1.0 / float(gs_pyramid[0]); + +#if PROGRESSIVE + float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); + float exposure = GetExposureMultiplier(avgLuminance); + float prevExposure = _Source[uint2(0u, 0u)].x; + exposure = InterpolateExposure(exposure, prevExposure); + _Destination[uint2(0u, 0u)].x = exposure.x; +#else + float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); + float exposure = GetExposureMultiplier(avgLuminance); + _Destination[uint2(0u, 0u)].x = exposure.x; +#endif + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta new file mode 100644 index 0000000..b5bf316 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34845e0ca016b7448842e965db5890a5 +timeCreated: 1519314976 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 2228228 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader new file mode 100644 index 0000000..b3de18f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader @@ -0,0 +1,205 @@ +Shader "Hidden/PostProcessing/Bloom" +{ + HLSLINCLUDE + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); + TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); + + float4 _MainTex_TexelSize; + float _SampleScale; + float4 _ColorIntensity; + float4 _Threshold; // x: threshold value (linear), y: threshold - knee, z: knee * 2, w: 0.25 / knee + float4 _Params; // x: clamp, yzw: unused + + // ---------------------------------------------------------------------------------------- + // Prefilter + + half4 Prefilter(half4 color, float2 uv) + { + half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; + color *= autoExposure; + color = min(_Params.x, color); // clamp to max + color = QuadraticThreshold(color, _Threshold.x, _Threshold.yzw); + return color; + } + + half4 FragPrefilter13(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return Prefilter(SafeHDR(color), i.texcoord); + } + + half4 FragPrefilter4(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return Prefilter(SafeHDR(color), i.texcoord); + } + + // ---------------------------------------------------------------------------------------- + // Downsample + + half4 FragDownsample13(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return color; + } + + half4 FragDownsample4(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return color; + } + + // ---------------------------------------------------------------------------------------- + // Upsample & combine + + half4 Combine(half4 bloom, float2 uv) + { + half4 color = SAMPLE_TEXTURE2D(_BloomTex, sampler_BloomTex, uv); + return bloom + color; + } + + half4 FragUpsampleTent(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return Combine(bloom, i.texcoordStereo); + } + + half4 FragUpsampleBox(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return Combine(bloom, i.texcoordStereo); + } + + // ---------------------------------------------------------------------------------------- + // Debug overlays + + half4 FragDebugOverlayThreshold(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + return half4(Prefilter(SafeHDR(color), i.texcoord).rgb, 1.0); + } + + half4 FragDebugOverlayTent(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); + } + + half4 FragDebugOverlayBox(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0: Prefilter 13 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPrefilter13 + + ENDHLSL + } + + // 1: Prefilter 4 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPrefilter4 + + ENDHLSL + } + + // 2: Downsample 13 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDownsample13 + + ENDHLSL + } + + // 3: Downsample 4 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDownsample4 + + ENDHLSL + } + + // 4: Upsample tent filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragUpsampleTent + + ENDHLSL + } + + // 5: Upsample box filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragUpsampleBox + + ENDHLSL + } + + // 6: Debug overlay (threshold) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayThreshold + + ENDHLSL + } + + // 7: Debug overlay (tent filter) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayTent + + ENDHLSL + } + + // 8: Debug overlay (box filter) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayBox + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader.meta new file mode 100644 index 0000000..a3ce4f0 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Bloom.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c1e1d3119c6fd4646aea0b4b74cacc1a +timeCreated: 1489940191 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader new file mode 100644 index 0000000..2f7d730 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader @@ -0,0 +1,55 @@ +Shader "Hidden/PostProcessing/Copy" +{ + HLSLINCLUDE + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + return color; + } + + float4 FragKillNaN(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Fullscreen triangle copy + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + + // 1 - Fullscreen triangle copy + NaN killer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragKillNaN + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader.meta new file mode 100644 index 0000000..d550230 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Copy.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cdbdb71de5f9c454b980f6d0e87f0afb +timeCreated: 1489880150 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader new file mode 100644 index 0000000..7f2f4ec --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader @@ -0,0 +1,105 @@ +Shader "Hidden/PostProcessing/CopyStd" +{ + // + // We need this shader for the very first RT blit using the internal CommandBuffer.Blit() method + // so it can handle AAResolve properly. We also need it to be separate because of VR and the + // need for a Properties block. If we were to add this block to the other Copy shader it would + // not allow us to manually bind _MainTex, thus breaking a few other things in the process... + // + + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + struct Attributes + { + float4 vertex : POSITION; + float2 texcoord : TEXCOORD0; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + }; + + sampler2D _MainTex; + float4 _MainTex_ST; + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); + o.texcoord = v.texcoord; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoord = o.texcoord * _MainTex_ST.xy + _MainTex_ST.zw; // We need this for VR + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + return color; + } + + //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + //<<< + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 1 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader.meta new file mode 100644 index 0000000..3107dda --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStd.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4bf4cff0d0bac3d43894e2e8839feb40 +timeCreated: 1502891195 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader new file mode 100644 index 0000000..e840875 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader @@ -0,0 +1,101 @@ +Shader "Hidden/PostProcessing/CopyStdFromDoubleWide" +{ + //Blit from single-pass double-wide texture. Similar to CopyStd but with stereo texture as source + //and samples from double-wide. Having separate shader is cleaner than multiple #if in the code. + + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + struct Attributes + { + float4 vertex : POSITION; + float2 texcoord : TEXCOORD0; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + }; + + sampler2D _MainTex; + float4 _UVScaleOffset; + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); + o.texcoord = v.texcoord; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoord = o.texcoord * _UVScaleOffset.xy + _UVScaleOffset.zw; + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + return color; + } + + //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + //<<< + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 1 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta new file mode 100644 index 0000000..a769785 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e8ce9961912f3214586fe8709b9012c1 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader new file mode 100644 index 0000000..1233042 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader @@ -0,0 +1,105 @@ +Shader "Hidden/PostProcessing/CopyStdFromTexArray" +{ + //Blit from texture array slice. Similar to CopyStd but with texture array as source + //and sampling from texture array. Having separate shader is cleaner than multiple #if in the code. + + Properties + { + _MainTex ("", 2DArray) = "white" {} + } + + CGINCLUDE + #pragma target 3.5 + + struct Attributes + { + float3 vertex : POSITION; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float3 texcoord : TEXCOORD0; + }; + + Texture2DArray _MainTex; + SamplerState sampler_MainTex; + float _DepthSlice; + + float2 TransformTriangleVertexToUV(float2 vertex) + { + float2 uv = (vertex + 1.0) * 0.5; + return uv; + } + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord.xy = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord.xy = o.texcoord.xy * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + o.texcoord.z = _DepthSlice; + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); + return color; + } + + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 0 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta new file mode 100644 index 0000000..f598e8e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 02d2da9bc88d25c4d878c1ed4e0b3854 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader new file mode 100644 index 0000000..9a0653a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader @@ -0,0 +1,65 @@ +Shader "Hidden/PostProcessing/DeferredFog" +{ + HLSLINCLUDE + + #pragma multi_compile __ FOG_LINEAR FOG_EXP FOG_EXP2 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + + #define SKYBOX_THREASHOLD_VALUE 0.9999 + + float4 Frag(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + depth = Linear01Depth(depth); + float dist = ComputeFogDistance(depth); + half fog = 1.0 - ComputeFog(dist); + + return lerp(color, _FogColor, fog); + } + + float4 FragExcludeSkybox(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + depth = Linear01Depth(depth); + float skybox = depth < SKYBOX_THREASHOLD_VALUE; + float dist = ComputeFogDistance(depth); + half fog = 1.0 - ComputeFog(dist); + + return lerp(color, _FogColor, fog * skybox); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragExcludeSkybox + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta new file mode 100644 index 0000000..96a19d7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4117fce9491711c4094d33a048e36e73 +timeCreated: 1498468345 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl new file mode 100644 index 0000000..693304a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl @@ -0,0 +1,271 @@ +#ifndef UNITY_POSTFX_DEPTH_OF_FIELD +#define UNITY_POSTFX_DEPTH_OF_FIELD + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl" + +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +float4 _MainTex_TexelSize; + +TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); +TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + +TEXTURE2D_SAMPLER2D(_CoCTex, sampler_CoCTex); + +TEXTURE2D_SAMPLER2D(_DepthOfFieldTex, sampler_DepthOfFieldTex); +float4 _DepthOfFieldTex_TexelSize; + +// Camera parameters +float _Distance; +float _LensCoeff; // f^2 / (N * (S1 - f) * film_width * 2) +float _MaxCoC; +float _RcpMaxCoC; +float _RcpAspect; +half3 _TaaParams; // Jitter.x, Jitter.y, Blending + +// CoC calculation +half4 FragCoC(VaryingsDefault i) : SV_Target +{ + float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + half coc = (depth - _Distance) * _LensCoeff / max(depth, 1e-4); + return saturate(coc * 0.5 * _RcpMaxCoC + 0.5); +} + +// Temporal filter +half4 FragTempFilter(VaryingsDefault i) : SV_Target +{ + float3 uvOffs = _MainTex_TexelSize.xyy * float3(1.0, 1.0, 0.0); + +#if UNITY_GATHER_SUPPORTED + + half4 cocTL = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xy * 0.5)); // top-left + half4 cocBR = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xy * 0.5)); // bottom-right + half coc1 = cocTL.x; // top + half coc2 = cocTL.z; // left + half coc3 = cocBR.x; // bottom + half coc4 = cocBR.z; // right + +#else + + half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xz)).r; // top + half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.zy)).r; // left + half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.zy)).r; // bottom + half coc4 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xz)).r; // right + +#endif + + // Dejittered center sample. + half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - _TaaParams.xy)).r; + + // CoC dilation: determine the closest point in the four neighbors + float3 closest = float3(0.0, 0.0, coc0); + closest = coc1 < closest.z ? float3(-uvOffs.xz, coc1) : closest; + closest = coc2 < closest.z ? float3(-uvOffs.zy, coc2) : closest; + closest = coc3 < closest.z ? float3( uvOffs.zy, coc3) : closest; + closest = coc4 < closest.z ? float3( uvOffs.xz, coc4) : closest; + + // Sample the history buffer with the motion vector at the closest point + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(i.texcoord + closest.xy)).xy; + half cocHis = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - motion)).r; + + // Neighborhood clamping + half cocMin = closest.z; + half cocMax = Max3(Max3(coc0, coc1, coc2), coc3, coc4); + cocHis = clamp(cocHis, cocMin, cocMax); + + // Blend with the history + return lerp(coc0, cocHis, _TaaParams.z); +} + +// Prefilter: downsampling and premultiplying +half4 FragPrefilter(VaryingsDefault i) : SV_Target +{ +#if UNITY_GATHER_SUPPORTED + + // Sample source colors + half4 c_r = GATHER_RED_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 c_g = GATHER_GREEN_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 c_b = GATHER_BLUE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + half3 c0 = half3(c_r.x, c_g.x, c_b.x); + half3 c1 = half3(c_r.y, c_g.y, c_b.y); + half3 c2 = half3(c_r.z, c_g.z, c_b.z); + half3 c3 = half3(c_r.w, c_g.w, c_b.w); + + // Sample CoCs + half4 cocs = GATHER_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo) * 2.0 - 1.0; + half coc0 = cocs.x; + half coc1 = cocs.y; + half coc2 = cocs.z; + half coc3 = cocs.w; + +#else + + float3 duv = _MainTex_TexelSize.xyx * float3(0.5, 0.5, -0.5); + float2 uv0 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy); + float2 uv1 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy); + float2 uv2 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy); + float2 uv3 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy); + + // Sample source colors + half3 c0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv0).rgb; + half3 c1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv1).rgb; + half3 c2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv2).rgb; + half3 c3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv3).rgb; + + // Sample CoCs + half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv0).r * 2.0 - 1.0; + half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv1).r * 2.0 - 1.0; + half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv2).r * 2.0 - 1.0; + half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv3).r * 2.0 - 1.0; + +#endif + + // Apply CoC and luma weights to reduce bleeding and flickering + float w0 = abs(coc0) / (Max3(c0.r, c0.g, c0.b) + 1.0); + float w1 = abs(coc1) / (Max3(c1.r, c1.g, c1.b) + 1.0); + float w2 = abs(coc2) / (Max3(c2.r, c2.g, c2.b) + 1.0); + float w3 = abs(coc3) / (Max3(c3.r, c3.g, c3.b) + 1.0); + + // Weighted average of the color samples + half3 avg = c0 * w0 + c1 * w1 + c2 * w2 + c3 * w3; + avg /= max(w0 + w1 + w2 + w3, 1e-4); + + // Select the largest CoC value + half coc_min = min(coc0, Min3(coc1, coc2, coc3)); + half coc_max = max(coc0, Max3(coc1, coc2, coc3)); + half coc = (-coc_min > coc_max ? coc_min : coc_max) * _MaxCoC; + + // Premultiply CoC again + avg *= smoothstep(0, _MainTex_TexelSize.y * 2, abs(coc)); + +#if defined(UNITY_COLORSPACE_GAMMA) + avg = SRGBToLinear(avg); +#endif + + return half4(avg, coc); +} + +// Bokeh filter with disk-shaped kernels +half4 FragBlur(VaryingsDefault i) : SV_Target +{ + half4 samp0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + half4 bgAcc = 0.0; // Background: far field bokeh + half4 fgAcc = 0.0; // Foreground: near field bokeh + + UNITY_LOOP + for (int si = 0; si < kSampleCount; si++) + { + float2 disp = kDiskKernel[si] * _MaxCoC; + float dist = length(disp); + + float2 duv = float2(disp.x * _RcpAspect, disp.y); + half4 samp = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv)); + + // BG: Compare CoC of the current sample and the center sample + // and select smaller one. + half bgCoC = max(min(samp0.a, samp.a), 0.0); + + // Compare the CoC to the sample distance. + // Add a small margin to smooth out. + const half margin = _MainTex_TexelSize.y * 2; + half bgWeight = saturate((bgCoC - dist + margin) / margin); + half fgWeight = saturate((-samp.a - dist + margin) / margin); + + // Cut influence from focused areas because they're darkened by CoC + // premultiplying. This is only needed for near field. + fgWeight *= step(_MainTex_TexelSize.y, -samp.a); + + // Accumulation + bgAcc += half4(samp.rgb, 1.0) * bgWeight; + fgAcc += half4(samp.rgb, 1.0) * fgWeight; + } + + // Get the weighted average. + bgAcc.rgb /= bgAcc.a + (bgAcc.a == 0.0); // zero-div guard + fgAcc.rgb /= fgAcc.a + (fgAcc.a == 0.0); + + // BG: Calculate the alpha value only based on the center CoC. + // This is a rather aggressive approximation but provides stable results. + bgAcc.a = smoothstep(_MainTex_TexelSize.y, _MainTex_TexelSize.y * 2.0, samp0.a); + + // FG: Normalize the total of the weights. + fgAcc.a *= PI / kSampleCount; + + // Alpha premultiplying + half alpha = saturate(fgAcc.a); + half3 rgb = lerp(bgAcc.rgb, fgAcc.rgb, alpha); + + return half4(rgb, alpha); +} + +// Postfilter blur +half4 FragPostBlur(VaryingsDefault i) : SV_Target +{ + // 9 tap tent filter with 4 bilinear samples + const float4 duv = _MainTex_TexelSize.xyxy * float4(0.5, 0.5, -0.5, 0); + half4 acc; + acc = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy)); + return acc / 4.0; +} + +// Combine with source +half4 FragCombine(VaryingsDefault i) : SV_Target +{ + half4 dof = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); + half coc = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo).r; + coc = (coc - 0.5) * 2.0 * _MaxCoC; + + // Convert CoC to far field alpha value. + float ffa = smoothstep(_MainTex_TexelSize.y * 2.0, _MainTex_TexelSize.y * 4.0, coc); + + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + +#if defined(UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(color); +#endif + + half alpha = Max3(dof.r, dof.g, dof.b); + + // lerp(lerp(color, dof, ffa), dof, dof.a) + color = lerp(color, float4(dof.rgb, alpha), ffa + dof.a - ffa * dof.a); + +#if defined(UNITY_COLORSPACE_GAMMA) + color = LinearToSRGB(color); +#endif + + return color; +} + +// Debug overlay +half4 FragDebugOverlay(VaryingsDefault i) : SV_Target +{ + half3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + + // Calculate the radiuses of CoC. + half4 src = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); + float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + float coc = (depth - _Distance) * _LensCoeff / depth; + coc *= 80; + + // Visualize CoC (white -> red -> gray) + half3 rgb = lerp(half3(1.0, 0.0, 0.0), half3(1.0, 1.0, 1.0), saturate(-coc)); + rgb = lerp(rgb, half3(0.4, 0.4, 0.4), saturate(coc)); + + // Black and white image overlay + rgb *= Luminance(color) + 0.5; + + // Gamma correction +#if !UNITY_COLORSPACE_GAMMA + rgb = SRGBToLinear(rgb); +#endif + + return half4(rgb, 1.0); +} + +#endif // UNITY_POSTFX_DEPTH_OF_FIELD diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta new file mode 100644 index 0000000..b562701 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4ae2d18891fcdd2408b0c1f3f2038c62 +timeCreated: 1491839887 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader new file mode 100644 index 0000000..69c363f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader @@ -0,0 +1,265 @@ +Shader "Hidden/PostProcessing/DepthOfField" +{ + // SubShader with SM 5.0 support + // DX11+, OpenGL 4.3+, OpenGL ES 3.1+AEP, Vulkan, consoles + // Gather intrinsics are used to reduce texture sample count. + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass // 0 + { + Name "CoC Calculation" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCoC + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 1 + { + Name "CoC Temporal Filter" + + HLSLPROGRAM + #pragma target 5.0 + #pragma vertex VertDefault + #pragma fragment FragTempFilter + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 2 + { + Name "Downsample and Prefilter" + + HLSLPROGRAM + #pragma target 5.0 + #pragma vertex VertDefault + #pragma fragment FragPrefilter + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 3 + { + Name "Bokeh Filter (small)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_SMALL + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 4 + { + Name "Bokeh Filter (medium)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_MEDIUM + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 5 + { + Name "Bokeh Filter (large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_LARGE + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 6 + { + Name "Bokeh Filter (very large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_VERYLARGE + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 7 + { + Name "Postfilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPostBlur + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 8 + { + Name "Combine" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCombine + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 9 + { + Name "Debug Overlay" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + } + + // Fallback SubShader with SM 3.5 + // DX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, consoles + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass // 0 + { + Name "CoC Calculation" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCoC + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 1 + { + Name "CoC Temporal Filter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragTempFilter + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 2 + { + Name "Downsample and Prefilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPrefilter + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 3 + { + Name "Bokeh Filter (small)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_SMALL + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 4 + { + Name "Bokeh Filter (medium)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_MEDIUM + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 5 + { + Name "Bokeh Filter (large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_LARGE + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 6 + { + Name "Bokeh Filter (very large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_VERYLARGE + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 7 + { + Name "Postfilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPostBlur + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 8 + { + Name "Combine" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCombine + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + + Pass // 9 + { + Name "Debug Overlay" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.hlsl" + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta new file mode 100644 index 0000000..60a2b38 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0ef78d24e85a44f4da9d5b5eaa00e50b +timeCreated: 1491838816 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader new file mode 100644 index 0000000..549f12b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader @@ -0,0 +1,31 @@ +Shader "Hidden/PostProcessing/DiscardAlpha" +{ + HLSLINCLUDE + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + return float4(color.rgb, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta new file mode 100644 index 0000000..9e59224 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5ab0816423f0dfe45841cab3b05ec9ef +timeCreated: 1496835037 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl new file mode 100644 index 0000000..b817ce8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl @@ -0,0 +1,204 @@ +#ifndef UNITY_POSTFX_DISK_KERNELS +#define UNITY_POSTFX_DISK_KERNELS + +#if !defined(KERNEL_SMALL) && !defined(KERNEL_MEDIUM) && \ + !defined(KERNEL_LARGE) && !defined(KERNEL_VERYLARGE) + +static const int kSampleCount = 1; +static const float2 kDiskKernel[1] = { float2(0, 0) }; + +#endif + +#if defined(KERNEL_SMALL) + +// rings = 2 +// points per ring = 5 +static const int kSampleCount = 16; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.54545456,0), + float2(0.16855472,0.5187581), + float2(-0.44128203,0.3206101), + float2(-0.44128197,-0.3206102), + float2(0.1685548,-0.5187581), + float2(1,0), + float2(0.809017,0.58778524), + float2(0.30901697,0.95105654), + float2(-0.30901703,0.9510565), + float2(-0.80901706,0.5877852), + float2(-1,0), + float2(-0.80901694,-0.58778536), + float2(-0.30901664,-0.9510566), + float2(0.30901712,-0.9510565), + float2(0.80901694,-0.5877853), +}; + +#endif + +#if defined(KERNEL_MEDIUM) + +// rings = 3 +// points per ring = 7 +static const int kSampleCount = 22; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.53333336,0), + float2(0.3325279,0.4169768), + float2(-0.11867785,0.5199616), + float2(-0.48051673,0.2314047), + float2(-0.48051673,-0.23140468), + float2(-0.11867763,-0.51996166), + float2(0.33252785,-0.4169769), + float2(1,0), + float2(0.90096885,0.43388376), + float2(0.6234898,0.7818315), + float2(0.22252098,0.9749279), + float2(-0.22252095,0.9749279), + float2(-0.62349,0.7818314), + float2(-0.90096885,0.43388382), + float2(-1,0), + float2(-0.90096885,-0.43388376), + float2(-0.6234896,-0.7818316), + float2(-0.22252055,-0.974928), + float2(0.2225215,-0.9749278), + float2(0.6234897,-0.7818316), + float2(0.90096885,-0.43388376), +}; + +#endif + +#if defined(KERNEL_LARGE) + +// rings = 4 +// points per ring = 7 +static const int kSampleCount = 43; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.36363637,0), + float2(0.22672357,0.28430238), + float2(-0.08091671,0.35451925), + float2(-0.32762504,0.15777594), + float2(-0.32762504,-0.15777591), + float2(-0.08091656,-0.35451928), + float2(0.22672352,-0.2843024), + float2(0.6818182,0), + float2(0.614297,0.29582983), + float2(0.42510667,0.5330669), + float2(0.15171885,0.6647236), + float2(-0.15171883,0.6647236), + float2(-0.4251068,0.53306687), + float2(-0.614297,0.29582986), + float2(-0.6818182,0), + float2(-0.614297,-0.29582983), + float2(-0.42510656,-0.53306705), + float2(-0.15171856,-0.66472363), + float2(0.1517192,-0.6647235), + float2(0.4251066,-0.53306705), + float2(0.614297,-0.29582983), + float2(1,0), + float2(0.9555728,0.2947552), + float2(0.82623875,0.5633201), + float2(0.6234898,0.7818315), + float2(0.36534098,0.93087375), + float2(0.07473,0.9972038), + float2(-0.22252095,0.9749279), + float2(-0.50000006,0.8660254), + float2(-0.73305196,0.6801727), + float2(-0.90096885,0.43388382), + float2(-0.98883086,0.14904208), + float2(-0.9888308,-0.14904249), + float2(-0.90096885,-0.43388376), + float2(-0.73305184,-0.6801728), + float2(-0.4999999,-0.86602545), + float2(-0.222521,-0.9749279), + float2(0.07473029,-0.99720377), + float2(0.36534148,-0.9308736), + float2(0.6234897,-0.7818316), + float2(0.8262388,-0.56332), + float2(0.9555729,-0.29475483), +}; + +#endif + +#if defined(KERNEL_VERYLARGE) + +// rings = 5 +// points per ring = 7 +static const int kSampleCount = 71; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.2758621,0), + float2(0.1719972,0.21567768), + float2(-0.061385095,0.26894566), + float2(-0.24854316,0.1196921), + float2(-0.24854316,-0.11969208), + float2(-0.061384983,-0.2689457), + float2(0.17199717,-0.21567771), + float2(0.51724136,0), + float2(0.46601835,0.22442262), + float2(0.32249472,0.40439558), + float2(0.11509705,0.50427306), + float2(-0.11509704,0.50427306), + float2(-0.3224948,0.40439552), + float2(-0.46601835,0.22442265), + float2(-0.51724136,0), + float2(-0.46601835,-0.22442262), + float2(-0.32249463,-0.40439564), + float2(-0.11509683,-0.5042731), + float2(0.11509732,-0.504273), + float2(0.32249466,-0.40439564), + float2(0.46601835,-0.22442262), + float2(0.7586207,0), + float2(0.7249173,0.22360738), + float2(0.6268018,0.4273463), + float2(0.47299224,0.59311354), + float2(0.27715522,0.7061801), + float2(0.056691725,0.75649947), + float2(-0.168809,0.7396005), + float2(-0.3793104,0.65698475), + float2(-0.55610836,0.51599306), + float2(-0.6834936,0.32915324), + float2(-0.7501475,0.113066405), + float2(-0.7501475,-0.11306671), + float2(-0.6834936,-0.32915318), + float2(-0.5561083,-0.5159932), + float2(-0.37931028,-0.6569848), + float2(-0.16880904,-0.7396005), + float2(0.056691945,-0.7564994), + float2(0.2771556,-0.7061799), + float2(0.47299215,-0.59311366), + float2(0.62680185,-0.4273462), + float2(0.72491735,-0.22360711), + float2(1,0), + float2(0.9749279,0.22252093), + float2(0.90096885,0.43388376), + float2(0.7818315,0.6234898), + float2(0.6234898,0.7818315), + float2(0.43388364,0.9009689), + float2(0.22252098,0.9749279), + float2(0,1), + float2(-0.22252095,0.9749279), + float2(-0.43388385,0.90096885), + float2(-0.62349,0.7818314), + float2(-0.7818317,0.62348956), + float2(-0.90096885,0.43388382), + float2(-0.9749279,0.22252093), + float2(-1,0), + float2(-0.9749279,-0.22252087), + float2(-0.90096885,-0.43388376), + float2(-0.7818314,-0.6234899), + float2(-0.6234896,-0.7818316), + float2(-0.43388346,-0.900969), + float2(-0.22252055,-0.974928), + float2(0,-1), + float2(0.2225215,-0.9749278), + float2(0.4338835,-0.90096897), + float2(0.6234897,-0.7818316), + float2(0.78183144,-0.62348986), + float2(0.90096885,-0.43388376), + float2(0.9749279,-0.22252086), +}; + +#endif + +#endif // UNITY_POSTFX_DISK_KERNELS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta new file mode 100644 index 0000000..0b525a0 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a4811657005cf0a439cbc4a989ce9083 +timeCreated: 1491839887 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl new file mode 100644 index 0000000..46ebf0a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl @@ -0,0 +1,34 @@ +#ifndef UNITY_POSTFX_DISTORTION +#define UNITY_POSTFX_DISTORTION + +float4 _Distortion_Amount; +float4 _Distortion_CenterScale; + +float2 Distort(float2 uv) +{ + // Note: lens distortion is automatically disabled in VR so we won't bother handling stereo uvs + #if DISTORT + { + uv = (uv - 0.5) * _Distortion_Amount.z + 0.5; + float2 ruv = _Distortion_CenterScale.zw * (uv - 0.5 - _Distortion_CenterScale.xy); + float ru = length(float2(ruv)); + + UNITY_BRANCH + if (_Distortion_Amount.w > 0.0) + { + float wu = ru * _Distortion_Amount.x; + ru = tan(wu) * (1.0 / (ru * _Distortion_Amount.y)); + uv = uv + ruv * (ru - 1.0); + } + else + { + ru = (1.0 / ru) * _Distortion_Amount.x * atan(ru * _Distortion_Amount.y); + uv = uv + ruv * (ru - 1.0); + } + } + #endif + + return uv; +} + +#endif // UNITY_POSTFX_DISTORTION diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta new file mode 100644 index 0000000..078acf3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c053166c69db5b943a5e70ec28113a24 +timeCreated: 1519741306 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl new file mode 100644 index 0000000..5ed1d0a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl @@ -0,0 +1,23 @@ +#ifndef UNITY_POSTFX_DITHERING +#define UNITY_POSTFX_DITHERING + +TEXTURE2D_SAMPLER2D(_DitheringTex, sampler_DitheringTex); +float4 _Dithering_Coords; + +float3 Dither(float3 color, float2 uv) +{ + // Final pass dithering + // Symmetric triangular distribution on [-1,1] with maximal density at 0 + float noise = SAMPLE_TEXTURE2D(_DitheringTex, sampler_DitheringTex, uv * _Dithering_Coords.xy + _Dithering_Coords.zw).a * 2.0 - 1.0; + noise = FastSign(noise) * (1.0 - sqrt(1.0 - abs(noise))); + +#if UNITY_COLORSPACE_GAMMA + color += noise / 255.0; +#else + color = SRGBToLinear(LinearToSRGB(color) + noise / 255.0); +#endif + + return color; +} + +#endif // UNITY_POSTFX_DITHERING diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta new file mode 100644 index 0000000..bfde911 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b17c8e94a77f9a24d80deb0464a28ddd +timeCreated: 1499075289 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute new file mode 100644 index 0000000..81e1121 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute @@ -0,0 +1,102 @@ +// Put the following line to 0 or comment it to disable vignette weighting +#define USE_VIGNETTE_WEIGHTING 1 + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl" + +RWStructuredBuffer _HistogramBuffer; +Texture2D _Source; +SamplerState sampler_LinearClamp; + +CBUFFER_START(Params) + float4 _ScaleOffsetRes; // x: scale, y: offset, z: width, w: height +CBUFFER_END + +groupshared uint gs_histogram[HISTOGRAM_BINS]; + +#pragma kernel KEyeHistogram + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KEyeHistogram) +TRIVIAL_COMPUTE_KERNEL(KEyeHistogramClear) + +#else + +[numthreads(HISTOGRAM_THREAD_X, HISTOGRAM_THREAD_Y, 1)] +void KEyeHistogram(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) +{ + const uint localThreadId = groupThreadId.y * HISTOGRAM_THREAD_X + groupThreadId.x; + + // Clears the shared memory +#if HISTOGRAM_REDUCTION_ALT_PATH + uint localThreadIdOff = localThreadId << 1u; + if (localThreadIdOff < HISTOGRAM_BINS) + { + gs_histogram[localThreadIdOff ] = 0u; + gs_histogram[localThreadIdOff + 1] = 0u; + } +#else + if (localThreadId < HISTOGRAM_BINS) + { + gs_histogram[localThreadId] = 0u; + } +#endif + + float2 ipos = float2(dispatchThreadId) * 2.0; + + GroupMemoryBarrierWithGroupSync(); + + // Gather local group histogram + if (ipos.x < _ScaleOffsetRes.z && ipos.y < _ScaleOffsetRes.w) + { + uint weight = 1u; + float2 sspos = ipos / _ScaleOffsetRes.zw; + + // Vignette weighting to put more focus on what's in the center of the screen + #if USE_VIGNETTE_WEIGHTING + { + float2 d = abs(sspos - (0.5).xx); + float vfactor = saturate(1.0 - dot(d, d)); + vfactor *= vfactor; + weight = (uint)(64.0 * vfactor); + } + #endif + + float3 color = _Source.SampleLevel(sampler_LinearClamp, sspos, 0.0).xyz; // Bilinear downsample 2x + float luminance = Luminance(color); + float logLuminance = GetHistogramBinFromLuminance(luminance, _ScaleOffsetRes.xy); + uint idx = (uint)(logLuminance * (HISTOGRAM_BINS - 1u)); + InterlockedAdd(gs_histogram[idx], weight); + } + + GroupMemoryBarrierWithGroupSync(); + + // Merge everything +#if HISTOGRAM_REDUCTION_ALT_PATH + if (localThreadIdOff < HISTOGRAM_BINS) + { + InterlockedAdd(_HistogramBuffer[localThreadIdOff ], gs_histogram[localThreadIdOff ]); + InterlockedAdd(_HistogramBuffer[localThreadIdOff + 1], gs_histogram[localThreadIdOff + 1]); + } +#else + if (localThreadId < HISTOGRAM_BINS) + { + InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); + } +#endif +} + +#pragma kernel KEyeHistogramClear +[numthreads(HISTOGRAM_THREAD_X, 1, 1)] +void KEyeHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId < HISTOGRAM_BINS) + _HistogramBuffer[dispatchThreadId] = 0u; +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta new file mode 100644 index 0000000..8f7eefe --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8c2fcbdf9bc58664f89917f7b9d79501 +timeCreated: 1488985723 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 4 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl new file mode 100644 index 0000000..67bd744 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl @@ -0,0 +1,95 @@ +#ifndef UNITY_POSTFX_EXPOSURE_HISTOGRAM +#define UNITY_POSTFX_EXPOSURE_HISTOGRAM + +// Don't forget to update 'LogHistogram.cs' if you change these values ! +#define HISTOGRAM_BINS 128 +#define HISTOGRAM_TEXELS HISTOGRAM_BINS / 4 + +#if SHADER_API_GLES3 || SHADER_API_METAL + #define HISTOGRAM_THREAD_X 8 + #define HISTOGRAM_THREAD_Y 8 + #define HISTOGRAM_REDUCTION_THREAD_X 8 + #define HISTOGRAM_REDUCTION_THREAD_Y 8 + #define HISTOGRAM_REDUCTION_ALT_PATH 1 +#else + #define HISTOGRAM_THREAD_X 16 + #define HISTOGRAM_THREAD_Y 16 + #define HISTOGRAM_REDUCTION_THREAD_X HISTOGRAM_THREAD_X + #define HISTOGRAM_REDUCTION_THREAD_Y HISTOGRAM_BINS / HISTOGRAM_THREAD_Y + #define HISTOGRAM_REDUCTION_ALT_PATH 0 +#endif + +#define HISTOGRAM_REDUCTION_BINS HISTOGRAM_REDUCTION_THREAD_X * HISTOGRAM_REDUCTION_THREAD_Y + +float GetHistogramBinFromLuminance(float value, float2 scaleOffset) +{ + return saturate(log2(value) * scaleOffset.x + scaleOffset.y); +} + +float GetLuminanceFromHistogramBin(float bin, float2 scaleOffset) +{ + return exp2((bin - scaleOffset.y) / scaleOffset.x); +} + +float GetBinValue(StructuredBuffer buffer, uint index, float maxHistogramValue) +{ + return float(buffer[index]) * maxHistogramValue; +} + +float FindMaxHistogramValue(StructuredBuffer buffer) +{ + uint maxValue = 0u; + + for (uint i = 0; i < HISTOGRAM_BINS; i++) + { + uint h = buffer[i]; + maxValue = max(maxValue, h); + } + + return float(maxValue); +} + +void FilterLuminance(StructuredBuffer buffer, uint i, float maxHistogramValue, float2 scaleOffset, inout float4 filter) +{ + float binValue = GetBinValue(buffer, i, maxHistogramValue); + + // Filter dark areas + float offset = min(filter.z, binValue); + binValue -= offset; + filter.zw -= offset.xx; + + // Filter highlights + binValue = min(filter.w, binValue); + filter.w -= binValue; + + // Luminance at the bin + float luminance = GetLuminanceFromHistogramBin(float(i) / float(HISTOGRAM_BINS), scaleOffset); + + filter.xy += float2(luminance * binValue, binValue); +} + +float GetAverageLuminance(StructuredBuffer buffer, float4 params, float maxHistogramValue, float2 scaleOffset) +{ + // Sum of all bins + uint i; + float totalSum = 0.0; + + UNITY_UNROLL + for (i = 0; i < HISTOGRAM_BINS; i++) + totalSum += GetBinValue(buffer, i, maxHistogramValue); + + // Skip darker and lighter parts of the histogram to stabilize the auto exposure + // x: filtered sum + // y: accumulator + // zw: fractions + float4 filter = float4(0.0, 0.0, totalSum * params.xy); + + UNITY_UNROLL + for (i = 0; i < HISTOGRAM_BINS; i++) + FilterLuminance(buffer, i, maxHistogramValue, scaleOffset, filter); + + // Clamp to user brightness range + return clamp(filter.x / max(filter.y, EPSILON), params.z, params.w); +} + +#endif // UNITY_POSTFX_EXPOSURE_HISTOGRAM diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta new file mode 100644 index 0000000..cc21763 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e02724c54d545ad439d7a5fa991ae924 +timeCreated: 1488987302 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl new file mode 100644 index 0000000..cc6143c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl @@ -0,0 +1,2075 @@ +#ifndef __FXAA3_INC__ +#define __FXAA3_INC__ + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl" + +/*============================================================================ + + +NVIDIA FXAA 3.11 by TIMOTHY LOTTES + + +------------------------------------------------------------------------------ +COPYRIGHT (C) 2010, 2011 NVIDIA CORPORATION. ALL RIGHTS RESERVED. +------------------------------------------------------------------------------ +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED +*AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA +OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR +CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR +LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, +OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE +THIS SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +------------------------------------------------------------------------------ +INTEGRATION CHECKLIST +------------------------------------------------------------------------------ +(1.) +In the shader source, setup defines for the desired configuration. +When providing multiple shaders (for different presets), +simply setup the defines differently in multiple files. +Example, + +#define FXAA_PC 1 +#define FXAA_HLSL_5 1 +#define FXAA_QUALITY__PRESET 12 + +Or, + +#define FXAA_360 1 + +Or, + +#define FXAA_PS3 1 + +Etc. + +(2.) +Then include this file, + +#include "Fxaa3_11.h" + +(3.) +Then call the FXAA pixel shader from within your desired shader. +Look at the FXAA Quality FxaaPixelShader() for docs on inputs. +As for FXAA 3.11 all inputs for all shaders are the same +to enable easy porting between platforms. + +return FxaaPixelShader(...); + +(4.) +Insure pass prior to FXAA outputs RGBL (see next section). +Or use, + +#define FXAA_GREEN_AS_LUMA 1 + +(5.) +Setup engine to provide the following constants +which are used in the FxaaPixelShader() inputs, + +FxaaFloat2 fxaaQualityRcpFrame, +FxaaFloat4 fxaaConsoleRcpFrameOpt, +FxaaFloat4 fxaaConsoleRcpFrameOpt2, +FxaaFloat4 fxaaConsole360RcpFrameOpt2, +FxaaFloat fxaaQualitySubpix, +FxaaFloat fxaaQualityEdgeThreshold, +FxaaFloat fxaaQualityEdgeThresholdMin, +FxaaFloat fxaaConsoleEdgeSharpness, +FxaaFloat fxaaConsoleEdgeThreshold, +FxaaFloat fxaaConsoleEdgeThresholdMin, +FxaaFloat4 fxaaConsole360ConstDir + +Look at the FXAA Quality FxaaPixelShader() for docs on inputs. + +(6.) +Have FXAA vertex shader run as a full screen triangle, +and output "pos" and "fxaaConsolePosPos" +such that inputs in the pixel shader provide, + +// {xy} = center of pixel +FxaaFloat2 pos, + +// {xy__} = upper left of pixel +// {__zw} = lower right of pixel +FxaaFloat4 fxaaConsolePosPos, + +(7.) +Insure the texture sampler(s) used by FXAA are set to bilinear filtering. + + +------------------------------------------------------------------------------ +INTEGRATION - RGBL AND COLORSPACE +------------------------------------------------------------------------------ +FXAA3 requires RGBL as input unless the following is set, + +#define FXAA_GREEN_AS_LUMA 1 + +In which case the engine uses green in place of luma, +and requires RGB input is in a non-linear colorspace. + +RGB should be LDR (low dynamic range). +Specifically do FXAA after tonemapping. + +RGB data as returned by a texture fetch can be non-linear, +or linear when FXAA_GREEN_AS_LUMA is not set. +Note an "sRGB format" texture counts as linear, +because the result of a texture fetch is linear data. +Regular "RGBA8" textures in the sRGB colorspace are non-linear. + +If FXAA_GREEN_AS_LUMA is not set, +luma must be stored in the alpha channel prior to running FXAA. +This luma should be in a perceptual space (could be gamma 2.0). +Example pass before FXAA where output is gamma 2.0 encoded, + +color.rgb = ToneMap(color.rgb); // linear color output +color.rgb = sqrt(color.rgb); // gamma 2.0 color output +return color; + +To use FXAA, + +color.rgb = ToneMap(color.rgb); // linear color output +color.rgb = sqrt(color.rgb); // gamma 2.0 color output +color.a = dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114)); // compute luma +return color; + +Another example where output is linear encoded, +say for instance writing to an sRGB formated render target, +where the render target does the conversion back to sRGB after blending, + +color.rgb = ToneMap(color.rgb); // linear color output +return color; + +To use FXAA, + +color.rgb = ToneMap(color.rgb); // linear color output +color.a = sqrt(dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114))); // compute luma +return color; + +Getting luma correct is required for the algorithm to work correctly. + + +------------------------------------------------------------------------------ +BEING LINEARLY CORRECT? +------------------------------------------------------------------------------ +Applying FXAA to a framebuffer with linear RGB color will look worse. +This is very counter intuitive, but happends to be true in this case. +The reason is because dithering artifacts will be more visiable +in a linear colorspace. + + +------------------------------------------------------------------------------ +COMPLEX INTEGRATION +------------------------------------------------------------------------------ +Q. What if the engine is blending into RGB before wanting to run FXAA? + +A. In the last opaque pass prior to FXAA, +have the pass write out luma into alpha. +Then blend into RGB only. +FXAA should be able to run ok +assuming the blending pass did not any add aliasing. +This should be the common case for particles and common blending passes. + +A. Or use FXAA_GREEN_AS_LUMA. + +============================================================================*/ + +/*============================================================================ + +INTEGRATION KNOBS + +============================================================================*/ +// +// FXAA_PS3 and FXAA_360 choose the console algorithm (FXAA3 CONSOLE). +// FXAA_360_OPT is a prototype for the new optimized 360 version. +// +// 1 = Use API. +// 0 = Don't use API. +// +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_PS3 +#define FXAA_PS3 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_360 +#define FXAA_360 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_360_OPT +#define FXAA_360_OPT 0 +#endif +/*==========================================================================*/ +#ifndef FXAA_PC +// +// FXAA Quality +// The high quality PC algorithm. +// +#define FXAA_PC 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_PC_CONSOLE +// +// The console algorithm for PC is included +// for developers targeting really low spec machines. +// Likely better to just run FXAA_PC, and use a really low preset. +// +#define FXAA_PC_CONSOLE 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GLSL_120 +#define FXAA_GLSL_120 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GLSL_130 +#define FXAA_GLSL_130 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_3 +#define FXAA_HLSL_3 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_4 +#define FXAA_HLSL_4 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_5 +#define FXAA_HLSL_5 0 +#endif +/*==========================================================================*/ +#ifndef FXAA_GREEN_AS_LUMA +// +// For those using non-linear color, +// and either not able to get luma in alpha, or not wanting to, +// this enables FXAA to run using green as a proxy for luma. +// So with this enabled, no need to pack luma in alpha. +// +// This will turn off AA on anything which lacks some amount of green. +// Pure red and blue or combination of only R and B, will get no AA. +// +// Might want to lower the settings for both, +// fxaaConsoleEdgeThresholdMin +// fxaaQualityEdgeThresholdMin +// In order to insure AA does not get turned off on colors +// which contain a minor amount of green. +// +// 1 = On. +// 0 = Off. +// +#define FXAA_GREEN_AS_LUMA 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_EARLY_EXIT +// +// Controls algorithm's early exit path. +// On PS3 turning this ON adds 2 cycles to the shader. +// On 360 turning this OFF adds 10ths of a millisecond to the shader. +// Turning this off on console will result in a more blurry image. +// So this defaults to on. +// +// 1 = On. +// 0 = Off. +// +#define FXAA_EARLY_EXIT 1 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_DISCARD +// +// Only valid for PC OpenGL currently. +// Probably will not work when FXAA_GREEN_AS_LUMA = 1. +// +// 1 = Use discard on pixels which don't need AA. +// For APIs which enable concurrent TEX+ROP from same surface. +// 0 = Return unchanged color on pixels which don't need AA. +// +#define FXAA_DISCARD 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_FAST_PIXEL_OFFSET +// +// Used for GLSL 120 only. +// +// 1 = GL API supports fast pixel offsets +// 0 = do not use fast pixel offsets +// +#ifdef GL_EXT_gpu_shader4 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifdef GL_NV_gpu_shader5 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifdef GL_ARB_gpu_shader5 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifndef FXAA_FAST_PIXEL_OFFSET +#define FXAA_FAST_PIXEL_OFFSET 0 +#endif +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GATHER4_ALPHA +// +// 1 = API supports gather4 on alpha channel. +// 0 = API does not support gather4 on alpha channel. +// +#if (FXAA_HLSL_5 == 1) +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifdef GL_ARB_gpu_shader5 +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifdef GL_NV_gpu_shader5 +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifndef FXAA_GATHER4_ALPHA +#define FXAA_GATHER4_ALPHA 0 +#endif +#endif + +/*============================================================================ +FXAA CONSOLE PS3 - TUNING KNOBS +============================================================================*/ +#ifndef FXAA_CONSOLE__PS3_EDGE_SHARPNESS +// +// Consoles the sharpness of edges on PS3 only. +// Non-PS3 tuning is done with shader input. +// +// Due to the PS3 being ALU bound, +// there are only two safe values here: 4 and 8. +// These options use the shaders ability to a free *|/ by 2|4|8. +// +// 8.0 is sharper +// 4.0 is softer +// 2.0 is really soft (good for vector graphics inputs) +// +#if 1 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 8.0 +#endif +#if 0 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 4.0 +#endif +#if 0 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 2.0 +#endif +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_CONSOLE__PS3_EDGE_THRESHOLD +// +// Only effects PS3. +// Non-PS3 tuning is done with shader input. +// +// The minimum amount of local contrast required to apply algorithm. +// The console setting has a different mapping than the quality setting. +// +// This only applies when FXAA_EARLY_EXIT is 1. +// +// Due to the PS3 being ALU bound, +// there are only two safe values here: 0.25 and 0.125. +// These options use the shaders ability to a free *|/ by 2|4|8. +// +// 0.125 leaves less aliasing, but is softer +// 0.25 leaves more aliasing, and is sharper +// +#if 1 +#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.125 +#else +#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.25 +#endif +#endif + +/*============================================================================ +FXAA QUALITY - TUNING KNOBS +------------------------------------------------------------------------------ +NOTE the other tuning knobs are now in the shader function inputs! +============================================================================*/ +#ifndef FXAA_QUALITY__PRESET +// +// Choose the quality preset. +// This needs to be compiled into the shader as it effects code. +// Best option to include multiple presets is to +// in each shader define the preset, then include this file. +// +// OPTIONS +// ----------------------------------------------------------------------- +// 10 to 15 - default medium dither (10=fastest, 15=highest quality) +// 20 to 29 - less dither, more expensive (20=fastest, 29=highest quality) +// 39 - no dither, very expensive +// +// NOTES +// ----------------------------------------------------------------------- +// 12 = slightly faster then FXAA 3.9 and higher edge quality (default) +// 13 = about same speed as FXAA 3.9 and better than 12 +// 23 = closest to FXAA 3.9 visually and performance wise +// _ = the lowest digit is directly related to performance +// _ = the highest digit is directly related to style +// +#define FXAA_QUALITY__PRESET 12 +#endif + + +/*============================================================================ + +FXAA QUALITY - PRESETS + +============================================================================*/ + +/*============================================================================ +FXAA QUALITY - MEDIUM DITHER PRESETS +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 10) +#define FXAA_QUALITY__PS 3 +#define FXAA_QUALITY__P0 1.5 +#define FXAA_QUALITY__P1 3.0 +#define FXAA_QUALITY__P2 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 11) +#define FXAA_QUALITY__PS 4 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 3.0 +#define FXAA_QUALITY__P3 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 12) +#define FXAA_QUALITY__PS 5 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 4.0 +#define FXAA_QUALITY__P4 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 13) +#define FXAA_QUALITY__PS 6 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 4.0 +#define FXAA_QUALITY__P5 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 14) +#define FXAA_QUALITY__PS 7 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 4.0 +#define FXAA_QUALITY__P6 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 15) +#define FXAA_QUALITY__PS 8 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 4.0 +#define FXAA_QUALITY__P7 12.0 +#endif + +/*============================================================================ +FXAA QUALITY - LOW DITHER PRESETS +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 20) +#define FXAA_QUALITY__PS 3 +#define FXAA_QUALITY__P0 1.5 +#define FXAA_QUALITY__P1 2.0 +#define FXAA_QUALITY__P2 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 21) +#define FXAA_QUALITY__PS 4 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 22) +#define FXAA_QUALITY__PS 5 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 23) +#define FXAA_QUALITY__PS 6 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 24) +#define FXAA_QUALITY__PS 7 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 3.0 +#define FXAA_QUALITY__P6 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 25) +#define FXAA_QUALITY__PS 8 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 4.0 +#define FXAA_QUALITY__P7 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 26) +#define FXAA_QUALITY__PS 9 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 4.0 +#define FXAA_QUALITY__P8 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 27) +#define FXAA_QUALITY__PS 10 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 4.0 +#define FXAA_QUALITY__P9 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 28) +#define FXAA_QUALITY__PS 11 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 4.0 +#define FXAA_QUALITY__P10 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 29) +#define FXAA_QUALITY__PS 12 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 2.0 +#define FXAA_QUALITY__P10 4.0 +#define FXAA_QUALITY__P11 8.0 +#endif + +/*============================================================================ +FXAA QUALITY - EXTREME QUALITY +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 39) +#define FXAA_QUALITY__PS 12 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.0 +#define FXAA_QUALITY__P2 1.0 +#define FXAA_QUALITY__P3 1.0 +#define FXAA_QUALITY__P4 1.0 +#define FXAA_QUALITY__P5 1.5 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 2.0 +#define FXAA_QUALITY__P10 4.0 +#define FXAA_QUALITY__P11 8.0 +#endif + + + +/*============================================================================ + +API PORTING + +============================================================================*/ +#if (FXAA_GLSL_120 == 1) || (FXAA_GLSL_130 == 1) +#define FxaaBool bool +#define FxaaDiscard discard +#define FxaaFloat float +#define FxaaFloat2 vec2 +#define FxaaFloat3 vec3 +#define FxaaFloat4 vec4 +#define FxaaHalf float +#define FxaaHalf2 vec2 +#define FxaaHalf3 vec3 +#define FxaaHalf4 vec4 +#define FxaaInt2 ivec2 +#define FxaaSat(x) clamp(x, 0.0, 1.0) +#define FxaaTex sampler2D +#else +#define FxaaBool bool +#define FxaaDiscard clip(-1) +#define FxaaFloat float +#define FxaaFloat2 float2 +#define FxaaFloat3 float3 +#define FxaaFloat4 float4 +#define FxaaHalf half +#define FxaaHalf2 half2 +#define FxaaHalf3 half3 +#define FxaaHalf4 half4 +#define FxaaSat(x) saturate(x) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_GLSL_120 == 1) +// Requires, +// #version 120 +// And at least, +// #extension GL_EXT_gpu_shader4 : enable +// (or set FXAA_FAST_PIXEL_OFFSET 1 to work like DX9) +#define FxaaTexTop(t, p) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) +#if (FXAA_FAST_PIXEL_OFFSET == 1) +#define FxaaTexOff(t, p, o, r) texture2DLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#else +#define FxaaTexOff(t, p, o, r) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p + (o * r)), 0.0) +#endif +#if (FXAA_GATHER4_ALPHA == 1) +// use #extension GL_ARB_gpu_shader5 : enable +#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) +#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) +#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) +#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) +#endif +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_GLSL_130 == 1) +// Requires "#version 130" or better +#define FxaaTexTop(t, p) textureLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) textureLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#if (FXAA_GATHER4_ALPHA == 1) +// use #extension GL_ARB_gpu_shader5 : enable +#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) +#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) +#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) +#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) +#endif +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_3 == 1) || (FXAA_360 == 1) || (FXAA_PS3 == 1) +#define FxaaInt2 float2 +#define FxaaTex sampler2D +#define FxaaTexTop(t, p) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p), 0.0, 0.0)) +#define FxaaTexOff(t, p, o, r) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p + (o * r)), 0, 0)) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_4 == 1) +#define FxaaInt2 int2 +struct FxaaTex { SamplerState smpl; Texture2D tex; }; +#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_5 == 1) +#define FxaaInt2 int2 +struct FxaaTex { SamplerState smpl; Texture2D tex; }; +#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#define FxaaTexAlpha4(t, p) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p)) +#define FxaaTexOffAlpha4(t, p, o) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) +#define FxaaTexGreen4(t, p) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p)) +#define FxaaTexOffGreen4(t, p, o) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) +#endif + + +/*============================================================================ +GREEN AS LUMA OPTION SUPPORT FUNCTION +============================================================================*/ +#if (FXAA_GREEN_AS_LUMA == 0) +FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.w; } +#else +FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.y; } +#endif + + + + +/*============================================================================ + +FXAA3 QUALITY - PC + +============================================================================*/ +#if (FXAA_PC == 1) +/*--------------------------------------------------------------------------*/ +FxaaFloat4 FxaaPixelShader( + // + // Use noperspective interpolation here (turn off perspective interpolation). + // {xy} = center of pixel + FxaaFloat2 pos, + // + // Used only for FXAA Console, and not used on the 360 version. + // Use noperspective interpolation here (turn off perspective interpolation). + // {xy__} = upper left of pixel + // {__zw} = lower right of pixel + FxaaFloat4 fxaaConsolePosPos, + // + // Input color texture. + // {rgb_} = color in linear or perceptual color space + // if (FXAA_GREEN_AS_LUMA == 0) + // {___a} = luma in perceptual color space (not linear) + FxaaTex tex, + // + // Only used on the optimized 360 version of FXAA Console. + // For everything but 360, just use the same input here as for "tex". + // For 360, same texture, just alias with a 2nd sampler. + // This sampler needs to have an exponent bias of -1. + FxaaTex fxaaConsole360TexExpBiasNegOne, + // + // Only used on the optimized 360 version of FXAA Console. + // For everything but 360, just use the same input here as for "tex". + // For 360, same texture, just alias with a 3nd sampler. + // This sampler needs to have an exponent bias of -2. + FxaaTex fxaaConsole360TexExpBiasNegTwo, + // + // Only used on FXAA Quality. + // This must be from a constant/uniform. + // {x_} = 1.0/screenWidthInPixels + // {_y} = 1.0/screenHeightInPixels + FxaaFloat2 fxaaQualityRcpFrame, + // + // Only used on FXAA Console. + // This must be from a constant/uniform. + // This effects sub-pixel AA quality and inversely sharpness. + // Where N ranges between, + // N = 0.50 (default) + // N = 0.33 (sharper) + // {x___} = -N/screenWidthInPixels + // {_y__} = -N/screenHeightInPixels + // {__z_} = N/screenWidthInPixels + // {___w} = N/screenHeightInPixels + FxaaFloat4 fxaaConsoleRcpFrameOpt, + // + // Only used on FXAA Console. + // Not used on 360, but used on PS3 and PC. + // This must be from a constant/uniform. + // {x___} = -2.0/screenWidthInPixels + // {_y__} = -2.0/screenHeightInPixels + // {__z_} = 2.0/screenWidthInPixels + // {___w} = 2.0/screenHeightInPixels + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + // + // Only used on FXAA Console. + // Only used on 360 in place of fxaaConsoleRcpFrameOpt2. + // This must be from a constant/uniform. + // {x___} = 8.0/screenWidthInPixels + // {_y__} = 8.0/screenHeightInPixels + // {__z_} = -4.0/screenWidthInPixels + // {___w} = -4.0/screenHeightInPixels + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__SUBPIX define. + // It is here now to allow easier tuning. + // Choose the amount of sub-pixel aliasing removal. + // This can effect sharpness. + // 1.00 - upper limit (softer) + // 0.75 - default amount of filtering + // 0.50 - lower limit (sharper, less sub-pixel aliasing removal) + // 0.25 - almost off + // 0.00 - completely off + FxaaFloat fxaaQualitySubpix, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__EDGE_THRESHOLD define. + // It is here now to allow easier tuning. + // The minimum amount of local contrast required to apply algorithm. + // 0.333 - too little (faster) + // 0.250 - low quality + // 0.166 - default + // 0.125 - high quality + // 0.063 - overkill (slower) + FxaaFloat fxaaQualityEdgeThreshold, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__EDGE_THRESHOLD_MIN define. + // It is here now to allow easier tuning. + // Trims the algorithm from processing darks. + // 0.0833 - upper limit (default, the start of visible unfiltered edges) + // 0.0625 - high quality (faster) + // 0.0312 - visible limit (slower) + // Special notes when using FXAA_GREEN_AS_LUMA, + // Likely want to set this to zero. + // As colors that are mostly not-green + // will appear very dark in the green channel! + // Tune by looking at mostly non-green content, + // then start at zero and increase until aliasing is a problem. + FxaaFloat fxaaQualityEdgeThresholdMin, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_SHARPNESS define. + // It is here now to allow easier tuning. + // This does not effect PS3, as this needs to be compiled in. + // Use FXAA_CONSOLE__PS3_EDGE_SHARPNESS for PS3. + // Due to the PS3 being ALU bound, + // there are only three safe values here: 2 and 4 and 8. + // These options use the shaders ability to a free *|/ by 2|4|8. + // For all other platforms can be a non-power of two. + // 8.0 is sharper (default!!!) + // 4.0 is softer + // 2.0 is really soft (good only for vector graphics inputs) + FxaaFloat fxaaConsoleEdgeSharpness, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD define. + // It is here now to allow easier tuning. + // This does not effect PS3, as this needs to be compiled in. + // Use FXAA_CONSOLE__PS3_EDGE_THRESHOLD for PS3. + // Due to the PS3 being ALU bound, + // there are only two safe values here: 1/4 and 1/8. + // These options use the shaders ability to a free *|/ by 2|4|8. + // The console setting has a different mapping than the quality setting. + // Other platforms can use other values. + // 0.125 leaves less aliasing, but is softer (default!!!) + // 0.25 leaves more aliasing, and is sharper + FxaaFloat fxaaConsoleEdgeThreshold, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD_MIN define. + // It is here now to allow easier tuning. + // Trims the algorithm from processing darks. + // The console setting has a different mapping than the quality setting. + // This only applies when FXAA_EARLY_EXIT is 1. + // This does not apply to PS3, + // PS3 was simplified to avoid more shader instructions. + // 0.06 - faster but more aliasing in darks + // 0.05 - default + // 0.04 - slower and less aliasing in darks + // Special notes when using FXAA_GREEN_AS_LUMA, + // Likely want to set this to zero. + // As colors that are mostly not-green + // will appear very dark in the green channel! + // Tune by looking at mostly non-green content, + // then start at zero and increase until aliasing is a problem. + FxaaFloat fxaaConsoleEdgeThresholdMin, + // + // Extra constants for 360 FXAA Console only. + // Use zeros or anything else for other platforms. + // These must be in physical constant registers and NOT immedates. + // Immedates will result in compiler un-optimizing. + // {xyzw} = float4(1.0, -1.0, 0.25, -0.25) + FxaaFloat4 fxaaConsole360ConstDir +) { + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posM; + posM.x = pos.x; + posM.y = pos.y; +#if (FXAA_GATHER4_ALPHA == 1) +#if (FXAA_DISCARD == 0) + FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); +#if (FXAA_GREEN_AS_LUMA == 0) +#define lumaM rgbyM.w +#else +#define lumaM rgbyM.y +#endif +#endif +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaFloat4 luma4A = FxaaTexAlpha4(tex, posM); + FxaaFloat4 luma4B = FxaaTexOffAlpha4(tex, posM, FxaaInt2(-1, -1)); +#else + FxaaFloat4 luma4A = FxaaTexGreen4(tex, posM); + FxaaFloat4 luma4B = FxaaTexOffGreen4(tex, posM, FxaaInt2(-1, -1)); +#endif +#if (FXAA_DISCARD == 1) +#define lumaM luma4A.w +#endif +#define lumaE luma4A.z +#define lumaS luma4A.x +#define lumaSE luma4A.y +#define lumaNW luma4B.w +#define lumaN luma4B.z +#define lumaW luma4B.x +#else + FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); +#if (FXAA_GREEN_AS_LUMA == 0) +#define lumaM rgbyM.w +#else +#define lumaM rgbyM.y +#endif + FxaaFloat lumaS = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, 1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 0), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaN = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 0), fxaaQualityRcpFrame.xy)); +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat maxSM = max(lumaS, lumaM); + FxaaFloat minSM = min(lumaS, lumaM); + FxaaFloat maxESM = max(lumaE, maxSM); + FxaaFloat minESM = min(lumaE, minSM); + FxaaFloat maxWN = max(lumaN, lumaW); + FxaaFloat minWN = min(lumaN, lumaW); + FxaaFloat rangeMax = max(maxWN, maxESM); + FxaaFloat rangeMin = min(minWN, minESM); + FxaaFloat rangeMaxScaled = rangeMax * fxaaQualityEdgeThreshold; + FxaaFloat range = rangeMax - rangeMin; + FxaaFloat rangeMaxClamped = max(fxaaQualityEdgeThresholdMin, rangeMaxScaled); + FxaaBool earlyExit = range < rangeMaxClamped; + /*--------------------------------------------------------------------------*/ + if (earlyExit) +#if (FXAA_DISCARD == 1) + FxaaDiscard; +#else + return rgbyM; +#endif + /*--------------------------------------------------------------------------*/ +#if (FXAA_GATHER4_ALPHA == 0) + FxaaFloat lumaNW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); +#else + FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNS = lumaN + lumaS; + FxaaFloat lumaWE = lumaW + lumaE; + FxaaFloat subpixRcpRange = 1.0 / range; + FxaaFloat subpixNSWE = lumaNS + lumaWE; + FxaaFloat edgeHorz1 = (-2.0 * lumaM) + lumaNS; + FxaaFloat edgeVert1 = (-2.0 * lumaM) + lumaWE; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNESE = lumaNE + lumaSE; + FxaaFloat lumaNWNE = lumaNW + lumaNE; + FxaaFloat edgeHorz2 = (-2.0 * lumaE) + lumaNESE; + FxaaFloat edgeVert2 = (-2.0 * lumaN) + lumaNWNE; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNWSW = lumaNW + lumaSW; + FxaaFloat lumaSWSE = lumaSW + lumaSE; + FxaaFloat edgeHorz4 = (abs(edgeHorz1) * 2.0) + abs(edgeHorz2); + FxaaFloat edgeVert4 = (abs(edgeVert1) * 2.0) + abs(edgeVert2); + FxaaFloat edgeHorz3 = (-2.0 * lumaW) + lumaNWSW; + FxaaFloat edgeVert3 = (-2.0 * lumaS) + lumaSWSE; + FxaaFloat edgeHorz = abs(edgeHorz3) + edgeHorz4; + FxaaFloat edgeVert = abs(edgeVert3) + edgeVert4; + /*--------------------------------------------------------------------------*/ + FxaaFloat subpixNWSWNESE = lumaNWSW + lumaNESE; + FxaaFloat lengthSign = fxaaQualityRcpFrame.x; + FxaaBool horzSpan = edgeHorz >= edgeVert; + FxaaFloat subpixA = subpixNSWE * 2.0 + subpixNWSWNESE; + /*--------------------------------------------------------------------------*/ + if (!horzSpan) lumaN = lumaW; + if (!horzSpan) lumaS = lumaE; + if (horzSpan) lengthSign = fxaaQualityRcpFrame.y; + FxaaFloat subpixB = (subpixA * (1.0 / 12.0)) - lumaM; + /*--------------------------------------------------------------------------*/ + FxaaFloat gradientN = lumaN - lumaM; + FxaaFloat gradientS = lumaS - lumaM; + FxaaFloat lumaNN = lumaN + lumaM; + FxaaFloat lumaSS = lumaS + lumaM; + FxaaBool pairN = abs(gradientN) >= abs(gradientS); + FxaaFloat gradient = max(abs(gradientN), abs(gradientS)); + if (pairN) lengthSign = -lengthSign; + FxaaFloat subpixC = FxaaSat(abs(subpixB) * subpixRcpRange); + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posB; + posB.x = posM.x; + posB.y = posM.y; + FxaaFloat2 offNP; + offNP.x = (!horzSpan) ? 0.0 : fxaaQualityRcpFrame.x; + offNP.y = (horzSpan) ? 0.0 : fxaaQualityRcpFrame.y; + if (!horzSpan) posB.x += lengthSign * 0.5; + if (horzSpan) posB.y += lengthSign * 0.5; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posN; + posN.x = posB.x - offNP.x * FXAA_QUALITY__P0; + posN.y = posB.y - offNP.y * FXAA_QUALITY__P0; + FxaaFloat2 posP; + posP.x = posB.x + offNP.x * FXAA_QUALITY__P0; + posP.y = posB.y + offNP.y * FXAA_QUALITY__P0; + FxaaFloat subpixD = ((-2.0)*subpixC) + 3.0; + FxaaFloat lumaEndN = FxaaLuma(FxaaTexTop(tex, posN)); + FxaaFloat subpixE = subpixC * subpixC; + FxaaFloat lumaEndP = FxaaLuma(FxaaTexTop(tex, posP)); + /*--------------------------------------------------------------------------*/ + if (!pairN) lumaNN = lumaSS; + FxaaFloat gradientScaled = gradient * 1.0 / 4.0; + FxaaFloat lumaMM = lumaM - lumaNN * 0.5; + FxaaFloat subpixF = subpixD * subpixE; + FxaaBool lumaMLTZero = lumaMM < 0.0; + /*--------------------------------------------------------------------------*/ + lumaEndN -= lumaNN * 0.5; + lumaEndP -= lumaNN * 0.5; + FxaaBool doneN = abs(lumaEndN) >= gradientScaled; + FxaaBool doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P1; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P1; + FxaaBool doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P1; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P1; + /*--------------------------------------------------------------------------*/ + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P2; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P2; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P2; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P2; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 3) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P3; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P3; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P3; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P3; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 4) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P4; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P4; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P4; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P4; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 5) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P5; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P5; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P5; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P5; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 6) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P6; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P6; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P6; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P6; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 7) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P7; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P7; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P7; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P7; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 8) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P8; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P8; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P8; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P8; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 9) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P9; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P9; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P9; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P9; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 10) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P10; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P10; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P10; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P10; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 11) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P11; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P11; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P11; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P11; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 12) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P12; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P12; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P12; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P12; + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } + /*--------------------------------------------------------------------------*/ + FxaaFloat dstN = posM.x - posN.x; + FxaaFloat dstP = posP.x - posM.x; + if (!horzSpan) dstN = posM.y - posN.y; + if (!horzSpan) dstP = posP.y - posM.y; + /*--------------------------------------------------------------------------*/ + FxaaBool goodSpanN = (lumaEndN < 0.0) != lumaMLTZero; + FxaaFloat spanLength = (dstP + dstN); + FxaaBool goodSpanP = (lumaEndP < 0.0) != lumaMLTZero; + FxaaFloat spanLengthRcp = 1.0 / spanLength; + /*--------------------------------------------------------------------------*/ + FxaaBool directionN = dstN < dstP; + FxaaFloat dst = min(dstN, dstP); + FxaaBool goodSpan = directionN ? goodSpanN : goodSpanP; + FxaaFloat subpixG = subpixF * subpixF; + FxaaFloat pixelOffset = (dst * (-spanLengthRcp)) + 0.5; + FxaaFloat subpixH = subpixG * fxaaQualitySubpix; + /*--------------------------------------------------------------------------*/ + FxaaFloat pixelOffsetGood = goodSpan ? pixelOffset : 0.0; + FxaaFloat pixelOffsetSubpix = max(pixelOffsetGood, subpixH); + if (!horzSpan) posM.x += pixelOffsetSubpix * lengthSign; + if (horzSpan) posM.y += pixelOffsetSubpix * lengthSign; +#if (FXAA_DISCARD == 1) + return FxaaTexTop(tex, posM); +#else + return FxaaFloat4(FxaaTexTop(tex, posM).xyz, lumaM); +#endif +} +/*==========================================================================*/ +#endif + + + + +/*============================================================================ + +FXAA3 CONSOLE - PC VERSION + +------------------------------------------------------------------------------ +Instead of using this on PC, I'd suggest just using FXAA Quality with +#define FXAA_QUALITY__PRESET 10 +Or +#define FXAA_QUALITY__PRESET 20 +Either are higher qualilty and almost as fast as this on modern PC GPUs. +============================================================================*/ +#if (FXAA_PC_CONSOLE == 1) +/*--------------------------------------------------------------------------*/ +FxaaFloat4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xy)); + FxaaFloat lumaSw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xw)); + FxaaFloat lumaNe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zy)); + FxaaFloat lumaSe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zw)); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyM = FxaaTexTop(tex, pos.xy); +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaFloat lumaM = rgbyM.w; +#else + FxaaFloat lumaM = rgbyM.y; +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxNwSw = max(lumaNw, lumaSw); + lumaNe += 1.0 / 384.0; + FxaaFloat lumaMinNwSw = min(lumaNw, lumaSw); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxNeSe = max(lumaNe, lumaSe); + FxaaFloat lumaMinNeSe = min(lumaNe, lumaSe); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMax = max(lumaMaxNeSe, lumaMaxNwSw); + FxaaFloat lumaMin = min(lumaMinNeSe, lumaMinNwSw); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxScaled = lumaMax * fxaaConsoleEdgeThreshold; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMinM = min(lumaMin, lumaM); + FxaaFloat lumaMaxScaledClamped = max(fxaaConsoleEdgeThresholdMin, lumaMaxScaled); + FxaaFloat lumaMaxM = max(lumaMax, lumaM); + FxaaFloat dirSwMinusNe = lumaSw - lumaNe; + FxaaFloat lumaMaxSubMinM = lumaMaxM - lumaMinM; + FxaaFloat dirSeMinusNw = lumaSe - lumaNw; + if (lumaMaxSubMinM < lumaMaxScaledClamped) return rgbyM; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 dir; + dir.x = dirSwMinusNe + dirSeMinusNw; + dir.y = dirSwMinusNe - dirSeMinusNw; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 dir1 = normalize(dir.xy); + FxaaFloat4 rgbyN1 = FxaaTexTop(tex, pos.xy - dir1 * fxaaConsoleRcpFrameOpt.zw); + FxaaFloat4 rgbyP1 = FxaaTexTop(tex, pos.xy + dir1 * fxaaConsoleRcpFrameOpt.zw); + /*--------------------------------------------------------------------------*/ + FxaaFloat dirAbsMinTimesC = min(abs(dir1.x), abs(dir1.y)) * fxaaConsoleEdgeSharpness; + FxaaFloat2 dir2 = clamp(dir1.xy / dirAbsMinTimesC, -2.0, 2.0); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyN2 = FxaaTexTop(tex, pos.xy - dir2 * fxaaConsoleRcpFrameOpt2.zw); + FxaaFloat4 rgbyP2 = FxaaTexTop(tex, pos.xy + dir2 * fxaaConsoleRcpFrameOpt2.zw); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyA = rgbyN1 + rgbyP1; + FxaaFloat4 rgbyB = ((rgbyN2 + rgbyP2) * 0.25) + (rgbyA * 0.25); + /*--------------------------------------------------------------------------*/ +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaBool twoTap = (rgbyB.w < lumaMin) || (rgbyB.w > lumaMax); +#else + FxaaBool twoTap = (rgbyB.y < lumaMin) || (rgbyB.y > lumaMax); +#endif + if (twoTap) rgbyB.xyz = rgbyA.xyz * 0.5; + return rgbyB; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - 360 PIXEL SHADER + +------------------------------------------------------------------------------ +This optimized version thanks to suggestions from Andy Luedke. +Should be fully tex bound in all cases. +As of the FXAA 3.11 release, I have still not tested this code, +however I fixed a bug which was in both FXAA 3.9 and FXAA 3.10. +And note this is replacing the old unoptimized version. +If it does not work, please let me know so I can fix it. +============================================================================*/ +#if (FXAA_360 == 1) +/*--------------------------------------------------------------------------*/ +[reduceTempRegUsage(4)] +float4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + float4 lumaNwNeSwSe; +#if (FXAA_GREEN_AS_LUMA == 0) + asm + { + tfetch2D lumaNwNeSwSe.w___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe._w__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.__w_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.___w, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false + }; +#else + asm + { + tfetch2D lumaNwNeSwSe.y___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe._y__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.__y_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.___y, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false + }; +#endif + /*--------------------------------------------------------------------------*/ + lumaNwNeSwSe.y += 1.0 / 384.0; + float2 lumaMinTemp = min(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); + float2 lumaMaxTemp = max(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); + float lumaMin = min(lumaMinTemp.x, lumaMinTemp.y); + float lumaMax = max(lumaMaxTemp.x, lumaMaxTemp.y); + /*--------------------------------------------------------------------------*/ + float4 rgbyM = tex2Dlod(tex, float4(pos.xy, 0.0, 0.0)); +#if (FXAA_GREEN_AS_LUMA == 0) + float lumaMinM = min(lumaMin, rgbyM.w); + float lumaMaxM = max(lumaMax, rgbyM.w); +#else + float lumaMinM = min(lumaMin, rgbyM.y); + float lumaMaxM = max(lumaMax, rgbyM.y); +#endif + if ((lumaMaxM - lumaMinM) < max(fxaaConsoleEdgeThresholdMin, lumaMax * fxaaConsoleEdgeThreshold)) return rgbyM; + /*--------------------------------------------------------------------------*/ + float2 dir; + dir.x = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.yyxx); + dir.y = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.xyxy); + dir = normalize(dir); + /*--------------------------------------------------------------------------*/ + float4 dir1 = dir.xyxy * fxaaConsoleRcpFrameOpt.xyzw; + /*--------------------------------------------------------------------------*/ + float4 dir2; + float dirAbsMinTimesC = min(abs(dir.x), abs(dir.y)) * fxaaConsoleEdgeSharpness; + dir2 = saturate(fxaaConsole360ConstDir.zzww * dir.xyxy / dirAbsMinTimesC + 0.5); + dir2 = dir2 * fxaaConsole360RcpFrameOpt2.xyxy + fxaaConsole360RcpFrameOpt2.zwzw; + /*--------------------------------------------------------------------------*/ + float4 rgbyN1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.xy, 0.0, 0.0)); + float4 rgbyP1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.zw, 0.0, 0.0)); + float4 rgbyN2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.xy, 0.0, 0.0)); + float4 rgbyP2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.zw, 0.0, 0.0)); + /*--------------------------------------------------------------------------*/ + float4 rgbyA = rgbyN1 + rgbyP1; + float4 rgbyB = rgbyN2 + rgbyP2 + rgbyA * 0.5; + /*--------------------------------------------------------------------------*/ + float4 rgbyR = ((FxaaLuma(rgbyB) - lumaMax) > 0.0) ? rgbyA : rgbyB; + rgbyR = ((FxaaLuma(rgbyB) - lumaMin) > 0.0) ? rgbyR : rgbyA; + return rgbyR; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (NO EARLY EXIT) + +============================================================================== +The code below does not exactly match the assembly. +I have a feeling that 12 cycles is possible, but was not able to get there. +Might have to increase register count to get full performance. +Note this shader does not use perspective interpolation. + +Use the following cgc options, + +--fenable-bx2 --fastmath --fastprecision --nofloatbindings + +------------------------------------------------------------------------------ +NVSHADERPERF OUTPUT +------------------------------------------------------------------------------ +For reference and to aid in debug, output of NVShaderPerf should match this, + +Shader to schedule: +0: texpkb h0.w(TRUE), v5.zyxx, #0 +2: addh h2.z(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x +4: texpkb h0.w(TRUE), v5.xwxx, #0 +6: addh h0.z(TRUE), -h2, h0.w +7: texpkb h1.w(TRUE), v5, #0 +9: addh h0.x(TRUE), h0.z, -h1.w +10: addh h3.w(TRUE), h0.z, h1 +11: texpkb h2.w(TRUE), v5.zwzz, #0 +13: addh h0.z(TRUE), h3.w, -h2.w +14: addh h0.x(TRUE), h2.w, h0 +15: nrmh h1.xz(TRUE), h0_n +16: minh_m8 h0.x(TRUE), |h1|, |h1.z| +17: maxh h4.w(TRUE), h0, h1 +18: divx h2.xy(TRUE), h1_n.xzzw, h0_n +19: movr r1.zw(TRUE), v4.xxxy +20: madr r2.xz(TRUE), -h1, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zzww, r1.zzww +22: minh h5.w(TRUE), h0, h1 +23: texpkb h0(TRUE), r2.xzxx, #0 +25: madr r0.zw(TRUE), h1.xzxz, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w), r1 +27: maxh h4.x(TRUE), h2.z, h2.w +28: texpkb h1(TRUE), r0.zwzz, #0 +30: addh_d2 h1(TRUE), h0, h1 +31: madr r0.xy(TRUE), -h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +33: texpkb h0(TRUE), r0, #0 +35: minh h4.z(TRUE), h2, h2.w +36: fenct TRUE +37: madr r1.xy(TRUE), h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +39: texpkb h2(TRUE), r1, #0 +41: addh_d2 h0(TRUE), h0, h2 +42: maxh h2.w(TRUE), h4, h4.x +43: minh h2.x(TRUE), h5.w, h4.z +44: addh_d2 h0(TRUE), h0, h1 +45: slth h2.x(TRUE), h0.w, h2 +46: sgth h2.w(TRUE), h0, h2 +47: movh h0(TRUE), h0 +48: addx.c0 rc(TRUE), h2, h2.w +49: movh h0(c0.NE.x), h1 + +IPU0 ------ Simplified schedule: -------- +Pass | Unit | uOp | PC: Op +-----+--------+------+------------------------- +1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| SCB1 | add | 2: ADDh h2.z, h0.--w-, const.--x-; +| | | +2 | SCT0/1 | mov | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; +| TEX | txl | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; +| SCB1 | add | 6: ADDh h0.z,-h2, h0.--w-; +| | | +3 | SCT0/1 | mov | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; +| TEX | txl | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; +| SCB0 | add | 9: ADDh h0.x, h0.z---,-h1.w---; +| SCB1 | add | 10: ADDh h3.w, h0.---z, h1; +| | | +4 | SCT0/1 | mov | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| TEX | txl | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| SCB0 | add | 14: ADDh h0.x, h2.w---, h0; +| SCB1 | add | 13: ADDh h0.z, h3.--w-,-h2.--w-; +| | | +5 | SCT1 | mov | 15: NRMh h1.xz, h0; +| SRB | nrm | 15: NRMh h1.xz, h0; +| SCB0 | min | 16: MINh*8 h0.x, |h1|, |h1.z---|; +| SCB1 | max | 17: MAXh h4.w, h0, h1; +| | | +6 | SCT0 | div | 18: DIVx h2.xy, h1.xz--, h0; +| SCT1 | mov | 19: MOVr r1.zw, g[TEX0].--xy; +| SCB0 | mad | 20: MADr r2.xz,-h1, const.z-w-, r1.z-w-; +| SCB1 | min | 22: MINh h5.w, h0, h1; +| | | +7 | SCT0/1 | mov | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; +| TEX | txl | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; +| SCB0 | max | 27: MAXh h4.x, h2.z---, h2.w---; +| SCB1 | mad | 25: MADr r0.zw, h1.--xz, const, r1; +| | | +8 | SCT0/1 | mov | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; +| TEX | txl | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; +| SCB0/1 | add | 30: ADDh/2 h1, h0, h1; +| | | +9 | SCT0 | mad | 31: MADr r0.xy,-h2, const.xy--, r1.zw--; +| SCT1 | mov | 33: TXLr h0, r0, const.zzzz, TEX0; +| TEX | txl | 33: TXLr h0, r0, const.zzzz, TEX0; +| SCB1 | min | 35: MINh h4.z, h2, h2.--w-; +| | | +10 | SCT0 | mad | 37: MADr r1.xy, h2, const.xy--, r1.zw--; +| SCT1 | mov | 39: TXLr h2, r1, const.zzzz, TEX0; +| TEX | txl | 39: TXLr h2, r1, const.zzzz, TEX0; +| SCB0/1 | add | 41: ADDh/2 h0, h0, h2; +| | | +11 | SCT0 | min | 43: MINh h2.x, h5.w---, h4.z---; +| SCT1 | max | 42: MAXh h2.w, h4, h4.---x; +| SCB0/1 | add | 44: ADDh/2 h0, h0, h1; +| | | +12 | SCT0 | set | 45: SLTh h2.x, h0.w---, h2; +| SCT1 | set | 46: SGTh h2.w, h0, h2; +| SCB0/1 | mul | 47: MOVh h0, h0; +| | | +13 | SCT0 | mad | 48: ADDxc0_s rc, h2, h2.w---; +| SCB0/1 | mul | 49: MOVh h0(NE0.xxxx), h1; + +Pass SCT TEX SCB +1: 0% 100% 25% +2: 0% 100% 25% +3: 0% 100% 50% +4: 0% 100% 50% +5: 0% 0% 50% +6: 100% 0% 75% +7: 0% 100% 75% +8: 0% 100% 100% +9: 0% 100% 25% +10: 0% 100% 100% +11: 50% 0% 100% +12: 50% 0% 100% +13: 25% 0% 100% + +MEAN: 17% 61% 67% + +Pass SCT0 SCT1 TEX SCB0 SCB1 +1: 0% 0% 100% 0% 100% +2: 0% 0% 100% 0% 100% +3: 0% 0% 100% 100% 100% +4: 0% 0% 100% 100% 100% +5: 0% 0% 0% 100% 100% +6: 100% 100% 0% 100% 100% +7: 0% 0% 100% 100% 100% +8: 0% 0% 100% 100% 100% +9: 0% 0% 100% 0% 100% +10: 0% 0% 100% 100% 100% +11: 100% 100% 0% 100% 100% +12: 100% 100% 0% 100% 100% +13: 100% 0% 0% 100% 100% + +MEAN: 30% 23% 61% 76% 100% +Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 +Results 13 cycles, 3 r regs, 923,076,923 pixels/s +============================================================================*/ +#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 0) +/*--------------------------------------------------------------------------*/ +#pragma regcount 7 +#pragma disablepc all +#pragma option O3 +#pragma option OutColorPrec=fp16 +#pragma texformat default RGBA8 +/*==========================================================================*/ +half4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + // (1) + half4 dir; + half4 lumaNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + lumaNe.w += half(1.0 / 512.0); + dir.x = -lumaNe.w; + dir.z = -lumaNe.w; +#else + lumaNe.y += half(1.0 / 512.0); + dir.x = -lumaNe.y; + dir.z = -lumaNe.y; +#endif + /*--------------------------------------------------------------------------*/ + // (2) + half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x += lumaSw.w; + dir.z += lumaSw.w; +#else + dir.x += lumaSw.y; + dir.z += lumaSw.y; +#endif + /*--------------------------------------------------------------------------*/ + // (3) + half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x -= lumaNw.w; + dir.z += lumaNw.w; +#else + dir.x -= lumaNw.y; + dir.z += lumaNw.y; +#endif + /*--------------------------------------------------------------------------*/ + // (4) + half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x += lumaSe.w; + dir.z -= lumaSe.w; +#else + dir.x += lumaSe.y; + dir.z -= lumaSe.y; +#endif + /*--------------------------------------------------------------------------*/ + // (5) + half4 dir1_pos; + dir1_pos.xy = normalize(dir.xyz).xz; + half dirAbsMinTimesC = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); + /*--------------------------------------------------------------------------*/ + // (6) + half4 dir2_pos; + dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimesC, half(-2.0), half(2.0)); + dir1_pos.zw = pos.xy; + dir2_pos.zw = pos.xy; + half4 temp1N; + temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + /*--------------------------------------------------------------------------*/ + // (7) + temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); + half4 rgby1; + rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + /*--------------------------------------------------------------------------*/ + // (8) + rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); + rgby1 = (temp1N + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (9) + half4 temp2N; + temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); + /*--------------------------------------------------------------------------*/ + // (10) + half4 rgby2; + rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); + rgby2 = (temp2N + rgby2) * 0.5; + /*--------------------------------------------------------------------------*/ + // (11) + // compilier moves these scalar ops up to other cycles +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMin = min(min(lumaNw.w, lumaSw.w), min(lumaNe.w, lumaSe.w)); + half lumaMax = max(max(lumaNw.w, lumaSw.w), max(lumaNe.w, lumaSe.w)); +#else + half lumaMin = min(min(lumaNw.y, lumaSw.y), min(lumaNe.y, lumaSe.y)); + half lumaMax = max(max(lumaNw.y, lumaSw.y), max(lumaNe.y, lumaSe.y)); +#endif + rgby2 = (rgby2 + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (12) +#if (FXAA_GREEN_AS_LUMA == 0) + bool twoTapLt = rgby2.w < lumaMin; + bool twoTapGt = rgby2.w > lumaMax; +#else + bool twoTapLt = rgby2.y < lumaMin; + bool twoTapGt = rgby2.y > lumaMax; +#endif + /*--------------------------------------------------------------------------*/ + // (13) + if (twoTapLt || twoTapGt) rgby2 = rgby1; + /*--------------------------------------------------------------------------*/ + return rgby2; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (WITH EARLY EXIT) + +============================================================================== +The code mostly matches the assembly. +I have a feeling that 14 cycles is possible, but was not able to get there. +Might have to increase register count to get full performance. +Note this shader does not use perspective interpolation. + +Use the following cgc options, + +--fenable-bx2 --fastmath --fastprecision --nofloatbindings + +Use of FXAA_GREEN_AS_LUMA currently adds a cycle (16 clks). +Will look at fixing this for FXAA 3.12. +------------------------------------------------------------------------------ +NVSHADERPERF OUTPUT +------------------------------------------------------------------------------ +For reference and to aid in debug, output of NVShaderPerf should match this, + +Shader to schedule: +0: texpkb h0.w(TRUE), v5.zyxx, #0 +2: addh h2.y(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x +4: texpkb h1.w(TRUE), v5.xwxx, #0 +6: addh h0.x(TRUE), h1.w, -h2.y +7: texpkb h2.w(TRUE), v5.zwzz, #0 +9: minh h4.w(TRUE), h2.y, h2 +10: maxh h5.x(TRUE), h2.y, h2.w +11: texpkb h0.w(TRUE), v5, #0 +13: addh h3.w(TRUE), -h0, h0.x +14: addh h0.x(TRUE), h0.w, h0 +15: addh h0.z(TRUE), -h2.w, h0.x +16: addh h0.x(TRUE), h2.w, h3.w +17: minh h5.y(TRUE), h0.w, h1.w +18: nrmh h2.xz(TRUE), h0_n +19: minh_m8 h2.w(TRUE), |h2.x|, |h2.z| +20: divx h4.xy(TRUE), h2_n.xzzw, h2_n.w +21: movr r1.zw(TRUE), v4.xxxy +22: maxh h2.w(TRUE), h0, h1 +23: fenct TRUE +24: madr r0.xy(TRUE), -h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz +26: texpkb h0(TRUE), r0, #0 +28: maxh h5.x(TRUE), h2.w, h5 +29: minh h5.w(TRUE), h5.y, h4 +30: madr r1.xy(TRUE), h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz +32: texpkb h2(TRUE), r1, #0 +34: addh_d2 h2(TRUE), h0, h2 +35: texpkb h1(TRUE), v4, #0 +37: maxh h5.y(TRUE), h5.x, h1.w +38: minh h4.w(TRUE), h1, h5 +39: madr r0.xy(TRUE), -h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +41: texpkb h0(TRUE), r0, #0 +43: addh_m8 h5.z(TRUE), h5.y, -h4.w +44: madr r2.xy(TRUE), h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +46: texpkb h3(TRUE), r2, #0 +48: addh_d2 h0(TRUE), h0, h3 +49: addh_d2 h3(TRUE), h0, h2 +50: movh h0(TRUE), h3 +51: slth h3.x(TRUE), h3.w, h5.w +52: sgth h3.w(TRUE), h3, h5.x +53: addx.c0 rc(TRUE), h3.x, h3 +54: slth.c0 rc(TRUE), h5.z, h5 +55: movh h0(c0.NE.w), h2 +56: movh h0(c0.NE.x), h1 + +IPU0 ------ Simplified schedule: -------- +Pass | Unit | uOp | PC: Op +-----+--------+------+------------------------- +1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| SCB0 | add | 2: ADDh h2.y, h0.-w--, const.-x--; +| | | +2 | SCT0/1 | mov | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; +| TEX | txl | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; +| SCB0 | add | 6: ADDh h0.x, h1.w---,-h2.y---; +| | | +3 | SCT0/1 | mov | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| TEX | txl | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| SCB0 | max | 10: MAXh h5.x, h2.y---, h2.w---; +| SCB1 | min | 9: MINh h4.w, h2.---y, h2; +| | | +4 | SCT0/1 | mov | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; +| TEX | txl | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; +| SCB0 | add | 14: ADDh h0.x, h0.w---, h0; +| SCB1 | add | 13: ADDh h3.w,-h0, h0.---x; +| | | +5 | SCT0 | mad | 16: ADDh h0.x, h2.w---, h3.w---; +| SCT1 | mad | 15: ADDh h0.z,-h2.--w-, h0.--x-; +| SCB0 | min | 17: MINh h5.y, h0.-w--, h1.-w--; +| | | +6 | SCT1 | mov | 18: NRMh h2.xz, h0; +| SRB | nrm | 18: NRMh h2.xz, h0; +| SCB1 | min | 19: MINh*8 h2.w, |h2.---x|, |h2.---z|; +| | | +7 | SCT0 | div | 20: DIVx h4.xy, h2.xz--, h2.ww--; +| SCT1 | mov | 21: MOVr r1.zw, g[TEX0].--xy; +| SCB1 | max | 22: MAXh h2.w, h0, h1; +| | | +8 | SCT0 | mad | 24: MADr r0.xy,-h2.xz--, const.zw--, r1.zw--; +| SCT1 | mov | 26: TXLr h0, r0, const.xxxx, TEX0; +| TEX | txl | 26: TXLr h0, r0, const.xxxx, TEX0; +| SCB0 | max | 28: MAXh h5.x, h2.w---, h5; +| SCB1 | min | 29: MINh h5.w, h5.---y, h4; +| | | +9 | SCT0 | mad | 30: MADr r1.xy, h2.xz--, const.zw--, r1.zw--; +| SCT1 | mov | 32: TXLr h2, r1, const.xxxx, TEX0; +| TEX | txl | 32: TXLr h2, r1, const.xxxx, TEX0; +| SCB0/1 | add | 34: ADDh/2 h2, h0, h2; +| | | +10 | SCT0/1 | mov | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; +| TEX | txl | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; +| SCB0 | max | 37: MAXh h5.y, h5.-x--, h1.-w--; +| SCB1 | min | 38: MINh h4.w, h1, h5; +| | | +11 | SCT0 | mad | 39: MADr r0.xy,-h4, const.xy--, r1.zw--; +| SCT1 | mov | 41: TXLr h0, r0, const.zzzz, TEX0; +| TEX | txl | 41: TXLr h0, r0, const.zzzz, TEX0; +| SCB0 | mad | 44: MADr r2.xy, h4, const.xy--, r1.zw--; +| SCB1 | add | 43: ADDh*8 h5.z, h5.--y-,-h4.--w-; +| | | +12 | SCT0/1 | mov | 46: TXLr h3, r2, const.xxxx, TEX0; +| TEX | txl | 46: TXLr h3, r2, const.xxxx, TEX0; +| SCB0/1 | add | 48: ADDh/2 h0, h0, h3; +| | | +13 | SCT0/1 | mad | 49: ADDh/2 h3, h0, h2; +| SCB0/1 | mul | 50: MOVh h0, h3; +| | | +14 | SCT0 | set | 51: SLTh h3.x, h3.w---, h5.w---; +| SCT1 | set | 52: SGTh h3.w, h3, h5.---x; +| SCB0 | set | 54: SLThc0 rc, h5.z---, h5; +| SCB1 | add | 53: ADDxc0_s rc, h3.---x, h3; +| | | +15 | SCT0/1 | mul | 55: MOVh h0(NE0.wwww), h2; +| SCB0/1 | mul | 56: MOVh h0(NE0.xxxx), h1; + +Pass SCT TEX SCB +1: 0% 100% 25% +2: 0% 100% 25% +3: 0% 100% 50% +4: 0% 100% 50% +5: 50% 0% 25% +6: 0% 0% 25% +7: 100% 0% 25% +8: 0% 100% 50% +9: 0% 100% 100% +10: 0% 100% 50% +11: 0% 100% 75% +12: 0% 100% 100% +13: 100% 0% 100% +14: 50% 0% 50% +15: 100% 0% 100% + +MEAN: 26% 60% 56% + +Pass SCT0 SCT1 TEX SCB0 SCB1 +1: 0% 0% 100% 100% 0% +2: 0% 0% 100% 100% 0% +3: 0% 0% 100% 100% 100% +4: 0% 0% 100% 100% 100% +5: 100% 100% 0% 100% 0% +6: 0% 0% 0% 0% 100% +7: 100% 100% 0% 0% 100% +8: 0% 0% 100% 100% 100% +9: 0% 0% 100% 100% 100% +10: 0% 0% 100% 100% 100% +11: 0% 0% 100% 100% 100% +12: 0% 0% 100% 100% 100% +13: 100% 100% 0% 100% 100% +14: 100% 100% 0% 100% 100% +15: 100% 100% 0% 100% 100% + +MEAN: 33% 33% 60% 86% 80% +Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 +Results 15 cycles, 3 r regs, 800,000,000 pixels/s +============================================================================*/ +#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 1) +/*--------------------------------------------------------------------------*/ +#pragma regcount 7 +#pragma disablepc all +#pragma option O2 +#pragma option OutColorPrec=fp16 +#pragma texformat default RGBA8 +/*==========================================================================*/ +half4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + // (1) + half4 rgbyNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaNe = rgbyNe.w + half(1.0 / 512.0); +#else + half lumaNe = rgbyNe.y + half(1.0 / 512.0); +#endif + /*--------------------------------------------------------------------------*/ + // (2) + half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaSwNegNe = lumaSw.w - lumaNe; +#else + half lumaSwNegNe = lumaSw.y - lumaNe; +#endif + /*--------------------------------------------------------------------------*/ + // (3) + half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxNwSw = max(lumaNw.w, lumaSw.w); + half lumaMinNwSw = min(lumaNw.w, lumaSw.w); +#else + half lumaMaxNwSw = max(lumaNw.y, lumaSw.y); + half lumaMinNwSw = min(lumaNw.y, lumaSw.y); +#endif + /*--------------------------------------------------------------------------*/ + // (4) + half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half dirZ = lumaNw.w + lumaSwNegNe; + half dirX = -lumaNw.w + lumaSwNegNe; +#else + half dirZ = lumaNw.y + lumaSwNegNe; + half dirX = -lumaNw.y + lumaSwNegNe; +#endif + /*--------------------------------------------------------------------------*/ + // (5) + half3 dir; + dir.y = 0.0; +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x = lumaSe.w + dirX; + dir.z = -lumaSe.w + dirZ; + half lumaMinNeSe = min(lumaNe, lumaSe.w); +#else + dir.x = lumaSe.y + dirX; + dir.z = -lumaSe.y + dirZ; + half lumaMinNeSe = min(lumaNe, lumaSe.y); +#endif + /*--------------------------------------------------------------------------*/ + // (6) + half4 dir1_pos; + dir1_pos.xy = normalize(dir).xz; + half dirAbsMinTimes8 = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); + /*--------------------------------------------------------------------------*/ + // (7) + half4 dir2_pos; + dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimes8, half(-2.0), half(2.0)); + dir1_pos.zw = pos.xy; + dir2_pos.zw = pos.xy; +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxNeSe = max(lumaNe, lumaSe.w); +#else + half lumaMaxNeSe = max(lumaNe, lumaSe.y); +#endif + /*--------------------------------------------------------------------------*/ + // (8) + half4 temp1N; + temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); + half lumaMax = max(lumaMaxNwSw, lumaMaxNeSe); + half lumaMin = min(lumaMinNwSw, lumaMinNeSe); + /*--------------------------------------------------------------------------*/ + // (9) + half4 rgby1; + rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); + rgby1 = (temp1N + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (10) + half4 rgbyM = h4tex2Dlod(tex, half4(pos.xy, 0.0, 0.0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxM = max(lumaMax, rgbyM.w); + half lumaMinM = min(lumaMin, rgbyM.w); +#else + half lumaMaxM = max(lumaMax, rgbyM.y); + half lumaMinM = min(lumaMin, rgbyM.y); +#endif + /*--------------------------------------------------------------------------*/ + // (11) + half4 temp2N; + temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); + half4 rgby2; + rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + half lumaRangeM = (lumaMaxM - lumaMinM) / FXAA_CONSOLE__PS3_EDGE_THRESHOLD; + /*--------------------------------------------------------------------------*/ + // (12) + rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); + rgby2 = (temp2N + rgby2) * 0.5; + /*--------------------------------------------------------------------------*/ + // (13) + rgby2 = (rgby2 + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (14) +#if (FXAA_GREEN_AS_LUMA == 0) + bool twoTapLt = rgby2.w < lumaMin; + bool twoTapGt = rgby2.w > lumaMax; +#else + bool twoTapLt = rgby2.y < lumaMin; + bool twoTapGt = rgby2.y > lumaMax; +#endif + bool earlyExit = lumaRangeM < lumaMax; + bool twoTap = twoTapLt || twoTapGt; + /*--------------------------------------------------------------------------*/ + // (15) + if (twoTap) rgby2 = rgby1; + if (earlyExit) rgby2 = rgbyM; + /*--------------------------------------------------------------------------*/ + return rgby2; +} +/*==========================================================================*/ +#endif + +#endif // __FXAA3_INC__ diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta new file mode 100644 index 0000000..35bef44 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 817a98c8f709269458e50b65910ed4bc +timeCreated: 1490347846 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader new file mode 100644 index 0000000..879b7f7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader @@ -0,0 +1,156 @@ +Shader "Hidden/PostProcessing/FinalPass" +{ + HLSLINCLUDE + + #pragma multi_compile __ FXAA FXAA_LOW + #pragma multi_compile __ FXAA_KEEP_ALPHA FXAA_NO_ALPHA + + #pragma vertex VertUVTransform + #pragma fragment Frag + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl" + + // PS3 and XBOX360 aren't supported in Unity anymore, only use the PC variant + #define FXAA_PC 1 + + #if FXAA_KEEP_ALPHA || FXAA_NO_ALPHA + // Luma hasn't been encoded in alpha + #define FXAA_GREEN_AS_LUMA 1 + #else + // Luma is encoded in alpha after the first Uber pass + #define FXAA_GREEN_AS_LUMA 0 + #endif + + #if FXAA_LOW + #define FXAA_QUALITY__PRESET 12 + #define FXAA_QUALITY_SUBPIX 1.0 + #define FXAA_QUALITY_EDGE_THRESHOLD 0.166 + #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0625 + #else + #define FXAA_QUALITY__PRESET 28 + #define FXAA_QUALITY_SUBPIX 1.0 + #define FXAA_QUALITY_EDGE_THRESHOLD 0.063 + #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0312 + #endif + + #include "FastApproximateAntialiasing.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + float4 Frag(VaryingsDefault i) : SV_Target + { + half4 color = 0.0; + + // Fast Approximate Anti-aliasing + #if FXAA || FXAA_LOW + { + #if FXAA_HLSL_4 || FXAA_HLSL_5 + FxaaTex mainTex; + mainTex.tex = _MainTex; + mainTex.smpl = sampler_MainTex; + #else + FxaaTex mainTex = _MainTex; + #endif + + color = FxaaPixelShader( + i.texcoord, // pos + 0.0, // fxaaConsolePosPos (unused) + mainTex, // tex + mainTex, // fxaaConsole360TexExpBiasNegOne (unused) + mainTex, // fxaaConsole360TexExpBiasNegTwo (unused) + _MainTex_TexelSize.xy, // fxaaQualityRcpFrame + 0.0, // fxaaConsoleRcpFrameOpt (unused) + 0.0, // fxaaConsoleRcpFrameOpt2 (unused) + 0.0, // fxaaConsole360RcpFrameOpt2 (unused) + FXAA_QUALITY_SUBPIX, + FXAA_QUALITY_EDGE_THRESHOLD, + FXAA_QUALITY_EDGE_THRESHOLD_MIN, + 0.0, // fxaaConsoleEdgeSharpness (unused) + 0.0, // fxaaConsoleEdgeThreshold (unused) + 0.0, // fxaaConsoleEdgeThresholdMin (unused) + 0.0 // fxaaConsole360ConstDir (unused) + ); + + #if FXAA_KEEP_ALPHA + { + color.a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).a; + } + #endif + } + #else + { + color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + #endif + + color.rgb = Dither(color.rgb, i.texcoord); + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target 5.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target 3.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles3 + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target 3.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET //not supporting STEREO_INSTANCING_ENABLED + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader.meta new file mode 100644 index 0000000..a8a06c9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/FinalPass.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f75014305794b3948a3c6d5ccd550e05 +timeCreated: 1492610926 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl new file mode 100644 index 0000000..f4e93a4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl @@ -0,0 +1,32 @@ +#ifndef UNITY_POSTFX_FOG +#define UNITY_POSTFX_FOG + +half4 _FogColor; +float3 _FogParams; + +#define FOG_DENSITY _FogParams.x +#define FOG_START _FogParams.y +#define FOG_END _FogParams.z + +half ComputeFog(float z) +{ + half fog = 0.0; +#if FOG_LINEAR + fog = (FOG_END - z) / (FOG_END - FOG_START); +#elif FOG_EXP + fog = exp2(-FOG_DENSITY * z); +#else // FOG_EXP2 + fog = FOG_DENSITY * z; + fog = exp2(-fog * fog); +#endif + return saturate(fog); +} + +float ComputeFogDistance(float depth) +{ + float dist = depth * _ProjectionParams.z; + dist -= _ProjectionParams.y; + return dist; +} + +#endif // UNITY_POSTFX_FOG diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl.meta new file mode 100644 index 0000000..59ad349 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6c5a4cd8abc6e204985ac645b8dad78e +timeCreated: 1498725505 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute new file mode 100644 index 0000000..5a9d32e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute @@ -0,0 +1,156 @@ +// +// This is a modified version of the BlurCS compute shader from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: Bob Brown +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +Texture2D _Source; +RWTexture2D _Result; + +SamplerState sampler_LinearClamp; + +CBUFFER_START(cb) + float4 _Size; +CBUFFER_END + +// 16x16 pixels with an 8x8 center that we will be blurring writing out. Each uint is two color +// channels packed together. +// The reason for separating channels is to reduce bank conflicts in the local data memory +// controller. A large stride will cause more threads to collide on the same memory bank. +groupshared uint gs_cacheR[128]; +groupshared uint gs_cacheG[128]; +groupshared uint gs_cacheB[128]; +groupshared uint gs_cacheA[128]; + +float4 BlurPixels(float4 a, float4 b, float4 c, float4 d, float4 e, float4 f, float4 g, float4 h, float4 i) +{ + return 0.27343750 * (e ) + + 0.21875000 * (d + f) + + 0.10937500 * (c + g) + + 0.03125000 * (b + h) + + 0.00390625 * (a + i); +} + +void Store2Pixels(uint index, float4 pixel1, float4 pixel2) +{ + gs_cacheR[index] = f32tof16(pixel1.r) | f32tof16(pixel2.r) << 16; + gs_cacheG[index] = f32tof16(pixel1.g) | f32tof16(pixel2.g) << 16; + gs_cacheB[index] = f32tof16(pixel1.b) | f32tof16(pixel2.b) << 16; + gs_cacheA[index] = f32tof16(pixel1.a) | f32tof16(pixel2.a) << 16; +} + +void Load2Pixels(uint index, out float4 pixel1, out float4 pixel2) +{ + uint rr = gs_cacheR[index]; + uint gg = gs_cacheG[index]; + uint bb = gs_cacheB[index]; + uint aa = gs_cacheA[index]; + pixel1 = float4(f16tof32(rr ), f16tof32(gg ), f16tof32(bb ), f16tof32(aa )); + pixel2 = float4(f16tof32(rr >> 16), f16tof32(gg >> 16), f16tof32(bb >> 16), f16tof32(aa >> 16)); +} + +void Store1Pixel(uint index, float4 pixel) +{ + gs_cacheR[index] = asuint(pixel.r); + gs_cacheG[index] = asuint(pixel.g); + gs_cacheB[index] = asuint(pixel.b); + gs_cacheA[index] = asuint(pixel.a); +} + +void Load1Pixel(uint index, out float4 pixel) +{ + pixel = asfloat(uint4(gs_cacheR[index], gs_cacheG[index], gs_cacheB[index], gs_cacheA[index])); +} + +// Blur two pixels horizontally. This reduces LDS reads and pixel unpacking. +void BlurHorizontally(uint outIndex, uint leftMostIndex) +{ + float4 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; + Load2Pixels(leftMostIndex + 0, s0, s1); + Load2Pixels(leftMostIndex + 1, s2, s3); + Load2Pixels(leftMostIndex + 2, s4, s5); + Load2Pixels(leftMostIndex + 3, s6, s7); + Load2Pixels(leftMostIndex + 4, s8, s9); + + Store1Pixel(outIndex , BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8)); + Store1Pixel(outIndex + 1, BlurPixels(s1, s2, s3, s4, s5, s6, s7, s8, s9)); +} + +void BlurVertically(uint2 pixelCoord, uint topMostIndex) +{ + float4 s0, s1, s2, s3, s4, s5, s6, s7, s8; + Load1Pixel(topMostIndex , s0); + Load1Pixel(topMostIndex + 8, s1); + Load1Pixel(topMostIndex + 16, s2); + Load1Pixel(topMostIndex + 24, s3); + Load1Pixel(topMostIndex + 32, s4); + Load1Pixel(topMostIndex + 40, s5); + Load1Pixel(topMostIndex + 48, s6); + Load1Pixel(topMostIndex + 56, s7); + Load1Pixel(topMostIndex + 64, s8); + + float4 blurred = BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8); + + // Write to the final target + _Result[pixelCoord] = blurred; +} + +#pragma kernel KMain + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KMain) + +#else + +[numthreads(8, 8, 1)] +void KMain(uint2 groupId : SV_GroupID, uint2 groupThreadId : SV_GroupThreadID, uint2 dispatchThreadId : SV_DispatchThreadID) +{ + // Upper-left pixel coordinate of quad that this thread will read + int2 threadUL = (groupThreadId << 1) + (groupId << 3) - 4; + + // Downsample the block + float2 offset = float2(threadUL); + float4 p00 = _Source.SampleLevel(sampler_LinearClamp, (offset + 0.5) * _Size.zw, 0.0); + float4 p10 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 0.0) + 0.5) * _Size.zw, 0.0); + float4 p01 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(0.0, 1.0) + 0.5) * _Size.zw, 0.0); + float4 p11 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 1.0) + 0.5) * _Size.zw, 0.0); + + // Store the 4 downsampled pixels in LDS + uint destIdx = groupThreadId.x + (groupThreadId.y << 4u); + Store2Pixels(destIdx , p00, p10); + Store2Pixels(destIdx + 8u, p01, p11); + + GroupMemoryBarrierWithGroupSync(); + + // Horizontally blur the pixels in LDS + uint row = groupThreadId.y << 4u; + BlurHorizontally(row + (groupThreadId.x << 1u), row + groupThreadId.x + (groupThreadId.x & 4u)); + + GroupMemoryBarrierWithGroupSync(); + + // Vertically blur the pixels in LDS and write the result to memory + BlurVertically(dispatchThreadId, (groupThreadId.y << 3u) + groupThreadId.x); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta new file mode 100644 index 0000000..a782846 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6dba4103d23a7904fbc49099355aff3e +timeCreated: 1503754250 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader new file mode 100644 index 0000000..82595b6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader @@ -0,0 +1,104 @@ +Shader "Hidden/PostProcessing/GrainBaker" +{ + HLSLINCLUDE + + #pragma exclude_renderers d3d11_9x + #pragma target 3.0 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + float _Phase; + float3 _NoiseParameters; + + // Implementation based on Timothy Lottes' "Large Grain" + // Reference code: https://www.shadertoy.com/view/4sSXDW + // Other article of interest: http://devlog-martinsh.blogspot.fr/2013/05/image-imperfections-and-film-grain-post.html + float Noise(float2 n, float x) + { + n += x; + return frac(sin(dot(n.xy, _NoiseParameters.xy)) * _NoiseParameters.z); + } + + float Step1(float2 uv, float n) + { + float b = 2.0, c = -12.0; + return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( + Noise(uv + float2(-1.0, -1.0), n) + + Noise(uv + float2( 0.0, -1.0), n) * b + + Noise(uv + float2( 1.0, -1.0), n) + + Noise(uv + float2(-1.0, 0.0), n) * b + + Noise(uv + float2( 0.0, 0.0), n) * c + + Noise(uv + float2( 1.0, 0.0), n) * b + + Noise(uv + float2(-1.0, 1.0), n) + + Noise(uv + float2( 0.0, 1.0), n) * b + + Noise(uv + float2( 1.0, 1.0), n) + ); + } + + float Step2(float2 uv, float n) + { + float b = 2.0, c = 4.0; + return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( + Step1(uv + float2(-1.0, -1.0), n) + + Step1(uv + float2( 0.0, -1.0), n) * b + + Step1(uv + float2( 1.0, -1.0), n) + + Step1(uv + float2(-1.0, 0.0), n) * b + + Step1(uv + float2( 0.0, 0.0), n) * c + + Step1(uv + float2( 1.0, 0.0), n) * b + + Step1(uv + float2(-1.0, 1.0), n) + + Step1(uv + float2( 0.0, 1.0), n) * b + + Step1(uv + float2( 1.0, 1.0), n) + ); + } + + float Step3BW(float2 uv) + { + return Step2(uv, frac(_Phase)); + } + + float3 Step3(float2 uv) + { + float a = Step2(uv, 0.07 * frac(_Phase)); + float b = Step2(uv, 0.11 * frac(_Phase)); + float c = Step2(uv, 0.13 * frac(_Phase)); + return float3(a, b, c); + } + + float4 FragGrain(VaryingsDefault i) : SV_Target + { + float grain = Step3BW(i.texcoordStereo * float2(128.0, 128.0)); + return float4(grain.xxx, 1.0); + } + + float4 FragGrainColored(VaryingsDefault i) : SV_Target + { + float3 grain = Step3(i.texcoordStereo * float2(128.0, 128.0)); + return float4(grain, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragGrain + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragGrainColored + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta new file mode 100644 index 0000000..6cc9b91 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0d8afcb51cc9f0349a6d190da929b838 +timeCreated: 1489138738 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader new file mode 100644 index 0000000..b44a81d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader @@ -0,0 +1,222 @@ +Shader "Hidden/PostProcessing/Lut2DBaker" +{ + HLSLINCLUDE + + #pragma target 3.0 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _Lut2D_Params; + float4 _UserLut2D_Params; + + float3 _ColorBalance; + float3 _ColorFilter; + float3 _HueSatCon; + float _Brightness; // LDR only + + float3 _ChannelMixerRed; + float3 _ChannelMixerGreen; + float3 _ChannelMixerBlue; + + float3 _Lift; + float3 _InvGamma; + float3 _Gain; + + TEXTURE2D_SAMPLER2D(_Curves, sampler_Curves); + + float4 _CustomToneCurve; + float4 _ToeSegmentA; + float4 _ToeSegmentB; + float4 _MidSegmentA; + float4 _MidSegmentB; + float4 _ShoSegmentA; + float4 _ShoSegmentB; + + float3 ApplyCommonGradingSteps(float3 colorLinear) + { + colorLinear = WhiteBalance(colorLinear, _ColorBalance); + colorLinear *= _ColorFilter; + colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed, _ChannelMixerGreen, _ChannelMixerBlue); + colorLinear = LiftGammaGainHDR(colorLinear, _Lift, _InvGamma, _Gain); + + // Do NOT feed negative values to RgbToHsv or they'll wrap around + colorLinear = max((float3)0.0, colorLinear); + + float3 hsv = RgbToHsv(colorLinear); + + // Hue Vs Sat + float satMult; + satMult = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; + + // Sat Vs Sat + satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; + + // Lum Vs Sat + satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; + + // Hue Vs Hue + float hue = hsv.x + _HueSatCon.x; + float offset = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; + hue += offset; + hsv.x = RotateHue(hue, 0.0, 1.0); + + colorLinear = HsvToRgb(hsv); + colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); + + return colorLinear; + } + + // + // LDR Grading process + // + float3 ColorGradeLDR(float3 colorLinear) + { + // Brightness is a simple linear multiplier. Works better in LDR than using e.v. + colorLinear *= _Brightness; + + // Contrast is done in linear, switching to log for that in LDR is pointless and doesn't + // feel as good to tweak + const float kMidGrey = pow(0.5, 2.2); + colorLinear = Contrast(colorLinear, kMidGrey, _HueSatCon.z); + + colorLinear = ApplyCommonGradingSteps(colorLinear); + + // YRGB only works in LDR for now as we don't do any curve range remapping + colorLinear = YrgbCurve(saturate(colorLinear), TEXTURE2D_PARAM(_Curves, sampler_Curves)); + + return saturate(colorLinear); + } + + float4 FragLDRFromScratch(VaryingsDefault i) : SV_Target + { + float3 colorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); + float3 graded = ColorGradeLDR(colorLinear); + return float4(graded, 1.0); + } + + float4 FragLDR(VaryingsDefault i) : SV_Target + { + // Note: user luts may not have the same size as the internal one + float3 neutralColorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); + float3 lookup = ApplyLut2D(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), neutralColorLinear, _UserLut2D_Params.xyz); + float3 colorLinear = lerp(neutralColorLinear, lookup, _UserLut2D_Params.w); + float3 graded = ColorGradeLDR(colorLinear); + return float4(graded, 1.0); + } + + // + // HDR Grading process + // + float3 LogGradeHDR(float3 colorLog) + { + // HDR contrast feels a lot more natural when done in log rather than doing it in linear + colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); + return colorLog; + } + + float3 LinearGradeHDR(float3 colorLinear) + { + colorLinear = ApplyCommonGradingSteps(colorLinear); + return colorLinear; + } + + float3 ColorGradeHDR(float3 colorLutSpace) + { + #if TONEMAPPING_ACES + { + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + float3 aces = unity_to_ACES(colorLinear); + + // ACEScc (log) space + float3 acescc = ACES_to_ACEScc(aces); + acescc = LogGradeHDR(acescc); + aces = ACEScc_to_ACES(acescc); + + // ACEScg (linear) space + float3 acescg = ACES_to_ACEScg(aces); + acescg = LinearGradeHDR(acescg); + + // Tonemap ODT(RRT(aces)) + aces = ACEScg_to_ACES(acescg); + colorLinear = AcesTonemap(aces); + + return colorLinear; + } + #else + { + // colorLutSpace is already in log space + colorLutSpace = LogGradeHDR(colorLutSpace); + + // Switch back to linear + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + colorLinear = LinearGradeHDR(colorLinear); + colorLinear = max(0.0, colorLinear); + + // Tonemap + #if TONEMAPPING_NEUTRAL + { + colorLinear = NeutralTonemap(colorLinear); + } + #elif TONEMAPPING_CUSTOM + { + colorLinear = CustomTonemap( + colorLinear, _CustomToneCurve.xyz, + _ToeSegmentA, _ToeSegmentB.xy, + _MidSegmentA, _MidSegmentB.xy, + _ShoSegmentA, _ShoSegmentB.xy + ); + } + #endif + + return colorLinear; + } + #endif + } + + float4 FragHDR(VaryingsDefault i) : SV_Target + { + float3 colorLutSpace = GetLutStripValue(i.texcoord, _Lut2D_Params); + float3 graded = ColorGradeHDR(colorLutSpace); + return float4(max(graded, 0.0), 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragLDRFromScratch + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragLDR + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragHDR + #pragma multi_compile __ TONEMAPPING_ACES TONEMAPPING_NEUTRAL TONEMAPPING_CUSTOM + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta new file mode 100644 index 0000000..a35b9ef --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7ad194cbe7d006f4bace915156972026 +timeCreated: 1493730829 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute new file mode 100644 index 0000000..3614346 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute @@ -0,0 +1,177 @@ +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/ACES.hlsl" + +#pragma kernel KGenLut3D_NoTonemap TONEMAPPING_NONE +#pragma kernel KGenLut3D_AcesTonemap TONEMAPPING_ACES +#pragma kernel KGenLut3D_NeutralTonemap TONEMAPPING_NEUTRAL +#pragma kernel KGenLut3D_CustomTonemap TONEMAPPING_CUSTOM + +RWTexture3D _Output; + +CBUFFER_START(Params) + float4 _Size; // x: lut_size, y: 1 / (lut_size - 1), zw: unused + + float4 _ColorBalance; + float4 _ColorFilter; + float4 _HueSatCon; + + float4 _ChannelMixerRed; + float4 _ChannelMixerGreen; + float4 _ChannelMixerBlue; + + float4 _Lift; + float4 _InvGamma; + float4 _Gain; + + float4 _CustomToneCurve; + + // Packing is currently borked, can't pass float arrays without it creating one vector4 per + // float so we'll pack manually... + float4 _ToeSegmentA; + float4 _ToeSegmentB; + float4 _MidSegmentA; + float4 _MidSegmentB; + float4 _ShoSegmentA; + float4 _ShoSegmentB; +CBUFFER_END + +Texture2D _Curves; +SamplerState sampler_Curves; + +float3 LogGrade(float3 colorLog) +{ + // Contrast feels a lot more natural when done in log rather than doing it in linear + colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); + + return colorLog; +} + +float3 LinearGrade(float3 colorLinear) +{ + colorLinear = WhiteBalance(colorLinear, _ColorBalance.rgb); + colorLinear *= _ColorFilter.rgb; + colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed.rgb, _ChannelMixerGreen.rgb, _ChannelMixerBlue.rgb); + colorLinear = LiftGammaGainHDR(colorLinear, _Lift.rgb, _InvGamma.rgb, _Gain.rgb); + + // Do NOT feed negative values to RgbToHsv or they'll wrap around + colorLinear = max(0.0, colorLinear); + + float3 hsv = RgbToHsv(colorLinear); + + // Hue Vs Sat + float satMult; + satMult = saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; + + // Sat Vs Sat + satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; + + // Lum Vs Sat + satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; + + // Hue Vs Hue + float hue = hsv.x + _HueSatCon.x; + float offset = saturate(_Curves.SampleLevel(sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; + hue += offset; + hsv.x = RotateHue(hue, 0.0, 1.0); + + colorLinear = HsvToRgb(hsv); + colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); + + return colorLinear; +} + +#if TONEMAPPING_ACES + +float3 ColorGrade(float3 colorLutSpace) +{ + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + float3 aces = unity_to_ACES(colorLinear); + + // ACEScc (log) space + float3 acescc = ACES_to_ACEScc(aces); + acescc = LogGrade(acescc); + aces = ACEScc_to_ACES(acescc); + + // ACEScg (linear) space + float3 acescg = ACES_to_ACEScg(aces); + acescg = LinearGrade(acescg); + + // Tonemap ODT(RRT(aces)) + aces = ACEScg_to_ACES(acescg); + colorLinear = AcesTonemap(aces); + + return colorLinear; +} + +#else + +float3 ColorGrade(float3 colorLutSpace) +{ + // colorLutSpace is already in log space + colorLutSpace = LogGrade(colorLutSpace); + + // Switch back to linear + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + colorLinear = LinearGrade(colorLinear); + colorLinear = max(0.0, colorLinear); + + // Tonemap + #if TONEMAPPING_NEUTRAL + { + colorLinear = NeutralTonemap(colorLinear); + } + #elif TONEMAPPING_CUSTOM + { + colorLinear = CustomTonemap( + colorLinear, _CustomToneCurve.xyz, + _ToeSegmentA, _ToeSegmentB.xy, + _MidSegmentA, _MidSegmentB.xy, + _ShoSegmentA, _ShoSegmentB.xy + ); + } + #endif + + return colorLinear; +} + +#endif + +void Eval(uint3 id) +{ + if (float(id.x) < _Size.x && float(id.y) < _Size.x && float(id.z) < _Size.x) + { + // Lut space (log space) + float3 colorLutSpace = float3(id) * _Size.y; + + // Color grade & tonemap + float3 graded = ColorGrade(colorLutSpace); + + _Output[id] = float4(max(graded, 0.0), 1.0); + } +} + +#define GROUP_SIZE 4 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NoTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_AcesTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NeutralTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_CustomTonemap) + +#else + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_NoTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_AcesTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_NeutralTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_CustomTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta new file mode 100644 index 0000000..78ab22d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 42496b74c071f5749950ca1abe33e945 +timeCreated: 1494926107 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader new file mode 100644 index 0000000..41b6f5e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader @@ -0,0 +1,332 @@ +Shader "Hidden/PostProcessing/MotionBlur" +{ + HLSLINCLUDE + + #pragma target 3.0 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + // Camera depth texture + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + + // Camera motion vectors texture + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + float4 _CameraMotionVectorsTexture_TexelSize; + + // Packed velocity texture (2/10/10/10) + TEXTURE2D_SAMPLER2D(_VelocityTex, sampler_VelocityTex); + float2 _VelocityTex_TexelSize; + + // NeighborMax texture + TEXTURE2D_SAMPLER2D(_NeighborMaxTex, sampler_NeighborMaxTex); + float2 _NeighborMaxTex_TexelSize; + + // Velocity scale factor + float _VelocityScale; + + // TileMax filter parameters + int _TileMaxLoop; + float2 _TileMaxOffs; + + // Maximum blur radius (in pixels) + half _MaxBlurRadius; + float _RcpMaxBlurRadius; + + // Filter parameters/coefficients + half _LoopCount; + + // ----------------------------------------------------------------------------- + // Prefilter + + // Velocity texture setup + half4 FragVelocitySetup(VaryingsDefault i) : SV_Target + { + // Sample the motion vector. + float2 v = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoord).rg; + + // Apply the exposure time and convert to the pixel space. + v *= (_VelocityScale * 0.5) * _CameraMotionVectorsTexture_TexelSize.zw; + + // Clamp the vector with the maximum blur radius. + v /= max(1.0, length(v) * _RcpMaxBlurRadius); + + // Sample the depth of the pixel. + half d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoord)); + + // Pack into 10/10/10/2 format. + return half4((v * _RcpMaxBlurRadius + 1.0) * 0.5, d, 0.0); + } + + half2 MaxV(half2 v1, half2 v2) + { + return dot(v1, v1) < dot(v2, v2) ? v2 : v1; + } + + // TileMax filter (2 pixel width with normalization) + half4 FragTileMax1(VaryingsDefault i) : SV_Target + { + float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; + + v1 = (v1 * 2.0 - 1.0) * _MaxBlurRadius; + v2 = (v2 * 2.0 - 1.0) * _MaxBlurRadius; + v3 = (v3 * 2.0 - 1.0) * _MaxBlurRadius; + v4 = (v4 * 2.0 - 1.0) * _MaxBlurRadius; + + return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); + } + + // TileMax filter (2 pixel width) + half4 FragTileMax2(VaryingsDefault i) : SV_Target + { + float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; + + return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); + } + + // TileMax filter (variable width) + half4 FragTileMaxV(VaryingsDefault i) : SV_Target + { + float2 uv0 = i.texcoord + _MainTex_TexelSize.xy * _TileMaxOffs.xy; + + float2 du = float2(_MainTex_TexelSize.x, 0.0); + float2 dv = float2(0.0, _MainTex_TexelSize.y); + + half2 vo = 0.0; + + UNITY_LOOP + for (int ix = 0; ix < _TileMaxLoop; ix++) + { + UNITY_LOOP + for (int iy = 0; iy < _TileMaxLoop; iy++) + { + float2 uv = uv0 + du * ix + dv * iy; + vo = MaxV(vo, SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv).rg); + } + } + + return half4(vo, 0.0, 0.0); + } + + // NeighborMax filter + half4 FragNeighborMax(VaryingsDefault i) : SV_Target + { + const half cw = 1.01; // Center weight tweak + + float4 d = _MainTex_TexelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.wy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.zy).rg; + + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xw).rg; + half2 v5 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).rg * cw; + half2 v6 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + + half2 v7 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v8 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.wy).rg; + half2 v9 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + + half2 va = MaxV(v1, MaxV(v2, v3)); + half2 vb = MaxV(v4, MaxV(v5, v6)); + half2 vc = MaxV(v7, MaxV(v8, v9)); + + return half4(MaxV(va, MaxV(vb, vc)) * (1.0 / cw), 0.0, 0.0); + } + + // ----------------------------------------------------------------------------- + // Reconstruction + + // Returns true or false with a given interval. + bool Interval(half phase, half interval) + { + return frac(phase / interval) > 0.499; + } + + // Jitter function for tile lookup + float2 JitterTile(float2 uv) + { + float rx, ry; + sincos(GradientNoise(uv + float2(2.0, 0.0)) * TWO_PI, ry, rx); + return float2(rx, ry) * _NeighborMaxTex_TexelSize.xy * 0.25; + } + + // Velocity sampling function + half3 SampleVelocity(float2 uv) + { + half3 v = SAMPLE_TEXTURE2D_LOD(_VelocityTex, sampler_VelocityTex, uv, 0.0).xyz; + return half3((v.xy * 2.0 - 1.0) * _MaxBlurRadius, v.z); + } + + // Reconstruction filter + half4 FragReconstruction(VaryingsDefault i) : SV_Target + { + // Color sample at the center point + const half4 c_p = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + // Velocity/Depth sample at the center point + const half3 vd_p = SampleVelocity(i.texcoord); + const half l_v_p = max(length(vd_p.xy), 0.5); + const half rcp_d_p = 1.0 / vd_p.z; + + // NeighborMax vector sample at the center point + const half2 v_max = SAMPLE_TEXTURE2D(_NeighborMaxTex, sampler_NeighborMaxTex, i.texcoord + JitterTile(i.texcoord)).xy; + const half l_v_max = length(v_max); + const half rcp_l_v_max = 1.0 / l_v_max; + + // Escape early if the NeighborMax vector is small enough. + if (l_v_max < 2.0) return c_p; + + // Use V_p as a secondary sampling direction except when it's too small + // compared to V_max. This vector is rescaled to be the length of V_max. + const half2 v_alt = (l_v_p * 2.0 > l_v_max) ? vd_p.xy * (l_v_max / l_v_p) : v_max; + + // Determine the sample count. + const half sc = floor(min(_LoopCount, l_v_max * 0.5)); + + // Loop variables (starts from the outermost sample) + const half dt = 1.0 / sc; + const half t_offs = (GradientNoise(i.texcoord) - 0.5) * dt; + half t = 1.0 - dt * 0.5; + half count = 0.0; + + // Background velocity + // This is used for tracking the maximum velocity in the background layer. + half l_v_bg = max(l_v_p, 1.0); + + // Color accumlation + half4 acc = 0.0; + + UNITY_LOOP + while (t > dt * 0.25) + { + // Sampling direction (switched per every two samples) + const half2 v_s = Interval(count, 4.0) ? v_alt : v_max; + + // Sample position (inverted per every sample) + const half t_s = (Interval(count, 2.0) ? -t : t) + t_offs; + + // Distance to the sample position + const half l_t = l_v_max * abs(t_s); + + // UVs for the sample position + const float2 uv0 = i.texcoord + v_s * t_s * _MainTex_TexelSize.xy; + const float2 uv1 = i.texcoord + v_s * t_s * _VelocityTex_TexelSize.xy; + + // Color sample + const half3 c = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, uv0, 0.0).rgb; + + // Velocity/Depth sample + const half3 vd = SampleVelocity(uv1); + + // Background/Foreground separation + const half fg = saturate((vd_p.z - vd.z) * 20.0 * rcp_d_p); + + // Length of the velocity vector + const half l_v = lerp(l_v_bg, length(vd.xy), fg); + + // Sample weight + // (Distance test) * (Spreading out by motion) * (Triangular window) + const half w = saturate(l_v - l_t) / l_v * (1.2 - t); + + // Color accumulation + acc += half4(c, 1.0) * w; + + // Update the background velocity. + l_v_bg = max(l_v_bg, l_v); + + // Advance to the next sample. + t = Interval(count, 2.0) ? t - dt : t; + count += 1.0; + } + + // Add the center sample. + acc += half4(c_p.rgb, 1.0) * (1.2 / (l_v_bg * sc * 2.0)); + + return half4(acc.rgb / acc.a, c_p.a); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Velocity texture setup + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragVelocitySetup + + ENDHLSL + } + + // (1) TileMax filter (2 pixel width with normalization) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMax1 + + ENDHLSL + } + + // (2) TileMax filter (2 pixel width) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMax2 + + ENDHLSL + } + + // (3) TileMax filter (variable width) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMaxV + + ENDHLSL + } + + // (4) NeighborMax filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNeighborMax + + ENDHLSL + } + + // (5) Reconstruction filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragReconstruction + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta new file mode 100644 index 0000000..879fb20 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2c459b89a7c8b1a4fbefe0d81341651c +timeCreated: 1489147878 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader new file mode 100644 index 0000000..b986c2a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader @@ -0,0 +1,111 @@ +Shader "Hidden/PostProcessing/MultiScaleVO" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl" + + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + TEXTURE2D_SAMPLER2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture); + float3 _AOColor; + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Depth copy with procedural draw + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + return SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + } + + ENDHLSL + } + + // 1 - Composite to G-buffer with procedural draw + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + struct Output + { + float4 gbuffer0 : SV_Target0; + float4 gbuffer3 : SV_Target1; + }; + + Output Frag(VaryingsDefault i) + { + float ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + Output o; + o.gbuffer0 = float4(0.0, 0.0, 0.0, ao); + o.gbuffer3 = float4(ao * _AOColor, 0.0); + return o; + } + + ENDHLSL + } + + // 2 - Composite to the frame buffer + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + half ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + + // Apply fog when enabled (forward-only) + #if (APPLY_FORWARD_FOG) + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + d = ComputeFogDistance(d); + ao *= ComputeFog(d); + #endif + + return float4(ao * _AOColor, 0.0); + } + + ENDHLSL + } + + // 3 - Debug overlay + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + half ao = SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + return float4(ao.rrr, 1.0); + } + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta new file mode 100644 index 0000000..714cbac --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 67f9497810829eb4791ec19e95781e51 +timeCreated: 1503305114 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute new file mode 100644 index 0000000..2fdb6c7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute @@ -0,0 +1,136 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVODownsample1 main=MultiScaleVODownsample1 +#pragma kernel MultiScaleVODownsample1_MSAA main=MultiScaleVODownsample1_MSAA MSAA + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +#ifdef MSAA +// Output textures +RWTexture2D LinearZ; +RWTexture2D DS2x; +RWTexture2DArray DS2xAtlas; +RWTexture2D DS4x; +RWTexture2DArray DS4xAtlas; + +// Input textures +Texture2D Depth; + +// Shared memory +groupshared float2 g_CacheW[256]; +#else +// Output textures +RWTexture2D LinearZ; +RWTexture2D DS2x; +RWTexture2DArray DS2xAtlas; +RWTexture2D DS4x; +RWTexture2DArray DS4xAtlas; + +// Input textures +Texture2D Depth; + +// Shared memory +groupshared float g_CacheW[256]; +#endif + +CBUFFER_START(CB0) + float4 ZBufferParams; +CBUFFER_END + +#ifdef MSAA +float2 Linearize(uint2 st) +{ + float depthMin = Depth[st].y; + float depthMax = Depth[st].x; + + float2 depth = float2(depthMin, depthMax); + float2 dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); +#ifdef UNITY_REVERSED_Z + if (depth.x == 0) dist.x = 1e5; + if (depth.y == 0) dist.y = 1e5; +#else + if (depth.x == 1) dist.x = 1e5; + if (depth.y == 1) dist.y = 1e5; +#endif + LinearZ[st] = dist; + return dist; +} +#else +float Linearize(uint2 st) +{ + float depth = Depth[st]; + float dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); +#ifdef UNITY_REVERSED_Z + if (depth == 0) dist = 1e5; +#else + if (depth == 1) dist = 1e5; +#endif + LinearZ[st] = dist; + return dist; +} +#endif + + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(main) + +#else + +[numthreads(8, 8, 1)] +void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + uint2 startST = Gid.xy << 4 | GTid.xy; + uint destIdx = GTid.y << 4 | GTid.x; + g_CacheW[destIdx + 0 ] = Linearize(startST | uint2(0, 0)); + g_CacheW[destIdx + 8 ] = Linearize(startST | uint2(8, 0)); + g_CacheW[destIdx + 128] = Linearize(startST | uint2(0, 8)); + g_CacheW[destIdx + 136] = Linearize(startST | uint2(8, 8)); + + GroupMemoryBarrierWithGroupSync(); + + uint ldsIndex = (GTid.x << 1) | (GTid.y << 5); + + #ifdef MSAA + float2 w1 = g_CacheW[ldsIndex]; + #else + float w1 = g_CacheW[ldsIndex]; + #endif + uint2 st = DTid.xy; + uint slice = ((st.x & 3) | (st.y << 2)) & 15; + DS2x[st] = w1; + DS2xAtlas[uint3(st >> 2, slice)] = w1; + + if ((GI & 011) == 0) + { + st = DTid.xy >> 1; + slice = ((st.x & 3) | (st.y << 2)) & 15; + DS4x[st] = w1; + DS4xAtlas[uint3(st >> 2, slice)] = w1; + } + +} + +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta new file mode 100644 index 0000000..5f92087 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4c63bc487e6c29a4a99f85a6c47b292b +timeCreated: 1503305129 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute new file mode 100644 index 0000000..e94c02d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute @@ -0,0 +1,76 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVODownsample2 main=MultiScaleVODownsample2 +#pragma kernel MultiScaleVODownsample2_MSAA main=MultiScaleVODownsample2_MSAA MSAA + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +#ifdef MSAA +Texture2D DS4x; +RWTexture2D DS8x; +RWTexture2DArray DS8xAtlas; +RWTexture2D DS16x; +RWTexture2DArray DS16xAtlas; +#else +Texture2D DS4x; +RWTexture2D DS8x; +RWTexture2DArray DS8xAtlas; +RWTexture2D DS16x; +RWTexture2DArray DS16xAtlas; +#endif + + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(main) + +#else + +[numthreads(8, 8, 1)] +void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + #ifdef MSAA + float2 m1 = DS4x[DTid.xy << 1]; + #else + float m1 = DS4x[DTid.xy << 1]; + #endif + + uint2 st = DTid.xy; + uint2 stAtlas = st >> 2; + uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; + DS8x[st] = m1; + DS8xAtlas[uint3(stAtlas, stSlice)] = m1; + + if ((GI & 011) == 0) + { + uint2 st = DTid.xy >> 1; + uint2 stAtlas = st >> 2; + uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; + DS16x[st] = m1; + DS16xAtlas[uint3(stAtlas, stSlice)] = m1; + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta new file mode 100644 index 0000000..46306dc --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e4d3e4779e48a374f91d48d4c0aedb7b +timeCreated: 1503305163 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute new file mode 100644 index 0000000..f4cab26 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute @@ -0,0 +1,296 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVORender MAIN=MultiScaleVORender +#pragma kernel MultiScaleVORender_interleaved MAIN=MultiScaleVORender_interleaved INTERLEAVE_RESULT +#pragma kernel MultiScaleVORender_MSAA MAIN=MultiScaleVORender_MSAA MSAA +#pragma kernel MultiScaleVORender_MSAA_interleaved MAIN=MultiScaleVORender_MSAA_interleaved MSAA INTERLEAVE_RESULT + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +#ifndef INTERLEAVE_RESULT +#define WIDE_SAMPLING 1 +#endif + +#if WIDE_SAMPLING +// 32x32 cache size: the 16x16 in the center forms the area of focus with the 8-pixel perimeter used for wide gathering. +#define TILE_DIM 32 +#define THREAD_COUNT_X 16 +#define THREAD_COUNT_Y 16 +#else +// 16x16 cache size: the 8x8 in the center forms the area of focus with the 4-pixel perimeter used for gathering. +#define TILE_DIM 16 +#define THREAD_COUNT_X 8 +#define THREAD_COUNT_Y 8 +#endif + + +#ifdef MSAA + // Input Textures + #ifdef INTERLEAVE_RESULT + Texture2DArray DepthTex; + #else + Texture2D DepthTex; + #endif + + // Output texture + RWTexture2D Occlusion; + + // Shared memory + groupshared float2 DepthSamples[TILE_DIM * TILE_DIM]; +#else + // Input Textures + #ifdef INTERLEAVE_RESULT + Texture2DArray DepthTex; + #else + Texture2D DepthTex; + #endif + + // Output texture + RWTexture2D Occlusion; + + // Shared memory + groupshared float DepthSamples[TILE_DIM * TILE_DIM]; +#endif + +SamplerState samplerDepthTex; + +CBUFFER_START(CB1) + float4 gInvThicknessTable[3]; + float4 gSampleWeightTable[3]; + float4 gInvSliceDimension; + float3 AdditionalParams; +CBUFFER_END + +#define gRejectFadeoff AdditionalParams.x +#define gIntensity AdditionalParams.y +#define zBias AdditionalParams.z + +#ifdef MSAA +float2 TestSamplePair(float frontDepth, float2 invRange, uint base, int offset) +{ + // "Disocclusion" measures the penetration distance of the depth sample within the sphere. + // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere + // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere + float2 disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; + float2 disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; + + float2 pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); + float2 pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); + + return saturate( + clamp(disocclusion1, pseudoDisocclusion2, 1.0) + + clamp(disocclusion2, pseudoDisocclusion1, 1.0) - + pseudoDisocclusion1 * pseudoDisocclusion2); +} + +float2 TestSamples(uint centerIdx, uint x, uint y, float2 invDepth, float invThickness) +{ +#if WIDE_SAMPLING + x <<= 1; + y <<= 1; +#endif + + float2 invRange = invThickness * invDepth; + float frontDepth = invThickness - 0.5; + + if (y == 0) + { + // Axial + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) + ); + } + else if (x == y) + { + // Diagonal + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) + ); + } + else + { + // L-Shaped + return 0.25 * ( + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) + ); + } +} +#else +float TestSamplePair(float frontDepth, float invRange, uint base, int offset) +{ + // "Disocclusion" measures the penetration distance of the depth sample within the sphere. + // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere + // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere + float disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; + float disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; + + float pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); + float pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); + + return saturate( + clamp(disocclusion1, pseudoDisocclusion2, 1.0) + + clamp(disocclusion2, pseudoDisocclusion1, 1.0) - + pseudoDisocclusion1 * pseudoDisocclusion2); +} + +float TestSamples(uint centerIdx, uint x, uint y, float invDepth, float invThickness) +{ +#if WIDE_SAMPLING + x <<= 1; + y <<= 1; +#endif + + float invRange = invThickness * invDepth; + float frontDepth = invThickness - 0.5; + + if (y == 0) + { + // Axial + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) + ); + } + else if (x == y) + { + // Diagonal + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) + ); + } + else + { + // L-Shaped + return 0.25 * ( + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) + ); + } +} +#endif + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(THREAD_COUNT_X, THREAD_COUNT_Y, 1)] +void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ +#if WIDE_SAMPLING + float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 7) * gInvSliceDimension.xy; +#else + float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 3) * gInvSliceDimension.xy; +#endif + +#ifdef MSAA + // Fetch four depths and store them in LDS +#ifdef INTERLEAVE_RESULT + float4 depths0 = DepthTex.GatherRed(samplerDepthTex, float3(QuadCenterUV, DTid.z)); + float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, float3(QuadCenterUV, DTid.z)); +#else + float4 depths0 = DepthTex.GatherRed(samplerDepthTex, QuadCenterUV); + float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, QuadCenterUV); +#endif + int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; + DepthSamples[destIdx] = float2(depths0.w, depths1.w); + DepthSamples[destIdx + 1] = float2(depths0.z, depths1.z); + DepthSamples[destIdx + TILE_DIM] = float2(depths0.x, depths1.x); + DepthSamples[destIdx + TILE_DIM + 1] = float2(depths0.y, depths1.y); +#else +#ifdef INTERLEAVE_RESULT + float4 depths = DepthTex.Gather(samplerDepthTex, float3(QuadCenterUV, DTid.z)); +#else + float4 depths = DepthTex.Gather(samplerDepthTex, QuadCenterUV); +#endif + int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; + DepthSamples[destIdx] = depths.w; + DepthSamples[destIdx + 1] = depths.z; + DepthSamples[destIdx + TILE_DIM] = depths.x; + DepthSamples[destIdx + TILE_DIM + 1] = depths.y; +#endif + + GroupMemoryBarrierWithGroupSync(); + +#if WIDE_SAMPLING + uint thisIdx = GTid.x + GTid.y * TILE_DIM + 8 * TILE_DIM + 8; +#else + uint thisIdx = GTid.x + GTid.y * TILE_DIM + 4 * TILE_DIM + 4; +#endif + +#ifdef MSAA + const float2 invThisDepth = float2(1.0 / (DepthSamples[thisIdx].x - zBias), 1.0 / (DepthSamples[thisIdx].y - zBias)); + float2 ao = 0.0; +#else + const float invThisDepth = 1.0 / (DepthSamples[thisIdx] - zBias); + float ao = 0.0; +#endif + + +//#define SAMPLE_EXHAUSTIVELY + +#ifdef SAMPLE_EXHAUSTIVELY + // 68 samples: sample all cells in *within* a circular radius of 5 + ao += gSampleWeightTable[0].x * TestSamples(thisIdx, 1, 0, invThisDepth, gInvThicknessTable[0].x); + ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); + ao += gSampleWeightTable[0].z * TestSamples(thisIdx, 3, 0, invThisDepth, gInvThicknessTable[0].z); + ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); + ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); + ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); + ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); + ao += gSampleWeightTable[1].y * TestSamples(thisIdx, 1, 2, invThisDepth, gInvThicknessTable[1].y); + ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); + ao += gSampleWeightTable[1].w * TestSamples(thisIdx, 1, 4, invThisDepth, gInvThicknessTable[1].w); + ao += gSampleWeightTable[2].y * TestSamples(thisIdx, 2, 3, invThisDepth, gInvThicknessTable[2].y); + ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); +#else // SAMPLE_CHECKER + // 36 samples: sample every-other cell in a checker board pattern + ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); + ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); + ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); + ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); + ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); + ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); + ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); +#endif + +#ifdef INTERLEAVE_RESULT + uint2 OutPixel = DTid.xy << 2 | uint2(DTid.z & 3, DTid.z >> 2); +#else + uint2 OutPixel = DTid.xy; +#endif + Occlusion[OutPixel] = lerp(1, ao, gIntensity); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta new file mode 100644 index 0000000..133cf43 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34a460e8a2e66c243a9c12024e5a798d +timeCreated: 1503305142 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute new file mode 100644 index 0000000..6835f4e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute @@ -0,0 +1,432 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVOUpSample MAIN=MultiScaleVOUpSample +#pragma kernel MultiScaleVOUpSample_invert MAIN=MultiScaleVOUpSample_invert INVERT +#pragma kernel MultiScaleVOUpSample_premin MAIN=MultiScaleVOUpSample_premin COMBINE_LOWER_RESOLUTIONS +#pragma kernel MultiScaleVOUpSample_blendout MAIN=MultiScaleVOUpSample_blendout BLEND_WITH_HIGHER_RESOLUTION +#pragma kernel MultiScaleVOUpSample_premin_blendout MAIN=MultiScaleVOUpSample_premin_blendout COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION + +#pragma kernel MultiScaleVOUpSample_MSAA MAIN=MultiScaleVOUpSample_MSAA +#pragma kernel MultiScaleVOUpSample_MSAA_invert MAIN=MultiScaleVOUpSample_MSAA_invert MSAA INVERT +#pragma kernel MultiScaleVOUpSample_MSAA_premin MAIN=MultiScaleVOUpSample_MSAA_premin MSAA COMBINE_LOWER_RESOLUTIONS +#pragma kernel MultiScaleVOUpSample_MSAA_blendout MAIN=MultiScaleVOUpSample_MSAA_blendout MSAA BLEND_WITH_HIGHER_RESOLUTION +#pragma kernel MultiScaleVOUpSample_MSAA_premin_blendout MAIN=MultiScaleVOUpSample_MSAA_premin_blendout MSAA COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + +#ifdef MSAA + Texture2D LoResDB; SamplerState samplerLoResDB; + Texture2D HiResDB; SamplerState samplerHiResDB; + Texture2D LoResAO1; SamplerState samplerLoResAO1; + #ifdef COMBINE_LOWER_RESOLUTIONS + Texture2D LoResAO2; SamplerState samplerLoResAO2; + #endif + #ifdef BLEND_WITH_HIGHER_RESOLUTION + Texture2D HiResAO; SamplerState samplerHiResAO; + #endif + // Output textures + RWTexture2D AoResult; + + // Shared memory + groupshared float2 DepthCache[256]; + groupshared float2 AOCache1[256]; + groupshared float2 AOCache2[256]; +#else + // Input textures + Texture2D LoResDB; SamplerState samplerLoResDB; + Texture2D HiResDB; SamplerState samplerHiResDB; + Texture2D LoResAO1; SamplerState samplerLoResAO1; + #ifdef COMBINE_LOWER_RESOLUTIONS + Texture2D LoResAO2; SamplerState samplerLoResAO2; + #endif + #ifdef BLEND_WITH_HIGHER_RESOLUTION + Texture2D HiResAO; SamplerState samplerHiResAO; + #endif + + // Ouput textures + RWTexture2D AoResult; + + // Shared memory + groupshared float DepthCache[256]; + groupshared float AOCache1[256]; + groupshared float AOCache2[256]; + +#endif + +CBUFFER_START(CB1) + float4 InvLowResolution; + float4 InvHighResolution; + float4 AdditionalParams; +CBUFFER_END + +#define NoiseFilterStrength AdditionalParams.x +#define StepSize AdditionalParams.y +#define kBlurTolerance AdditionalParams.z +#define kUpsampleTolerance AdditionalParams.w + +void PrefetchData(uint index, float2 uv) +{ +#ifdef MSAA + float4 AO1_0 = LoResAO1.GatherRed(samplerLoResAO1, uv); + float4 AO1_1 = LoResAO1.GatherGreen(samplerLoResAO1, uv); + +#ifdef COMBINE_LOWER_RESOLUTIONS + AO1_0 = min(AO1_0, LoResAO2.GatherRed(samplerLoResAO2, uv)); + AO1_1 = min(AO1_1, LoResAO2.GatherGreen(samplerLoResAO2, uv)); +#endif + + AOCache1[index] = float2(AO1_0.w, AO1_1.w); + AOCache1[index + 1] = float2(AO1_0.z, AO1_1.z); + AOCache1[index + 16] = float2(AO1_0.x, AO1_1.x); + AOCache1[index + 17] = float2(AO1_0.y, AO1_1.y); + + float4 ID_0 = 1.0 / LoResDB.GatherRed(samplerLoResDB, uv); + float4 ID_1 = 1.0 / LoResDB.GatherGreen(samplerLoResDB, uv); + DepthCache[index] = float2(ID_0.w, ID_1.w); + DepthCache[index + 1] = float2(ID_0.z, ID_1.z); + DepthCache[index + 16] = float2(ID_0.x, ID_1.x); + DepthCache[index + 17] = float2(ID_0.y, ID_1.y); +#else + float4 AO1 = LoResAO1.Gather(samplerLoResAO1, uv); + +#ifdef COMBINE_LOWER_RESOLUTIONS + AO1 = min(AO1, LoResAO2.Gather(samplerLoResAO2, uv)); +#endif + + AOCache1[index] = AO1.w; + AOCache1[index + 1] = AO1.z; + AOCache1[index + 16] = AO1.x; + AOCache1[index + 17] = AO1.y; + + float4 ID = 1.0 / LoResDB.Gather(samplerLoResDB, uv); + DepthCache[index] = ID.w; + DepthCache[index + 1] = ID.z; + DepthCache[index + 16] = ID.x; + DepthCache[index + 17] = ID.y; +#endif +} + +float SmartBlur(float a, float b, float c, float d, float e, bool Left, bool Middle, bool Right) +{ + b = Left | Middle ? b : c; + a = Left ? a : b; + d = Right | Middle ? d : c; + e = Right ? e : d; + return ((a + e) / 2.0 + b + c + d) / 4.0; +} + +bool CompareDeltas(float d1, float d2, float l1, float l2) +{ + float temp = d1 * d2 + StepSize; + return temp * temp > l1 * l2 * kBlurTolerance; +} + +void BlurHorizontally(uint leftMostIndex) +{ +#ifdef MSAA + float2 a0 = AOCache1[leftMostIndex]; + float2 a1 = AOCache1[leftMostIndex + 1]; + float2 a2 = AOCache1[leftMostIndex + 2]; + float2 a3 = AOCache1[leftMostIndex + 3]; + float2 a4 = AOCache1[leftMostIndex + 4]; + float2 a5 = AOCache1[leftMostIndex + 5]; + float2 a6 = AOCache1[leftMostIndex + 6]; + + float2 d0 = DepthCache[leftMostIndex]; + float2 d1 = DepthCache[leftMostIndex + 1]; + float2 d2 = DepthCache[leftMostIndex + 2]; + float2 d3 = DepthCache[leftMostIndex + 3]; + float2 d4 = DepthCache[leftMostIndex + 4]; + float2 d5 = DepthCache[leftMostIndex + 5]; + float2 d6 = DepthCache[leftMostIndex + 6]; + + float2 d01 = d1 - d0; + float2 d12 = d2 - d1; + float2 d23 = d3 - d2; + float2 d34 = d4 - d3; + float2 d45 = d5 - d4; + float2 d56 = d6 - d5; + + float2 l01 = d01 * d01 + StepSize; + float2 l12 = d12 * d12 + StepSize; + float2 l23 = d23 * d23 + StepSize; + float2 l34 = d34 * d34 + StepSize; + float2 l45 = d45 * d45 + StepSize; + float2 l56 = d56 * d56 + StepSize; + + bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); + bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); + bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); + bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); + bool c46_0 = CompareDeltas(d45.x, d56.x, l45.x, l56.x); + + bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); + bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); + bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); + bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); + bool c46_1 = CompareDeltas(d45.y, d56.y, l45.y, l56.y); + + AOCache2[leftMostIndex] = float2(SmartBlur(a0.x.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); + AOCache2[leftMostIndex + 1] = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); + AOCache2[leftMostIndex + 2] = float2(SmartBlur(a2.x, a3.x, a4.x, a5.x, a6.x, c24_0, c35_0, c46_0), SmartBlur(a2.y, a3.y, a4.y, a5.y, a6.y, c24_1, c35_1, c46_1)); +#else + float a0 = AOCache1[leftMostIndex]; + float a1 = AOCache1[leftMostIndex + 1]; + float a2 = AOCache1[leftMostIndex + 2]; + float a3 = AOCache1[leftMostIndex + 3]; + float a4 = AOCache1[leftMostIndex + 4]; + float a5 = AOCache1[leftMostIndex + 5]; + float a6 = AOCache1[leftMostIndex + 6]; + + float d0 = DepthCache[leftMostIndex]; + float d1 = DepthCache[leftMostIndex + 1]; + float d2 = DepthCache[leftMostIndex + 2]; + float d3 = DepthCache[leftMostIndex + 3]; + float d4 = DepthCache[leftMostIndex + 4]; + float d5 = DepthCache[leftMostIndex + 5]; + float d6 = DepthCache[leftMostIndex + 6]; + + float d01 = d1 - d0; + float d12 = d2 - d1; + float d23 = d3 - d2; + float d34 = d4 - d3; + float d45 = d5 - d4; + float d56 = d6 - d5; + + float l01 = d01 * d01 + StepSize; + float l12 = d12 * d12 + StepSize; + float l23 = d23 * d23 + StepSize; + float l34 = d34 * d34 + StepSize; + float l45 = d45 * d45 + StepSize; + float l56 = d56 * d56 + StepSize; + + bool c02 = CompareDeltas(d01, d12, l01, l12); + bool c13 = CompareDeltas(d12, d23, l12, l23); + bool c24 = CompareDeltas(d23, d34, l23, l34); + bool c35 = CompareDeltas(d34, d45, l34, l45); + bool c46 = CompareDeltas(d45, d56, l45, l56); + + AOCache2[leftMostIndex] = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); + AOCache2[leftMostIndex + 1] = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); + AOCache2[leftMostIndex + 2] = SmartBlur(a2, a3, a4, a5, a6, c24, c35, c46); +#endif +} + +void BlurVertically(uint topMostIndex) +{ +#ifdef MSAA + float2 a0 = AOCache2[topMostIndex]; + float2 a1 = AOCache2[topMostIndex + 16]; + float2 a2 = AOCache2[topMostIndex + 32]; + float2 a3 = AOCache2[topMostIndex + 48]; + float2 a4 = AOCache2[topMostIndex + 64]; + float2 a5 = AOCache2[topMostIndex + 80]; + + float2 d0 = DepthCache[topMostIndex + 2]; + float2 d1 = DepthCache[topMostIndex + 18]; + float2 d2 = DepthCache[topMostIndex + 34]; + float2 d3 = DepthCache[topMostIndex + 50]; + float2 d4 = DepthCache[topMostIndex + 66]; + float2 d5 = DepthCache[topMostIndex + 82]; + + float2 d01 = d1 - d0; + float2 d12 = d2 - d1; + float2 d23 = d3 - d2; + float2 d34 = d4 - d3; + float2 d45 = d5 - d4; + + float2 l01 = d01 * d01 + StepSize; + float2 l12 = d12 * d12 + StepSize; + float2 l23 = d23 * d23 + StepSize; + float2 l34 = d34 * d34 + StepSize; + float2 l45 = d45 * d45 + StepSize; + + bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); + bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); + bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); + bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); + + bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); + bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); + bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); + bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); + + float2 aoResult1 = float2(SmartBlur(a0.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); + float2 aoResult2 = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); + + AOCache1[topMostIndex] = aoResult1; + AOCache1[topMostIndex + 16] = aoResult2; +#else + float a0 = AOCache2[topMostIndex]; + float a1 = AOCache2[topMostIndex + 16]; + float a2 = AOCache2[topMostIndex + 32]; + float a3 = AOCache2[topMostIndex + 48]; + float a4 = AOCache2[topMostIndex + 64]; + float a5 = AOCache2[topMostIndex + 80]; + + float d0 = DepthCache[topMostIndex + 2]; + float d1 = DepthCache[topMostIndex + 18]; + float d2 = DepthCache[topMostIndex + 34]; + float d3 = DepthCache[topMostIndex + 50]; + float d4 = DepthCache[topMostIndex + 66]; + float d5 = DepthCache[topMostIndex + 82]; + + float d01 = d1 - d0; + float d12 = d2 - d1; + float d23 = d3 - d2; + float d34 = d4 - d3; + float d45 = d5 - d4; + + float l01 = d01 * d01 + StepSize; + float l12 = d12 * d12 + StepSize; + float l23 = d23 * d23 + StepSize; + float l34 = d34 * d34 + StepSize; + float l45 = d45 * d45 + StepSize; + + bool c02 = CompareDeltas(d01, d12, l01, l12); + bool c13 = CompareDeltas(d12, d23, l12, l23); + bool c24 = CompareDeltas(d23, d34, l23, l34); + bool c35 = CompareDeltas(d34, d45, l34, l45); + + float aoResult1 = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); + float aoResult2 = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); + + AOCache1[topMostIndex] = aoResult1; + AOCache1[topMostIndex + 16] = aoResult2; +#endif +} + +// We essentially want 5 weights: 4 for each low-res pixel and 1 to blend in when none of the 4 really +// match. The filter strength is 1 / DeltaZTolerance. So a tolerance of 0.01 would yield a strength of 100. +// Note that a perfect match of low to high depths would yield a weight of 10^6, completely superceding any +// noise filtering. The noise filter is intended to soften the effects of shimmering when the high-res depth +// buffer has a lot of small holes in it causing the low-res depth buffer to inaccurately represent it. +float BilateralUpsample(float HiDepth, float HiAO, float4 LowDepths, float4 LowAO) +{ + float4 weights = float4(9, 3, 1, 3) / (abs(HiDepth - LowDepths) + kUpsampleTolerance); + float TotalWeight = dot(weights, 1) + NoiseFilterStrength; + float WeightedSum = dot(LowAO, weights) + NoiseFilterStrength;// * HiAO; + return HiAO * WeightedSum / TotalWeight; +} + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(8, 8, 1)] +void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + // + // Load 4 pixels per thread into LDS to fill the 16x16 LDS cache with depth and AO + // + PrefetchData(GTid.x << 1 | GTid.y << 5, int2(DTid.xy + GTid.xy - 2) * InvLowResolution.xy); + GroupMemoryBarrierWithGroupSync(); + + // Goal: End up with a 9x9 patch that is blurred so we can upsample. Blur radius is 2 pixels, so start with 13x13 area. + + // + // Horizontally blur the pixels. 13x13 -> 9x13 + // + if (GI < 39) + BlurHorizontally((GI / 3) * 16 + (GI % 3) * 3); + GroupMemoryBarrierWithGroupSync(); + + // + // Vertically blur the pixels. 9x13 -> 9x9 + // + if (GI < 45) + BlurVertically((GI / 9) * 32 + GI % 9); + GroupMemoryBarrierWithGroupSync(); + + // + // Bilateral upsample + // + uint Idx0 = GTid.x + GTid.y * 16; + #ifdef MSAA + float4 LoSSAOs0 = float4(AOCache1[Idx0 + 16].x, AOCache1[Idx0 + 17].x, AOCache1[Idx0 + 1].x, AOCache1[Idx0].x); + float4 LoSSAOs1 = float4(AOCache1[Idx0 + 16].y, AOCache1[Idx0 + 17].y, AOCache1[Idx0 + 1].y, AOCache1[Idx0].y); + #else + float4 LoSSAOs = float4(AOCache1[Idx0 + 16], AOCache1[Idx0 + 17], AOCache1[Idx0 + 1], AOCache1[Idx0]); + #endif + + // We work on a quad of pixels at once because then we can gather 4 each of high and low-res depth values + float2 UV0 = DTid.xy * InvLowResolution.xy; + float2 UV1 = DTid.xy * 2 * InvHighResolution.xy; + +#ifdef MSAA + #ifdef BLEND_WITH_HIGHER_RESOLUTION + float4 HiSSAOs0 = HiResAO.GatherRed(samplerHiResAO, UV1); + float4 HiSSAOs1 = HiResAO.GatherGreen(samplerHiResAO, UV1); + #else + float4 HiSSAOs0 = 1.0; + float4 HiSSAOs1 = 1.0; + #endif + float4 LoDepths0 = LoResDB.GatherRed(samplerLoResDB, UV0); + float4 LoDepths1 = LoResDB.GatherGreen(samplerLoResDB, UV0); + float4 HiDepths0 = HiResDB.GatherRed(samplerHiResDB, UV1); + float4 HiDepths1 = HiResDB.GatherGreen(samplerHiResDB, UV1); + + int2 OutST = DTid.xy << 1; + + #ifdef INVERT + AoResult[OutST + int2(-1, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), 1.0 - BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); + AoResult[OutST + int2( 0, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), 1.0 - BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); + AoResult[OutST + int2( 0, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), 1.0 - BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); + AoResult[OutST + int2(-1, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz), 1.0 - BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); + #else + AoResult[OutST + int2(-1, 0)] = float2(BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); + AoResult[OutST + int2( 0, 0)] = float2(BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); + AoResult[OutST + int2( 0, -1)] = float2(BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); + AoResult[OutST + int2(-1, -1)] = float2(BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz),BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); + #endif +#else + #ifdef BLEND_WITH_HIGHER_RESOLUTION + float4 HiSSAOs = HiResAO.Gather(samplerHiResAO, UV1); + #else + float4 HiSSAOs = 1.0; + #endif + float4 LoDepths = LoResDB.Gather(samplerLoResDB, UV0); + float4 HiDepths = HiResDB.Gather(samplerHiResDB, UV1); + + int2 OutST = DTid.xy << 1; + + #ifdef INVERT + AoResult[OutST + int2(-1, 0)] = 1.0 - BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); + AoResult[OutST + int2( 0, 0)] = 1.0 - BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); + AoResult[OutST + int2( 0, -1)] = 1.0 - BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); + AoResult[OutST + int2(-1, -1)] = 1.0 - BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); + #else + AoResult[OutST + int2(-1, 0)] = BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); + AoResult[OutST + int2( 0, 0)] = BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); + AoResult[OutST + int2( 0, -1)] = BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); + AoResult[OutST + int2(-1, -1)] = BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); + #endif +#endif +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta new file mode 100644 index 0000000..aba8d28 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 600d6212b59bb40409d19d750b5fd1e9 +timeCreated: 1503305155 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl new file mode 100644 index 0000000..8857b39 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl @@ -0,0 +1,428 @@ +#ifndef UNITY_POSTFX_AMBIENT_OCCLUSION +#define UNITY_POSTFX_AMBIENT_OCCLUSION + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Fog.hlsl" + +// -------- +// Options for further customization +// -------- + +// By default, a 5-tap Gaussian with the linear sampling technique is used +// in the bilateral noise filter. It can be replaced with a 7-tap Gaussian +// with adaptive sampling by enabling the macro below. Although the +// differences are not noticeable in most cases, it may provide preferable +// results with some special usage (e.g. NPR without textureing). +// #define BLUR_HIGH_QUALITY + +// By default, a fixed sampling pattern is used in the AO estimator. Although +// this gives preferable results in most cases, a completely random sampling +// pattern could give aesthetically better results. Disable the macro below +// to use such a random pattern instead of the fixed one. +#define FIX_SAMPLING_PATTERN + +// The SampleNormal function normalizes samples from G-buffer because +// they're possibly unnormalized. We can eliminate this if it can be said +// that there is no wrong shader that outputs unnormalized normals. +// #define VALIDATE_NORMALS + +// The constant below determines the contrast of occlusion. This allows +// users to control over/under occlusion. At the moment, this is not exposed +// to the editor because it's rarely useful. +static const float kContrast = 0.6; + +// The constant below controls the geometry-awareness of the bilateral +// filter. The higher value, the more sensitive it is. +static const float kGeometryCoeff = 0.8; + +// The constants below are used in the AO estimator. Beta is mainly used +// for suppressing self-shadowing noise, and Epsilon is used to prevent +// calculation underflow. See the paper (Morgan 2011 http://goo.gl/2iz3P) +// for further details of these constants. +static const float kBeta = 0.002; + +// -------- + +// System built-in variables +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); +TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); +TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); + +float4 _MainTex_TexelSize; + +float4 _AOParams; +float3 _AOColor; + +// Sample count +#if !defined(SHADER_API_GLES) + #define SAMPLE_COUNT _AOParams.w +#else +// GLES2: In many cases, dynamic looping is not supported. + #define SAMPLE_COUNT 3 +#endif + +// Source texture properties +TEXTURE2D_SAMPLER2D(_SAOcclusionTexture, sampler_SAOcclusionTexture); +float4 _SAOcclusionTexture_TexelSize; + +// Other parameters +#define INTENSITY _AOParams.x +#define RADIUS _AOParams.y +#define DOWNSAMPLE _AOParams.z + +// Accessors for packed AO/normal buffer +half4 PackAONormal(half ao, half3 n) +{ + return half4(ao, n * 0.5 + 0.5); +} + +half GetPackedAO(half4 p) +{ + return p.r; +} + +half3 GetPackedNormal(half4 p) +{ + return p.gba * 2.0 - 1.0; +} + +// Boundary check for depth sampler +// (returns a very large value if it lies out of bounds) +float CheckBounds(float2 uv, float d) +{ + float ob = any(uv < 0) + any(uv > 1); +#if defined(UNITY_REVERSED_Z) + ob += (d <= 0.00001); +#else + ob += (d >= 0.99999); +#endif + return ob * 1e8; +} + +// Depth/normal sampling functions +float SampleDepth(float2 uv) +{ + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0)); + return d * _ProjectionParams.z + CheckBounds(uv, d); +} + +float3 SampleNormal(float2 uv) +{ +#if defined(SOURCE_GBUFFER) + float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, uv).xyz; + norm = norm * 2 - any(norm); // gets (0,0,0) when norm == 0 + norm = mul((float3x3)unity_WorldToCamera, norm); +#if defined(VALIDATE_NORMALS) + norm = normalize(norm); +#endif + return norm; +#else + float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, uv); + return DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); +#endif +} + +float SampleDepthNormal(float2 uv, out float3 normal) +{ + normal = SampleNormal(UnityStereoTransformScreenSpaceTex(uv)); + return SampleDepth(uv); +} + +// Normal vector comparer (for geometry-aware weighting) +half CompareNormal(half3 d1, half3 d2) +{ + return smoothstep(kGeometryCoeff, 1.0, dot(d1, d2)); +} + +// Trigonometric function utility +float2 CosSin(float theta) +{ + float sn, cs; + sincos(theta, sn, cs); + return float2(cs, sn); +} + +// Pseudo random number generator with 2D coordinates +float UVRandom(float u, float v) +{ + float f = dot(float2(12.9898, 78.233), float2(u, v)); + return frac(43758.5453 * sin(f)); +} + +// Check if the camera is perspective. +// (returns 1.0 when orthographic) +float CheckPerspective(float x) +{ + return lerp(x, 1.0, unity_OrthoParams.w); +} + +// Reconstruct view-space position from UV and depth. +// p11_22 = (unity_CameraProjection._11, unity_CameraProjection._22) +// p13_31 = (unity_CameraProjection._13, unity_CameraProjection._23) +float3 ReconstructViewPos(float2 uv, float depth, float2 p11_22, float2 p13_31) +{ + return float3((uv * 2.0 - 1.0 - p13_31) / p11_22 * CheckPerspective(depth), depth); +} + +// Sample point picker +float3 PickSamplePoint(float2 uv, float index) +{ + // Uniformaly distributed points on a unit sphere + // http://mathworld.wolfram.com/SpherePointPicking.html +#if defined(FIX_SAMPLING_PATTERN) + float gn = GradientNoise(uv * DOWNSAMPLE); + // FIXEME: This was added to avoid a NVIDIA driver issue. + // vvvvvvvvvvvv + float u = frac(UVRandom(0.0, index + uv.x * 1e-10) + gn) * 2.0 - 1.0; + float theta = (UVRandom(1.0, index + uv.x * 1e-10) + gn) * TWO_PI; +#else + float u = UVRandom(uv.x + _Time.x, uv.y + index) * 2.0 - 1.0; + float theta = UVRandom(-uv.x - _Time.x, uv.y + index) * TWO_PI; +#endif + float3 v = float3(CosSin(theta) * sqrt(1.0 - u * u), u); + // Make them distributed between [0, _Radius] + float l = sqrt((index + 1.0) / SAMPLE_COUNT) * RADIUS; + return v * l; +} + +// +// Distance-based AO estimator based on Morgan 2011 +// "Alchemy screen-space ambient obscurance algorithm" +// http://graphics.cs.williams.edu/papers/AlchemyHPG11/ +// +float4 FragAO(VaryingsDefault i) : SV_Target +{ + float2 uv = i.texcoord; + + // Parameters used in coordinate conversion + float3x3 proj = (float3x3)unity_CameraProjection; + float2 p11_22 = float2(unity_CameraProjection._11, unity_CameraProjection._22); + float2 p13_31 = float2(unity_CameraProjection._13, unity_CameraProjection._23); + + // View space normal and depth + float3 norm_o; + float depth_o = SampleDepthNormal(uv, norm_o); + + // Reconstruct the view-space position. + float3 vpos_o = ReconstructViewPos(uv, depth_o, p11_22, p13_31); + + float ao = 0.0; + + for (int s = 0; s < int(SAMPLE_COUNT); s++) + { + // Sample point +#if defined(SHADER_API_D3D11) + // This 'floor(1.0001 * s)' operation is needed to avoid a NVidia shader issue. This issue + // is only observed on DX11. + float3 v_s1 = PickSamplePoint(uv, floor(1.0001 * s)); +#else + float3 v_s1 = PickSamplePoint(uv, s); +#endif + + v_s1 = faceforward(v_s1, -norm_o, v_s1); + float3 vpos_s1 = vpos_o + v_s1; + + // Reproject the sample point + float3 spos_s1 = mul(proj, vpos_s1); + float2 uv_s1_01 = (spos_s1.xy / CheckPerspective(vpos_s1.z) + 1.0) * 0.5; + + // Depth at the sample point + float depth_s1 = SampleDepth(uv_s1_01); + + // Relative position of the sample point + float3 vpos_s2 = ReconstructViewPos(uv_s1_01, depth_s1, p11_22, p13_31); + float3 v_s2 = vpos_s2 - vpos_o; + + // Estimate the obscurance value + float a1 = max(dot(v_s2, norm_o) - kBeta * depth_o, 0.0); + float a2 = dot(v_s2, v_s2) + EPSILON; + ao += a1 / a2; + } + + ao *= RADIUS; // Intensity normalization + + // Apply other parameters. + ao = PositivePow(ao * INTENSITY / SAMPLE_COUNT, kContrast); + + // Apply fog when enabled (forward-only) +#if (APPLY_FORWARD_FOG) + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + d = ComputeFogDistance(d); + ao *= ComputeFog(d); +#endif + + return PackAONormal(ao, norm_o); +} + +// Geometry-aware separable bilateral filter +float4 FragBlur(VaryingsDefault i) : SV_Target +{ +#if defined(BLUR_HORIZONTAL) + // Horizontal pass: Always use 2 texels interval to match to + // the dither pattern. + float2 delta = float2(_MainTex_TexelSize.x * 2.0, 0.0); +#else + // Vertical pass: Apply _Downsample to match to the dither + // pattern in the original occlusion buffer. + float2 delta = float2(0.0, _MainTex_TexelSize.y / DOWNSAMPLE * 2.0); +#endif + +#if defined(BLUR_HIGH_QUALITY) + + // High quality 7-tap Gaussian with adaptive sampling + + half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta)); + half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta)); + half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 2.0)); + half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 2.0)); + half4 p3a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); + half4 p3b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); + +#if defined(BLUR_SAMPLE_CENTER_NORMAL) + half3 n0 = SampleNormal(i.texcoordStereo); +#else + half3 n0 = GetPackedNormal(p0); +#endif + + half w0 = 0.37004405286; + half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.31718061674; + half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.31718061674; + half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.19823788546; + half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.19823788546; + half w3a = CompareNormal(n0, GetPackedNormal(p3a)) * 0.11453744493; + half w3b = CompareNormal(n0, GetPackedNormal(p3b)) * 0.11453744493; + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1a) * w1a; + s += GetPackedAO(p1b) * w1b; + s += GetPackedAO(p2a) * w2a; + s += GetPackedAO(p2b) * w2b; + s += GetPackedAO(p3a) * w3a; + s += GetPackedAO(p3b) * w3b; + + s /= w0 + w1a + w1b + w2a + w2b + w3a + w3b; + +#else + + // Fater 5-tap Gaussian with linear sampling + half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 1.3846153846)); + half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 1.3846153846)); + half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); + half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); + +#if defined(BLUR_SAMPLE_CENTER_NORMAL) + half3 n0 = SampleNormal(i.texcoordStereo); +#else + half3 n0 = GetPackedNormal(p0); +#endif + + half w0 = 0.2270270270; + half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.3162162162; + half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.3162162162; + half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.0702702703; + half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.0702702703; + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1a) * w1a; + s += GetPackedAO(p1b) * w1b; + s += GetPackedAO(p2a) * w2a; + s += GetPackedAO(p2b) * w2b; + + s /= w0 + w1a + w1b + w2a + w2b; + +#endif + + return PackAONormal(s, n0); +} + +// Gamma encoding (only needed in gamma lighting mode) +half EncodeAO(half x) +{ + #if UNITY_COLORSPACE_GAMMA + return 1.0 - max(LinearToSRGB(1.0 - saturate(x)), 0.0); + #else + return x; + #endif +} + +// Geometry-aware bilateral filter (single pass/small kernel) +half BlurSmall(TEXTURE2D_ARGS(tex, samp), float2 uv, float2 delta) +{ + half4 p0 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv)); + half4 p1 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, -delta.y))); + half4 p2 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, -delta.y))); + half4 p3 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, delta.y))); + half4 p4 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, delta.y))); + + half3 n0 = GetPackedNormal(p0); + + half w0 = 1.0; + half w1 = CompareNormal(n0, GetPackedNormal(p1)); + half w2 = CompareNormal(n0, GetPackedNormal(p2)); + half w3 = CompareNormal(n0, GetPackedNormal(p3)); + half w4 = CompareNormal(n0, GetPackedNormal(p4)); + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1) * w1; + s += GetPackedAO(p2) * w2; + s += GetPackedAO(p3) * w3; + s += GetPackedAO(p4) * w4; + + return s / (w0 + w1 + w2 + w3 + w4); +} + +// Final composition shader +float4 FragComposition(VaryingsDefault i) : SV_Target +{ + float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + ao = EncodeAO(ao); + return float4(ao * _AOColor, ao); +} + +#if !SHADER_API_GLES // Excluding the MRT pass under GLES2 + +struct CompositionOutput +{ + half4 gbuffer0 : SV_Target0; + half4 gbuffer3 : SV_Target1; +}; + +CompositionOutput FragCompositionGBuffer(VaryingsDefault i) +{ + // Workaround: _SAOcclusionTexture_Texelsize hasn't been set properly + // for some reasons. Use _ScreenParams instead. + float2 delta = (_ScreenParams.zw - 1.0) / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + + CompositionOutput o; + o.gbuffer0 = half4(0.0, 0.0, 0.0, ao); + o.gbuffer3 = half4((half3)EncodeAO(ao) * _AOColor, 0.0); + return o; +} + +#else + +float4 FragCompositionGBuffer(VaryingsDefault i) : SV_Target +{ + return (0.0).xxxx; +} + +#endif + +float4 FragDebugOverlay(VaryingsDefault i) : SV_Target +{ + float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + ao = EncodeAO(ao); + return float4(1.0 - ao.xxx, 1.0); +} + +#endif // UNITY_POSTFX_AMBIENT_OCCLUSION diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta new file mode 100644 index 0000000..6185c0e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e4b5af8727f8b8e49aa97c2e8e5d1a3d +timeCreated: 1498574653 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader new file mode 100644 index 0000000..0b70d7b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader @@ -0,0 +1,127 @@ +Shader "Hidden/PostProcessing/ScalableAO" +{ + HLSLINCLUDE + + #pragma exclude_renderers psp2 + #pragma target 3.0 + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Occlusion estimation with CameraDepthTexture + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragAO + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #define SOURCE_DEPTH + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 1 - Occlusion estimation with G-Buffer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragAO + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #define SOURCE_GBUFFER + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 2 - Separable blur (horizontal pass) with CameraDepthNormalsTexture + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define SOURCE_DEPTHNORMALS + #define BLUR_HORIZONTAL + #define BLUR_SAMPLE_CENTER_NORMAL + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 3 - Separable blur (horizontal pass) with G-Buffer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define SOURCE_GBUFFER + #define BLUR_HORIZONTAL + #define BLUR_SAMPLE_CENTER_NORMAL + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 4 - Separable blur (vertical pass) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define BLUR_VERTICAL + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 5 - Final composition + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragComposition + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 6 - Final composition (ambient only mode) + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCompositionGBuffer + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + + // 7 - Debug overlay + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.hlsl" + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta new file mode 100644 index 0000000..9990d32 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d7640629310e79646af0f46eb55ae466 +timeCreated: 1498574566 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl new file mode 100644 index 0000000..56f6813 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl @@ -0,0 +1,400 @@ +#ifndef UNITY_POSTFX_SSR +#define UNITY_POSTFX_SSR + +#include "UnityCG.cginc" +#include "UnityPBSLighting.cginc" +#include "UnityStandardBRDF.cginc" +#include "UnityStandardUtils.cginc" + +#define SSR_MINIMUM_ATTENUATION 0.275 +#define SSR_ATTENUATION_SCALE (1.0 - SSR_MINIMUM_ATTENUATION) + +#define SSR_VIGNETTE_INTENSITY _VignetteIntensity +#define SSR_VIGNETTE_SMOOTHNESS 5. + +#define SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD 1.0 + +#define SSR_FINAL_BLEND_STATIC_FACTOR 0.95 +#define SSR_FINAL_BLEND_DYNAMIC_FACTOR 0.7 + +#define SSR_ENABLE_CONTACTS 0 +#define SSR_KILL_FIREFLIES 0 + +// +// Helper structs +// +struct Ray +{ + float3 origin; + float3 direction; +}; + +struct Segment +{ + float3 start; + float3 end; + + float3 direction; +}; + +struct Result +{ + bool isHit; + + float2 uv; + float3 position; + + int iterationCount; +}; + +// +// Uniforms +// +Texture2D _MainTex; SamplerState sampler_MainTex; +Texture2D _History; SamplerState sampler_History; + +Texture2D _CameraDepthTexture; SamplerState sampler_CameraDepthTexture; +Texture2D _CameraMotionVectorsTexture; SamplerState sampler_CameraMotionVectorsTexture; +Texture2D _CameraReflectionsTexture; SamplerState sampler_CameraReflectionsTexture; + +Texture2D _CameraGBufferTexture0; // albedo = g[0].rgb +Texture2D _CameraGBufferTexture1; // roughness = g[1].a +Texture2D _CameraGBufferTexture2; SamplerState sampler_CameraGBufferTexture2; // normal.xyz 2. * g[2].rgb - 1. + +Texture2D _Noise; SamplerState sampler_Noise; + +Texture2D _Test; SamplerState sampler_Test; +Texture2D _Resolve; SamplerState sampler_Resolve; + +float4 _MainTex_TexelSize; +float4 _Test_TexelSize; + +float4x4 _ViewMatrix; +float4x4 _InverseViewMatrix; +float4x4 _ScreenSpaceProjectionMatrix; + +float4 _Params; // x: vignette intensity, y: distance fade, z: maximum march distance, w: blur pyramid lod count +float4 _Params2; // x: aspect ratio, y: noise tiling, z: thickness, w: maximum iteration count +#define _Attenuation .25 +#define _VignetteIntensity _Params.x +#define _DistanceFade _Params.y +#define _MaximumMarchDistance _Params.z +#define _BlurPyramidLODCount _Params.w +#define _AspectRatio _Params2.x +#define _NoiseTiling _Params2.y +#define _Bandwidth _Params2.z +#define _MaximumIterationCount _Params2.w + +// +// Helper functions +// +float Attenuate(float2 uv) +{ + float offset = min(1.0 - max(uv.x, uv.y), min(uv.x, uv.y)); + + float result = offset / (SSR_ATTENUATION_SCALE * _Attenuation + SSR_MINIMUM_ATTENUATION); + result = saturate(result); + + return pow(result, 0.5); +} + +float Vignette(float2 uv) +{ + float2 k = abs(uv - 0.5) * SSR_VIGNETTE_INTENSITY; + k.x *= _MainTex_TexelSize.y * _MainTex_TexelSize.z; + return pow(saturate(1.0 - dot(k, k)), SSR_VIGNETTE_SMOOTHNESS); +} + +float3 GetViewSpacePosition(float2 uv) +{ + float depth = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0).r; + float4 result = float4(float2(2.0 * uv - 1.0) * float2(unity_CameraInvProjection[0][0], unity_CameraInvProjection[1][1]), + depth * unity_CameraInvProjection[2][2] + unity_CameraInvProjection[2][3], + _ZBufferParams . z * depth + _ZBufferParams . w); // Use _ZBufferParams as it accounts for 0...1 depth value range + return result.xyz / result.w; +} + +float GetSquaredDistance(float2 first, float2 second) +{ + first -= second; + return dot(first, first); +} + +float4 ProjectToScreenSpace(float3 position) +{ + return float4( + _ScreenSpaceProjectionMatrix[0][0] * position.x + _ScreenSpaceProjectionMatrix[0][2] * position.z, + _ScreenSpaceProjectionMatrix[1][1] * position.y + _ScreenSpaceProjectionMatrix[1][2] * position.z, + _ScreenSpaceProjectionMatrix[2][2] * position.z + _ScreenSpaceProjectionMatrix[2][3], + _ScreenSpaceProjectionMatrix[3][2] * position.z + ); +} + +// Heavily adapted from McGuire and Mara's original implementation +// http://casual-effects.blogspot.com/2014/08/screen-space-ray-tracing.html +Result March(Ray ray, VaryingsDefault input) +{ + Result result; + + result.isHit = false; + + result.uv = 0.0; + result.position = 0.0; + + result.iterationCount = 0; + + Segment segment; + + segment.start = ray.origin; + + float end = ray.origin.z + ray.direction.z * _MaximumMarchDistance; + float magnitude = _MaximumMarchDistance; + + if (end > -_ProjectionParams.y) + magnitude = (-_ProjectionParams.y - ray.origin.z) / ray.direction.z; + + segment.end = ray.origin + ray.direction * magnitude; + + float4 r = ProjectToScreenSpace(segment.start); + float4 q = ProjectToScreenSpace(segment.end); + + const float2 homogenizers = rcp(float2(r.w, q.w)); + + segment.start *= homogenizers.x; + segment.end *= homogenizers.y; + + float4 endPoints = float4(r.xy, q.xy) * homogenizers.xxyy; + endPoints.zw += step(GetSquaredDistance(endPoints.xy, endPoints.zw), 0.0001) * max(_Test_TexelSize.x, _Test_TexelSize.y); + + float2 displacement = endPoints.zw - endPoints.xy; + + bool isPermuted = false; + + if (abs(displacement.x) < abs(displacement.y)) + { + isPermuted = true; + + displacement = displacement.yx; + endPoints.xyzw = endPoints.yxwz; + } + + float direction = sign(displacement.x); + float normalizer = direction / displacement.x; + + segment.direction = (segment.end - segment.start) * normalizer; + float4 derivatives = float4(float2(direction, displacement.y * normalizer), (homogenizers.y - homogenizers.x) * normalizer, segment.direction.z); + + float stride = 1.0 - min(1.0, -ray.origin.z * 0.01); + + float2 uv = input.texcoord * _NoiseTiling; + uv.y *= _AspectRatio; + + float jitter = _Noise.SampleLevel(sampler_Noise, uv + _WorldSpaceCameraPos.xz, 0).a; + stride *= _Bandwidth; + + derivatives *= stride; + segment.direction *= stride; + + float2 z = 0.0; + float4 tracker = float4(endPoints.xy, homogenizers.x, segment.start.z) + derivatives * jitter; + + for (int i = 0; i < _MaximumIterationCount; ++i) + { + if (any(result.uv < 0.0) || any(result.uv > 1.0)) + { + result.isHit = false; + return result; + } + + tracker += derivatives; + + z.x = z.y; + z.y = tracker.w + derivatives.w * 0.5; + z.y /= tracker.z + derivatives.z * 0.5; + +#if SSR_KILL_FIREFLIES + UNITY_FLATTEN + if (z.y < -_MaximumMarchDistance) + { + result.isHit = false; + return result; + } +#endif + + UNITY_FLATTEN + if (z.y > z.x) + { + float k = z.x; + z.x = z.y; + z.y = k; + } + + uv = tracker.xy; + + UNITY_FLATTEN + if (isPermuted) + uv = uv.yx; + + uv *= _Test_TexelSize.xy; + + float d = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0); + float depth = -LinearEyeDepth(d); + + UNITY_FLATTEN + if (z.y < depth) + { + result.uv = uv; + result.isHit = true; + result.iterationCount = i + 1; + return result; + } + } + + return result; +} + +// +// Fragment shaders +// +float4 FragTest(VaryingsDefault i) : SV_Target +{ + float4 gbuffer2 = _CameraGBufferTexture2.Sample(sampler_CameraGBufferTexture2, i.texcoordStereo); + + if (dot(gbuffer2, 1.0) == 0.0) + return 0.0; + + float3 normal = 2.0 * gbuffer2.rgb - 1.0; + normal = mul((float3x3)_ViewMatrix, normal); + + Ray ray; + + ray.origin = GetViewSpacePosition(i.texcoord); + + if (ray.origin.z < -_MaximumMarchDistance) + return 0.0; + + ray.direction = normalize(reflect(normalize(ray.origin), normal)); + + if (ray.direction.z > 0.0) + return 0.0; + + Result result = March(ray, i); + + float confidence = (float)result.iterationCount / (float)_MaximumIterationCount; + return float4(result.uv, confidence, (float)result.isHit); +} + +float4 FragResolve(VaryingsDefault i) : SV_Target +{ + float4 test = _Test.Load(int3(i.vertex.xy, 0)); + + if (test.w == 0.0) + return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + + float4 color = _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(test.xy), 0); + + float confidence = test.w * Attenuate(test.xy) * Vignette(test.xy); + + color.rgb *= confidence; + color.a = test.z; + + return color; +} + +float4 FragReproject(VaryingsDefault i) : SV_Target +{ + float2 motion = _CameraMotionVectorsTexture.SampleLevel(sampler_CameraMotionVectorsTexture, i.texcoordStereo, 0).xy; + float2 uv = i.texcoord - motion; + + const float2 k = SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD * _MainTex_TexelSize.xy; + + float4 color = _MainTex.SampleLevel(sampler_MainTex, i.texcoordStereo, 0); + + // 0 1 2 + // 3 + float4x4 top = float4x4( + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, 0.0)), 0) + ); + + // 0 + // 1 2 3 + float4x4 bottom = float4x4( + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, 0.0)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, k.y)), 0) + ); + + float4 minimum = min(min(min(min(min(min(min(min(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); + float4 maximum = max(max(max(max(max(max(max(max(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); + + float4 history = _History.SampleLevel(sampler_History, UnityStereoTransformScreenSpaceTex(uv), 0); + history = clamp(history, minimum, maximum); + + color.a = saturate(smoothstep(0.002 * _MainTex_TexelSize.z, 0.0035 * _MainTex_TexelSize.z, length(motion))); + + float weight = clamp(lerp(SSR_FINAL_BLEND_STATIC_FACTOR, SSR_FINAL_BLEND_DYNAMIC_FACTOR, + history.a * 100.0), SSR_FINAL_BLEND_DYNAMIC_FACTOR, SSR_FINAL_BLEND_STATIC_FACTOR); + + color.a *= 0.85; + return lerp(color, history, weight); +} + +float4 FragComposite(VaryingsDefault i) : SV_Target +{ + float z = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, i.texcoordStereo, 0).r; + + if (Linear01Depth(z) > 0.999) + return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + + float4 gbuffer0 = _CameraGBufferTexture0.Load(int3(i.vertex.xy, 0)); + float4 gbuffer1 = _CameraGBufferTexture1.Load(int3(i.vertex.xy, 0)); + float4 gbuffer2 = _CameraGBufferTexture2.Load(int3(i.vertex.xy, 0)); + + half oneMinusReflectivity = 0.0; + EnergyConservationBetweenDiffuseAndSpecular(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity); + + float3 normal = 2.0 * gbuffer2.rgb - 1.0; + float3 position = GetViewSpacePosition(i.texcoord); + + float3 eye = mul((float3x3)_InverseViewMatrix, normalize(position)); + position = mul(_InverseViewMatrix, float4(position, 1.0)).xyz; + +#if SSR_ENABLE_CONTACTS + float4 test = _Test.SampleLevel(sampler_Test, i.texcoordStereo, 0); + float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) * test.z + 1.0); +#else + float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) + 1.0); +#endif + + float confidence = saturate(2.0 * dot(-eye, normalize(reflect(-eye, normal)))); + + UnityLight light; + light.color = 0.0; + light.dir = 0.0; + light.ndotl = 0.0; + + UnityIndirect indirect; + indirect.diffuse = 0.0; + indirect.specular = resolve.rgb; + + resolve.rgb = UNITY_BRDF_PBS(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity, gbuffer1.a, normal, -eye, light, indirect).rgb; + + float4 reflectionProbes = _CameraReflectionsTexture.Sample(sampler_CameraReflectionsTexture, i.texcoordStereo); + + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + color.rgb = max(0.0, color.rgb - reflectionProbes.rgb); + + resolve.a *= 2. * resolve.a; // 2 and 1.5 are quite important for the correct ratio of 3:2 distribution + float fade = 1.0 - saturate(1.5 * resolve.a * smoothstep(0.5, 1.0, 1.5 * resolve.a) * _DistanceFade); + + resolve.rgb = lerp(reflectionProbes.rgb, resolve.rgb, confidence * fade); + color.rgb += resolve.rgb * gbuffer0.a; + + return color; +} + +#endif // UNITY_POSTFX_SSR diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta new file mode 100644 index 0000000..ef42165 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ad99a5d3138ea7e47a3b2a3051034642 +timeCreated: 1503577882 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader new file mode 100644 index 0000000..2c3b1c9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader @@ -0,0 +1,91 @@ +Shader "Hidden/PostProcessing/ScreenSpaceReflections" +{ + // We need to use internal Unity lighting structures and functions for this effect so we have to + // stick to CGPROGRAM instead of HLSLPROGRAM + + CGINCLUDE + + #include "UnityCG.cginc" + #pragma target 5.0 + + // Ported from StdLib, we can't include it as it'll conflict with internal Unity includes + struct AttributesDefault + { + float3 vertex : POSITION; + }; + + struct VaryingsDefault + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; + }; + + VaryingsDefault VertDefault(AttributesDefault v) + { + VaryingsDefault o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = (v.vertex.xy + 1.0) * 0.5; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); + + return o; + } + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl" + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Test + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTest + + ENDCG + } + + // 1 - Resolve + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragResolve + + ENDCG + } + + // 2 - Reproject + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragReproject + + ENDCG + } + + // 3 - Composite + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragComposite + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta new file mode 100644 index 0000000..0177f14 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f997a3dc9254c44459323cced085150c +timeCreated: 1503577833 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl new file mode 100644 index 0000000..be9f83f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl @@ -0,0 +1,1436 @@ +// Ported to Unity & tweaked by Thomas Hourdel (thomas@hourdel.com) +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + +/** + * Copyright (C) 2013 Jorge Jimenez (jorge@iryoku.com) + * Copyright (C) 2013 Jose I. Echevarria (joseignacioechevarria@gmail.com) + * Copyright (C) 2013 Belen Masia (bmasia@unizar.es) + * Copyright (C) 2013 Fernando Navarro (fernandn@microsoft.com) + * Copyright (C) 2013 Diego Gutierrez (diegog@unizar.es) + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is furnished to + * do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. As clarification, there + * is no requirement that the copyright notice and permission be included in + * binary distributions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + + +/** + * _______ ___ ___ ___ ___ + * / || \/ | / \ / \ + * | (---- | \ / | / ^ \ / ^ \ + * \ \ | |\/| | / /_\ \ / /_\ \ + * ----) | | | | | / _____ \ / _____ \ + * |_______/ |__| |__| /__/ \__\ /__/ \__\ + * + * E N H A N C E D + * S U B P I X E L M O R P H O L O G I C A L A N T I A L I A S I N G + * + * http://www.iryoku.com/smaa/ + * + * Hi, welcome aboard! + * + * Here you'll find instructions to get the shader up and running as fast as + * possible. + * + * IMPORTANTE NOTICE: when updating, remember to update both this file and the + * precomputed textures! They may change from version to version. + * + * The shader has three passes, chained together as follows: + * + * |input|------------------� + * v | + * [ SMAA*EdgeDetection ] | + * v | + * |edgesTex| | + * v | + * [ SMAABlendingWeightCalculation ] | + * v | + * |blendTex| | + * v | + * [ SMAANeighborhoodBlending ] <------� + * v + * |output| + * + * Note that each [pass] has its own vertex and pixel shader. Remember to use + * oversized triangles instead of quads to avoid overshading along the + * diagonal. + * + * You've three edge detection methods to choose from: luma, color or depth. + * They represent different quality/performance and anti-aliasing/sharpness + * tradeoffs, so our recommendation is for you to choose the one that best + * suits your particular scenario: + * + * - Depth edge detection is usually the fastest but it may miss some edges. + * + * - Luma edge detection is usually more expensive than depth edge detection, + * but catches visible edges that depth edge detection can miss. + * + * - Color edge detection is usually the most expensive one but catches + * chroma-only edges. + * + * For quickstarters: just use luma edge detection. + * + * The general advice is to not rush the integration process and ensure each + * step is done correctly (don't try to integrate SMAA T2x with predicated edge + * detection from the start!). Ok then, let's go! + * + * 1. The first step is to create two RGBA temporal render targets for holding + * |edgesTex| and |blendTex|. + * + * In DX10 or DX11, you can use a RG render target for the edges texture. + * In the case of NVIDIA GPUs, using RG render targets seems to actually be + * slower. + * + * On the Xbox 360, you can use the same render target for resolving both + * |edgesTex| and |blendTex|, as they aren't needed simultaneously. + * + * 2. Both temporal render targets |edgesTex| and |blendTex| must be cleared + * each frame. Do not forget to clear the alpha channel! + * + * 3. The next step is loading the two supporting precalculated textures, + * 'areaTex' and 'searchTex'. You'll find them in the 'Textures' folder as + * C++ headers, and also as regular DDS files. They'll be needed for the + * 'SMAABlendingWeightCalculation' pass. + * + * If you use the C++ headers, be sure to load them in the format specified + * inside of them. + * + * You can also compress 'areaTex' and 'searchTex' using BC5 and BC4 + * respectively, if you have that option in your content processor pipeline. + * When compressing then, you get a non-perceptible quality decrease, and a + * marginal performance increase. + * + * 4. All samplers must be set to linear filtering and clamp. + * + * After you get the technique working, remember that 64-bit inputs have + * half-rate linear filtering on GCN. + * + * If SMAA is applied to 64-bit color buffers, switching to point filtering + * when accesing them will increase the performance. Search for + * 'SMAASamplePoint' to see which textures may benefit from point + * filtering, and where (which is basically the color input in the edge + * detection and resolve passes). + * + * 5. All texture reads and buffer writes must be non-sRGB, with the exception + * of the input read and the output write in + * 'SMAANeighborhoodBlending' (and only in this pass!). If sRGB reads in + * this last pass are not possible, the technique will work anyway, but + * will perform antialiasing in gamma space. + * + * IMPORTANT: for best results the input read for the color/luma edge + * detection should *NOT* be sRGB. + * + * 6. Before including SMAA.h you'll have to setup the render target metrics, + * the target and any optional configuration defines. Optionally you can + * use a preset. + * + * You have the following targets available: + * SMAA_HLSL_3 + * SMAA_HLSL_4 + * SMAA_HLSL_4_1 + * SMAA_GLSL_3 * + * SMAA_GLSL_4 * + * + * * (See SMAA_INCLUDE_VS and SMAA_INCLUDE_PS below). + * + * And four presets: + * SMAA_PRESET_LOW (%60 of the quality) + * SMAA_PRESET_MEDIUM (%80 of the quality) + * SMAA_PRESET_HIGH (%95 of the quality) + * SMAA_PRESET_ULTRA (%99 of the quality) + * + * For example: + * #define SMAA_RT_METRICS float4(1.0 / 1280.0, 1.0 / 720.0, 1280.0, 720.0) + * #define SMAA_HLSL_4 + * #define SMAA_PRESET_HIGH + * #include "SMAA.h" + * + * Note that SMAA_RT_METRICS doesn't need to be a macro, it can be a + * uniform variable. The code is designed to minimize the impact of not + * using a constant value, but it is still better to hardcode it. + * + * Depending on how you encoded 'areaTex' and 'searchTex', you may have to + * add (and customize) the following defines before including SMAA.h: + * #define SMAA_AREATEX_SELECT(sample) sample.rg + * #define SMAA_SEARCHTEX_SELECT(sample) sample.r + * + * If your engine is already using porting macros, you can define + * SMAA_CUSTOM_SL, and define the porting functions by yourself. + * + * 7. Then, you'll have to setup the passes as indicated in the scheme above. + * You can take a look into SMAA.fx, to see how we did it for our demo. + * Checkout the function wrappers, you may want to copy-paste them! + * + * 8. It's recommended to validate the produced |edgesTex| and |blendTex|. + * You can use a screenshot from your engine to compare the |edgesTex| + * and |blendTex| produced inside of the engine with the results obtained + * with the reference demo. + * + * 9. After you get the last pass to work, it's time to optimize. You'll have + * to initialize a stencil buffer in the first pass (discard is already in + * the code), then mask execution by using it the second pass. The last + * pass should be executed in all pixels. + * + * + * After this point you can choose to enable predicated thresholding, + * temporal supersampling and motion blur integration: + * + * a) If you want to use predicated thresholding, take a look into + * SMAA_PREDICATION; you'll need to pass an extra texture in the edge + * detection pass. + * + * b) If you want to enable temporal supersampling (SMAA T2x): + * + * 1. The first step is to render using subpixel jitters. I won't go into + * detail, but it's as simple as moving each vertex position in the + * vertex shader, you can check how we do it in our DX10 demo. + * + * 2. Then, you must setup the temporal resolve. You may want to take a look + * into SMAAResolve for resolving 2x modes. After you get it working, you'll + * probably see ghosting everywhere. But fear not, you can enable the + * CryENGINE temporal reprojection by setting the SMAA_REPROJECTION macro. + * Check out SMAA_DECODE_VELOCITY if your velocity buffer is encoded. + * + * 3. The next step is to apply SMAA to each subpixel jittered frame, just as + * done for 1x. + * + * 4. At this point you should already have something usable, but for best + * results the proper area textures must be set depending on current jitter. + * For this, the parameter 'subsampleIndices' of + * 'SMAABlendingWeightCalculationPS' must be set as follows, for our T2x + * mode: + * + * @SUBSAMPLE_INDICES + * + * | S# | Camera Jitter | subsampleIndices | + * +----+------------------+---------------------+ + * | 0 | ( 0.25, -0.25) | float4(1, 1, 1, 0) | + * | 1 | (-0.25, 0.25) | float4(2, 2, 2, 0) | + * + * These jitter positions assume a bottom-to-top y axis. S# stands for the + * sample number. + * + * More information about temporal supersampling here: + * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf + * + * c) If you want to enable spatial multisampling (SMAA S2x): + * + * 1. The scene must be rendered using MSAA 2x. The MSAA 2x buffer must be + * created with: + * - DX10: see below (*) + * - DX10.1: D3D10_STANDARD_MULTISAMPLE_PATTERN or + * - DX11: D3D11_STANDARD_MULTISAMPLE_PATTERN + * + * This allows to ensure that the subsample order matches the table in + * @SUBSAMPLE_INDICES. + * + * (*) In the case of DX10, we refer the reader to: + * - SMAA::detectMSAAOrder and + * - SMAA::msaaReorder + * + * These functions allow to match the standard multisample patterns by + * detecting the subsample order for a specific GPU, and reordering + * them appropriately. + * + * 2. A shader must be run to output each subsample into a separate buffer + * (DX10 is required). You can use SMAASeparate for this purpose, or just do + * it in an existing pass (for example, in the tone mapping pass, which has + * the advantage of feeding tone mapped subsamples to SMAA, which will yield + * better results). + * + * 3. The full SMAA 1x pipeline must be run for each separated buffer, storing + * the results in the final buffer. The second run should alpha blend with + * the existing final buffer using a blending factor of 0.5. + * 'subsampleIndices' must be adjusted as in the SMAA T2x case (see point + * b). + * + * d) If you want to enable temporal supersampling on top of SMAA S2x + * (which actually is SMAA 4x): + * + * 1. SMAA 4x consists on temporally jittering SMAA S2x, so the first step is + * to calculate SMAA S2x for current frame. In this case, 'subsampleIndices' + * must be set as follows: + * + * | F# | S# | Camera Jitter | Net Jitter | subsampleIndices | + * +----+----+--------------------+-------------------+----------------------+ + * | 0 | 0 | ( 0.125, 0.125) | ( 0.375, -0.125) | float4(5, 3, 1, 3) | + * | 0 | 1 | ( 0.125, 0.125) | (-0.125, 0.375) | float4(4, 6, 2, 3) | + * +----+----+--------------------+-------------------+----------------------+ + * | 1 | 2 | (-0.125, -0.125) | ( 0.125, -0.375) | float4(3, 5, 1, 4) | + * | 1 | 3 | (-0.125, -0.125) | (-0.375, 0.125) | float4(6, 4, 2, 4) | + * + * These jitter positions assume a bottom-to-top y axis. F# stands for the + * frame number. S# stands for the sample number. + * + * 2. After calculating SMAA S2x for current frame (with the new subsample + * indices), previous frame must be reprojected as in SMAA T2x mode (see + * point b). + * + * e) If motion blur is used, you may want to do the edge detection pass + * together with motion blur. This has two advantages: + * + * 1. Pixels under heavy motion can be omitted from the edge detection process. + * For these pixels we can just store "no edge", as motion blur will take + * care of them. + * 2. The center pixel tap is reused. + * + * Note that in this case depth testing should be used instead of stenciling, + * as we have to write all the pixels in the motion blur pass. + * + * That's it! + */ + +//----------------------------------------------------------------------------- +// SMAA Presets + +/** + * Note that if you use one of these presets, the following configuration + * macros will be ignored if set in the "Configurable Defines" section. + */ + +#if defined(SMAA_PRESET_LOW) +#define SMAA_THRESHOLD 0.15 +#define SMAA_MAX_SEARCH_STEPS 4 +#define SMAA_DISABLE_DIAG_DETECTION +#define SMAA_DISABLE_CORNER_DETECTION +#elif defined(SMAA_PRESET_MEDIUM) +#define SMAA_THRESHOLD 0.1 +#define SMAA_MAX_SEARCH_STEPS 8 +#define SMAA_DISABLE_DIAG_DETECTION +#define SMAA_DISABLE_CORNER_DETECTION +#elif defined(SMAA_PRESET_HIGH) +#define SMAA_THRESHOLD 0.1 +#define SMAA_MAX_SEARCH_STEPS 16 +#define SMAA_MAX_SEARCH_STEPS_DIAG 8 +#define SMAA_CORNER_ROUNDING 25 +#elif defined(SMAA_PRESET_ULTRA) +#define SMAA_THRESHOLD 0.05 +#define SMAA_MAX_SEARCH_STEPS 32 +#define SMAA_MAX_SEARCH_STEPS_DIAG 16 +#define SMAA_CORNER_ROUNDING 25 +#endif + +//----------------------------------------------------------------------------- +// Configurable Defines + +/** + * SMAA_THRESHOLD specifies the threshold or sensitivity to edges. + * Lowering this value you will be able to detect more edges at the expense of + * performance. + * + * Range: [0, 0.5] + * 0.1 is a reasonable value, and allows to catch most visible edges. + * 0.05 is a rather overkill value, that allows to catch 'em all. + * + * If temporal supersampling is used, 0.2 could be a reasonable value, as low + * contrast edges are properly filtered by just 2x. + */ +#ifndef SMAA_THRESHOLD +#define SMAA_THRESHOLD 0.1 +#endif + +/** + * SMAA_DEPTH_THRESHOLD specifies the threshold for depth edge detection. + * + * Range: depends on the depth range of the scene. + */ +#ifndef SMAA_DEPTH_THRESHOLD +#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD) +#endif + +/** + * SMAA_MAX_SEARCH_STEPS specifies the maximum steps performed in the + * horizontal/vertical pattern searches, at each side of the pixel. + * + * In number of pixels, it's actually the double. So the maximum line length + * perfectly handled by, for example 16, is 64 (by perfectly, we meant that + * longer lines won't look as good, but still antialiased). + * + * Range: [0, 112] + */ +#ifndef SMAA_MAX_SEARCH_STEPS +#define SMAA_MAX_SEARCH_STEPS 16 +#endif + +/** + * SMAA_MAX_SEARCH_STEPS_DIAG specifies the maximum steps performed in the + * diagonal pattern searches, at each side of the pixel. In this case we jump + * one pixel at time, instead of two. + * + * Range: [0, 20] + * + * On high-end machines it is cheap (between a 0.8x and 0.9x slower for 16 + * steps), but it can have a significant impact on older machines. + * + * Define SMAA_DISABLE_DIAG_DETECTION to disable diagonal processing. + */ +#ifndef SMAA_MAX_SEARCH_STEPS_DIAG +#define SMAA_MAX_SEARCH_STEPS_DIAG 8 +#endif + +/** + * SMAA_CORNER_ROUNDING specifies how much sharp corners will be rounded. + * + * Range: [0, 100] + * + * Define SMAA_DISABLE_CORNER_DETECTION to disable corner processing. + */ +#ifndef SMAA_CORNER_ROUNDING +#define SMAA_CORNER_ROUNDING 25 +#endif + +/** + * If there is an neighbor edge that has SMAA_LOCAL_CONTRAST_FACTOR times + * bigger contrast than current edge, current edge will be discarded. + * + * This allows to eliminate spurious crossing edges, and is based on the fact + * that, if there is too much contrast in a direction, that will hide + * perceptually contrast in the other neighbors. + */ +#ifndef SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR +#define SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR 2.0 +#endif + +/** + * Predicated thresholding allows to better preserve texture details and to + * improve performance, by decreasing the number of detected edges using an + * additional buffer like the light accumulation buffer, object ids or even the + * depth buffer (the depth buffer usage may be limited to indoor or short range + * scenes). + * + * It locally decreases the luma or color threshold if an edge is found in an + * additional buffer (so the global threshold can be higher). + * + * This method was developed by Playstation EDGE MLAA team, and used in + * Killzone 3, by using the light accumulation buffer. More information here: + * http://iryoku.com/aacourse/downloads/06-MLAA-on-PS3.pptx + */ +#ifndef SMAA_PREDICATION +#define SMAA_PREDICATION 0 +#endif + +/** + * Threshold to be used in the additional predication buffer. + * + * Range: depends on the input, so you'll have to find the magic number that + * works for you. + */ +#ifndef SMAA_PREDICATION_THRESHOLD +#define SMAA_PREDICATION_THRESHOLD 0.01 +#endif + +/** + * How much to scale the global threshold used for luma or color edge + * detection when using predication. + * + * Range: [1, 5] + */ +#ifndef SMAA_PREDICATION_SCALE +#define SMAA_PREDICATION_SCALE 2.0 +#endif + +/** + * How much to locally decrease the threshold. + * + * Range: [0, 1] + */ +#ifndef SMAA_PREDICATION_STRENGTH +#define SMAA_PREDICATION_STRENGTH 0.4 +#endif + +/** + * Temporal reprojection allows to remove ghosting artifacts when using + * temporal supersampling. We use the CryEngine 3 method which also introduces + * velocity weighting. This feature is of extreme importance for totally + * removing ghosting. More information here: + * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf + * + * Note that you'll need to setup a velocity buffer for enabling reprojection. + * For static geometry, saving the previous depth buffer is a viable + * alternative. + */ +#ifndef SMAA_REPROJECTION +#define SMAA_REPROJECTION 0 +#endif + +/** + * Temporal reprojection allows to remove ghosting artifacts when using + * temporal supersampling. However, the default reprojection requires a velocity buffer + * in order to function properly. + * + * A velocity buffer might not always be available (hi Unity 5!). To handle such cases + * we provide a UV-based approximation for calculating motion vectors on the fly. + */ +#ifndef SMAA_UV_BASED_REPROJECTION +#define SMAA_UV_BASED_REPROJECTION 0 +#endif + +/** + * SMAA_REPROJECTION_WEIGHT_SCALE controls the velocity weighting. It allows to + * remove ghosting trails behind the moving object, which are not removed by + * just using reprojection. Using low values will exhibit ghosting, while using + * high values will disable temporal supersampling under motion. + * + * Behind the scenes, velocity weighting removes temporal supersampling when + * the velocity of the subsamples differs (meaning they are different objects). + * + * Range: [0, 80] + */ +#ifndef SMAA_REPROJECTION_WEIGHT_SCALE +#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0 +#endif + +/** + * On some compilers, discard cannot be used in vertex shaders. Thus, they need + * to be compiled separately. + */ +#ifndef SMAA_INCLUDE_VS +#define SMAA_INCLUDE_VS 1 +#endif +#ifndef SMAA_INCLUDE_PS +#define SMAA_INCLUDE_PS 1 +#endif + +//----------------------------------------------------------------------------- +// Texture Access Defines + +#ifndef SMAA_AREATEX_SELECT +#if defined(SMAA_HLSL_3) +#define SMAA_AREATEX_SELECT(sample) sample.ra +#else +#define SMAA_AREATEX_SELECT(sample) sample.rg +#endif +#endif + +#ifndef SMAA_SEARCHTEX_SELECT +#define SMAA_SEARCHTEX_SELECT(sample) sample.r +#endif + +#ifndef SMAA_DECODE_VELOCITY +#define SMAA_DECODE_VELOCITY(sample) sample.rg +#endif + +//----------------------------------------------------------------------------- +// Non-Configurable Defines + +#define SMAA_AREATEX_MAX_DISTANCE 16 +#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20 +#define SMAA_AREATEX_PIXEL_SIZE (1.0 / float2(160.0, 560.0)) +#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0) +#define SMAA_SEARCHTEX_SIZE float2(66.0, 33.0) +#define SMAA_SEARCHTEX_PACKED_SIZE float2(64.0, 16.0) +#define SMAA_CORNER_ROUNDING_NORM (float(SMAA_CORNER_ROUNDING) / 100.0) + +//----------------------------------------------------------------------------- +// Porting Functions + +#if defined(SMAA_HLSL_3) +#define SMAATexture2D(tex) sampler2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) +#define SMAASampleLevelZeroPoint(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) +#define SMAASampleLevelZeroOffset(tex, coord, offset) tex2Dlod(tex, float4(coord + offset * SMAA_RT_METRICS.xy, 0.0, 0.0)) +#define SMAASample(tex, coord) tex2D(tex, coord) +#define SMAASamplePoint(tex, coord) tex2D(tex, coord) +#define SMAASampleOffset(tex, coord, offset) tex2D(tex, coord + offset * SMAA_RT_METRICS.xy) +//#define SMAA_FLATTEN [flatten] +//#define SMAA_BRANCH [branch] +#define SMAA_FLATTEN +#define SMAA_BRANCH +#endif +#if defined(SMAA_HLSL_4) || defined(SMAA_HLSL_4_1) +//SamplerState LinearSampler { Filter = MIN_MAG_LINEAR_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; +//SamplerState PointSampler { Filter = MIN_MAG_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; +#define SMAATexture2D(tex) Texture2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) tex.SampleLevel(LinearSampler, coord, 0) +#define SMAASampleLevelZeroPoint(tex, coord) tex.SampleLevel(PointSampler, coord, 0) +#define SMAASampleLevelZeroOffset(tex, coord, offset) tex.SampleLevel(LinearSampler, coord, 0, offset) +#define SMAASample(tex, coord) tex.Sample(LinearSampler, coord) +#define SMAASamplePoint(tex, coord) tex.Sample(PointSampler, coord) +#define SMAASampleOffset(tex, coord, offset) tex.Sample(LinearSampler, coord, offset) +#define SMAA_FLATTEN [flatten] +#define SMAA_BRANCH [branch] +#define SMAATexture2DMS2(tex) Texture2DMS tex +#define SMAALoad(tex, pos, sample) tex.Load(pos, sample) +#if defined(SMAA_HLSL_4_1) +#define SMAAGather(tex, coord) tex.Gather(LinearSampler, coord, 0) +#endif +#endif +#if defined(SMAA_GLSL_3) || defined(SMAA_GLSL_4) +#define SMAATexture2D(tex) sampler2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) textureLod(tex, coord, 0.0) +#define SMAASampleLevelZeroPoint(tex, coord) textureLod(tex, coord, 0.0) +#define SMAASampleLevelZeroOffset(tex, coord, offset) textureLodOffset(tex, coord, 0.0, offset) +#define SMAASample(tex, coord) texture(tex, coord) +#define SMAASamplePoint(tex, coord) texture(tex, coord) +#define SMAASampleOffset(tex, coord, offset) texture(tex, coord, offset) +#define SMAA_FLATTEN +#define SMAA_BRANCH +#define lerp(a, b, t) mix(a, b, t) +#define saturate(a) clamp(a, 0.0, 1.0) +#if defined(SMAA_GLSL_4) +#define mad(a, b, c) fma(a, b, c) +#define SMAAGather(tex, coord) textureGather(tex, coord) +#else +#define mad(a, b, c) (a * b + c) +#endif +#define float2 vec2 +#define float3 vec3 +#define float4 vec4 +#define int2 ivec2 +#define int3 ivec3 +#define int4 ivec4 +#define bool2 bvec2 +#define bool3 bvec3 +#define bool4 bvec4 +#endif + +#if !defined(SMAA_HLSL_3) && !defined(SMAA_HLSL_4) && !defined(SMAA_HLSL_4_1) && !defined(SMAA_GLSL_3) && !defined(SMAA_GLSL_4) && !defined(SMAA_CUSTOM_SL) +#error you must define the shading language: SMAA_HLSL_*, SMAA_GLSL_* or SMAA_CUSTOM_SL +#endif + +//----------------------------------------------------------------------------- +// Misc functions + +/** + * Gathers current pixel, and the top-left neighbors. + */ +float3 SMAAGatherNeighbours(float2 texcoord, + float4 offset[3], + SMAATexture2D(tex)) { + #ifdef SMAAGather + return SMAAGather(tex, texcoord + SMAA_RT_METRICS.xy * float2(-0.5, -0.5)).grb; + #else + float P = SMAASamplePoint(tex, texcoord).r; + float Pleft = SMAASamplePoint(tex, offset[0].xy).r; + float Ptop = SMAASamplePoint(tex, offset[0].zw).r; + return float3(P, Pleft, Ptop); + #endif +} + +/** + * Adjusts the threshold by means of predication. + */ +float2 SMAACalculatePredicatedThreshold(float2 texcoord, + float4 offset[3], + SMAATexture2D(predicationTex)) { + float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(predicationTex)); + float2 delta = abs(neighbours.xx - neighbours.yz); + float2 edges = step(SMAA_PREDICATION_THRESHOLD, delta); + return SMAA_PREDICATION_SCALE * SMAA_THRESHOLD * (1.0 - SMAA_PREDICATION_STRENGTH * edges); +} + +/** + * Conditional move: + */ +void SMAAMovc(bool2 cond, inout float2 variable, float2 value) { + SMAA_FLATTEN if (cond.x) variable.x = value.x; + SMAA_FLATTEN if (cond.y) variable.y = value.y; +} + +void SMAAMovc(bool4 cond, inout float4 variable, float4 value) { + SMAAMovc(cond.xy, variable.xy, value.xy); + SMAAMovc(cond.zw, variable.zw, value.zw); +} + + +#if SMAA_INCLUDE_VS +//----------------------------------------------------------------------------- +// Vertex Shaders + +/** + * Edge Detection Vertex Shader + */ +void SMAAEdgeDetectionVS(float2 texcoord, + out float4 offset[3]) { + offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), texcoord.xyxy); + offset[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); + offset[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), texcoord.xyxy); +} + +/** + * Blend Weight Calculation Vertex Shader + */ +void SMAABlendingWeightCalculationVS(float2 texcoord, + out float2 pixcoord, + out float4 offset[3]) { + pixcoord = texcoord * SMAA_RT_METRICS.zw; + + // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): + offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.25, -0.125, 1.25, -0.125), texcoord.xyxy); + offset[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.25, -0.125, 1.25), texcoord.xyxy); + + // And these for the searches, they indicate the ends of the loops: + offset[2] = mad(SMAA_RT_METRICS.xxyy, + float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), + float4(offset[0].xz, offset[1].yw)); +} + +/** + * Neighborhood Blending Vertex Shader + */ +void SMAANeighborhoodBlendingVS(float2 texcoord, + out float4 offset) { + offset = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); +} +#endif // SMAA_INCLUDE_VS + +#if SMAA_INCLUDE_PS +//----------------------------------------------------------------------------- +// Edge Detection Pixel Shaders (First Pass) + +/** + * Luma Edge Detection + * + * IMPORTANT NOTICE: luma edge detection requires gamma-corrected colors, and + * thus 'colorTex' should be a non-sRGB texture. + */ +float2 SMAALumaEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(colorTex) + #if SMAA_PREDICATION + , SMAATexture2D(predicationTex) + #endif + ) { + // Calculate the threshold: + #if SMAA_PREDICATION + float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, SMAATexturePass2D(predicationTex)); + #else + float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); + #endif + + // Calculate lumas: + float3 weights = float3(0.2126, 0.7152, 0.0722); + float L = dot(SMAASamplePoint(colorTex, texcoord).rgb, weights); + + float Lleft = dot(SMAASamplePoint(colorTex, offset[0].xy).rgb, weights); + float Ltop = dot(SMAASamplePoint(colorTex, offset[0].zw).rgb, weights); + + // We do the usual threshold: + float4 delta; + delta.xy = abs(L - float2(Lleft, Ltop)); + float2 edges = step(threshold, delta.xy); + + // Then discard if there is no edge: + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + // Calculate right and bottom deltas: + float Lright = dot(SMAASamplePoint(colorTex, offset[1].xy).rgb, weights); + float Lbottom = dot(SMAASamplePoint(colorTex, offset[1].zw).rgb, weights); + delta.zw = abs(L - float2(Lright, Lbottom)); + + // Calculate the maximum delta in the direct neighborhood: + float2 maxDelta = max(delta.xy, delta.zw); + + // Calculate left-left and top-top deltas: + float Lleftleft = dot(SMAASamplePoint(colorTex, offset[2].xy).rgb, weights); + float Ltoptop = dot(SMAASamplePoint(colorTex, offset[2].zw).rgb, weights); + delta.zw = abs(float2(Lleft, Ltop) - float2(Lleftleft, Ltoptop)); + + // Calculate the final maximum delta: + maxDelta = max(maxDelta.xy, delta.zw); + float finalDelta = max(maxDelta.x, maxDelta.y); + + // Local contrast adaptation: +#if !defined(SHADER_API_OPENGL) + edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); +#endif + + return edges; +} + +/** + * Color Edge Detection + * + * IMPORTANT NOTICE: color edge detection requires gamma-corrected colors, and + * thus 'colorTex' should be a non-sRGB texture. + */ +float2 SMAAColorEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(colorTex) + #if SMAA_PREDICATION + , SMAATexture2D(predicationTex) + #endif + ) { + // Calculate the threshold: + #if SMAA_PREDICATION + float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, predicationTex); + #else + float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); + #endif + + // Calculate color deltas: + float4 delta; + float3 C = SMAASamplePoint(colorTex, texcoord).rgb; + + float3 Cleft = SMAASamplePoint(colorTex, offset[0].xy).rgb; + float3 t = abs(C - Cleft); + delta.x = max(max(t.r, t.g), t.b); + + float3 Ctop = SMAASamplePoint(colorTex, offset[0].zw).rgb; + t = abs(C - Ctop); + delta.y = max(max(t.r, t.g), t.b); + + // We do the usual threshold: + float2 edges = step(threshold, delta.xy); + + // Then discard if there is no edge: + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + // Calculate right and bottom deltas: + float3 Cright = SMAASamplePoint(colorTex, offset[1].xy).rgb; + t = abs(C - Cright); + delta.z = max(max(t.r, t.g), t.b); + + float3 Cbottom = SMAASamplePoint(colorTex, offset[1].zw).rgb; + t = abs(C - Cbottom); + delta.w = max(max(t.r, t.g), t.b); + + // Calculate the maximum delta in the direct neighborhood: + float2 maxDelta = max(delta.xy, delta.zw); + + // Calculate left-left and top-top deltas: + float3 Cleftleft = SMAASamplePoint(colorTex, offset[2].xy).rgb; + t = abs(Cleft - Cleftleft); + delta.z = max(max(t.r, t.g), t.b); + + float3 Ctoptop = SMAASamplePoint(colorTex, offset[2].zw).rgb; + t = abs(Ctop - Ctoptop); + delta.w = max(max(t.r, t.g), t.b); + + // Calculate the final maximum delta: + maxDelta = max(maxDelta.xy, delta.zw); + float finalDelta = max(maxDelta.x, maxDelta.y); + + // Local contrast adaptation: +#if !defined(SHADER_API_OPENGL) + edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); +#endif + + return edges; +} + +/** + * Depth Edge Detection + */ +float2 SMAADepthEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(depthTex)) { + float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(depthTex)); + float2 delta = abs(neighbours.xx - float2(neighbours.y, neighbours.z)); + float2 edges = step(SMAA_DEPTH_THRESHOLD, delta); + + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + return edges; +} + +//----------------------------------------------------------------------------- +// Diagonal Search Functions + +#if !defined(SMAA_DISABLE_DIAG_DETECTION) + +/** + * Allows to decode two binary values from a bilinear-filtered access. + */ +float2 SMAADecodeDiagBilinearAccess(float2 e) { + // Bilinear access for fetching 'e' have a 0.25 offset, and we are + // interested in the R and G edges: + // + // +---G---+-------+ + // | x o R x | + // +-------+-------+ + // + // Then, if one of these edge is enabled: + // Red: (0.75 * X + 0.25 * 1) => 0.25 or 1.0 + // Green: (0.75 * 1 + 0.25 * X) => 0.75 or 1.0 + // + // This function will unpack the values (mad + mul + round): + // wolframalpha.com: round(x * abs(5 * x - 5 * 0.75)) plot 0 to 1 + e.r = e.r * abs(5.0 * e.r - 5.0 * 0.75); + return round(e); +} + +float4 SMAADecodeDiagBilinearAccess(float4 e) { + e.rb = e.rb * abs(5.0 * e.rb - 5.0 * 0.75); + return round(e); +} + +/** + * These functions allows to perform diagonal pattern searches. + */ +float2 SMAASearchDiag1(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { + float4 coord = float4(texcoord, -1.0, 1.0); + float3 t = float3(SMAA_RT_METRICS.xy, 1.0); + while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && + coord.w > 0.9) { + coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); + e = SMAASampleLevelZero(edgesTex, coord.xy).rg; + coord.w = dot(e, float2(0.5, 0.5)); + } + return coord.zw; +} + +float2 SMAASearchDiag2(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { + float4 coord = float4(texcoord, -1.0, 1.0); + coord.x += 0.25 * SMAA_RT_METRICS.x; // See @SearchDiag2Optimization + float3 t = float3(SMAA_RT_METRICS.xy, 1.0); + while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && + coord.w > 0.9) { + coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); + + // @SearchDiag2Optimization + // Fetch both edges at once using bilinear filtering: + e = SMAASampleLevelZero(edgesTex, coord.xy).rg; + e = SMAADecodeDiagBilinearAccess(e); + + // Non-optimized version: + // e.g = SMAASampleLevelZero(edgesTex, coord.xy).g; + // e.r = SMAASampleLevelZeroOffset(edgesTex, coord.xy, int2(1, 0)).r; + + coord.w = dot(e, float2(0.5, 0.5)); + } + return coord.zw; +} + +/** + * Similar to SMAAArea, this calculates the area corresponding to a certain + * diagonal distance and crossing edges 'e'. + */ +float2 SMAAAreaDiag(SMAATexture2D(areaTex), float2 dist, float2 e, float offset) { + float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE_DIAG, SMAA_AREATEX_MAX_DISTANCE_DIAG), e, dist); + + // We do a scale and bias for mapping to texel space: + texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); + + // Diagonal areas are on the second half of the texture: + texcoord.x += 0.5; + + // Move to proper place, according to the subpixel offset: + texcoord.y += SMAA_AREATEX_SUBTEX_SIZE * offset; + + // Do it! + return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); +} + +/** + * This searches for diagonal patterns and returns the corresponding weights. + */ +float2 SMAACalculateDiagWeights(SMAATexture2D(edgesTex), SMAATexture2D(areaTex), float2 texcoord, float2 e, float4 subsampleIndices) { + float2 weights = float2(0.0, 0.0); + + // Search for the line ends: + float4 d; + float2 end; + if (e.r > 0.0) { + d.xz = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, 1.0), end); + d.x += float(end.y > 0.9); + } else + d.xz = float2(0.0, 0.0); + d.yw = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, -1.0), end); + + SMAA_BRANCH + if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 + // Fetch the crossing edges: + float4 coords = mad(float4(-d.x + 0.25, d.x, d.y, -d.y - 0.25), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + float4 c; + c.xy = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).rg; + c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).rg; + c.yxwz = SMAADecodeDiagBilinearAccess(c.xyzw); + + // Non-optimized version: + // float4 coords = mad(float4(-d.x, d.x, d.y, -d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + // float4 c; + // c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; + // c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, 0)).r; + // c.z = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).g; + // c.w = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, -1)).r; + + // Merge crossing edges at each side into a single value: + float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); + + // Remove the crossing edge if we didn't found the end of the line: + SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); + + // Fetch the areas for this line: + weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.z); + } + + // Search for the line ends: + d.xz = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, -1.0), end); + if (SMAASampleLevelZeroOffset(edgesTex, texcoord, int2(1, 0)).r > 0.0) { + d.yw = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, 1.0), end); + d.y += float(end.y > 0.9); + } else + d.yw = float2(0.0, 0.0); + + SMAA_BRANCH + if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 + // Fetch the crossing edges: + float4 coords = mad(float4(-d.x, -d.x, d.y, d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + float4 c; + c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; + c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, -1)).r; + c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).gr; + float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); + + // Remove the crossing edge if we didn't found the end of the line: + SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); + + // Fetch the areas for this line: + weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.w).gr; + } + + return weights; +} +#endif + +//----------------------------------------------------------------------------- +// Horizontal/Vertical Search Functions + +/** + * This allows to determine how much length should we add in the last step + * of the searches. It takes the bilinearly interpolated edge (see + * @PSEUDO_GATHER4), and adds 0, 1 or 2, depending on which edges and + * crossing edges are active. + */ +float SMAASearchLength(SMAATexture2D(searchTex), float2 e, float offset) { + // The texture is flipped vertically, with left and right cases taking half + // of the space horizontally: + float2 scale = SMAA_SEARCHTEX_SIZE * float2(0.5, -1.0); + float2 bias = SMAA_SEARCHTEX_SIZE * float2(offset, 1.0); + + // Scale and bias to access texel centers: + scale += float2(-1.0, 1.0); + bias += float2( 0.5, -0.5); + + // Convert from pixel coordinates to texcoords: + // (We use SMAA_SEARCHTEX_PACKED_SIZE because the texture is cropped) + scale *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; + bias *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; + + // Lookup the search texture: + return SMAA_SEARCHTEX_SELECT(SMAASampleLevelZero(searchTex, mad(scale, e, bias))); +} + +/** + * Horizontal/vertical search functions for the 2nd pass. + */ +float SMAASearchXLeft(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + /** + * @PSEUDO_GATHER4 + * This texcoord has been offset by (-0.25, -0.125) in the vertex shader to + * sample between edge, thus fetching four edges in a row. + * Sampling with different offsets in each direction allows to disambiguate + * which edges are active from the four fetched ones. + */ + float2 e = float2(0.0, 1.0); + while (texcoord.x > end && + e.g > 0.8281 && // Is there some edge not activated? + e.r == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(-float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); + } + + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0), 3.25); + return mad(SMAA_RT_METRICS.x, offset, texcoord.x); + + // Non-optimized version: + // We correct the previous (-0.25, -0.125) offset we applied: + // texcoord.x += 0.25 * SMAA_RT_METRICS.x; + + // The searches are bias by 1, so adjust the coords accordingly: + // texcoord.x += SMAA_RT_METRICS.x; + + // Disambiguate the length added by the last step: + // texcoord.x += 2.0 * SMAA_RT_METRICS.x; // Undo last step + // texcoord.x -= SMAA_RT_METRICS.x * (255.0 / 127.0) * SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0); + // return mad(SMAA_RT_METRICS.x, offset, texcoord.x); +} + +float SMAASearchXRight(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(0.0, 1.0); + while (texcoord.x < end && + e.g > 0.8281 && // Is there some edge not activated? + e.r == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.5), 3.25); + return mad(-SMAA_RT_METRICS.x, offset, texcoord.x); +} + +float SMAASearchYUp(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(1.0, 0.0); + while (texcoord.y > end && + e.r > 0.8281 && // Is there some edge not activated? + e.g == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(-float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.0), 3.25); + return mad(SMAA_RT_METRICS.y, offset, texcoord.y); +} + +float SMAASearchYDown(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(1.0, 0.0); + while (texcoord.y < end && + e.r > 0.8281 && // Is there some edge not activated? + e.g == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.5), 3.25); + return mad(-SMAA_RT_METRICS.y, offset, texcoord.y); +} + +/** + * Ok, we have the distance and both crossing edges. So, what are the areas + * at each side of current edge? + */ +float2 SMAAArea(SMAATexture2D(areaTex), float2 dist, float e1, float e2, float offset) { + // Rounding prevents precision errors of bilinear filtering: + float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE, SMAA_AREATEX_MAX_DISTANCE), round(4.0 * float2(e1, e2)), dist); + + // We do a scale and bias for mapping to texel space: + texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); + + // Move to proper place, according to the subpixel offset: + texcoord.y = mad(SMAA_AREATEX_SUBTEX_SIZE, offset, texcoord.y); + + // Do it! + return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); +} + +//----------------------------------------------------------------------------- +// Corner Detection Functions + +void SMAADetectHorizontalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { + #if !defined(SMAA_DISABLE_CORNER_DETECTION) + float2 leftRight = step(d.xy, d.yx); + float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; + + rounding /= leftRight.x + leftRight.y; // Reduce blending for pixels in the center of a line. + + float2 factor = float2(1.0, 1.0); + factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, 1)).r; + factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, 1)).r; + factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, -2)).r; + factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, -2)).r; + + weights *= saturate(factor); + #endif +} + +void SMAADetectVerticalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { + #if !defined(SMAA_DISABLE_CORNER_DETECTION) + float2 leftRight = step(d.xy, d.yx); + float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; + + rounding /= leftRight.x + leftRight.y; + + float2 factor = float2(1.0, 1.0); + factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2( 1, 0)).g; + factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2( 1, 1)).g; + factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(-2, 0)).g; + factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(-2, 1)).g; + + weights *= saturate(factor); + #endif +} + + +//----------------------------------------------------------------------------- +// Blending Weight Calculation Pixel Shader (Second Pass) + +float4 SMAABlendingWeightCalculationPS(float2 texcoord, + float2 pixcoord, + float4 offset[3], + SMAATexture2D(edgesTex), + SMAATexture2D(areaTex), + SMAATexture2D(searchTex), + float4 subsampleIndices) { // Just pass zero for SMAA 1x, see @SUBSAMPLE_INDICES. + float4 weights = float4(0.0, 0.0, 0.0, 0.0); + + float2 e = SMAASample(edgesTex, texcoord).rg; + + SMAA_BRANCH + if (e.g > 0.0) { // Edge at north + #if !defined(SMAA_DISABLE_DIAG_DETECTION) + // Diagonals have both north and west edges, so searching for them in + // one of the boundaries is enough. + weights.rg = SMAACalculateDiagWeights(SMAATexturePass2D(edgesTex), SMAATexturePass2D(areaTex), texcoord, e, subsampleIndices); + + // We give priority to diagonals, so if we find a diagonal we skip + // horizontal/vertical processing. + SMAA_BRANCH + if (weights.r == -weights.g) { // weights.r + weights.g == 0.0 + #endif + + float2 d; + + // Find the distance to the left: + float3 coords; + coords.x = SMAASearchXLeft(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].xy, offset[2].x); + coords.y = offset[1].y; // offset[1].y = texcoord.y - 0.25 * SMAA_RT_METRICS.y (@CROSSING_OFFSET) + d.x = coords.x; + + // Now fetch the left crossing edges, two at a time using bilinear + // filtering. Sampling at -0.25 (see @CROSSING_OFFSET) enables to + // discern what value each edge has: + float e1 = SMAASampleLevelZero(edgesTex, coords.xy).r; + + // Find the distance to the right: + coords.z = SMAASearchXRight(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].zw, offset[2].y); + d.y = coords.z; + + // We want the distances to be in pixel units (doing this here allow to + // better interleave arithmetic and memory accesses): + d = abs(round(mad(SMAA_RT_METRICS.zz, d, -pixcoord.xx))); + + // SMAAArea below needs a sqrt, as the areas texture is compressed + // quadratically: + float2 sqrt_d = sqrt(d); + + // Fetch the right crossing edges: + float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.zy, int2(1, 0)).r; + + // Ok, we know how this pattern looks like, now it is time for getting + // the actual area: + weights.rg = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.y); + + // Fix corners: + coords.y = texcoord.y; + SMAADetectHorizontalCornerPattern(SMAATexturePass2D(edgesTex), weights.rg, coords.xyzy, d); + + #if !defined(SMAA_DISABLE_DIAG_DETECTION) + } else + e.r = 0.0; // Skip vertical processing. + #endif + } + + SMAA_BRANCH + if (e.r > 0.0) { // Edge at west + float2 d; + + // Find the distance to the top: + float3 coords; + coords.y = SMAASearchYUp(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].xy, offset[2].z); + coords.x = offset[0].x; // offset[1].x = texcoord.x - 0.25 * SMAA_RT_METRICS.x; + d.x = coords.y; + + // Fetch the top crossing edges: + float e1 = SMAASampleLevelZero(edgesTex, coords.xy).g; + + // Find the distance to the bottom: + coords.z = SMAASearchYDown(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].zw, offset[2].w); + d.y = coords.z; + + // We want the distances to be in pixel units: + d = abs(round(mad(SMAA_RT_METRICS.ww, d, -pixcoord.yy))); + + // SMAAArea below needs a sqrt, as the areas texture is compressed + // quadratically: + float2 sqrt_d = sqrt(d); + + // Fetch the bottom crossing edges: + float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.xz, int2(0, 1)).g; + + // Get the area for this direction: + weights.ba = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.x); + + // Fix corners: + coords.x = texcoord.x; + SMAADetectVerticalCornerPattern(SMAATexturePass2D(edgesTex), weights.ba, coords.xyxz, d); + } + + return weights; +} + +//----------------------------------------------------------------------------- +// UV-based reprojection functions + +#if SMAA_UV_BASED_REPROJECTION +float2 SMAAReproject(float2 texcoord) +{ + // UV to clip-position: + // -- This must be sampled at exactly mip 0 due to possible gradient divergence + // -- as this function is called within a control flow block down below. + float depth = SMAASampleLevelZero(_CameraDepthTexture, texcoord).r; + float3 clipPosition = float3(2. * texcoord - 1., depth); + + // Reproject + float4 previousClipPosition = mul(_ReprojectionMatrix, float4(clipPosition, 1.)); + previousClipPosition.xyz /= previousClipPosition.w; + + // Clip-position to UV + return (.5 * previousClipPosition.xy + .5); +} +#endif + +//----------------------------------------------------------------------------- +// Neighborhood Blending Pixel Shader (Third Pass) + +float4 SMAANeighborhoodBlendingPS(float2 texcoord, + float4 offset, + SMAATexture2D(colorTex), + SMAATexture2D(blendTex) + #if SMAA_REPROJECTION + , SMAATexture2D(velocityTex) + #endif + ) { + // Fetch the blending weights for current pixel: + float4 a; + a.x = SMAASample(blendTex, offset.xy).a; // Right + a.y = SMAASample(blendTex, offset.zw).g; // Top + a.wz = SMAASample(blendTex, texcoord).xz; // Bottom / Left + + // Is there any blending weight with a value greater than 0.0? + SMAA_BRANCH + if (dot(a, float4(1.0, 1.0, 1.0, 1.0)) < 1e-5) { + float4 color = SMAASampleLevelZero(colorTex, texcoord); + + #if SMAA_REPROJECTION + float2 velocity = SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, texcoord)); + #elif SMAA_UV_BASED_REPROJECTION + float2 velocity = texcoord - SMAAReproject(texcoord); + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Pack velocity into the alpha channel: + color.a = sqrt(5.0 * length(velocity)); + #endif + + return color; + } else { + bool h = max(a.x, a.z) > max(a.y, a.w); // max(horizontal) > max(vertical) + + // Calculate the blending offsets: + float4 blendingOffset = float4(0.0, a.y, 0.0, a.w); + float2 blendingWeight = a.yw; + SMAAMovc(bool4(h, h, h, h), blendingOffset, float4(a.x, 0.0, a.z, 0.0)); + SMAAMovc(bool2(h, h), blendingWeight, a.xz); + blendingWeight /= dot(blendingWeight, float2(1.0, 1.0)); + + // Calculate the texture coordinates: + float4 blendingCoord = mad(blendingOffset, float4(SMAA_RT_METRICS.xy, -SMAA_RT_METRICS.xy), texcoord.xyxy); + + // We exploit bilinear filtering to mix current pixel with the chosen + // neighbor: + float4 color = blendingWeight.x * SMAASampleLevelZero(colorTex, blendingCoord.xy); + color += blendingWeight.y * SMAASampleLevelZero(colorTex, blendingCoord.zw); + + #if SMAA_REPROJECTION + // Antialias velocity for proper reprojection in a later stage: + float2 velocity = blendingWeight.x * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.xy)); + velocity += blendingWeight.y * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.zw)); + #elif SMAA_UV_BASED_REPROJECTION + // Antialias velocity for proper reprojection in a later stage: + float2 velocity = blendingWeight.x * (blendingCoord.xy - SMAAReproject(blendingCoord.xy)); + velocity += blendingWeight.y * (blendingCoord.zw - SMAAReproject(blendingCoord.zw)); + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Pack velocity into the alpha channel: + color.a = sqrt(5.0 * length(velocity)); + #endif + + return color; + } +} + +//----------------------------------------------------------------------------- +// Temporal Resolve Pixel Shader (Optional Pass) + +float4 SMAAResolvePS(float2 texcoord, + SMAATexture2D(currentColorTex), + SMAATexture2D(previousColorTex) + #if SMAA_REPROJECTION + , SMAATexture2D(velocityTex) + #endif + ) { + #if SMAA_REPROJECTION + // Velocity is assumed to be calculated for motion blur, so we need to + // inverse it for reprojection: + float2 velocity = -SMAA_DECODE_VELOCITY(SMAASamplePoint(velocityTex, texcoord).rg); + #elif SMAA_UV_BASED_REPROJECTION + float2 velocity = SMAAReproject(texcoord) - texcoord; + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Fetch current pixel: + float4 current = SMAASamplePoint(currentColorTex, texcoord); + + // Reproject current coordinates and fetch previous pixel: + float4 previous = SMAASamplePoint(previousColorTex, texcoord + velocity); + + // Attenuate the previous pixel if the velocity is different: + float delta = abs(current.a * current.a - previous.a * previous.a) / 5.0; + float weight = 0.5 * saturate(1.0 - sqrt(delta) * SMAA_REPROJECTION_WEIGHT_SCALE); + + // Blend the pixels according to the calculated weight: + // return lerp(current, previous, weight); + + // Neighbour clamp + // Contributed by pommak + float4 n0 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, -1)); + float4 n1 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, -1)); + float4 n2 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, +1)); + float4 n3 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, +1)); + float4 cmax = max(n0, max(n1, max(n2, n3))); + float4 cmin = min(n0, min(n1, min(n2, n3))); + float4 avg = 0.25 * (n0+n1+n2+n3); + float4 wk = abs(avg - current); + float blend = saturate(lerp(0.35, 0.85, wk)); + + // Clamp previous to neighbours colors + float4 previousClamped = clamp(previous, cmin, cmax); + + float4 color = lerp(lerp(current, previousClamped, 0.5*weight), previousClamped, weight); + return color; + #else + // Just blend the pixels: + float4 current = SMAASamplePoint(currentColorTex, texcoord); + float4 previous = SMAASamplePoint(previousColorTex, texcoord); + return lerp(current, previous, 0.5); + #endif +} + +//----------------------------------------------------------------------------- +// Separate Multisamples Pixel Shader (Optional Pass) + +#ifdef SMAALoad +void SMAASeparatePS(float4 position, + float2 texcoord, + out float4 target0, + out float4 target1, + SMAATexture2DMS2(colorTexMS)) { + int2 pos = int2(position.xy); + target0 = SMAALoad(colorTexMS, pos, 0); + target1 = SMAALoad(colorTexMS, pos, 1); +} +#endif + +//----------------------------------------------------------------------------- +#endif // SMAA_INCLUDE_PS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta new file mode 100644 index 0000000..6b0c83c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3e6879594f0f31c42b64e91e59fe78f6 +timeCreated: 1497734907 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader new file mode 100644 index 0000000..b0eaa5f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader @@ -0,0 +1,103 @@ +Shader "Hidden/PostProcessing/SubpixelMorphologicalAntialiasing" +{ + HLSLINCLUDE + + #pragma exclude_renderers d3d11_9x + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Edge detection (Low) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_LOW + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 1 - Edge detection (Medium) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_MEDIUM + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 2 - Edge detection (High) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_HIGH + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 3 - Blend Weights Calculation (Low) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_LOW + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 4 - Blend Weights Calculation (Medium) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_MEDIUM + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 5 - Blend Weights Calculation (High) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_HIGH + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 6 - Neighborhood Blending + Pass + { + HLSLPROGRAM + + #pragma vertex VertNeighbor + #pragma fragment FragNeighbor + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta new file mode 100644 index 0000000..c3c1968 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 81af42a93ade3dd46a9b583d4eec76d6 +timeCreated: 1497734907 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl new file mode 100644 index 0000000..ba58fa6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl @@ -0,0 +1,120 @@ +#ifndef UNITY_POSTFX_SMAA_BRIDGE +#define UNITY_POSTFX_SMAA_BRIDGE + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +TEXTURE2D_SAMPLER2D(_BlendTex, sampler_BlendTex); +TEXTURE2D_SAMPLER2D(_AreaTex, sampler_AreaTex); +TEXTURE2D_SAMPLER2D(_SearchTex, sampler_SearchTex); +float4 _MainTex_TexelSize; + +#define SMAA_RT_METRICS _MainTex_TexelSize +#define SMAA_AREATEX_SELECT(s) s.rg +#define SMAA_SEARCHTEX_SELECT(s) s.a +#define LinearSampler sampler_MainTex +#define PointSampler sampler_MainTex + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl" + +// ---------------------------------------------------------------------------------------- +// Edge Detection + +struct VaryingsEdge +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float4 offsets[3] : TEXCOORD1; +}; + +VaryingsEdge VertEdge(AttributesDefault v) +{ + VaryingsEdge o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), o.texcoord.xyxy); + o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); + o.offsets[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), o.texcoord.xyxy); + + return o; +} + +float4 FragEdge(VaryingsEdge i) : SV_Target +{ + return float4(SMAAColorEdgeDetectionPS(i.texcoord, i.offsets, _MainTex), 0.0, 0.0); +} + +// ---------------------------------------------------------------------------------------- +// Blend Weights Calculation + +struct VaryingsBlend +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 pixcoord : TEXCOORD1; + float4 offsets[3] : TEXCOORD2; +}; + +VaryingsBlend VertBlend(AttributesDefault v) +{ + VaryingsBlend o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.pixcoord = o.texcoord * SMAA_RT_METRICS.zw; + + // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): + o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.250, -0.125, 1.250, -0.125), o.texcoord.xyxy); + o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.250, -0.125, 1.250), o.texcoord.xyxy); + + // And these for the searches, they indicate the ends of the loops: + o.offsets[2] = mad(SMAA_RT_METRICS.xxyy, float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), + float4(o.offsets[0].xz, o.offsets[1].yw)); + + return o; +} + +float4 FragBlend(VaryingsBlend i) : SV_Target +{ + return SMAABlendingWeightCalculationPS(i.texcoord, i.pixcoord, i.offsets, _MainTex, _AreaTex, _SearchTex, 0); +} + +// ---------------------------------------------------------------------------------------- +// Neighborhood Blending + +struct VaryingsNeighbor +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float4 offset : TEXCOORD1; +}; + +VaryingsNeighbor VertNeighbor(AttributesDefault v) +{ + VaryingsNeighbor o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.offset = mad(SMAA_RT_METRICS.xyxy, float4(1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); + return o; +} + +float4 FragNeighbor(VaryingsNeighbor i) : SV_Target +{ + return SMAANeighborhoodBlendingPS(i.texcoord, i.offset, _MainTex, _BlendTex); +} + +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta new file mode 100644 index 0000000..4079eb3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4484ba9c9f221894bad091ea59c4b9c0 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader new file mode 100644 index 0000000..11d6d05 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader @@ -0,0 +1,165 @@ +Shader "Hidden/PostProcessing/TemporalAntialiasing" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles psp2 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + + #if UNITY_VERSION >= 201710 + #define _MainTexSampler sampler_LinearClamp + #else + #define _MainTexSampler sampler_MainTex + #endif + + TEXTURE2D_SAMPLER2D(_MainTex, _MainTexSampler); + float4 _MainTex_TexelSize; + + TEXTURE2D_SAMPLER2D(_HistoryTex, sampler_HistoryTex); + + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + float4 _CameraDepthTexture_TexelSize; + + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + + float2 _Jitter; + float4 _FinalBlendParameters; // x: static, y: dynamic, z: motion amplification + float _Sharpness; + + float2 GetClosestFragment(float2 uv) + { + const float2 k = _CameraDepthTexture_TexelSize.xy; + + const float4 neighborhood = float4( + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv - k)), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(k.x, -k.y))), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(-k.x, k.y))), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + k)) + ); + + #if defined(UNITY_REVERSED_Z) + #define COMPARE_DEPTH(a, b) step(b, a) + #else + #define COMPARE_DEPTH(a, b) step(a, b) + #endif + + float3 result = float3(0.0, 0.0, SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, uv)); + result = lerp(result, float3(-1.0, -1.0, neighborhood.x), COMPARE_DEPTH(neighborhood.x, result.z)); + result = lerp(result, float3( 1.0, -1.0, neighborhood.y), COMPARE_DEPTH(neighborhood.y, result.z)); + result = lerp(result, float3(-1.0, 1.0, neighborhood.z), COMPARE_DEPTH(neighborhood.z, result.z)); + result = lerp(result, float3( 1.0, 1.0, neighborhood.w), COMPARE_DEPTH(neighborhood.w, result.z)); + + return (uv + result.xy * k); + } + + float4 ClipToAABB(float4 color, float3 minimum, float3 maximum) + { + // Note: only clips towards aabb center (but fast!) + float3 center = 0.5 * (maximum + minimum); + float3 extents = 0.5 * (maximum - minimum); + + // This is actually `distance`, however the keyword is reserved + float3 offset = color.rgb - center; + + float3 ts = abs(extents / (offset + 0.0001)); + float t = saturate(Min3(ts.x, ts.y, ts.z)); + color.rgb = center + offset * t; + return color; + } + + struct OutputSolver + { + float4 destination : SV_Target0; + float4 history : SV_Target1; + }; + + OutputSolver Solve(float2 motion, float2 texcoord) + { + const float2 k = _MainTex_TexelSize.xy; + float2 uv = UnityStereoClamp(texcoord - _Jitter); + + float4 color = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, uv); + + float4 topLeft = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv - k * 0.5)); + float4 bottomRight = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv + k * 0.5)); + + float4 corners = 4.0 * (topLeft + bottomRight) - 2.0 * color; + + // Sharpen output + color += (color - (corners * 0.166667)) * 2.718282 * _Sharpness; + color = clamp(color, 0.0, HALF_MAX_MINUS1); + + // Tonemap color and history samples + float4 average = (corners + color) * 0.142857; + + float4 history = SAMPLE_TEXTURE2D(_HistoryTex, sampler_HistoryTex, UnityStereoClamp(texcoord - motion)); + + float motionLength = length(motion); + float2 luma = float2(Luminance(average), Luminance(color)); + //float nudge = 4.0 * abs(luma.x - luma.y); + float nudge = lerp(4.0, 0.25, saturate(motionLength * 100.0)) * abs(luma.x - luma.y); + + float4 minimum = min(bottomRight, topLeft) - nudge; + float4 maximum = max(topLeft, bottomRight) + nudge; + + // Clip history samples + history = ClipToAABB(history, minimum.xyz, maximum.xyz); + + // Blend method + float weight = clamp( + lerp(_FinalBlendParameters.x, _FinalBlendParameters.y, motionLength * _FinalBlendParameters.z), + _FinalBlendParameters.y, _FinalBlendParameters.x + ); + + color = lerp(color, history, weight); + color = clamp(color, 0.0, HALF_MAX_MINUS1); + + OutputSolver output; + output.destination = color; + output.history = color; + return output; + } + + OutputSolver FragSolverDilate(VaryingsDefault i) + { + float2 closest = GetClosestFragment(i.texcoordStereo); + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, closest).xy; + return Solve(motion, i.texcoordStereo); + } + + OutputSolver FragSolverNoDilate(VaryingsDefault i) + { + // Don't dilate in ortho ! + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoordStereo).xy; + return Solve(motion, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0: Perspective + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragSolverDilate + + ENDHLSL + } + + // 1: Ortho + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragSolverNoDilate + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta new file mode 100644 index 0000000..3702fbe --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 51bcf79c50dc92e47ba87821b61100c3 +timeCreated: 1490261802 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader new file mode 100644 index 0000000..44a3064 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader @@ -0,0 +1,50 @@ +Shader "Hidden/PostProcessing/Texture2DLerp" +{ + HLSLINCLUDE + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); // From + TEXTURE2D_SAMPLER2D(_To, sampler_To); + float _Interp; + float4 _TargetColor; + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 to = SAMPLE_TEXTURE2D(_To, sampler_To, i.texcoord); + return lerp(from, to, _Interp); + } + + float4 FragColor(VaryingsDefault i) : SV_Target + { + float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 to = _TargetColor; + return lerp(from, to, _Interp); + } + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragColor + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta new file mode 100644 index 0000000..5316852 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34a819c9e33402547a81619693adc8d5 +timeCreated: 1493129446 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute new file mode 100644 index 0000000..8a408f7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute @@ -0,0 +1,50 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + +#pragma kernel KTexture3DLerp +#pragma kernel KTexture3DLerpToColor + +RWTexture3D _Output; + +CBUFFER_START(Params) + float4 _DimensionsAndLerp; // xyz: surface dimensions, w: lerp factor + float4 _TargetColor; // Color to lerp into +CBUFFER_END + +Texture3D _From; +Texture3D _To; + +#define GROUP_SIZE 4 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KTexture3DLerp) +TRIVIAL_COMPUTE_KERNEL(KTexture3DLerpToColor) + +#else + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KTexture3DLerp(uint3 id : SV_DispatchThreadID) +{ + if(all(float3(id) < _DimensionsAndLerp.xyz)) + { + float4 from = _From[id]; + float4 to = _To[id]; + _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); + } +} + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KTexture3DLerpToColor(uint3 id : SV_DispatchThreadID) +{ + if(all(float3(id) < _DimensionsAndLerp.xyz)) + { + float4 from = _From[id]; + float4 to = _TargetColor; + _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta new file mode 100644 index 0000000..5cfc24e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 31e9175024adfd44aba2530ff9b77494 +timeCreated: 1496933873 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 4 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader new file mode 100644 index 0000000..8da2f91 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader @@ -0,0 +1,315 @@ +Shader "Hidden/PostProcessing/Uber" +{ + HLSLINCLUDE + + #pragma target 3.0 + + #pragma multi_compile __ DISTORT + #pragma multi_compile __ CHROMATIC_ABERRATION CHROMATIC_ABERRATION_LOW + #pragma multi_compile __ BLOOM BLOOM_LOW + #pragma multi_compile __ VIGNETTE + #pragma multi_compile __ GRAIN + #pragma multi_compile __ FINALPASS + // the following keywords are handled in API specific SubShaders below + // #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + // #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + + #pragma vertex VertUVTransform + #pragma fragment FragUber + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Distortion.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Dithering.hlsl" + + #define MAX_CHROMATIC_SAMPLES 16 + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + // Auto exposure / eye adaptation + TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); + + // Bloom + TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); + TEXTURE2D_SAMPLER2D(_Bloom_DirtTex, sampler_Bloom_DirtTex); + float4 _BloomTex_TexelSize; + float4 _Bloom_DirtTileOffset; // xy: tiling, zw: offset + half3 _Bloom_Settings; // x: sampleScale, y: intensity, z: dirt intensity + half3 _Bloom_Color; + + // Chromatic aberration + TEXTURE2D_SAMPLER2D(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut); + half _ChromaticAberration_Amount; + + // Color grading + #if COLOR_GRADING_HDR_3D + + TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); + float2 _Lut3D_Params; + + #else + + TEXTURE2D_SAMPLER2D(_Lut2D, sampler_Lut2D); + float3 _Lut2D_Params; + + #endif + + half _PostExposure; // EV (exp2) + + // Vignette + half3 _Vignette_Color; + half2 _Vignette_Center; // UV space + half4 _Vignette_Settings; // x: intensity, y: smoothness, z: roundness, w: rounded + half _Vignette_Opacity; + half _Vignette_Mode; // <0.5: procedural, >=0.5: masked + TEXTURE2D_SAMPLER2D(_Vignette_Mask, sampler_Vignette_Mask); + + // Grain + TEXTURE2D_SAMPLER2D(_GrainTex, sampler_GrainTex); + half2 _Grain_Params1; // x: lum_contrib, y: intensity + float4 _Grain_Params2; // x: xscale, h: yscale, z: xoffset, w: yoffset + + // Misc + half _LumaInAlpha; + + half4 FragUber(VaryingsDefault i) : SV_Target + { + float2 uv = i.texcoord; + + //>>> Automatically skipped by the shader optimizer when not used + float2 uvDistorted = Distort(i.texcoord); + float2 uvStereoDistorted = Distort(i.texcoordStereo); + //<<< + + half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; + half4 color = (0.0).xxxx; + + // Inspired by the method described in "Rendering Inside" [Playdead 2016] + // https://twitter.com/pixelmager/status/717019757766123520 + #if CHROMATIC_ABERRATION + { + float2 coords = 2.0 * uv - 1.0; + float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; + + float2 diff = end - uv; + int samples = clamp(int(length(_MainTex_TexelSize.zw * diff / 2.0)), 3, MAX_CHROMATIC_SAMPLES); + float2 delta = diff / samples; + float2 pos = uv; + half4 sum = (0.0).xxxx, filterSum = (0.0).xxxx; + + for (int i = 0; i < samples; i++) + { + half t = (i + 0.5) / samples; + half4 s = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(pos)), 0); + half4 filter = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(t, 0.0), 0).rgb, 1.0); + + sum += s * filter; + filterSum += filter; + pos += delta; + } + + color = sum / filterSum; + } + #elif CHROMATIC_ABERRATION_LOW + { + float2 coords = 2.0 * uv - 1.0; + float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; + float2 delta = (end - uv) / 3; + + half4 filterA = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(0.5 / 3, 0.0), 0).rgb, 1.0); + half4 filterB = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(1.5 / 3, 0.0), 0).rgb, 1.0); + half4 filterC = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(2.5 / 3, 0.0), 0).rgb, 1.0); + + half4 texelA = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(uv)), 0); + half4 texelB = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta + uv)), 0); + half4 texelC = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta * 2.0 + uv)), 0); + + half4 sum = texelA * filterA + texelB * filterB + texelC * filterC; + half4 filterSum = filterA + filterB + filterC; + color = sum / filterSum; + } + #else + { + color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uvStereoDistorted); + } + #endif + + // Gamma space... Gah. + #if UNITY_COLORSPACE_GAMMA + { + color = SRGBToLinear(color); + } + #endif + + color.rgb *= autoExposure; + + #if BLOOM || BLOOM_LOW + { + #if BLOOM + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); + #else + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); + #endif + + // UVs should be Distort(uv * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw) + // but considering we use a cover-style scale on the dirt texture the difference + // isn't massive so we chose to save a few ALUs here instead in case lens distortion + // is active + half4 dirt = half4(SAMPLE_TEXTURE2D(_Bloom_DirtTex, sampler_Bloom_DirtTex, uvDistorted * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw).rgb, 0.0); + + // Additive bloom (artist friendly) + bloom *= _Bloom_Settings.y; + dirt *= _Bloom_Settings.z; + color += bloom * half4(_Bloom_Color, 1.0); + color += dirt * bloom; + } + #endif + + #if VIGNETTE + { + UNITY_BRANCH + if (_Vignette_Mode < 0.5) + { + half2 d = abs(uvDistorted - _Vignette_Center) * _Vignette_Settings.x; + d.x *= lerp(1.0, _ScreenParams.x / _ScreenParams.y, _Vignette_Settings.w); + d = pow(saturate(d), _Vignette_Settings.z); // Roundness + half vfactor = pow(saturate(1.0 - dot(d, d)), _Vignette_Settings.y); + color.rgb *= lerp(_Vignette_Color, (1.0).xxx, vfactor); + color.a = lerp(1.0, color.a, vfactor); + } + else + { + half vfactor = SAMPLE_TEXTURE2D(_Vignette_Mask, sampler_Vignette_Mask, uvDistorted).a; + + #if !UNITY_COLORSPACE_GAMMA + { + vfactor = SRGBToLinear(vfactor); + } + #endif + + half3 new_color = color.rgb * lerp(_Vignette_Color, (1.0).xxx, vfactor); + color.rgb = lerp(color.rgb, new_color, _Vignette_Opacity); + color.a = lerp(1.0, color.a, vfactor); + } + } + #endif + + #if GRAIN + { + half3 grain = SAMPLE_TEXTURE2D(_GrainTex, sampler_GrainTex, i.texcoordStereo * _Grain_Params2.xy + _Grain_Params2.zw).rgb; + + // Noisiness response curve based on scene luminance + float lum = 1.0 - sqrt(Luminance(saturate(color))); + lum = lerp(1.0, lum, _Grain_Params1.x); + + color.rgb += color.rgb * grain * _Grain_Params1.y * lum; + } + #endif + + #if COLOR_GRADING_HDR_3D + { + color *= _PostExposure; + float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); + color.rgb = ApplyLut3D(TEXTURE3D_PARAM(_Lut3D, sampler_Lut3D), colorLutSpace, _Lut3D_Params); + } + #elif COLOR_GRADING_HDR_2D + { + color *= _PostExposure; + float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); + color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), colorLutSpace, _Lut2D_Params); + } + #elif COLOR_GRADING_LDR_2D + { + color = saturate(color); + + // LDR Lut lookup needs to be in sRGB - for HDR stick to linear + color.rgb = LinearToSRGB(color.rgb); + color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), color.rgb, _Lut2D_Params); + color.rgb = SRGBToLinear(color.rgb); + } + #endif + + half4 output = color; + + #if FINALPASS + { + #if UNITY_COLORSPACE_GAMMA + { + output = LinearToSRGB(output); + } + #endif + + output.rgb = Dither(output.rgb, i.texcoord); + } + #else + { + UNITY_BRANCH + if (_LumaInAlpha > 0.5) + { + // Put saturated luma in alpha for FXAA - higher quality than "green as luma" and + // necessary as RGB values will potentially still be HDR for the FXAA pass + half luma = Luminance(saturate(output)); + output.a = luma; + } + + #if UNITY_COLORSPACE_GAMMA + { + output = LinearToSRGB(output); + } + #endif + } + #endif + + // Output RGB is still HDR at that point (unless range was crunched by a tonemapper) + return output; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers vulkan switch + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // disabled for Vulkan because of shader compiler issues in older Unity versions: STEREO_INSTANCING_ENABLED + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D // not supported by OpenGL ES 2.0: COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // not supported by OpenGL ES 2.0: STEREO_INSTANCING_ENABLED + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader.meta new file mode 100644 index 0000000..9cc4b69 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Builtins/Uber.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 382151503e2a43a4ebb7366d1632731d +timeCreated: 1488883455 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl new file mode 100644 index 0000000..5a25c30 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl @@ -0,0 +1,650 @@ +#ifndef UNITY_POSTFX_COLOR +#define UNITY_POSTFX_COLOR + +#include "StdLib.hlsl" +#include "ACES.hlsl" + +#define LUT_SPACE_ENCODE(x) LinearToLogC(x) +#define LUT_SPACE_DECODE(x) LogCToLinear(x) + +#ifndef USE_PRECISE_LOGC + // Set to 1 to use more precise but more expensive log/linear conversions. I haven't found a proper + // use case for the high precision version yet so I'm leaving this to 0. + #define USE_PRECISE_LOGC 0 +#endif + +#ifndef TONEMAPPING_USE_FULL_ACES + // Set to 1 to use the full reference ACES tonemapper. This should only be used for research + // purposes as it's quite heavy and generally overkill. + #define TONEMAPPING_USE_FULL_ACES 0 +#endif + +#ifndef DEFAULT_MAX_PQ + // PQ ST.2048 max value + // 1.0 = 100nits, 100.0 = 10knits + #define DEFAULT_MAX_PQ 100.0 +#endif + +#ifndef USE_VERY_FAST_SRGB + #if defined(SHADER_API_MOBILE) + #define USE_VERY_FAST_SRGB 1 + #else + #define USE_VERY_FAST_SRGB 0 + #endif +#endif + +#ifndef USE_FAST_SRGB + #if defined(SHADER_API_CONSOLE) + #define USE_FAST_SRGB 1 + #else + #define USE_FAST_SRGB 0 + #endif +#endif + +// +// Alexa LogC converters (El 1000) +// See http://www.vocas.nl/webfm_send/964 +// Max range is ~58.85666 +// +struct ParamsLogC +{ + float cut; + float a, b, c, d, e, f; +}; + +static const ParamsLogC LogC = +{ + 0.011361, // cut + 5.555556, // a + 0.047996, // b + 0.244161, // c + 0.386036, // d + 5.301883, // e + 0.092819 // f +}; + +float LinearToLogC_Precise(half x) +{ + float o; + if (x > LogC.cut) + o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; + else + o = LogC.e * x + LogC.f; + return o; +} + +float3 LinearToLogC(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LinearToLogC_Precise(x.x), + LinearToLogC_Precise(x.y), + LinearToLogC_Precise(x.z) + ); +#else + return LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; +#endif +} + +float LogCToLinear_Precise(float x) +{ + float o; + if (x > LogC.e * LogC.cut + LogC.f) + o = (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; + else + o = (x - LogC.f) / LogC.e; + return o; +} + +float3 LogCToLinear(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LogCToLinear_Precise(x.x), + LogCToLinear_Precise(x.y), + LogCToLinear_Precise(x.z) + ); +#else + return (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; +#endif +} + +// +// SMPTE ST.2084 (PQ) transfer functions +// Used for HDR Lut storage, max range depends on the maxPQValue parameter +// +struct ParamsPQ +{ + float N, M; + float C1, C2, C3; +}; + +static const ParamsPQ PQ = +{ + 2610.0 / 4096.0 / 4.0, // N + 2523.0 / 4096.0 * 128.0, // M + 3424.0 / 4096.0, // C1 + 2413.0 / 4096.0 * 32.0, // C2 + 2392.0 / 4096.0 * 32.0, // C3 +}; + +float3 LinearToPQ(float3 x, float maxPQValue) +{ + x = PositivePow(x / maxPQValue, PQ.N); + float3 nd = (PQ.C1 + PQ.C2 * x) / (1.0 + PQ.C3 * x); + return PositivePow(nd, PQ.M); +} + +float3 LinearToPQ(float3 x) +{ + return LinearToPQ(x, DEFAULT_MAX_PQ); +} + +float3 PQToLinear(float3 x, float maxPQValue) +{ + x = PositivePow(x, rcp(PQ.M)); + float3 nd = max(x - PQ.C1, 0.0) / (PQ.C2 - (PQ.C3 * x)); + return PositivePow(nd, rcp(PQ.N)) * maxPQValue; +} + +float3 PQToLinear(float3 x) +{ + return PQToLinear(x, DEFAULT_MAX_PQ); +} + +// +// sRGB transfer functions +// Fast path ref: http://chilliant.blogspot.com.au/2012/08/srgb-approximations-for-hlsl.html?m=1 +// +half SRGBToLinear(half c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half linearRGBLo = c / 12.92; + half linearRGBHi = PositivePow((c + 0.055) / 1.055, 2.4); + half linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half3 SRGBToLinear(half3 c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half3 linearRGBLo = c / 12.92; + half3 linearRGBHi = PositivePow((c + 0.055) / 1.055, half3(2.4, 2.4, 2.4)); + half3 linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half4 SRGBToLinear(half4 c) +{ + return half4(SRGBToLinear(c.rgb), c.a); +} + +half LinearToSRGB(half c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half sRGBLo = c * 12.92; + half sRGBHi = (PositivePow(c, 1.0 / 2.4) * 1.055) - 0.055; + half sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half3 LinearToSRGB(half3 c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half3 sRGBLo = c * 12.92; + half3 sRGBHi = (PositivePow(c, half3(1.0 / 2.4, 1.0 / 2.4, 1.0 / 2.4)) * 1.055) - 0.055; + half3 sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half4 LinearToSRGB(half4 c) +{ + return half4(LinearToSRGB(c.rgb), c.a); +} + +// +// Convert rgb to luminance with rgb in linear space with sRGB primaries and D65 white point +// +half Luminance(half3 linearRgb) +{ + return dot(linearRgb, float3(0.2126729, 0.7151522, 0.0721750)); +} + +half Luminance(half4 linearRgba) +{ + return Luminance(linearRgba.rgb); +} + +// +// Quadratic color thresholding +// curve = (threshold - knee, knee * 2, 0.25 / knee) +// +half4 QuadraticThreshold(half4 color, half threshold, half3 curve) +{ + // Pixel brightness + half br = Max3(color.r, color.g, color.b); + + // Under-threshold part: quadratic curve + half rq = clamp(br - curve.x, 0.0, curve.y); + rq = curve.z * rq * rq; + + // Combine and apply the brightness response curve. + color *= max(rq, br - threshold) / max(br, EPSILON); + + return color; +} + +// +// Fast reversible tonemapper +// http://gpuopen.com/optimized-reversible-tonemapper-for-resolve/ +// +float3 FastTonemap(float3 c) +{ + return c * rcp(Max3(c.r, c.g, c.b) + 1.0); +} + +float4 FastTonemap(float4 c) +{ + return float4(FastTonemap(c.rgb), c.a); +} + +float3 FastTonemap(float3 c, float w) +{ + return c * (w * rcp(Max3(c.r, c.g, c.b) + 1.0)); +} + +float4 FastTonemap(float4 c, float w) +{ + return float4(FastTonemap(c.rgb, w), c.a); +} + +float3 FastTonemapInvert(float3 c) +{ + return c * rcp(1.0 - Max3(c.r, c.g, c.b)); +} + +float4 FastTonemapInvert(float4 c) +{ + return float4(FastTonemapInvert(c.rgb), c.a); +} + +// +// Neutral tonemapping (Hable/Hejl/Frostbite) +// Input is linear RGB +// +float3 NeutralCurve(float3 x, float a, float b, float c, float d, float e, float f) +{ + return ((x * (a * x + c * b) + d * e) / (x * (a * x + b) + d * f)) - e / f; +} + +float3 NeutralTonemap(float3 x) +{ + // Tonemap + float a = 0.2; + float b = 0.29; + float c = 0.24; + float d = 0.272; + float e = 0.02; + float f = 0.3; + float whiteLevel = 5.3; + float whiteClip = 1.0; + + float3 whiteScale = (1.0).xxx / NeutralCurve(whiteLevel, a, b, c, d, e, f); + x = NeutralCurve(x * whiteScale, a, b, c, d, e, f); + x *= whiteScale; + + // Post-curve white point adjustment + x /= whiteClip.xxx; + + return x; +} + +// +// Raw, unoptimized version of John Hable's artist-friendly tone curve +// Input is linear RGB +// +float EvalCustomSegment(float x, float4 segmentA, float2 segmentB) +{ + const float kOffsetX = segmentA.x; + const float kOffsetY = segmentA.y; + const float kScaleX = segmentA.z; + const float kScaleY = segmentA.w; + const float kLnA = segmentB.x; + const float kB = segmentB.y; + + float x0 = (x - kOffsetX) * kScaleX; + float y0 = (x0 > 0.0) ? exp(kLnA + kB * log(x0)) : 0.0; + return y0 * kScaleY + kOffsetY; +} + +float EvalCustomCurve(float x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float4 segmentA; + float2 segmentB; + + if (x < curve.y) + { + segmentA = toeSegmentA; + segmentB = toeSegmentB; + } + else if (x < curve.z) + { + segmentA = midSegmentA; + segmentB = midSegmentB; + } + else + { + segmentA = shoSegmentA; + segmentB = shoSegmentB; + } + + return EvalCustomSegment(x, segmentA, segmentB); +} + +// curve: x: inverseWhitePoint, y: x0, z: x1 +float3 CustomTonemap(float3 x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float3 normX = x * curve.x; + float3 ret; + ret.x = EvalCustomCurve(normX.x, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.y = EvalCustomCurve(normX.y, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.z = EvalCustomCurve(normX.z, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + return ret; +} + +// +// Filmic tonemapping (ACES fitting, unless TONEMAPPING_USE_FULL_ACES is set to 1) +// Input is ACES2065-1 (AP0 w/ linear encoding) +// +float3 AcesTonemap(float3 aces) +{ +#if TONEMAPPING_USE_FULL_ACES + + float3 oces = RRT(aces); + float3 odt = ODT_RGBmonitor_100nits_dim(oces); + return odt; + +#else + + // --- Glow module --- // + float saturation = rgb_2_saturation(aces); + float ycIn = rgb_2_yc(aces); + float s = sigmoid_shaper((saturation - 0.4) / 0.2); + float addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + float hue = rgb_2_hue(aces); + float centeredHue = center_hue(hue, RRT_RED_HUE); + float hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + float3 acescg = max(0.0, ACES_to_ACEScg(aces)); + + // --- Global desaturation --- // + //acescg = mul(RRT_SAT_MAT, acescg); + acescg = lerp(dot(acescg, AP1_RGB2Y).xxx, acescg, RRT_SAT_FACTOR.xxx); + + // Luminance fitting of *RRT.a1.0.3 + ODT.Academy.RGBmonitor_100nits_dim.a1.0.3*. + // https://github.com/colour-science/colour-unity/blob/master/Assets/Colour/Notebooks/CIECAM02_Unity.ipynb + // RMSE: 0.0012846272106 + const float a = 278.5085; + const float b = 10.7772; + const float c = 293.6045; + const float d = 88.7122; + const float e = 80.6889; + float3 x = acescg; + float3 rgbPost = (x * (a * x + b)) / (x * (c * x + d) + e); + + // Scale luminance to linear code value + // float3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + float3 linearCV = darkSurround_to_dimSurround(rgbPost); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, color); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + float3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + return linearCV; + +#endif +} + +// +// 3D LUT grading +// scaleOffset = (1 / lut_size, lut_size - 1) +// +half3 ApplyLut3D(TEXTURE3D_ARGS(tex, samplerTex), float3 uvw, float2 scaleOffset) +{ + uvw.xyz = uvw.xyz * scaleOffset.yyy * scaleOffset.xxx + scaleOffset.xxx * 0.5; + return SAMPLE_TEXTURE3D(tex, samplerTex, uvw).rgb; +} + +// +// 2D LUT grading +// scaleOffset = (1 / lut_width, 1 / lut_height, lut_height - 1) +// +half3 ApplyLut2D(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float3 scaleOffset) +{ + // Strip format where `height = sqrt(width)` + uvw.z *= scaleOffset.z; + float shift = floor(uvw.z); + uvw.xy = uvw.xy * scaleOffset.z * scaleOffset.xy + scaleOffset.xy * 0.5; + uvw.x += shift * scaleOffset.y; + uvw.xyz = lerp( + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(scaleOffset.y, 0.0)).rgb, + uvw.z - shift + ); + return uvw; +} + +// +// Returns the default value for a given position on a 2D strip-format color lookup table +// params = (lut_height, 0.5 / lut_width, 0.5 / lut_height, lut_height / lut_height - 1) +// +float3 GetLutStripValue(float2 uv, float4 params) +{ + uv -= params.yz; + float3 color; + color.r = frac(uv.x * params.x); + color.b = uv.x - color.r / params.x; + color.g = uv.y; + return color * params.w; +} + +// +// White balance +// Recommended workspace: ACEScg (linear) +// +static const float3x3 LIN_2_LMS_MAT = { + 3.90405e-1, 5.49941e-1, 8.92632e-3, + 7.08416e-2, 9.63172e-1, 1.35775e-3, + 2.31082e-2, 1.28021e-1, 9.36245e-1 +}; + +static const float3x3 LMS_2_LIN_MAT = { + 2.85847e+0, -1.62879e+0, -2.48910e-2, + -2.10182e-1, 1.15820e+0, 3.24281e-4, + -4.18120e-2, -1.18169e-1, 1.06867e+0 +}; + +float3 WhiteBalance(float3 c, float3 balance) +{ + float3 lms = mul(LIN_2_LMS_MAT, c); + lms *= balance; + return mul(LMS_2_LIN_MAT, lms); +} + +// +// RGB / Full-range YCbCr conversions (ITU-R BT.601) +// +float3 RgbToYCbCr(float3 c) +{ + float Y = 0.299 * c.r + 0.587 * c.g + 0.114 * c.b; + float Cb = -0.169 * c.r - 0.331 * c.g + 0.500 * c.b; + float Cr = 0.500 * c.r - 0.419 * c.g - 0.081 * c.b; + return float3(Y, Cb, Cr); +} + +float3 YCbCrToRgb(float3 c) +{ + float R = c.x + 0.000 * c.y + 1.403 * c.z; + float G = c.x - 0.344 * c.y - 0.714 * c.z; + float B = c.x - 1.773 * c.y + 0.000 * c.z; + return float3(R, G, B); +} + +// +// Hue, Saturation, Value +// Ranges: +// Hue [0.0, 1.0] +// Sat [0.0, 1.0] +// Lum [0.0, HALF_MAX] +// +float3 RgbToHsv(float3 c) +{ + float4 K = float4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + float4 p = lerp(float4(c.bg, K.wz), float4(c.gb, K.xy), step(c.b, c.g)); + float4 q = lerp(float4(p.xyw, c.r), float4(c.r, p.yzx), step(p.x, c.r)); + float d = q.x - min(q.w, q.y); + float e = EPSILON; + return float3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +float3 HsvToRgb(float3 c) +{ + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); +} + +float RotateHue(float value, float low, float hi) +{ + return (value < low) + ? value + hi + : (value > hi) + ? value - hi + : value; +} + +// +// RGB Saturation (closer to a vibrance effect than actual saturation) +// Recommended workspace: ACEScg (linear) +// Optimal range: [0.0, 2.0] +// +float3 Saturation(float3 c, float sat) +{ + float luma = Luminance(c); + return luma.xxx + sat.xxx * (c - luma.xxx); +} + +// +// Contrast (reacts better when applied in log) +// Optimal range: [0.0, 2.0] +// +float3 Contrast(float3 c, float midpoint, float contrast) +{ + return (c - midpoint) * contrast + midpoint; +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for HDR use - best used with the ACES tonemapper as +// negative values will creep in the result +// Expected workspace: ACEScg (linear) +// +float3 LiftGammaGainHDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = c * gain + lift; + + // ACEScg will output negative values, as clamping to 0 will lose precious information we'll + // mirror the gamma function instead + return FastSign(c) * pow(abs(c), invgamma); +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for LDR use +// Input is linear RGB +// +float3 LiftGammaGainLDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = saturate(PositivePow(saturate(c), invgamma)); + return gain * c + lift * (1.0 - c); +} + +// +// Remaps Y/R/G/B values +// curveTex has to be 128 pixels wide +// +float3 YrgbCurve(float3 c, TEXTURE2D_ARGS(curveTex, sampler_curveTex)) +{ + const float kHalfPixel = (1.0 / 128.0) / 2.0; + + // Y (master) + c += kHalfPixel.xxx; + float mr = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).a; + float mg = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).a; + float mb = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).a; + c = saturate(float3(mr, mg, mb)); + + // RGB + c += kHalfPixel.xxx; + float r = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).r; + float g = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).g; + float b = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).b; + return saturate(float3(r, g, b)); +} + +// +// Channel mixing (same as Photoshop's and DaVinci's Resolve) +// Recommended workspace: ACEScg (linear) +// Input mixers should be in range [-2.0; 2.0] +// +float3 ChannelMixer(float3 c, float3 red, float3 green, float3 blue) +{ + return float3( + dot(c, red), + dot(c, green), + dot(c, blue) + ); +} + +#endif // UNITY_POSTFX_COLOR diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl.meta new file mode 100644 index 0000000..ee0264b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7fa986a4042ff154093d3772d2dc4fc9 +timeCreated: 1493025378 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug.meta new file mode 100644 index 0000000..bb3c659 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 418668fbeb6130848b1bffc8d5645b45 +folderAsset: yes +timeCreated: 1496329323 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute new file mode 100644 index 0000000..3f242cf --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute @@ -0,0 +1,75 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#define HISTOGRAM_BINS 256 +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + +RWStructuredBuffer _HistogramBuffer; +Texture2D _Source; + +CBUFFER_START(Params) + float4 _Params; // x: width, y: height, z: linear, w: channel +CBUFFER_END + +groupshared uint gs_histogram[HISTOGRAM_BINS]; + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KHistogramGather) +TRIVIAL_COMPUTE_KERNEL(KHistogramClear) + +#else + +#pragma kernel KHistogramGather +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KHistogramGather(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) +{ + const uint localThreadId = groupThreadId.y * GROUP_SIZE_X + groupThreadId.x; + + // Clears the shared memory + if (localThreadId < HISTOGRAM_BINS) + gs_histogram[localThreadId] = 0u; + + GroupMemoryBarrierWithGroupSync(); + + // Gather local group histogram + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = saturate(_Source[dispatchThreadId].xyz); + + // We want a gamma-corrected histogram (like Photoshop & all) + if (_Params.z > 0) + color = LinearToSRGB(color); + + // Convert channel value to histogram bin + float channel; + uint c = uint(_Params.w); + + if (c > 2) channel = Luminance(color); + else channel = color[c]; + + uint idx = (uint)(round(channel * 255.0)); + + InterlockedAdd(gs_histogram[idx], 1u); + } + + GroupMemoryBarrierWithGroupSync(); + + // Merge everything + if (localThreadId < HISTOGRAM_BINS) + InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); +} + +#pragma kernel KHistogramClear +[numthreads(GROUP_SIZE_X, 1, 1)] +void KHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId < HISTOGRAM_BINS) + _HistogramBuffer[dispatchThreadId] = 0u; +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute.meta new file mode 100644 index 0000000..df2ca20 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18183ebfeeab97749b43e38b928604a7 +timeCreated: 1499679719 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader new file mode 100644 index 0000000..77182ac --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader @@ -0,0 +1,97 @@ +Shader "Hidden/PostProcessing/Debug/Histogram" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + #if SHADER_API_GLES3 + #define HISTOGRAM_BINS 128 + #else + #define HISTOGRAM_BINS 256 + #endif + + struct VaryingsHistogram + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float maxValue : TEXCOORD1; + }; + + StructuredBuffer _HistogramBuffer; + float2 _Params; // x: width, y: height + + float FindMaxHistogramValue() + { + uint maxValue = 0u; + + UNITY_UNROLL + for (uint i = 0; i < HISTOGRAM_BINS; i++) + { + uint h = _HistogramBuffer[i]; + maxValue = max(maxValue, h); + } + + return float(maxValue); + } + + VaryingsHistogram Vert(AttributesDefault v) + { + VaryingsHistogram o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + #if SHADER_API_GLES3 // No texture loopup in VS on GLES3/Android + o.maxValue = 0; + #else + o.maxValue = _Params.y / FindMaxHistogramValue(); + #endif + + return o; + } + + float4 Frag(VaryingsHistogram i) : SV_Target + { + #if SHADER_API_GLES3 + float maxValue = _Params.y / FindMaxHistogramValue(); + #else + float maxValue = i.maxValue; + #endif + + const float kBinsMinusOne = HISTOGRAM_BINS - 1.0; + float remapI = i.texcoord.x * kBinsMinusOne; + uint index = floor(remapI); + float delta = frac(remapI); + float v1 = float(_HistogramBuffer[index]) * maxValue; + float v2 = float(_HistogramBuffer[min(index + 1, kBinsMinusOne)]) * maxValue; + float h = v1 * (1.0 - delta) + v2 * delta; + uint y = (uint)round(i.texcoord.y * _Params.y); + + float3 color = (0.0).xxx; + float fill = step(y, h); + color = lerp(color, (1.0).xxx, fill); + return float4(color, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader.meta new file mode 100644 index 0000000..e09ac2b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Histogram.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f7ea35cfb33fcad4ab8f2429ec103bef +timeCreated: 1499679714 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader b/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader new file mode 100644 index 0000000..274ef6c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader @@ -0,0 +1,111 @@ +Shader "Hidden/PostProcessing/Debug/LightMeter" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl" + #pragma multi_compile __ COLOR_GRADING_HDR + #pragma multi_compile __ AUTO_EXPOSURE + + float4 _Params; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness + float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height + + TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); + + StructuredBuffer _HistogramBuffer; + + struct VaryingsLightMeter + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float maxValue : TEXCOORD1; + float avgLuminance : TEXCOORD2; + }; + + VaryingsLightMeter Vert(AttributesDefault v) + { + VaryingsLightMeter o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.maxValue = 1.0 / FindMaxHistogramValue(_HistogramBuffer); + o.avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params, o.maxValue, _ScaleOffsetRes.xy); + + return o; + } + + float4 Frag(VaryingsLightMeter i) : SV_Target + { + uint ix = (uint)(round(i.texcoord.x * HISTOGRAM_BINS)); + float bin = saturate(float(_HistogramBuffer[ix]) * i.maxValue); + float fill = step(i.texcoord.y, bin); + + float4 color = float4(lerp(0.0, 0.75, fill).xxx, 1.0); + + #if AUTO_EXPOSURE + const float3 kRangeColor = float3(0.05, 0.3, 0.4); + const float3 kAvgColor = float3(0.75, 0.1, 1.0); + + // Min / max brightness markers + float luminanceMin = GetHistogramBinFromLuminance(_Params.z, _ScaleOffsetRes.xy); + float luminanceMax = GetHistogramBinFromLuminance(_Params.w, _ScaleOffsetRes.xy); + + if (i.texcoord.x > luminanceMin && i.texcoord.x < luminanceMax) + { + color.rgb = fill.rrr * kRangeColor; + color.rgb += kRangeColor; + } + #endif + + #if COLOR_GRADING_HDR + // Draw color curves on top + float4 curves = 0.0; + float3 lut = SAMPLE_TEXTURE3D(_Lut3D, sampler_Lut3D, i.texcoord.xxx).rgb; + + if (abs(lut.r - i.texcoord.y) < _ScaleOffsetRes.w) + curves.ra += (1.0).xx; + + if (abs(lut.g - i.texcoord.y) < _ScaleOffsetRes.w) + curves.ga += (1.0).xx; + + if (abs(lut.b - i.texcoord.y) < _ScaleOffsetRes.w) + curves.gba += float3(0.5, (1.0).xx); + + color = any(curves) ? curves : color; + #endif + + #if AUTO_EXPOSURE + // Current average luminance marker + float luminanceAvg = GetHistogramBinFromLuminance(i.avgLuminance, _ScaleOffsetRes.xy); + float avgPx = luminanceAvg * _ScaleOffsetRes.z; + + if (abs(i.texcoord.x - luminanceAvg) < _ScaleOffsetRes.z * 2.0) + color.rgb = kAvgColor; + #endif + + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader.meta new file mode 100644 index 0000000..2a7736b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/LightMeter.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b34a29e523cb9d545881e193a079f2df +timeCreated: 1496329341 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader new file mode 100644 index 0000000..27676c5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader @@ -0,0 +1,369 @@ +Shader "Hidden/PostProcessing/Debug/Overlays" +{ + HLSLINCLUDE + + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + #pragma target 3.0 + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + + #if SOURCE_GBUFFER + TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); + #endif + + float4 _MainTex_TexelSize; + float4 _Params; + + // ----------------------------------------------------------------------------- + // Depth + + float4 FragDepth(VaryingsDefault i) : SV_Target + { + float d = SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo, 0); + d = lerp(d, Linear01Depth(d), _Params.x); + + //#if !UNITY_COLORSPACE_GAMMA + // d = SRGBToLinear(d); + //#endif + + return float4(d.xxx, 1.0); + } + + // ----------------------------------------------------------------------------- + // Normals + + float4 FragNormals(VaryingsDefault i) : SV_Target + { + #if SOURCE_GBUFFER + float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, i.texcoordStereo).xyz * 2.0 - 1.0; + float3 n = mul((float3x3)unity_WorldToCamera, norm); + #else + float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, i.texcoordStereo); + float3 n = DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); + #endif + + #if UNITY_COLORSPACE_GAMMA + n = LinearToSRGB(n); + #endif + + return float4(n, 1.0); + } + + // ----------------------------------------------------------------------------- + // Motion vectors + + float DistanceToLine(float2 p, float2 p1, float2 p2) + { + float2 center = (p1 + p2) * 0.5; + float len = length(p2 - p1); + float2 dir = (p2 - p1) / len; + float2 rel_p = p - center; + return dot(rel_p, float2(dir.y, -dir.x)); + } + + float DistanceToSegment(float2 p, float2 p1, float2 p2) + { + float2 center = (p1 + p2) * 0.5; + float len = length(p2 - p1); + float2 dir = (p2 - p1) / len; + float2 rel_p = p - center; + float dist1 = abs(dot(rel_p, float2(dir.y, -dir.x))); + float dist2 = abs(dot(rel_p, dir)) - 0.5 * len; + return max(dist1, dist2); + } + + float DrawArrow(float2 texcoord, float body, float head, float height, float linewidth, float antialias) + { + float w = linewidth / 2.0 + antialias; + float2 start = -float2(body / 2.0, 0.0); + float2 end = float2(body / 2.0, 0.0); + + // Head: 3 lines + float d1 = DistanceToLine(texcoord, end, end - head * float2(1.0, -height)); + float d2 = DistanceToLine(texcoord, end - head * float2(1.0, height), end); + float d3 = texcoord.x - end.x + head; + + // Body: 1 segment + float d4 = DistanceToSegment(texcoord, start, end - float2(linewidth, 0.0)); + + float d = min(max(max(d1, d2), -d3), d4); + return d; + } + + float2 SampleMotionVectors(float2 coords) + { + float2 mv = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(coords)).xy; + mv.y *= -1.0; + return mv; + } + + float4 FragMotionVectors(VaryingsDefault i) : SV_Target + { +#if UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM + float3 src = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + float2 mv = SampleMotionVectors(i.texcoord); + + // Background color intensity - keep this low unless you want to make your eyes bleed + const float kIntensity = _Params.x; + + // Map motion vector direction to color wheel (hue between 0 and 360deg) + float phi = atan2(mv.x, mv.y); + float hue = (phi / PI + 1.0) * 0.5; + float r = abs(hue * 6.0 - 3.0) - 1.0; + float g = 2.0 - abs(hue * 6.0 - 2.0); + float b = 2.0 - abs(hue * 6.0 - 4.0); + float a = length(mv * kIntensity); + + float4 color = saturate(float4(r, g, b, a)); + + // Grid subdivisions + const float kGrid = _Params.y; + + // Arrow grid (aspect ratio is kept) + float rows = floor(kGrid * _MainTex_TexelSize.w / _MainTex_TexelSize.z); + float cols = kGrid; + float2 size = _MainTex_TexelSize.zw / float2(cols, rows); + float body = (min(size.x, size.y) / 1.4142135623730951) * saturate(length(mv * kGrid * 0.25)); + float2 texcoord = i.vertex.xy; + float2 center = (floor(texcoord / size) + 0.5) * size; + texcoord -= center; + + // Sample the center of the cell to get the current arrow vector + float2 arrow_coord = center / _MainTex_TexelSize.zw; + float2 mv_arrow = SampleMotionVectors(arrow_coord); + + // Skip empty motion + float d = 0.0; + if (any(mv_arrow)) + { + // Rotate the arrow according to the direction + mv_arrow = normalize(mv_arrow); + float2x2 rot = float2x2(mv_arrow.x, -mv_arrow.y, mv_arrow.y, mv_arrow.x); + texcoord = mul(rot, texcoord); + + d = DrawArrow(texcoord, body, 0.25 * body, 0.5, 2.0, 1.0); + d = 1.0 - saturate(d); + } + + #if !UNITY_COLORSPACE_GAMMA + src = LinearToSRGB(src); + #endif + + color.rgb = lerp(src, color.rgb, color.a); + + #if !UNITY_COLORSPACE_GAMMA + color.rgb = SRGBToLinear(color.rgb); + #endif + + return float4(color.rgb + d.xxx, 1.0); +#else + // Reading vertex SV_POSITION in a fragment shader is not supported by this platform so just return solid color. + return float4(1.0f, 0.0f, 1.0f, 1.0f); +#endif + } + + // ----------------------------------------------------------------------------- + // NAN tracker + + float4 FragNANTracker(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + if (AnyIsNan(color)) + { + color = float4(1.0, 0.0, 1.0, 1.0); + } + else + { + // Dim the color buffer so we can see NaNs & Infs better + color.rgb = saturate(color.rgb) * 0.25; + } + + return color; + } + + // ----------------------------------------------------------------------------- + // Color blindness simulation + + float3 RGFilter(float3 color, float k1, float k2, float k3) + { + float3 c_lin = color * 128.498039; + + float r_blind = (k1 * c_lin.r + k2 * c_lin.g) / 16448.25098; + float b_blind = (k3 * c_lin.r - k3 * c_lin.g + 128.498039 * c_lin.b) / 16448.25098; + r_blind = saturate(r_blind); + b_blind = saturate(b_blind); + + return lerp(color, float3(r_blind, r_blind, b_blind), _Params.x); + } + + float4 FragDeuteranopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + color = RGFilter(color, 37.611765, 90.87451, -2.862745); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + float4 FragProtanopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + color = RGFilter(color, 14.443137, 114.054902, 0.513725); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + float4 FragTritanopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + float anchor_e0 = 0.05059983 + 0.08585369 + 0.00952420; + float anchor_e1 = 0.01893033 + 0.08925308 + 0.01370054; + float anchor_e2 = 0.00292202 + 0.00975732 + 0.07145979; + float inflection = anchor_e1 / anchor_e0; + + float a1 = -anchor_e2 * 0.007009; + float b1 = anchor_e2 * 0.0914; + float c1 = anchor_e0 * 0.007009 - anchor_e1 * 0.0914; + float a2 = anchor_e1 * 0.3636 - anchor_e2 * 0.2237; + float b2 = anchor_e2 * 0.1284 - anchor_e0 * 0.3636; + float c2 = anchor_e0 * 0.2237 - anchor_e1 * 0.1284; + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + float3 c_lin = color * 128.498039; + + float L = (c_lin.r * 0.05059983 + c_lin.g * 0.08585369 + c_lin.b * 0.00952420) / 128.498039; + float M = (c_lin.r * 0.01893033 + c_lin.g * 0.08925308 + c_lin.b * 0.01370054) / 128.498039; + float S = (c_lin.r * 0.00292202 + c_lin.g * 0.00975732 + c_lin.b * 0.07145979) / 128.498039; + + float tmp = M / L; + + if (tmp < inflection) S = -(a1 * L + b1 * M) / c1; + else S = -(a2 * L + b2 * M) / c2; + + float r = L * 30.830854 - M * 29.832659 + S * 1.610474; + float g = -L * 6.481468 + M * 17.715578 - S * 2.532642; + float b = -L * 0.375690 - M * 1.199062 + S * 14.273846; + + color = lerp(color, saturate(float3(r, g, b)), _Params.x); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Depth + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDepth + + ENDHLSL + } + + // 1 - Normals + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNormals + #pragma multi_compile _ SOURCE_GBUFFER + + ENDHLSL + } + + // 2 - Motion vectors + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragMotionVectors + + ENDHLSL + } + + // 3 - Nan tracker + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNANTracker + + ENDHLSL + } + + // 4 - Color blindness (deuteranopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDeuteranopia + + ENDHLSL + } + + // 5 - Color blindness (protanopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragProtanopia + + ENDHLSL + } + + // 6 - Color blindness (tritanopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTritanopia + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader.meta new file mode 100644 index 0000000..579e6c8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Overlays.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b958ad1c92bd3d64c9e61318b8681dab +timeCreated: 1504771237 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute new file mode 100644 index 0000000..210a2fc --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute @@ -0,0 +1,51 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + +RWStructuredBuffer _VectorscopeBuffer; +Texture2D _Source; + +CBUFFER_START (Params) + float4 _Params; // x: source width, y: source height, z: buffer size, w: linear? +CBUFFER_END + +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KVectorscopeGather) +TRIVIAL_COMPUTE_KERNEL(KVectorscopeClear) + +#else + +#pragma kernel KVectorscopeGather +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KVectorscopeGather(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = saturate(_Source[dispatchThreadId].xyz); + + if (_Params.w > 0) + color = LinearToSRGB(color); + + float3 yuv = RgbToYCbCr(color); + yuv.yz += (0.5).xx; + uint u = (uint)floor(yuv.y * _Params.z); + uint v = (uint)floor(yuv.z * _Params.z); + InterlockedAdd(_VectorscopeBuffer[v * _Params.z + u], 1u); + } +} + +#pragma kernel KVectorscopeClear +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KVectorscopeClear(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.z) && dispatchThreadId.y < uint(_Params.z)) + _VectorscopeBuffer[dispatchThreadId.y * _Params.z + dispatchThreadId.x] = 0u; +} + +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute.meta new file mode 100644 index 0000000..a4de9bd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e1efca7c36fd01840aae0dd10378de5c +timeCreated: 1499700468 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader new file mode 100644 index 0000000..58e0ea7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader @@ -0,0 +1,59 @@ +Shader "Hidden/PostProcessing/Debug/Vectorscope" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + + StructuredBuffer _VectorscopeBuffer; + float3 _Params; // x: width, y: height, z: exposure, w: unused + + float Tonemap(float x, float exposure) + { + const float a = 6.2; + const float b = 0.5; + const float c = 1.7; + const float d = 0.06; + x *= exposure; + x = max(0.0, x - 0.004); + x = (x * (a * x + b)) / (x * (a * x + c) + d); + return x * x; + } + + float4 Frag(VaryingsDefault i) : SV_Target + { + i.texcoord.x = 1.0 - i.texcoord.x; + float2 uv = i.texcoord - (0.5).xx; + float3 c = YCbCrToRgb(float3(0.5, uv.x, uv.y)); + + float dist = sqrt(dot(uv, uv)); + float delta = fwidth(dist) * 0.5; + float alphaOut = 1.0 - smoothstep(0.5 - delta, 0.5 + delta, dist); + + uint2 uvI = i.texcoord.xy * _Params.xy; + uint v = _VectorscopeBuffer[uvI.x + uvI.y * _Params.x]; + float vt = saturate(Tonemap(v, _Params.z)); + + float4 color = float4(lerp(c, (0.0).xxx, vt), 1.0); + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader.meta new file mode 100644 index 0000000..be93327 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Vectorscope.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a71093f2a4fe26a40805c22739e10e4a +timeCreated: 1499700462 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute new file mode 100644 index 0000000..0dbd60a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute @@ -0,0 +1,58 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" +#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/Colors.hlsl" + +RWStructuredBuffer _WaveformBuffer; +Texture2D _Source; +SamplerState sampler_Source; + +CBUFFER_START(Params) + float4 _Params; // x: source width, y: source height, z: linear, w: unused +CBUFFER_END + +#define GROUP_SIZE 256 +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KWaveformGather) +TRIVIAL_COMPUTE_KERNEL(KWaveformClear) + +#else + +#pragma kernel KWaveformGather +[numthreads(1, GROUP_SIZE, 1)] +void KWaveformGather(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + // Gather local group histogram + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = _Source[dispatchThreadId].rgb; + color = saturate(color); + + // We want a gamma-corrected histogram (like Photoshop & all) + if (_Params.z > 0) + color = LinearToSRGB(color); + + // Convert channel values to histogram bins + uint3 idx = (uint3)(round(color * (_Params.y - 1))); + idx += dispatchThreadId.x * _Params.y; + + if (idx.x > 0u) InterlockedAdd(_WaveformBuffer[idx.x].x, 1u); // Red + if (idx.y > 0u) InterlockedAdd(_WaveformBuffer[idx.y].y, 1u); // Green + if (idx.z > 0u) InterlockedAdd(_WaveformBuffer[idx.z].z, 1u); // Blue + } +} + +#pragma kernel KWaveformClear +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KWaveformClear(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + _WaveformBuffer[dispatchThreadId.y * uint(_Params.x) + dispatchThreadId.x] = uint4(0u, 0u, 0u, 0u); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute.meta new file mode 100644 index 0000000..6350f04 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 92c63830cd50c0b4fbb8233613839958 +timeCreated: 1499691152 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader new file mode 100644 index 0000000..317c188 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader @@ -0,0 +1,58 @@ +Shader "Hidden/PostProcessing/Debug/Waveform" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl" + + StructuredBuffer _WaveformBuffer; + float3 _Params; // x: buffer width, y: buffer height, z: exposure, w: unused + + float3 Tonemap(float3 x, float exposure) + { + const float a = 6.2; + const float b = 0.5; + const float c = 1.7; + const float d = 0.06; + x *= exposure; + x = max((0.0).xxx, x - (0.004).xxx); + x = (x * (a * x + b)) / (x * (a * x + c) + d); + return x * x; + } + + float4 Frag(VaryingsDefault i) : SV_Target + { + const float3 red = float3(1.4, 0.03, 0.02); + const float3 green = float3(0.02, 1.1, 0.05); + const float3 blue = float3(0.0, 0.25, 1.5); + float3 color = float3(0.0, 0.0, 0.0); + + uint2 uvI = i.vertex.xy; + float3 w = _WaveformBuffer[uvI.x * _Params.y + uvI.y].xyz; + + color += red * w.r; + color += green * w.g; + color += blue * w.b; + color = Tonemap(color, _Params.z); + + return float4(saturate(color), 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader.meta new file mode 100644 index 0000000..beb1932 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Debug/Waveform.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3020ac7ece79a7f4eb789a236f8bd6c5 +timeCreated: 1499691145 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor.meta b/com.unity.postprocessing/PostProcessing/Shaders/Editor.meta new file mode 100644 index 0000000..5bf7e33 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5c66af49245494b4a8b294f2d39e7387 +folderAsset: yes +timeCreated: 1493903686 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader b/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader new file mode 100644 index 0000000..7f5f596 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader @@ -0,0 +1,65 @@ +Shader "Hidden/PostProcessing/Editor/ConvertToLog" +{ + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + #include "UnityCG.cginc" + + struct ParamsLogC + { + float cut; + float a, b, c, d, e, f; + }; + + static const ParamsLogC LogC = + { + 0.011361, // cut + 5.555556, // a + 0.047996, // b + 0.244161, // c + 0.386036, // d + 5.301883, // e + 0.092819 // f + }; + + float LinearToLogC_Precise(half x) + { + float o; + if (x > LogC.cut) + o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; + else + o = LogC.e * x + LogC.f; + return o; + } + + sampler2D _MainTex; + + float4 Frag(v2f_img i) : SV_Target + { + float4 color = tex2D(_MainTex, i.uv); + color.rgb = float3(LinearToLogC_Precise(color.r), LinearToLogC_Precise(color.g), LinearToLogC_Precise(color.b)); + color.a = 1.0; + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment Frag + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta new file mode 100644 index 0000000..600eb27 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fe144c7e314047f4bb779d555c5405ac +timeCreated: 1496747212 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader b/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader new file mode 100644 index 0000000..37c5657 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader @@ -0,0 +1,63 @@ +Shader "Hidden/PostProcessing/Editor/CurveGrid" +{ + CGINCLUDE + + #pragma target 3.0 + #include "UnityCG.cginc" + + float _DisabledState; + + float3 HsvToRgb(float3 c) + { + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); + } + + float4 FragHue(v2f_img i) : SV_Target + { + float3 hsv = HsvToRgb(float3(i.uv.x, 1.0, 0.2)); + float4 color = float4((0.0).xxx, 1.0); + color.rgb = lerp(color.rgb, hsv, smoothstep(0.5, 1.1, 1.0 - i.uv.y)) + lerp(color.rgb, hsv, smoothstep(0.5, 1.1, i.uv.y)); + color.rgb += (0.15).xxx; + return float4(color.rgb, color.a * _DisabledState); + } + + float4 FragSat(v2f_img i) : SV_Target + { + float4 color = float4((0.0).xxx, 1.0); + float sat = i.uv.x / 2; + color.rgb += lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, 1.0 - i.uv.y)) + lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, i.uv.y)); + color.rgb += (0.15).xxx; + return float4(color.rgb, color.a * _DisabledState); + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Hue + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragHue + + ENDCG + } + + // (1) Sat/lum + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragSat + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader.meta new file mode 100644 index 0000000..6b4665f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/CurveGrid.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5bb6ef6f3e1b20348b4fdb01e4c404e2 +timeCreated: 1493997957 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader b/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader new file mode 100644 index 0000000..5753612 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader @@ -0,0 +1,118 @@ +Shader "Hidden/PostProcessing/Editor/Trackball" +{ + CGINCLUDE + + #include "UnityCG.cginc" + + #define PI 3.14159265359 + #define PI2 6.28318530718 + + float _Offset; + float _DisabledState; + float2 _Resolution; // x: size, y: size / 2 + + float3 HsvToRgb(float3 c) + { + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); + } + + float4 CreateWheel(v2f_img i, float crossColor, float offsetColor) + { + const float kHueOuterRadius = 0.45; + const float kHueInnerRadius = 0.38; + const float kLumOuterRadius = 0.495; + const float kLumInnerRadius = 0.48; + + float4 color = (0.0).xxxx; + float2 uvc = i.uv - (0.5).xx; + float dist = sqrt(dot(uvc, uvc)); + float delta = fwidth(dist); + float angle = atan2(uvc.x, uvc.y); + + // Cross + { + float radius = (0.5 - kHueInnerRadius) * _Resolution.x + 1.0; + float2 pixel = (_Resolution.xx - 1.0) * i.uv + 1.0; + + float vline = step(floor(fmod(pixel.x, _Resolution.y)), 0.0); + vline *= step(radius, pixel.y) * step(pixel.y, _Resolution.x - radius); + + float hline = step(floor(fmod(pixel.y, _Resolution.y)), 0.0); + hline *= step(radius, pixel.x) * step(pixel.x, _Resolution.x - radius); + + color += hline.xxxx * (1.0).xxxx; + color += vline.xxxx * (1.0).xxxx; + color = saturate(color); + color *= half4((crossColor).xxx, 0.05); + } + + // Hue + { + float alphaOut = smoothstep(kHueOuterRadius - delta, kHueOuterRadius + delta, dist); + float alphaIn = smoothstep(kHueInnerRadius - delta, kHueInnerRadius + delta, dist); + + float hue = angle; + hue = 1.0 - ((hue > 0.0) ? hue : PI2 + hue) / PI2; + float4 c = float4(HsvToRgb(float3(hue, 1.0, 1.0)), 1.0); + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + // Offset + { + float alphaOut = smoothstep(kLumOuterRadius - delta, kLumOuterRadius + delta, dist); + float alphaIn = smoothstep(kLumInnerRadius - delta, kLumInnerRadius + delta / 2, dist); + float4 c = float4((offsetColor).xxx, 1.0); + + float a = PI * _Offset; + if (_Offset >= 0 && angle < a && angle > 0.0) + c = float4((1.0).xxx, 0.5); + else if (angle > a && angle < 0.0) + c = float4((1.0).xxx, 0.5); + + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + return color * _DisabledState; + } + + float4 FragTrackballDark(v2f_img i) : SV_Target + { + return CreateWheel(i, 1.0, 0.15); + } + + float4 FragTrackballLight(v2f_img i) : SV_Target + { + return CreateWheel(i, 0.0, 0.3); + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Dark skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballDark + + ENDCG + } + + // (1) Light skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballLight + + ENDCG + } + } +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader.meta b/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader.meta new file mode 100644 index 0000000..21ebfe4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Editor/Trackball.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: de7f3ac52268a194383c7d62c2a343c1 +timeCreated: 1493903699 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2.meta new file mode 100644 index 0000000..6d47067 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cad7d53fa2166a0449bec7a9b4f17d69 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute new file mode 100644 index 0000000..a359485 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute @@ -0,0 +1,41 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE +#pragma multi_compile_local __ FFX_FSR2_OPTION_HDR_COLOR_INPUT +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH +#pragma multi_compile_local __ FFX_FSR2_OPTION_APPLY_SHARPENING + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +// Ensure the correct value is defined for this keyword, as it is used to select one of multiple sampler functions +#ifdef FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE +#undef FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE +#define FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE 1 +#endif + +#include "shaders/ffx_fsr2_accumulate_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute.meta new file mode 100644 index 0000000..3864379 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_accumulate_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 702560780e923c84394c9b22ba460a9c +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute new file mode 100644 index 0000000..d27a02d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute @@ -0,0 +1,32 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_autogen_reactive_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute.meta new file mode 100644 index 0000000..19d1df3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_autogen_reactive_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d18fb8811ca4753469c439784546104e +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute new file mode 100644 index 0000000..385dfe4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute @@ -0,0 +1,42 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +//#pragma multi_compile_local __ FFX_HALF // causes a hard-coded error message from the shader include ¯\_(ツ)_/¯ +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +// Wave operations require shader model 6.0; this can only be enabled when using DXC on D3D12 +// These pragmas are commented out by default as Unity will sometimes ignore the #if's and try to enable these features anyway. +// Uncomment the below lines if you intend to try wave operations on DX12 with the DXC compiler. +//#if defined(UNITY_COMPILER_DXC) && defined(SHADER_API_D3D12) +//#pragma require WaveBasic // Required for WaveGetLaneIndex +//#pragma require WaveBallot // Required for WaveReadLaneAt +//#else +#define SPD_NO_WAVE_OPERATIONS +//#endif + +#include "shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute.meta new file mode 100644 index 0000000..49033cb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_compute_luminance_pyramid_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0894ebeefb6aa7d4680c71dffbda3fee +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute new file mode 100644 index 0000000..4e41933 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute @@ -0,0 +1,32 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_depth_clip_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute.meta new file mode 100644 index 0000000..26fb9ba --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_depth_clip_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8026d9d8542eab6499c32d5d46beb2b6 +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute new file mode 100644 index 0000000..5f8c13d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute @@ -0,0 +1,30 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_lock_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute.meta new file mode 100644 index 0000000..a197b49 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_lock_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c96d72b39a840c428c901628dab92c0 +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute new file mode 100644 index 0000000..6d97414 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute @@ -0,0 +1,29 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_rcas_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute.meta new file mode 100644 index 0000000..ea6c978 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_rcas_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a82801f160ff6a4eb47db567216e592 +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute new file mode 100644 index 0000000..c6cc99f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute @@ -0,0 +1,33 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_HDR_COLOR_INPUT +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute.meta new file mode 100644 index 0000000..6396b86 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_reconstruct_previous_depth_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ef1b4c25874e334dad5ba3ac6345e32 +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute new file mode 100644 index 0000000..62d386b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute @@ -0,0 +1,32 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#pragma kernel CS + +#pragma multi_compile_local __ FFX_HALF +#pragma multi_compile_local __ FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS +#pragma multi_compile_local __ FFX_FSR2_OPTION_INVERTED_DEPTH + +#pragma multi_compile_local __ UNITY_FSR2_HDRP + +#include "ffx_fsr2_unity_common.cginc" + +#include "shaders/ffx_fsr2_tcr_autogen_pass.hlsl" diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute.meta new file mode 100644 index 0000000..0002090 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_tcr_autogen_pass.compute.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b478fba0a6a87b44b8be7c35deb5f0dc +ComputeShaderImporter: + externalObjects: {} + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc new file mode 100644 index 0000000..98c5b17 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc @@ -0,0 +1,81 @@ +// Copyright (c) 2023 Nico de Poel +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in all +// copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +// Suppress a few warnings produced by FFX's HLSL code +#pragma warning(disable: 3078) // Loop control variable conflicts +#pragma warning(disable: 3203) // Signed/unsigned mismatch + +#define FFX_GPU // Compiling for GPU +#define FFX_HLSL // Compile for plain HLSL + +// Use the DXC shader compiler on modern graphics APIs to enable a few advanced features +// The DXC-related pragmas are disabled by default, as DXC doesn't support all platforms yet and will break on some platforms when enabled. +// Consider this to be an experimental feature. If you want to benefit from 16-bit floating point and wave operations, and don't care about supporting older graphics APIs, then it's worth a try. +//#if defined(SHADER_API_D3D12) || defined(SHADER_API_VULKAN) || defined(SHADER_API_METAL) +//#pragma use_dxc // Using DXC will currently break DX11 support since DX11 and DX12 share the same shader bytecode in Unity. +//#endif + +// Enable half precision data types on platforms that support it +//#if defined(UNITY_COMPILER_DXC) && defined(FFX_HALF) +//#pragma require Native16Bit +//#endif + +// Hack to work around the lack of texture atomics on Metal +#if defined(SHADER_API_METAL) +#define InterlockedAdd(dest, val, orig) { (orig) = (dest); (dest) += (val); } +#define InterlockedMin(dest, val) { (dest) = min((dest), (val)); } +#define InterlockedMax(dest, val) { (dest) = max((dest), (val)); } +#endif + +// Workaround for HDRP using texture arrays for its camera buffers on some platforms +// The below defines are copied from: Packages/com.unity.render-pipelines.high-definition/Runtime/ShaderLibrary/TextureXR.hlsl +#if defined(UNITY_FSR2_HDRP) + // Must be in sync with C# with property useTexArray in TextureXR.cs + #if ((defined(SHADER_API_D3D11) || defined(SHADER_API_D3D12)) && !defined(SHADER_API_XBOXONE) && !defined(SHADER_API_GAMECORE)) || defined(SHADER_API_PSSL) || defined(SHADER_API_VULKAN) + #define UNITY_TEXTURE2D_X_ARRAY_SUPPORTED + #endif + + // Control if TEXTURE2D_X macros will expand to texture arrays + #if defined(UNITY_TEXTURE2D_X_ARRAY_SUPPORTED) && !defined(DISABLE_TEXTURE2D_X_ARRAY) + #define USE_TEXTURE2D_X_AS_ARRAY + #endif + + // Early defines for single-pass instancing + #if defined(STEREO_INSTANCING_ON) && defined(UNITY_TEXTURE2D_X_ARRAY_SUPPORTED) + #define UNITY_STEREO_INSTANCING_ENABLED + #endif + + // Helper macros to handle XR single-pass with Texture2DArray + #if defined(USE_TEXTURE2D_X_AS_ARRAY) + + // Only single-pass stereo instancing used array indexing + #if defined(UNITY_STEREO_INSTANCING_ENABLED) + #define SLICE_ARRAY_INDEX unity_StereoEyeIndex + #else + #define SLICE_ARRAY_INDEX 0 + #endif + + // Declare and sample camera buffers as texture arrays + #define UNITY_FSR2_TEX2D(type) Texture2DArray + #define UNITY_FSR2_POS(pxPos) FfxUInt32x3(pxPos, SLICE_ARRAY_INDEX) + #define UNITY_FSR2_UV(uv) FfxFloat32x3(uv, SLICE_ARRAY_INDEX) + + #endif +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc.meta new file mode 100644 index 0000000..8393144 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/ffx_fsr2_unity_common.cginc.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: bb2d4d4671c448698877526c29f2fc99 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders.meta new file mode 100644 index 0000000..676ff9a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a24e63edc822264a871f58397325d51 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h new file mode 100644 index 0000000..4594dc1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h @@ -0,0 +1,525 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +#ifndef FFX_COMMON_TYPES_H +#define FFX_COMMON_TYPES_H + +#if defined(FFX_CPU) +#define FFX_PARAMETER_IN +#define FFX_PARAMETER_OUT +#define FFX_PARAMETER_INOUT +#elif defined(FFX_HLSL) +#define FFX_PARAMETER_IN in +#define FFX_PARAMETER_OUT out +#define FFX_PARAMETER_INOUT inout +#elif defined(FFX_GLSL) +#define FFX_PARAMETER_IN in +#define FFX_PARAMETER_OUT out +#define FFX_PARAMETER_INOUT inout +#endif // #if defined(FFX_CPU) + +#if defined(FFX_CPU) +/// A typedef for a boolean value. +/// +/// @ingroup CPU +typedef bool FfxBoolean; + +/// A typedef for a unsigned 8bit integer. +/// +/// @ingroup CPU +typedef uint8_t FfxUInt8; + +/// A typedef for a unsigned 16bit integer. +/// +/// @ingroup CPU +typedef uint16_t FfxUInt16; + +/// A typedef for a unsigned 32bit integer. +/// +/// @ingroup CPU +typedef uint32_t FfxUInt32; + +/// A typedef for a unsigned 64bit integer. +/// +/// @ingroup CPU +typedef uint64_t FfxUInt64; + +/// A typedef for a signed 8bit integer. +/// +/// @ingroup CPU +typedef int8_t FfxInt8; + +/// A typedef for a signed 16bit integer. +/// +/// @ingroup CPU +typedef int16_t FfxInt16; + +/// A typedef for a signed 32bit integer. +/// +/// @ingroup CPU +typedef int32_t FfxInt32; + +/// A typedef for a signed 64bit integer. +/// +/// @ingroup CPU +typedef int64_t FfxInt64; + +/// A typedef for a floating point value. +/// +/// @ingroup CPU +typedef float FfxFloat32; + +/// A typedef for a 2-dimensional floating point value. +/// +/// @ingroup CPU +typedef float FfxFloat32x2[2]; + +/// A typedef for a 3-dimensional floating point value. +/// +/// @ingroup CPU +typedef float FfxFloat32x3[3]; + +/// A typedef for a 4-dimensional floating point value. +/// +/// @ingroup CPU +typedef float FfxFloat32x4[4]; + +/// A typedef for a 2-dimensional 32bit unsigned integer. +/// +/// @ingroup CPU +typedef uint32_t FfxUInt32x2[2]; + +/// A typedef for a 3-dimensional 32bit unsigned integer. +/// +/// @ingroup CPU +typedef uint32_t FfxUInt32x3[3]; + +/// A typedef for a 4-dimensional 32bit unsigned integer. +/// +/// @ingroup CPU +typedef uint32_t FfxUInt32x4[4]; +#endif // #if defined(FFX_CPU) + +#if defined(FFX_HLSL) +/// A typedef for a boolean value. +/// +/// @ingroup GPU +typedef bool FfxBoolean; + +#if FFX_HLSL_6_2 +typedef float32_t FfxFloat32; +typedef float32_t2 FfxFloat32x2; +typedef float32_t3 FfxFloat32x3; +typedef float32_t4 FfxFloat32x4; + +/// A typedef for a unsigned 32bit integer. +/// +/// @ingroup GPU +typedef uint32_t FfxUInt32; +typedef uint32_t2 FfxUInt32x2; +typedef uint32_t3 FfxUInt32x3; +typedef uint32_t4 FfxUInt32x4; +typedef int32_t FfxInt32; +typedef int32_t2 FfxInt32x2; +typedef int32_t3 FfxInt32x3; +typedef int32_t4 FfxInt32x4; +#else +#define FfxFloat32 float +#define FfxFloat32x2 float2 +#define FfxFloat32x3 float3 +#define FfxFloat32x4 float4 + +/// A typedef for a unsigned 32bit integer. +/// +/// @ingroup GPU +typedef uint FfxUInt32; +typedef uint2 FfxUInt32x2; +typedef uint3 FfxUInt32x3; +typedef uint4 FfxUInt32x4; +typedef int FfxInt32; +typedef int2 FfxInt32x2; +typedef int3 FfxInt32x3; +typedef int4 FfxInt32x4; +#endif // #if defined(FFX_HLSL_6_2) + +#if FFX_HALF +#if FFX_HLSL_6_2 +typedef float16_t FfxFloat16; +typedef float16_t2 FfxFloat16x2; +typedef float16_t3 FfxFloat16x3; +typedef float16_t4 FfxFloat16x4; + +/// A typedef for an unsigned 16bit integer. +/// +/// @ingroup GPU +typedef uint16_t FfxUInt16; +typedef uint16_t2 FfxUInt16x2; +typedef uint16_t3 FfxUInt16x3; +typedef uint16_t4 FfxUInt16x4; + +/// A typedef for a signed 16bit integer. +/// +/// @ingroup GPU +typedef int16_t FfxInt16; +typedef int16_t2 FfxInt16x2; +typedef int16_t3 FfxInt16x3; +typedef int16_t4 FfxInt16x4; +#elif SHADER_API_PSSL +#pragma argument(realtypes) // Enable true 16-bit types + +typedef half FfxFloat16; +typedef half2 FfxFloat16x2; +typedef half3 FfxFloat16x3; +typedef half4 FfxFloat16x4; + +/// A typedef for an unsigned 16bit integer. +/// +/// @ingroup GPU +typedef ushort FfxUInt16; +typedef ushort2 FfxUInt16x2; +typedef ushort3 FfxUInt16x3; +typedef ushort4 FfxUInt16x4; + +/// A typedef for a signed 16bit integer. +/// +/// @ingroup GPU +typedef short FfxInt16; +typedef short2 FfxInt16x2; +typedef short3 FfxInt16x3; +typedef short4 FfxInt16x4; +#else +typedef min16float FfxFloat16; +typedef min16float2 FfxFloat16x2; +typedef min16float3 FfxFloat16x3; +typedef min16float4 FfxFloat16x4; + +/// A typedef for an unsigned 16bit integer. +/// +/// @ingroup GPU +typedef min16uint FfxUInt16; +typedef min16uint2 FfxUInt16x2; +typedef min16uint3 FfxUInt16x3; +typedef min16uint4 FfxUInt16x4; + +/// A typedef for a signed 16bit integer. +/// +/// @ingroup GPU +typedef min16int FfxInt16; +typedef min16int2 FfxInt16x2; +typedef min16int3 FfxInt16x3; +typedef min16int4 FfxInt16x4; +#endif // FFX_HLSL_6_2 +#endif // FFX_HALF +#endif // #if defined(FFX_HLSL) + +#if defined(FFX_GLSL) +/// A typedef for a boolean value. +/// +/// @ingroup GPU +#define FfxBoolean bool +#define FfxFloat32 float +#define FfxFloat32x2 vec2 +#define FfxFloat32x3 vec3 +#define FfxFloat32x4 vec4 +#define FfxUInt32 uint +#define FfxUInt32x2 uvec2 +#define FfxUInt32x3 uvec3 +#define FfxUInt32x4 uvec4 +#define FfxInt32 int +#define FfxInt32x2 ivec2 +#define FfxInt32x3 ivec3 +#define FfxInt32x4 ivec4 +#if FFX_HALF +#define FfxFloat16 float16_t +#define FfxFloat16x2 f16vec2 +#define FfxFloat16x3 f16vec3 +#define FfxFloat16x4 f16vec4 +#define FfxUInt16 uint16_t +#define FfxUInt16x2 u16vec2 +#define FfxUInt16x3 u16vec3 +#define FfxUInt16x4 u16vec4 +#define FfxInt16 int16_t +#define FfxInt16x2 i16vec2 +#define FfxInt16x3 i16vec3 +#define FfxInt16x4 i16vec4 +#endif // FFX_HALF +#endif // #if defined(FFX_GLSL) + +// Global toggles: +// #define FFX_HALF (1) +// #define FFX_HLSL_6_2 (1) + +#if defined(FFX_HALF) && !defined(SHADER_API_PSSL) + +#if FFX_HLSL_6_2 + +#define FFX_MIN16_SCALAR( TypeName, BaseComponentType ) typedef BaseComponentType##16_t TypeName; +#define FFX_MIN16_VECTOR( TypeName, BaseComponentType, COL ) typedef vector TypeName; +#define FFX_MIN16_MATRIX( TypeName, BaseComponentType, ROW, COL ) typedef matrix TypeName; + +#define FFX_16BIT_SCALAR( TypeName, BaseComponentType ) typedef BaseComponentType##16_t TypeName; +#define FFX_16BIT_VECTOR( TypeName, BaseComponentType, COL ) typedef vector TypeName; +#define FFX_16BIT_MATRIX( TypeName, BaseComponentType, ROW, COL ) typedef matrix TypeName; + +#else //FFX_HLSL_6_2 + +#define FFX_MIN16_SCALAR( TypeName, BaseComponentType ) typedef min16##BaseComponentType TypeName; +#define FFX_MIN16_VECTOR( TypeName, BaseComponentType, COL ) typedef vector TypeName; +#define FFX_MIN16_MATRIX( TypeName, BaseComponentType, ROW, COL ) typedef matrix TypeName; + +#define FFX_16BIT_SCALAR( TypeName, BaseComponentType ) FFX_MIN16_SCALAR( TypeName, BaseComponentType ); +#define FFX_16BIT_VECTOR( TypeName, BaseComponentType, COL ) FFX_MIN16_VECTOR( TypeName, BaseComponentType, COL ); +#define FFX_16BIT_MATRIX( TypeName, BaseComponentType, ROW, COL ) FFX_MIN16_MATRIX( TypeName, BaseComponentType, ROW, COL ); + +#endif //FFX_HLSL_6_2 + +#else //FFX_HALF + +#define FFX_MIN16_SCALAR( TypeName, BaseComponentType ) typedef BaseComponentType TypeName; +#define FFX_MIN16_VECTOR( TypeName, BaseComponentType, COL ) typedef vector TypeName; +#define FFX_MIN16_MATRIX( TypeName, BaseComponentType, ROW, COL ) typedef matrix TypeName; + +#define FFX_16BIT_SCALAR( TypeName, BaseComponentType ) typedef BaseComponentType TypeName; +#define FFX_16BIT_VECTOR( TypeName, BaseComponentType, COL ) typedef vector TypeName; +#define FFX_16BIT_MATRIX( TypeName, BaseComponentType, ROW, COL ) typedef matrix TypeName; + +#endif //FFX_HALF + +#if defined(FFX_GPU) +// Common typedefs: +#if defined(FFX_HLSL) && !defined(SHADER_API_PSSL) +FFX_MIN16_SCALAR( FFX_MIN16_F , float ); +FFX_MIN16_VECTOR( FFX_MIN16_F2, float, 2 ); +FFX_MIN16_VECTOR( FFX_MIN16_F3, float, 3 ); +FFX_MIN16_VECTOR( FFX_MIN16_F4, float, 4 ); + +FFX_MIN16_SCALAR( FFX_MIN16_I, int ); +FFX_MIN16_VECTOR( FFX_MIN16_I2, int, 2 ); +FFX_MIN16_VECTOR( FFX_MIN16_I3, int, 3 ); +FFX_MIN16_VECTOR( FFX_MIN16_I4, int, 4 ); + +FFX_MIN16_SCALAR( FFX_MIN16_U, uint ); +FFX_MIN16_VECTOR( FFX_MIN16_U2, uint, 2 ); +FFX_MIN16_VECTOR( FFX_MIN16_U3, uint, 3 ); +FFX_MIN16_VECTOR( FFX_MIN16_U4, uint, 4 ); + +FFX_16BIT_SCALAR( FFX_F16_t , float ); +FFX_16BIT_VECTOR( FFX_F16_t2, float, 2 ); +FFX_16BIT_VECTOR( FFX_F16_t3, float, 3 ); +FFX_16BIT_VECTOR( FFX_F16_t4, float, 4 ); + +FFX_16BIT_SCALAR( FFX_I16_t, int ); +FFX_16BIT_VECTOR( FFX_I16_t2, int, 2 ); +FFX_16BIT_VECTOR( FFX_I16_t3, int, 3 ); +FFX_16BIT_VECTOR( FFX_I16_t4, int, 4 ); + +FFX_16BIT_SCALAR( FFX_U16_t, uint ); +FFX_16BIT_VECTOR( FFX_U16_t2, uint, 2 ); +FFX_16BIT_VECTOR( FFX_U16_t3, uint, 3 ); +FFX_16BIT_VECTOR( FFX_U16_t4, uint, 4 ); + +#define TYPEDEF_MIN16_TYPES(Prefix) \ +typedef FFX_MIN16_F Prefix##_F; \ +typedef FFX_MIN16_F2 Prefix##_F2; \ +typedef FFX_MIN16_F3 Prefix##_F3; \ +typedef FFX_MIN16_F4 Prefix##_F4; \ +typedef FFX_MIN16_I Prefix##_I; \ +typedef FFX_MIN16_I2 Prefix##_I2; \ +typedef FFX_MIN16_I3 Prefix##_I3; \ +typedef FFX_MIN16_I4 Prefix##_I4; \ +typedef FFX_MIN16_U Prefix##_U; \ +typedef FFX_MIN16_U2 Prefix##_U2; \ +typedef FFX_MIN16_U3 Prefix##_U3; \ +typedef FFX_MIN16_U4 Prefix##_U4; + +#define TYPEDEF_16BIT_TYPES(Prefix) \ +typedef FFX_16BIT_F Prefix##_F; \ +typedef FFX_16BIT_F2 Prefix##_F2; \ +typedef FFX_16BIT_F3 Prefix##_F3; \ +typedef FFX_16BIT_F4 Prefix##_F4; \ +typedef FFX_16BIT_I Prefix##_I; \ +typedef FFX_16BIT_I2 Prefix##_I2; \ +typedef FFX_16BIT_I3 Prefix##_I3; \ +typedef FFX_16BIT_I4 Prefix##_I4; \ +typedef FFX_16BIT_U Prefix##_U; \ +typedef FFX_16BIT_U2 Prefix##_U2; \ +typedef FFX_16BIT_U3 Prefix##_U3; \ +typedef FFX_16BIT_U4 Prefix##_U4; + +#define TYPEDEF_FULL_PRECISION_TYPES(Prefix) \ +typedef FfxFloat32 Prefix##_F; \ +typedef FfxFloat32x2 Prefix##_F2; \ +typedef FfxFloat32x3 Prefix##_F3; \ +typedef FfxFloat32x4 Prefix##_F4; \ +typedef FfxInt32 Prefix##_I; \ +typedef FfxInt32x2 Prefix##_I2; \ +typedef FfxInt32x3 Prefix##_I3; \ +typedef FfxInt32x4 Prefix##_I4; \ +typedef FfxUInt32 Prefix##_U; \ +typedef FfxUInt32x2 Prefix##_U2; \ +typedef FfxUInt32x3 Prefix##_U3; \ +typedef FfxUInt32x4 Prefix##_U4; +#endif // #if defined(FFX_HLSL) + +#if defined(SHADER_API_PSSL) + +#define unorm +#define globallycoherent + +#if FFX_HALF + +#define FFX_MIN16_F half +#define FFX_MIN16_F2 half2 +#define FFX_MIN16_F3 half3 +#define FFX_MIN16_F4 half4 + +#define FFX_MIN16_I short +#define FFX_MIN16_I2 short2 +#define FFX_MIN16_I3 short3 +#define FFX_MIN16_I4 short4 + +#define FFX_MIN16_U ushort +#define FFX_MIN16_U2 ushort2 +#define FFX_MIN16_U3 ushort3 +#define FFX_MIN16_U4 ushort4 + +#define FFX_16BIT_F half +#define FFX_16BIT_F2 half2 +#define FFX_16BIT_F3 half3 +#define FFX_16BIT_F4 half4 + +#define FFX_16BIT_I short +#define FFX_16BIT_I2 short2 +#define FFX_16BIT_I3 short3 +#define FFX_16BIT_I4 short4 + +#define FFX_16BIT_U ushort +#define FFX_16BIT_U2 ushort2 +#define FFX_16BIT_U3 ushort3 +#define FFX_16BIT_U4 ushort4 + +#else // FFX_HALF + +#define FFX_MIN16_F float +#define FFX_MIN16_F2 float2 +#define FFX_MIN16_F3 float3 +#define FFX_MIN16_F4 float4 + +#define FFX_MIN16_I int +#define FFX_MIN16_I2 int2 +#define FFX_MIN16_I3 int3 +#define FFX_MIN16_I4 int4 + +#define FFX_MIN16_U uint +#define FFX_MIN16_U2 uint2 +#define FFX_MIN16_U3 uint3 +#define FFX_MIN16_U4 uint4 + +#define FFX_16BIT_F float +#define FFX_16BIT_F2 float2 +#define FFX_16BIT_F3 float3 +#define FFX_16BIT_F4 float4 + +#define FFX_16BIT_I int +#define FFX_16BIT_I2 int2 +#define FFX_16BIT_I3 int3 +#define FFX_16BIT_I4 int4 + +#define FFX_16BIT_U uint +#define FFX_16BIT_U2 uint2 +#define FFX_16BIT_U3 uint3 +#define FFX_16BIT_U4 uint4 + +#endif // FFX_HALF + +#endif // #if defined(SHADER_API_PSSL) + +#if defined(FFX_GLSL) + +#if FFX_HALF + +#define FFX_MIN16_F float16_t +#define FFX_MIN16_F2 f16vec2 +#define FFX_MIN16_F3 f16vec3 +#define FFX_MIN16_F4 f16vec4 + +#define FFX_MIN16_I int16_t +#define FFX_MIN16_I2 i16vec2 +#define FFX_MIN16_I3 i16vec3 +#define FFX_MIN16_I4 i16vec4 + +#define FFX_MIN16_U uint16_t +#define FFX_MIN16_U2 u16vec2 +#define FFX_MIN16_U3 u16vec3 +#define FFX_MIN16_U4 u16vec4 + +#define FFX_16BIT_F float16_t +#define FFX_16BIT_F2 f16vec2 +#define FFX_16BIT_F3 f16vec3 +#define FFX_16BIT_F4 f16vec4 + +#define FFX_16BIT_I int16_t +#define FFX_16BIT_I2 i16vec2 +#define FFX_16BIT_I3 i16vec3 +#define FFX_16BIT_I4 i16vec4 + +#define FFX_16BIT_U uint16_t +#define FFX_16BIT_U2 u16vec2 +#define FFX_16BIT_U3 u16vec3 +#define FFX_16BIT_U4 u16vec4 + +#else // FFX_HALF + +#define FFX_MIN16_F float +#define FFX_MIN16_F2 vec2 +#define FFX_MIN16_F3 vec3 +#define FFX_MIN16_F4 vec4 + +#define FFX_MIN16_I int +#define FFX_MIN16_I2 ivec2 +#define FFX_MIN16_I3 ivec3 +#define FFX_MIN16_I4 ivec4 + +#define FFX_MIN16_U uint +#define FFX_MIN16_U2 uvec2 +#define FFX_MIN16_U3 uvec3 +#define FFX_MIN16_U4 uvec4 + +#define FFX_16BIT_F float +#define FFX_16BIT_F2 vec2 +#define FFX_16BIT_F3 vec3 +#define FFX_16BIT_F4 vec4 + +#define FFX_16BIT_I int +#define FFX_16BIT_I2 ivec2 +#define FFX_16BIT_I3 ivec3 +#define FFX_16BIT_I4 ivec4 + +#define FFX_16BIT_U uint +#define FFX_16BIT_U2 uvec2 +#define FFX_16BIT_U3 uvec3 +#define FFX_16BIT_U4 uvec4 + +#endif // FFX_HALF + +#endif // #if defined(FFX_GLSL) + +#endif // #if defined(FFX_GPU) +#endif // #ifndef FFX_COMMON_TYPES_H diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h.meta new file mode 100644 index 0000000..203c57a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_common_types.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: c6da07d8aae05f04f87e4db20f84c73e +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h new file mode 100644 index 0000000..4e687d6 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h @@ -0,0 +1,52 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +/// @defgroup Core +/// @defgroup HLSL +/// @defgroup GLSL +/// @defgroup GPU +/// @defgroup CPU +/// @defgroup CAS +/// @defgroup FSR1 + +#if !defined(FFX_CORE_H) +#define FFX_CORE_H + +#include "ffx_common_types.h" + +#if defined(FFX_CPU) + #include "ffx_core_cpu.h" +#endif // #if defined(FFX_CPU) + +#if defined(FFX_GLSL) && defined(FFX_GPU) + #include "ffx_core_glsl.h" +#endif // #if defined(FFX_GLSL) && defined(FFX_GPU) + +#if defined(FFX_HLSL) && defined(FFX_GPU) + #include "ffx_core_hlsl.h" +#endif // #if defined(FFX_HLSL) && defined(FFX_GPU) + +#if defined(FFX_GPU) + #include "ffx_core_gpu_common.h" + #include "ffx_core_gpu_common_half.h" + #include "ffx_core_portability.h" +#endif // #if defined(FFX_GPU) +#endif // #if !defined(FFX_CORE_H) \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h.meta new file mode 100644 index 0000000..db53534 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: b37eb663a0ae01b469b0b5a54365b301 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h new file mode 100644 index 0000000..3bf0295 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h @@ -0,0 +1,332 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +/// A define for a true value in a boolean expression. +/// +/// @ingroup CPU +#define FFX_TRUE (1) + +/// A define for a false value in a boolean expression. +/// +/// @ingroup CPU +#define FFX_FALSE (0) + +#if !defined(FFX_STATIC) +/// A define to abstract declaration of static variables and functions. +/// +/// @ingroup CPU +#define FFX_STATIC static +#endif // #if !defined(FFX_STATIC) + +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wunused-variable" +#endif + +/// Interpret the bit layout of an IEEE-754 floating point value as an unsigned integer. +/// +/// @param [in] x A 32bit floating value. +/// +/// @returns +/// An unsigned 32bit integer value containing the bit pattern of x. +/// +/// @ingroup CPU +FFX_STATIC FfxUInt32 ffxAsUInt32(FfxFloat32 x) +{ + union + { + FfxFloat32 f; + FfxUInt32 u; + } bits; + + bits.f = x; + return bits.u; +} + +FFX_STATIC FfxFloat32 ffxDot2(FfxFloat32x2 a, FfxFloat32x2 b) +{ + return a[0] * b[0] + a[1] * b[1]; +} + +FFX_STATIC FfxFloat32 ffxDot3(FfxFloat32x3 a, FfxFloat32x3 b) +{ + return a[0] * b[0] + a[1] * b[1] + a[2] * b[2]; +} + +FFX_STATIC FfxFloat32 ffxDot4(FfxFloat32x4 a, FfxFloat32x4 b) +{ + return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3]; +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the GLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 ffxLerp(FfxFloat32 x, FfxFloat32 y, FfxFloat32 t) +{ + return y * t + (-x * t + x); +} + +/// Compute the reciprocal of a value. +/// +/// @param [in] x The value to compute the reciprocal for. +/// +/// @returns +/// The reciprocal value of x. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 ffxReciprocal(FfxFloat32 a) +{ + return 1.0f / a; +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 ffxSqrt(FfxFloat32 x) +{ + return sqrt(x); +} + +FFX_STATIC FfxUInt32 AShrSU1(FfxUInt32 a, FfxUInt32 b) +{ + return FfxUInt32(FfxInt32(a) >> FfxInt32(b)); +} + +/// Compute the factional part of a decimal value. +/// +/// This function calculates x - floor(x). +/// +/// @param [in] x The value to compute the fractional part from. +/// +/// @returns +/// The fractional part of x. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 ffxFract(FfxFloat32 a) +{ + return a - floor(a); +} + +/// Compute the reciprocal square root of a value. +/// +/// @param [in] x The value to compute the reciprocal for. +/// +/// @returns +/// The reciprocal square root value of x. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 rsqrt(FfxFloat32 a) +{ + return ffxReciprocal(ffxSqrt(a)); +} + +FFX_STATIC FfxFloat32 ffxMin(FfxFloat32 x, FfxFloat32 y) +{ + return x < y ? x : y; +} + +FFX_STATIC FfxUInt32 ffxMin(FfxUInt32 x, FfxUInt32 y) +{ + return x < y ? x : y; +} + +FFX_STATIC FfxFloat32 ffxMax(FfxFloat32 x, FfxFloat32 y) +{ + return x > y ? x : y; +} + +FFX_STATIC FfxUInt32 ffxMax(FfxUInt32 x, FfxUInt32 y) +{ + return x > y ? x : y; +} + +/// Clamp a value to a [0..1] range. +/// +/// @param [in] x The value to clamp to [0..1] range. +/// +/// @returns +/// The clamped version of x. +/// +/// @ingroup CPU +FFX_STATIC FfxFloat32 ffxSaturate(FfxFloat32 a) +{ + return ffxMin(1.0f, ffxMax(0.0f, a)); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +FFX_STATIC void opAAddOneF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32 b) +{ + d[0] = a[0] + b; + d[1] = a[1] + b; + d[2] = a[2] + b; + return; +} + +FFX_STATIC void opACpyF3(FfxFloat32x3 d, FfxFloat32x3 a) +{ + d[0] = a[0]; + d[1] = a[1]; + d[2] = a[2]; + return; +} + +FFX_STATIC void opAMulF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32x3 b) +{ + d[0] = a[0] * b[0]; + d[1] = a[1] * b[1]; + d[2] = a[2] * b[2]; + return; +} + +FFX_STATIC void opAMulOneF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32 b) +{ + d[0] = a[0] * b; + d[1] = a[1] * b; + d[2] = a[2] * b; + return; +} + +FFX_STATIC void opARcpF3(FfxFloat32x3 d, FfxFloat32x3 a) +{ + d[0] = ffxReciprocal(a[0]); + d[1] = ffxReciprocal(a[1]); + d[2] = ffxReciprocal(a[2]); + return; +} + +/// Convert FfxFloat32 to half (in lower 16-bits of output). +/// +/// This function implements the same fast technique that is documented here: ftp://ftp.fox-toolkit.org/pub/fasthalffloatconversion.pdf +/// +/// The function supports denormals. +/// +/// Some conversion rules are to make computations possibly "safer" on the GPU, +/// -INF & -NaN -> -65504 +/// +INF & +NaN -> +65504 +/// +/// @param [in] f The 32bit floating point value to convert. +/// +/// @returns +/// The closest 16bit floating point value to f. +/// +/// @ingroup CPU +FFX_STATIC FfxUInt32 f32tof16(FfxFloat32 f) +{ + static FfxUInt16 base[512] = { + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, + 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0001, 0x0002, 0x0004, 0x0008, 0x0010, 0x0020, 0x0040, 0x0080, 0x0100, 0x0200, 0x0400, + 0x0800, 0x0c00, 0x1000, 0x1400, 0x1800, 0x1c00, 0x2000, 0x2400, 0x2800, 0x2c00, 0x3000, 0x3400, 0x3800, 0x3c00, 0x4000, 0x4400, 0x4800, 0x4c00, 0x5000, + 0x5400, 0x5800, 0x5c00, 0x6000, 0x6400, 0x6800, 0x6c00, 0x7000, 0x7400, 0x7800, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, + 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x7bff, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, + 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, + 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, + 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, + 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, + 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8001, 0x8002, + 0x8004, 0x8008, 0x8010, 0x8020, 0x8040, 0x8080, 0x8100, 0x8200, 0x8400, 0x8800, 0x8c00, 0x9000, 0x9400, 0x9800, 0x9c00, 0xa000, 0xa400, 0xa800, 0xac00, + 0xb000, 0xb400, 0xb800, 0xbc00, 0xc000, 0xc400, 0xc800, 0xcc00, 0xd000, 0xd400, 0xd800, 0xdc00, 0xe000, 0xe400, 0xe800, 0xec00, 0xf000, 0xf400, 0xf800, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, + 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff, 0xfbff + }; + + static FfxUInt8 shift[512] = { + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x10, 0x0f, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, + 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x10, 0x0f, 0x0e, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, + 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x0d, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18 + }; + + union + { + FfxFloat32 f; + FfxUInt32 u; + } bits; + + bits.f = f; + FfxUInt32 u = bits.u; + FfxUInt32 i = u >> 23; + return (FfxUInt32)(base[i]) + ((u & 0x7fffff) >> shift[i]); +} + +/// Pack 2x32-bit floating point values in a single 32bit value. +/// +/// This function first converts each component of value into their nearest 16-bit floating +/// point representation, and then stores the X and Y components in the lower and upper 16 bits of the +/// 32bit unsigned integer respectively. +/// +/// @param [in] value A 2-dimensional floating point value to convert and pack. +/// +/// @returns +/// A packed 32bit value containing 2 16bit floating point values. +/// +/// @ingroup CPU +FFX_STATIC FfxUInt32 packHalf2x16(FfxFloat32x2 a) +{ + return f32tof16(a[0]) + (f32tof16(a[1]) << 16); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h.meta new file mode 100644 index 0000000..704e2e3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_cpu.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 9d1d6ed5c9da0c64b882f3ebc2bac307 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h new file mode 100644 index 0000000..ae07642 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h @@ -0,0 +1,2784 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +/// A define for a true value in a boolean expression. +/// +/// @ingroup GPU +#define FFX_TRUE (true) + +/// A define for a false value in a boolean expression. +/// +/// @ingroup GPU +#define FFX_FALSE (false) + +/// A define value for positive infinity. +/// +/// @ingroup GPU +#define FFX_POSITIVE_INFINITY_FLOAT ffxAsFloat(0x7f800000u) + +/// A define value for negative infinity. +/// +/// @ingroup GPU +#define FFX_NEGATIVE_INFINITY_FLOAT ffxAsFloat(0xff800000u) + +/// A define value for PI. +/// +/// @ingroup GPU +#define FFX_PI (3.14159) + + +/// Compute the reciprocal of value. +/// +/// @param [in] value The value to compute the reciprocal of. +/// +/// @returns +/// The 1 / value. +/// +/// @ingroup GPU +FfxFloat32 ffxReciprocal(FfxFloat32 value) +{ + return rcp(value); +} + +/// Compute the reciprocal of value. +/// +/// @param [in] value The value to compute the reciprocal of. +/// +/// @returns +/// The 1 / value. +/// +/// @ingroup GPU +FfxFloat32x2 ffxReciprocal(FfxFloat32x2 value) +{ + return rcp(value); +} + +/// Compute the reciprocal of value. +/// +/// @param [in] value The value to compute the reciprocal of. +/// +/// @returns +/// The 1 / value. +/// +/// @ingroup GPU +FfxFloat32x3 ffxReciprocal(FfxFloat32x3 value) +{ + return rcp(value); +} + +/// Compute the reciprocal of value. +/// +/// @param [in] value The value to compute the reciprocal of. +/// +/// @returns +/// The 1 / value. +/// +/// @ingroup GPU +FfxFloat32x4 ffxReciprocal(FfxFloat32x4 value) +{ + return rcp(value); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32 ffxMin(FfxFloat32 x, FfxFloat32 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x2 ffxMin(FfxFloat32x2 x, FfxFloat32x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x3 ffxMin(FfxFloat32x3 x, FfxFloat32x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x4 ffxMin(FfxFloat32x4 x, FfxFloat32x4 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32 ffxMin(FfxInt32 x, FfxInt32 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x2 ffxMin(FfxInt32x2 x, FfxInt32x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x3 ffxMin(FfxInt32x3 x, FfxInt32x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x4 ffxMin(FfxInt32x4 x, FfxInt32x4 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32 ffxMin(FfxUInt32 x, FfxUInt32 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x2 ffxMin(FfxUInt32x2 x, FfxUInt32x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x3 ffxMin(FfxUInt32x3 x, FfxUInt32x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x4 ffxMin(FfxUInt32x4 x, FfxUInt32x4 y) +{ + return min(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32 ffxMax(FfxFloat32 x, FfxFloat32 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x2 ffxMax(FfxFloat32x2 x, FfxFloat32x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x3 ffxMax(FfxFloat32x3 x, FfxFloat32x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat32x4 ffxMax(FfxFloat32x4 x, FfxFloat32x4 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32 ffxMax(FfxInt32 x, FfxInt32 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x2 ffxMax(FfxInt32x2 x, FfxInt32x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x3 ffxMax(FfxInt32x3 x, FfxInt32x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt32x4 ffxMax(FfxInt32x4 x, FfxInt32x4 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32 ffxMax(FfxUInt32 x, FfxUInt32 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x2 ffxMax(FfxUInt32x2 x, FfxUInt32x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x3 ffxMax(FfxUInt32x3 x, FfxUInt32x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt32x4 ffxMax(FfxUInt32x4 x, FfxUInt32x4 y) +{ + return max(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat32 ffxPow(FfxFloat32 x, FfxFloat32 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat32x2 ffxPow(FfxFloat32x2 x, FfxFloat32x2 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat32x3 ffxPow(FfxFloat32x3 x, FfxFloat32x3 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat32x4 ffxPow(FfxFloat32x4 x, FfxFloat32x4 y) +{ + return pow(x, y); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat32 ffxSqrt(FfxFloat32 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat32x2 ffxSqrt(FfxFloat32x2 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat32x3 ffxSqrt(FfxFloat32x3 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat32x4 ffxSqrt(FfxFloat32x4 x) +{ + return sqrt(x); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat32 ffxCopySignBit(FfxFloat32 d, FfxFloat32 s) +{ + return ffxAsFloat(ffxAsUInt32(d) | (ffxAsUInt32(s) & FfxUInt32(0x80000000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat32x2 ffxCopySignBit(FfxFloat32x2 d, FfxFloat32x2 s) +{ + return ffxAsFloat(ffxAsUInt32(d) | (ffxAsUInt32(s) & ffxBroadcast2(0x80000000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat32x3 ffxCopySignBit(FfxFloat32x3 d, FfxFloat32x3 s) +{ + return ffxAsFloat(ffxAsUInt32(d) | (ffxAsUInt32(s) & ffxBroadcast3(0x80000000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat32x4 ffxCopySignBit(FfxFloat32x4 d, FfxFloat32x4 s) +{ + return ffxAsFloat(ffxAsUInt32(d) | (ffxAsUInt32(s) & ffxBroadcast4(0x80000000u))); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat32 ffxIsSigned(FfxFloat32 m) +{ + return ffxSaturate(m * FfxFloat32(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat32x2 ffxIsSigned(FfxFloat32x2 m) +{ + return ffxSaturate(m * ffxBroadcast2(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat32x3 ffxIsSigned(FfxFloat32x3 m) +{ + return ffxSaturate(m * ffxBroadcast3(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against for have the sign set. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or positive. +/// +/// @ingroup GPU +FfxFloat32x4 ffxIsSigned(FfxFloat32x4 m) +{ + return ffxSaturate(m * ffxBroadcast4(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat32 ffxIsGreaterThanZero(FfxFloat32 m) +{ + return ffxSaturate(m * FfxFloat32(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat32x2 ffxIsGreaterThanZero(FfxFloat32x2 m) +{ + return ffxSaturate(m * ffxBroadcast2(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat32x3 ffxIsGreaterThanZero(FfxFloat32x3 m) +{ + return ffxSaturate(m * ffxBroadcast3(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat32x4 ffxIsGreaterThanZero(FfxFloat32x4 m) +{ + return ffxSaturate(m * ffxBroadcast4(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// Convert a 32bit floating point value to sortable integer. +/// +/// - If sign bit=0, flip the sign bit (positives). +/// - If sign bit=1, flip all bits (negatives). +/// +/// The function has the side effects that: +/// - Larger integers are more positive values. +/// - Float zero is mapped to center of integers (so clear to integer zero is a nice default for atomic max usage). +/// +/// @param [in] value The floating point value to make sortable. +/// +/// @returns +/// The sortable integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxFloatToSortableInteger(FfxUInt32 value) +{ + return value ^ ((AShrSU1(value, FfxUInt32(31))) | FfxUInt32(0x80000000)); +} + +/// Convert a sortable integer to a 32bit floating point value. +/// +/// The function has the side effects that: +/// - If sign bit=1, flip the sign bit (positives). +/// - If sign bit=0, flip all bits (negatives). +/// +/// @param [in] value The floating point value to make sortable. +/// +/// @returns +/// The sortable integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxSortableIntegerToFloat(FfxUInt32 value) +{ + return value ^ ((~AShrSU1(value, FfxUInt32(31))) | FfxUInt32(0x80000000)); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateSqrt(FfxFloat32 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> FfxUInt32(1)) + FfxUInt32(0x1fbc4639)); +} + +/// Calculate a low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateReciprocal(FfxFloat32 a) +{ + return ffxAsFloat(FfxUInt32(0x7ef07ebb) - ffxAsUInt32(a)); +} + +/// Calculate a medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateReciprocalMedium(FfxFloat32 value) +{ + FfxFloat32 b = ffxAsFloat(FfxUInt32(0x7ef19fff) - ffxAsUInt32(value)); + return b * (-b * value + FfxFloat32(2.0)); +} + +/// Calculate a low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal square root for. +/// +/// @returns +/// An approximation of the reciprocal square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateReciprocalSquareRoot(FfxFloat32 a) +{ + return ffxAsFloat(FfxUInt32(0x5f347d74) - (ffxAsUInt32(a) >> FfxUInt32(1))); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateSqrt(FfxFloat32x2 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast2(1u)) + ffxBroadcast2(0x1fbc4639u)); +} + +/// Calculate a low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateReciprocal(FfxFloat32x2 a) +{ + return ffxAsFloat(ffxBroadcast2(0x7ef07ebbu) - ffxAsUInt32(a)); +} + +/// Calculate a medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateReciprocalMedium(FfxFloat32x2 a) +{ + FfxFloat32x2 b = ffxAsFloat(ffxBroadcast2(0x7ef19fffu) - ffxAsUInt32(a)); + return b * (-b * a + ffxBroadcast2(2.0f)); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateReciprocalSquareRoot(FfxFloat32x2 a) +{ + return ffxAsFloat(ffxBroadcast2(0x5f347d74u) - (ffxAsUInt32(a) >> ffxBroadcast2(1u))); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateSqrt(FfxFloat32x3 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast3(1u)) + ffxBroadcast3(0x1fbc4639u)); +} + +/// Calculate a low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateReciprocal(FfxFloat32x3 a) +{ + return ffxAsFloat(ffxBroadcast3(0x7ef07ebbu) - ffxAsUInt32(a)); +} + +/// Calculate a medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateReciprocalMedium(FfxFloat32x3 a) +{ + FfxFloat32x3 b = ffxAsFloat(ffxBroadcast3(0x7ef19fffu) - ffxAsUInt32(a)); + return b * (-b * a + ffxBroadcast3(2.0f)); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateReciprocalSquareRoot(FfxFloat32x3 a) +{ + return ffxAsFloat(ffxBroadcast3(0x5f347d74u) - (ffxAsUInt32(a) >> ffxBroadcast3(1u))); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateSqrt(FfxFloat32x4 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast4(1u)) + ffxBroadcast4(0x1fbc4639u)); +} + +/// Calculate a low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateReciprocal(FfxFloat32x4 a) +{ + return ffxAsFloat(ffxBroadcast4(0x7ef07ebbu) - ffxAsUInt32(a)); +} + +/// Calculate a medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateReciprocalMedium(FfxFloat32x4 a) +{ + FfxFloat32x4 b = ffxAsFloat(ffxBroadcast4(0x7ef19fffu) - ffxAsUInt32(a)); + return b * (-b * a + ffxBroadcast4(2.0f)); +} + +/// Calculate a low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] value The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateReciprocalSquareRoot(FfxFloat32x4 a) +{ + return ffxAsFloat(ffxBroadcast4(0x5f347d74u) - (ffxAsUInt32(a) >> ffxBroadcast4(1u))); +} + +/// Calculate dot product of 'a' and 'b'. +/// +/// @param [in] a First vector input. +/// @param [in] b Second vector input. +/// +/// @returns +/// The value of a dot b. +/// +/// @ingroup GPU +FfxFloat32 ffxDot2(FfxFloat32x2 a, FfxFloat32x2 b) +{ + return dot(a, b); +} + +/// Calculate dot product of 'a' and 'b'. +/// +/// @param [in] a First vector input. +/// @param [in] b Second vector input. +/// +/// @returns +/// The value of a dot b. +/// +/// @ingroup GPU +FfxFloat32 ffxDot3(FfxFloat32x3 a, FfxFloat32x3 b) +{ + return dot(a, b); +} + +/// Calculate dot product of 'a' and 'b'. +/// +/// @param [in] a First vector input. +/// @param [in] b Second vector input. +/// +/// @returns +/// The value of a dot b. +/// +/// @ingroup GPU +FfxFloat32 ffxDot4(FfxFloat32x4 a, FfxFloat32x4 b) +{ + return dot(a, b); +} + + +/// Compute an approximate conversion from PQ to Gamma2 space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and Gamma2. +/// +/// @returns +/// The value a converted into Gamma2. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximatePQToGamma2Medium(FfxFloat32 a) +{ + return a * a * a * a; +} + +/// Compute an approximate conversion from PQ to linear space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and linear. +/// +/// @returns +/// The value a converted into linear. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximatePQToLinear(FfxFloat32 a) +{ + return a * a * a * a * a * a * a * a; +} + +/// Compute an approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateGamma2ToPQ(FfxFloat32 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> FfxUInt32(2)) + FfxUInt32(0x2F9A4E46)); +} + +/// Compute a more accurate approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateGamma2ToPQMedium(FfxFloat32 a) +{ + FfxFloat32 b = ffxAsFloat((ffxAsUInt32(a) >> FfxUInt32(2)) + FfxUInt32(0x2F9A4E46)); + FfxFloat32 b4 = b * b * b * b; + return b - b * (b4 - a) / (FfxFloat32(4.0) * b4); +} + +/// Compute a high accuracy approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateGamma2ToPQHigh(FfxFloat32 a) +{ + return ffxSqrt(ffxSqrt(a)); +} + +/// Compute an approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateLinearToPQ(FfxFloat32 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> FfxUInt32(3)) + FfxUInt32(0x378D8723)); +} + +/// Compute a more accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateLinearToPQMedium(FfxFloat32 a) +{ + FfxFloat32 b = ffxAsFloat((ffxAsUInt32(a) >> FfxUInt32(3)) + FfxUInt32(0x378D8723)); + FfxFloat32 b8 = b * b * b * b * b * b * b * b; + return b - b * (b8 - a) / (FfxFloat32(8.0) * b8); +} + +/// Compute a very accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32 ffxApproximateLinearToPQHigh(FfxFloat32 a) +{ + return ffxSqrt(ffxSqrt(ffxSqrt(a))); +} + +/// Compute an approximate conversion from PQ to Gamma2 space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and Gamma2. +/// +/// @returns +/// The value a converted into Gamma2. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximatePQToGamma2Medium(FfxFloat32x2 a) +{ + return a * a * a * a; +} + +/// Compute an approximate conversion from PQ to linear space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and linear. +/// +/// @returns +/// The value a converted into linear. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximatePQToLinear(FfxFloat32x2 a) +{ + return a * a * a * a * a * a * a * a; +} + +/// Compute an approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateGamma2ToPQ(FfxFloat32x2 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast2(2u)) + ffxBroadcast2(0x2F9A4E46u)); +} + +/// Compute a more accurate approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateGamma2ToPQMedium(FfxFloat32x2 a) +{ + FfxFloat32x2 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast2(2u)) + ffxBroadcast2(0x2F9A4E46u)); + FfxFloat32x2 b4 = b * b * b * b; + return b - b * (b4 - a) / (FfxFloat32(4.0) * b4); +} + +/// Compute a high accuracy approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateGamma2ToPQHigh(FfxFloat32x2 a) +{ + return ffxSqrt(ffxSqrt(a)); +} + +/// Compute an approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateLinearToPQ(FfxFloat32x2 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast2(3u)) + ffxBroadcast2(0x378D8723u)); +} + +/// Compute a more accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateLinearToPQMedium(FfxFloat32x2 a) +{ + FfxFloat32x2 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast2(3u)) + ffxBroadcast2(0x378D8723u)); + FfxFloat32x2 b8 = b * b * b * b * b * b * b * b; + return b - b * (b8 - a) / (FfxFloat32(8.0) * b8); +} + +/// Compute a very accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x2 ffxApproximateLinearToPQHigh(FfxFloat32x2 a) +{ + return ffxSqrt(ffxSqrt(ffxSqrt(a))); +} + +/// Compute an approximate conversion from PQ to Gamma2 space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and Gamma2. +/// +/// @returns +/// The value a converted into Gamma2. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximatePQToGamma2Medium(FfxFloat32x3 a) +{ + return a * a * a * a; +} + +/// Compute an approximate conversion from PQ to linear space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and linear. +/// +/// @returns +/// The value a converted into linear. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximatePQToLinear(FfxFloat32x3 a) +{ + return a * a * a * a * a * a * a * a; +} + +/// Compute an approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateGamma2ToPQ(FfxFloat32x3 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast3(2u)) + ffxBroadcast3(0x2F9A4E46u)); +} + +/// Compute a more accurate approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateGamma2ToPQMedium(FfxFloat32x3 a) +{ + FfxFloat32x3 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast3(2u)) + ffxBroadcast3(0x2F9A4E46u)); + FfxFloat32x3 b4 = b * b * b * b; + return b - b * (b4 - a) / (FfxFloat32(4.0) * b4); +} + +/// Compute a high accuracy approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateGamma2ToPQHigh(FfxFloat32x3 a) +{ + return ffxSqrt(ffxSqrt(a)); +} + +/// Compute an approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateLinearToPQ(FfxFloat32x3 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast3(3u)) + ffxBroadcast3(0x378D8723u)); +} + +/// Compute a more accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateLinearToPQMedium(FfxFloat32x3 a) +{ + FfxFloat32x3 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast3(3u)) + ffxBroadcast3(0x378D8723u)); + FfxFloat32x3 b8 = b * b * b * b * b * b * b * b; + return b - b * (b8 - a) / (FfxFloat32(8.0) * b8); +} + +/// Compute a very accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x3 ffxApproximateLinearToPQHigh(FfxFloat32x3 a) +{ + return ffxSqrt(ffxSqrt(ffxSqrt(a))); +} + +/// Compute an approximate conversion from PQ to Gamma2 space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and Gamma2. +/// +/// @returns +/// The value a converted into Gamma2. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximatePQToGamma2Medium(FfxFloat32x4 a) +{ + return a * a * a * a; +} + +/// Compute an approximate conversion from PQ to linear space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between PQ and linear. +/// +/// @returns +/// The value a converted into linear. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximatePQToLinear(FfxFloat32x4 a) +{ + return a * a * a * a * a * a * a * a; +} + +/// Compute an approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateGamma2ToPQ(FfxFloat32x4 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast4(2u)) + ffxBroadcast4(0x2F9A4E46u)); +} + +/// Compute a more accurate approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateGamma2ToPQMedium(FfxFloat32x4 a) +{ + FfxFloat32x4 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast4(2u)) + ffxBroadcast4(0x2F9A4E46u)); + FfxFloat32x4 b4 = b * b * b * b * b * b * b * b; + return b - b * (b4 - a) / (FfxFloat32(4.0) * b4); +} + +/// Compute a high accuracy approximate conversion from gamma2 to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between gamma2 and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateGamma2ToPQHigh(FfxFloat32x4 a) +{ + return ffxSqrt(ffxSqrt(a)); +} + +/// Compute an approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateLinearToPQ(FfxFloat32x4 a) +{ + return ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast4(3u)) + ffxBroadcast4(0x378D8723u)); +} + +/// Compute a more accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateLinearToPQMedium(FfxFloat32x4 a) +{ + FfxFloat32x4 b = ffxAsFloat((ffxAsUInt32(a) >> ffxBroadcast4(3u)) + ffxBroadcast4(0x378D8723u)); + FfxFloat32x4 b8 = b * b * b * b * b * b * b * b; + return b - b * (b8 - a) / (FfxFloat32(8.0) * b8); +} + +/// Compute a very accurate approximate conversion from linear to PQ space. +/// +/// PQ is very close to x^(1/8). The functions below Use the fast FfxFloat32 approximation method to do +/// PQ conversions to and from Gamma2 (4th power and fast 4th root), and PQ to and from Linear +/// (8th power and fast 8th root). The maximum error is approximately 0.2%. +/// +/// @param a The value to convert between linear and PQ. +/// +/// @returns +/// The value a converted into PQ. +/// +/// @ingroup GPU +FfxFloat32x4 ffxApproximateLinearToPQHigh(FfxFloat32x4 a) +{ + return ffxSqrt(ffxSqrt(ffxSqrt(a))); +} + +// An approximation of sine. +// +// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +// is {-1/4 to 1/4} representing {-1 to 1}. +// +// @param [in] value The value to calculate approximate sine for. +// +// @returns +// The approximate sine of value. +FfxFloat32 ffxParabolicSin(FfxFloat32 value) +{ + return value * abs(value) - value; +} + +// An approximation of sine. +// +// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +// is {-1/4 to 1/4} representing {-1 to 1}. +// +// @param [in] value The value to calculate approximate sine for. +// +// @returns +// The approximate sine of value. +FfxFloat32x2 ffxParabolicSin(FfxFloat32x2 x) +{ + return x * abs(x) - x; +} + +// An approximation of cosine. +// +// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +// is {-1/4 to 1/4} representing {-1 to 1}. +// +// @param [in] value The value to calculate approximate cosine for. +// +// @returns +// The approximate cosine of value. +FfxFloat32 ffxParabolicCos(FfxFloat32 x) +{ + x = ffxFract(x * FfxFloat32(0.5) + FfxFloat32(0.75)); + x = x * FfxFloat32(2.0) - FfxFloat32(1.0); + return ffxParabolicSin(x); +} + +// An approximation of cosine. +// +// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +// is {-1/4 to 1/4} representing {-1 to 1}. +// +// @param [in] value The value to calculate approximate cosine for. +// +// @returns +// The approximate cosine of value. +FfxFloat32x2 ffxParabolicCos(FfxFloat32x2 x) +{ + x = ffxFract(x * ffxBroadcast2(0.5f) + ffxBroadcast2(0.75f)); + x = x * ffxBroadcast2(2.0f) - ffxBroadcast2(1.0f); + return ffxParabolicSin(x); +} + +// An approximation of both sine and cosine. +// +// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +// is {-1/4 to 1/4} representing {-1 to 1}. +// +// @param [in] value The value to calculate approximate cosine for. +// +// @returns +// A FfxFloat32x2 containing approximations of both sine and cosine of value. +FfxFloat32x2 ffxParabolicSinCos(FfxFloat32 x) +{ + FfxFloat32 y = ffxFract(x * FfxFloat32(0.5) + FfxFloat32(0.75)); + y = y * FfxFloat32(2.0) - FfxFloat32(1.0); + return ffxParabolicSin(FfxFloat32x2(x, y)); +} + +/// Conditional free logic AND operation using values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt32 ffxZeroOneAnd(FfxUInt32 x, FfxUInt32 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt32x2 ffxZeroOneAnd(FfxUInt32x2 x, FfxUInt32x2 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt32x3 ffxZeroOneAnd(FfxUInt32x3 x, FfxUInt32x3 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt32x4 ffxZeroOneAnd(FfxUInt32x4 x, FfxUInt32x4 y) +{ + return min(x, y); +} + +/// Conditional free logic NOT operation using two values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt32 ffxZeroOneAnd(FfxUInt32 x) +{ + return x ^ FfxUInt32(1); +} + +/// Conditional free logic NOT operation using two values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt32x2 ffxZeroOneAnd(FfxUInt32x2 x) +{ + return x ^ ffxBroadcast2(1u); +} + +/// Conditional free logic NOT operation using two values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt32x3 ffxZeroOneAnd(FfxUInt32x3 x) +{ + return x ^ ffxBroadcast3(1u); +} + +/// Conditional free logic NOT operation using two values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt32x4 ffxZeroOneAnd(FfxUInt32x4 x) +{ + return x ^ ffxBroadcast4(1u); +} + +/// Conditional free logic OR operation using two values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt32 ffxZeroOneOr(FfxUInt32 x, FfxUInt32 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt32x2 ffxZeroOneOr(FfxUInt32x2 x, FfxUInt32x2 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt32x3 ffxZeroOneOr(FfxUInt32x3 x, FfxUInt32x3 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt32x4 ffxZeroOneOr(FfxUInt32x4 x, FfxUInt32x4 y) +{ + return max(x, y); +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxUInt32 ffxZeroOneAndToU1(FfxFloat32 x) +{ + return FfxUInt32(FfxFloat32(1.0) - x); +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxUInt32x2 ffxZeroOneAndToU2(FfxFloat32x2 x) +{ + return FfxUInt32x2(ffxBroadcast2(1.0) - x); +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxUInt32x3 ffxZeroOneAndToU3(FfxFloat32x3 x) +{ + return FfxUInt32x3(ffxBroadcast3(1.0) - x); +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxUInt32x4 ffxZeroOneAndToU4(FfxFloat32x4 x) +{ + return FfxUInt32x4(ffxBroadcast4(1.0) - x); +} + +/// Conditional free logic AND operation using two values followed by a NOT operation +/// using the resulting value and a third value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneAndOr(FfxFloat32 x, FfxFloat32 y, FfxFloat32 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two values followed by a NOT operation +/// using the resulting value and a third value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneAndOr(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two values followed by a NOT operation +/// using the resulting value and a third value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneAndOr(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two values followed by a NOT operation +/// using the resulting value and a third value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneAndOr(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 z) +{ + return ffxSaturate(x * y + z); +} + +/// Given a value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneIsGreaterThanZero(FfxFloat32 x) +{ + return ffxSaturate(x * FfxFloat32(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneIsGreaterThanZero(FfxFloat32x2 x) +{ + return ffxSaturate(x * ffxBroadcast2(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneIsGreaterThanZero(FfxFloat32x3 x) +{ + return ffxSaturate(x * ffxBroadcast3(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneIsGreaterThanZero(FfxFloat32x4 x) +{ + return ffxSaturate(x * ffxBroadcast4(FFX_POSITIVE_INFINITY_FLOAT)); +} + +/// Conditional free logic signed NOT operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneAnd(FfxFloat32 x) +{ + return FfxFloat32(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneAnd(FfxFloat32x2 x) +{ + return ffxBroadcast2(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneAnd(FfxFloat32x3 x) +{ + return ffxBroadcast3(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneAnd(FfxFloat32x4 x) +{ + return ffxBroadcast4(1.0) - x; +} + +/// Conditional free logic OR operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneOr(FfxFloat32 x, FfxFloat32 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneOr(FfxFloat32x2 x, FfxFloat32x2 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneOr(FfxFloat32x3 x, FfxFloat32x3 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneOr(FfxFloat32x4 x, FfxFloat32x4 y) +{ + return max(x, y); +} + +/// Choose between two FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneSelect(FfxFloat32 x, FfxFloat32 y, FfxFloat32 z) +{ + FfxFloat32 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneSelect(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 z) +{ + FfxFloat32x2 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneSelect(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 z) +{ + FfxFloat32x3 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneSelect(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 z) +{ + FfxFloat32x4 r = (-x) * z + z; + return x * y + r; +} + +/// Given a value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat32 ffxZeroOneIsSigned(FfxFloat32 x) +{ + return ffxSaturate(x * FfxFloat32(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat32x2 ffxZeroOneIsSigned(FfxFloat32x2 x) +{ + return ffxSaturate(x * ffxBroadcast2(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat32x3 ffxZeroOneIsSigned(FfxFloat32x3 x) +{ + return ffxSaturate(x * ffxBroadcast3(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// Given a value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat32x4 ffxZeroOneIsSigned(FfxFloat32x4 x) +{ + return ffxSaturate(x * ffxBroadcast4(FFX_NEGATIVE_INFINITY_FLOAT)); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] color The color to convert to Rec. 709. +/// +/// @returns +/// The color in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxRec709FromLinear(FfxFloat32 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.099, -0.099); + return clamp(j.x, color * j.y, pow(color, j.z) * k.x + k.y); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] color The color to convert to Rec. 709. +/// +/// @returns +/// The color in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxRec709FromLinear(FfxFloat32x2 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.099, -0.099); + return clamp(j.xx, color * j.yy, pow(color, j.zz) * k.xx + k.yy); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] color The color to convert to Rec. 709. +/// +/// @returns +/// The color in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxRec709FromLinear(FfxFloat32x3 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.099, -0.099); + return clamp(j.xxx, color * j.yyy, pow(color, j.zzz) * k.xxx + k.yyy); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGamma. +/// +/// @param [in] value The value to convert to gamma space from linear. +/// @param [in] power The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat32 ffxGammaFromLinear(FfxFloat32 color, FfxFloat32 rcpX) +{ + return pow(color, FfxFloat32(rcpX)); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGamma. +/// +/// @param [in] value The value to convert to gamma space from linear. +/// @param [in] power The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxGammaFromLinear(FfxFloat32x2 color, FfxFloat32 rcpX) +{ + return pow(color, ffxBroadcast2(rcpX)); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGamma. +/// +/// @param [in] value The value to convert to gamma space from linear. +/// @param [in] power The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxGammaFromLinear(FfxFloat32x3 color, FfxFloat32 rcpX) +{ + return pow(color, ffxBroadcast3(rcpX)); +} + +/// Compute a PQ value from a linear value. +/// +/// @param [in] value The value to convert to PQ from linear. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxPQToLinear(FfxFloat32 x) +{ + FfxFloat32 p = pow(x, FfxFloat32(0.159302)); + return pow((FfxFloat32(0.835938) + FfxFloat32(18.8516) * p) / (FfxFloat32(1.0) + FfxFloat32(18.6875) * p), FfxFloat32(78.8438)); +} + +/// Compute a PQ value from a linear value. +/// +/// @param [in] value The value to convert to PQ from linear. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxPQToLinear(FfxFloat32x2 x) +{ + FfxFloat32x2 p = pow(x, ffxBroadcast2(0.159302)); + return pow((ffxBroadcast2(0.835938) + ffxBroadcast2(18.8516) * p) / (ffxBroadcast2(1.0) + ffxBroadcast2(18.6875) * p), ffxBroadcast2(78.8438)); +} + +/// Compute a PQ value from a linear value. +/// +/// @param [in] value The value to convert to PQ from linear. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxPQToLinear(FfxFloat32x3 x) +{ + FfxFloat32x3 p = pow(x, ffxBroadcast3(0.159302)); + return pow((ffxBroadcast3(0.835938) + ffxBroadcast3(18.8516) * p) / (ffxBroadcast3(1.0) + ffxBroadcast3(18.6875) * p), ffxBroadcast3(78.8438)); +} + +/// Compute a linear value from a SRGB value. +/// +/// @param [in] value The value to convert to linear from SRGB. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat32 ffxSrgbToLinear(FfxFloat32 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.055, -0.055); + return clamp(j.x, color * j.y, pow(color, j.z) * k.x + k.y); +} + +/// Compute a linear value from a SRGB value. +/// +/// @param [in] value The value to convert to linear from SRGB. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxSrgbToLinear(FfxFloat32x2 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.055, -0.055); + return clamp(j.xx, color * j.yy, pow(color, j.zz) * k.xx + k.yy); +} + +/// Compute a linear value from a SRGB value. +/// +/// @param [in] value The value to convert to linear from SRGB. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxSrgbToLinear(FfxFloat32x3 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.055, -0.055); + return clamp(j.xxx, color * j.yyy, pow(color, j.zzz) * k.xxx + k.yyy); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] color The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxLinearFromRec709(FfxFloat32 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.x), color * j.y, pow(color * k.x + k.y, j.z)); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] color The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxLinearFromRec709(FfxFloat32x2 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.xx), color * j.yy, pow(color * k.xx + k.yy, j.zz)); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] color The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxLinearFromRec709(FfxFloat32x3 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.xxx), color * j.yyy, pow(color * k.xxx + k.yyy, j.zzz)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] color The value to convert to linear in gamma space. +/// @param [in] power The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxLinearFromGamma(FfxFloat32 color, FfxFloat32 power) +{ + return pow(color, FfxFloat32(power)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] color The value to convert to linear in gamma space. +/// @param [in] power The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxLinearFromGamma(FfxFloat32x2 color, FfxFloat32 power) +{ + return pow(color, ffxBroadcast2(power)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] color The value to convert to linear in gamma space. +/// @param [in] power The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxLinearFromGamma(FfxFloat32x3 color, FfxFloat32 power) +{ + return pow(color, ffxBroadcast3(power)); +} + +/// Compute a linear value from a value in a PQ space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in PQ space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxLinearFromPQ(FfxFloat32 x) +{ + FfxFloat32 p = pow(x, FfxFloat32(0.0126833)); + return pow(ffxSaturate(p - FfxFloat32(0.835938)) / (FfxFloat32(18.8516) - FfxFloat32(18.6875) * p), FfxFloat32(6.27739)); +} + +/// Compute a linear value from a value in a PQ space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in PQ space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxLinearFromPQ(FfxFloat32x2 x) +{ + FfxFloat32x2 p = pow(x, ffxBroadcast2(0.0126833)); + return pow(ffxSaturate(p - ffxBroadcast2(0.835938)) / (ffxBroadcast2(18.8516) - ffxBroadcast2(18.6875) * p), ffxBroadcast2(6.27739)); +} + +/// Compute a linear value from a value in a PQ space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in PQ space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxLinearFromPQ(FfxFloat32x3 x) +{ + FfxFloat32x3 p = pow(x, ffxBroadcast3(0.0126833)); + return pow(ffxSaturate(p - ffxBroadcast3(0.835938)) / (ffxBroadcast3(18.8516) - ffxBroadcast3(18.6875) * p), ffxBroadcast3(6.27739)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32 ffxLinearFromSrgb(FfxFloat32 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.x), color * j.y, pow(color * k.x + k.y, j.z)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x2 ffxLinearFromSrgb(FfxFloat32x2 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.xx), color * j.yy, pow(color * k.xx + k.yy, j.zz)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] value The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat32x3 ffxLinearFromSrgb(FfxFloat32x3 color) +{ + FfxFloat32x3 j = FfxFloat32x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat32x2 k = FfxFloat32x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelect(ffxZeroOneIsSigned(color - j.xxx), color * j.yyy, pow(color * k.xxx + k.yyy, j.zzz)); +} + +/// A remapping of 64x1 to 8x8 imposing rotated 2x2 pixel quads in quad linear. +/// +/// 543210 +/// ====== +/// ..xxx. +/// yy...y +/// +/// @param [in] a The input 1D coordinates to remap. +/// +/// @returns +/// The remapped 2D coordinates. +/// +/// @ingroup GPU +FfxUInt32x2 ffxRemapForQuad(FfxUInt32 a) +{ + return FfxUInt32x2(bitfieldExtract(a, 1u, 3u), bitfieldInsertMask(bitfieldExtract(a, 3u, 3u), a, 1u)); +} + +/// A helper function performing a remap 64x1 to 8x8 remapping which is necessary for 2D wave reductions. +/// +/// The 64-wide lane indices to 8x8 remapping is performed as follows: +/// +/// 00 01 08 09 10 11 18 19 +/// 02 03 0a 0b 12 13 1a 1b +/// 04 05 0c 0d 14 15 1c 1d +/// 06 07 0e 0f 16 17 1e 1f +/// 20 21 28 29 30 31 38 39 +/// 22 23 2a 2b 32 33 3a 3b +/// 24 25 2c 2d 34 35 3c 3d +/// 26 27 2e 2f 36 37 3e 3f +/// +/// @param [in] a The input 1D coordinate to remap. +/// +/// @returns +/// The remapped 2D coordinates. +/// +/// @ingroup GPU +FfxUInt32x2 ffxRemapForWaveReduction(FfxUInt32 a) +{ + return FfxUInt32x2(bitfieldInsertMask(bitfieldExtract(a, 2u, 3u), a, 1u), bitfieldInsertMask(bitfieldExtract(a, 3u, 3u), bitfieldExtract(a, 1u, 2u), 2u)); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h.meta new file mode 100644 index 0000000..26832e5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 402c509393f5bf647b41a962a48ed8e2 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h new file mode 100644 index 0000000..c46ccb3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h @@ -0,0 +1,2978 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#if FFX_HALF +#if FFX_HLSL_6_2 +/// A define value for 16bit positive infinity. +/// +/// @ingroup GPU +#define FFX_POSITIVE_INFINITY_HALF FFX_TO_FLOAT16((uint16_t)0x7c00u) + +/// A define value for 16bit negative infinity. +/// +/// @ingroup GPU +#define FFX_NEGATIVE_INFINITY_HALF FFX_TO_FLOAT16((uint16_t)0xfc00u) +#else +/// A define value for 16bit positive infinity. +/// +/// @ingroup GPU +#define FFX_POSITIVE_INFINITY_HALF FFX_TO_FLOAT16(0x7c00u) + +/// A define value for 16bit negative infinity. +/// +/// @ingroup GPU +#define FFX_NEGATIVE_INFINITY_HALF FFX_TO_FLOAT16(0xfc00u) +#endif // FFX_HLSL_6_2 + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16 ffxMin(FfxFloat16 x, FfxFloat16 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x2 ffxMin(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x3 ffxMin(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x4 ffxMin(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16 ffxMin(FfxInt16 x, FfxInt16 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x2 ffxMin(FfxInt16x2 x, FfxInt16x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x3 ffxMin(FfxInt16x3 x, FfxInt16x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x4 ffxMin(FfxInt16x4 x, FfxInt16x4 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16 ffxMin(FfxUInt16 x, FfxUInt16 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x2 ffxMin(FfxUInt16x2 x, FfxUInt16x2 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x3 ffxMin(FfxUInt16x3 x, FfxUInt16x3 y) +{ + return min(x, y); +} + +/// Compute the min of two values. +/// +/// @param [in] x The first value to compute the min of. +/// @param [in] y The second value to compute the min of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x4 ffxMin(FfxUInt16x4 x, FfxUInt16x4 y) +{ + return min(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16 ffxMax(FfxFloat16 x, FfxFloat16 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x2 ffxMax(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x3 ffxMax(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxFloat16x4 ffxMax(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16 ffxMax(FfxInt16 x, FfxInt16 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x2 ffxMax(FfxInt16x2 x, FfxInt16x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x3 ffxMax(FfxInt16x3 x, FfxInt16x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxInt16x4 ffxMax(FfxInt16x4 x, FfxInt16x4 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16 ffxMax(FfxUInt16 x, FfxUInt16 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x2 ffxMax(FfxUInt16x2 x, FfxUInt16x2 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x3 ffxMax(FfxUInt16x3 x, FfxUInt16x3 y) +{ + return max(x, y); +} + +/// Compute the max of two values. +/// +/// @param [in] x The first value to compute the max of. +/// @param [in] y The second value to compute the max of. +/// +/// @returns +/// The the lowest of two values. +/// +/// @ingroup GPU +FfxUInt16x4 ffxMax(FfxUInt16x4 x, FfxUInt16x4 y) +{ + return max(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat16 ffxPow(FfxFloat16 x, FfxFloat16 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPow(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat16x3 ffxPow(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return pow(x, y); +} + +/// Compute the value of the first parameter raised to the power of the second. +/// +/// @param [in] x The value to raise to the power y. +/// @param [in] y The power to which to raise x. +/// +/// @returns +/// The value of the first parameter raised to the power of the second. +/// +/// @ingroup GPU +FfxFloat16x4 ffxPow(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return pow(x, y); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat16 ffxSqrt(FfxFloat16 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat16x2 ffxSqrt(FfxFloat16x2 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat16x3 ffxSqrt(FfxFloat16x3 x) +{ + return sqrt(x); +} + +/// Compute the square root of a value. +/// +/// @param [in] x The first value to compute the min of. +/// +/// @returns +/// The the square root of x. +/// +/// @ingroup GPU +FfxFloat16x4 ffxSqrt(FfxFloat16x4 x) +{ + return sqrt(x); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat16 ffxCopySignBitHalf(FfxFloat16 d, FfxFloat16 s) +{ + return FFX_TO_FLOAT16(FFX_TO_UINT16(d) | (FFX_TO_UINT16(s) & FFX_BROADCAST_UINT16(0x8000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat16x2 ffxCopySignBitHalf(FfxFloat16x2 d, FfxFloat16x2 s) +{ + return FFX_TO_FLOAT16X2(FFX_TO_UINT16X2(d) | (FFX_TO_UINT16X2(s) & FFX_BROADCAST_UINT16X2(0x8000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat16x3 ffxCopySignBitHalf(FfxFloat16x3 d, FfxFloat16x3 s) +{ + return FFX_TO_FLOAT16X3(FFX_TO_UINT16X3(d) | (FFX_TO_UINT16X3(s) & FFX_BROADCAST_UINT16X3(0x8000u))); +} + +/// Copy the sign bit from 's' to positive 'd'. +/// +/// @param [in] d The value to copy the sign bit into. +/// @param [in] s The value to copy the sign bit from. +/// +/// @returns +/// The value of d with the sign bit from s. +/// +/// @ingroup GPU +FfxFloat16x4 ffxCopySignBitHalf(FfxFloat16x4 d, FfxFloat16x4 s) +{ + return FFX_TO_FLOAT16X4(FFX_TO_UINT16X4(d) | (FFX_TO_UINT16X4(s) & FFX_BROADCAST_UINT16X4(0x8000u))); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat16 ffxIsSignedHalf(FfxFloat16 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat16x2 ffxIsSignedHalf(FfxFloat16x2 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X2(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat16x3 ffxIsSignedHalf(FfxFloat16x3 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X3(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 0 +/// m >= 0 := 0 +/// m < 0 := 1 +/// +/// Uses the following useful floating point logic, +/// saturate(+a*(-INF)==-INF) := 0 +/// saturate( 0*(-INF)== NaN) := 0 +/// saturate(-a*(-INF)==+INF) := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against 0. +/// +/// @returns +/// 1.0 when the value is negative, or 0.0 when the value is 0 or position. +/// +/// @ingroup GPU +FfxFloat16x4 ffxIsSignedHalf(FfxFloat16x4 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X4(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat16 ffxIsGreaterThanZeroHalf(FfxFloat16 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16(FFX_POSITIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat16x2 ffxIsGreaterThanZeroHalf(FfxFloat16x2 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X2(FFX_POSITIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat16x3 ffxIsGreaterThanZeroHalf(FfxFloat16x3 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X3(FFX_POSITIVE_INFINITY_HALF)); +} + +/// A single operation to return the following: +/// m = NaN := 1 +/// m > 0 := 0 +/// m <= 0 := 1 +/// +/// This function is useful when creating masks for branch-free logic. +/// +/// @param [in] m The value to test against zero. +/// +/// @returns +/// 1.0 when the value is position, or 0.0 when the value is 0 or negative. +/// +/// @ingroup GPU +FfxFloat16x4 ffxIsGreaterThanZeroHalf(FfxFloat16x4 m) +{ + return ffxSaturate(m * FFX_BROADCAST_FLOAT16X4(FFX_POSITIVE_INFINITY_HALF)); +} + +/// Convert a 16bit floating point value to sortable integer. +/// +/// - If sign bit=0, flip the sign bit (positives). +/// - If sign bit=1, flip all bits (negatives). +/// +/// The function has the side effects that: +/// - Larger integers are more positive values. +/// - Float zero is mapped to center of integers (so clear to integer zero is a nice default for atomic max usage). +/// +/// @param [in] x The floating point value to make sortable. +/// +/// @returns +/// The sortable integer value. +/// +/// @ingroup GPU +FfxUInt16 ffxFloatToSortableIntegerHalf(FfxUInt16 x) +{ + return x ^ ((ffxBitShiftRightHalf(x, FFX_BROADCAST_UINT16(15))) | FFX_BROADCAST_UINT16(0x8000)); +} + +/// Convert a sortable integer to a 16bit floating point value. +/// +/// The function has the side effects that: +/// - If sign bit=1, flip the sign bit (positives). +/// - If sign bit=0, flip all bits (negatives). +/// +/// @param [in] x The sortable integer value to make floating point. +/// +/// @returns +/// The floating point value. +/// +/// @ingroup GPU +FfxUInt16 ffxSortableIntegerToFloatHalf(FfxUInt16 x) +{ + return x ^ ((~ffxBitShiftRightHalf(x, FFX_BROADCAST_UINT16(15))) | FFX_BROADCAST_UINT16(0x8000)); +} + +/// Convert a pair of 16bit floating point values to a pair of sortable integers. +/// +/// - If sign bit=0, flip the sign bit (positives). +/// - If sign bit=1, flip all bits (negatives). +/// +/// The function has the side effects that: +/// - Larger integers are more positive values. +/// - Float zero is mapped to center of integers (so clear to integer zero is a nice default for atomic max usage). +/// +/// @param [in] x The floating point values to make sortable. +/// +/// @returns +/// The sortable integer values. +/// +/// @ingroup GPU +FfxUInt16x2 ffxFloatToSortableIntegerHalf(FfxUInt16x2 x) +{ + return x ^ ((ffxBitShiftRightHalf(x, FFX_BROADCAST_UINT16X2(15))) | FFX_BROADCAST_UINT16X2(0x8000)); +} + +/// Convert a pair of sortable integers to a pair of 16bit floating point values. +/// +/// The function has the side effects that: +/// - If sign bit=1, flip the sign bit (positives). +/// - If sign bit=0, flip all bits (negatives). +/// +/// @param [in] x The sortable integer values to make floating point. +/// +/// @returns +/// The floating point values. +/// +/// @ingroup GPU +FfxUInt16x2 ffxSortableIntegerToFloatHalf(FfxUInt16x2 x) +{ + return x ^ ((~ffxBitShiftRightHalf(x, FFX_BROADCAST_UINT16X2(15))) | FFX_BROADCAST_UINT16X2(0x8000)); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// [Zero] Y0 [Zero] X0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesZeroY0ZeroX0(FfxUInt32x2 i) +{ + return ((i.x) & 0xffu) | ((i.y << 16) & 0xff0000u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// [Zero] Y1 [Zero] X1 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesZeroY1ZeroX1(FfxUInt32x2 i) +{ + return ((i.x >> 8) & 0xffu) | ((i.y << 8) & 0xff0000u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// [Zero] Y2 [Zero] X2 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesZeroY2ZeroX2(FfxUInt32x2 i) +{ + return ((i.x >> 16) & 0xffu) | ((i.y) & 0xff0000u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// [Zero] Y3 [Zero] X3 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesZeroY3ZeroX3(FfxUInt32x2 i) +{ + return ((i.x >> 24) & 0xffu) | ((i.y >> 8) & 0xff0000u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 Y2 Y1 X0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3Y2Y1X0(FfxUInt32x2 i) +{ + return ((i.x) & 0x000000ffu) | (i.y & 0xffffff00u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 Y2 Y1 X2 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3Y2Y1X2(FfxUInt32x2 i) +{ + return ((i.x >> 16) & 0x000000ffu) | (i.y & 0xffffff00u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 Y2 X0 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3Y2X0Y0(FfxUInt32x2 i) +{ + return ((i.x << 8) & 0x0000ff00u) | (i.y & 0xffff00ffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 Y2 X2 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3Y2X2Y0(FfxUInt32x2 i) +{ + return ((i.x >> 8) & 0x0000ff00u) | (i.y & 0xffff00ffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 X0 Y1 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3X0Y1Y0(FfxUInt32x2 i) +{ + return ((i.x << 16) & 0x00ff0000u) | (i.y & 0xff00ffffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y3 X2 Y1 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY3X2Y1Y0(FfxUInt32x2 i) +{ + return ((i.x) & 0x00ff0000u) | (i.y & 0xff00ffffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// X0 Y2 Y1 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesX0Y2Y1Y0(FfxUInt32x2 i) +{ + return ((i.x << 24) & 0xff000000u) | (i.y & 0x00ffffffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// X2 Y2 Y1 Y0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesX2Y2Y1Y0(FfxUInt32x2 i) +{ + return ((i.x << 8) & 0xff000000u) | (i.y & 0x00ffffffu); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y2 X2 Y0 X0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY2X2Y0X0(FfxUInt32x2 i) +{ + return ((i.x) & 0x00ff00ffu) | ((i.y << 8) & 0xff00ff00u); +} + +/// Packs the bytes from the X and Y components of a FfxUInt32x2 into a single 32-bit integer. +/// +/// The resulting integer will contain bytes in the following order, from most to least significant: +/// Y2 Y0 X2 X0 +/// +/// @param [in] i The integer pair to pack. +/// +/// @returns +/// The packed integer value. +/// +/// @ingroup GPU +FfxUInt32 ffxPackBytesY2Y0X2X0(FfxUInt32x2 i) +{ + return (((i.x) & 0xffu) | ((i.x >> 8) & 0xff00u) | ((i.y << 16) & 0xff0000u) | ((i.y << 8) & 0xff000000u)); +} + +/// Takes two Float16x2 values x and y, normalizes them and builds a single Uint16x2 value in the format {{x0,y0},{x1,y1}}. +/// +/// @param [in] x The first float16x2 value to pack. +/// @param [in] y The second float16x2 value to pack. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt16x2 ffxPackX0Y0X1Y1UnsignedToUint16x2(FfxFloat16x2 x, FfxFloat16x2 y) +{ + x *= FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0); + y *= FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0); + return FFX_UINT32_TO_UINT16X2(ffxPackBytesY2X2Y0X0(FfxUInt32x2(FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(x)), FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(y))))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[0:7], +/// d.y[0:7] into r.y[0:7], i.x[8:15] into r.x[8:15], r.y[8:15] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// r=ffxPermuteUByte0Float16x2ToUint2(d,i) +/// Where 'k0' is an SGPR with {1.0/32768.0} packed into the lower 16-bits +/// Where 'k1' is an SGPR with 0x???? +/// Where 'k2' is an SGPR with 0x???? +/// V_PK_FMA_F16 i,i,k0.x,0 +/// V_PERM_B32 r.x,i,i,k1 +/// V_PERM_B32 r.y,i,i,k2 +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteUByte0Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3Y2Y1X0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2Y1X2(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[8:15], +/// d.y[0:7] into r.y[8:15], i.x[0:7] into r.x[0:7], r.y[0:7] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// r=ffxPermuteUByte1Float16x2ToUint2(d,i) +/// Where 'k0' is an SGPR with {1.0/32768.0} packed into the lower 16-bits +/// Where 'k1' is an SGPR with 0x???? +/// Where 'k2' is an SGPR with 0x???? +/// V_PK_FMA_F16 i,i,k0.x,0 +/// V_PERM_B32 r.x,i,i,k1 +/// V_PERM_B32 r.y,i,i,k2 +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteUByte1Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3Y2X0Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2X2Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[16:23], +/// d.y[0:7] into r.y[16:23], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[8:15] into r.x[24:31], r.y[24:31] using 3 ops. +/// +/// r=ffxPermuteUByte2Float16x2ToUint2(d,i) +/// Where 'k0' is an SGPR with {1.0/32768.0} packed into the lower 16-bits +/// Where 'k1' is an SGPR with 0x???? +/// Where 'k2' is an SGPR with 0x???? +/// V_PK_FMA_F16 i,i,k0.x,0 +/// V_PERM_B32 r.x,i,i,k1 +/// V_PERM_B32 r.y,i,i,k2 +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteUByte2Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3X0Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3X2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[24:31], +/// d.y[0:7] into r.y[24:31], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[0:7] into r.x[16:23], r.y[16:23] using 3 ops. +/// +/// r=ffxPermuteUByte3Float16x2ToUint2(d,i) +/// Where 'k0' is an SGPR with {1.0/32768.0} packed into the lower 16-bits +/// Where 'k1' is an SGPR with 0x???? +/// Where 'k2' is an SGPR with 0x???? +/// V_PK_FMA_F16 i,i,k0.x,0 +/// V_PERM_B32 r.x,i,i,k1 +/// V_PERM_B32 r.y,i,i,k2 +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteUByte3Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0))); + return FfxUInt32x2(ffxPackBytesX0Y2Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesX2Y2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[0:7] into r.x[0:7] and i.y[0:7] into r.y[0:7] using 2 ops. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteUByte0Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY0ZeroX0(i))) * FFX_BROADCAST_FLOAT16X2(32768.0); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[8:15] into r.x[0:7] and i.y[8:15] into r.y[0:7] using 2 ops. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteUByte1Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY1ZeroX1(i))) * FFX_BROADCAST_FLOAT16X2(32768.0); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[16:23] into r.x[0:7] and i.y[16:23] into r.y[0:7] using 2 ops. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteUByte2Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY2ZeroX2(i))) * FFX_BROADCAST_FLOAT16X2(32768.0); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[24:31] into r.x[0:7] and i.y[24:31] into r.y[0:7] using 2 ops. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteUByte3Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY3ZeroX3(i))) * FFX_BROADCAST_FLOAT16X2(32768.0); +} + +/// Takes two Float16x2 values x and y, normalizes them and builds a single Uint16x2 value in the format {{x0,y0},{x1,y1}}. +/// +/// @param [in] x The first float16x2 value to pack. +/// @param [in] y The second float16x2 value to pack. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt16x2 ffxPackX0Y0X1Y1SignedToUint16x2(FfxFloat16x2 x, FfxFloat16x2 y) +{ + x = x * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0); + y = y * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0); + return FFX_UINT32_TO_UINT16X2(ffxPackBytesY2X2Y0X0(FfxUInt32x2(FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(x)), FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(y))))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[0:7], +/// d.y[0:7] into r.y[0:7], i.x[8:15] into r.x[8:15], r.y[8:15] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteSByte0Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3Y2Y1X0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2Y1X2(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[8:15], +/// d.y[0:7] into r.y[8:15], i.x[0:7] into r.x[0:7], r.y[0:7] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteSByte1Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3Y2X0Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2X2Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[16:23], +/// d.y[0:7] into r.y[16:23], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[8:15] into r.x[24:31], r.y[24:31] using 3 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteSByte2Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))); + return FfxUInt32x2(ffxPackBytesY3X0Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3X2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[24:31], +/// d.y[0:7] into r.y[24:31], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[0:7] into r.x[16:23], r.y[16:23] using 3 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteSByte3Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))); + return FfxUInt32x2(ffxPackBytesX0Y2Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesX2Y2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[0:7], +/// d.y[0:7] into r.y[0:7], i.x[8:15] into r.x[8:15], r.y[8:15] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// Zero-based flips the MSB bit of the byte (making 128 "exact zero" actually zero). +/// This is useful if there is a desire for cleared values to decode as zero. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteZeroBasedSByte0Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))) ^ 0x00800080u; + return FfxUInt32x2(ffxPackBytesY3Y2Y1X0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2Y1X2(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[8:15], +/// d.y[0:7] into r.y[8:15], i.x[0:7] into r.x[0:7], r.y[0:7] and i.y[0:15] into r.x[16:31], r.y[16:31] using 3 ops. +/// +/// Zero-based flips the MSB bit of the byte (making 128 "exact zero" actually zero). +/// This is useful if there is a desire for cleared values to decode as zero. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteZeroBasedSByte1Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))) ^ 0x00800080u; + return FfxUInt32x2(ffxPackBytesY3Y2X0Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3Y2X2Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[16:23], +/// d.y[0:7] into r.y[16:23], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[8:15] into r.x[24:31], r.y[24:31] using 3 ops. +/// +/// Zero-based flips the MSB bit of the byte (making 128 "exact zero" actually zero). +/// This is useful if there is a desire for cleared values to decode as zero. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteZeroBasedSByte2Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))) ^ 0x00800080u; + return FfxUInt32x2(ffxPackBytesY3X0Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesY3X2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value d, Float16x2 value i and a resulting FfxUInt32x2 value r, this function packs d.x[0:7] into r.x[24:31], +/// d.y[0:7] into r.y[24:31], i.x[0:15] into r.x[0:15], r.y[0:15] and i.y[0:7] into r.x[16:23], r.y[16:23] using 3 ops. +/// +/// Zero-based flips the MSB bit of the byte (making 128 "exact zero" actually zero). +/// This is useful if there is a desire for cleared values to decode as zero. +/// +/// Handles signed byte values. +/// +/// @param [in] d The FfxUInt32x2 value to be packed. +/// @param [in] i The FfxFloat16x2 value to be packed. +/// +/// @returns +/// The packed FfxUInt32x2 value. +/// +/// @ingroup GPU +FfxUInt32x2 ffxPermuteZeroBasedSByte3Float16x2ToUint2(FfxUInt32x2 d, FfxFloat16x2 i) +{ + FfxUInt32 b = FFX_UINT16X2_TO_UINT32(FFX_TO_UINT16X2(i * FFX_BROADCAST_FLOAT16X2(1.0 / 32768.0) + FFX_BROADCAST_FLOAT16X2(0.25 / 32768.0))) ^ 0x00800080u; + return FfxUInt32x2(ffxPackBytesX0Y2Y1Y0(FfxUInt32x2(d.x, b)), ffxPackBytesX2Y2Y1Y0(FfxUInt32x2(d.y, b))); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[0:7] into r.x[0:7] and i.y[0:7] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteSByte0Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY0ZeroX0(i))) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[8:15] into r.x[0:7] and i.y[8:15] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteSByte1Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY1ZeroX1(i))) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[16:23] into r.x[0:7] and i.y[16:23] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteSByte2Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY2ZeroX2(i))) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[24:31] into r.x[0:7] and i.y[24:31] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteSByte3Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY3ZeroX3(i))) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[0:7] into r.x[0:7] and i.y[0:7] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteZeroBasedSByte0Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY0ZeroX0(i) ^ 0x00800080u)) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[8:15] into r.x[0:7] and i.y[8:15] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteZeroBasedSByte1Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY1ZeroX1(i) ^ 0x00800080u)) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[16:23] into r.x[0:7] and i.y[16:23] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteZeroBasedSByte2Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY2ZeroX2(i) ^ 0x00800080u)) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Given a FfxUInt32x2 value i and a resulting Float16x2 value r, this function packs i.x[24:31] into r.x[0:7] and i.y[24:31] into r.y[0:7] using 2 ops. +/// +/// Handles signed byte values. +/// +/// @param [in] i The FfxUInt32x2 value to be unpacked. +/// +/// @returns +/// The unpacked FfxFloat16x2. +/// +/// @ingroup GPU +FfxFloat16x2 ffxPermuteZeroBasedSByte3Uint2ToFloat16x2(FfxUInt32x2 i) +{ + return FFX_TO_FLOAT16X2(FFX_UINT32_TO_UINT16X2(ffxPackBytesZeroY3ZeroX3(i) ^ 0x00800080u)) * FFX_BROADCAST_FLOAT16X2(32768.0) - FFX_BROADCAST_FLOAT16X2(0.25); +} + +/// Calculate a half-precision low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16 ffxApproximateSqrtHalf(FfxFloat16 a) +{ + return FFX_TO_FLOAT16((FFX_TO_UINT16(a) >> FFX_BROADCAST_UINT16(1)) + FFX_BROADCAST_UINT16(0x1de2)); +} + +/// Calculate a half-precision low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x2 ffxApproximateSqrtHalf(FfxFloat16x2 a) +{ + return FFX_TO_FLOAT16X2((FFX_TO_UINT16X2(a) >> FFX_BROADCAST_UINT16X2(1)) + FFX_BROADCAST_UINT16X2(0x1de2)); +} + +/// Calculate a half-precision low-quality approximation for the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the square root for. +/// +/// @returns +/// An approximation of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x3 ffxApproximateSqrtHalf(FfxFloat16x3 a) +{ + return FFX_TO_FLOAT16X3((FFX_TO_UINT16X3(a) >> FFX_BROADCAST_UINT16X3(1)) + FFX_BROADCAST_UINT16X3(0x1de2)); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16 ffxApproximateReciprocalHalf(FfxFloat16 a) +{ + return FFX_TO_FLOAT16(FFX_BROADCAST_UINT16(0x7784) - FFX_TO_UINT16(a)); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x2 ffxApproximateReciprocalHalf(FfxFloat16x2 a) +{ + return FFX_TO_FLOAT16X2(FFX_BROADCAST_UINT16X2(0x7784) - FFX_TO_UINT16X2(a)); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x3 ffxApproximateReciprocalHalf(FfxFloat16x3 a) +{ + return FFX_TO_FLOAT16X3(FFX_BROADCAST_UINT16X3(0x7784) - FFX_TO_UINT16X3(a)); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x4 ffxApproximateReciprocalHalf(FfxFloat16x4 a) +{ + return FFX_TO_FLOAT16X4(FFX_BROADCAST_UINT16X4(0x7784) - FFX_TO_UINT16X4(a)); +} + +/// Calculate a half-precision medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat16 ffxApproximateReciprocalMediumHalf(FfxFloat16 a) +{ + FfxFloat16 b = FFX_TO_FLOAT16(FFX_BROADCAST_UINT16(0x778d) - FFX_TO_UINT16(a)); + return b * (-b * a + FFX_BROADCAST_FLOAT16(2.0)); +} + +/// Calculate a half-precision medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat16x2 ffxApproximateReciprocalMediumHalf(FfxFloat16x2 a) +{ + FfxFloat16x2 b = FFX_TO_FLOAT16X2(FFX_BROADCAST_UINT16X2(0x778d) - FFX_TO_UINT16X2(a)); + return b * (-b * a + FFX_BROADCAST_FLOAT16X2(2.0)); +} + +/// Calculate a half-precision medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat16x3 ffxApproximateReciprocalMediumHalf(FfxFloat16x3 a) +{ + FfxFloat16x3 b = FFX_TO_FLOAT16X3(FFX_BROADCAST_UINT16X3(0x778d) - FFX_TO_UINT16X3(a)); + return b * (-b * a + FFX_BROADCAST_FLOAT16X3(2.0)); +} + +/// Calculate a half-precision medium-quality approximation for the reciprocal of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal for. +/// +/// @returns +/// An approximation of the reciprocal, estimated to medium quality. +/// +/// @ingroup GPU +FfxFloat16x4 ffxApproximateReciprocalMediumHalf(FfxFloat16x4 a) +{ + FfxFloat16x4 b = FFX_TO_FLOAT16X4(FFX_BROADCAST_UINT16X4(0x778d) - FFX_TO_UINT16X4(a)); + return b * (-b * a + FFX_BROADCAST_FLOAT16X4(2.0)); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal of the square root for. +/// +/// @returns +/// An approximation of the reciprocal of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16 ffxApproximateReciprocalSquareRootHalf(FfxFloat16 a) +{ + return FFX_TO_FLOAT16(FFX_BROADCAST_UINT16(0x59a3) - (FFX_TO_UINT16(a) >> FFX_BROADCAST_UINT16(1))); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal of the square root for. +/// +/// @returns +/// An approximation of the reciprocal of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x2 ffxApproximateReciprocalSquareRootHalf(FfxFloat16x2 a) +{ + return FFX_TO_FLOAT16X2(FFX_BROADCAST_UINT16X2(0x59a3) - (FFX_TO_UINT16X2(a) >> FFX_BROADCAST_UINT16X2(1))); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal of the square root for. +/// +/// @returns +/// An approximation of the reciprocal of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x3 ffxApproximateReciprocalSquareRootHalf(FfxFloat16x3 a) +{ + return FFX_TO_FLOAT16X3(FFX_BROADCAST_UINT16X3(0x59a3) - (FFX_TO_UINT16X3(a) >> FFX_BROADCAST_UINT16X3(1))); +} + +/// Calculate a half-precision low-quality approximation for the reciprocal of the square root of a value. +/// +/// For additional information on the approximation family of functions, you can refer to Michal Drobot's excellent +/// presentation materials: +/// +/// - https://michaldrobot.files.wordpress.com/2014/05/gcn_alu_opt_digitaldragons2014.pdf +/// - https://github.com/michaldrobot/ShaderFastLibs/blob/master/ShaderFastMathLib.h +/// +/// @param [in] a The value to calculate an approximate to the reciprocal of the square root for. +/// +/// @returns +/// An approximation of the reciprocal of the square root, estimated to low quality. +/// +/// @ingroup GPU +FfxFloat16x4 ffxApproximateReciprocalSquareRootHalf(FfxFloat16x4 a) +{ + return FFX_TO_FLOAT16X4(FFX_BROADCAST_UINT16X4(0x59a3) - (FFX_TO_UINT16X4(a) >> FFX_BROADCAST_UINT16X4(1))); +} + +/// An approximation of sine. +/// +/// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +/// is {-1/4 to 1/4} representing {-1 to 1}. +/// +/// @param [in] x The value to calculate approximate sine for. +/// +/// @returns +/// The approximate sine of value. +FfxFloat16 ffxParabolicSinHalf(FfxFloat16 x) +{ + return x * abs(x) - x; +} + +/// An approximation of sine. +/// +/// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +/// is {-1/4 to 1/4} representing {-1 to 1}. +/// +/// @param [in] x The value to calculate approximate sine for. +/// +/// @returns +/// The approximate sine of value. +FfxFloat16x2 ffxParabolicSinHalf(FfxFloat16x2 x) +{ + return x * abs(x) - x; +} + +/// An approximation of cosine. +/// +/// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +/// is {-1/4 to 1/4} representing {-1 to 1}. +/// +/// @param [in] x The value to calculate approximate cosine for. +/// +/// @returns +/// The approximate cosine of value. +FfxFloat16 ffxParabolicCosHalf(FfxFloat16 x) +{ + x = ffxFract(x * FFX_BROADCAST_FLOAT16(0.5) + FFX_BROADCAST_FLOAT16(0.75)); + x = x * FFX_BROADCAST_FLOAT16(2.0) - FFX_BROADCAST_FLOAT16(1.0); + return ffxParabolicSinHalf(x); +} + +/// An approximation of cosine. +/// +/// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +/// is {-1/4 to 1/4} representing {-1 to 1}. +/// +/// @param [in] x The value to calculate approximate cosine for. +/// +/// @returns +/// The approximate cosine of value. +FfxFloat16x2 ffxParabolicCosHalf(FfxFloat16x2 x) +{ + x = ffxFract(x * FFX_BROADCAST_FLOAT16X2(0.5) + FFX_BROADCAST_FLOAT16X2(0.75)); + x = x * FFX_BROADCAST_FLOAT16X2(2.0) - FFX_BROADCAST_FLOAT16X2(1.0); + return ffxParabolicSinHalf(x); +} + +/// An approximation of both sine and cosine. +/// +/// Valid input range is {-1 to 1} representing {0 to 2 pi}, and the output range +/// is {-1/4 to 1/4} representing {-1 to 1}. +/// +/// @param [in] x The value to calculate approximate cosine for. +/// +/// @returns +/// A FfxFloat32x2 containing approximations of both sine and cosine of value. +FfxFloat16x2 ffxParabolicSinCosHalf(FfxFloat16 x) +{ + FfxFloat16 y = ffxFract(x * FFX_BROADCAST_FLOAT16(0.5) + FFX_BROADCAST_FLOAT16(0.75)); + y = y * FFX_BROADCAST_FLOAT16(2.0) - FFX_BROADCAST_FLOAT16(1.0); + return ffxParabolicSinHalf(FfxFloat16x2(x, y)); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt16 ffxZeroOneAndHalf(FfxUInt16 x, FfxUInt16 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt16x2 ffxZeroOneAndHalf(FfxUInt16x2 x, FfxUInt16x2 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt16x3 ffxZeroOneAndHalf(FfxUInt16x3 x, FfxUInt16x3 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxUInt16x4 ffxZeroOneAndHalf(FfxUInt16x4 x, FfxUInt16x4 y) +{ + return min(x, y); +} + +/// Conditional free logic NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt16 ffxZeroOneNotHalf(FfxUInt16 x) +{ + return x ^ FFX_BROADCAST_UINT16(1); +} + +/// Conditional free logic NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt16x2 ffxZeroOneNotHalf(FfxUInt16x2 x) +{ + return x ^ FFX_BROADCAST_UINT16X2(1); +} + +/// Conditional free logic NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt16x3 ffxZeroOneNotHalf(FfxUInt16x3 x) +{ + return x ^ FFX_BROADCAST_UINT16X3(1); +} + +/// Conditional free logic NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the NOT operator. +/// @param [in] y The second value to be fed into the NOT operator. +/// +/// @returns +/// Result of the NOT operation. +/// +/// @ingroup GPU +FfxUInt16x4 ffxZeroOneNotHalf(FfxUInt16x4 x) +{ + return x ^ FFX_BROADCAST_UINT16X4(1); +} + +/// Conditional free logic OR operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt16 ffxZeroOneOrHalf(FfxUInt16 x, FfxUInt16 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt16x2 ffxZeroOneOrHalf(FfxUInt16x2 x, FfxUInt16x2 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt16x3 ffxZeroOneOrHalf(FfxUInt16x3 x, FfxUInt16x3 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxUInt16x4 ffxZeroOneOrHalf(FfxUInt16x4 x, FfxUInt16x4 y) +{ + return max(x, y); +} + +/// Convert a half-precision FfxFloat32 value between 0.0f and 1.0f to a half-precision Uint. +/// +/// @param [in] x The value to converted to a Uint. +/// +/// @returns +/// The converted Uint value. +/// +/// @ingroup GPU +FfxUInt16 ffxZeroOneFloat16ToUint16(FfxFloat16 x) +{ + return FFX_TO_UINT16(x * FFX_TO_FLOAT16(FFX_TO_UINT16(1))); +} + +/// Convert a half-precision FfxFloat32 value between 0.0f and 1.0f to a half-precision Uint. +/// +/// @param [in] x The value to converted to a Uint. +/// +/// @returns +/// The converted Uint value. +/// +/// @ingroup GPU +FfxUInt16x2 ffxZeroOneFloat16x2ToUint16x2(FfxFloat16x2 x) +{ + return FFX_TO_UINT16X2(x * FFX_TO_FLOAT16X2(FfxUInt16x2(1, 1))); +} + +/// Convert a half-precision FfxFloat32 value between 0.0f and 1.0f to a half-precision Uint. +/// +/// @param [in] x The value to converted to a Uint. +/// +/// @returns +/// The converted Uint value. +/// +/// @ingroup GPU +FfxUInt16x3 ffxZeroOneFloat16x3ToUint16x3(FfxFloat16x3 x) +{ + return FFX_TO_UINT16X3(x * FFX_TO_FLOAT16X3(FfxUInt16x3(1, 1, 1))); +} + +/// Convert a half-precision FfxFloat32 value between 0.0f and 1.0f to a half-precision Uint. +/// +/// @param [in] x The value to converted to a Uint. +/// +/// @returns +/// The converted Uint value. +/// +/// @ingroup GPU +FfxUInt16x4 ffxZeroOneFloat16x4ToUint16x4(FfxFloat16x4 x) +{ + return FFX_TO_UINT16X4(x * FFX_TO_FLOAT16X4(FfxUInt16x4(1, 1, 1, 1))); +} + +/// Convert a half-precision FfxUInt32 value between 0 and 1 to a half-precision FfxFloat32. +/// +/// @param [in] x The value to converted to a half-precision FfxFloat32. +/// +/// @returns +/// The converted half-precision FfxFloat32 value. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneUint16ToFloat16(FfxUInt16 x) +{ + return FFX_TO_FLOAT16(x * FFX_TO_UINT16(FFX_TO_FLOAT16(1.0))); +} + +/// Convert a half-precision FfxUInt32 value between 0 and 1 to a half-precision FfxFloat32. +/// +/// @param [in] x The value to converted to a half-precision FfxFloat32. +/// +/// @returns +/// The converted half-precision FfxFloat32 value. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneUint16x2ToFloat16x2(FfxUInt16x2 x) +{ + return FFX_TO_FLOAT16X2(x * FFX_TO_UINT16X2(FfxUInt16x2(FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0)))); +} + +/// Convert a half-precision FfxUInt32 value between 0 and 1 to a half-precision FfxFloat32. +/// +/// @param [in] x The value to converted to a half-precision FfxFloat32. +/// +/// @returns +/// The converted half-precision FfxFloat32 value. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneUint16x3ToFloat16x3(FfxUInt16x3 x) +{ + return FFX_TO_FLOAT16X3(x * FFX_TO_UINT16X3(FfxUInt16x3(FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0)))); +} + +/// Convert a half-precision FfxUInt32 value between 0 and 1 to a half-precision FfxFloat32. +/// +/// @param [in] x The value to converted to a half-precision FfxFloat32. +/// +/// @returns +/// The converted half-precision FfxFloat32 value. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneUint16x4ToFloat16x4(FfxUInt16x4 x) +{ + return FFX_TO_FLOAT16X4(x * FFX_TO_UINT16X4(FfxUInt16x4(FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0), FFX_TO_FLOAT16(1.0)))); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneAndHalf(FfxFloat16 x, FfxFloat16 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneAndHalf(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneAndHalf(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return min(x, y); +} + +/// Conditional free logic AND operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// +/// @returns +/// Result of the AND operation. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneAndHalf(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return min(x, y); +} + +/// Conditional free logic AND NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND NOT operator. +/// @param [in] y The second value to be fed into the AND NOT operator. +/// +/// @returns +/// Result of the AND NOT operation. +/// +/// @ingroup GPU +FfxFloat16 ffxSignedZeroOneAndOrHalf(FfxFloat16 x, FfxFloat16 y) +{ + return (-x) * y + FFX_BROADCAST_FLOAT16(1.0); +} + +/// Conditional free logic AND NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND NOT operator. +/// @param [in] y The second value to be fed into the AND NOT operator. +/// +/// @returns +/// Result of the AND NOT operation. +/// +/// @ingroup GPU +FfxFloat16x2 ffxSignedZeroOneAndOrHalf(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return (-x) * y + FFX_BROADCAST_FLOAT16X2(1.0); +} + +/// Conditional free logic AND NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND NOT operator. +/// @param [in] y The second value to be fed into the AND NOT operator. +/// +/// @returns +/// Result of the AND NOT operation. +/// +/// @ingroup GPU +FfxFloat16x3 ffxSignedZeroOneAndOrHalf(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return (-x) * y + FFX_BROADCAST_FLOAT16X3(1.0); +} + +/// Conditional free logic AND NOT operation using two half-precision values. +/// +/// @param [in] x The first value to be fed into the AND NOT operator. +/// @param [in] y The second value to be fed into the AND NOT operator. +/// +/// @returns +/// Result of the AND NOT operation. +/// +/// @ingroup GPU +FfxFloat16x4 ffxSignedZeroOneAndOrHalf(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return (-x) * y + FFX_BROADCAST_FLOAT16X4(1.0); +} + +/// Conditional free logic AND operation using two half-precision values followed by +/// a NOT operation using the resulting value and a third half-precision value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneAndOrHalf(FfxFloat16 x, FfxFloat16 y, FfxFloat16 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two half-precision values followed by +/// a NOT operation using the resulting value and a third half-precision value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneAndOrHalf(FfxFloat16x2 x, FfxFloat16x2 y, FfxFloat16x2 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two half-precision values followed by +/// a NOT operation using the resulting value and a third half-precision value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneAndOrHalf(FfxFloat16x3 x, FfxFloat16x3 y, FfxFloat16x3 z) +{ + return ffxSaturate(x * y + z); +} + +/// Conditional free logic AND operation using two half-precision values followed by +/// a NOT operation using the resulting value and a third half-precision value. +/// +/// @param [in] x The first value to be fed into the AND operator. +/// @param [in] y The second value to be fed into the AND operator. +/// @param [in] z The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneAndOrHalf(FfxFloat16x4 x, FfxFloat16x4 y, FfxFloat16x4 z) +{ + return ffxSaturate(x * y + z); +} + +/// Given a half-precision value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneIsGreaterThanZeroHalf(FfxFloat16 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16(FFX_POSITIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneIsGreaterThanZeroHalf(FfxFloat16x2 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X2(FFX_POSITIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneIsGreaterThanZeroHalf(FfxFloat16x3 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X3(FFX_POSITIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if greater than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the greater than zero comparison. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneIsGreaterThanZeroHalf(FfxFloat16x4 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X4(FFX_POSITIVE_INFINITY_HALF)); +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneNotHalf(FfxFloat16 x) +{ + return FFX_BROADCAST_FLOAT16(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneNotHalf(FfxFloat16x2 x) +{ + return FFX_BROADCAST_FLOAT16X2(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneNotHalf(FfxFloat16x3 x) +{ + return FFX_BROADCAST_FLOAT16X3(1.0) - x; +} + +/// Conditional free logic signed NOT operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the AND OR operator. +/// +/// @returns +/// Result of the AND OR operation. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneNotHalf(FfxFloat16x4 x) +{ + return FFX_BROADCAST_FLOAT16X4(1.0) - x; +} + +/// Conditional free logic OR operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneOrHalf(FfxFloat16 x, FfxFloat16 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneOrHalf(FfxFloat16x2 x, FfxFloat16x2 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneOrHalf(FfxFloat16x3 x, FfxFloat16x3 y) +{ + return max(x, y); +} + +/// Conditional free logic OR operation using two half-precision FfxFloat32 values. +/// +/// @param [in] x The first value to be fed into the OR operator. +/// @param [in] y The second value to be fed into the OR operator. +/// +/// @returns +/// Result of the OR operation. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneOrHalf(FfxFloat16x4 x, FfxFloat16x4 y) +{ + return max(x, y); +} + +/// Choose between two half-precision FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneSelectHalf(FfxFloat16 x, FfxFloat16 y, FfxFloat16 z) +{ + FfxFloat16 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two half-precision FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneSelectHalf(FfxFloat16x2 x, FfxFloat16x2 y, FfxFloat16x2 z) +{ + FfxFloat16x2 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two half-precision FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneSelectHalf(FfxFloat16x3 x, FfxFloat16x3 y, FfxFloat16x3 z) +{ + FfxFloat16x3 r = (-x) * z + z; + return x * y + r; +} + +/// Choose between two half-precision FfxFloat32 values if the first paramter is greater than zero. +/// +/// @param [in] x The value to compare against zero. +/// @param [in] y The value to return if the comparision is greater than zero. +/// @param [in] z The value to return if the comparision is less than or equal to zero. +/// +/// @returns +/// The selected value. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneSelectHalf(FfxFloat16x4 x, FfxFloat16x4 y, FfxFloat16x4 z) +{ + FfxFloat16x4 r = (-x) * z + z; + return x * y + r; +} + +/// Given a half-precision value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat16 ffxZeroOneIsSignedHalf(FfxFloat16 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat16x2 ffxZeroOneIsSignedHalf(FfxFloat16x2 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X2(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat16x3 ffxZeroOneIsSignedHalf(FfxFloat16x3 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X3(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// Given a half-precision value, returns 1.0 if less than zero and 0.0 if not. +/// +/// @param [in] x The value to be compared. +/// +/// @returns +/// Result of the sign value. +/// +/// @ingroup GPU +FfxFloat16x4 ffxZeroOneIsSignedHalf(FfxFloat16x4 x) +{ + return ffxSaturate(x * FFX_BROADCAST_FLOAT16X4(FFX_NEGATIVE_INFINITY_HALF)); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] c The color to convert to Rec. 709. +/// +/// @returns +/// The color in Rec.709 space. +/// +/// @ingroup GPU +FfxFloat16 ffxRec709FromLinearHalf(FfxFloat16 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.099, -0.099); + return clamp(j.x, c * j.y, pow(c, j.z) * k.x + k.y); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] c The color to convert to Rec. 709. +/// +/// @returns +/// The color in Rec.709 space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxRec709FromLinearHalf(FfxFloat16x2 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.099, -0.099); + return clamp(j.xx, c * j.yy, pow(c, j.zz) * k.xx + k.yy); +} + +/// Compute a Rec.709 color space. +/// +/// Rec.709 is used for some HDTVs. +/// +/// Both Rec.709 and sRGB have a linear segment which as spec'ed would intersect the curved segment 2 times. +/// (a.) For 8-bit sRGB, steps {0 to 10.3} are in the linear region (4% of the encoding range). +/// (b.) For 8-bit 709, steps {0 to 20.7} are in the linear region (8% of the encoding range). +/// +/// @param [in] c The color to convert to Rec. 709. +/// +/// @returns +/// The color in Rec.709 space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxRec709FromLinearHalf(FfxFloat16x3 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.018 * 4.5, 4.5, 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.099, -0.099); + return clamp(j.xxx, c * j.yyy, pow(c, j.zzz) * k.xxx + k.yyy); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGammaHalf. +/// +/// @param [in] c The value to convert to gamma space from linear. +/// @param [in] rcpX The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat16 ffxGammaFromLinearHalf(FfxFloat16 c, FfxFloat16 rcpX) +{ + return pow(c, FFX_BROADCAST_FLOAT16(rcpX)); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGammaHalf. +/// +/// @param [in] c The value to convert to gamma space from linear. +/// @param [in] rcpX The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxGammaFromLinearHalf(FfxFloat16x2 c, FfxFloat16 rcpX) +{ + return pow(c, FFX_BROADCAST_FLOAT16X2(rcpX)); +} + +/// Compute a gamma value from a linear value. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// Note: 'rcpX' is '1/x', where the 'x' is what would be used in ffxLinearFromGammaHalf. +/// +/// @param [in] c The value to convert to gamma space from linear. +/// @param [in] rcpX The reciprocal of power value used for the gamma curve. +/// +/// @returns +/// A value in gamma space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxGammaFromLinearHalf(FfxFloat16x3 c, FfxFloat16 rcpX) +{ + return pow(c, FFX_BROADCAST_FLOAT16X3(rcpX)); +} + +/// Compute an SRGB value from a linear value. +/// +/// @param [in] c The value to convert to SRGB from linear. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat16 ffxSrgbFromLinearHalf(FfxFloat16 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.055, -0.055); + return clamp(j.x, c * j.y, pow(c, j.z) * k.x + k.y); +} + +/// Compute an SRGB value from a linear value. +/// +/// @param [in] c The value to convert to SRGB from linear. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxSrgbFromLinearHalf(FfxFloat16x2 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.055, -0.055); + return clamp(j.xx, c * j.yy, pow(c, j.zz) * k.xx + k.yy); +} + +/// Compute an SRGB value from a linear value. +/// +/// @param [in] c The value to convert to SRGB from linear. +/// +/// @returns +/// A value in SRGB space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxSrgbFromLinearHalf(FfxFloat16x3 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.0031308 * 12.92, 12.92, 1.0 / 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.055, -0.055); + return clamp(j.xxx, c * j.yyy, pow(c, j.zzz) * k.xxx + k.yyy); +} + +/// Compute the square root of a value. +/// +/// @param [in] c The value to compute the square root for. +/// +/// @returns +/// A square root of the input value. +/// +/// @ingroup GPU +FfxFloat16 ffxSquareRootHalf(FfxFloat16 c) +{ + return sqrt(c); +} + +/// Compute the square root of a value. +/// +/// @param [in] c The value to compute the square root for. +/// +/// @returns +/// A square root of the input value. +/// +/// @ingroup GPU +FfxFloat16x2 ffxSquareRootHalf(FfxFloat16x2 c) +{ + return sqrt(c); +} + +/// Compute the square root of a value. +/// +/// @param [in] c The value to compute the square root for. +/// +/// @returns +/// A square root of the input value. +/// +/// @ingroup GPU +FfxFloat16x3 ffxSquareRootHalf(FfxFloat16x3 c) +{ + return sqrt(c); +} + +/// Compute the cube root of a value. +/// +/// @param [in] c The value to compute the cube root for. +/// +/// @returns +/// A cube root of the input value. +/// +/// @ingroup GPU +FfxFloat16 ffxCubeRootHalf(FfxFloat16 c) +{ + return pow(c, FFX_BROADCAST_FLOAT16(1.0 / 3.0)); +} + +/// Compute the cube root of a value. +/// +/// @param [in] c The value to compute the cube root for. +/// +/// @returns +/// A cube root of the input value. +/// +/// @ingroup GPU +FfxFloat16x2 ffxCubeRootHalf(FfxFloat16x2 c) +{ + return pow(c, FFX_BROADCAST_FLOAT16X2(1.0 / 3.0)); +} + +/// Compute the cube root of a value. +/// +/// @param [in] c The value to compute the cube root for. +/// +/// @returns +/// A cube root of the input value. +/// +/// @ingroup GPU +FfxFloat16x3 ffxCubeRootHalf(FfxFloat16x3 c) +{ + return pow(c, FFX_BROADCAST_FLOAT16X3(1.0 / 3.0)); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] c The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16 ffxLinearFromRec709Half(FfxFloat16 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.x), c * j.y, pow(c * k.x + k.y, j.z)); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] c The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxLinearFromRec709Half(FfxFloat16x2 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.xx), c * j.yy, pow(c * k.xx + k.yy, j.zz)); +} + +/// Compute a linear value from a REC.709 value. +/// +/// @param [in] c The value to convert to linear from REC.709. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxLinearFromRec709Half(FfxFloat16x3 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.081 / 4.5, 1.0 / 4.5, 1.0 / 0.45); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.099, 0.099 / 1.099); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.xxx), c * j.yyy, pow(c * k.xxx + k.yyy, j.zzz)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in gamma space. +/// @param [in] x The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16 ffxLinearFromGammaHalf(FfxFloat16 c, FfxFloat16 x) +{ + return pow(c, FFX_BROADCAST_FLOAT16(x)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in gamma space. +/// @param [in] x The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxLinearFromGammaHalf(FfxFloat16x2 c, FfxFloat16 x) +{ + return pow(c, FFX_BROADCAST_FLOAT16X2(x)); +} + +/// Compute a linear value from a value in a gamma space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in gamma space. +/// @param [in] x The power value used for the gamma curve. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxLinearFromGammaHalf(FfxFloat16x3 c, FfxFloat16 x) +{ + return pow(c, FFX_BROADCAST_FLOAT16X3(x)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16 ffxLinearFromSrgbHalf(FfxFloat16 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.x), c * j.y, pow(c * k.x + k.y, j.z)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x2 ffxLinearFromSrgbHalf(FfxFloat16x2 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.xx), c * j.yy, pow(c * k.xx + k.yy, j.zz)); +} + +/// Compute a linear value from a value in a SRGB space. +/// +/// Typically 2.2 for some PC displays, or 2.4-2.5 for CRTs, or 2.2 FreeSync2 native. +/// +/// @param [in] c The value to convert to linear in SRGB space. +/// +/// @returns +/// A value in linear space. +/// +/// @ingroup GPU +FfxFloat16x3 ffxLinearFromSrgbHalf(FfxFloat16x3 c) +{ + FfxFloat16x3 j = FfxFloat16x3(0.04045 / 12.92, 1.0 / 12.92, 2.4); + FfxFloat16x2 k = FfxFloat16x2(1.0 / 1.055, 0.055 / 1.055); + return ffxZeroOneSelectHalf(ffxZeroOneIsSignedHalf(c - j.xxx), c * j.yyy, pow(c * k.xxx + k.yyy, j.zzz)); +} + +/// A remapping of 64x1 to 8x8 imposing rotated 2x2 pixel quads in quad linear. +/// +/// 543210 +/// ====== +/// ..xxx. +/// yy...y +/// +/// @param [in] a The input 1D coordinates to remap. +/// +/// @returns +/// The remapped 2D coordinates. +/// +/// @ingroup GPU +FfxUInt16x2 ffxRemapForQuadHalf(FfxUInt32 a) +{ + return FfxUInt16x2(bitfieldExtract(a, 1u, 3u), bitfieldInsertMask(bitfieldExtract(a, 3u, 3u), a, 1u)); +} + +/// A helper function performing a remap 64x1 to 8x8 remapping which is necessary for 2D wave reductions. +/// +/// The 64-wide lane indices to 8x8 remapping is performed as follows: +/// +/// 00 01 08 09 10 11 18 19 +/// 02 03 0a 0b 12 13 1a 1b +/// 04 05 0c 0d 14 15 1c 1d +/// 06 07 0e 0f 16 17 1e 1f +/// 20 21 28 29 30 31 38 39 +/// 22 23 2a 2b 32 33 3a 3b +/// 24 25 2c 2d 34 35 3c 3d +/// 26 27 2e 2f 36 37 3e 3f +/// +/// @param [in] a The input 1D coordinate to remap. +/// +/// @returns +/// The remapped 2D coordinates. +/// +/// @ingroup GPU +FfxUInt16x2 ffxRemapForWaveReductionHalf(FfxUInt32 a) +{ + return FfxUInt16x2(bitfieldInsertMask(bitfieldExtract(a, 2u, 3u), a, 1u), bitfieldInsertMask(bitfieldExtract(a, 3u, 3u), bitfieldExtract(a, 1u, 2u), 2u)); +} + +#endif // FFX_HALF diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h.meta new file mode 100644 index 0000000..22f9f75 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_gpu_common_half.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 142bf3947ada43541a0f31a328fdec07 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h new file mode 100644 index 0000000..ad4ff65 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h @@ -0,0 +1,1502 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +/// A define for abstracting shared memory between shading languages. +/// +/// @ingroup GPU +#define FFX_GROUPSHARED groupshared + +/// A define for abstracting compute memory barriers between shading languages. +/// +/// @ingroup GPU +#define FFX_GROUP_MEMORY_BARRIER GroupMemoryBarrierWithGroupSync + +/// A define added to accept static markup on functions to aid CPU/GPU portability of code. +/// +/// @ingroup GPU +#define FFX_STATIC static + +/// A define for abstracting loop unrolling between shading languages. +/// +/// @ingroup GPU +#define FFX_UNROLL [unroll] + +/// A define for abstracting a 'greater than' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_GREATER_THAN(x, y) x > y + +/// A define for abstracting a 'greater than or equal' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_GREATER_THAN_EQUAL(x, y) x >= y + +/// A define for abstracting a 'less than' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_LESS_THAN(x, y) x < y + +/// A define for abstracting a 'less than or equal' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_LESS_THAN_EQUAL(x, y) x <= y + +/// A define for abstracting an 'equal' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_EQUAL(x, y) x == y + +/// A define for abstracting a 'not equal' comparison operator between two types. +/// +/// @ingroup GPU +#define FFX_NOT_EQUAL(x, y) x != y + +/// Broadcast a scalar value to a 1-dimensional floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_FLOAT32(x) FfxFloat32(x) + +/// Broadcast a scalar value to a 2-dimensional floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_FLOAT32X2(x) FfxFloat32(x) + +/// Broadcast a scalar value to a 3-dimensional floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_FLOAT32X3(x) FfxFloat32(x) + +/// Broadcast a scalar value to a 4-dimensional floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_FLOAT32X4(x) FfxFloat32(x) + +/// Broadcast a scalar value to a 1-dimensional unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_UINT32(x) FfxUInt32(x) + +/// Broadcast a scalar value to a 2-dimensional unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_UINT32X2(x) FfxUInt32(x) + +/// Broadcast a scalar value to a 4-dimensional unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_UINT32X3(x) FfxUInt32(x) + +/// Broadcast a scalar value to a 4-dimensional unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_UINT32X4(x) FfxUInt32(x) + +/// Broadcast a scalar value to a 1-dimensional signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_INT32(x) FfxInt32(x) + +/// Broadcast a scalar value to a 2-dimensional signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_INT32X2(x) FfxInt32(x) + +/// Broadcast a scalar value to a 3-dimensional signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_INT32X3(x) FfxInt32(x) + +/// Broadcast a scalar value to a 4-dimensional signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_INT32X4(x) FfxInt32(x) + +/// Broadcast a scalar value to a 1-dimensional half-precision floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_FLOAT16(a) FFX_MIN16_F(a) + +/// Broadcast a scalar value to a 2-dimensional half-precision floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_FLOAT16X2(a) FFX_MIN16_F(a) + +/// Broadcast a scalar value to a 3-dimensional half-precision floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_FLOAT16X3(a) FFX_MIN16_F(a) + +/// Broadcast a scalar value to a 4-dimensional half-precision floating point vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_FLOAT16X4(a) FFX_MIN16_F(a) + +/// Broadcast a scalar value to a 1-dimensional half-precision unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_UINT16(a) FFX_MIN16_U(a) + +/// Broadcast a scalar value to a 2-dimensional half-precision unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_UINT16X2(a) FFX_MIN16_U(a) + +/// Broadcast a scalar value to a 3-dimensional half-precision unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_UINT16X3(a) FFX_MIN16_U(a) + +/// Broadcast a scalar value to a 4-dimensional half-precision unsigned integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_UINT16X4(a) FFX_MIN16_U(a) + +/// Broadcast a scalar value to a 1-dimensional half-precision signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_INT16(a) FFX_MIN16_I(a) + +/// Broadcast a scalar value to a 2-dimensional half-precision signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_INT16X2(a) FFX_MIN16_I(a) + +/// Broadcast a scalar value to a 3-dimensional half-precision signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_INT16X3(a) FFX_MIN16_I(a) + +/// Broadcast a scalar value to a 4-dimensional half-precision signed integer vector. +/// +/// @ingroup GPU +#define FFX_BROADCAST_MIN_INT16X4(a) FFX_MIN16_I(a) + +/// Pack 2x32-bit floating point values in a single 32bit value. +/// +/// This function first converts each component of value into their nearest 16-bit floating +/// point representation, and then stores the X and Y components in the lower and upper 16 bits of the +/// 32bit unsigned integer respectively. +/// +/// @param [in] value A 2-dimensional floating point value to convert and pack. +/// +/// @returns +/// A packed 32bit value containing 2 16bit floating point values. +/// +/// @ingroup HLSL +FfxUInt32 packHalf2x16(FfxFloat32x2 value) +{ + return f32tof16(value.x) | (f32tof16(value.y) << 16); +} + +/// Broadcast a scalar value to a 2-dimensional floating point vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 2-dimensional floating point vector with value in each component. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxBroadcast2(FfxFloat32 value) +{ + return FfxFloat32x2(value, value); +} + +/// Broadcast a scalar value to a 3-dimensional floating point vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 3-dimensional floating point vector with value in each component. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxBroadcast3(FfxFloat32 value) +{ + return FfxFloat32x3(value, value, value); +} + +/// Broadcast a scalar value to a 4-dimensional floating point vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 4-dimensional floating point vector with value in each component. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxBroadcast4(FfxFloat32 value) +{ + return FfxFloat32x4(value, value, value, value); +} + +/// Broadcast a scalar value to a 2-dimensional signed integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 2-dimensional signed integer vector with value in each component. +/// +/// @ingroup HLSL +FfxInt32x2 ffxBroadcast2(FfxInt32 value) +{ + return FfxInt32x2(value, value); +} + +/// Broadcast a scalar value to a 3-dimensional signed integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 3-dimensional signed integer vector with value in each component. +/// +/// @ingroup HLSL +FfxUInt32x3 ffxBroadcast3(FfxInt32 value) +{ + return FfxUInt32x3(value, value, value); +} + +/// Broadcast a scalar value to a 4-dimensional signed integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 4-dimensional signed integer vector with value in each component. +/// +/// @ingroup HLSL +FfxInt32x4 ffxBroadcast4(FfxInt32 value) +{ + return FfxInt32x4(value, value, value, value); +} + +/// Broadcast a scalar value to a 2-dimensional unsigned integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 2-dimensional unsigned integer vector with value in each component. +/// +/// @ingroup HLSL +FfxUInt32x2 ffxBroadcast2(FfxUInt32 value) +{ + return FfxUInt32x2(value, value); +} + +/// Broadcast a scalar value to a 3-dimensional unsigned integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 3-dimensional unsigned integer vector with value in each component. +/// +/// @ingroup HLSL +FfxUInt32x3 ffxBroadcast3(FfxUInt32 value) +{ + return FfxUInt32x3(value, value, value); +} + +/// Broadcast a scalar value to a 4-dimensional unsigned integer vector. +/// +/// @param [in] value The value to to broadcast. +/// +/// @returns +/// A 4-dimensional unsigned integer vector with value in each component. +/// +/// @ingroup HLSL +FfxUInt32x4 ffxBroadcast4(FfxUInt32 value) +{ + return FfxUInt32x4(value, value, value, value); +} + +FfxUInt32 bitfieldExtract(FfxUInt32 src, FfxUInt32 off, FfxUInt32 bits) +{ + FfxUInt32 mask = (1u << bits) - 1; + return (src >> off) & mask; +} + +FfxUInt32 bitfieldInsert(FfxUInt32 src, FfxUInt32 ins, FfxUInt32 mask) +{ + return (ins & mask) | (src & (~mask)); +} + +FfxUInt32 bitfieldInsertMask(FfxUInt32 src, FfxUInt32 ins, FfxUInt32 bits) +{ + FfxUInt32 mask = (1u << bits) - 1; + return (ins & mask) | (src & (~mask)); +} + +/// Interprets the bit pattern of x as an unsigned integer. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as an unsigned integer. +/// +/// @ingroup HLSL +FfxUInt32 ffxAsUInt32(FfxFloat32 x) +{ + return asuint(x); +} + +/// Interprets the bit pattern of x as an unsigned integer. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as an unsigned integer. +/// +/// @ingroup HLSL +FfxUInt32x2 ffxAsUInt32(FfxFloat32x2 x) +{ + return asuint(x); +} + +/// Interprets the bit pattern of x as an unsigned integer. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as an unsigned integer. +/// +/// @ingroup HLSL +FfxUInt32x3 ffxAsUInt32(FfxFloat32x3 x) +{ + return asuint(x); +} + +/// Interprets the bit pattern of x as an unsigned integer. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as an unsigned integer. +/// +/// @ingroup HLSL +FfxUInt32x4 ffxAsUInt32(FfxFloat32x4 x) +{ + return asuint(x); +} + +/// Interprets the bit pattern of x as a floating-point number. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as a floating-point number. +/// +/// @ingroup HLSL +FfxFloat32 ffxAsFloat(FfxUInt32 x) +{ + return asfloat(x); +} + +/// Interprets the bit pattern of x as a floating-point number. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as a floating-point number. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxAsFloat(FfxUInt32x2 x) +{ + return asfloat(x); +} + +/// Interprets the bit pattern of x as a floating-point number. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as a floating-point number. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxAsFloat(FfxUInt32x3 x) +{ + return asfloat(x); +} + +/// Interprets the bit pattern of x as a floating-point number. +/// +/// @param [in] value The input value. +/// +/// @returns +/// The input interpreted as a floating-point number. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxAsFloat(FfxUInt32x4 x) +{ + return asfloat(x); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32 ffxLerp(FfxFloat32 x, FfxFloat32 y, FfxFloat32 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxLerp(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxLerp(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxLerp(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxLerp(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxLerp(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32 t) +{ + return lerp(x, y, t); +} + +/// Compute the linear interopation between two values. +/// +/// Implemented by calling the HLSL mix instrinsic function. Implements the +/// following math: +/// +/// (1 - t) * x + t * y +/// +/// @param [in] x The first value to lerp between. +/// @param [in] y The second value to lerp between. +/// @param [in] t The value to determine how much of x and how much of y. +/// +/// @returns +/// A linearly interpolated value between x and y according to t. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxLerp(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 t) +{ + return lerp(x, y, t); +} + +/// Clamp a value to a [0..1] range. +/// +/// @param [in] x The value to clamp to [0..1] range. +/// +/// @returns +/// The clamped version of x. +/// +/// @ingroup HLSL +FfxFloat32 ffxSaturate(FfxFloat32 x) +{ + return saturate(x); +} + +/// Clamp a value to a [0..1] range. +/// +/// @param [in] x The value to clamp to [0..1] range. +/// +/// @returns +/// The clamped version of x. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxSaturate(FfxFloat32x2 x) +{ + return saturate(x); +} + +/// Clamp a value to a [0..1] range. +/// +/// @param [in] x The value to clamp to [0..1] range. +/// +/// @returns +/// The clamped version of x. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxSaturate(FfxFloat32x3 x) +{ + return saturate(x); +} + +/// Clamp a value to a [0..1] range. +/// +/// @param [in] x The value to clamp to [0..1] range. +/// +/// @returns +/// The clamped version of x. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxSaturate(FfxFloat32x4 x) +{ + return saturate(x); +} + +/// Compute the factional part of a decimal value. +/// +/// This function calculates x - floor(x). Where floor is the intrinsic HLSL function. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. It is +/// worth further noting that this function is intentionally distinct from the HLSL frac intrinsic +/// function. +/// +/// @param [in] x The value to compute the fractional part from. +/// +/// @returns +/// The fractional part of x. +/// +/// @ingroup HLSL +FfxFloat32 ffxFract(FfxFloat32 x) +{ + return x - floor(x); +} + +/// Compute the factional part of a decimal value. +/// +/// This function calculates x - floor(x). Where floor is the intrinsic HLSL function. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. It is +/// worth further noting that this function is intentionally distinct from the HLSL frac intrinsic +/// function. +/// +/// @param [in] x The value to compute the fractional part from. +/// +/// @returns +/// The fractional part of x. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxFract(FfxFloat32x2 x) +{ + return x - floor(x); +} + +/// Compute the factional part of a decimal value. +/// +/// This function calculates x - floor(x). Where floor is the intrinsic HLSL function. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. It is +/// worth further noting that this function is intentionally distinct from the HLSL frac intrinsic +/// function. +/// +/// @param [in] x The value to compute the fractional part from. +/// +/// @returns +/// The fractional part of x. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxFract(FfxFloat32x3 x) +{ + return x - floor(x); +} + +/// Compute the factional part of a decimal value. +/// +/// This function calculates x - floor(x). Where floor is the intrinsic HLSL function. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. It is +/// worth further noting that this function is intentionally distinct from the HLSL frac intrinsic +/// function. +/// +/// @param [in] x The value to compute the fractional part from. +/// +/// @returns +/// The fractional part of x. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxFract(FfxFloat32x4 x) +{ + return x - floor(x); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32 ffxMax3(FfxFloat32 x, FfxFloat32 y, FfxFloat32 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxMax3(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxMax3(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxMax3(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32 ffxMax3(FfxUInt32 x, FfxUInt32 y, FfxUInt32 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x2 ffxMax3(FfxUInt32x2 x, FfxUInt32x2 y, FfxUInt32x2 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x3 ffxMax3(FfxUInt32x3 x, FfxUInt32x3 y, FfxUInt32x3 z) +{ + return max(x, max(y, z)); +} + +/// Compute the maximum of three values. +/// +/// NOTE: This function should compile down to a single V_MAX3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the max calculation. +/// @param [in] y The second value to include in the max calcuation. +/// @param [in] z The third value to include in the max calcuation. +/// +/// @returns +/// The maximum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x4 ffxMax3(FfxUInt32x4 x, FfxUInt32x4 y, FfxUInt32x4 z) +{ + return max(x, max(y, z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32 ffxMed3(FfxFloat32 x, FfxFloat32 y, FfxFloat32 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxMed3(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxMed3(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxMed3(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxInt32 ffxMed3(FfxInt32 x, FfxInt32 y, FfxInt32 z) +{ + return max(min(x, y), min(max(x, y), z)); + // return min(max(min(y, z), x), max(y, z)); + // return max(max(x, y), z) == x ? max(y, z) : (max(max(x, y), z) == y ? max(x, z) : max(x, y)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxInt32x2 ffxMed3(FfxInt32x2 x, FfxInt32x2 y, FfxInt32x2 z) +{ + return max(min(x, y), min(max(x, y), z)); + // return min(max(min(y, z), x), max(y, z)); + // return max(max(x, y), z) == x ? max(y, z) : (max(max(x, y), z) == y ? max(x, z) : max(x, y)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxInt32x3 ffxMed3(FfxInt32x3 x, FfxInt32x3 y, FfxInt32x3 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the median of three values. +/// +/// NOTE: This function should compile down to a single V_MED3_I32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the median calculation. +/// @param [in] y The second value to include in the median calcuation. +/// @param [in] z The third value to include in the median calcuation. +/// +/// @returns +/// The median value of x, y, and z. +/// +/// @ingroup HLSL +FfxInt32x4 ffxMed3(FfxInt32x4 x, FfxInt32x4 y, FfxInt32x4 z) +{ + return max(min(x, y), min(max(x, y), z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_I32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32 ffxMin3(FfxFloat32 x, FfxFloat32 y, FfxFloat32 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_I32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x2 ffxMin3(FfxFloat32x2 x, FfxFloat32x2 y, FfxFloat32x2 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_I32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x3 ffxMin3(FfxFloat32x3 x, FfxFloat32x3 y, FfxFloat32x3 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxFloat32x4 ffxMin3(FfxFloat32x4 x, FfxFloat32x4 y, FfxFloat32x4 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32 ffxMin3(FfxUInt32 x, FfxUInt32 y, FfxUInt32 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x2 ffxMin3(FfxUInt32x2 x, FfxUInt32x2 y, FfxUInt32x2 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x3 ffxMin3(FfxUInt32x3 x, FfxUInt32x3 y, FfxUInt32x3 z) +{ + return min(x, min(y, z)); +} + +/// Compute the minimum of three values. +/// +/// NOTE: This function should compile down to a single V_MIN3_F32 operation on GCN/RDNA hardware. +/// +/// @param [in] x The first value to include in the min calculation. +/// @param [in] y The second value to include in the min calcuation. +/// @param [in] z The third value to include in the min calcuation. +/// +/// @returns +/// The minimum value of x, y, and z. +/// +/// @ingroup HLSL +FfxUInt32x4 ffxMin3(FfxUInt32x4 x, FfxUInt32x4 y, FfxUInt32x4 z) +{ + return min(x, min(y, z)); +} + + +FfxUInt32 AShrSU1(FfxUInt32 a, FfxUInt32 b) +{ + return FfxUInt32(FfxInt32(a) >> FfxInt32(b)); +} + +//============================================================================================================================== +// HLSL HALF +//============================================================================================================================== +#if FFX_HALF + +//============================================================================================================================== +// Need to use manual unpack to get optimal execution (don't use packed types in buffers directly). +// Unpack requires this pattern: https://gpuopen.com/first-steps-implementing-fp16/ +FFX_MIN16_F2 ffxUint32ToFloat16x2(FfxUInt32 x) +{ + FfxFloat32x2 t = f16tof32(FfxUInt32x2(x & 0xFFFF, x >> 16)); + return FFX_MIN16_F2(t); +} +FFX_MIN16_F4 ffxUint32x2ToFloat16x4(FfxUInt32x2 x) +{ + return FFX_MIN16_F4(ffxUint32ToFloat16x2(x.x), ffxUint32ToFloat16x2(x.y)); +} +FFX_MIN16_U2 ffxUint32ToUint16x2(FfxUInt32 x) +{ + FfxUInt32x2 t = FfxUInt32x2(x & 0xFFFF, x >> 16); + return FFX_MIN16_U2(t); +} +FFX_MIN16_U4 ffxUint32x2ToUint16x4(FfxUInt32x2 x) +{ + return FFX_MIN16_U4(ffxUint32ToUint16x2(x.x), ffxUint32ToUint16x2(x.y)); +} +#define FFX_UINT32_TO_FLOAT16X2(x) ffxUint32ToFloat16x2(FfxUInt32(x)) +#define FFX_UINT32X2_TO_FLOAT16X4(x) ffxUint32x2ToFloat16x4(FfxUInt32x2(x)) +#define FFX_UINT32_TO_UINT16X2(x) ffxUint32ToUint16x2(FfxUInt32(x)) +#define FFX_UINT32X2_TO_UINT16X4(x) ffxUint32x2ToUint16x4(FfxUInt32x2(x)) +//------------------------------------------------------------------------------------------------------------------------------ +FfxUInt32 FFX_MIN16_F2ToUint32(FFX_MIN16_F2 x) +{ + return f32tof16(x.x) + (f32tof16(x.y) << 16); +} +FfxUInt32x2 FFX_MIN16_F4ToUint32x2(FFX_MIN16_F4 x) +{ + return FfxUInt32x2(FFX_MIN16_F2ToUint32(x.xy), FFX_MIN16_F2ToUint32(x.zw)); +} +FfxUInt32 FFX_MIN16_U2ToUint32(FFX_MIN16_U2 x) +{ + return FfxUInt32(x.x) + (FfxUInt32(x.y) << 16); +} +FfxUInt32x2 FFX_MIN16_U4ToUint32x2(FFX_MIN16_U4 x) +{ + return FfxUInt32x2(FFX_MIN16_U2ToUint32(x.xy), FFX_MIN16_U2ToUint32(x.zw)); +} +#define FFX_FLOAT16X2_TO_UINT32(x) FFX_MIN16_F2ToUint32(FFX_MIN16_F2(x)) +#define FFX_FLOAT16X4_TO_UINT32X2(x) FFX_MIN16_F4ToUint32x2(FFX_MIN16_F4(x)) +#define FFX_UINT16X2_TO_UINT32(x) FFX_MIN16_U2ToUint32(FFX_MIN16_U2(x)) +#define FFX_UINT16X4_TO_UINT32X2(x) FFX_MIN16_U4ToUint32x2(FFX_MIN16_U4(x)) + +#if defined(FFX_HLSL_6_2) && !defined(FFX_NO_16_BIT_CAST) +#define FFX_TO_UINT16(x) asuint16(x) +#define FFX_TO_UINT16X2(x) asuint16(x) +#define FFX_TO_UINT16X3(x) asuint16(x) +#define FFX_TO_UINT16X4(x) asuint16(x) +#else +#define FFX_TO_UINT16(a) FFX_MIN16_U(f32tof16(FfxFloat32(a))) +#define FFX_TO_UINT16X2(a) FFX_MIN16_U2(FFX_TO_UINT16((a).x), FFX_TO_UINT16((a).y)) +#define FFX_TO_UINT16X3(a) FFX_MIN16_U3(FFX_TO_UINT16((a).x), FFX_TO_UINT16((a).y), FFX_TO_UINT16((a).z)) +#define FFX_TO_UINT16X4(a) FFX_MIN16_U4(FFX_TO_UINT16((a).x), FFX_TO_UINT16((a).y), FFX_TO_UINT16((a).z), FFX_TO_UINT16((a).w)) +#endif // #if defined(FFX_HLSL_6_2) && !defined(FFX_NO_16_BIT_CAST) + +#if defined(FFX_HLSL_6_2) && !defined(FFX_NO_16_BIT_CAST) +#define FFX_TO_FLOAT16(x) asfloat16(x) +#define FFX_TO_FLOAT16X2(x) asfloat16(x) +#define FFX_TO_FLOAT16X3(x) asfloat16(x) +#define FFX_TO_FLOAT16X4(x) asfloat16(x) +#else +#define FFX_TO_FLOAT16(a) FFX_MIN16_F(f16tof32(FfxUInt32(a))) +#define FFX_TO_FLOAT16X2(a) FFX_MIN16_F2(FFX_TO_FLOAT16((a).x), FFX_TO_FLOAT16((a).y)) +#define FFX_TO_FLOAT16X3(a) FFX_MIN16_F3(FFX_TO_FLOAT16((a).x), FFX_TO_FLOAT16((a).y), FFX_TO_FLOAT16((a).z)) +#define FFX_TO_FLOAT16X4(a) FFX_MIN16_F4(FFX_TO_FLOAT16((a).x), FFX_TO_FLOAT16((a).y), FFX_TO_FLOAT16((a).z), FFX_TO_FLOAT16((a).w)) +#endif // #if defined(FFX_HLSL_6_2) && !defined(FFX_NO_16_BIT_CAST) + +//============================================================================================================================== +#define FFX_BROADCAST_FLOAT16(a) FFX_MIN16_F(a) +#define FFX_BROADCAST_FLOAT16X2(a) FFX_MIN16_F(a) +#define FFX_BROADCAST_FLOAT16X3(a) FFX_MIN16_F(a) +#define FFX_BROADCAST_FLOAT16X4(a) FFX_MIN16_F(a) + +//------------------------------------------------------------------------------------------------------------------------------ +#define FFX_BROADCAST_INT16(a) FFX_MIN16_I(a) +#define FFX_BROADCAST_INT16X2(a) FFX_MIN16_I(a) +#define FFX_BROADCAST_INT16X3(a) FFX_MIN16_I(a) +#define FFX_BROADCAST_INT16X4(a) FFX_MIN16_I(a) + +//------------------------------------------------------------------------------------------------------------------------------ +#define FFX_BROADCAST_UINT16(a) FFX_MIN16_U(a) +#define FFX_BROADCAST_UINT16X2(a) FFX_MIN16_U(a) +#define FFX_BROADCAST_UINT16X3(a) FFX_MIN16_U(a) +#define FFX_BROADCAST_UINT16X4(a) FFX_MIN16_U(a) + +//============================================================================================================================== +FFX_MIN16_U ffxAbsHalf(FFX_MIN16_U a) +{ + return FFX_MIN16_U(abs(FFX_MIN16_I(a))); +} +FFX_MIN16_U2 ffxAbsHalf(FFX_MIN16_U2 a) +{ + return FFX_MIN16_U2(abs(FFX_MIN16_I2(a))); +} +FFX_MIN16_U3 ffxAbsHalf(FFX_MIN16_U3 a) +{ + return FFX_MIN16_U3(abs(FFX_MIN16_I3(a))); +} +FFX_MIN16_U4 ffxAbsHalf(FFX_MIN16_U4 a) +{ + return FFX_MIN16_U4(abs(FFX_MIN16_I4(a))); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxClampHalf(FFX_MIN16_F x, FFX_MIN16_F n, FFX_MIN16_F m) +{ + return max(n, min(x, m)); +} +FFX_MIN16_F2 ffxClampHalf(FFX_MIN16_F2 x, FFX_MIN16_F2 n, FFX_MIN16_F2 m) +{ + return max(n, min(x, m)); +} +FFX_MIN16_F3 ffxClampHalf(FFX_MIN16_F3 x, FFX_MIN16_F3 n, FFX_MIN16_F3 m) +{ + return max(n, min(x, m)); +} +FFX_MIN16_F4 ffxClampHalf(FFX_MIN16_F4 x, FFX_MIN16_F4 n, FFX_MIN16_F4 m) +{ + return max(n, min(x, m)); +} +//------------------------------------------------------------------------------------------------------------------------------ +// V_FRACT_F16 (note DX frac() is different). +FFX_MIN16_F ffxFract(FFX_MIN16_F x) +{ + return x - floor(x); +} +FFX_MIN16_F2 ffxFract(FFX_MIN16_F2 x) +{ + return x - floor(x); +} +FFX_MIN16_F3 ffxFract(FFX_MIN16_F3 x) +{ + return x - floor(x); +} +FFX_MIN16_F4 ffxFract(FFX_MIN16_F4 x) +{ + return x - floor(x); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxLerp(FFX_MIN16_F x, FFX_MIN16_F y, FFX_MIN16_F a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F2 ffxLerp(FFX_MIN16_F2 x, FFX_MIN16_F2 y, FFX_MIN16_F a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F2 ffxLerp(FFX_MIN16_F2 x, FFX_MIN16_F2 y, FFX_MIN16_F2 a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F3 ffxLerp(FFX_MIN16_F3 x, FFX_MIN16_F3 y, FFX_MIN16_F a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F3 ffxLerp(FFX_MIN16_F3 x, FFX_MIN16_F3 y, FFX_MIN16_F3 a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F4 ffxLerp(FFX_MIN16_F4 x, FFX_MIN16_F4 y, FFX_MIN16_F a) +{ + return lerp(x, y, a); +} +FFX_MIN16_F4 ffxLerp(FFX_MIN16_F4 x, FFX_MIN16_F4 y, FFX_MIN16_F4 a) +{ + return lerp(x, y, a); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxMax3Half(FFX_MIN16_F x, FFX_MIN16_F y, FFX_MIN16_F z) +{ + return max(x, max(y, z)); +} +FFX_MIN16_F2 ffxMax3Half(FFX_MIN16_F2 x, FFX_MIN16_F2 y, FFX_MIN16_F2 z) +{ + return max(x, max(y, z)); +} +FFX_MIN16_F3 ffxMax3Half(FFX_MIN16_F3 x, FFX_MIN16_F3 y, FFX_MIN16_F3 z) +{ + return max(x, max(y, z)); +} +FFX_MIN16_F4 ffxMax3Half(FFX_MIN16_F4 x, FFX_MIN16_F4 y, FFX_MIN16_F4 z) +{ + return max(x, max(y, z)); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxMin3Half(FFX_MIN16_F x, FFX_MIN16_F y, FFX_MIN16_F z) +{ + return min(x, min(y, z)); +} +FFX_MIN16_F2 ffxMin3Half(FFX_MIN16_F2 x, FFX_MIN16_F2 y, FFX_MIN16_F2 z) +{ + return min(x, min(y, z)); +} +FFX_MIN16_F3 ffxMin3Half(FFX_MIN16_F3 x, FFX_MIN16_F3 y, FFX_MIN16_F3 z) +{ + return min(x, min(y, z)); +} +FFX_MIN16_F4 ffxMin3Half(FFX_MIN16_F4 x, FFX_MIN16_F4 y, FFX_MIN16_F4 z) +{ + return min(x, min(y, z)); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxMed3Half(FFX_MIN16_F x, FFX_MIN16_F y, FFX_MIN16_F z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_F2 ffxMed3Half(FFX_MIN16_F2 x, FFX_MIN16_F2 y, FFX_MIN16_F2 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_F3 ffxMed3Half(FFX_MIN16_F3 x, FFX_MIN16_F3 y, FFX_MIN16_F3 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_F4 ffxMed3Half(FFX_MIN16_F4 x, FFX_MIN16_F4 y, FFX_MIN16_F4 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_I ffxMed3Half(FFX_MIN16_I x, FFX_MIN16_I y, FFX_MIN16_I z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_I2 ffxMed3Half(FFX_MIN16_I2 x, FFX_MIN16_I2 y, FFX_MIN16_I2 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_I3 ffxMed3Half(FFX_MIN16_I3 x, FFX_MIN16_I3 y, FFX_MIN16_I3 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +FFX_MIN16_I4 ffxMed3Half(FFX_MIN16_I4 x, FFX_MIN16_I4 y, FFX_MIN16_I4 z) +{ + return max(min(x, y), min(max(x, y), z)); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxReciprocalHalf(FFX_MIN16_F x) +{ + return rcp(x); +} +FFX_MIN16_F2 ffxReciprocalHalf(FFX_MIN16_F2 x) +{ + return rcp(x); +} +FFX_MIN16_F3 ffxReciprocalHalf(FFX_MIN16_F3 x) +{ + return rcp(x); +} +FFX_MIN16_F4 ffxReciprocalHalf(FFX_MIN16_F4 x) +{ + return rcp(x); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxReciprocalSquareRootHalf(FFX_MIN16_F x) +{ + return rsqrt(x); +} +FFX_MIN16_F2 ffxReciprocalSquareRootHalf(FFX_MIN16_F2 x) +{ + return rsqrt(x); +} +FFX_MIN16_F3 ffxReciprocalSquareRootHalf(FFX_MIN16_F3 x) +{ + return rsqrt(x); +} +FFX_MIN16_F4 ffxReciprocalSquareRootHalf(FFX_MIN16_F4 x) +{ + return rsqrt(x); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_F ffxSaturate(FFX_MIN16_F x) +{ + return saturate(x); +} +FFX_MIN16_F2 ffxSaturate(FFX_MIN16_F2 x) +{ + return saturate(x); +} +FFX_MIN16_F3 ffxSaturate(FFX_MIN16_F3 x) +{ + return saturate(x); +} +FFX_MIN16_F4 ffxSaturate(FFX_MIN16_F4 x) +{ + return saturate(x); +} +//------------------------------------------------------------------------------------------------------------------------------ +FFX_MIN16_U ffxBitShiftRightHalf(FFX_MIN16_U a, FFX_MIN16_U b) +{ + return FFX_MIN16_U(FFX_MIN16_I(a) >> FFX_MIN16_I(b)); +} +FFX_MIN16_U2 ffxBitShiftRightHalf(FFX_MIN16_U2 a, FFX_MIN16_U2 b) +{ + return FFX_MIN16_U2(FFX_MIN16_I2(a) >> FFX_MIN16_I2(b)); +} +FFX_MIN16_U3 ffxBitShiftRightHalf(FFX_MIN16_U3 a, FFX_MIN16_U3 b) +{ + return FFX_MIN16_U3(FFX_MIN16_I3(a) >> FFX_MIN16_I3(b)); +} +FFX_MIN16_U4 ffxBitShiftRightHalf(FFX_MIN16_U4 a, FFX_MIN16_U4 b) +{ + return FFX_MIN16_U4(FFX_MIN16_I4(a) >> FFX_MIN16_I4(b)); +} +#endif // FFX_HALF + +//============================================================================================================================== +// HLSL WAVE +//============================================================================================================================== +#if defined(FFX_WAVE) +// Where 'x' must be a compile time literal. +FfxFloat32 AWaveXorF1(FfxFloat32 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxFloat32x2 AWaveXorF2(FfxFloat32x2 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxFloat32x3 AWaveXorF3(FfxFloat32x3 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxFloat32x4 AWaveXorF4(FfxFloat32x4 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxUInt32 AWaveXorU1(FfxUInt32 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxUInt32x2 AWaveXorU1(FfxUInt32x2 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxUInt32x3 AWaveXorU1(FfxUInt32x3 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} +FfxUInt32x4 AWaveXorU1(FfxUInt32x4 v, FfxUInt32 x) +{ + return WaveReadLaneAt(v, WaveGetLaneIndex() ^ x); +} + +#if FFX_HALF +FfxFloat16x2 ffxWaveXorFloat16x2(FfxFloat16x2 v, FfxUInt32 x) +{ + return FFX_UINT32_TO_FLOAT16X2(WaveReadLaneAt(FFX_FLOAT16X2_TO_UINT32(v), WaveGetLaneIndex() ^ x)); +} +FfxFloat16x4 ffxWaveXorFloat16x4(FfxFloat16x4 v, FfxUInt32 x) +{ + return FFX_UINT32X2_TO_FLOAT16X4(WaveReadLaneAt(FFX_FLOAT16X4_TO_UINT32X2(v), WaveGetLaneIndex() ^ x)); +} +FfxUInt16x2 ffxWaveXorUint16x2(FfxUInt16x2 v, FfxUInt32 x) +{ + return FFX_UINT32_TO_UINT16X2(WaveReadLaneAt(FFX_UINT16X2_TO_UINT32(v), WaveGetLaneIndex() ^ x)); +} +FfxUInt16x4 ffxWaveXorUint16x4(FfxUInt16x4 v, FfxUInt32 x) +{ + return AW4_FFX_UINT32(WaveReadLaneAt(FFX_UINT32_AW4(v), WaveGetLaneIndex() ^ x)); +} +#endif // FFX_HALF +#endif // #if defined(FFX_WAVE) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h.meta new file mode 100644 index 0000000..996147a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_hlsl.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 89d6e02f97594f64ca2da4c8124df6cf +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h new file mode 100644 index 0000000..45be059 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h @@ -0,0 +1,50 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +FfxFloat32x3 opAAddOneF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32 b) +{ + d = a + ffxBroadcast3(b); + return d; +} + +FfxFloat32x3 opACpyF3(FfxFloat32x3 d, FfxFloat32x3 a) +{ + d = a; + return d; +} + +FfxFloat32x3 opAMulF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32x3 b) +{ + d = a * b; + return d; +} + +FfxFloat32x3 opAMulOneF3(FfxFloat32x3 d, FfxFloat32x3 a, FfxFloat32 b) +{ + d = a * ffxBroadcast3(b); + return d; +} + +FfxFloat32x3 opARcpF3(FfxFloat32x3 d, FfxFloat32x3 a) +{ + d = rcp(a); + return d; +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h.meta new file mode 100644 index 0000000..7cc75c1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_core_portability.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 5d6e692075988194382122bac7819f02 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h new file mode 100644 index 0000000..1ac23cf --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h @@ -0,0 +1,1250 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifdef __clang__ +#pragma clang diagnostic ignored "-Wunused-variable" +#endif + +/// Setup required constant values for EASU (works on CPU or GPU). +/// +/// @param [out] con0 +/// @param [out] con1 +/// @param [out] con2 +/// @param [out] con3 +/// @param [in] inputViewportInPixelsX The rendered image resolution being upscaled in X dimension. +/// @param [in] inputViewportInPixelsY The rendered image resolution being upscaled in Y dimension. +/// @param [in] inputSizeInPixelsX The resolution of the resource containing the input image (useful for dynamic resolution) in X dimension. +/// @param [in] inputSizeInPixelsY The resolution of the resource containing the input image (useful for dynamic resolution) in Y dimension. +/// @param [in] outputSizeInPixelsX The display resolution which the input image gets upscaled to in X dimension. +/// @param [in] outputSizeInPixelsY The display resolution which the input image gets upscaled to in Y dimension. +/// +/// @ingroup FSR1 +FFX_STATIC void ffxFsrPopulateEasuConstants( + FFX_PARAMETER_INOUT FfxUInt32x4 con0, + FFX_PARAMETER_INOUT FfxUInt32x4 con1, + FFX_PARAMETER_INOUT FfxUInt32x4 con2, + FFX_PARAMETER_INOUT FfxUInt32x4 con3, + FFX_PARAMETER_IN FfxFloat32 inputViewportInPixelsX, + FFX_PARAMETER_IN FfxFloat32 inputViewportInPixelsY, + FFX_PARAMETER_IN FfxFloat32 inputSizeInPixelsX, + FFX_PARAMETER_IN FfxFloat32 inputSizeInPixelsY, + FFX_PARAMETER_IN FfxFloat32 outputSizeInPixelsX, + FFX_PARAMETER_IN FfxFloat32 outputSizeInPixelsY) +{ + // Output integer position to a pixel position in viewport. + con0[0] = ffxAsUInt32(inputViewportInPixelsX * ffxReciprocal(outputSizeInPixelsX)); + con0[1] = ffxAsUInt32(inputViewportInPixelsY * ffxReciprocal(outputSizeInPixelsY)); + con0[2] = ffxAsUInt32(FfxFloat32(0.5) * inputViewportInPixelsX * ffxReciprocal(outputSizeInPixelsX) - FfxFloat32(0.5)); + con0[3] = ffxAsUInt32(FfxFloat32(0.5) * inputViewportInPixelsY * ffxReciprocal(outputSizeInPixelsY) - FfxFloat32(0.5)); + + // Viewport pixel position to normalized image space. + // This is used to get upper-left of 'F' tap. + con1[0] = ffxAsUInt32(ffxReciprocal(inputSizeInPixelsX)); + con1[1] = ffxAsUInt32(ffxReciprocal(inputSizeInPixelsY)); + + // Centers of gather4, first offset from upper-left of 'F'. + // +---+---+ + // | | | + // +--(0)--+ + // | b | c | + // +---F---+---+---+ + // | e | f | g | h | + // +--(1)--+--(2)--+ + // | i | j | k | l | + // +---+---+---+---+ + // | n | o | + // +--(3)--+ + // | | | + // +---+---+ + con1[2] = ffxAsUInt32(FfxFloat32(1.0) * ffxReciprocal(inputSizeInPixelsX)); + con1[3] = ffxAsUInt32(FfxFloat32(-1.0) * ffxReciprocal(inputSizeInPixelsY)); + + // These are from (0) instead of 'F'. + con2[0] = ffxAsUInt32(FfxFloat32(-1.0) * ffxReciprocal(inputSizeInPixelsX)); + con2[1] = ffxAsUInt32(FfxFloat32(2.0) * ffxReciprocal(inputSizeInPixelsY)); + con2[2] = ffxAsUInt32(FfxFloat32(1.0) * ffxReciprocal(inputSizeInPixelsX)); + con2[3] = ffxAsUInt32(FfxFloat32(2.0) * ffxReciprocal(inputSizeInPixelsY)); + con3[0] = ffxAsUInt32(FfxFloat32(0.0) * ffxReciprocal(inputSizeInPixelsX)); + con3[1] = ffxAsUInt32(FfxFloat32(4.0) * ffxReciprocal(inputSizeInPixelsY)); + con3[2] = con3[3] = 0; +} + +/// Setup required constant values for EASU (works on CPU or GPU). +/// +/// @param [out] con0 +/// @param [out] con1 +/// @param [out] con2 +/// @param [out] con3 +/// @param [in] inputViewportInPixelsX The resolution of the input in the X dimension. +/// @param [in] inputViewportInPixelsY The resolution of the input in the Y dimension. +/// @param [in] inputSizeInPixelsX The input size in pixels in the X dimension. +/// @param [in] inputSizeInPixelsY The input size in pixels in the Y dimension. +/// @param [in] outputSizeInPixelsX The output size in pixels in the X dimension. +/// @param [in] outputSizeInPixelsY The output size in pixels in the Y dimension. +/// @param [in] inputOffsetInPixelsX The input image offset in the X dimension into the resource containing it (useful for dynamic resolution). +/// @param [in] inputOffsetInPixelsY The input image offset in the Y dimension into the resource containing it (useful for dynamic resolution). +/// +/// @ingroup FSR1 +FFX_STATIC void ffxFsrPopulateEasuConstantsOffset( + FFX_PARAMETER_INOUT FfxUInt32x4 con0, + FFX_PARAMETER_INOUT FfxUInt32x4 con1, + FFX_PARAMETER_INOUT FfxUInt32x4 con2, + FFX_PARAMETER_INOUT FfxUInt32x4 con3, + FFX_PARAMETER_IN FfxFloat32 inputViewportInPixelsX, + FFX_PARAMETER_IN FfxFloat32 inputViewportInPixelsY, + FFX_PARAMETER_IN FfxFloat32 inputSizeInPixelsX, + FFX_PARAMETER_IN FfxFloat32 inputSizeInPixelsY, + FFX_PARAMETER_IN FfxFloat32 outputSizeInPixelsX, + FFX_PARAMETER_IN FfxFloat32 outputSizeInPixelsY, + FFX_PARAMETER_IN FfxFloat32 inputOffsetInPixelsX, + FFX_PARAMETER_IN FfxFloat32 inputOffsetInPixelsY) +{ + ffxFsrPopulateEasuConstants( + con0, + con1, + con2, + con3, + inputViewportInPixelsX, + inputViewportInPixelsY, + inputSizeInPixelsX, + inputSizeInPixelsY, + outputSizeInPixelsX, + outputSizeInPixelsY); + + // override + con0[2] = ffxAsUInt32(FfxFloat32(0.5) * inputViewportInPixelsX * ffxReciprocal(outputSizeInPixelsX) - FfxFloat32(0.5) + inputOffsetInPixelsX); + con0[3] = ffxAsUInt32(FfxFloat32(0.5) * inputViewportInPixelsY * ffxReciprocal(outputSizeInPixelsY) - FfxFloat32(0.5) + inputOffsetInPixelsY); +} + +#if defined(FFX_GPU) && defined(FFX_FSR_EASU_FLOAT) +// Input callback prototypes, need to be implemented by calling shader +FfxFloat32x4 FsrEasuRF(FfxFloat32x2 p); +FfxFloat32x4 FsrEasuGF(FfxFloat32x2 p); +FfxFloat32x4 FsrEasuBF(FfxFloat32x2 p); + +// Filtering for a given tap for the scalar. +void fsrEasuTapFloat( + FFX_PARAMETER_INOUT FfxFloat32x3 accumulatedColor, // Accumulated color, with negative lobe. + FFX_PARAMETER_INOUT FfxFloat32 accumulatedWeight, // Accumulated weight. + FFX_PARAMETER_IN FfxFloat32x2 pixelOffset, // Pixel offset from resolve position to tap. + FFX_PARAMETER_IN FfxFloat32x2 gradientDirection, // Gradient direction. + FFX_PARAMETER_IN FfxFloat32x2 length, // Length. + FFX_PARAMETER_IN FfxFloat32 negativeLobeStrength, // Negative lobe strength. + FFX_PARAMETER_IN FfxFloat32 clippingPoint, // Clipping point. + FFX_PARAMETER_IN FfxFloat32x3 color) // Tap color. +{ + // Rotate offset by direction. + FfxFloat32x2 rotatedOffset; + rotatedOffset.x = (pixelOffset.x * (gradientDirection.x)) + (pixelOffset.y * gradientDirection.y); + rotatedOffset.y = (pixelOffset.x * (-gradientDirection.y)) + (pixelOffset.y * gradientDirection.x); + + // Anisotropy. + rotatedOffset *= length; + + // Compute distance^2. + FfxFloat32 distanceSquared = rotatedOffset.x * rotatedOffset.x + rotatedOffset.y * rotatedOffset.y; + + // Limit to the window as at corner, 2 taps can easily be outside. + distanceSquared = ffxMin(distanceSquared, clippingPoint); + + // Approximation of lancos2 without sin() or rcp(), or sqrt() to get x. + // (25/16 * (2/5 * x^2 - 1)^2 - (25/16 - 1)) * (1/4 * x^2 - 1)^2 + // |_______________________________________| |_______________| + // base window + // The general form of the 'base' is, + // (a*(b*x^2-1)^2-(a-1)) + // Where 'a=1/(2*b-b^2)' and 'b' moves around the negative lobe. + FfxFloat32 weightB = FfxFloat32(2.0 / 5.0) * distanceSquared + FfxFloat32(-1.0); + FfxFloat32 weightA = negativeLobeStrength * distanceSquared + FfxFloat32(-1.0); + weightB *= weightB; + weightA *= weightA; + weightB = FfxFloat32(25.0 / 16.0) * weightB + FfxFloat32(-(25.0 / 16.0 - 1.0)); + FfxFloat32 weight = weightB * weightA; + + // Do weighted average. + accumulatedColor += color * weight; + accumulatedWeight += weight; +} + +// Accumulate direction and length. +void fsrEasuSetFloat( + FFX_PARAMETER_INOUT FfxFloat32x2 direction, + FFX_PARAMETER_INOUT FfxFloat32 length, + FFX_PARAMETER_IN FfxFloat32x2 pp, + FFX_PARAMETER_IN FfxBoolean biS, + FFX_PARAMETER_IN FfxBoolean biT, + FFX_PARAMETER_IN FfxBoolean biU, + FFX_PARAMETER_IN FfxBoolean biV, + FFX_PARAMETER_IN FfxFloat32 lA, + FFX_PARAMETER_IN FfxFloat32 lB, + FFX_PARAMETER_IN FfxFloat32 lC, + FFX_PARAMETER_IN FfxFloat32 lD, + FFX_PARAMETER_IN FfxFloat32 lE) +{ + // Compute bilinear weight, branches factor out as predicates are compiler time immediates. + // s t + // u v + FfxFloat32 weight = FfxFloat32(0.0); + if (biS) + weight = (FfxFloat32(1.0) - pp.x) * (FfxFloat32(1.0) - pp.y); + if (biT) + weight = pp.x * (FfxFloat32(1.0) - pp.y); + if (biU) + weight = (FfxFloat32(1.0) - pp.x) * pp.y; + if (biV) + weight = pp.x * pp.y; + + // Direction is the '+' diff. + // a + // b c d + // e + // Then takes magnitude from abs average of both sides of 'c'. + // Length converts gradient reversal to 0, smoothly to non-reversal at 1, shaped, then adding horz and vert terms. + FfxFloat32 dc = lD - lC; + FfxFloat32 cb = lC - lB; + FfxFloat32 lengthX = max(abs(dc), abs(cb)); + lengthX = ffxApproximateReciprocal(lengthX); + FfxFloat32 directionX = lD - lB; + direction.x += directionX * weight; + lengthX = ffxSaturate(abs(directionX) * lengthX); + lengthX *= lengthX; + length += lengthX * weight; + + // Repeat for the y axis. + FfxFloat32 ec = lE - lC; + FfxFloat32 ca = lC - lA; + FfxFloat32 lengthY = max(abs(ec), abs(ca)); + lengthY = ffxApproximateReciprocal(lengthY); + FfxFloat32 directionY = lE - lA; + direction.y += directionY * weight; + lengthY = ffxSaturate(abs(directionY) * lengthY); + lengthY *= lengthY; + length += lengthY * weight; +} + +/// Apply edge-aware spatial upsampling using 32bit floating point precision calculations. +/// +/// @param [out] outPixel The computed color of a pixel. +/// @param [in] integerPosition Integer pixel position within the output. +/// @param [in] con0 The first constant value generated by ffxFsrPopulateEasuConstants. +/// @param [in] con1 The second constant value generated by ffxFsrPopulateEasuConstants. +/// @param [in] con2 The third constant value generated by ffxFsrPopulateEasuConstants. +/// @param [in] con3 The fourth constant value generated by ffxFsrPopulateEasuConstants. +/// +/// @ingroup FSR +void ffxFsrEasuFloat( + FFX_PARAMETER_OUT FfxFloat32x3 pix, + FFX_PARAMETER_IN FfxUInt32x2 ip, + FFX_PARAMETER_IN FfxUInt32x4 con0, + FFX_PARAMETER_IN FfxUInt32x4 con1, + FFX_PARAMETER_IN FfxUInt32x4 con2, + FFX_PARAMETER_IN FfxUInt32x4 con3) +{ + // Get position of 'f'. + FfxFloat32x2 pp = FfxFloat32x2(ip) * ffxAsFloat(con0.xy) + ffxAsFloat(con0.zw); + FfxFloat32x2 fp = floor(pp); + pp -= fp; + + // 12-tap kernel. + // b c + // e f g h + // i j k l + // n o + // Gather 4 ordering. + // a b + // r g + // For packed FP16, need either {rg} or {ab} so using the following setup for gather in all versions, + // a b <- unused (z) + // r g + // a b a b + // r g r g + // a b + // r g <- unused (z) + // Allowing dead-code removal to remove the 'z's. + FfxFloat32x2 p0 = fp * ffxAsFloat(con1.xy) + ffxAsFloat(con1.zw); + + // These are from p0 to avoid pulling two constants on pre-Navi hardware. + FfxFloat32x2 p1 = p0 + ffxAsFloat(con2.xy); + FfxFloat32x2 p2 = p0 + ffxAsFloat(con2.zw); + FfxFloat32x2 p3 = p0 + ffxAsFloat(con3.xy); + FfxFloat32x4 bczzR = FsrEasuRF(p0); + FfxFloat32x4 bczzG = FsrEasuGF(p0); + FfxFloat32x4 bczzB = FsrEasuBF(p0); + FfxFloat32x4 ijfeR = FsrEasuRF(p1); + FfxFloat32x4 ijfeG = FsrEasuGF(p1); + FfxFloat32x4 ijfeB = FsrEasuBF(p1); + FfxFloat32x4 klhgR = FsrEasuRF(p2); + FfxFloat32x4 klhgG = FsrEasuGF(p2); + FfxFloat32x4 klhgB = FsrEasuBF(p2); + FfxFloat32x4 zzonR = FsrEasuRF(p3); + FfxFloat32x4 zzonG = FsrEasuGF(p3); + FfxFloat32x4 zzonB = FsrEasuBF(p3); + + // Simplest multi-channel approximate luma possible (luma times 2, in 2 FMA/MAD). + FfxFloat32x4 bczzL = bczzB * ffxBroadcast4(0.5) + (bczzR * ffxBroadcast4(0.5) + bczzG); + FfxFloat32x4 ijfeL = ijfeB * ffxBroadcast4(0.5) + (ijfeR * ffxBroadcast4(0.5) + ijfeG); + FfxFloat32x4 klhgL = klhgB * ffxBroadcast4(0.5) + (klhgR * ffxBroadcast4(0.5) + klhgG); + FfxFloat32x4 zzonL = zzonB * ffxBroadcast4(0.5) + (zzonR * ffxBroadcast4(0.5) + zzonG); + + // Rename. + FfxFloat32 bL = bczzL.x; + FfxFloat32 cL = bczzL.y; + FfxFloat32 iL = ijfeL.x; + FfxFloat32 jL = ijfeL.y; + FfxFloat32 fL = ijfeL.z; + FfxFloat32 eL = ijfeL.w; + FfxFloat32 kL = klhgL.x; + FfxFloat32 lL = klhgL.y; + FfxFloat32 hL = klhgL.z; + FfxFloat32 gL = klhgL.w; + FfxFloat32 oL = zzonL.z; + FfxFloat32 nL = zzonL.w; + + // Accumulate for bilinear interpolation. + FfxFloat32x2 dir = ffxBroadcast2(0.0); + FfxFloat32 len = FfxFloat32(0.0); + fsrEasuSetFloat(dir, len, pp, FFX_TRUE, FFX_FALSE, FFX_FALSE, FFX_FALSE, bL, eL, fL, gL, jL); + fsrEasuSetFloat(dir, len, pp, FFX_FALSE, FFX_TRUE, FFX_FALSE, FFX_FALSE, cL, fL, gL, hL, kL); + fsrEasuSetFloat(dir, len, pp, FFX_FALSE, FFX_FALSE, FFX_TRUE, FFX_FALSE, fL, iL, jL, kL, nL); + fsrEasuSetFloat(dir, len, pp, FFX_FALSE, FFX_FALSE, FFX_FALSE, FFX_TRUE, gL, jL, kL, lL, oL); + + // Normalize with approximation, and cleanup close to zero. + FfxFloat32x2 dir2 = dir * dir; + FfxFloat32 dirR = dir2.x + dir2.y; + FfxUInt32 zro = dirR < FfxFloat32(1.0 / 32768.0); + dirR = ffxApproximateReciprocalSquareRoot(dirR); + dirR = zro ? FfxFloat32(1.0) : dirR; + dir.x = zro ? FfxFloat32(1.0) : dir.x; + dir *= ffxBroadcast2(dirR); + + // Transform from {0 to 2} to {0 to 1} range, and shape with square. + len = len * FfxFloat32(0.5); + len *= len; + + // Stretch kernel {1.0 vert|horz, to sqrt(2.0) on diagonal}. + FfxFloat32 stretch = (dir.x * dir.x + dir.y * dir.y) * ffxApproximateReciprocal(max(abs(dir.x), abs(dir.y))); + + // Anisotropic length after rotation, + // x := 1.0 lerp to 'stretch' on edges + // y := 1.0 lerp to 2x on edges + FfxFloat32x2 len2 = FfxFloat32x2(FfxFloat32(1.0) + (stretch - FfxFloat32(1.0)) * len, FfxFloat32(1.0) + FfxFloat32(-0.5) * len); + + // Based on the amount of 'edge', + // the window shifts from +/-{sqrt(2.0) to slightly beyond 2.0}. + FfxFloat32 lob = FfxFloat32(0.5) + FfxFloat32((1.0 / 4.0 - 0.04) - 0.5) * len; + + // Set distance^2 clipping point to the end of the adjustable window. + FfxFloat32 clp = ffxApproximateReciprocal(lob); + + // Accumulation mixed with min/max of 4 nearest. + // b c + // e f g h + // i j k l + // n o + FfxFloat32x3 min4 = + ffxMin(ffxMin3(FfxFloat32x3(ijfeR.z, ijfeG.z, ijfeB.z), FfxFloat32x3(klhgR.w, klhgG.w, klhgB.w), FfxFloat32x3(ijfeR.y, ijfeG.y, ijfeB.y)), + FfxFloat32x3(klhgR.x, klhgG.x, klhgB.x)); + FfxFloat32x3 max4 = + max(ffxMax3(FfxFloat32x3(ijfeR.z, ijfeG.z, ijfeB.z), FfxFloat32x3(klhgR.w, klhgG.w, klhgB.w), FfxFloat32x3(ijfeR.y, ijfeG.y, ijfeB.y)), FfxFloat32x3(klhgR.x, klhgG.x, klhgB.x)); + + // Accumulation. + FfxFloat32x3 aC = ffxBroadcast3(0.0); + FfxFloat32 aW = FfxFloat32(0.0); + fsrEasuTapFloat(aC, aW, FfxFloat32x2(0.0, -1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(bczzR.x, bczzG.x, bczzB.x)); // b + fsrEasuTapFloat(aC, aW, FfxFloat32x2(1.0, -1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(bczzR.y, bczzG.y, bczzB.y)); // c + fsrEasuTapFloat(aC, aW, FfxFloat32x2(-1.0, 1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(ijfeR.x, ijfeG.x, ijfeB.x)); // i + fsrEasuTapFloat(aC, aW, FfxFloat32x2(0.0, 1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(ijfeR.y, ijfeG.y, ijfeB.y)); // j + fsrEasuTapFloat(aC, aW, FfxFloat32x2(0.0, 0.0) - pp, dir, len2, lob, clp, FfxFloat32x3(ijfeR.z, ijfeG.z, ijfeB.z)); // f + fsrEasuTapFloat(aC, aW, FfxFloat32x2(-1.0, 0.0) - pp, dir, len2, lob, clp, FfxFloat32x3(ijfeR.w, ijfeG.w, ijfeB.w)); // e + fsrEasuTapFloat(aC, aW, FfxFloat32x2(1.0, 1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(klhgR.x, klhgG.x, klhgB.x)); // k + fsrEasuTapFloat(aC, aW, FfxFloat32x2(2.0, 1.0) - pp, dir, len2, lob, clp, FfxFloat32x3(klhgR.y, klhgG.y, klhgB.y)); // l + fsrEasuTapFloat(aC, aW, FfxFloat32x2(2.0, 0.0) - pp, dir, len2, lob, clp, FfxFloat32x3(klhgR.z, klhgG.z, klhgB.z)); // h + fsrEasuTapFloat(aC, aW, FfxFloat32x2(1.0, 0.0) - pp, dir, len2, lob, clp, FfxFloat32x3(klhgR.w, klhgG.w, klhgB.w)); // g + fsrEasuTapFloat(aC, aW, FfxFloat32x2(1.0, 2.0) - pp, dir, len2, lob, clp, FfxFloat32x3(zzonR.z, zzonG.z, zzonB.z)); // o + fsrEasuTapFloat(aC, aW, FfxFloat32x2(0.0, 2.0) - pp, dir, len2, lob, clp, FfxFloat32x3(zzonR.w, zzonG.w, zzonB.w)); // n + + // Normalize and dering. + pix = ffxMin(max4, max(min4, aC * ffxBroadcast3(rcp(aW)))); +} +#endif // #if defined(FFX_GPU) && defined(FFX_FSR_EASU_FLOAT) + +#if defined(FFX_GPU) && FFX_HALF == 1 && defined(FFX_FSR_EASU_HALF) +// Input callback prototypes, need to be implemented by calling shader +FfxFloat16x4 FsrEasuRH(FfxFloat32x2 p); +FfxFloat16x4 FsrEasuGH(FfxFloat32x2 p); +FfxFloat16x4 FsrEasuBH(FfxFloat32x2 p); + +// This runs 2 taps in parallel. +void FsrEasuTapH( + FFX_PARAMETER_INOUT FfxFloat16x2 aCR, + FFX_PARAMETER_INOUT FfxFloat16x2 aCG, + FFX_PARAMETER_INOUT FfxFloat16x2 aCB, + FFX_PARAMETER_INOUT FfxFloat16x2 aW, + FFX_PARAMETER_IN FfxFloat16x2 offX, + FFX_PARAMETER_IN FfxFloat16x2 offY, + FFX_PARAMETER_IN FfxFloat16x2 dir, + FFX_PARAMETER_IN FfxFloat16x2 len, + FFX_PARAMETER_IN FfxFloat16 lob, + FFX_PARAMETER_IN FfxFloat16 clp, + FFX_PARAMETER_IN FfxFloat16x2 cR, + FFX_PARAMETER_IN FfxFloat16x2 cG, + FFX_PARAMETER_IN FfxFloat16x2 cB) +{ + FfxFloat16x2 vX, vY; + vX = offX * dir.xx + offY * dir.yy; + vY = offX * (-dir.yy) + offY * dir.xx; + vX *= len.x; + vY *= len.y; + FfxFloat16x2 d2 = vX * vX + vY * vY; + d2 = min(d2, FFX_BROADCAST_FLOAT16X2(clp)); + FfxFloat16x2 wB = FFX_BROADCAST_FLOAT16X2(2.0 / 5.0) * d2 + FFX_BROADCAST_FLOAT16X2(-1.0); + FfxFloat16x2 wA = FFX_BROADCAST_FLOAT16X2(lob) * d2 + FFX_BROADCAST_FLOAT16X2(-1.0); + wB *= wB; + wA *= wA; + wB = FFX_BROADCAST_FLOAT16X2(25.0 / 16.0) * wB + FFX_BROADCAST_FLOAT16X2(-(25.0 / 16.0 - 1.0)); + FfxFloat16x2 w = wB * wA; + aCR += cR * w; + aCG += cG * w; + aCB += cB * w; + aW += w; +} + +// This runs 2 taps in parallel. +void FsrEasuSetH( + FFX_PARAMETER_INOUT FfxFloat16x2 dirPX, + FFX_PARAMETER_INOUT FfxFloat16x2 dirPY, + FFX_PARAMETER_INOUT FfxFloat16x2 lenP, + FFX_PARAMETER_IN FfxFloat16x2 pp, + FFX_PARAMETER_IN FfxBoolean biST, + FFX_PARAMETER_IN FfxBoolean biUV, + FFX_PARAMETER_IN FfxFloat16x2 lA, + FFX_PARAMETER_IN FfxFloat16x2 lB, + FFX_PARAMETER_IN FfxFloat16x2 lC, + FFX_PARAMETER_IN FfxFloat16x2 lD, + FFX_PARAMETER_IN FfxFloat16x2 lE) +{ + FfxFloat16x2 w = FFX_BROADCAST_FLOAT16X2(0.0); + + if (biST) + w = (FfxFloat16x2(1.0, 0.0) + FfxFloat16x2(-pp.x, pp.x)) * FFX_BROADCAST_FLOAT16X2(FFX_BROADCAST_FLOAT16(1.0) - pp.y); + + if (biUV) + w = (FfxFloat16x2(1.0, 0.0) + FfxFloat16x2(-pp.x, pp.x)) * FFX_BROADCAST_FLOAT16X2(pp.y); + + // ABS is not free in the packed FP16 path. + FfxFloat16x2 dc = lD - lC; + FfxFloat16x2 cb = lC - lB; + FfxFloat16x2 lenX = max(abs(dc), abs(cb)); + lenX = ffxReciprocalHalf(lenX); + + FfxFloat16x2 dirX = lD - lB; + dirPX += dirX * w; + lenX = ffxSaturate(abs(dirX) * lenX); + lenX *= lenX; + lenP += lenX * w; + FfxFloat16x2 ec = lE - lC; + FfxFloat16x2 ca = lC - lA; + FfxFloat16x2 lenY = max(abs(ec), abs(ca)); + lenY = ffxReciprocalHalf(lenY); + FfxFloat16x2 dirY = lE - lA; + dirPY += dirY * w; + lenY = ffxSaturate(abs(dirY) * lenY); + lenY *= lenY; + lenP += lenY * w; +} + +void FsrEasuH( + FFX_PARAMETER_OUT FfxFloat16x3 pix, + FFX_PARAMETER_IN FfxUInt32x2 ip, + FFX_PARAMETER_IN FfxUInt32x4 con0, + FFX_PARAMETER_IN FfxUInt32x4 con1, + FFX_PARAMETER_IN FfxUInt32x4 con2, + FFX_PARAMETER_IN FfxUInt32x4 con3) +{ + FfxFloat32x2 pp = FfxFloat32x2(ip) * ffxAsFloat(con0.xy) + ffxAsFloat(con0.zw); + FfxFloat32x2 fp = floor(pp); + pp -= fp; + FfxFloat16x2 ppp = FfxFloat16x2(pp); + + FfxFloat32x2 p0 = fp * ffxAsFloat(con1.xy) + ffxAsFloat(con1.zw); + FfxFloat32x2 p1 = p0 + ffxAsFloat(con2.xy); + FfxFloat32x2 p2 = p0 + ffxAsFloat(con2.zw); + FfxFloat32x2 p3 = p0 + ffxAsFloat(con3.xy); + FfxFloat16x4 bczzR = FsrEasuRH(p0); + FfxFloat16x4 bczzG = FsrEasuGH(p0); + FfxFloat16x4 bczzB = FsrEasuBH(p0); + FfxFloat16x4 ijfeR = FsrEasuRH(p1); + FfxFloat16x4 ijfeG = FsrEasuGH(p1); + FfxFloat16x4 ijfeB = FsrEasuBH(p1); + FfxFloat16x4 klhgR = FsrEasuRH(p2); + FfxFloat16x4 klhgG = FsrEasuGH(p2); + FfxFloat16x4 klhgB = FsrEasuBH(p2); + FfxFloat16x4 zzonR = FsrEasuRH(p3); + FfxFloat16x4 zzonG = FsrEasuGH(p3); + FfxFloat16x4 zzonB = FsrEasuBH(p3); + + FfxFloat16x4 bczzL = bczzB * FFX_BROADCAST_FLOAT16X4(0.5) + (bczzR * FFX_BROADCAST_FLOAT16X4(0.5) + bczzG); + FfxFloat16x4 ijfeL = ijfeB * FFX_BROADCAST_FLOAT16X4(0.5) + (ijfeR * FFX_BROADCAST_FLOAT16X4(0.5) + ijfeG); + FfxFloat16x4 klhgL = klhgB * FFX_BROADCAST_FLOAT16X4(0.5) + (klhgR * FFX_BROADCAST_FLOAT16X4(0.5) + klhgG); + FfxFloat16x4 zzonL = zzonB * FFX_BROADCAST_FLOAT16X4(0.5) + (zzonR * FFX_BROADCAST_FLOAT16X4(0.5) + zzonG); + FfxFloat16 bL = bczzL.x; + FfxFloat16 cL = bczzL.y; + FfxFloat16 iL = ijfeL.x; + FfxFloat16 jL = ijfeL.y; + FfxFloat16 fL = ijfeL.z; + FfxFloat16 eL = ijfeL.w; + FfxFloat16 kL = klhgL.x; + FfxFloat16 lL = klhgL.y; + FfxFloat16 hL = klhgL.z; + FfxFloat16 gL = klhgL.w; + FfxFloat16 oL = zzonL.z; + FfxFloat16 nL = zzonL.w; + + // This part is different, accumulating 2 taps in parallel. + FfxFloat16x2 dirPX = FFX_BROADCAST_FLOAT16X2(0.0); + FfxFloat16x2 dirPY = FFX_BROADCAST_FLOAT16X2(0.0); + FfxFloat16x2 lenP = FFX_BROADCAST_FLOAT16X2(0.0); + FsrEasuSetH(dirPX, + dirPY, + lenP, + ppp, + FfxUInt32(true), + FfxUInt32(false), + FfxFloat16x2(bL, cL), + FfxFloat16x2(eL, fL), + FfxFloat16x2(fL, gL), + FfxFloat16x2(gL, hL), + FfxFloat16x2(jL, kL)); + FsrEasuSetH(dirPX, + dirPY, + lenP, + ppp, + FfxUInt32(false), + FfxUInt32(true), + FfxFloat16x2(fL, gL), + FfxFloat16x2(iL, jL), + FfxFloat16x2(jL, kL), + FfxFloat16x2(kL, lL), + FfxFloat16x2(nL, oL)); + FfxFloat16x2 dir = FfxFloat16x2(dirPX.r + dirPX.g, dirPY.r + dirPY.g); + FfxFloat16 len = lenP.r + lenP.g; + + FfxFloat16x2 dir2 = dir * dir; + FfxFloat16 dirR = dir2.x + dir2.y; + FfxBoolean zro = FfxBoolean(dirR < FFX_BROADCAST_FLOAT16(1.0 / 32768.0)); + dirR = ffxApproximateReciprocalSquareRootHalf(dirR); + dirR = (zro > 0) ? FFX_BROADCAST_FLOAT16(1.0) : dirR; + dir.x = (zro > 0) ? FFX_BROADCAST_FLOAT16(1.0) : dir.x; + dir *= FFX_BROADCAST_FLOAT16X2(dirR); + len = len * FFX_BROADCAST_FLOAT16(0.5); + len *= len; + FfxFloat16 stretch = (dir.x * dir.x + dir.y * dir.y) * ffxApproximateReciprocalHalf(max(abs(dir.x), abs(dir.y))); + FfxFloat16x2 len2 = + FfxFloat16x2(FFX_BROADCAST_FLOAT16(1.0) + (stretch - FFX_BROADCAST_FLOAT16(1.0)) * len, FFX_BROADCAST_FLOAT16(1.0) + FFX_BROADCAST_FLOAT16(-0.5) * len); + FfxFloat16 lob = FFX_BROADCAST_FLOAT16(0.5) + FFX_BROADCAST_FLOAT16((1.0 / 4.0 - 0.04) - 0.5) * len; + FfxFloat16 clp = ffxApproximateReciprocalHalf(lob); + + // FP16 is different, using packed trick to do min and max in same operation. + FfxFloat16x2 bothR = + max(max(FfxFloat16x2(-ijfeR.z, ijfeR.z), FfxFloat16x2(-klhgR.w, klhgR.w)), max(FfxFloat16x2(-ijfeR.y, ijfeR.y), FfxFloat16x2(-klhgR.x, klhgR.x))); + FfxFloat16x2 bothG = + max(max(FfxFloat16x2(-ijfeG.z, ijfeG.z), FfxFloat16x2(-klhgG.w, klhgG.w)), max(FfxFloat16x2(-ijfeG.y, ijfeG.y), FfxFloat16x2(-klhgG.x, klhgG.x))); + FfxFloat16x2 bothB = + max(max(FfxFloat16x2(-ijfeB.z, ijfeB.z), FfxFloat16x2(-klhgB.w, klhgB.w)), max(FfxFloat16x2(-ijfeB.y, ijfeB.y), FfxFloat16x2(-klhgB.x, klhgB.x))); + + // This part is different for FP16, working pairs of taps at a time. + FfxFloat16x2 pR = FFX_BROADCAST_FLOAT16X2(0.0); + FfxFloat16x2 pG = FFX_BROADCAST_FLOAT16X2(0.0); + FfxFloat16x2 pB = FFX_BROADCAST_FLOAT16X2(0.0); + FfxFloat16x2 pW = FFX_BROADCAST_FLOAT16X2(0.0); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(0.0, 1.0) - ppp.xx, FfxFloat16x2(-1.0, -1.0) - ppp.yy, dir, len2, lob, clp, bczzR.xy, bczzG.xy, bczzB.xy); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(-1.0, 0.0) - ppp.xx, FfxFloat16x2(1.0, 1.0) - ppp.yy, dir, len2, lob, clp, ijfeR.xy, ijfeG.xy, ijfeB.xy); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(0.0, -1.0) - ppp.xx, FfxFloat16x2(0.0, 0.0) - ppp.yy, dir, len2, lob, clp, ijfeR.zw, ijfeG.zw, ijfeB.zw); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(1.0, 2.0) - ppp.xx, FfxFloat16x2(1.0, 1.0) - ppp.yy, dir, len2, lob, clp, klhgR.xy, klhgG.xy, klhgB.xy); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(2.0, 1.0) - ppp.xx, FfxFloat16x2(0.0, 0.0) - ppp.yy, dir, len2, lob, clp, klhgR.zw, klhgG.zw, klhgB.zw); + FsrEasuTapH(pR, pG, pB, pW, FfxFloat16x2(1.0, 0.0) - ppp.xx, FfxFloat16x2(2.0, 2.0) - ppp.yy, dir, len2, lob, clp, zzonR.zw, zzonG.zw, zzonB.zw); + FfxFloat16x3 aC = FfxFloat16x3(pR.x + pR.y, pG.x + pG.y, pB.x + pB.y); + FfxFloat16 aW = pW.x + pW.y; + + // Slightly different for FP16 version due to combined min and max. + pix = min(FfxFloat16x3(bothR.y, bothG.y, bothB.y), max(-FfxFloat16x3(bothR.x, bothG.x, bothB.x), aC * FFX_BROADCAST_FLOAT16X3(ffxReciprocalHalf(aW)))); +} +#endif // #if defined(FFX_GPU) && defined(FFX_HALF) && defined(FFX_FSR_EASU_HALF) + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// +// FSR - [RCAS] ROBUST CONTRAST ADAPTIVE SHARPENING +// +//------------------------------------------------------------------------------------------------------------------------------ +// CAS uses a simplified mechanism to convert local contrast into a variable amount of sharpness. +// RCAS uses a more exact mechanism, solving for the maximum local sharpness possible before clipping. +// RCAS also has a built in process to limit sharpening of what it detects as possible noise. +// RCAS sharper does not support scaling, as it should be applied after EASU scaling. +// Pass EASU output straight into RCAS, no color conversions necessary. +//------------------------------------------------------------------------------------------------------------------------------ +// RCAS is based on the following logic. +// RCAS uses a 5 tap filter in a cross pattern (same as CAS), +// w n +// w 1 w for taps w m e +// w s +// Where 'w' is the negative lobe weight. +// output = (w*(n+e+w+s)+m)/(4*w+1) +// RCAS solves for 'w' by seeing where the signal might clip out of the {0 to 1} input range, +// 0 == (w*(n+e+w+s)+m)/(4*w+1) -> w = -m/(n+e+w+s) +// 1 == (w*(n+e+w+s)+m)/(4*w+1) -> w = (1-m)/(n+e+w+s-4*1) +// Then chooses the 'w' which results in no clipping, limits 'w', and multiplies by the 'sharp' amount. +// This solution above has issues with MSAA input as the steps along the gradient cause edge detection issues. +// So RCAS uses 4x the maximum and 4x the minimum (depending on equation)in place of the individual taps. +// As well as switching from 'm' to either the minimum or maximum (depending on side), to help in energy conservation. +// This stabilizes RCAS. +// RCAS does a simple highpass which is normalized against the local contrast then shaped, +// 0.25 +// 0.25 -1 0.25 +// 0.25 +// This is used as a noise detection filter, to reduce the effect of RCAS on grain, and focus on real edges. +// +// GLSL example for the required callbacks : +// +// FfxFloat16x4 FsrRcasLoadH(FfxInt16x2 p){return FfxFloat16x4(imageLoad(imgSrc,FfxInt32x2(p)));} +// void FsrRcasInputH(inout FfxFloat16 r,inout FfxFloat16 g,inout FfxFloat16 b) +// { +// //do any simple input color conversions here or leave empty if none needed +// } +// +// FsrRcasCon need to be called from the CPU or GPU to set up constants. +// Including a GPU example here, the 'con' value would be stored out to a constant buffer. +// +// FfxUInt32x4 con; +// FsrRcasCon(con, +// 0.0); // The scale is {0.0 := maximum sharpness, to N>0, where N is the number of stops (halving) of the reduction of sharpness}. +// --------------- +// RCAS sharpening supports a CAS-like pass-through alpha via, +// #define FSR_RCAS_PASSTHROUGH_ALPHA 1 +// RCAS also supports a define to enable a more expensive path to avoid some sharpening of noise. +// Would suggest it is better to apply film grain after RCAS sharpening (and after scaling) instead of using this define, +// #define FSR_RCAS_DENOISE 1 +//============================================================================================================================== +// This is set at the limit of providing unnatural results for sharpening. +#define FSR_RCAS_LIMIT (0.25-(1.0/16.0)) +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// CONSTANT SETUP +//============================================================================================================================== +// Call to setup required constant values (works on CPU or GPU). + FFX_STATIC void FsrRcasCon(FfxUInt32x4 con, + // The scale is {0.0 := maximum, to N>0, where N is the number of stops (halving) of the reduction of sharpness}. + FfxFloat32 sharpness) + { + // Transform from stops to linear value. + sharpness = exp2(-sharpness); + FfxFloat32x2 hSharp = {sharpness, sharpness}; + con[0] = ffxAsUInt32(sharpness); + con[1] = packHalf2x16(hSharp); + con[2] = 0; + con[3] = 0; + } + //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// NON-PACKED 32-BIT VERSION +//============================================================================================================================== +#if defined(FFX_GPU)&&defined(FSR_RCAS_F) + // Input callback prototypes that need to be implemented by calling shader + FfxFloat32x4 FsrRcasLoadF(FfxInt32x2 p); + void FsrRcasInputF(inout FfxFloat32 r,inout FfxFloat32 g,inout FfxFloat32 b); +//------------------------------------------------------------------------------------------------------------------------------ + void FsrRcasF(out FfxFloat32 pixR, // Output values, non-vector so port between RcasFilter() and RcasFilterH() is easy. + out FfxFloat32 pixG, + out FfxFloat32 pixB, +#ifdef FSR_RCAS_PASSTHROUGH_ALPHA + out FfxFloat32 pixA, +#endif + FfxUInt32x2 ip, // Integer pixel position in output. + FfxUInt32x4 con) + { // Constant generated by RcasSetup(). + // Algorithm uses minimal 3x3 pixel neighborhood. + // b + // d e f + // h + FfxInt32x2 sp = FfxInt32x2(ip); + FfxFloat32x3 b = FsrRcasLoadF(sp + FfxInt32x2(0, -1)).rgb; + FfxFloat32x3 d = FsrRcasLoadF(sp + FfxInt32x2(-1, 0)).rgb; +#ifdef FSR_RCAS_PASSTHROUGH_ALPHA + FfxFloat32x4 ee = FsrRcasLoadF(sp); + FfxFloat32x3 e = ee.rgb; + pixA = ee.a; +#else + FfxFloat32x3 e = FsrRcasLoadF(sp).rgb; +#endif + FfxFloat32x3 f = FsrRcasLoadF(sp + FfxInt32x2(1, 0)).rgb; + FfxFloat32x3 h = FsrRcasLoadF(sp + FfxInt32x2(0, 1)).rgb; + // Rename (32-bit) or regroup (16-bit). + FfxFloat32 bR = b.r; + FfxFloat32 bG = b.g; + FfxFloat32 bB = b.b; + FfxFloat32 dR = d.r; + FfxFloat32 dG = d.g; + FfxFloat32 dB = d.b; + FfxFloat32 eR = e.r; + FfxFloat32 eG = e.g; + FfxFloat32 eB = e.b; + FfxFloat32 fR = f.r; + FfxFloat32 fG = f.g; + FfxFloat32 fB = f.b; + FfxFloat32 hR = h.r; + FfxFloat32 hG = h.g; + FfxFloat32 hB = h.b; + // Run optional input transform. + FsrRcasInputF(bR, bG, bB); + FsrRcasInputF(dR, dG, dB); + FsrRcasInputF(eR, eG, eB); + FsrRcasInputF(fR, fG, fB); + FsrRcasInputF(hR, hG, hB); + // Luma times 2. + FfxFloat32 bL = bB * FfxFloat32(0.5) + (bR * FfxFloat32(0.5) + bG); + FfxFloat32 dL = dB * FfxFloat32(0.5) + (dR * FfxFloat32(0.5) + dG); + FfxFloat32 eL = eB * FfxFloat32(0.5) + (eR * FfxFloat32(0.5) + eG); + FfxFloat32 fL = fB * FfxFloat32(0.5) + (fR * FfxFloat32(0.5) + fG); + FfxFloat32 hL = hB * FfxFloat32(0.5) + (hR * FfxFloat32(0.5) + hG); + // Noise detection. + FfxFloat32 nz = FfxFloat32(0.25) * bL + FfxFloat32(0.25) * dL + FfxFloat32(0.25) * fL + FfxFloat32(0.25) * hL - eL; + nz = ffxSaturate(abs(nz) * ffxApproximateReciprocalMedium(ffxMax3(ffxMax3(bL, dL, eL), fL, hL) - ffxMin3(ffxMin3(bL, dL, eL), fL, hL))); + nz = FfxFloat32(-0.5) * nz + FfxFloat32(1.0); + // Min and max of ring. + FfxFloat32 mn4R = ffxMin(ffxMin3(bR, dR, fR), hR); + FfxFloat32 mn4G = ffxMin(ffxMin3(bG, dG, fG), hG); + FfxFloat32 mn4B = ffxMin(ffxMin3(bB, dB, fB), hB); + FfxFloat32 mx4R = max(ffxMax3(bR, dR, fR), hR); + FfxFloat32 mx4G = max(ffxMax3(bG, dG, fG), hG); + FfxFloat32 mx4B = max(ffxMax3(bB, dB, fB), hB); + // Immediate constants for peak range. + FfxFloat32x2 peakC = FfxFloat32x2(1.0, -1.0 * 4.0); + // Limiters, these need to be high precision RCPs. + FfxFloat32 hitMinR = mn4R * rcp(FfxFloat32(4.0) * mx4R); + FfxFloat32 hitMinG = mn4G * rcp(FfxFloat32(4.0) * mx4G); + FfxFloat32 hitMinB = mn4B * rcp(FfxFloat32(4.0) * mx4B); + FfxFloat32 hitMaxR = (peakC.x - mx4R) * rcp(FfxFloat32(4.0) * mn4R + peakC.y); + FfxFloat32 hitMaxG = (peakC.x - mx4G) * rcp(FfxFloat32(4.0) * mn4G + peakC.y); + FfxFloat32 hitMaxB = (peakC.x - mx4B) * rcp(FfxFloat32(4.0) * mn4B + peakC.y); + FfxFloat32 lobeR = max(-hitMinR, hitMaxR); + FfxFloat32 lobeG = max(-hitMinG, hitMaxG); + FfxFloat32 lobeB = max(-hitMinB, hitMaxB); + FfxFloat32 lobe = max(FfxFloat32(-FSR_RCAS_LIMIT), ffxMin(ffxMax3(lobeR, lobeG, lobeB), FfxFloat32(0.0))) * ffxAsFloat + (con.x); + // Apply noise removal. +#ifdef FSR_RCAS_DENOISE + lobe *= nz; +#endif + // Resolve, which needs the medium precision rcp approximation to avoid visible tonality changes. + FfxFloat32 rcpL = ffxApproximateReciprocalMedium(FfxFloat32(4.0) * lobe + FfxFloat32(1.0)); + pixR = (lobe * bR + lobe * dR + lobe * hR + lobe * fR + eR) * rcpL; + pixG = (lobe * bG + lobe * dG + lobe * hG + lobe * fG + eG) * rcpL; + pixB = (lobe * bB + lobe * dB + lobe * hB + lobe * fB + eB) * rcpL; + return; + } +#endif +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// NON-PACKED 16-BIT VERSION +//============================================================================================================================== +#if defined(FFX_GPU) && FFX_HALF == 1 && defined(FSR_RCAS_H) + // Input callback prototypes that need to be implemented by calling shader + FfxFloat16x4 FsrRcasLoadH(FfxInt16x2 p); + void FsrRcasInputH(inout FfxFloat16 r,inout FfxFloat16 g,inout FfxFloat16 b); +//------------------------------------------------------------------------------------------------------------------------------ + void FsrRcasH( + out FfxFloat16 pixR, // Output values, non-vector so port between RcasFilter() and RcasFilterH() is easy. + out FfxFloat16 pixG, + out FfxFloat16 pixB, + #ifdef FSR_RCAS_PASSTHROUGH_ALPHA + out FfxFloat16 pixA, + #endif + FfxUInt32x2 ip, // Integer pixel position in output. + FfxUInt32x4 con){ // Constant generated by RcasSetup(). + // Sharpening algorithm uses minimal 3x3 pixel neighborhood. + // b + // d e f + // h + FfxInt16x2 sp=FfxInt16x2(ip); + FfxFloat16x3 b=FsrRcasLoadH(sp+FfxInt16x2( 0,-1)).rgb; + FfxFloat16x3 d=FsrRcasLoadH(sp+FfxInt16x2(-1, 0)).rgb; + #ifdef FSR_RCAS_PASSTHROUGH_ALPHA + FfxFloat16x4 ee=FsrRcasLoadH(sp); + FfxFloat16x3 e=ee.rgb;pixA=ee.a; + #else + FfxFloat16x3 e=FsrRcasLoadH(sp).rgb; + #endif + FfxFloat16x3 f=FsrRcasLoadH(sp+FfxInt16x2( 1, 0)).rgb; + FfxFloat16x3 h=FsrRcasLoadH(sp+FfxInt16x2( 0, 1)).rgb; + // Rename (32-bit) or regroup (16-bit). + FfxFloat16 bR=b.r; + FfxFloat16 bG=b.g; + FfxFloat16 bB=b.b; + FfxFloat16 dR=d.r; + FfxFloat16 dG=d.g; + FfxFloat16 dB=d.b; + FfxFloat16 eR=e.r; + FfxFloat16 eG=e.g; + FfxFloat16 eB=e.b; + FfxFloat16 fR=f.r; + FfxFloat16 fG=f.g; + FfxFloat16 fB=f.b; + FfxFloat16 hR=h.r; + FfxFloat16 hG=h.g; + FfxFloat16 hB=h.b; + // Run optional input transform. + FsrRcasInputH(bR,bG,bB); + FsrRcasInputH(dR,dG,dB); + FsrRcasInputH(eR,eG,eB); + FsrRcasInputH(fR,fG,fB); + FsrRcasInputH(hR,hG,hB); + // Luma times 2. + FfxFloat16 bL=bB*FFX_BROADCAST_FLOAT16(0.5)+(bR*FFX_BROADCAST_FLOAT16(0.5)+bG); + FfxFloat16 dL=dB*FFX_BROADCAST_FLOAT16(0.5)+(dR*FFX_BROADCAST_FLOAT16(0.5)+dG); + FfxFloat16 eL=eB*FFX_BROADCAST_FLOAT16(0.5)+(eR*FFX_BROADCAST_FLOAT16(0.5)+eG); + FfxFloat16 fL=fB*FFX_BROADCAST_FLOAT16(0.5)+(fR*FFX_BROADCAST_FLOAT16(0.5)+fG); + FfxFloat16 hL=hB*FFX_BROADCAST_FLOAT16(0.5)+(hR*FFX_BROADCAST_FLOAT16(0.5)+hG); + // Noise detection. + FfxFloat16 nz=FFX_BROADCAST_FLOAT16(0.25)*bL+FFX_BROADCAST_FLOAT16(0.25)*dL+FFX_BROADCAST_FLOAT16(0.25)*fL+FFX_BROADCAST_FLOAT16(0.25)*hL-eL; + nz=ffxSaturate(abs(nz)*ffxApproximateReciprocalMediumHalf(ffxMax3Half(ffxMax3Half(bL,dL,eL),fL,hL)-ffxMin3Half(ffxMin3Half(bL,dL,eL),fL,hL))); + nz=FFX_BROADCAST_FLOAT16(-0.5)*nz+FFX_BROADCAST_FLOAT16(1.0); + // Min and max of ring. + FfxFloat16 mn4R=min(ffxMin3Half(bR,dR,fR),hR); + FfxFloat16 mn4G=min(ffxMin3Half(bG,dG,fG),hG); + FfxFloat16 mn4B=min(ffxMin3Half(bB,dB,fB),hB); + FfxFloat16 mx4R=max(ffxMax3Half(bR,dR,fR),hR); + FfxFloat16 mx4G=max(ffxMax3Half(bG,dG,fG),hG); + FfxFloat16 mx4B=max(ffxMax3Half(bB,dB,fB),hB); + // Immediate constants for peak range. + FfxFloat16x2 peakC=FfxFloat16x2(1.0,-1.0*4.0); + // Limiters, these need to be high precision RCPs. + FfxFloat16 hitMinR=mn4R*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mx4R); + FfxFloat16 hitMinG=mn4G*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mx4G); + FfxFloat16 hitMinB=mn4B*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mx4B); + FfxFloat16 hitMaxR=(peakC.x-mx4R)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mn4R+peakC.y); + FfxFloat16 hitMaxG=(peakC.x-mx4G)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mn4G+peakC.y); + FfxFloat16 hitMaxB=(peakC.x-mx4B)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16(4.0)*mn4B+peakC.y); + FfxFloat16 lobeR=max(-hitMinR,hitMaxR); + FfxFloat16 lobeG=max(-hitMinG,hitMaxG); + FfxFloat16 lobeB=max(-hitMinB,hitMaxB); + FfxFloat16 lobe=max(FFX_BROADCAST_FLOAT16(-FSR_RCAS_LIMIT),min(ffxMax3Half(lobeR,lobeG,lobeB),FFX_BROADCAST_FLOAT16(0.0)))*FFX_UINT32_TO_FLOAT16X2(con.y).x; + // Apply noise removal. + #ifdef FSR_RCAS_DENOISE + lobe*=nz; + #endif + // Resolve, which needs the medium precision rcp approximation to avoid visible tonality changes. + FfxFloat16 rcpL=ffxApproximateReciprocalMediumHalf(FFX_BROADCAST_FLOAT16(4.0)*lobe+FFX_BROADCAST_FLOAT16(1.0)); + pixR=(lobe*bR+lobe*dR+lobe*hR+lobe*fR+eR)*rcpL; + pixG=(lobe*bG+lobe*dG+lobe*hG+lobe*fG+eG)*rcpL; + pixB=(lobe*bB+lobe*dB+lobe*hB+lobe*fB+eB)*rcpL; +} +#endif +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// PACKED 16-BIT VERSION +//============================================================================================================================== +#if defined(FFX_GPU)&& FFX_HALF == 1 && defined(FSR_RCAS_HX2) + // Input callback prototypes that need to be implemented by the calling shader + FfxFloat16x4 FsrRcasLoadHx2(FfxInt16x2 p); + void FsrRcasInputHx2(inout FfxFloat16x2 r,inout FfxFloat16x2 g,inout FfxFloat16x2 b); +//------------------------------------------------------------------------------------------------------------------------------ + // Can be used to convert from packed Structures of Arrays to Arrays of Structures for store. + void FsrRcasDepackHx2(out FfxFloat16x4 pix0,out FfxFloat16x4 pix1,FfxFloat16x2 pixR,FfxFloat16x2 pixG,FfxFloat16x2 pixB){ + #ifdef FFX_HLSL + // Invoke a slower path for DX only, since it won't allow uninitialized values. + pix0.a=pix1.a=0.0; + #endif + pix0.rgb=FfxFloat16x3(pixR.x,pixG.x,pixB.x); + pix1.rgb=FfxFloat16x3(pixR.y,pixG.y,pixB.y);} +//------------------------------------------------------------------------------------------------------------------------------ + void FsrRcasHx2( + // Output values are for 2 8x8 tiles in a 16x8 region. + // pix.x = left 8x8 tile + // pix.y = right 8x8 tile + // This enables later processing to easily be packed as well. + out FfxFloat16x2 pixR, + out FfxFloat16x2 pixG, + out FfxFloat16x2 pixB, + #ifdef FSR_RCAS_PASSTHROUGH_ALPHA + out FfxFloat16x2 pixA, + #endif + FfxUInt32x2 ip, // Integer pixel position in output. + FfxUInt32x4 con){ // Constant generated by RcasSetup(). + // No scaling algorithm uses minimal 3x3 pixel neighborhood. + FfxInt16x2 sp0=FfxInt16x2(ip); + FfxFloat16x3 b0=FsrRcasLoadHx2(sp0+FfxInt16x2( 0,-1)).rgb; + FfxFloat16x3 d0=FsrRcasLoadHx2(sp0+FfxInt16x2(-1, 0)).rgb; + #ifdef FSR_RCAS_PASSTHROUGH_ALPHA + FfxFloat16x4 ee0=FsrRcasLoadHx2(sp0); + FfxFloat16x3 e0=ee0.rgb;pixA.r=ee0.a; + #else + FfxFloat16x3 e0=FsrRcasLoadHx2(sp0).rgb; + #endif + FfxFloat16x3 f0=FsrRcasLoadHx2(sp0+FfxInt16x2( 1, 0)).rgb; + FfxFloat16x3 h0=FsrRcasLoadHx2(sp0+FfxInt16x2( 0, 1)).rgb; + FfxInt16x2 sp1=sp0+FfxInt16x2(8,0); + FfxFloat16x3 b1=FsrRcasLoadHx2(sp1+FfxInt16x2( 0,-1)).rgb; + FfxFloat16x3 d1=FsrRcasLoadHx2(sp1+FfxInt16x2(-1, 0)).rgb; + #ifdef FSR_RCAS_PASSTHROUGH_ALPHA + FfxFloat16x4 ee1=FsrRcasLoadHx2(sp1); + FfxFloat16x3 e1=ee1.rgb;pixA.g=ee1.a; + #else + FfxFloat16x3 e1=FsrRcasLoadHx2(sp1).rgb; + #endif + FfxFloat16x3 f1=FsrRcasLoadHx2(sp1+FfxInt16x2( 1, 0)).rgb; + FfxFloat16x3 h1=FsrRcasLoadHx2(sp1+FfxInt16x2( 0, 1)).rgb; + // Arrays of Structures to Structures of Arrays conversion. + FfxFloat16x2 bR=FfxFloat16x2(b0.r,b1.r); + FfxFloat16x2 bG=FfxFloat16x2(b0.g,b1.g); + FfxFloat16x2 bB=FfxFloat16x2(b0.b,b1.b); + FfxFloat16x2 dR=FfxFloat16x2(d0.r,d1.r); + FfxFloat16x2 dG=FfxFloat16x2(d0.g,d1.g); + FfxFloat16x2 dB=FfxFloat16x2(d0.b,d1.b); + FfxFloat16x2 eR=FfxFloat16x2(e0.r,e1.r); + FfxFloat16x2 eG=FfxFloat16x2(e0.g,e1.g); + FfxFloat16x2 eB=FfxFloat16x2(e0.b,e1.b); + FfxFloat16x2 fR=FfxFloat16x2(f0.r,f1.r); + FfxFloat16x2 fG=FfxFloat16x2(f0.g,f1.g); + FfxFloat16x2 fB=FfxFloat16x2(f0.b,f1.b); + FfxFloat16x2 hR=FfxFloat16x2(h0.r,h1.r); + FfxFloat16x2 hG=FfxFloat16x2(h0.g,h1.g); + FfxFloat16x2 hB=FfxFloat16x2(h0.b,h1.b); + // Run optional input transform. + FsrRcasInputHx2(bR,bG,bB); + FsrRcasInputHx2(dR,dG,dB); + FsrRcasInputHx2(eR,eG,eB); + FsrRcasInputHx2(fR,fG,fB); + FsrRcasInputHx2(hR,hG,hB); + // Luma times 2. + FfxFloat16x2 bL=bB*FFX_BROADCAST_FLOAT16X2(0.5)+(bR*FFX_BROADCAST_FLOAT16X2(0.5)+bG); + FfxFloat16x2 dL=dB*FFX_BROADCAST_FLOAT16X2(0.5)+(dR*FFX_BROADCAST_FLOAT16X2(0.5)+dG); + FfxFloat16x2 eL=eB*FFX_BROADCAST_FLOAT16X2(0.5)+(eR*FFX_BROADCAST_FLOAT16X2(0.5)+eG); + FfxFloat16x2 fL=fB*FFX_BROADCAST_FLOAT16X2(0.5)+(fR*FFX_BROADCAST_FLOAT16X2(0.5)+fG); + FfxFloat16x2 hL=hB*FFX_BROADCAST_FLOAT16X2(0.5)+(hR*FFX_BROADCAST_FLOAT16X2(0.5)+hG); + // Noise detection. + FfxFloat16x2 nz=FFX_BROADCAST_FLOAT16X2(0.25)*bL+FFX_BROADCAST_FLOAT16X2(0.25)*dL+FFX_BROADCAST_FLOAT16X2(0.25)*fL+FFX_BROADCAST_FLOAT16X2(0.25)*hL-eL; + nz=ffxSaturate(abs(nz)*ffxApproximateReciprocalMediumHalf(ffxMax3Half(ffxMax3Half(bL,dL,eL),fL,hL)-ffxMin3Half(ffxMin3Half(bL,dL,eL),fL,hL))); + nz=FFX_BROADCAST_FLOAT16X2(-0.5)*nz+FFX_BROADCAST_FLOAT16X2(1.0); + // Min and max of ring. + FfxFloat16x2 mn4R=min(ffxMin3Half(bR,dR,fR),hR); + FfxFloat16x2 mn4G=min(ffxMin3Half(bG,dG,fG),hG); + FfxFloat16x2 mn4B=min(ffxMin3Half(bB,dB,fB),hB); + FfxFloat16x2 mx4R=max(ffxMax3Half(bR,dR,fR),hR); + FfxFloat16x2 mx4G=max(ffxMax3Half(bG,dG,fG),hG); + FfxFloat16x2 mx4B=max(ffxMax3Half(bB,dB,fB),hB); + // Immediate constants for peak range. + FfxFloat16x2 peakC=FfxFloat16x2(1.0,-1.0*4.0); + // Limiters, these need to be high precision RCPs. + FfxFloat16x2 hitMinR=mn4R*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mx4R); + FfxFloat16x2 hitMinG=mn4G*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mx4G); + FfxFloat16x2 hitMinB=mn4B*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mx4B); + FfxFloat16x2 hitMaxR=(peakC.x-mx4R)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mn4R+peakC.y); + FfxFloat16x2 hitMaxG=(peakC.x-mx4G)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mn4G+peakC.y); + FfxFloat16x2 hitMaxB=(peakC.x-mx4B)*ffxReciprocalHalf(FFX_BROADCAST_FLOAT16X2(4.0)*mn4B+peakC.y); + FfxFloat16x2 lobeR=max(-hitMinR,hitMaxR); + FfxFloat16x2 lobeG=max(-hitMinG,hitMaxG); + FfxFloat16x2 lobeB=max(-hitMinB,hitMaxB); + FfxFloat16x2 lobe=max(FFX_BROADCAST_FLOAT16X2(-FSR_RCAS_LIMIT),min(ffxMax3Half(lobeR,lobeG,lobeB),FFX_BROADCAST_FLOAT16X2(0.0)))*FFX_BROADCAST_FLOAT16X2(FFX_UINT32_TO_FLOAT16X2(con.y).x); + // Apply noise removal. + #ifdef FSR_RCAS_DENOISE + lobe*=nz; + #endif + // Resolve, which needs the medium precision rcp approximation to avoid visible tonality changes. + FfxFloat16x2 rcpL=ffxApproximateReciprocalMediumHalf(FFX_BROADCAST_FLOAT16X2(4.0)*lobe+FFX_BROADCAST_FLOAT16X2(1.0)); + pixR=(lobe*bR+lobe*dR+lobe*hR+lobe*fR+eR)*rcpL; + pixG=(lobe*bG+lobe*dG+lobe*hG+lobe*fG+eG)*rcpL; + pixB=(lobe*bB+lobe*dB+lobe*hB+lobe*fB+eB)*rcpL;} +#endif +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// +// FSR - [LFGA] LINEAR FILM GRAIN APPLICATOR +// +//------------------------------------------------------------------------------------------------------------------------------ +// Adding output-resolution film grain after scaling is a good way to mask both rendering and scaling artifacts. +// Suggest using tiled blue noise as film grain input, with peak noise frequency set for a specific look and feel. +// The 'Lfga*()' functions provide a convenient way to introduce grain. +// These functions limit grain based on distance to signal limits. +// This is done so that the grain is temporally energy preserving, and thus won't modify image tonality. +// Grain application should be done in a linear colorspace. +// The grain should be temporally changing, but have a temporal sum per pixel that adds to zero (non-biased). +//------------------------------------------------------------------------------------------------------------------------------ +// Usage, +// FsrLfga*( +// color, // In/out linear colorspace color {0 to 1} ranged. +// grain, // Per pixel grain texture value {-0.5 to 0.5} ranged, input is 3-channel to support colored grain. +// amount); // Amount of grain (0 to 1} ranged. +//------------------------------------------------------------------------------------------------------------------------------ +// Example if grain texture is monochrome: 'FsrLfgaF(color,ffxBroadcast3(grain),amount)' +//============================================================================================================================== +#if defined(FFX_GPU) + // Maximum grain is the minimum distance to the signal limit. + void FsrLfgaF(inout FfxFloat32x3 c, FfxFloat32x3 t, FfxFloat32 a) + { + c += (t * ffxBroadcast3(a)) * ffxMin(ffxBroadcast3(1.0) - c, c); + } +#endif +//============================================================================================================================== +#if defined(FFX_GPU)&& FFX_HALF == 1 + // Half precision version (slower). + void FsrLfgaH(inout FfxFloat16x3 c, FfxFloat16x3 t, FfxFloat16 a) + { + c += (t * FFX_BROADCAST_FLOAT16X3(a)) * min(FFX_BROADCAST_FLOAT16X3(1.0) - c, c); + } + //------------------------------------------------------------------------------------------------------------------------------ + // Packed half precision version (faster). + void FsrLfgaHx2(inout FfxFloat16x2 cR,inout FfxFloat16x2 cG,inout FfxFloat16x2 cB,FfxFloat16x2 tR,FfxFloat16x2 tG,FfxFloat16x2 tB,FfxFloat16 a){ + cR+=(tR*FFX_BROADCAST_FLOAT16X2(a))*min(FFX_BROADCAST_FLOAT16X2(1.0)-cR,cR);cG+=(tG*FFX_BROADCAST_FLOAT16X2(a))*min(FFX_BROADCAST_FLOAT16X2(1.0)-cG,cG);cB+=(tB*FFX_BROADCAST_FLOAT16X2(a))*min(FFX_BROADCAST_FLOAT16X2(1.0)-cB,cB);} +#endif +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// +// FSR - [SRTM] SIMPLE REVERSIBLE TONE-MAPPER +// +//------------------------------------------------------------------------------------------------------------------------------ +// This provides a way to take linear HDR color {0 to FP16_MAX} and convert it into a temporary {0 to 1} ranged post-tonemapped linear. +// The tonemapper preserves RGB ratio, which helps maintain HDR color bleed during filtering. +//------------------------------------------------------------------------------------------------------------------------------ +// Reversible tonemapper usage, +// FsrSrtm*(color); // {0 to FP16_MAX} converted to {0 to 1}. +// FsrSrtmInv*(color); // {0 to 1} converted into {0 to 32768, output peak safe for FP16}. +//============================================================================================================================== +#if defined(FFX_GPU) + void FsrSrtmF(inout FfxFloat32x3 c) + { + c *= ffxBroadcast3(rcp(ffxMax3(c.r, c.g, c.b) + FfxFloat32(1.0))); + } + // The extra max solves the c=1.0 case (which is a /0). + void FsrSrtmInvF(inout FfxFloat32x3 c){c*=ffxBroadcast3(rcp(max(FfxFloat32(1.0/32768.0),FfxFloat32(1.0)-ffxMax3(c.r,c.g,c.b))));} +#endif +//============================================================================================================================== +#if defined(FFX_GPU )&& FFX_HALF == 1 + void FsrSrtmH(inout FfxFloat16x3 c) + { + c *= FFX_BROADCAST_FLOAT16X3(ffxReciprocalHalf(ffxMax3Half(c.r, c.g, c.b) + FFX_BROADCAST_FLOAT16(1.0))); + } + void FsrSrtmInvH(inout FfxFloat16x3 c) + { + c *= FFX_BROADCAST_FLOAT16X3(ffxReciprocalHalf(max(FFX_BROADCAST_FLOAT16(1.0 / 32768.0), FFX_BROADCAST_FLOAT16(1.0) - ffxMax3Half(c.r, c.g, c.b)))); + } + //------------------------------------------------------------------------------------------------------------------------------ + void FsrSrtmHx2(inout FfxFloat16x2 cR, inout FfxFloat16x2 cG, inout FfxFloat16x2 cB) + { + FfxFloat16x2 rcp = ffxReciprocalHalf(ffxMax3Half(cR, cG, cB) + FFX_BROADCAST_FLOAT16X2(1.0)); + cR *= rcp; + cG *= rcp; + cB *= rcp; + } + void FsrSrtmInvHx2(inout FfxFloat16x2 cR,inout FfxFloat16x2 cG,inout FfxFloat16x2 cB) + { + FfxFloat16x2 rcp=ffxReciprocalHalf(max(FFX_BROADCAST_FLOAT16X2(1.0/32768.0),FFX_BROADCAST_FLOAT16X2(1.0)-ffxMax3Half(cR,cG,cB))); + cR*=rcp; + cG*=rcp; + cB*=rcp; + } +#endif +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//_____________________________________________________________/\_______________________________________________________________ +//============================================================================================================================== +// +// FSR - [TEPD] TEMPORAL ENERGY PRESERVING DITHER +// +//------------------------------------------------------------------------------------------------------------------------------ +// Temporally energy preserving dithered {0 to 1} linear to gamma 2.0 conversion. +// Gamma 2.0 is used so that the conversion back to linear is just to square the color. +// The conversion comes in 8-bit and 10-bit modes, designed for output to 8-bit UNORM or 10:10:10:2 respectively. +// Given good non-biased temporal blue noise as dither input, +// the output dither will temporally conserve energy. +// This is done by choosing the linear nearest step point instead of perceptual nearest. +// See code below for details. +//------------------------------------------------------------------------------------------------------------------------------ +// DX SPEC RULES FOR FLOAT->UNORM 8-BIT CONVERSION +// =============================================== +// - Output is 'FfxUInt32(floor(saturate(n)*255.0+0.5))'. +// - Thus rounding is to nearest. +// - NaN gets converted to zero. +// - INF is clamped to {0.0 to 1.0}. +//============================================================================================================================== +#if defined(FFX_GPU) + // Hand tuned integer position to dither value, with more values than simple checkerboard. + // Only 32-bit has enough precision for this compddation. + // Output is {0 to <1}. + FfxFloat32 FsrTepdDitF(FfxUInt32x2 p, FfxUInt32 f) + { + FfxFloat32 x = FfxFloat32(p.x + f); + FfxFloat32 y = FfxFloat32(p.y); + // The 1.61803 golden ratio. + FfxFloat32 a = FfxFloat32((1.0 + ffxSqrt(5.0f)) / 2.0); + // Number designed to provide a good visual pattern. + FfxFloat32 b = FfxFloat32(1.0 / 3.69); + x = x * a + (y * b); + return ffxFract(x); + } + //------------------------------------------------------------------------------------------------------------------------------ + // This version is 8-bit gamma 2.0. + // The 'c' input is {0 to 1}. + // Output is {0 to 1} ready for image store. + void FsrTepdC8F(inout FfxFloat32x3 c, FfxFloat32 dit) + { + FfxFloat32x3 n = ffxSqrt(c); + n = floor(n * ffxBroadcast3(255.0)) * ffxBroadcast3(1.0 / 255.0); + FfxFloat32x3 a = n * n; + FfxFloat32x3 b = n + ffxBroadcast3(1.0 / 255.0); + b = b * b; + // Ratio of 'a' to 'b' required to produce 'c'. + // ffxApproximateReciprocal() won't work here (at least for very high dynamic ranges). + // ffxApproximateReciprocalMedium() is an IADD,FMA,MUL. + FfxFloat32x3 r = (c - b) * ffxApproximateReciprocalMedium(a - b); + // Use the ratio as a cutoff to choose 'a' or 'b'. + // ffxIsGreaterThanZero() is a MUL. + c = ffxSaturate(n + ffxIsGreaterThanZero(ffxBroadcast3(dit) - r) * ffxBroadcast3(1.0 / 255.0)); + } + //------------------------------------------------------------------------------------------------------------------------------ + // This version is 10-bit gamma 2.0. + // The 'c' input is {0 to 1}. + // Output is {0 to 1} ready for image store. + void FsrTepdC10F(inout FfxFloat32x3 c, FfxFloat32 dit) + { + FfxFloat32x3 n = ffxSqrt(c); + n = floor(n * ffxBroadcast3(1023.0)) * ffxBroadcast3(1.0 / 1023.0); + FfxFloat32x3 a = n * n; + FfxFloat32x3 b = n + ffxBroadcast3(1.0 / 1023.0); + b = b * b; + FfxFloat32x3 r = (c - b) * ffxApproximateReciprocalMedium(a - b); + c = ffxSaturate(n + ffxIsGreaterThanZero(ffxBroadcast3(dit) - r) * ffxBroadcast3(1.0 / 1023.0)); + } +#endif +//============================================================================================================================== +#if defined(FFX_GPU)&& FFX_HALF == 1 + FfxFloat16 FsrTepdDitH(FfxUInt32x2 p, FfxUInt32 f) + { + FfxFloat32 x = FfxFloat32(p.x + f); + FfxFloat32 y = FfxFloat32(p.y); + FfxFloat32 a = FfxFloat32((1.0 + ffxSqrt(5.0f)) / 2.0); + FfxFloat32 b = FfxFloat32(1.0 / 3.69); + x = x * a + (y * b); + return FfxFloat16(ffxFract(x)); + } + //------------------------------------------------------------------------------------------------------------------------------ + void FsrTepdC8H(inout FfxFloat16x3 c, FfxFloat16 dit) + { + FfxFloat16x3 n = sqrt(c); + n = floor(n * FFX_BROADCAST_FLOAT16X3(255.0)) * FFX_BROADCAST_FLOAT16X3(1.0 / 255.0); + FfxFloat16x3 a = n * n; + FfxFloat16x3 b = n + FFX_BROADCAST_FLOAT16X3(1.0 / 255.0); + b = b * b; + FfxFloat16x3 r = (c - b) * ffxApproximateReciprocalMediumHalf(a - b); + c = ffxSaturate(n + ffxIsGreaterThanZeroHalf(FFX_BROADCAST_FLOAT16X3(dit) - r) * FFX_BROADCAST_FLOAT16X3(1.0 / 255.0)); + } + //------------------------------------------------------------------------------------------------------------------------------ + void FsrTepdC10H(inout FfxFloat16x3 c, FfxFloat16 dit) + { + FfxFloat16x3 n = sqrt(c); + n = floor(n * FFX_BROADCAST_FLOAT16X3(1023.0)) * FFX_BROADCAST_FLOAT16X3(1.0 / 1023.0); + FfxFloat16x3 a = n * n; + FfxFloat16x3 b = n + FFX_BROADCAST_FLOAT16X3(1.0 / 1023.0); + b = b * b; + FfxFloat16x3 r = (c - b) * ffxApproximateReciprocalMediumHalf(a - b); + c = ffxSaturate(n + ffxIsGreaterThanZeroHalf(FFX_BROADCAST_FLOAT16X3(dit) - r) * FFX_BROADCAST_FLOAT16X3(1.0 / 1023.0)); + } + //============================================================================================================================== + // This computes dither for positions 'p' and 'p+{8,0}'. + FfxFloat16x2 FsrTepdDitHx2(FfxUInt32x2 p, FfxUInt32 f) + { + FfxFloat32x2 x; + x.x = FfxFloat32(p.x + f); + x.y = x.x + FfxFloat32(8.0); + FfxFloat32 y = FfxFloat32(p.y); + FfxFloat32 a = FfxFloat32((1.0 + ffxSqrt(5.0f)) / 2.0); + FfxFloat32 b = FfxFloat32(1.0 / 3.69); + x = x * ffxBroadcast2(a) + ffxBroadcast2(y * b); + return FfxFloat16x2(ffxFract(x)); + } + //------------------------------------------------------------------------------------------------------------------------------ + void FsrTepdC8Hx2(inout FfxFloat16x2 cR, inout FfxFloat16x2 cG, inout FfxFloat16x2 cB, FfxFloat16x2 dit) + { + FfxFloat16x2 nR = sqrt(cR); + FfxFloat16x2 nG = sqrt(cG); + FfxFloat16x2 nB = sqrt(cB); + nR = floor(nR * FFX_BROADCAST_FLOAT16X2(255.0)) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + nG = floor(nG * FFX_BROADCAST_FLOAT16X2(255.0)) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + nB = floor(nB * FFX_BROADCAST_FLOAT16X2(255.0)) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + FfxFloat16x2 aR = nR * nR; + FfxFloat16x2 aG = nG * nG; + FfxFloat16x2 aB = nB * nB; + FfxFloat16x2 bR = nR + FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + bR = bR * bR; + FfxFloat16x2 bG = nG + FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + bG = bG * bG; + FfxFloat16x2 bB = nB + FFX_BROADCAST_FLOAT16X2(1.0 / 255.0); + bB = bB * bB; + FfxFloat16x2 rR = (cR - bR) * ffxApproximateReciprocalMediumHalf(aR - bR); + FfxFloat16x2 rG = (cG - bG) * ffxApproximateReciprocalMediumHalf(aG - bG); + FfxFloat16x2 rB = (cB - bB) * ffxApproximateReciprocalMediumHalf(aB - bB); + cR = ffxSaturate(nR + ffxIsGreaterThanZeroHalf(dit - rR) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0)); + cG = ffxSaturate(nG + ffxIsGreaterThanZeroHalf(dit - rG) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0)); + cB = ffxSaturate(nB + ffxIsGreaterThanZeroHalf(dit - rB) * FFX_BROADCAST_FLOAT16X2(1.0 / 255.0)); + } + //------------------------------------------------------------------------------------------------------------------------------ + void FsrTepdC10Hx2(inout FfxFloat16x2 cR,inout FfxFloat16x2 cG,inout FfxFloat16x2 cB,FfxFloat16x2 dit){ + FfxFloat16x2 nR=sqrt(cR); + FfxFloat16x2 nG=sqrt(cG); + FfxFloat16x2 nB=sqrt(cB); + nR=floor(nR*FFX_BROADCAST_FLOAT16X2(1023.0))*FFX_BROADCAST_FLOAT16X2(1.0/1023.0); + nG=floor(nG*FFX_BROADCAST_FLOAT16X2(1023.0))*FFX_BROADCAST_FLOAT16X2(1.0/1023.0); + nB=floor(nB*FFX_BROADCAST_FLOAT16X2(1023.0))*FFX_BROADCAST_FLOAT16X2(1.0/1023.0); + FfxFloat16x2 aR=nR*nR; + FfxFloat16x2 aG=nG*nG; + FfxFloat16x2 aB=nB*nB; + FfxFloat16x2 bR=nR+FFX_BROADCAST_FLOAT16X2(1.0/1023.0);bR=bR*bR; + FfxFloat16x2 bG=nG+FFX_BROADCAST_FLOAT16X2(1.0/1023.0);bG=bG*bG; + FfxFloat16x2 bB=nB+FFX_BROADCAST_FLOAT16X2(1.0/1023.0);bB=bB*bB; + FfxFloat16x2 rR=(cR-bR)*ffxApproximateReciprocalMediumHalf(aR-bR); + FfxFloat16x2 rG=(cG-bG)*ffxApproximateReciprocalMediumHalf(aG-bG); + FfxFloat16x2 rB=(cB-bB)*ffxApproximateReciprocalMediumHalf(aB-bB); + cR=ffxSaturate(nR+ffxIsGreaterThanZeroHalf(dit-rR)*FFX_BROADCAST_FLOAT16X2(1.0/1023.0)); + cG=ffxSaturate(nG+ffxIsGreaterThanZeroHalf(dit-rG)*FFX_BROADCAST_FLOAT16X2(1.0/1023.0)); + cB = ffxSaturate(nB + ffxIsGreaterThanZeroHalf(dit - rB) * FFX_BROADCAST_FLOAT16X2(1.0 / 1023.0)); +} +#endif diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h.meta new file mode 100644 index 0000000..9691905 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr1.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 7524e42f73f97f34bbeb414ea412a808 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h new file mode 100644 index 0000000..7bd5892 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h @@ -0,0 +1,295 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_ACCUMULATE_H +#define FFX_FSR2_ACCUMULATE_H + +FfxFloat32 GetPxHrVelocity(FfxFloat32x2 fMotionVector) +{ + return length(fMotionVector * DisplaySize()); +} +#if FFX_HALF +FFX_MIN16_F GetPxHrVelocity(FFX_MIN16_F2 fMotionVector) +{ + return length(fMotionVector * FFX_MIN16_F2(DisplaySize())); +} +#endif + +void Accumulate(const AccumulationPassCommonParams params, FFX_PARAMETER_INOUT FfxFloat32x3 fHistoryColor, FfxFloat32x3 fAccumulation, FFX_PARAMETER_IN FfxFloat32x4 fUpsampledColorAndWeight) +{ + // Aviod invalid values when accumulation and upsampled weight is 0 + fAccumulation = ffxMax(FSR2_EPSILON.xxx, fAccumulation + fUpsampledColorAndWeight.www); + +#if FFX_FSR2_OPTION_HDR_COLOR_INPUT + //YCoCg -> RGB -> Tonemap -> YCoCg (Use RGB tonemapper to avoid color desaturation) + fUpsampledColorAndWeight.xyz = RGBToYCoCg(Tonemap(YCoCgToRGB(fUpsampledColorAndWeight.xyz))); + fHistoryColor = RGBToYCoCg(Tonemap(YCoCgToRGB(fHistoryColor))); +#endif + + const FfxFloat32x3 fAlpha = fUpsampledColorAndWeight.www / fAccumulation; + fHistoryColor = ffxLerp(fHistoryColor, fUpsampledColorAndWeight.xyz, fAlpha); + + fHistoryColor = YCoCgToRGB(fHistoryColor); + +#if FFX_FSR2_OPTION_HDR_COLOR_INPUT + fHistoryColor = InverseTonemap(fHistoryColor); +#endif +} + +void RectifyHistory( + const AccumulationPassCommonParams params, + RectificationBox clippingBox, + FFX_PARAMETER_INOUT FfxFloat32x3 fHistoryColor, + FFX_PARAMETER_INOUT FfxFloat32x3 fAccumulation, + FfxFloat32 fLockContributionThisFrame, + FfxFloat32 fTemporalReactiveFactor, + FfxFloat32 fLumaInstabilityFactor) +{ + FfxFloat32 fScaleFactorInfluence = ffxMin(20.0f, ffxPow(FfxFloat32(1.0f / length(DownscaleFactor().x * DownscaleFactor().y)), 3.0f)); + + const FfxFloat32 fVecolityFactor = ffxSaturate(params.fHrVelocity / 20.0f); + const FfxFloat32 fBoxScaleT = ffxMax(params.fDepthClipFactor, ffxMax(params.fAccumulationMask, fVecolityFactor)); + FfxFloat32 fBoxScale = ffxLerp(fScaleFactorInfluence, 1.0f, fBoxScaleT); + + FfxFloat32x3 fScaledBoxVec = clippingBox.boxVec * fBoxScale; + FfxFloat32x3 boxMin = clippingBox.boxCenter - fScaledBoxVec; + FfxFloat32x3 boxMax = clippingBox.boxCenter + fScaledBoxVec; + FfxFloat32x3 boxCenter = clippingBox.boxCenter; + FfxFloat32 boxVecSize = length(clippingBox.boxVec); + + boxMin = ffxMax(clippingBox.aabbMin, boxMin); + boxMax = ffxMin(clippingBox.aabbMax, boxMax); + + if (any(FFX_GREATER_THAN(boxMin, fHistoryColor)) || any(FFX_GREATER_THAN(fHistoryColor, boxMax))) { + + const FfxFloat32x3 fClampedHistoryColor = clamp(fHistoryColor, boxMin, boxMax); + + FfxFloat32x3 fHistoryContribution = ffxMax(fLumaInstabilityFactor, fLockContributionThisFrame).xxx; + + const FfxFloat32 fReactiveFactor = params.fDilatedReactiveFactor; + const FfxFloat32 fReactiveContribution = 1.0f - ffxPow(fReactiveFactor, 1.0f / 2.0f); + fHistoryContribution *= fReactiveContribution; + + // Scale history color using rectification info, also using accumulation mask to avoid potential invalid color protection + fHistoryColor = ffxLerp(fClampedHistoryColor, fHistoryColor, ffxSaturate(fHistoryContribution)); + + // Scale accumulation using rectification info + const FfxFloat32x3 fAccumulationMin = ffxMin(fAccumulation, FFX_BROADCAST_FLOAT32X3(0.1f)); + fAccumulation = ffxLerp(fAccumulationMin, fAccumulation, ffxSaturate(fHistoryContribution)); + } +} + +void WriteUpscaledOutput(FfxInt32x2 iPxHrPos, FfxFloat32x3 fUpscaledColor) +{ + StoreUpscaledOutput(iPxHrPos, fUpscaledColor); +} + +void FinalizeLockStatus(const AccumulationPassCommonParams params, FfxFloat32x2 fLockStatus, FfxFloat32 fUpsampledWeight) +{ + // we expect similar motion for next frame + // kill lock if that location is outside screen, avoid locks to be clamped to screen borders + FfxFloat32x2 fEstimatedUvNextFrame = params.fHrUv - params.fMotionVector; + if (IsUvInside(fEstimatedUvNextFrame) == false) { + KillLock(fLockStatus); + } + else { + // Decrease lock lifetime + const FfxFloat32 fLifetimeDecreaseLanczosMax = FfxFloat32(JitterSequenceLength()) * FfxFloat32(fAverageLanczosWeightPerFrame); + const FfxFloat32 fLifetimeDecrease = FfxFloat32(fUpsampledWeight / fLifetimeDecreaseLanczosMax); + fLockStatus[LOCK_LIFETIME_REMAINING] = ffxMax(FfxFloat32(0), fLockStatus[LOCK_LIFETIME_REMAINING] - fLifetimeDecrease); + } + + StoreLockStatus(params.iPxHrPos, fLockStatus); +} + + +FfxFloat32x3 ComputeBaseAccumulationWeight(const AccumulationPassCommonParams params, FfxFloat32 fThisFrameReactiveFactor, FfxBoolean bInMotionLastFrame, FfxFloat32 fUpsampledWeight, LockState lockState) +{ + // Always assume max accumulation was reached + FfxFloat32 fBaseAccumulation = fMaxAccumulationLanczosWeight * FfxFloat32(params.bIsExistingSample) * (1.0f - fThisFrameReactiveFactor) * (1.0f - params.fDepthClipFactor); + + fBaseAccumulation = ffxMin(fBaseAccumulation, ffxLerp(fBaseAccumulation, fUpsampledWeight * 10.0f, ffxMax(FfxFloat32(bInMotionLastFrame), ffxSaturate(params.fHrVelocity * FfxFloat32(10))))); + + fBaseAccumulation = ffxMin(fBaseAccumulation, ffxLerp(fBaseAccumulation, fUpsampledWeight, ffxSaturate(params.fHrVelocity / FfxFloat32(20)))); + + return fBaseAccumulation.xxx; +} + +FfxFloat32 ComputeLumaInstabilityFactor(const AccumulationPassCommonParams params, RectificationBox clippingBox, FfxFloat32 fThisFrameReactiveFactor, FfxFloat32 fLuminanceDiff) +{ + const FfxFloat32 fUnormThreshold = 1.0f / 255.0f; + const FfxInt32 N_MINUS_1 = 0; + const FfxInt32 N_MINUS_2 = 1; + const FfxInt32 N_MINUS_3 = 2; + const FfxInt32 N_MINUS_4 = 3; + + FfxFloat32 fCurrentFrameLuma = clippingBox.boxCenter.x; + +#if FFX_FSR2_OPTION_HDR_COLOR_INPUT + fCurrentFrameLuma = fCurrentFrameLuma / (1.0f + ffxMax(0.0f, fCurrentFrameLuma)); +#endif + + fCurrentFrameLuma = round(fCurrentFrameLuma * 255.0f) / 255.0f; + + const FfxBoolean bSampleLumaHistory = (ffxMax(ffxMax(params.fDepthClipFactor, params.fAccumulationMask), fLuminanceDiff) < 0.1f) && (params.bIsNewSample == false); + FfxFloat32x4 fCurrentFrameLumaHistory = bSampleLumaHistory ? SampleLumaHistory(params.fReprojectedHrUv) : FFX_BROADCAST_FLOAT32X4(0.0f); + + FfxFloat32 fLumaInstability = 0.0f; + FfxFloat32 fDiffs0 = (fCurrentFrameLuma - fCurrentFrameLumaHistory[N_MINUS_1]); + + FfxFloat32 fMin = abs(fDiffs0); + + if (fMin >= fUnormThreshold) + { + for (int i = N_MINUS_2; i <= N_MINUS_4; i++) { + FfxFloat32 fDiffs1 = (fCurrentFrameLuma - fCurrentFrameLumaHistory[i]); + + if (sign(fDiffs0) == sign(fDiffs1)) { + + // Scale difference to protect historically similar values + const FfxFloat32 fMinBias = 1.0f; + fMin = ffxMin(fMin, abs(fDiffs1) * fMinBias); + } + } + + const FfxFloat32 fBoxSize = clippingBox.boxVec.x; + const FfxFloat32 fBoxSizeFactor = ffxPow(ffxSaturate(fBoxSize / 0.1f), 6.0f); + + fLumaInstability = FfxFloat32(fMin != abs(fDiffs0)) * fBoxSizeFactor; + fLumaInstability = FfxFloat32(fLumaInstability > fUnormThreshold); + + fLumaInstability *= 1.0f - ffxMax(params.fAccumulationMask, ffxPow(fThisFrameReactiveFactor, 1.0f / 6.0f)); + } + + //shift history + fCurrentFrameLumaHistory[N_MINUS_4] = fCurrentFrameLumaHistory[N_MINUS_3]; + fCurrentFrameLumaHistory[N_MINUS_3] = fCurrentFrameLumaHistory[N_MINUS_2]; + fCurrentFrameLumaHistory[N_MINUS_2] = fCurrentFrameLumaHistory[N_MINUS_1]; + fCurrentFrameLumaHistory[N_MINUS_1] = fCurrentFrameLuma; + + StoreLumaHistory(params.iPxHrPos, fCurrentFrameLumaHistory); + + return fLumaInstability * FfxFloat32(fCurrentFrameLumaHistory[N_MINUS_4] != 0); +} + +FfxFloat32 ComputeTemporalReactiveFactor(const AccumulationPassCommonParams params, FfxFloat32 fTemporalReactiveFactor) +{ + FfxFloat32 fNewFactor = ffxMin(0.99f, fTemporalReactiveFactor); + + fNewFactor = ffxMax(fNewFactor, ffxLerp(fNewFactor, 0.4f, ffxSaturate(params.fHrVelocity))); + + fNewFactor = ffxMax(fNewFactor * fNewFactor, ffxMax(params.fDepthClipFactor * 0.1f, params.fDilatedReactiveFactor)); + + // Force reactive factor for new samples + fNewFactor = params.bIsNewSample ? 1.0f : fNewFactor; + + if (ffxSaturate(params.fHrVelocity * 10.0f) >= 1.0f) { + fNewFactor = ffxMax(FSR2_EPSILON, fNewFactor) * -1.0f; + } + + return fNewFactor; +} + +AccumulationPassCommonParams InitParams(FfxInt32x2 iPxHrPos) +{ + AccumulationPassCommonParams params; + + params.iPxHrPos = iPxHrPos; + const FfxFloat32x2 fHrUv = (iPxHrPos + 0.5f) / DisplaySize(); + params.fHrUv = fHrUv; + + const FfxFloat32x2 fLrUvJittered = fHrUv + Jitter() / RenderSize(); + params.fLrUv_HwSampler = ClampUv(fLrUvJittered, RenderSize(), MaxRenderSize()); + + params.fMotionVector = GetMotionVector(iPxHrPos, fHrUv); + params.fHrVelocity = GetPxHrVelocity(params.fMotionVector); + + ComputeReprojectedUVs(params, params.fReprojectedHrUv, params.bIsExistingSample); + + params.fDepthClipFactor = ffxSaturate(SampleDepthClip(params.fLrUv_HwSampler)); + + const FfxFloat32x2 fDilatedReactiveMasks = SampleDilatedReactiveMasks(params.fLrUv_HwSampler); + params.fDilatedReactiveFactor = fDilatedReactiveMasks.x; + params.fAccumulationMask = fDilatedReactiveMasks.y; + params.bIsResetFrame = (0 == FrameIndex()); + + params.bIsNewSample = (params.bIsExistingSample == false || params.bIsResetFrame); + + return params; +} + +void Accumulate(FfxInt32x2 iPxHrPos) +{ + const AccumulationPassCommonParams params = InitParams(iPxHrPos); + + FfxFloat32x3 fHistoryColor = FfxFloat32x3(0, 0, 0); + FfxFloat32x2 fLockStatus; + InitializeNewLockSample(fLockStatus); + + FfxFloat32 fTemporalReactiveFactor = 0.0f; + FfxBoolean bInMotionLastFrame = FFX_FALSE; + LockState lockState = { FFX_FALSE , FFX_FALSE }; + if (params.bIsExistingSample && !params.bIsResetFrame) { + ReprojectHistoryColor(params, fHistoryColor, fTemporalReactiveFactor, bInMotionLastFrame); + lockState = ReprojectHistoryLockStatus(params, fLockStatus); + } + + FfxFloat32 fThisFrameReactiveFactor = ffxMax(params.fDilatedReactiveFactor, fTemporalReactiveFactor); + + FfxFloat32 fLuminanceDiff = 0.0f; + FfxFloat32 fLockContributionThisFrame = 0.0f; + UpdateLockStatus(params, fThisFrameReactiveFactor, lockState, fLockStatus, fLockContributionThisFrame, fLuminanceDiff); + + // Load upsampled input color + RectificationBox clippingBox; + FfxFloat32x4 fUpsampledColorAndWeight = ComputeUpsampledColorAndWeight(params, clippingBox, fThisFrameReactiveFactor); + + const FfxFloat32 fLumaInstabilityFactor = ComputeLumaInstabilityFactor(params, clippingBox, fThisFrameReactiveFactor, fLuminanceDiff); + + + FfxFloat32x3 fAccumulation = ComputeBaseAccumulationWeight(params, fThisFrameReactiveFactor, bInMotionLastFrame, fUpsampledColorAndWeight.w, lockState); + + if (params.bIsNewSample) { + fHistoryColor = YCoCgToRGB(fUpsampledColorAndWeight.xyz); + } + else { + RectifyHistory(params, clippingBox, fHistoryColor, fAccumulation, fLockContributionThisFrame, fThisFrameReactiveFactor, fLumaInstabilityFactor); + + Accumulate(params, fHistoryColor, fAccumulation, fUpsampledColorAndWeight); + } + + fHistoryColor = UnprepareRgb(fHistoryColor, Exposure()); + + FinalizeLockStatus(params, fLockStatus, fUpsampledColorAndWeight.w); + + // Get new temporal reactive factor + fTemporalReactiveFactor = ComputeTemporalReactiveFactor(params, fThisFrameReactiveFactor); + + StoreInternalColorAndWeight(iPxHrPos, FfxFloat32x4(fHistoryColor, fTemporalReactiveFactor)); + + // Output final color when RCAS is disabled +#if FFX_FSR2_OPTION_APPLY_SHARPENING == 0 + WriteUpscaledOutput(iPxHrPos, fHistoryColor); +#endif + StoreNewLocks(iPxHrPos, 0); +} + +#endif // FFX_FSR2_ACCUMULATE_H diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h.meta new file mode 100644 index 0000000..203a52f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: a04cb2522aaff1045869a272ed129964 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl new file mode 100644 index 0000000..747f380 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl @@ -0,0 +1,78 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_EXPOSURE 0 +#define FSR2_BIND_SRV_DILATED_REACTIVE_MASKS 1 +#if FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS +#define FSR2_BIND_SRV_DILATED_MOTION_VECTORS 2 +#else +#define FSR2_BIND_SRV_INPUT_MOTION_VECTORS 2 +#endif +#define FSR2_BIND_SRV_INTERNAL_UPSCALED 3 +#define FSR2_BIND_SRV_LOCK_STATUS 4 +#define FSR2_BIND_SRV_PREPARED_INPUT_COLOR 5 +#define FSR2_BIND_SRV_LANCZOS_LUT 6 +#define FSR2_BIND_SRV_UPSCALE_MAXIMUM_BIAS_LUT 7 +#define FSR2_BIND_SRV_SCENE_LUMINANCE_MIPS 8 +#define FSR2_BIND_SRV_AUTO_EXPOSURE 9 +#define FSR2_BIND_SRV_LUMA_HISTORY 10 + +#define FSR2_BIND_UAV_INTERNAL_UPSCALED 0 +#define FSR2_BIND_UAV_LOCK_STATUS 1 +#define FSR2_BIND_UAV_UPSCALED_OUTPUT 2 +#define FSR2_BIND_UAV_NEW_LOCKS 3 +#define FSR2_BIND_UAV_LUMA_HISTORY 4 + +#define FSR2_BIND_CB_FSR2 0 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" +#include "ffx_fsr2_sample.h" +#include "ffx_fsr2_upsample.h" +#include "ffx_fsr2_postprocess_lock_status.h" +#include "ffx_fsr2_reproject.h" +#include "ffx_fsr2_accumulate.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_PREFER_WAVE64 +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS(uint2 uGroupId : SV_GroupID, uint2 uGroupThreadId : SV_GroupThreadID) +{ + const uint GroupRows = (uint(DisplaySize().y) + FFX_FSR2_THREAD_GROUP_HEIGHT - 1) / FFX_FSR2_THREAD_GROUP_HEIGHT; + uGroupId.y = GroupRows - uGroupId.y - 1; + + uint2 uDispatchThreadId = uGroupId * uint2(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT) + uGroupThreadId; + + Accumulate(uDispatchThreadId); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl.meta new file mode 100644 index 0000000..cad5022 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_accumulate_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 356ec46d3f01672428b5a7a0de727548 +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl new file mode 100644 index 0000000..a78a8e3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl @@ -0,0 +1,85 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_OPAQUE_ONLY 0 +#define FSR2_BIND_SRV_INPUT_COLOR 1 +#define FSR2_BIND_UAV_AUTOREACTIVE 0 + +#define FSR2_BIND_CB_FSR2 0 +#define FSR2_BIND_CB_REACTIVE 1 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +#if defined(FSR2_BIND_CB_REACTIVE) +cbuffer cbGenerateReactive : FFX_FSR2_DECLARE_CB(FSR2_BIND_CB_REACTIVE) +{ + float scale; + float threshold; + float binaryValue; + uint flags; +}; +#endif + +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS(uint2 uGroupId : SV_GroupID, uint2 uGroupThreadId : SV_GroupThreadID) +{ + uint2 uDispatchThreadId = uGroupId * uint2(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT) + uGroupThreadId; + + float3 ColorPreAlpha = LoadOpaqueOnly( FFX_MIN16_I2(uDispatchThreadId) ).rgb; + float3 ColorPostAlpha = LoadInputColor(uDispatchThreadId).rgb; + + if (flags & FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_TONEMAP) + { + ColorPreAlpha = Tonemap(ColorPreAlpha); + ColorPostAlpha = Tonemap(ColorPostAlpha); + } + + if (flags & FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_INVERSETONEMAP) + { + ColorPreAlpha = InverseTonemap(ColorPreAlpha); + ColorPostAlpha = InverseTonemap(ColorPostAlpha); + } + + float out_reactive_value = 0.f; + float3 delta = abs(ColorPostAlpha - ColorPreAlpha); + + out_reactive_value = (flags & FFX_FSR2_AUTOREACTIVEFLAGS_USE_COMPONENTS_MAX) ? max(delta.x, max(delta.y, delta.z)) : length(delta); + out_reactive_value *= scale; + + out_reactive_value = (flags & FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_THRESHOLD) ? (out_reactive_value < threshold ? 0 : binaryValue) : out_reactive_value; + + rw_output_autoreactive[uDispatchThreadId] = out_reactive_value; +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl.meta new file mode 100644 index 0000000..2e93435 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_autogen_reactive_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cc76bd6f46792f3418a56b79eb5c959b +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h new file mode 100644 index 0000000..de79c82 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h @@ -0,0 +1,817 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#include "ffx_fsr2_resources.h" + +#if defined(FFX_GPU) +#ifdef __hlsl_dx_compiler +#pragma dxc diagnostic push +#pragma dxc diagnostic ignored "-Wambig-lit-shift" +#endif //__hlsl_dx_compiler +#include "ffx_core.h" +#ifdef __hlsl_dx_compiler +#pragma dxc diagnostic pop +#endif //__hlsl_dx_compiler +#endif // #if defined(FFX_GPU) + +#if defined(FFX_GPU) +#ifndef FFX_FSR2_PREFER_WAVE64 +#define FFX_FSR2_PREFER_WAVE64 +#endif // #if defined(FFX_GPU) + +#if defined(FFX_GPU) +#pragma warning(disable: 3205) // conversion from larger type to smaller +#endif // #if defined(FFX_GPU) + +#define DECLARE_SRV_REGISTER(regIndex) t##regIndex +#define DECLARE_UAV_REGISTER(regIndex) u##regIndex +#define DECLARE_CB_REGISTER(regIndex) b##regIndex +#define FFX_FSR2_DECLARE_SRV(regIndex) register(DECLARE_SRV_REGISTER(regIndex)) +#define FFX_FSR2_DECLARE_UAV(regIndex) register(DECLARE_UAV_REGISTER(regIndex)) +#define FFX_FSR2_DECLARE_CB(regIndex) register(DECLARE_CB_REGISTER(regIndex)) + +#if defined(FSR2_BIND_CB_FSR2) || defined(FFX_INTERNAL) + cbuffer cbFSR2 : FFX_FSR2_DECLARE_CB(FSR2_BIND_CB_FSR2) + { + FfxInt32x2 iRenderSize; + FfxInt32x2 iMaxRenderSize; + FfxInt32x2 iDisplaySize; + FfxInt32x2 iInputColorResourceDimensions; + FfxInt32x2 iLumaMipDimensions; + FfxInt32 iLumaMipLevelToUse; + FfxInt32 iFrameIndex; + + FfxFloat32x4 fDeviceToViewDepth; + FfxFloat32x2 fJitter; + FfxFloat32x2 fMotionVectorScale; + FfxFloat32x2 fDownscaleFactor; + FfxFloat32x2 fMotionVectorJitterCancellation; + FfxFloat32 fPreExposure; + FfxFloat32 fPreviousFramePreExposure; + FfxFloat32 fTanHalfFOV; + FfxFloat32 fJitterSequenceLength; + FfxFloat32 fDeltaTime; + FfxFloat32 fDynamicResChangeFactor; + FfxFloat32 fViewSpaceToMetersFactor; + + FfxInt32 iDummy; + }; + +#define FFX_FSR2_CONSTANT_BUFFER_1_SIZE (sizeof(cbFSR2) / 4) // Number of 32-bit values. This must be kept in sync with the cbFSR2 size. +#endif + +#if defined(FFX_GPU) +#define FFX_FSR2_ROOTSIG_STRINGIFY(p) FFX_FSR2_ROOTSIG_STR(p) +#define FFX_FSR2_ROOTSIG_STR(p) #p +#define FFX_FSR2_ROOTSIG [RootSignature( "DescriptorTable(UAV(u0, numDescriptors = " FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_RESOURCE_IDENTIFIER_COUNT) ")), " \ + "DescriptorTable(SRV(t0, numDescriptors = " FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_RESOURCE_IDENTIFIER_COUNT) ")), " \ + "RootConstants(num32BitConstants=" FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_CONSTANT_BUFFER_1_SIZE) ", b0), " \ + "StaticSampler(s0, filter = FILTER_MIN_MAG_MIP_POINT, " \ + "addressU = TEXTURE_ADDRESS_CLAMP, " \ + "addressV = TEXTURE_ADDRESS_CLAMP, " \ + "addressW = TEXTURE_ADDRESS_CLAMP, " \ + "comparisonFunc = COMPARISON_NEVER, " \ + "borderColor = STATIC_BORDER_COLOR_TRANSPARENT_BLACK), " \ + "StaticSampler(s1, filter = FILTER_MIN_MAG_MIP_LINEAR, " \ + "addressU = TEXTURE_ADDRESS_CLAMP, " \ + "addressV = TEXTURE_ADDRESS_CLAMP, " \ + "addressW = TEXTURE_ADDRESS_CLAMP, " \ + "comparisonFunc = COMPARISON_NEVER, " \ + "borderColor = STATIC_BORDER_COLOR_TRANSPARENT_BLACK)" )] + +#define FFX_FSR2_CONSTANT_BUFFER_2_SIZE 6 // Number of 32-bit values. This must be kept in sync with max( cbRCAS , cbSPD) size. + +#define FFX_FSR2_CB2_ROOTSIG [RootSignature( "DescriptorTable(UAV(u0, numDescriptors = " FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_RESOURCE_IDENTIFIER_COUNT) ")), " \ + "DescriptorTable(SRV(t0, numDescriptors = " FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_RESOURCE_IDENTIFIER_COUNT) ")), " \ + "RootConstants(num32BitConstants=" FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_CONSTANT_BUFFER_1_SIZE) ", b0), " \ + "RootConstants(num32BitConstants=" FFX_FSR2_ROOTSIG_STRINGIFY(FFX_FSR2_CONSTANT_BUFFER_2_SIZE) ", b1), " \ + "StaticSampler(s0, filter = FILTER_MIN_MAG_MIP_POINT, " \ + "addressU = TEXTURE_ADDRESS_CLAMP, " \ + "addressV = TEXTURE_ADDRESS_CLAMP, " \ + "addressW = TEXTURE_ADDRESS_CLAMP, " \ + "comparisonFunc = COMPARISON_NEVER, " \ + "borderColor = STATIC_BORDER_COLOR_TRANSPARENT_BLACK), " \ + "StaticSampler(s1, filter = FILTER_MIN_MAG_MIP_LINEAR, " \ + "addressU = TEXTURE_ADDRESS_CLAMP, " \ + "addressV = TEXTURE_ADDRESS_CLAMP, " \ + "addressW = TEXTURE_ADDRESS_CLAMP, " \ + "comparisonFunc = COMPARISON_NEVER, " \ + "borderColor = STATIC_BORDER_COLOR_TRANSPARENT_BLACK)" )] +#if defined(FFX_FSR2_EMBED_ROOTSIG) +#define FFX_FSR2_EMBED_ROOTSIG_CONTENT FFX_FSR2_ROOTSIG +#define FFX_FSR2_EMBED_CB2_ROOTSIG_CONTENT FFX_FSR2_CB2_ROOTSIG +#else +#define FFX_FSR2_EMBED_ROOTSIG_CONTENT +#define FFX_FSR2_EMBED_CB2_ROOTSIG_CONTENT +#endif // #if FFX_FSR2_EMBED_ROOTSIG +#endif // #if defined(FFX_GPU) + +// Declare and sample camera buffers as regular textures, unless overridden +#if !defined(UNITY_FSR2_TEX2D) +#define UNITY_FSR2_TEX2D(type) Texture2D +#endif +#if !defined(UNITY_FSR2_POS) +#define UNITY_FSR2_POS(pxPos) (pxPos) +#endif +#if !defined(UNITY_FSR2_UV) +#define UNITY_FSR2_UV(uv) (uv) +#endif + +/* Define getter functions in the order they are defined in the CB! */ +FfxInt32x2 RenderSize() +{ + return iRenderSize; +} + +FfxInt32x2 MaxRenderSize() +{ + return iMaxRenderSize; +} + +FfxInt32x2 DisplaySize() +{ + return iDisplaySize; +} + +FfxInt32x2 InputColorResourceDimensions() +{ + return iInputColorResourceDimensions; +} + +FfxInt32x2 LumaMipDimensions() +{ + return iLumaMipDimensions; +} + +FfxInt32 LumaMipLevelToUse() +{ + return iLumaMipLevelToUse; +} + +FfxInt32 FrameIndex() +{ + return iFrameIndex; +} + +FfxFloat32x2 Jitter() +{ + return fJitter; +} + +FfxFloat32x4 DeviceToViewSpaceTransformFactors() +{ + return fDeviceToViewDepth; +} + +FfxFloat32x2 MotionVectorScale() +{ + return fMotionVectorScale; +} + +FfxFloat32x2 DownscaleFactor() +{ + return fDownscaleFactor; +} + +FfxFloat32x2 MotionVectorJitterCancellation() +{ + return fMotionVectorJitterCancellation; +} + +FfxFloat32 PreExposure() +{ + return fPreExposure; +} + +FfxFloat32 PreviousFramePreExposure() +{ + return fPreviousFramePreExposure; +} + +FfxFloat32 TanHalfFoV() +{ + return fTanHalfFOV; +} + +FfxFloat32 JitterSequenceLength() +{ + return fJitterSequenceLength; +} + +FfxFloat32 DeltaTime() +{ + return fDeltaTime; +} + +FfxFloat32 DynamicResChangeFactor() +{ + return fDynamicResChangeFactor; +} + +FfxFloat32 ViewSpaceToMetersFactor() +{ + return fViewSpaceToMetersFactor; +} + + +SamplerState s_PointClamp : register(s0); +SamplerState s_LinearClamp : register(s1); + +// SRVs +#if defined(FFX_INTERNAL) + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_opaque_only : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_OPAQUE_ONLY); + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_color_jittered : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_COLOR); + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_motion_vectors : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_MOTION_VECTORS); + UNITY_FSR2_TEX2D(FfxFloat32) r_input_depth : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_DEPTH); + Texture2D r_input_exposure : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_EXPOSURE); + Texture2D r_auto_exposure : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_AUTO_EXPOSURE); + Texture2D r_reactive_mask : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_REACTIVE_MASK); + Texture2D r_transparency_and_composition_mask : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_TRANSPARENCY_AND_COMPOSITION_MASK); + Texture2D r_reconstructed_previous_nearest_depth : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_RECONSTRUCTED_PREVIOUS_NEAREST_DEPTH); + Texture2D r_dilated_motion_vectors : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_MOTION_VECTORS); + Texture2D r_previous_dilated_motion_vectors : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREVIOUS_DILATED_MOTION_VECTORS); + Texture2D r_dilatedDepth : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_DEPTH); + Texture2D r_internal_upscaled_color : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_UPSCALED_COLOR); + Texture2D r_lock_status : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_STATUS); + Texture2D r_lock_input_luma : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_INPUT_LUMA); + Texture2D r_new_locks : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_NEW_LOCKS); + Texture2D r_prepared_input_color : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREPARED_INPUT_COLOR); + Texture2D r_luma_history : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_LUMA_HISTORY); + Texture2D r_rcas_input : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_RCAS_INPUT); + Texture2D r_lanczos_lut : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_LANCZOS_LUT); + Texture2D r_imgMips : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE); + Texture2D r_upsample_maximum_bias_lut : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTITIER_UPSAMPLE_MAXIMUM_BIAS_LUT); + Texture2D r_dilated_reactive_masks : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_REACTIVE_MASKS); + Texture2D r_input_prev_color_pre_alpha : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR); + Texture2D r_input_prev_color_post_alpha : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR); + + Texture2D r_debug_out : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_DEBUG_OUTPUT); + + // UAV declarations + RWTexture2D rw_reconstructed_previous_nearest_depth : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_RECONSTRUCTED_PREVIOUS_NEAREST_DEPTH); + RWTexture2D rw_dilated_motion_vectors : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_MOTION_VECTORS); + RWTexture2D rw_dilatedDepth : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_DEPTH); + RWTexture2D rw_internal_upscaled_color : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_UPSCALED_COLOR); + RWTexture2D rw_lock_status : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_STATUS); + RWTexture2D rw_lock_input_luma : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_INPUT_LUMA); + RWTexture2D rw_new_locks : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_NEW_LOCKS); + RWTexture2D rw_prepared_input_color : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_PREPARED_INPUT_COLOR); + RWTexture2D rw_luma_history : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_LUMA_HISTORY); + RWTexture2D rw_upscaled_output : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_UPSCALED_OUTPUT); + + globallycoherent RWTexture2D rw_img_mip_shading_change : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_SHADING_CHANGE); + globallycoherent RWTexture2D rw_img_mip_5 : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_5); + RWTexture2D rw_dilated_reactive_masks : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_REACTIVE_MASKS); + RWTexture2D rw_auto_exposure : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_AUTO_EXPOSURE); + globallycoherent RWTexture2D rw_spd_global_atomic : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_SPD_ATOMIC_COUNT); + RWTexture2D rw_debug_out : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_DEBUG_OUTPUT); + + RWTexture2D rw_output_autoreactive : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_AUTOREACTIVE); + RWTexture2D rw_output_autocomposition : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_AUTOCOMPOSITION); + RWTexture2D rw_output_prev_color_pre_alpha : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR); + RWTexture2D rw_output_prev_color_post_alpha : FFX_FSR2_DECLARE_UAV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR); + +#else // #if defined(FFX_INTERNAL) + #if defined FSR2_BIND_SRV_INPUT_COLOR + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_color_jittered : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INPUT_COLOR); + #endif + #if defined FSR2_BIND_SRV_INPUT_OPAQUE_ONLY + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_opaque_only : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INPUT_OPAQUE_ONLY); + #endif + #if defined FSR2_BIND_SRV_INPUT_MOTION_VECTORS + UNITY_FSR2_TEX2D(FfxFloat32x4) r_input_motion_vectors : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INPUT_MOTION_VECTORS); + #endif + #if defined FSR2_BIND_SRV_INPUT_DEPTH + UNITY_FSR2_TEX2D(FfxFloat32) r_input_depth : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INPUT_DEPTH); + #endif + #if defined FSR2_BIND_SRV_INPUT_EXPOSURE + Texture2D r_input_exposure : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INPUT_EXPOSURE); + #endif + #if defined FSR2_BIND_SRV_AUTO_EXPOSURE + Texture2D r_auto_exposure : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_AUTO_EXPOSURE); + #endif + #if defined FSR2_BIND_SRV_REACTIVE_MASK + Texture2D r_reactive_mask : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_REACTIVE_MASK); + #endif + #if defined FSR2_BIND_SRV_TRANSPARENCY_AND_COMPOSITION_MASK + Texture2D r_transparency_and_composition_mask : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_TRANSPARENCY_AND_COMPOSITION_MASK); + #endif + #if defined FSR2_BIND_SRV_RECONSTRUCTED_PREV_NEAREST_DEPTH + Texture2D r_reconstructed_previous_nearest_depth : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_RECONSTRUCTED_PREV_NEAREST_DEPTH); + #endif + #if defined FSR2_BIND_SRV_DILATED_MOTION_VECTORS + Texture2D r_dilated_motion_vectors : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_DILATED_MOTION_VECTORS); + #endif + #if defined FSR2_BIND_SRV_PREVIOUS_DILATED_MOTION_VECTORS + Texture2D r_previous_dilated_motion_vectors : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_PREVIOUS_DILATED_MOTION_VECTORS); + #endif + #if defined FSR2_BIND_SRV_DILATED_DEPTH + Texture2D r_dilatedDepth : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_DILATED_DEPTH); + #endif + #if defined FSR2_BIND_SRV_INTERNAL_UPSCALED + Texture2D r_internal_upscaled_color : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_INTERNAL_UPSCALED); + #endif + #if defined FSR2_BIND_SRV_LOCK_STATUS + Texture2D r_lock_status : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_LOCK_STATUS); + #endif + #if defined FSR2_BIND_SRV_LOCK_INPUT_LUMA + Texture2D r_lock_input_luma : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_LOCK_INPUT_LUMA); + #endif + #if defined FSR2_BIND_SRV_NEW_LOCKS + Texture2D r_new_locks : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_NEW_LOCKS); + #endif + #if defined FSR2_BIND_SRV_PREPARED_INPUT_COLOR + Texture2D r_prepared_input_color : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_PREPARED_INPUT_COLOR); + #endif + #if defined FSR2_BIND_SRV_LUMA_HISTORY + Texture2D r_luma_history : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_LUMA_HISTORY); + #endif + #if defined FSR2_BIND_SRV_RCAS_INPUT + Texture2D r_rcas_input : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_RCAS_INPUT); + #endif + #if defined FSR2_BIND_SRV_LANCZOS_LUT + Texture2D r_lanczos_lut : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_LANCZOS_LUT); + #endif + #if defined FSR2_BIND_SRV_SCENE_LUMINANCE_MIPS + Texture2D r_imgMips : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_SCENE_LUMINANCE_MIPS); + #endif + #if defined FSR2_BIND_SRV_UPSCALE_MAXIMUM_BIAS_LUT + Texture2D r_upsample_maximum_bias_lut : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_UPSCALE_MAXIMUM_BIAS_LUT); + #endif + #if defined FSR2_BIND_SRV_DILATED_REACTIVE_MASKS + Texture2D r_dilated_reactive_masks : FFX_FSR2_DECLARE_SRV(FSR2_BIND_SRV_DILATED_REACTIVE_MASKS); + #endif + + #if defined FSR2_BIND_SRV_PREV_PRE_ALPHA_COLOR + Texture2D r_input_prev_color_pre_alpha : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR); + #endif + #if defined FSR2_BIND_SRV_PREV_POST_ALPHA_COLOR + Texture2D r_input_prev_color_post_alpha : FFX_FSR2_DECLARE_SRV(FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR); + #endif + + // UAV declarations + #if defined FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH + RWTexture2D rw_reconstructed_previous_nearest_depth : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH); + #endif + #if defined FSR2_BIND_UAV_DILATED_MOTION_VECTORS + RWTexture2D rw_dilated_motion_vectors : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_DILATED_MOTION_VECTORS); + #endif + #if defined FSR2_BIND_UAV_DILATED_DEPTH + RWTexture2D rw_dilatedDepth : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_DILATED_DEPTH); + #endif + #if defined FSR2_BIND_UAV_INTERNAL_UPSCALED + RWTexture2D rw_internal_upscaled_color : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_INTERNAL_UPSCALED); + #endif + #if defined FSR2_BIND_UAV_LOCK_STATUS + RWTexture2D rw_lock_status : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_LOCK_STATUS); + #endif + #if defined FSR2_BIND_UAV_LOCK_INPUT_LUMA + RWTexture2D rw_lock_input_luma : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_LOCK_INPUT_LUMA); + #endif + #if defined FSR2_BIND_UAV_NEW_LOCKS + RWTexture2D rw_new_locks : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_NEW_LOCKS); + #endif + #if defined FSR2_BIND_UAV_PREPARED_INPUT_COLOR + RWTexture2D rw_prepared_input_color : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_PREPARED_INPUT_COLOR); + #endif + #if defined FSR2_BIND_UAV_LUMA_HISTORY + RWTexture2D rw_luma_history : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_LUMA_HISTORY); + #endif + #if defined FSR2_BIND_UAV_UPSCALED_OUTPUT + RWTexture2D rw_upscaled_output : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_UPSCALED_OUTPUT); + #endif + #if defined FSR2_BIND_UAV_EXPOSURE_MIP_LUMA_CHANGE + globallycoherent RWTexture2D rw_img_mip_shading_change : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_EXPOSURE_MIP_LUMA_CHANGE); + #endif + #if defined FSR2_BIND_UAV_EXPOSURE_MIP_5 + globallycoherent RWTexture2D rw_img_mip_5 : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_EXPOSURE_MIP_5); + #endif + #if defined FSR2_BIND_UAV_DILATED_REACTIVE_MASKS + RWTexture2D rw_dilated_reactive_masks : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_DILATED_REACTIVE_MASKS); + #endif + #if defined FSR2_BIND_UAV_EXPOSURE + RWTexture2D rw_exposure : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_EXPOSURE); + #endif + #if defined FSR2_BIND_UAV_AUTO_EXPOSURE + RWTexture2D rw_auto_exposure : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_AUTO_EXPOSURE); + #endif + #if defined FSR2_BIND_UAV_SPD_GLOBAL_ATOMIC + globallycoherent RWTexture2D rw_spd_global_atomic : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_SPD_GLOBAL_ATOMIC); + #endif + + #if defined FSR2_BIND_UAV_AUTOREACTIVE + RWTexture2D rw_output_autoreactive : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_AUTOREACTIVE); + #endif + #if defined FSR2_BIND_UAV_AUTOCOMPOSITION + RWTexture2D rw_output_autocomposition : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_AUTOCOMPOSITION); + #endif + #if defined FSR2_BIND_UAV_PREV_PRE_ALPHA_COLOR + RWTexture2D rw_output_prev_color_pre_alpha : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_PREV_PRE_ALPHA_COLOR); + #endif + #if defined FSR2_BIND_UAV_PREV_POST_ALPHA_COLOR + RWTexture2D rw_output_prev_color_post_alpha : FFX_FSR2_DECLARE_UAV(FSR2_BIND_UAV_PREV_POST_ALPHA_COLOR); + #endif +#endif // #if defined(FFX_INTERNAL) + +#if defined(FSR2_BIND_SRV_SCENE_LUMINANCE_MIPS) || defined(FFX_INTERNAL) +FfxFloat32 LoadMipLuma(FfxUInt32x2 iPxPos, FfxUInt32 mipLevel) +{ + return r_imgMips.mips[mipLevel][iPxPos]; +} +#endif + +#if defined(FSR2_BIND_SRV_SCENE_LUMINANCE_MIPS) || defined(FFX_INTERNAL) +FfxFloat32 SampleMipLuma(FfxFloat32x2 fUV, FfxUInt32 mipLevel) +{ + return r_imgMips.SampleLevel(s_LinearClamp, fUV, mipLevel); +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_DEPTH) || defined(FFX_INTERNAL) +FfxFloat32 LoadInputDepth(FfxUInt32x2 iPxPos) +{ + return r_input_depth[UNITY_FSR2_POS(iPxPos)]; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_DEPTH) || defined(FFX_INTERNAL) +FfxFloat32 SampleInputDepth(FfxFloat32x2 fUV) +{ + return r_input_depth.SampleLevel(s_LinearClamp, UNITY_FSR2_UV(fUV), 0).x; +} +#endif + +#if defined(FSR2_BIND_SRV_REACTIVE_MASK) || defined(FFX_INTERNAL) +FfxFloat32 LoadReactiveMask(FfxUInt32x2 iPxPos) +{ + return r_reactive_mask[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_SRV_TRANSPARENCY_AND_COMPOSITION_MASK) || defined(FFX_INTERNAL) +FfxFloat32 LoadTransparencyAndCompositionMask(FfxUInt32x2 iPxPos) +{ + return r_transparency_and_composition_mask[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_COLOR) || defined(FFX_INTERNAL) +FfxFloat32x3 LoadInputColor(FfxUInt32x2 iPxPos) +{ + return r_input_color_jittered[UNITY_FSR2_POS(iPxPos)].rgb; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_COLOR) || defined(FFX_INTERNAL) +FfxFloat32x3 SampleInputColor(FfxFloat32x2 fUV) +{ + return r_input_color_jittered.SampleLevel(s_LinearClamp, UNITY_FSR2_UV(fUV), 0).rgb; +} +#endif + +#if defined(FSR2_BIND_SRV_PREPARED_INPUT_COLOR) || defined(FFX_INTERNAL) +FfxFloat32x3 LoadPreparedInputColor(FfxUInt32x2 iPxPos) +{ + return r_prepared_input_color[iPxPos].xyz; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_MOTION_VECTORS) || defined(FFX_INTERNAL) +FfxFloat32x2 LoadInputMotionVector(FfxUInt32x2 iPxDilatedMotionVectorPos) +{ + FfxFloat32x2 fSrcMotionVector = r_input_motion_vectors[UNITY_FSR2_POS(iPxDilatedMotionVectorPos)].xy; + + FfxFloat32x2 fUvMotionVector = fSrcMotionVector * MotionVectorScale(); + +#if FFX_FSR2_OPTION_JITTERED_MOTION_VECTORS + fUvMotionVector -= MotionVectorJitterCancellation(); +#endif + + return fUvMotionVector; +} +#endif + +#if defined(FSR2_BIND_SRV_INTERNAL_UPSCALED) || defined(FFX_INTERNAL) +FfxFloat32x4 LoadHistory(FfxUInt32x2 iPxHistory) +{ + return r_internal_upscaled_color[iPxHistory]; +} +#endif + +#if defined(FSR2_BIND_UAV_LUMA_HISTORY) || defined(FFX_INTERNAL) +void StoreLumaHistory(FfxUInt32x2 iPxPos, FfxFloat32x4 fLumaHistory) +{ + rw_luma_history[iPxPos] = fLumaHistory; +} + +FfxFloat32x4 LoadRwLumaHistory(FFX_MIN16_I2 iPxPos) +{ + return rw_luma_history[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_SRV_LUMA_HISTORY) || defined(FFX_INTERNAL) +FfxFloat32x4 SampleLumaHistory(FfxFloat32x2 fUV) +{ + return r_luma_history.SampleLevel(s_LinearClamp, fUV, 0); +} +#endif + +#if defined(FFX_INTERNAL) +FfxFloat32x4 SampleDebug(FfxFloat32x2 fUV) +{ + return r_debug_out.SampleLevel(s_LinearClamp, fUV, 0).w; +} +#endif + +#if defined(FSR2_BIND_UAV_INTERNAL_UPSCALED) || defined(FFX_INTERNAL) +void StoreReprojectedHistory(FfxUInt32x2 iPxHistory, FfxFloat32x4 fHistory) +{ + rw_internal_upscaled_color[iPxHistory] = fHistory; +} +#endif + +#if defined(FSR2_BIND_UAV_INTERNAL_UPSCALED) || defined(FFX_INTERNAL) +void StoreInternalColorAndWeight(FfxUInt32x2 iPxPos, FfxFloat32x4 fColorAndWeight) +{ + rw_internal_upscaled_color[iPxPos] = fColorAndWeight; +} +#endif + +#if defined(FSR2_BIND_UAV_UPSCALED_OUTPUT) || defined(FFX_INTERNAL) +void StoreUpscaledOutput(FfxUInt32x2 iPxPos, FfxFloat32x3 fColor) +{ + rw_upscaled_output[iPxPos] = FfxFloat32x4(fColor, 1.f); +} +#endif + +//LOCK_LIFETIME_REMAINING == 0 +//Should make LockInitialLifetime() return a const 1.0f later +#if defined(FSR2_BIND_SRV_LOCK_STATUS) || defined(FFX_INTERNAL) +FfxFloat32x2 LoadLockStatus(FfxUInt32x2 iPxPos) +{ + return r_lock_status[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_LOCK_STATUS) || defined(FFX_INTERNAL) +void StoreLockStatus(FfxUInt32x2 iPxPos, FfxFloat32x2 fLockStatus) +{ + rw_lock_status[iPxPos] = fLockStatus; +} +#endif + +#if defined(FSR2_BIND_SRV_LOCK_INPUT_LUMA) || defined(FFX_INTERNAL) +FfxFloat32 LoadLockInputLuma(FfxUInt32x2 iPxPos) +{ + return r_lock_input_luma[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_LOCK_INPUT_LUMA) || defined(FFX_INTERNAL) +void StoreLockInputLuma(FfxUInt32x2 iPxPos, FfxFloat32 fLuma) +{ + rw_lock_input_luma[iPxPos] = fLuma; +} +#endif + +#if defined(FSR2_BIND_SRV_NEW_LOCKS) || defined(FFX_INTERNAL) +FfxFloat32 LoadNewLocks(FfxUInt32x2 iPxPos) +{ + return r_new_locks[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_NEW_LOCKS) || defined(FFX_INTERNAL) +FfxFloat32 LoadRwNewLocks(FfxUInt32x2 iPxPos) +{ + return rw_new_locks[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_NEW_LOCKS) || defined(FFX_INTERNAL) +void StoreNewLocks(FfxUInt32x2 iPxPos, FfxFloat32 newLock) +{ + rw_new_locks[iPxPos] = newLock; +} +#endif + +#if defined(FSR2_BIND_UAV_PREPARED_INPUT_COLOR) || defined(FFX_INTERNAL) +void StorePreparedInputColor(FFX_PARAMETER_IN FfxUInt32x2 iPxPos, FFX_PARAMETER_IN FfxFloat32x4 fTonemapped) +{ + rw_prepared_input_color[iPxPos] = fTonemapped; +} +#endif + +#if defined(FSR2_BIND_SRV_PREPARED_INPUT_COLOR) || defined(FFX_INTERNAL) +FfxFloat32 SampleDepthClip(FfxFloat32x2 fUV) +{ + return r_prepared_input_color.SampleLevel(s_LinearClamp, fUV, 0).w; +} +#endif + +#if defined(FSR2_BIND_SRV_LOCK_STATUS) || defined(FFX_INTERNAL) +FfxFloat32x2 SampleLockStatus(FfxFloat32x2 fUV) +{ + FfxFloat32x2 fLockStatus = r_lock_status.SampleLevel(s_LinearClamp, fUV, 0); + return fLockStatus; +} +#endif + +#if defined(FSR2_BIND_SRV_RECONSTRUCTED_PREV_NEAREST_DEPTH) || defined(FFX_INTERNAL) +FfxFloat32 LoadReconstructedPrevDepth(FfxUInt32x2 iPxPos) +{ + return asfloat(r_reconstructed_previous_nearest_depth[iPxPos]); +} +#endif + +#if defined(FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH) || defined(FFX_INTERNAL) +void StoreReconstructedDepth(FfxUInt32x2 iPxSample, FfxFloat32 fDepth) +{ + FfxUInt32 uDepth = asuint(fDepth); + + #if FFX_FSR2_OPTION_INVERTED_DEPTH + InterlockedMax(rw_reconstructed_previous_nearest_depth[iPxSample], uDepth); + #else + InterlockedMin(rw_reconstructed_previous_nearest_depth[iPxSample], uDepth); // min for standard, max for inverted depth + #endif +} +#endif + +#if defined(FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH) || defined(FFX_INTERNAL) +void SetReconstructedDepth(FfxUInt32x2 iPxSample, const FfxUInt32 uValue) +{ + rw_reconstructed_previous_nearest_depth[iPxSample] = uValue; +} +#endif + +#if defined(FSR2_BIND_UAV_DILATED_DEPTH) || defined(FFX_INTERNAL) +void StoreDilatedDepth(FFX_PARAMETER_IN FfxUInt32x2 iPxPos, FFX_PARAMETER_IN FfxFloat32 fDepth) +{ + rw_dilatedDepth[iPxPos] = fDepth; +} +#endif + +#if defined(FSR2_BIND_UAV_DILATED_MOTION_VECTORS) || defined(FFX_INTERNAL) +void StoreDilatedMotionVector(FFX_PARAMETER_IN FfxUInt32x2 iPxPos, FFX_PARAMETER_IN FfxFloat32x2 fMotionVector) +{ + rw_dilated_motion_vectors[iPxPos] = fMotionVector; +} +#endif + +#if defined(FSR2_BIND_SRV_DILATED_MOTION_VECTORS) || defined(FFX_INTERNAL) +FfxFloat32x2 LoadDilatedMotionVector(FfxUInt32x2 iPxInput) +{ + return r_dilated_motion_vectors[iPxInput].xy; +} +#endif + +#if defined(FSR2_BIND_SRV_PREVIOUS_DILATED_MOTION_VECTORS) || defined(FFX_INTERNAL) +FfxFloat32x2 LoadPreviousDilatedMotionVector(FfxUInt32x2 iPxInput) +{ + return r_previous_dilated_motion_vectors[iPxInput].xy; +} + +FfxFloat32x2 SamplePreviousDilatedMotionVector(FfxFloat32x2 uv) +{ + return r_previous_dilated_motion_vectors.SampleLevel(s_LinearClamp, uv, 0).xy; +} +#endif + +#if defined(FSR2_BIND_SRV_DILATED_DEPTH) || defined(FFX_INTERNAL) +FfxFloat32 LoadDilatedDepth(FfxUInt32x2 iPxInput) +{ + return r_dilatedDepth[iPxInput]; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_EXPOSURE) || defined(FFX_INTERNAL) +FfxFloat32 Exposure() +{ + FfxFloat32 exposure = r_input_exposure[FfxUInt32x2(0, 0)].x; + + if (exposure == 0.0f) { + exposure = 1.0f; + } + + return exposure; +} +#endif + +#if defined(FSR2_BIND_SRV_AUTO_EXPOSURE) || defined(FFX_INTERNAL) +FfxFloat32 AutoExposure() +{ + FfxFloat32 exposure = r_auto_exposure[FfxUInt32x2(0, 0)].x; + + if (exposure == 0.0f) { + exposure = 1.0f; + } + + return exposure; +} +#endif + +FfxFloat32 SampleLanczos2Weight(FfxFloat32 x) +{ +#if defined(FSR2_BIND_SRV_LANCZOS_LUT) || defined(FFX_INTERNAL) + return r_lanczos_lut.SampleLevel(s_LinearClamp, FfxFloat32x2(x / 2, 0.5f), 0); +#else + return 0.f; +#endif +} + +#if defined(FSR2_BIND_SRV_UPSCALE_MAXIMUM_BIAS_LUT) || defined(FFX_INTERNAL) +FfxFloat32 SampleUpsampleMaximumBias(FfxFloat32x2 uv) +{ + // Stored as a SNORM, so make sure to multiply by 2 to retrieve the actual expected range. + return FfxFloat32(2.0) * r_upsample_maximum_bias_lut.SampleLevel(s_LinearClamp, abs(uv) * 2.0, 0); +} +#endif + +#if defined(FSR2_BIND_SRV_DILATED_REACTIVE_MASKS) || defined(FFX_INTERNAL) +FfxFloat32x2 SampleDilatedReactiveMasks(FfxFloat32x2 fUV) +{ + return r_dilated_reactive_masks.SampleLevel(s_LinearClamp, fUV, 0); +} +#endif + +#if defined(FSR2_BIND_SRV_DILATED_REACTIVE_MASKS) || defined(FFX_INTERNAL) +FfxFloat32x2 LoadDilatedReactiveMasks(FFX_PARAMETER_IN FfxUInt32x2 iPxPos) +{ + return r_dilated_reactive_masks[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_DILATED_REACTIVE_MASKS) || defined(FFX_INTERNAL) +void StoreDilatedReactiveMasks(FFX_PARAMETER_IN FfxUInt32x2 iPxPos, FFX_PARAMETER_IN FfxFloat32x2 fDilatedReactiveMasks) +{ + rw_dilated_reactive_masks[iPxPos] = fDilatedReactiveMasks; +} +#endif + +#if defined(FSR2_BIND_SRV_INPUT_OPAQUE_ONLY) || defined(FFX_INTERNAL) +FfxFloat32x3 LoadOpaqueOnly(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos) +{ + return r_input_opaque_only[UNITY_FSR2_POS(iPxPos)].xyz; +} +#endif + +#if defined(FSR2_BIND_SRV_PREV_PRE_ALPHA_COLOR) || defined(FFX_INTERNAL) +FfxFloat32x3 LoadPrevPreAlpha(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos) +{ + return r_input_prev_color_pre_alpha[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_SRV_PREV_POST_ALPHA_COLOR) || defined(FFX_INTERNAL) +FfxFloat32x3 LoadPrevPostAlpha(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos) +{ + return r_input_prev_color_post_alpha[iPxPos]; +} +#endif + +#if defined(FSR2_BIND_UAV_AUTOREACTIVE) || defined(FFX_INTERNAL) +#if defined(FSR2_BIND_UAV_AUTOCOMPOSITION) || defined(FFX_INTERNAL) +void StoreAutoReactive(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos, FFX_PARAMETER_IN FFX_MIN16_F2 fReactive) +{ + rw_output_autoreactive[iPxPos] = fReactive.x; + + rw_output_autocomposition[iPxPos] = fReactive.y; +} +#endif +#endif + +#if defined(FSR2_BIND_UAV_PREV_PRE_ALPHA_COLOR) || defined(FFX_INTERNAL) +void StorePrevPreAlpha(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos, FFX_PARAMETER_IN FFX_MIN16_F3 color) +{ + rw_output_prev_color_pre_alpha[iPxPos] = color; + +} +#endif + +#if defined(FSR2_BIND_UAV_PREV_POST_ALPHA_COLOR) || defined(FFX_INTERNAL) +void StorePrevPostAlpha(FFX_PARAMETER_IN FFX_MIN16_I2 iPxPos, FFX_PARAMETER_IN FFX_MIN16_F3 color) +{ + rw_output_prev_color_post_alpha[iPxPos] = color; +} +#endif + +#endif // #if defined(FFX_GPU) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h.meta new file mode 100644 index 0000000..1627fd4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_callbacks_hlsl.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: eb121968296f9ba44b35d7e18d2b79df +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h new file mode 100644 index 0000000..0c72aa8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h @@ -0,0 +1,565 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#if !defined(FFX_FSR2_COMMON_H) +#define FFX_FSR2_COMMON_H + +#if defined(FFX_CPU) || defined(FFX_GPU) +//Locks +#define LOCK_LIFETIME_REMAINING 0 +#define LOCK_TEMPORAL_LUMA 1 +#endif // #if defined(FFX_CPU) || defined(FFX_GPU) + +#if defined(FFX_GPU) +FFX_STATIC const FfxFloat32 FSR2_FP16_MIN = 6.10e-05f; +FFX_STATIC const FfxFloat32 FSR2_FP16_MAX = 65504.0f; +FFX_STATIC const FfxFloat32 FSR2_EPSILON = 1e-03f; +FFX_STATIC const FfxFloat32 FSR2_TONEMAP_EPSILON = 1.0f / FSR2_FP16_MAX; +FFX_STATIC const FfxFloat32 FSR2_FLT_MAX = 3.402823466e+38f; +FFX_STATIC const FfxFloat32 FSR2_FLT_MIN = 1.175494351e-38f; + +// treat vector truncation warnings as errors +#pragma warning(error: 3206) + +// suppress warnings +#pragma warning(disable: 3205) // conversion from larger type to smaller +#pragma warning(disable: 3571) // in ffxPow(f, e), f could be negative + +// Reconstructed depth usage +FFX_STATIC const FfxFloat32 fReconstructedDepthBilinearWeightThreshold = 0.01f; + +// Accumulation +FFX_STATIC const FfxFloat32 fUpsampleLanczosWeightScale = 1.0f / 12.0f; +FFX_STATIC const FfxFloat32 fMaxAccumulationLanczosWeight = 1.0f; +FFX_STATIC const FfxFloat32 fAverageLanczosWeightPerFrame = 0.74f * fUpsampleLanczosWeightScale; // Average lanczos weight for jitter accumulated samples +FFX_STATIC const FfxFloat32 fAccumulationMaxOnMotion = 3.0f * fUpsampleLanczosWeightScale; + +// Auto exposure +FFX_STATIC const FfxFloat32 resetAutoExposureAverageSmoothing = 1e8f; + +struct AccumulationPassCommonParams +{ + FfxInt32x2 iPxHrPos; + FfxFloat32x2 fHrUv; + FfxFloat32x2 fLrUv_HwSampler; + FfxFloat32x2 fMotionVector; + FfxFloat32x2 fReprojectedHrUv; + FfxFloat32 fHrVelocity; + FfxFloat32 fDepthClipFactor; + FfxFloat32 fDilatedReactiveFactor; + FfxFloat32 fAccumulationMask; + + FfxBoolean bIsResetFrame; + FfxBoolean bIsExistingSample; + FfxBoolean bIsNewSample; +}; + +struct LockState +{ + FfxBoolean NewLock; //Set for both unique new and re-locked new + FfxBoolean WasLockedPrevFrame; //Set to identify if the pixel was already locked (relock) +}; + +void InitializeNewLockSample(FFX_PARAMETER_OUT FfxFloat32x2 fLockStatus) +{ + fLockStatus = FfxFloat32x2(0, 0); +} + +#if FFX_HALF +void InitializeNewLockSample(FFX_PARAMETER_OUT FFX_MIN16_F2 fLockStatus) +{ + fLockStatus = FFX_MIN16_F2(0, 0); +} +#endif + + +void KillLock(FFX_PARAMETER_INOUT FfxFloat32x2 fLockStatus) +{ + fLockStatus[LOCK_LIFETIME_REMAINING] = 0; +} + +#if FFX_HALF +void KillLock(FFX_PARAMETER_INOUT FFX_MIN16_F2 fLockStatus) +{ + fLockStatus[LOCK_LIFETIME_REMAINING] = FFX_MIN16_F(0); +} +#endif + +struct RectificationBox +{ + FfxFloat32x3 boxCenter; + FfxFloat32x3 boxVec; + FfxFloat32x3 aabbMin; + FfxFloat32x3 aabbMax; + FfxFloat32 fBoxCenterWeight; +}; +#if FFX_HALF +struct RectificationBoxMin16 +{ + FFX_MIN16_F3 boxCenter; + FFX_MIN16_F3 boxVec; + FFX_MIN16_F3 aabbMin; + FFX_MIN16_F3 aabbMax; + FFX_MIN16_F fBoxCenterWeight; +}; +#endif + +void RectificationBoxReset(FFX_PARAMETER_INOUT RectificationBox rectificationBox) +{ + rectificationBox.fBoxCenterWeight = FfxFloat32(0); + + rectificationBox.boxCenter = FfxFloat32x3(0, 0, 0); + rectificationBox.boxVec = FfxFloat32x3(0, 0, 0); + rectificationBox.aabbMin = FfxFloat32x3(FSR2_FLT_MAX, FSR2_FLT_MAX, FSR2_FLT_MAX); + rectificationBox.aabbMax = -FfxFloat32x3(FSR2_FLT_MAX, FSR2_FLT_MAX, FSR2_FLT_MAX); +} +#if FFX_HALF +void RectificationBoxReset(FFX_PARAMETER_INOUT RectificationBoxMin16 rectificationBox) +{ + rectificationBox.fBoxCenterWeight = FFX_MIN16_F(0); + + rectificationBox.boxCenter = FFX_MIN16_F3(0, 0, 0); + rectificationBox.boxVec = FFX_MIN16_F3(0, 0, 0); + rectificationBox.aabbMin = FFX_MIN16_F3(FSR2_FP16_MAX, FSR2_FP16_MAX, FSR2_FP16_MAX); + rectificationBox.aabbMax = -FFX_MIN16_F3(FSR2_FP16_MAX, FSR2_FP16_MAX, FSR2_FP16_MAX); +} +#endif + +void RectificationBoxAddInitialSample(FFX_PARAMETER_INOUT RectificationBox rectificationBox, const FfxFloat32x3 colorSample, const FfxFloat32 fSampleWeight) +{ + rectificationBox.aabbMin = colorSample; + rectificationBox.aabbMax = colorSample; + + FfxFloat32x3 weightedSample = colorSample * fSampleWeight; + rectificationBox.boxCenter = weightedSample; + rectificationBox.boxVec = colorSample * weightedSample; + rectificationBox.fBoxCenterWeight = fSampleWeight; +} + +void RectificationBoxAddSample(FfxBoolean bInitialSample, FFX_PARAMETER_INOUT RectificationBox rectificationBox, const FfxFloat32x3 colorSample, const FfxFloat32 fSampleWeight) +{ + if (bInitialSample) { + RectificationBoxAddInitialSample(rectificationBox, colorSample, fSampleWeight); + } else { + rectificationBox.aabbMin = ffxMin(rectificationBox.aabbMin, colorSample); + rectificationBox.aabbMax = ffxMax(rectificationBox.aabbMax, colorSample); + + FfxFloat32x3 weightedSample = colorSample * fSampleWeight; + rectificationBox.boxCenter += weightedSample; + rectificationBox.boxVec += colorSample * weightedSample; + rectificationBox.fBoxCenterWeight += fSampleWeight; + } +} +#if FFX_HALF +void RectificationBoxAddInitialSample(FFX_PARAMETER_INOUT RectificationBoxMin16 rectificationBox, const FFX_MIN16_F3 colorSample, const FFX_MIN16_F fSampleWeight) +{ + rectificationBox.aabbMin = colorSample; + rectificationBox.aabbMax = colorSample; + + FFX_MIN16_F3 weightedSample = colorSample * fSampleWeight; + rectificationBox.boxCenter = weightedSample; + rectificationBox.boxVec = colorSample * weightedSample; + rectificationBox.fBoxCenterWeight = fSampleWeight; +} + +void RectificationBoxAddSample(FfxBoolean bInitialSample, FFX_PARAMETER_INOUT RectificationBoxMin16 rectificationBox, const FFX_MIN16_F3 colorSample, const FFX_MIN16_F fSampleWeight) +{ + if (bInitialSample) { + RectificationBoxAddInitialSample(rectificationBox, colorSample, fSampleWeight); + } else { + rectificationBox.aabbMin = ffxMin(rectificationBox.aabbMin, colorSample); + rectificationBox.aabbMax = ffxMax(rectificationBox.aabbMax, colorSample); + + FFX_MIN16_F3 weightedSample = colorSample * fSampleWeight; + rectificationBox.boxCenter += weightedSample; + rectificationBox.boxVec += colorSample * weightedSample; + rectificationBox.fBoxCenterWeight += fSampleWeight; + } +} +#endif + +void RectificationBoxComputeVarianceBoxData(FFX_PARAMETER_INOUT RectificationBox rectificationBox) +{ + rectificationBox.fBoxCenterWeight = (abs(rectificationBox.fBoxCenterWeight) > FfxFloat32(FSR2_EPSILON) ? rectificationBox.fBoxCenterWeight : FfxFloat32(1.f)); + rectificationBox.boxCenter /= rectificationBox.fBoxCenterWeight; + rectificationBox.boxVec /= rectificationBox.fBoxCenterWeight; + FfxFloat32x3 stdDev = sqrt(abs(rectificationBox.boxVec - rectificationBox.boxCenter * rectificationBox.boxCenter)); + rectificationBox.boxVec = stdDev; +} +#if FFX_HALF +void RectificationBoxComputeVarianceBoxData(FFX_PARAMETER_INOUT RectificationBoxMin16 rectificationBox) +{ + rectificationBox.fBoxCenterWeight = (abs(rectificationBox.fBoxCenterWeight) > FFX_MIN16_F(FSR2_EPSILON) ? rectificationBox.fBoxCenterWeight : FFX_MIN16_F(1.f)); + rectificationBox.boxCenter /= rectificationBox.fBoxCenterWeight; + rectificationBox.boxVec /= rectificationBox.fBoxCenterWeight; + FFX_MIN16_F3 stdDev = sqrt(abs(rectificationBox.boxVec - rectificationBox.boxCenter * rectificationBox.boxCenter)); + rectificationBox.boxVec = stdDev; +} +#endif + +FfxFloat32x3 SafeRcp3(FfxFloat32x3 v) +{ + return (all(FFX_NOT_EQUAL(v, FfxFloat32x3(0, 0, 0)))) ? (FfxFloat32x3(1, 1, 1) / v) : FfxFloat32x3(0, 0, 0); +} +#if FFX_HALF +FFX_MIN16_F3 SafeRcp3(FFX_MIN16_F3 v) +{ + return (all(FFX_NOT_EQUAL(v, FFX_MIN16_F3(0, 0, 0)))) ? (FFX_MIN16_F3(1, 1, 1) / v) : FFX_MIN16_F3(0, 0, 0); +} +#endif + +FfxFloat32 MinDividedByMax(const FfxFloat32 v0, const FfxFloat32 v1) +{ + const FfxFloat32 m = ffxMax(v0, v1); + return m != 0 ? ffxMin(v0, v1) / m : 0; +} + +#if FFX_HALF +FFX_MIN16_F MinDividedByMax(const FFX_MIN16_F v0, const FFX_MIN16_F v1) +{ + const FFX_MIN16_F m = ffxMax(v0, v1); + return m != FFX_MIN16_F(0) ? ffxMin(v0, v1) / m : FFX_MIN16_F(0); +} +#endif + +FfxFloat32x3 YCoCgToRGB(FfxFloat32x3 fYCoCg) +{ + FfxFloat32x3 fRgb; + + fRgb = FfxFloat32x3( + fYCoCg.x + fYCoCg.y - fYCoCg.z, + fYCoCg.x + fYCoCg.z, + fYCoCg.x - fYCoCg.y - fYCoCg.z); + + return fRgb; +} +#if FFX_HALF +FFX_MIN16_F3 YCoCgToRGB(FFX_MIN16_F3 fYCoCg) +{ + FFX_MIN16_F3 fRgb; + + fRgb = FFX_MIN16_F3( + fYCoCg.x + fYCoCg.y - fYCoCg.z, + fYCoCg.x + fYCoCg.z, + fYCoCg.x - fYCoCg.y - fYCoCg.z); + + return fRgb; +} +#endif + +FfxFloat32x3 RGBToYCoCg(FfxFloat32x3 fRgb) +{ + FfxFloat32x3 fYCoCg; + + fYCoCg = FfxFloat32x3( + 0.25f * fRgb.r + 0.5f * fRgb.g + 0.25f * fRgb.b, + 0.5f * fRgb.r - 0.5f * fRgb.b, + -0.25f * fRgb.r + 0.5f * fRgb.g - 0.25f * fRgb.b); + + return fYCoCg; +} +#if FFX_HALF +FFX_MIN16_F3 RGBToYCoCg(FFX_MIN16_F3 fRgb) +{ + FFX_MIN16_F3 fYCoCg; + + fYCoCg = FFX_MIN16_F3( + 0.25 * fRgb.r + 0.5 * fRgb.g + 0.25 * fRgb.b, + 0.5 * fRgb.r - 0.5 * fRgb.b, + -0.25 * fRgb.r + 0.5 * fRgb.g - 0.25 * fRgb.b); + + return fYCoCg; +} +#endif + +FfxFloat32 RGBToLuma(FfxFloat32x3 fLinearRgb) +{ + return dot(fLinearRgb, FfxFloat32x3(0.2126f, 0.7152f, 0.0722f)); +} +#if FFX_HALF +FFX_MIN16_F RGBToLuma(FFX_MIN16_F3 fLinearRgb) +{ + return dot(fLinearRgb, FFX_MIN16_F3(0.2126f, 0.7152f, 0.0722f)); +} +#endif + +FfxFloat32 RGBToPerceivedLuma(FfxFloat32x3 fLinearRgb) +{ + FfxFloat32 fLuminance = RGBToLuma(fLinearRgb); + + FfxFloat32 fPercievedLuminance = 0; + if (fLuminance <= 216.0f / 24389.0f) { + fPercievedLuminance = fLuminance * (24389.0f / 27.0f); + } + else { + fPercievedLuminance = ffxPow(fLuminance, 1.0f / 3.0f) * 116.0f - 16.0f; + } + + return fPercievedLuminance * 0.01f; +} +#if FFX_HALF +FFX_MIN16_F RGBToPerceivedLuma(FFX_MIN16_F3 fLinearRgb) +{ + FFX_MIN16_F fLuminance = RGBToLuma(fLinearRgb); + + FFX_MIN16_F fPercievedLuminance = FFX_MIN16_F(0); + if (fLuminance <= FFX_MIN16_F(216.0f / 24389.0f)) { + fPercievedLuminance = fLuminance * FFX_MIN16_F(24389.0f / 27.0f); + } + else { + fPercievedLuminance = ffxPow(fLuminance, FFX_MIN16_F(1.0f / 3.0f)) * FFX_MIN16_F(116.0f) - FFX_MIN16_F(16.0f); + } + + return fPercievedLuminance * FFX_MIN16_F(0.01f); +} +#endif + +FfxFloat32x3 Tonemap(FfxFloat32x3 fRgb) +{ + return fRgb / (ffxMax(ffxMax(0.f, fRgb.r), ffxMax(fRgb.g, fRgb.b)) + 1.f).xxx; +} + +FfxFloat32x3 InverseTonemap(FfxFloat32x3 fRgb) +{ + return fRgb / ffxMax(FSR2_TONEMAP_EPSILON, 1.f - ffxMax(fRgb.r, ffxMax(fRgb.g, fRgb.b))).xxx; +} + +#if FFX_HALF +FFX_MIN16_F3 Tonemap(FFX_MIN16_F3 fRgb) +{ + return fRgb / (ffxMax(ffxMax(FFX_MIN16_F(0.f), fRgb.r), ffxMax(fRgb.g, fRgb.b)) + FFX_MIN16_F(1.f)).xxx; +} + +FFX_MIN16_F3 InverseTonemap(FFX_MIN16_F3 fRgb) +{ + return fRgb / ffxMax(FFX_MIN16_F(FSR2_TONEMAP_EPSILON), FFX_MIN16_F(1.f) - ffxMax(fRgb.r, ffxMax(fRgb.g, fRgb.b))).xxx; +} +#endif + +FfxInt32x2 ClampLoad(FfxInt32x2 iPxSample, FfxInt32x2 iPxOffset, FfxInt32x2 iTextureSize) +{ + FfxInt32x2 result = iPxSample + iPxOffset; + result.x = (iPxOffset.x < 0) ? ffxMax(result.x, 0) : result.x; + result.x = (iPxOffset.x > 0) ? ffxMin(result.x, iTextureSize.x - 1) : result.x; + result.y = (iPxOffset.y < 0) ? ffxMax(result.y, 0) : result.y; + result.y = (iPxOffset.y > 0) ? ffxMin(result.y, iTextureSize.y - 1) : result.y; + return result; + + // return ffxMed3(iPxSample + iPxOffset, FfxInt32x2(0, 0), iTextureSize - FfxInt32x2(1, 1)); +} +#if FFX_HALF +FFX_MIN16_I2 ClampLoad(FFX_MIN16_I2 iPxSample, FFX_MIN16_I2 iPxOffset, FFX_MIN16_I2 iTextureSize) +{ + FFX_MIN16_I2 result = iPxSample + iPxOffset; + result.x = (iPxOffset.x < 0) ? ffxMax(result.x, FFX_MIN16_I(0)) : result.x; + result.x = (iPxOffset.x > 0) ? ffxMin(result.x, iTextureSize.x - FFX_MIN16_I(1)) : result.x; + result.y = (iPxOffset.y < 0) ? ffxMax(result.y, FFX_MIN16_I(0)) : result.y; + result.y = (iPxOffset.y > 0) ? ffxMin(result.y, iTextureSize.y - FFX_MIN16_I(1)) : result.y; + return result; + + // return ffxMed3Half(iPxSample + iPxOffset, FFX_MIN16_I2(0, 0), iTextureSize - FFX_MIN16_I2(1, 1)); +} +#endif + +FfxFloat32x2 ClampUv(FfxFloat32x2 fUv, FfxInt32x2 iTextureSize, FfxInt32x2 iResourceSize) +{ + const FfxFloat32x2 fSampleLocation = fUv * iTextureSize; + const FfxFloat32x2 fClampedLocation = ffxMax(FfxFloat32x2(0.5f, 0.5f), ffxMin(fSampleLocation, FfxFloat32x2(iTextureSize) - FfxFloat32x2(0.5f, 0.5f))); + const FfxFloat32x2 fClampedUv = fClampedLocation / FfxFloat32x2(iResourceSize); + + return fClampedUv; +} + +FfxBoolean IsOnScreen(FfxInt32x2 pos, FfxInt32x2 size) +{ + return all(FFX_LESS_THAN(FfxUInt32x2(pos), FfxUInt32x2(size))); +} +#if FFX_HALF +FfxBoolean IsOnScreen(FFX_MIN16_I2 pos, FFX_MIN16_I2 size) +{ + return all(FFX_LESS_THAN(FFX_MIN16_U2(pos), FFX_MIN16_U2(size))); +} +#endif + +FfxFloat32 ComputeAutoExposureFromLavg(FfxFloat32 Lavg) +{ + Lavg = exp(Lavg); + + const FfxFloat32 S = 100.0f; //ISO arithmetic speed + const FfxFloat32 K = 12.5f; + FfxFloat32 ExposureISO100 = log2((Lavg * S) / K); + + const FfxFloat32 q = 0.65f; + FfxFloat32 Lmax = (78.0f / (q * S)) * ffxPow(2.0f, ExposureISO100); + + return 1 / Lmax; +} +#if FFX_HALF +FFX_MIN16_F ComputeAutoExposureFromLavg(FFX_MIN16_F Lavg) +{ + Lavg = exp(Lavg); + + const FFX_MIN16_F S = FFX_MIN16_F(100.0f); //ISO arithmetic speed + const FFX_MIN16_F K = FFX_MIN16_F(12.5f); + const FFX_MIN16_F ExposureISO100 = log2((Lavg * S) / K); + + const FFX_MIN16_F q = FFX_MIN16_F(0.65f); + const FFX_MIN16_F Lmax = (FFX_MIN16_F(78.0f) / (q * S)) * ffxPow(FFX_MIN16_F(2.0f), ExposureISO100); + + return FFX_MIN16_F(1) / Lmax; +} +#endif + +FfxInt32x2 ComputeHrPosFromLrPos(FfxInt32x2 iPxLrPos) +{ + FfxFloat32x2 fSrcJitteredPos = FfxFloat32x2(iPxLrPos) + 0.5f - Jitter(); + FfxFloat32x2 fLrPosInHr = (fSrcJitteredPos / RenderSize()) * DisplaySize(); + FfxInt32x2 iPxHrPos = FfxInt32x2(floor(fLrPosInHr)); + return iPxHrPos; +} +#if FFX_HALF +FFX_MIN16_I2 ComputeHrPosFromLrPos(FFX_MIN16_I2 iPxLrPos) +{ + FFX_MIN16_F2 fSrcJitteredPos = FFX_MIN16_F2(iPxLrPos) + FFX_MIN16_F(0.5f) - FFX_MIN16_F2(Jitter()); + FFX_MIN16_F2 fLrPosInHr = (fSrcJitteredPos / FFX_MIN16_F2(RenderSize())) * FFX_MIN16_F2(DisplaySize()); + FFX_MIN16_I2 iPxHrPos = FFX_MIN16_I2(floor(fLrPosInHr)); + return iPxHrPos; +} +#endif + +FfxFloat32x2 ComputeNdc(FfxFloat32x2 fPxPos, FfxInt32x2 iSize) +{ + return fPxPos / FfxFloat32x2(iSize) * FfxFloat32x2(2.0f, -2.0f) + FfxFloat32x2(-1.0f, 1.0f); +} + +FfxFloat32 GetViewSpaceDepth(FfxFloat32 fDeviceDepth) +{ + const FfxFloat32x4 fDeviceToViewDepth = DeviceToViewSpaceTransformFactors(); + + // fDeviceToViewDepth details found in ffx_fsr2.cpp + return (fDeviceToViewDepth[1] / (fDeviceDepth - fDeviceToViewDepth[0])); +} + +FfxFloat32 GetViewSpaceDepthInMeters(FfxFloat32 fDeviceDepth) +{ + return GetViewSpaceDepth(fDeviceDepth) * ViewSpaceToMetersFactor(); +} + +FfxFloat32x3 GetViewSpacePosition(FfxInt32x2 iViewportPos, FfxInt32x2 iViewportSize, FfxFloat32 fDeviceDepth) +{ + const FfxFloat32x4 fDeviceToViewDepth = DeviceToViewSpaceTransformFactors(); + + const FfxFloat32 Z = GetViewSpaceDepth(fDeviceDepth); + + const FfxFloat32x2 fNdcPos = ComputeNdc(iViewportPos, iViewportSize); + const FfxFloat32 X = fDeviceToViewDepth[2] * fNdcPos.x * Z; + const FfxFloat32 Y = fDeviceToViewDepth[3] * fNdcPos.y * Z; + + return FfxFloat32x3(X, Y, Z); +} + +FfxFloat32x3 GetViewSpacePositionInMeters(FfxInt32x2 iViewportPos, FfxInt32x2 iViewportSize, FfxFloat32 fDeviceDepth) +{ + return GetViewSpacePosition(iViewportPos, iViewportSize, fDeviceDepth) * ViewSpaceToMetersFactor(); +} + +FfxFloat32 GetMaxDistanceInMeters() +{ +#if FFX_FSR2_OPTION_INVERTED_DEPTH + return GetViewSpaceDepth(0.0f) * ViewSpaceToMetersFactor(); +#else + return GetViewSpaceDepth(1.0f) * ViewSpaceToMetersFactor(); +#endif +} + +FfxFloat32x3 PrepareRgb(FfxFloat32x3 fRgb, FfxFloat32 fExposure, FfxFloat32 fPreExposure) +{ + fRgb /= fPreExposure; + fRgb *= fExposure; + + fRgb = clamp(fRgb, 0.0f, FSR2_FP16_MAX); + + return fRgb; +} + +FfxFloat32x3 UnprepareRgb(FfxFloat32x3 fRgb, FfxFloat32 fExposure) +{ + fRgb /= fExposure; + fRgb *= PreExposure(); + + return fRgb; +} + + +struct BilinearSamplingData +{ + FfxInt32x2 iOffsets[4]; + FfxFloat32 fWeights[4]; + FfxInt32x2 iBasePos; +}; + +BilinearSamplingData GetBilinearSamplingData(FfxFloat32x2 fUv, FfxInt32x2 iSize) +{ + BilinearSamplingData data; + + FfxFloat32x2 fPxSample = (fUv * iSize) - FfxFloat32x2(0.5f, 0.5f); + data.iBasePos = FfxInt32x2(floor(fPxSample)); + FfxFloat32x2 fPxFrac = ffxFract(fPxSample); + + data.iOffsets[0] = FfxInt32x2(0, 0); + data.iOffsets[1] = FfxInt32x2(1, 0); + data.iOffsets[2] = FfxInt32x2(0, 1); + data.iOffsets[3] = FfxInt32x2(1, 1); + + data.fWeights[0] = (1 - fPxFrac.x) * (1 - fPxFrac.y); + data.fWeights[1] = (fPxFrac.x) * (1 - fPxFrac.y); + data.fWeights[2] = (1 - fPxFrac.x) * (fPxFrac.y); + data.fWeights[3] = (fPxFrac.x) * (fPxFrac.y); + + return data; +} + +struct PlaneData +{ + FfxFloat32x3 fNormal; + FfxFloat32 fDistanceFromOrigin; +}; + +PlaneData GetPlaneFromPoints(FfxFloat32x3 fP0, FfxFloat32x3 fP1, FfxFloat32x3 fP2) +{ + PlaneData plane; + + FfxFloat32x3 v0 = fP0 - fP1; + FfxFloat32x3 v1 = fP0 - fP2; + plane.fNormal = normalize(cross(v0, v1)); + plane.fDistanceFromOrigin = -dot(fP0, plane.fNormal); + + return plane; +} + +FfxFloat32 PointToPlaneDistance(PlaneData plane, FfxFloat32x3 fPoint) +{ + return abs(dot(plane.fNormal, fPoint) + plane.fDistanceFromOrigin); +} + +#endif // #if defined(FFX_GPU) + +#endif //!defined(FFX_FSR2_COMMON_H) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h.meta new file mode 100644 index 0000000..2264050 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_common.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 2176dca22b6e9604da8329c79abae68d +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h new file mode 100644 index 0000000..c63f182 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h @@ -0,0 +1,189 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +FFX_GROUPSHARED FfxUInt32 spdCounter; + +#ifndef SPD_PACKED_ONLY +FFX_GROUPSHARED FfxFloat32 spdIntermediateR[16][16]; +FFX_GROUPSHARED FfxFloat32 spdIntermediateG[16][16]; +FFX_GROUPSHARED FfxFloat32 spdIntermediateB[16][16]; +FFX_GROUPSHARED FfxFloat32 spdIntermediateA[16][16]; + +FfxFloat32x4 SpdLoadSourceImage(FfxFloat32x2 tex, FfxUInt32 slice) +{ + FfxFloat32x2 fUv = (tex + 0.5f + Jitter()) / RenderSize(); + fUv = ClampUv(fUv, RenderSize(), InputColorResourceDimensions()); + FfxFloat32x3 fRgb = SampleInputColor(fUv); + + fRgb /= PreExposure(); + + //compute log luma + const FfxFloat32 fLogLuma = log(ffxMax(FSR2_EPSILON, RGBToLuma(fRgb))); + + // Make sure out of screen pixels contribute no value to the end result + const FfxFloat32 result = all(FFX_LESS_THAN(tex, RenderSize())) ? fLogLuma : 0.0f; + + return FfxFloat32x4(result, 0, 0, 0); +} + +FfxFloat32x4 SpdLoad(FfxInt32x2 tex, FfxUInt32 slice) +{ + return SPD_LoadMipmap5(tex); +} + +void SpdStore(FfxInt32x2 pix, FfxFloat32x4 outValue, FfxUInt32 index, FfxUInt32 slice) +{ + if (index == LumaMipLevelToUse() || index == 5) + { + SPD_SetMipmap(pix, index, outValue.r); + } + + if (index == MipCount() - 1) { //accumulate on 1x1 level + + if (all(FFX_EQUAL(pix, FfxInt32x2(0, 0)))) + { + FfxFloat32 prev = SPD_LoadExposureBuffer().y; + FfxFloat32 result = outValue.r; + + if (prev < resetAutoExposureAverageSmoothing) // Compare Lavg, so small or negative values + { + FfxFloat32 rate = 1.0f; + result = prev + (result - prev) * (1 - exp(-DeltaTime() * rate)); + } + FfxFloat32x2 spdOutput = FfxFloat32x2(ComputeAutoExposureFromLavg(result), result); + SPD_SetExposureBuffer(spdOutput); + } + } +} + +void SpdIncreaseAtomicCounter(FfxUInt32 slice) +{ + SPD_IncreaseAtomicCounter(spdCounter); +} + +FfxUInt32 SpdGetAtomicCounter() +{ + return spdCounter; +} + +void SpdResetAtomicCounter(FfxUInt32 slice) +{ + SPD_ResetAtomicCounter(); +} + +FfxFloat32x4 SpdLoadIntermediate(FfxUInt32 x, FfxUInt32 y) +{ + return FfxFloat32x4( + spdIntermediateR[x][y], + spdIntermediateG[x][y], + spdIntermediateB[x][y], + spdIntermediateA[x][y]); +} +void SpdStoreIntermediate(FfxUInt32 x, FfxUInt32 y, FfxFloat32x4 value) +{ + spdIntermediateR[x][y] = value.x; + spdIntermediateG[x][y] = value.y; + spdIntermediateB[x][y] = value.z; + spdIntermediateA[x][y] = value.w; +} +FfxFloat32x4 SpdReduce4(FfxFloat32x4 v0, FfxFloat32x4 v1, FfxFloat32x4 v2, FfxFloat32x4 v3) +{ + return (v0 + v1 + v2 + v3) * 0.25f; +} +#endif + +// define fetch and store functions Packed +#if FFX_HALF +#error Callback must be implemented + +FFX_GROUPSHARED FfxFloat16x2 spdIntermediateRG[16][16]; +FFX_GROUPSHARED FfxFloat16x2 spdIntermediateBA[16][16]; + +FfxFloat16x4 SpdLoadSourceImageH(FfxFloat32x2 tex, FfxUInt32 slice) +{ + return FfxFloat16x4(imgDst[0][FfxFloat32x3(tex, slice)]); +} +FfxFloat16x4 SpdLoadH(FfxInt32x2 p, FfxUInt32 slice) +{ + return FfxFloat16x4(imgDst6[FfxUInt32x3(p, slice)]); +} +void SpdStoreH(FfxInt32x2 p, FfxFloat16x4 value, FfxUInt32 mip, FfxUInt32 slice) +{ + if (index == LumaMipLevelToUse() || index == 5) + { + imgDst6[FfxUInt32x3(p, slice)] = FfxFloat32x4(value); + return; + } + imgDst[mip + 1][FfxUInt32x3(p, slice)] = FfxFloat32x4(value); +} +void SpdIncreaseAtomicCounter(FfxUInt32 slice) +{ + InterlockedAdd(rw_spd_global_atomic[FfxInt16x2(0, 0)].counter[slice], 1, spdCounter); +} +FfxUInt32 SpdGetAtomicCounter() +{ + return spdCounter; +} +void SpdResetAtomicCounter(FfxUInt32 slice) +{ + rw_spd_global_atomic[FfxInt16x2(0, 0)].counter[slice] = 0; +} +FfxFloat16x4 SpdLoadIntermediateH(FfxUInt32 x, FfxUInt32 y) +{ + return FfxFloat16x4( + spdIntermediateRG[x][y].x, + spdIntermediateRG[x][y].y, + spdIntermediateBA[x][y].x, + spdIntermediateBA[x][y].y); +} +void SpdStoreIntermediateH(FfxUInt32 x, FfxUInt32 y, FfxFloat16x4 value) +{ + spdIntermediateRG[x][y] = value.xy; + spdIntermediateBA[x][y] = value.zw; +} +FfxFloat16x4 SpdReduce4H(FfxFloat16x4 v0, FfxFloat16x4 v1, FfxFloat16x4 v2, FfxFloat16x4 v3) +{ + return (v0 + v1 + v2 + v3) * FfxFloat16(0.25); +} +#endif + +#include "ffx_spd.h" + +void ComputeAutoExposure(FfxUInt32x3 WorkGroupId, FfxUInt32 LocalThreadIndex) +{ +#if FFX_HALF + SpdDownsampleH( + FfxUInt32x2(WorkGroupId.xy), + FfxUInt32(LocalThreadIndex), + FfxUInt32(MipCount()), + FfxUInt32(NumWorkGroups()), + FfxUInt32(WorkGroupId.z), + FfxUInt32x2(WorkGroupOffset())); +#else + SpdDownsample( + FfxUInt32x2(WorkGroupId.xy), + FfxUInt32(LocalThreadIndex), + FfxUInt32(MipCount()), + FfxUInt32(NumWorkGroups()), + FfxUInt32(WorkGroupId.z), + FfxUInt32x2(WorkGroupOffset())); +#endif +} \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h.meta new file mode 100644 index 0000000..08c002c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: dbcdb6dfb36311a49aa7b05bc5054280 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl new file mode 100644 index 0000000..2b96636 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl @@ -0,0 +1,131 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_COLOR 0 +#define FSR2_BIND_UAV_SPD_GLOBAL_ATOMIC 0 +#define FSR2_BIND_UAV_EXPOSURE_MIP_LUMA_CHANGE 1 +#define FSR2_BIND_UAV_EXPOSURE_MIP_5 2 +#define FSR2_BIND_UAV_AUTO_EXPOSURE 3 +#define FSR2_BIND_CB_FSR2 0 +#define FSR2_BIND_CB_SPD 1 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" + +#if defined(FSR2_BIND_CB_SPD) + cbuffer cbSPD : FFX_FSR2_DECLARE_CB(FSR2_BIND_CB_SPD) { + + FfxUInt32 mips; + FfxUInt32 numWorkGroups; + FfxUInt32x2 workGroupOffset; + FfxUInt32x2 renderSize; + }; + + FfxUInt32 MipCount() + { + return mips; + } + + FfxUInt32 NumWorkGroups() + { + return numWorkGroups; + } + + FfxUInt32x2 WorkGroupOffset() + { + return workGroupOffset; + } + + FfxUInt32x2 SPD_RenderSize() + { + return renderSize; + } +#endif + + +FfxFloat32x2 SPD_LoadExposureBuffer() +{ + return rw_auto_exposure[FfxInt32x2(0,0)]; +} + +void SPD_SetExposureBuffer(FfxFloat32x2 value) +{ + rw_auto_exposure[FfxInt32x2(0,0)] = value; +} + +FfxFloat32x4 SPD_LoadMipmap5(FfxInt32x2 iPxPos) +{ + return FfxFloat32x4(rw_img_mip_5[iPxPos], 0, 0, 0); +} + +void SPD_SetMipmap(FfxInt32x2 iPxPos, FfxInt32 slice, FfxFloat32 value) +{ + switch (slice) + { + case FFX_FSR2_SHADING_CHANGE_MIP_LEVEL: + rw_img_mip_shading_change[iPxPos] = value; + break; + case 5: + rw_img_mip_5[iPxPos] = value; + break; + default: + + // avoid flattened side effect +#if defined(FSR2_BIND_UAV_EXPOSURE_MIP_LUMA_CHANGE) || defined(FFX_INTERNAL) + rw_img_mip_shading_change[iPxPos] = rw_img_mip_shading_change[iPxPos]; +#elif defined(FSR2_BIND_UAV_EXPOSURE_MIP_5) || defined(FFX_INTERNAL) + rw_img_mip_5[iPxPos] = rw_img_mip_5[iPxPos]; +#endif + break; + } +} + +void SPD_IncreaseAtomicCounter(inout FfxUInt32 spdCounter) +{ + InterlockedAdd(rw_spd_global_atomic[FfxInt32x2(0,0)], 1, spdCounter); +} + +void SPD_ResetAtomicCounter() +{ + rw_spd_global_atomic[FfxInt32x2(0,0)] = 0; +} + +#include "ffx_fsr2_compute_luminance_pyramid.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 256 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_CB2_ROOTSIG_CONTENT +void CS(uint3 WorkGroupId : SV_GroupID, uint LocalThreadIndex : SV_GroupIndex) +{ + ComputeAutoExposure(WorkGroupId, LocalThreadIndex); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl.meta new file mode 100644 index 0000000..ac39806 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_compute_luminance_pyramid_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 19dfb00afb70c3144b43ec2dc05ecdd9 +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h new file mode 100644 index 0000000..fa4c975 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h @@ -0,0 +1,258 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_DEPTH_CLIP_H +#define FFX_FSR2_DEPTH_CLIP_H + +FFX_STATIC const FfxFloat32 DepthClipBaseScale = 4.0f; + +FfxFloat32 ComputeDepthClip(FfxFloat32x2 fUvSample, FfxFloat32 fCurrentDepthSample) +{ + FfxFloat32 fCurrentDepthViewSpace = GetViewSpaceDepth(fCurrentDepthSample); + BilinearSamplingData bilinearInfo = GetBilinearSamplingData(fUvSample, RenderSize()); + + FfxFloat32 fDilatedSum = 0.0f; + FfxFloat32 fDepth = 0.0f; + FfxFloat32 fWeightSum = 0.0f; + for (FfxInt32 iSampleIndex = 0; iSampleIndex < 4; iSampleIndex++) { + + const FfxInt32x2 iOffset = bilinearInfo.iOffsets[iSampleIndex]; + const FfxInt32x2 iSamplePos = bilinearInfo.iBasePos + iOffset; + + if (IsOnScreen(iSamplePos, RenderSize())) { + const FfxFloat32 fWeight = bilinearInfo.fWeights[iSampleIndex]; + if (fWeight > fReconstructedDepthBilinearWeightThreshold) { + + const FfxFloat32 fPrevDepthSample = LoadReconstructedPrevDepth(iSamplePos); + const FfxFloat32 fPrevNearestDepthViewSpace = GetViewSpaceDepth(fPrevDepthSample); + + const FfxFloat32 fDepthDiff = fCurrentDepthViewSpace - fPrevNearestDepthViewSpace; + + if (fDepthDiff > 0.0f) { + +#if FFX_FSR2_OPTION_INVERTED_DEPTH + const FfxFloat32 fPlaneDepth = ffxMin(fPrevDepthSample, fCurrentDepthSample); +#else + const FfxFloat32 fPlaneDepth = ffxMax(fPrevDepthSample, fCurrentDepthSample); +#endif + + const FfxFloat32x3 fCenter = GetViewSpacePosition(FfxInt32x2(RenderSize() * 0.5f), RenderSize(), fPlaneDepth); + const FfxFloat32x3 fCorner = GetViewSpacePosition(FfxInt32x2(0, 0), RenderSize(), fPlaneDepth); + + const FfxFloat32 fHalfViewportWidth = length(FfxFloat32x2(RenderSize())); + const FfxFloat32 fDepthThreshold = ffxMax(fCurrentDepthViewSpace, fPrevNearestDepthViewSpace); + + const FfxFloat32 Ksep = 1.37e-05f; + const FfxFloat32 Kfov = length(fCorner) / length(fCenter); + const FfxFloat32 fRequiredDepthSeparation = Ksep * Kfov * fHalfViewportWidth * fDepthThreshold; + + const FfxFloat32 fResolutionFactor = ffxSaturate(length(FfxFloat32x2(RenderSize())) / length(FfxFloat32x2(1920.0f, 1080.0f))); + const FfxFloat32 fPower = ffxLerp(1.0f, 3.0f, fResolutionFactor); + fDepth += ffxPow(ffxSaturate(FfxFloat32(fRequiredDepthSeparation / fDepthDiff)), fPower) * fWeight; + fWeightSum += fWeight; + } + } + } + } + + return (fWeightSum > 0) ? ffxSaturate(1.0f - fDepth / fWeightSum) : 0.0f; +} + +FfxFloat32 ComputeMotionDivergence(FfxInt32x2 iPxPos, FfxInt32x2 iPxInputMotionVectorSize) +{ + FfxFloat32 minconvergence = 1.0f; + + FfxFloat32x2 fMotionVectorNucleus = LoadInputMotionVector(iPxPos); + FfxFloat32 fNucleusVelocityLr = length(fMotionVectorNucleus * RenderSize()); + FfxFloat32 fMaxVelocityUv = length(fMotionVectorNucleus); + + const FfxFloat32 MotionVectorVelocityEpsilon = 1e-02f; + + if (fNucleusVelocityLr > MotionVectorVelocityEpsilon) { + for (FfxInt32 y = -1; y <= 1; ++y) { + for (FfxInt32 x = -1; x <= 1; ++x) { + + FfxInt32x2 sp = ClampLoad(iPxPos, FfxInt32x2(x, y), iPxInputMotionVectorSize); + + FfxFloat32x2 fMotionVector = LoadInputMotionVector(sp); + FfxFloat32 fVelocityUv = length(fMotionVector); + + fMaxVelocityUv = ffxMax(fVelocityUv, fMaxVelocityUv); + fVelocityUv = ffxMax(fVelocityUv, fMaxVelocityUv); + minconvergence = ffxMin(minconvergence, dot(fMotionVector / fVelocityUv, fMotionVectorNucleus / fVelocityUv)); + } + } + } + + return ffxSaturate(1.0f - minconvergence) * ffxSaturate(fMaxVelocityUv / 0.01f); +} + +FfxFloat32 ComputeDepthDivergence(FfxInt32x2 iPxPos) +{ + const FfxFloat32 fMaxDistInMeters = GetMaxDistanceInMeters(); + FfxFloat32 fDepthMax = 0.0f; + FfxFloat32 fDepthMin = fMaxDistInMeters; + + FfxInt32 iMaxDistFound = 0; + + for (FfxInt32 y = -1; y < 2; y++) { + for (FfxInt32 x = -1; x < 2; x++) { + + const FfxInt32x2 iOffset = FfxInt32x2(x, y); + const FfxInt32x2 iSamplePos = iPxPos + iOffset; + + const FfxFloat32 fOnScreenFactor = IsOnScreen(iSamplePos, RenderSize()) ? 1.0f : 0.0f; + FfxFloat32 fDepth = GetViewSpaceDepthInMeters(LoadDilatedDepth(iSamplePos)) * fOnScreenFactor; + + iMaxDistFound |= FfxInt32(fMaxDistInMeters == fDepth); + + fDepthMin = ffxMin(fDepthMin, fDepth); + fDepthMax = ffxMax(fDepthMax, fDepth); + } + } + + return (1.0f - fDepthMin / fDepthMax) * (FfxBoolean(iMaxDistFound) ? 0.0f : 1.0f); +} + +FfxFloat32 ComputeTemporalMotionDivergence(FfxInt32x2 iPxPos) +{ + const FfxFloat32x2 fUv = FfxFloat32x2(iPxPos + 0.5f) / RenderSize(); + + FfxFloat32x2 fMotionVector = LoadDilatedMotionVector(iPxPos); + FfxFloat32x2 fReprojectedUv = fUv + fMotionVector; + fReprojectedUv = ClampUv(fReprojectedUv, RenderSize(), MaxRenderSize()); + FfxFloat32x2 fPrevMotionVector = SamplePreviousDilatedMotionVector(fReprojectedUv); + + float fPxDistance = length(fMotionVector * DisplaySize()); + return fPxDistance > 1.0f ? ffxLerp(0.0f, 1.0f - ffxSaturate(length(fPrevMotionVector) / length(fMotionVector)), ffxSaturate(ffxPow(fPxDistance / 20.0f, 3.0f))) : 0; +} + +void PreProcessReactiveMasks(FfxInt32x2 iPxLrPos, FfxFloat32 fMotionDivergence) +{ + // Compensate for bilinear sampling in accumulation pass + + FfxFloat32x3 fReferenceColor = LoadInputColor(iPxLrPos).xyz; + FfxFloat32x2 fReactiveFactor = FfxFloat32x2(0.0f, fMotionDivergence); + + float fMasksSum = 0.0f; + + FfxFloat32x3 fColorSamples[9]; + FfxFloat32 fReactiveSamples[9]; + FfxFloat32 fTransparencyAndCompositionSamples[9]; + + FFX_UNROLL + for (FfxInt32 y = -1; y < 2; y++) { + FFX_UNROLL + for (FfxInt32 x = -1; x < 2; x++) { + + const FfxInt32x2 sampleCoord = ClampLoad(iPxLrPos, FfxInt32x2(x, y), FfxInt32x2(RenderSize())); + + FfxInt32 sampleIdx = (y + 1) * 3 + x + 1; + + FfxFloat32x3 fColorSample = LoadInputColor(sampleCoord).xyz; + FfxFloat32 fReactiveSample = LoadReactiveMask(sampleCoord); + FfxFloat32 fTransparencyAndCompositionSample = LoadTransparencyAndCompositionMask(sampleCoord); + + fColorSamples[sampleIdx] = fColorSample; + fReactiveSamples[sampleIdx] = fReactiveSample; + fTransparencyAndCompositionSamples[sampleIdx] = fTransparencyAndCompositionSample; + + fMasksSum += (fReactiveSample + fTransparencyAndCompositionSample); + } + } + + if (fMasksSum > 0) + { + for (FfxInt32 sampleIdx = 0; sampleIdx < 9; sampleIdx++) + { + FfxFloat32x3 fColorSample = fColorSamples[sampleIdx]; + FfxFloat32 fReactiveSample = fReactiveSamples[sampleIdx]; + FfxFloat32 fTransparencyAndCompositionSample = fTransparencyAndCompositionSamples[sampleIdx]; + + const FfxFloat32 fMaxLenSq = ffxMax(dot(fReferenceColor, fReferenceColor), dot(fColorSample, fColorSample)); + const FfxFloat32 fSimilarity = dot(fReferenceColor, fColorSample) / fMaxLenSq; + + // Increase power for non-similar samples + const FfxFloat32 fPowerBiasMax = 6.0f; + const FfxFloat32 fSimilarityPower = 1.0f + (fPowerBiasMax - fSimilarity * fPowerBiasMax); + const FfxFloat32 fWeightedReactiveSample = ffxPow(fReactiveSample, fSimilarityPower); + const FfxFloat32 fWeightedTransparencyAndCompositionSample = ffxPow(fTransparencyAndCompositionSample, fSimilarityPower); + + fReactiveFactor = ffxMax(fReactiveFactor, FfxFloat32x2(fWeightedReactiveSample, fWeightedTransparencyAndCompositionSample)); + } + } + + StoreDilatedReactiveMasks(iPxLrPos, fReactiveFactor); +} + +FfxFloat32x3 ComputePreparedInputColor(FfxInt32x2 iPxLrPos) +{ + //We assume linear data. if non-linear input (sRGB, ...), + //then we should convert to linear first and back to sRGB on output. + FfxFloat32x3 fRgb = ffxMax(FfxFloat32x3(0, 0, 0), LoadInputColor(iPxLrPos)); + + fRgb = PrepareRgb(fRgb, Exposure(), PreExposure()); + + const FfxFloat32x3 fPreparedYCoCg = RGBToYCoCg(fRgb); + + return fPreparedYCoCg; +} + +FfxFloat32 EvaluateSurface(FfxInt32x2 iPxPos, FfxFloat32x2 fMotionVector) +{ + FfxFloat32 d0 = GetViewSpaceDepth(LoadReconstructedPrevDepth(iPxPos + FfxInt32x2(0, -1))); + FfxFloat32 d1 = GetViewSpaceDepth(LoadReconstructedPrevDepth(iPxPos + FfxInt32x2(0, 0))); + FfxFloat32 d2 = GetViewSpaceDepth(LoadReconstructedPrevDepth(iPxPos + FfxInt32x2(0, 1))); + + return 1.0f - FfxFloat32(((d0 - d1) > (d1 * 0.01f)) && ((d1 - d2) > (d2 * 0.01f))); +} + +void DepthClip(FfxInt32x2 iPxPos) +{ + FfxFloat32x2 fDepthUv = (iPxPos + 0.5f) / RenderSize(); + FfxFloat32x2 fMotionVector = LoadDilatedMotionVector(iPxPos); + + // Discard tiny mvs + fMotionVector *= FfxFloat32(length(fMotionVector * DisplaySize()) > 0.01f); + + const FfxFloat32x2 fDilatedUv = fDepthUv + fMotionVector; + const FfxFloat32 fDilatedDepth = LoadDilatedDepth(iPxPos); + const FfxFloat32 fCurrentDepthViewSpace = GetViewSpaceDepth(LoadInputDepth(iPxPos)); + + // Compute prepared input color and depth clip + FfxFloat32 fDepthClip = ComputeDepthClip(fDilatedUv, fDilatedDepth) * EvaluateSurface(iPxPos, fMotionVector); + FfxFloat32x3 fPreparedYCoCg = ComputePreparedInputColor(iPxPos); + StorePreparedInputColor(iPxPos, FfxFloat32x4(fPreparedYCoCg, fDepthClip)); + + // Compute dilated reactive mask +#if FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS + FfxInt32x2 iSamplePos = iPxPos; +#else + FfxInt32x2 iSamplePos = ComputeHrPosFromLrPos(iPxPos); +#endif + + FfxFloat32 fMotionDivergence = ComputeMotionDivergence(iSamplePos, RenderSize()); + FfxFloat32 fTemporalMotionDifference = ffxSaturate(ComputeTemporalMotionDivergence(iPxPos) - ComputeDepthDivergence(iPxPos)); + + PreProcessReactiveMasks(iPxPos, ffxMax(fTemporalMotionDifference, fMotionDivergence)); +} + +#endif //!defined( FFX_FSR2_DEPTH_CLIPH ) \ No newline at end of file diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h.meta new file mode 100644 index 0000000..eca1b58 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: f7c16477aeb3a9b4f94f4ef818d10d9b +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl new file mode 100644 index 0000000..3cf501c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl @@ -0,0 +1,66 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_RECONSTRUCTED_PREV_NEAREST_DEPTH 0 +#define FSR2_BIND_SRV_DILATED_MOTION_VECTORS 1 +#define FSR2_BIND_SRV_DILATED_DEPTH 2 +#define FSR2_BIND_SRV_REACTIVE_MASK 3 +#define FSR2_BIND_SRV_TRANSPARENCY_AND_COMPOSITION_MASK 4 +#define FSR2_BIND_SRV_PREVIOUS_DILATED_MOTION_VECTORS 5 +#define FSR2_BIND_SRV_INPUT_MOTION_VECTORS 6 +#define FSR2_BIND_SRV_INPUT_COLOR 7 +#define FSR2_BIND_SRV_INPUT_DEPTH 8 +#define FSR2_BIND_SRV_INPUT_EXPOSURE 9 + +#define FSR2_BIND_UAV_DILATED_REACTIVE_MASKS 0 +#define FSR2_BIND_UAV_PREPARED_INPUT_COLOR 1 + +#define FSR2_BIND_CB_FSR2 0 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" +#include "ffx_fsr2_sample.h" +#include "ffx_fsr2_depth_clip.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_PREFER_WAVE64 +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS( + int2 iGroupId : SV_GroupID, + int2 iDispatchThreadId : SV_DispatchThreadID, + int2 iGroupThreadId : SV_GroupThreadID, + int iGroupIndex : SV_GroupIndex) +{ + DepthClip(iDispatchThreadId); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl.meta new file mode 100644 index 0000000..d7ce66d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_depth_clip_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7981b48622ddaa944909ebf209284d83 +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h new file mode 100644 index 0000000..8347fa8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h @@ -0,0 +1,115 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_LOCK_H +#define FFX_FSR2_LOCK_H + +void ClearResourcesForNextFrame(in FfxInt32x2 iPxHrPos) +{ + if (all(FFX_LESS_THAN(iPxHrPos, FfxInt32x2(RenderSize())))) + { +#if FFX_FSR2_OPTION_INVERTED_DEPTH + const FfxUInt32 farZ = 0x0; +#else + const FfxUInt32 farZ = 0x3f800000; +#endif + SetReconstructedDepth(iPxHrPos, farZ); + } +} + +FfxBoolean ComputeThinFeatureConfidence(FfxInt32x2 pos) +{ + const FfxInt32 RADIUS = 1; + + FfxFloat32 fNucleus = LoadLockInputLuma(pos); + + FfxFloat32 similar_threshold = 1.05f; + FfxFloat32 dissimilarLumaMin = FSR2_FLT_MAX; + FfxFloat32 dissimilarLumaMax = 0; + + /* + 0 1 2 + 3 4 5 + 6 7 8 + */ + + #define SETBIT(x) (1U << x) + + FfxUInt32 mask = SETBIT(4); //flag fNucleus as similar + + const FfxUInt32 uNumRejectionMasks = 4; + const FfxUInt32 uRejectionMasks[uNumRejectionMasks] = { + SETBIT(0) | SETBIT(1) | SETBIT(3) | SETBIT(4), //Upper left + SETBIT(1) | SETBIT(2) | SETBIT(4) | SETBIT(5), //Upper right + SETBIT(3) | SETBIT(4) | SETBIT(6) | SETBIT(7), //Lower left + SETBIT(4) | SETBIT(5) | SETBIT(7) | SETBIT(8), //Lower right + }; + + FfxInt32 idx = 0; + FFX_UNROLL + for (FfxInt32 y = -RADIUS; y <= RADIUS; y++) { + FFX_UNROLL + for (FfxInt32 x = -RADIUS; x <= RADIUS; x++, idx++) { + if (x == 0 && y == 0) continue; + + FfxInt32x2 samplePos = ClampLoad(pos, FfxInt32x2(x, y), FfxInt32x2(RenderSize())); + + FfxFloat32 sampleLuma = LoadLockInputLuma(samplePos); + FfxFloat32 difference = ffxMax(sampleLuma, fNucleus) / ffxMin(sampleLuma, fNucleus); + + if (difference > 0 && (difference < similar_threshold)) { + mask |= SETBIT(idx); + } else { + dissimilarLumaMin = ffxMin(dissimilarLumaMin, sampleLuma); + dissimilarLumaMax = ffxMax(dissimilarLumaMax, sampleLuma); + } + } + } + + FfxBoolean isRidge = fNucleus > dissimilarLumaMax || fNucleus < dissimilarLumaMin; + + if (FFX_FALSE == isRidge) { + + return false; + } + + FFX_UNROLL + for (FfxInt32 i = 0; i < 4; i++) { + + if ((mask & uRejectionMasks[i]) == uRejectionMasks[i]) { + return false; + } + } + + return true; +} + +void ComputeLock(FfxInt32x2 iPxLrPos) +{ + if (ComputeThinFeatureConfidence(iPxLrPos)) + { + StoreNewLocks(ComputeHrPosFromLrPos(iPxLrPos), 1.f); + } + + ClearResourcesForNextFrame(iPxLrPos); +} + +#endif // FFX_FSR2_LOCK_H diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h.meta new file mode 100644 index 0000000..6d83098 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 9b4cdc5f81194ac4fa946c31b86234ed +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl new file mode 100644 index 0000000..1409dce --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl @@ -0,0 +1,53 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_LOCK_INPUT_LUMA 0 +#define FSR2_BIND_UAV_NEW_LOCKS 0 +#define FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH 1 +#define FSR2_BIND_CB_FSR2 0 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" +#include "ffx_fsr2_sample.h" +#include "ffx_fsr2_lock.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_PREFER_WAVE64 +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS(uint2 uGroupId : SV_GroupID, uint2 uGroupThreadId : SV_GroupThreadID) +{ + uint2 uDispatchThreadId = uGroupId * uint2(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT) + uGroupThreadId; + + ComputeLock(uDispatchThreadId); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl.meta new file mode 100644 index 0000000..4ded638 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_lock_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 471a3f7a033c72f4fa737d4f8238a9bd +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h new file mode 100644 index 0000000..cee9e14 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h @@ -0,0 +1,106 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_POSTPROCESS_LOCK_STATUS_H +#define FFX_FSR2_POSTPROCESS_LOCK_STATUS_H + +FfxFloat32x4 WrapShadingChangeLuma(FfxInt32x2 iPxSample) +{ + return FfxFloat32x4(LoadMipLuma(iPxSample, LumaMipLevelToUse()), 0, 0, 0); +} + +#if FFX_HALF +FFX_MIN16_F4 WrapShadingChangeLuma(FFX_MIN16_I2 iPxSample) +{ + return FFX_MIN16_F4(LoadMipLuma(iPxSample, LumaMipLevelToUse()), 0, 0, 0); +} +#endif + +#if FFX_FSR2_OPTION_POSTPROCESSLOCKSTATUS_SAMPLERS_USE_DATA_HALF && FFX_HALF +DeclareCustomFetchBilinearSamplesMin16(FetchShadingChangeLumaSamples, WrapShadingChangeLuma) +#else +DeclareCustomFetchBicubicSamples(FetchShadingChangeLumaSamples, WrapShadingChangeLuma) +#endif +DeclareCustomTextureSample(ShadingChangeLumaSample, Lanczos2, FetchShadingChangeLumaSamples) + +FfxFloat32 GetShadingChangeLuma(FfxInt32x2 iPxHrPos, FfxFloat32x2 fUvCoord) +{ + FfxFloat32 fShadingChangeLuma = 0; + +#if 0 + fShadingChangeLuma = Exposure() * exp(ShadingChangeLumaSample(fUvCoord, LumaMipDimensions()).x); +#else + + const FfxFloat32 fDiv = FfxFloat32(2 << LumaMipLevelToUse()); + FfxInt32x2 iMipRenderSize = FfxInt32x2(RenderSize() / fDiv); + + fUvCoord = ClampUv(fUvCoord, iMipRenderSize, LumaMipDimensions()); + fShadingChangeLuma = Exposure() * exp(FfxFloat32(SampleMipLuma(fUvCoord, LumaMipLevelToUse()))); +#endif + + fShadingChangeLuma = ffxPow(fShadingChangeLuma, 1.0f / 6.0f); + + return fShadingChangeLuma; +} + +void UpdateLockStatus(AccumulationPassCommonParams params, + FFX_PARAMETER_INOUT FfxFloat32 fReactiveFactor, LockState state, + FFX_PARAMETER_INOUT FfxFloat32x2 fLockStatus, + FFX_PARAMETER_OUT FfxFloat32 fLockContributionThisFrame, + FFX_PARAMETER_OUT FfxFloat32 fLuminanceDiff) { + + const FfxFloat32 fShadingChangeLuma = GetShadingChangeLuma(params.iPxHrPos, params.fHrUv); + + //init temporal shading change factor, init to -1 or so in reproject to know if "true new"? + fLockStatus[LOCK_TEMPORAL_LUMA] = (fLockStatus[LOCK_TEMPORAL_LUMA] == FfxFloat32(0.0f)) ? fShadingChangeLuma : fLockStatus[LOCK_TEMPORAL_LUMA]; + + FfxFloat32 fPreviousShadingChangeLuma = fLockStatus[LOCK_TEMPORAL_LUMA]; + + fLuminanceDiff = 1.0f - MinDividedByMax(fPreviousShadingChangeLuma, fShadingChangeLuma); + + if (state.NewLock) { + fLockStatus[LOCK_TEMPORAL_LUMA] = fShadingChangeLuma; + + fLockStatus[LOCK_LIFETIME_REMAINING] = (fLockStatus[LOCK_LIFETIME_REMAINING] != 0.0f) ? 2.0f : 1.0f; + } + else if(fLockStatus[LOCK_LIFETIME_REMAINING] <= 1.0f) { + fLockStatus[LOCK_TEMPORAL_LUMA] = ffxLerp(fLockStatus[LOCK_TEMPORAL_LUMA], FfxFloat32(fShadingChangeLuma), 0.5f); + } + else { + if (fLuminanceDiff > 0.1f) { + KillLock(fLockStatus); + } + } + + fReactiveFactor = ffxMax(fReactiveFactor, ffxSaturate((fLuminanceDiff - 0.1f) * 10.0f)); + fLockStatus[LOCK_LIFETIME_REMAINING] *= (1.0f - fReactiveFactor); + + fLockStatus[LOCK_LIFETIME_REMAINING] *= ffxSaturate(1.0f - params.fAccumulationMask); + fLockStatus[LOCK_LIFETIME_REMAINING] *= FfxFloat32(params.fDepthClipFactor < 0.1f); + + // Compute this frame lock contribution + const FfxFloat32 fLifetimeContribution = ffxSaturate(fLockStatus[LOCK_LIFETIME_REMAINING] - 1.0f); + const FfxFloat32 fShadingChangeContribution = ffxSaturate(MinDividedByMax(fLockStatus[LOCK_TEMPORAL_LUMA], fShadingChangeLuma)); + + fLockContributionThisFrame = ffxSaturate(ffxSaturate(fLifetimeContribution * 4.0f) * fShadingChangeContribution); +} + +#endif //!defined( FFX_FSR2_POSTPROCESS_LOCK_STATUS_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h.meta new file mode 100644 index 0000000..ab7b1dd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_postprocess_lock_status.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 3945c3cfd2cc1a64cb0513864d88d8ca +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h new file mode 100644 index 0000000..d9006cd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h @@ -0,0 +1,67 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define GROUP_SIZE 8 + +#define FSR_RCAS_DENOISE 1 + +void WriteUpscaledOutput(FFX_MIN16_U2 iPxHrPos, FfxFloat32x3 fUpscaledColor) +{ + StoreUpscaledOutput(FFX_MIN16_I2(iPxHrPos), fUpscaledColor); +} + +#define FSR_RCAS_F +FfxFloat32x4 FsrRcasLoadF(FfxInt32x2 p) +{ + FfxFloat32x4 fColor = LoadRCAS_Input(p); + + fColor.rgb = PrepareRgb(fColor.rgb, Exposure(), PreExposure()); + + return fColor; +} + +void FsrRcasInputF(inout FfxFloat32 r, inout FfxFloat32 g, inout FfxFloat32 b) {} + +#include "ffx_fsr1.h" + + +void CurrFilter(FFX_MIN16_U2 pos) +{ + FfxFloat32x3 c; + FsrRcasF(c.r, c.g, c.b, pos, RCASConfig()); + + c = UnprepareRgb(c, Exposure()); + + WriteUpscaledOutput(pos, c); +} + +void RCAS(FfxUInt32x3 LocalThreadId, FfxUInt32x3 WorkGroupId, FfxUInt32x3 Dtid) +{ + // Do remapping of local xy in workgroup for a more PS-like swizzle pattern. + FfxUInt32x2 gxy = ffxRemapForQuad(LocalThreadId.x) + FfxUInt32x2(WorkGroupId.x << 4u, WorkGroupId.y << 4u); + CurrFilter(FFX_MIN16_U2(gxy)); + gxy.x += 8u; + CurrFilter(FFX_MIN16_U2(gxy)); + gxy.y += 8u; + CurrFilter(FFX_MIN16_U2(gxy)); + gxy.x -= 8u; + CurrFilter(FFX_MIN16_U2(gxy)); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h.meta new file mode 100644 index 0000000..5df489b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 7bd7d4eb34c626342966cb9b3fe00363 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl new file mode 100644 index 0000000..f447b7e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl @@ -0,0 +1,75 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_EXPOSURE 0 +#define FSR2_BIND_SRV_RCAS_INPUT 1 +#define FSR2_BIND_UAV_UPSCALED_OUTPUT 0 +#define FSR2_BIND_CB_FSR2 0 +#define FSR2_BIND_CB_RCAS 1 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" + +//Move to prototype shader! +#if defined(FSR2_BIND_CB_RCAS) + cbuffer cbRCAS : FFX_FSR2_DECLARE_CB(FSR2_BIND_CB_RCAS) + { + uint4 rcasConfig; + }; + + uint4 RCASConfig() + { + return rcasConfig; + } +#else + uint4 RCASConfig() + { + return 0; + } +#endif + + +float4 LoadRCAS_Input(FfxInt32x2 iPxPos) +{ + return r_rcas_input[iPxPos]; +} + +#include "ffx_fsr2_rcas.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 64 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_CB2_ROOTSIG_CONTENT +void CS(uint3 LocalThreadId : SV_GroupThreadID, uint3 WorkGroupId : SV_GroupID, uint3 Dtid : SV_DispatchThreadID) +{ + RCAS(LocalThreadId, WorkGroupId, Dtid); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl.meta new file mode 100644 index 0000000..b7e089b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_rcas_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 871ca1938c701d64f94ef8ec00ef06f4 +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h new file mode 100644 index 0000000..e9ccc4b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h @@ -0,0 +1,145 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_RECONSTRUCT_DILATED_VELOCITY_AND_PREVIOUS_DEPTH_H +#define FFX_FSR2_RECONSTRUCT_DILATED_VELOCITY_AND_PREVIOUS_DEPTH_H + +void ReconstructPrevDepth(FfxInt32x2 iPxPos, FfxFloat32 fDepth, FfxFloat32x2 fMotionVector, FfxInt32x2 iPxDepthSize) +{ + fMotionVector *= FfxFloat32(length(fMotionVector * DisplaySize()) > 0.1f); + + FfxFloat32x2 fUv = (iPxPos + FfxFloat32(0.5)) / iPxDepthSize; + FfxFloat32x2 fReprojectedUv = fUv + fMotionVector; + + BilinearSamplingData bilinearInfo = GetBilinearSamplingData(fReprojectedUv, RenderSize()); + + // Project current depth into previous frame locations. + // Push to all pixels having some contribution if reprojection is using bilinear logic. + for (FfxInt32 iSampleIndex = 0; iSampleIndex < 4; iSampleIndex++) { + + const FfxInt32x2 iOffset = bilinearInfo.iOffsets[iSampleIndex]; + FfxFloat32 fWeight = bilinearInfo.fWeights[iSampleIndex]; + + if (fWeight > fReconstructedDepthBilinearWeightThreshold) { + + FfxInt32x2 iStorePos = bilinearInfo.iBasePos + iOffset; + if (IsOnScreen(iStorePos, iPxDepthSize)) { + StoreReconstructedDepth(iStorePos, fDepth); + } + } + } +} + +void FindNearestDepth(FFX_PARAMETER_IN FfxInt32x2 iPxPos, FFX_PARAMETER_IN FfxInt32x2 iPxSize, FFX_PARAMETER_OUT FfxFloat32 fNearestDepth, FFX_PARAMETER_OUT FfxInt32x2 fNearestDepthCoord) +{ + const FfxInt32 iSampleCount = 9; + const FfxInt32x2 iSampleOffsets[iSampleCount] = { + FfxInt32x2(+0, +0), + FfxInt32x2(+1, +0), + FfxInt32x2(+0, +1), + FfxInt32x2(+0, -1), + FfxInt32x2(-1, +0), + FfxInt32x2(-1, +1), + FfxInt32x2(+1, +1), + FfxInt32x2(-1, -1), + FfxInt32x2(+1, -1), + }; + + // pull out the depth loads to allow SC to batch them + FfxFloat32 depth[9]; + FfxInt32 iSampleIndex = 0; + FFX_UNROLL + for (iSampleIndex = 0; iSampleIndex < iSampleCount; ++iSampleIndex) { + + FfxInt32x2 iPos = iPxPos + iSampleOffsets[iSampleIndex]; + depth[iSampleIndex] = LoadInputDepth(iPos); + } + + // find closest depth + fNearestDepthCoord = iPxPos; + fNearestDepth = depth[0]; + FFX_UNROLL + for (iSampleIndex = 1; iSampleIndex < iSampleCount; ++iSampleIndex) { + + FfxInt32x2 iPos = iPxPos + iSampleOffsets[iSampleIndex]; + if (IsOnScreen(iPos, iPxSize)) { + + FfxFloat32 fNdDepth = depth[iSampleIndex]; +#if FFX_FSR2_OPTION_INVERTED_DEPTH + if (fNdDepth > fNearestDepth) { +#else + if (fNdDepth < fNearestDepth) { +#endif + fNearestDepthCoord = iPos; + fNearestDepth = fNdDepth; + } + } + } +} + +FfxFloat32 ComputeLockInputLuma(FfxInt32x2 iPxLrPos) +{ + //We assume linear data. if non-linear input (sRGB, ...), + //then we should convert to linear first and back to sRGB on output. + FfxFloat32x3 fRgb = ffxMax(FfxFloat32x3(0, 0, 0), LoadInputColor(iPxLrPos)); + + // Use internal auto exposure for locking logic + fRgb /= PreExposure(); + fRgb *= Exposure(); + +#if FFX_FSR2_OPTION_HDR_COLOR_INPUT + fRgb = Tonemap(fRgb); +#endif + + //compute luma used to lock pixels, if used elsewhere the ffxPow must be moved! + const FfxFloat32 fLockInputLuma = ffxPow(RGBToPerceivedLuma(fRgb), FfxFloat32(1.0 / 6.0)); + + return fLockInputLuma; +} + +void ReconstructAndDilate(FfxInt32x2 iPxLrPos) +{ + FfxFloat32 fDilatedDepth; + FfxInt32x2 iNearestDepthCoord; + + FindNearestDepth(iPxLrPos, RenderSize(), fDilatedDepth, iNearestDepthCoord); + +#if FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS + FfxInt32x2 iSamplePos = iPxLrPos; + FfxInt32x2 iMotionVectorPos = iNearestDepthCoord; +#else + FfxInt32x2 iSamplePos = ComputeHrPosFromLrPos(iPxLrPos); + FfxInt32x2 iMotionVectorPos = ComputeHrPosFromLrPos(iNearestDepthCoord); +#endif + + FfxFloat32x2 fDilatedMotionVector = LoadInputMotionVector(iMotionVectorPos); + + StoreDilatedDepth(iPxLrPos, fDilatedDepth); + StoreDilatedMotionVector(iPxLrPos, fDilatedMotionVector); + + ReconstructPrevDepth(iPxLrPos, fDilatedDepth, fDilatedMotionVector, RenderSize()); + + FfxFloat32 fLockInputLuma = ComputeLockInputLuma(iPxLrPos); + StoreLockInputLuma(iPxLrPos, fLockInputLuma); +} + + +#endif //!defined( FFX_FSR2_RECONSTRUCT_DILATED_VELOCITY_AND_PREVIOUS_DEPTH_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h.meta new file mode 100644 index 0000000..9af47d5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 13cd33c3d34a317409049dfd939e64ef +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl new file mode 100644 index 0000000..33c044e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl @@ -0,0 +1,63 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_MOTION_VECTORS 0 +#define FSR2_BIND_SRV_INPUT_DEPTH 1 +#define FSR2_BIND_SRV_INPUT_COLOR 2 +#define FSR2_BIND_SRV_INPUT_EXPOSURE 3 + +#define FSR2_BIND_UAV_RECONSTRUCTED_PREV_NEAREST_DEPTH 0 +#define FSR2_BIND_UAV_DILATED_MOTION_VECTORS 1 +#define FSR2_BIND_UAV_DILATED_DEPTH 2 +#define FSR2_BIND_UAV_LOCK_INPUT_LUMA 3 + +#define FSR2_BIND_CB_FSR2 0 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" +#include "ffx_fsr2_sample.h" +#include "ffx_fsr2_reconstruct_dilated_velocity_and_previous_depth.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_PREFER_WAVE64 +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS( + int2 iGroupId : SV_GroupID, + int2 iDispatchThreadId : SV_DispatchThreadID, + int2 iGroupThreadId : SV_GroupThreadID, + int iGroupIndex : SV_GroupIndex +) +{ + ReconstructAndDilate(iDispatchThreadId); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl.meta new file mode 100644 index 0000000..4f5036c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reconstruct_previous_depth_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9355c255c8505ae48ae89af286943747 +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h new file mode 100644 index 0000000..f7f3961 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h @@ -0,0 +1,136 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_REPROJECT_H +#define FFX_FSR2_REPROJECT_H + +#ifndef FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE +#define FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE 0 // Reference +#endif + +FfxFloat32x4 WrapHistory(FfxInt32x2 iPxSample) +{ + return LoadHistory(iPxSample); +} + +#if FFX_HALF +FFX_MIN16_F4 WrapHistory(FFX_MIN16_I2 iPxSample) +{ + return FFX_MIN16_F4(LoadHistory(iPxSample)); +} +#endif + + +#if FFX_FSR2_OPTION_REPROJECT_SAMPLERS_USE_DATA_HALF && FFX_HALF +DeclareCustomFetchBicubicSamplesMin16(FetchHistorySamples, WrapHistory) +DeclareCustomTextureSampleMin16(HistorySample, FFX_FSR2_GET_LANCZOS_SAMPLER1D(FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE), FetchHistorySamples) +#else +DeclareCustomFetchBicubicSamples(FetchHistorySamples, WrapHistory) +DeclareCustomTextureSample(HistorySample, FFX_FSR2_GET_LANCZOS_SAMPLER1D(FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE), FetchHistorySamples) +#endif + +FfxFloat32x4 WrapLockStatus(FfxInt32x2 iPxSample) +{ + FfxFloat32x4 fSample = FfxFloat32x4(LoadLockStatus(iPxSample), 0.0f, 0.0f); + return fSample; +} + +#if FFX_HALF +FFX_MIN16_F4 WrapLockStatus(FFX_MIN16_I2 iPxSample) +{ + FFX_MIN16_F4 fSample = FFX_MIN16_F4(LoadLockStatus(iPxSample), 0.0, 0.0); + + return fSample; +} +#endif + +#if 1 +#if FFX_FSR2_OPTION_REPROJECT_SAMPLERS_USE_DATA_HALF && FFX_HALF +DeclareCustomFetchBilinearSamplesMin16(FetchLockStatusSamples, WrapLockStatus) +DeclareCustomTextureSampleMin16(LockStatusSample, Bilinear, FetchLockStatusSamples) +#else +DeclareCustomFetchBilinearSamples(FetchLockStatusSamples, WrapLockStatus) +DeclareCustomTextureSample(LockStatusSample, Bilinear, FetchLockStatusSamples) +#endif +#else +#if FFX_FSR2_OPTION_REPROJECT_SAMPLERS_USE_DATA_HALF && FFX_HALF +DeclareCustomFetchBicubicSamplesMin16(FetchLockStatusSamples, WrapLockStatus) +DeclareCustomTextureSampleMin16(LockStatusSample, FFX_FSR2_GET_LANCZOS_SAMPLER1D(FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE), FetchLockStatusSamples) +#else +DeclareCustomFetchBicubicSamples(FetchLockStatusSamples, WrapLockStatus) +DeclareCustomTextureSample(LockStatusSample, FFX_FSR2_GET_LANCZOS_SAMPLER1D(FFX_FSR2_OPTION_REPROJECT_USE_LANCZOS_TYPE), FetchLockStatusSamples) +#endif +#endif + +FfxFloat32x2 GetMotionVector(FfxInt32x2 iPxHrPos, FfxFloat32x2 fHrUv) +{ +#if FFX_FSR2_OPTION_LOW_RESOLUTION_MOTION_VECTORS + FfxFloat32x2 fDilatedMotionVector = LoadDilatedMotionVector(FFX_MIN16_I2(fHrUv * RenderSize())); +#else + FfxFloat32x2 fDilatedMotionVector = LoadInputMotionVector(iPxHrPos); +#endif + + return fDilatedMotionVector; +} + +FfxBoolean IsUvInside(FfxFloat32x2 fUv) +{ + return (fUv.x >= 0.0f && fUv.x <= 1.0f) && (fUv.y >= 0.0f && fUv.y <= 1.0f); +} + +void ComputeReprojectedUVs(const AccumulationPassCommonParams params, FFX_PARAMETER_OUT FfxFloat32x2 fReprojectedHrUv, FFX_PARAMETER_OUT FfxBoolean bIsExistingSample) +{ + fReprojectedHrUv = params.fHrUv + params.fMotionVector; + + bIsExistingSample = IsUvInside(fReprojectedHrUv); +} + +void ReprojectHistoryColor(const AccumulationPassCommonParams params, FFX_PARAMETER_OUT FfxFloat32x3 fHistoryColor, FFX_PARAMETER_OUT FfxFloat32 fTemporalReactiveFactor, FFX_PARAMETER_OUT FfxBoolean bInMotionLastFrame) +{ + FfxFloat32x4 fHistory = HistorySample(params.fReprojectedHrUv, DisplaySize()); + + fHistoryColor = PrepareRgb(fHistory.rgb, Exposure(), PreviousFramePreExposure()); + + fHistoryColor = RGBToYCoCg(fHistoryColor); + + //Compute temporal reactivity info + fTemporalReactiveFactor = ffxSaturate(abs(fHistory.w)); + bInMotionLastFrame = (fHistory.w < 0.0f); +} + +LockState ReprojectHistoryLockStatus(const AccumulationPassCommonParams params, FFX_PARAMETER_OUT FfxFloat32x2 fReprojectedLockStatus) +{ + LockState state = { FFX_FALSE, FFX_FALSE }; + const FfxFloat32 fNewLockIntensity = LoadRwNewLocks(params.iPxHrPos); + state.NewLock = fNewLockIntensity > (127.0f / 255.0f); + + FfxFloat32 fInPlaceLockLifetime = state.NewLock ? fNewLockIntensity : 0; + + fReprojectedLockStatus = SampleLockStatus(params.fReprojectedHrUv); + + if (fReprojectedLockStatus[LOCK_LIFETIME_REMAINING] != FfxFloat32(0.0f)) { + state.WasLockedPrevFrame = true; + } + + return state; +} + +#endif //!defined( FFX_FSR2_REPROJECT_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h.meta new file mode 100644 index 0000000..1071a12 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_reproject.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 63fc917ca6895cb4aac237ea35edb838 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h new file mode 100644 index 0000000..535dbc3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h @@ -0,0 +1,105 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_RESOURCES_H +#define FFX_FSR2_RESOURCES_H + +#if defined(FFX_CPU) || defined(FFX_GPU) +#define FFX_FSR2_RESOURCE_IDENTIFIER_NULL 0 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_OPAQUE_ONLY 1 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_COLOR 2 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_MOTION_VECTORS 3 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_DEPTH 4 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_EXPOSURE 5 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_REACTIVE_MASK 6 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INPUT_TRANSPARENCY_AND_COMPOSITION_MASK 7 +#define FFX_FSR2_RESOURCE_IDENTIFIER_RECONSTRUCTED_PREVIOUS_NEAREST_DEPTH 8 +#define FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_MOTION_VECTORS 9 +#define FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_DEPTH 10 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_UPSCALED_COLOR 11 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_STATUS 12 +#define FFX_FSR2_RESOURCE_IDENTIFIER_NEW_LOCKS 13 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREPARED_INPUT_COLOR 14 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LUMA_HISTORY 15 +#define FFX_FSR2_RESOURCE_IDENTIFIER_DEBUG_OUTPUT 16 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LANCZOS_LUT 17 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SPD_ATOMIC_COUNT 18 +#define FFX_FSR2_RESOURCE_IDENTIFIER_UPSCALED_OUTPUT 19 +#define FFX_FSR2_RESOURCE_IDENTIFIER_RCAS_INPUT 20 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_STATUS_1 21 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_STATUS_2 22 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_UPSCALED_COLOR_1 23 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_UPSCALED_COLOR_2 24 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_DEFAULT_REACTIVITY 25 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_DEFAULT_TRANSPARENCY_AND_COMPOSITION 26 +#define FFX_FSR2_RESOURCE_IDENTITIER_UPSAMPLE_MAXIMUM_BIAS_LUT 27 +#define FFX_FSR2_RESOURCE_IDENTIFIER_DILATED_REACTIVE_MASKS 28 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE 29 // same as FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_0 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_0 29 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_1 30 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_2 31 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_3 32 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_4 33 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_5 34 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_6 35 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_7 36 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_8 37 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_9 38 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_10 39 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_11 40 +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_12 41 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_DEFAULT_EXPOSURE 42 +#define FFX_FSR2_RESOURCE_IDENTIFIER_AUTO_EXPOSURE 43 +#define FFX_FSR2_RESOURCE_IDENTIFIER_AUTOREACTIVE 44 +#define FFX_FSR2_RESOURCE_IDENTIFIER_AUTOCOMPOSITION 45 + +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR 46 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR 47 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR_1 48 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR_1 49 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_PRE_ALPHA_COLOR_2 50 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREV_POST_ALPHA_COLOR_2 51 +#define FFX_FSR2_RESOURCE_IDENTIFIER_PREVIOUS_DILATED_MOTION_VECTORS 52 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_DILATED_MOTION_VECTORS_1 53 +#define FFX_FSR2_RESOURCE_IDENTIFIER_INTERNAL_DILATED_MOTION_VECTORS_2 54 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LUMA_HISTORY_1 55 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LUMA_HISTORY_2 56 +#define FFX_FSR2_RESOURCE_IDENTIFIER_LOCK_INPUT_LUMA 57 + +// Shading change detection mip level setting, value must be in the range [FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_0, FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_12] +#define FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_SHADING_CHANGE FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_4 +#define FFX_FSR2_SHADING_CHANGE_MIP_LEVEL (FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE_MIPMAP_SHADING_CHANGE - FFX_FSR2_RESOURCE_IDENTIFIER_SCENE_LUMINANCE) + +#define FFX_FSR2_RESOURCE_IDENTIFIER_COUNT 58 + +#define FFX_FSR2_CONSTANTBUFFER_IDENTIFIER_FSR2 0 +#define FFX_FSR2_CONSTANTBUFFER_IDENTIFIER_SPD 1 +#define FFX_FSR2_CONSTANTBUFFER_IDENTIFIER_RCAS 2 +#define FFX_FSR2_CONSTANTBUFFER_IDENTIFIER_GENREACTIVE 3 + +#define FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_TONEMAP 1 +#define FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_INVERSETONEMAP 2 +#define FFX_FSR2_AUTOREACTIVEFLAGS_APPLY_THRESHOLD 4 +#define FFX_FSR2_AUTOREACTIVEFLAGS_USE_COMPONENTS_MAX 8 + +#endif // #if defined(FFX_CPU) || defined(FFX_GPU) + +#endif //!defined( FFX_FSR2_RESOURCES_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h.meta new file mode 100644 index 0000000..9ee0942 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_resources.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: fd5bed2bf4ba07444ae815390168a15d +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h new file mode 100644 index 0000000..f94f40a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h @@ -0,0 +1,605 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_SAMPLE_H +#define FFX_FSR2_SAMPLE_H + +// suppress warnings +#ifdef FFX_HLSL +#pragma warning(disable: 4008) // potentially divide by zero +#endif //FFX_HLSL + +struct FetchedBilinearSamples { + + FfxFloat32x4 fColor00; + FfxFloat32x4 fColor10; + + FfxFloat32x4 fColor01; + FfxFloat32x4 fColor11; +}; + +struct FetchedBicubicSamples { + + FfxFloat32x4 fColor00; + FfxFloat32x4 fColor10; + FfxFloat32x4 fColor20; + FfxFloat32x4 fColor30; + + FfxFloat32x4 fColor01; + FfxFloat32x4 fColor11; + FfxFloat32x4 fColor21; + FfxFloat32x4 fColor31; + + FfxFloat32x4 fColor02; + FfxFloat32x4 fColor12; + FfxFloat32x4 fColor22; + FfxFloat32x4 fColor32; + + FfxFloat32x4 fColor03; + FfxFloat32x4 fColor13; + FfxFloat32x4 fColor23; + FfxFloat32x4 fColor33; +}; + +#if FFX_HALF +struct FetchedBilinearSamplesMin16 { + + FFX_MIN16_F4 fColor00; + FFX_MIN16_F4 fColor10; + + FFX_MIN16_F4 fColor01; + FFX_MIN16_F4 fColor11; +}; + +struct FetchedBicubicSamplesMin16 { + + FFX_MIN16_F4 fColor00; + FFX_MIN16_F4 fColor10; + FFX_MIN16_F4 fColor20; + FFX_MIN16_F4 fColor30; + + FFX_MIN16_F4 fColor01; + FFX_MIN16_F4 fColor11; + FFX_MIN16_F4 fColor21; + FFX_MIN16_F4 fColor31; + + FFX_MIN16_F4 fColor02; + FFX_MIN16_F4 fColor12; + FFX_MIN16_F4 fColor22; + FFX_MIN16_F4 fColor32; + + FFX_MIN16_F4 fColor03; + FFX_MIN16_F4 fColor13; + FFX_MIN16_F4 fColor23; + FFX_MIN16_F4 fColor33; +}; +#else //FFX_HALF +#define FetchedBicubicSamplesMin16 FetchedBicubicSamples +#define FetchedBilinearSamplesMin16 FetchedBilinearSamples +#endif //FFX_HALF + +FfxFloat32x4 Linear(FfxFloat32x4 A, FfxFloat32x4 B, FfxFloat32 t) +{ + return A + (B - A) * t; +} + +FfxFloat32x4 Bilinear(FetchedBilinearSamples BilinearSamples, FfxFloat32x2 fPxFrac) +{ + FfxFloat32x4 fColorX0 = Linear(BilinearSamples.fColor00, BilinearSamples.fColor10, fPxFrac.x); + FfxFloat32x4 fColorX1 = Linear(BilinearSamples.fColor01, BilinearSamples.fColor11, fPxFrac.x); + FfxFloat32x4 fColorXY = Linear(fColorX0, fColorX1, fPxFrac.y); + return fColorXY; +} + +#if FFX_HALF +FFX_MIN16_F4 Linear(FFX_MIN16_F4 A, FFX_MIN16_F4 B, FFX_MIN16_F t) +{ + return A + (B - A) * t; +} + +FFX_MIN16_F4 Bilinear(FetchedBilinearSamplesMin16 BilinearSamples, FFX_MIN16_F2 fPxFrac) +{ + FFX_MIN16_F4 fColorX0 = Linear(BilinearSamples.fColor00, BilinearSamples.fColor10, fPxFrac.x); + FFX_MIN16_F4 fColorX1 = Linear(BilinearSamples.fColor01, BilinearSamples.fColor11, fPxFrac.x); + FFX_MIN16_F4 fColorXY = Linear(fColorX0, fColorX1, fPxFrac.y); + return fColorXY; +} +#endif + +FfxFloat32 Lanczos2NoClamp(FfxFloat32 x) +{ + const FfxFloat32 PI = 3.141592653589793f; // TODO: share SDK constants + return abs(x) < FSR2_EPSILON ? 1.f : (sin(PI * x) / (PI * x)) * (sin(0.5f * PI * x) / (0.5f * PI * x)); +} + +FfxFloat32 Lanczos2(FfxFloat32 x) +{ + x = ffxMin(abs(x), 2.0f); + return Lanczos2NoClamp(x); +} + +#if FFX_HALF + +#if 0 +FFX_MIN16_F Lanczos2NoClamp(FFX_MIN16_F x) +{ + const FFX_MIN16_F PI = FFX_MIN16_F(3.141592653589793f); // TODO: share SDK constants + return abs(x) < FFX_MIN16_F(FSR2_EPSILON) ? FFX_MIN16_F(1.f) : (sin(PI * x) / (PI * x)) * (sin(FFX_MIN16_F(0.5f) * PI * x) / (FFX_MIN16_F(0.5f) * PI * x)); +} +#endif + +FFX_MIN16_F Lanczos2(FFX_MIN16_F x) +{ + x = ffxMin(abs(x), FFX_MIN16_F(2.0f)); + return FFX_MIN16_F(Lanczos2NoClamp(x)); +} +#endif //FFX_HALF + +// FSR1 lanczos approximation. Input is x*x and must be <= 4. +FfxFloat32 Lanczos2ApproxSqNoClamp(FfxFloat32 x2) +{ + FfxFloat32 a = (2.0f / 5.0f) * x2 - 1; + FfxFloat32 b = (1.0f / 4.0f) * x2 - 1; + return ((25.0f / 16.0f) * a * a - (25.0f / 16.0f - 1)) * (b * b); +} + +#if FFX_HALF +FFX_MIN16_F Lanczos2ApproxSqNoClamp(FFX_MIN16_F x2) +{ + FFX_MIN16_F a = FFX_MIN16_F(2.0f / 5.0f) * x2 - FFX_MIN16_F(1); + FFX_MIN16_F b = FFX_MIN16_F(1.0f / 4.0f) * x2 - FFX_MIN16_F(1); + return (FFX_MIN16_F(25.0f / 16.0f) * a * a - FFX_MIN16_F(25.0f / 16.0f - 1)) * (b * b); +} +#endif //FFX_HALF + +FfxFloat32 Lanczos2ApproxSq(FfxFloat32 x2) +{ + x2 = ffxMin(x2, 4.0f); + return Lanczos2ApproxSqNoClamp(x2); +} + +#if FFX_HALF +FFX_MIN16_F Lanczos2ApproxSq(FFX_MIN16_F x2) +{ + x2 = ffxMin(x2, FFX_MIN16_F(4.0f)); + return Lanczos2ApproxSqNoClamp(x2); +} +#endif //FFX_HALF + +FfxFloat32 Lanczos2ApproxNoClamp(FfxFloat32 x) +{ + return Lanczos2ApproxSqNoClamp(x * x); +} + +#if FFX_HALF +FFX_MIN16_F Lanczos2ApproxNoClamp(FFX_MIN16_F x) +{ + return Lanczos2ApproxSqNoClamp(x * x); +} +#endif //FFX_HALF + +FfxFloat32 Lanczos2Approx(FfxFloat32 x) +{ + return Lanczos2ApproxSq(x * x); +} + +#if FFX_HALF +FFX_MIN16_F Lanczos2Approx(FFX_MIN16_F x) +{ + return Lanczos2ApproxSq(x * x); +} +#endif //FFX_HALF + +FfxFloat32 Lanczos2_UseLUT(FfxFloat32 x) +{ + return SampleLanczos2Weight(abs(x)); +} + +#if FFX_HALF +FFX_MIN16_F Lanczos2_UseLUT(FFX_MIN16_F x) +{ + return FFX_MIN16_F(SampleLanczos2Weight(abs(x))); +} +#endif //FFX_HALF + +FfxFloat32x4 Lanczos2_UseLUT(FfxFloat32x4 fColor0, FfxFloat32x4 fColor1, FfxFloat32x4 fColor2, FfxFloat32x4 fColor3, FfxFloat32 t) +{ + FfxFloat32 fWeight0 = Lanczos2_UseLUT(-1.f - t); + FfxFloat32 fWeight1 = Lanczos2_UseLUT(-0.f - t); + FfxFloat32 fWeight2 = Lanczos2_UseLUT(+1.f - t); + FfxFloat32 fWeight3 = Lanczos2_UseLUT(+2.f - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} +#if FFX_HALF +FFX_MIN16_F4 Lanczos2_UseLUT(FFX_MIN16_F4 fColor0, FFX_MIN16_F4 fColor1, FFX_MIN16_F4 fColor2, FFX_MIN16_F4 fColor3, FFX_MIN16_F t) +{ + FFX_MIN16_F fWeight0 = Lanczos2_UseLUT(FFX_MIN16_F(-1.f) - t); + FFX_MIN16_F fWeight1 = Lanczos2_UseLUT(FFX_MIN16_F(-0.f) - t); + FFX_MIN16_F fWeight2 = Lanczos2_UseLUT(FFX_MIN16_F(+1.f) - t); + FFX_MIN16_F fWeight3 = Lanczos2_UseLUT(FFX_MIN16_F(+2.f) - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} +#endif + +FfxFloat32x4 Lanczos2(FfxFloat32x4 fColor0, FfxFloat32x4 fColor1, FfxFloat32x4 fColor2, FfxFloat32x4 fColor3, FfxFloat32 t) +{ + FfxFloat32 fWeight0 = Lanczos2(-1.f - t); + FfxFloat32 fWeight1 = Lanczos2(-0.f - t); + FfxFloat32 fWeight2 = Lanczos2(+1.f - t); + FfxFloat32 fWeight3 = Lanczos2(+2.f - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} + +FfxFloat32x4 Lanczos2(FetchedBicubicSamples Samples, FfxFloat32x2 fPxFrac) +{ + FfxFloat32x4 fColorX0 = Lanczos2(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FfxFloat32x4 fColorX1 = Lanczos2(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FfxFloat32x4 fColorX2 = Lanczos2(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FfxFloat32x4 fColorX3 = Lanczos2(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FfxFloat32x4 fColorXY = Lanczos2(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FfxFloat32x4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FfxFloat32x4 fDeringingMin = fDeringingSamples[0]; + FfxFloat32x4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) { + + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} + +#if FFX_HALF +FFX_MIN16_F4 Lanczos2(FFX_MIN16_F4 fColor0, FFX_MIN16_F4 fColor1, FFX_MIN16_F4 fColor2, FFX_MIN16_F4 fColor3, FFX_MIN16_F t) +{ + FFX_MIN16_F fWeight0 = Lanczos2(FFX_MIN16_F(-1.f) - t); + FFX_MIN16_F fWeight1 = Lanczos2(FFX_MIN16_F(-0.f) - t); + FFX_MIN16_F fWeight2 = Lanczos2(FFX_MIN16_F(+1.f) - t); + FFX_MIN16_F fWeight3 = Lanczos2(FFX_MIN16_F(+2.f) - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} + +FFX_MIN16_F4 Lanczos2(FetchedBicubicSamplesMin16 Samples, FFX_MIN16_F2 fPxFrac) +{ + FFX_MIN16_F4 fColorX0 = Lanczos2(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FFX_MIN16_F4 fColorX1 = Lanczos2(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FFX_MIN16_F4 fColorX2 = Lanczos2(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FFX_MIN16_F4 fColorX3 = Lanczos2(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FFX_MIN16_F4 fColorXY = Lanczos2(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FFX_MIN16_F4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FFX_MIN16_F4 fDeringingMin = fDeringingSamples[0]; + FFX_MIN16_F4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) + { + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} +#endif //FFX_HALF + + +FfxFloat32x4 Lanczos2LUT(FetchedBicubicSamples Samples, FfxFloat32x2 fPxFrac) +{ + FfxFloat32x4 fColorX0 = Lanczos2_UseLUT(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FfxFloat32x4 fColorX1 = Lanczos2_UseLUT(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FfxFloat32x4 fColorX2 = Lanczos2_UseLUT(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FfxFloat32x4 fColorX3 = Lanczos2_UseLUT(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FfxFloat32x4 fColorXY = Lanczos2_UseLUT(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FfxFloat32x4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FfxFloat32x4 fDeringingMin = fDeringingSamples[0]; + FfxFloat32x4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) { + + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} + +#if FFX_HALF +FFX_MIN16_F4 Lanczos2LUT(FetchedBicubicSamplesMin16 Samples, FFX_MIN16_F2 fPxFrac) +{ + FFX_MIN16_F4 fColorX0 = Lanczos2_UseLUT(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FFX_MIN16_F4 fColorX1 = Lanczos2_UseLUT(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FFX_MIN16_F4 fColorX2 = Lanczos2_UseLUT(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FFX_MIN16_F4 fColorX3 = Lanczos2_UseLUT(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FFX_MIN16_F4 fColorXY = Lanczos2_UseLUT(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FFX_MIN16_F4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FFX_MIN16_F4 fDeringingMin = fDeringingSamples[0]; + FFX_MIN16_F4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) + { + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} +#endif //FFX_HALF + + + +FfxFloat32x4 Lanczos2Approx(FfxFloat32x4 fColor0, FfxFloat32x4 fColor1, FfxFloat32x4 fColor2, FfxFloat32x4 fColor3, FfxFloat32 t) +{ + FfxFloat32 fWeight0 = Lanczos2ApproxNoClamp(-1.f - t); + FfxFloat32 fWeight1 = Lanczos2ApproxNoClamp(-0.f - t); + FfxFloat32 fWeight2 = Lanczos2ApproxNoClamp(+1.f - t); + FfxFloat32 fWeight3 = Lanczos2ApproxNoClamp(+2.f - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} + +#if FFX_HALF +FFX_MIN16_F4 Lanczos2Approx(FFX_MIN16_F4 fColor0, FFX_MIN16_F4 fColor1, FFX_MIN16_F4 fColor2, FFX_MIN16_F4 fColor3, FFX_MIN16_F t) +{ + FFX_MIN16_F fWeight0 = Lanczos2ApproxNoClamp(FFX_MIN16_F(-1.f) - t); + FFX_MIN16_F fWeight1 = Lanczos2ApproxNoClamp(FFX_MIN16_F(-0.f) - t); + FFX_MIN16_F fWeight2 = Lanczos2ApproxNoClamp(FFX_MIN16_F(+1.f) - t); + FFX_MIN16_F fWeight3 = Lanczos2ApproxNoClamp(FFX_MIN16_F(+2.f) - t); + return (fWeight0 * fColor0 + fWeight1 * fColor1 + fWeight2 * fColor2 + fWeight3 * fColor3) / (fWeight0 + fWeight1 + fWeight2 + fWeight3); +} +#endif //FFX_HALF + +FfxFloat32x4 Lanczos2Approx(FetchedBicubicSamples Samples, FfxFloat32x2 fPxFrac) +{ + FfxFloat32x4 fColorX0 = Lanczos2Approx(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FfxFloat32x4 fColorX1 = Lanczos2Approx(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FfxFloat32x4 fColorX2 = Lanczos2Approx(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FfxFloat32x4 fColorX3 = Lanczos2Approx(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FfxFloat32x4 fColorXY = Lanczos2Approx(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FfxFloat32x4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FfxFloat32x4 fDeringingMin = fDeringingSamples[0]; + FfxFloat32x4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) + { + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} + +#if FFX_HALF +FFX_MIN16_F4 Lanczos2Approx(FetchedBicubicSamplesMin16 Samples, FFX_MIN16_F2 fPxFrac) +{ + FFX_MIN16_F4 fColorX0 = Lanczos2Approx(Samples.fColor00, Samples.fColor10, Samples.fColor20, Samples.fColor30, fPxFrac.x); + FFX_MIN16_F4 fColorX1 = Lanczos2Approx(Samples.fColor01, Samples.fColor11, Samples.fColor21, Samples.fColor31, fPxFrac.x); + FFX_MIN16_F4 fColorX2 = Lanczos2Approx(Samples.fColor02, Samples.fColor12, Samples.fColor22, Samples.fColor32, fPxFrac.x); + FFX_MIN16_F4 fColorX3 = Lanczos2Approx(Samples.fColor03, Samples.fColor13, Samples.fColor23, Samples.fColor33, fPxFrac.x); + FFX_MIN16_F4 fColorXY = Lanczos2Approx(fColorX0, fColorX1, fColorX2, fColorX3, fPxFrac.y); + + // Deringing + + // TODO: only use 4 by checking jitter + const FfxInt32 iDeringingSampleCount = 4; + const FFX_MIN16_F4 fDeringingSamples[4] = { + Samples.fColor11, + Samples.fColor21, + Samples.fColor12, + Samples.fColor22, + }; + + FFX_MIN16_F4 fDeringingMin = fDeringingSamples[0]; + FFX_MIN16_F4 fDeringingMax = fDeringingSamples[0]; + + FFX_UNROLL + for (FfxInt32 iSampleIndex = 1; iSampleIndex < iDeringingSampleCount; ++iSampleIndex) + { + fDeringingMin = ffxMin(fDeringingMin, fDeringingSamples[iSampleIndex]); + fDeringingMax = ffxMax(fDeringingMax, fDeringingSamples[iSampleIndex]); + } + + fColorXY = clamp(fColorXY, fDeringingMin, fDeringingMax); + + return fColorXY; +} +#endif + +// Clamp by offset direction. Assuming iPxSample is already in range and iPxOffset is compile time constant. +FfxInt32x2 ClampCoord(FfxInt32x2 iPxSample, FfxInt32x2 iPxOffset, FfxInt32x2 iTextureSize) +{ + FfxInt32x2 result = iPxSample + iPxOffset; + result.x = (iPxOffset.x < 0) ? ffxMax(result.x, 0) : result.x; + result.x = (iPxOffset.x > 0) ? ffxMin(result.x, iTextureSize.x - 1) : result.x; + result.y = (iPxOffset.y < 0) ? ffxMax(result.y, 0) : result.y; + result.y = (iPxOffset.y > 0) ? ffxMin(result.y, iTextureSize.y - 1) : result.y; + return result; +} +#if FFX_HALF +FFX_MIN16_I2 ClampCoord(FFX_MIN16_I2 iPxSample, FFX_MIN16_I2 iPxOffset, FFX_MIN16_I2 iTextureSize) +{ + FFX_MIN16_I2 result = iPxSample + iPxOffset; + result.x = (iPxOffset.x < FFX_MIN16_I(0)) ? ffxMax(result.x, FFX_MIN16_I(0)) : result.x; + result.x = (iPxOffset.x > FFX_MIN16_I(0)) ? ffxMin(result.x, iTextureSize.x - FFX_MIN16_I(1)) : result.x; + result.y = (iPxOffset.y < FFX_MIN16_I(0)) ? ffxMax(result.y, FFX_MIN16_I(0)) : result.y; + result.y = (iPxOffset.y > FFX_MIN16_I(0)) ? ffxMin(result.y, iTextureSize.y - FFX_MIN16_I(1)) : result.y; + return result; +} +#endif //FFX_HALF + + +#define DeclareCustomFetchBicubicSamplesWithType(SampleType, TextureType, AddrType, Name, LoadTexture) \ + SampleType Name(AddrType iPxSample, AddrType iTextureSize) \ + { \ + SampleType Samples; \ + \ + Samples.fColor00 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(-1, -1), iTextureSize))); \ + Samples.fColor10 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, -1), iTextureSize))); \ + Samples.fColor20 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, -1), iTextureSize))); \ + Samples.fColor30 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+2, -1), iTextureSize))); \ + \ + Samples.fColor01 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(-1, +0), iTextureSize))); \ + Samples.fColor11 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, +0), iTextureSize))); \ + Samples.fColor21 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, +0), iTextureSize))); \ + Samples.fColor31 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+2, +0), iTextureSize))); \ + \ + Samples.fColor02 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(-1, +1), iTextureSize))); \ + Samples.fColor12 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, +1), iTextureSize))); \ + Samples.fColor22 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, +1), iTextureSize))); \ + Samples.fColor32 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+2, +1), iTextureSize))); \ + \ + Samples.fColor03 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(-1, +2), iTextureSize))); \ + Samples.fColor13 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, +2), iTextureSize))); \ + Samples.fColor23 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, +2), iTextureSize))); \ + Samples.fColor33 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+2, +2), iTextureSize))); \ + \ + return Samples; \ + } + +#define DeclareCustomFetchBicubicSamples(Name, LoadTexture) \ + DeclareCustomFetchBicubicSamplesWithType(FetchedBicubicSamples, FfxFloat32x4, FfxInt32x2, Name, LoadTexture) + +#define DeclareCustomFetchBicubicSamplesMin16(Name, LoadTexture) \ + DeclareCustomFetchBicubicSamplesWithType(FetchedBicubicSamplesMin16, FFX_MIN16_F4, FfxInt32x2, Name, LoadTexture) + +#define DeclareCustomFetchBilinearSamplesWithType(SampleType, TextureType,AddrType, Name, LoadTexture) \ + SampleType Name(AddrType iPxSample, AddrType iTextureSize) \ + { \ + SampleType Samples; \ + Samples.fColor00 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, +0), iTextureSize))); \ + Samples.fColor10 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, +0), iTextureSize))); \ + Samples.fColor01 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+0, +1), iTextureSize))); \ + Samples.fColor11 = TextureType(LoadTexture(ClampCoord(iPxSample, AddrType(+1, +1), iTextureSize))); \ + return Samples; \ + } + +#define DeclareCustomFetchBilinearSamples(Name, LoadTexture) \ + DeclareCustomFetchBilinearSamplesWithType(FetchedBilinearSamples, FfxFloat32x4, FfxInt32x2, Name, LoadTexture) + +#define DeclareCustomFetchBilinearSamplesMin16(Name, LoadTexture) \ + DeclareCustomFetchBilinearSamplesWithType(FetchedBilinearSamplesMin16, FFX_MIN16_F4, FfxInt32x2, Name, LoadTexture) + +// BE CAREFUL: there is some precision issues and (3253, 125) leading to (3252.9989778, 125.001102) +// is common, so iPxSample can "jitter" +#define DeclareCustomTextureSample(Name, InterpolateSamples, FetchSamples) \ + FfxFloat32x4 Name(FfxFloat32x2 fUvSample, FfxInt32x2 iTextureSize) \ + { \ + FfxFloat32x2 fPxSample = (fUvSample * FfxFloat32x2(iTextureSize)) - FfxFloat32x2(0.5f, 0.5f); \ + /* Clamp base coords */ \ + fPxSample.x = ffxMax(0.0f, ffxMin(FfxFloat32(iTextureSize.x), fPxSample.x)); \ + fPxSample.y = ffxMax(0.0f, ffxMin(FfxFloat32(iTextureSize.y), fPxSample.y)); \ + /* */ \ + FfxInt32x2 iPxSample = FfxInt32x2(floor(fPxSample)); \ + FfxFloat32x2 fPxFrac = ffxFract(fPxSample); \ + FfxFloat32x4 fColorXY = FfxFloat32x4(InterpolateSamples(FetchSamples(iPxSample, iTextureSize), fPxFrac)); \ + return fColorXY; \ + } + +#define DeclareCustomTextureSampleMin16(Name, InterpolateSamples, FetchSamples) \ + FFX_MIN16_F4 Name(FfxFloat32x2 fUvSample, FfxInt32x2 iTextureSize) \ + { \ + FfxFloat32x2 fPxSample = (fUvSample * FfxFloat32x2(iTextureSize)) - FfxFloat32x2(0.5f, 0.5f); \ + /* Clamp base coords */ \ + fPxSample.x = ffxMax(0.0f, ffxMin(FfxFloat32(iTextureSize.x), fPxSample.x)); \ + fPxSample.y = ffxMax(0.0f, ffxMin(FfxFloat32(iTextureSize.y), fPxSample.y)); \ + /* */ \ + FfxInt32x2 iPxSample = FfxInt32x2(floor(fPxSample)); \ + FFX_MIN16_F2 fPxFrac = FFX_MIN16_F2(ffxFract(fPxSample)); \ + FFX_MIN16_F4 fColorXY = FFX_MIN16_F4(InterpolateSamples(FetchSamples(iPxSample, iTextureSize), fPxFrac)); \ + return fColorXY; \ + } + +#define FFX_FSR2_CONCAT_ID(x, y) x ## y +#define FFX_FSR2_CONCAT(x, y) FFX_FSR2_CONCAT_ID(x, y) +#define FFX_FSR2_SAMPLER_1D_0 Lanczos2 +#define FFX_FSR2_SAMPLER_1D_1 Lanczos2LUT +#define FFX_FSR2_SAMPLER_1D_2 Lanczos2Approx + +#define FFX_FSR2_GET_LANCZOS_SAMPLER1D(x) FFX_FSR2_CONCAT(FFX_FSR2_SAMPLER_1D_, x) + +#endif //!defined( FFX_FSR2_SAMPLE_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h.meta new file mode 100644 index 0000000..8977d12 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_sample.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: ba3ee190167b6c240aaeb1f8f4dbcb67 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h new file mode 100644 index 0000000..101b75d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h @@ -0,0 +1,250 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define USE_YCOCG 1 + +#define fAutogenEpsilon 0.01f + +// EXPERIMENTAL + +FFX_MIN16_F ComputeAutoTC_01(FFX_MIN16_I2 uDispatchThreadId, FFX_MIN16_I2 iPrevIdx) +{ + FfxFloat32x3 colorPreAlpha = LoadOpaqueOnly(uDispatchThreadId); + FfxFloat32x3 colorPostAlpha = LoadInputColor(uDispatchThreadId); + FfxFloat32x3 colorPrevPreAlpha = LoadPrevPreAlpha(iPrevIdx); + FfxFloat32x3 colorPrevPostAlpha = LoadPrevPostAlpha(iPrevIdx); + +#if USE_YCOCG + colorPreAlpha = RGBToYCoCg(colorPreAlpha); + colorPostAlpha = RGBToYCoCg(colorPostAlpha); + colorPrevPreAlpha = RGBToYCoCg(colorPrevPreAlpha); + colorPrevPostAlpha = RGBToYCoCg(colorPrevPostAlpha); +#endif + + FfxFloat32x3 colorDeltaCurr = colorPostAlpha - colorPreAlpha; + FfxFloat32x3 colorDeltaPrev = colorPrevPostAlpha - colorPrevPreAlpha; + bool hasAlpha = any(FFX_GREATER_THAN(abs(colorDeltaCurr), FfxFloat32x3(fAutogenEpsilon, fAutogenEpsilon, fAutogenEpsilon))); + bool hadAlpha = any(FFX_GREATER_THAN(abs(colorDeltaPrev), FfxFloat32x3(fAutogenEpsilon, fAutogenEpsilon, fAutogenEpsilon))); + + FfxFloat32x3 X = colorPreAlpha; + FfxFloat32x3 Y = colorPostAlpha; + FfxFloat32x3 Z = colorPrevPreAlpha; + FfxFloat32x3 W = colorPrevPostAlpha; + + FFX_MIN16_F retVal = FFX_MIN16_F(ffxSaturate(dot(abs(abs(Y - X) - abs(W - Z)), FfxFloat32x3(1, 1, 1)))); + + // cleanup very small values + retVal = (retVal < getTcThreshold()) ? FFX_MIN16_F(0.0f) : FFX_MIN16_F(1.f); + + return retVal; +} + +// works ok: thin edges +FFX_MIN16_F ComputeAutoTC_02(FFX_MIN16_I2 uDispatchThreadId, FFX_MIN16_I2 iPrevIdx) +{ + FfxFloat32x3 colorPreAlpha = LoadOpaqueOnly(uDispatchThreadId); + FfxFloat32x3 colorPostAlpha = LoadInputColor(uDispatchThreadId); + FfxFloat32x3 colorPrevPreAlpha = LoadPrevPreAlpha(iPrevIdx); + FfxFloat32x3 colorPrevPostAlpha = LoadPrevPostAlpha(iPrevIdx); + +#if USE_YCOCG + colorPreAlpha = RGBToYCoCg(colorPreAlpha); + colorPostAlpha = RGBToYCoCg(colorPostAlpha); + colorPrevPreAlpha = RGBToYCoCg(colorPrevPreAlpha); + colorPrevPostAlpha = RGBToYCoCg(colorPrevPostAlpha); +#endif + + FfxFloat32x3 colorDelta = colorPostAlpha - colorPreAlpha; + FfxFloat32x3 colorPrevDelta = colorPrevPostAlpha - colorPrevPreAlpha; + bool hasAlpha = any(FFX_GREATER_THAN(abs(colorDelta), FfxFloat32x3(fAutogenEpsilon, fAutogenEpsilon, fAutogenEpsilon))); + bool hadAlpha = any(FFX_GREATER_THAN(abs(colorPrevDelta), FfxFloat32x3(fAutogenEpsilon, fAutogenEpsilon, fAutogenEpsilon))); + + FfxFloat32x3 delta = colorPostAlpha - colorPreAlpha; //prev+1*d = post => d = color, alpha = + FfxFloat32x3 deltaPrev = colorPrevPostAlpha - colorPrevPreAlpha; + + FfxFloat32x3 X = colorPrevPreAlpha; + FfxFloat32x3 N = colorPreAlpha - colorPrevPreAlpha; + FfxFloat32x3 YAminusXA = colorPrevPostAlpha - colorPrevPreAlpha; + FfxFloat32x3 NminusNA = colorPostAlpha - colorPrevPostAlpha; + + FfxFloat32x3 A = (hasAlpha || hadAlpha) ? NminusNA / max(FfxFloat32x3(fAutogenEpsilon, fAutogenEpsilon, fAutogenEpsilon), N) : FfxFloat32x3(0, 0, 0); + + FFX_MIN16_F retVal = FFX_MIN16_F( max(max(A.x, A.y), A.z) ); + + // only pixels that have significantly changed in color shuold be considered + retVal = ffxSaturate(retVal * FFX_MIN16_F(length(colorPostAlpha - colorPrevPostAlpha)) ); + + return retVal; +} + +// This function computes the TransparencyAndComposition mask: +// This mask indicates pixels that should discard locks and apply color clamping. +// +// Typically this is the case for translucent pixels (that don't write depth values) or pixels where the correctness of +// the MVs can not be guaranteed (e.g. procedutal movement or vegetation that does not have MVs to reduce the cost during rasterization) +// Also, large changes in color due to changed lighting should be marked to remove locks on pixels with "old" lighting. +// +// This function takes a opaque only and a final texture and uses internal copies of those textures from the last frame. +// The function tries to determine where the color changes between opaque only and final image to determine the pixels that use transparency. +// Also it uses the previous frames and detects where the use of transparency changed to mark those pixels. +// Additionally it marks pixels where the color changed significantly in the opaque only image, e.g. due to lighting or texture animation. +// +// In the final step it stores the current textures in internal textures for the next frame + +FFX_MIN16_F ComputeTransparencyAndComposition(FFX_MIN16_I2 uDispatchThreadId, FFX_MIN16_I2 iPrevIdx) +{ + FFX_MIN16_F retVal = ComputeAutoTC_02(uDispatchThreadId, iPrevIdx); + + // [branch] + if (retVal > FFX_MIN16_F(0.01f)) + { + retVal = ComputeAutoTC_01(uDispatchThreadId, iPrevIdx); + } + return retVal; +} + +float computeSolidEdge(FFX_MIN16_I2 curPos, FFX_MIN16_I2 prevPos) +{ + float lum[9]; + int i = 0; + for (int y = -1; y < 2; ++y) + { + for (int x = -1; x < 2; ++x) + { + FfxFloat32x3 curCol = LoadOpaqueOnly(curPos + FFX_MIN16_I2(x, y)).rgb; + FfxFloat32x3 prevCol = LoadPrevPreAlpha(prevPos + FFX_MIN16_I2(x, y)).rgb; + lum[i++] = length(curCol - prevCol); + } + } + + //float gradX = abs(lum[3] - lum[4]) + abs(lum[5] - lum[4]); + //float gradY = abs(lum[1] - lum[4]) + abs(lum[7] - lum[4]); + + //return sqrt(gradX * gradX + gradY * gradY); + + float gradX = abs(lum[3] - lum[4]) * abs(lum[5] - lum[4]); + float gradY = abs(lum[1] - lum[4]) * abs(lum[7] - lum[4]); + + return sqrt(sqrt(gradX * gradY)); +} + +float computeAlphaEdge(FFX_MIN16_I2 curPos, FFX_MIN16_I2 prevPos) +{ + float lum[9]; + int i = 0; + for (int y = -1; y < 2; ++y) + { + for (int x = -1; x < 2; ++x) + { + FfxFloat32x3 curCol = abs(LoadInputColor(curPos + FFX_MIN16_I2(x, y)).rgb - LoadOpaqueOnly(curPos + FFX_MIN16_I2(x, y)).rgb); + FfxFloat32x3 prevCol = abs(LoadPrevPostAlpha(prevPos + FFX_MIN16_I2(x, y)).rgb - LoadPrevPreAlpha(prevPos + FFX_MIN16_I2(x, y)).rgb); + lum[i++] = length(curCol - prevCol); + } + } + + //float gradX = abs(lum[3] - lum[4]) + abs(lum[5] - lum[4]); + //float gradY = abs(lum[1] - lum[4]) + abs(lum[7] - lum[4]); + + //return sqrt(gradX * gradX + gradY * gradY); + + float gradX = abs(lum[3] - lum[4]) * abs(lum[5] - lum[4]); + float gradY = abs(lum[1] - lum[4]) * abs(lum[7] - lum[4]); + + return sqrt(sqrt(gradX * gradY)); +} + +FFX_MIN16_F ComputeAabbOverlap(FFX_MIN16_I2 uDispatchThreadId, FFX_MIN16_I2 iPrevIdx) +{ + FFX_MIN16_F retVal = FFX_MIN16_F(0.f); + + FfxFloat32x2 fMotionVector = LoadInputMotionVector(uDispatchThreadId); + FfxFloat32x3 colorPreAlpha = LoadOpaqueOnly(uDispatchThreadId); + FfxFloat32x3 colorPostAlpha = LoadInputColor(uDispatchThreadId); + FfxFloat32x3 colorPrevPreAlpha = LoadPrevPreAlpha(iPrevIdx); + FfxFloat32x3 colorPrevPostAlpha = LoadPrevPostAlpha(iPrevIdx); + +#if USE_YCOCG + colorPreAlpha = RGBToYCoCg(colorPreAlpha); + colorPostAlpha = RGBToYCoCg(colorPostAlpha); + colorPrevPreAlpha = RGBToYCoCg(colorPrevPreAlpha); + colorPrevPostAlpha = RGBToYCoCg(colorPrevPostAlpha); +#endif + FfxFloat32x3 minPrev = FFX_MIN16_F3(+1000.f, +1000.f, +1000.f); + FfxFloat32x3 maxPrev = FFX_MIN16_F3(-1000.f, -1000.f, -1000.f); + for (int y = -1; y < 2; ++y) + { + for (int x = -1; x < 2; ++x) + { + FfxFloat32x3 W = LoadPrevPostAlpha(iPrevIdx + FFX_MIN16_I2(x, y)); + +#if USE_YCOCG + W = RGBToYCoCg(W); +#endif + minPrev = min(minPrev, W); + maxPrev = max(maxPrev, W); + } + } + // instead of computing the overlap: simply count how many samples are outside + // set reactive based on that + FFX_MIN16_F count = FFX_MIN16_F(0.f); + for (int y = -1; y < 2; ++y) + { + for (int x = -1; x < 2; ++x) + { + FfxFloat32x3 Y = LoadInputColor(uDispatchThreadId + FFX_MIN16_I2(x, y)); + +#if USE_YCOCG + Y = RGBToYCoCg(Y); +#endif + count += ((Y.x < minPrev.x) || (Y.x > maxPrev.x)) ? FFX_MIN16_F(1.f) : FFX_MIN16_F(0.f); + count += ((Y.y < minPrev.y) || (Y.y > maxPrev.y)) ? FFX_MIN16_F(1.f) : FFX_MIN16_F(0.f); + count += ((Y.z < minPrev.z) || (Y.z > maxPrev.z)) ? FFX_MIN16_F(1.f) : FFX_MIN16_F(0.f); + } + } + retVal = count / FFX_MIN16_F(27.f); + + return retVal; +} + + +// This function computes the Reactive mask: +// We want pixels marked where the alpha portion of the frame changes a lot between neighbours +// Those pixels are expected to change quickly between frames, too. (e.g. small particles, reflections on curved surfaces...) +// As a result history would not be trustworthy. +// On the other hand we don't want pixels marked where pre-alpha has a large differnce, since those would profit from accumulation +// For mirrors we may assume the pre-alpha is pretty uniform color. +// +// This works well generally, but also marks edge pixels +FFX_MIN16_F ComputeReactive(FFX_MIN16_I2 uDispatchThreadId, FFX_MIN16_I2 iPrevIdx) +{ + // we only get here if alpha has a significant contribution and has changed since last frame. + FFX_MIN16_F retVal = FFX_MIN16_F(0.f); + + // mark pixels with huge variance in alpha as reactive + FFX_MIN16_F alphaEdge = FFX_MIN16_F(computeAlphaEdge(uDispatchThreadId, iPrevIdx)); + FFX_MIN16_F opaqueEdge = FFX_MIN16_F(computeSolidEdge(uDispatchThreadId, iPrevIdx)); + retVal = ffxSaturate(alphaEdge - opaqueEdge); + + // the above also marks edge pixels due to jitter, so we need to cancel those out + + + return retVal; +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h.meta new file mode 100644 index 0000000..c135d50 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 18b8590c99b171a4e9af68dfd2c3ff02 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl new file mode 100644 index 0000000..8e635d1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl @@ -0,0 +1,114 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#define FSR2_BIND_SRV_INPUT_OPAQUE_ONLY 0 +#define FSR2_BIND_SRV_INPUT_COLOR 1 +#define FSR2_BIND_SRV_INPUT_MOTION_VECTORS 2 +#define FSR2_BIND_SRV_PREV_PRE_ALPHA_COLOR 3 +#define FSR2_BIND_SRV_PREV_POST_ALPHA_COLOR 4 +#define FSR2_BIND_SRV_REACTIVE_MASK 4 +#define FSR2_BIND_SRV_TRANSPARENCY_AND_COMPOSITION_MASK 5 + +#define FSR2_BIND_UAV_AUTOREACTIVE 0 +#define FSR2_BIND_UAV_AUTOCOMPOSITION 1 +#define FSR2_BIND_UAV_PREV_PRE_ALPHA_COLOR 2 +#define FSR2_BIND_UAV_PREV_POST_ALPHA_COLOR 3 + +#define FSR2_BIND_CB_FSR2 0 +#define FSR2_BIND_CB_AUTOREACTIVE 1 + +#include "ffx_fsr2_callbacks_hlsl.h" +#include "ffx_fsr2_common.h" + +#if defined(FSR2_BIND_CB_AUTOREACTIVE) + cbuffer cbGenerateReactive : FFX_FSR2_DECLARE_CB(FSR2_BIND_CB_AUTOREACTIVE) + { + float fTcThreshold; // 0.1 is a good starting value, lower will result in more TC pixels + float fTcScale; + float fReactiveScale; + float fReactiveMax; + }; + float getTcThreshold() + { + return fTcThreshold; + } +#else + #define fTcThreshold 0.05f + #define fTcScale 1.00f + #define fReactiveScale 10.0f + #define fReactiveMax 0.90f + float getTcThreshold() + { + return fTcThreshold; + } +#endif + +#include "ffx_fsr2_tcr_autogen.h" + +#ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#define FFX_FSR2_THREAD_GROUP_WIDTH 8 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_WIDTH +#ifndef FFX_FSR2_THREAD_GROUP_HEIGHT +#define FFX_FSR2_THREAD_GROUP_HEIGHT 8 +#endif // FFX_FSR2_THREAD_GROUP_HEIGHT +#ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#define FFX_FSR2_THREAD_GROUP_DEPTH 1 +#endif // #ifndef FFX_FSR2_THREAD_GROUP_DEPTH +#ifndef FFX_FSR2_NUM_THREADS +#define FFX_FSR2_NUM_THREADS [numthreads(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT, FFX_FSR2_THREAD_GROUP_DEPTH)] +#endif // #ifndef FFX_FSR2_NUM_THREADS + +FFX_FSR2_NUM_THREADS +FFX_FSR2_EMBED_ROOTSIG_CONTENT +void CS(uint2 uGroupId : SV_GroupID, uint2 uGroupThreadId : SV_GroupThreadID) +{ + FFX_MIN16_I2 uDispatchThreadId = FFX_MIN16_I2(uGroupId * uint2(FFX_FSR2_THREAD_GROUP_WIDTH, FFX_FSR2_THREAD_GROUP_HEIGHT) + uGroupThreadId); + + // ToDo: take into account jitter (i.e. add delta of previous jitter and current jitter to previous UV + // fetch pre- and post-alpha color values + FFX_MIN16_F2 fUv = ( FFX_MIN16_F2(uDispatchThreadId) + FFX_MIN16_F2(0.5f, 0.5f) ) / FFX_MIN16_F2( RenderSize() ); + FFX_MIN16_F2 fPrevUV = fUv + FFX_MIN16_F2( LoadInputMotionVector(uDispatchThreadId) ); + FFX_MIN16_I2 iPrevIdx = FFX_MIN16_I2(fPrevUV * FFX_MIN16_F2(RenderSize()) - 0.5f); + + FFX_MIN16_F3 colorPreAlpha = FFX_MIN16_F3( LoadOpaqueOnly( uDispatchThreadId ) ); + FFX_MIN16_F3 colorPostAlpha = FFX_MIN16_F3( LoadInputColor( uDispatchThreadId ) ); + + FFX_MIN16_F2 outReactiveMask = 0; + + outReactiveMask.y = ComputeTransparencyAndComposition(uDispatchThreadId, iPrevIdx); + + if (outReactiveMask.y > 0.5f) + { + outReactiveMask.x = ComputeReactive(uDispatchThreadId, iPrevIdx); + outReactiveMask.x *= FFX_MIN16_F(fReactiveScale); + outReactiveMask.x = outReactiveMask.x < fReactiveMax ? outReactiveMask.x : FFX_MIN16_F( fReactiveMax ); + } + + outReactiveMask.y *= FFX_MIN16_F(fTcScale ); + + outReactiveMask.x = max( outReactiveMask.x, FFX_MIN16_F( LoadReactiveMask(uDispatchThreadId) ) ); + outReactiveMask.y = max( outReactiveMask.y, FFX_MIN16_F( LoadTransparencyAndCompositionMask(uDispatchThreadId) ) ); + + StoreAutoReactive(uDispatchThreadId, outReactiveMask); + + StorePrevPreAlpha(uDispatchThreadId, colorPreAlpha); + StorePrevPostAlpha(uDispatchThreadId, colorPostAlpha); +} diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl.meta new file mode 100644 index 0000000..d133259 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_tcr_autogen_pass.hlsl.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9feb1fa4d6cff5a4799298dc69b12a8e +ShaderIncludeImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h new file mode 100644 index 0000000..abdb888 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h @@ -0,0 +1,194 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifndef FFX_FSR2_UPSAMPLE_H +#define FFX_FSR2_UPSAMPLE_H + +FFX_STATIC const FfxUInt32 iLanczos2SampleCount = 16; + +void Deringing(RectificationBox clippingBox, FFX_PARAMETER_INOUT FfxFloat32x3 fColor) +{ + fColor = clamp(fColor, clippingBox.aabbMin, clippingBox.aabbMax); +} +#if FFX_HALF +void Deringing(RectificationBoxMin16 clippingBox, FFX_PARAMETER_INOUT FFX_MIN16_F3 fColor) +{ + fColor = clamp(fColor, clippingBox.aabbMin, clippingBox.aabbMax); +} +#endif + +#ifndef FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE +#define FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE 2 // Approximate +#endif + +FfxFloat32 GetUpsampleLanczosWeight(FfxFloat32x2 fSrcSampleOffset, FfxFloat32 fKernelWeight) +{ + FfxFloat32x2 fSrcSampleOffsetBiased = fSrcSampleOffset * fKernelWeight.xx; +#if FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 0 // LANCZOS_TYPE_REFERENCE + FfxFloat32 fSampleWeight = Lanczos2(length(fSrcSampleOffsetBiased)); +#elif FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 1 // LANCZOS_TYPE_LUT + FfxFloat32 fSampleWeight = Lanczos2_UseLUT(length(fSrcSampleOffsetBiased)); +#elif FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 2 // LANCZOS_TYPE_APPROXIMATE + FfxFloat32 fSampleWeight = Lanczos2ApproxSq(dot(fSrcSampleOffsetBiased, fSrcSampleOffsetBiased)); +#else +#error "Invalid Lanczos type" +#endif + return fSampleWeight; +} + +#if FFX_HALF +FFX_MIN16_F GetUpsampleLanczosWeight(FFX_MIN16_F2 fSrcSampleOffset, FFX_MIN16_F fKernelWeight) +{ + FFX_MIN16_F2 fSrcSampleOffsetBiased = fSrcSampleOffset * fKernelWeight.xx; +#if FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 0 // LANCZOS_TYPE_REFERENCE + FFX_MIN16_F fSampleWeight = Lanczos2(length(fSrcSampleOffsetBiased)); +#elif FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 1 // LANCZOS_TYPE_LUT + FFX_MIN16_F fSampleWeight = Lanczos2_UseLUT(length(fSrcSampleOffsetBiased)); +#elif FFX_FSR2_OPTION_UPSAMPLE_USE_LANCZOS_TYPE == 2 // LANCZOS_TYPE_APPROXIMATE + FFX_MIN16_F fSampleWeight = Lanczos2ApproxSq(dot(fSrcSampleOffsetBiased, fSrcSampleOffsetBiased)); + + // To Test: Save reciproqual sqrt compute + // FfxFloat32 fSampleWeight = Lanczos2Sq_UseLUT(dot(fSrcSampleOffsetBiased, fSrcSampleOffsetBiased)); +#else +#error "Invalid Lanczos type" +#endif + return fSampleWeight; +} +#endif + +FfxFloat32 ComputeMaxKernelWeight() { + const FfxFloat32 fKernelSizeBias = 1.0f; + + FfxFloat32 fKernelWeight = FfxFloat32(1) + (FfxFloat32(1.0f) / FfxFloat32x2(DownscaleFactor()) - FfxFloat32(1)).x * FfxFloat32(fKernelSizeBias); + + return ffxMin(FfxFloat32(1.99f), fKernelWeight); +} + +FfxFloat32x4 ComputeUpsampledColorAndWeight(const AccumulationPassCommonParams params, + FFX_PARAMETER_INOUT RectificationBox clippingBox, FfxFloat32 fReactiveFactor) +{ + #if FFX_FSR2_OPTION_UPSAMPLE_SAMPLERS_USE_DATA_HALF && FFX_HALF + #include "ffx_fsr2_force16_begin.h" + #endif + // We compute a sliced lanczos filter with 2 lobes (other slices are accumulated temporaly) + FfxFloat32x2 fDstOutputPos = FfxFloat32x2(params.iPxHrPos) + FFX_BROADCAST_FLOAT32X2(0.5f); // Destination resolution output pixel center position + FfxFloat32x2 fSrcOutputPos = fDstOutputPos * DownscaleFactor(); // Source resolution output pixel center position + FfxInt32x2 iSrcInputPos = FfxInt32x2(floor(fSrcOutputPos)); // TODO: what about weird upscale factors... + + #if FFX_FSR2_OPTION_UPSAMPLE_SAMPLERS_USE_DATA_HALF && FFX_HALF + #include "ffx_fsr2_force16_end.h" + #endif + + FfxFloat32x3 fSamples[iLanczos2SampleCount]; + + FfxFloat32x2 fSrcUnjitteredPos = (FfxFloat32x2(iSrcInputPos) + FfxFloat32x2(0.5f, 0.5f)) - Jitter(); // This is the un-jittered position of the sample at offset 0,0 + + FfxInt32x2 offsetTL; + offsetTL.x = (fSrcUnjitteredPos.x > fSrcOutputPos.x) ? FfxInt32(-2) : FfxInt32(-1); + offsetTL.y = (fSrcUnjitteredPos.y > fSrcOutputPos.y) ? FfxInt32(-2) : FfxInt32(-1); + + //Load samples + // If fSrcUnjitteredPos.y > fSrcOutputPos.y, indicates offsetTL.y = -2, sample offset Y will be [-2, 1], clipbox will be rows [1, 3]. + // Flip row# for sampling offset in this case, so first 0~2 rows in the sampled array can always be used for computing the clipbox. + // This reduces branch or cmove on sampled colors, but moving this overhead to sample position / weight calculation time which apply to less values. + const FfxBoolean bFlipRow = fSrcUnjitteredPos.y > fSrcOutputPos.y; + const FfxBoolean bFlipCol = fSrcUnjitteredPos.x > fSrcOutputPos.x; + + FfxFloat32x2 fOffsetTL = FfxFloat32x2(offsetTL); + + FFX_UNROLL + for (FfxInt32 row = 0; row < 3; row++) { + + FFX_UNROLL + for (FfxInt32 col = 0; col < 3; col++) { + FfxInt32 iSampleIndex = col + (row << 2); + + FfxInt32x2 sampleColRow = FfxInt32x2(bFlipCol ? (3 - col) : col, bFlipRow ? (3 - row) : row); + FfxInt32x2 iSrcSamplePos = FfxInt32x2(iSrcInputPos) + offsetTL + sampleColRow; + + const FfxInt32x2 sampleCoord = ClampLoad(iSrcSamplePos, FfxInt32x2(0, 0), FfxInt32x2(RenderSize())); + + fSamples[iSampleIndex] = LoadPreparedInputColor(FfxInt32x2(sampleCoord)); + } + } + + FfxFloat32x4 fColorAndWeight = FfxFloat32x4(0.0f, 0.0f, 0.0f, 0.0f); + + FfxFloat32x2 fBaseSampleOffset = FfxFloat32x2(fSrcUnjitteredPos - fSrcOutputPos); + + // Identify how much of each upsampled color to be used for this frame + const FfxFloat32 fKernelReactiveFactor = ffxMax(fReactiveFactor, FfxFloat32(params.bIsNewSample)); + const FfxFloat32 fKernelBiasMax = ComputeMaxKernelWeight() * (1.0f - fKernelReactiveFactor); + + const FfxFloat32 fKernelBiasMin = ffxMax(1.0f, ((1.0f + fKernelBiasMax) * 0.3f)); + const FfxFloat32 fKernelBiasFactor = ffxMax(0.0f, ffxMax(0.25f * params.fDepthClipFactor, fKernelReactiveFactor)); + const FfxFloat32 fKernelBias = ffxLerp(fKernelBiasMax, fKernelBiasMin, fKernelBiasFactor); + + const FfxFloat32 fRectificationCurveBias = ffxLerp(-2.0f, -3.0f, ffxSaturate(params.fHrVelocity / 50.0f)); + + FFX_UNROLL + for (FfxInt32 row = 0; row < 3; row++) { + FFX_UNROLL + for (FfxInt32 col = 0; col < 3; col++) { + FfxInt32 iSampleIndex = col + (row << 2); + + const FfxInt32x2 sampleColRow = FfxInt32x2(bFlipCol ? (3 - col) : col, bFlipRow ? (3 - row) : row); + const FfxFloat32x2 fOffset = fOffsetTL + FfxFloat32x2(sampleColRow); + FfxFloat32x2 fSrcSampleOffset = fBaseSampleOffset + fOffset; + + FfxInt32x2 iSrcSamplePos = FfxInt32x2(iSrcInputPos) + FfxInt32x2(offsetTL) + sampleColRow; + + const FfxFloat32 fOnScreenFactor = FfxFloat32(IsOnScreen(FfxInt32x2(iSrcSamplePos), FfxInt32x2(RenderSize()))); + FfxFloat32 fSampleWeight = fOnScreenFactor * FfxFloat32(GetUpsampleLanczosWeight(fSrcSampleOffset, fKernelBias)); + + fColorAndWeight += FfxFloat32x4(fSamples[iSampleIndex] * fSampleWeight, fSampleWeight); + + // Update rectification box + { + const FfxFloat32 fSrcSampleOffsetSq = dot(fSrcSampleOffset, fSrcSampleOffset); + const FfxFloat32 fBoxSampleWeight = exp(fRectificationCurveBias * fSrcSampleOffsetSq); + + const FfxBoolean bInitialSample = (row == 0) && (col == 0); + RectificationBoxAddSample(bInitialSample, clippingBox, fSamples[iSampleIndex], fBoxSampleWeight); + } + } + } + + RectificationBoxComputeVarianceBoxData(clippingBox); + + fColorAndWeight.w *= FfxFloat32(fColorAndWeight.w > FSR2_EPSILON); + + if (fColorAndWeight.w > FSR2_EPSILON) { + // Normalize for deringing (we need to compare colors) + fColorAndWeight.xyz = fColorAndWeight.xyz / fColorAndWeight.w; + fColorAndWeight.w *= fUpsampleLanczosWeightScale; + + Deringing(clippingBox, fColorAndWeight.xyz); + } + + #if FFX_FSR2_OPTION_UPSAMPLE_SAMPLERS_USE_DATA_HALF && FFX_HALF + #include "ffx_fsr2_force16_end.h" + #endif + + return fColorAndWeight; +} + +#endif //!defined( FFX_FSR2_UPSAMPLE_H ) diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h.meta new file mode 100644 index 0000000..778092e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_fsr2_upsample.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 1ff3a385cfe07db4387e4d7b457238f8 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h new file mode 100644 index 0000000..b94f46f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h @@ -0,0 +1,929 @@ +// This file is part of the FidelityFX SDK. +// +// Copyright (c) 2022-2023 Advanced Micro Devices, Inc. All rights reserved. +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. + +#ifdef FFX_CPU +FFX_STATIC void SpdSetup(FfxUInt32x2 dispatchThreadGroupCountXY, // CPU side: dispatch thread group count xy + FfxUInt32x2 workGroupOffset, // GPU side: pass in as constant + FfxUInt32x2 numWorkGroupsAndMips, // GPU side: pass in as constant + FfxUInt32x4 rectInfo, // left, top, width, height + FfxInt32 mips) // optional: if -1, calculate based on rect width and height +{ + workGroupOffset[0] = rectInfo[0] / 64; // rectInfo[0] = left + workGroupOffset[1] = rectInfo[1] / 64; // rectInfo[1] = top + + FfxUInt32 endIndexX = (rectInfo[0] + rectInfo[2] - 1) / 64; // rectInfo[0] = left, rectInfo[2] = width + FfxUInt32 endIndexY = (rectInfo[1] + rectInfo[3] - 1) / 64; // rectInfo[1] = top, rectInfo[3] = height + + dispatchThreadGroupCountXY[0] = endIndexX + 1 - workGroupOffset[0]; + dispatchThreadGroupCountXY[1] = endIndexY + 1 - workGroupOffset[1]; + + numWorkGroupsAndMips[0] = (dispatchThreadGroupCountXY[0]) * (dispatchThreadGroupCountXY[1]); + + if (mips >= 0) + { + numWorkGroupsAndMips[1] = FfxUInt32(mips); + } + else + { + // calculate based on rect width and height + FfxUInt32 resolution = ffxMax(rectInfo[2], rectInfo[3]); + numWorkGroupsAndMips[1] = FfxUInt32((ffxMin(floor(log2(FfxFloat32(resolution))), FfxFloat32(12)))); + } +} + +FFX_STATIC void SpdSetup(FfxUInt32x2 dispatchThreadGroupCountXY, // CPU side: dispatch thread group count xy + FfxUInt32x2 workGroupOffset, // GPU side: pass in as constant + FfxUInt32x2 numWorkGroupsAndMips, // GPU side: pass in as constant + FfxUInt32x4 rectInfo) // left, top, width, height +{ + SpdSetup(dispatchThreadGroupCountXY, workGroupOffset, numWorkGroupsAndMips, rectInfo, -1); +} +#endif // #ifdef FFX_CPU + + +//============================================================================================================================== +// NON-PACKED VERSION +//============================================================================================================================== +#ifdef FFX_GPU +#ifdef SPD_PACKED_ONLY +// Avoid compiler error +FfxFloat32x4 SpdLoadSourceImage(FfxInt32x2 p, FfxUInt32 slice) +{ + return FfxFloat32x4(0.0, 0.0, 0.0, 0.0); +} + +FfxFloat32x4 SpdLoad(FfxInt32x2 p, FfxUInt32 slice) +{ + return FfxFloat32x4(0.0, 0.0, 0.0, 0.0); +} +void SpdStore(FfxInt32x2 p, FfxFloat32x4 value, FfxUInt32 mip, FfxUInt32 slice) +{ +} +FfxFloat32x4 SpdLoadIntermediate(FfxUInt32 x, FfxUInt32 y) +{ + return FfxFloat32x4(0.0, 0.0, 0.0, 0.0); +} +void SpdStoreIntermediate(FfxUInt32 x, FfxUInt32 y, FfxFloat32x4 value) +{ +} +FfxFloat32x4 SpdReduce4(FfxFloat32x4 v0, FfxFloat32x4 v1, FfxFloat32x4 v2, FfxFloat32x4 v3) +{ + return FfxFloat32x4(0.0, 0.0, 0.0, 0.0); +} +#endif // #ifdef SPD_PACKED_ONLY + +//_____________________________________________________________/\_______________________________________________________________ + +void SpdWorkgroupShuffleBarrier() +{ +#ifdef FFX_GLSL + barrier(); +#endif +#ifdef FFX_HLSL + GroupMemoryBarrierWithGroupSync(); +#endif +} + +// Only last active workgroup should proceed +bool SpdExitWorkgroup(FfxUInt32 numWorkGroups, FfxUInt32 localInvocationIndex, FfxUInt32 slice) +{ + // global atomic counter + if (localInvocationIndex == 0) + { + SpdIncreaseAtomicCounter(slice); + } + + SpdWorkgroupShuffleBarrier(); + return (SpdGetAtomicCounter() != (numWorkGroups - 1)); +} + +// User defined: FfxFloat32x4 SpdReduce4(FfxFloat32x4 v0, FfxFloat32x4 v1, FfxFloat32x4 v2, FfxFloat32x4 v3); +FfxFloat32x4 SpdReduceQuad(FfxFloat32x4 v) +{ +#if defined(FFX_GLSL) && !defined(SPD_NO_WAVE_OPERATIONS) + + FfxFloat32x4 v0 = v; + FfxFloat32x4 v1 = subgroupQuadSwapHorizontal(v); + FfxFloat32x4 v2 = subgroupQuadSwapVertical(v); + FfxFloat32x4 v3 = subgroupQuadSwapDiagonal(v); + return SpdReduce4(v0, v1, v2, v3); + +#elif defined(FFX_HLSL) && !defined(SPD_NO_WAVE_OPERATIONS) + + // requires SM6.0 + FfxUInt32 quad = WaveGetLaneIndex() & (~0x3); + FfxFloat32x4 v0 = v; + FfxFloat32x4 v1 = WaveReadLaneAt(v, quad | 1); + FfxFloat32x4 v2 = WaveReadLaneAt(v, quad | 2); + FfxFloat32x4 v3 = WaveReadLaneAt(v, quad | 3); + return SpdReduce4(v0, v1, v2, v3); +/* + // if SM6.0 is not available, you can use the AMD shader intrinsics + // the AMD shader intrinsics are available in AMD GPU Services (AGS) library: + // https://gpuopen.com/amd-gpu-services-ags-library/ + // works for DX11 + FfxFloat32x4 v0 = v; + FfxFloat32x4 v1; + v1.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + FfxFloat32x4 v2; + v2.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + FfxFloat32x4 v3; + v3.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + return SpdReduce4(v0, v1, v2, v3); + */ +#endif + return v; +} + +FfxFloat32x4 SpdReduceIntermediate(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3) +{ + FfxFloat32x4 v0 = SpdLoadIntermediate(i0.x, i0.y); + FfxFloat32x4 v1 = SpdLoadIntermediate(i1.x, i1.y); + FfxFloat32x4 v2 = SpdLoadIntermediate(i2.x, i2.y); + FfxFloat32x4 v3 = SpdLoadIntermediate(i3.x, i3.y); + return SpdReduce4(v0, v1, v2, v3); +} + +FfxFloat32x4 SpdReduceLoad4(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3, FfxUInt32 slice) +{ + FfxFloat32x4 v0 = SpdLoad(FfxInt32x2(i0), slice); + FfxFloat32x4 v1 = SpdLoad(FfxInt32x2(i1), slice); + FfxFloat32x4 v2 = SpdLoad(FfxInt32x2(i2), slice); + FfxFloat32x4 v3 = SpdLoad(FfxInt32x2(i3), slice); + return SpdReduce4(v0, v1, v2, v3); +} + +FfxFloat32x4 SpdReduceLoad4(FfxUInt32x2 base, FfxUInt32 slice) +{ + return SpdReduceLoad4(FfxUInt32x2(base + FfxUInt32x2(0, 0)), FfxUInt32x2(base + FfxUInt32x2(0, 1)), FfxUInt32x2(base + FfxUInt32x2(1, 0)), FfxUInt32x2(base + FfxUInt32x2(1, 1)), slice); +} + +FfxFloat32x4 SpdReduceLoadSourceImage4(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3, FfxUInt32 slice) +{ + FfxFloat32x4 v0 = SpdLoadSourceImage(FfxInt32x2(i0), slice); + FfxFloat32x4 v1 = SpdLoadSourceImage(FfxInt32x2(i1), slice); + FfxFloat32x4 v2 = SpdLoadSourceImage(FfxInt32x2(i2), slice); + FfxFloat32x4 v3 = SpdLoadSourceImage(FfxInt32x2(i3), slice); + return SpdReduce4(v0, v1, v2, v3); +} + +FfxFloat32x4 SpdReduceLoadSourceImage(FfxUInt32x2 base, FfxUInt32 slice) +{ +#ifdef SPD_LINEAR_SAMPLER + return SpdLoadSourceImage(FfxInt32x2(base), slice); +#else + return SpdReduceLoadSourceImage4(FfxUInt32x2(base + FfxUInt32x2(0, 0)), FfxUInt32x2(base + FfxUInt32x2(0, 1)), FfxUInt32x2(base + FfxUInt32x2(1, 0)), FfxUInt32x2(base + FfxUInt32x2(1, 1)), slice); +#endif +} + +void SpdDownsampleMips_0_1_Intrinsics(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ + FfxFloat32x4 v[4]; + + FfxInt32x2 tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2); + FfxInt32x2 pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y); + v[0] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[0], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y); + v[1] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[1], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y + 16); + v[2] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[2], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y + 16); + v[3] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[3], 0, slice); + + if (mip <= 1) + return; + + v[0] = SpdReduceQuad(v[0]); + v[1] = SpdReduceQuad(v[1]); + v[2] = SpdReduceQuad(v[2]); + v[3] = SpdReduceQuad(v[3]); + + if ((localInvocationIndex % 4) == 0) + { + SpdStore(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2, y / 2), v[0], 1, slice); + SpdStoreIntermediate(x / 2, y / 2, v[0]); + + SpdStore(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2 + 8, y / 2), v[1], 1, slice); + SpdStoreIntermediate(x / 2 + 8, y / 2, v[1]); + + SpdStore(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2, y / 2 + 8), v[2], 1, slice); + SpdStoreIntermediate(x / 2, y / 2 + 8, v[2]); + + SpdStore(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2 + 8, y / 2 + 8), v[3], 1, slice); + SpdStoreIntermediate(x / 2 + 8, y / 2 + 8, v[3]); + } +} + +void SpdDownsampleMips_0_1_LDS(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ + FfxFloat32x4 v[4]; + + FfxInt32x2 tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2); + FfxInt32x2 pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y); + v[0] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[0], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y); + v[1] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[1], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y + 16); + v[2] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[2], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y + 16); + v[3] = SpdReduceLoadSourceImage(tex, slice); + SpdStore(pix, v[3], 0, slice); + + if (mip <= 1) + return; + + for (FfxUInt32 i = 0; i < 4; i++) + { + SpdStoreIntermediate(x, y, v[i]); + SpdWorkgroupShuffleBarrier(); + if (localInvocationIndex < 64) + { + v[i] = SpdReduceIntermediate(FfxUInt32x2(x * 2 + 0, y * 2 + 0), FfxUInt32x2(x * 2 + 1, y * 2 + 0), FfxUInt32x2(x * 2 + 0, y * 2 + 1), FfxUInt32x2(x * 2 + 1, y * 2 + 1)); + SpdStore(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x + (i % 2) * 8, y + (i / 2) * 8), v[i], 1, slice); + } + SpdWorkgroupShuffleBarrier(); + } + + if (localInvocationIndex < 64) + { + SpdStoreIntermediate(x + 0, y + 0, v[0]); + SpdStoreIntermediate(x + 8, y + 0, v[1]); + SpdStoreIntermediate(x + 0, y + 8, v[2]); + SpdStoreIntermediate(x + 8, y + 8, v[3]); + } +} + +void SpdDownsampleMips_0_1(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + SpdDownsampleMips_0_1_LDS(x, y, workGroupID, localInvocationIndex, mip, slice); +#else + SpdDownsampleMips_0_1_Intrinsics(x, y, workGroupID, localInvocationIndex, mip, slice); +#endif +} + + +void SpdDownsampleMip_2(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 64) + { + FfxFloat32x4 v = SpdReduceIntermediate(FfxUInt32x2(x * 2 + 0, y * 2 + 0), FfxUInt32x2(x * 2 + 1, y * 2 + 0), FfxUInt32x2(x * 2 + 0, y * 2 + 1), FfxUInt32x2(x * 2 + 1, y * 2 + 1)); + SpdStore(FfxInt32x2(workGroupID.xy * 8) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS, try to reduce bank conflicts + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 x + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + // ... + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + SpdStoreIntermediate(x * 2 + y % 2, y * 2, v); + } +#else + FfxFloat32x4 v = SpdLoadIntermediate(x, y); + v = SpdReduceQuad(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStore(FfxInt32x2(workGroupID.xy * 8) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediate(x + (y / 2) % 2, y, v); + } +#endif +} + +void SpdDownsampleMip_3(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 16) + { + // x 0 x 0 + // 0 0 0 0 + // 0 x 0 x + // 0 0 0 0 + FfxFloat32x4 v = + SpdReduceIntermediate(FfxUInt32x2(x * 4 + 0 + 0, y * 4 + 0), FfxUInt32x2(x * 4 + 2 + 0, y * 4 + 0), FfxUInt32x2(x * 4 + 0 + 1, y * 4 + 2), FfxUInt32x2(x * 4 + 2 + 1, y * 4 + 2)); + SpdStore(FfxInt32x2(workGroupID.xy * 4) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS + // x 0 0 0 x 0 0 0 x 0 0 0 x 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 x 0 0 0 x 0 0 0 x 0 0 0 x 0 0 + // ... + // 0 0 x 0 0 0 x 0 0 0 x 0 0 0 x 0 + // ... + // 0 0 0 x 0 0 0 x 0 0 0 x 0 0 0 x + // ... + SpdStoreIntermediate(x * 4 + y, y * 4, v); + } +#else + if (localInvocationIndex < 64) + { + FfxFloat32x4 v = SpdLoadIntermediate(x * 2 + y % 2, y * 2); + v = SpdReduceQuad(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStore(FfxInt32x2(workGroupID.xy * 4) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediate(x * 2 + y / 2, y * 2, v); + } + } +#endif +} + +void SpdDownsampleMip_4(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 4) + { + // x 0 0 0 x 0 0 0 + // ... + // 0 x 0 0 0 x 0 0 + FfxFloat32x4 v = SpdReduceIntermediate(FfxUInt32x2(x * 8 + 0 + 0 + y * 2, y * 8 + 0), + FfxUInt32x2(x * 8 + 4 + 0 + y * 2, y * 8 + 0), + FfxUInt32x2(x * 8 + 0 + 1 + y * 2, y * 8 + 4), + FfxUInt32x2(x * 8 + 4 + 1 + y * 2, y * 8 + 4)); + SpdStore(FfxInt32x2(workGroupID.xy * 2) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS + // x x x x 0 ... + // 0 ... + SpdStoreIntermediate(x + y * 2, 0, v); + } +#else + if (localInvocationIndex < 16) + { + FfxFloat32x4 v = SpdLoadIntermediate(x * 4 + y, y * 4); + v = SpdReduceQuad(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStore(FfxInt32x2(workGroupID.xy * 2) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediate(x / 2 + y, 0, v); + } + } +#endif +} + +void SpdDownsampleMip_5(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 1) + { + // x x x x 0 ... + // 0 ... + FfxFloat32x4 v = SpdReduceIntermediate(FfxUInt32x2(0, 0), FfxUInt32x2(1, 0), FfxUInt32x2(2, 0), FfxUInt32x2(3, 0)); + SpdStore(FfxInt32x2(workGroupID.xy), v, mip, slice); + } +#else + if (localInvocationIndex < 4) + { + FfxFloat32x4 v = SpdLoadIntermediate(localInvocationIndex, 0); + v = SpdReduceQuad(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStore(FfxInt32x2(workGroupID.xy), v, mip, slice); + } + } +#endif +} + +void SpdDownsampleMips_6_7(FfxUInt32 x, FfxUInt32 y, FfxUInt32 mips, FfxUInt32 slice) +{ + FfxInt32x2 tex = FfxInt32x2(x * 4 + 0, y * 4 + 0); + FfxInt32x2 pix = FfxInt32x2(x * 2 + 0, y * 2 + 0); + FfxFloat32x4 v0 = SpdReduceLoad4(tex, slice); + SpdStore(pix, v0, 6, slice); + + tex = FfxInt32x2(x * 4 + 2, y * 4 + 0); + pix = FfxInt32x2(x * 2 + 1, y * 2 + 0); + FfxFloat32x4 v1 = SpdReduceLoad4(tex, slice); + SpdStore(pix, v1, 6, slice); + + tex = FfxInt32x2(x * 4 + 0, y * 4 + 2); + pix = FfxInt32x2(x * 2 + 0, y * 2 + 1); + FfxFloat32x4 v2 = SpdReduceLoad4(tex, slice); + SpdStore(pix, v2, 6, slice); + + tex = FfxInt32x2(x * 4 + 2, y * 4 + 2); + pix = FfxInt32x2(x * 2 + 1, y * 2 + 1); + FfxFloat32x4 v3 = SpdReduceLoad4(tex, slice); + SpdStore(pix, v3, 6, slice); + + if (mips <= 7) + return; + // no barrier needed, working on values only from the same thread + + FfxFloat32x4 v = SpdReduce4(v0, v1, v2, v3); + SpdStore(FfxInt32x2(x, y), v, 7, slice); + SpdStoreIntermediate(x, y, v); +} + +void SpdDownsampleNextFour(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 baseMip, FfxUInt32 mips, FfxUInt32 slice) +{ + if (mips <= baseMip) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_2(x, y, workGroupID, localInvocationIndex, baseMip, slice); + + if (mips <= baseMip + 1) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_3(x, y, workGroupID, localInvocationIndex, baseMip + 1, slice); + + if (mips <= baseMip + 2) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_4(x, y, workGroupID, localInvocationIndex, baseMip + 2, slice); + + if (mips <= baseMip + 3) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_5(workGroupID, localInvocationIndex, baseMip + 3, slice); +} + +void SpdDownsample(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 numWorkGroups, FfxUInt32 slice) +{ + FfxUInt32x2 sub_xy = ffxRemapForWaveReduction(localInvocationIndex % 64); + FfxUInt32 x = sub_xy.x + 8 * ((localInvocationIndex >> 6) % 2); + FfxUInt32 y = sub_xy.y + 8 * ((localInvocationIndex >> 7)); + SpdDownsampleMips_0_1(x, y, workGroupID, localInvocationIndex, mips, slice); + + SpdDownsampleNextFour(x, y, workGroupID, localInvocationIndex, 2, mips, slice); + + if (mips <= 6) + return; + + if (SpdExitWorkgroup(numWorkGroups, localInvocationIndex, slice)) + return; + + SpdResetAtomicCounter(slice); + + // After mip 6 there is only a single workgroup left that downsamples the remaining up to 64x64 texels. + SpdDownsampleMips_6_7(x, y, mips, slice); + + SpdDownsampleNextFour(x, y, FfxUInt32x2(0, 0), localInvocationIndex, 8, mips, slice); +} + +void SpdDownsample(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 numWorkGroups, FfxUInt32 slice, FfxUInt32x2 workGroupOffset) +{ + SpdDownsample(workGroupID + workGroupOffset, localInvocationIndex, mips, numWorkGroups, slice); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +//============================================================================================================================== +// PACKED VERSION +//============================================================================================================================== + +#if FFX_HALF + +FfxFloat16x4 SpdReduceQuadH(FfxFloat16x4 v) +{ +#if defined(FFX_GLSL) && !defined(SPD_NO_WAVE_OPERATIONS) + FfxFloat16x4 v0 = v; + FfxFloat16x4 v1 = subgroupQuadSwapHorizontal(v); + FfxFloat16x4 v2 = subgroupQuadSwapVertical(v); + FfxFloat16x4 v3 = subgroupQuadSwapDiagonal(v); + return SpdReduce4H(v0, v1, v2, v3); +#elif defined(FFX_HLSL) && !defined(SPD_NO_WAVE_OPERATIONS) + // requires SM6.0 + FfxUInt32 quad = WaveGetLaneIndex() & (~0x3); + FfxFloat16x4 v0 = v; + FfxFloat16x4 v1 = WaveReadLaneAt(v, quad | 1); + FfxFloat16x4 v2 = WaveReadLaneAt(v, quad | 2); + FfxFloat16x4 v3 = WaveReadLaneAt(v, quad | 3); + return SpdReduce4H(v0, v1, v2, v3); +/* + // if SM6.0 is not available, you can use the AMD shader intrinsics + // the AMD shader intrinsics are available in AMD GPU Services (AGS) library: + // https://gpuopen.com/amd-gpu-services-ags-library/ + // works for DX11 + FfxFloat16x4 v0 = v; + FfxFloat16x4 v1; + v1.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + v1.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_SwapX1); + FfxFloat16x4 v2; + v2.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + v2.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_SwapX2); + FfxFloat16x4 v3; + v3.x = AmdExtD3DShaderIntrinsics_SwizzleF(v.x, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.y = AmdExtD3DShaderIntrinsics_SwizzleF(v.y, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.z = AmdExtD3DShaderIntrinsics_SwizzleF(v.z, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + v3.w = AmdExtD3DShaderIntrinsics_SwizzleF(v.w, AmdExtD3DShaderIntrinsicsSwizzle_ReverseX4); + return SpdReduce4H(v0, v1, v2, v3); + */ +#endif + return FfxFloat16x4(0.0, 0.0, 0.0, 0.0); +} + +FfxFloat16x4 SpdReduceIntermediateH(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3) +{ + FfxFloat16x4 v0 = SpdLoadIntermediateH(i0.x, i0.y); + FfxFloat16x4 v1 = SpdLoadIntermediateH(i1.x, i1.y); + FfxFloat16x4 v2 = SpdLoadIntermediateH(i2.x, i2.y); + FfxFloat16x4 v3 = SpdLoadIntermediateH(i3.x, i3.y); + return SpdReduce4H(v0, v1, v2, v3); +} + +FfxFloat16x4 SpdReduceLoad4H(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3, FfxUInt32 slice) +{ + FfxFloat16x4 v0 = SpdLoadH(FfxInt32x2(i0), slice); + FfxFloat16x4 v1 = SpdLoadH(FfxInt32x2(i1), slice); + FfxFloat16x4 v2 = SpdLoadH(FfxInt32x2(i2), slice); + FfxFloat16x4 v3 = SpdLoadH(FfxInt32x2(i3), slice); + return SpdReduce4H(v0, v1, v2, v3); +} + +FfxFloat16x4 SpdReduceLoad4H(FfxUInt32x2 base, FfxUInt32 slice) +{ + return SpdReduceLoad4H(FfxUInt32x2(base + FfxUInt32x2(0, 0)), FfxUInt32x2(base + FfxUInt32x2(0, 1)), FfxUInt32x2(base + FfxUInt32x2(1, 0)), FfxUInt32x2(base + FfxUInt32x2(1, 1)), slice); +} + +FfxFloat16x4 SpdReduceLoadSourceImage4H(FfxUInt32x2 i0, FfxUInt32x2 i1, FfxUInt32x2 i2, FfxUInt32x2 i3, FfxUInt32 slice) +{ + FfxFloat16x4 v0 = SpdLoadSourceImageH(FfxInt32x2(i0), slice); + FfxFloat16x4 v1 = SpdLoadSourceImageH(FfxInt32x2(i1), slice); + FfxFloat16x4 v2 = SpdLoadSourceImageH(FfxInt32x2(i2), slice); + FfxFloat16x4 v3 = SpdLoadSourceImageH(FfxInt32x2(i3), slice); + return SpdReduce4H(v0, v1, v2, v3); +} + +FfxFloat16x4 SpdReduceLoadSourceImageH(FfxUInt32x2 base, FfxUInt32 slice) +{ +#ifdef SPD_LINEAR_SAMPLER + return SpdLoadSourceImageH(FfxInt32x2(base), slice); +#else + return SpdReduceLoadSourceImage4H(FfxUInt32x2(base + FfxUInt32x2(0, 0)), FfxUInt32x2(base + FfxUInt32x2(0, 1)), FfxUInt32x2(base + FfxUInt32x2(1, 0)), FfxUInt32x2(base + FfxUInt32x2(1, 1)), slice); +#endif +} + +void SpdDownsampleMips_0_1_IntrinsicsH(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 slice) +{ + FfxFloat16x4 v[4]; + + FfxInt32x2 tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2); + FfxInt32x2 pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y); + v[0] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[0], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y); + v[1] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[1], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y + 16); + v[2] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[2], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y + 16); + v[3] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[3], 0, slice); + + if (mips <= 1) + return; + + v[0] = SpdReduceQuadH(v[0]); + v[1] = SpdReduceQuadH(v[1]); + v[2] = SpdReduceQuadH(v[2]); + v[3] = SpdReduceQuadH(v[3]); + + if ((localInvocationIndex % 4) == 0) + { + SpdStoreH(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2, y / 2), v[0], 1, slice); + SpdStoreIntermediateH(x / 2, y / 2, v[0]); + + SpdStoreH(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2 + 8, y / 2), v[1], 1, slice); + SpdStoreIntermediateH(x / 2 + 8, y / 2, v[1]); + + SpdStoreH(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2, y / 2 + 8), v[2], 1, slice); + SpdStoreIntermediateH(x / 2, y / 2 + 8, v[2]); + + SpdStoreH(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x / 2 + 8, y / 2 + 8), v[3], 1, slice); + SpdStoreIntermediateH(x / 2 + 8, y / 2 + 8, v[3]); + } +} + +void SpdDownsampleMips_0_1_LDSH(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 slice) +{ + FfxFloat16x4 v[4]; + + FfxInt32x2 tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2); + FfxInt32x2 pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y); + v[0] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[0], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y); + v[1] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[1], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x, y + 16); + v[2] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[2], 0, slice); + + tex = FfxInt32x2(workGroupID.xy * 64) + FfxInt32x2(x * 2 + 32, y * 2 + 32); + pix = FfxInt32x2(workGroupID.xy * 32) + FfxInt32x2(x + 16, y + 16); + v[3] = SpdReduceLoadSourceImageH(tex, slice); + SpdStoreH(pix, v[3], 0, slice); + + if (mips <= 1) + return; + + for (FfxInt32 i = 0; i < 4; i++) + { + SpdStoreIntermediateH(x, y, v[i]); + SpdWorkgroupShuffleBarrier(); + if (localInvocationIndex < 64) + { + v[i] = SpdReduceIntermediateH(FfxUInt32x2(x * 2 + 0, y * 2 + 0), FfxUInt32x2(x * 2 + 1, y * 2 + 0), FfxUInt32x2(x * 2 + 0, y * 2 + 1), FfxUInt32x2(x * 2 + 1, y * 2 + 1)); + SpdStoreH(FfxInt32x2(workGroupID.xy * 16) + FfxInt32x2(x + (i % 2) * 8, y + (i / 2) * 8), v[i], 1, slice); + } + SpdWorkgroupShuffleBarrier(); + } + + if (localInvocationIndex < 64) + { + SpdStoreIntermediateH(x + 0, y + 0, v[0]); + SpdStoreIntermediateH(x + 8, y + 0, v[1]); + SpdStoreIntermediateH(x + 0, y + 8, v[2]); + SpdStoreIntermediateH(x + 8, y + 8, v[3]); + } +} + +void SpdDownsampleMips_0_1H(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + SpdDownsampleMips_0_1_LDSH(x, y, workGroupID, localInvocationIndex, mips, slice); +#else + SpdDownsampleMips_0_1_IntrinsicsH(x, y, workGroupID, localInvocationIndex, mips, slice); +#endif +} + + +void SpdDownsampleMip_2H(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 64) + { + FfxFloat16x4 v = SpdReduceIntermediateH(FfxUInt32x2(x * 2 + 0, y * 2 + 0), FfxUInt32x2(x * 2 + 1, y * 2 + 0), FfxUInt32x2(x * 2 + 0, y * 2 + 1), FfxUInt32x2(x * 2 + 1, y * 2 + 1)); + SpdStoreH(FfxInt32x2(workGroupID.xy * 8) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS, try to reduce bank conflicts + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 x + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + // ... + // x 0 x 0 x 0 x 0 x 0 x 0 x 0 x 0 + SpdStoreIntermediateH(x * 2 + y % 2, y * 2, v); + } +#else + FfxFloat16x4 v = SpdLoadIntermediateH(x, y); + v = SpdReduceQuadH(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStoreH(FfxInt32x2(workGroupID.xy * 8) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediateH(x + (y / 2) % 2, y, v); + } +#endif +} + +void SpdDownsampleMip_3H(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 16) + { + // x 0 x 0 + // 0 0 0 0 + // 0 x 0 x + // 0 0 0 0 + FfxFloat16x4 v = + SpdReduceIntermediateH(FfxUInt32x2(x * 4 + 0 + 0, y * 4 + 0), FfxUInt32x2(x * 4 + 2 + 0, y * 4 + 0), FfxUInt32x2(x * 4 + 0 + 1, y * 4 + 2), FfxUInt32x2(x * 4 + 2 + 1, y * 4 + 2)); + SpdStoreH(FfxInt32x2(workGroupID.xy * 4) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS + // x 0 0 0 x 0 0 0 x 0 0 0 x 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + // 0 x 0 0 0 x 0 0 0 x 0 0 0 x 0 0 + // ... + // 0 0 x 0 0 0 x 0 0 0 x 0 0 0 x 0 + // ... + // 0 0 0 x 0 0 0 x 0 0 0 x 0 0 0 x + // ... + SpdStoreIntermediateH(x * 4 + y, y * 4, v); + } +#else + if (localInvocationIndex < 64) + { + FfxFloat16x4 v = SpdLoadIntermediateH(x * 2 + y % 2, y * 2); + v = SpdReduceQuadH(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStoreH(FfxInt32x2(workGroupID.xy * 4) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediateH(x * 2 + y / 2, y * 2, v); + } + } +#endif +} + +void SpdDownsampleMip_4H(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 4) + { + // x 0 0 0 x 0 0 0 + // ... + // 0 x 0 0 0 x 0 0 + FfxFloat16x4 v = SpdReduceIntermediateH(FfxUInt32x2(x * 8 + 0 + 0 + y * 2, y * 8 + 0), + FfxUInt32x2(x * 8 + 4 + 0 + y * 2, y * 8 + 0), + FfxUInt32x2(x * 8 + 0 + 1 + y * 2, y * 8 + 4), + FfxUInt32x2(x * 8 + 4 + 1 + y * 2, y * 8 + 4)); + SpdStoreH(FfxInt32x2(workGroupID.xy * 2) + FfxInt32x2(x, y), v, mip, slice); + // store to LDS + // x x x x 0 ... + // 0 ... + SpdStoreIntermediateH(x + y * 2, 0, v); + } +#else + if (localInvocationIndex < 16) + { + FfxFloat16x4 v = SpdLoadIntermediateH(x * 4 + y, y * 4); + v = SpdReduceQuadH(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStoreH(FfxInt32x2(workGroupID.xy * 2) + FfxInt32x2(x / 2, y / 2), v, mip, slice); + SpdStoreIntermediateH(x / 2 + y, 0, v); + } + } +#endif +} + +void SpdDownsampleMip_5H(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mip, FfxUInt32 slice) +{ +#ifdef SPD_NO_WAVE_OPERATIONS + if (localInvocationIndex < 1) + { + // x x x x 0 ... + // 0 ... + FfxFloat16x4 v = SpdReduceIntermediateH(FfxUInt32x2(0, 0), FfxUInt32x2(1, 0), FfxUInt32x2(2, 0), FfxUInt32x2(3, 0)); + SpdStoreH(FfxInt32x2(workGroupID.xy), v, mip, slice); + } +#else + if (localInvocationIndex < 4) + { + FfxFloat16x4 v = SpdLoadIntermediateH(localInvocationIndex, 0); + v = SpdReduceQuadH(v); + // quad index 0 stores result + if (localInvocationIndex % 4 == 0) + { + SpdStoreH(FfxInt32x2(workGroupID.xy), v, mip, slice); + } + } +#endif +} + +void SpdDownsampleMips_6_7H(FfxUInt32 x, FfxUInt32 y, FfxUInt32 mips, FfxUInt32 slice) +{ + FfxInt32x2 tex = FfxInt32x2(x * 4 + 0, y * 4 + 0); + FfxInt32x2 pix = FfxInt32x2(x * 2 + 0, y * 2 + 0); + FfxFloat16x4 v0 = SpdReduceLoad4H(tex, slice); + SpdStoreH(pix, v0, 6, slice); + + tex = FfxInt32x2(x * 4 + 2, y * 4 + 0); + pix = FfxInt32x2(x * 2 + 1, y * 2 + 0); + FfxFloat16x4 v1 = SpdReduceLoad4H(tex, slice); + SpdStoreH(pix, v1, 6, slice); + + tex = FfxInt32x2(x * 4 + 0, y * 4 + 2); + pix = FfxInt32x2(x * 2 + 0, y * 2 + 1); + FfxFloat16x4 v2 = SpdReduceLoad4H(tex, slice); + SpdStoreH(pix, v2, 6, slice); + + tex = FfxInt32x2(x * 4 + 2, y * 4 + 2); + pix = FfxInt32x2(x * 2 + 1, y * 2 + 1); + FfxFloat16x4 v3 = SpdReduceLoad4H(tex, slice); + SpdStoreH(pix, v3, 6, slice); + + if (mips < 8) + return; + // no barrier needed, working on values only from the same thread + + FfxFloat16x4 v = SpdReduce4H(v0, v1, v2, v3); + SpdStoreH(FfxInt32x2(x, y), v, 7, slice); + SpdStoreIntermediateH(x, y, v); +} + +void SpdDownsampleNextFourH(FfxUInt32 x, FfxUInt32 y, FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 baseMip, FfxUInt32 mips, FfxUInt32 slice) +{ + if (mips <= baseMip) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_2H(x, y, workGroupID, localInvocationIndex, baseMip, slice); + + if (mips <= baseMip + 1) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_3H(x, y, workGroupID, localInvocationIndex, baseMip + 1, slice); + + if (mips <= baseMip + 2) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_4H(x, y, workGroupID, localInvocationIndex, baseMip + 2, slice); + + if (mips <= baseMip + 3) + return; + SpdWorkgroupShuffleBarrier(); + SpdDownsampleMip_5H(workGroupID, localInvocationIndex, baseMip + 3, slice); +} + +void SpdDownsampleH(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 numWorkGroups, FfxUInt32 slice) +{ + FfxUInt32x2 sub_xy = ffxRemapForWaveReduction(localInvocationIndex % 64); + FfxUInt32 x = sub_xy.x + 8 * ((localInvocationIndex >> 6) % 2); + FfxUInt32 y = sub_xy.y + 8 * ((localInvocationIndex >> 7)); + + SpdDownsampleMips_0_1H(x, y, workGroupID, localInvocationIndex, mips, slice); + + SpdDownsampleNextFourH(x, y, workGroupID, localInvocationIndex, 2, mips, slice); + + if (mips < 7) + return; + + if (SpdExitWorkgroup(numWorkGroups, localInvocationIndex, slice)) + return; + + SpdResetAtomicCounter(slice); + + // After mip 6 there is only a single workgroup left that downsamples the remaining up to 64x64 texels. + SpdDownsampleMips_6_7H(x, y, mips, slice); + + SpdDownsampleNextFourH(x, y, FfxUInt32x2(0, 0), localInvocationIndex, 8, mips, slice); +} + +void SpdDownsampleH(FfxUInt32x2 workGroupID, FfxUInt32 localInvocationIndex, FfxUInt32 mips, FfxUInt32 numWorkGroups, FfxUInt32 slice, FfxUInt32x2 workGroupOffset) +{ + SpdDownsampleH(workGroupID + workGroupOffset, localInvocationIndex, mips, numWorkGroups, slice); +} + +#endif // #if FFX_HALF +#endif // #ifdef FFX_GPU diff --git a/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h.meta b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h.meta new file mode 100644 index 0000000..e17851b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/FSR2/shaders/ffx_spd.h.meta @@ -0,0 +1,27 @@ +fileFormatVersion: 2 +guid: 3ef69a900a925bb498651c10581e0979 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl new file mode 100644 index 0000000..f92b9c3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl @@ -0,0 +1,91 @@ +#ifndef UNITY_POSTFX_SAMPLING +#define UNITY_POSTFX_SAMPLING + +#include "StdLib.hlsl" + +// Better, temporally stable box filtering +// [Jimenez14] http://goo.gl/eomGso +// . . . . . . . +// . A . B . C . +// . . D . E . . +// . F . G . H . +// . . I . J . . +// . K . L . M . +// . . . . . . . +half4 DownsampleBox13Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + half4 A = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, -1.0))); + half4 B = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, -1.0))); + half4 C = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, -1.0))); + half4 D = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, -0.5))); + half4 E = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, -0.5))); + half4 F = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 0.0))); + half4 G = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )); + half4 H = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 0.0))); + half4 I = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, 0.5))); + half4 J = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, 0.5))); + half4 K = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 1.0))); + half4 L = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, 1.0))); + half4 M = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 1.0))); + + half2 div = (1.0 / 4.0) * half2(0.5, 0.125); + + half4 o = (D + E + I + J) * div.x; + o += (A + B + G + F) * div.y; + o += (B + C + H + G) * div.y; + o += (F + G + L + K) * div.y; + o += (G + H + M + L) * div.y; + + return o; +} + +// Standard box filtering +half4 DownsampleBox4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +// 9-tap bilinear upsampler (tent filter) +half4 UpsampleTent(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0) * sampleScale; + + half4 s; + s = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.xy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.zy)); + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )) * 4.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw)) * 2.0; + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy)); + + return s * (1.0 / 16.0); +} + +// Standard box filtering +half4 UpsampleBox(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0) * (sampleScale * 0.5); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +#endif // UNITY_POSTFX_SAMPLING diff --git a/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl.meta new file mode 100644 index 0000000..45ead5a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/Sampling.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f16ad9ee5ff13554b98568aa655d6bda +timeCreated: 1489940178 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl new file mode 100644 index 0000000..01501ec --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl @@ -0,0 +1,322 @@ +// Because this framework is supposed to work with the legacy render pipelines AND scriptable render +// pipelines we can't use Unity's shader libraries (some scriptable pipelines come with their own +// shader lib). So here goes a minimal shader lib only used for post-processing to ensure good +// compatibility with all pipelines. + +#ifndef UNITY_POSTFX_STDLIB +#define UNITY_POSTFX_STDLIB + +// ----------------------------------------------------------------------------- +// API macros + +#if defined(SHADER_API_PSSL) + #include "API/PSSL.hlsl" +#elif defined(SHADER_API_XBOXONE) || defined (SHADER_API_GAMECORE) + #include "API/XboxOne.hlsl" +#elif defined(SHADER_API_D3D11) + #include "API/D3D11.hlsl" +#elif defined(SHADER_API_D3D12) + #include "API/D3D12.hlsl" +#elif defined(SHADER_API_D3D9) || defined(SHADER_API_D3D11_9X) + #include "API/D3D9.hlsl" +#elif defined(SHADER_API_VULKAN) + #include "API/Vulkan.hlsl" +#elif defined(SHADER_API_SWITCH) + #include "API/Switch.hlsl" +#elif defined(SHADER_API_METAL) + #include "API/Metal.hlsl" +#elif defined(SHADER_API_PSP2) + #include "API/PSP2.hlsl" +#else + #include "API/OpenGL.hlsl" +#endif + +#if defined(SHADER_API_PSSL) || defined(SHADER_API_XBOXONE) || defined(SHADER_API_SWITCH) || defined(SHADER_API_PSP2) + #define SHADER_API_CONSOLE +#endif + +// ----------------------------------------------------------------------------- +// Constants + +#define HALF_MAX 65504.0 // (2 - 2^-10) * 2^15 +#define HALF_MAX_MINUS1 65472.0 // (2 - 2^-9) * 2^15 +#define EPSILON 1.0e-4 +#define PI 3.14159265359 +#define TWO_PI 6.28318530718 +#define FOUR_PI 12.56637061436 +#define INV_PI 0.31830988618 +#define INV_TWO_PI 0.15915494309 +#define INV_FOUR_PI 0.07957747155 +#define HALF_PI 1.57079632679 +#define INV_HALF_PI 0.636619772367 + +#define FLT_EPSILON 1.192092896e-07 // Smallest positive number, such that 1.0 + FLT_EPSILON != 1.0 +#define FLT_MIN 1.175494351e-38 // Minimum representable positive floating-point number +#define FLT_MAX 3.402823466e+38 // Maximum representable floating-point number + +// ----------------------------------------------------------------------------- +// Compatibility functions + +#if (SHADER_TARGET < 50 && !defined(SHADER_API_PSSL)) +float rcp(float value) +{ + return 1.0 / value; +} +#endif + +#if defined(SHADER_API_GLES) +#define mad(a, b, c) (a * b + c) +#endif + +#ifndef INTRINSIC_MINMAX3 +float Min3(float a, float b, float c) +{ + return min(min(a, b), c); +} + +float2 Min3(float2 a, float2 b, float2 c) +{ + return min(min(a, b), c); +} + +float3 Min3(float3 a, float3 b, float3 c) +{ + return min(min(a, b), c); +} + +float4 Min3(float4 a, float4 b, float4 c) +{ + return min(min(a, b), c); +} + +float Max3(float a, float b, float c) +{ + return max(max(a, b), c); +} + +float2 Max3(float2 a, float2 b, float2 c) +{ + return max(max(a, b), c); +} + +float3 Max3(float3 a, float3 b, float3 c) +{ + return max(max(a, b), c); +} + +float4 Max3(float4 a, float4 b, float4 c) +{ + return max(max(a, b), c); +} +#endif // INTRINSIC_MINMAX3 + +// https://twitter.com/SebAaltonen/status/878250919879639040 +// madd_sat + madd +float FastSign(float x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float2 FastSign(float2 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float3 FastSign(float3 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float4 FastSign(float4 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +// Using pow often result to a warning like this +// "pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them" +// PositivePow remove this warning when you know the value is positive and avoid inf/NAN. +float PositivePow(float base, float power) +{ + return pow(max(abs(base), float(FLT_EPSILON)), power); +} + +float2 PositivePow(float2 base, float2 power) +{ + return pow(max(abs(base), float2(FLT_EPSILON, FLT_EPSILON)), power); +} + +float3 PositivePow(float3 base, float3 power) +{ + return pow(max(abs(base), float3(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +float4 PositivePow(float4 base, float4 power) +{ + return pow(max(abs(base), float4(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +// NaN checker +// /Gic isn't enabled on fxc so we can't rely on isnan() anymore +bool IsNan(float x) +{ + // For some reason the following tests outputs "internal compiler error" randomly on desktop + // so we'll use a safer but slightly slower version instead :/ + //return (x <= 0.0 || 0.0 <= x) ? false : true; + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; +} + +bool AnyIsNan(float2 x) +{ + return IsNan(x.x) || IsNan(x.y); +} + +bool AnyIsNan(float3 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z); +} + +bool AnyIsNan(float4 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); +} + +// ----------------------------------------------------------------------------- +// Std unity data + +float4x4 unity_CameraProjection; +float4x4 unity_MatrixVP; +float4x4 unity_ObjectToWorld; +float4x4 unity_WorldToCamera; +float3 _WorldSpaceCameraPos; +float4 _ProjectionParams; // x: 1 (-1 flipped), y: near, z: far, w: 1/far +float4 unity_ColorSpaceLuminance; +float4 unity_DeltaTime; // x: dt, y: 1/dt, z: smoothDt, w: 1/smoothDt +float4 unity_OrthoParams; // x: width, y: height, z: unused, w: ortho ? 1 : 0 +float4 _ZBufferParams; // x: 1-far/near, y: far/near, z: x/far, w: y/far +float4 _ScreenParams; // x: width, y: height, z: 1+1/width, w: 1+1/height +float4 _Time; // x: t/20, y: t, z: t*2, w: t*3 +float4 _SinTime; // x: sin(t/20), y: sin(t), z: sin(t*2), w: sin(t*3) +float4 _CosTime; // x: cos(t/20), y: cos(t), z: cos(t*2), w: cos(t*3) + +// ----------------------------------------------------------------------------- +// Std functions + +// Z buffer depth to linear 0-1 depth +// Handles orthographic projection correctly +float Linear01Depth(float z) +{ + float isOrtho = unity_OrthoParams.w; + float isPers = 1.0 - unity_OrthoParams.w; + z *= _ZBufferParams.x; + return (1.0 - isOrtho * z) / (isPers * z + _ZBufferParams.y); +} + +float LinearEyeDepth(float z) +{ + return rcp(_ZBufferParams.z * z + _ZBufferParams.w); +} + +// Clamp HDR value within a safe range +half3 SafeHDR(half3 c) +{ + return min(c, HALF_MAX); +} + +half4 SafeHDR(half4 c) +{ + return min(c, HALF_MAX); +} + +// Decode normals stored in _CameraDepthNormalsTexture +float3 DecodeViewNormalStereo(float4 enc4) +{ + float kScale = 1.7777; + float3 nn = enc4.xyz * float3(2.0 * kScale, 2.0 * kScale, 0) + float3(-kScale, -kScale, 1); + float g = 2.0 / dot(nn.xyz, nn.xyz); + float3 n; + n.xy = g * nn.xy; + n.z = g - 1.0; + return n; +} + +// Interleaved gradient function from Jimenez 2014 +// http://www.iryoku.com/next-generation-post-processing-in-call-of-duty-advanced-warfare +float GradientNoise(float2 uv) +{ + uv = floor(uv * _ScreenParams.xy); + float f = dot(float2(0.06711056, 0.00583715), uv); + return frac(52.9829189 * frac(f)); +} + +// Vertex manipulation +float2 TransformTriangleVertexToUV(float2 vertex) +{ + float2 uv = (vertex + 1.0) * 0.5; + return uv; +} + +#include "xRLib.hlsl" + +// ----------------------------------------------------------------------------- +// Default vertex shaders + +struct AttributesDefault +{ + float3 vertex : POSITION; +}; + +struct VaryingsDefault +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; +#if STEREO_INSTANCING_ENABLED + uint stereoTargetEyeIndex : SV_RenderTargetArrayIndex; +#endif +}; + +#if STEREO_INSTANCING_ENABLED +float _DepthSlice; +#endif + +VaryingsDefault VertDefault(AttributesDefault v) +{ + VaryingsDefault o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); + + return o; +} + +float4 _UVTransform; // xy: scale, wz: translate + +#if STEREO_DOUBLEWIDE_TARGET +float4 _PosScaleOffset; // xy: scale, wz: offset +#endif + +VaryingsDefault VertUVTransform(AttributesDefault v) +{ + VaryingsDefault o; + +#if STEREO_DOUBLEWIDE_TARGET + o.vertex = float4(v.vertex.xy * _PosScaleOffset.xy + _PosScaleOffset.zw, 0.0, 1.0); +#else + o.vertex = float4(v.vertex.xy, 0.0, 1.0); +#endif + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy) * _UVTransform.xy + _UVTransform.zw; + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); +#if STEREO_INSTANCING_ENABLED + o.stereoTargetEyeIndex = (uint)_DepthSlice; +#endif + return o; +} + +#define TRANSFORM_TEX(tex,name) (tex.xy * name##_ST.xy + name##_ST.zw) + +#endif // UNITY_POSTFX_STDLIB diff --git a/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl.meta new file mode 100644 index 0000000..853a9b9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 20aeae489f6be6a48aec52447f49169c +timeCreated: 1488887145 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl b/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl new file mode 100644 index 0000000..3a5c419 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl @@ -0,0 +1,98 @@ +// VR/AR/xR lib + +#ifndef UNITY_POSTFX_XRLIB +#define UNITY_POSTFX_XRLIB + +#if defined(UNITY_SINGLE_PASS_STEREO) +CBUFFER_START(UnityStereoGlobals) + float4x4 unity_StereoMatrixP[2]; + float4x4 unity_StereoMatrixV[2]; + float4x4 unity_StereoMatrixInvV[2]; + float4x4 unity_StereoMatrixVP[2]; + + float4x4 unity_StereoCameraProjection[2]; + float4x4 unity_StereoCameraInvProjection[2]; + float4x4 unity_StereoWorldToCamera[2]; + float4x4 unity_StereoCameraToWorld[2]; + + float3 unity_StereoWorldSpaceCameraPos[2]; + float4 unity_StereoScaleOffset[2]; +CBUFFER_END + +CBUFFER_START(UnityStereoEyeIndex) + int unity_StereoEyeIndex; +CBUFFER_END +#endif + +float _RenderViewportScaleFactor; + +float2 UnityStereoScreenSpaceUVAdjust(float2 uv, float4 scaleAndOffset) +{ + return uv.xy * scaleAndOffset.xy + scaleAndOffset.zw; +} + +float4 UnityStereoScreenSpaceUVAdjust(float4 uv, float4 scaleAndOffset) +{ + return float4(UnityStereoScreenSpaceUVAdjust(uv.xy, scaleAndOffset), UnityStereoScreenSpaceUVAdjust(uv.zw, scaleAndOffset)); +} + +float2 UnityStereoClampScaleOffset(float2 uv, float4 scaleAndOffset) +{ + return clamp(uv, scaleAndOffset.zw, scaleAndOffset.zw + scaleAndOffset.xy); +} + +#if defined(UNITY_SINGLE_PASS_STEREO) +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return uv.xy * scaleOffset.xy + scaleOffset.zw * w; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float4 UnityStereoTransformScreenSpaceTex(float4 uv) +{ + return float4(UnityStereoTransformScreenSpaceTex(uv.xy), UnityStereoTransformScreenSpaceTex(uv.zw)); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) // Should take in _MainTex_TexelSize +{ + texelSize.x = texelSize.x * 2.0; // texelSize.x = 1/w. For a double-wide texture, the true resolution is given by 2/w. + texelSize.z = texelSize.z * 0.5; // texelSize.z = w. For a double-wide texture, the true size of the eye texture is given by w/2. + return texelSize; +} +#else +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + return uv * _RenderViewportScaleFactor; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = float4(_RenderViewportScaleFactor, _RenderViewportScaleFactor, 0.f, 0.f); + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) +{ + return texelSize; +} +#endif + +#endif // UNITY_POSTFX_XRLIB diff --git a/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl.meta b/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl.meta new file mode 100644 index 0000000..c32b44b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Shaders/xRLib.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 981a66a12fced7a45b3c106b67167ab5 +timeCreated: 1497886257 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures.meta b/com.unity.postprocessing/PostProcessing/Textures.meta new file mode 100644 index 0000000..fa69918 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 180a4519fc4556c4fb5d941544b86398 +folderAsset: yes +timeCreated: 1488969093 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px.meta new file mode 100644 index 0000000..4d80a8d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a46f66b7c3fc33547bd9093e960d9ab1 +folderAsset: yes +timeCreated: 1503659186 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png new file mode 100644 index 0000000..29a91ff Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png.meta new file mode 100644 index 0000000..2b29978 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_0.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 6017f374382d64245a0a4aab668e6f38 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png new file mode 100644 index 0000000..bb842ea Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png.meta new file mode 100644 index 0000000..786ef7f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_1.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 0f8fa14b3731cda4e947062e734d5e1e +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png new file mode 100644 index 0000000..17b3b7e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png.meta new file mode 100644 index 0000000..4a875b7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_2.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 1abfe0e165ca1e9428b455ffc9a2d9ef +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png new file mode 100644 index 0000000..eec5182 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png.meta new file mode 100644 index 0000000..4369ddd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_3.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: c072b653e98a06e40857d76ca8c7eecd +timeCreated: 1503659187 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png new file mode 100644 index 0000000..84bb96f Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png.meta new file mode 100644 index 0000000..9e4b814 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_4.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: b52d5033b68309943a2386c270a90f44 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png new file mode 100644 index 0000000..296e728 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png.meta new file mode 100644 index 0000000..867f72f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_5.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: acde5141d5f4f7a4188394bd52c4dc38 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png new file mode 100644 index 0000000..d9da846 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png.meta new file mode 100644 index 0000000..f4ae018 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_6.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 999434725cbc2be4eb54043b36efd4a8 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png new file mode 100644 index 0000000..ab487a6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png.meta new file mode 100644 index 0000000..c163c6c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise256px/LDR_LLL1_7.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 70d0a1182b29d6347ac70374c3593bba +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px.meta new file mode 100644 index 0000000..abd1c77 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: eeecf288e8ae5be4692977cae1a3e077 +folderAsset: yes +timeCreated: 1488906458 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png new file mode 100644 index 0000000..d1920c6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png.meta new file mode 100644 index 0000000..a81381f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_0.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 50b54341495978843a6f85583ed4417d +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png new file mode 100644 index 0000000..9d525e5 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png.meta new file mode 100644 index 0000000..cfa52cd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_1.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3c2f1fb7e4b66e74191b7c328ada52d9 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png new file mode 100644 index 0000000..ecadafb Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png.meta new file mode 100644 index 0000000..b23f52c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_10.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: afe1e502240079342a0a980484b6da8b +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png new file mode 100644 index 0000000..923292a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png.meta new file mode 100644 index 0000000..5430c15 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_11.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 771903fe7b4674445829e52e91cff019 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png new file mode 100644 index 0000000..2077a1a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png.meta new file mode 100644 index 0000000..6affbc5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_12.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 980acadb960f8424c94307ec0e585b4e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png new file mode 100644 index 0000000..491f4c0 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png.meta new file mode 100644 index 0000000..a60c748 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_13.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 68613e6a221be1a4b9f31d7fa1c2d1bf +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png new file mode 100644 index 0000000..3093572 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png.meta new file mode 100644 index 0000000..47e3419 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_14.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: f6439b54b28f3884eb67579dec0b6f21 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png new file mode 100644 index 0000000..ece485d Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png.meta new file mode 100644 index 0000000..952023f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_15.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 2ee161d8945169243b5698fec114e1b7 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png new file mode 100644 index 0000000..8750ad6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png.meta new file mode 100644 index 0000000..a9d7eb7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_16.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 153f7d6dfbe713d4884df0f1e243ba92 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png new file mode 100644 index 0000000..bdee0f8 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png.meta new file mode 100644 index 0000000..f8ad95f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_17.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bf95b6fdc179b0e4f890c841406193fc +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png new file mode 100644 index 0000000..30c49f3 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png.meta new file mode 100644 index 0000000..c032f92 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_18.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 74aca53eb7273624baffc2bf5e5cc173 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png new file mode 100644 index 0000000..5180f1a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png.meta new file mode 100644 index 0000000..287174f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_19.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 729a3ae164bcb3b4380459386adcf331 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png new file mode 100644 index 0000000..f5912ee Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png.meta new file mode 100644 index 0000000..cb29983 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_2.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a469f920b21fc7c4fb5b950917ce2fb2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png new file mode 100644 index 0000000..1424899 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png.meta new file mode 100644 index 0000000..5e7ca30 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_20.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6dda07f1420a968449cf4c6620c44d9f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png new file mode 100644 index 0000000..d634013 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png.meta new file mode 100644 index 0000000..51de948 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_21.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b7f000750830ddb4bbc80065b9314ce9 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png new file mode 100644 index 0000000..cb0a0ae Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png.meta new file mode 100644 index 0000000..22ea61a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_22.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: df01d03f056c6f445b4b8a0ae054207c +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png new file mode 100644 index 0000000..b063795 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png.meta new file mode 100644 index 0000000..d89cc9e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_23.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bfe953600e8fb1849a804ee08ace7b4c +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png new file mode 100644 index 0000000..f4debb8 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png.meta new file mode 100644 index 0000000..3f569d7 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_24.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png new file mode 100644 index 0000000..c20d7b2 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png.meta new file mode 100644 index 0000000..8045a5e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_25.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: f4b8ab78b57749d4e96d36f6d8a395d0 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png new file mode 100644 index 0000000..930ec4e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png.meta new file mode 100644 index 0000000..331064b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_26.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 09f6c01f98a3ded4daf1afc52a3c260f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png new file mode 100644 index 0000000..06949cf Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png.meta new file mode 100644 index 0000000..5665344 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_27.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bdd06fb88ef36ed4a85dd506352c2d80 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png new file mode 100644 index 0000000..9807e41 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png.meta new file mode 100644 index 0000000..3bbb00d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_28.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 02c0a84bd64c6f044954d8bde9b46ec8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png new file mode 100644 index 0000000..413a86e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png.meta new file mode 100644 index 0000000..527881a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_29.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: aa80dc44aa4fe4c43bb9d51d90cf2958 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png new file mode 100644 index 0000000..767fc58 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png.meta new file mode 100644 index 0000000..fbe528f --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_3.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 373f9bf6b0841af4ebf26d25e4a3f4e2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png new file mode 100644 index 0000000..a1da55b Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png.meta new file mode 100644 index 0000000..dd61326 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_30.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 0fa10b21877c61b4db40ba5708815f81 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png new file mode 100644 index 0000000..e2961b5 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png.meta new file mode 100644 index 0000000..8ed0950 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_31.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6b0a189df0bd4d5448eaefb4e673ace8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png new file mode 100644 index 0000000..24d31e9 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png.meta new file mode 100644 index 0000000..c9e6833 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_32.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 87a5e40cc271ea648b583616f6ebe7fe +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png new file mode 100644 index 0000000..3403d4d Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png.meta new file mode 100644 index 0000000..7500baf --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_33.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b71bb466b71fd13449dd736f63caeb67 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png new file mode 100644 index 0000000..2022cd9 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png.meta new file mode 100644 index 0000000..8a40dce --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_34.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 319b8e66db3faa4438cf6982e9c89b2f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png new file mode 100644 index 0000000..bd9359c Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png.meta new file mode 100644 index 0000000..24a716d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_35.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 0a79c155edf9b2d429d4736abee5acdb +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png new file mode 100644 index 0000000..22ed73a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png.meta new file mode 100644 index 0000000..e35210c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_36.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 351e95d0e20a54849bd4ce5f9b498934 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png new file mode 100644 index 0000000..6f84bb7 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png.meta new file mode 100644 index 0000000..af4db5a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_37.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1d6958e30e40a254dbe5a54c573eeb3c +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png new file mode 100644 index 0000000..d9c27fb Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png.meta new file mode 100644 index 0000000..78b4dc4 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_38.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 9660a4ca1ca8425408ac25c641932977 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png new file mode 100644 index 0000000..2610149 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png.meta new file mode 100644 index 0000000..5f204ce --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_39.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 547dbd5f858c74047ba3f213e4408307 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png new file mode 100644 index 0000000..81cdc3d Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png.meta new file mode 100644 index 0000000..fe3a392 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_4.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6fa5cf178eaaa5f42b820f636bb6e0bd +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png new file mode 100644 index 0000000..8d95446 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png.meta new file mode 100644 index 0000000..3a71a40 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_40.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1a9ce5640cde5934aae0022f020464a6 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png new file mode 100644 index 0000000..f6c01a6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png.meta new file mode 100644 index 0000000..b7295d1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_41.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: cd9006dc442cc244e89b3f492384d46a +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png new file mode 100644 index 0000000..1d42c2f Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png.meta new file mode 100644 index 0000000..33ea83b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_42.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b266511438fae724f9d3ce6bd26583e8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png new file mode 100644 index 0000000..2f5c591 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png.meta new file mode 100644 index 0000000..9526e70 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_43.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 71bc1b6b66e8b784b972199b7e90204e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png new file mode 100644 index 0000000..765c014 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png.meta new file mode 100644 index 0000000..0b37eff --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_44.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 15e54aa23a938444389469d53765d741 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png new file mode 100644 index 0000000..f335132 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png.meta new file mode 100644 index 0000000..529ede3 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_45.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b9960364038cbfa4aa49d7b2032d3110 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png new file mode 100644 index 0000000..5118df3 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png.meta new file mode 100644 index 0000000..06704ef --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_46.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 8ecbbcae4cc747a4abbc4adce795d25e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png new file mode 100644 index 0000000..c22a632 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png.meta new file mode 100644 index 0000000..c1220ea --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_47.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1378a33cdd085d64c9da863d2484ff21 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png new file mode 100644 index 0000000..782c380 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png.meta new file mode 100644 index 0000000..f8a6e3b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_48.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: aff59c63d25d43f4c938f248837c30fb +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png new file mode 100644 index 0000000..34d36e6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png.meta new file mode 100644 index 0000000..96d9886 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_49.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3f7c3687170b90e4a8d2ee6b142670f4 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png new file mode 100644 index 0000000..90a715a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png.meta new file mode 100644 index 0000000..adac8ba --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_5.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a1ae041906217ae44a774d4ca139af50 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png new file mode 100644 index 0000000..df80595 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png.meta new file mode 100644 index 0000000..80df0a1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_50.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d8c290e38ff0425409d0ae6a98c95e41 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png new file mode 100644 index 0000000..ed9f2d3 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png.meta new file mode 100644 index 0000000..ff82bfd --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_51.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d5a51525b27e3ee4aadbeb39cbcf0750 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png new file mode 100644 index 0000000..be2c6fe Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png.meta new file mode 100644 index 0000000..dc39ab1 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_52.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d2e8e90fac2e6a341a38e1c3963c218d +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png new file mode 100644 index 0000000..c226491 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png.meta new file mode 100644 index 0000000..202abf5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_53.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: c94b57b5a32a22d43ade66e09f6a4bd2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png new file mode 100644 index 0000000..3b6bbb8 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png.meta new file mode 100644 index 0000000..0a0a81a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_54.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 936dea238abb0864ab3985a995e16a29 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png new file mode 100644 index 0000000..261291a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png.meta new file mode 100644 index 0000000..35ba219 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_55.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 5e542d0126a2c7848b66bffc428905fd +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png new file mode 100644 index 0000000..7d8b298 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png.meta new file mode 100644 index 0000000..d9c49cb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_56.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 70f23eaf7d8ae9147aa542d20e93733b +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png new file mode 100644 index 0000000..97fe687 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png.meta new file mode 100644 index 0000000..aa03290 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_57.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: e138166e7a7c70f49943be7edda35d35 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png new file mode 100644 index 0000000..9c01659 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png.meta new file mode 100644 index 0000000..3ac47bc --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_58.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 85a45a6d8b2ffb84987d2b028ecfb220 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png new file mode 100644 index 0000000..805a44e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png.meta new file mode 100644 index 0000000..be2d613 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_59.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d96974690c77f50489eb60ec84bd8dac +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png new file mode 100644 index 0000000..326b1d3 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png.meta new file mode 100644 index 0000000..82ca960 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_6.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 79b86f3419b87f3429164a956da8cfab +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png new file mode 100644 index 0000000..5307242 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png.meta new file mode 100644 index 0000000..9add371 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_60.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 404fa8def46b1c447817e1ebdaa7144e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png new file mode 100644 index 0000000..623794c Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png.meta new file mode 100644 index 0000000..8d50446 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_61.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 119591e0bb084e848835d237546b3882 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png new file mode 100644 index 0000000..d4b4f70 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png.meta new file mode 100644 index 0000000..6c4ec71 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_62.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a03c400b0e3959f428ee99dfc6cfc263 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png new file mode 100644 index 0000000..1746cc1 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png.meta new file mode 100644 index 0000000..b23dbd0 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_63.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 4a11d65ce13d5f542a0ff136cc2f3fba +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png new file mode 100644 index 0000000..0a396d3 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png.meta new file mode 100644 index 0000000..eb464ac --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_7.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3ac02e7e783571c468f9c086d2384ba7 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png new file mode 100644 index 0000000..0b5d32e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png.meta new file mode 100644 index 0000000..242fe69 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_8.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: c55042318a938344ab23cd7f09dd0076 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png new file mode 100644 index 0000000..2beb747 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png.meta b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png.meta new file mode 100644 index 0000000..5f8db7a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/BlueNoise64px/LDR_LLL1_9.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 71583cfd8899717428d5b1a95fa39cda +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes.meta new file mode 100644 index 0000000..0d6b585 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 32330dbb76fcb1f43a2c85bbcbf1cf1c +folderAsset: yes +timeCreated: 1496742837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube new file mode 100644 index 0000000..0ff910b --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube @@ -0,0 +1,35941 @@ +TITLE "Linear to Unity Log r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0.092819 0.092819 0.092819 +0.2262531 0.092819 0.092819 +0.2875993 0.092819 0.092819 +0.3262122 0.092819 0.092819 +0.3544566 0.092819 0.092819 +0.3767383 0.092819 0.092819 +0.3951413 0.092819 0.092819 +0.4108177 0.092819 0.092819 +0.4244723 0.092819 0.092819 +0.4365675 0.092819 0.092819 +0.4474232 0.092819 0.092819 +0.45727 0.092819 0.092819 +0.4662797 0.092819 0.092819 +0.4745834 0.092819 0.092819 +0.4822838 0.092819 0.092819 +0.4894626 0.092819 0.092819 +0.4961862 0.092819 0.092819 +0.5025087 0.092819 0.092819 +0.5084753 0.092819 0.092819 +0.514124 0.092819 0.092819 +0.519487 0.092819 0.092819 +0.5245917 0.092819 0.092819 +0.529462 0.092819 0.092819 +0.5341183 0.092819 0.092819 +0.5385787 0.092819 0.092819 +0.5428591 0.092819 0.092819 +0.5469733 0.092819 0.092819 +0.5509339 0.092819 0.092819 +0.5547519 0.092819 0.092819 +0.5584371 0.092819 0.092819 +0.5619986 0.092819 0.092819 +0.5654443 0.092819 0.092819 +0.5687816 0.092819 0.092819 +0.092819 0.2262531 0.092819 +0.2262531 0.2262531 0.092819 +0.2875993 0.2262531 0.092819 +0.3262122 0.2262531 0.092819 +0.3544566 0.2262531 0.092819 +0.3767383 0.2262531 0.092819 +0.3951413 0.2262531 0.092819 +0.4108177 0.2262531 0.092819 +0.4244723 0.2262531 0.092819 +0.4365675 0.2262531 0.092819 +0.4474232 0.2262531 0.092819 +0.45727 0.2262531 0.092819 +0.4662797 0.2262531 0.092819 +0.4745834 0.2262531 0.092819 +0.4822838 0.2262531 0.092819 +0.4894626 0.2262531 0.092819 +0.4961862 0.2262531 0.092819 +0.5025087 0.2262531 0.092819 +0.5084753 0.2262531 0.092819 +0.514124 0.2262531 0.092819 +0.519487 0.2262531 0.092819 +0.5245917 0.2262531 0.092819 +0.529462 0.2262531 0.092819 +0.5341183 0.2262531 0.092819 +0.5385787 0.2262531 0.092819 +0.5428591 0.2262531 0.092819 +0.5469733 0.2262531 0.092819 +0.5509339 0.2262531 0.092819 +0.5547519 0.2262531 0.092819 +0.5584371 0.2262531 0.092819 +0.5619986 0.2262531 0.092819 +0.5654443 0.2262531 0.092819 +0.5687816 0.2262531 0.092819 +0.092819 0.2875993 0.092819 +0.2262531 0.2875993 0.092819 +0.2875993 0.2875993 0.092819 +0.3262122 0.2875993 0.092819 +0.3544566 0.2875993 0.092819 +0.3767383 0.2875993 0.092819 +0.3951413 0.2875993 0.092819 +0.4108177 0.2875993 0.092819 +0.4244723 0.2875993 0.092819 +0.4365675 0.2875993 0.092819 +0.4474232 0.2875993 0.092819 +0.45727 0.2875993 0.092819 +0.4662797 0.2875993 0.092819 +0.4745834 0.2875993 0.092819 +0.4822838 0.2875993 0.092819 +0.4894626 0.2875993 0.092819 +0.4961862 0.2875993 0.092819 +0.5025087 0.2875993 0.092819 +0.5084753 0.2875993 0.092819 +0.514124 0.2875993 0.092819 +0.519487 0.2875993 0.092819 +0.5245917 0.2875993 0.092819 +0.529462 0.2875993 0.092819 +0.5341183 0.2875993 0.092819 +0.5385787 0.2875993 0.092819 +0.5428591 0.2875993 0.092819 +0.5469733 0.2875993 0.092819 +0.5509339 0.2875993 0.092819 +0.5547519 0.2875993 0.092819 +0.5584371 0.2875993 0.092819 +0.5619986 0.2875993 0.092819 +0.5654443 0.2875993 0.092819 +0.5687816 0.2875993 0.092819 +0.092819 0.3262122 0.092819 +0.2262531 0.3262122 0.092819 +0.2875993 0.3262122 0.092819 +0.3262122 0.3262122 0.092819 +0.3544566 0.3262122 0.092819 +0.3767383 0.3262122 0.092819 +0.3951413 0.3262122 0.092819 +0.4108177 0.3262122 0.092819 +0.4244723 0.3262122 0.092819 +0.4365675 0.3262122 0.092819 +0.4474232 0.3262122 0.092819 +0.45727 0.3262122 0.092819 +0.4662797 0.3262122 0.092819 +0.4745834 0.3262122 0.092819 +0.4822838 0.3262122 0.092819 +0.4894626 0.3262122 0.092819 +0.4961862 0.3262122 0.092819 +0.5025087 0.3262122 0.092819 +0.5084753 0.3262122 0.092819 +0.514124 0.3262122 0.092819 +0.519487 0.3262122 0.092819 +0.5245917 0.3262122 0.092819 +0.529462 0.3262122 0.092819 +0.5341183 0.3262122 0.092819 +0.5385787 0.3262122 0.092819 +0.5428591 0.3262122 0.092819 +0.5469733 0.3262122 0.092819 +0.5509339 0.3262122 0.092819 +0.5547519 0.3262122 0.092819 +0.5584371 0.3262122 0.092819 +0.5619986 0.3262122 0.092819 +0.5654443 0.3262122 0.092819 +0.5687816 0.3262122 0.092819 +0.092819 0.3544566 0.092819 +0.2262531 0.3544566 0.092819 +0.2875993 0.3544566 0.092819 +0.3262122 0.3544566 0.092819 +0.3544566 0.3544566 0.092819 +0.3767383 0.3544566 0.092819 +0.3951413 0.3544566 0.092819 +0.4108177 0.3544566 0.092819 +0.4244723 0.3544566 0.092819 +0.4365675 0.3544566 0.092819 +0.4474232 0.3544566 0.092819 +0.45727 0.3544566 0.092819 +0.4662797 0.3544566 0.092819 +0.4745834 0.3544566 0.092819 +0.4822838 0.3544566 0.092819 +0.4894626 0.3544566 0.092819 +0.4961862 0.3544566 0.092819 +0.5025087 0.3544566 0.092819 +0.5084753 0.3544566 0.092819 +0.514124 0.3544566 0.092819 +0.519487 0.3544566 0.092819 +0.5245917 0.3544566 0.092819 +0.529462 0.3544566 0.092819 +0.5341183 0.3544566 0.092819 +0.5385787 0.3544566 0.092819 +0.5428591 0.3544566 0.092819 +0.5469733 0.3544566 0.092819 +0.5509339 0.3544566 0.092819 +0.5547519 0.3544566 0.092819 +0.5584371 0.3544566 0.092819 +0.5619986 0.3544566 0.092819 +0.5654443 0.3544566 0.092819 +0.5687816 0.3544566 0.092819 +0.092819 0.3767383 0.092819 +0.2262531 0.3767383 0.092819 +0.2875993 0.3767383 0.092819 +0.3262122 0.3767383 0.092819 +0.3544566 0.3767383 0.092819 +0.3767383 0.3767383 0.092819 +0.3951413 0.3767383 0.092819 +0.4108177 0.3767383 0.092819 +0.4244723 0.3767383 0.092819 +0.4365675 0.3767383 0.092819 +0.4474232 0.3767383 0.092819 +0.45727 0.3767383 0.092819 +0.4662797 0.3767383 0.092819 +0.4745834 0.3767383 0.092819 +0.4822838 0.3767383 0.092819 +0.4894626 0.3767383 0.092819 +0.4961862 0.3767383 0.092819 +0.5025087 0.3767383 0.092819 +0.5084753 0.3767383 0.092819 +0.514124 0.3767383 0.092819 +0.519487 0.3767383 0.092819 +0.5245917 0.3767383 0.092819 +0.529462 0.3767383 0.092819 +0.5341183 0.3767383 0.092819 +0.5385787 0.3767383 0.092819 +0.5428591 0.3767383 0.092819 +0.5469733 0.3767383 0.092819 +0.5509339 0.3767383 0.092819 +0.5547519 0.3767383 0.092819 +0.5584371 0.3767383 0.092819 +0.5619986 0.3767383 0.092819 +0.5654443 0.3767383 0.092819 +0.5687816 0.3767383 0.092819 +0.092819 0.3951413 0.092819 +0.2262531 0.3951413 0.092819 +0.2875993 0.3951413 0.092819 +0.3262122 0.3951413 0.092819 +0.3544566 0.3951413 0.092819 +0.3767383 0.3951413 0.092819 +0.3951413 0.3951413 0.092819 +0.4108177 0.3951413 0.092819 +0.4244723 0.3951413 0.092819 +0.4365675 0.3951413 0.092819 +0.4474232 0.3951413 0.092819 +0.45727 0.3951413 0.092819 +0.4662797 0.3951413 0.092819 +0.4745834 0.3951413 0.092819 +0.4822838 0.3951413 0.092819 +0.4894626 0.3951413 0.092819 +0.4961862 0.3951413 0.092819 +0.5025087 0.3951413 0.092819 +0.5084753 0.3951413 0.092819 +0.514124 0.3951413 0.092819 +0.519487 0.3951413 0.092819 +0.5245917 0.3951413 0.092819 +0.529462 0.3951413 0.092819 +0.5341183 0.3951413 0.092819 +0.5385787 0.3951413 0.092819 +0.5428591 0.3951413 0.092819 +0.5469733 0.3951413 0.092819 +0.5509339 0.3951413 0.092819 +0.5547519 0.3951413 0.092819 +0.5584371 0.3951413 0.092819 +0.5619986 0.3951413 0.092819 +0.5654443 0.3951413 0.092819 +0.5687816 0.3951413 0.092819 +0.092819 0.4108177 0.092819 +0.2262531 0.4108177 0.092819 +0.2875993 0.4108177 0.092819 +0.3262122 0.4108177 0.092819 +0.3544566 0.4108177 0.092819 +0.3767383 0.4108177 0.092819 +0.3951413 0.4108177 0.092819 +0.4108177 0.4108177 0.092819 +0.4244723 0.4108177 0.092819 +0.4365675 0.4108177 0.092819 +0.4474232 0.4108177 0.092819 +0.45727 0.4108177 0.092819 +0.4662797 0.4108177 0.092819 +0.4745834 0.4108177 0.092819 +0.4822838 0.4108177 0.092819 +0.4894626 0.4108177 0.092819 +0.4961862 0.4108177 0.092819 +0.5025087 0.4108177 0.092819 +0.5084753 0.4108177 0.092819 +0.514124 0.4108177 0.092819 +0.519487 0.4108177 0.092819 +0.5245917 0.4108177 0.092819 +0.529462 0.4108177 0.092819 +0.5341183 0.4108177 0.092819 +0.5385787 0.4108177 0.092819 +0.5428591 0.4108177 0.092819 +0.5469733 0.4108177 0.092819 +0.5509339 0.4108177 0.092819 +0.5547519 0.4108177 0.092819 +0.5584371 0.4108177 0.092819 +0.5619986 0.4108177 0.092819 +0.5654443 0.4108177 0.092819 +0.5687816 0.4108177 0.092819 +0.092819 0.4244723 0.092819 +0.2262531 0.4244723 0.092819 +0.2875993 0.4244723 0.092819 +0.3262122 0.4244723 0.092819 +0.3544566 0.4244723 0.092819 +0.3767383 0.4244723 0.092819 +0.3951413 0.4244723 0.092819 +0.4108177 0.4244723 0.092819 +0.4244723 0.4244723 0.092819 +0.4365675 0.4244723 0.092819 +0.4474232 0.4244723 0.092819 +0.45727 0.4244723 0.092819 +0.4662797 0.4244723 0.092819 +0.4745834 0.4244723 0.092819 +0.4822838 0.4244723 0.092819 +0.4894626 0.4244723 0.092819 +0.4961862 0.4244723 0.092819 +0.5025087 0.4244723 0.092819 +0.5084753 0.4244723 0.092819 +0.514124 0.4244723 0.092819 +0.519487 0.4244723 0.092819 +0.5245917 0.4244723 0.092819 +0.529462 0.4244723 0.092819 +0.5341183 0.4244723 0.092819 +0.5385787 0.4244723 0.092819 +0.5428591 0.4244723 0.092819 +0.5469733 0.4244723 0.092819 +0.5509339 0.4244723 0.092819 +0.5547519 0.4244723 0.092819 +0.5584371 0.4244723 0.092819 +0.5619986 0.4244723 0.092819 +0.5654443 0.4244723 0.092819 +0.5687816 0.4244723 0.092819 +0.092819 0.4365675 0.092819 +0.2262531 0.4365675 0.092819 +0.2875993 0.4365675 0.092819 +0.3262122 0.4365675 0.092819 +0.3544566 0.4365675 0.092819 +0.3767383 0.4365675 0.092819 +0.3951413 0.4365675 0.092819 +0.4108177 0.4365675 0.092819 +0.4244723 0.4365675 0.092819 +0.4365675 0.4365675 0.092819 +0.4474232 0.4365675 0.092819 +0.45727 0.4365675 0.092819 +0.4662797 0.4365675 0.092819 +0.4745834 0.4365675 0.092819 +0.4822838 0.4365675 0.092819 +0.4894626 0.4365675 0.092819 +0.4961862 0.4365675 0.092819 +0.5025087 0.4365675 0.092819 +0.5084753 0.4365675 0.092819 +0.514124 0.4365675 0.092819 +0.519487 0.4365675 0.092819 +0.5245917 0.4365675 0.092819 +0.529462 0.4365675 0.092819 +0.5341183 0.4365675 0.092819 +0.5385787 0.4365675 0.092819 +0.5428591 0.4365675 0.092819 +0.5469733 0.4365675 0.092819 +0.5509339 0.4365675 0.092819 +0.5547519 0.4365675 0.092819 +0.5584371 0.4365675 0.092819 +0.5619986 0.4365675 0.092819 +0.5654443 0.4365675 0.092819 +0.5687816 0.4365675 0.092819 +0.092819 0.4474232 0.092819 +0.2262531 0.4474232 0.092819 +0.2875993 0.4474232 0.092819 +0.3262122 0.4474232 0.092819 +0.3544566 0.4474232 0.092819 +0.3767383 0.4474232 0.092819 +0.3951413 0.4474232 0.092819 +0.4108177 0.4474232 0.092819 +0.4244723 0.4474232 0.092819 +0.4365675 0.4474232 0.092819 +0.4474232 0.4474232 0.092819 +0.45727 0.4474232 0.092819 +0.4662797 0.4474232 0.092819 +0.4745834 0.4474232 0.092819 +0.4822838 0.4474232 0.092819 +0.4894626 0.4474232 0.092819 +0.4961862 0.4474232 0.092819 +0.5025087 0.4474232 0.092819 +0.5084753 0.4474232 0.092819 +0.514124 0.4474232 0.092819 +0.519487 0.4474232 0.092819 +0.5245917 0.4474232 0.092819 +0.529462 0.4474232 0.092819 +0.5341183 0.4474232 0.092819 +0.5385787 0.4474232 0.092819 +0.5428591 0.4474232 0.092819 +0.5469733 0.4474232 0.092819 +0.5509339 0.4474232 0.092819 +0.5547519 0.4474232 0.092819 +0.5584371 0.4474232 0.092819 +0.5619986 0.4474232 0.092819 +0.5654443 0.4474232 0.092819 +0.5687816 0.4474232 0.092819 +0.092819 0.45727 0.092819 +0.2262531 0.45727 0.092819 +0.2875993 0.45727 0.092819 +0.3262122 0.45727 0.092819 +0.3544566 0.45727 0.092819 +0.3767383 0.45727 0.092819 +0.3951413 0.45727 0.092819 +0.4108177 0.45727 0.092819 +0.4244723 0.45727 0.092819 +0.4365675 0.45727 0.092819 +0.4474232 0.45727 0.092819 +0.45727 0.45727 0.092819 +0.4662797 0.45727 0.092819 +0.4745834 0.45727 0.092819 +0.4822838 0.45727 0.092819 +0.4894626 0.45727 0.092819 +0.4961862 0.45727 0.092819 +0.5025087 0.45727 0.092819 +0.5084753 0.45727 0.092819 +0.514124 0.45727 0.092819 +0.519487 0.45727 0.092819 +0.5245917 0.45727 0.092819 +0.529462 0.45727 0.092819 +0.5341183 0.45727 0.092819 +0.5385787 0.45727 0.092819 +0.5428591 0.45727 0.092819 +0.5469733 0.45727 0.092819 +0.5509339 0.45727 0.092819 +0.5547519 0.45727 0.092819 +0.5584371 0.45727 0.092819 +0.5619986 0.45727 0.092819 +0.5654443 0.45727 0.092819 +0.5687816 0.45727 0.092819 +0.092819 0.4662797 0.092819 +0.2262531 0.4662797 0.092819 +0.2875993 0.4662797 0.092819 +0.3262122 0.4662797 0.092819 +0.3544566 0.4662797 0.092819 +0.3767383 0.4662797 0.092819 +0.3951413 0.4662797 0.092819 +0.4108177 0.4662797 0.092819 +0.4244723 0.4662797 0.092819 +0.4365675 0.4662797 0.092819 +0.4474232 0.4662797 0.092819 +0.45727 0.4662797 0.092819 +0.4662797 0.4662797 0.092819 +0.4745834 0.4662797 0.092819 +0.4822838 0.4662797 0.092819 +0.4894626 0.4662797 0.092819 +0.4961862 0.4662797 0.092819 +0.5025087 0.4662797 0.092819 +0.5084753 0.4662797 0.092819 +0.514124 0.4662797 0.092819 +0.519487 0.4662797 0.092819 +0.5245917 0.4662797 0.092819 +0.529462 0.4662797 0.092819 +0.5341183 0.4662797 0.092819 +0.5385787 0.4662797 0.092819 +0.5428591 0.4662797 0.092819 +0.5469733 0.4662797 0.092819 +0.5509339 0.4662797 0.092819 +0.5547519 0.4662797 0.092819 +0.5584371 0.4662797 0.092819 +0.5619986 0.4662797 0.092819 +0.5654443 0.4662797 0.092819 +0.5687816 0.4662797 0.092819 +0.092819 0.4745834 0.092819 +0.2262531 0.4745834 0.092819 +0.2875993 0.4745834 0.092819 +0.3262122 0.4745834 0.092819 +0.3544566 0.4745834 0.092819 +0.3767383 0.4745834 0.092819 +0.3951413 0.4745834 0.092819 +0.4108177 0.4745834 0.092819 +0.4244723 0.4745834 0.092819 +0.4365675 0.4745834 0.092819 +0.4474232 0.4745834 0.092819 +0.45727 0.4745834 0.092819 +0.4662797 0.4745834 0.092819 +0.4745834 0.4745834 0.092819 +0.4822838 0.4745834 0.092819 +0.4894626 0.4745834 0.092819 +0.4961862 0.4745834 0.092819 +0.5025087 0.4745834 0.092819 +0.5084753 0.4745834 0.092819 +0.514124 0.4745834 0.092819 +0.519487 0.4745834 0.092819 +0.5245917 0.4745834 0.092819 +0.529462 0.4745834 0.092819 +0.5341183 0.4745834 0.092819 +0.5385787 0.4745834 0.092819 +0.5428591 0.4745834 0.092819 +0.5469733 0.4745834 0.092819 +0.5509339 0.4745834 0.092819 +0.5547519 0.4745834 0.092819 +0.5584371 0.4745834 0.092819 +0.5619986 0.4745834 0.092819 +0.5654443 0.4745834 0.092819 +0.5687816 0.4745834 0.092819 +0.092819 0.4822838 0.092819 +0.2262531 0.4822838 0.092819 +0.2875993 0.4822838 0.092819 +0.3262122 0.4822838 0.092819 +0.3544566 0.4822838 0.092819 +0.3767383 0.4822838 0.092819 +0.3951413 0.4822838 0.092819 +0.4108177 0.4822838 0.092819 +0.4244723 0.4822838 0.092819 +0.4365675 0.4822838 0.092819 +0.4474232 0.4822838 0.092819 +0.45727 0.4822838 0.092819 +0.4662797 0.4822838 0.092819 +0.4745834 0.4822838 0.092819 +0.4822838 0.4822838 0.092819 +0.4894626 0.4822838 0.092819 +0.4961862 0.4822838 0.092819 +0.5025087 0.4822838 0.092819 +0.5084753 0.4822838 0.092819 +0.514124 0.4822838 0.092819 +0.519487 0.4822838 0.092819 +0.5245917 0.4822838 0.092819 +0.529462 0.4822838 0.092819 +0.5341183 0.4822838 0.092819 +0.5385787 0.4822838 0.092819 +0.5428591 0.4822838 0.092819 +0.5469733 0.4822838 0.092819 +0.5509339 0.4822838 0.092819 +0.5547519 0.4822838 0.092819 +0.5584371 0.4822838 0.092819 +0.5619986 0.4822838 0.092819 +0.5654443 0.4822838 0.092819 +0.5687816 0.4822838 0.092819 +0.092819 0.4894626 0.092819 +0.2262531 0.4894626 0.092819 +0.2875993 0.4894626 0.092819 +0.3262122 0.4894626 0.092819 +0.3544566 0.4894626 0.092819 +0.3767383 0.4894626 0.092819 +0.3951413 0.4894626 0.092819 +0.4108177 0.4894626 0.092819 +0.4244723 0.4894626 0.092819 +0.4365675 0.4894626 0.092819 +0.4474232 0.4894626 0.092819 +0.45727 0.4894626 0.092819 +0.4662797 0.4894626 0.092819 +0.4745834 0.4894626 0.092819 +0.4822838 0.4894626 0.092819 +0.4894626 0.4894626 0.092819 +0.4961862 0.4894626 0.092819 +0.5025087 0.4894626 0.092819 +0.5084753 0.4894626 0.092819 +0.514124 0.4894626 0.092819 +0.519487 0.4894626 0.092819 +0.5245917 0.4894626 0.092819 +0.529462 0.4894626 0.092819 +0.5341183 0.4894626 0.092819 +0.5385787 0.4894626 0.092819 +0.5428591 0.4894626 0.092819 +0.5469733 0.4894626 0.092819 +0.5509339 0.4894626 0.092819 +0.5547519 0.4894626 0.092819 +0.5584371 0.4894626 0.092819 +0.5619986 0.4894626 0.092819 +0.5654443 0.4894626 0.092819 +0.5687816 0.4894626 0.092819 +0.092819 0.4961862 0.092819 +0.2262531 0.4961862 0.092819 +0.2875993 0.4961862 0.092819 +0.3262122 0.4961862 0.092819 +0.3544566 0.4961862 0.092819 +0.3767383 0.4961862 0.092819 +0.3951413 0.4961862 0.092819 +0.4108177 0.4961862 0.092819 +0.4244723 0.4961862 0.092819 +0.4365675 0.4961862 0.092819 +0.4474232 0.4961862 0.092819 +0.45727 0.4961862 0.092819 +0.4662797 0.4961862 0.092819 +0.4745834 0.4961862 0.092819 +0.4822838 0.4961862 0.092819 +0.4894626 0.4961862 0.092819 +0.4961862 0.4961862 0.092819 +0.5025087 0.4961862 0.092819 +0.5084753 0.4961862 0.092819 +0.514124 0.4961862 0.092819 +0.519487 0.4961862 0.092819 +0.5245917 0.4961862 0.092819 +0.529462 0.4961862 0.092819 +0.5341183 0.4961862 0.092819 +0.5385787 0.4961862 0.092819 +0.5428591 0.4961862 0.092819 +0.5469733 0.4961862 0.092819 +0.5509339 0.4961862 0.092819 +0.5547519 0.4961862 0.092819 +0.5584371 0.4961862 0.092819 +0.5619986 0.4961862 0.092819 +0.5654443 0.4961862 0.092819 +0.5687816 0.4961862 0.092819 +0.092819 0.5025087 0.092819 +0.2262531 0.5025087 0.092819 +0.2875993 0.5025087 0.092819 +0.3262122 0.5025087 0.092819 +0.3544566 0.5025087 0.092819 +0.3767383 0.5025087 0.092819 +0.3951413 0.5025087 0.092819 +0.4108177 0.5025087 0.092819 +0.4244723 0.5025087 0.092819 +0.4365675 0.5025087 0.092819 +0.4474232 0.5025087 0.092819 +0.45727 0.5025087 0.092819 +0.4662797 0.5025087 0.092819 +0.4745834 0.5025087 0.092819 +0.4822838 0.5025087 0.092819 +0.4894626 0.5025087 0.092819 +0.4961862 0.5025087 0.092819 +0.5025087 0.5025087 0.092819 +0.5084753 0.5025087 0.092819 +0.514124 0.5025087 0.092819 +0.519487 0.5025087 0.092819 +0.5245917 0.5025087 0.092819 +0.529462 0.5025087 0.092819 +0.5341183 0.5025087 0.092819 +0.5385787 0.5025087 0.092819 +0.5428591 0.5025087 0.092819 +0.5469733 0.5025087 0.092819 +0.5509339 0.5025087 0.092819 +0.5547519 0.5025087 0.092819 +0.5584371 0.5025087 0.092819 +0.5619986 0.5025087 0.092819 +0.5654443 0.5025087 0.092819 +0.5687816 0.5025087 0.092819 +0.092819 0.5084753 0.092819 +0.2262531 0.5084753 0.092819 +0.2875993 0.5084753 0.092819 +0.3262122 0.5084753 0.092819 +0.3544566 0.5084753 0.092819 +0.3767383 0.5084753 0.092819 +0.3951413 0.5084753 0.092819 +0.4108177 0.5084753 0.092819 +0.4244723 0.5084753 0.092819 +0.4365675 0.5084753 0.092819 +0.4474232 0.5084753 0.092819 +0.45727 0.5084753 0.092819 +0.4662797 0.5084753 0.092819 +0.4745834 0.5084753 0.092819 +0.4822838 0.5084753 0.092819 +0.4894626 0.5084753 0.092819 +0.4961862 0.5084753 0.092819 +0.5025087 0.5084753 0.092819 +0.5084753 0.5084753 0.092819 +0.514124 0.5084753 0.092819 +0.519487 0.5084753 0.092819 +0.5245917 0.5084753 0.092819 +0.529462 0.5084753 0.092819 +0.5341183 0.5084753 0.092819 +0.5385787 0.5084753 0.092819 +0.5428591 0.5084753 0.092819 +0.5469733 0.5084753 0.092819 +0.5509339 0.5084753 0.092819 +0.5547519 0.5084753 0.092819 +0.5584371 0.5084753 0.092819 +0.5619986 0.5084753 0.092819 +0.5654443 0.5084753 0.092819 +0.5687816 0.5084753 0.092819 +0.092819 0.514124 0.092819 +0.2262531 0.514124 0.092819 +0.2875993 0.514124 0.092819 +0.3262122 0.514124 0.092819 +0.3544566 0.514124 0.092819 +0.3767383 0.514124 0.092819 +0.3951413 0.514124 0.092819 +0.4108177 0.514124 0.092819 +0.4244723 0.514124 0.092819 +0.4365675 0.514124 0.092819 +0.4474232 0.514124 0.092819 +0.45727 0.514124 0.092819 +0.4662797 0.514124 0.092819 +0.4745834 0.514124 0.092819 +0.4822838 0.514124 0.092819 +0.4894626 0.514124 0.092819 +0.4961862 0.514124 0.092819 +0.5025087 0.514124 0.092819 +0.5084753 0.514124 0.092819 +0.514124 0.514124 0.092819 +0.519487 0.514124 0.092819 +0.5245917 0.514124 0.092819 +0.529462 0.514124 0.092819 +0.5341183 0.514124 0.092819 +0.5385787 0.514124 0.092819 +0.5428591 0.514124 0.092819 +0.5469733 0.514124 0.092819 +0.5509339 0.514124 0.092819 +0.5547519 0.514124 0.092819 +0.5584371 0.514124 0.092819 +0.5619986 0.514124 0.092819 +0.5654443 0.514124 0.092819 +0.5687816 0.514124 0.092819 +0.092819 0.519487 0.092819 +0.2262531 0.519487 0.092819 +0.2875993 0.519487 0.092819 +0.3262122 0.519487 0.092819 +0.3544566 0.519487 0.092819 +0.3767383 0.519487 0.092819 +0.3951413 0.519487 0.092819 +0.4108177 0.519487 0.092819 +0.4244723 0.519487 0.092819 +0.4365675 0.519487 0.092819 +0.4474232 0.519487 0.092819 +0.45727 0.519487 0.092819 +0.4662797 0.519487 0.092819 +0.4745834 0.519487 0.092819 +0.4822838 0.519487 0.092819 +0.4894626 0.519487 0.092819 +0.4961862 0.519487 0.092819 +0.5025087 0.519487 0.092819 +0.5084753 0.519487 0.092819 +0.514124 0.519487 0.092819 +0.519487 0.519487 0.092819 +0.5245917 0.519487 0.092819 +0.529462 0.519487 0.092819 +0.5341183 0.519487 0.092819 +0.5385787 0.519487 0.092819 +0.5428591 0.519487 0.092819 +0.5469733 0.519487 0.092819 +0.5509339 0.519487 0.092819 +0.5547519 0.519487 0.092819 +0.5584371 0.519487 0.092819 +0.5619986 0.519487 0.092819 +0.5654443 0.519487 0.092819 +0.5687816 0.519487 0.092819 +0.092819 0.5245917 0.092819 +0.2262531 0.5245917 0.092819 +0.2875993 0.5245917 0.092819 +0.3262122 0.5245917 0.092819 +0.3544566 0.5245917 0.092819 +0.3767383 0.5245917 0.092819 +0.3951413 0.5245917 0.092819 +0.4108177 0.5245917 0.092819 +0.4244723 0.5245917 0.092819 +0.4365675 0.5245917 0.092819 +0.4474232 0.5245917 0.092819 +0.45727 0.5245917 0.092819 +0.4662797 0.5245917 0.092819 +0.4745834 0.5245917 0.092819 +0.4822838 0.5245917 0.092819 +0.4894626 0.5245917 0.092819 +0.4961862 0.5245917 0.092819 +0.5025087 0.5245917 0.092819 +0.5084753 0.5245917 0.092819 +0.514124 0.5245917 0.092819 +0.519487 0.5245917 0.092819 +0.5245917 0.5245917 0.092819 +0.529462 0.5245917 0.092819 +0.5341183 0.5245917 0.092819 +0.5385787 0.5245917 0.092819 +0.5428591 0.5245917 0.092819 +0.5469733 0.5245917 0.092819 +0.5509339 0.5245917 0.092819 +0.5547519 0.5245917 0.092819 +0.5584371 0.5245917 0.092819 +0.5619986 0.5245917 0.092819 +0.5654443 0.5245917 0.092819 +0.5687816 0.5245917 0.092819 +0.092819 0.529462 0.092819 +0.2262531 0.529462 0.092819 +0.2875993 0.529462 0.092819 +0.3262122 0.529462 0.092819 +0.3544566 0.529462 0.092819 +0.3767383 0.529462 0.092819 +0.3951413 0.529462 0.092819 +0.4108177 0.529462 0.092819 +0.4244723 0.529462 0.092819 +0.4365675 0.529462 0.092819 +0.4474232 0.529462 0.092819 +0.45727 0.529462 0.092819 +0.4662797 0.529462 0.092819 +0.4745834 0.529462 0.092819 +0.4822838 0.529462 0.092819 +0.4894626 0.529462 0.092819 +0.4961862 0.529462 0.092819 +0.5025087 0.529462 0.092819 +0.5084753 0.529462 0.092819 +0.514124 0.529462 0.092819 +0.519487 0.529462 0.092819 +0.5245917 0.529462 0.092819 +0.529462 0.529462 0.092819 +0.5341183 0.529462 0.092819 +0.5385787 0.529462 0.092819 +0.5428591 0.529462 0.092819 +0.5469733 0.529462 0.092819 +0.5509339 0.529462 0.092819 +0.5547519 0.529462 0.092819 +0.5584371 0.529462 0.092819 +0.5619986 0.529462 0.092819 +0.5654443 0.529462 0.092819 +0.5687816 0.529462 0.092819 +0.092819 0.5341183 0.092819 +0.2262531 0.5341183 0.092819 +0.2875993 0.5341183 0.092819 +0.3262122 0.5341183 0.092819 +0.3544566 0.5341183 0.092819 +0.3767383 0.5341183 0.092819 +0.3951413 0.5341183 0.092819 +0.4108177 0.5341183 0.092819 +0.4244723 0.5341183 0.092819 +0.4365675 0.5341183 0.092819 +0.4474232 0.5341183 0.092819 +0.45727 0.5341183 0.092819 +0.4662797 0.5341183 0.092819 +0.4745834 0.5341183 0.092819 +0.4822838 0.5341183 0.092819 +0.4894626 0.5341183 0.092819 +0.4961862 0.5341183 0.092819 +0.5025087 0.5341183 0.092819 +0.5084753 0.5341183 0.092819 +0.514124 0.5341183 0.092819 +0.519487 0.5341183 0.092819 +0.5245917 0.5341183 0.092819 +0.529462 0.5341183 0.092819 +0.5341183 0.5341183 0.092819 +0.5385787 0.5341183 0.092819 +0.5428591 0.5341183 0.092819 +0.5469733 0.5341183 0.092819 +0.5509339 0.5341183 0.092819 +0.5547519 0.5341183 0.092819 +0.5584371 0.5341183 0.092819 +0.5619986 0.5341183 0.092819 +0.5654443 0.5341183 0.092819 +0.5687816 0.5341183 0.092819 +0.092819 0.5385787 0.092819 +0.2262531 0.5385787 0.092819 +0.2875993 0.5385787 0.092819 +0.3262122 0.5385787 0.092819 +0.3544566 0.5385787 0.092819 +0.3767383 0.5385787 0.092819 +0.3951413 0.5385787 0.092819 +0.4108177 0.5385787 0.092819 +0.4244723 0.5385787 0.092819 +0.4365675 0.5385787 0.092819 +0.4474232 0.5385787 0.092819 +0.45727 0.5385787 0.092819 +0.4662797 0.5385787 0.092819 +0.4745834 0.5385787 0.092819 +0.4822838 0.5385787 0.092819 +0.4894626 0.5385787 0.092819 +0.4961862 0.5385787 0.092819 +0.5025087 0.5385787 0.092819 +0.5084753 0.5385787 0.092819 +0.514124 0.5385787 0.092819 +0.519487 0.5385787 0.092819 +0.5245917 0.5385787 0.092819 +0.529462 0.5385787 0.092819 +0.5341183 0.5385787 0.092819 +0.5385787 0.5385787 0.092819 +0.5428591 0.5385787 0.092819 +0.5469733 0.5385787 0.092819 +0.5509339 0.5385787 0.092819 +0.5547519 0.5385787 0.092819 +0.5584371 0.5385787 0.092819 +0.5619986 0.5385787 0.092819 +0.5654443 0.5385787 0.092819 +0.5687816 0.5385787 0.092819 +0.092819 0.5428591 0.092819 +0.2262531 0.5428591 0.092819 +0.2875993 0.5428591 0.092819 +0.3262122 0.5428591 0.092819 +0.3544566 0.5428591 0.092819 +0.3767383 0.5428591 0.092819 +0.3951413 0.5428591 0.092819 +0.4108177 0.5428591 0.092819 +0.4244723 0.5428591 0.092819 +0.4365675 0.5428591 0.092819 +0.4474232 0.5428591 0.092819 +0.45727 0.5428591 0.092819 +0.4662797 0.5428591 0.092819 +0.4745834 0.5428591 0.092819 +0.4822838 0.5428591 0.092819 +0.4894626 0.5428591 0.092819 +0.4961862 0.5428591 0.092819 +0.5025087 0.5428591 0.092819 +0.5084753 0.5428591 0.092819 +0.514124 0.5428591 0.092819 +0.519487 0.5428591 0.092819 +0.5245917 0.5428591 0.092819 +0.529462 0.5428591 0.092819 +0.5341183 0.5428591 0.092819 +0.5385787 0.5428591 0.092819 +0.5428591 0.5428591 0.092819 +0.5469733 0.5428591 0.092819 +0.5509339 0.5428591 0.092819 +0.5547519 0.5428591 0.092819 +0.5584371 0.5428591 0.092819 +0.5619986 0.5428591 0.092819 +0.5654443 0.5428591 0.092819 +0.5687816 0.5428591 0.092819 +0.092819 0.5469733 0.092819 +0.2262531 0.5469733 0.092819 +0.2875993 0.5469733 0.092819 +0.3262122 0.5469733 0.092819 +0.3544566 0.5469733 0.092819 +0.3767383 0.5469733 0.092819 +0.3951413 0.5469733 0.092819 +0.4108177 0.5469733 0.092819 +0.4244723 0.5469733 0.092819 +0.4365675 0.5469733 0.092819 +0.4474232 0.5469733 0.092819 +0.45727 0.5469733 0.092819 +0.4662797 0.5469733 0.092819 +0.4745834 0.5469733 0.092819 +0.4822838 0.5469733 0.092819 +0.4894626 0.5469733 0.092819 +0.4961862 0.5469733 0.092819 +0.5025087 0.5469733 0.092819 +0.5084753 0.5469733 0.092819 +0.514124 0.5469733 0.092819 +0.519487 0.5469733 0.092819 +0.5245917 0.5469733 0.092819 +0.529462 0.5469733 0.092819 +0.5341183 0.5469733 0.092819 +0.5385787 0.5469733 0.092819 +0.5428591 0.5469733 0.092819 +0.5469733 0.5469733 0.092819 +0.5509339 0.5469733 0.092819 +0.5547519 0.5469733 0.092819 +0.5584371 0.5469733 0.092819 +0.5619986 0.5469733 0.092819 +0.5654443 0.5469733 0.092819 +0.5687816 0.5469733 0.092819 +0.092819 0.5509339 0.092819 +0.2262531 0.5509339 0.092819 +0.2875993 0.5509339 0.092819 +0.3262122 0.5509339 0.092819 +0.3544566 0.5509339 0.092819 +0.3767383 0.5509339 0.092819 +0.3951413 0.5509339 0.092819 +0.4108177 0.5509339 0.092819 +0.4244723 0.5509339 0.092819 +0.4365675 0.5509339 0.092819 +0.4474232 0.5509339 0.092819 +0.45727 0.5509339 0.092819 +0.4662797 0.5509339 0.092819 +0.4745834 0.5509339 0.092819 +0.4822838 0.5509339 0.092819 +0.4894626 0.5509339 0.092819 +0.4961862 0.5509339 0.092819 +0.5025087 0.5509339 0.092819 +0.5084753 0.5509339 0.092819 +0.514124 0.5509339 0.092819 +0.519487 0.5509339 0.092819 +0.5245917 0.5509339 0.092819 +0.529462 0.5509339 0.092819 +0.5341183 0.5509339 0.092819 +0.5385787 0.5509339 0.092819 +0.5428591 0.5509339 0.092819 +0.5469733 0.5509339 0.092819 +0.5509339 0.5509339 0.092819 +0.5547519 0.5509339 0.092819 +0.5584371 0.5509339 0.092819 +0.5619986 0.5509339 0.092819 +0.5654443 0.5509339 0.092819 +0.5687816 0.5509339 0.092819 +0.092819 0.5547519 0.092819 +0.2262531 0.5547519 0.092819 +0.2875993 0.5547519 0.092819 +0.3262122 0.5547519 0.092819 +0.3544566 0.5547519 0.092819 +0.3767383 0.5547519 0.092819 +0.3951413 0.5547519 0.092819 +0.4108177 0.5547519 0.092819 +0.4244723 0.5547519 0.092819 +0.4365675 0.5547519 0.092819 +0.4474232 0.5547519 0.092819 +0.45727 0.5547519 0.092819 +0.4662797 0.5547519 0.092819 +0.4745834 0.5547519 0.092819 +0.4822838 0.5547519 0.092819 +0.4894626 0.5547519 0.092819 +0.4961862 0.5547519 0.092819 +0.5025087 0.5547519 0.092819 +0.5084753 0.5547519 0.092819 +0.514124 0.5547519 0.092819 +0.519487 0.5547519 0.092819 +0.5245917 0.5547519 0.092819 +0.529462 0.5547519 0.092819 +0.5341183 0.5547519 0.092819 +0.5385787 0.5547519 0.092819 +0.5428591 0.5547519 0.092819 +0.5469733 0.5547519 0.092819 +0.5509339 0.5547519 0.092819 +0.5547519 0.5547519 0.092819 +0.5584371 0.5547519 0.092819 +0.5619986 0.5547519 0.092819 +0.5654443 0.5547519 0.092819 +0.5687816 0.5547519 0.092819 +0.092819 0.5584371 0.092819 +0.2262531 0.5584371 0.092819 +0.2875993 0.5584371 0.092819 +0.3262122 0.5584371 0.092819 +0.3544566 0.5584371 0.092819 +0.3767383 0.5584371 0.092819 +0.3951413 0.5584371 0.092819 +0.4108177 0.5584371 0.092819 +0.4244723 0.5584371 0.092819 +0.4365675 0.5584371 0.092819 +0.4474232 0.5584371 0.092819 +0.45727 0.5584371 0.092819 +0.4662797 0.5584371 0.092819 +0.4745834 0.5584371 0.092819 +0.4822838 0.5584371 0.092819 +0.4894626 0.5584371 0.092819 +0.4961862 0.5584371 0.092819 +0.5025087 0.5584371 0.092819 +0.5084753 0.5584371 0.092819 +0.514124 0.5584371 0.092819 +0.519487 0.5584371 0.092819 +0.5245917 0.5584371 0.092819 +0.529462 0.5584371 0.092819 +0.5341183 0.5584371 0.092819 +0.5385787 0.5584371 0.092819 +0.5428591 0.5584371 0.092819 +0.5469733 0.5584371 0.092819 +0.5509339 0.5584371 0.092819 +0.5547519 0.5584371 0.092819 +0.5584371 0.5584371 0.092819 +0.5619986 0.5584371 0.092819 +0.5654443 0.5584371 0.092819 +0.5687816 0.5584371 0.092819 +0.092819 0.5619986 0.092819 +0.2262531 0.5619986 0.092819 +0.2875993 0.5619986 0.092819 +0.3262122 0.5619986 0.092819 +0.3544566 0.5619986 0.092819 +0.3767383 0.5619986 0.092819 +0.3951413 0.5619986 0.092819 +0.4108177 0.5619986 0.092819 +0.4244723 0.5619986 0.092819 +0.4365675 0.5619986 0.092819 +0.4474232 0.5619986 0.092819 +0.45727 0.5619986 0.092819 +0.4662797 0.5619986 0.092819 +0.4745834 0.5619986 0.092819 +0.4822838 0.5619986 0.092819 +0.4894626 0.5619986 0.092819 +0.4961862 0.5619986 0.092819 +0.5025087 0.5619986 0.092819 +0.5084753 0.5619986 0.092819 +0.514124 0.5619986 0.092819 +0.519487 0.5619986 0.092819 +0.5245917 0.5619986 0.092819 +0.529462 0.5619986 0.092819 +0.5341183 0.5619986 0.092819 +0.5385787 0.5619986 0.092819 +0.5428591 0.5619986 0.092819 +0.5469733 0.5619986 0.092819 +0.5509339 0.5619986 0.092819 +0.5547519 0.5619986 0.092819 +0.5584371 0.5619986 0.092819 +0.5619986 0.5619986 0.092819 +0.5654443 0.5619986 0.092819 +0.5687816 0.5619986 0.092819 +0.092819 0.5654443 0.092819 +0.2262531 0.5654443 0.092819 +0.2875993 0.5654443 0.092819 +0.3262122 0.5654443 0.092819 +0.3544566 0.5654443 0.092819 +0.3767383 0.5654443 0.092819 +0.3951413 0.5654443 0.092819 +0.4108177 0.5654443 0.092819 +0.4244723 0.5654443 0.092819 +0.4365675 0.5654443 0.092819 +0.4474232 0.5654443 0.092819 +0.45727 0.5654443 0.092819 +0.4662797 0.5654443 0.092819 +0.4745834 0.5654443 0.092819 +0.4822838 0.5654443 0.092819 +0.4894626 0.5654443 0.092819 +0.4961862 0.5654443 0.092819 +0.5025087 0.5654443 0.092819 +0.5084753 0.5654443 0.092819 +0.514124 0.5654443 0.092819 +0.519487 0.5654443 0.092819 +0.5245917 0.5654443 0.092819 +0.529462 0.5654443 0.092819 +0.5341183 0.5654443 0.092819 +0.5385787 0.5654443 0.092819 +0.5428591 0.5654443 0.092819 +0.5469733 0.5654443 0.092819 +0.5509339 0.5654443 0.092819 +0.5547519 0.5654443 0.092819 +0.5584371 0.5654443 0.092819 +0.5619986 0.5654443 0.092819 +0.5654443 0.5654443 0.092819 +0.5687816 0.5654443 0.092819 +0.092819 0.5687816 0.092819 +0.2262531 0.5687816 0.092819 +0.2875993 0.5687816 0.092819 +0.3262122 0.5687816 0.092819 +0.3544566 0.5687816 0.092819 +0.3767383 0.5687816 0.092819 +0.3951413 0.5687816 0.092819 +0.4108177 0.5687816 0.092819 +0.4244723 0.5687816 0.092819 +0.4365675 0.5687816 0.092819 +0.4474232 0.5687816 0.092819 +0.45727 0.5687816 0.092819 +0.4662797 0.5687816 0.092819 +0.4745834 0.5687816 0.092819 +0.4822838 0.5687816 0.092819 +0.4894626 0.5687816 0.092819 +0.4961862 0.5687816 0.092819 +0.5025087 0.5687816 0.092819 +0.5084753 0.5687816 0.092819 +0.514124 0.5687816 0.092819 +0.519487 0.5687816 0.092819 +0.5245917 0.5687816 0.092819 +0.529462 0.5687816 0.092819 +0.5341183 0.5687816 0.092819 +0.5385787 0.5687816 0.092819 +0.5428591 0.5687816 0.092819 +0.5469733 0.5687816 0.092819 +0.5509339 0.5687816 0.092819 +0.5547519 0.5687816 0.092819 +0.5584371 0.5687816 0.092819 +0.5619986 0.5687816 0.092819 +0.5654443 0.5687816 0.092819 +0.5687816 0.5687816 0.092819 +0.092819 0.092819 0.2262531 +0.2262531 0.092819 0.2262531 +0.2875993 0.092819 0.2262531 +0.3262122 0.092819 0.2262531 +0.3544566 0.092819 0.2262531 +0.3767383 0.092819 0.2262531 +0.3951413 0.092819 0.2262531 +0.4108177 0.092819 0.2262531 +0.4244723 0.092819 0.2262531 +0.4365675 0.092819 0.2262531 +0.4474232 0.092819 0.2262531 +0.45727 0.092819 0.2262531 +0.4662797 0.092819 0.2262531 +0.4745834 0.092819 0.2262531 +0.4822838 0.092819 0.2262531 +0.4894626 0.092819 0.2262531 +0.4961862 0.092819 0.2262531 +0.5025087 0.092819 0.2262531 +0.5084753 0.092819 0.2262531 +0.514124 0.092819 0.2262531 +0.519487 0.092819 0.2262531 +0.5245917 0.092819 0.2262531 +0.529462 0.092819 0.2262531 +0.5341183 0.092819 0.2262531 +0.5385787 0.092819 0.2262531 +0.5428591 0.092819 0.2262531 +0.5469733 0.092819 0.2262531 +0.5509339 0.092819 0.2262531 +0.5547519 0.092819 0.2262531 +0.5584371 0.092819 0.2262531 +0.5619986 0.092819 0.2262531 +0.5654443 0.092819 0.2262531 +0.5687816 0.092819 0.2262531 +0.092819 0.2262531 0.2262531 +0.2262531 0.2262531 0.2262531 +0.2875993 0.2262531 0.2262531 +0.3262122 0.2262531 0.2262531 +0.3544566 0.2262531 0.2262531 +0.3767383 0.2262531 0.2262531 +0.3951413 0.2262531 0.2262531 +0.4108177 0.2262531 0.2262531 +0.4244723 0.2262531 0.2262531 +0.4365675 0.2262531 0.2262531 +0.4474232 0.2262531 0.2262531 +0.45727 0.2262531 0.2262531 +0.4662797 0.2262531 0.2262531 +0.4745834 0.2262531 0.2262531 +0.4822838 0.2262531 0.2262531 +0.4894626 0.2262531 0.2262531 +0.4961862 0.2262531 0.2262531 +0.5025087 0.2262531 0.2262531 +0.5084753 0.2262531 0.2262531 +0.514124 0.2262531 0.2262531 +0.519487 0.2262531 0.2262531 +0.5245917 0.2262531 0.2262531 +0.529462 0.2262531 0.2262531 +0.5341183 0.2262531 0.2262531 +0.5385787 0.2262531 0.2262531 +0.5428591 0.2262531 0.2262531 +0.5469733 0.2262531 0.2262531 +0.5509339 0.2262531 0.2262531 +0.5547519 0.2262531 0.2262531 +0.5584371 0.2262531 0.2262531 +0.5619986 0.2262531 0.2262531 +0.5654443 0.2262531 0.2262531 +0.5687816 0.2262531 0.2262531 +0.092819 0.2875993 0.2262531 +0.2262531 0.2875993 0.2262531 +0.2875993 0.2875993 0.2262531 +0.3262122 0.2875993 0.2262531 +0.3544566 0.2875993 0.2262531 +0.3767383 0.2875993 0.2262531 +0.3951413 0.2875993 0.2262531 +0.4108177 0.2875993 0.2262531 +0.4244723 0.2875993 0.2262531 +0.4365675 0.2875993 0.2262531 +0.4474232 0.2875993 0.2262531 +0.45727 0.2875993 0.2262531 +0.4662797 0.2875993 0.2262531 +0.4745834 0.2875993 0.2262531 +0.4822838 0.2875993 0.2262531 +0.4894626 0.2875993 0.2262531 +0.4961862 0.2875993 0.2262531 +0.5025087 0.2875993 0.2262531 +0.5084753 0.2875993 0.2262531 +0.514124 0.2875993 0.2262531 +0.519487 0.2875993 0.2262531 +0.5245917 0.2875993 0.2262531 +0.529462 0.2875993 0.2262531 +0.5341183 0.2875993 0.2262531 +0.5385787 0.2875993 0.2262531 +0.5428591 0.2875993 0.2262531 +0.5469733 0.2875993 0.2262531 +0.5509339 0.2875993 0.2262531 +0.5547519 0.2875993 0.2262531 +0.5584371 0.2875993 0.2262531 +0.5619986 0.2875993 0.2262531 +0.5654443 0.2875993 0.2262531 +0.5687816 0.2875993 0.2262531 +0.092819 0.3262122 0.2262531 +0.2262531 0.3262122 0.2262531 +0.2875993 0.3262122 0.2262531 +0.3262122 0.3262122 0.2262531 +0.3544566 0.3262122 0.2262531 +0.3767383 0.3262122 0.2262531 +0.3951413 0.3262122 0.2262531 +0.4108177 0.3262122 0.2262531 +0.4244723 0.3262122 0.2262531 +0.4365675 0.3262122 0.2262531 +0.4474232 0.3262122 0.2262531 +0.45727 0.3262122 0.2262531 +0.4662797 0.3262122 0.2262531 +0.4745834 0.3262122 0.2262531 +0.4822838 0.3262122 0.2262531 +0.4894626 0.3262122 0.2262531 +0.4961862 0.3262122 0.2262531 +0.5025087 0.3262122 0.2262531 +0.5084753 0.3262122 0.2262531 +0.514124 0.3262122 0.2262531 +0.519487 0.3262122 0.2262531 +0.5245917 0.3262122 0.2262531 +0.529462 0.3262122 0.2262531 +0.5341183 0.3262122 0.2262531 +0.5385787 0.3262122 0.2262531 +0.5428591 0.3262122 0.2262531 +0.5469733 0.3262122 0.2262531 +0.5509339 0.3262122 0.2262531 +0.5547519 0.3262122 0.2262531 +0.5584371 0.3262122 0.2262531 +0.5619986 0.3262122 0.2262531 +0.5654443 0.3262122 0.2262531 +0.5687816 0.3262122 0.2262531 +0.092819 0.3544566 0.2262531 +0.2262531 0.3544566 0.2262531 +0.2875993 0.3544566 0.2262531 +0.3262122 0.3544566 0.2262531 +0.3544566 0.3544566 0.2262531 +0.3767383 0.3544566 0.2262531 +0.3951413 0.3544566 0.2262531 +0.4108177 0.3544566 0.2262531 +0.4244723 0.3544566 0.2262531 +0.4365675 0.3544566 0.2262531 +0.4474232 0.3544566 0.2262531 +0.45727 0.3544566 0.2262531 +0.4662797 0.3544566 0.2262531 +0.4745834 0.3544566 0.2262531 +0.4822838 0.3544566 0.2262531 +0.4894626 0.3544566 0.2262531 +0.4961862 0.3544566 0.2262531 +0.5025087 0.3544566 0.2262531 +0.5084753 0.3544566 0.2262531 +0.514124 0.3544566 0.2262531 +0.519487 0.3544566 0.2262531 +0.5245917 0.3544566 0.2262531 +0.529462 0.3544566 0.2262531 +0.5341183 0.3544566 0.2262531 +0.5385787 0.3544566 0.2262531 +0.5428591 0.3544566 0.2262531 +0.5469733 0.3544566 0.2262531 +0.5509339 0.3544566 0.2262531 +0.5547519 0.3544566 0.2262531 +0.5584371 0.3544566 0.2262531 +0.5619986 0.3544566 0.2262531 +0.5654443 0.3544566 0.2262531 +0.5687816 0.3544566 0.2262531 +0.092819 0.3767383 0.2262531 +0.2262531 0.3767383 0.2262531 +0.2875993 0.3767383 0.2262531 +0.3262122 0.3767383 0.2262531 +0.3544566 0.3767383 0.2262531 +0.3767383 0.3767383 0.2262531 +0.3951413 0.3767383 0.2262531 +0.4108177 0.3767383 0.2262531 +0.4244723 0.3767383 0.2262531 +0.4365675 0.3767383 0.2262531 +0.4474232 0.3767383 0.2262531 +0.45727 0.3767383 0.2262531 +0.4662797 0.3767383 0.2262531 +0.4745834 0.3767383 0.2262531 +0.4822838 0.3767383 0.2262531 +0.4894626 0.3767383 0.2262531 +0.4961862 0.3767383 0.2262531 +0.5025087 0.3767383 0.2262531 +0.5084753 0.3767383 0.2262531 +0.514124 0.3767383 0.2262531 +0.519487 0.3767383 0.2262531 +0.5245917 0.3767383 0.2262531 +0.529462 0.3767383 0.2262531 +0.5341183 0.3767383 0.2262531 +0.5385787 0.3767383 0.2262531 +0.5428591 0.3767383 0.2262531 +0.5469733 0.3767383 0.2262531 +0.5509339 0.3767383 0.2262531 +0.5547519 0.3767383 0.2262531 +0.5584371 0.3767383 0.2262531 +0.5619986 0.3767383 0.2262531 +0.5654443 0.3767383 0.2262531 +0.5687816 0.3767383 0.2262531 +0.092819 0.3951413 0.2262531 +0.2262531 0.3951413 0.2262531 +0.2875993 0.3951413 0.2262531 +0.3262122 0.3951413 0.2262531 +0.3544566 0.3951413 0.2262531 +0.3767383 0.3951413 0.2262531 +0.3951413 0.3951413 0.2262531 +0.4108177 0.3951413 0.2262531 +0.4244723 0.3951413 0.2262531 +0.4365675 0.3951413 0.2262531 +0.4474232 0.3951413 0.2262531 +0.45727 0.3951413 0.2262531 +0.4662797 0.3951413 0.2262531 +0.4745834 0.3951413 0.2262531 +0.4822838 0.3951413 0.2262531 +0.4894626 0.3951413 0.2262531 +0.4961862 0.3951413 0.2262531 +0.5025087 0.3951413 0.2262531 +0.5084753 0.3951413 0.2262531 +0.514124 0.3951413 0.2262531 +0.519487 0.3951413 0.2262531 +0.5245917 0.3951413 0.2262531 +0.529462 0.3951413 0.2262531 +0.5341183 0.3951413 0.2262531 +0.5385787 0.3951413 0.2262531 +0.5428591 0.3951413 0.2262531 +0.5469733 0.3951413 0.2262531 +0.5509339 0.3951413 0.2262531 +0.5547519 0.3951413 0.2262531 +0.5584371 0.3951413 0.2262531 +0.5619986 0.3951413 0.2262531 +0.5654443 0.3951413 0.2262531 +0.5687816 0.3951413 0.2262531 +0.092819 0.4108177 0.2262531 +0.2262531 0.4108177 0.2262531 +0.2875993 0.4108177 0.2262531 +0.3262122 0.4108177 0.2262531 +0.3544566 0.4108177 0.2262531 +0.3767383 0.4108177 0.2262531 +0.3951413 0.4108177 0.2262531 +0.4108177 0.4108177 0.2262531 +0.4244723 0.4108177 0.2262531 +0.4365675 0.4108177 0.2262531 +0.4474232 0.4108177 0.2262531 +0.45727 0.4108177 0.2262531 +0.4662797 0.4108177 0.2262531 +0.4745834 0.4108177 0.2262531 +0.4822838 0.4108177 0.2262531 +0.4894626 0.4108177 0.2262531 +0.4961862 0.4108177 0.2262531 +0.5025087 0.4108177 0.2262531 +0.5084753 0.4108177 0.2262531 +0.514124 0.4108177 0.2262531 +0.519487 0.4108177 0.2262531 +0.5245917 0.4108177 0.2262531 +0.529462 0.4108177 0.2262531 +0.5341183 0.4108177 0.2262531 +0.5385787 0.4108177 0.2262531 +0.5428591 0.4108177 0.2262531 +0.5469733 0.4108177 0.2262531 +0.5509339 0.4108177 0.2262531 +0.5547519 0.4108177 0.2262531 +0.5584371 0.4108177 0.2262531 +0.5619986 0.4108177 0.2262531 +0.5654443 0.4108177 0.2262531 +0.5687816 0.4108177 0.2262531 +0.092819 0.4244723 0.2262531 +0.2262531 0.4244723 0.2262531 +0.2875993 0.4244723 0.2262531 +0.3262122 0.4244723 0.2262531 +0.3544566 0.4244723 0.2262531 +0.3767383 0.4244723 0.2262531 +0.3951413 0.4244723 0.2262531 +0.4108177 0.4244723 0.2262531 +0.4244723 0.4244723 0.2262531 +0.4365675 0.4244723 0.2262531 +0.4474232 0.4244723 0.2262531 +0.45727 0.4244723 0.2262531 +0.4662797 0.4244723 0.2262531 +0.4745834 0.4244723 0.2262531 +0.4822838 0.4244723 0.2262531 +0.4894626 0.4244723 0.2262531 +0.4961862 0.4244723 0.2262531 +0.5025087 0.4244723 0.2262531 +0.5084753 0.4244723 0.2262531 +0.514124 0.4244723 0.2262531 +0.519487 0.4244723 0.2262531 +0.5245917 0.4244723 0.2262531 +0.529462 0.4244723 0.2262531 +0.5341183 0.4244723 0.2262531 +0.5385787 0.4244723 0.2262531 +0.5428591 0.4244723 0.2262531 +0.5469733 0.4244723 0.2262531 +0.5509339 0.4244723 0.2262531 +0.5547519 0.4244723 0.2262531 +0.5584371 0.4244723 0.2262531 +0.5619986 0.4244723 0.2262531 +0.5654443 0.4244723 0.2262531 +0.5687816 0.4244723 0.2262531 +0.092819 0.4365675 0.2262531 +0.2262531 0.4365675 0.2262531 +0.2875993 0.4365675 0.2262531 +0.3262122 0.4365675 0.2262531 +0.3544566 0.4365675 0.2262531 +0.3767383 0.4365675 0.2262531 +0.3951413 0.4365675 0.2262531 +0.4108177 0.4365675 0.2262531 +0.4244723 0.4365675 0.2262531 +0.4365675 0.4365675 0.2262531 +0.4474232 0.4365675 0.2262531 +0.45727 0.4365675 0.2262531 +0.4662797 0.4365675 0.2262531 +0.4745834 0.4365675 0.2262531 +0.4822838 0.4365675 0.2262531 +0.4894626 0.4365675 0.2262531 +0.4961862 0.4365675 0.2262531 +0.5025087 0.4365675 0.2262531 +0.5084753 0.4365675 0.2262531 +0.514124 0.4365675 0.2262531 +0.519487 0.4365675 0.2262531 +0.5245917 0.4365675 0.2262531 +0.529462 0.4365675 0.2262531 +0.5341183 0.4365675 0.2262531 +0.5385787 0.4365675 0.2262531 +0.5428591 0.4365675 0.2262531 +0.5469733 0.4365675 0.2262531 +0.5509339 0.4365675 0.2262531 +0.5547519 0.4365675 0.2262531 +0.5584371 0.4365675 0.2262531 +0.5619986 0.4365675 0.2262531 +0.5654443 0.4365675 0.2262531 +0.5687816 0.4365675 0.2262531 +0.092819 0.4474232 0.2262531 +0.2262531 0.4474232 0.2262531 +0.2875993 0.4474232 0.2262531 +0.3262122 0.4474232 0.2262531 +0.3544566 0.4474232 0.2262531 +0.3767383 0.4474232 0.2262531 +0.3951413 0.4474232 0.2262531 +0.4108177 0.4474232 0.2262531 +0.4244723 0.4474232 0.2262531 +0.4365675 0.4474232 0.2262531 +0.4474232 0.4474232 0.2262531 +0.45727 0.4474232 0.2262531 +0.4662797 0.4474232 0.2262531 +0.4745834 0.4474232 0.2262531 +0.4822838 0.4474232 0.2262531 +0.4894626 0.4474232 0.2262531 +0.4961862 0.4474232 0.2262531 +0.5025087 0.4474232 0.2262531 +0.5084753 0.4474232 0.2262531 +0.514124 0.4474232 0.2262531 +0.519487 0.4474232 0.2262531 +0.5245917 0.4474232 0.2262531 +0.529462 0.4474232 0.2262531 +0.5341183 0.4474232 0.2262531 +0.5385787 0.4474232 0.2262531 +0.5428591 0.4474232 0.2262531 +0.5469733 0.4474232 0.2262531 +0.5509339 0.4474232 0.2262531 +0.5547519 0.4474232 0.2262531 +0.5584371 0.4474232 0.2262531 +0.5619986 0.4474232 0.2262531 +0.5654443 0.4474232 0.2262531 +0.5687816 0.4474232 0.2262531 +0.092819 0.45727 0.2262531 +0.2262531 0.45727 0.2262531 +0.2875993 0.45727 0.2262531 +0.3262122 0.45727 0.2262531 +0.3544566 0.45727 0.2262531 +0.3767383 0.45727 0.2262531 +0.3951413 0.45727 0.2262531 +0.4108177 0.45727 0.2262531 +0.4244723 0.45727 0.2262531 +0.4365675 0.45727 0.2262531 +0.4474232 0.45727 0.2262531 +0.45727 0.45727 0.2262531 +0.4662797 0.45727 0.2262531 +0.4745834 0.45727 0.2262531 +0.4822838 0.45727 0.2262531 +0.4894626 0.45727 0.2262531 +0.4961862 0.45727 0.2262531 +0.5025087 0.45727 0.2262531 +0.5084753 0.45727 0.2262531 +0.514124 0.45727 0.2262531 +0.519487 0.45727 0.2262531 +0.5245917 0.45727 0.2262531 +0.529462 0.45727 0.2262531 +0.5341183 0.45727 0.2262531 +0.5385787 0.45727 0.2262531 +0.5428591 0.45727 0.2262531 +0.5469733 0.45727 0.2262531 +0.5509339 0.45727 0.2262531 +0.5547519 0.45727 0.2262531 +0.5584371 0.45727 0.2262531 +0.5619986 0.45727 0.2262531 +0.5654443 0.45727 0.2262531 +0.5687816 0.45727 0.2262531 +0.092819 0.4662797 0.2262531 +0.2262531 0.4662797 0.2262531 +0.2875993 0.4662797 0.2262531 +0.3262122 0.4662797 0.2262531 +0.3544566 0.4662797 0.2262531 +0.3767383 0.4662797 0.2262531 +0.3951413 0.4662797 0.2262531 +0.4108177 0.4662797 0.2262531 +0.4244723 0.4662797 0.2262531 +0.4365675 0.4662797 0.2262531 +0.4474232 0.4662797 0.2262531 +0.45727 0.4662797 0.2262531 +0.4662797 0.4662797 0.2262531 +0.4745834 0.4662797 0.2262531 +0.4822838 0.4662797 0.2262531 +0.4894626 0.4662797 0.2262531 +0.4961862 0.4662797 0.2262531 +0.5025087 0.4662797 0.2262531 +0.5084753 0.4662797 0.2262531 +0.514124 0.4662797 0.2262531 +0.519487 0.4662797 0.2262531 +0.5245917 0.4662797 0.2262531 +0.529462 0.4662797 0.2262531 +0.5341183 0.4662797 0.2262531 +0.5385787 0.4662797 0.2262531 +0.5428591 0.4662797 0.2262531 +0.5469733 0.4662797 0.2262531 +0.5509339 0.4662797 0.2262531 +0.5547519 0.4662797 0.2262531 +0.5584371 0.4662797 0.2262531 +0.5619986 0.4662797 0.2262531 +0.5654443 0.4662797 0.2262531 +0.5687816 0.4662797 0.2262531 +0.092819 0.4745834 0.2262531 +0.2262531 0.4745834 0.2262531 +0.2875993 0.4745834 0.2262531 +0.3262122 0.4745834 0.2262531 +0.3544566 0.4745834 0.2262531 +0.3767383 0.4745834 0.2262531 +0.3951413 0.4745834 0.2262531 +0.4108177 0.4745834 0.2262531 +0.4244723 0.4745834 0.2262531 +0.4365675 0.4745834 0.2262531 +0.4474232 0.4745834 0.2262531 +0.45727 0.4745834 0.2262531 +0.4662797 0.4745834 0.2262531 +0.4745834 0.4745834 0.2262531 +0.4822838 0.4745834 0.2262531 +0.4894626 0.4745834 0.2262531 +0.4961862 0.4745834 0.2262531 +0.5025087 0.4745834 0.2262531 +0.5084753 0.4745834 0.2262531 +0.514124 0.4745834 0.2262531 +0.519487 0.4745834 0.2262531 +0.5245917 0.4745834 0.2262531 +0.529462 0.4745834 0.2262531 +0.5341183 0.4745834 0.2262531 +0.5385787 0.4745834 0.2262531 +0.5428591 0.4745834 0.2262531 +0.5469733 0.4745834 0.2262531 +0.5509339 0.4745834 0.2262531 +0.5547519 0.4745834 0.2262531 +0.5584371 0.4745834 0.2262531 +0.5619986 0.4745834 0.2262531 +0.5654443 0.4745834 0.2262531 +0.5687816 0.4745834 0.2262531 +0.092819 0.4822838 0.2262531 +0.2262531 0.4822838 0.2262531 +0.2875993 0.4822838 0.2262531 +0.3262122 0.4822838 0.2262531 +0.3544566 0.4822838 0.2262531 +0.3767383 0.4822838 0.2262531 +0.3951413 0.4822838 0.2262531 +0.4108177 0.4822838 0.2262531 +0.4244723 0.4822838 0.2262531 +0.4365675 0.4822838 0.2262531 +0.4474232 0.4822838 0.2262531 +0.45727 0.4822838 0.2262531 +0.4662797 0.4822838 0.2262531 +0.4745834 0.4822838 0.2262531 +0.4822838 0.4822838 0.2262531 +0.4894626 0.4822838 0.2262531 +0.4961862 0.4822838 0.2262531 +0.5025087 0.4822838 0.2262531 +0.5084753 0.4822838 0.2262531 +0.514124 0.4822838 0.2262531 +0.519487 0.4822838 0.2262531 +0.5245917 0.4822838 0.2262531 +0.529462 0.4822838 0.2262531 +0.5341183 0.4822838 0.2262531 +0.5385787 0.4822838 0.2262531 +0.5428591 0.4822838 0.2262531 +0.5469733 0.4822838 0.2262531 +0.5509339 0.4822838 0.2262531 +0.5547519 0.4822838 0.2262531 +0.5584371 0.4822838 0.2262531 +0.5619986 0.4822838 0.2262531 +0.5654443 0.4822838 0.2262531 +0.5687816 0.4822838 0.2262531 +0.092819 0.4894626 0.2262531 +0.2262531 0.4894626 0.2262531 +0.2875993 0.4894626 0.2262531 +0.3262122 0.4894626 0.2262531 +0.3544566 0.4894626 0.2262531 +0.3767383 0.4894626 0.2262531 +0.3951413 0.4894626 0.2262531 +0.4108177 0.4894626 0.2262531 +0.4244723 0.4894626 0.2262531 +0.4365675 0.4894626 0.2262531 +0.4474232 0.4894626 0.2262531 +0.45727 0.4894626 0.2262531 +0.4662797 0.4894626 0.2262531 +0.4745834 0.4894626 0.2262531 +0.4822838 0.4894626 0.2262531 +0.4894626 0.4894626 0.2262531 +0.4961862 0.4894626 0.2262531 +0.5025087 0.4894626 0.2262531 +0.5084753 0.4894626 0.2262531 +0.514124 0.4894626 0.2262531 +0.519487 0.4894626 0.2262531 +0.5245917 0.4894626 0.2262531 +0.529462 0.4894626 0.2262531 +0.5341183 0.4894626 0.2262531 +0.5385787 0.4894626 0.2262531 +0.5428591 0.4894626 0.2262531 +0.5469733 0.4894626 0.2262531 +0.5509339 0.4894626 0.2262531 +0.5547519 0.4894626 0.2262531 +0.5584371 0.4894626 0.2262531 +0.5619986 0.4894626 0.2262531 +0.5654443 0.4894626 0.2262531 +0.5687816 0.4894626 0.2262531 +0.092819 0.4961862 0.2262531 +0.2262531 0.4961862 0.2262531 +0.2875993 0.4961862 0.2262531 +0.3262122 0.4961862 0.2262531 +0.3544566 0.4961862 0.2262531 +0.3767383 0.4961862 0.2262531 +0.3951413 0.4961862 0.2262531 +0.4108177 0.4961862 0.2262531 +0.4244723 0.4961862 0.2262531 +0.4365675 0.4961862 0.2262531 +0.4474232 0.4961862 0.2262531 +0.45727 0.4961862 0.2262531 +0.4662797 0.4961862 0.2262531 +0.4745834 0.4961862 0.2262531 +0.4822838 0.4961862 0.2262531 +0.4894626 0.4961862 0.2262531 +0.4961862 0.4961862 0.2262531 +0.5025087 0.4961862 0.2262531 +0.5084753 0.4961862 0.2262531 +0.514124 0.4961862 0.2262531 +0.519487 0.4961862 0.2262531 +0.5245917 0.4961862 0.2262531 +0.529462 0.4961862 0.2262531 +0.5341183 0.4961862 0.2262531 +0.5385787 0.4961862 0.2262531 +0.5428591 0.4961862 0.2262531 +0.5469733 0.4961862 0.2262531 +0.5509339 0.4961862 0.2262531 +0.5547519 0.4961862 0.2262531 +0.5584371 0.4961862 0.2262531 +0.5619986 0.4961862 0.2262531 +0.5654443 0.4961862 0.2262531 +0.5687816 0.4961862 0.2262531 +0.092819 0.5025087 0.2262531 +0.2262531 0.5025087 0.2262531 +0.2875993 0.5025087 0.2262531 +0.3262122 0.5025087 0.2262531 +0.3544566 0.5025087 0.2262531 +0.3767383 0.5025087 0.2262531 +0.3951413 0.5025087 0.2262531 +0.4108177 0.5025087 0.2262531 +0.4244723 0.5025087 0.2262531 +0.4365675 0.5025087 0.2262531 +0.4474232 0.5025087 0.2262531 +0.45727 0.5025087 0.2262531 +0.4662797 0.5025087 0.2262531 +0.4745834 0.5025087 0.2262531 +0.4822838 0.5025087 0.2262531 +0.4894626 0.5025087 0.2262531 +0.4961862 0.5025087 0.2262531 +0.5025087 0.5025087 0.2262531 +0.5084753 0.5025087 0.2262531 +0.514124 0.5025087 0.2262531 +0.519487 0.5025087 0.2262531 +0.5245917 0.5025087 0.2262531 +0.529462 0.5025087 0.2262531 +0.5341183 0.5025087 0.2262531 +0.5385787 0.5025087 0.2262531 +0.5428591 0.5025087 0.2262531 +0.5469733 0.5025087 0.2262531 +0.5509339 0.5025087 0.2262531 +0.5547519 0.5025087 0.2262531 +0.5584371 0.5025087 0.2262531 +0.5619986 0.5025087 0.2262531 +0.5654443 0.5025087 0.2262531 +0.5687816 0.5025087 0.2262531 +0.092819 0.5084753 0.2262531 +0.2262531 0.5084753 0.2262531 +0.2875993 0.5084753 0.2262531 +0.3262122 0.5084753 0.2262531 +0.3544566 0.5084753 0.2262531 +0.3767383 0.5084753 0.2262531 +0.3951413 0.5084753 0.2262531 +0.4108177 0.5084753 0.2262531 +0.4244723 0.5084753 0.2262531 +0.4365675 0.5084753 0.2262531 +0.4474232 0.5084753 0.2262531 +0.45727 0.5084753 0.2262531 +0.4662797 0.5084753 0.2262531 +0.4745834 0.5084753 0.2262531 +0.4822838 0.5084753 0.2262531 +0.4894626 0.5084753 0.2262531 +0.4961862 0.5084753 0.2262531 +0.5025087 0.5084753 0.2262531 +0.5084753 0.5084753 0.2262531 +0.514124 0.5084753 0.2262531 +0.519487 0.5084753 0.2262531 +0.5245917 0.5084753 0.2262531 +0.529462 0.5084753 0.2262531 +0.5341183 0.5084753 0.2262531 +0.5385787 0.5084753 0.2262531 +0.5428591 0.5084753 0.2262531 +0.5469733 0.5084753 0.2262531 +0.5509339 0.5084753 0.2262531 +0.5547519 0.5084753 0.2262531 +0.5584371 0.5084753 0.2262531 +0.5619986 0.5084753 0.2262531 +0.5654443 0.5084753 0.2262531 +0.5687816 0.5084753 0.2262531 +0.092819 0.514124 0.2262531 +0.2262531 0.514124 0.2262531 +0.2875993 0.514124 0.2262531 +0.3262122 0.514124 0.2262531 +0.3544566 0.514124 0.2262531 +0.3767383 0.514124 0.2262531 +0.3951413 0.514124 0.2262531 +0.4108177 0.514124 0.2262531 +0.4244723 0.514124 0.2262531 +0.4365675 0.514124 0.2262531 +0.4474232 0.514124 0.2262531 +0.45727 0.514124 0.2262531 +0.4662797 0.514124 0.2262531 +0.4745834 0.514124 0.2262531 +0.4822838 0.514124 0.2262531 +0.4894626 0.514124 0.2262531 +0.4961862 0.514124 0.2262531 +0.5025087 0.514124 0.2262531 +0.5084753 0.514124 0.2262531 +0.514124 0.514124 0.2262531 +0.519487 0.514124 0.2262531 +0.5245917 0.514124 0.2262531 +0.529462 0.514124 0.2262531 +0.5341183 0.514124 0.2262531 +0.5385787 0.514124 0.2262531 +0.5428591 0.514124 0.2262531 +0.5469733 0.514124 0.2262531 +0.5509339 0.514124 0.2262531 +0.5547519 0.514124 0.2262531 +0.5584371 0.514124 0.2262531 +0.5619986 0.514124 0.2262531 +0.5654443 0.514124 0.2262531 +0.5687816 0.514124 0.2262531 +0.092819 0.519487 0.2262531 +0.2262531 0.519487 0.2262531 +0.2875993 0.519487 0.2262531 +0.3262122 0.519487 0.2262531 +0.3544566 0.519487 0.2262531 +0.3767383 0.519487 0.2262531 +0.3951413 0.519487 0.2262531 +0.4108177 0.519487 0.2262531 +0.4244723 0.519487 0.2262531 +0.4365675 0.519487 0.2262531 +0.4474232 0.519487 0.2262531 +0.45727 0.519487 0.2262531 +0.4662797 0.519487 0.2262531 +0.4745834 0.519487 0.2262531 +0.4822838 0.519487 0.2262531 +0.4894626 0.519487 0.2262531 +0.4961862 0.519487 0.2262531 +0.5025087 0.519487 0.2262531 +0.5084753 0.519487 0.2262531 +0.514124 0.519487 0.2262531 +0.519487 0.519487 0.2262531 +0.5245917 0.519487 0.2262531 +0.529462 0.519487 0.2262531 +0.5341183 0.519487 0.2262531 +0.5385787 0.519487 0.2262531 +0.5428591 0.519487 0.2262531 +0.5469733 0.519487 0.2262531 +0.5509339 0.519487 0.2262531 +0.5547519 0.519487 0.2262531 +0.5584371 0.519487 0.2262531 +0.5619986 0.519487 0.2262531 +0.5654443 0.519487 0.2262531 +0.5687816 0.519487 0.2262531 +0.092819 0.5245917 0.2262531 +0.2262531 0.5245917 0.2262531 +0.2875993 0.5245917 0.2262531 +0.3262122 0.5245917 0.2262531 +0.3544566 0.5245917 0.2262531 +0.3767383 0.5245917 0.2262531 +0.3951413 0.5245917 0.2262531 +0.4108177 0.5245917 0.2262531 +0.4244723 0.5245917 0.2262531 +0.4365675 0.5245917 0.2262531 +0.4474232 0.5245917 0.2262531 +0.45727 0.5245917 0.2262531 +0.4662797 0.5245917 0.2262531 +0.4745834 0.5245917 0.2262531 +0.4822838 0.5245917 0.2262531 +0.4894626 0.5245917 0.2262531 +0.4961862 0.5245917 0.2262531 +0.5025087 0.5245917 0.2262531 +0.5084753 0.5245917 0.2262531 +0.514124 0.5245917 0.2262531 +0.519487 0.5245917 0.2262531 +0.5245917 0.5245917 0.2262531 +0.529462 0.5245917 0.2262531 +0.5341183 0.5245917 0.2262531 +0.5385787 0.5245917 0.2262531 +0.5428591 0.5245917 0.2262531 +0.5469733 0.5245917 0.2262531 +0.5509339 0.5245917 0.2262531 +0.5547519 0.5245917 0.2262531 +0.5584371 0.5245917 0.2262531 +0.5619986 0.5245917 0.2262531 +0.5654443 0.5245917 0.2262531 +0.5687816 0.5245917 0.2262531 +0.092819 0.529462 0.2262531 +0.2262531 0.529462 0.2262531 +0.2875993 0.529462 0.2262531 +0.3262122 0.529462 0.2262531 +0.3544566 0.529462 0.2262531 +0.3767383 0.529462 0.2262531 +0.3951413 0.529462 0.2262531 +0.4108177 0.529462 0.2262531 +0.4244723 0.529462 0.2262531 +0.4365675 0.529462 0.2262531 +0.4474232 0.529462 0.2262531 +0.45727 0.529462 0.2262531 +0.4662797 0.529462 0.2262531 +0.4745834 0.529462 0.2262531 +0.4822838 0.529462 0.2262531 +0.4894626 0.529462 0.2262531 +0.4961862 0.529462 0.2262531 +0.5025087 0.529462 0.2262531 +0.5084753 0.529462 0.2262531 +0.514124 0.529462 0.2262531 +0.519487 0.529462 0.2262531 +0.5245917 0.529462 0.2262531 +0.529462 0.529462 0.2262531 +0.5341183 0.529462 0.2262531 +0.5385787 0.529462 0.2262531 +0.5428591 0.529462 0.2262531 +0.5469733 0.529462 0.2262531 +0.5509339 0.529462 0.2262531 +0.5547519 0.529462 0.2262531 +0.5584371 0.529462 0.2262531 +0.5619986 0.529462 0.2262531 +0.5654443 0.529462 0.2262531 +0.5687816 0.529462 0.2262531 +0.092819 0.5341183 0.2262531 +0.2262531 0.5341183 0.2262531 +0.2875993 0.5341183 0.2262531 +0.3262122 0.5341183 0.2262531 +0.3544566 0.5341183 0.2262531 +0.3767383 0.5341183 0.2262531 +0.3951413 0.5341183 0.2262531 +0.4108177 0.5341183 0.2262531 +0.4244723 0.5341183 0.2262531 +0.4365675 0.5341183 0.2262531 +0.4474232 0.5341183 0.2262531 +0.45727 0.5341183 0.2262531 +0.4662797 0.5341183 0.2262531 +0.4745834 0.5341183 0.2262531 +0.4822838 0.5341183 0.2262531 +0.4894626 0.5341183 0.2262531 +0.4961862 0.5341183 0.2262531 +0.5025087 0.5341183 0.2262531 +0.5084753 0.5341183 0.2262531 +0.514124 0.5341183 0.2262531 +0.519487 0.5341183 0.2262531 +0.5245917 0.5341183 0.2262531 +0.529462 0.5341183 0.2262531 +0.5341183 0.5341183 0.2262531 +0.5385787 0.5341183 0.2262531 +0.5428591 0.5341183 0.2262531 +0.5469733 0.5341183 0.2262531 +0.5509339 0.5341183 0.2262531 +0.5547519 0.5341183 0.2262531 +0.5584371 0.5341183 0.2262531 +0.5619986 0.5341183 0.2262531 +0.5654443 0.5341183 0.2262531 +0.5687816 0.5341183 0.2262531 +0.092819 0.5385787 0.2262531 +0.2262531 0.5385787 0.2262531 +0.2875993 0.5385787 0.2262531 +0.3262122 0.5385787 0.2262531 +0.3544566 0.5385787 0.2262531 +0.3767383 0.5385787 0.2262531 +0.3951413 0.5385787 0.2262531 +0.4108177 0.5385787 0.2262531 +0.4244723 0.5385787 0.2262531 +0.4365675 0.5385787 0.2262531 +0.4474232 0.5385787 0.2262531 +0.45727 0.5385787 0.2262531 +0.4662797 0.5385787 0.2262531 +0.4745834 0.5385787 0.2262531 +0.4822838 0.5385787 0.2262531 +0.4894626 0.5385787 0.2262531 +0.4961862 0.5385787 0.2262531 +0.5025087 0.5385787 0.2262531 +0.5084753 0.5385787 0.2262531 +0.514124 0.5385787 0.2262531 +0.519487 0.5385787 0.2262531 +0.5245917 0.5385787 0.2262531 +0.529462 0.5385787 0.2262531 +0.5341183 0.5385787 0.2262531 +0.5385787 0.5385787 0.2262531 +0.5428591 0.5385787 0.2262531 +0.5469733 0.5385787 0.2262531 +0.5509339 0.5385787 0.2262531 +0.5547519 0.5385787 0.2262531 +0.5584371 0.5385787 0.2262531 +0.5619986 0.5385787 0.2262531 +0.5654443 0.5385787 0.2262531 +0.5687816 0.5385787 0.2262531 +0.092819 0.5428591 0.2262531 +0.2262531 0.5428591 0.2262531 +0.2875993 0.5428591 0.2262531 +0.3262122 0.5428591 0.2262531 +0.3544566 0.5428591 0.2262531 +0.3767383 0.5428591 0.2262531 +0.3951413 0.5428591 0.2262531 +0.4108177 0.5428591 0.2262531 +0.4244723 0.5428591 0.2262531 +0.4365675 0.5428591 0.2262531 +0.4474232 0.5428591 0.2262531 +0.45727 0.5428591 0.2262531 +0.4662797 0.5428591 0.2262531 +0.4745834 0.5428591 0.2262531 +0.4822838 0.5428591 0.2262531 +0.4894626 0.5428591 0.2262531 +0.4961862 0.5428591 0.2262531 +0.5025087 0.5428591 0.2262531 +0.5084753 0.5428591 0.2262531 +0.514124 0.5428591 0.2262531 +0.519487 0.5428591 0.2262531 +0.5245917 0.5428591 0.2262531 +0.529462 0.5428591 0.2262531 +0.5341183 0.5428591 0.2262531 +0.5385787 0.5428591 0.2262531 +0.5428591 0.5428591 0.2262531 +0.5469733 0.5428591 0.2262531 +0.5509339 0.5428591 0.2262531 +0.5547519 0.5428591 0.2262531 +0.5584371 0.5428591 0.2262531 +0.5619986 0.5428591 0.2262531 +0.5654443 0.5428591 0.2262531 +0.5687816 0.5428591 0.2262531 +0.092819 0.5469733 0.2262531 +0.2262531 0.5469733 0.2262531 +0.2875993 0.5469733 0.2262531 +0.3262122 0.5469733 0.2262531 +0.3544566 0.5469733 0.2262531 +0.3767383 0.5469733 0.2262531 +0.3951413 0.5469733 0.2262531 +0.4108177 0.5469733 0.2262531 +0.4244723 0.5469733 0.2262531 +0.4365675 0.5469733 0.2262531 +0.4474232 0.5469733 0.2262531 +0.45727 0.5469733 0.2262531 +0.4662797 0.5469733 0.2262531 +0.4745834 0.5469733 0.2262531 +0.4822838 0.5469733 0.2262531 +0.4894626 0.5469733 0.2262531 +0.4961862 0.5469733 0.2262531 +0.5025087 0.5469733 0.2262531 +0.5084753 0.5469733 0.2262531 +0.514124 0.5469733 0.2262531 +0.519487 0.5469733 0.2262531 +0.5245917 0.5469733 0.2262531 +0.529462 0.5469733 0.2262531 +0.5341183 0.5469733 0.2262531 +0.5385787 0.5469733 0.2262531 +0.5428591 0.5469733 0.2262531 +0.5469733 0.5469733 0.2262531 +0.5509339 0.5469733 0.2262531 +0.5547519 0.5469733 0.2262531 +0.5584371 0.5469733 0.2262531 +0.5619986 0.5469733 0.2262531 +0.5654443 0.5469733 0.2262531 +0.5687816 0.5469733 0.2262531 +0.092819 0.5509339 0.2262531 +0.2262531 0.5509339 0.2262531 +0.2875993 0.5509339 0.2262531 +0.3262122 0.5509339 0.2262531 +0.3544566 0.5509339 0.2262531 +0.3767383 0.5509339 0.2262531 +0.3951413 0.5509339 0.2262531 +0.4108177 0.5509339 0.2262531 +0.4244723 0.5509339 0.2262531 +0.4365675 0.5509339 0.2262531 +0.4474232 0.5509339 0.2262531 +0.45727 0.5509339 0.2262531 +0.4662797 0.5509339 0.2262531 +0.4745834 0.5509339 0.2262531 +0.4822838 0.5509339 0.2262531 +0.4894626 0.5509339 0.2262531 +0.4961862 0.5509339 0.2262531 +0.5025087 0.5509339 0.2262531 +0.5084753 0.5509339 0.2262531 +0.514124 0.5509339 0.2262531 +0.519487 0.5509339 0.2262531 +0.5245917 0.5509339 0.2262531 +0.529462 0.5509339 0.2262531 +0.5341183 0.5509339 0.2262531 +0.5385787 0.5509339 0.2262531 +0.5428591 0.5509339 0.2262531 +0.5469733 0.5509339 0.2262531 +0.5509339 0.5509339 0.2262531 +0.5547519 0.5509339 0.2262531 +0.5584371 0.5509339 0.2262531 +0.5619986 0.5509339 0.2262531 +0.5654443 0.5509339 0.2262531 +0.5687816 0.5509339 0.2262531 +0.092819 0.5547519 0.2262531 +0.2262531 0.5547519 0.2262531 +0.2875993 0.5547519 0.2262531 +0.3262122 0.5547519 0.2262531 +0.3544566 0.5547519 0.2262531 +0.3767383 0.5547519 0.2262531 +0.3951413 0.5547519 0.2262531 +0.4108177 0.5547519 0.2262531 +0.4244723 0.5547519 0.2262531 +0.4365675 0.5547519 0.2262531 +0.4474232 0.5547519 0.2262531 +0.45727 0.5547519 0.2262531 +0.4662797 0.5547519 0.2262531 +0.4745834 0.5547519 0.2262531 +0.4822838 0.5547519 0.2262531 +0.4894626 0.5547519 0.2262531 +0.4961862 0.5547519 0.2262531 +0.5025087 0.5547519 0.2262531 +0.5084753 0.5547519 0.2262531 +0.514124 0.5547519 0.2262531 +0.519487 0.5547519 0.2262531 +0.5245917 0.5547519 0.2262531 +0.529462 0.5547519 0.2262531 +0.5341183 0.5547519 0.2262531 +0.5385787 0.5547519 0.2262531 +0.5428591 0.5547519 0.2262531 +0.5469733 0.5547519 0.2262531 +0.5509339 0.5547519 0.2262531 +0.5547519 0.5547519 0.2262531 +0.5584371 0.5547519 0.2262531 +0.5619986 0.5547519 0.2262531 +0.5654443 0.5547519 0.2262531 +0.5687816 0.5547519 0.2262531 +0.092819 0.5584371 0.2262531 +0.2262531 0.5584371 0.2262531 +0.2875993 0.5584371 0.2262531 +0.3262122 0.5584371 0.2262531 +0.3544566 0.5584371 0.2262531 +0.3767383 0.5584371 0.2262531 +0.3951413 0.5584371 0.2262531 +0.4108177 0.5584371 0.2262531 +0.4244723 0.5584371 0.2262531 +0.4365675 0.5584371 0.2262531 +0.4474232 0.5584371 0.2262531 +0.45727 0.5584371 0.2262531 +0.4662797 0.5584371 0.2262531 +0.4745834 0.5584371 0.2262531 +0.4822838 0.5584371 0.2262531 +0.4894626 0.5584371 0.2262531 +0.4961862 0.5584371 0.2262531 +0.5025087 0.5584371 0.2262531 +0.5084753 0.5584371 0.2262531 +0.514124 0.5584371 0.2262531 +0.519487 0.5584371 0.2262531 +0.5245917 0.5584371 0.2262531 +0.529462 0.5584371 0.2262531 +0.5341183 0.5584371 0.2262531 +0.5385787 0.5584371 0.2262531 +0.5428591 0.5584371 0.2262531 +0.5469733 0.5584371 0.2262531 +0.5509339 0.5584371 0.2262531 +0.5547519 0.5584371 0.2262531 +0.5584371 0.5584371 0.2262531 +0.5619986 0.5584371 0.2262531 +0.5654443 0.5584371 0.2262531 +0.5687816 0.5584371 0.2262531 +0.092819 0.5619986 0.2262531 +0.2262531 0.5619986 0.2262531 +0.2875993 0.5619986 0.2262531 +0.3262122 0.5619986 0.2262531 +0.3544566 0.5619986 0.2262531 +0.3767383 0.5619986 0.2262531 +0.3951413 0.5619986 0.2262531 +0.4108177 0.5619986 0.2262531 +0.4244723 0.5619986 0.2262531 +0.4365675 0.5619986 0.2262531 +0.4474232 0.5619986 0.2262531 +0.45727 0.5619986 0.2262531 +0.4662797 0.5619986 0.2262531 +0.4745834 0.5619986 0.2262531 +0.4822838 0.5619986 0.2262531 +0.4894626 0.5619986 0.2262531 +0.4961862 0.5619986 0.2262531 +0.5025087 0.5619986 0.2262531 +0.5084753 0.5619986 0.2262531 +0.514124 0.5619986 0.2262531 +0.519487 0.5619986 0.2262531 +0.5245917 0.5619986 0.2262531 +0.529462 0.5619986 0.2262531 +0.5341183 0.5619986 0.2262531 +0.5385787 0.5619986 0.2262531 +0.5428591 0.5619986 0.2262531 +0.5469733 0.5619986 0.2262531 +0.5509339 0.5619986 0.2262531 +0.5547519 0.5619986 0.2262531 +0.5584371 0.5619986 0.2262531 +0.5619986 0.5619986 0.2262531 +0.5654443 0.5619986 0.2262531 +0.5687816 0.5619986 0.2262531 +0.092819 0.5654443 0.2262531 +0.2262531 0.5654443 0.2262531 +0.2875993 0.5654443 0.2262531 +0.3262122 0.5654443 0.2262531 +0.3544566 0.5654443 0.2262531 +0.3767383 0.5654443 0.2262531 +0.3951413 0.5654443 0.2262531 +0.4108177 0.5654443 0.2262531 +0.4244723 0.5654443 0.2262531 +0.4365675 0.5654443 0.2262531 +0.4474232 0.5654443 0.2262531 +0.45727 0.5654443 0.2262531 +0.4662797 0.5654443 0.2262531 +0.4745834 0.5654443 0.2262531 +0.4822838 0.5654443 0.2262531 +0.4894626 0.5654443 0.2262531 +0.4961862 0.5654443 0.2262531 +0.5025087 0.5654443 0.2262531 +0.5084753 0.5654443 0.2262531 +0.514124 0.5654443 0.2262531 +0.519487 0.5654443 0.2262531 +0.5245917 0.5654443 0.2262531 +0.529462 0.5654443 0.2262531 +0.5341183 0.5654443 0.2262531 +0.5385787 0.5654443 0.2262531 +0.5428591 0.5654443 0.2262531 +0.5469733 0.5654443 0.2262531 +0.5509339 0.5654443 0.2262531 +0.5547519 0.5654443 0.2262531 +0.5584371 0.5654443 0.2262531 +0.5619986 0.5654443 0.2262531 +0.5654443 0.5654443 0.2262531 +0.5687816 0.5654443 0.2262531 +0.092819 0.5687816 0.2262531 +0.2262531 0.5687816 0.2262531 +0.2875993 0.5687816 0.2262531 +0.3262122 0.5687816 0.2262531 +0.3544566 0.5687816 0.2262531 +0.3767383 0.5687816 0.2262531 +0.3951413 0.5687816 0.2262531 +0.4108177 0.5687816 0.2262531 +0.4244723 0.5687816 0.2262531 +0.4365675 0.5687816 0.2262531 +0.4474232 0.5687816 0.2262531 +0.45727 0.5687816 0.2262531 +0.4662797 0.5687816 0.2262531 +0.4745834 0.5687816 0.2262531 +0.4822838 0.5687816 0.2262531 +0.4894626 0.5687816 0.2262531 +0.4961862 0.5687816 0.2262531 +0.5025087 0.5687816 0.2262531 +0.5084753 0.5687816 0.2262531 +0.514124 0.5687816 0.2262531 +0.519487 0.5687816 0.2262531 +0.5245917 0.5687816 0.2262531 +0.529462 0.5687816 0.2262531 +0.5341183 0.5687816 0.2262531 +0.5385787 0.5687816 0.2262531 +0.5428591 0.5687816 0.2262531 +0.5469733 0.5687816 0.2262531 +0.5509339 0.5687816 0.2262531 +0.5547519 0.5687816 0.2262531 +0.5584371 0.5687816 0.2262531 +0.5619986 0.5687816 0.2262531 +0.5654443 0.5687816 0.2262531 +0.5687816 0.5687816 0.2262531 +0.092819 0.092819 0.2875993 +0.2262531 0.092819 0.2875993 +0.2875993 0.092819 0.2875993 +0.3262122 0.092819 0.2875993 +0.3544566 0.092819 0.2875993 +0.3767383 0.092819 0.2875993 +0.3951413 0.092819 0.2875993 +0.4108177 0.092819 0.2875993 +0.4244723 0.092819 0.2875993 +0.4365675 0.092819 0.2875993 +0.4474232 0.092819 0.2875993 +0.45727 0.092819 0.2875993 +0.4662797 0.092819 0.2875993 +0.4745834 0.092819 0.2875993 +0.4822838 0.092819 0.2875993 +0.4894626 0.092819 0.2875993 +0.4961862 0.092819 0.2875993 +0.5025087 0.092819 0.2875993 +0.5084753 0.092819 0.2875993 +0.514124 0.092819 0.2875993 +0.519487 0.092819 0.2875993 +0.5245917 0.092819 0.2875993 +0.529462 0.092819 0.2875993 +0.5341183 0.092819 0.2875993 +0.5385787 0.092819 0.2875993 +0.5428591 0.092819 0.2875993 +0.5469733 0.092819 0.2875993 +0.5509339 0.092819 0.2875993 +0.5547519 0.092819 0.2875993 +0.5584371 0.092819 0.2875993 +0.5619986 0.092819 0.2875993 +0.5654443 0.092819 0.2875993 +0.5687816 0.092819 0.2875993 +0.092819 0.2262531 0.2875993 +0.2262531 0.2262531 0.2875993 +0.2875993 0.2262531 0.2875993 +0.3262122 0.2262531 0.2875993 +0.3544566 0.2262531 0.2875993 +0.3767383 0.2262531 0.2875993 +0.3951413 0.2262531 0.2875993 +0.4108177 0.2262531 0.2875993 +0.4244723 0.2262531 0.2875993 +0.4365675 0.2262531 0.2875993 +0.4474232 0.2262531 0.2875993 +0.45727 0.2262531 0.2875993 +0.4662797 0.2262531 0.2875993 +0.4745834 0.2262531 0.2875993 +0.4822838 0.2262531 0.2875993 +0.4894626 0.2262531 0.2875993 +0.4961862 0.2262531 0.2875993 +0.5025087 0.2262531 0.2875993 +0.5084753 0.2262531 0.2875993 +0.514124 0.2262531 0.2875993 +0.519487 0.2262531 0.2875993 +0.5245917 0.2262531 0.2875993 +0.529462 0.2262531 0.2875993 +0.5341183 0.2262531 0.2875993 +0.5385787 0.2262531 0.2875993 +0.5428591 0.2262531 0.2875993 +0.5469733 0.2262531 0.2875993 +0.5509339 0.2262531 0.2875993 +0.5547519 0.2262531 0.2875993 +0.5584371 0.2262531 0.2875993 +0.5619986 0.2262531 0.2875993 +0.5654443 0.2262531 0.2875993 +0.5687816 0.2262531 0.2875993 +0.092819 0.2875993 0.2875993 +0.2262531 0.2875993 0.2875993 +0.2875993 0.2875993 0.2875993 +0.3262122 0.2875993 0.2875993 +0.3544566 0.2875993 0.2875993 +0.3767383 0.2875993 0.2875993 +0.3951413 0.2875993 0.2875993 +0.4108177 0.2875993 0.2875993 +0.4244723 0.2875993 0.2875993 +0.4365675 0.2875993 0.2875993 +0.4474232 0.2875993 0.2875993 +0.45727 0.2875993 0.2875993 +0.4662797 0.2875993 0.2875993 +0.4745834 0.2875993 0.2875993 +0.4822838 0.2875993 0.2875993 +0.4894626 0.2875993 0.2875993 +0.4961862 0.2875993 0.2875993 +0.5025087 0.2875993 0.2875993 +0.5084753 0.2875993 0.2875993 +0.514124 0.2875993 0.2875993 +0.519487 0.2875993 0.2875993 +0.5245917 0.2875993 0.2875993 +0.529462 0.2875993 0.2875993 +0.5341183 0.2875993 0.2875993 +0.5385787 0.2875993 0.2875993 +0.5428591 0.2875993 0.2875993 +0.5469733 0.2875993 0.2875993 +0.5509339 0.2875993 0.2875993 +0.5547519 0.2875993 0.2875993 +0.5584371 0.2875993 0.2875993 +0.5619986 0.2875993 0.2875993 +0.5654443 0.2875993 0.2875993 +0.5687816 0.2875993 0.2875993 +0.092819 0.3262122 0.2875993 +0.2262531 0.3262122 0.2875993 +0.2875993 0.3262122 0.2875993 +0.3262122 0.3262122 0.2875993 +0.3544566 0.3262122 0.2875993 +0.3767383 0.3262122 0.2875993 +0.3951413 0.3262122 0.2875993 +0.4108177 0.3262122 0.2875993 +0.4244723 0.3262122 0.2875993 +0.4365675 0.3262122 0.2875993 +0.4474232 0.3262122 0.2875993 +0.45727 0.3262122 0.2875993 +0.4662797 0.3262122 0.2875993 +0.4745834 0.3262122 0.2875993 +0.4822838 0.3262122 0.2875993 +0.4894626 0.3262122 0.2875993 +0.4961862 0.3262122 0.2875993 +0.5025087 0.3262122 0.2875993 +0.5084753 0.3262122 0.2875993 +0.514124 0.3262122 0.2875993 +0.519487 0.3262122 0.2875993 +0.5245917 0.3262122 0.2875993 +0.529462 0.3262122 0.2875993 +0.5341183 0.3262122 0.2875993 +0.5385787 0.3262122 0.2875993 +0.5428591 0.3262122 0.2875993 +0.5469733 0.3262122 0.2875993 +0.5509339 0.3262122 0.2875993 +0.5547519 0.3262122 0.2875993 +0.5584371 0.3262122 0.2875993 +0.5619986 0.3262122 0.2875993 +0.5654443 0.3262122 0.2875993 +0.5687816 0.3262122 0.2875993 +0.092819 0.3544566 0.2875993 +0.2262531 0.3544566 0.2875993 +0.2875993 0.3544566 0.2875993 +0.3262122 0.3544566 0.2875993 +0.3544566 0.3544566 0.2875993 +0.3767383 0.3544566 0.2875993 +0.3951413 0.3544566 0.2875993 +0.4108177 0.3544566 0.2875993 +0.4244723 0.3544566 0.2875993 +0.4365675 0.3544566 0.2875993 +0.4474232 0.3544566 0.2875993 +0.45727 0.3544566 0.2875993 +0.4662797 0.3544566 0.2875993 +0.4745834 0.3544566 0.2875993 +0.4822838 0.3544566 0.2875993 +0.4894626 0.3544566 0.2875993 +0.4961862 0.3544566 0.2875993 +0.5025087 0.3544566 0.2875993 +0.5084753 0.3544566 0.2875993 +0.514124 0.3544566 0.2875993 +0.519487 0.3544566 0.2875993 +0.5245917 0.3544566 0.2875993 +0.529462 0.3544566 0.2875993 +0.5341183 0.3544566 0.2875993 +0.5385787 0.3544566 0.2875993 +0.5428591 0.3544566 0.2875993 +0.5469733 0.3544566 0.2875993 +0.5509339 0.3544566 0.2875993 +0.5547519 0.3544566 0.2875993 +0.5584371 0.3544566 0.2875993 +0.5619986 0.3544566 0.2875993 +0.5654443 0.3544566 0.2875993 +0.5687816 0.3544566 0.2875993 +0.092819 0.3767383 0.2875993 +0.2262531 0.3767383 0.2875993 +0.2875993 0.3767383 0.2875993 +0.3262122 0.3767383 0.2875993 +0.3544566 0.3767383 0.2875993 +0.3767383 0.3767383 0.2875993 +0.3951413 0.3767383 0.2875993 +0.4108177 0.3767383 0.2875993 +0.4244723 0.3767383 0.2875993 +0.4365675 0.3767383 0.2875993 +0.4474232 0.3767383 0.2875993 +0.45727 0.3767383 0.2875993 +0.4662797 0.3767383 0.2875993 +0.4745834 0.3767383 0.2875993 +0.4822838 0.3767383 0.2875993 +0.4894626 0.3767383 0.2875993 +0.4961862 0.3767383 0.2875993 +0.5025087 0.3767383 0.2875993 +0.5084753 0.3767383 0.2875993 +0.514124 0.3767383 0.2875993 +0.519487 0.3767383 0.2875993 +0.5245917 0.3767383 0.2875993 +0.529462 0.3767383 0.2875993 +0.5341183 0.3767383 0.2875993 +0.5385787 0.3767383 0.2875993 +0.5428591 0.3767383 0.2875993 +0.5469733 0.3767383 0.2875993 +0.5509339 0.3767383 0.2875993 +0.5547519 0.3767383 0.2875993 +0.5584371 0.3767383 0.2875993 +0.5619986 0.3767383 0.2875993 +0.5654443 0.3767383 0.2875993 +0.5687816 0.3767383 0.2875993 +0.092819 0.3951413 0.2875993 +0.2262531 0.3951413 0.2875993 +0.2875993 0.3951413 0.2875993 +0.3262122 0.3951413 0.2875993 +0.3544566 0.3951413 0.2875993 +0.3767383 0.3951413 0.2875993 +0.3951413 0.3951413 0.2875993 +0.4108177 0.3951413 0.2875993 +0.4244723 0.3951413 0.2875993 +0.4365675 0.3951413 0.2875993 +0.4474232 0.3951413 0.2875993 +0.45727 0.3951413 0.2875993 +0.4662797 0.3951413 0.2875993 +0.4745834 0.3951413 0.2875993 +0.4822838 0.3951413 0.2875993 +0.4894626 0.3951413 0.2875993 +0.4961862 0.3951413 0.2875993 +0.5025087 0.3951413 0.2875993 +0.5084753 0.3951413 0.2875993 +0.514124 0.3951413 0.2875993 +0.519487 0.3951413 0.2875993 +0.5245917 0.3951413 0.2875993 +0.529462 0.3951413 0.2875993 +0.5341183 0.3951413 0.2875993 +0.5385787 0.3951413 0.2875993 +0.5428591 0.3951413 0.2875993 +0.5469733 0.3951413 0.2875993 +0.5509339 0.3951413 0.2875993 +0.5547519 0.3951413 0.2875993 +0.5584371 0.3951413 0.2875993 +0.5619986 0.3951413 0.2875993 +0.5654443 0.3951413 0.2875993 +0.5687816 0.3951413 0.2875993 +0.092819 0.4108177 0.2875993 +0.2262531 0.4108177 0.2875993 +0.2875993 0.4108177 0.2875993 +0.3262122 0.4108177 0.2875993 +0.3544566 0.4108177 0.2875993 +0.3767383 0.4108177 0.2875993 +0.3951413 0.4108177 0.2875993 +0.4108177 0.4108177 0.2875993 +0.4244723 0.4108177 0.2875993 +0.4365675 0.4108177 0.2875993 +0.4474232 0.4108177 0.2875993 +0.45727 0.4108177 0.2875993 +0.4662797 0.4108177 0.2875993 +0.4745834 0.4108177 0.2875993 +0.4822838 0.4108177 0.2875993 +0.4894626 0.4108177 0.2875993 +0.4961862 0.4108177 0.2875993 +0.5025087 0.4108177 0.2875993 +0.5084753 0.4108177 0.2875993 +0.514124 0.4108177 0.2875993 +0.519487 0.4108177 0.2875993 +0.5245917 0.4108177 0.2875993 +0.529462 0.4108177 0.2875993 +0.5341183 0.4108177 0.2875993 +0.5385787 0.4108177 0.2875993 +0.5428591 0.4108177 0.2875993 +0.5469733 0.4108177 0.2875993 +0.5509339 0.4108177 0.2875993 +0.5547519 0.4108177 0.2875993 +0.5584371 0.4108177 0.2875993 +0.5619986 0.4108177 0.2875993 +0.5654443 0.4108177 0.2875993 +0.5687816 0.4108177 0.2875993 +0.092819 0.4244723 0.2875993 +0.2262531 0.4244723 0.2875993 +0.2875993 0.4244723 0.2875993 +0.3262122 0.4244723 0.2875993 +0.3544566 0.4244723 0.2875993 +0.3767383 0.4244723 0.2875993 +0.3951413 0.4244723 0.2875993 +0.4108177 0.4244723 0.2875993 +0.4244723 0.4244723 0.2875993 +0.4365675 0.4244723 0.2875993 +0.4474232 0.4244723 0.2875993 +0.45727 0.4244723 0.2875993 +0.4662797 0.4244723 0.2875993 +0.4745834 0.4244723 0.2875993 +0.4822838 0.4244723 0.2875993 +0.4894626 0.4244723 0.2875993 +0.4961862 0.4244723 0.2875993 +0.5025087 0.4244723 0.2875993 +0.5084753 0.4244723 0.2875993 +0.514124 0.4244723 0.2875993 +0.519487 0.4244723 0.2875993 +0.5245917 0.4244723 0.2875993 +0.529462 0.4244723 0.2875993 +0.5341183 0.4244723 0.2875993 +0.5385787 0.4244723 0.2875993 +0.5428591 0.4244723 0.2875993 +0.5469733 0.4244723 0.2875993 +0.5509339 0.4244723 0.2875993 +0.5547519 0.4244723 0.2875993 +0.5584371 0.4244723 0.2875993 +0.5619986 0.4244723 0.2875993 +0.5654443 0.4244723 0.2875993 +0.5687816 0.4244723 0.2875993 +0.092819 0.4365675 0.2875993 +0.2262531 0.4365675 0.2875993 +0.2875993 0.4365675 0.2875993 +0.3262122 0.4365675 0.2875993 +0.3544566 0.4365675 0.2875993 +0.3767383 0.4365675 0.2875993 +0.3951413 0.4365675 0.2875993 +0.4108177 0.4365675 0.2875993 +0.4244723 0.4365675 0.2875993 +0.4365675 0.4365675 0.2875993 +0.4474232 0.4365675 0.2875993 +0.45727 0.4365675 0.2875993 +0.4662797 0.4365675 0.2875993 +0.4745834 0.4365675 0.2875993 +0.4822838 0.4365675 0.2875993 +0.4894626 0.4365675 0.2875993 +0.4961862 0.4365675 0.2875993 +0.5025087 0.4365675 0.2875993 +0.5084753 0.4365675 0.2875993 +0.514124 0.4365675 0.2875993 +0.519487 0.4365675 0.2875993 +0.5245917 0.4365675 0.2875993 +0.529462 0.4365675 0.2875993 +0.5341183 0.4365675 0.2875993 +0.5385787 0.4365675 0.2875993 +0.5428591 0.4365675 0.2875993 +0.5469733 0.4365675 0.2875993 +0.5509339 0.4365675 0.2875993 +0.5547519 0.4365675 0.2875993 +0.5584371 0.4365675 0.2875993 +0.5619986 0.4365675 0.2875993 +0.5654443 0.4365675 0.2875993 +0.5687816 0.4365675 0.2875993 +0.092819 0.4474232 0.2875993 +0.2262531 0.4474232 0.2875993 +0.2875993 0.4474232 0.2875993 +0.3262122 0.4474232 0.2875993 +0.3544566 0.4474232 0.2875993 +0.3767383 0.4474232 0.2875993 +0.3951413 0.4474232 0.2875993 +0.4108177 0.4474232 0.2875993 +0.4244723 0.4474232 0.2875993 +0.4365675 0.4474232 0.2875993 +0.4474232 0.4474232 0.2875993 +0.45727 0.4474232 0.2875993 +0.4662797 0.4474232 0.2875993 +0.4745834 0.4474232 0.2875993 +0.4822838 0.4474232 0.2875993 +0.4894626 0.4474232 0.2875993 +0.4961862 0.4474232 0.2875993 +0.5025087 0.4474232 0.2875993 +0.5084753 0.4474232 0.2875993 +0.514124 0.4474232 0.2875993 +0.519487 0.4474232 0.2875993 +0.5245917 0.4474232 0.2875993 +0.529462 0.4474232 0.2875993 +0.5341183 0.4474232 0.2875993 +0.5385787 0.4474232 0.2875993 +0.5428591 0.4474232 0.2875993 +0.5469733 0.4474232 0.2875993 +0.5509339 0.4474232 0.2875993 +0.5547519 0.4474232 0.2875993 +0.5584371 0.4474232 0.2875993 +0.5619986 0.4474232 0.2875993 +0.5654443 0.4474232 0.2875993 +0.5687816 0.4474232 0.2875993 +0.092819 0.45727 0.2875993 +0.2262531 0.45727 0.2875993 +0.2875993 0.45727 0.2875993 +0.3262122 0.45727 0.2875993 +0.3544566 0.45727 0.2875993 +0.3767383 0.45727 0.2875993 +0.3951413 0.45727 0.2875993 +0.4108177 0.45727 0.2875993 +0.4244723 0.45727 0.2875993 +0.4365675 0.45727 0.2875993 +0.4474232 0.45727 0.2875993 +0.45727 0.45727 0.2875993 +0.4662797 0.45727 0.2875993 +0.4745834 0.45727 0.2875993 +0.4822838 0.45727 0.2875993 +0.4894626 0.45727 0.2875993 +0.4961862 0.45727 0.2875993 +0.5025087 0.45727 0.2875993 +0.5084753 0.45727 0.2875993 +0.514124 0.45727 0.2875993 +0.519487 0.45727 0.2875993 +0.5245917 0.45727 0.2875993 +0.529462 0.45727 0.2875993 +0.5341183 0.45727 0.2875993 +0.5385787 0.45727 0.2875993 +0.5428591 0.45727 0.2875993 +0.5469733 0.45727 0.2875993 +0.5509339 0.45727 0.2875993 +0.5547519 0.45727 0.2875993 +0.5584371 0.45727 0.2875993 +0.5619986 0.45727 0.2875993 +0.5654443 0.45727 0.2875993 +0.5687816 0.45727 0.2875993 +0.092819 0.4662797 0.2875993 +0.2262531 0.4662797 0.2875993 +0.2875993 0.4662797 0.2875993 +0.3262122 0.4662797 0.2875993 +0.3544566 0.4662797 0.2875993 +0.3767383 0.4662797 0.2875993 +0.3951413 0.4662797 0.2875993 +0.4108177 0.4662797 0.2875993 +0.4244723 0.4662797 0.2875993 +0.4365675 0.4662797 0.2875993 +0.4474232 0.4662797 0.2875993 +0.45727 0.4662797 0.2875993 +0.4662797 0.4662797 0.2875993 +0.4745834 0.4662797 0.2875993 +0.4822838 0.4662797 0.2875993 +0.4894626 0.4662797 0.2875993 +0.4961862 0.4662797 0.2875993 +0.5025087 0.4662797 0.2875993 +0.5084753 0.4662797 0.2875993 +0.514124 0.4662797 0.2875993 +0.519487 0.4662797 0.2875993 +0.5245917 0.4662797 0.2875993 +0.529462 0.4662797 0.2875993 +0.5341183 0.4662797 0.2875993 +0.5385787 0.4662797 0.2875993 +0.5428591 0.4662797 0.2875993 +0.5469733 0.4662797 0.2875993 +0.5509339 0.4662797 0.2875993 +0.5547519 0.4662797 0.2875993 +0.5584371 0.4662797 0.2875993 +0.5619986 0.4662797 0.2875993 +0.5654443 0.4662797 0.2875993 +0.5687816 0.4662797 0.2875993 +0.092819 0.4745834 0.2875993 +0.2262531 0.4745834 0.2875993 +0.2875993 0.4745834 0.2875993 +0.3262122 0.4745834 0.2875993 +0.3544566 0.4745834 0.2875993 +0.3767383 0.4745834 0.2875993 +0.3951413 0.4745834 0.2875993 +0.4108177 0.4745834 0.2875993 +0.4244723 0.4745834 0.2875993 +0.4365675 0.4745834 0.2875993 +0.4474232 0.4745834 0.2875993 +0.45727 0.4745834 0.2875993 +0.4662797 0.4745834 0.2875993 +0.4745834 0.4745834 0.2875993 +0.4822838 0.4745834 0.2875993 +0.4894626 0.4745834 0.2875993 +0.4961862 0.4745834 0.2875993 +0.5025087 0.4745834 0.2875993 +0.5084753 0.4745834 0.2875993 +0.514124 0.4745834 0.2875993 +0.519487 0.4745834 0.2875993 +0.5245917 0.4745834 0.2875993 +0.529462 0.4745834 0.2875993 +0.5341183 0.4745834 0.2875993 +0.5385787 0.4745834 0.2875993 +0.5428591 0.4745834 0.2875993 +0.5469733 0.4745834 0.2875993 +0.5509339 0.4745834 0.2875993 +0.5547519 0.4745834 0.2875993 +0.5584371 0.4745834 0.2875993 +0.5619986 0.4745834 0.2875993 +0.5654443 0.4745834 0.2875993 +0.5687816 0.4745834 0.2875993 +0.092819 0.4822838 0.2875993 +0.2262531 0.4822838 0.2875993 +0.2875993 0.4822838 0.2875993 +0.3262122 0.4822838 0.2875993 +0.3544566 0.4822838 0.2875993 +0.3767383 0.4822838 0.2875993 +0.3951413 0.4822838 0.2875993 +0.4108177 0.4822838 0.2875993 +0.4244723 0.4822838 0.2875993 +0.4365675 0.4822838 0.2875993 +0.4474232 0.4822838 0.2875993 +0.45727 0.4822838 0.2875993 +0.4662797 0.4822838 0.2875993 +0.4745834 0.4822838 0.2875993 +0.4822838 0.4822838 0.2875993 +0.4894626 0.4822838 0.2875993 +0.4961862 0.4822838 0.2875993 +0.5025087 0.4822838 0.2875993 +0.5084753 0.4822838 0.2875993 +0.514124 0.4822838 0.2875993 +0.519487 0.4822838 0.2875993 +0.5245917 0.4822838 0.2875993 +0.529462 0.4822838 0.2875993 +0.5341183 0.4822838 0.2875993 +0.5385787 0.4822838 0.2875993 +0.5428591 0.4822838 0.2875993 +0.5469733 0.4822838 0.2875993 +0.5509339 0.4822838 0.2875993 +0.5547519 0.4822838 0.2875993 +0.5584371 0.4822838 0.2875993 +0.5619986 0.4822838 0.2875993 +0.5654443 0.4822838 0.2875993 +0.5687816 0.4822838 0.2875993 +0.092819 0.4894626 0.2875993 +0.2262531 0.4894626 0.2875993 +0.2875993 0.4894626 0.2875993 +0.3262122 0.4894626 0.2875993 +0.3544566 0.4894626 0.2875993 +0.3767383 0.4894626 0.2875993 +0.3951413 0.4894626 0.2875993 +0.4108177 0.4894626 0.2875993 +0.4244723 0.4894626 0.2875993 +0.4365675 0.4894626 0.2875993 +0.4474232 0.4894626 0.2875993 +0.45727 0.4894626 0.2875993 +0.4662797 0.4894626 0.2875993 +0.4745834 0.4894626 0.2875993 +0.4822838 0.4894626 0.2875993 +0.4894626 0.4894626 0.2875993 +0.4961862 0.4894626 0.2875993 +0.5025087 0.4894626 0.2875993 +0.5084753 0.4894626 0.2875993 +0.514124 0.4894626 0.2875993 +0.519487 0.4894626 0.2875993 +0.5245917 0.4894626 0.2875993 +0.529462 0.4894626 0.2875993 +0.5341183 0.4894626 0.2875993 +0.5385787 0.4894626 0.2875993 +0.5428591 0.4894626 0.2875993 +0.5469733 0.4894626 0.2875993 +0.5509339 0.4894626 0.2875993 +0.5547519 0.4894626 0.2875993 +0.5584371 0.4894626 0.2875993 +0.5619986 0.4894626 0.2875993 +0.5654443 0.4894626 0.2875993 +0.5687816 0.4894626 0.2875993 +0.092819 0.4961862 0.2875993 +0.2262531 0.4961862 0.2875993 +0.2875993 0.4961862 0.2875993 +0.3262122 0.4961862 0.2875993 +0.3544566 0.4961862 0.2875993 +0.3767383 0.4961862 0.2875993 +0.3951413 0.4961862 0.2875993 +0.4108177 0.4961862 0.2875993 +0.4244723 0.4961862 0.2875993 +0.4365675 0.4961862 0.2875993 +0.4474232 0.4961862 0.2875993 +0.45727 0.4961862 0.2875993 +0.4662797 0.4961862 0.2875993 +0.4745834 0.4961862 0.2875993 +0.4822838 0.4961862 0.2875993 +0.4894626 0.4961862 0.2875993 +0.4961862 0.4961862 0.2875993 +0.5025087 0.4961862 0.2875993 +0.5084753 0.4961862 0.2875993 +0.514124 0.4961862 0.2875993 +0.519487 0.4961862 0.2875993 +0.5245917 0.4961862 0.2875993 +0.529462 0.4961862 0.2875993 +0.5341183 0.4961862 0.2875993 +0.5385787 0.4961862 0.2875993 +0.5428591 0.4961862 0.2875993 +0.5469733 0.4961862 0.2875993 +0.5509339 0.4961862 0.2875993 +0.5547519 0.4961862 0.2875993 +0.5584371 0.4961862 0.2875993 +0.5619986 0.4961862 0.2875993 +0.5654443 0.4961862 0.2875993 +0.5687816 0.4961862 0.2875993 +0.092819 0.5025087 0.2875993 +0.2262531 0.5025087 0.2875993 +0.2875993 0.5025087 0.2875993 +0.3262122 0.5025087 0.2875993 +0.3544566 0.5025087 0.2875993 +0.3767383 0.5025087 0.2875993 +0.3951413 0.5025087 0.2875993 +0.4108177 0.5025087 0.2875993 +0.4244723 0.5025087 0.2875993 +0.4365675 0.5025087 0.2875993 +0.4474232 0.5025087 0.2875993 +0.45727 0.5025087 0.2875993 +0.4662797 0.5025087 0.2875993 +0.4745834 0.5025087 0.2875993 +0.4822838 0.5025087 0.2875993 +0.4894626 0.5025087 0.2875993 +0.4961862 0.5025087 0.2875993 +0.5025087 0.5025087 0.2875993 +0.5084753 0.5025087 0.2875993 +0.514124 0.5025087 0.2875993 +0.519487 0.5025087 0.2875993 +0.5245917 0.5025087 0.2875993 +0.529462 0.5025087 0.2875993 +0.5341183 0.5025087 0.2875993 +0.5385787 0.5025087 0.2875993 +0.5428591 0.5025087 0.2875993 +0.5469733 0.5025087 0.2875993 +0.5509339 0.5025087 0.2875993 +0.5547519 0.5025087 0.2875993 +0.5584371 0.5025087 0.2875993 +0.5619986 0.5025087 0.2875993 +0.5654443 0.5025087 0.2875993 +0.5687816 0.5025087 0.2875993 +0.092819 0.5084753 0.2875993 +0.2262531 0.5084753 0.2875993 +0.2875993 0.5084753 0.2875993 +0.3262122 0.5084753 0.2875993 +0.3544566 0.5084753 0.2875993 +0.3767383 0.5084753 0.2875993 +0.3951413 0.5084753 0.2875993 +0.4108177 0.5084753 0.2875993 +0.4244723 0.5084753 0.2875993 +0.4365675 0.5084753 0.2875993 +0.4474232 0.5084753 0.2875993 +0.45727 0.5084753 0.2875993 +0.4662797 0.5084753 0.2875993 +0.4745834 0.5084753 0.2875993 +0.4822838 0.5084753 0.2875993 +0.4894626 0.5084753 0.2875993 +0.4961862 0.5084753 0.2875993 +0.5025087 0.5084753 0.2875993 +0.5084753 0.5084753 0.2875993 +0.514124 0.5084753 0.2875993 +0.519487 0.5084753 0.2875993 +0.5245917 0.5084753 0.2875993 +0.529462 0.5084753 0.2875993 +0.5341183 0.5084753 0.2875993 +0.5385787 0.5084753 0.2875993 +0.5428591 0.5084753 0.2875993 +0.5469733 0.5084753 0.2875993 +0.5509339 0.5084753 0.2875993 +0.5547519 0.5084753 0.2875993 +0.5584371 0.5084753 0.2875993 +0.5619986 0.5084753 0.2875993 +0.5654443 0.5084753 0.2875993 +0.5687816 0.5084753 0.2875993 +0.092819 0.514124 0.2875993 +0.2262531 0.514124 0.2875993 +0.2875993 0.514124 0.2875993 +0.3262122 0.514124 0.2875993 +0.3544566 0.514124 0.2875993 +0.3767383 0.514124 0.2875993 +0.3951413 0.514124 0.2875993 +0.4108177 0.514124 0.2875993 +0.4244723 0.514124 0.2875993 +0.4365675 0.514124 0.2875993 +0.4474232 0.514124 0.2875993 +0.45727 0.514124 0.2875993 +0.4662797 0.514124 0.2875993 +0.4745834 0.514124 0.2875993 +0.4822838 0.514124 0.2875993 +0.4894626 0.514124 0.2875993 +0.4961862 0.514124 0.2875993 +0.5025087 0.514124 0.2875993 +0.5084753 0.514124 0.2875993 +0.514124 0.514124 0.2875993 +0.519487 0.514124 0.2875993 +0.5245917 0.514124 0.2875993 +0.529462 0.514124 0.2875993 +0.5341183 0.514124 0.2875993 +0.5385787 0.514124 0.2875993 +0.5428591 0.514124 0.2875993 +0.5469733 0.514124 0.2875993 +0.5509339 0.514124 0.2875993 +0.5547519 0.514124 0.2875993 +0.5584371 0.514124 0.2875993 +0.5619986 0.514124 0.2875993 +0.5654443 0.514124 0.2875993 +0.5687816 0.514124 0.2875993 +0.092819 0.519487 0.2875993 +0.2262531 0.519487 0.2875993 +0.2875993 0.519487 0.2875993 +0.3262122 0.519487 0.2875993 +0.3544566 0.519487 0.2875993 +0.3767383 0.519487 0.2875993 +0.3951413 0.519487 0.2875993 +0.4108177 0.519487 0.2875993 +0.4244723 0.519487 0.2875993 +0.4365675 0.519487 0.2875993 +0.4474232 0.519487 0.2875993 +0.45727 0.519487 0.2875993 +0.4662797 0.519487 0.2875993 +0.4745834 0.519487 0.2875993 +0.4822838 0.519487 0.2875993 +0.4894626 0.519487 0.2875993 +0.4961862 0.519487 0.2875993 +0.5025087 0.519487 0.2875993 +0.5084753 0.519487 0.2875993 +0.514124 0.519487 0.2875993 +0.519487 0.519487 0.2875993 +0.5245917 0.519487 0.2875993 +0.529462 0.519487 0.2875993 +0.5341183 0.519487 0.2875993 +0.5385787 0.519487 0.2875993 +0.5428591 0.519487 0.2875993 +0.5469733 0.519487 0.2875993 +0.5509339 0.519487 0.2875993 +0.5547519 0.519487 0.2875993 +0.5584371 0.519487 0.2875993 +0.5619986 0.519487 0.2875993 +0.5654443 0.519487 0.2875993 +0.5687816 0.519487 0.2875993 +0.092819 0.5245917 0.2875993 +0.2262531 0.5245917 0.2875993 +0.2875993 0.5245917 0.2875993 +0.3262122 0.5245917 0.2875993 +0.3544566 0.5245917 0.2875993 +0.3767383 0.5245917 0.2875993 +0.3951413 0.5245917 0.2875993 +0.4108177 0.5245917 0.2875993 +0.4244723 0.5245917 0.2875993 +0.4365675 0.5245917 0.2875993 +0.4474232 0.5245917 0.2875993 +0.45727 0.5245917 0.2875993 +0.4662797 0.5245917 0.2875993 +0.4745834 0.5245917 0.2875993 +0.4822838 0.5245917 0.2875993 +0.4894626 0.5245917 0.2875993 +0.4961862 0.5245917 0.2875993 +0.5025087 0.5245917 0.2875993 +0.5084753 0.5245917 0.2875993 +0.514124 0.5245917 0.2875993 +0.519487 0.5245917 0.2875993 +0.5245917 0.5245917 0.2875993 +0.529462 0.5245917 0.2875993 +0.5341183 0.5245917 0.2875993 +0.5385787 0.5245917 0.2875993 +0.5428591 0.5245917 0.2875993 +0.5469733 0.5245917 0.2875993 +0.5509339 0.5245917 0.2875993 +0.5547519 0.5245917 0.2875993 +0.5584371 0.5245917 0.2875993 +0.5619986 0.5245917 0.2875993 +0.5654443 0.5245917 0.2875993 +0.5687816 0.5245917 0.2875993 +0.092819 0.529462 0.2875993 +0.2262531 0.529462 0.2875993 +0.2875993 0.529462 0.2875993 +0.3262122 0.529462 0.2875993 +0.3544566 0.529462 0.2875993 +0.3767383 0.529462 0.2875993 +0.3951413 0.529462 0.2875993 +0.4108177 0.529462 0.2875993 +0.4244723 0.529462 0.2875993 +0.4365675 0.529462 0.2875993 +0.4474232 0.529462 0.2875993 +0.45727 0.529462 0.2875993 +0.4662797 0.529462 0.2875993 +0.4745834 0.529462 0.2875993 +0.4822838 0.529462 0.2875993 +0.4894626 0.529462 0.2875993 +0.4961862 0.529462 0.2875993 +0.5025087 0.529462 0.2875993 +0.5084753 0.529462 0.2875993 +0.514124 0.529462 0.2875993 +0.519487 0.529462 0.2875993 +0.5245917 0.529462 0.2875993 +0.529462 0.529462 0.2875993 +0.5341183 0.529462 0.2875993 +0.5385787 0.529462 0.2875993 +0.5428591 0.529462 0.2875993 +0.5469733 0.529462 0.2875993 +0.5509339 0.529462 0.2875993 +0.5547519 0.529462 0.2875993 +0.5584371 0.529462 0.2875993 +0.5619986 0.529462 0.2875993 +0.5654443 0.529462 0.2875993 +0.5687816 0.529462 0.2875993 +0.092819 0.5341183 0.2875993 +0.2262531 0.5341183 0.2875993 +0.2875993 0.5341183 0.2875993 +0.3262122 0.5341183 0.2875993 +0.3544566 0.5341183 0.2875993 +0.3767383 0.5341183 0.2875993 +0.3951413 0.5341183 0.2875993 +0.4108177 0.5341183 0.2875993 +0.4244723 0.5341183 0.2875993 +0.4365675 0.5341183 0.2875993 +0.4474232 0.5341183 0.2875993 +0.45727 0.5341183 0.2875993 +0.4662797 0.5341183 0.2875993 +0.4745834 0.5341183 0.2875993 +0.4822838 0.5341183 0.2875993 +0.4894626 0.5341183 0.2875993 +0.4961862 0.5341183 0.2875993 +0.5025087 0.5341183 0.2875993 +0.5084753 0.5341183 0.2875993 +0.514124 0.5341183 0.2875993 +0.519487 0.5341183 0.2875993 +0.5245917 0.5341183 0.2875993 +0.529462 0.5341183 0.2875993 +0.5341183 0.5341183 0.2875993 +0.5385787 0.5341183 0.2875993 +0.5428591 0.5341183 0.2875993 +0.5469733 0.5341183 0.2875993 +0.5509339 0.5341183 0.2875993 +0.5547519 0.5341183 0.2875993 +0.5584371 0.5341183 0.2875993 +0.5619986 0.5341183 0.2875993 +0.5654443 0.5341183 0.2875993 +0.5687816 0.5341183 0.2875993 +0.092819 0.5385787 0.2875993 +0.2262531 0.5385787 0.2875993 +0.2875993 0.5385787 0.2875993 +0.3262122 0.5385787 0.2875993 +0.3544566 0.5385787 0.2875993 +0.3767383 0.5385787 0.2875993 +0.3951413 0.5385787 0.2875993 +0.4108177 0.5385787 0.2875993 +0.4244723 0.5385787 0.2875993 +0.4365675 0.5385787 0.2875993 +0.4474232 0.5385787 0.2875993 +0.45727 0.5385787 0.2875993 +0.4662797 0.5385787 0.2875993 +0.4745834 0.5385787 0.2875993 +0.4822838 0.5385787 0.2875993 +0.4894626 0.5385787 0.2875993 +0.4961862 0.5385787 0.2875993 +0.5025087 0.5385787 0.2875993 +0.5084753 0.5385787 0.2875993 +0.514124 0.5385787 0.2875993 +0.519487 0.5385787 0.2875993 +0.5245917 0.5385787 0.2875993 +0.529462 0.5385787 0.2875993 +0.5341183 0.5385787 0.2875993 +0.5385787 0.5385787 0.2875993 +0.5428591 0.5385787 0.2875993 +0.5469733 0.5385787 0.2875993 +0.5509339 0.5385787 0.2875993 +0.5547519 0.5385787 0.2875993 +0.5584371 0.5385787 0.2875993 +0.5619986 0.5385787 0.2875993 +0.5654443 0.5385787 0.2875993 +0.5687816 0.5385787 0.2875993 +0.092819 0.5428591 0.2875993 +0.2262531 0.5428591 0.2875993 +0.2875993 0.5428591 0.2875993 +0.3262122 0.5428591 0.2875993 +0.3544566 0.5428591 0.2875993 +0.3767383 0.5428591 0.2875993 +0.3951413 0.5428591 0.2875993 +0.4108177 0.5428591 0.2875993 +0.4244723 0.5428591 0.2875993 +0.4365675 0.5428591 0.2875993 +0.4474232 0.5428591 0.2875993 +0.45727 0.5428591 0.2875993 +0.4662797 0.5428591 0.2875993 +0.4745834 0.5428591 0.2875993 +0.4822838 0.5428591 0.2875993 +0.4894626 0.5428591 0.2875993 +0.4961862 0.5428591 0.2875993 +0.5025087 0.5428591 0.2875993 +0.5084753 0.5428591 0.2875993 +0.514124 0.5428591 0.2875993 +0.519487 0.5428591 0.2875993 +0.5245917 0.5428591 0.2875993 +0.529462 0.5428591 0.2875993 +0.5341183 0.5428591 0.2875993 +0.5385787 0.5428591 0.2875993 +0.5428591 0.5428591 0.2875993 +0.5469733 0.5428591 0.2875993 +0.5509339 0.5428591 0.2875993 +0.5547519 0.5428591 0.2875993 +0.5584371 0.5428591 0.2875993 +0.5619986 0.5428591 0.2875993 +0.5654443 0.5428591 0.2875993 +0.5687816 0.5428591 0.2875993 +0.092819 0.5469733 0.2875993 +0.2262531 0.5469733 0.2875993 +0.2875993 0.5469733 0.2875993 +0.3262122 0.5469733 0.2875993 +0.3544566 0.5469733 0.2875993 +0.3767383 0.5469733 0.2875993 +0.3951413 0.5469733 0.2875993 +0.4108177 0.5469733 0.2875993 +0.4244723 0.5469733 0.2875993 +0.4365675 0.5469733 0.2875993 +0.4474232 0.5469733 0.2875993 +0.45727 0.5469733 0.2875993 +0.4662797 0.5469733 0.2875993 +0.4745834 0.5469733 0.2875993 +0.4822838 0.5469733 0.2875993 +0.4894626 0.5469733 0.2875993 +0.4961862 0.5469733 0.2875993 +0.5025087 0.5469733 0.2875993 +0.5084753 0.5469733 0.2875993 +0.514124 0.5469733 0.2875993 +0.519487 0.5469733 0.2875993 +0.5245917 0.5469733 0.2875993 +0.529462 0.5469733 0.2875993 +0.5341183 0.5469733 0.2875993 +0.5385787 0.5469733 0.2875993 +0.5428591 0.5469733 0.2875993 +0.5469733 0.5469733 0.2875993 +0.5509339 0.5469733 0.2875993 +0.5547519 0.5469733 0.2875993 +0.5584371 0.5469733 0.2875993 +0.5619986 0.5469733 0.2875993 +0.5654443 0.5469733 0.2875993 +0.5687816 0.5469733 0.2875993 +0.092819 0.5509339 0.2875993 +0.2262531 0.5509339 0.2875993 +0.2875993 0.5509339 0.2875993 +0.3262122 0.5509339 0.2875993 +0.3544566 0.5509339 0.2875993 +0.3767383 0.5509339 0.2875993 +0.3951413 0.5509339 0.2875993 +0.4108177 0.5509339 0.2875993 +0.4244723 0.5509339 0.2875993 +0.4365675 0.5509339 0.2875993 +0.4474232 0.5509339 0.2875993 +0.45727 0.5509339 0.2875993 +0.4662797 0.5509339 0.2875993 +0.4745834 0.5509339 0.2875993 +0.4822838 0.5509339 0.2875993 +0.4894626 0.5509339 0.2875993 +0.4961862 0.5509339 0.2875993 +0.5025087 0.5509339 0.2875993 +0.5084753 0.5509339 0.2875993 +0.514124 0.5509339 0.2875993 +0.519487 0.5509339 0.2875993 +0.5245917 0.5509339 0.2875993 +0.529462 0.5509339 0.2875993 +0.5341183 0.5509339 0.2875993 +0.5385787 0.5509339 0.2875993 +0.5428591 0.5509339 0.2875993 +0.5469733 0.5509339 0.2875993 +0.5509339 0.5509339 0.2875993 +0.5547519 0.5509339 0.2875993 +0.5584371 0.5509339 0.2875993 +0.5619986 0.5509339 0.2875993 +0.5654443 0.5509339 0.2875993 +0.5687816 0.5509339 0.2875993 +0.092819 0.5547519 0.2875993 +0.2262531 0.5547519 0.2875993 +0.2875993 0.5547519 0.2875993 +0.3262122 0.5547519 0.2875993 +0.3544566 0.5547519 0.2875993 +0.3767383 0.5547519 0.2875993 +0.3951413 0.5547519 0.2875993 +0.4108177 0.5547519 0.2875993 +0.4244723 0.5547519 0.2875993 +0.4365675 0.5547519 0.2875993 +0.4474232 0.5547519 0.2875993 +0.45727 0.5547519 0.2875993 +0.4662797 0.5547519 0.2875993 +0.4745834 0.5547519 0.2875993 +0.4822838 0.5547519 0.2875993 +0.4894626 0.5547519 0.2875993 +0.4961862 0.5547519 0.2875993 +0.5025087 0.5547519 0.2875993 +0.5084753 0.5547519 0.2875993 +0.514124 0.5547519 0.2875993 +0.519487 0.5547519 0.2875993 +0.5245917 0.5547519 0.2875993 +0.529462 0.5547519 0.2875993 +0.5341183 0.5547519 0.2875993 +0.5385787 0.5547519 0.2875993 +0.5428591 0.5547519 0.2875993 +0.5469733 0.5547519 0.2875993 +0.5509339 0.5547519 0.2875993 +0.5547519 0.5547519 0.2875993 +0.5584371 0.5547519 0.2875993 +0.5619986 0.5547519 0.2875993 +0.5654443 0.5547519 0.2875993 +0.5687816 0.5547519 0.2875993 +0.092819 0.5584371 0.2875993 +0.2262531 0.5584371 0.2875993 +0.2875993 0.5584371 0.2875993 +0.3262122 0.5584371 0.2875993 +0.3544566 0.5584371 0.2875993 +0.3767383 0.5584371 0.2875993 +0.3951413 0.5584371 0.2875993 +0.4108177 0.5584371 0.2875993 +0.4244723 0.5584371 0.2875993 +0.4365675 0.5584371 0.2875993 +0.4474232 0.5584371 0.2875993 +0.45727 0.5584371 0.2875993 +0.4662797 0.5584371 0.2875993 +0.4745834 0.5584371 0.2875993 +0.4822838 0.5584371 0.2875993 +0.4894626 0.5584371 0.2875993 +0.4961862 0.5584371 0.2875993 +0.5025087 0.5584371 0.2875993 +0.5084753 0.5584371 0.2875993 +0.514124 0.5584371 0.2875993 +0.519487 0.5584371 0.2875993 +0.5245917 0.5584371 0.2875993 +0.529462 0.5584371 0.2875993 +0.5341183 0.5584371 0.2875993 +0.5385787 0.5584371 0.2875993 +0.5428591 0.5584371 0.2875993 +0.5469733 0.5584371 0.2875993 +0.5509339 0.5584371 0.2875993 +0.5547519 0.5584371 0.2875993 +0.5584371 0.5584371 0.2875993 +0.5619986 0.5584371 0.2875993 +0.5654443 0.5584371 0.2875993 +0.5687816 0.5584371 0.2875993 +0.092819 0.5619986 0.2875993 +0.2262531 0.5619986 0.2875993 +0.2875993 0.5619986 0.2875993 +0.3262122 0.5619986 0.2875993 +0.3544566 0.5619986 0.2875993 +0.3767383 0.5619986 0.2875993 +0.3951413 0.5619986 0.2875993 +0.4108177 0.5619986 0.2875993 +0.4244723 0.5619986 0.2875993 +0.4365675 0.5619986 0.2875993 +0.4474232 0.5619986 0.2875993 +0.45727 0.5619986 0.2875993 +0.4662797 0.5619986 0.2875993 +0.4745834 0.5619986 0.2875993 +0.4822838 0.5619986 0.2875993 +0.4894626 0.5619986 0.2875993 +0.4961862 0.5619986 0.2875993 +0.5025087 0.5619986 0.2875993 +0.5084753 0.5619986 0.2875993 +0.514124 0.5619986 0.2875993 +0.519487 0.5619986 0.2875993 +0.5245917 0.5619986 0.2875993 +0.529462 0.5619986 0.2875993 +0.5341183 0.5619986 0.2875993 +0.5385787 0.5619986 0.2875993 +0.5428591 0.5619986 0.2875993 +0.5469733 0.5619986 0.2875993 +0.5509339 0.5619986 0.2875993 +0.5547519 0.5619986 0.2875993 +0.5584371 0.5619986 0.2875993 +0.5619986 0.5619986 0.2875993 +0.5654443 0.5619986 0.2875993 +0.5687816 0.5619986 0.2875993 +0.092819 0.5654443 0.2875993 +0.2262531 0.5654443 0.2875993 +0.2875993 0.5654443 0.2875993 +0.3262122 0.5654443 0.2875993 +0.3544566 0.5654443 0.2875993 +0.3767383 0.5654443 0.2875993 +0.3951413 0.5654443 0.2875993 +0.4108177 0.5654443 0.2875993 +0.4244723 0.5654443 0.2875993 +0.4365675 0.5654443 0.2875993 +0.4474232 0.5654443 0.2875993 +0.45727 0.5654443 0.2875993 +0.4662797 0.5654443 0.2875993 +0.4745834 0.5654443 0.2875993 +0.4822838 0.5654443 0.2875993 +0.4894626 0.5654443 0.2875993 +0.4961862 0.5654443 0.2875993 +0.5025087 0.5654443 0.2875993 +0.5084753 0.5654443 0.2875993 +0.514124 0.5654443 0.2875993 +0.519487 0.5654443 0.2875993 +0.5245917 0.5654443 0.2875993 +0.529462 0.5654443 0.2875993 +0.5341183 0.5654443 0.2875993 +0.5385787 0.5654443 0.2875993 +0.5428591 0.5654443 0.2875993 +0.5469733 0.5654443 0.2875993 +0.5509339 0.5654443 0.2875993 +0.5547519 0.5654443 0.2875993 +0.5584371 0.5654443 0.2875993 +0.5619986 0.5654443 0.2875993 +0.5654443 0.5654443 0.2875993 +0.5687816 0.5654443 0.2875993 +0.092819 0.5687816 0.2875993 +0.2262531 0.5687816 0.2875993 +0.2875993 0.5687816 0.2875993 +0.3262122 0.5687816 0.2875993 +0.3544566 0.5687816 0.2875993 +0.3767383 0.5687816 0.2875993 +0.3951413 0.5687816 0.2875993 +0.4108177 0.5687816 0.2875993 +0.4244723 0.5687816 0.2875993 +0.4365675 0.5687816 0.2875993 +0.4474232 0.5687816 0.2875993 +0.45727 0.5687816 0.2875993 +0.4662797 0.5687816 0.2875993 +0.4745834 0.5687816 0.2875993 +0.4822838 0.5687816 0.2875993 +0.4894626 0.5687816 0.2875993 +0.4961862 0.5687816 0.2875993 +0.5025087 0.5687816 0.2875993 +0.5084753 0.5687816 0.2875993 +0.514124 0.5687816 0.2875993 +0.519487 0.5687816 0.2875993 +0.5245917 0.5687816 0.2875993 +0.529462 0.5687816 0.2875993 +0.5341183 0.5687816 0.2875993 +0.5385787 0.5687816 0.2875993 +0.5428591 0.5687816 0.2875993 +0.5469733 0.5687816 0.2875993 +0.5509339 0.5687816 0.2875993 +0.5547519 0.5687816 0.2875993 +0.5584371 0.5687816 0.2875993 +0.5619986 0.5687816 0.2875993 +0.5654443 0.5687816 0.2875993 +0.5687816 0.5687816 0.2875993 +0.092819 0.092819 0.3262122 +0.2262531 0.092819 0.3262122 +0.2875993 0.092819 0.3262122 +0.3262122 0.092819 0.3262122 +0.3544566 0.092819 0.3262122 +0.3767383 0.092819 0.3262122 +0.3951413 0.092819 0.3262122 +0.4108177 0.092819 0.3262122 +0.4244723 0.092819 0.3262122 +0.4365675 0.092819 0.3262122 +0.4474232 0.092819 0.3262122 +0.45727 0.092819 0.3262122 +0.4662797 0.092819 0.3262122 +0.4745834 0.092819 0.3262122 +0.4822838 0.092819 0.3262122 +0.4894626 0.092819 0.3262122 +0.4961862 0.092819 0.3262122 +0.5025087 0.092819 0.3262122 +0.5084753 0.092819 0.3262122 +0.514124 0.092819 0.3262122 +0.519487 0.092819 0.3262122 +0.5245917 0.092819 0.3262122 +0.529462 0.092819 0.3262122 +0.5341183 0.092819 0.3262122 +0.5385787 0.092819 0.3262122 +0.5428591 0.092819 0.3262122 +0.5469733 0.092819 0.3262122 +0.5509339 0.092819 0.3262122 +0.5547519 0.092819 0.3262122 +0.5584371 0.092819 0.3262122 +0.5619986 0.092819 0.3262122 +0.5654443 0.092819 0.3262122 +0.5687816 0.092819 0.3262122 +0.092819 0.2262531 0.3262122 +0.2262531 0.2262531 0.3262122 +0.2875993 0.2262531 0.3262122 +0.3262122 0.2262531 0.3262122 +0.3544566 0.2262531 0.3262122 +0.3767383 0.2262531 0.3262122 +0.3951413 0.2262531 0.3262122 +0.4108177 0.2262531 0.3262122 +0.4244723 0.2262531 0.3262122 +0.4365675 0.2262531 0.3262122 +0.4474232 0.2262531 0.3262122 +0.45727 0.2262531 0.3262122 +0.4662797 0.2262531 0.3262122 +0.4745834 0.2262531 0.3262122 +0.4822838 0.2262531 0.3262122 +0.4894626 0.2262531 0.3262122 +0.4961862 0.2262531 0.3262122 +0.5025087 0.2262531 0.3262122 +0.5084753 0.2262531 0.3262122 +0.514124 0.2262531 0.3262122 +0.519487 0.2262531 0.3262122 +0.5245917 0.2262531 0.3262122 +0.529462 0.2262531 0.3262122 +0.5341183 0.2262531 0.3262122 +0.5385787 0.2262531 0.3262122 +0.5428591 0.2262531 0.3262122 +0.5469733 0.2262531 0.3262122 +0.5509339 0.2262531 0.3262122 +0.5547519 0.2262531 0.3262122 +0.5584371 0.2262531 0.3262122 +0.5619986 0.2262531 0.3262122 +0.5654443 0.2262531 0.3262122 +0.5687816 0.2262531 0.3262122 +0.092819 0.2875993 0.3262122 +0.2262531 0.2875993 0.3262122 +0.2875993 0.2875993 0.3262122 +0.3262122 0.2875993 0.3262122 +0.3544566 0.2875993 0.3262122 +0.3767383 0.2875993 0.3262122 +0.3951413 0.2875993 0.3262122 +0.4108177 0.2875993 0.3262122 +0.4244723 0.2875993 0.3262122 +0.4365675 0.2875993 0.3262122 +0.4474232 0.2875993 0.3262122 +0.45727 0.2875993 0.3262122 +0.4662797 0.2875993 0.3262122 +0.4745834 0.2875993 0.3262122 +0.4822838 0.2875993 0.3262122 +0.4894626 0.2875993 0.3262122 +0.4961862 0.2875993 0.3262122 +0.5025087 0.2875993 0.3262122 +0.5084753 0.2875993 0.3262122 +0.514124 0.2875993 0.3262122 +0.519487 0.2875993 0.3262122 +0.5245917 0.2875993 0.3262122 +0.529462 0.2875993 0.3262122 +0.5341183 0.2875993 0.3262122 +0.5385787 0.2875993 0.3262122 +0.5428591 0.2875993 0.3262122 +0.5469733 0.2875993 0.3262122 +0.5509339 0.2875993 0.3262122 +0.5547519 0.2875993 0.3262122 +0.5584371 0.2875993 0.3262122 +0.5619986 0.2875993 0.3262122 +0.5654443 0.2875993 0.3262122 +0.5687816 0.2875993 0.3262122 +0.092819 0.3262122 0.3262122 +0.2262531 0.3262122 0.3262122 +0.2875993 0.3262122 0.3262122 +0.3262122 0.3262122 0.3262122 +0.3544566 0.3262122 0.3262122 +0.3767383 0.3262122 0.3262122 +0.3951413 0.3262122 0.3262122 +0.4108177 0.3262122 0.3262122 +0.4244723 0.3262122 0.3262122 +0.4365675 0.3262122 0.3262122 +0.4474232 0.3262122 0.3262122 +0.45727 0.3262122 0.3262122 +0.4662797 0.3262122 0.3262122 +0.4745834 0.3262122 0.3262122 +0.4822838 0.3262122 0.3262122 +0.4894626 0.3262122 0.3262122 +0.4961862 0.3262122 0.3262122 +0.5025087 0.3262122 0.3262122 +0.5084753 0.3262122 0.3262122 +0.514124 0.3262122 0.3262122 +0.519487 0.3262122 0.3262122 +0.5245917 0.3262122 0.3262122 +0.529462 0.3262122 0.3262122 +0.5341183 0.3262122 0.3262122 +0.5385787 0.3262122 0.3262122 +0.5428591 0.3262122 0.3262122 +0.5469733 0.3262122 0.3262122 +0.5509339 0.3262122 0.3262122 +0.5547519 0.3262122 0.3262122 +0.5584371 0.3262122 0.3262122 +0.5619986 0.3262122 0.3262122 +0.5654443 0.3262122 0.3262122 +0.5687816 0.3262122 0.3262122 +0.092819 0.3544566 0.3262122 +0.2262531 0.3544566 0.3262122 +0.2875993 0.3544566 0.3262122 +0.3262122 0.3544566 0.3262122 +0.3544566 0.3544566 0.3262122 +0.3767383 0.3544566 0.3262122 +0.3951413 0.3544566 0.3262122 +0.4108177 0.3544566 0.3262122 +0.4244723 0.3544566 0.3262122 +0.4365675 0.3544566 0.3262122 +0.4474232 0.3544566 0.3262122 +0.45727 0.3544566 0.3262122 +0.4662797 0.3544566 0.3262122 +0.4745834 0.3544566 0.3262122 +0.4822838 0.3544566 0.3262122 +0.4894626 0.3544566 0.3262122 +0.4961862 0.3544566 0.3262122 +0.5025087 0.3544566 0.3262122 +0.5084753 0.3544566 0.3262122 +0.514124 0.3544566 0.3262122 +0.519487 0.3544566 0.3262122 +0.5245917 0.3544566 0.3262122 +0.529462 0.3544566 0.3262122 +0.5341183 0.3544566 0.3262122 +0.5385787 0.3544566 0.3262122 +0.5428591 0.3544566 0.3262122 +0.5469733 0.3544566 0.3262122 +0.5509339 0.3544566 0.3262122 +0.5547519 0.3544566 0.3262122 +0.5584371 0.3544566 0.3262122 +0.5619986 0.3544566 0.3262122 +0.5654443 0.3544566 0.3262122 +0.5687816 0.3544566 0.3262122 +0.092819 0.3767383 0.3262122 +0.2262531 0.3767383 0.3262122 +0.2875993 0.3767383 0.3262122 +0.3262122 0.3767383 0.3262122 +0.3544566 0.3767383 0.3262122 +0.3767383 0.3767383 0.3262122 +0.3951413 0.3767383 0.3262122 +0.4108177 0.3767383 0.3262122 +0.4244723 0.3767383 0.3262122 +0.4365675 0.3767383 0.3262122 +0.4474232 0.3767383 0.3262122 +0.45727 0.3767383 0.3262122 +0.4662797 0.3767383 0.3262122 +0.4745834 0.3767383 0.3262122 +0.4822838 0.3767383 0.3262122 +0.4894626 0.3767383 0.3262122 +0.4961862 0.3767383 0.3262122 +0.5025087 0.3767383 0.3262122 +0.5084753 0.3767383 0.3262122 +0.514124 0.3767383 0.3262122 +0.519487 0.3767383 0.3262122 +0.5245917 0.3767383 0.3262122 +0.529462 0.3767383 0.3262122 +0.5341183 0.3767383 0.3262122 +0.5385787 0.3767383 0.3262122 +0.5428591 0.3767383 0.3262122 +0.5469733 0.3767383 0.3262122 +0.5509339 0.3767383 0.3262122 +0.5547519 0.3767383 0.3262122 +0.5584371 0.3767383 0.3262122 +0.5619986 0.3767383 0.3262122 +0.5654443 0.3767383 0.3262122 +0.5687816 0.3767383 0.3262122 +0.092819 0.3951413 0.3262122 +0.2262531 0.3951413 0.3262122 +0.2875993 0.3951413 0.3262122 +0.3262122 0.3951413 0.3262122 +0.3544566 0.3951413 0.3262122 +0.3767383 0.3951413 0.3262122 +0.3951413 0.3951413 0.3262122 +0.4108177 0.3951413 0.3262122 +0.4244723 0.3951413 0.3262122 +0.4365675 0.3951413 0.3262122 +0.4474232 0.3951413 0.3262122 +0.45727 0.3951413 0.3262122 +0.4662797 0.3951413 0.3262122 +0.4745834 0.3951413 0.3262122 +0.4822838 0.3951413 0.3262122 +0.4894626 0.3951413 0.3262122 +0.4961862 0.3951413 0.3262122 +0.5025087 0.3951413 0.3262122 +0.5084753 0.3951413 0.3262122 +0.514124 0.3951413 0.3262122 +0.519487 0.3951413 0.3262122 +0.5245917 0.3951413 0.3262122 +0.529462 0.3951413 0.3262122 +0.5341183 0.3951413 0.3262122 +0.5385787 0.3951413 0.3262122 +0.5428591 0.3951413 0.3262122 +0.5469733 0.3951413 0.3262122 +0.5509339 0.3951413 0.3262122 +0.5547519 0.3951413 0.3262122 +0.5584371 0.3951413 0.3262122 +0.5619986 0.3951413 0.3262122 +0.5654443 0.3951413 0.3262122 +0.5687816 0.3951413 0.3262122 +0.092819 0.4108177 0.3262122 +0.2262531 0.4108177 0.3262122 +0.2875993 0.4108177 0.3262122 +0.3262122 0.4108177 0.3262122 +0.3544566 0.4108177 0.3262122 +0.3767383 0.4108177 0.3262122 +0.3951413 0.4108177 0.3262122 +0.4108177 0.4108177 0.3262122 +0.4244723 0.4108177 0.3262122 +0.4365675 0.4108177 0.3262122 +0.4474232 0.4108177 0.3262122 +0.45727 0.4108177 0.3262122 +0.4662797 0.4108177 0.3262122 +0.4745834 0.4108177 0.3262122 +0.4822838 0.4108177 0.3262122 +0.4894626 0.4108177 0.3262122 +0.4961862 0.4108177 0.3262122 +0.5025087 0.4108177 0.3262122 +0.5084753 0.4108177 0.3262122 +0.514124 0.4108177 0.3262122 +0.519487 0.4108177 0.3262122 +0.5245917 0.4108177 0.3262122 +0.529462 0.4108177 0.3262122 +0.5341183 0.4108177 0.3262122 +0.5385787 0.4108177 0.3262122 +0.5428591 0.4108177 0.3262122 +0.5469733 0.4108177 0.3262122 +0.5509339 0.4108177 0.3262122 +0.5547519 0.4108177 0.3262122 +0.5584371 0.4108177 0.3262122 +0.5619986 0.4108177 0.3262122 +0.5654443 0.4108177 0.3262122 +0.5687816 0.4108177 0.3262122 +0.092819 0.4244723 0.3262122 +0.2262531 0.4244723 0.3262122 +0.2875993 0.4244723 0.3262122 +0.3262122 0.4244723 0.3262122 +0.3544566 0.4244723 0.3262122 +0.3767383 0.4244723 0.3262122 +0.3951413 0.4244723 0.3262122 +0.4108177 0.4244723 0.3262122 +0.4244723 0.4244723 0.3262122 +0.4365675 0.4244723 0.3262122 +0.4474232 0.4244723 0.3262122 +0.45727 0.4244723 0.3262122 +0.4662797 0.4244723 0.3262122 +0.4745834 0.4244723 0.3262122 +0.4822838 0.4244723 0.3262122 +0.4894626 0.4244723 0.3262122 +0.4961862 0.4244723 0.3262122 +0.5025087 0.4244723 0.3262122 +0.5084753 0.4244723 0.3262122 +0.514124 0.4244723 0.3262122 +0.519487 0.4244723 0.3262122 +0.5245917 0.4244723 0.3262122 +0.529462 0.4244723 0.3262122 +0.5341183 0.4244723 0.3262122 +0.5385787 0.4244723 0.3262122 +0.5428591 0.4244723 0.3262122 +0.5469733 0.4244723 0.3262122 +0.5509339 0.4244723 0.3262122 +0.5547519 0.4244723 0.3262122 +0.5584371 0.4244723 0.3262122 +0.5619986 0.4244723 0.3262122 +0.5654443 0.4244723 0.3262122 +0.5687816 0.4244723 0.3262122 +0.092819 0.4365675 0.3262122 +0.2262531 0.4365675 0.3262122 +0.2875993 0.4365675 0.3262122 +0.3262122 0.4365675 0.3262122 +0.3544566 0.4365675 0.3262122 +0.3767383 0.4365675 0.3262122 +0.3951413 0.4365675 0.3262122 +0.4108177 0.4365675 0.3262122 +0.4244723 0.4365675 0.3262122 +0.4365675 0.4365675 0.3262122 +0.4474232 0.4365675 0.3262122 +0.45727 0.4365675 0.3262122 +0.4662797 0.4365675 0.3262122 +0.4745834 0.4365675 0.3262122 +0.4822838 0.4365675 0.3262122 +0.4894626 0.4365675 0.3262122 +0.4961862 0.4365675 0.3262122 +0.5025087 0.4365675 0.3262122 +0.5084753 0.4365675 0.3262122 +0.514124 0.4365675 0.3262122 +0.519487 0.4365675 0.3262122 +0.5245917 0.4365675 0.3262122 +0.529462 0.4365675 0.3262122 +0.5341183 0.4365675 0.3262122 +0.5385787 0.4365675 0.3262122 +0.5428591 0.4365675 0.3262122 +0.5469733 0.4365675 0.3262122 +0.5509339 0.4365675 0.3262122 +0.5547519 0.4365675 0.3262122 +0.5584371 0.4365675 0.3262122 +0.5619986 0.4365675 0.3262122 +0.5654443 0.4365675 0.3262122 +0.5687816 0.4365675 0.3262122 +0.092819 0.4474232 0.3262122 +0.2262531 0.4474232 0.3262122 +0.2875993 0.4474232 0.3262122 +0.3262122 0.4474232 0.3262122 +0.3544566 0.4474232 0.3262122 +0.3767383 0.4474232 0.3262122 +0.3951413 0.4474232 0.3262122 +0.4108177 0.4474232 0.3262122 +0.4244723 0.4474232 0.3262122 +0.4365675 0.4474232 0.3262122 +0.4474232 0.4474232 0.3262122 +0.45727 0.4474232 0.3262122 +0.4662797 0.4474232 0.3262122 +0.4745834 0.4474232 0.3262122 +0.4822838 0.4474232 0.3262122 +0.4894626 0.4474232 0.3262122 +0.4961862 0.4474232 0.3262122 +0.5025087 0.4474232 0.3262122 +0.5084753 0.4474232 0.3262122 +0.514124 0.4474232 0.3262122 +0.519487 0.4474232 0.3262122 +0.5245917 0.4474232 0.3262122 +0.529462 0.4474232 0.3262122 +0.5341183 0.4474232 0.3262122 +0.5385787 0.4474232 0.3262122 +0.5428591 0.4474232 0.3262122 +0.5469733 0.4474232 0.3262122 +0.5509339 0.4474232 0.3262122 +0.5547519 0.4474232 0.3262122 +0.5584371 0.4474232 0.3262122 +0.5619986 0.4474232 0.3262122 +0.5654443 0.4474232 0.3262122 +0.5687816 0.4474232 0.3262122 +0.092819 0.45727 0.3262122 +0.2262531 0.45727 0.3262122 +0.2875993 0.45727 0.3262122 +0.3262122 0.45727 0.3262122 +0.3544566 0.45727 0.3262122 +0.3767383 0.45727 0.3262122 +0.3951413 0.45727 0.3262122 +0.4108177 0.45727 0.3262122 +0.4244723 0.45727 0.3262122 +0.4365675 0.45727 0.3262122 +0.4474232 0.45727 0.3262122 +0.45727 0.45727 0.3262122 +0.4662797 0.45727 0.3262122 +0.4745834 0.45727 0.3262122 +0.4822838 0.45727 0.3262122 +0.4894626 0.45727 0.3262122 +0.4961862 0.45727 0.3262122 +0.5025087 0.45727 0.3262122 +0.5084753 0.45727 0.3262122 +0.514124 0.45727 0.3262122 +0.519487 0.45727 0.3262122 +0.5245917 0.45727 0.3262122 +0.529462 0.45727 0.3262122 +0.5341183 0.45727 0.3262122 +0.5385787 0.45727 0.3262122 +0.5428591 0.45727 0.3262122 +0.5469733 0.45727 0.3262122 +0.5509339 0.45727 0.3262122 +0.5547519 0.45727 0.3262122 +0.5584371 0.45727 0.3262122 +0.5619986 0.45727 0.3262122 +0.5654443 0.45727 0.3262122 +0.5687816 0.45727 0.3262122 +0.092819 0.4662797 0.3262122 +0.2262531 0.4662797 0.3262122 +0.2875993 0.4662797 0.3262122 +0.3262122 0.4662797 0.3262122 +0.3544566 0.4662797 0.3262122 +0.3767383 0.4662797 0.3262122 +0.3951413 0.4662797 0.3262122 +0.4108177 0.4662797 0.3262122 +0.4244723 0.4662797 0.3262122 +0.4365675 0.4662797 0.3262122 +0.4474232 0.4662797 0.3262122 +0.45727 0.4662797 0.3262122 +0.4662797 0.4662797 0.3262122 +0.4745834 0.4662797 0.3262122 +0.4822838 0.4662797 0.3262122 +0.4894626 0.4662797 0.3262122 +0.4961862 0.4662797 0.3262122 +0.5025087 0.4662797 0.3262122 +0.5084753 0.4662797 0.3262122 +0.514124 0.4662797 0.3262122 +0.519487 0.4662797 0.3262122 +0.5245917 0.4662797 0.3262122 +0.529462 0.4662797 0.3262122 +0.5341183 0.4662797 0.3262122 +0.5385787 0.4662797 0.3262122 +0.5428591 0.4662797 0.3262122 +0.5469733 0.4662797 0.3262122 +0.5509339 0.4662797 0.3262122 +0.5547519 0.4662797 0.3262122 +0.5584371 0.4662797 0.3262122 +0.5619986 0.4662797 0.3262122 +0.5654443 0.4662797 0.3262122 +0.5687816 0.4662797 0.3262122 +0.092819 0.4745834 0.3262122 +0.2262531 0.4745834 0.3262122 +0.2875993 0.4745834 0.3262122 +0.3262122 0.4745834 0.3262122 +0.3544566 0.4745834 0.3262122 +0.3767383 0.4745834 0.3262122 +0.3951413 0.4745834 0.3262122 +0.4108177 0.4745834 0.3262122 +0.4244723 0.4745834 0.3262122 +0.4365675 0.4745834 0.3262122 +0.4474232 0.4745834 0.3262122 +0.45727 0.4745834 0.3262122 +0.4662797 0.4745834 0.3262122 +0.4745834 0.4745834 0.3262122 +0.4822838 0.4745834 0.3262122 +0.4894626 0.4745834 0.3262122 +0.4961862 0.4745834 0.3262122 +0.5025087 0.4745834 0.3262122 +0.5084753 0.4745834 0.3262122 +0.514124 0.4745834 0.3262122 +0.519487 0.4745834 0.3262122 +0.5245917 0.4745834 0.3262122 +0.529462 0.4745834 0.3262122 +0.5341183 0.4745834 0.3262122 +0.5385787 0.4745834 0.3262122 +0.5428591 0.4745834 0.3262122 +0.5469733 0.4745834 0.3262122 +0.5509339 0.4745834 0.3262122 +0.5547519 0.4745834 0.3262122 +0.5584371 0.4745834 0.3262122 +0.5619986 0.4745834 0.3262122 +0.5654443 0.4745834 0.3262122 +0.5687816 0.4745834 0.3262122 +0.092819 0.4822838 0.3262122 +0.2262531 0.4822838 0.3262122 +0.2875993 0.4822838 0.3262122 +0.3262122 0.4822838 0.3262122 +0.3544566 0.4822838 0.3262122 +0.3767383 0.4822838 0.3262122 +0.3951413 0.4822838 0.3262122 +0.4108177 0.4822838 0.3262122 +0.4244723 0.4822838 0.3262122 +0.4365675 0.4822838 0.3262122 +0.4474232 0.4822838 0.3262122 +0.45727 0.4822838 0.3262122 +0.4662797 0.4822838 0.3262122 +0.4745834 0.4822838 0.3262122 +0.4822838 0.4822838 0.3262122 +0.4894626 0.4822838 0.3262122 +0.4961862 0.4822838 0.3262122 +0.5025087 0.4822838 0.3262122 +0.5084753 0.4822838 0.3262122 +0.514124 0.4822838 0.3262122 +0.519487 0.4822838 0.3262122 +0.5245917 0.4822838 0.3262122 +0.529462 0.4822838 0.3262122 +0.5341183 0.4822838 0.3262122 +0.5385787 0.4822838 0.3262122 +0.5428591 0.4822838 0.3262122 +0.5469733 0.4822838 0.3262122 +0.5509339 0.4822838 0.3262122 +0.5547519 0.4822838 0.3262122 +0.5584371 0.4822838 0.3262122 +0.5619986 0.4822838 0.3262122 +0.5654443 0.4822838 0.3262122 +0.5687816 0.4822838 0.3262122 +0.092819 0.4894626 0.3262122 +0.2262531 0.4894626 0.3262122 +0.2875993 0.4894626 0.3262122 +0.3262122 0.4894626 0.3262122 +0.3544566 0.4894626 0.3262122 +0.3767383 0.4894626 0.3262122 +0.3951413 0.4894626 0.3262122 +0.4108177 0.4894626 0.3262122 +0.4244723 0.4894626 0.3262122 +0.4365675 0.4894626 0.3262122 +0.4474232 0.4894626 0.3262122 +0.45727 0.4894626 0.3262122 +0.4662797 0.4894626 0.3262122 +0.4745834 0.4894626 0.3262122 +0.4822838 0.4894626 0.3262122 +0.4894626 0.4894626 0.3262122 +0.4961862 0.4894626 0.3262122 +0.5025087 0.4894626 0.3262122 +0.5084753 0.4894626 0.3262122 +0.514124 0.4894626 0.3262122 +0.519487 0.4894626 0.3262122 +0.5245917 0.4894626 0.3262122 +0.529462 0.4894626 0.3262122 +0.5341183 0.4894626 0.3262122 +0.5385787 0.4894626 0.3262122 +0.5428591 0.4894626 0.3262122 +0.5469733 0.4894626 0.3262122 +0.5509339 0.4894626 0.3262122 +0.5547519 0.4894626 0.3262122 +0.5584371 0.4894626 0.3262122 +0.5619986 0.4894626 0.3262122 +0.5654443 0.4894626 0.3262122 +0.5687816 0.4894626 0.3262122 +0.092819 0.4961862 0.3262122 +0.2262531 0.4961862 0.3262122 +0.2875993 0.4961862 0.3262122 +0.3262122 0.4961862 0.3262122 +0.3544566 0.4961862 0.3262122 +0.3767383 0.4961862 0.3262122 +0.3951413 0.4961862 0.3262122 +0.4108177 0.4961862 0.3262122 +0.4244723 0.4961862 0.3262122 +0.4365675 0.4961862 0.3262122 +0.4474232 0.4961862 0.3262122 +0.45727 0.4961862 0.3262122 +0.4662797 0.4961862 0.3262122 +0.4745834 0.4961862 0.3262122 +0.4822838 0.4961862 0.3262122 +0.4894626 0.4961862 0.3262122 +0.4961862 0.4961862 0.3262122 +0.5025087 0.4961862 0.3262122 +0.5084753 0.4961862 0.3262122 +0.514124 0.4961862 0.3262122 +0.519487 0.4961862 0.3262122 +0.5245917 0.4961862 0.3262122 +0.529462 0.4961862 0.3262122 +0.5341183 0.4961862 0.3262122 +0.5385787 0.4961862 0.3262122 +0.5428591 0.4961862 0.3262122 +0.5469733 0.4961862 0.3262122 +0.5509339 0.4961862 0.3262122 +0.5547519 0.4961862 0.3262122 +0.5584371 0.4961862 0.3262122 +0.5619986 0.4961862 0.3262122 +0.5654443 0.4961862 0.3262122 +0.5687816 0.4961862 0.3262122 +0.092819 0.5025087 0.3262122 +0.2262531 0.5025087 0.3262122 +0.2875993 0.5025087 0.3262122 +0.3262122 0.5025087 0.3262122 +0.3544566 0.5025087 0.3262122 +0.3767383 0.5025087 0.3262122 +0.3951413 0.5025087 0.3262122 +0.4108177 0.5025087 0.3262122 +0.4244723 0.5025087 0.3262122 +0.4365675 0.5025087 0.3262122 +0.4474232 0.5025087 0.3262122 +0.45727 0.5025087 0.3262122 +0.4662797 0.5025087 0.3262122 +0.4745834 0.5025087 0.3262122 +0.4822838 0.5025087 0.3262122 +0.4894626 0.5025087 0.3262122 +0.4961862 0.5025087 0.3262122 +0.5025087 0.5025087 0.3262122 +0.5084753 0.5025087 0.3262122 +0.514124 0.5025087 0.3262122 +0.519487 0.5025087 0.3262122 +0.5245917 0.5025087 0.3262122 +0.529462 0.5025087 0.3262122 +0.5341183 0.5025087 0.3262122 +0.5385787 0.5025087 0.3262122 +0.5428591 0.5025087 0.3262122 +0.5469733 0.5025087 0.3262122 +0.5509339 0.5025087 0.3262122 +0.5547519 0.5025087 0.3262122 +0.5584371 0.5025087 0.3262122 +0.5619986 0.5025087 0.3262122 +0.5654443 0.5025087 0.3262122 +0.5687816 0.5025087 0.3262122 +0.092819 0.5084753 0.3262122 +0.2262531 0.5084753 0.3262122 +0.2875993 0.5084753 0.3262122 +0.3262122 0.5084753 0.3262122 +0.3544566 0.5084753 0.3262122 +0.3767383 0.5084753 0.3262122 +0.3951413 0.5084753 0.3262122 +0.4108177 0.5084753 0.3262122 +0.4244723 0.5084753 0.3262122 +0.4365675 0.5084753 0.3262122 +0.4474232 0.5084753 0.3262122 +0.45727 0.5084753 0.3262122 +0.4662797 0.5084753 0.3262122 +0.4745834 0.5084753 0.3262122 +0.4822838 0.5084753 0.3262122 +0.4894626 0.5084753 0.3262122 +0.4961862 0.5084753 0.3262122 +0.5025087 0.5084753 0.3262122 +0.5084753 0.5084753 0.3262122 +0.514124 0.5084753 0.3262122 +0.519487 0.5084753 0.3262122 +0.5245917 0.5084753 0.3262122 +0.529462 0.5084753 0.3262122 +0.5341183 0.5084753 0.3262122 +0.5385787 0.5084753 0.3262122 +0.5428591 0.5084753 0.3262122 +0.5469733 0.5084753 0.3262122 +0.5509339 0.5084753 0.3262122 +0.5547519 0.5084753 0.3262122 +0.5584371 0.5084753 0.3262122 +0.5619986 0.5084753 0.3262122 +0.5654443 0.5084753 0.3262122 +0.5687816 0.5084753 0.3262122 +0.092819 0.514124 0.3262122 +0.2262531 0.514124 0.3262122 +0.2875993 0.514124 0.3262122 +0.3262122 0.514124 0.3262122 +0.3544566 0.514124 0.3262122 +0.3767383 0.514124 0.3262122 +0.3951413 0.514124 0.3262122 +0.4108177 0.514124 0.3262122 +0.4244723 0.514124 0.3262122 +0.4365675 0.514124 0.3262122 +0.4474232 0.514124 0.3262122 +0.45727 0.514124 0.3262122 +0.4662797 0.514124 0.3262122 +0.4745834 0.514124 0.3262122 +0.4822838 0.514124 0.3262122 +0.4894626 0.514124 0.3262122 +0.4961862 0.514124 0.3262122 +0.5025087 0.514124 0.3262122 +0.5084753 0.514124 0.3262122 +0.514124 0.514124 0.3262122 +0.519487 0.514124 0.3262122 +0.5245917 0.514124 0.3262122 +0.529462 0.514124 0.3262122 +0.5341183 0.514124 0.3262122 +0.5385787 0.514124 0.3262122 +0.5428591 0.514124 0.3262122 +0.5469733 0.514124 0.3262122 +0.5509339 0.514124 0.3262122 +0.5547519 0.514124 0.3262122 +0.5584371 0.514124 0.3262122 +0.5619986 0.514124 0.3262122 +0.5654443 0.514124 0.3262122 +0.5687816 0.514124 0.3262122 +0.092819 0.519487 0.3262122 +0.2262531 0.519487 0.3262122 +0.2875993 0.519487 0.3262122 +0.3262122 0.519487 0.3262122 +0.3544566 0.519487 0.3262122 +0.3767383 0.519487 0.3262122 +0.3951413 0.519487 0.3262122 +0.4108177 0.519487 0.3262122 +0.4244723 0.519487 0.3262122 +0.4365675 0.519487 0.3262122 +0.4474232 0.519487 0.3262122 +0.45727 0.519487 0.3262122 +0.4662797 0.519487 0.3262122 +0.4745834 0.519487 0.3262122 +0.4822838 0.519487 0.3262122 +0.4894626 0.519487 0.3262122 +0.4961862 0.519487 0.3262122 +0.5025087 0.519487 0.3262122 +0.5084753 0.519487 0.3262122 +0.514124 0.519487 0.3262122 +0.519487 0.519487 0.3262122 +0.5245917 0.519487 0.3262122 +0.529462 0.519487 0.3262122 +0.5341183 0.519487 0.3262122 +0.5385787 0.519487 0.3262122 +0.5428591 0.519487 0.3262122 +0.5469733 0.519487 0.3262122 +0.5509339 0.519487 0.3262122 +0.5547519 0.519487 0.3262122 +0.5584371 0.519487 0.3262122 +0.5619986 0.519487 0.3262122 +0.5654443 0.519487 0.3262122 +0.5687816 0.519487 0.3262122 +0.092819 0.5245917 0.3262122 +0.2262531 0.5245917 0.3262122 +0.2875993 0.5245917 0.3262122 +0.3262122 0.5245917 0.3262122 +0.3544566 0.5245917 0.3262122 +0.3767383 0.5245917 0.3262122 +0.3951413 0.5245917 0.3262122 +0.4108177 0.5245917 0.3262122 +0.4244723 0.5245917 0.3262122 +0.4365675 0.5245917 0.3262122 +0.4474232 0.5245917 0.3262122 +0.45727 0.5245917 0.3262122 +0.4662797 0.5245917 0.3262122 +0.4745834 0.5245917 0.3262122 +0.4822838 0.5245917 0.3262122 +0.4894626 0.5245917 0.3262122 +0.4961862 0.5245917 0.3262122 +0.5025087 0.5245917 0.3262122 +0.5084753 0.5245917 0.3262122 +0.514124 0.5245917 0.3262122 +0.519487 0.5245917 0.3262122 +0.5245917 0.5245917 0.3262122 +0.529462 0.5245917 0.3262122 +0.5341183 0.5245917 0.3262122 +0.5385787 0.5245917 0.3262122 +0.5428591 0.5245917 0.3262122 +0.5469733 0.5245917 0.3262122 +0.5509339 0.5245917 0.3262122 +0.5547519 0.5245917 0.3262122 +0.5584371 0.5245917 0.3262122 +0.5619986 0.5245917 0.3262122 +0.5654443 0.5245917 0.3262122 +0.5687816 0.5245917 0.3262122 +0.092819 0.529462 0.3262122 +0.2262531 0.529462 0.3262122 +0.2875993 0.529462 0.3262122 +0.3262122 0.529462 0.3262122 +0.3544566 0.529462 0.3262122 +0.3767383 0.529462 0.3262122 +0.3951413 0.529462 0.3262122 +0.4108177 0.529462 0.3262122 +0.4244723 0.529462 0.3262122 +0.4365675 0.529462 0.3262122 +0.4474232 0.529462 0.3262122 +0.45727 0.529462 0.3262122 +0.4662797 0.529462 0.3262122 +0.4745834 0.529462 0.3262122 +0.4822838 0.529462 0.3262122 +0.4894626 0.529462 0.3262122 +0.4961862 0.529462 0.3262122 +0.5025087 0.529462 0.3262122 +0.5084753 0.529462 0.3262122 +0.514124 0.529462 0.3262122 +0.519487 0.529462 0.3262122 +0.5245917 0.529462 0.3262122 +0.529462 0.529462 0.3262122 +0.5341183 0.529462 0.3262122 +0.5385787 0.529462 0.3262122 +0.5428591 0.529462 0.3262122 +0.5469733 0.529462 0.3262122 +0.5509339 0.529462 0.3262122 +0.5547519 0.529462 0.3262122 +0.5584371 0.529462 0.3262122 +0.5619986 0.529462 0.3262122 +0.5654443 0.529462 0.3262122 +0.5687816 0.529462 0.3262122 +0.092819 0.5341183 0.3262122 +0.2262531 0.5341183 0.3262122 +0.2875993 0.5341183 0.3262122 +0.3262122 0.5341183 0.3262122 +0.3544566 0.5341183 0.3262122 +0.3767383 0.5341183 0.3262122 +0.3951413 0.5341183 0.3262122 +0.4108177 0.5341183 0.3262122 +0.4244723 0.5341183 0.3262122 +0.4365675 0.5341183 0.3262122 +0.4474232 0.5341183 0.3262122 +0.45727 0.5341183 0.3262122 +0.4662797 0.5341183 0.3262122 +0.4745834 0.5341183 0.3262122 +0.4822838 0.5341183 0.3262122 +0.4894626 0.5341183 0.3262122 +0.4961862 0.5341183 0.3262122 +0.5025087 0.5341183 0.3262122 +0.5084753 0.5341183 0.3262122 +0.514124 0.5341183 0.3262122 +0.519487 0.5341183 0.3262122 +0.5245917 0.5341183 0.3262122 +0.529462 0.5341183 0.3262122 +0.5341183 0.5341183 0.3262122 +0.5385787 0.5341183 0.3262122 +0.5428591 0.5341183 0.3262122 +0.5469733 0.5341183 0.3262122 +0.5509339 0.5341183 0.3262122 +0.5547519 0.5341183 0.3262122 +0.5584371 0.5341183 0.3262122 +0.5619986 0.5341183 0.3262122 +0.5654443 0.5341183 0.3262122 +0.5687816 0.5341183 0.3262122 +0.092819 0.5385787 0.3262122 +0.2262531 0.5385787 0.3262122 +0.2875993 0.5385787 0.3262122 +0.3262122 0.5385787 0.3262122 +0.3544566 0.5385787 0.3262122 +0.3767383 0.5385787 0.3262122 +0.3951413 0.5385787 0.3262122 +0.4108177 0.5385787 0.3262122 +0.4244723 0.5385787 0.3262122 +0.4365675 0.5385787 0.3262122 +0.4474232 0.5385787 0.3262122 +0.45727 0.5385787 0.3262122 +0.4662797 0.5385787 0.3262122 +0.4745834 0.5385787 0.3262122 +0.4822838 0.5385787 0.3262122 +0.4894626 0.5385787 0.3262122 +0.4961862 0.5385787 0.3262122 +0.5025087 0.5385787 0.3262122 +0.5084753 0.5385787 0.3262122 +0.514124 0.5385787 0.3262122 +0.519487 0.5385787 0.3262122 +0.5245917 0.5385787 0.3262122 +0.529462 0.5385787 0.3262122 +0.5341183 0.5385787 0.3262122 +0.5385787 0.5385787 0.3262122 +0.5428591 0.5385787 0.3262122 +0.5469733 0.5385787 0.3262122 +0.5509339 0.5385787 0.3262122 +0.5547519 0.5385787 0.3262122 +0.5584371 0.5385787 0.3262122 +0.5619986 0.5385787 0.3262122 +0.5654443 0.5385787 0.3262122 +0.5687816 0.5385787 0.3262122 +0.092819 0.5428591 0.3262122 +0.2262531 0.5428591 0.3262122 +0.2875993 0.5428591 0.3262122 +0.3262122 0.5428591 0.3262122 +0.3544566 0.5428591 0.3262122 +0.3767383 0.5428591 0.3262122 +0.3951413 0.5428591 0.3262122 +0.4108177 0.5428591 0.3262122 +0.4244723 0.5428591 0.3262122 +0.4365675 0.5428591 0.3262122 +0.4474232 0.5428591 0.3262122 +0.45727 0.5428591 0.3262122 +0.4662797 0.5428591 0.3262122 +0.4745834 0.5428591 0.3262122 +0.4822838 0.5428591 0.3262122 +0.4894626 0.5428591 0.3262122 +0.4961862 0.5428591 0.3262122 +0.5025087 0.5428591 0.3262122 +0.5084753 0.5428591 0.3262122 +0.514124 0.5428591 0.3262122 +0.519487 0.5428591 0.3262122 +0.5245917 0.5428591 0.3262122 +0.529462 0.5428591 0.3262122 +0.5341183 0.5428591 0.3262122 +0.5385787 0.5428591 0.3262122 +0.5428591 0.5428591 0.3262122 +0.5469733 0.5428591 0.3262122 +0.5509339 0.5428591 0.3262122 +0.5547519 0.5428591 0.3262122 +0.5584371 0.5428591 0.3262122 +0.5619986 0.5428591 0.3262122 +0.5654443 0.5428591 0.3262122 +0.5687816 0.5428591 0.3262122 +0.092819 0.5469733 0.3262122 +0.2262531 0.5469733 0.3262122 +0.2875993 0.5469733 0.3262122 +0.3262122 0.5469733 0.3262122 +0.3544566 0.5469733 0.3262122 +0.3767383 0.5469733 0.3262122 +0.3951413 0.5469733 0.3262122 +0.4108177 0.5469733 0.3262122 +0.4244723 0.5469733 0.3262122 +0.4365675 0.5469733 0.3262122 +0.4474232 0.5469733 0.3262122 +0.45727 0.5469733 0.3262122 +0.4662797 0.5469733 0.3262122 +0.4745834 0.5469733 0.3262122 +0.4822838 0.5469733 0.3262122 +0.4894626 0.5469733 0.3262122 +0.4961862 0.5469733 0.3262122 +0.5025087 0.5469733 0.3262122 +0.5084753 0.5469733 0.3262122 +0.514124 0.5469733 0.3262122 +0.519487 0.5469733 0.3262122 +0.5245917 0.5469733 0.3262122 +0.529462 0.5469733 0.3262122 +0.5341183 0.5469733 0.3262122 +0.5385787 0.5469733 0.3262122 +0.5428591 0.5469733 0.3262122 +0.5469733 0.5469733 0.3262122 +0.5509339 0.5469733 0.3262122 +0.5547519 0.5469733 0.3262122 +0.5584371 0.5469733 0.3262122 +0.5619986 0.5469733 0.3262122 +0.5654443 0.5469733 0.3262122 +0.5687816 0.5469733 0.3262122 +0.092819 0.5509339 0.3262122 +0.2262531 0.5509339 0.3262122 +0.2875993 0.5509339 0.3262122 +0.3262122 0.5509339 0.3262122 +0.3544566 0.5509339 0.3262122 +0.3767383 0.5509339 0.3262122 +0.3951413 0.5509339 0.3262122 +0.4108177 0.5509339 0.3262122 +0.4244723 0.5509339 0.3262122 +0.4365675 0.5509339 0.3262122 +0.4474232 0.5509339 0.3262122 +0.45727 0.5509339 0.3262122 +0.4662797 0.5509339 0.3262122 +0.4745834 0.5509339 0.3262122 +0.4822838 0.5509339 0.3262122 +0.4894626 0.5509339 0.3262122 +0.4961862 0.5509339 0.3262122 +0.5025087 0.5509339 0.3262122 +0.5084753 0.5509339 0.3262122 +0.514124 0.5509339 0.3262122 +0.519487 0.5509339 0.3262122 +0.5245917 0.5509339 0.3262122 +0.529462 0.5509339 0.3262122 +0.5341183 0.5509339 0.3262122 +0.5385787 0.5509339 0.3262122 +0.5428591 0.5509339 0.3262122 +0.5469733 0.5509339 0.3262122 +0.5509339 0.5509339 0.3262122 +0.5547519 0.5509339 0.3262122 +0.5584371 0.5509339 0.3262122 +0.5619986 0.5509339 0.3262122 +0.5654443 0.5509339 0.3262122 +0.5687816 0.5509339 0.3262122 +0.092819 0.5547519 0.3262122 +0.2262531 0.5547519 0.3262122 +0.2875993 0.5547519 0.3262122 +0.3262122 0.5547519 0.3262122 +0.3544566 0.5547519 0.3262122 +0.3767383 0.5547519 0.3262122 +0.3951413 0.5547519 0.3262122 +0.4108177 0.5547519 0.3262122 +0.4244723 0.5547519 0.3262122 +0.4365675 0.5547519 0.3262122 +0.4474232 0.5547519 0.3262122 +0.45727 0.5547519 0.3262122 +0.4662797 0.5547519 0.3262122 +0.4745834 0.5547519 0.3262122 +0.4822838 0.5547519 0.3262122 +0.4894626 0.5547519 0.3262122 +0.4961862 0.5547519 0.3262122 +0.5025087 0.5547519 0.3262122 +0.5084753 0.5547519 0.3262122 +0.514124 0.5547519 0.3262122 +0.519487 0.5547519 0.3262122 +0.5245917 0.5547519 0.3262122 +0.529462 0.5547519 0.3262122 +0.5341183 0.5547519 0.3262122 +0.5385787 0.5547519 0.3262122 +0.5428591 0.5547519 0.3262122 +0.5469733 0.5547519 0.3262122 +0.5509339 0.5547519 0.3262122 +0.5547519 0.5547519 0.3262122 +0.5584371 0.5547519 0.3262122 +0.5619986 0.5547519 0.3262122 +0.5654443 0.5547519 0.3262122 +0.5687816 0.5547519 0.3262122 +0.092819 0.5584371 0.3262122 +0.2262531 0.5584371 0.3262122 +0.2875993 0.5584371 0.3262122 +0.3262122 0.5584371 0.3262122 +0.3544566 0.5584371 0.3262122 +0.3767383 0.5584371 0.3262122 +0.3951413 0.5584371 0.3262122 +0.4108177 0.5584371 0.3262122 +0.4244723 0.5584371 0.3262122 +0.4365675 0.5584371 0.3262122 +0.4474232 0.5584371 0.3262122 +0.45727 0.5584371 0.3262122 +0.4662797 0.5584371 0.3262122 +0.4745834 0.5584371 0.3262122 +0.4822838 0.5584371 0.3262122 +0.4894626 0.5584371 0.3262122 +0.4961862 0.5584371 0.3262122 +0.5025087 0.5584371 0.3262122 +0.5084753 0.5584371 0.3262122 +0.514124 0.5584371 0.3262122 +0.519487 0.5584371 0.3262122 +0.5245917 0.5584371 0.3262122 +0.529462 0.5584371 0.3262122 +0.5341183 0.5584371 0.3262122 +0.5385787 0.5584371 0.3262122 +0.5428591 0.5584371 0.3262122 +0.5469733 0.5584371 0.3262122 +0.5509339 0.5584371 0.3262122 +0.5547519 0.5584371 0.3262122 +0.5584371 0.5584371 0.3262122 +0.5619986 0.5584371 0.3262122 +0.5654443 0.5584371 0.3262122 +0.5687816 0.5584371 0.3262122 +0.092819 0.5619986 0.3262122 +0.2262531 0.5619986 0.3262122 +0.2875993 0.5619986 0.3262122 +0.3262122 0.5619986 0.3262122 +0.3544566 0.5619986 0.3262122 +0.3767383 0.5619986 0.3262122 +0.3951413 0.5619986 0.3262122 +0.4108177 0.5619986 0.3262122 +0.4244723 0.5619986 0.3262122 +0.4365675 0.5619986 0.3262122 +0.4474232 0.5619986 0.3262122 +0.45727 0.5619986 0.3262122 +0.4662797 0.5619986 0.3262122 +0.4745834 0.5619986 0.3262122 +0.4822838 0.5619986 0.3262122 +0.4894626 0.5619986 0.3262122 +0.4961862 0.5619986 0.3262122 +0.5025087 0.5619986 0.3262122 +0.5084753 0.5619986 0.3262122 +0.514124 0.5619986 0.3262122 +0.519487 0.5619986 0.3262122 +0.5245917 0.5619986 0.3262122 +0.529462 0.5619986 0.3262122 +0.5341183 0.5619986 0.3262122 +0.5385787 0.5619986 0.3262122 +0.5428591 0.5619986 0.3262122 +0.5469733 0.5619986 0.3262122 +0.5509339 0.5619986 0.3262122 +0.5547519 0.5619986 0.3262122 +0.5584371 0.5619986 0.3262122 +0.5619986 0.5619986 0.3262122 +0.5654443 0.5619986 0.3262122 +0.5687816 0.5619986 0.3262122 +0.092819 0.5654443 0.3262122 +0.2262531 0.5654443 0.3262122 +0.2875993 0.5654443 0.3262122 +0.3262122 0.5654443 0.3262122 +0.3544566 0.5654443 0.3262122 +0.3767383 0.5654443 0.3262122 +0.3951413 0.5654443 0.3262122 +0.4108177 0.5654443 0.3262122 +0.4244723 0.5654443 0.3262122 +0.4365675 0.5654443 0.3262122 +0.4474232 0.5654443 0.3262122 +0.45727 0.5654443 0.3262122 +0.4662797 0.5654443 0.3262122 +0.4745834 0.5654443 0.3262122 +0.4822838 0.5654443 0.3262122 +0.4894626 0.5654443 0.3262122 +0.4961862 0.5654443 0.3262122 +0.5025087 0.5654443 0.3262122 +0.5084753 0.5654443 0.3262122 +0.514124 0.5654443 0.3262122 +0.519487 0.5654443 0.3262122 +0.5245917 0.5654443 0.3262122 +0.529462 0.5654443 0.3262122 +0.5341183 0.5654443 0.3262122 +0.5385787 0.5654443 0.3262122 +0.5428591 0.5654443 0.3262122 +0.5469733 0.5654443 0.3262122 +0.5509339 0.5654443 0.3262122 +0.5547519 0.5654443 0.3262122 +0.5584371 0.5654443 0.3262122 +0.5619986 0.5654443 0.3262122 +0.5654443 0.5654443 0.3262122 +0.5687816 0.5654443 0.3262122 +0.092819 0.5687816 0.3262122 +0.2262531 0.5687816 0.3262122 +0.2875993 0.5687816 0.3262122 +0.3262122 0.5687816 0.3262122 +0.3544566 0.5687816 0.3262122 +0.3767383 0.5687816 0.3262122 +0.3951413 0.5687816 0.3262122 +0.4108177 0.5687816 0.3262122 +0.4244723 0.5687816 0.3262122 +0.4365675 0.5687816 0.3262122 +0.4474232 0.5687816 0.3262122 +0.45727 0.5687816 0.3262122 +0.4662797 0.5687816 0.3262122 +0.4745834 0.5687816 0.3262122 +0.4822838 0.5687816 0.3262122 +0.4894626 0.5687816 0.3262122 +0.4961862 0.5687816 0.3262122 +0.5025087 0.5687816 0.3262122 +0.5084753 0.5687816 0.3262122 +0.514124 0.5687816 0.3262122 +0.519487 0.5687816 0.3262122 +0.5245917 0.5687816 0.3262122 +0.529462 0.5687816 0.3262122 +0.5341183 0.5687816 0.3262122 +0.5385787 0.5687816 0.3262122 +0.5428591 0.5687816 0.3262122 +0.5469733 0.5687816 0.3262122 +0.5509339 0.5687816 0.3262122 +0.5547519 0.5687816 0.3262122 +0.5584371 0.5687816 0.3262122 +0.5619986 0.5687816 0.3262122 +0.5654443 0.5687816 0.3262122 +0.5687816 0.5687816 0.3262122 +0.092819 0.092819 0.3544566 +0.2262531 0.092819 0.3544566 +0.2875993 0.092819 0.3544566 +0.3262122 0.092819 0.3544566 +0.3544566 0.092819 0.3544566 +0.3767383 0.092819 0.3544566 +0.3951413 0.092819 0.3544566 +0.4108177 0.092819 0.3544566 +0.4244723 0.092819 0.3544566 +0.4365675 0.092819 0.3544566 +0.4474232 0.092819 0.3544566 +0.45727 0.092819 0.3544566 +0.4662797 0.092819 0.3544566 +0.4745834 0.092819 0.3544566 +0.4822838 0.092819 0.3544566 +0.4894626 0.092819 0.3544566 +0.4961862 0.092819 0.3544566 +0.5025087 0.092819 0.3544566 +0.5084753 0.092819 0.3544566 +0.514124 0.092819 0.3544566 +0.519487 0.092819 0.3544566 +0.5245917 0.092819 0.3544566 +0.529462 0.092819 0.3544566 +0.5341183 0.092819 0.3544566 +0.5385787 0.092819 0.3544566 +0.5428591 0.092819 0.3544566 +0.5469733 0.092819 0.3544566 +0.5509339 0.092819 0.3544566 +0.5547519 0.092819 0.3544566 +0.5584371 0.092819 0.3544566 +0.5619986 0.092819 0.3544566 +0.5654443 0.092819 0.3544566 +0.5687816 0.092819 0.3544566 +0.092819 0.2262531 0.3544566 +0.2262531 0.2262531 0.3544566 +0.2875993 0.2262531 0.3544566 +0.3262122 0.2262531 0.3544566 +0.3544566 0.2262531 0.3544566 +0.3767383 0.2262531 0.3544566 +0.3951413 0.2262531 0.3544566 +0.4108177 0.2262531 0.3544566 +0.4244723 0.2262531 0.3544566 +0.4365675 0.2262531 0.3544566 +0.4474232 0.2262531 0.3544566 +0.45727 0.2262531 0.3544566 +0.4662797 0.2262531 0.3544566 +0.4745834 0.2262531 0.3544566 +0.4822838 0.2262531 0.3544566 +0.4894626 0.2262531 0.3544566 +0.4961862 0.2262531 0.3544566 +0.5025087 0.2262531 0.3544566 +0.5084753 0.2262531 0.3544566 +0.514124 0.2262531 0.3544566 +0.519487 0.2262531 0.3544566 +0.5245917 0.2262531 0.3544566 +0.529462 0.2262531 0.3544566 +0.5341183 0.2262531 0.3544566 +0.5385787 0.2262531 0.3544566 +0.5428591 0.2262531 0.3544566 +0.5469733 0.2262531 0.3544566 +0.5509339 0.2262531 0.3544566 +0.5547519 0.2262531 0.3544566 +0.5584371 0.2262531 0.3544566 +0.5619986 0.2262531 0.3544566 +0.5654443 0.2262531 0.3544566 +0.5687816 0.2262531 0.3544566 +0.092819 0.2875993 0.3544566 +0.2262531 0.2875993 0.3544566 +0.2875993 0.2875993 0.3544566 +0.3262122 0.2875993 0.3544566 +0.3544566 0.2875993 0.3544566 +0.3767383 0.2875993 0.3544566 +0.3951413 0.2875993 0.3544566 +0.4108177 0.2875993 0.3544566 +0.4244723 0.2875993 0.3544566 +0.4365675 0.2875993 0.3544566 +0.4474232 0.2875993 0.3544566 +0.45727 0.2875993 0.3544566 +0.4662797 0.2875993 0.3544566 +0.4745834 0.2875993 0.3544566 +0.4822838 0.2875993 0.3544566 +0.4894626 0.2875993 0.3544566 +0.4961862 0.2875993 0.3544566 +0.5025087 0.2875993 0.3544566 +0.5084753 0.2875993 0.3544566 +0.514124 0.2875993 0.3544566 +0.519487 0.2875993 0.3544566 +0.5245917 0.2875993 0.3544566 +0.529462 0.2875993 0.3544566 +0.5341183 0.2875993 0.3544566 +0.5385787 0.2875993 0.3544566 +0.5428591 0.2875993 0.3544566 +0.5469733 0.2875993 0.3544566 +0.5509339 0.2875993 0.3544566 +0.5547519 0.2875993 0.3544566 +0.5584371 0.2875993 0.3544566 +0.5619986 0.2875993 0.3544566 +0.5654443 0.2875993 0.3544566 +0.5687816 0.2875993 0.3544566 +0.092819 0.3262122 0.3544566 +0.2262531 0.3262122 0.3544566 +0.2875993 0.3262122 0.3544566 +0.3262122 0.3262122 0.3544566 +0.3544566 0.3262122 0.3544566 +0.3767383 0.3262122 0.3544566 +0.3951413 0.3262122 0.3544566 +0.4108177 0.3262122 0.3544566 +0.4244723 0.3262122 0.3544566 +0.4365675 0.3262122 0.3544566 +0.4474232 0.3262122 0.3544566 +0.45727 0.3262122 0.3544566 +0.4662797 0.3262122 0.3544566 +0.4745834 0.3262122 0.3544566 +0.4822838 0.3262122 0.3544566 +0.4894626 0.3262122 0.3544566 +0.4961862 0.3262122 0.3544566 +0.5025087 0.3262122 0.3544566 +0.5084753 0.3262122 0.3544566 +0.514124 0.3262122 0.3544566 +0.519487 0.3262122 0.3544566 +0.5245917 0.3262122 0.3544566 +0.529462 0.3262122 0.3544566 +0.5341183 0.3262122 0.3544566 +0.5385787 0.3262122 0.3544566 +0.5428591 0.3262122 0.3544566 +0.5469733 0.3262122 0.3544566 +0.5509339 0.3262122 0.3544566 +0.5547519 0.3262122 0.3544566 +0.5584371 0.3262122 0.3544566 +0.5619986 0.3262122 0.3544566 +0.5654443 0.3262122 0.3544566 +0.5687816 0.3262122 0.3544566 +0.092819 0.3544566 0.3544566 +0.2262531 0.3544566 0.3544566 +0.2875993 0.3544566 0.3544566 +0.3262122 0.3544566 0.3544566 +0.3544566 0.3544566 0.3544566 +0.3767383 0.3544566 0.3544566 +0.3951413 0.3544566 0.3544566 +0.4108177 0.3544566 0.3544566 +0.4244723 0.3544566 0.3544566 +0.4365675 0.3544566 0.3544566 +0.4474232 0.3544566 0.3544566 +0.45727 0.3544566 0.3544566 +0.4662797 0.3544566 0.3544566 +0.4745834 0.3544566 0.3544566 +0.4822838 0.3544566 0.3544566 +0.4894626 0.3544566 0.3544566 +0.4961862 0.3544566 0.3544566 +0.5025087 0.3544566 0.3544566 +0.5084753 0.3544566 0.3544566 +0.514124 0.3544566 0.3544566 +0.519487 0.3544566 0.3544566 +0.5245917 0.3544566 0.3544566 +0.529462 0.3544566 0.3544566 +0.5341183 0.3544566 0.3544566 +0.5385787 0.3544566 0.3544566 +0.5428591 0.3544566 0.3544566 +0.5469733 0.3544566 0.3544566 +0.5509339 0.3544566 0.3544566 +0.5547519 0.3544566 0.3544566 +0.5584371 0.3544566 0.3544566 +0.5619986 0.3544566 0.3544566 +0.5654443 0.3544566 0.3544566 +0.5687816 0.3544566 0.3544566 +0.092819 0.3767383 0.3544566 +0.2262531 0.3767383 0.3544566 +0.2875993 0.3767383 0.3544566 +0.3262122 0.3767383 0.3544566 +0.3544566 0.3767383 0.3544566 +0.3767383 0.3767383 0.3544566 +0.3951413 0.3767383 0.3544566 +0.4108177 0.3767383 0.3544566 +0.4244723 0.3767383 0.3544566 +0.4365675 0.3767383 0.3544566 +0.4474232 0.3767383 0.3544566 +0.45727 0.3767383 0.3544566 +0.4662797 0.3767383 0.3544566 +0.4745834 0.3767383 0.3544566 +0.4822838 0.3767383 0.3544566 +0.4894626 0.3767383 0.3544566 +0.4961862 0.3767383 0.3544566 +0.5025087 0.3767383 0.3544566 +0.5084753 0.3767383 0.3544566 +0.514124 0.3767383 0.3544566 +0.519487 0.3767383 0.3544566 +0.5245917 0.3767383 0.3544566 +0.529462 0.3767383 0.3544566 +0.5341183 0.3767383 0.3544566 +0.5385787 0.3767383 0.3544566 +0.5428591 0.3767383 0.3544566 +0.5469733 0.3767383 0.3544566 +0.5509339 0.3767383 0.3544566 +0.5547519 0.3767383 0.3544566 +0.5584371 0.3767383 0.3544566 +0.5619986 0.3767383 0.3544566 +0.5654443 0.3767383 0.3544566 +0.5687816 0.3767383 0.3544566 +0.092819 0.3951413 0.3544566 +0.2262531 0.3951413 0.3544566 +0.2875993 0.3951413 0.3544566 +0.3262122 0.3951413 0.3544566 +0.3544566 0.3951413 0.3544566 +0.3767383 0.3951413 0.3544566 +0.3951413 0.3951413 0.3544566 +0.4108177 0.3951413 0.3544566 +0.4244723 0.3951413 0.3544566 +0.4365675 0.3951413 0.3544566 +0.4474232 0.3951413 0.3544566 +0.45727 0.3951413 0.3544566 +0.4662797 0.3951413 0.3544566 +0.4745834 0.3951413 0.3544566 +0.4822838 0.3951413 0.3544566 +0.4894626 0.3951413 0.3544566 +0.4961862 0.3951413 0.3544566 +0.5025087 0.3951413 0.3544566 +0.5084753 0.3951413 0.3544566 +0.514124 0.3951413 0.3544566 +0.519487 0.3951413 0.3544566 +0.5245917 0.3951413 0.3544566 +0.529462 0.3951413 0.3544566 +0.5341183 0.3951413 0.3544566 +0.5385787 0.3951413 0.3544566 +0.5428591 0.3951413 0.3544566 +0.5469733 0.3951413 0.3544566 +0.5509339 0.3951413 0.3544566 +0.5547519 0.3951413 0.3544566 +0.5584371 0.3951413 0.3544566 +0.5619986 0.3951413 0.3544566 +0.5654443 0.3951413 0.3544566 +0.5687816 0.3951413 0.3544566 +0.092819 0.4108177 0.3544566 +0.2262531 0.4108177 0.3544566 +0.2875993 0.4108177 0.3544566 +0.3262122 0.4108177 0.3544566 +0.3544566 0.4108177 0.3544566 +0.3767383 0.4108177 0.3544566 +0.3951413 0.4108177 0.3544566 +0.4108177 0.4108177 0.3544566 +0.4244723 0.4108177 0.3544566 +0.4365675 0.4108177 0.3544566 +0.4474232 0.4108177 0.3544566 +0.45727 0.4108177 0.3544566 +0.4662797 0.4108177 0.3544566 +0.4745834 0.4108177 0.3544566 +0.4822838 0.4108177 0.3544566 +0.4894626 0.4108177 0.3544566 +0.4961862 0.4108177 0.3544566 +0.5025087 0.4108177 0.3544566 +0.5084753 0.4108177 0.3544566 +0.514124 0.4108177 0.3544566 +0.519487 0.4108177 0.3544566 +0.5245917 0.4108177 0.3544566 +0.529462 0.4108177 0.3544566 +0.5341183 0.4108177 0.3544566 +0.5385787 0.4108177 0.3544566 +0.5428591 0.4108177 0.3544566 +0.5469733 0.4108177 0.3544566 +0.5509339 0.4108177 0.3544566 +0.5547519 0.4108177 0.3544566 +0.5584371 0.4108177 0.3544566 +0.5619986 0.4108177 0.3544566 +0.5654443 0.4108177 0.3544566 +0.5687816 0.4108177 0.3544566 +0.092819 0.4244723 0.3544566 +0.2262531 0.4244723 0.3544566 +0.2875993 0.4244723 0.3544566 +0.3262122 0.4244723 0.3544566 +0.3544566 0.4244723 0.3544566 +0.3767383 0.4244723 0.3544566 +0.3951413 0.4244723 0.3544566 +0.4108177 0.4244723 0.3544566 +0.4244723 0.4244723 0.3544566 +0.4365675 0.4244723 0.3544566 +0.4474232 0.4244723 0.3544566 +0.45727 0.4244723 0.3544566 +0.4662797 0.4244723 0.3544566 +0.4745834 0.4244723 0.3544566 +0.4822838 0.4244723 0.3544566 +0.4894626 0.4244723 0.3544566 +0.4961862 0.4244723 0.3544566 +0.5025087 0.4244723 0.3544566 +0.5084753 0.4244723 0.3544566 +0.514124 0.4244723 0.3544566 +0.519487 0.4244723 0.3544566 +0.5245917 0.4244723 0.3544566 +0.529462 0.4244723 0.3544566 +0.5341183 0.4244723 0.3544566 +0.5385787 0.4244723 0.3544566 +0.5428591 0.4244723 0.3544566 +0.5469733 0.4244723 0.3544566 +0.5509339 0.4244723 0.3544566 +0.5547519 0.4244723 0.3544566 +0.5584371 0.4244723 0.3544566 +0.5619986 0.4244723 0.3544566 +0.5654443 0.4244723 0.3544566 +0.5687816 0.4244723 0.3544566 +0.092819 0.4365675 0.3544566 +0.2262531 0.4365675 0.3544566 +0.2875993 0.4365675 0.3544566 +0.3262122 0.4365675 0.3544566 +0.3544566 0.4365675 0.3544566 +0.3767383 0.4365675 0.3544566 +0.3951413 0.4365675 0.3544566 +0.4108177 0.4365675 0.3544566 +0.4244723 0.4365675 0.3544566 +0.4365675 0.4365675 0.3544566 +0.4474232 0.4365675 0.3544566 +0.45727 0.4365675 0.3544566 +0.4662797 0.4365675 0.3544566 +0.4745834 0.4365675 0.3544566 +0.4822838 0.4365675 0.3544566 +0.4894626 0.4365675 0.3544566 +0.4961862 0.4365675 0.3544566 +0.5025087 0.4365675 0.3544566 +0.5084753 0.4365675 0.3544566 +0.514124 0.4365675 0.3544566 +0.519487 0.4365675 0.3544566 +0.5245917 0.4365675 0.3544566 +0.529462 0.4365675 0.3544566 +0.5341183 0.4365675 0.3544566 +0.5385787 0.4365675 0.3544566 +0.5428591 0.4365675 0.3544566 +0.5469733 0.4365675 0.3544566 +0.5509339 0.4365675 0.3544566 +0.5547519 0.4365675 0.3544566 +0.5584371 0.4365675 0.3544566 +0.5619986 0.4365675 0.3544566 +0.5654443 0.4365675 0.3544566 +0.5687816 0.4365675 0.3544566 +0.092819 0.4474232 0.3544566 +0.2262531 0.4474232 0.3544566 +0.2875993 0.4474232 0.3544566 +0.3262122 0.4474232 0.3544566 +0.3544566 0.4474232 0.3544566 +0.3767383 0.4474232 0.3544566 +0.3951413 0.4474232 0.3544566 +0.4108177 0.4474232 0.3544566 +0.4244723 0.4474232 0.3544566 +0.4365675 0.4474232 0.3544566 +0.4474232 0.4474232 0.3544566 +0.45727 0.4474232 0.3544566 +0.4662797 0.4474232 0.3544566 +0.4745834 0.4474232 0.3544566 +0.4822838 0.4474232 0.3544566 +0.4894626 0.4474232 0.3544566 +0.4961862 0.4474232 0.3544566 +0.5025087 0.4474232 0.3544566 +0.5084753 0.4474232 0.3544566 +0.514124 0.4474232 0.3544566 +0.519487 0.4474232 0.3544566 +0.5245917 0.4474232 0.3544566 +0.529462 0.4474232 0.3544566 +0.5341183 0.4474232 0.3544566 +0.5385787 0.4474232 0.3544566 +0.5428591 0.4474232 0.3544566 +0.5469733 0.4474232 0.3544566 +0.5509339 0.4474232 0.3544566 +0.5547519 0.4474232 0.3544566 +0.5584371 0.4474232 0.3544566 +0.5619986 0.4474232 0.3544566 +0.5654443 0.4474232 0.3544566 +0.5687816 0.4474232 0.3544566 +0.092819 0.45727 0.3544566 +0.2262531 0.45727 0.3544566 +0.2875993 0.45727 0.3544566 +0.3262122 0.45727 0.3544566 +0.3544566 0.45727 0.3544566 +0.3767383 0.45727 0.3544566 +0.3951413 0.45727 0.3544566 +0.4108177 0.45727 0.3544566 +0.4244723 0.45727 0.3544566 +0.4365675 0.45727 0.3544566 +0.4474232 0.45727 0.3544566 +0.45727 0.45727 0.3544566 +0.4662797 0.45727 0.3544566 +0.4745834 0.45727 0.3544566 +0.4822838 0.45727 0.3544566 +0.4894626 0.45727 0.3544566 +0.4961862 0.45727 0.3544566 +0.5025087 0.45727 0.3544566 +0.5084753 0.45727 0.3544566 +0.514124 0.45727 0.3544566 +0.519487 0.45727 0.3544566 +0.5245917 0.45727 0.3544566 +0.529462 0.45727 0.3544566 +0.5341183 0.45727 0.3544566 +0.5385787 0.45727 0.3544566 +0.5428591 0.45727 0.3544566 +0.5469733 0.45727 0.3544566 +0.5509339 0.45727 0.3544566 +0.5547519 0.45727 0.3544566 +0.5584371 0.45727 0.3544566 +0.5619986 0.45727 0.3544566 +0.5654443 0.45727 0.3544566 +0.5687816 0.45727 0.3544566 +0.092819 0.4662797 0.3544566 +0.2262531 0.4662797 0.3544566 +0.2875993 0.4662797 0.3544566 +0.3262122 0.4662797 0.3544566 +0.3544566 0.4662797 0.3544566 +0.3767383 0.4662797 0.3544566 +0.3951413 0.4662797 0.3544566 +0.4108177 0.4662797 0.3544566 +0.4244723 0.4662797 0.3544566 +0.4365675 0.4662797 0.3544566 +0.4474232 0.4662797 0.3544566 +0.45727 0.4662797 0.3544566 +0.4662797 0.4662797 0.3544566 +0.4745834 0.4662797 0.3544566 +0.4822838 0.4662797 0.3544566 +0.4894626 0.4662797 0.3544566 +0.4961862 0.4662797 0.3544566 +0.5025087 0.4662797 0.3544566 +0.5084753 0.4662797 0.3544566 +0.514124 0.4662797 0.3544566 +0.519487 0.4662797 0.3544566 +0.5245917 0.4662797 0.3544566 +0.529462 0.4662797 0.3544566 +0.5341183 0.4662797 0.3544566 +0.5385787 0.4662797 0.3544566 +0.5428591 0.4662797 0.3544566 +0.5469733 0.4662797 0.3544566 +0.5509339 0.4662797 0.3544566 +0.5547519 0.4662797 0.3544566 +0.5584371 0.4662797 0.3544566 +0.5619986 0.4662797 0.3544566 +0.5654443 0.4662797 0.3544566 +0.5687816 0.4662797 0.3544566 +0.092819 0.4745834 0.3544566 +0.2262531 0.4745834 0.3544566 +0.2875993 0.4745834 0.3544566 +0.3262122 0.4745834 0.3544566 +0.3544566 0.4745834 0.3544566 +0.3767383 0.4745834 0.3544566 +0.3951413 0.4745834 0.3544566 +0.4108177 0.4745834 0.3544566 +0.4244723 0.4745834 0.3544566 +0.4365675 0.4745834 0.3544566 +0.4474232 0.4745834 0.3544566 +0.45727 0.4745834 0.3544566 +0.4662797 0.4745834 0.3544566 +0.4745834 0.4745834 0.3544566 +0.4822838 0.4745834 0.3544566 +0.4894626 0.4745834 0.3544566 +0.4961862 0.4745834 0.3544566 +0.5025087 0.4745834 0.3544566 +0.5084753 0.4745834 0.3544566 +0.514124 0.4745834 0.3544566 +0.519487 0.4745834 0.3544566 +0.5245917 0.4745834 0.3544566 +0.529462 0.4745834 0.3544566 +0.5341183 0.4745834 0.3544566 +0.5385787 0.4745834 0.3544566 +0.5428591 0.4745834 0.3544566 +0.5469733 0.4745834 0.3544566 +0.5509339 0.4745834 0.3544566 +0.5547519 0.4745834 0.3544566 +0.5584371 0.4745834 0.3544566 +0.5619986 0.4745834 0.3544566 +0.5654443 0.4745834 0.3544566 +0.5687816 0.4745834 0.3544566 +0.092819 0.4822838 0.3544566 +0.2262531 0.4822838 0.3544566 +0.2875993 0.4822838 0.3544566 +0.3262122 0.4822838 0.3544566 +0.3544566 0.4822838 0.3544566 +0.3767383 0.4822838 0.3544566 +0.3951413 0.4822838 0.3544566 +0.4108177 0.4822838 0.3544566 +0.4244723 0.4822838 0.3544566 +0.4365675 0.4822838 0.3544566 +0.4474232 0.4822838 0.3544566 +0.45727 0.4822838 0.3544566 +0.4662797 0.4822838 0.3544566 +0.4745834 0.4822838 0.3544566 +0.4822838 0.4822838 0.3544566 +0.4894626 0.4822838 0.3544566 +0.4961862 0.4822838 0.3544566 +0.5025087 0.4822838 0.3544566 +0.5084753 0.4822838 0.3544566 +0.514124 0.4822838 0.3544566 +0.519487 0.4822838 0.3544566 +0.5245917 0.4822838 0.3544566 +0.529462 0.4822838 0.3544566 +0.5341183 0.4822838 0.3544566 +0.5385787 0.4822838 0.3544566 +0.5428591 0.4822838 0.3544566 +0.5469733 0.4822838 0.3544566 +0.5509339 0.4822838 0.3544566 +0.5547519 0.4822838 0.3544566 +0.5584371 0.4822838 0.3544566 +0.5619986 0.4822838 0.3544566 +0.5654443 0.4822838 0.3544566 +0.5687816 0.4822838 0.3544566 +0.092819 0.4894626 0.3544566 +0.2262531 0.4894626 0.3544566 +0.2875993 0.4894626 0.3544566 +0.3262122 0.4894626 0.3544566 +0.3544566 0.4894626 0.3544566 +0.3767383 0.4894626 0.3544566 +0.3951413 0.4894626 0.3544566 +0.4108177 0.4894626 0.3544566 +0.4244723 0.4894626 0.3544566 +0.4365675 0.4894626 0.3544566 +0.4474232 0.4894626 0.3544566 +0.45727 0.4894626 0.3544566 +0.4662797 0.4894626 0.3544566 +0.4745834 0.4894626 0.3544566 +0.4822838 0.4894626 0.3544566 +0.4894626 0.4894626 0.3544566 +0.4961862 0.4894626 0.3544566 +0.5025087 0.4894626 0.3544566 +0.5084753 0.4894626 0.3544566 +0.514124 0.4894626 0.3544566 +0.519487 0.4894626 0.3544566 +0.5245917 0.4894626 0.3544566 +0.529462 0.4894626 0.3544566 +0.5341183 0.4894626 0.3544566 +0.5385787 0.4894626 0.3544566 +0.5428591 0.4894626 0.3544566 +0.5469733 0.4894626 0.3544566 +0.5509339 0.4894626 0.3544566 +0.5547519 0.4894626 0.3544566 +0.5584371 0.4894626 0.3544566 +0.5619986 0.4894626 0.3544566 +0.5654443 0.4894626 0.3544566 +0.5687816 0.4894626 0.3544566 +0.092819 0.4961862 0.3544566 +0.2262531 0.4961862 0.3544566 +0.2875993 0.4961862 0.3544566 +0.3262122 0.4961862 0.3544566 +0.3544566 0.4961862 0.3544566 +0.3767383 0.4961862 0.3544566 +0.3951413 0.4961862 0.3544566 +0.4108177 0.4961862 0.3544566 +0.4244723 0.4961862 0.3544566 +0.4365675 0.4961862 0.3544566 +0.4474232 0.4961862 0.3544566 +0.45727 0.4961862 0.3544566 +0.4662797 0.4961862 0.3544566 +0.4745834 0.4961862 0.3544566 +0.4822838 0.4961862 0.3544566 +0.4894626 0.4961862 0.3544566 +0.4961862 0.4961862 0.3544566 +0.5025087 0.4961862 0.3544566 +0.5084753 0.4961862 0.3544566 +0.514124 0.4961862 0.3544566 +0.519487 0.4961862 0.3544566 +0.5245917 0.4961862 0.3544566 +0.529462 0.4961862 0.3544566 +0.5341183 0.4961862 0.3544566 +0.5385787 0.4961862 0.3544566 +0.5428591 0.4961862 0.3544566 +0.5469733 0.4961862 0.3544566 +0.5509339 0.4961862 0.3544566 +0.5547519 0.4961862 0.3544566 +0.5584371 0.4961862 0.3544566 +0.5619986 0.4961862 0.3544566 +0.5654443 0.4961862 0.3544566 +0.5687816 0.4961862 0.3544566 +0.092819 0.5025087 0.3544566 +0.2262531 0.5025087 0.3544566 +0.2875993 0.5025087 0.3544566 +0.3262122 0.5025087 0.3544566 +0.3544566 0.5025087 0.3544566 +0.3767383 0.5025087 0.3544566 +0.3951413 0.5025087 0.3544566 +0.4108177 0.5025087 0.3544566 +0.4244723 0.5025087 0.3544566 +0.4365675 0.5025087 0.3544566 +0.4474232 0.5025087 0.3544566 +0.45727 0.5025087 0.3544566 +0.4662797 0.5025087 0.3544566 +0.4745834 0.5025087 0.3544566 +0.4822838 0.5025087 0.3544566 +0.4894626 0.5025087 0.3544566 +0.4961862 0.5025087 0.3544566 +0.5025087 0.5025087 0.3544566 +0.5084753 0.5025087 0.3544566 +0.514124 0.5025087 0.3544566 +0.519487 0.5025087 0.3544566 +0.5245917 0.5025087 0.3544566 +0.529462 0.5025087 0.3544566 +0.5341183 0.5025087 0.3544566 +0.5385787 0.5025087 0.3544566 +0.5428591 0.5025087 0.3544566 +0.5469733 0.5025087 0.3544566 +0.5509339 0.5025087 0.3544566 +0.5547519 0.5025087 0.3544566 +0.5584371 0.5025087 0.3544566 +0.5619986 0.5025087 0.3544566 +0.5654443 0.5025087 0.3544566 +0.5687816 0.5025087 0.3544566 +0.092819 0.5084753 0.3544566 +0.2262531 0.5084753 0.3544566 +0.2875993 0.5084753 0.3544566 +0.3262122 0.5084753 0.3544566 +0.3544566 0.5084753 0.3544566 +0.3767383 0.5084753 0.3544566 +0.3951413 0.5084753 0.3544566 +0.4108177 0.5084753 0.3544566 +0.4244723 0.5084753 0.3544566 +0.4365675 0.5084753 0.3544566 +0.4474232 0.5084753 0.3544566 +0.45727 0.5084753 0.3544566 +0.4662797 0.5084753 0.3544566 +0.4745834 0.5084753 0.3544566 +0.4822838 0.5084753 0.3544566 +0.4894626 0.5084753 0.3544566 +0.4961862 0.5084753 0.3544566 +0.5025087 0.5084753 0.3544566 +0.5084753 0.5084753 0.3544566 +0.514124 0.5084753 0.3544566 +0.519487 0.5084753 0.3544566 +0.5245917 0.5084753 0.3544566 +0.529462 0.5084753 0.3544566 +0.5341183 0.5084753 0.3544566 +0.5385787 0.5084753 0.3544566 +0.5428591 0.5084753 0.3544566 +0.5469733 0.5084753 0.3544566 +0.5509339 0.5084753 0.3544566 +0.5547519 0.5084753 0.3544566 +0.5584371 0.5084753 0.3544566 +0.5619986 0.5084753 0.3544566 +0.5654443 0.5084753 0.3544566 +0.5687816 0.5084753 0.3544566 +0.092819 0.514124 0.3544566 +0.2262531 0.514124 0.3544566 +0.2875993 0.514124 0.3544566 +0.3262122 0.514124 0.3544566 +0.3544566 0.514124 0.3544566 +0.3767383 0.514124 0.3544566 +0.3951413 0.514124 0.3544566 +0.4108177 0.514124 0.3544566 +0.4244723 0.514124 0.3544566 +0.4365675 0.514124 0.3544566 +0.4474232 0.514124 0.3544566 +0.45727 0.514124 0.3544566 +0.4662797 0.514124 0.3544566 +0.4745834 0.514124 0.3544566 +0.4822838 0.514124 0.3544566 +0.4894626 0.514124 0.3544566 +0.4961862 0.514124 0.3544566 +0.5025087 0.514124 0.3544566 +0.5084753 0.514124 0.3544566 +0.514124 0.514124 0.3544566 +0.519487 0.514124 0.3544566 +0.5245917 0.514124 0.3544566 +0.529462 0.514124 0.3544566 +0.5341183 0.514124 0.3544566 +0.5385787 0.514124 0.3544566 +0.5428591 0.514124 0.3544566 +0.5469733 0.514124 0.3544566 +0.5509339 0.514124 0.3544566 +0.5547519 0.514124 0.3544566 +0.5584371 0.514124 0.3544566 +0.5619986 0.514124 0.3544566 +0.5654443 0.514124 0.3544566 +0.5687816 0.514124 0.3544566 +0.092819 0.519487 0.3544566 +0.2262531 0.519487 0.3544566 +0.2875993 0.519487 0.3544566 +0.3262122 0.519487 0.3544566 +0.3544566 0.519487 0.3544566 +0.3767383 0.519487 0.3544566 +0.3951413 0.519487 0.3544566 +0.4108177 0.519487 0.3544566 +0.4244723 0.519487 0.3544566 +0.4365675 0.519487 0.3544566 +0.4474232 0.519487 0.3544566 +0.45727 0.519487 0.3544566 +0.4662797 0.519487 0.3544566 +0.4745834 0.519487 0.3544566 +0.4822838 0.519487 0.3544566 +0.4894626 0.519487 0.3544566 +0.4961862 0.519487 0.3544566 +0.5025087 0.519487 0.3544566 +0.5084753 0.519487 0.3544566 +0.514124 0.519487 0.3544566 +0.519487 0.519487 0.3544566 +0.5245917 0.519487 0.3544566 +0.529462 0.519487 0.3544566 +0.5341183 0.519487 0.3544566 +0.5385787 0.519487 0.3544566 +0.5428591 0.519487 0.3544566 +0.5469733 0.519487 0.3544566 +0.5509339 0.519487 0.3544566 +0.5547519 0.519487 0.3544566 +0.5584371 0.519487 0.3544566 +0.5619986 0.519487 0.3544566 +0.5654443 0.519487 0.3544566 +0.5687816 0.519487 0.3544566 +0.092819 0.5245917 0.3544566 +0.2262531 0.5245917 0.3544566 +0.2875993 0.5245917 0.3544566 +0.3262122 0.5245917 0.3544566 +0.3544566 0.5245917 0.3544566 +0.3767383 0.5245917 0.3544566 +0.3951413 0.5245917 0.3544566 +0.4108177 0.5245917 0.3544566 +0.4244723 0.5245917 0.3544566 +0.4365675 0.5245917 0.3544566 +0.4474232 0.5245917 0.3544566 +0.45727 0.5245917 0.3544566 +0.4662797 0.5245917 0.3544566 +0.4745834 0.5245917 0.3544566 +0.4822838 0.5245917 0.3544566 +0.4894626 0.5245917 0.3544566 +0.4961862 0.5245917 0.3544566 +0.5025087 0.5245917 0.3544566 +0.5084753 0.5245917 0.3544566 +0.514124 0.5245917 0.3544566 +0.519487 0.5245917 0.3544566 +0.5245917 0.5245917 0.3544566 +0.529462 0.5245917 0.3544566 +0.5341183 0.5245917 0.3544566 +0.5385787 0.5245917 0.3544566 +0.5428591 0.5245917 0.3544566 +0.5469733 0.5245917 0.3544566 +0.5509339 0.5245917 0.3544566 +0.5547519 0.5245917 0.3544566 +0.5584371 0.5245917 0.3544566 +0.5619986 0.5245917 0.3544566 +0.5654443 0.5245917 0.3544566 +0.5687816 0.5245917 0.3544566 +0.092819 0.529462 0.3544566 +0.2262531 0.529462 0.3544566 +0.2875993 0.529462 0.3544566 +0.3262122 0.529462 0.3544566 +0.3544566 0.529462 0.3544566 +0.3767383 0.529462 0.3544566 +0.3951413 0.529462 0.3544566 +0.4108177 0.529462 0.3544566 +0.4244723 0.529462 0.3544566 +0.4365675 0.529462 0.3544566 +0.4474232 0.529462 0.3544566 +0.45727 0.529462 0.3544566 +0.4662797 0.529462 0.3544566 +0.4745834 0.529462 0.3544566 +0.4822838 0.529462 0.3544566 +0.4894626 0.529462 0.3544566 +0.4961862 0.529462 0.3544566 +0.5025087 0.529462 0.3544566 +0.5084753 0.529462 0.3544566 +0.514124 0.529462 0.3544566 +0.519487 0.529462 0.3544566 +0.5245917 0.529462 0.3544566 +0.529462 0.529462 0.3544566 +0.5341183 0.529462 0.3544566 +0.5385787 0.529462 0.3544566 +0.5428591 0.529462 0.3544566 +0.5469733 0.529462 0.3544566 +0.5509339 0.529462 0.3544566 +0.5547519 0.529462 0.3544566 +0.5584371 0.529462 0.3544566 +0.5619986 0.529462 0.3544566 +0.5654443 0.529462 0.3544566 +0.5687816 0.529462 0.3544566 +0.092819 0.5341183 0.3544566 +0.2262531 0.5341183 0.3544566 +0.2875993 0.5341183 0.3544566 +0.3262122 0.5341183 0.3544566 +0.3544566 0.5341183 0.3544566 +0.3767383 0.5341183 0.3544566 +0.3951413 0.5341183 0.3544566 +0.4108177 0.5341183 0.3544566 +0.4244723 0.5341183 0.3544566 +0.4365675 0.5341183 0.3544566 +0.4474232 0.5341183 0.3544566 +0.45727 0.5341183 0.3544566 +0.4662797 0.5341183 0.3544566 +0.4745834 0.5341183 0.3544566 +0.4822838 0.5341183 0.3544566 +0.4894626 0.5341183 0.3544566 +0.4961862 0.5341183 0.3544566 +0.5025087 0.5341183 0.3544566 +0.5084753 0.5341183 0.3544566 +0.514124 0.5341183 0.3544566 +0.519487 0.5341183 0.3544566 +0.5245917 0.5341183 0.3544566 +0.529462 0.5341183 0.3544566 +0.5341183 0.5341183 0.3544566 +0.5385787 0.5341183 0.3544566 +0.5428591 0.5341183 0.3544566 +0.5469733 0.5341183 0.3544566 +0.5509339 0.5341183 0.3544566 +0.5547519 0.5341183 0.3544566 +0.5584371 0.5341183 0.3544566 +0.5619986 0.5341183 0.3544566 +0.5654443 0.5341183 0.3544566 +0.5687816 0.5341183 0.3544566 +0.092819 0.5385787 0.3544566 +0.2262531 0.5385787 0.3544566 +0.2875993 0.5385787 0.3544566 +0.3262122 0.5385787 0.3544566 +0.3544566 0.5385787 0.3544566 +0.3767383 0.5385787 0.3544566 +0.3951413 0.5385787 0.3544566 +0.4108177 0.5385787 0.3544566 +0.4244723 0.5385787 0.3544566 +0.4365675 0.5385787 0.3544566 +0.4474232 0.5385787 0.3544566 +0.45727 0.5385787 0.3544566 +0.4662797 0.5385787 0.3544566 +0.4745834 0.5385787 0.3544566 +0.4822838 0.5385787 0.3544566 +0.4894626 0.5385787 0.3544566 +0.4961862 0.5385787 0.3544566 +0.5025087 0.5385787 0.3544566 +0.5084753 0.5385787 0.3544566 +0.514124 0.5385787 0.3544566 +0.519487 0.5385787 0.3544566 +0.5245917 0.5385787 0.3544566 +0.529462 0.5385787 0.3544566 +0.5341183 0.5385787 0.3544566 +0.5385787 0.5385787 0.3544566 +0.5428591 0.5385787 0.3544566 +0.5469733 0.5385787 0.3544566 +0.5509339 0.5385787 0.3544566 +0.5547519 0.5385787 0.3544566 +0.5584371 0.5385787 0.3544566 +0.5619986 0.5385787 0.3544566 +0.5654443 0.5385787 0.3544566 +0.5687816 0.5385787 0.3544566 +0.092819 0.5428591 0.3544566 +0.2262531 0.5428591 0.3544566 +0.2875993 0.5428591 0.3544566 +0.3262122 0.5428591 0.3544566 +0.3544566 0.5428591 0.3544566 +0.3767383 0.5428591 0.3544566 +0.3951413 0.5428591 0.3544566 +0.4108177 0.5428591 0.3544566 +0.4244723 0.5428591 0.3544566 +0.4365675 0.5428591 0.3544566 +0.4474232 0.5428591 0.3544566 +0.45727 0.5428591 0.3544566 +0.4662797 0.5428591 0.3544566 +0.4745834 0.5428591 0.3544566 +0.4822838 0.5428591 0.3544566 +0.4894626 0.5428591 0.3544566 +0.4961862 0.5428591 0.3544566 +0.5025087 0.5428591 0.3544566 +0.5084753 0.5428591 0.3544566 +0.514124 0.5428591 0.3544566 +0.519487 0.5428591 0.3544566 +0.5245917 0.5428591 0.3544566 +0.529462 0.5428591 0.3544566 +0.5341183 0.5428591 0.3544566 +0.5385787 0.5428591 0.3544566 +0.5428591 0.5428591 0.3544566 +0.5469733 0.5428591 0.3544566 +0.5509339 0.5428591 0.3544566 +0.5547519 0.5428591 0.3544566 +0.5584371 0.5428591 0.3544566 +0.5619986 0.5428591 0.3544566 +0.5654443 0.5428591 0.3544566 +0.5687816 0.5428591 0.3544566 +0.092819 0.5469733 0.3544566 +0.2262531 0.5469733 0.3544566 +0.2875993 0.5469733 0.3544566 +0.3262122 0.5469733 0.3544566 +0.3544566 0.5469733 0.3544566 +0.3767383 0.5469733 0.3544566 +0.3951413 0.5469733 0.3544566 +0.4108177 0.5469733 0.3544566 +0.4244723 0.5469733 0.3544566 +0.4365675 0.5469733 0.3544566 +0.4474232 0.5469733 0.3544566 +0.45727 0.5469733 0.3544566 +0.4662797 0.5469733 0.3544566 +0.4745834 0.5469733 0.3544566 +0.4822838 0.5469733 0.3544566 +0.4894626 0.5469733 0.3544566 +0.4961862 0.5469733 0.3544566 +0.5025087 0.5469733 0.3544566 +0.5084753 0.5469733 0.3544566 +0.514124 0.5469733 0.3544566 +0.519487 0.5469733 0.3544566 +0.5245917 0.5469733 0.3544566 +0.529462 0.5469733 0.3544566 +0.5341183 0.5469733 0.3544566 +0.5385787 0.5469733 0.3544566 +0.5428591 0.5469733 0.3544566 +0.5469733 0.5469733 0.3544566 +0.5509339 0.5469733 0.3544566 +0.5547519 0.5469733 0.3544566 +0.5584371 0.5469733 0.3544566 +0.5619986 0.5469733 0.3544566 +0.5654443 0.5469733 0.3544566 +0.5687816 0.5469733 0.3544566 +0.092819 0.5509339 0.3544566 +0.2262531 0.5509339 0.3544566 +0.2875993 0.5509339 0.3544566 +0.3262122 0.5509339 0.3544566 +0.3544566 0.5509339 0.3544566 +0.3767383 0.5509339 0.3544566 +0.3951413 0.5509339 0.3544566 +0.4108177 0.5509339 0.3544566 +0.4244723 0.5509339 0.3544566 +0.4365675 0.5509339 0.3544566 +0.4474232 0.5509339 0.3544566 +0.45727 0.5509339 0.3544566 +0.4662797 0.5509339 0.3544566 +0.4745834 0.5509339 0.3544566 +0.4822838 0.5509339 0.3544566 +0.4894626 0.5509339 0.3544566 +0.4961862 0.5509339 0.3544566 +0.5025087 0.5509339 0.3544566 +0.5084753 0.5509339 0.3544566 +0.514124 0.5509339 0.3544566 +0.519487 0.5509339 0.3544566 +0.5245917 0.5509339 0.3544566 +0.529462 0.5509339 0.3544566 +0.5341183 0.5509339 0.3544566 +0.5385787 0.5509339 0.3544566 +0.5428591 0.5509339 0.3544566 +0.5469733 0.5509339 0.3544566 +0.5509339 0.5509339 0.3544566 +0.5547519 0.5509339 0.3544566 +0.5584371 0.5509339 0.3544566 +0.5619986 0.5509339 0.3544566 +0.5654443 0.5509339 0.3544566 +0.5687816 0.5509339 0.3544566 +0.092819 0.5547519 0.3544566 +0.2262531 0.5547519 0.3544566 +0.2875993 0.5547519 0.3544566 +0.3262122 0.5547519 0.3544566 +0.3544566 0.5547519 0.3544566 +0.3767383 0.5547519 0.3544566 +0.3951413 0.5547519 0.3544566 +0.4108177 0.5547519 0.3544566 +0.4244723 0.5547519 0.3544566 +0.4365675 0.5547519 0.3544566 +0.4474232 0.5547519 0.3544566 +0.45727 0.5547519 0.3544566 +0.4662797 0.5547519 0.3544566 +0.4745834 0.5547519 0.3544566 +0.4822838 0.5547519 0.3544566 +0.4894626 0.5547519 0.3544566 +0.4961862 0.5547519 0.3544566 +0.5025087 0.5547519 0.3544566 +0.5084753 0.5547519 0.3544566 +0.514124 0.5547519 0.3544566 +0.519487 0.5547519 0.3544566 +0.5245917 0.5547519 0.3544566 +0.529462 0.5547519 0.3544566 +0.5341183 0.5547519 0.3544566 +0.5385787 0.5547519 0.3544566 +0.5428591 0.5547519 0.3544566 +0.5469733 0.5547519 0.3544566 +0.5509339 0.5547519 0.3544566 +0.5547519 0.5547519 0.3544566 +0.5584371 0.5547519 0.3544566 +0.5619986 0.5547519 0.3544566 +0.5654443 0.5547519 0.3544566 +0.5687816 0.5547519 0.3544566 +0.092819 0.5584371 0.3544566 +0.2262531 0.5584371 0.3544566 +0.2875993 0.5584371 0.3544566 +0.3262122 0.5584371 0.3544566 +0.3544566 0.5584371 0.3544566 +0.3767383 0.5584371 0.3544566 +0.3951413 0.5584371 0.3544566 +0.4108177 0.5584371 0.3544566 +0.4244723 0.5584371 0.3544566 +0.4365675 0.5584371 0.3544566 +0.4474232 0.5584371 0.3544566 +0.45727 0.5584371 0.3544566 +0.4662797 0.5584371 0.3544566 +0.4745834 0.5584371 0.3544566 +0.4822838 0.5584371 0.3544566 +0.4894626 0.5584371 0.3544566 +0.4961862 0.5584371 0.3544566 +0.5025087 0.5584371 0.3544566 +0.5084753 0.5584371 0.3544566 +0.514124 0.5584371 0.3544566 +0.519487 0.5584371 0.3544566 +0.5245917 0.5584371 0.3544566 +0.529462 0.5584371 0.3544566 +0.5341183 0.5584371 0.3544566 +0.5385787 0.5584371 0.3544566 +0.5428591 0.5584371 0.3544566 +0.5469733 0.5584371 0.3544566 +0.5509339 0.5584371 0.3544566 +0.5547519 0.5584371 0.3544566 +0.5584371 0.5584371 0.3544566 +0.5619986 0.5584371 0.3544566 +0.5654443 0.5584371 0.3544566 +0.5687816 0.5584371 0.3544566 +0.092819 0.5619986 0.3544566 +0.2262531 0.5619986 0.3544566 +0.2875993 0.5619986 0.3544566 +0.3262122 0.5619986 0.3544566 +0.3544566 0.5619986 0.3544566 +0.3767383 0.5619986 0.3544566 +0.3951413 0.5619986 0.3544566 +0.4108177 0.5619986 0.3544566 +0.4244723 0.5619986 0.3544566 +0.4365675 0.5619986 0.3544566 +0.4474232 0.5619986 0.3544566 +0.45727 0.5619986 0.3544566 +0.4662797 0.5619986 0.3544566 +0.4745834 0.5619986 0.3544566 +0.4822838 0.5619986 0.3544566 +0.4894626 0.5619986 0.3544566 +0.4961862 0.5619986 0.3544566 +0.5025087 0.5619986 0.3544566 +0.5084753 0.5619986 0.3544566 +0.514124 0.5619986 0.3544566 +0.519487 0.5619986 0.3544566 +0.5245917 0.5619986 0.3544566 +0.529462 0.5619986 0.3544566 +0.5341183 0.5619986 0.3544566 +0.5385787 0.5619986 0.3544566 +0.5428591 0.5619986 0.3544566 +0.5469733 0.5619986 0.3544566 +0.5509339 0.5619986 0.3544566 +0.5547519 0.5619986 0.3544566 +0.5584371 0.5619986 0.3544566 +0.5619986 0.5619986 0.3544566 +0.5654443 0.5619986 0.3544566 +0.5687816 0.5619986 0.3544566 +0.092819 0.5654443 0.3544566 +0.2262531 0.5654443 0.3544566 +0.2875993 0.5654443 0.3544566 +0.3262122 0.5654443 0.3544566 +0.3544566 0.5654443 0.3544566 +0.3767383 0.5654443 0.3544566 +0.3951413 0.5654443 0.3544566 +0.4108177 0.5654443 0.3544566 +0.4244723 0.5654443 0.3544566 +0.4365675 0.5654443 0.3544566 +0.4474232 0.5654443 0.3544566 +0.45727 0.5654443 0.3544566 +0.4662797 0.5654443 0.3544566 +0.4745834 0.5654443 0.3544566 +0.4822838 0.5654443 0.3544566 +0.4894626 0.5654443 0.3544566 +0.4961862 0.5654443 0.3544566 +0.5025087 0.5654443 0.3544566 +0.5084753 0.5654443 0.3544566 +0.514124 0.5654443 0.3544566 +0.519487 0.5654443 0.3544566 +0.5245917 0.5654443 0.3544566 +0.529462 0.5654443 0.3544566 +0.5341183 0.5654443 0.3544566 +0.5385787 0.5654443 0.3544566 +0.5428591 0.5654443 0.3544566 +0.5469733 0.5654443 0.3544566 +0.5509339 0.5654443 0.3544566 +0.5547519 0.5654443 0.3544566 +0.5584371 0.5654443 0.3544566 +0.5619986 0.5654443 0.3544566 +0.5654443 0.5654443 0.3544566 +0.5687816 0.5654443 0.3544566 +0.092819 0.5687816 0.3544566 +0.2262531 0.5687816 0.3544566 +0.2875993 0.5687816 0.3544566 +0.3262122 0.5687816 0.3544566 +0.3544566 0.5687816 0.3544566 +0.3767383 0.5687816 0.3544566 +0.3951413 0.5687816 0.3544566 +0.4108177 0.5687816 0.3544566 +0.4244723 0.5687816 0.3544566 +0.4365675 0.5687816 0.3544566 +0.4474232 0.5687816 0.3544566 +0.45727 0.5687816 0.3544566 +0.4662797 0.5687816 0.3544566 +0.4745834 0.5687816 0.3544566 +0.4822838 0.5687816 0.3544566 +0.4894626 0.5687816 0.3544566 +0.4961862 0.5687816 0.3544566 +0.5025087 0.5687816 0.3544566 +0.5084753 0.5687816 0.3544566 +0.514124 0.5687816 0.3544566 +0.519487 0.5687816 0.3544566 +0.5245917 0.5687816 0.3544566 +0.529462 0.5687816 0.3544566 +0.5341183 0.5687816 0.3544566 +0.5385787 0.5687816 0.3544566 +0.5428591 0.5687816 0.3544566 +0.5469733 0.5687816 0.3544566 +0.5509339 0.5687816 0.3544566 +0.5547519 0.5687816 0.3544566 +0.5584371 0.5687816 0.3544566 +0.5619986 0.5687816 0.3544566 +0.5654443 0.5687816 0.3544566 +0.5687816 0.5687816 0.3544566 +0.092819 0.092819 0.3767383 +0.2262531 0.092819 0.3767383 +0.2875993 0.092819 0.3767383 +0.3262122 0.092819 0.3767383 +0.3544566 0.092819 0.3767383 +0.3767383 0.092819 0.3767383 +0.3951413 0.092819 0.3767383 +0.4108177 0.092819 0.3767383 +0.4244723 0.092819 0.3767383 +0.4365675 0.092819 0.3767383 +0.4474232 0.092819 0.3767383 +0.45727 0.092819 0.3767383 +0.4662797 0.092819 0.3767383 +0.4745834 0.092819 0.3767383 +0.4822838 0.092819 0.3767383 +0.4894626 0.092819 0.3767383 +0.4961862 0.092819 0.3767383 +0.5025087 0.092819 0.3767383 +0.5084753 0.092819 0.3767383 +0.514124 0.092819 0.3767383 +0.519487 0.092819 0.3767383 +0.5245917 0.092819 0.3767383 +0.529462 0.092819 0.3767383 +0.5341183 0.092819 0.3767383 +0.5385787 0.092819 0.3767383 +0.5428591 0.092819 0.3767383 +0.5469733 0.092819 0.3767383 +0.5509339 0.092819 0.3767383 +0.5547519 0.092819 0.3767383 +0.5584371 0.092819 0.3767383 +0.5619986 0.092819 0.3767383 +0.5654443 0.092819 0.3767383 +0.5687816 0.092819 0.3767383 +0.092819 0.2262531 0.3767383 +0.2262531 0.2262531 0.3767383 +0.2875993 0.2262531 0.3767383 +0.3262122 0.2262531 0.3767383 +0.3544566 0.2262531 0.3767383 +0.3767383 0.2262531 0.3767383 +0.3951413 0.2262531 0.3767383 +0.4108177 0.2262531 0.3767383 +0.4244723 0.2262531 0.3767383 +0.4365675 0.2262531 0.3767383 +0.4474232 0.2262531 0.3767383 +0.45727 0.2262531 0.3767383 +0.4662797 0.2262531 0.3767383 +0.4745834 0.2262531 0.3767383 +0.4822838 0.2262531 0.3767383 +0.4894626 0.2262531 0.3767383 +0.4961862 0.2262531 0.3767383 +0.5025087 0.2262531 0.3767383 +0.5084753 0.2262531 0.3767383 +0.514124 0.2262531 0.3767383 +0.519487 0.2262531 0.3767383 +0.5245917 0.2262531 0.3767383 +0.529462 0.2262531 0.3767383 +0.5341183 0.2262531 0.3767383 +0.5385787 0.2262531 0.3767383 +0.5428591 0.2262531 0.3767383 +0.5469733 0.2262531 0.3767383 +0.5509339 0.2262531 0.3767383 +0.5547519 0.2262531 0.3767383 +0.5584371 0.2262531 0.3767383 +0.5619986 0.2262531 0.3767383 +0.5654443 0.2262531 0.3767383 +0.5687816 0.2262531 0.3767383 +0.092819 0.2875993 0.3767383 +0.2262531 0.2875993 0.3767383 +0.2875993 0.2875993 0.3767383 +0.3262122 0.2875993 0.3767383 +0.3544566 0.2875993 0.3767383 +0.3767383 0.2875993 0.3767383 +0.3951413 0.2875993 0.3767383 +0.4108177 0.2875993 0.3767383 +0.4244723 0.2875993 0.3767383 +0.4365675 0.2875993 0.3767383 +0.4474232 0.2875993 0.3767383 +0.45727 0.2875993 0.3767383 +0.4662797 0.2875993 0.3767383 +0.4745834 0.2875993 0.3767383 +0.4822838 0.2875993 0.3767383 +0.4894626 0.2875993 0.3767383 +0.4961862 0.2875993 0.3767383 +0.5025087 0.2875993 0.3767383 +0.5084753 0.2875993 0.3767383 +0.514124 0.2875993 0.3767383 +0.519487 0.2875993 0.3767383 +0.5245917 0.2875993 0.3767383 +0.529462 0.2875993 0.3767383 +0.5341183 0.2875993 0.3767383 +0.5385787 0.2875993 0.3767383 +0.5428591 0.2875993 0.3767383 +0.5469733 0.2875993 0.3767383 +0.5509339 0.2875993 0.3767383 +0.5547519 0.2875993 0.3767383 +0.5584371 0.2875993 0.3767383 +0.5619986 0.2875993 0.3767383 +0.5654443 0.2875993 0.3767383 +0.5687816 0.2875993 0.3767383 +0.092819 0.3262122 0.3767383 +0.2262531 0.3262122 0.3767383 +0.2875993 0.3262122 0.3767383 +0.3262122 0.3262122 0.3767383 +0.3544566 0.3262122 0.3767383 +0.3767383 0.3262122 0.3767383 +0.3951413 0.3262122 0.3767383 +0.4108177 0.3262122 0.3767383 +0.4244723 0.3262122 0.3767383 +0.4365675 0.3262122 0.3767383 +0.4474232 0.3262122 0.3767383 +0.45727 0.3262122 0.3767383 +0.4662797 0.3262122 0.3767383 +0.4745834 0.3262122 0.3767383 +0.4822838 0.3262122 0.3767383 +0.4894626 0.3262122 0.3767383 +0.4961862 0.3262122 0.3767383 +0.5025087 0.3262122 0.3767383 +0.5084753 0.3262122 0.3767383 +0.514124 0.3262122 0.3767383 +0.519487 0.3262122 0.3767383 +0.5245917 0.3262122 0.3767383 +0.529462 0.3262122 0.3767383 +0.5341183 0.3262122 0.3767383 +0.5385787 0.3262122 0.3767383 +0.5428591 0.3262122 0.3767383 +0.5469733 0.3262122 0.3767383 +0.5509339 0.3262122 0.3767383 +0.5547519 0.3262122 0.3767383 +0.5584371 0.3262122 0.3767383 +0.5619986 0.3262122 0.3767383 +0.5654443 0.3262122 0.3767383 +0.5687816 0.3262122 0.3767383 +0.092819 0.3544566 0.3767383 +0.2262531 0.3544566 0.3767383 +0.2875993 0.3544566 0.3767383 +0.3262122 0.3544566 0.3767383 +0.3544566 0.3544566 0.3767383 +0.3767383 0.3544566 0.3767383 +0.3951413 0.3544566 0.3767383 +0.4108177 0.3544566 0.3767383 +0.4244723 0.3544566 0.3767383 +0.4365675 0.3544566 0.3767383 +0.4474232 0.3544566 0.3767383 +0.45727 0.3544566 0.3767383 +0.4662797 0.3544566 0.3767383 +0.4745834 0.3544566 0.3767383 +0.4822838 0.3544566 0.3767383 +0.4894626 0.3544566 0.3767383 +0.4961862 0.3544566 0.3767383 +0.5025087 0.3544566 0.3767383 +0.5084753 0.3544566 0.3767383 +0.514124 0.3544566 0.3767383 +0.519487 0.3544566 0.3767383 +0.5245917 0.3544566 0.3767383 +0.529462 0.3544566 0.3767383 +0.5341183 0.3544566 0.3767383 +0.5385787 0.3544566 0.3767383 +0.5428591 0.3544566 0.3767383 +0.5469733 0.3544566 0.3767383 +0.5509339 0.3544566 0.3767383 +0.5547519 0.3544566 0.3767383 +0.5584371 0.3544566 0.3767383 +0.5619986 0.3544566 0.3767383 +0.5654443 0.3544566 0.3767383 +0.5687816 0.3544566 0.3767383 +0.092819 0.3767383 0.3767383 +0.2262531 0.3767383 0.3767383 +0.2875993 0.3767383 0.3767383 +0.3262122 0.3767383 0.3767383 +0.3544566 0.3767383 0.3767383 +0.3767383 0.3767383 0.3767383 +0.3951413 0.3767383 0.3767383 +0.4108177 0.3767383 0.3767383 +0.4244723 0.3767383 0.3767383 +0.4365675 0.3767383 0.3767383 +0.4474232 0.3767383 0.3767383 +0.45727 0.3767383 0.3767383 +0.4662797 0.3767383 0.3767383 +0.4745834 0.3767383 0.3767383 +0.4822838 0.3767383 0.3767383 +0.4894626 0.3767383 0.3767383 +0.4961862 0.3767383 0.3767383 +0.5025087 0.3767383 0.3767383 +0.5084753 0.3767383 0.3767383 +0.514124 0.3767383 0.3767383 +0.519487 0.3767383 0.3767383 +0.5245917 0.3767383 0.3767383 +0.529462 0.3767383 0.3767383 +0.5341183 0.3767383 0.3767383 +0.5385787 0.3767383 0.3767383 +0.5428591 0.3767383 0.3767383 +0.5469733 0.3767383 0.3767383 +0.5509339 0.3767383 0.3767383 +0.5547519 0.3767383 0.3767383 +0.5584371 0.3767383 0.3767383 +0.5619986 0.3767383 0.3767383 +0.5654443 0.3767383 0.3767383 +0.5687816 0.3767383 0.3767383 +0.092819 0.3951413 0.3767383 +0.2262531 0.3951413 0.3767383 +0.2875993 0.3951413 0.3767383 +0.3262122 0.3951413 0.3767383 +0.3544566 0.3951413 0.3767383 +0.3767383 0.3951413 0.3767383 +0.3951413 0.3951413 0.3767383 +0.4108177 0.3951413 0.3767383 +0.4244723 0.3951413 0.3767383 +0.4365675 0.3951413 0.3767383 +0.4474232 0.3951413 0.3767383 +0.45727 0.3951413 0.3767383 +0.4662797 0.3951413 0.3767383 +0.4745834 0.3951413 0.3767383 +0.4822838 0.3951413 0.3767383 +0.4894626 0.3951413 0.3767383 +0.4961862 0.3951413 0.3767383 +0.5025087 0.3951413 0.3767383 +0.5084753 0.3951413 0.3767383 +0.514124 0.3951413 0.3767383 +0.519487 0.3951413 0.3767383 +0.5245917 0.3951413 0.3767383 +0.529462 0.3951413 0.3767383 +0.5341183 0.3951413 0.3767383 +0.5385787 0.3951413 0.3767383 +0.5428591 0.3951413 0.3767383 +0.5469733 0.3951413 0.3767383 +0.5509339 0.3951413 0.3767383 +0.5547519 0.3951413 0.3767383 +0.5584371 0.3951413 0.3767383 +0.5619986 0.3951413 0.3767383 +0.5654443 0.3951413 0.3767383 +0.5687816 0.3951413 0.3767383 +0.092819 0.4108177 0.3767383 +0.2262531 0.4108177 0.3767383 +0.2875993 0.4108177 0.3767383 +0.3262122 0.4108177 0.3767383 +0.3544566 0.4108177 0.3767383 +0.3767383 0.4108177 0.3767383 +0.3951413 0.4108177 0.3767383 +0.4108177 0.4108177 0.3767383 +0.4244723 0.4108177 0.3767383 +0.4365675 0.4108177 0.3767383 +0.4474232 0.4108177 0.3767383 +0.45727 0.4108177 0.3767383 +0.4662797 0.4108177 0.3767383 +0.4745834 0.4108177 0.3767383 +0.4822838 0.4108177 0.3767383 +0.4894626 0.4108177 0.3767383 +0.4961862 0.4108177 0.3767383 +0.5025087 0.4108177 0.3767383 +0.5084753 0.4108177 0.3767383 +0.514124 0.4108177 0.3767383 +0.519487 0.4108177 0.3767383 +0.5245917 0.4108177 0.3767383 +0.529462 0.4108177 0.3767383 +0.5341183 0.4108177 0.3767383 +0.5385787 0.4108177 0.3767383 +0.5428591 0.4108177 0.3767383 +0.5469733 0.4108177 0.3767383 +0.5509339 0.4108177 0.3767383 +0.5547519 0.4108177 0.3767383 +0.5584371 0.4108177 0.3767383 +0.5619986 0.4108177 0.3767383 +0.5654443 0.4108177 0.3767383 +0.5687816 0.4108177 0.3767383 +0.092819 0.4244723 0.3767383 +0.2262531 0.4244723 0.3767383 +0.2875993 0.4244723 0.3767383 +0.3262122 0.4244723 0.3767383 +0.3544566 0.4244723 0.3767383 +0.3767383 0.4244723 0.3767383 +0.3951413 0.4244723 0.3767383 +0.4108177 0.4244723 0.3767383 +0.4244723 0.4244723 0.3767383 +0.4365675 0.4244723 0.3767383 +0.4474232 0.4244723 0.3767383 +0.45727 0.4244723 0.3767383 +0.4662797 0.4244723 0.3767383 +0.4745834 0.4244723 0.3767383 +0.4822838 0.4244723 0.3767383 +0.4894626 0.4244723 0.3767383 +0.4961862 0.4244723 0.3767383 +0.5025087 0.4244723 0.3767383 +0.5084753 0.4244723 0.3767383 +0.514124 0.4244723 0.3767383 +0.519487 0.4244723 0.3767383 +0.5245917 0.4244723 0.3767383 +0.529462 0.4244723 0.3767383 +0.5341183 0.4244723 0.3767383 +0.5385787 0.4244723 0.3767383 +0.5428591 0.4244723 0.3767383 +0.5469733 0.4244723 0.3767383 +0.5509339 0.4244723 0.3767383 +0.5547519 0.4244723 0.3767383 +0.5584371 0.4244723 0.3767383 +0.5619986 0.4244723 0.3767383 +0.5654443 0.4244723 0.3767383 +0.5687816 0.4244723 0.3767383 +0.092819 0.4365675 0.3767383 +0.2262531 0.4365675 0.3767383 +0.2875993 0.4365675 0.3767383 +0.3262122 0.4365675 0.3767383 +0.3544566 0.4365675 0.3767383 +0.3767383 0.4365675 0.3767383 +0.3951413 0.4365675 0.3767383 +0.4108177 0.4365675 0.3767383 +0.4244723 0.4365675 0.3767383 +0.4365675 0.4365675 0.3767383 +0.4474232 0.4365675 0.3767383 +0.45727 0.4365675 0.3767383 +0.4662797 0.4365675 0.3767383 +0.4745834 0.4365675 0.3767383 +0.4822838 0.4365675 0.3767383 +0.4894626 0.4365675 0.3767383 +0.4961862 0.4365675 0.3767383 +0.5025087 0.4365675 0.3767383 +0.5084753 0.4365675 0.3767383 +0.514124 0.4365675 0.3767383 +0.519487 0.4365675 0.3767383 +0.5245917 0.4365675 0.3767383 +0.529462 0.4365675 0.3767383 +0.5341183 0.4365675 0.3767383 +0.5385787 0.4365675 0.3767383 +0.5428591 0.4365675 0.3767383 +0.5469733 0.4365675 0.3767383 +0.5509339 0.4365675 0.3767383 +0.5547519 0.4365675 0.3767383 +0.5584371 0.4365675 0.3767383 +0.5619986 0.4365675 0.3767383 +0.5654443 0.4365675 0.3767383 +0.5687816 0.4365675 0.3767383 +0.092819 0.4474232 0.3767383 +0.2262531 0.4474232 0.3767383 +0.2875993 0.4474232 0.3767383 +0.3262122 0.4474232 0.3767383 +0.3544566 0.4474232 0.3767383 +0.3767383 0.4474232 0.3767383 +0.3951413 0.4474232 0.3767383 +0.4108177 0.4474232 0.3767383 +0.4244723 0.4474232 0.3767383 +0.4365675 0.4474232 0.3767383 +0.4474232 0.4474232 0.3767383 +0.45727 0.4474232 0.3767383 +0.4662797 0.4474232 0.3767383 +0.4745834 0.4474232 0.3767383 +0.4822838 0.4474232 0.3767383 +0.4894626 0.4474232 0.3767383 +0.4961862 0.4474232 0.3767383 +0.5025087 0.4474232 0.3767383 +0.5084753 0.4474232 0.3767383 +0.514124 0.4474232 0.3767383 +0.519487 0.4474232 0.3767383 +0.5245917 0.4474232 0.3767383 +0.529462 0.4474232 0.3767383 +0.5341183 0.4474232 0.3767383 +0.5385787 0.4474232 0.3767383 +0.5428591 0.4474232 0.3767383 +0.5469733 0.4474232 0.3767383 +0.5509339 0.4474232 0.3767383 +0.5547519 0.4474232 0.3767383 +0.5584371 0.4474232 0.3767383 +0.5619986 0.4474232 0.3767383 +0.5654443 0.4474232 0.3767383 +0.5687816 0.4474232 0.3767383 +0.092819 0.45727 0.3767383 +0.2262531 0.45727 0.3767383 +0.2875993 0.45727 0.3767383 +0.3262122 0.45727 0.3767383 +0.3544566 0.45727 0.3767383 +0.3767383 0.45727 0.3767383 +0.3951413 0.45727 0.3767383 +0.4108177 0.45727 0.3767383 +0.4244723 0.45727 0.3767383 +0.4365675 0.45727 0.3767383 +0.4474232 0.45727 0.3767383 +0.45727 0.45727 0.3767383 +0.4662797 0.45727 0.3767383 +0.4745834 0.45727 0.3767383 +0.4822838 0.45727 0.3767383 +0.4894626 0.45727 0.3767383 +0.4961862 0.45727 0.3767383 +0.5025087 0.45727 0.3767383 +0.5084753 0.45727 0.3767383 +0.514124 0.45727 0.3767383 +0.519487 0.45727 0.3767383 +0.5245917 0.45727 0.3767383 +0.529462 0.45727 0.3767383 +0.5341183 0.45727 0.3767383 +0.5385787 0.45727 0.3767383 +0.5428591 0.45727 0.3767383 +0.5469733 0.45727 0.3767383 +0.5509339 0.45727 0.3767383 +0.5547519 0.45727 0.3767383 +0.5584371 0.45727 0.3767383 +0.5619986 0.45727 0.3767383 +0.5654443 0.45727 0.3767383 +0.5687816 0.45727 0.3767383 +0.092819 0.4662797 0.3767383 +0.2262531 0.4662797 0.3767383 +0.2875993 0.4662797 0.3767383 +0.3262122 0.4662797 0.3767383 +0.3544566 0.4662797 0.3767383 +0.3767383 0.4662797 0.3767383 +0.3951413 0.4662797 0.3767383 +0.4108177 0.4662797 0.3767383 +0.4244723 0.4662797 0.3767383 +0.4365675 0.4662797 0.3767383 +0.4474232 0.4662797 0.3767383 +0.45727 0.4662797 0.3767383 +0.4662797 0.4662797 0.3767383 +0.4745834 0.4662797 0.3767383 +0.4822838 0.4662797 0.3767383 +0.4894626 0.4662797 0.3767383 +0.4961862 0.4662797 0.3767383 +0.5025087 0.4662797 0.3767383 +0.5084753 0.4662797 0.3767383 +0.514124 0.4662797 0.3767383 +0.519487 0.4662797 0.3767383 +0.5245917 0.4662797 0.3767383 +0.529462 0.4662797 0.3767383 +0.5341183 0.4662797 0.3767383 +0.5385787 0.4662797 0.3767383 +0.5428591 0.4662797 0.3767383 +0.5469733 0.4662797 0.3767383 +0.5509339 0.4662797 0.3767383 +0.5547519 0.4662797 0.3767383 +0.5584371 0.4662797 0.3767383 +0.5619986 0.4662797 0.3767383 +0.5654443 0.4662797 0.3767383 +0.5687816 0.4662797 0.3767383 +0.092819 0.4745834 0.3767383 +0.2262531 0.4745834 0.3767383 +0.2875993 0.4745834 0.3767383 +0.3262122 0.4745834 0.3767383 +0.3544566 0.4745834 0.3767383 +0.3767383 0.4745834 0.3767383 +0.3951413 0.4745834 0.3767383 +0.4108177 0.4745834 0.3767383 +0.4244723 0.4745834 0.3767383 +0.4365675 0.4745834 0.3767383 +0.4474232 0.4745834 0.3767383 +0.45727 0.4745834 0.3767383 +0.4662797 0.4745834 0.3767383 +0.4745834 0.4745834 0.3767383 +0.4822838 0.4745834 0.3767383 +0.4894626 0.4745834 0.3767383 +0.4961862 0.4745834 0.3767383 +0.5025087 0.4745834 0.3767383 +0.5084753 0.4745834 0.3767383 +0.514124 0.4745834 0.3767383 +0.519487 0.4745834 0.3767383 +0.5245917 0.4745834 0.3767383 +0.529462 0.4745834 0.3767383 +0.5341183 0.4745834 0.3767383 +0.5385787 0.4745834 0.3767383 +0.5428591 0.4745834 0.3767383 +0.5469733 0.4745834 0.3767383 +0.5509339 0.4745834 0.3767383 +0.5547519 0.4745834 0.3767383 +0.5584371 0.4745834 0.3767383 +0.5619986 0.4745834 0.3767383 +0.5654443 0.4745834 0.3767383 +0.5687816 0.4745834 0.3767383 +0.092819 0.4822838 0.3767383 +0.2262531 0.4822838 0.3767383 +0.2875993 0.4822838 0.3767383 +0.3262122 0.4822838 0.3767383 +0.3544566 0.4822838 0.3767383 +0.3767383 0.4822838 0.3767383 +0.3951413 0.4822838 0.3767383 +0.4108177 0.4822838 0.3767383 +0.4244723 0.4822838 0.3767383 +0.4365675 0.4822838 0.3767383 +0.4474232 0.4822838 0.3767383 +0.45727 0.4822838 0.3767383 +0.4662797 0.4822838 0.3767383 +0.4745834 0.4822838 0.3767383 +0.4822838 0.4822838 0.3767383 +0.4894626 0.4822838 0.3767383 +0.4961862 0.4822838 0.3767383 +0.5025087 0.4822838 0.3767383 +0.5084753 0.4822838 0.3767383 +0.514124 0.4822838 0.3767383 +0.519487 0.4822838 0.3767383 +0.5245917 0.4822838 0.3767383 +0.529462 0.4822838 0.3767383 +0.5341183 0.4822838 0.3767383 +0.5385787 0.4822838 0.3767383 +0.5428591 0.4822838 0.3767383 +0.5469733 0.4822838 0.3767383 +0.5509339 0.4822838 0.3767383 +0.5547519 0.4822838 0.3767383 +0.5584371 0.4822838 0.3767383 +0.5619986 0.4822838 0.3767383 +0.5654443 0.4822838 0.3767383 +0.5687816 0.4822838 0.3767383 +0.092819 0.4894626 0.3767383 +0.2262531 0.4894626 0.3767383 +0.2875993 0.4894626 0.3767383 +0.3262122 0.4894626 0.3767383 +0.3544566 0.4894626 0.3767383 +0.3767383 0.4894626 0.3767383 +0.3951413 0.4894626 0.3767383 +0.4108177 0.4894626 0.3767383 +0.4244723 0.4894626 0.3767383 +0.4365675 0.4894626 0.3767383 +0.4474232 0.4894626 0.3767383 +0.45727 0.4894626 0.3767383 +0.4662797 0.4894626 0.3767383 +0.4745834 0.4894626 0.3767383 +0.4822838 0.4894626 0.3767383 +0.4894626 0.4894626 0.3767383 +0.4961862 0.4894626 0.3767383 +0.5025087 0.4894626 0.3767383 +0.5084753 0.4894626 0.3767383 +0.514124 0.4894626 0.3767383 +0.519487 0.4894626 0.3767383 +0.5245917 0.4894626 0.3767383 +0.529462 0.4894626 0.3767383 +0.5341183 0.4894626 0.3767383 +0.5385787 0.4894626 0.3767383 +0.5428591 0.4894626 0.3767383 +0.5469733 0.4894626 0.3767383 +0.5509339 0.4894626 0.3767383 +0.5547519 0.4894626 0.3767383 +0.5584371 0.4894626 0.3767383 +0.5619986 0.4894626 0.3767383 +0.5654443 0.4894626 0.3767383 +0.5687816 0.4894626 0.3767383 +0.092819 0.4961862 0.3767383 +0.2262531 0.4961862 0.3767383 +0.2875993 0.4961862 0.3767383 +0.3262122 0.4961862 0.3767383 +0.3544566 0.4961862 0.3767383 +0.3767383 0.4961862 0.3767383 +0.3951413 0.4961862 0.3767383 +0.4108177 0.4961862 0.3767383 +0.4244723 0.4961862 0.3767383 +0.4365675 0.4961862 0.3767383 +0.4474232 0.4961862 0.3767383 +0.45727 0.4961862 0.3767383 +0.4662797 0.4961862 0.3767383 +0.4745834 0.4961862 0.3767383 +0.4822838 0.4961862 0.3767383 +0.4894626 0.4961862 0.3767383 +0.4961862 0.4961862 0.3767383 +0.5025087 0.4961862 0.3767383 +0.5084753 0.4961862 0.3767383 +0.514124 0.4961862 0.3767383 +0.519487 0.4961862 0.3767383 +0.5245917 0.4961862 0.3767383 +0.529462 0.4961862 0.3767383 +0.5341183 0.4961862 0.3767383 +0.5385787 0.4961862 0.3767383 +0.5428591 0.4961862 0.3767383 +0.5469733 0.4961862 0.3767383 +0.5509339 0.4961862 0.3767383 +0.5547519 0.4961862 0.3767383 +0.5584371 0.4961862 0.3767383 +0.5619986 0.4961862 0.3767383 +0.5654443 0.4961862 0.3767383 +0.5687816 0.4961862 0.3767383 +0.092819 0.5025087 0.3767383 +0.2262531 0.5025087 0.3767383 +0.2875993 0.5025087 0.3767383 +0.3262122 0.5025087 0.3767383 +0.3544566 0.5025087 0.3767383 +0.3767383 0.5025087 0.3767383 +0.3951413 0.5025087 0.3767383 +0.4108177 0.5025087 0.3767383 +0.4244723 0.5025087 0.3767383 +0.4365675 0.5025087 0.3767383 +0.4474232 0.5025087 0.3767383 +0.45727 0.5025087 0.3767383 +0.4662797 0.5025087 0.3767383 +0.4745834 0.5025087 0.3767383 +0.4822838 0.5025087 0.3767383 +0.4894626 0.5025087 0.3767383 +0.4961862 0.5025087 0.3767383 +0.5025087 0.5025087 0.3767383 +0.5084753 0.5025087 0.3767383 +0.514124 0.5025087 0.3767383 +0.519487 0.5025087 0.3767383 +0.5245917 0.5025087 0.3767383 +0.529462 0.5025087 0.3767383 +0.5341183 0.5025087 0.3767383 +0.5385787 0.5025087 0.3767383 +0.5428591 0.5025087 0.3767383 +0.5469733 0.5025087 0.3767383 +0.5509339 0.5025087 0.3767383 +0.5547519 0.5025087 0.3767383 +0.5584371 0.5025087 0.3767383 +0.5619986 0.5025087 0.3767383 +0.5654443 0.5025087 0.3767383 +0.5687816 0.5025087 0.3767383 +0.092819 0.5084753 0.3767383 +0.2262531 0.5084753 0.3767383 +0.2875993 0.5084753 0.3767383 +0.3262122 0.5084753 0.3767383 +0.3544566 0.5084753 0.3767383 +0.3767383 0.5084753 0.3767383 +0.3951413 0.5084753 0.3767383 +0.4108177 0.5084753 0.3767383 +0.4244723 0.5084753 0.3767383 +0.4365675 0.5084753 0.3767383 +0.4474232 0.5084753 0.3767383 +0.45727 0.5084753 0.3767383 +0.4662797 0.5084753 0.3767383 +0.4745834 0.5084753 0.3767383 +0.4822838 0.5084753 0.3767383 +0.4894626 0.5084753 0.3767383 +0.4961862 0.5084753 0.3767383 +0.5025087 0.5084753 0.3767383 +0.5084753 0.5084753 0.3767383 +0.514124 0.5084753 0.3767383 +0.519487 0.5084753 0.3767383 +0.5245917 0.5084753 0.3767383 +0.529462 0.5084753 0.3767383 +0.5341183 0.5084753 0.3767383 +0.5385787 0.5084753 0.3767383 +0.5428591 0.5084753 0.3767383 +0.5469733 0.5084753 0.3767383 +0.5509339 0.5084753 0.3767383 +0.5547519 0.5084753 0.3767383 +0.5584371 0.5084753 0.3767383 +0.5619986 0.5084753 0.3767383 +0.5654443 0.5084753 0.3767383 +0.5687816 0.5084753 0.3767383 +0.092819 0.514124 0.3767383 +0.2262531 0.514124 0.3767383 +0.2875993 0.514124 0.3767383 +0.3262122 0.514124 0.3767383 +0.3544566 0.514124 0.3767383 +0.3767383 0.514124 0.3767383 +0.3951413 0.514124 0.3767383 +0.4108177 0.514124 0.3767383 +0.4244723 0.514124 0.3767383 +0.4365675 0.514124 0.3767383 +0.4474232 0.514124 0.3767383 +0.45727 0.514124 0.3767383 +0.4662797 0.514124 0.3767383 +0.4745834 0.514124 0.3767383 +0.4822838 0.514124 0.3767383 +0.4894626 0.514124 0.3767383 +0.4961862 0.514124 0.3767383 +0.5025087 0.514124 0.3767383 +0.5084753 0.514124 0.3767383 +0.514124 0.514124 0.3767383 +0.519487 0.514124 0.3767383 +0.5245917 0.514124 0.3767383 +0.529462 0.514124 0.3767383 +0.5341183 0.514124 0.3767383 +0.5385787 0.514124 0.3767383 +0.5428591 0.514124 0.3767383 +0.5469733 0.514124 0.3767383 +0.5509339 0.514124 0.3767383 +0.5547519 0.514124 0.3767383 +0.5584371 0.514124 0.3767383 +0.5619986 0.514124 0.3767383 +0.5654443 0.514124 0.3767383 +0.5687816 0.514124 0.3767383 +0.092819 0.519487 0.3767383 +0.2262531 0.519487 0.3767383 +0.2875993 0.519487 0.3767383 +0.3262122 0.519487 0.3767383 +0.3544566 0.519487 0.3767383 +0.3767383 0.519487 0.3767383 +0.3951413 0.519487 0.3767383 +0.4108177 0.519487 0.3767383 +0.4244723 0.519487 0.3767383 +0.4365675 0.519487 0.3767383 +0.4474232 0.519487 0.3767383 +0.45727 0.519487 0.3767383 +0.4662797 0.519487 0.3767383 +0.4745834 0.519487 0.3767383 +0.4822838 0.519487 0.3767383 +0.4894626 0.519487 0.3767383 +0.4961862 0.519487 0.3767383 +0.5025087 0.519487 0.3767383 +0.5084753 0.519487 0.3767383 +0.514124 0.519487 0.3767383 +0.519487 0.519487 0.3767383 +0.5245917 0.519487 0.3767383 +0.529462 0.519487 0.3767383 +0.5341183 0.519487 0.3767383 +0.5385787 0.519487 0.3767383 +0.5428591 0.519487 0.3767383 +0.5469733 0.519487 0.3767383 +0.5509339 0.519487 0.3767383 +0.5547519 0.519487 0.3767383 +0.5584371 0.519487 0.3767383 +0.5619986 0.519487 0.3767383 +0.5654443 0.519487 0.3767383 +0.5687816 0.519487 0.3767383 +0.092819 0.5245917 0.3767383 +0.2262531 0.5245917 0.3767383 +0.2875993 0.5245917 0.3767383 +0.3262122 0.5245917 0.3767383 +0.3544566 0.5245917 0.3767383 +0.3767383 0.5245917 0.3767383 +0.3951413 0.5245917 0.3767383 +0.4108177 0.5245917 0.3767383 +0.4244723 0.5245917 0.3767383 +0.4365675 0.5245917 0.3767383 +0.4474232 0.5245917 0.3767383 +0.45727 0.5245917 0.3767383 +0.4662797 0.5245917 0.3767383 +0.4745834 0.5245917 0.3767383 +0.4822838 0.5245917 0.3767383 +0.4894626 0.5245917 0.3767383 +0.4961862 0.5245917 0.3767383 +0.5025087 0.5245917 0.3767383 +0.5084753 0.5245917 0.3767383 +0.514124 0.5245917 0.3767383 +0.519487 0.5245917 0.3767383 +0.5245917 0.5245917 0.3767383 +0.529462 0.5245917 0.3767383 +0.5341183 0.5245917 0.3767383 +0.5385787 0.5245917 0.3767383 +0.5428591 0.5245917 0.3767383 +0.5469733 0.5245917 0.3767383 +0.5509339 0.5245917 0.3767383 +0.5547519 0.5245917 0.3767383 +0.5584371 0.5245917 0.3767383 +0.5619986 0.5245917 0.3767383 +0.5654443 0.5245917 0.3767383 +0.5687816 0.5245917 0.3767383 +0.092819 0.529462 0.3767383 +0.2262531 0.529462 0.3767383 +0.2875993 0.529462 0.3767383 +0.3262122 0.529462 0.3767383 +0.3544566 0.529462 0.3767383 +0.3767383 0.529462 0.3767383 +0.3951413 0.529462 0.3767383 +0.4108177 0.529462 0.3767383 +0.4244723 0.529462 0.3767383 +0.4365675 0.529462 0.3767383 +0.4474232 0.529462 0.3767383 +0.45727 0.529462 0.3767383 +0.4662797 0.529462 0.3767383 +0.4745834 0.529462 0.3767383 +0.4822838 0.529462 0.3767383 +0.4894626 0.529462 0.3767383 +0.4961862 0.529462 0.3767383 +0.5025087 0.529462 0.3767383 +0.5084753 0.529462 0.3767383 +0.514124 0.529462 0.3767383 +0.519487 0.529462 0.3767383 +0.5245917 0.529462 0.3767383 +0.529462 0.529462 0.3767383 +0.5341183 0.529462 0.3767383 +0.5385787 0.529462 0.3767383 +0.5428591 0.529462 0.3767383 +0.5469733 0.529462 0.3767383 +0.5509339 0.529462 0.3767383 +0.5547519 0.529462 0.3767383 +0.5584371 0.529462 0.3767383 +0.5619986 0.529462 0.3767383 +0.5654443 0.529462 0.3767383 +0.5687816 0.529462 0.3767383 +0.092819 0.5341183 0.3767383 +0.2262531 0.5341183 0.3767383 +0.2875993 0.5341183 0.3767383 +0.3262122 0.5341183 0.3767383 +0.3544566 0.5341183 0.3767383 +0.3767383 0.5341183 0.3767383 +0.3951413 0.5341183 0.3767383 +0.4108177 0.5341183 0.3767383 +0.4244723 0.5341183 0.3767383 +0.4365675 0.5341183 0.3767383 +0.4474232 0.5341183 0.3767383 +0.45727 0.5341183 0.3767383 +0.4662797 0.5341183 0.3767383 +0.4745834 0.5341183 0.3767383 +0.4822838 0.5341183 0.3767383 +0.4894626 0.5341183 0.3767383 +0.4961862 0.5341183 0.3767383 +0.5025087 0.5341183 0.3767383 +0.5084753 0.5341183 0.3767383 +0.514124 0.5341183 0.3767383 +0.519487 0.5341183 0.3767383 +0.5245917 0.5341183 0.3767383 +0.529462 0.5341183 0.3767383 +0.5341183 0.5341183 0.3767383 +0.5385787 0.5341183 0.3767383 +0.5428591 0.5341183 0.3767383 +0.5469733 0.5341183 0.3767383 +0.5509339 0.5341183 0.3767383 +0.5547519 0.5341183 0.3767383 +0.5584371 0.5341183 0.3767383 +0.5619986 0.5341183 0.3767383 +0.5654443 0.5341183 0.3767383 +0.5687816 0.5341183 0.3767383 +0.092819 0.5385787 0.3767383 +0.2262531 0.5385787 0.3767383 +0.2875993 0.5385787 0.3767383 +0.3262122 0.5385787 0.3767383 +0.3544566 0.5385787 0.3767383 +0.3767383 0.5385787 0.3767383 +0.3951413 0.5385787 0.3767383 +0.4108177 0.5385787 0.3767383 +0.4244723 0.5385787 0.3767383 +0.4365675 0.5385787 0.3767383 +0.4474232 0.5385787 0.3767383 +0.45727 0.5385787 0.3767383 +0.4662797 0.5385787 0.3767383 +0.4745834 0.5385787 0.3767383 +0.4822838 0.5385787 0.3767383 +0.4894626 0.5385787 0.3767383 +0.4961862 0.5385787 0.3767383 +0.5025087 0.5385787 0.3767383 +0.5084753 0.5385787 0.3767383 +0.514124 0.5385787 0.3767383 +0.519487 0.5385787 0.3767383 +0.5245917 0.5385787 0.3767383 +0.529462 0.5385787 0.3767383 +0.5341183 0.5385787 0.3767383 +0.5385787 0.5385787 0.3767383 +0.5428591 0.5385787 0.3767383 +0.5469733 0.5385787 0.3767383 +0.5509339 0.5385787 0.3767383 +0.5547519 0.5385787 0.3767383 +0.5584371 0.5385787 0.3767383 +0.5619986 0.5385787 0.3767383 +0.5654443 0.5385787 0.3767383 +0.5687816 0.5385787 0.3767383 +0.092819 0.5428591 0.3767383 +0.2262531 0.5428591 0.3767383 +0.2875993 0.5428591 0.3767383 +0.3262122 0.5428591 0.3767383 +0.3544566 0.5428591 0.3767383 +0.3767383 0.5428591 0.3767383 +0.3951413 0.5428591 0.3767383 +0.4108177 0.5428591 0.3767383 +0.4244723 0.5428591 0.3767383 +0.4365675 0.5428591 0.3767383 +0.4474232 0.5428591 0.3767383 +0.45727 0.5428591 0.3767383 +0.4662797 0.5428591 0.3767383 +0.4745834 0.5428591 0.3767383 +0.4822838 0.5428591 0.3767383 +0.4894626 0.5428591 0.3767383 +0.4961862 0.5428591 0.3767383 +0.5025087 0.5428591 0.3767383 +0.5084753 0.5428591 0.3767383 +0.514124 0.5428591 0.3767383 +0.519487 0.5428591 0.3767383 +0.5245917 0.5428591 0.3767383 +0.529462 0.5428591 0.3767383 +0.5341183 0.5428591 0.3767383 +0.5385787 0.5428591 0.3767383 +0.5428591 0.5428591 0.3767383 +0.5469733 0.5428591 0.3767383 +0.5509339 0.5428591 0.3767383 +0.5547519 0.5428591 0.3767383 +0.5584371 0.5428591 0.3767383 +0.5619986 0.5428591 0.3767383 +0.5654443 0.5428591 0.3767383 +0.5687816 0.5428591 0.3767383 +0.092819 0.5469733 0.3767383 +0.2262531 0.5469733 0.3767383 +0.2875993 0.5469733 0.3767383 +0.3262122 0.5469733 0.3767383 +0.3544566 0.5469733 0.3767383 +0.3767383 0.5469733 0.3767383 +0.3951413 0.5469733 0.3767383 +0.4108177 0.5469733 0.3767383 +0.4244723 0.5469733 0.3767383 +0.4365675 0.5469733 0.3767383 +0.4474232 0.5469733 0.3767383 +0.45727 0.5469733 0.3767383 +0.4662797 0.5469733 0.3767383 +0.4745834 0.5469733 0.3767383 +0.4822838 0.5469733 0.3767383 +0.4894626 0.5469733 0.3767383 +0.4961862 0.5469733 0.3767383 +0.5025087 0.5469733 0.3767383 +0.5084753 0.5469733 0.3767383 +0.514124 0.5469733 0.3767383 +0.519487 0.5469733 0.3767383 +0.5245917 0.5469733 0.3767383 +0.529462 0.5469733 0.3767383 +0.5341183 0.5469733 0.3767383 +0.5385787 0.5469733 0.3767383 +0.5428591 0.5469733 0.3767383 +0.5469733 0.5469733 0.3767383 +0.5509339 0.5469733 0.3767383 +0.5547519 0.5469733 0.3767383 +0.5584371 0.5469733 0.3767383 +0.5619986 0.5469733 0.3767383 +0.5654443 0.5469733 0.3767383 +0.5687816 0.5469733 0.3767383 +0.092819 0.5509339 0.3767383 +0.2262531 0.5509339 0.3767383 +0.2875993 0.5509339 0.3767383 +0.3262122 0.5509339 0.3767383 +0.3544566 0.5509339 0.3767383 +0.3767383 0.5509339 0.3767383 +0.3951413 0.5509339 0.3767383 +0.4108177 0.5509339 0.3767383 +0.4244723 0.5509339 0.3767383 +0.4365675 0.5509339 0.3767383 +0.4474232 0.5509339 0.3767383 +0.45727 0.5509339 0.3767383 +0.4662797 0.5509339 0.3767383 +0.4745834 0.5509339 0.3767383 +0.4822838 0.5509339 0.3767383 +0.4894626 0.5509339 0.3767383 +0.4961862 0.5509339 0.3767383 +0.5025087 0.5509339 0.3767383 +0.5084753 0.5509339 0.3767383 +0.514124 0.5509339 0.3767383 +0.519487 0.5509339 0.3767383 +0.5245917 0.5509339 0.3767383 +0.529462 0.5509339 0.3767383 +0.5341183 0.5509339 0.3767383 +0.5385787 0.5509339 0.3767383 +0.5428591 0.5509339 0.3767383 +0.5469733 0.5509339 0.3767383 +0.5509339 0.5509339 0.3767383 +0.5547519 0.5509339 0.3767383 +0.5584371 0.5509339 0.3767383 +0.5619986 0.5509339 0.3767383 +0.5654443 0.5509339 0.3767383 +0.5687816 0.5509339 0.3767383 +0.092819 0.5547519 0.3767383 +0.2262531 0.5547519 0.3767383 +0.2875993 0.5547519 0.3767383 +0.3262122 0.5547519 0.3767383 +0.3544566 0.5547519 0.3767383 +0.3767383 0.5547519 0.3767383 +0.3951413 0.5547519 0.3767383 +0.4108177 0.5547519 0.3767383 +0.4244723 0.5547519 0.3767383 +0.4365675 0.5547519 0.3767383 +0.4474232 0.5547519 0.3767383 +0.45727 0.5547519 0.3767383 +0.4662797 0.5547519 0.3767383 +0.4745834 0.5547519 0.3767383 +0.4822838 0.5547519 0.3767383 +0.4894626 0.5547519 0.3767383 +0.4961862 0.5547519 0.3767383 +0.5025087 0.5547519 0.3767383 +0.5084753 0.5547519 0.3767383 +0.514124 0.5547519 0.3767383 +0.519487 0.5547519 0.3767383 +0.5245917 0.5547519 0.3767383 +0.529462 0.5547519 0.3767383 +0.5341183 0.5547519 0.3767383 +0.5385787 0.5547519 0.3767383 +0.5428591 0.5547519 0.3767383 +0.5469733 0.5547519 0.3767383 +0.5509339 0.5547519 0.3767383 +0.5547519 0.5547519 0.3767383 +0.5584371 0.5547519 0.3767383 +0.5619986 0.5547519 0.3767383 +0.5654443 0.5547519 0.3767383 +0.5687816 0.5547519 0.3767383 +0.092819 0.5584371 0.3767383 +0.2262531 0.5584371 0.3767383 +0.2875993 0.5584371 0.3767383 +0.3262122 0.5584371 0.3767383 +0.3544566 0.5584371 0.3767383 +0.3767383 0.5584371 0.3767383 +0.3951413 0.5584371 0.3767383 +0.4108177 0.5584371 0.3767383 +0.4244723 0.5584371 0.3767383 +0.4365675 0.5584371 0.3767383 +0.4474232 0.5584371 0.3767383 +0.45727 0.5584371 0.3767383 +0.4662797 0.5584371 0.3767383 +0.4745834 0.5584371 0.3767383 +0.4822838 0.5584371 0.3767383 +0.4894626 0.5584371 0.3767383 +0.4961862 0.5584371 0.3767383 +0.5025087 0.5584371 0.3767383 +0.5084753 0.5584371 0.3767383 +0.514124 0.5584371 0.3767383 +0.519487 0.5584371 0.3767383 +0.5245917 0.5584371 0.3767383 +0.529462 0.5584371 0.3767383 +0.5341183 0.5584371 0.3767383 +0.5385787 0.5584371 0.3767383 +0.5428591 0.5584371 0.3767383 +0.5469733 0.5584371 0.3767383 +0.5509339 0.5584371 0.3767383 +0.5547519 0.5584371 0.3767383 +0.5584371 0.5584371 0.3767383 +0.5619986 0.5584371 0.3767383 +0.5654443 0.5584371 0.3767383 +0.5687816 0.5584371 0.3767383 +0.092819 0.5619986 0.3767383 +0.2262531 0.5619986 0.3767383 +0.2875993 0.5619986 0.3767383 +0.3262122 0.5619986 0.3767383 +0.3544566 0.5619986 0.3767383 +0.3767383 0.5619986 0.3767383 +0.3951413 0.5619986 0.3767383 +0.4108177 0.5619986 0.3767383 +0.4244723 0.5619986 0.3767383 +0.4365675 0.5619986 0.3767383 +0.4474232 0.5619986 0.3767383 +0.45727 0.5619986 0.3767383 +0.4662797 0.5619986 0.3767383 +0.4745834 0.5619986 0.3767383 +0.4822838 0.5619986 0.3767383 +0.4894626 0.5619986 0.3767383 +0.4961862 0.5619986 0.3767383 +0.5025087 0.5619986 0.3767383 +0.5084753 0.5619986 0.3767383 +0.514124 0.5619986 0.3767383 +0.519487 0.5619986 0.3767383 +0.5245917 0.5619986 0.3767383 +0.529462 0.5619986 0.3767383 +0.5341183 0.5619986 0.3767383 +0.5385787 0.5619986 0.3767383 +0.5428591 0.5619986 0.3767383 +0.5469733 0.5619986 0.3767383 +0.5509339 0.5619986 0.3767383 +0.5547519 0.5619986 0.3767383 +0.5584371 0.5619986 0.3767383 +0.5619986 0.5619986 0.3767383 +0.5654443 0.5619986 0.3767383 +0.5687816 0.5619986 0.3767383 +0.092819 0.5654443 0.3767383 +0.2262531 0.5654443 0.3767383 +0.2875993 0.5654443 0.3767383 +0.3262122 0.5654443 0.3767383 +0.3544566 0.5654443 0.3767383 +0.3767383 0.5654443 0.3767383 +0.3951413 0.5654443 0.3767383 +0.4108177 0.5654443 0.3767383 +0.4244723 0.5654443 0.3767383 +0.4365675 0.5654443 0.3767383 +0.4474232 0.5654443 0.3767383 +0.45727 0.5654443 0.3767383 +0.4662797 0.5654443 0.3767383 +0.4745834 0.5654443 0.3767383 +0.4822838 0.5654443 0.3767383 +0.4894626 0.5654443 0.3767383 +0.4961862 0.5654443 0.3767383 +0.5025087 0.5654443 0.3767383 +0.5084753 0.5654443 0.3767383 +0.514124 0.5654443 0.3767383 +0.519487 0.5654443 0.3767383 +0.5245917 0.5654443 0.3767383 +0.529462 0.5654443 0.3767383 +0.5341183 0.5654443 0.3767383 +0.5385787 0.5654443 0.3767383 +0.5428591 0.5654443 0.3767383 +0.5469733 0.5654443 0.3767383 +0.5509339 0.5654443 0.3767383 +0.5547519 0.5654443 0.3767383 +0.5584371 0.5654443 0.3767383 +0.5619986 0.5654443 0.3767383 +0.5654443 0.5654443 0.3767383 +0.5687816 0.5654443 0.3767383 +0.092819 0.5687816 0.3767383 +0.2262531 0.5687816 0.3767383 +0.2875993 0.5687816 0.3767383 +0.3262122 0.5687816 0.3767383 +0.3544566 0.5687816 0.3767383 +0.3767383 0.5687816 0.3767383 +0.3951413 0.5687816 0.3767383 +0.4108177 0.5687816 0.3767383 +0.4244723 0.5687816 0.3767383 +0.4365675 0.5687816 0.3767383 +0.4474232 0.5687816 0.3767383 +0.45727 0.5687816 0.3767383 +0.4662797 0.5687816 0.3767383 +0.4745834 0.5687816 0.3767383 +0.4822838 0.5687816 0.3767383 +0.4894626 0.5687816 0.3767383 +0.4961862 0.5687816 0.3767383 +0.5025087 0.5687816 0.3767383 +0.5084753 0.5687816 0.3767383 +0.514124 0.5687816 0.3767383 +0.519487 0.5687816 0.3767383 +0.5245917 0.5687816 0.3767383 +0.529462 0.5687816 0.3767383 +0.5341183 0.5687816 0.3767383 +0.5385787 0.5687816 0.3767383 +0.5428591 0.5687816 0.3767383 +0.5469733 0.5687816 0.3767383 +0.5509339 0.5687816 0.3767383 +0.5547519 0.5687816 0.3767383 +0.5584371 0.5687816 0.3767383 +0.5619986 0.5687816 0.3767383 +0.5654443 0.5687816 0.3767383 +0.5687816 0.5687816 0.3767383 +0.092819 0.092819 0.3951413 +0.2262531 0.092819 0.3951413 +0.2875993 0.092819 0.3951413 +0.3262122 0.092819 0.3951413 +0.3544566 0.092819 0.3951413 +0.3767383 0.092819 0.3951413 +0.3951413 0.092819 0.3951413 +0.4108177 0.092819 0.3951413 +0.4244723 0.092819 0.3951413 +0.4365675 0.092819 0.3951413 +0.4474232 0.092819 0.3951413 +0.45727 0.092819 0.3951413 +0.4662797 0.092819 0.3951413 +0.4745834 0.092819 0.3951413 +0.4822838 0.092819 0.3951413 +0.4894626 0.092819 0.3951413 +0.4961862 0.092819 0.3951413 +0.5025087 0.092819 0.3951413 +0.5084753 0.092819 0.3951413 +0.514124 0.092819 0.3951413 +0.519487 0.092819 0.3951413 +0.5245917 0.092819 0.3951413 +0.529462 0.092819 0.3951413 +0.5341183 0.092819 0.3951413 +0.5385787 0.092819 0.3951413 +0.5428591 0.092819 0.3951413 +0.5469733 0.092819 0.3951413 +0.5509339 0.092819 0.3951413 +0.5547519 0.092819 0.3951413 +0.5584371 0.092819 0.3951413 +0.5619986 0.092819 0.3951413 +0.5654443 0.092819 0.3951413 +0.5687816 0.092819 0.3951413 +0.092819 0.2262531 0.3951413 +0.2262531 0.2262531 0.3951413 +0.2875993 0.2262531 0.3951413 +0.3262122 0.2262531 0.3951413 +0.3544566 0.2262531 0.3951413 +0.3767383 0.2262531 0.3951413 +0.3951413 0.2262531 0.3951413 +0.4108177 0.2262531 0.3951413 +0.4244723 0.2262531 0.3951413 +0.4365675 0.2262531 0.3951413 +0.4474232 0.2262531 0.3951413 +0.45727 0.2262531 0.3951413 +0.4662797 0.2262531 0.3951413 +0.4745834 0.2262531 0.3951413 +0.4822838 0.2262531 0.3951413 +0.4894626 0.2262531 0.3951413 +0.4961862 0.2262531 0.3951413 +0.5025087 0.2262531 0.3951413 +0.5084753 0.2262531 0.3951413 +0.514124 0.2262531 0.3951413 +0.519487 0.2262531 0.3951413 +0.5245917 0.2262531 0.3951413 +0.529462 0.2262531 0.3951413 +0.5341183 0.2262531 0.3951413 +0.5385787 0.2262531 0.3951413 +0.5428591 0.2262531 0.3951413 +0.5469733 0.2262531 0.3951413 +0.5509339 0.2262531 0.3951413 +0.5547519 0.2262531 0.3951413 +0.5584371 0.2262531 0.3951413 +0.5619986 0.2262531 0.3951413 +0.5654443 0.2262531 0.3951413 +0.5687816 0.2262531 0.3951413 +0.092819 0.2875993 0.3951413 +0.2262531 0.2875993 0.3951413 +0.2875993 0.2875993 0.3951413 +0.3262122 0.2875993 0.3951413 +0.3544566 0.2875993 0.3951413 +0.3767383 0.2875993 0.3951413 +0.3951413 0.2875993 0.3951413 +0.4108177 0.2875993 0.3951413 +0.4244723 0.2875993 0.3951413 +0.4365675 0.2875993 0.3951413 +0.4474232 0.2875993 0.3951413 +0.45727 0.2875993 0.3951413 +0.4662797 0.2875993 0.3951413 +0.4745834 0.2875993 0.3951413 +0.4822838 0.2875993 0.3951413 +0.4894626 0.2875993 0.3951413 +0.4961862 0.2875993 0.3951413 +0.5025087 0.2875993 0.3951413 +0.5084753 0.2875993 0.3951413 +0.514124 0.2875993 0.3951413 +0.519487 0.2875993 0.3951413 +0.5245917 0.2875993 0.3951413 +0.529462 0.2875993 0.3951413 +0.5341183 0.2875993 0.3951413 +0.5385787 0.2875993 0.3951413 +0.5428591 0.2875993 0.3951413 +0.5469733 0.2875993 0.3951413 +0.5509339 0.2875993 0.3951413 +0.5547519 0.2875993 0.3951413 +0.5584371 0.2875993 0.3951413 +0.5619986 0.2875993 0.3951413 +0.5654443 0.2875993 0.3951413 +0.5687816 0.2875993 0.3951413 +0.092819 0.3262122 0.3951413 +0.2262531 0.3262122 0.3951413 +0.2875993 0.3262122 0.3951413 +0.3262122 0.3262122 0.3951413 +0.3544566 0.3262122 0.3951413 +0.3767383 0.3262122 0.3951413 +0.3951413 0.3262122 0.3951413 +0.4108177 0.3262122 0.3951413 +0.4244723 0.3262122 0.3951413 +0.4365675 0.3262122 0.3951413 +0.4474232 0.3262122 0.3951413 +0.45727 0.3262122 0.3951413 +0.4662797 0.3262122 0.3951413 +0.4745834 0.3262122 0.3951413 +0.4822838 0.3262122 0.3951413 +0.4894626 0.3262122 0.3951413 +0.4961862 0.3262122 0.3951413 +0.5025087 0.3262122 0.3951413 +0.5084753 0.3262122 0.3951413 +0.514124 0.3262122 0.3951413 +0.519487 0.3262122 0.3951413 +0.5245917 0.3262122 0.3951413 +0.529462 0.3262122 0.3951413 +0.5341183 0.3262122 0.3951413 +0.5385787 0.3262122 0.3951413 +0.5428591 0.3262122 0.3951413 +0.5469733 0.3262122 0.3951413 +0.5509339 0.3262122 0.3951413 +0.5547519 0.3262122 0.3951413 +0.5584371 0.3262122 0.3951413 +0.5619986 0.3262122 0.3951413 +0.5654443 0.3262122 0.3951413 +0.5687816 0.3262122 0.3951413 +0.092819 0.3544566 0.3951413 +0.2262531 0.3544566 0.3951413 +0.2875993 0.3544566 0.3951413 +0.3262122 0.3544566 0.3951413 +0.3544566 0.3544566 0.3951413 +0.3767383 0.3544566 0.3951413 +0.3951413 0.3544566 0.3951413 +0.4108177 0.3544566 0.3951413 +0.4244723 0.3544566 0.3951413 +0.4365675 0.3544566 0.3951413 +0.4474232 0.3544566 0.3951413 +0.45727 0.3544566 0.3951413 +0.4662797 0.3544566 0.3951413 +0.4745834 0.3544566 0.3951413 +0.4822838 0.3544566 0.3951413 +0.4894626 0.3544566 0.3951413 +0.4961862 0.3544566 0.3951413 +0.5025087 0.3544566 0.3951413 +0.5084753 0.3544566 0.3951413 +0.514124 0.3544566 0.3951413 +0.519487 0.3544566 0.3951413 +0.5245917 0.3544566 0.3951413 +0.529462 0.3544566 0.3951413 +0.5341183 0.3544566 0.3951413 +0.5385787 0.3544566 0.3951413 +0.5428591 0.3544566 0.3951413 +0.5469733 0.3544566 0.3951413 +0.5509339 0.3544566 0.3951413 +0.5547519 0.3544566 0.3951413 +0.5584371 0.3544566 0.3951413 +0.5619986 0.3544566 0.3951413 +0.5654443 0.3544566 0.3951413 +0.5687816 0.3544566 0.3951413 +0.092819 0.3767383 0.3951413 +0.2262531 0.3767383 0.3951413 +0.2875993 0.3767383 0.3951413 +0.3262122 0.3767383 0.3951413 +0.3544566 0.3767383 0.3951413 +0.3767383 0.3767383 0.3951413 +0.3951413 0.3767383 0.3951413 +0.4108177 0.3767383 0.3951413 +0.4244723 0.3767383 0.3951413 +0.4365675 0.3767383 0.3951413 +0.4474232 0.3767383 0.3951413 +0.45727 0.3767383 0.3951413 +0.4662797 0.3767383 0.3951413 +0.4745834 0.3767383 0.3951413 +0.4822838 0.3767383 0.3951413 +0.4894626 0.3767383 0.3951413 +0.4961862 0.3767383 0.3951413 +0.5025087 0.3767383 0.3951413 +0.5084753 0.3767383 0.3951413 +0.514124 0.3767383 0.3951413 +0.519487 0.3767383 0.3951413 +0.5245917 0.3767383 0.3951413 +0.529462 0.3767383 0.3951413 +0.5341183 0.3767383 0.3951413 +0.5385787 0.3767383 0.3951413 +0.5428591 0.3767383 0.3951413 +0.5469733 0.3767383 0.3951413 +0.5509339 0.3767383 0.3951413 +0.5547519 0.3767383 0.3951413 +0.5584371 0.3767383 0.3951413 +0.5619986 0.3767383 0.3951413 +0.5654443 0.3767383 0.3951413 +0.5687816 0.3767383 0.3951413 +0.092819 0.3951413 0.3951413 +0.2262531 0.3951413 0.3951413 +0.2875993 0.3951413 0.3951413 +0.3262122 0.3951413 0.3951413 +0.3544566 0.3951413 0.3951413 +0.3767383 0.3951413 0.3951413 +0.3951413 0.3951413 0.3951413 +0.4108177 0.3951413 0.3951413 +0.4244723 0.3951413 0.3951413 +0.4365675 0.3951413 0.3951413 +0.4474232 0.3951413 0.3951413 +0.45727 0.3951413 0.3951413 +0.4662797 0.3951413 0.3951413 +0.4745834 0.3951413 0.3951413 +0.4822838 0.3951413 0.3951413 +0.4894626 0.3951413 0.3951413 +0.4961862 0.3951413 0.3951413 +0.5025087 0.3951413 0.3951413 +0.5084753 0.3951413 0.3951413 +0.514124 0.3951413 0.3951413 +0.519487 0.3951413 0.3951413 +0.5245917 0.3951413 0.3951413 +0.529462 0.3951413 0.3951413 +0.5341183 0.3951413 0.3951413 +0.5385787 0.3951413 0.3951413 +0.5428591 0.3951413 0.3951413 +0.5469733 0.3951413 0.3951413 +0.5509339 0.3951413 0.3951413 +0.5547519 0.3951413 0.3951413 +0.5584371 0.3951413 0.3951413 +0.5619986 0.3951413 0.3951413 +0.5654443 0.3951413 0.3951413 +0.5687816 0.3951413 0.3951413 +0.092819 0.4108177 0.3951413 +0.2262531 0.4108177 0.3951413 +0.2875993 0.4108177 0.3951413 +0.3262122 0.4108177 0.3951413 +0.3544566 0.4108177 0.3951413 +0.3767383 0.4108177 0.3951413 +0.3951413 0.4108177 0.3951413 +0.4108177 0.4108177 0.3951413 +0.4244723 0.4108177 0.3951413 +0.4365675 0.4108177 0.3951413 +0.4474232 0.4108177 0.3951413 +0.45727 0.4108177 0.3951413 +0.4662797 0.4108177 0.3951413 +0.4745834 0.4108177 0.3951413 +0.4822838 0.4108177 0.3951413 +0.4894626 0.4108177 0.3951413 +0.4961862 0.4108177 0.3951413 +0.5025087 0.4108177 0.3951413 +0.5084753 0.4108177 0.3951413 +0.514124 0.4108177 0.3951413 +0.519487 0.4108177 0.3951413 +0.5245917 0.4108177 0.3951413 +0.529462 0.4108177 0.3951413 +0.5341183 0.4108177 0.3951413 +0.5385787 0.4108177 0.3951413 +0.5428591 0.4108177 0.3951413 +0.5469733 0.4108177 0.3951413 +0.5509339 0.4108177 0.3951413 +0.5547519 0.4108177 0.3951413 +0.5584371 0.4108177 0.3951413 +0.5619986 0.4108177 0.3951413 +0.5654443 0.4108177 0.3951413 +0.5687816 0.4108177 0.3951413 +0.092819 0.4244723 0.3951413 +0.2262531 0.4244723 0.3951413 +0.2875993 0.4244723 0.3951413 +0.3262122 0.4244723 0.3951413 +0.3544566 0.4244723 0.3951413 +0.3767383 0.4244723 0.3951413 +0.3951413 0.4244723 0.3951413 +0.4108177 0.4244723 0.3951413 +0.4244723 0.4244723 0.3951413 +0.4365675 0.4244723 0.3951413 +0.4474232 0.4244723 0.3951413 +0.45727 0.4244723 0.3951413 +0.4662797 0.4244723 0.3951413 +0.4745834 0.4244723 0.3951413 +0.4822838 0.4244723 0.3951413 +0.4894626 0.4244723 0.3951413 +0.4961862 0.4244723 0.3951413 +0.5025087 0.4244723 0.3951413 +0.5084753 0.4244723 0.3951413 +0.514124 0.4244723 0.3951413 +0.519487 0.4244723 0.3951413 +0.5245917 0.4244723 0.3951413 +0.529462 0.4244723 0.3951413 +0.5341183 0.4244723 0.3951413 +0.5385787 0.4244723 0.3951413 +0.5428591 0.4244723 0.3951413 +0.5469733 0.4244723 0.3951413 +0.5509339 0.4244723 0.3951413 +0.5547519 0.4244723 0.3951413 +0.5584371 0.4244723 0.3951413 +0.5619986 0.4244723 0.3951413 +0.5654443 0.4244723 0.3951413 +0.5687816 0.4244723 0.3951413 +0.092819 0.4365675 0.3951413 +0.2262531 0.4365675 0.3951413 +0.2875993 0.4365675 0.3951413 +0.3262122 0.4365675 0.3951413 +0.3544566 0.4365675 0.3951413 +0.3767383 0.4365675 0.3951413 +0.3951413 0.4365675 0.3951413 +0.4108177 0.4365675 0.3951413 +0.4244723 0.4365675 0.3951413 +0.4365675 0.4365675 0.3951413 +0.4474232 0.4365675 0.3951413 +0.45727 0.4365675 0.3951413 +0.4662797 0.4365675 0.3951413 +0.4745834 0.4365675 0.3951413 +0.4822838 0.4365675 0.3951413 +0.4894626 0.4365675 0.3951413 +0.4961862 0.4365675 0.3951413 +0.5025087 0.4365675 0.3951413 +0.5084753 0.4365675 0.3951413 +0.514124 0.4365675 0.3951413 +0.519487 0.4365675 0.3951413 +0.5245917 0.4365675 0.3951413 +0.529462 0.4365675 0.3951413 +0.5341183 0.4365675 0.3951413 +0.5385787 0.4365675 0.3951413 +0.5428591 0.4365675 0.3951413 +0.5469733 0.4365675 0.3951413 +0.5509339 0.4365675 0.3951413 +0.5547519 0.4365675 0.3951413 +0.5584371 0.4365675 0.3951413 +0.5619986 0.4365675 0.3951413 +0.5654443 0.4365675 0.3951413 +0.5687816 0.4365675 0.3951413 +0.092819 0.4474232 0.3951413 +0.2262531 0.4474232 0.3951413 +0.2875993 0.4474232 0.3951413 +0.3262122 0.4474232 0.3951413 +0.3544566 0.4474232 0.3951413 +0.3767383 0.4474232 0.3951413 +0.3951413 0.4474232 0.3951413 +0.4108177 0.4474232 0.3951413 +0.4244723 0.4474232 0.3951413 +0.4365675 0.4474232 0.3951413 +0.4474232 0.4474232 0.3951413 +0.45727 0.4474232 0.3951413 +0.4662797 0.4474232 0.3951413 +0.4745834 0.4474232 0.3951413 +0.4822838 0.4474232 0.3951413 +0.4894626 0.4474232 0.3951413 +0.4961862 0.4474232 0.3951413 +0.5025087 0.4474232 0.3951413 +0.5084753 0.4474232 0.3951413 +0.514124 0.4474232 0.3951413 +0.519487 0.4474232 0.3951413 +0.5245917 0.4474232 0.3951413 +0.529462 0.4474232 0.3951413 +0.5341183 0.4474232 0.3951413 +0.5385787 0.4474232 0.3951413 +0.5428591 0.4474232 0.3951413 +0.5469733 0.4474232 0.3951413 +0.5509339 0.4474232 0.3951413 +0.5547519 0.4474232 0.3951413 +0.5584371 0.4474232 0.3951413 +0.5619986 0.4474232 0.3951413 +0.5654443 0.4474232 0.3951413 +0.5687816 0.4474232 0.3951413 +0.092819 0.45727 0.3951413 +0.2262531 0.45727 0.3951413 +0.2875993 0.45727 0.3951413 +0.3262122 0.45727 0.3951413 +0.3544566 0.45727 0.3951413 +0.3767383 0.45727 0.3951413 +0.3951413 0.45727 0.3951413 +0.4108177 0.45727 0.3951413 +0.4244723 0.45727 0.3951413 +0.4365675 0.45727 0.3951413 +0.4474232 0.45727 0.3951413 +0.45727 0.45727 0.3951413 +0.4662797 0.45727 0.3951413 +0.4745834 0.45727 0.3951413 +0.4822838 0.45727 0.3951413 +0.4894626 0.45727 0.3951413 +0.4961862 0.45727 0.3951413 +0.5025087 0.45727 0.3951413 +0.5084753 0.45727 0.3951413 +0.514124 0.45727 0.3951413 +0.519487 0.45727 0.3951413 +0.5245917 0.45727 0.3951413 +0.529462 0.45727 0.3951413 +0.5341183 0.45727 0.3951413 +0.5385787 0.45727 0.3951413 +0.5428591 0.45727 0.3951413 +0.5469733 0.45727 0.3951413 +0.5509339 0.45727 0.3951413 +0.5547519 0.45727 0.3951413 +0.5584371 0.45727 0.3951413 +0.5619986 0.45727 0.3951413 +0.5654443 0.45727 0.3951413 +0.5687816 0.45727 0.3951413 +0.092819 0.4662797 0.3951413 +0.2262531 0.4662797 0.3951413 +0.2875993 0.4662797 0.3951413 +0.3262122 0.4662797 0.3951413 +0.3544566 0.4662797 0.3951413 +0.3767383 0.4662797 0.3951413 +0.3951413 0.4662797 0.3951413 +0.4108177 0.4662797 0.3951413 +0.4244723 0.4662797 0.3951413 +0.4365675 0.4662797 0.3951413 +0.4474232 0.4662797 0.3951413 +0.45727 0.4662797 0.3951413 +0.4662797 0.4662797 0.3951413 +0.4745834 0.4662797 0.3951413 +0.4822838 0.4662797 0.3951413 +0.4894626 0.4662797 0.3951413 +0.4961862 0.4662797 0.3951413 +0.5025087 0.4662797 0.3951413 +0.5084753 0.4662797 0.3951413 +0.514124 0.4662797 0.3951413 +0.519487 0.4662797 0.3951413 +0.5245917 0.4662797 0.3951413 +0.529462 0.4662797 0.3951413 +0.5341183 0.4662797 0.3951413 +0.5385787 0.4662797 0.3951413 +0.5428591 0.4662797 0.3951413 +0.5469733 0.4662797 0.3951413 +0.5509339 0.4662797 0.3951413 +0.5547519 0.4662797 0.3951413 +0.5584371 0.4662797 0.3951413 +0.5619986 0.4662797 0.3951413 +0.5654443 0.4662797 0.3951413 +0.5687816 0.4662797 0.3951413 +0.092819 0.4745834 0.3951413 +0.2262531 0.4745834 0.3951413 +0.2875993 0.4745834 0.3951413 +0.3262122 0.4745834 0.3951413 +0.3544566 0.4745834 0.3951413 +0.3767383 0.4745834 0.3951413 +0.3951413 0.4745834 0.3951413 +0.4108177 0.4745834 0.3951413 +0.4244723 0.4745834 0.3951413 +0.4365675 0.4745834 0.3951413 +0.4474232 0.4745834 0.3951413 +0.45727 0.4745834 0.3951413 +0.4662797 0.4745834 0.3951413 +0.4745834 0.4745834 0.3951413 +0.4822838 0.4745834 0.3951413 +0.4894626 0.4745834 0.3951413 +0.4961862 0.4745834 0.3951413 +0.5025087 0.4745834 0.3951413 +0.5084753 0.4745834 0.3951413 +0.514124 0.4745834 0.3951413 +0.519487 0.4745834 0.3951413 +0.5245917 0.4745834 0.3951413 +0.529462 0.4745834 0.3951413 +0.5341183 0.4745834 0.3951413 +0.5385787 0.4745834 0.3951413 +0.5428591 0.4745834 0.3951413 +0.5469733 0.4745834 0.3951413 +0.5509339 0.4745834 0.3951413 +0.5547519 0.4745834 0.3951413 +0.5584371 0.4745834 0.3951413 +0.5619986 0.4745834 0.3951413 +0.5654443 0.4745834 0.3951413 +0.5687816 0.4745834 0.3951413 +0.092819 0.4822838 0.3951413 +0.2262531 0.4822838 0.3951413 +0.2875993 0.4822838 0.3951413 +0.3262122 0.4822838 0.3951413 +0.3544566 0.4822838 0.3951413 +0.3767383 0.4822838 0.3951413 +0.3951413 0.4822838 0.3951413 +0.4108177 0.4822838 0.3951413 +0.4244723 0.4822838 0.3951413 +0.4365675 0.4822838 0.3951413 +0.4474232 0.4822838 0.3951413 +0.45727 0.4822838 0.3951413 +0.4662797 0.4822838 0.3951413 +0.4745834 0.4822838 0.3951413 +0.4822838 0.4822838 0.3951413 +0.4894626 0.4822838 0.3951413 +0.4961862 0.4822838 0.3951413 +0.5025087 0.4822838 0.3951413 +0.5084753 0.4822838 0.3951413 +0.514124 0.4822838 0.3951413 +0.519487 0.4822838 0.3951413 +0.5245917 0.4822838 0.3951413 +0.529462 0.4822838 0.3951413 +0.5341183 0.4822838 0.3951413 +0.5385787 0.4822838 0.3951413 +0.5428591 0.4822838 0.3951413 +0.5469733 0.4822838 0.3951413 +0.5509339 0.4822838 0.3951413 +0.5547519 0.4822838 0.3951413 +0.5584371 0.4822838 0.3951413 +0.5619986 0.4822838 0.3951413 +0.5654443 0.4822838 0.3951413 +0.5687816 0.4822838 0.3951413 +0.092819 0.4894626 0.3951413 +0.2262531 0.4894626 0.3951413 +0.2875993 0.4894626 0.3951413 +0.3262122 0.4894626 0.3951413 +0.3544566 0.4894626 0.3951413 +0.3767383 0.4894626 0.3951413 +0.3951413 0.4894626 0.3951413 +0.4108177 0.4894626 0.3951413 +0.4244723 0.4894626 0.3951413 +0.4365675 0.4894626 0.3951413 +0.4474232 0.4894626 0.3951413 +0.45727 0.4894626 0.3951413 +0.4662797 0.4894626 0.3951413 +0.4745834 0.4894626 0.3951413 +0.4822838 0.4894626 0.3951413 +0.4894626 0.4894626 0.3951413 +0.4961862 0.4894626 0.3951413 +0.5025087 0.4894626 0.3951413 +0.5084753 0.4894626 0.3951413 +0.514124 0.4894626 0.3951413 +0.519487 0.4894626 0.3951413 +0.5245917 0.4894626 0.3951413 +0.529462 0.4894626 0.3951413 +0.5341183 0.4894626 0.3951413 +0.5385787 0.4894626 0.3951413 +0.5428591 0.4894626 0.3951413 +0.5469733 0.4894626 0.3951413 +0.5509339 0.4894626 0.3951413 +0.5547519 0.4894626 0.3951413 +0.5584371 0.4894626 0.3951413 +0.5619986 0.4894626 0.3951413 +0.5654443 0.4894626 0.3951413 +0.5687816 0.4894626 0.3951413 +0.092819 0.4961862 0.3951413 +0.2262531 0.4961862 0.3951413 +0.2875993 0.4961862 0.3951413 +0.3262122 0.4961862 0.3951413 +0.3544566 0.4961862 0.3951413 +0.3767383 0.4961862 0.3951413 +0.3951413 0.4961862 0.3951413 +0.4108177 0.4961862 0.3951413 +0.4244723 0.4961862 0.3951413 +0.4365675 0.4961862 0.3951413 +0.4474232 0.4961862 0.3951413 +0.45727 0.4961862 0.3951413 +0.4662797 0.4961862 0.3951413 +0.4745834 0.4961862 0.3951413 +0.4822838 0.4961862 0.3951413 +0.4894626 0.4961862 0.3951413 +0.4961862 0.4961862 0.3951413 +0.5025087 0.4961862 0.3951413 +0.5084753 0.4961862 0.3951413 +0.514124 0.4961862 0.3951413 +0.519487 0.4961862 0.3951413 +0.5245917 0.4961862 0.3951413 +0.529462 0.4961862 0.3951413 +0.5341183 0.4961862 0.3951413 +0.5385787 0.4961862 0.3951413 +0.5428591 0.4961862 0.3951413 +0.5469733 0.4961862 0.3951413 +0.5509339 0.4961862 0.3951413 +0.5547519 0.4961862 0.3951413 +0.5584371 0.4961862 0.3951413 +0.5619986 0.4961862 0.3951413 +0.5654443 0.4961862 0.3951413 +0.5687816 0.4961862 0.3951413 +0.092819 0.5025087 0.3951413 +0.2262531 0.5025087 0.3951413 +0.2875993 0.5025087 0.3951413 +0.3262122 0.5025087 0.3951413 +0.3544566 0.5025087 0.3951413 +0.3767383 0.5025087 0.3951413 +0.3951413 0.5025087 0.3951413 +0.4108177 0.5025087 0.3951413 +0.4244723 0.5025087 0.3951413 +0.4365675 0.5025087 0.3951413 +0.4474232 0.5025087 0.3951413 +0.45727 0.5025087 0.3951413 +0.4662797 0.5025087 0.3951413 +0.4745834 0.5025087 0.3951413 +0.4822838 0.5025087 0.3951413 +0.4894626 0.5025087 0.3951413 +0.4961862 0.5025087 0.3951413 +0.5025087 0.5025087 0.3951413 +0.5084753 0.5025087 0.3951413 +0.514124 0.5025087 0.3951413 +0.519487 0.5025087 0.3951413 +0.5245917 0.5025087 0.3951413 +0.529462 0.5025087 0.3951413 +0.5341183 0.5025087 0.3951413 +0.5385787 0.5025087 0.3951413 +0.5428591 0.5025087 0.3951413 +0.5469733 0.5025087 0.3951413 +0.5509339 0.5025087 0.3951413 +0.5547519 0.5025087 0.3951413 +0.5584371 0.5025087 0.3951413 +0.5619986 0.5025087 0.3951413 +0.5654443 0.5025087 0.3951413 +0.5687816 0.5025087 0.3951413 +0.092819 0.5084753 0.3951413 +0.2262531 0.5084753 0.3951413 +0.2875993 0.5084753 0.3951413 +0.3262122 0.5084753 0.3951413 +0.3544566 0.5084753 0.3951413 +0.3767383 0.5084753 0.3951413 +0.3951413 0.5084753 0.3951413 +0.4108177 0.5084753 0.3951413 +0.4244723 0.5084753 0.3951413 +0.4365675 0.5084753 0.3951413 +0.4474232 0.5084753 0.3951413 +0.45727 0.5084753 0.3951413 +0.4662797 0.5084753 0.3951413 +0.4745834 0.5084753 0.3951413 +0.4822838 0.5084753 0.3951413 +0.4894626 0.5084753 0.3951413 +0.4961862 0.5084753 0.3951413 +0.5025087 0.5084753 0.3951413 +0.5084753 0.5084753 0.3951413 +0.514124 0.5084753 0.3951413 +0.519487 0.5084753 0.3951413 +0.5245917 0.5084753 0.3951413 +0.529462 0.5084753 0.3951413 +0.5341183 0.5084753 0.3951413 +0.5385787 0.5084753 0.3951413 +0.5428591 0.5084753 0.3951413 +0.5469733 0.5084753 0.3951413 +0.5509339 0.5084753 0.3951413 +0.5547519 0.5084753 0.3951413 +0.5584371 0.5084753 0.3951413 +0.5619986 0.5084753 0.3951413 +0.5654443 0.5084753 0.3951413 +0.5687816 0.5084753 0.3951413 +0.092819 0.514124 0.3951413 +0.2262531 0.514124 0.3951413 +0.2875993 0.514124 0.3951413 +0.3262122 0.514124 0.3951413 +0.3544566 0.514124 0.3951413 +0.3767383 0.514124 0.3951413 +0.3951413 0.514124 0.3951413 +0.4108177 0.514124 0.3951413 +0.4244723 0.514124 0.3951413 +0.4365675 0.514124 0.3951413 +0.4474232 0.514124 0.3951413 +0.45727 0.514124 0.3951413 +0.4662797 0.514124 0.3951413 +0.4745834 0.514124 0.3951413 +0.4822838 0.514124 0.3951413 +0.4894626 0.514124 0.3951413 +0.4961862 0.514124 0.3951413 +0.5025087 0.514124 0.3951413 +0.5084753 0.514124 0.3951413 +0.514124 0.514124 0.3951413 +0.519487 0.514124 0.3951413 +0.5245917 0.514124 0.3951413 +0.529462 0.514124 0.3951413 +0.5341183 0.514124 0.3951413 +0.5385787 0.514124 0.3951413 +0.5428591 0.514124 0.3951413 +0.5469733 0.514124 0.3951413 +0.5509339 0.514124 0.3951413 +0.5547519 0.514124 0.3951413 +0.5584371 0.514124 0.3951413 +0.5619986 0.514124 0.3951413 +0.5654443 0.514124 0.3951413 +0.5687816 0.514124 0.3951413 +0.092819 0.519487 0.3951413 +0.2262531 0.519487 0.3951413 +0.2875993 0.519487 0.3951413 +0.3262122 0.519487 0.3951413 +0.3544566 0.519487 0.3951413 +0.3767383 0.519487 0.3951413 +0.3951413 0.519487 0.3951413 +0.4108177 0.519487 0.3951413 +0.4244723 0.519487 0.3951413 +0.4365675 0.519487 0.3951413 +0.4474232 0.519487 0.3951413 +0.45727 0.519487 0.3951413 +0.4662797 0.519487 0.3951413 +0.4745834 0.519487 0.3951413 +0.4822838 0.519487 0.3951413 +0.4894626 0.519487 0.3951413 +0.4961862 0.519487 0.3951413 +0.5025087 0.519487 0.3951413 +0.5084753 0.519487 0.3951413 +0.514124 0.519487 0.3951413 +0.519487 0.519487 0.3951413 +0.5245917 0.519487 0.3951413 +0.529462 0.519487 0.3951413 +0.5341183 0.519487 0.3951413 +0.5385787 0.519487 0.3951413 +0.5428591 0.519487 0.3951413 +0.5469733 0.519487 0.3951413 +0.5509339 0.519487 0.3951413 +0.5547519 0.519487 0.3951413 +0.5584371 0.519487 0.3951413 +0.5619986 0.519487 0.3951413 +0.5654443 0.519487 0.3951413 +0.5687816 0.519487 0.3951413 +0.092819 0.5245917 0.3951413 +0.2262531 0.5245917 0.3951413 +0.2875993 0.5245917 0.3951413 +0.3262122 0.5245917 0.3951413 +0.3544566 0.5245917 0.3951413 +0.3767383 0.5245917 0.3951413 +0.3951413 0.5245917 0.3951413 +0.4108177 0.5245917 0.3951413 +0.4244723 0.5245917 0.3951413 +0.4365675 0.5245917 0.3951413 +0.4474232 0.5245917 0.3951413 +0.45727 0.5245917 0.3951413 +0.4662797 0.5245917 0.3951413 +0.4745834 0.5245917 0.3951413 +0.4822838 0.5245917 0.3951413 +0.4894626 0.5245917 0.3951413 +0.4961862 0.5245917 0.3951413 +0.5025087 0.5245917 0.3951413 +0.5084753 0.5245917 0.3951413 +0.514124 0.5245917 0.3951413 +0.519487 0.5245917 0.3951413 +0.5245917 0.5245917 0.3951413 +0.529462 0.5245917 0.3951413 +0.5341183 0.5245917 0.3951413 +0.5385787 0.5245917 0.3951413 +0.5428591 0.5245917 0.3951413 +0.5469733 0.5245917 0.3951413 +0.5509339 0.5245917 0.3951413 +0.5547519 0.5245917 0.3951413 +0.5584371 0.5245917 0.3951413 +0.5619986 0.5245917 0.3951413 +0.5654443 0.5245917 0.3951413 +0.5687816 0.5245917 0.3951413 +0.092819 0.529462 0.3951413 +0.2262531 0.529462 0.3951413 +0.2875993 0.529462 0.3951413 +0.3262122 0.529462 0.3951413 +0.3544566 0.529462 0.3951413 +0.3767383 0.529462 0.3951413 +0.3951413 0.529462 0.3951413 +0.4108177 0.529462 0.3951413 +0.4244723 0.529462 0.3951413 +0.4365675 0.529462 0.3951413 +0.4474232 0.529462 0.3951413 +0.45727 0.529462 0.3951413 +0.4662797 0.529462 0.3951413 +0.4745834 0.529462 0.3951413 +0.4822838 0.529462 0.3951413 +0.4894626 0.529462 0.3951413 +0.4961862 0.529462 0.3951413 +0.5025087 0.529462 0.3951413 +0.5084753 0.529462 0.3951413 +0.514124 0.529462 0.3951413 +0.519487 0.529462 0.3951413 +0.5245917 0.529462 0.3951413 +0.529462 0.529462 0.3951413 +0.5341183 0.529462 0.3951413 +0.5385787 0.529462 0.3951413 +0.5428591 0.529462 0.3951413 +0.5469733 0.529462 0.3951413 +0.5509339 0.529462 0.3951413 +0.5547519 0.529462 0.3951413 +0.5584371 0.529462 0.3951413 +0.5619986 0.529462 0.3951413 +0.5654443 0.529462 0.3951413 +0.5687816 0.529462 0.3951413 +0.092819 0.5341183 0.3951413 +0.2262531 0.5341183 0.3951413 +0.2875993 0.5341183 0.3951413 +0.3262122 0.5341183 0.3951413 +0.3544566 0.5341183 0.3951413 +0.3767383 0.5341183 0.3951413 +0.3951413 0.5341183 0.3951413 +0.4108177 0.5341183 0.3951413 +0.4244723 0.5341183 0.3951413 +0.4365675 0.5341183 0.3951413 +0.4474232 0.5341183 0.3951413 +0.45727 0.5341183 0.3951413 +0.4662797 0.5341183 0.3951413 +0.4745834 0.5341183 0.3951413 +0.4822838 0.5341183 0.3951413 +0.4894626 0.5341183 0.3951413 +0.4961862 0.5341183 0.3951413 +0.5025087 0.5341183 0.3951413 +0.5084753 0.5341183 0.3951413 +0.514124 0.5341183 0.3951413 +0.519487 0.5341183 0.3951413 +0.5245917 0.5341183 0.3951413 +0.529462 0.5341183 0.3951413 +0.5341183 0.5341183 0.3951413 +0.5385787 0.5341183 0.3951413 +0.5428591 0.5341183 0.3951413 +0.5469733 0.5341183 0.3951413 +0.5509339 0.5341183 0.3951413 +0.5547519 0.5341183 0.3951413 +0.5584371 0.5341183 0.3951413 +0.5619986 0.5341183 0.3951413 +0.5654443 0.5341183 0.3951413 +0.5687816 0.5341183 0.3951413 +0.092819 0.5385787 0.3951413 +0.2262531 0.5385787 0.3951413 +0.2875993 0.5385787 0.3951413 +0.3262122 0.5385787 0.3951413 +0.3544566 0.5385787 0.3951413 +0.3767383 0.5385787 0.3951413 +0.3951413 0.5385787 0.3951413 +0.4108177 0.5385787 0.3951413 +0.4244723 0.5385787 0.3951413 +0.4365675 0.5385787 0.3951413 +0.4474232 0.5385787 0.3951413 +0.45727 0.5385787 0.3951413 +0.4662797 0.5385787 0.3951413 +0.4745834 0.5385787 0.3951413 +0.4822838 0.5385787 0.3951413 +0.4894626 0.5385787 0.3951413 +0.4961862 0.5385787 0.3951413 +0.5025087 0.5385787 0.3951413 +0.5084753 0.5385787 0.3951413 +0.514124 0.5385787 0.3951413 +0.519487 0.5385787 0.3951413 +0.5245917 0.5385787 0.3951413 +0.529462 0.5385787 0.3951413 +0.5341183 0.5385787 0.3951413 +0.5385787 0.5385787 0.3951413 +0.5428591 0.5385787 0.3951413 +0.5469733 0.5385787 0.3951413 +0.5509339 0.5385787 0.3951413 +0.5547519 0.5385787 0.3951413 +0.5584371 0.5385787 0.3951413 +0.5619986 0.5385787 0.3951413 +0.5654443 0.5385787 0.3951413 +0.5687816 0.5385787 0.3951413 +0.092819 0.5428591 0.3951413 +0.2262531 0.5428591 0.3951413 +0.2875993 0.5428591 0.3951413 +0.3262122 0.5428591 0.3951413 +0.3544566 0.5428591 0.3951413 +0.3767383 0.5428591 0.3951413 +0.3951413 0.5428591 0.3951413 +0.4108177 0.5428591 0.3951413 +0.4244723 0.5428591 0.3951413 +0.4365675 0.5428591 0.3951413 +0.4474232 0.5428591 0.3951413 +0.45727 0.5428591 0.3951413 +0.4662797 0.5428591 0.3951413 +0.4745834 0.5428591 0.3951413 +0.4822838 0.5428591 0.3951413 +0.4894626 0.5428591 0.3951413 +0.4961862 0.5428591 0.3951413 +0.5025087 0.5428591 0.3951413 +0.5084753 0.5428591 0.3951413 +0.514124 0.5428591 0.3951413 +0.519487 0.5428591 0.3951413 +0.5245917 0.5428591 0.3951413 +0.529462 0.5428591 0.3951413 +0.5341183 0.5428591 0.3951413 +0.5385787 0.5428591 0.3951413 +0.5428591 0.5428591 0.3951413 +0.5469733 0.5428591 0.3951413 +0.5509339 0.5428591 0.3951413 +0.5547519 0.5428591 0.3951413 +0.5584371 0.5428591 0.3951413 +0.5619986 0.5428591 0.3951413 +0.5654443 0.5428591 0.3951413 +0.5687816 0.5428591 0.3951413 +0.092819 0.5469733 0.3951413 +0.2262531 0.5469733 0.3951413 +0.2875993 0.5469733 0.3951413 +0.3262122 0.5469733 0.3951413 +0.3544566 0.5469733 0.3951413 +0.3767383 0.5469733 0.3951413 +0.3951413 0.5469733 0.3951413 +0.4108177 0.5469733 0.3951413 +0.4244723 0.5469733 0.3951413 +0.4365675 0.5469733 0.3951413 +0.4474232 0.5469733 0.3951413 +0.45727 0.5469733 0.3951413 +0.4662797 0.5469733 0.3951413 +0.4745834 0.5469733 0.3951413 +0.4822838 0.5469733 0.3951413 +0.4894626 0.5469733 0.3951413 +0.4961862 0.5469733 0.3951413 +0.5025087 0.5469733 0.3951413 +0.5084753 0.5469733 0.3951413 +0.514124 0.5469733 0.3951413 +0.519487 0.5469733 0.3951413 +0.5245917 0.5469733 0.3951413 +0.529462 0.5469733 0.3951413 +0.5341183 0.5469733 0.3951413 +0.5385787 0.5469733 0.3951413 +0.5428591 0.5469733 0.3951413 +0.5469733 0.5469733 0.3951413 +0.5509339 0.5469733 0.3951413 +0.5547519 0.5469733 0.3951413 +0.5584371 0.5469733 0.3951413 +0.5619986 0.5469733 0.3951413 +0.5654443 0.5469733 0.3951413 +0.5687816 0.5469733 0.3951413 +0.092819 0.5509339 0.3951413 +0.2262531 0.5509339 0.3951413 +0.2875993 0.5509339 0.3951413 +0.3262122 0.5509339 0.3951413 +0.3544566 0.5509339 0.3951413 +0.3767383 0.5509339 0.3951413 +0.3951413 0.5509339 0.3951413 +0.4108177 0.5509339 0.3951413 +0.4244723 0.5509339 0.3951413 +0.4365675 0.5509339 0.3951413 +0.4474232 0.5509339 0.3951413 +0.45727 0.5509339 0.3951413 +0.4662797 0.5509339 0.3951413 +0.4745834 0.5509339 0.3951413 +0.4822838 0.5509339 0.3951413 +0.4894626 0.5509339 0.3951413 +0.4961862 0.5509339 0.3951413 +0.5025087 0.5509339 0.3951413 +0.5084753 0.5509339 0.3951413 +0.514124 0.5509339 0.3951413 +0.519487 0.5509339 0.3951413 +0.5245917 0.5509339 0.3951413 +0.529462 0.5509339 0.3951413 +0.5341183 0.5509339 0.3951413 +0.5385787 0.5509339 0.3951413 +0.5428591 0.5509339 0.3951413 +0.5469733 0.5509339 0.3951413 +0.5509339 0.5509339 0.3951413 +0.5547519 0.5509339 0.3951413 +0.5584371 0.5509339 0.3951413 +0.5619986 0.5509339 0.3951413 +0.5654443 0.5509339 0.3951413 +0.5687816 0.5509339 0.3951413 +0.092819 0.5547519 0.3951413 +0.2262531 0.5547519 0.3951413 +0.2875993 0.5547519 0.3951413 +0.3262122 0.5547519 0.3951413 +0.3544566 0.5547519 0.3951413 +0.3767383 0.5547519 0.3951413 +0.3951413 0.5547519 0.3951413 +0.4108177 0.5547519 0.3951413 +0.4244723 0.5547519 0.3951413 +0.4365675 0.5547519 0.3951413 +0.4474232 0.5547519 0.3951413 +0.45727 0.5547519 0.3951413 +0.4662797 0.5547519 0.3951413 +0.4745834 0.5547519 0.3951413 +0.4822838 0.5547519 0.3951413 +0.4894626 0.5547519 0.3951413 +0.4961862 0.5547519 0.3951413 +0.5025087 0.5547519 0.3951413 +0.5084753 0.5547519 0.3951413 +0.514124 0.5547519 0.3951413 +0.519487 0.5547519 0.3951413 +0.5245917 0.5547519 0.3951413 +0.529462 0.5547519 0.3951413 +0.5341183 0.5547519 0.3951413 +0.5385787 0.5547519 0.3951413 +0.5428591 0.5547519 0.3951413 +0.5469733 0.5547519 0.3951413 +0.5509339 0.5547519 0.3951413 +0.5547519 0.5547519 0.3951413 +0.5584371 0.5547519 0.3951413 +0.5619986 0.5547519 0.3951413 +0.5654443 0.5547519 0.3951413 +0.5687816 0.5547519 0.3951413 +0.092819 0.5584371 0.3951413 +0.2262531 0.5584371 0.3951413 +0.2875993 0.5584371 0.3951413 +0.3262122 0.5584371 0.3951413 +0.3544566 0.5584371 0.3951413 +0.3767383 0.5584371 0.3951413 +0.3951413 0.5584371 0.3951413 +0.4108177 0.5584371 0.3951413 +0.4244723 0.5584371 0.3951413 +0.4365675 0.5584371 0.3951413 +0.4474232 0.5584371 0.3951413 +0.45727 0.5584371 0.3951413 +0.4662797 0.5584371 0.3951413 +0.4745834 0.5584371 0.3951413 +0.4822838 0.5584371 0.3951413 +0.4894626 0.5584371 0.3951413 +0.4961862 0.5584371 0.3951413 +0.5025087 0.5584371 0.3951413 +0.5084753 0.5584371 0.3951413 +0.514124 0.5584371 0.3951413 +0.519487 0.5584371 0.3951413 +0.5245917 0.5584371 0.3951413 +0.529462 0.5584371 0.3951413 +0.5341183 0.5584371 0.3951413 +0.5385787 0.5584371 0.3951413 +0.5428591 0.5584371 0.3951413 +0.5469733 0.5584371 0.3951413 +0.5509339 0.5584371 0.3951413 +0.5547519 0.5584371 0.3951413 +0.5584371 0.5584371 0.3951413 +0.5619986 0.5584371 0.3951413 +0.5654443 0.5584371 0.3951413 +0.5687816 0.5584371 0.3951413 +0.092819 0.5619986 0.3951413 +0.2262531 0.5619986 0.3951413 +0.2875993 0.5619986 0.3951413 +0.3262122 0.5619986 0.3951413 +0.3544566 0.5619986 0.3951413 +0.3767383 0.5619986 0.3951413 +0.3951413 0.5619986 0.3951413 +0.4108177 0.5619986 0.3951413 +0.4244723 0.5619986 0.3951413 +0.4365675 0.5619986 0.3951413 +0.4474232 0.5619986 0.3951413 +0.45727 0.5619986 0.3951413 +0.4662797 0.5619986 0.3951413 +0.4745834 0.5619986 0.3951413 +0.4822838 0.5619986 0.3951413 +0.4894626 0.5619986 0.3951413 +0.4961862 0.5619986 0.3951413 +0.5025087 0.5619986 0.3951413 +0.5084753 0.5619986 0.3951413 +0.514124 0.5619986 0.3951413 +0.519487 0.5619986 0.3951413 +0.5245917 0.5619986 0.3951413 +0.529462 0.5619986 0.3951413 +0.5341183 0.5619986 0.3951413 +0.5385787 0.5619986 0.3951413 +0.5428591 0.5619986 0.3951413 +0.5469733 0.5619986 0.3951413 +0.5509339 0.5619986 0.3951413 +0.5547519 0.5619986 0.3951413 +0.5584371 0.5619986 0.3951413 +0.5619986 0.5619986 0.3951413 +0.5654443 0.5619986 0.3951413 +0.5687816 0.5619986 0.3951413 +0.092819 0.5654443 0.3951413 +0.2262531 0.5654443 0.3951413 +0.2875993 0.5654443 0.3951413 +0.3262122 0.5654443 0.3951413 +0.3544566 0.5654443 0.3951413 +0.3767383 0.5654443 0.3951413 +0.3951413 0.5654443 0.3951413 +0.4108177 0.5654443 0.3951413 +0.4244723 0.5654443 0.3951413 +0.4365675 0.5654443 0.3951413 +0.4474232 0.5654443 0.3951413 +0.45727 0.5654443 0.3951413 +0.4662797 0.5654443 0.3951413 +0.4745834 0.5654443 0.3951413 +0.4822838 0.5654443 0.3951413 +0.4894626 0.5654443 0.3951413 +0.4961862 0.5654443 0.3951413 +0.5025087 0.5654443 0.3951413 +0.5084753 0.5654443 0.3951413 +0.514124 0.5654443 0.3951413 +0.519487 0.5654443 0.3951413 +0.5245917 0.5654443 0.3951413 +0.529462 0.5654443 0.3951413 +0.5341183 0.5654443 0.3951413 +0.5385787 0.5654443 0.3951413 +0.5428591 0.5654443 0.3951413 +0.5469733 0.5654443 0.3951413 +0.5509339 0.5654443 0.3951413 +0.5547519 0.5654443 0.3951413 +0.5584371 0.5654443 0.3951413 +0.5619986 0.5654443 0.3951413 +0.5654443 0.5654443 0.3951413 +0.5687816 0.5654443 0.3951413 +0.092819 0.5687816 0.3951413 +0.2262531 0.5687816 0.3951413 +0.2875993 0.5687816 0.3951413 +0.3262122 0.5687816 0.3951413 +0.3544566 0.5687816 0.3951413 +0.3767383 0.5687816 0.3951413 +0.3951413 0.5687816 0.3951413 +0.4108177 0.5687816 0.3951413 +0.4244723 0.5687816 0.3951413 +0.4365675 0.5687816 0.3951413 +0.4474232 0.5687816 0.3951413 +0.45727 0.5687816 0.3951413 +0.4662797 0.5687816 0.3951413 +0.4745834 0.5687816 0.3951413 +0.4822838 0.5687816 0.3951413 +0.4894626 0.5687816 0.3951413 +0.4961862 0.5687816 0.3951413 +0.5025087 0.5687816 0.3951413 +0.5084753 0.5687816 0.3951413 +0.514124 0.5687816 0.3951413 +0.519487 0.5687816 0.3951413 +0.5245917 0.5687816 0.3951413 +0.529462 0.5687816 0.3951413 +0.5341183 0.5687816 0.3951413 +0.5385787 0.5687816 0.3951413 +0.5428591 0.5687816 0.3951413 +0.5469733 0.5687816 0.3951413 +0.5509339 0.5687816 0.3951413 +0.5547519 0.5687816 0.3951413 +0.5584371 0.5687816 0.3951413 +0.5619986 0.5687816 0.3951413 +0.5654443 0.5687816 0.3951413 +0.5687816 0.5687816 0.3951413 +0.092819 0.092819 0.4108177 +0.2262531 0.092819 0.4108177 +0.2875993 0.092819 0.4108177 +0.3262122 0.092819 0.4108177 +0.3544566 0.092819 0.4108177 +0.3767383 0.092819 0.4108177 +0.3951413 0.092819 0.4108177 +0.4108177 0.092819 0.4108177 +0.4244723 0.092819 0.4108177 +0.4365675 0.092819 0.4108177 +0.4474232 0.092819 0.4108177 +0.45727 0.092819 0.4108177 +0.4662797 0.092819 0.4108177 +0.4745834 0.092819 0.4108177 +0.4822838 0.092819 0.4108177 +0.4894626 0.092819 0.4108177 +0.4961862 0.092819 0.4108177 +0.5025087 0.092819 0.4108177 +0.5084753 0.092819 0.4108177 +0.514124 0.092819 0.4108177 +0.519487 0.092819 0.4108177 +0.5245917 0.092819 0.4108177 +0.529462 0.092819 0.4108177 +0.5341183 0.092819 0.4108177 +0.5385787 0.092819 0.4108177 +0.5428591 0.092819 0.4108177 +0.5469733 0.092819 0.4108177 +0.5509339 0.092819 0.4108177 +0.5547519 0.092819 0.4108177 +0.5584371 0.092819 0.4108177 +0.5619986 0.092819 0.4108177 +0.5654443 0.092819 0.4108177 +0.5687816 0.092819 0.4108177 +0.092819 0.2262531 0.4108177 +0.2262531 0.2262531 0.4108177 +0.2875993 0.2262531 0.4108177 +0.3262122 0.2262531 0.4108177 +0.3544566 0.2262531 0.4108177 +0.3767383 0.2262531 0.4108177 +0.3951413 0.2262531 0.4108177 +0.4108177 0.2262531 0.4108177 +0.4244723 0.2262531 0.4108177 +0.4365675 0.2262531 0.4108177 +0.4474232 0.2262531 0.4108177 +0.45727 0.2262531 0.4108177 +0.4662797 0.2262531 0.4108177 +0.4745834 0.2262531 0.4108177 +0.4822838 0.2262531 0.4108177 +0.4894626 0.2262531 0.4108177 +0.4961862 0.2262531 0.4108177 +0.5025087 0.2262531 0.4108177 +0.5084753 0.2262531 0.4108177 +0.514124 0.2262531 0.4108177 +0.519487 0.2262531 0.4108177 +0.5245917 0.2262531 0.4108177 +0.529462 0.2262531 0.4108177 +0.5341183 0.2262531 0.4108177 +0.5385787 0.2262531 0.4108177 +0.5428591 0.2262531 0.4108177 +0.5469733 0.2262531 0.4108177 +0.5509339 0.2262531 0.4108177 +0.5547519 0.2262531 0.4108177 +0.5584371 0.2262531 0.4108177 +0.5619986 0.2262531 0.4108177 +0.5654443 0.2262531 0.4108177 +0.5687816 0.2262531 0.4108177 +0.092819 0.2875993 0.4108177 +0.2262531 0.2875993 0.4108177 +0.2875993 0.2875993 0.4108177 +0.3262122 0.2875993 0.4108177 +0.3544566 0.2875993 0.4108177 +0.3767383 0.2875993 0.4108177 +0.3951413 0.2875993 0.4108177 +0.4108177 0.2875993 0.4108177 +0.4244723 0.2875993 0.4108177 +0.4365675 0.2875993 0.4108177 +0.4474232 0.2875993 0.4108177 +0.45727 0.2875993 0.4108177 +0.4662797 0.2875993 0.4108177 +0.4745834 0.2875993 0.4108177 +0.4822838 0.2875993 0.4108177 +0.4894626 0.2875993 0.4108177 +0.4961862 0.2875993 0.4108177 +0.5025087 0.2875993 0.4108177 +0.5084753 0.2875993 0.4108177 +0.514124 0.2875993 0.4108177 +0.519487 0.2875993 0.4108177 +0.5245917 0.2875993 0.4108177 +0.529462 0.2875993 0.4108177 +0.5341183 0.2875993 0.4108177 +0.5385787 0.2875993 0.4108177 +0.5428591 0.2875993 0.4108177 +0.5469733 0.2875993 0.4108177 +0.5509339 0.2875993 0.4108177 +0.5547519 0.2875993 0.4108177 +0.5584371 0.2875993 0.4108177 +0.5619986 0.2875993 0.4108177 +0.5654443 0.2875993 0.4108177 +0.5687816 0.2875993 0.4108177 +0.092819 0.3262122 0.4108177 +0.2262531 0.3262122 0.4108177 +0.2875993 0.3262122 0.4108177 +0.3262122 0.3262122 0.4108177 +0.3544566 0.3262122 0.4108177 +0.3767383 0.3262122 0.4108177 +0.3951413 0.3262122 0.4108177 +0.4108177 0.3262122 0.4108177 +0.4244723 0.3262122 0.4108177 +0.4365675 0.3262122 0.4108177 +0.4474232 0.3262122 0.4108177 +0.45727 0.3262122 0.4108177 +0.4662797 0.3262122 0.4108177 +0.4745834 0.3262122 0.4108177 +0.4822838 0.3262122 0.4108177 +0.4894626 0.3262122 0.4108177 +0.4961862 0.3262122 0.4108177 +0.5025087 0.3262122 0.4108177 +0.5084753 0.3262122 0.4108177 +0.514124 0.3262122 0.4108177 +0.519487 0.3262122 0.4108177 +0.5245917 0.3262122 0.4108177 +0.529462 0.3262122 0.4108177 +0.5341183 0.3262122 0.4108177 +0.5385787 0.3262122 0.4108177 +0.5428591 0.3262122 0.4108177 +0.5469733 0.3262122 0.4108177 +0.5509339 0.3262122 0.4108177 +0.5547519 0.3262122 0.4108177 +0.5584371 0.3262122 0.4108177 +0.5619986 0.3262122 0.4108177 +0.5654443 0.3262122 0.4108177 +0.5687816 0.3262122 0.4108177 +0.092819 0.3544566 0.4108177 +0.2262531 0.3544566 0.4108177 +0.2875993 0.3544566 0.4108177 +0.3262122 0.3544566 0.4108177 +0.3544566 0.3544566 0.4108177 +0.3767383 0.3544566 0.4108177 +0.3951413 0.3544566 0.4108177 +0.4108177 0.3544566 0.4108177 +0.4244723 0.3544566 0.4108177 +0.4365675 0.3544566 0.4108177 +0.4474232 0.3544566 0.4108177 +0.45727 0.3544566 0.4108177 +0.4662797 0.3544566 0.4108177 +0.4745834 0.3544566 0.4108177 +0.4822838 0.3544566 0.4108177 +0.4894626 0.3544566 0.4108177 +0.4961862 0.3544566 0.4108177 +0.5025087 0.3544566 0.4108177 +0.5084753 0.3544566 0.4108177 +0.514124 0.3544566 0.4108177 +0.519487 0.3544566 0.4108177 +0.5245917 0.3544566 0.4108177 +0.529462 0.3544566 0.4108177 +0.5341183 0.3544566 0.4108177 +0.5385787 0.3544566 0.4108177 +0.5428591 0.3544566 0.4108177 +0.5469733 0.3544566 0.4108177 +0.5509339 0.3544566 0.4108177 +0.5547519 0.3544566 0.4108177 +0.5584371 0.3544566 0.4108177 +0.5619986 0.3544566 0.4108177 +0.5654443 0.3544566 0.4108177 +0.5687816 0.3544566 0.4108177 +0.092819 0.3767383 0.4108177 +0.2262531 0.3767383 0.4108177 +0.2875993 0.3767383 0.4108177 +0.3262122 0.3767383 0.4108177 +0.3544566 0.3767383 0.4108177 +0.3767383 0.3767383 0.4108177 +0.3951413 0.3767383 0.4108177 +0.4108177 0.3767383 0.4108177 +0.4244723 0.3767383 0.4108177 +0.4365675 0.3767383 0.4108177 +0.4474232 0.3767383 0.4108177 +0.45727 0.3767383 0.4108177 +0.4662797 0.3767383 0.4108177 +0.4745834 0.3767383 0.4108177 +0.4822838 0.3767383 0.4108177 +0.4894626 0.3767383 0.4108177 +0.4961862 0.3767383 0.4108177 +0.5025087 0.3767383 0.4108177 +0.5084753 0.3767383 0.4108177 +0.514124 0.3767383 0.4108177 +0.519487 0.3767383 0.4108177 +0.5245917 0.3767383 0.4108177 +0.529462 0.3767383 0.4108177 +0.5341183 0.3767383 0.4108177 +0.5385787 0.3767383 0.4108177 +0.5428591 0.3767383 0.4108177 +0.5469733 0.3767383 0.4108177 +0.5509339 0.3767383 0.4108177 +0.5547519 0.3767383 0.4108177 +0.5584371 0.3767383 0.4108177 +0.5619986 0.3767383 0.4108177 +0.5654443 0.3767383 0.4108177 +0.5687816 0.3767383 0.4108177 +0.092819 0.3951413 0.4108177 +0.2262531 0.3951413 0.4108177 +0.2875993 0.3951413 0.4108177 +0.3262122 0.3951413 0.4108177 +0.3544566 0.3951413 0.4108177 +0.3767383 0.3951413 0.4108177 +0.3951413 0.3951413 0.4108177 +0.4108177 0.3951413 0.4108177 +0.4244723 0.3951413 0.4108177 +0.4365675 0.3951413 0.4108177 +0.4474232 0.3951413 0.4108177 +0.45727 0.3951413 0.4108177 +0.4662797 0.3951413 0.4108177 +0.4745834 0.3951413 0.4108177 +0.4822838 0.3951413 0.4108177 +0.4894626 0.3951413 0.4108177 +0.4961862 0.3951413 0.4108177 +0.5025087 0.3951413 0.4108177 +0.5084753 0.3951413 0.4108177 +0.514124 0.3951413 0.4108177 +0.519487 0.3951413 0.4108177 +0.5245917 0.3951413 0.4108177 +0.529462 0.3951413 0.4108177 +0.5341183 0.3951413 0.4108177 +0.5385787 0.3951413 0.4108177 +0.5428591 0.3951413 0.4108177 +0.5469733 0.3951413 0.4108177 +0.5509339 0.3951413 0.4108177 +0.5547519 0.3951413 0.4108177 +0.5584371 0.3951413 0.4108177 +0.5619986 0.3951413 0.4108177 +0.5654443 0.3951413 0.4108177 +0.5687816 0.3951413 0.4108177 +0.092819 0.4108177 0.4108177 +0.2262531 0.4108177 0.4108177 +0.2875993 0.4108177 0.4108177 +0.3262122 0.4108177 0.4108177 +0.3544566 0.4108177 0.4108177 +0.3767383 0.4108177 0.4108177 +0.3951413 0.4108177 0.4108177 +0.4108177 0.4108177 0.4108177 +0.4244723 0.4108177 0.4108177 +0.4365675 0.4108177 0.4108177 +0.4474232 0.4108177 0.4108177 +0.45727 0.4108177 0.4108177 +0.4662797 0.4108177 0.4108177 +0.4745834 0.4108177 0.4108177 +0.4822838 0.4108177 0.4108177 +0.4894626 0.4108177 0.4108177 +0.4961862 0.4108177 0.4108177 +0.5025087 0.4108177 0.4108177 +0.5084753 0.4108177 0.4108177 +0.514124 0.4108177 0.4108177 +0.519487 0.4108177 0.4108177 +0.5245917 0.4108177 0.4108177 +0.529462 0.4108177 0.4108177 +0.5341183 0.4108177 0.4108177 +0.5385787 0.4108177 0.4108177 +0.5428591 0.4108177 0.4108177 +0.5469733 0.4108177 0.4108177 +0.5509339 0.4108177 0.4108177 +0.5547519 0.4108177 0.4108177 +0.5584371 0.4108177 0.4108177 +0.5619986 0.4108177 0.4108177 +0.5654443 0.4108177 0.4108177 +0.5687816 0.4108177 0.4108177 +0.092819 0.4244723 0.4108177 +0.2262531 0.4244723 0.4108177 +0.2875993 0.4244723 0.4108177 +0.3262122 0.4244723 0.4108177 +0.3544566 0.4244723 0.4108177 +0.3767383 0.4244723 0.4108177 +0.3951413 0.4244723 0.4108177 +0.4108177 0.4244723 0.4108177 +0.4244723 0.4244723 0.4108177 +0.4365675 0.4244723 0.4108177 +0.4474232 0.4244723 0.4108177 +0.45727 0.4244723 0.4108177 +0.4662797 0.4244723 0.4108177 +0.4745834 0.4244723 0.4108177 +0.4822838 0.4244723 0.4108177 +0.4894626 0.4244723 0.4108177 +0.4961862 0.4244723 0.4108177 +0.5025087 0.4244723 0.4108177 +0.5084753 0.4244723 0.4108177 +0.514124 0.4244723 0.4108177 +0.519487 0.4244723 0.4108177 +0.5245917 0.4244723 0.4108177 +0.529462 0.4244723 0.4108177 +0.5341183 0.4244723 0.4108177 +0.5385787 0.4244723 0.4108177 +0.5428591 0.4244723 0.4108177 +0.5469733 0.4244723 0.4108177 +0.5509339 0.4244723 0.4108177 +0.5547519 0.4244723 0.4108177 +0.5584371 0.4244723 0.4108177 +0.5619986 0.4244723 0.4108177 +0.5654443 0.4244723 0.4108177 +0.5687816 0.4244723 0.4108177 +0.092819 0.4365675 0.4108177 +0.2262531 0.4365675 0.4108177 +0.2875993 0.4365675 0.4108177 +0.3262122 0.4365675 0.4108177 +0.3544566 0.4365675 0.4108177 +0.3767383 0.4365675 0.4108177 +0.3951413 0.4365675 0.4108177 +0.4108177 0.4365675 0.4108177 +0.4244723 0.4365675 0.4108177 +0.4365675 0.4365675 0.4108177 +0.4474232 0.4365675 0.4108177 +0.45727 0.4365675 0.4108177 +0.4662797 0.4365675 0.4108177 +0.4745834 0.4365675 0.4108177 +0.4822838 0.4365675 0.4108177 +0.4894626 0.4365675 0.4108177 +0.4961862 0.4365675 0.4108177 +0.5025087 0.4365675 0.4108177 +0.5084753 0.4365675 0.4108177 +0.514124 0.4365675 0.4108177 +0.519487 0.4365675 0.4108177 +0.5245917 0.4365675 0.4108177 +0.529462 0.4365675 0.4108177 +0.5341183 0.4365675 0.4108177 +0.5385787 0.4365675 0.4108177 +0.5428591 0.4365675 0.4108177 +0.5469733 0.4365675 0.4108177 +0.5509339 0.4365675 0.4108177 +0.5547519 0.4365675 0.4108177 +0.5584371 0.4365675 0.4108177 +0.5619986 0.4365675 0.4108177 +0.5654443 0.4365675 0.4108177 +0.5687816 0.4365675 0.4108177 +0.092819 0.4474232 0.4108177 +0.2262531 0.4474232 0.4108177 +0.2875993 0.4474232 0.4108177 +0.3262122 0.4474232 0.4108177 +0.3544566 0.4474232 0.4108177 +0.3767383 0.4474232 0.4108177 +0.3951413 0.4474232 0.4108177 +0.4108177 0.4474232 0.4108177 +0.4244723 0.4474232 0.4108177 +0.4365675 0.4474232 0.4108177 +0.4474232 0.4474232 0.4108177 +0.45727 0.4474232 0.4108177 +0.4662797 0.4474232 0.4108177 +0.4745834 0.4474232 0.4108177 +0.4822838 0.4474232 0.4108177 +0.4894626 0.4474232 0.4108177 +0.4961862 0.4474232 0.4108177 +0.5025087 0.4474232 0.4108177 +0.5084753 0.4474232 0.4108177 +0.514124 0.4474232 0.4108177 +0.519487 0.4474232 0.4108177 +0.5245917 0.4474232 0.4108177 +0.529462 0.4474232 0.4108177 +0.5341183 0.4474232 0.4108177 +0.5385787 0.4474232 0.4108177 +0.5428591 0.4474232 0.4108177 +0.5469733 0.4474232 0.4108177 +0.5509339 0.4474232 0.4108177 +0.5547519 0.4474232 0.4108177 +0.5584371 0.4474232 0.4108177 +0.5619986 0.4474232 0.4108177 +0.5654443 0.4474232 0.4108177 +0.5687816 0.4474232 0.4108177 +0.092819 0.45727 0.4108177 +0.2262531 0.45727 0.4108177 +0.2875993 0.45727 0.4108177 +0.3262122 0.45727 0.4108177 +0.3544566 0.45727 0.4108177 +0.3767383 0.45727 0.4108177 +0.3951413 0.45727 0.4108177 +0.4108177 0.45727 0.4108177 +0.4244723 0.45727 0.4108177 +0.4365675 0.45727 0.4108177 +0.4474232 0.45727 0.4108177 +0.45727 0.45727 0.4108177 +0.4662797 0.45727 0.4108177 +0.4745834 0.45727 0.4108177 +0.4822838 0.45727 0.4108177 +0.4894626 0.45727 0.4108177 +0.4961862 0.45727 0.4108177 +0.5025087 0.45727 0.4108177 +0.5084753 0.45727 0.4108177 +0.514124 0.45727 0.4108177 +0.519487 0.45727 0.4108177 +0.5245917 0.45727 0.4108177 +0.529462 0.45727 0.4108177 +0.5341183 0.45727 0.4108177 +0.5385787 0.45727 0.4108177 +0.5428591 0.45727 0.4108177 +0.5469733 0.45727 0.4108177 +0.5509339 0.45727 0.4108177 +0.5547519 0.45727 0.4108177 +0.5584371 0.45727 0.4108177 +0.5619986 0.45727 0.4108177 +0.5654443 0.45727 0.4108177 +0.5687816 0.45727 0.4108177 +0.092819 0.4662797 0.4108177 +0.2262531 0.4662797 0.4108177 +0.2875993 0.4662797 0.4108177 +0.3262122 0.4662797 0.4108177 +0.3544566 0.4662797 0.4108177 +0.3767383 0.4662797 0.4108177 +0.3951413 0.4662797 0.4108177 +0.4108177 0.4662797 0.4108177 +0.4244723 0.4662797 0.4108177 +0.4365675 0.4662797 0.4108177 +0.4474232 0.4662797 0.4108177 +0.45727 0.4662797 0.4108177 +0.4662797 0.4662797 0.4108177 +0.4745834 0.4662797 0.4108177 +0.4822838 0.4662797 0.4108177 +0.4894626 0.4662797 0.4108177 +0.4961862 0.4662797 0.4108177 +0.5025087 0.4662797 0.4108177 +0.5084753 0.4662797 0.4108177 +0.514124 0.4662797 0.4108177 +0.519487 0.4662797 0.4108177 +0.5245917 0.4662797 0.4108177 +0.529462 0.4662797 0.4108177 +0.5341183 0.4662797 0.4108177 +0.5385787 0.4662797 0.4108177 +0.5428591 0.4662797 0.4108177 +0.5469733 0.4662797 0.4108177 +0.5509339 0.4662797 0.4108177 +0.5547519 0.4662797 0.4108177 +0.5584371 0.4662797 0.4108177 +0.5619986 0.4662797 0.4108177 +0.5654443 0.4662797 0.4108177 +0.5687816 0.4662797 0.4108177 +0.092819 0.4745834 0.4108177 +0.2262531 0.4745834 0.4108177 +0.2875993 0.4745834 0.4108177 +0.3262122 0.4745834 0.4108177 +0.3544566 0.4745834 0.4108177 +0.3767383 0.4745834 0.4108177 +0.3951413 0.4745834 0.4108177 +0.4108177 0.4745834 0.4108177 +0.4244723 0.4745834 0.4108177 +0.4365675 0.4745834 0.4108177 +0.4474232 0.4745834 0.4108177 +0.45727 0.4745834 0.4108177 +0.4662797 0.4745834 0.4108177 +0.4745834 0.4745834 0.4108177 +0.4822838 0.4745834 0.4108177 +0.4894626 0.4745834 0.4108177 +0.4961862 0.4745834 0.4108177 +0.5025087 0.4745834 0.4108177 +0.5084753 0.4745834 0.4108177 +0.514124 0.4745834 0.4108177 +0.519487 0.4745834 0.4108177 +0.5245917 0.4745834 0.4108177 +0.529462 0.4745834 0.4108177 +0.5341183 0.4745834 0.4108177 +0.5385787 0.4745834 0.4108177 +0.5428591 0.4745834 0.4108177 +0.5469733 0.4745834 0.4108177 +0.5509339 0.4745834 0.4108177 +0.5547519 0.4745834 0.4108177 +0.5584371 0.4745834 0.4108177 +0.5619986 0.4745834 0.4108177 +0.5654443 0.4745834 0.4108177 +0.5687816 0.4745834 0.4108177 +0.092819 0.4822838 0.4108177 +0.2262531 0.4822838 0.4108177 +0.2875993 0.4822838 0.4108177 +0.3262122 0.4822838 0.4108177 +0.3544566 0.4822838 0.4108177 +0.3767383 0.4822838 0.4108177 +0.3951413 0.4822838 0.4108177 +0.4108177 0.4822838 0.4108177 +0.4244723 0.4822838 0.4108177 +0.4365675 0.4822838 0.4108177 +0.4474232 0.4822838 0.4108177 +0.45727 0.4822838 0.4108177 +0.4662797 0.4822838 0.4108177 +0.4745834 0.4822838 0.4108177 +0.4822838 0.4822838 0.4108177 +0.4894626 0.4822838 0.4108177 +0.4961862 0.4822838 0.4108177 +0.5025087 0.4822838 0.4108177 +0.5084753 0.4822838 0.4108177 +0.514124 0.4822838 0.4108177 +0.519487 0.4822838 0.4108177 +0.5245917 0.4822838 0.4108177 +0.529462 0.4822838 0.4108177 +0.5341183 0.4822838 0.4108177 +0.5385787 0.4822838 0.4108177 +0.5428591 0.4822838 0.4108177 +0.5469733 0.4822838 0.4108177 +0.5509339 0.4822838 0.4108177 +0.5547519 0.4822838 0.4108177 +0.5584371 0.4822838 0.4108177 +0.5619986 0.4822838 0.4108177 +0.5654443 0.4822838 0.4108177 +0.5687816 0.4822838 0.4108177 +0.092819 0.4894626 0.4108177 +0.2262531 0.4894626 0.4108177 +0.2875993 0.4894626 0.4108177 +0.3262122 0.4894626 0.4108177 +0.3544566 0.4894626 0.4108177 +0.3767383 0.4894626 0.4108177 +0.3951413 0.4894626 0.4108177 +0.4108177 0.4894626 0.4108177 +0.4244723 0.4894626 0.4108177 +0.4365675 0.4894626 0.4108177 +0.4474232 0.4894626 0.4108177 +0.45727 0.4894626 0.4108177 +0.4662797 0.4894626 0.4108177 +0.4745834 0.4894626 0.4108177 +0.4822838 0.4894626 0.4108177 +0.4894626 0.4894626 0.4108177 +0.4961862 0.4894626 0.4108177 +0.5025087 0.4894626 0.4108177 +0.5084753 0.4894626 0.4108177 +0.514124 0.4894626 0.4108177 +0.519487 0.4894626 0.4108177 +0.5245917 0.4894626 0.4108177 +0.529462 0.4894626 0.4108177 +0.5341183 0.4894626 0.4108177 +0.5385787 0.4894626 0.4108177 +0.5428591 0.4894626 0.4108177 +0.5469733 0.4894626 0.4108177 +0.5509339 0.4894626 0.4108177 +0.5547519 0.4894626 0.4108177 +0.5584371 0.4894626 0.4108177 +0.5619986 0.4894626 0.4108177 +0.5654443 0.4894626 0.4108177 +0.5687816 0.4894626 0.4108177 +0.092819 0.4961862 0.4108177 +0.2262531 0.4961862 0.4108177 +0.2875993 0.4961862 0.4108177 +0.3262122 0.4961862 0.4108177 +0.3544566 0.4961862 0.4108177 +0.3767383 0.4961862 0.4108177 +0.3951413 0.4961862 0.4108177 +0.4108177 0.4961862 0.4108177 +0.4244723 0.4961862 0.4108177 +0.4365675 0.4961862 0.4108177 +0.4474232 0.4961862 0.4108177 +0.45727 0.4961862 0.4108177 +0.4662797 0.4961862 0.4108177 +0.4745834 0.4961862 0.4108177 +0.4822838 0.4961862 0.4108177 +0.4894626 0.4961862 0.4108177 +0.4961862 0.4961862 0.4108177 +0.5025087 0.4961862 0.4108177 +0.5084753 0.4961862 0.4108177 +0.514124 0.4961862 0.4108177 +0.519487 0.4961862 0.4108177 +0.5245917 0.4961862 0.4108177 +0.529462 0.4961862 0.4108177 +0.5341183 0.4961862 0.4108177 +0.5385787 0.4961862 0.4108177 +0.5428591 0.4961862 0.4108177 +0.5469733 0.4961862 0.4108177 +0.5509339 0.4961862 0.4108177 +0.5547519 0.4961862 0.4108177 +0.5584371 0.4961862 0.4108177 +0.5619986 0.4961862 0.4108177 +0.5654443 0.4961862 0.4108177 +0.5687816 0.4961862 0.4108177 +0.092819 0.5025087 0.4108177 +0.2262531 0.5025087 0.4108177 +0.2875993 0.5025087 0.4108177 +0.3262122 0.5025087 0.4108177 +0.3544566 0.5025087 0.4108177 +0.3767383 0.5025087 0.4108177 +0.3951413 0.5025087 0.4108177 +0.4108177 0.5025087 0.4108177 +0.4244723 0.5025087 0.4108177 +0.4365675 0.5025087 0.4108177 +0.4474232 0.5025087 0.4108177 +0.45727 0.5025087 0.4108177 +0.4662797 0.5025087 0.4108177 +0.4745834 0.5025087 0.4108177 +0.4822838 0.5025087 0.4108177 +0.4894626 0.5025087 0.4108177 +0.4961862 0.5025087 0.4108177 +0.5025087 0.5025087 0.4108177 +0.5084753 0.5025087 0.4108177 +0.514124 0.5025087 0.4108177 +0.519487 0.5025087 0.4108177 +0.5245917 0.5025087 0.4108177 +0.529462 0.5025087 0.4108177 +0.5341183 0.5025087 0.4108177 +0.5385787 0.5025087 0.4108177 +0.5428591 0.5025087 0.4108177 +0.5469733 0.5025087 0.4108177 +0.5509339 0.5025087 0.4108177 +0.5547519 0.5025087 0.4108177 +0.5584371 0.5025087 0.4108177 +0.5619986 0.5025087 0.4108177 +0.5654443 0.5025087 0.4108177 +0.5687816 0.5025087 0.4108177 +0.092819 0.5084753 0.4108177 +0.2262531 0.5084753 0.4108177 +0.2875993 0.5084753 0.4108177 +0.3262122 0.5084753 0.4108177 +0.3544566 0.5084753 0.4108177 +0.3767383 0.5084753 0.4108177 +0.3951413 0.5084753 0.4108177 +0.4108177 0.5084753 0.4108177 +0.4244723 0.5084753 0.4108177 +0.4365675 0.5084753 0.4108177 +0.4474232 0.5084753 0.4108177 +0.45727 0.5084753 0.4108177 +0.4662797 0.5084753 0.4108177 +0.4745834 0.5084753 0.4108177 +0.4822838 0.5084753 0.4108177 +0.4894626 0.5084753 0.4108177 +0.4961862 0.5084753 0.4108177 +0.5025087 0.5084753 0.4108177 +0.5084753 0.5084753 0.4108177 +0.514124 0.5084753 0.4108177 +0.519487 0.5084753 0.4108177 +0.5245917 0.5084753 0.4108177 +0.529462 0.5084753 0.4108177 +0.5341183 0.5084753 0.4108177 +0.5385787 0.5084753 0.4108177 +0.5428591 0.5084753 0.4108177 +0.5469733 0.5084753 0.4108177 +0.5509339 0.5084753 0.4108177 +0.5547519 0.5084753 0.4108177 +0.5584371 0.5084753 0.4108177 +0.5619986 0.5084753 0.4108177 +0.5654443 0.5084753 0.4108177 +0.5687816 0.5084753 0.4108177 +0.092819 0.514124 0.4108177 +0.2262531 0.514124 0.4108177 +0.2875993 0.514124 0.4108177 +0.3262122 0.514124 0.4108177 +0.3544566 0.514124 0.4108177 +0.3767383 0.514124 0.4108177 +0.3951413 0.514124 0.4108177 +0.4108177 0.514124 0.4108177 +0.4244723 0.514124 0.4108177 +0.4365675 0.514124 0.4108177 +0.4474232 0.514124 0.4108177 +0.45727 0.514124 0.4108177 +0.4662797 0.514124 0.4108177 +0.4745834 0.514124 0.4108177 +0.4822838 0.514124 0.4108177 +0.4894626 0.514124 0.4108177 +0.4961862 0.514124 0.4108177 +0.5025087 0.514124 0.4108177 +0.5084753 0.514124 0.4108177 +0.514124 0.514124 0.4108177 +0.519487 0.514124 0.4108177 +0.5245917 0.514124 0.4108177 +0.529462 0.514124 0.4108177 +0.5341183 0.514124 0.4108177 +0.5385787 0.514124 0.4108177 +0.5428591 0.514124 0.4108177 +0.5469733 0.514124 0.4108177 +0.5509339 0.514124 0.4108177 +0.5547519 0.514124 0.4108177 +0.5584371 0.514124 0.4108177 +0.5619986 0.514124 0.4108177 +0.5654443 0.514124 0.4108177 +0.5687816 0.514124 0.4108177 +0.092819 0.519487 0.4108177 +0.2262531 0.519487 0.4108177 +0.2875993 0.519487 0.4108177 +0.3262122 0.519487 0.4108177 +0.3544566 0.519487 0.4108177 +0.3767383 0.519487 0.4108177 +0.3951413 0.519487 0.4108177 +0.4108177 0.519487 0.4108177 +0.4244723 0.519487 0.4108177 +0.4365675 0.519487 0.4108177 +0.4474232 0.519487 0.4108177 +0.45727 0.519487 0.4108177 +0.4662797 0.519487 0.4108177 +0.4745834 0.519487 0.4108177 +0.4822838 0.519487 0.4108177 +0.4894626 0.519487 0.4108177 +0.4961862 0.519487 0.4108177 +0.5025087 0.519487 0.4108177 +0.5084753 0.519487 0.4108177 +0.514124 0.519487 0.4108177 +0.519487 0.519487 0.4108177 +0.5245917 0.519487 0.4108177 +0.529462 0.519487 0.4108177 +0.5341183 0.519487 0.4108177 +0.5385787 0.519487 0.4108177 +0.5428591 0.519487 0.4108177 +0.5469733 0.519487 0.4108177 +0.5509339 0.519487 0.4108177 +0.5547519 0.519487 0.4108177 +0.5584371 0.519487 0.4108177 +0.5619986 0.519487 0.4108177 +0.5654443 0.519487 0.4108177 +0.5687816 0.519487 0.4108177 +0.092819 0.5245917 0.4108177 +0.2262531 0.5245917 0.4108177 +0.2875993 0.5245917 0.4108177 +0.3262122 0.5245917 0.4108177 +0.3544566 0.5245917 0.4108177 +0.3767383 0.5245917 0.4108177 +0.3951413 0.5245917 0.4108177 +0.4108177 0.5245917 0.4108177 +0.4244723 0.5245917 0.4108177 +0.4365675 0.5245917 0.4108177 +0.4474232 0.5245917 0.4108177 +0.45727 0.5245917 0.4108177 +0.4662797 0.5245917 0.4108177 +0.4745834 0.5245917 0.4108177 +0.4822838 0.5245917 0.4108177 +0.4894626 0.5245917 0.4108177 +0.4961862 0.5245917 0.4108177 +0.5025087 0.5245917 0.4108177 +0.5084753 0.5245917 0.4108177 +0.514124 0.5245917 0.4108177 +0.519487 0.5245917 0.4108177 +0.5245917 0.5245917 0.4108177 +0.529462 0.5245917 0.4108177 +0.5341183 0.5245917 0.4108177 +0.5385787 0.5245917 0.4108177 +0.5428591 0.5245917 0.4108177 +0.5469733 0.5245917 0.4108177 +0.5509339 0.5245917 0.4108177 +0.5547519 0.5245917 0.4108177 +0.5584371 0.5245917 0.4108177 +0.5619986 0.5245917 0.4108177 +0.5654443 0.5245917 0.4108177 +0.5687816 0.5245917 0.4108177 +0.092819 0.529462 0.4108177 +0.2262531 0.529462 0.4108177 +0.2875993 0.529462 0.4108177 +0.3262122 0.529462 0.4108177 +0.3544566 0.529462 0.4108177 +0.3767383 0.529462 0.4108177 +0.3951413 0.529462 0.4108177 +0.4108177 0.529462 0.4108177 +0.4244723 0.529462 0.4108177 +0.4365675 0.529462 0.4108177 +0.4474232 0.529462 0.4108177 +0.45727 0.529462 0.4108177 +0.4662797 0.529462 0.4108177 +0.4745834 0.529462 0.4108177 +0.4822838 0.529462 0.4108177 +0.4894626 0.529462 0.4108177 +0.4961862 0.529462 0.4108177 +0.5025087 0.529462 0.4108177 +0.5084753 0.529462 0.4108177 +0.514124 0.529462 0.4108177 +0.519487 0.529462 0.4108177 +0.5245917 0.529462 0.4108177 +0.529462 0.529462 0.4108177 +0.5341183 0.529462 0.4108177 +0.5385787 0.529462 0.4108177 +0.5428591 0.529462 0.4108177 +0.5469733 0.529462 0.4108177 +0.5509339 0.529462 0.4108177 +0.5547519 0.529462 0.4108177 +0.5584371 0.529462 0.4108177 +0.5619986 0.529462 0.4108177 +0.5654443 0.529462 0.4108177 +0.5687816 0.529462 0.4108177 +0.092819 0.5341183 0.4108177 +0.2262531 0.5341183 0.4108177 +0.2875993 0.5341183 0.4108177 +0.3262122 0.5341183 0.4108177 +0.3544566 0.5341183 0.4108177 +0.3767383 0.5341183 0.4108177 +0.3951413 0.5341183 0.4108177 +0.4108177 0.5341183 0.4108177 +0.4244723 0.5341183 0.4108177 +0.4365675 0.5341183 0.4108177 +0.4474232 0.5341183 0.4108177 +0.45727 0.5341183 0.4108177 +0.4662797 0.5341183 0.4108177 +0.4745834 0.5341183 0.4108177 +0.4822838 0.5341183 0.4108177 +0.4894626 0.5341183 0.4108177 +0.4961862 0.5341183 0.4108177 +0.5025087 0.5341183 0.4108177 +0.5084753 0.5341183 0.4108177 +0.514124 0.5341183 0.4108177 +0.519487 0.5341183 0.4108177 +0.5245917 0.5341183 0.4108177 +0.529462 0.5341183 0.4108177 +0.5341183 0.5341183 0.4108177 +0.5385787 0.5341183 0.4108177 +0.5428591 0.5341183 0.4108177 +0.5469733 0.5341183 0.4108177 +0.5509339 0.5341183 0.4108177 +0.5547519 0.5341183 0.4108177 +0.5584371 0.5341183 0.4108177 +0.5619986 0.5341183 0.4108177 +0.5654443 0.5341183 0.4108177 +0.5687816 0.5341183 0.4108177 +0.092819 0.5385787 0.4108177 +0.2262531 0.5385787 0.4108177 +0.2875993 0.5385787 0.4108177 +0.3262122 0.5385787 0.4108177 +0.3544566 0.5385787 0.4108177 +0.3767383 0.5385787 0.4108177 +0.3951413 0.5385787 0.4108177 +0.4108177 0.5385787 0.4108177 +0.4244723 0.5385787 0.4108177 +0.4365675 0.5385787 0.4108177 +0.4474232 0.5385787 0.4108177 +0.45727 0.5385787 0.4108177 +0.4662797 0.5385787 0.4108177 +0.4745834 0.5385787 0.4108177 +0.4822838 0.5385787 0.4108177 +0.4894626 0.5385787 0.4108177 +0.4961862 0.5385787 0.4108177 +0.5025087 0.5385787 0.4108177 +0.5084753 0.5385787 0.4108177 +0.514124 0.5385787 0.4108177 +0.519487 0.5385787 0.4108177 +0.5245917 0.5385787 0.4108177 +0.529462 0.5385787 0.4108177 +0.5341183 0.5385787 0.4108177 +0.5385787 0.5385787 0.4108177 +0.5428591 0.5385787 0.4108177 +0.5469733 0.5385787 0.4108177 +0.5509339 0.5385787 0.4108177 +0.5547519 0.5385787 0.4108177 +0.5584371 0.5385787 0.4108177 +0.5619986 0.5385787 0.4108177 +0.5654443 0.5385787 0.4108177 +0.5687816 0.5385787 0.4108177 +0.092819 0.5428591 0.4108177 +0.2262531 0.5428591 0.4108177 +0.2875993 0.5428591 0.4108177 +0.3262122 0.5428591 0.4108177 +0.3544566 0.5428591 0.4108177 +0.3767383 0.5428591 0.4108177 +0.3951413 0.5428591 0.4108177 +0.4108177 0.5428591 0.4108177 +0.4244723 0.5428591 0.4108177 +0.4365675 0.5428591 0.4108177 +0.4474232 0.5428591 0.4108177 +0.45727 0.5428591 0.4108177 +0.4662797 0.5428591 0.4108177 +0.4745834 0.5428591 0.4108177 +0.4822838 0.5428591 0.4108177 +0.4894626 0.5428591 0.4108177 +0.4961862 0.5428591 0.4108177 +0.5025087 0.5428591 0.4108177 +0.5084753 0.5428591 0.4108177 +0.514124 0.5428591 0.4108177 +0.519487 0.5428591 0.4108177 +0.5245917 0.5428591 0.4108177 +0.529462 0.5428591 0.4108177 +0.5341183 0.5428591 0.4108177 +0.5385787 0.5428591 0.4108177 +0.5428591 0.5428591 0.4108177 +0.5469733 0.5428591 0.4108177 +0.5509339 0.5428591 0.4108177 +0.5547519 0.5428591 0.4108177 +0.5584371 0.5428591 0.4108177 +0.5619986 0.5428591 0.4108177 +0.5654443 0.5428591 0.4108177 +0.5687816 0.5428591 0.4108177 +0.092819 0.5469733 0.4108177 +0.2262531 0.5469733 0.4108177 +0.2875993 0.5469733 0.4108177 +0.3262122 0.5469733 0.4108177 +0.3544566 0.5469733 0.4108177 +0.3767383 0.5469733 0.4108177 +0.3951413 0.5469733 0.4108177 +0.4108177 0.5469733 0.4108177 +0.4244723 0.5469733 0.4108177 +0.4365675 0.5469733 0.4108177 +0.4474232 0.5469733 0.4108177 +0.45727 0.5469733 0.4108177 +0.4662797 0.5469733 0.4108177 +0.4745834 0.5469733 0.4108177 +0.4822838 0.5469733 0.4108177 +0.4894626 0.5469733 0.4108177 +0.4961862 0.5469733 0.4108177 +0.5025087 0.5469733 0.4108177 +0.5084753 0.5469733 0.4108177 +0.514124 0.5469733 0.4108177 +0.519487 0.5469733 0.4108177 +0.5245917 0.5469733 0.4108177 +0.529462 0.5469733 0.4108177 +0.5341183 0.5469733 0.4108177 +0.5385787 0.5469733 0.4108177 +0.5428591 0.5469733 0.4108177 +0.5469733 0.5469733 0.4108177 +0.5509339 0.5469733 0.4108177 +0.5547519 0.5469733 0.4108177 +0.5584371 0.5469733 0.4108177 +0.5619986 0.5469733 0.4108177 +0.5654443 0.5469733 0.4108177 +0.5687816 0.5469733 0.4108177 +0.092819 0.5509339 0.4108177 +0.2262531 0.5509339 0.4108177 +0.2875993 0.5509339 0.4108177 +0.3262122 0.5509339 0.4108177 +0.3544566 0.5509339 0.4108177 +0.3767383 0.5509339 0.4108177 +0.3951413 0.5509339 0.4108177 +0.4108177 0.5509339 0.4108177 +0.4244723 0.5509339 0.4108177 +0.4365675 0.5509339 0.4108177 +0.4474232 0.5509339 0.4108177 +0.45727 0.5509339 0.4108177 +0.4662797 0.5509339 0.4108177 +0.4745834 0.5509339 0.4108177 +0.4822838 0.5509339 0.4108177 +0.4894626 0.5509339 0.4108177 +0.4961862 0.5509339 0.4108177 +0.5025087 0.5509339 0.4108177 +0.5084753 0.5509339 0.4108177 +0.514124 0.5509339 0.4108177 +0.519487 0.5509339 0.4108177 +0.5245917 0.5509339 0.4108177 +0.529462 0.5509339 0.4108177 +0.5341183 0.5509339 0.4108177 +0.5385787 0.5509339 0.4108177 +0.5428591 0.5509339 0.4108177 +0.5469733 0.5509339 0.4108177 +0.5509339 0.5509339 0.4108177 +0.5547519 0.5509339 0.4108177 +0.5584371 0.5509339 0.4108177 +0.5619986 0.5509339 0.4108177 +0.5654443 0.5509339 0.4108177 +0.5687816 0.5509339 0.4108177 +0.092819 0.5547519 0.4108177 +0.2262531 0.5547519 0.4108177 +0.2875993 0.5547519 0.4108177 +0.3262122 0.5547519 0.4108177 +0.3544566 0.5547519 0.4108177 +0.3767383 0.5547519 0.4108177 +0.3951413 0.5547519 0.4108177 +0.4108177 0.5547519 0.4108177 +0.4244723 0.5547519 0.4108177 +0.4365675 0.5547519 0.4108177 +0.4474232 0.5547519 0.4108177 +0.45727 0.5547519 0.4108177 +0.4662797 0.5547519 0.4108177 +0.4745834 0.5547519 0.4108177 +0.4822838 0.5547519 0.4108177 +0.4894626 0.5547519 0.4108177 +0.4961862 0.5547519 0.4108177 +0.5025087 0.5547519 0.4108177 +0.5084753 0.5547519 0.4108177 +0.514124 0.5547519 0.4108177 +0.519487 0.5547519 0.4108177 +0.5245917 0.5547519 0.4108177 +0.529462 0.5547519 0.4108177 +0.5341183 0.5547519 0.4108177 +0.5385787 0.5547519 0.4108177 +0.5428591 0.5547519 0.4108177 +0.5469733 0.5547519 0.4108177 +0.5509339 0.5547519 0.4108177 +0.5547519 0.5547519 0.4108177 +0.5584371 0.5547519 0.4108177 +0.5619986 0.5547519 0.4108177 +0.5654443 0.5547519 0.4108177 +0.5687816 0.5547519 0.4108177 +0.092819 0.5584371 0.4108177 +0.2262531 0.5584371 0.4108177 +0.2875993 0.5584371 0.4108177 +0.3262122 0.5584371 0.4108177 +0.3544566 0.5584371 0.4108177 +0.3767383 0.5584371 0.4108177 +0.3951413 0.5584371 0.4108177 +0.4108177 0.5584371 0.4108177 +0.4244723 0.5584371 0.4108177 +0.4365675 0.5584371 0.4108177 +0.4474232 0.5584371 0.4108177 +0.45727 0.5584371 0.4108177 +0.4662797 0.5584371 0.4108177 +0.4745834 0.5584371 0.4108177 +0.4822838 0.5584371 0.4108177 +0.4894626 0.5584371 0.4108177 +0.4961862 0.5584371 0.4108177 +0.5025087 0.5584371 0.4108177 +0.5084753 0.5584371 0.4108177 +0.514124 0.5584371 0.4108177 +0.519487 0.5584371 0.4108177 +0.5245917 0.5584371 0.4108177 +0.529462 0.5584371 0.4108177 +0.5341183 0.5584371 0.4108177 +0.5385787 0.5584371 0.4108177 +0.5428591 0.5584371 0.4108177 +0.5469733 0.5584371 0.4108177 +0.5509339 0.5584371 0.4108177 +0.5547519 0.5584371 0.4108177 +0.5584371 0.5584371 0.4108177 +0.5619986 0.5584371 0.4108177 +0.5654443 0.5584371 0.4108177 +0.5687816 0.5584371 0.4108177 +0.092819 0.5619986 0.4108177 +0.2262531 0.5619986 0.4108177 +0.2875993 0.5619986 0.4108177 +0.3262122 0.5619986 0.4108177 +0.3544566 0.5619986 0.4108177 +0.3767383 0.5619986 0.4108177 +0.3951413 0.5619986 0.4108177 +0.4108177 0.5619986 0.4108177 +0.4244723 0.5619986 0.4108177 +0.4365675 0.5619986 0.4108177 +0.4474232 0.5619986 0.4108177 +0.45727 0.5619986 0.4108177 +0.4662797 0.5619986 0.4108177 +0.4745834 0.5619986 0.4108177 +0.4822838 0.5619986 0.4108177 +0.4894626 0.5619986 0.4108177 +0.4961862 0.5619986 0.4108177 +0.5025087 0.5619986 0.4108177 +0.5084753 0.5619986 0.4108177 +0.514124 0.5619986 0.4108177 +0.519487 0.5619986 0.4108177 +0.5245917 0.5619986 0.4108177 +0.529462 0.5619986 0.4108177 +0.5341183 0.5619986 0.4108177 +0.5385787 0.5619986 0.4108177 +0.5428591 0.5619986 0.4108177 +0.5469733 0.5619986 0.4108177 +0.5509339 0.5619986 0.4108177 +0.5547519 0.5619986 0.4108177 +0.5584371 0.5619986 0.4108177 +0.5619986 0.5619986 0.4108177 +0.5654443 0.5619986 0.4108177 +0.5687816 0.5619986 0.4108177 +0.092819 0.5654443 0.4108177 +0.2262531 0.5654443 0.4108177 +0.2875993 0.5654443 0.4108177 +0.3262122 0.5654443 0.4108177 +0.3544566 0.5654443 0.4108177 +0.3767383 0.5654443 0.4108177 +0.3951413 0.5654443 0.4108177 +0.4108177 0.5654443 0.4108177 +0.4244723 0.5654443 0.4108177 +0.4365675 0.5654443 0.4108177 +0.4474232 0.5654443 0.4108177 +0.45727 0.5654443 0.4108177 +0.4662797 0.5654443 0.4108177 +0.4745834 0.5654443 0.4108177 +0.4822838 0.5654443 0.4108177 +0.4894626 0.5654443 0.4108177 +0.4961862 0.5654443 0.4108177 +0.5025087 0.5654443 0.4108177 +0.5084753 0.5654443 0.4108177 +0.514124 0.5654443 0.4108177 +0.519487 0.5654443 0.4108177 +0.5245917 0.5654443 0.4108177 +0.529462 0.5654443 0.4108177 +0.5341183 0.5654443 0.4108177 +0.5385787 0.5654443 0.4108177 +0.5428591 0.5654443 0.4108177 +0.5469733 0.5654443 0.4108177 +0.5509339 0.5654443 0.4108177 +0.5547519 0.5654443 0.4108177 +0.5584371 0.5654443 0.4108177 +0.5619986 0.5654443 0.4108177 +0.5654443 0.5654443 0.4108177 +0.5687816 0.5654443 0.4108177 +0.092819 0.5687816 0.4108177 +0.2262531 0.5687816 0.4108177 +0.2875993 0.5687816 0.4108177 +0.3262122 0.5687816 0.4108177 +0.3544566 0.5687816 0.4108177 +0.3767383 0.5687816 0.4108177 +0.3951413 0.5687816 0.4108177 +0.4108177 0.5687816 0.4108177 +0.4244723 0.5687816 0.4108177 +0.4365675 0.5687816 0.4108177 +0.4474232 0.5687816 0.4108177 +0.45727 0.5687816 0.4108177 +0.4662797 0.5687816 0.4108177 +0.4745834 0.5687816 0.4108177 +0.4822838 0.5687816 0.4108177 +0.4894626 0.5687816 0.4108177 +0.4961862 0.5687816 0.4108177 +0.5025087 0.5687816 0.4108177 +0.5084753 0.5687816 0.4108177 +0.514124 0.5687816 0.4108177 +0.519487 0.5687816 0.4108177 +0.5245917 0.5687816 0.4108177 +0.529462 0.5687816 0.4108177 +0.5341183 0.5687816 0.4108177 +0.5385787 0.5687816 0.4108177 +0.5428591 0.5687816 0.4108177 +0.5469733 0.5687816 0.4108177 +0.5509339 0.5687816 0.4108177 +0.5547519 0.5687816 0.4108177 +0.5584371 0.5687816 0.4108177 +0.5619986 0.5687816 0.4108177 +0.5654443 0.5687816 0.4108177 +0.5687816 0.5687816 0.4108177 +0.092819 0.092819 0.4244723 +0.2262531 0.092819 0.4244723 +0.2875993 0.092819 0.4244723 +0.3262122 0.092819 0.4244723 +0.3544566 0.092819 0.4244723 +0.3767383 0.092819 0.4244723 +0.3951413 0.092819 0.4244723 +0.4108177 0.092819 0.4244723 +0.4244723 0.092819 0.4244723 +0.4365675 0.092819 0.4244723 +0.4474232 0.092819 0.4244723 +0.45727 0.092819 0.4244723 +0.4662797 0.092819 0.4244723 +0.4745834 0.092819 0.4244723 +0.4822838 0.092819 0.4244723 +0.4894626 0.092819 0.4244723 +0.4961862 0.092819 0.4244723 +0.5025087 0.092819 0.4244723 +0.5084753 0.092819 0.4244723 +0.514124 0.092819 0.4244723 +0.519487 0.092819 0.4244723 +0.5245917 0.092819 0.4244723 +0.529462 0.092819 0.4244723 +0.5341183 0.092819 0.4244723 +0.5385787 0.092819 0.4244723 +0.5428591 0.092819 0.4244723 +0.5469733 0.092819 0.4244723 +0.5509339 0.092819 0.4244723 +0.5547519 0.092819 0.4244723 +0.5584371 0.092819 0.4244723 +0.5619986 0.092819 0.4244723 +0.5654443 0.092819 0.4244723 +0.5687816 0.092819 0.4244723 +0.092819 0.2262531 0.4244723 +0.2262531 0.2262531 0.4244723 +0.2875993 0.2262531 0.4244723 +0.3262122 0.2262531 0.4244723 +0.3544566 0.2262531 0.4244723 +0.3767383 0.2262531 0.4244723 +0.3951413 0.2262531 0.4244723 +0.4108177 0.2262531 0.4244723 +0.4244723 0.2262531 0.4244723 +0.4365675 0.2262531 0.4244723 +0.4474232 0.2262531 0.4244723 +0.45727 0.2262531 0.4244723 +0.4662797 0.2262531 0.4244723 +0.4745834 0.2262531 0.4244723 +0.4822838 0.2262531 0.4244723 +0.4894626 0.2262531 0.4244723 +0.4961862 0.2262531 0.4244723 +0.5025087 0.2262531 0.4244723 +0.5084753 0.2262531 0.4244723 +0.514124 0.2262531 0.4244723 +0.519487 0.2262531 0.4244723 +0.5245917 0.2262531 0.4244723 +0.529462 0.2262531 0.4244723 +0.5341183 0.2262531 0.4244723 +0.5385787 0.2262531 0.4244723 +0.5428591 0.2262531 0.4244723 +0.5469733 0.2262531 0.4244723 +0.5509339 0.2262531 0.4244723 +0.5547519 0.2262531 0.4244723 +0.5584371 0.2262531 0.4244723 +0.5619986 0.2262531 0.4244723 +0.5654443 0.2262531 0.4244723 +0.5687816 0.2262531 0.4244723 +0.092819 0.2875993 0.4244723 +0.2262531 0.2875993 0.4244723 +0.2875993 0.2875993 0.4244723 +0.3262122 0.2875993 0.4244723 +0.3544566 0.2875993 0.4244723 +0.3767383 0.2875993 0.4244723 +0.3951413 0.2875993 0.4244723 +0.4108177 0.2875993 0.4244723 +0.4244723 0.2875993 0.4244723 +0.4365675 0.2875993 0.4244723 +0.4474232 0.2875993 0.4244723 +0.45727 0.2875993 0.4244723 +0.4662797 0.2875993 0.4244723 +0.4745834 0.2875993 0.4244723 +0.4822838 0.2875993 0.4244723 +0.4894626 0.2875993 0.4244723 +0.4961862 0.2875993 0.4244723 +0.5025087 0.2875993 0.4244723 +0.5084753 0.2875993 0.4244723 +0.514124 0.2875993 0.4244723 +0.519487 0.2875993 0.4244723 +0.5245917 0.2875993 0.4244723 +0.529462 0.2875993 0.4244723 +0.5341183 0.2875993 0.4244723 +0.5385787 0.2875993 0.4244723 +0.5428591 0.2875993 0.4244723 +0.5469733 0.2875993 0.4244723 +0.5509339 0.2875993 0.4244723 +0.5547519 0.2875993 0.4244723 +0.5584371 0.2875993 0.4244723 +0.5619986 0.2875993 0.4244723 +0.5654443 0.2875993 0.4244723 +0.5687816 0.2875993 0.4244723 +0.092819 0.3262122 0.4244723 +0.2262531 0.3262122 0.4244723 +0.2875993 0.3262122 0.4244723 +0.3262122 0.3262122 0.4244723 +0.3544566 0.3262122 0.4244723 +0.3767383 0.3262122 0.4244723 +0.3951413 0.3262122 0.4244723 +0.4108177 0.3262122 0.4244723 +0.4244723 0.3262122 0.4244723 +0.4365675 0.3262122 0.4244723 +0.4474232 0.3262122 0.4244723 +0.45727 0.3262122 0.4244723 +0.4662797 0.3262122 0.4244723 +0.4745834 0.3262122 0.4244723 +0.4822838 0.3262122 0.4244723 +0.4894626 0.3262122 0.4244723 +0.4961862 0.3262122 0.4244723 +0.5025087 0.3262122 0.4244723 +0.5084753 0.3262122 0.4244723 +0.514124 0.3262122 0.4244723 +0.519487 0.3262122 0.4244723 +0.5245917 0.3262122 0.4244723 +0.529462 0.3262122 0.4244723 +0.5341183 0.3262122 0.4244723 +0.5385787 0.3262122 0.4244723 +0.5428591 0.3262122 0.4244723 +0.5469733 0.3262122 0.4244723 +0.5509339 0.3262122 0.4244723 +0.5547519 0.3262122 0.4244723 +0.5584371 0.3262122 0.4244723 +0.5619986 0.3262122 0.4244723 +0.5654443 0.3262122 0.4244723 +0.5687816 0.3262122 0.4244723 +0.092819 0.3544566 0.4244723 +0.2262531 0.3544566 0.4244723 +0.2875993 0.3544566 0.4244723 +0.3262122 0.3544566 0.4244723 +0.3544566 0.3544566 0.4244723 +0.3767383 0.3544566 0.4244723 +0.3951413 0.3544566 0.4244723 +0.4108177 0.3544566 0.4244723 +0.4244723 0.3544566 0.4244723 +0.4365675 0.3544566 0.4244723 +0.4474232 0.3544566 0.4244723 +0.45727 0.3544566 0.4244723 +0.4662797 0.3544566 0.4244723 +0.4745834 0.3544566 0.4244723 +0.4822838 0.3544566 0.4244723 +0.4894626 0.3544566 0.4244723 +0.4961862 0.3544566 0.4244723 +0.5025087 0.3544566 0.4244723 +0.5084753 0.3544566 0.4244723 +0.514124 0.3544566 0.4244723 +0.519487 0.3544566 0.4244723 +0.5245917 0.3544566 0.4244723 +0.529462 0.3544566 0.4244723 +0.5341183 0.3544566 0.4244723 +0.5385787 0.3544566 0.4244723 +0.5428591 0.3544566 0.4244723 +0.5469733 0.3544566 0.4244723 +0.5509339 0.3544566 0.4244723 +0.5547519 0.3544566 0.4244723 +0.5584371 0.3544566 0.4244723 +0.5619986 0.3544566 0.4244723 +0.5654443 0.3544566 0.4244723 +0.5687816 0.3544566 0.4244723 +0.092819 0.3767383 0.4244723 +0.2262531 0.3767383 0.4244723 +0.2875993 0.3767383 0.4244723 +0.3262122 0.3767383 0.4244723 +0.3544566 0.3767383 0.4244723 +0.3767383 0.3767383 0.4244723 +0.3951413 0.3767383 0.4244723 +0.4108177 0.3767383 0.4244723 +0.4244723 0.3767383 0.4244723 +0.4365675 0.3767383 0.4244723 +0.4474232 0.3767383 0.4244723 +0.45727 0.3767383 0.4244723 +0.4662797 0.3767383 0.4244723 +0.4745834 0.3767383 0.4244723 +0.4822838 0.3767383 0.4244723 +0.4894626 0.3767383 0.4244723 +0.4961862 0.3767383 0.4244723 +0.5025087 0.3767383 0.4244723 +0.5084753 0.3767383 0.4244723 +0.514124 0.3767383 0.4244723 +0.519487 0.3767383 0.4244723 +0.5245917 0.3767383 0.4244723 +0.529462 0.3767383 0.4244723 +0.5341183 0.3767383 0.4244723 +0.5385787 0.3767383 0.4244723 +0.5428591 0.3767383 0.4244723 +0.5469733 0.3767383 0.4244723 +0.5509339 0.3767383 0.4244723 +0.5547519 0.3767383 0.4244723 +0.5584371 0.3767383 0.4244723 +0.5619986 0.3767383 0.4244723 +0.5654443 0.3767383 0.4244723 +0.5687816 0.3767383 0.4244723 +0.092819 0.3951413 0.4244723 +0.2262531 0.3951413 0.4244723 +0.2875993 0.3951413 0.4244723 +0.3262122 0.3951413 0.4244723 +0.3544566 0.3951413 0.4244723 +0.3767383 0.3951413 0.4244723 +0.3951413 0.3951413 0.4244723 +0.4108177 0.3951413 0.4244723 +0.4244723 0.3951413 0.4244723 +0.4365675 0.3951413 0.4244723 +0.4474232 0.3951413 0.4244723 +0.45727 0.3951413 0.4244723 +0.4662797 0.3951413 0.4244723 +0.4745834 0.3951413 0.4244723 +0.4822838 0.3951413 0.4244723 +0.4894626 0.3951413 0.4244723 +0.4961862 0.3951413 0.4244723 +0.5025087 0.3951413 0.4244723 +0.5084753 0.3951413 0.4244723 +0.514124 0.3951413 0.4244723 +0.519487 0.3951413 0.4244723 +0.5245917 0.3951413 0.4244723 +0.529462 0.3951413 0.4244723 +0.5341183 0.3951413 0.4244723 +0.5385787 0.3951413 0.4244723 +0.5428591 0.3951413 0.4244723 +0.5469733 0.3951413 0.4244723 +0.5509339 0.3951413 0.4244723 +0.5547519 0.3951413 0.4244723 +0.5584371 0.3951413 0.4244723 +0.5619986 0.3951413 0.4244723 +0.5654443 0.3951413 0.4244723 +0.5687816 0.3951413 0.4244723 +0.092819 0.4108177 0.4244723 +0.2262531 0.4108177 0.4244723 +0.2875993 0.4108177 0.4244723 +0.3262122 0.4108177 0.4244723 +0.3544566 0.4108177 0.4244723 +0.3767383 0.4108177 0.4244723 +0.3951413 0.4108177 0.4244723 +0.4108177 0.4108177 0.4244723 +0.4244723 0.4108177 0.4244723 +0.4365675 0.4108177 0.4244723 +0.4474232 0.4108177 0.4244723 +0.45727 0.4108177 0.4244723 +0.4662797 0.4108177 0.4244723 +0.4745834 0.4108177 0.4244723 +0.4822838 0.4108177 0.4244723 +0.4894626 0.4108177 0.4244723 +0.4961862 0.4108177 0.4244723 +0.5025087 0.4108177 0.4244723 +0.5084753 0.4108177 0.4244723 +0.514124 0.4108177 0.4244723 +0.519487 0.4108177 0.4244723 +0.5245917 0.4108177 0.4244723 +0.529462 0.4108177 0.4244723 +0.5341183 0.4108177 0.4244723 +0.5385787 0.4108177 0.4244723 +0.5428591 0.4108177 0.4244723 +0.5469733 0.4108177 0.4244723 +0.5509339 0.4108177 0.4244723 +0.5547519 0.4108177 0.4244723 +0.5584371 0.4108177 0.4244723 +0.5619986 0.4108177 0.4244723 +0.5654443 0.4108177 0.4244723 +0.5687816 0.4108177 0.4244723 +0.092819 0.4244723 0.4244723 +0.2262531 0.4244723 0.4244723 +0.2875993 0.4244723 0.4244723 +0.3262122 0.4244723 0.4244723 +0.3544566 0.4244723 0.4244723 +0.3767383 0.4244723 0.4244723 +0.3951413 0.4244723 0.4244723 +0.4108177 0.4244723 0.4244723 +0.4244723 0.4244723 0.4244723 +0.4365675 0.4244723 0.4244723 +0.4474232 0.4244723 0.4244723 +0.45727 0.4244723 0.4244723 +0.4662797 0.4244723 0.4244723 +0.4745834 0.4244723 0.4244723 +0.4822838 0.4244723 0.4244723 +0.4894626 0.4244723 0.4244723 +0.4961862 0.4244723 0.4244723 +0.5025087 0.4244723 0.4244723 +0.5084753 0.4244723 0.4244723 +0.514124 0.4244723 0.4244723 +0.519487 0.4244723 0.4244723 +0.5245917 0.4244723 0.4244723 +0.529462 0.4244723 0.4244723 +0.5341183 0.4244723 0.4244723 +0.5385787 0.4244723 0.4244723 +0.5428591 0.4244723 0.4244723 +0.5469733 0.4244723 0.4244723 +0.5509339 0.4244723 0.4244723 +0.5547519 0.4244723 0.4244723 +0.5584371 0.4244723 0.4244723 +0.5619986 0.4244723 0.4244723 +0.5654443 0.4244723 0.4244723 +0.5687816 0.4244723 0.4244723 +0.092819 0.4365675 0.4244723 +0.2262531 0.4365675 0.4244723 +0.2875993 0.4365675 0.4244723 +0.3262122 0.4365675 0.4244723 +0.3544566 0.4365675 0.4244723 +0.3767383 0.4365675 0.4244723 +0.3951413 0.4365675 0.4244723 +0.4108177 0.4365675 0.4244723 +0.4244723 0.4365675 0.4244723 +0.4365675 0.4365675 0.4244723 +0.4474232 0.4365675 0.4244723 +0.45727 0.4365675 0.4244723 +0.4662797 0.4365675 0.4244723 +0.4745834 0.4365675 0.4244723 +0.4822838 0.4365675 0.4244723 +0.4894626 0.4365675 0.4244723 +0.4961862 0.4365675 0.4244723 +0.5025087 0.4365675 0.4244723 +0.5084753 0.4365675 0.4244723 +0.514124 0.4365675 0.4244723 +0.519487 0.4365675 0.4244723 +0.5245917 0.4365675 0.4244723 +0.529462 0.4365675 0.4244723 +0.5341183 0.4365675 0.4244723 +0.5385787 0.4365675 0.4244723 +0.5428591 0.4365675 0.4244723 +0.5469733 0.4365675 0.4244723 +0.5509339 0.4365675 0.4244723 +0.5547519 0.4365675 0.4244723 +0.5584371 0.4365675 0.4244723 +0.5619986 0.4365675 0.4244723 +0.5654443 0.4365675 0.4244723 +0.5687816 0.4365675 0.4244723 +0.092819 0.4474232 0.4244723 +0.2262531 0.4474232 0.4244723 +0.2875993 0.4474232 0.4244723 +0.3262122 0.4474232 0.4244723 +0.3544566 0.4474232 0.4244723 +0.3767383 0.4474232 0.4244723 +0.3951413 0.4474232 0.4244723 +0.4108177 0.4474232 0.4244723 +0.4244723 0.4474232 0.4244723 +0.4365675 0.4474232 0.4244723 +0.4474232 0.4474232 0.4244723 +0.45727 0.4474232 0.4244723 +0.4662797 0.4474232 0.4244723 +0.4745834 0.4474232 0.4244723 +0.4822838 0.4474232 0.4244723 +0.4894626 0.4474232 0.4244723 +0.4961862 0.4474232 0.4244723 +0.5025087 0.4474232 0.4244723 +0.5084753 0.4474232 0.4244723 +0.514124 0.4474232 0.4244723 +0.519487 0.4474232 0.4244723 +0.5245917 0.4474232 0.4244723 +0.529462 0.4474232 0.4244723 +0.5341183 0.4474232 0.4244723 +0.5385787 0.4474232 0.4244723 +0.5428591 0.4474232 0.4244723 +0.5469733 0.4474232 0.4244723 +0.5509339 0.4474232 0.4244723 +0.5547519 0.4474232 0.4244723 +0.5584371 0.4474232 0.4244723 +0.5619986 0.4474232 0.4244723 +0.5654443 0.4474232 0.4244723 +0.5687816 0.4474232 0.4244723 +0.092819 0.45727 0.4244723 +0.2262531 0.45727 0.4244723 +0.2875993 0.45727 0.4244723 +0.3262122 0.45727 0.4244723 +0.3544566 0.45727 0.4244723 +0.3767383 0.45727 0.4244723 +0.3951413 0.45727 0.4244723 +0.4108177 0.45727 0.4244723 +0.4244723 0.45727 0.4244723 +0.4365675 0.45727 0.4244723 +0.4474232 0.45727 0.4244723 +0.45727 0.45727 0.4244723 +0.4662797 0.45727 0.4244723 +0.4745834 0.45727 0.4244723 +0.4822838 0.45727 0.4244723 +0.4894626 0.45727 0.4244723 +0.4961862 0.45727 0.4244723 +0.5025087 0.45727 0.4244723 +0.5084753 0.45727 0.4244723 +0.514124 0.45727 0.4244723 +0.519487 0.45727 0.4244723 +0.5245917 0.45727 0.4244723 +0.529462 0.45727 0.4244723 +0.5341183 0.45727 0.4244723 +0.5385787 0.45727 0.4244723 +0.5428591 0.45727 0.4244723 +0.5469733 0.45727 0.4244723 +0.5509339 0.45727 0.4244723 +0.5547519 0.45727 0.4244723 +0.5584371 0.45727 0.4244723 +0.5619986 0.45727 0.4244723 +0.5654443 0.45727 0.4244723 +0.5687816 0.45727 0.4244723 +0.092819 0.4662797 0.4244723 +0.2262531 0.4662797 0.4244723 +0.2875993 0.4662797 0.4244723 +0.3262122 0.4662797 0.4244723 +0.3544566 0.4662797 0.4244723 +0.3767383 0.4662797 0.4244723 +0.3951413 0.4662797 0.4244723 +0.4108177 0.4662797 0.4244723 +0.4244723 0.4662797 0.4244723 +0.4365675 0.4662797 0.4244723 +0.4474232 0.4662797 0.4244723 +0.45727 0.4662797 0.4244723 +0.4662797 0.4662797 0.4244723 +0.4745834 0.4662797 0.4244723 +0.4822838 0.4662797 0.4244723 +0.4894626 0.4662797 0.4244723 +0.4961862 0.4662797 0.4244723 +0.5025087 0.4662797 0.4244723 +0.5084753 0.4662797 0.4244723 +0.514124 0.4662797 0.4244723 +0.519487 0.4662797 0.4244723 +0.5245917 0.4662797 0.4244723 +0.529462 0.4662797 0.4244723 +0.5341183 0.4662797 0.4244723 +0.5385787 0.4662797 0.4244723 +0.5428591 0.4662797 0.4244723 +0.5469733 0.4662797 0.4244723 +0.5509339 0.4662797 0.4244723 +0.5547519 0.4662797 0.4244723 +0.5584371 0.4662797 0.4244723 +0.5619986 0.4662797 0.4244723 +0.5654443 0.4662797 0.4244723 +0.5687816 0.4662797 0.4244723 +0.092819 0.4745834 0.4244723 +0.2262531 0.4745834 0.4244723 +0.2875993 0.4745834 0.4244723 +0.3262122 0.4745834 0.4244723 +0.3544566 0.4745834 0.4244723 +0.3767383 0.4745834 0.4244723 +0.3951413 0.4745834 0.4244723 +0.4108177 0.4745834 0.4244723 +0.4244723 0.4745834 0.4244723 +0.4365675 0.4745834 0.4244723 +0.4474232 0.4745834 0.4244723 +0.45727 0.4745834 0.4244723 +0.4662797 0.4745834 0.4244723 +0.4745834 0.4745834 0.4244723 +0.4822838 0.4745834 0.4244723 +0.4894626 0.4745834 0.4244723 +0.4961862 0.4745834 0.4244723 +0.5025087 0.4745834 0.4244723 +0.5084753 0.4745834 0.4244723 +0.514124 0.4745834 0.4244723 +0.519487 0.4745834 0.4244723 +0.5245917 0.4745834 0.4244723 +0.529462 0.4745834 0.4244723 +0.5341183 0.4745834 0.4244723 +0.5385787 0.4745834 0.4244723 +0.5428591 0.4745834 0.4244723 +0.5469733 0.4745834 0.4244723 +0.5509339 0.4745834 0.4244723 +0.5547519 0.4745834 0.4244723 +0.5584371 0.4745834 0.4244723 +0.5619986 0.4745834 0.4244723 +0.5654443 0.4745834 0.4244723 +0.5687816 0.4745834 0.4244723 +0.092819 0.4822838 0.4244723 +0.2262531 0.4822838 0.4244723 +0.2875993 0.4822838 0.4244723 +0.3262122 0.4822838 0.4244723 +0.3544566 0.4822838 0.4244723 +0.3767383 0.4822838 0.4244723 +0.3951413 0.4822838 0.4244723 +0.4108177 0.4822838 0.4244723 +0.4244723 0.4822838 0.4244723 +0.4365675 0.4822838 0.4244723 +0.4474232 0.4822838 0.4244723 +0.45727 0.4822838 0.4244723 +0.4662797 0.4822838 0.4244723 +0.4745834 0.4822838 0.4244723 +0.4822838 0.4822838 0.4244723 +0.4894626 0.4822838 0.4244723 +0.4961862 0.4822838 0.4244723 +0.5025087 0.4822838 0.4244723 +0.5084753 0.4822838 0.4244723 +0.514124 0.4822838 0.4244723 +0.519487 0.4822838 0.4244723 +0.5245917 0.4822838 0.4244723 +0.529462 0.4822838 0.4244723 +0.5341183 0.4822838 0.4244723 +0.5385787 0.4822838 0.4244723 +0.5428591 0.4822838 0.4244723 +0.5469733 0.4822838 0.4244723 +0.5509339 0.4822838 0.4244723 +0.5547519 0.4822838 0.4244723 +0.5584371 0.4822838 0.4244723 +0.5619986 0.4822838 0.4244723 +0.5654443 0.4822838 0.4244723 +0.5687816 0.4822838 0.4244723 +0.092819 0.4894626 0.4244723 +0.2262531 0.4894626 0.4244723 +0.2875993 0.4894626 0.4244723 +0.3262122 0.4894626 0.4244723 +0.3544566 0.4894626 0.4244723 +0.3767383 0.4894626 0.4244723 +0.3951413 0.4894626 0.4244723 +0.4108177 0.4894626 0.4244723 +0.4244723 0.4894626 0.4244723 +0.4365675 0.4894626 0.4244723 +0.4474232 0.4894626 0.4244723 +0.45727 0.4894626 0.4244723 +0.4662797 0.4894626 0.4244723 +0.4745834 0.4894626 0.4244723 +0.4822838 0.4894626 0.4244723 +0.4894626 0.4894626 0.4244723 +0.4961862 0.4894626 0.4244723 +0.5025087 0.4894626 0.4244723 +0.5084753 0.4894626 0.4244723 +0.514124 0.4894626 0.4244723 +0.519487 0.4894626 0.4244723 +0.5245917 0.4894626 0.4244723 +0.529462 0.4894626 0.4244723 +0.5341183 0.4894626 0.4244723 +0.5385787 0.4894626 0.4244723 +0.5428591 0.4894626 0.4244723 +0.5469733 0.4894626 0.4244723 +0.5509339 0.4894626 0.4244723 +0.5547519 0.4894626 0.4244723 +0.5584371 0.4894626 0.4244723 +0.5619986 0.4894626 0.4244723 +0.5654443 0.4894626 0.4244723 +0.5687816 0.4894626 0.4244723 +0.092819 0.4961862 0.4244723 +0.2262531 0.4961862 0.4244723 +0.2875993 0.4961862 0.4244723 +0.3262122 0.4961862 0.4244723 +0.3544566 0.4961862 0.4244723 +0.3767383 0.4961862 0.4244723 +0.3951413 0.4961862 0.4244723 +0.4108177 0.4961862 0.4244723 +0.4244723 0.4961862 0.4244723 +0.4365675 0.4961862 0.4244723 +0.4474232 0.4961862 0.4244723 +0.45727 0.4961862 0.4244723 +0.4662797 0.4961862 0.4244723 +0.4745834 0.4961862 0.4244723 +0.4822838 0.4961862 0.4244723 +0.4894626 0.4961862 0.4244723 +0.4961862 0.4961862 0.4244723 +0.5025087 0.4961862 0.4244723 +0.5084753 0.4961862 0.4244723 +0.514124 0.4961862 0.4244723 +0.519487 0.4961862 0.4244723 +0.5245917 0.4961862 0.4244723 +0.529462 0.4961862 0.4244723 +0.5341183 0.4961862 0.4244723 +0.5385787 0.4961862 0.4244723 +0.5428591 0.4961862 0.4244723 +0.5469733 0.4961862 0.4244723 +0.5509339 0.4961862 0.4244723 +0.5547519 0.4961862 0.4244723 +0.5584371 0.4961862 0.4244723 +0.5619986 0.4961862 0.4244723 +0.5654443 0.4961862 0.4244723 +0.5687816 0.4961862 0.4244723 +0.092819 0.5025087 0.4244723 +0.2262531 0.5025087 0.4244723 +0.2875993 0.5025087 0.4244723 +0.3262122 0.5025087 0.4244723 +0.3544566 0.5025087 0.4244723 +0.3767383 0.5025087 0.4244723 +0.3951413 0.5025087 0.4244723 +0.4108177 0.5025087 0.4244723 +0.4244723 0.5025087 0.4244723 +0.4365675 0.5025087 0.4244723 +0.4474232 0.5025087 0.4244723 +0.45727 0.5025087 0.4244723 +0.4662797 0.5025087 0.4244723 +0.4745834 0.5025087 0.4244723 +0.4822838 0.5025087 0.4244723 +0.4894626 0.5025087 0.4244723 +0.4961862 0.5025087 0.4244723 +0.5025087 0.5025087 0.4244723 +0.5084753 0.5025087 0.4244723 +0.514124 0.5025087 0.4244723 +0.519487 0.5025087 0.4244723 +0.5245917 0.5025087 0.4244723 +0.529462 0.5025087 0.4244723 +0.5341183 0.5025087 0.4244723 +0.5385787 0.5025087 0.4244723 +0.5428591 0.5025087 0.4244723 +0.5469733 0.5025087 0.4244723 +0.5509339 0.5025087 0.4244723 +0.5547519 0.5025087 0.4244723 +0.5584371 0.5025087 0.4244723 +0.5619986 0.5025087 0.4244723 +0.5654443 0.5025087 0.4244723 +0.5687816 0.5025087 0.4244723 +0.092819 0.5084753 0.4244723 +0.2262531 0.5084753 0.4244723 +0.2875993 0.5084753 0.4244723 +0.3262122 0.5084753 0.4244723 +0.3544566 0.5084753 0.4244723 +0.3767383 0.5084753 0.4244723 +0.3951413 0.5084753 0.4244723 +0.4108177 0.5084753 0.4244723 +0.4244723 0.5084753 0.4244723 +0.4365675 0.5084753 0.4244723 +0.4474232 0.5084753 0.4244723 +0.45727 0.5084753 0.4244723 +0.4662797 0.5084753 0.4244723 +0.4745834 0.5084753 0.4244723 +0.4822838 0.5084753 0.4244723 +0.4894626 0.5084753 0.4244723 +0.4961862 0.5084753 0.4244723 +0.5025087 0.5084753 0.4244723 +0.5084753 0.5084753 0.4244723 +0.514124 0.5084753 0.4244723 +0.519487 0.5084753 0.4244723 +0.5245917 0.5084753 0.4244723 +0.529462 0.5084753 0.4244723 +0.5341183 0.5084753 0.4244723 +0.5385787 0.5084753 0.4244723 +0.5428591 0.5084753 0.4244723 +0.5469733 0.5084753 0.4244723 +0.5509339 0.5084753 0.4244723 +0.5547519 0.5084753 0.4244723 +0.5584371 0.5084753 0.4244723 +0.5619986 0.5084753 0.4244723 +0.5654443 0.5084753 0.4244723 +0.5687816 0.5084753 0.4244723 +0.092819 0.514124 0.4244723 +0.2262531 0.514124 0.4244723 +0.2875993 0.514124 0.4244723 +0.3262122 0.514124 0.4244723 +0.3544566 0.514124 0.4244723 +0.3767383 0.514124 0.4244723 +0.3951413 0.514124 0.4244723 +0.4108177 0.514124 0.4244723 +0.4244723 0.514124 0.4244723 +0.4365675 0.514124 0.4244723 +0.4474232 0.514124 0.4244723 +0.45727 0.514124 0.4244723 +0.4662797 0.514124 0.4244723 +0.4745834 0.514124 0.4244723 +0.4822838 0.514124 0.4244723 +0.4894626 0.514124 0.4244723 +0.4961862 0.514124 0.4244723 +0.5025087 0.514124 0.4244723 +0.5084753 0.514124 0.4244723 +0.514124 0.514124 0.4244723 +0.519487 0.514124 0.4244723 +0.5245917 0.514124 0.4244723 +0.529462 0.514124 0.4244723 +0.5341183 0.514124 0.4244723 +0.5385787 0.514124 0.4244723 +0.5428591 0.514124 0.4244723 +0.5469733 0.514124 0.4244723 +0.5509339 0.514124 0.4244723 +0.5547519 0.514124 0.4244723 +0.5584371 0.514124 0.4244723 +0.5619986 0.514124 0.4244723 +0.5654443 0.514124 0.4244723 +0.5687816 0.514124 0.4244723 +0.092819 0.519487 0.4244723 +0.2262531 0.519487 0.4244723 +0.2875993 0.519487 0.4244723 +0.3262122 0.519487 0.4244723 +0.3544566 0.519487 0.4244723 +0.3767383 0.519487 0.4244723 +0.3951413 0.519487 0.4244723 +0.4108177 0.519487 0.4244723 +0.4244723 0.519487 0.4244723 +0.4365675 0.519487 0.4244723 +0.4474232 0.519487 0.4244723 +0.45727 0.519487 0.4244723 +0.4662797 0.519487 0.4244723 +0.4745834 0.519487 0.4244723 +0.4822838 0.519487 0.4244723 +0.4894626 0.519487 0.4244723 +0.4961862 0.519487 0.4244723 +0.5025087 0.519487 0.4244723 +0.5084753 0.519487 0.4244723 +0.514124 0.519487 0.4244723 +0.519487 0.519487 0.4244723 +0.5245917 0.519487 0.4244723 +0.529462 0.519487 0.4244723 +0.5341183 0.519487 0.4244723 +0.5385787 0.519487 0.4244723 +0.5428591 0.519487 0.4244723 +0.5469733 0.519487 0.4244723 +0.5509339 0.519487 0.4244723 +0.5547519 0.519487 0.4244723 +0.5584371 0.519487 0.4244723 +0.5619986 0.519487 0.4244723 +0.5654443 0.519487 0.4244723 +0.5687816 0.519487 0.4244723 +0.092819 0.5245917 0.4244723 +0.2262531 0.5245917 0.4244723 +0.2875993 0.5245917 0.4244723 +0.3262122 0.5245917 0.4244723 +0.3544566 0.5245917 0.4244723 +0.3767383 0.5245917 0.4244723 +0.3951413 0.5245917 0.4244723 +0.4108177 0.5245917 0.4244723 +0.4244723 0.5245917 0.4244723 +0.4365675 0.5245917 0.4244723 +0.4474232 0.5245917 0.4244723 +0.45727 0.5245917 0.4244723 +0.4662797 0.5245917 0.4244723 +0.4745834 0.5245917 0.4244723 +0.4822838 0.5245917 0.4244723 +0.4894626 0.5245917 0.4244723 +0.4961862 0.5245917 0.4244723 +0.5025087 0.5245917 0.4244723 +0.5084753 0.5245917 0.4244723 +0.514124 0.5245917 0.4244723 +0.519487 0.5245917 0.4244723 +0.5245917 0.5245917 0.4244723 +0.529462 0.5245917 0.4244723 +0.5341183 0.5245917 0.4244723 +0.5385787 0.5245917 0.4244723 +0.5428591 0.5245917 0.4244723 +0.5469733 0.5245917 0.4244723 +0.5509339 0.5245917 0.4244723 +0.5547519 0.5245917 0.4244723 +0.5584371 0.5245917 0.4244723 +0.5619986 0.5245917 0.4244723 +0.5654443 0.5245917 0.4244723 +0.5687816 0.5245917 0.4244723 +0.092819 0.529462 0.4244723 +0.2262531 0.529462 0.4244723 +0.2875993 0.529462 0.4244723 +0.3262122 0.529462 0.4244723 +0.3544566 0.529462 0.4244723 +0.3767383 0.529462 0.4244723 +0.3951413 0.529462 0.4244723 +0.4108177 0.529462 0.4244723 +0.4244723 0.529462 0.4244723 +0.4365675 0.529462 0.4244723 +0.4474232 0.529462 0.4244723 +0.45727 0.529462 0.4244723 +0.4662797 0.529462 0.4244723 +0.4745834 0.529462 0.4244723 +0.4822838 0.529462 0.4244723 +0.4894626 0.529462 0.4244723 +0.4961862 0.529462 0.4244723 +0.5025087 0.529462 0.4244723 +0.5084753 0.529462 0.4244723 +0.514124 0.529462 0.4244723 +0.519487 0.529462 0.4244723 +0.5245917 0.529462 0.4244723 +0.529462 0.529462 0.4244723 +0.5341183 0.529462 0.4244723 +0.5385787 0.529462 0.4244723 +0.5428591 0.529462 0.4244723 +0.5469733 0.529462 0.4244723 +0.5509339 0.529462 0.4244723 +0.5547519 0.529462 0.4244723 +0.5584371 0.529462 0.4244723 +0.5619986 0.529462 0.4244723 +0.5654443 0.529462 0.4244723 +0.5687816 0.529462 0.4244723 +0.092819 0.5341183 0.4244723 +0.2262531 0.5341183 0.4244723 +0.2875993 0.5341183 0.4244723 +0.3262122 0.5341183 0.4244723 +0.3544566 0.5341183 0.4244723 +0.3767383 0.5341183 0.4244723 +0.3951413 0.5341183 0.4244723 +0.4108177 0.5341183 0.4244723 +0.4244723 0.5341183 0.4244723 +0.4365675 0.5341183 0.4244723 +0.4474232 0.5341183 0.4244723 +0.45727 0.5341183 0.4244723 +0.4662797 0.5341183 0.4244723 +0.4745834 0.5341183 0.4244723 +0.4822838 0.5341183 0.4244723 +0.4894626 0.5341183 0.4244723 +0.4961862 0.5341183 0.4244723 +0.5025087 0.5341183 0.4244723 +0.5084753 0.5341183 0.4244723 +0.514124 0.5341183 0.4244723 +0.519487 0.5341183 0.4244723 +0.5245917 0.5341183 0.4244723 +0.529462 0.5341183 0.4244723 +0.5341183 0.5341183 0.4244723 +0.5385787 0.5341183 0.4244723 +0.5428591 0.5341183 0.4244723 +0.5469733 0.5341183 0.4244723 +0.5509339 0.5341183 0.4244723 +0.5547519 0.5341183 0.4244723 +0.5584371 0.5341183 0.4244723 +0.5619986 0.5341183 0.4244723 +0.5654443 0.5341183 0.4244723 +0.5687816 0.5341183 0.4244723 +0.092819 0.5385787 0.4244723 +0.2262531 0.5385787 0.4244723 +0.2875993 0.5385787 0.4244723 +0.3262122 0.5385787 0.4244723 +0.3544566 0.5385787 0.4244723 +0.3767383 0.5385787 0.4244723 +0.3951413 0.5385787 0.4244723 +0.4108177 0.5385787 0.4244723 +0.4244723 0.5385787 0.4244723 +0.4365675 0.5385787 0.4244723 +0.4474232 0.5385787 0.4244723 +0.45727 0.5385787 0.4244723 +0.4662797 0.5385787 0.4244723 +0.4745834 0.5385787 0.4244723 +0.4822838 0.5385787 0.4244723 +0.4894626 0.5385787 0.4244723 +0.4961862 0.5385787 0.4244723 +0.5025087 0.5385787 0.4244723 +0.5084753 0.5385787 0.4244723 +0.514124 0.5385787 0.4244723 +0.519487 0.5385787 0.4244723 +0.5245917 0.5385787 0.4244723 +0.529462 0.5385787 0.4244723 +0.5341183 0.5385787 0.4244723 +0.5385787 0.5385787 0.4244723 +0.5428591 0.5385787 0.4244723 +0.5469733 0.5385787 0.4244723 +0.5509339 0.5385787 0.4244723 +0.5547519 0.5385787 0.4244723 +0.5584371 0.5385787 0.4244723 +0.5619986 0.5385787 0.4244723 +0.5654443 0.5385787 0.4244723 +0.5687816 0.5385787 0.4244723 +0.092819 0.5428591 0.4244723 +0.2262531 0.5428591 0.4244723 +0.2875993 0.5428591 0.4244723 +0.3262122 0.5428591 0.4244723 +0.3544566 0.5428591 0.4244723 +0.3767383 0.5428591 0.4244723 +0.3951413 0.5428591 0.4244723 +0.4108177 0.5428591 0.4244723 +0.4244723 0.5428591 0.4244723 +0.4365675 0.5428591 0.4244723 +0.4474232 0.5428591 0.4244723 +0.45727 0.5428591 0.4244723 +0.4662797 0.5428591 0.4244723 +0.4745834 0.5428591 0.4244723 +0.4822838 0.5428591 0.4244723 +0.4894626 0.5428591 0.4244723 +0.4961862 0.5428591 0.4244723 +0.5025087 0.5428591 0.4244723 +0.5084753 0.5428591 0.4244723 +0.514124 0.5428591 0.4244723 +0.519487 0.5428591 0.4244723 +0.5245917 0.5428591 0.4244723 +0.529462 0.5428591 0.4244723 +0.5341183 0.5428591 0.4244723 +0.5385787 0.5428591 0.4244723 +0.5428591 0.5428591 0.4244723 +0.5469733 0.5428591 0.4244723 +0.5509339 0.5428591 0.4244723 +0.5547519 0.5428591 0.4244723 +0.5584371 0.5428591 0.4244723 +0.5619986 0.5428591 0.4244723 +0.5654443 0.5428591 0.4244723 +0.5687816 0.5428591 0.4244723 +0.092819 0.5469733 0.4244723 +0.2262531 0.5469733 0.4244723 +0.2875993 0.5469733 0.4244723 +0.3262122 0.5469733 0.4244723 +0.3544566 0.5469733 0.4244723 +0.3767383 0.5469733 0.4244723 +0.3951413 0.5469733 0.4244723 +0.4108177 0.5469733 0.4244723 +0.4244723 0.5469733 0.4244723 +0.4365675 0.5469733 0.4244723 +0.4474232 0.5469733 0.4244723 +0.45727 0.5469733 0.4244723 +0.4662797 0.5469733 0.4244723 +0.4745834 0.5469733 0.4244723 +0.4822838 0.5469733 0.4244723 +0.4894626 0.5469733 0.4244723 +0.4961862 0.5469733 0.4244723 +0.5025087 0.5469733 0.4244723 +0.5084753 0.5469733 0.4244723 +0.514124 0.5469733 0.4244723 +0.519487 0.5469733 0.4244723 +0.5245917 0.5469733 0.4244723 +0.529462 0.5469733 0.4244723 +0.5341183 0.5469733 0.4244723 +0.5385787 0.5469733 0.4244723 +0.5428591 0.5469733 0.4244723 +0.5469733 0.5469733 0.4244723 +0.5509339 0.5469733 0.4244723 +0.5547519 0.5469733 0.4244723 +0.5584371 0.5469733 0.4244723 +0.5619986 0.5469733 0.4244723 +0.5654443 0.5469733 0.4244723 +0.5687816 0.5469733 0.4244723 +0.092819 0.5509339 0.4244723 +0.2262531 0.5509339 0.4244723 +0.2875993 0.5509339 0.4244723 +0.3262122 0.5509339 0.4244723 +0.3544566 0.5509339 0.4244723 +0.3767383 0.5509339 0.4244723 +0.3951413 0.5509339 0.4244723 +0.4108177 0.5509339 0.4244723 +0.4244723 0.5509339 0.4244723 +0.4365675 0.5509339 0.4244723 +0.4474232 0.5509339 0.4244723 +0.45727 0.5509339 0.4244723 +0.4662797 0.5509339 0.4244723 +0.4745834 0.5509339 0.4244723 +0.4822838 0.5509339 0.4244723 +0.4894626 0.5509339 0.4244723 +0.4961862 0.5509339 0.4244723 +0.5025087 0.5509339 0.4244723 +0.5084753 0.5509339 0.4244723 +0.514124 0.5509339 0.4244723 +0.519487 0.5509339 0.4244723 +0.5245917 0.5509339 0.4244723 +0.529462 0.5509339 0.4244723 +0.5341183 0.5509339 0.4244723 +0.5385787 0.5509339 0.4244723 +0.5428591 0.5509339 0.4244723 +0.5469733 0.5509339 0.4244723 +0.5509339 0.5509339 0.4244723 +0.5547519 0.5509339 0.4244723 +0.5584371 0.5509339 0.4244723 +0.5619986 0.5509339 0.4244723 +0.5654443 0.5509339 0.4244723 +0.5687816 0.5509339 0.4244723 +0.092819 0.5547519 0.4244723 +0.2262531 0.5547519 0.4244723 +0.2875993 0.5547519 0.4244723 +0.3262122 0.5547519 0.4244723 +0.3544566 0.5547519 0.4244723 +0.3767383 0.5547519 0.4244723 +0.3951413 0.5547519 0.4244723 +0.4108177 0.5547519 0.4244723 +0.4244723 0.5547519 0.4244723 +0.4365675 0.5547519 0.4244723 +0.4474232 0.5547519 0.4244723 +0.45727 0.5547519 0.4244723 +0.4662797 0.5547519 0.4244723 +0.4745834 0.5547519 0.4244723 +0.4822838 0.5547519 0.4244723 +0.4894626 0.5547519 0.4244723 +0.4961862 0.5547519 0.4244723 +0.5025087 0.5547519 0.4244723 +0.5084753 0.5547519 0.4244723 +0.514124 0.5547519 0.4244723 +0.519487 0.5547519 0.4244723 +0.5245917 0.5547519 0.4244723 +0.529462 0.5547519 0.4244723 +0.5341183 0.5547519 0.4244723 +0.5385787 0.5547519 0.4244723 +0.5428591 0.5547519 0.4244723 +0.5469733 0.5547519 0.4244723 +0.5509339 0.5547519 0.4244723 +0.5547519 0.5547519 0.4244723 +0.5584371 0.5547519 0.4244723 +0.5619986 0.5547519 0.4244723 +0.5654443 0.5547519 0.4244723 +0.5687816 0.5547519 0.4244723 +0.092819 0.5584371 0.4244723 +0.2262531 0.5584371 0.4244723 +0.2875993 0.5584371 0.4244723 +0.3262122 0.5584371 0.4244723 +0.3544566 0.5584371 0.4244723 +0.3767383 0.5584371 0.4244723 +0.3951413 0.5584371 0.4244723 +0.4108177 0.5584371 0.4244723 +0.4244723 0.5584371 0.4244723 +0.4365675 0.5584371 0.4244723 +0.4474232 0.5584371 0.4244723 +0.45727 0.5584371 0.4244723 +0.4662797 0.5584371 0.4244723 +0.4745834 0.5584371 0.4244723 +0.4822838 0.5584371 0.4244723 +0.4894626 0.5584371 0.4244723 +0.4961862 0.5584371 0.4244723 +0.5025087 0.5584371 0.4244723 +0.5084753 0.5584371 0.4244723 +0.514124 0.5584371 0.4244723 +0.519487 0.5584371 0.4244723 +0.5245917 0.5584371 0.4244723 +0.529462 0.5584371 0.4244723 +0.5341183 0.5584371 0.4244723 +0.5385787 0.5584371 0.4244723 +0.5428591 0.5584371 0.4244723 +0.5469733 0.5584371 0.4244723 +0.5509339 0.5584371 0.4244723 +0.5547519 0.5584371 0.4244723 +0.5584371 0.5584371 0.4244723 +0.5619986 0.5584371 0.4244723 +0.5654443 0.5584371 0.4244723 +0.5687816 0.5584371 0.4244723 +0.092819 0.5619986 0.4244723 +0.2262531 0.5619986 0.4244723 +0.2875993 0.5619986 0.4244723 +0.3262122 0.5619986 0.4244723 +0.3544566 0.5619986 0.4244723 +0.3767383 0.5619986 0.4244723 +0.3951413 0.5619986 0.4244723 +0.4108177 0.5619986 0.4244723 +0.4244723 0.5619986 0.4244723 +0.4365675 0.5619986 0.4244723 +0.4474232 0.5619986 0.4244723 +0.45727 0.5619986 0.4244723 +0.4662797 0.5619986 0.4244723 +0.4745834 0.5619986 0.4244723 +0.4822838 0.5619986 0.4244723 +0.4894626 0.5619986 0.4244723 +0.4961862 0.5619986 0.4244723 +0.5025087 0.5619986 0.4244723 +0.5084753 0.5619986 0.4244723 +0.514124 0.5619986 0.4244723 +0.519487 0.5619986 0.4244723 +0.5245917 0.5619986 0.4244723 +0.529462 0.5619986 0.4244723 +0.5341183 0.5619986 0.4244723 +0.5385787 0.5619986 0.4244723 +0.5428591 0.5619986 0.4244723 +0.5469733 0.5619986 0.4244723 +0.5509339 0.5619986 0.4244723 +0.5547519 0.5619986 0.4244723 +0.5584371 0.5619986 0.4244723 +0.5619986 0.5619986 0.4244723 +0.5654443 0.5619986 0.4244723 +0.5687816 0.5619986 0.4244723 +0.092819 0.5654443 0.4244723 +0.2262531 0.5654443 0.4244723 +0.2875993 0.5654443 0.4244723 +0.3262122 0.5654443 0.4244723 +0.3544566 0.5654443 0.4244723 +0.3767383 0.5654443 0.4244723 +0.3951413 0.5654443 0.4244723 +0.4108177 0.5654443 0.4244723 +0.4244723 0.5654443 0.4244723 +0.4365675 0.5654443 0.4244723 +0.4474232 0.5654443 0.4244723 +0.45727 0.5654443 0.4244723 +0.4662797 0.5654443 0.4244723 +0.4745834 0.5654443 0.4244723 +0.4822838 0.5654443 0.4244723 +0.4894626 0.5654443 0.4244723 +0.4961862 0.5654443 0.4244723 +0.5025087 0.5654443 0.4244723 +0.5084753 0.5654443 0.4244723 +0.514124 0.5654443 0.4244723 +0.519487 0.5654443 0.4244723 +0.5245917 0.5654443 0.4244723 +0.529462 0.5654443 0.4244723 +0.5341183 0.5654443 0.4244723 +0.5385787 0.5654443 0.4244723 +0.5428591 0.5654443 0.4244723 +0.5469733 0.5654443 0.4244723 +0.5509339 0.5654443 0.4244723 +0.5547519 0.5654443 0.4244723 +0.5584371 0.5654443 0.4244723 +0.5619986 0.5654443 0.4244723 +0.5654443 0.5654443 0.4244723 +0.5687816 0.5654443 0.4244723 +0.092819 0.5687816 0.4244723 +0.2262531 0.5687816 0.4244723 +0.2875993 0.5687816 0.4244723 +0.3262122 0.5687816 0.4244723 +0.3544566 0.5687816 0.4244723 +0.3767383 0.5687816 0.4244723 +0.3951413 0.5687816 0.4244723 +0.4108177 0.5687816 0.4244723 +0.4244723 0.5687816 0.4244723 +0.4365675 0.5687816 0.4244723 +0.4474232 0.5687816 0.4244723 +0.45727 0.5687816 0.4244723 +0.4662797 0.5687816 0.4244723 +0.4745834 0.5687816 0.4244723 +0.4822838 0.5687816 0.4244723 +0.4894626 0.5687816 0.4244723 +0.4961862 0.5687816 0.4244723 +0.5025087 0.5687816 0.4244723 +0.5084753 0.5687816 0.4244723 +0.514124 0.5687816 0.4244723 +0.519487 0.5687816 0.4244723 +0.5245917 0.5687816 0.4244723 +0.529462 0.5687816 0.4244723 +0.5341183 0.5687816 0.4244723 +0.5385787 0.5687816 0.4244723 +0.5428591 0.5687816 0.4244723 +0.5469733 0.5687816 0.4244723 +0.5509339 0.5687816 0.4244723 +0.5547519 0.5687816 0.4244723 +0.5584371 0.5687816 0.4244723 +0.5619986 0.5687816 0.4244723 +0.5654443 0.5687816 0.4244723 +0.5687816 0.5687816 0.4244723 +0.092819 0.092819 0.4365675 +0.2262531 0.092819 0.4365675 +0.2875993 0.092819 0.4365675 +0.3262122 0.092819 0.4365675 +0.3544566 0.092819 0.4365675 +0.3767383 0.092819 0.4365675 +0.3951413 0.092819 0.4365675 +0.4108177 0.092819 0.4365675 +0.4244723 0.092819 0.4365675 +0.4365675 0.092819 0.4365675 +0.4474232 0.092819 0.4365675 +0.45727 0.092819 0.4365675 +0.4662797 0.092819 0.4365675 +0.4745834 0.092819 0.4365675 +0.4822838 0.092819 0.4365675 +0.4894626 0.092819 0.4365675 +0.4961862 0.092819 0.4365675 +0.5025087 0.092819 0.4365675 +0.5084753 0.092819 0.4365675 +0.514124 0.092819 0.4365675 +0.519487 0.092819 0.4365675 +0.5245917 0.092819 0.4365675 +0.529462 0.092819 0.4365675 +0.5341183 0.092819 0.4365675 +0.5385787 0.092819 0.4365675 +0.5428591 0.092819 0.4365675 +0.5469733 0.092819 0.4365675 +0.5509339 0.092819 0.4365675 +0.5547519 0.092819 0.4365675 +0.5584371 0.092819 0.4365675 +0.5619986 0.092819 0.4365675 +0.5654443 0.092819 0.4365675 +0.5687816 0.092819 0.4365675 +0.092819 0.2262531 0.4365675 +0.2262531 0.2262531 0.4365675 +0.2875993 0.2262531 0.4365675 +0.3262122 0.2262531 0.4365675 +0.3544566 0.2262531 0.4365675 +0.3767383 0.2262531 0.4365675 +0.3951413 0.2262531 0.4365675 +0.4108177 0.2262531 0.4365675 +0.4244723 0.2262531 0.4365675 +0.4365675 0.2262531 0.4365675 +0.4474232 0.2262531 0.4365675 +0.45727 0.2262531 0.4365675 +0.4662797 0.2262531 0.4365675 +0.4745834 0.2262531 0.4365675 +0.4822838 0.2262531 0.4365675 +0.4894626 0.2262531 0.4365675 +0.4961862 0.2262531 0.4365675 +0.5025087 0.2262531 0.4365675 +0.5084753 0.2262531 0.4365675 +0.514124 0.2262531 0.4365675 +0.519487 0.2262531 0.4365675 +0.5245917 0.2262531 0.4365675 +0.529462 0.2262531 0.4365675 +0.5341183 0.2262531 0.4365675 +0.5385787 0.2262531 0.4365675 +0.5428591 0.2262531 0.4365675 +0.5469733 0.2262531 0.4365675 +0.5509339 0.2262531 0.4365675 +0.5547519 0.2262531 0.4365675 +0.5584371 0.2262531 0.4365675 +0.5619986 0.2262531 0.4365675 +0.5654443 0.2262531 0.4365675 +0.5687816 0.2262531 0.4365675 +0.092819 0.2875993 0.4365675 +0.2262531 0.2875993 0.4365675 +0.2875993 0.2875993 0.4365675 +0.3262122 0.2875993 0.4365675 +0.3544566 0.2875993 0.4365675 +0.3767383 0.2875993 0.4365675 +0.3951413 0.2875993 0.4365675 +0.4108177 0.2875993 0.4365675 +0.4244723 0.2875993 0.4365675 +0.4365675 0.2875993 0.4365675 +0.4474232 0.2875993 0.4365675 +0.45727 0.2875993 0.4365675 +0.4662797 0.2875993 0.4365675 +0.4745834 0.2875993 0.4365675 +0.4822838 0.2875993 0.4365675 +0.4894626 0.2875993 0.4365675 +0.4961862 0.2875993 0.4365675 +0.5025087 0.2875993 0.4365675 +0.5084753 0.2875993 0.4365675 +0.514124 0.2875993 0.4365675 +0.519487 0.2875993 0.4365675 +0.5245917 0.2875993 0.4365675 +0.529462 0.2875993 0.4365675 +0.5341183 0.2875993 0.4365675 +0.5385787 0.2875993 0.4365675 +0.5428591 0.2875993 0.4365675 +0.5469733 0.2875993 0.4365675 +0.5509339 0.2875993 0.4365675 +0.5547519 0.2875993 0.4365675 +0.5584371 0.2875993 0.4365675 +0.5619986 0.2875993 0.4365675 +0.5654443 0.2875993 0.4365675 +0.5687816 0.2875993 0.4365675 +0.092819 0.3262122 0.4365675 +0.2262531 0.3262122 0.4365675 +0.2875993 0.3262122 0.4365675 +0.3262122 0.3262122 0.4365675 +0.3544566 0.3262122 0.4365675 +0.3767383 0.3262122 0.4365675 +0.3951413 0.3262122 0.4365675 +0.4108177 0.3262122 0.4365675 +0.4244723 0.3262122 0.4365675 +0.4365675 0.3262122 0.4365675 +0.4474232 0.3262122 0.4365675 +0.45727 0.3262122 0.4365675 +0.4662797 0.3262122 0.4365675 +0.4745834 0.3262122 0.4365675 +0.4822838 0.3262122 0.4365675 +0.4894626 0.3262122 0.4365675 +0.4961862 0.3262122 0.4365675 +0.5025087 0.3262122 0.4365675 +0.5084753 0.3262122 0.4365675 +0.514124 0.3262122 0.4365675 +0.519487 0.3262122 0.4365675 +0.5245917 0.3262122 0.4365675 +0.529462 0.3262122 0.4365675 +0.5341183 0.3262122 0.4365675 +0.5385787 0.3262122 0.4365675 +0.5428591 0.3262122 0.4365675 +0.5469733 0.3262122 0.4365675 +0.5509339 0.3262122 0.4365675 +0.5547519 0.3262122 0.4365675 +0.5584371 0.3262122 0.4365675 +0.5619986 0.3262122 0.4365675 +0.5654443 0.3262122 0.4365675 +0.5687816 0.3262122 0.4365675 +0.092819 0.3544566 0.4365675 +0.2262531 0.3544566 0.4365675 +0.2875993 0.3544566 0.4365675 +0.3262122 0.3544566 0.4365675 +0.3544566 0.3544566 0.4365675 +0.3767383 0.3544566 0.4365675 +0.3951413 0.3544566 0.4365675 +0.4108177 0.3544566 0.4365675 +0.4244723 0.3544566 0.4365675 +0.4365675 0.3544566 0.4365675 +0.4474232 0.3544566 0.4365675 +0.45727 0.3544566 0.4365675 +0.4662797 0.3544566 0.4365675 +0.4745834 0.3544566 0.4365675 +0.4822838 0.3544566 0.4365675 +0.4894626 0.3544566 0.4365675 +0.4961862 0.3544566 0.4365675 +0.5025087 0.3544566 0.4365675 +0.5084753 0.3544566 0.4365675 +0.514124 0.3544566 0.4365675 +0.519487 0.3544566 0.4365675 +0.5245917 0.3544566 0.4365675 +0.529462 0.3544566 0.4365675 +0.5341183 0.3544566 0.4365675 +0.5385787 0.3544566 0.4365675 +0.5428591 0.3544566 0.4365675 +0.5469733 0.3544566 0.4365675 +0.5509339 0.3544566 0.4365675 +0.5547519 0.3544566 0.4365675 +0.5584371 0.3544566 0.4365675 +0.5619986 0.3544566 0.4365675 +0.5654443 0.3544566 0.4365675 +0.5687816 0.3544566 0.4365675 +0.092819 0.3767383 0.4365675 +0.2262531 0.3767383 0.4365675 +0.2875993 0.3767383 0.4365675 +0.3262122 0.3767383 0.4365675 +0.3544566 0.3767383 0.4365675 +0.3767383 0.3767383 0.4365675 +0.3951413 0.3767383 0.4365675 +0.4108177 0.3767383 0.4365675 +0.4244723 0.3767383 0.4365675 +0.4365675 0.3767383 0.4365675 +0.4474232 0.3767383 0.4365675 +0.45727 0.3767383 0.4365675 +0.4662797 0.3767383 0.4365675 +0.4745834 0.3767383 0.4365675 +0.4822838 0.3767383 0.4365675 +0.4894626 0.3767383 0.4365675 +0.4961862 0.3767383 0.4365675 +0.5025087 0.3767383 0.4365675 +0.5084753 0.3767383 0.4365675 +0.514124 0.3767383 0.4365675 +0.519487 0.3767383 0.4365675 +0.5245917 0.3767383 0.4365675 +0.529462 0.3767383 0.4365675 +0.5341183 0.3767383 0.4365675 +0.5385787 0.3767383 0.4365675 +0.5428591 0.3767383 0.4365675 +0.5469733 0.3767383 0.4365675 +0.5509339 0.3767383 0.4365675 +0.5547519 0.3767383 0.4365675 +0.5584371 0.3767383 0.4365675 +0.5619986 0.3767383 0.4365675 +0.5654443 0.3767383 0.4365675 +0.5687816 0.3767383 0.4365675 +0.092819 0.3951413 0.4365675 +0.2262531 0.3951413 0.4365675 +0.2875993 0.3951413 0.4365675 +0.3262122 0.3951413 0.4365675 +0.3544566 0.3951413 0.4365675 +0.3767383 0.3951413 0.4365675 +0.3951413 0.3951413 0.4365675 +0.4108177 0.3951413 0.4365675 +0.4244723 0.3951413 0.4365675 +0.4365675 0.3951413 0.4365675 +0.4474232 0.3951413 0.4365675 +0.45727 0.3951413 0.4365675 +0.4662797 0.3951413 0.4365675 +0.4745834 0.3951413 0.4365675 +0.4822838 0.3951413 0.4365675 +0.4894626 0.3951413 0.4365675 +0.4961862 0.3951413 0.4365675 +0.5025087 0.3951413 0.4365675 +0.5084753 0.3951413 0.4365675 +0.514124 0.3951413 0.4365675 +0.519487 0.3951413 0.4365675 +0.5245917 0.3951413 0.4365675 +0.529462 0.3951413 0.4365675 +0.5341183 0.3951413 0.4365675 +0.5385787 0.3951413 0.4365675 +0.5428591 0.3951413 0.4365675 +0.5469733 0.3951413 0.4365675 +0.5509339 0.3951413 0.4365675 +0.5547519 0.3951413 0.4365675 +0.5584371 0.3951413 0.4365675 +0.5619986 0.3951413 0.4365675 +0.5654443 0.3951413 0.4365675 +0.5687816 0.3951413 0.4365675 +0.092819 0.4108177 0.4365675 +0.2262531 0.4108177 0.4365675 +0.2875993 0.4108177 0.4365675 +0.3262122 0.4108177 0.4365675 +0.3544566 0.4108177 0.4365675 +0.3767383 0.4108177 0.4365675 +0.3951413 0.4108177 0.4365675 +0.4108177 0.4108177 0.4365675 +0.4244723 0.4108177 0.4365675 +0.4365675 0.4108177 0.4365675 +0.4474232 0.4108177 0.4365675 +0.45727 0.4108177 0.4365675 +0.4662797 0.4108177 0.4365675 +0.4745834 0.4108177 0.4365675 +0.4822838 0.4108177 0.4365675 +0.4894626 0.4108177 0.4365675 +0.4961862 0.4108177 0.4365675 +0.5025087 0.4108177 0.4365675 +0.5084753 0.4108177 0.4365675 +0.514124 0.4108177 0.4365675 +0.519487 0.4108177 0.4365675 +0.5245917 0.4108177 0.4365675 +0.529462 0.4108177 0.4365675 +0.5341183 0.4108177 0.4365675 +0.5385787 0.4108177 0.4365675 +0.5428591 0.4108177 0.4365675 +0.5469733 0.4108177 0.4365675 +0.5509339 0.4108177 0.4365675 +0.5547519 0.4108177 0.4365675 +0.5584371 0.4108177 0.4365675 +0.5619986 0.4108177 0.4365675 +0.5654443 0.4108177 0.4365675 +0.5687816 0.4108177 0.4365675 +0.092819 0.4244723 0.4365675 +0.2262531 0.4244723 0.4365675 +0.2875993 0.4244723 0.4365675 +0.3262122 0.4244723 0.4365675 +0.3544566 0.4244723 0.4365675 +0.3767383 0.4244723 0.4365675 +0.3951413 0.4244723 0.4365675 +0.4108177 0.4244723 0.4365675 +0.4244723 0.4244723 0.4365675 +0.4365675 0.4244723 0.4365675 +0.4474232 0.4244723 0.4365675 +0.45727 0.4244723 0.4365675 +0.4662797 0.4244723 0.4365675 +0.4745834 0.4244723 0.4365675 +0.4822838 0.4244723 0.4365675 +0.4894626 0.4244723 0.4365675 +0.4961862 0.4244723 0.4365675 +0.5025087 0.4244723 0.4365675 +0.5084753 0.4244723 0.4365675 +0.514124 0.4244723 0.4365675 +0.519487 0.4244723 0.4365675 +0.5245917 0.4244723 0.4365675 +0.529462 0.4244723 0.4365675 +0.5341183 0.4244723 0.4365675 +0.5385787 0.4244723 0.4365675 +0.5428591 0.4244723 0.4365675 +0.5469733 0.4244723 0.4365675 +0.5509339 0.4244723 0.4365675 +0.5547519 0.4244723 0.4365675 +0.5584371 0.4244723 0.4365675 +0.5619986 0.4244723 0.4365675 +0.5654443 0.4244723 0.4365675 +0.5687816 0.4244723 0.4365675 +0.092819 0.4365675 0.4365675 +0.2262531 0.4365675 0.4365675 +0.2875993 0.4365675 0.4365675 +0.3262122 0.4365675 0.4365675 +0.3544566 0.4365675 0.4365675 +0.3767383 0.4365675 0.4365675 +0.3951413 0.4365675 0.4365675 +0.4108177 0.4365675 0.4365675 +0.4244723 0.4365675 0.4365675 +0.4365675 0.4365675 0.4365675 +0.4474232 0.4365675 0.4365675 +0.45727 0.4365675 0.4365675 +0.4662797 0.4365675 0.4365675 +0.4745834 0.4365675 0.4365675 +0.4822838 0.4365675 0.4365675 +0.4894626 0.4365675 0.4365675 +0.4961862 0.4365675 0.4365675 +0.5025087 0.4365675 0.4365675 +0.5084753 0.4365675 0.4365675 +0.514124 0.4365675 0.4365675 +0.519487 0.4365675 0.4365675 +0.5245917 0.4365675 0.4365675 +0.529462 0.4365675 0.4365675 +0.5341183 0.4365675 0.4365675 +0.5385787 0.4365675 0.4365675 +0.5428591 0.4365675 0.4365675 +0.5469733 0.4365675 0.4365675 +0.5509339 0.4365675 0.4365675 +0.5547519 0.4365675 0.4365675 +0.5584371 0.4365675 0.4365675 +0.5619986 0.4365675 0.4365675 +0.5654443 0.4365675 0.4365675 +0.5687816 0.4365675 0.4365675 +0.092819 0.4474232 0.4365675 +0.2262531 0.4474232 0.4365675 +0.2875993 0.4474232 0.4365675 +0.3262122 0.4474232 0.4365675 +0.3544566 0.4474232 0.4365675 +0.3767383 0.4474232 0.4365675 +0.3951413 0.4474232 0.4365675 +0.4108177 0.4474232 0.4365675 +0.4244723 0.4474232 0.4365675 +0.4365675 0.4474232 0.4365675 +0.4474232 0.4474232 0.4365675 +0.45727 0.4474232 0.4365675 +0.4662797 0.4474232 0.4365675 +0.4745834 0.4474232 0.4365675 +0.4822838 0.4474232 0.4365675 +0.4894626 0.4474232 0.4365675 +0.4961862 0.4474232 0.4365675 +0.5025087 0.4474232 0.4365675 +0.5084753 0.4474232 0.4365675 +0.514124 0.4474232 0.4365675 +0.519487 0.4474232 0.4365675 +0.5245917 0.4474232 0.4365675 +0.529462 0.4474232 0.4365675 +0.5341183 0.4474232 0.4365675 +0.5385787 0.4474232 0.4365675 +0.5428591 0.4474232 0.4365675 +0.5469733 0.4474232 0.4365675 +0.5509339 0.4474232 0.4365675 +0.5547519 0.4474232 0.4365675 +0.5584371 0.4474232 0.4365675 +0.5619986 0.4474232 0.4365675 +0.5654443 0.4474232 0.4365675 +0.5687816 0.4474232 0.4365675 +0.092819 0.45727 0.4365675 +0.2262531 0.45727 0.4365675 +0.2875993 0.45727 0.4365675 +0.3262122 0.45727 0.4365675 +0.3544566 0.45727 0.4365675 +0.3767383 0.45727 0.4365675 +0.3951413 0.45727 0.4365675 +0.4108177 0.45727 0.4365675 +0.4244723 0.45727 0.4365675 +0.4365675 0.45727 0.4365675 +0.4474232 0.45727 0.4365675 +0.45727 0.45727 0.4365675 +0.4662797 0.45727 0.4365675 +0.4745834 0.45727 0.4365675 +0.4822838 0.45727 0.4365675 +0.4894626 0.45727 0.4365675 +0.4961862 0.45727 0.4365675 +0.5025087 0.45727 0.4365675 +0.5084753 0.45727 0.4365675 +0.514124 0.45727 0.4365675 +0.519487 0.45727 0.4365675 +0.5245917 0.45727 0.4365675 +0.529462 0.45727 0.4365675 +0.5341183 0.45727 0.4365675 +0.5385787 0.45727 0.4365675 +0.5428591 0.45727 0.4365675 +0.5469733 0.45727 0.4365675 +0.5509339 0.45727 0.4365675 +0.5547519 0.45727 0.4365675 +0.5584371 0.45727 0.4365675 +0.5619986 0.45727 0.4365675 +0.5654443 0.45727 0.4365675 +0.5687816 0.45727 0.4365675 +0.092819 0.4662797 0.4365675 +0.2262531 0.4662797 0.4365675 +0.2875993 0.4662797 0.4365675 +0.3262122 0.4662797 0.4365675 +0.3544566 0.4662797 0.4365675 +0.3767383 0.4662797 0.4365675 +0.3951413 0.4662797 0.4365675 +0.4108177 0.4662797 0.4365675 +0.4244723 0.4662797 0.4365675 +0.4365675 0.4662797 0.4365675 +0.4474232 0.4662797 0.4365675 +0.45727 0.4662797 0.4365675 +0.4662797 0.4662797 0.4365675 +0.4745834 0.4662797 0.4365675 +0.4822838 0.4662797 0.4365675 +0.4894626 0.4662797 0.4365675 +0.4961862 0.4662797 0.4365675 +0.5025087 0.4662797 0.4365675 +0.5084753 0.4662797 0.4365675 +0.514124 0.4662797 0.4365675 +0.519487 0.4662797 0.4365675 +0.5245917 0.4662797 0.4365675 +0.529462 0.4662797 0.4365675 +0.5341183 0.4662797 0.4365675 +0.5385787 0.4662797 0.4365675 +0.5428591 0.4662797 0.4365675 +0.5469733 0.4662797 0.4365675 +0.5509339 0.4662797 0.4365675 +0.5547519 0.4662797 0.4365675 +0.5584371 0.4662797 0.4365675 +0.5619986 0.4662797 0.4365675 +0.5654443 0.4662797 0.4365675 +0.5687816 0.4662797 0.4365675 +0.092819 0.4745834 0.4365675 +0.2262531 0.4745834 0.4365675 +0.2875993 0.4745834 0.4365675 +0.3262122 0.4745834 0.4365675 +0.3544566 0.4745834 0.4365675 +0.3767383 0.4745834 0.4365675 +0.3951413 0.4745834 0.4365675 +0.4108177 0.4745834 0.4365675 +0.4244723 0.4745834 0.4365675 +0.4365675 0.4745834 0.4365675 +0.4474232 0.4745834 0.4365675 +0.45727 0.4745834 0.4365675 +0.4662797 0.4745834 0.4365675 +0.4745834 0.4745834 0.4365675 +0.4822838 0.4745834 0.4365675 +0.4894626 0.4745834 0.4365675 +0.4961862 0.4745834 0.4365675 +0.5025087 0.4745834 0.4365675 +0.5084753 0.4745834 0.4365675 +0.514124 0.4745834 0.4365675 +0.519487 0.4745834 0.4365675 +0.5245917 0.4745834 0.4365675 +0.529462 0.4745834 0.4365675 +0.5341183 0.4745834 0.4365675 +0.5385787 0.4745834 0.4365675 +0.5428591 0.4745834 0.4365675 +0.5469733 0.4745834 0.4365675 +0.5509339 0.4745834 0.4365675 +0.5547519 0.4745834 0.4365675 +0.5584371 0.4745834 0.4365675 +0.5619986 0.4745834 0.4365675 +0.5654443 0.4745834 0.4365675 +0.5687816 0.4745834 0.4365675 +0.092819 0.4822838 0.4365675 +0.2262531 0.4822838 0.4365675 +0.2875993 0.4822838 0.4365675 +0.3262122 0.4822838 0.4365675 +0.3544566 0.4822838 0.4365675 +0.3767383 0.4822838 0.4365675 +0.3951413 0.4822838 0.4365675 +0.4108177 0.4822838 0.4365675 +0.4244723 0.4822838 0.4365675 +0.4365675 0.4822838 0.4365675 +0.4474232 0.4822838 0.4365675 +0.45727 0.4822838 0.4365675 +0.4662797 0.4822838 0.4365675 +0.4745834 0.4822838 0.4365675 +0.4822838 0.4822838 0.4365675 +0.4894626 0.4822838 0.4365675 +0.4961862 0.4822838 0.4365675 +0.5025087 0.4822838 0.4365675 +0.5084753 0.4822838 0.4365675 +0.514124 0.4822838 0.4365675 +0.519487 0.4822838 0.4365675 +0.5245917 0.4822838 0.4365675 +0.529462 0.4822838 0.4365675 +0.5341183 0.4822838 0.4365675 +0.5385787 0.4822838 0.4365675 +0.5428591 0.4822838 0.4365675 +0.5469733 0.4822838 0.4365675 +0.5509339 0.4822838 0.4365675 +0.5547519 0.4822838 0.4365675 +0.5584371 0.4822838 0.4365675 +0.5619986 0.4822838 0.4365675 +0.5654443 0.4822838 0.4365675 +0.5687816 0.4822838 0.4365675 +0.092819 0.4894626 0.4365675 +0.2262531 0.4894626 0.4365675 +0.2875993 0.4894626 0.4365675 +0.3262122 0.4894626 0.4365675 +0.3544566 0.4894626 0.4365675 +0.3767383 0.4894626 0.4365675 +0.3951413 0.4894626 0.4365675 +0.4108177 0.4894626 0.4365675 +0.4244723 0.4894626 0.4365675 +0.4365675 0.4894626 0.4365675 +0.4474232 0.4894626 0.4365675 +0.45727 0.4894626 0.4365675 +0.4662797 0.4894626 0.4365675 +0.4745834 0.4894626 0.4365675 +0.4822838 0.4894626 0.4365675 +0.4894626 0.4894626 0.4365675 +0.4961862 0.4894626 0.4365675 +0.5025087 0.4894626 0.4365675 +0.5084753 0.4894626 0.4365675 +0.514124 0.4894626 0.4365675 +0.519487 0.4894626 0.4365675 +0.5245917 0.4894626 0.4365675 +0.529462 0.4894626 0.4365675 +0.5341183 0.4894626 0.4365675 +0.5385787 0.4894626 0.4365675 +0.5428591 0.4894626 0.4365675 +0.5469733 0.4894626 0.4365675 +0.5509339 0.4894626 0.4365675 +0.5547519 0.4894626 0.4365675 +0.5584371 0.4894626 0.4365675 +0.5619986 0.4894626 0.4365675 +0.5654443 0.4894626 0.4365675 +0.5687816 0.4894626 0.4365675 +0.092819 0.4961862 0.4365675 +0.2262531 0.4961862 0.4365675 +0.2875993 0.4961862 0.4365675 +0.3262122 0.4961862 0.4365675 +0.3544566 0.4961862 0.4365675 +0.3767383 0.4961862 0.4365675 +0.3951413 0.4961862 0.4365675 +0.4108177 0.4961862 0.4365675 +0.4244723 0.4961862 0.4365675 +0.4365675 0.4961862 0.4365675 +0.4474232 0.4961862 0.4365675 +0.45727 0.4961862 0.4365675 +0.4662797 0.4961862 0.4365675 +0.4745834 0.4961862 0.4365675 +0.4822838 0.4961862 0.4365675 +0.4894626 0.4961862 0.4365675 +0.4961862 0.4961862 0.4365675 +0.5025087 0.4961862 0.4365675 +0.5084753 0.4961862 0.4365675 +0.514124 0.4961862 0.4365675 +0.519487 0.4961862 0.4365675 +0.5245917 0.4961862 0.4365675 +0.529462 0.4961862 0.4365675 +0.5341183 0.4961862 0.4365675 +0.5385787 0.4961862 0.4365675 +0.5428591 0.4961862 0.4365675 +0.5469733 0.4961862 0.4365675 +0.5509339 0.4961862 0.4365675 +0.5547519 0.4961862 0.4365675 +0.5584371 0.4961862 0.4365675 +0.5619986 0.4961862 0.4365675 +0.5654443 0.4961862 0.4365675 +0.5687816 0.4961862 0.4365675 +0.092819 0.5025087 0.4365675 +0.2262531 0.5025087 0.4365675 +0.2875993 0.5025087 0.4365675 +0.3262122 0.5025087 0.4365675 +0.3544566 0.5025087 0.4365675 +0.3767383 0.5025087 0.4365675 +0.3951413 0.5025087 0.4365675 +0.4108177 0.5025087 0.4365675 +0.4244723 0.5025087 0.4365675 +0.4365675 0.5025087 0.4365675 +0.4474232 0.5025087 0.4365675 +0.45727 0.5025087 0.4365675 +0.4662797 0.5025087 0.4365675 +0.4745834 0.5025087 0.4365675 +0.4822838 0.5025087 0.4365675 +0.4894626 0.5025087 0.4365675 +0.4961862 0.5025087 0.4365675 +0.5025087 0.5025087 0.4365675 +0.5084753 0.5025087 0.4365675 +0.514124 0.5025087 0.4365675 +0.519487 0.5025087 0.4365675 +0.5245917 0.5025087 0.4365675 +0.529462 0.5025087 0.4365675 +0.5341183 0.5025087 0.4365675 +0.5385787 0.5025087 0.4365675 +0.5428591 0.5025087 0.4365675 +0.5469733 0.5025087 0.4365675 +0.5509339 0.5025087 0.4365675 +0.5547519 0.5025087 0.4365675 +0.5584371 0.5025087 0.4365675 +0.5619986 0.5025087 0.4365675 +0.5654443 0.5025087 0.4365675 +0.5687816 0.5025087 0.4365675 +0.092819 0.5084753 0.4365675 +0.2262531 0.5084753 0.4365675 +0.2875993 0.5084753 0.4365675 +0.3262122 0.5084753 0.4365675 +0.3544566 0.5084753 0.4365675 +0.3767383 0.5084753 0.4365675 +0.3951413 0.5084753 0.4365675 +0.4108177 0.5084753 0.4365675 +0.4244723 0.5084753 0.4365675 +0.4365675 0.5084753 0.4365675 +0.4474232 0.5084753 0.4365675 +0.45727 0.5084753 0.4365675 +0.4662797 0.5084753 0.4365675 +0.4745834 0.5084753 0.4365675 +0.4822838 0.5084753 0.4365675 +0.4894626 0.5084753 0.4365675 +0.4961862 0.5084753 0.4365675 +0.5025087 0.5084753 0.4365675 +0.5084753 0.5084753 0.4365675 +0.514124 0.5084753 0.4365675 +0.519487 0.5084753 0.4365675 +0.5245917 0.5084753 0.4365675 +0.529462 0.5084753 0.4365675 +0.5341183 0.5084753 0.4365675 +0.5385787 0.5084753 0.4365675 +0.5428591 0.5084753 0.4365675 +0.5469733 0.5084753 0.4365675 +0.5509339 0.5084753 0.4365675 +0.5547519 0.5084753 0.4365675 +0.5584371 0.5084753 0.4365675 +0.5619986 0.5084753 0.4365675 +0.5654443 0.5084753 0.4365675 +0.5687816 0.5084753 0.4365675 +0.092819 0.514124 0.4365675 +0.2262531 0.514124 0.4365675 +0.2875993 0.514124 0.4365675 +0.3262122 0.514124 0.4365675 +0.3544566 0.514124 0.4365675 +0.3767383 0.514124 0.4365675 +0.3951413 0.514124 0.4365675 +0.4108177 0.514124 0.4365675 +0.4244723 0.514124 0.4365675 +0.4365675 0.514124 0.4365675 +0.4474232 0.514124 0.4365675 +0.45727 0.514124 0.4365675 +0.4662797 0.514124 0.4365675 +0.4745834 0.514124 0.4365675 +0.4822838 0.514124 0.4365675 +0.4894626 0.514124 0.4365675 +0.4961862 0.514124 0.4365675 +0.5025087 0.514124 0.4365675 +0.5084753 0.514124 0.4365675 +0.514124 0.514124 0.4365675 +0.519487 0.514124 0.4365675 +0.5245917 0.514124 0.4365675 +0.529462 0.514124 0.4365675 +0.5341183 0.514124 0.4365675 +0.5385787 0.514124 0.4365675 +0.5428591 0.514124 0.4365675 +0.5469733 0.514124 0.4365675 +0.5509339 0.514124 0.4365675 +0.5547519 0.514124 0.4365675 +0.5584371 0.514124 0.4365675 +0.5619986 0.514124 0.4365675 +0.5654443 0.514124 0.4365675 +0.5687816 0.514124 0.4365675 +0.092819 0.519487 0.4365675 +0.2262531 0.519487 0.4365675 +0.2875993 0.519487 0.4365675 +0.3262122 0.519487 0.4365675 +0.3544566 0.519487 0.4365675 +0.3767383 0.519487 0.4365675 +0.3951413 0.519487 0.4365675 +0.4108177 0.519487 0.4365675 +0.4244723 0.519487 0.4365675 +0.4365675 0.519487 0.4365675 +0.4474232 0.519487 0.4365675 +0.45727 0.519487 0.4365675 +0.4662797 0.519487 0.4365675 +0.4745834 0.519487 0.4365675 +0.4822838 0.519487 0.4365675 +0.4894626 0.519487 0.4365675 +0.4961862 0.519487 0.4365675 +0.5025087 0.519487 0.4365675 +0.5084753 0.519487 0.4365675 +0.514124 0.519487 0.4365675 +0.519487 0.519487 0.4365675 +0.5245917 0.519487 0.4365675 +0.529462 0.519487 0.4365675 +0.5341183 0.519487 0.4365675 +0.5385787 0.519487 0.4365675 +0.5428591 0.519487 0.4365675 +0.5469733 0.519487 0.4365675 +0.5509339 0.519487 0.4365675 +0.5547519 0.519487 0.4365675 +0.5584371 0.519487 0.4365675 +0.5619986 0.519487 0.4365675 +0.5654443 0.519487 0.4365675 +0.5687816 0.519487 0.4365675 +0.092819 0.5245917 0.4365675 +0.2262531 0.5245917 0.4365675 +0.2875993 0.5245917 0.4365675 +0.3262122 0.5245917 0.4365675 +0.3544566 0.5245917 0.4365675 +0.3767383 0.5245917 0.4365675 +0.3951413 0.5245917 0.4365675 +0.4108177 0.5245917 0.4365675 +0.4244723 0.5245917 0.4365675 +0.4365675 0.5245917 0.4365675 +0.4474232 0.5245917 0.4365675 +0.45727 0.5245917 0.4365675 +0.4662797 0.5245917 0.4365675 +0.4745834 0.5245917 0.4365675 +0.4822838 0.5245917 0.4365675 +0.4894626 0.5245917 0.4365675 +0.4961862 0.5245917 0.4365675 +0.5025087 0.5245917 0.4365675 +0.5084753 0.5245917 0.4365675 +0.514124 0.5245917 0.4365675 +0.519487 0.5245917 0.4365675 +0.5245917 0.5245917 0.4365675 +0.529462 0.5245917 0.4365675 +0.5341183 0.5245917 0.4365675 +0.5385787 0.5245917 0.4365675 +0.5428591 0.5245917 0.4365675 +0.5469733 0.5245917 0.4365675 +0.5509339 0.5245917 0.4365675 +0.5547519 0.5245917 0.4365675 +0.5584371 0.5245917 0.4365675 +0.5619986 0.5245917 0.4365675 +0.5654443 0.5245917 0.4365675 +0.5687816 0.5245917 0.4365675 +0.092819 0.529462 0.4365675 +0.2262531 0.529462 0.4365675 +0.2875993 0.529462 0.4365675 +0.3262122 0.529462 0.4365675 +0.3544566 0.529462 0.4365675 +0.3767383 0.529462 0.4365675 +0.3951413 0.529462 0.4365675 +0.4108177 0.529462 0.4365675 +0.4244723 0.529462 0.4365675 +0.4365675 0.529462 0.4365675 +0.4474232 0.529462 0.4365675 +0.45727 0.529462 0.4365675 +0.4662797 0.529462 0.4365675 +0.4745834 0.529462 0.4365675 +0.4822838 0.529462 0.4365675 +0.4894626 0.529462 0.4365675 +0.4961862 0.529462 0.4365675 +0.5025087 0.529462 0.4365675 +0.5084753 0.529462 0.4365675 +0.514124 0.529462 0.4365675 +0.519487 0.529462 0.4365675 +0.5245917 0.529462 0.4365675 +0.529462 0.529462 0.4365675 +0.5341183 0.529462 0.4365675 +0.5385787 0.529462 0.4365675 +0.5428591 0.529462 0.4365675 +0.5469733 0.529462 0.4365675 +0.5509339 0.529462 0.4365675 +0.5547519 0.529462 0.4365675 +0.5584371 0.529462 0.4365675 +0.5619986 0.529462 0.4365675 +0.5654443 0.529462 0.4365675 +0.5687816 0.529462 0.4365675 +0.092819 0.5341183 0.4365675 +0.2262531 0.5341183 0.4365675 +0.2875993 0.5341183 0.4365675 +0.3262122 0.5341183 0.4365675 +0.3544566 0.5341183 0.4365675 +0.3767383 0.5341183 0.4365675 +0.3951413 0.5341183 0.4365675 +0.4108177 0.5341183 0.4365675 +0.4244723 0.5341183 0.4365675 +0.4365675 0.5341183 0.4365675 +0.4474232 0.5341183 0.4365675 +0.45727 0.5341183 0.4365675 +0.4662797 0.5341183 0.4365675 +0.4745834 0.5341183 0.4365675 +0.4822838 0.5341183 0.4365675 +0.4894626 0.5341183 0.4365675 +0.4961862 0.5341183 0.4365675 +0.5025087 0.5341183 0.4365675 +0.5084753 0.5341183 0.4365675 +0.514124 0.5341183 0.4365675 +0.519487 0.5341183 0.4365675 +0.5245917 0.5341183 0.4365675 +0.529462 0.5341183 0.4365675 +0.5341183 0.5341183 0.4365675 +0.5385787 0.5341183 0.4365675 +0.5428591 0.5341183 0.4365675 +0.5469733 0.5341183 0.4365675 +0.5509339 0.5341183 0.4365675 +0.5547519 0.5341183 0.4365675 +0.5584371 0.5341183 0.4365675 +0.5619986 0.5341183 0.4365675 +0.5654443 0.5341183 0.4365675 +0.5687816 0.5341183 0.4365675 +0.092819 0.5385787 0.4365675 +0.2262531 0.5385787 0.4365675 +0.2875993 0.5385787 0.4365675 +0.3262122 0.5385787 0.4365675 +0.3544566 0.5385787 0.4365675 +0.3767383 0.5385787 0.4365675 +0.3951413 0.5385787 0.4365675 +0.4108177 0.5385787 0.4365675 +0.4244723 0.5385787 0.4365675 +0.4365675 0.5385787 0.4365675 +0.4474232 0.5385787 0.4365675 +0.45727 0.5385787 0.4365675 +0.4662797 0.5385787 0.4365675 +0.4745834 0.5385787 0.4365675 +0.4822838 0.5385787 0.4365675 +0.4894626 0.5385787 0.4365675 +0.4961862 0.5385787 0.4365675 +0.5025087 0.5385787 0.4365675 +0.5084753 0.5385787 0.4365675 +0.514124 0.5385787 0.4365675 +0.519487 0.5385787 0.4365675 +0.5245917 0.5385787 0.4365675 +0.529462 0.5385787 0.4365675 +0.5341183 0.5385787 0.4365675 +0.5385787 0.5385787 0.4365675 +0.5428591 0.5385787 0.4365675 +0.5469733 0.5385787 0.4365675 +0.5509339 0.5385787 0.4365675 +0.5547519 0.5385787 0.4365675 +0.5584371 0.5385787 0.4365675 +0.5619986 0.5385787 0.4365675 +0.5654443 0.5385787 0.4365675 +0.5687816 0.5385787 0.4365675 +0.092819 0.5428591 0.4365675 +0.2262531 0.5428591 0.4365675 +0.2875993 0.5428591 0.4365675 +0.3262122 0.5428591 0.4365675 +0.3544566 0.5428591 0.4365675 +0.3767383 0.5428591 0.4365675 +0.3951413 0.5428591 0.4365675 +0.4108177 0.5428591 0.4365675 +0.4244723 0.5428591 0.4365675 +0.4365675 0.5428591 0.4365675 +0.4474232 0.5428591 0.4365675 +0.45727 0.5428591 0.4365675 +0.4662797 0.5428591 0.4365675 +0.4745834 0.5428591 0.4365675 +0.4822838 0.5428591 0.4365675 +0.4894626 0.5428591 0.4365675 +0.4961862 0.5428591 0.4365675 +0.5025087 0.5428591 0.4365675 +0.5084753 0.5428591 0.4365675 +0.514124 0.5428591 0.4365675 +0.519487 0.5428591 0.4365675 +0.5245917 0.5428591 0.4365675 +0.529462 0.5428591 0.4365675 +0.5341183 0.5428591 0.4365675 +0.5385787 0.5428591 0.4365675 +0.5428591 0.5428591 0.4365675 +0.5469733 0.5428591 0.4365675 +0.5509339 0.5428591 0.4365675 +0.5547519 0.5428591 0.4365675 +0.5584371 0.5428591 0.4365675 +0.5619986 0.5428591 0.4365675 +0.5654443 0.5428591 0.4365675 +0.5687816 0.5428591 0.4365675 +0.092819 0.5469733 0.4365675 +0.2262531 0.5469733 0.4365675 +0.2875993 0.5469733 0.4365675 +0.3262122 0.5469733 0.4365675 +0.3544566 0.5469733 0.4365675 +0.3767383 0.5469733 0.4365675 +0.3951413 0.5469733 0.4365675 +0.4108177 0.5469733 0.4365675 +0.4244723 0.5469733 0.4365675 +0.4365675 0.5469733 0.4365675 +0.4474232 0.5469733 0.4365675 +0.45727 0.5469733 0.4365675 +0.4662797 0.5469733 0.4365675 +0.4745834 0.5469733 0.4365675 +0.4822838 0.5469733 0.4365675 +0.4894626 0.5469733 0.4365675 +0.4961862 0.5469733 0.4365675 +0.5025087 0.5469733 0.4365675 +0.5084753 0.5469733 0.4365675 +0.514124 0.5469733 0.4365675 +0.519487 0.5469733 0.4365675 +0.5245917 0.5469733 0.4365675 +0.529462 0.5469733 0.4365675 +0.5341183 0.5469733 0.4365675 +0.5385787 0.5469733 0.4365675 +0.5428591 0.5469733 0.4365675 +0.5469733 0.5469733 0.4365675 +0.5509339 0.5469733 0.4365675 +0.5547519 0.5469733 0.4365675 +0.5584371 0.5469733 0.4365675 +0.5619986 0.5469733 0.4365675 +0.5654443 0.5469733 0.4365675 +0.5687816 0.5469733 0.4365675 +0.092819 0.5509339 0.4365675 +0.2262531 0.5509339 0.4365675 +0.2875993 0.5509339 0.4365675 +0.3262122 0.5509339 0.4365675 +0.3544566 0.5509339 0.4365675 +0.3767383 0.5509339 0.4365675 +0.3951413 0.5509339 0.4365675 +0.4108177 0.5509339 0.4365675 +0.4244723 0.5509339 0.4365675 +0.4365675 0.5509339 0.4365675 +0.4474232 0.5509339 0.4365675 +0.45727 0.5509339 0.4365675 +0.4662797 0.5509339 0.4365675 +0.4745834 0.5509339 0.4365675 +0.4822838 0.5509339 0.4365675 +0.4894626 0.5509339 0.4365675 +0.4961862 0.5509339 0.4365675 +0.5025087 0.5509339 0.4365675 +0.5084753 0.5509339 0.4365675 +0.514124 0.5509339 0.4365675 +0.519487 0.5509339 0.4365675 +0.5245917 0.5509339 0.4365675 +0.529462 0.5509339 0.4365675 +0.5341183 0.5509339 0.4365675 +0.5385787 0.5509339 0.4365675 +0.5428591 0.5509339 0.4365675 +0.5469733 0.5509339 0.4365675 +0.5509339 0.5509339 0.4365675 +0.5547519 0.5509339 0.4365675 +0.5584371 0.5509339 0.4365675 +0.5619986 0.5509339 0.4365675 +0.5654443 0.5509339 0.4365675 +0.5687816 0.5509339 0.4365675 +0.092819 0.5547519 0.4365675 +0.2262531 0.5547519 0.4365675 +0.2875993 0.5547519 0.4365675 +0.3262122 0.5547519 0.4365675 +0.3544566 0.5547519 0.4365675 +0.3767383 0.5547519 0.4365675 +0.3951413 0.5547519 0.4365675 +0.4108177 0.5547519 0.4365675 +0.4244723 0.5547519 0.4365675 +0.4365675 0.5547519 0.4365675 +0.4474232 0.5547519 0.4365675 +0.45727 0.5547519 0.4365675 +0.4662797 0.5547519 0.4365675 +0.4745834 0.5547519 0.4365675 +0.4822838 0.5547519 0.4365675 +0.4894626 0.5547519 0.4365675 +0.4961862 0.5547519 0.4365675 +0.5025087 0.5547519 0.4365675 +0.5084753 0.5547519 0.4365675 +0.514124 0.5547519 0.4365675 +0.519487 0.5547519 0.4365675 +0.5245917 0.5547519 0.4365675 +0.529462 0.5547519 0.4365675 +0.5341183 0.5547519 0.4365675 +0.5385787 0.5547519 0.4365675 +0.5428591 0.5547519 0.4365675 +0.5469733 0.5547519 0.4365675 +0.5509339 0.5547519 0.4365675 +0.5547519 0.5547519 0.4365675 +0.5584371 0.5547519 0.4365675 +0.5619986 0.5547519 0.4365675 +0.5654443 0.5547519 0.4365675 +0.5687816 0.5547519 0.4365675 +0.092819 0.5584371 0.4365675 +0.2262531 0.5584371 0.4365675 +0.2875993 0.5584371 0.4365675 +0.3262122 0.5584371 0.4365675 +0.3544566 0.5584371 0.4365675 +0.3767383 0.5584371 0.4365675 +0.3951413 0.5584371 0.4365675 +0.4108177 0.5584371 0.4365675 +0.4244723 0.5584371 0.4365675 +0.4365675 0.5584371 0.4365675 +0.4474232 0.5584371 0.4365675 +0.45727 0.5584371 0.4365675 +0.4662797 0.5584371 0.4365675 +0.4745834 0.5584371 0.4365675 +0.4822838 0.5584371 0.4365675 +0.4894626 0.5584371 0.4365675 +0.4961862 0.5584371 0.4365675 +0.5025087 0.5584371 0.4365675 +0.5084753 0.5584371 0.4365675 +0.514124 0.5584371 0.4365675 +0.519487 0.5584371 0.4365675 +0.5245917 0.5584371 0.4365675 +0.529462 0.5584371 0.4365675 +0.5341183 0.5584371 0.4365675 +0.5385787 0.5584371 0.4365675 +0.5428591 0.5584371 0.4365675 +0.5469733 0.5584371 0.4365675 +0.5509339 0.5584371 0.4365675 +0.5547519 0.5584371 0.4365675 +0.5584371 0.5584371 0.4365675 +0.5619986 0.5584371 0.4365675 +0.5654443 0.5584371 0.4365675 +0.5687816 0.5584371 0.4365675 +0.092819 0.5619986 0.4365675 +0.2262531 0.5619986 0.4365675 +0.2875993 0.5619986 0.4365675 +0.3262122 0.5619986 0.4365675 +0.3544566 0.5619986 0.4365675 +0.3767383 0.5619986 0.4365675 +0.3951413 0.5619986 0.4365675 +0.4108177 0.5619986 0.4365675 +0.4244723 0.5619986 0.4365675 +0.4365675 0.5619986 0.4365675 +0.4474232 0.5619986 0.4365675 +0.45727 0.5619986 0.4365675 +0.4662797 0.5619986 0.4365675 +0.4745834 0.5619986 0.4365675 +0.4822838 0.5619986 0.4365675 +0.4894626 0.5619986 0.4365675 +0.4961862 0.5619986 0.4365675 +0.5025087 0.5619986 0.4365675 +0.5084753 0.5619986 0.4365675 +0.514124 0.5619986 0.4365675 +0.519487 0.5619986 0.4365675 +0.5245917 0.5619986 0.4365675 +0.529462 0.5619986 0.4365675 +0.5341183 0.5619986 0.4365675 +0.5385787 0.5619986 0.4365675 +0.5428591 0.5619986 0.4365675 +0.5469733 0.5619986 0.4365675 +0.5509339 0.5619986 0.4365675 +0.5547519 0.5619986 0.4365675 +0.5584371 0.5619986 0.4365675 +0.5619986 0.5619986 0.4365675 +0.5654443 0.5619986 0.4365675 +0.5687816 0.5619986 0.4365675 +0.092819 0.5654443 0.4365675 +0.2262531 0.5654443 0.4365675 +0.2875993 0.5654443 0.4365675 +0.3262122 0.5654443 0.4365675 +0.3544566 0.5654443 0.4365675 +0.3767383 0.5654443 0.4365675 +0.3951413 0.5654443 0.4365675 +0.4108177 0.5654443 0.4365675 +0.4244723 0.5654443 0.4365675 +0.4365675 0.5654443 0.4365675 +0.4474232 0.5654443 0.4365675 +0.45727 0.5654443 0.4365675 +0.4662797 0.5654443 0.4365675 +0.4745834 0.5654443 0.4365675 +0.4822838 0.5654443 0.4365675 +0.4894626 0.5654443 0.4365675 +0.4961862 0.5654443 0.4365675 +0.5025087 0.5654443 0.4365675 +0.5084753 0.5654443 0.4365675 +0.514124 0.5654443 0.4365675 +0.519487 0.5654443 0.4365675 +0.5245917 0.5654443 0.4365675 +0.529462 0.5654443 0.4365675 +0.5341183 0.5654443 0.4365675 +0.5385787 0.5654443 0.4365675 +0.5428591 0.5654443 0.4365675 +0.5469733 0.5654443 0.4365675 +0.5509339 0.5654443 0.4365675 +0.5547519 0.5654443 0.4365675 +0.5584371 0.5654443 0.4365675 +0.5619986 0.5654443 0.4365675 +0.5654443 0.5654443 0.4365675 +0.5687816 0.5654443 0.4365675 +0.092819 0.5687816 0.4365675 +0.2262531 0.5687816 0.4365675 +0.2875993 0.5687816 0.4365675 +0.3262122 0.5687816 0.4365675 +0.3544566 0.5687816 0.4365675 +0.3767383 0.5687816 0.4365675 +0.3951413 0.5687816 0.4365675 +0.4108177 0.5687816 0.4365675 +0.4244723 0.5687816 0.4365675 +0.4365675 0.5687816 0.4365675 +0.4474232 0.5687816 0.4365675 +0.45727 0.5687816 0.4365675 +0.4662797 0.5687816 0.4365675 +0.4745834 0.5687816 0.4365675 +0.4822838 0.5687816 0.4365675 +0.4894626 0.5687816 0.4365675 +0.4961862 0.5687816 0.4365675 +0.5025087 0.5687816 0.4365675 +0.5084753 0.5687816 0.4365675 +0.514124 0.5687816 0.4365675 +0.519487 0.5687816 0.4365675 +0.5245917 0.5687816 0.4365675 +0.529462 0.5687816 0.4365675 +0.5341183 0.5687816 0.4365675 +0.5385787 0.5687816 0.4365675 +0.5428591 0.5687816 0.4365675 +0.5469733 0.5687816 0.4365675 +0.5509339 0.5687816 0.4365675 +0.5547519 0.5687816 0.4365675 +0.5584371 0.5687816 0.4365675 +0.5619986 0.5687816 0.4365675 +0.5654443 0.5687816 0.4365675 +0.5687816 0.5687816 0.4365675 +0.092819 0.092819 0.4474232 +0.2262531 0.092819 0.4474232 +0.2875993 0.092819 0.4474232 +0.3262122 0.092819 0.4474232 +0.3544566 0.092819 0.4474232 +0.3767383 0.092819 0.4474232 +0.3951413 0.092819 0.4474232 +0.4108177 0.092819 0.4474232 +0.4244723 0.092819 0.4474232 +0.4365675 0.092819 0.4474232 +0.4474232 0.092819 0.4474232 +0.45727 0.092819 0.4474232 +0.4662797 0.092819 0.4474232 +0.4745834 0.092819 0.4474232 +0.4822838 0.092819 0.4474232 +0.4894626 0.092819 0.4474232 +0.4961862 0.092819 0.4474232 +0.5025087 0.092819 0.4474232 +0.5084753 0.092819 0.4474232 +0.514124 0.092819 0.4474232 +0.519487 0.092819 0.4474232 +0.5245917 0.092819 0.4474232 +0.529462 0.092819 0.4474232 +0.5341183 0.092819 0.4474232 +0.5385787 0.092819 0.4474232 +0.5428591 0.092819 0.4474232 +0.5469733 0.092819 0.4474232 +0.5509339 0.092819 0.4474232 +0.5547519 0.092819 0.4474232 +0.5584371 0.092819 0.4474232 +0.5619986 0.092819 0.4474232 +0.5654443 0.092819 0.4474232 +0.5687816 0.092819 0.4474232 +0.092819 0.2262531 0.4474232 +0.2262531 0.2262531 0.4474232 +0.2875993 0.2262531 0.4474232 +0.3262122 0.2262531 0.4474232 +0.3544566 0.2262531 0.4474232 +0.3767383 0.2262531 0.4474232 +0.3951413 0.2262531 0.4474232 +0.4108177 0.2262531 0.4474232 +0.4244723 0.2262531 0.4474232 +0.4365675 0.2262531 0.4474232 +0.4474232 0.2262531 0.4474232 +0.45727 0.2262531 0.4474232 +0.4662797 0.2262531 0.4474232 +0.4745834 0.2262531 0.4474232 +0.4822838 0.2262531 0.4474232 +0.4894626 0.2262531 0.4474232 +0.4961862 0.2262531 0.4474232 +0.5025087 0.2262531 0.4474232 +0.5084753 0.2262531 0.4474232 +0.514124 0.2262531 0.4474232 +0.519487 0.2262531 0.4474232 +0.5245917 0.2262531 0.4474232 +0.529462 0.2262531 0.4474232 +0.5341183 0.2262531 0.4474232 +0.5385787 0.2262531 0.4474232 +0.5428591 0.2262531 0.4474232 +0.5469733 0.2262531 0.4474232 +0.5509339 0.2262531 0.4474232 +0.5547519 0.2262531 0.4474232 +0.5584371 0.2262531 0.4474232 +0.5619986 0.2262531 0.4474232 +0.5654443 0.2262531 0.4474232 +0.5687816 0.2262531 0.4474232 +0.092819 0.2875993 0.4474232 +0.2262531 0.2875993 0.4474232 +0.2875993 0.2875993 0.4474232 +0.3262122 0.2875993 0.4474232 +0.3544566 0.2875993 0.4474232 +0.3767383 0.2875993 0.4474232 +0.3951413 0.2875993 0.4474232 +0.4108177 0.2875993 0.4474232 +0.4244723 0.2875993 0.4474232 +0.4365675 0.2875993 0.4474232 +0.4474232 0.2875993 0.4474232 +0.45727 0.2875993 0.4474232 +0.4662797 0.2875993 0.4474232 +0.4745834 0.2875993 0.4474232 +0.4822838 0.2875993 0.4474232 +0.4894626 0.2875993 0.4474232 +0.4961862 0.2875993 0.4474232 +0.5025087 0.2875993 0.4474232 +0.5084753 0.2875993 0.4474232 +0.514124 0.2875993 0.4474232 +0.519487 0.2875993 0.4474232 +0.5245917 0.2875993 0.4474232 +0.529462 0.2875993 0.4474232 +0.5341183 0.2875993 0.4474232 +0.5385787 0.2875993 0.4474232 +0.5428591 0.2875993 0.4474232 +0.5469733 0.2875993 0.4474232 +0.5509339 0.2875993 0.4474232 +0.5547519 0.2875993 0.4474232 +0.5584371 0.2875993 0.4474232 +0.5619986 0.2875993 0.4474232 +0.5654443 0.2875993 0.4474232 +0.5687816 0.2875993 0.4474232 +0.092819 0.3262122 0.4474232 +0.2262531 0.3262122 0.4474232 +0.2875993 0.3262122 0.4474232 +0.3262122 0.3262122 0.4474232 +0.3544566 0.3262122 0.4474232 +0.3767383 0.3262122 0.4474232 +0.3951413 0.3262122 0.4474232 +0.4108177 0.3262122 0.4474232 +0.4244723 0.3262122 0.4474232 +0.4365675 0.3262122 0.4474232 +0.4474232 0.3262122 0.4474232 +0.45727 0.3262122 0.4474232 +0.4662797 0.3262122 0.4474232 +0.4745834 0.3262122 0.4474232 +0.4822838 0.3262122 0.4474232 +0.4894626 0.3262122 0.4474232 +0.4961862 0.3262122 0.4474232 +0.5025087 0.3262122 0.4474232 +0.5084753 0.3262122 0.4474232 +0.514124 0.3262122 0.4474232 +0.519487 0.3262122 0.4474232 +0.5245917 0.3262122 0.4474232 +0.529462 0.3262122 0.4474232 +0.5341183 0.3262122 0.4474232 +0.5385787 0.3262122 0.4474232 +0.5428591 0.3262122 0.4474232 +0.5469733 0.3262122 0.4474232 +0.5509339 0.3262122 0.4474232 +0.5547519 0.3262122 0.4474232 +0.5584371 0.3262122 0.4474232 +0.5619986 0.3262122 0.4474232 +0.5654443 0.3262122 0.4474232 +0.5687816 0.3262122 0.4474232 +0.092819 0.3544566 0.4474232 +0.2262531 0.3544566 0.4474232 +0.2875993 0.3544566 0.4474232 +0.3262122 0.3544566 0.4474232 +0.3544566 0.3544566 0.4474232 +0.3767383 0.3544566 0.4474232 +0.3951413 0.3544566 0.4474232 +0.4108177 0.3544566 0.4474232 +0.4244723 0.3544566 0.4474232 +0.4365675 0.3544566 0.4474232 +0.4474232 0.3544566 0.4474232 +0.45727 0.3544566 0.4474232 +0.4662797 0.3544566 0.4474232 +0.4745834 0.3544566 0.4474232 +0.4822838 0.3544566 0.4474232 +0.4894626 0.3544566 0.4474232 +0.4961862 0.3544566 0.4474232 +0.5025087 0.3544566 0.4474232 +0.5084753 0.3544566 0.4474232 +0.514124 0.3544566 0.4474232 +0.519487 0.3544566 0.4474232 +0.5245917 0.3544566 0.4474232 +0.529462 0.3544566 0.4474232 +0.5341183 0.3544566 0.4474232 +0.5385787 0.3544566 0.4474232 +0.5428591 0.3544566 0.4474232 +0.5469733 0.3544566 0.4474232 +0.5509339 0.3544566 0.4474232 +0.5547519 0.3544566 0.4474232 +0.5584371 0.3544566 0.4474232 +0.5619986 0.3544566 0.4474232 +0.5654443 0.3544566 0.4474232 +0.5687816 0.3544566 0.4474232 +0.092819 0.3767383 0.4474232 +0.2262531 0.3767383 0.4474232 +0.2875993 0.3767383 0.4474232 +0.3262122 0.3767383 0.4474232 +0.3544566 0.3767383 0.4474232 +0.3767383 0.3767383 0.4474232 +0.3951413 0.3767383 0.4474232 +0.4108177 0.3767383 0.4474232 +0.4244723 0.3767383 0.4474232 +0.4365675 0.3767383 0.4474232 +0.4474232 0.3767383 0.4474232 +0.45727 0.3767383 0.4474232 +0.4662797 0.3767383 0.4474232 +0.4745834 0.3767383 0.4474232 +0.4822838 0.3767383 0.4474232 +0.4894626 0.3767383 0.4474232 +0.4961862 0.3767383 0.4474232 +0.5025087 0.3767383 0.4474232 +0.5084753 0.3767383 0.4474232 +0.514124 0.3767383 0.4474232 +0.519487 0.3767383 0.4474232 +0.5245917 0.3767383 0.4474232 +0.529462 0.3767383 0.4474232 +0.5341183 0.3767383 0.4474232 +0.5385787 0.3767383 0.4474232 +0.5428591 0.3767383 0.4474232 +0.5469733 0.3767383 0.4474232 +0.5509339 0.3767383 0.4474232 +0.5547519 0.3767383 0.4474232 +0.5584371 0.3767383 0.4474232 +0.5619986 0.3767383 0.4474232 +0.5654443 0.3767383 0.4474232 +0.5687816 0.3767383 0.4474232 +0.092819 0.3951413 0.4474232 +0.2262531 0.3951413 0.4474232 +0.2875993 0.3951413 0.4474232 +0.3262122 0.3951413 0.4474232 +0.3544566 0.3951413 0.4474232 +0.3767383 0.3951413 0.4474232 +0.3951413 0.3951413 0.4474232 +0.4108177 0.3951413 0.4474232 +0.4244723 0.3951413 0.4474232 +0.4365675 0.3951413 0.4474232 +0.4474232 0.3951413 0.4474232 +0.45727 0.3951413 0.4474232 +0.4662797 0.3951413 0.4474232 +0.4745834 0.3951413 0.4474232 +0.4822838 0.3951413 0.4474232 +0.4894626 0.3951413 0.4474232 +0.4961862 0.3951413 0.4474232 +0.5025087 0.3951413 0.4474232 +0.5084753 0.3951413 0.4474232 +0.514124 0.3951413 0.4474232 +0.519487 0.3951413 0.4474232 +0.5245917 0.3951413 0.4474232 +0.529462 0.3951413 0.4474232 +0.5341183 0.3951413 0.4474232 +0.5385787 0.3951413 0.4474232 +0.5428591 0.3951413 0.4474232 +0.5469733 0.3951413 0.4474232 +0.5509339 0.3951413 0.4474232 +0.5547519 0.3951413 0.4474232 +0.5584371 0.3951413 0.4474232 +0.5619986 0.3951413 0.4474232 +0.5654443 0.3951413 0.4474232 +0.5687816 0.3951413 0.4474232 +0.092819 0.4108177 0.4474232 +0.2262531 0.4108177 0.4474232 +0.2875993 0.4108177 0.4474232 +0.3262122 0.4108177 0.4474232 +0.3544566 0.4108177 0.4474232 +0.3767383 0.4108177 0.4474232 +0.3951413 0.4108177 0.4474232 +0.4108177 0.4108177 0.4474232 +0.4244723 0.4108177 0.4474232 +0.4365675 0.4108177 0.4474232 +0.4474232 0.4108177 0.4474232 +0.45727 0.4108177 0.4474232 +0.4662797 0.4108177 0.4474232 +0.4745834 0.4108177 0.4474232 +0.4822838 0.4108177 0.4474232 +0.4894626 0.4108177 0.4474232 +0.4961862 0.4108177 0.4474232 +0.5025087 0.4108177 0.4474232 +0.5084753 0.4108177 0.4474232 +0.514124 0.4108177 0.4474232 +0.519487 0.4108177 0.4474232 +0.5245917 0.4108177 0.4474232 +0.529462 0.4108177 0.4474232 +0.5341183 0.4108177 0.4474232 +0.5385787 0.4108177 0.4474232 +0.5428591 0.4108177 0.4474232 +0.5469733 0.4108177 0.4474232 +0.5509339 0.4108177 0.4474232 +0.5547519 0.4108177 0.4474232 +0.5584371 0.4108177 0.4474232 +0.5619986 0.4108177 0.4474232 +0.5654443 0.4108177 0.4474232 +0.5687816 0.4108177 0.4474232 +0.092819 0.4244723 0.4474232 +0.2262531 0.4244723 0.4474232 +0.2875993 0.4244723 0.4474232 +0.3262122 0.4244723 0.4474232 +0.3544566 0.4244723 0.4474232 +0.3767383 0.4244723 0.4474232 +0.3951413 0.4244723 0.4474232 +0.4108177 0.4244723 0.4474232 +0.4244723 0.4244723 0.4474232 +0.4365675 0.4244723 0.4474232 +0.4474232 0.4244723 0.4474232 +0.45727 0.4244723 0.4474232 +0.4662797 0.4244723 0.4474232 +0.4745834 0.4244723 0.4474232 +0.4822838 0.4244723 0.4474232 +0.4894626 0.4244723 0.4474232 +0.4961862 0.4244723 0.4474232 +0.5025087 0.4244723 0.4474232 +0.5084753 0.4244723 0.4474232 +0.514124 0.4244723 0.4474232 +0.519487 0.4244723 0.4474232 +0.5245917 0.4244723 0.4474232 +0.529462 0.4244723 0.4474232 +0.5341183 0.4244723 0.4474232 +0.5385787 0.4244723 0.4474232 +0.5428591 0.4244723 0.4474232 +0.5469733 0.4244723 0.4474232 +0.5509339 0.4244723 0.4474232 +0.5547519 0.4244723 0.4474232 +0.5584371 0.4244723 0.4474232 +0.5619986 0.4244723 0.4474232 +0.5654443 0.4244723 0.4474232 +0.5687816 0.4244723 0.4474232 +0.092819 0.4365675 0.4474232 +0.2262531 0.4365675 0.4474232 +0.2875993 0.4365675 0.4474232 +0.3262122 0.4365675 0.4474232 +0.3544566 0.4365675 0.4474232 +0.3767383 0.4365675 0.4474232 +0.3951413 0.4365675 0.4474232 +0.4108177 0.4365675 0.4474232 +0.4244723 0.4365675 0.4474232 +0.4365675 0.4365675 0.4474232 +0.4474232 0.4365675 0.4474232 +0.45727 0.4365675 0.4474232 +0.4662797 0.4365675 0.4474232 +0.4745834 0.4365675 0.4474232 +0.4822838 0.4365675 0.4474232 +0.4894626 0.4365675 0.4474232 +0.4961862 0.4365675 0.4474232 +0.5025087 0.4365675 0.4474232 +0.5084753 0.4365675 0.4474232 +0.514124 0.4365675 0.4474232 +0.519487 0.4365675 0.4474232 +0.5245917 0.4365675 0.4474232 +0.529462 0.4365675 0.4474232 +0.5341183 0.4365675 0.4474232 +0.5385787 0.4365675 0.4474232 +0.5428591 0.4365675 0.4474232 +0.5469733 0.4365675 0.4474232 +0.5509339 0.4365675 0.4474232 +0.5547519 0.4365675 0.4474232 +0.5584371 0.4365675 0.4474232 +0.5619986 0.4365675 0.4474232 +0.5654443 0.4365675 0.4474232 +0.5687816 0.4365675 0.4474232 +0.092819 0.4474232 0.4474232 +0.2262531 0.4474232 0.4474232 +0.2875993 0.4474232 0.4474232 +0.3262122 0.4474232 0.4474232 +0.3544566 0.4474232 0.4474232 +0.3767383 0.4474232 0.4474232 +0.3951413 0.4474232 0.4474232 +0.4108177 0.4474232 0.4474232 +0.4244723 0.4474232 0.4474232 +0.4365675 0.4474232 0.4474232 +0.4474232 0.4474232 0.4474232 +0.45727 0.4474232 0.4474232 +0.4662797 0.4474232 0.4474232 +0.4745834 0.4474232 0.4474232 +0.4822838 0.4474232 0.4474232 +0.4894626 0.4474232 0.4474232 +0.4961862 0.4474232 0.4474232 +0.5025087 0.4474232 0.4474232 +0.5084753 0.4474232 0.4474232 +0.514124 0.4474232 0.4474232 +0.519487 0.4474232 0.4474232 +0.5245917 0.4474232 0.4474232 +0.529462 0.4474232 0.4474232 +0.5341183 0.4474232 0.4474232 +0.5385787 0.4474232 0.4474232 +0.5428591 0.4474232 0.4474232 +0.5469733 0.4474232 0.4474232 +0.5509339 0.4474232 0.4474232 +0.5547519 0.4474232 0.4474232 +0.5584371 0.4474232 0.4474232 +0.5619986 0.4474232 0.4474232 +0.5654443 0.4474232 0.4474232 +0.5687816 0.4474232 0.4474232 +0.092819 0.45727 0.4474232 +0.2262531 0.45727 0.4474232 +0.2875993 0.45727 0.4474232 +0.3262122 0.45727 0.4474232 +0.3544566 0.45727 0.4474232 +0.3767383 0.45727 0.4474232 +0.3951413 0.45727 0.4474232 +0.4108177 0.45727 0.4474232 +0.4244723 0.45727 0.4474232 +0.4365675 0.45727 0.4474232 +0.4474232 0.45727 0.4474232 +0.45727 0.45727 0.4474232 +0.4662797 0.45727 0.4474232 +0.4745834 0.45727 0.4474232 +0.4822838 0.45727 0.4474232 +0.4894626 0.45727 0.4474232 +0.4961862 0.45727 0.4474232 +0.5025087 0.45727 0.4474232 +0.5084753 0.45727 0.4474232 +0.514124 0.45727 0.4474232 +0.519487 0.45727 0.4474232 +0.5245917 0.45727 0.4474232 +0.529462 0.45727 0.4474232 +0.5341183 0.45727 0.4474232 +0.5385787 0.45727 0.4474232 +0.5428591 0.45727 0.4474232 +0.5469733 0.45727 0.4474232 +0.5509339 0.45727 0.4474232 +0.5547519 0.45727 0.4474232 +0.5584371 0.45727 0.4474232 +0.5619986 0.45727 0.4474232 +0.5654443 0.45727 0.4474232 +0.5687816 0.45727 0.4474232 +0.092819 0.4662797 0.4474232 +0.2262531 0.4662797 0.4474232 +0.2875993 0.4662797 0.4474232 +0.3262122 0.4662797 0.4474232 +0.3544566 0.4662797 0.4474232 +0.3767383 0.4662797 0.4474232 +0.3951413 0.4662797 0.4474232 +0.4108177 0.4662797 0.4474232 +0.4244723 0.4662797 0.4474232 +0.4365675 0.4662797 0.4474232 +0.4474232 0.4662797 0.4474232 +0.45727 0.4662797 0.4474232 +0.4662797 0.4662797 0.4474232 +0.4745834 0.4662797 0.4474232 +0.4822838 0.4662797 0.4474232 +0.4894626 0.4662797 0.4474232 +0.4961862 0.4662797 0.4474232 +0.5025087 0.4662797 0.4474232 +0.5084753 0.4662797 0.4474232 +0.514124 0.4662797 0.4474232 +0.519487 0.4662797 0.4474232 +0.5245917 0.4662797 0.4474232 +0.529462 0.4662797 0.4474232 +0.5341183 0.4662797 0.4474232 +0.5385787 0.4662797 0.4474232 +0.5428591 0.4662797 0.4474232 +0.5469733 0.4662797 0.4474232 +0.5509339 0.4662797 0.4474232 +0.5547519 0.4662797 0.4474232 +0.5584371 0.4662797 0.4474232 +0.5619986 0.4662797 0.4474232 +0.5654443 0.4662797 0.4474232 +0.5687816 0.4662797 0.4474232 +0.092819 0.4745834 0.4474232 +0.2262531 0.4745834 0.4474232 +0.2875993 0.4745834 0.4474232 +0.3262122 0.4745834 0.4474232 +0.3544566 0.4745834 0.4474232 +0.3767383 0.4745834 0.4474232 +0.3951413 0.4745834 0.4474232 +0.4108177 0.4745834 0.4474232 +0.4244723 0.4745834 0.4474232 +0.4365675 0.4745834 0.4474232 +0.4474232 0.4745834 0.4474232 +0.45727 0.4745834 0.4474232 +0.4662797 0.4745834 0.4474232 +0.4745834 0.4745834 0.4474232 +0.4822838 0.4745834 0.4474232 +0.4894626 0.4745834 0.4474232 +0.4961862 0.4745834 0.4474232 +0.5025087 0.4745834 0.4474232 +0.5084753 0.4745834 0.4474232 +0.514124 0.4745834 0.4474232 +0.519487 0.4745834 0.4474232 +0.5245917 0.4745834 0.4474232 +0.529462 0.4745834 0.4474232 +0.5341183 0.4745834 0.4474232 +0.5385787 0.4745834 0.4474232 +0.5428591 0.4745834 0.4474232 +0.5469733 0.4745834 0.4474232 +0.5509339 0.4745834 0.4474232 +0.5547519 0.4745834 0.4474232 +0.5584371 0.4745834 0.4474232 +0.5619986 0.4745834 0.4474232 +0.5654443 0.4745834 0.4474232 +0.5687816 0.4745834 0.4474232 +0.092819 0.4822838 0.4474232 +0.2262531 0.4822838 0.4474232 +0.2875993 0.4822838 0.4474232 +0.3262122 0.4822838 0.4474232 +0.3544566 0.4822838 0.4474232 +0.3767383 0.4822838 0.4474232 +0.3951413 0.4822838 0.4474232 +0.4108177 0.4822838 0.4474232 +0.4244723 0.4822838 0.4474232 +0.4365675 0.4822838 0.4474232 +0.4474232 0.4822838 0.4474232 +0.45727 0.4822838 0.4474232 +0.4662797 0.4822838 0.4474232 +0.4745834 0.4822838 0.4474232 +0.4822838 0.4822838 0.4474232 +0.4894626 0.4822838 0.4474232 +0.4961862 0.4822838 0.4474232 +0.5025087 0.4822838 0.4474232 +0.5084753 0.4822838 0.4474232 +0.514124 0.4822838 0.4474232 +0.519487 0.4822838 0.4474232 +0.5245917 0.4822838 0.4474232 +0.529462 0.4822838 0.4474232 +0.5341183 0.4822838 0.4474232 +0.5385787 0.4822838 0.4474232 +0.5428591 0.4822838 0.4474232 +0.5469733 0.4822838 0.4474232 +0.5509339 0.4822838 0.4474232 +0.5547519 0.4822838 0.4474232 +0.5584371 0.4822838 0.4474232 +0.5619986 0.4822838 0.4474232 +0.5654443 0.4822838 0.4474232 +0.5687816 0.4822838 0.4474232 +0.092819 0.4894626 0.4474232 +0.2262531 0.4894626 0.4474232 +0.2875993 0.4894626 0.4474232 +0.3262122 0.4894626 0.4474232 +0.3544566 0.4894626 0.4474232 +0.3767383 0.4894626 0.4474232 +0.3951413 0.4894626 0.4474232 +0.4108177 0.4894626 0.4474232 +0.4244723 0.4894626 0.4474232 +0.4365675 0.4894626 0.4474232 +0.4474232 0.4894626 0.4474232 +0.45727 0.4894626 0.4474232 +0.4662797 0.4894626 0.4474232 +0.4745834 0.4894626 0.4474232 +0.4822838 0.4894626 0.4474232 +0.4894626 0.4894626 0.4474232 +0.4961862 0.4894626 0.4474232 +0.5025087 0.4894626 0.4474232 +0.5084753 0.4894626 0.4474232 +0.514124 0.4894626 0.4474232 +0.519487 0.4894626 0.4474232 +0.5245917 0.4894626 0.4474232 +0.529462 0.4894626 0.4474232 +0.5341183 0.4894626 0.4474232 +0.5385787 0.4894626 0.4474232 +0.5428591 0.4894626 0.4474232 +0.5469733 0.4894626 0.4474232 +0.5509339 0.4894626 0.4474232 +0.5547519 0.4894626 0.4474232 +0.5584371 0.4894626 0.4474232 +0.5619986 0.4894626 0.4474232 +0.5654443 0.4894626 0.4474232 +0.5687816 0.4894626 0.4474232 +0.092819 0.4961862 0.4474232 +0.2262531 0.4961862 0.4474232 +0.2875993 0.4961862 0.4474232 +0.3262122 0.4961862 0.4474232 +0.3544566 0.4961862 0.4474232 +0.3767383 0.4961862 0.4474232 +0.3951413 0.4961862 0.4474232 +0.4108177 0.4961862 0.4474232 +0.4244723 0.4961862 0.4474232 +0.4365675 0.4961862 0.4474232 +0.4474232 0.4961862 0.4474232 +0.45727 0.4961862 0.4474232 +0.4662797 0.4961862 0.4474232 +0.4745834 0.4961862 0.4474232 +0.4822838 0.4961862 0.4474232 +0.4894626 0.4961862 0.4474232 +0.4961862 0.4961862 0.4474232 +0.5025087 0.4961862 0.4474232 +0.5084753 0.4961862 0.4474232 +0.514124 0.4961862 0.4474232 +0.519487 0.4961862 0.4474232 +0.5245917 0.4961862 0.4474232 +0.529462 0.4961862 0.4474232 +0.5341183 0.4961862 0.4474232 +0.5385787 0.4961862 0.4474232 +0.5428591 0.4961862 0.4474232 +0.5469733 0.4961862 0.4474232 +0.5509339 0.4961862 0.4474232 +0.5547519 0.4961862 0.4474232 +0.5584371 0.4961862 0.4474232 +0.5619986 0.4961862 0.4474232 +0.5654443 0.4961862 0.4474232 +0.5687816 0.4961862 0.4474232 +0.092819 0.5025087 0.4474232 +0.2262531 0.5025087 0.4474232 +0.2875993 0.5025087 0.4474232 +0.3262122 0.5025087 0.4474232 +0.3544566 0.5025087 0.4474232 +0.3767383 0.5025087 0.4474232 +0.3951413 0.5025087 0.4474232 +0.4108177 0.5025087 0.4474232 +0.4244723 0.5025087 0.4474232 +0.4365675 0.5025087 0.4474232 +0.4474232 0.5025087 0.4474232 +0.45727 0.5025087 0.4474232 +0.4662797 0.5025087 0.4474232 +0.4745834 0.5025087 0.4474232 +0.4822838 0.5025087 0.4474232 +0.4894626 0.5025087 0.4474232 +0.4961862 0.5025087 0.4474232 +0.5025087 0.5025087 0.4474232 +0.5084753 0.5025087 0.4474232 +0.514124 0.5025087 0.4474232 +0.519487 0.5025087 0.4474232 +0.5245917 0.5025087 0.4474232 +0.529462 0.5025087 0.4474232 +0.5341183 0.5025087 0.4474232 +0.5385787 0.5025087 0.4474232 +0.5428591 0.5025087 0.4474232 +0.5469733 0.5025087 0.4474232 +0.5509339 0.5025087 0.4474232 +0.5547519 0.5025087 0.4474232 +0.5584371 0.5025087 0.4474232 +0.5619986 0.5025087 0.4474232 +0.5654443 0.5025087 0.4474232 +0.5687816 0.5025087 0.4474232 +0.092819 0.5084753 0.4474232 +0.2262531 0.5084753 0.4474232 +0.2875993 0.5084753 0.4474232 +0.3262122 0.5084753 0.4474232 +0.3544566 0.5084753 0.4474232 +0.3767383 0.5084753 0.4474232 +0.3951413 0.5084753 0.4474232 +0.4108177 0.5084753 0.4474232 +0.4244723 0.5084753 0.4474232 +0.4365675 0.5084753 0.4474232 +0.4474232 0.5084753 0.4474232 +0.45727 0.5084753 0.4474232 +0.4662797 0.5084753 0.4474232 +0.4745834 0.5084753 0.4474232 +0.4822838 0.5084753 0.4474232 +0.4894626 0.5084753 0.4474232 +0.4961862 0.5084753 0.4474232 +0.5025087 0.5084753 0.4474232 +0.5084753 0.5084753 0.4474232 +0.514124 0.5084753 0.4474232 +0.519487 0.5084753 0.4474232 +0.5245917 0.5084753 0.4474232 +0.529462 0.5084753 0.4474232 +0.5341183 0.5084753 0.4474232 +0.5385787 0.5084753 0.4474232 +0.5428591 0.5084753 0.4474232 +0.5469733 0.5084753 0.4474232 +0.5509339 0.5084753 0.4474232 +0.5547519 0.5084753 0.4474232 +0.5584371 0.5084753 0.4474232 +0.5619986 0.5084753 0.4474232 +0.5654443 0.5084753 0.4474232 +0.5687816 0.5084753 0.4474232 +0.092819 0.514124 0.4474232 +0.2262531 0.514124 0.4474232 +0.2875993 0.514124 0.4474232 +0.3262122 0.514124 0.4474232 +0.3544566 0.514124 0.4474232 +0.3767383 0.514124 0.4474232 +0.3951413 0.514124 0.4474232 +0.4108177 0.514124 0.4474232 +0.4244723 0.514124 0.4474232 +0.4365675 0.514124 0.4474232 +0.4474232 0.514124 0.4474232 +0.45727 0.514124 0.4474232 +0.4662797 0.514124 0.4474232 +0.4745834 0.514124 0.4474232 +0.4822838 0.514124 0.4474232 +0.4894626 0.514124 0.4474232 +0.4961862 0.514124 0.4474232 +0.5025087 0.514124 0.4474232 +0.5084753 0.514124 0.4474232 +0.514124 0.514124 0.4474232 +0.519487 0.514124 0.4474232 +0.5245917 0.514124 0.4474232 +0.529462 0.514124 0.4474232 +0.5341183 0.514124 0.4474232 +0.5385787 0.514124 0.4474232 +0.5428591 0.514124 0.4474232 +0.5469733 0.514124 0.4474232 +0.5509339 0.514124 0.4474232 +0.5547519 0.514124 0.4474232 +0.5584371 0.514124 0.4474232 +0.5619986 0.514124 0.4474232 +0.5654443 0.514124 0.4474232 +0.5687816 0.514124 0.4474232 +0.092819 0.519487 0.4474232 +0.2262531 0.519487 0.4474232 +0.2875993 0.519487 0.4474232 +0.3262122 0.519487 0.4474232 +0.3544566 0.519487 0.4474232 +0.3767383 0.519487 0.4474232 +0.3951413 0.519487 0.4474232 +0.4108177 0.519487 0.4474232 +0.4244723 0.519487 0.4474232 +0.4365675 0.519487 0.4474232 +0.4474232 0.519487 0.4474232 +0.45727 0.519487 0.4474232 +0.4662797 0.519487 0.4474232 +0.4745834 0.519487 0.4474232 +0.4822838 0.519487 0.4474232 +0.4894626 0.519487 0.4474232 +0.4961862 0.519487 0.4474232 +0.5025087 0.519487 0.4474232 +0.5084753 0.519487 0.4474232 +0.514124 0.519487 0.4474232 +0.519487 0.519487 0.4474232 +0.5245917 0.519487 0.4474232 +0.529462 0.519487 0.4474232 +0.5341183 0.519487 0.4474232 +0.5385787 0.519487 0.4474232 +0.5428591 0.519487 0.4474232 +0.5469733 0.519487 0.4474232 +0.5509339 0.519487 0.4474232 +0.5547519 0.519487 0.4474232 +0.5584371 0.519487 0.4474232 +0.5619986 0.519487 0.4474232 +0.5654443 0.519487 0.4474232 +0.5687816 0.519487 0.4474232 +0.092819 0.5245917 0.4474232 +0.2262531 0.5245917 0.4474232 +0.2875993 0.5245917 0.4474232 +0.3262122 0.5245917 0.4474232 +0.3544566 0.5245917 0.4474232 +0.3767383 0.5245917 0.4474232 +0.3951413 0.5245917 0.4474232 +0.4108177 0.5245917 0.4474232 +0.4244723 0.5245917 0.4474232 +0.4365675 0.5245917 0.4474232 +0.4474232 0.5245917 0.4474232 +0.45727 0.5245917 0.4474232 +0.4662797 0.5245917 0.4474232 +0.4745834 0.5245917 0.4474232 +0.4822838 0.5245917 0.4474232 +0.4894626 0.5245917 0.4474232 +0.4961862 0.5245917 0.4474232 +0.5025087 0.5245917 0.4474232 +0.5084753 0.5245917 0.4474232 +0.514124 0.5245917 0.4474232 +0.519487 0.5245917 0.4474232 +0.5245917 0.5245917 0.4474232 +0.529462 0.5245917 0.4474232 +0.5341183 0.5245917 0.4474232 +0.5385787 0.5245917 0.4474232 +0.5428591 0.5245917 0.4474232 +0.5469733 0.5245917 0.4474232 +0.5509339 0.5245917 0.4474232 +0.5547519 0.5245917 0.4474232 +0.5584371 0.5245917 0.4474232 +0.5619986 0.5245917 0.4474232 +0.5654443 0.5245917 0.4474232 +0.5687816 0.5245917 0.4474232 +0.092819 0.529462 0.4474232 +0.2262531 0.529462 0.4474232 +0.2875993 0.529462 0.4474232 +0.3262122 0.529462 0.4474232 +0.3544566 0.529462 0.4474232 +0.3767383 0.529462 0.4474232 +0.3951413 0.529462 0.4474232 +0.4108177 0.529462 0.4474232 +0.4244723 0.529462 0.4474232 +0.4365675 0.529462 0.4474232 +0.4474232 0.529462 0.4474232 +0.45727 0.529462 0.4474232 +0.4662797 0.529462 0.4474232 +0.4745834 0.529462 0.4474232 +0.4822838 0.529462 0.4474232 +0.4894626 0.529462 0.4474232 +0.4961862 0.529462 0.4474232 +0.5025087 0.529462 0.4474232 +0.5084753 0.529462 0.4474232 +0.514124 0.529462 0.4474232 +0.519487 0.529462 0.4474232 +0.5245917 0.529462 0.4474232 +0.529462 0.529462 0.4474232 +0.5341183 0.529462 0.4474232 +0.5385787 0.529462 0.4474232 +0.5428591 0.529462 0.4474232 +0.5469733 0.529462 0.4474232 +0.5509339 0.529462 0.4474232 +0.5547519 0.529462 0.4474232 +0.5584371 0.529462 0.4474232 +0.5619986 0.529462 0.4474232 +0.5654443 0.529462 0.4474232 +0.5687816 0.529462 0.4474232 +0.092819 0.5341183 0.4474232 +0.2262531 0.5341183 0.4474232 +0.2875993 0.5341183 0.4474232 +0.3262122 0.5341183 0.4474232 +0.3544566 0.5341183 0.4474232 +0.3767383 0.5341183 0.4474232 +0.3951413 0.5341183 0.4474232 +0.4108177 0.5341183 0.4474232 +0.4244723 0.5341183 0.4474232 +0.4365675 0.5341183 0.4474232 +0.4474232 0.5341183 0.4474232 +0.45727 0.5341183 0.4474232 +0.4662797 0.5341183 0.4474232 +0.4745834 0.5341183 0.4474232 +0.4822838 0.5341183 0.4474232 +0.4894626 0.5341183 0.4474232 +0.4961862 0.5341183 0.4474232 +0.5025087 0.5341183 0.4474232 +0.5084753 0.5341183 0.4474232 +0.514124 0.5341183 0.4474232 +0.519487 0.5341183 0.4474232 +0.5245917 0.5341183 0.4474232 +0.529462 0.5341183 0.4474232 +0.5341183 0.5341183 0.4474232 +0.5385787 0.5341183 0.4474232 +0.5428591 0.5341183 0.4474232 +0.5469733 0.5341183 0.4474232 +0.5509339 0.5341183 0.4474232 +0.5547519 0.5341183 0.4474232 +0.5584371 0.5341183 0.4474232 +0.5619986 0.5341183 0.4474232 +0.5654443 0.5341183 0.4474232 +0.5687816 0.5341183 0.4474232 +0.092819 0.5385787 0.4474232 +0.2262531 0.5385787 0.4474232 +0.2875993 0.5385787 0.4474232 +0.3262122 0.5385787 0.4474232 +0.3544566 0.5385787 0.4474232 +0.3767383 0.5385787 0.4474232 +0.3951413 0.5385787 0.4474232 +0.4108177 0.5385787 0.4474232 +0.4244723 0.5385787 0.4474232 +0.4365675 0.5385787 0.4474232 +0.4474232 0.5385787 0.4474232 +0.45727 0.5385787 0.4474232 +0.4662797 0.5385787 0.4474232 +0.4745834 0.5385787 0.4474232 +0.4822838 0.5385787 0.4474232 +0.4894626 0.5385787 0.4474232 +0.4961862 0.5385787 0.4474232 +0.5025087 0.5385787 0.4474232 +0.5084753 0.5385787 0.4474232 +0.514124 0.5385787 0.4474232 +0.519487 0.5385787 0.4474232 +0.5245917 0.5385787 0.4474232 +0.529462 0.5385787 0.4474232 +0.5341183 0.5385787 0.4474232 +0.5385787 0.5385787 0.4474232 +0.5428591 0.5385787 0.4474232 +0.5469733 0.5385787 0.4474232 +0.5509339 0.5385787 0.4474232 +0.5547519 0.5385787 0.4474232 +0.5584371 0.5385787 0.4474232 +0.5619986 0.5385787 0.4474232 +0.5654443 0.5385787 0.4474232 +0.5687816 0.5385787 0.4474232 +0.092819 0.5428591 0.4474232 +0.2262531 0.5428591 0.4474232 +0.2875993 0.5428591 0.4474232 +0.3262122 0.5428591 0.4474232 +0.3544566 0.5428591 0.4474232 +0.3767383 0.5428591 0.4474232 +0.3951413 0.5428591 0.4474232 +0.4108177 0.5428591 0.4474232 +0.4244723 0.5428591 0.4474232 +0.4365675 0.5428591 0.4474232 +0.4474232 0.5428591 0.4474232 +0.45727 0.5428591 0.4474232 +0.4662797 0.5428591 0.4474232 +0.4745834 0.5428591 0.4474232 +0.4822838 0.5428591 0.4474232 +0.4894626 0.5428591 0.4474232 +0.4961862 0.5428591 0.4474232 +0.5025087 0.5428591 0.4474232 +0.5084753 0.5428591 0.4474232 +0.514124 0.5428591 0.4474232 +0.519487 0.5428591 0.4474232 +0.5245917 0.5428591 0.4474232 +0.529462 0.5428591 0.4474232 +0.5341183 0.5428591 0.4474232 +0.5385787 0.5428591 0.4474232 +0.5428591 0.5428591 0.4474232 +0.5469733 0.5428591 0.4474232 +0.5509339 0.5428591 0.4474232 +0.5547519 0.5428591 0.4474232 +0.5584371 0.5428591 0.4474232 +0.5619986 0.5428591 0.4474232 +0.5654443 0.5428591 0.4474232 +0.5687816 0.5428591 0.4474232 +0.092819 0.5469733 0.4474232 +0.2262531 0.5469733 0.4474232 +0.2875993 0.5469733 0.4474232 +0.3262122 0.5469733 0.4474232 +0.3544566 0.5469733 0.4474232 +0.3767383 0.5469733 0.4474232 +0.3951413 0.5469733 0.4474232 +0.4108177 0.5469733 0.4474232 +0.4244723 0.5469733 0.4474232 +0.4365675 0.5469733 0.4474232 +0.4474232 0.5469733 0.4474232 +0.45727 0.5469733 0.4474232 +0.4662797 0.5469733 0.4474232 +0.4745834 0.5469733 0.4474232 +0.4822838 0.5469733 0.4474232 +0.4894626 0.5469733 0.4474232 +0.4961862 0.5469733 0.4474232 +0.5025087 0.5469733 0.4474232 +0.5084753 0.5469733 0.4474232 +0.514124 0.5469733 0.4474232 +0.519487 0.5469733 0.4474232 +0.5245917 0.5469733 0.4474232 +0.529462 0.5469733 0.4474232 +0.5341183 0.5469733 0.4474232 +0.5385787 0.5469733 0.4474232 +0.5428591 0.5469733 0.4474232 +0.5469733 0.5469733 0.4474232 +0.5509339 0.5469733 0.4474232 +0.5547519 0.5469733 0.4474232 +0.5584371 0.5469733 0.4474232 +0.5619986 0.5469733 0.4474232 +0.5654443 0.5469733 0.4474232 +0.5687816 0.5469733 0.4474232 +0.092819 0.5509339 0.4474232 +0.2262531 0.5509339 0.4474232 +0.2875993 0.5509339 0.4474232 +0.3262122 0.5509339 0.4474232 +0.3544566 0.5509339 0.4474232 +0.3767383 0.5509339 0.4474232 +0.3951413 0.5509339 0.4474232 +0.4108177 0.5509339 0.4474232 +0.4244723 0.5509339 0.4474232 +0.4365675 0.5509339 0.4474232 +0.4474232 0.5509339 0.4474232 +0.45727 0.5509339 0.4474232 +0.4662797 0.5509339 0.4474232 +0.4745834 0.5509339 0.4474232 +0.4822838 0.5509339 0.4474232 +0.4894626 0.5509339 0.4474232 +0.4961862 0.5509339 0.4474232 +0.5025087 0.5509339 0.4474232 +0.5084753 0.5509339 0.4474232 +0.514124 0.5509339 0.4474232 +0.519487 0.5509339 0.4474232 +0.5245917 0.5509339 0.4474232 +0.529462 0.5509339 0.4474232 +0.5341183 0.5509339 0.4474232 +0.5385787 0.5509339 0.4474232 +0.5428591 0.5509339 0.4474232 +0.5469733 0.5509339 0.4474232 +0.5509339 0.5509339 0.4474232 +0.5547519 0.5509339 0.4474232 +0.5584371 0.5509339 0.4474232 +0.5619986 0.5509339 0.4474232 +0.5654443 0.5509339 0.4474232 +0.5687816 0.5509339 0.4474232 +0.092819 0.5547519 0.4474232 +0.2262531 0.5547519 0.4474232 +0.2875993 0.5547519 0.4474232 +0.3262122 0.5547519 0.4474232 +0.3544566 0.5547519 0.4474232 +0.3767383 0.5547519 0.4474232 +0.3951413 0.5547519 0.4474232 +0.4108177 0.5547519 0.4474232 +0.4244723 0.5547519 0.4474232 +0.4365675 0.5547519 0.4474232 +0.4474232 0.5547519 0.4474232 +0.45727 0.5547519 0.4474232 +0.4662797 0.5547519 0.4474232 +0.4745834 0.5547519 0.4474232 +0.4822838 0.5547519 0.4474232 +0.4894626 0.5547519 0.4474232 +0.4961862 0.5547519 0.4474232 +0.5025087 0.5547519 0.4474232 +0.5084753 0.5547519 0.4474232 +0.514124 0.5547519 0.4474232 +0.519487 0.5547519 0.4474232 +0.5245917 0.5547519 0.4474232 +0.529462 0.5547519 0.4474232 +0.5341183 0.5547519 0.4474232 +0.5385787 0.5547519 0.4474232 +0.5428591 0.5547519 0.4474232 +0.5469733 0.5547519 0.4474232 +0.5509339 0.5547519 0.4474232 +0.5547519 0.5547519 0.4474232 +0.5584371 0.5547519 0.4474232 +0.5619986 0.5547519 0.4474232 +0.5654443 0.5547519 0.4474232 +0.5687816 0.5547519 0.4474232 +0.092819 0.5584371 0.4474232 +0.2262531 0.5584371 0.4474232 +0.2875993 0.5584371 0.4474232 +0.3262122 0.5584371 0.4474232 +0.3544566 0.5584371 0.4474232 +0.3767383 0.5584371 0.4474232 +0.3951413 0.5584371 0.4474232 +0.4108177 0.5584371 0.4474232 +0.4244723 0.5584371 0.4474232 +0.4365675 0.5584371 0.4474232 +0.4474232 0.5584371 0.4474232 +0.45727 0.5584371 0.4474232 +0.4662797 0.5584371 0.4474232 +0.4745834 0.5584371 0.4474232 +0.4822838 0.5584371 0.4474232 +0.4894626 0.5584371 0.4474232 +0.4961862 0.5584371 0.4474232 +0.5025087 0.5584371 0.4474232 +0.5084753 0.5584371 0.4474232 +0.514124 0.5584371 0.4474232 +0.519487 0.5584371 0.4474232 +0.5245917 0.5584371 0.4474232 +0.529462 0.5584371 0.4474232 +0.5341183 0.5584371 0.4474232 +0.5385787 0.5584371 0.4474232 +0.5428591 0.5584371 0.4474232 +0.5469733 0.5584371 0.4474232 +0.5509339 0.5584371 0.4474232 +0.5547519 0.5584371 0.4474232 +0.5584371 0.5584371 0.4474232 +0.5619986 0.5584371 0.4474232 +0.5654443 0.5584371 0.4474232 +0.5687816 0.5584371 0.4474232 +0.092819 0.5619986 0.4474232 +0.2262531 0.5619986 0.4474232 +0.2875993 0.5619986 0.4474232 +0.3262122 0.5619986 0.4474232 +0.3544566 0.5619986 0.4474232 +0.3767383 0.5619986 0.4474232 +0.3951413 0.5619986 0.4474232 +0.4108177 0.5619986 0.4474232 +0.4244723 0.5619986 0.4474232 +0.4365675 0.5619986 0.4474232 +0.4474232 0.5619986 0.4474232 +0.45727 0.5619986 0.4474232 +0.4662797 0.5619986 0.4474232 +0.4745834 0.5619986 0.4474232 +0.4822838 0.5619986 0.4474232 +0.4894626 0.5619986 0.4474232 +0.4961862 0.5619986 0.4474232 +0.5025087 0.5619986 0.4474232 +0.5084753 0.5619986 0.4474232 +0.514124 0.5619986 0.4474232 +0.519487 0.5619986 0.4474232 +0.5245917 0.5619986 0.4474232 +0.529462 0.5619986 0.4474232 +0.5341183 0.5619986 0.4474232 +0.5385787 0.5619986 0.4474232 +0.5428591 0.5619986 0.4474232 +0.5469733 0.5619986 0.4474232 +0.5509339 0.5619986 0.4474232 +0.5547519 0.5619986 0.4474232 +0.5584371 0.5619986 0.4474232 +0.5619986 0.5619986 0.4474232 +0.5654443 0.5619986 0.4474232 +0.5687816 0.5619986 0.4474232 +0.092819 0.5654443 0.4474232 +0.2262531 0.5654443 0.4474232 +0.2875993 0.5654443 0.4474232 +0.3262122 0.5654443 0.4474232 +0.3544566 0.5654443 0.4474232 +0.3767383 0.5654443 0.4474232 +0.3951413 0.5654443 0.4474232 +0.4108177 0.5654443 0.4474232 +0.4244723 0.5654443 0.4474232 +0.4365675 0.5654443 0.4474232 +0.4474232 0.5654443 0.4474232 +0.45727 0.5654443 0.4474232 +0.4662797 0.5654443 0.4474232 +0.4745834 0.5654443 0.4474232 +0.4822838 0.5654443 0.4474232 +0.4894626 0.5654443 0.4474232 +0.4961862 0.5654443 0.4474232 +0.5025087 0.5654443 0.4474232 +0.5084753 0.5654443 0.4474232 +0.514124 0.5654443 0.4474232 +0.519487 0.5654443 0.4474232 +0.5245917 0.5654443 0.4474232 +0.529462 0.5654443 0.4474232 +0.5341183 0.5654443 0.4474232 +0.5385787 0.5654443 0.4474232 +0.5428591 0.5654443 0.4474232 +0.5469733 0.5654443 0.4474232 +0.5509339 0.5654443 0.4474232 +0.5547519 0.5654443 0.4474232 +0.5584371 0.5654443 0.4474232 +0.5619986 0.5654443 0.4474232 +0.5654443 0.5654443 0.4474232 +0.5687816 0.5654443 0.4474232 +0.092819 0.5687816 0.4474232 +0.2262531 0.5687816 0.4474232 +0.2875993 0.5687816 0.4474232 +0.3262122 0.5687816 0.4474232 +0.3544566 0.5687816 0.4474232 +0.3767383 0.5687816 0.4474232 +0.3951413 0.5687816 0.4474232 +0.4108177 0.5687816 0.4474232 +0.4244723 0.5687816 0.4474232 +0.4365675 0.5687816 0.4474232 +0.4474232 0.5687816 0.4474232 +0.45727 0.5687816 0.4474232 +0.4662797 0.5687816 0.4474232 +0.4745834 0.5687816 0.4474232 +0.4822838 0.5687816 0.4474232 +0.4894626 0.5687816 0.4474232 +0.4961862 0.5687816 0.4474232 +0.5025087 0.5687816 0.4474232 +0.5084753 0.5687816 0.4474232 +0.514124 0.5687816 0.4474232 +0.519487 0.5687816 0.4474232 +0.5245917 0.5687816 0.4474232 +0.529462 0.5687816 0.4474232 +0.5341183 0.5687816 0.4474232 +0.5385787 0.5687816 0.4474232 +0.5428591 0.5687816 0.4474232 +0.5469733 0.5687816 0.4474232 +0.5509339 0.5687816 0.4474232 +0.5547519 0.5687816 0.4474232 +0.5584371 0.5687816 0.4474232 +0.5619986 0.5687816 0.4474232 +0.5654443 0.5687816 0.4474232 +0.5687816 0.5687816 0.4474232 +0.092819 0.092819 0.45727 +0.2262531 0.092819 0.45727 +0.2875993 0.092819 0.45727 +0.3262122 0.092819 0.45727 +0.3544566 0.092819 0.45727 +0.3767383 0.092819 0.45727 +0.3951413 0.092819 0.45727 +0.4108177 0.092819 0.45727 +0.4244723 0.092819 0.45727 +0.4365675 0.092819 0.45727 +0.4474232 0.092819 0.45727 +0.45727 0.092819 0.45727 +0.4662797 0.092819 0.45727 +0.4745834 0.092819 0.45727 +0.4822838 0.092819 0.45727 +0.4894626 0.092819 0.45727 +0.4961862 0.092819 0.45727 +0.5025087 0.092819 0.45727 +0.5084753 0.092819 0.45727 +0.514124 0.092819 0.45727 +0.519487 0.092819 0.45727 +0.5245917 0.092819 0.45727 +0.529462 0.092819 0.45727 +0.5341183 0.092819 0.45727 +0.5385787 0.092819 0.45727 +0.5428591 0.092819 0.45727 +0.5469733 0.092819 0.45727 +0.5509339 0.092819 0.45727 +0.5547519 0.092819 0.45727 +0.5584371 0.092819 0.45727 +0.5619986 0.092819 0.45727 +0.5654443 0.092819 0.45727 +0.5687816 0.092819 0.45727 +0.092819 0.2262531 0.45727 +0.2262531 0.2262531 0.45727 +0.2875993 0.2262531 0.45727 +0.3262122 0.2262531 0.45727 +0.3544566 0.2262531 0.45727 +0.3767383 0.2262531 0.45727 +0.3951413 0.2262531 0.45727 +0.4108177 0.2262531 0.45727 +0.4244723 0.2262531 0.45727 +0.4365675 0.2262531 0.45727 +0.4474232 0.2262531 0.45727 +0.45727 0.2262531 0.45727 +0.4662797 0.2262531 0.45727 +0.4745834 0.2262531 0.45727 +0.4822838 0.2262531 0.45727 +0.4894626 0.2262531 0.45727 +0.4961862 0.2262531 0.45727 +0.5025087 0.2262531 0.45727 +0.5084753 0.2262531 0.45727 +0.514124 0.2262531 0.45727 +0.519487 0.2262531 0.45727 +0.5245917 0.2262531 0.45727 +0.529462 0.2262531 0.45727 +0.5341183 0.2262531 0.45727 +0.5385787 0.2262531 0.45727 +0.5428591 0.2262531 0.45727 +0.5469733 0.2262531 0.45727 +0.5509339 0.2262531 0.45727 +0.5547519 0.2262531 0.45727 +0.5584371 0.2262531 0.45727 +0.5619986 0.2262531 0.45727 +0.5654443 0.2262531 0.45727 +0.5687816 0.2262531 0.45727 +0.092819 0.2875993 0.45727 +0.2262531 0.2875993 0.45727 +0.2875993 0.2875993 0.45727 +0.3262122 0.2875993 0.45727 +0.3544566 0.2875993 0.45727 +0.3767383 0.2875993 0.45727 +0.3951413 0.2875993 0.45727 +0.4108177 0.2875993 0.45727 +0.4244723 0.2875993 0.45727 +0.4365675 0.2875993 0.45727 +0.4474232 0.2875993 0.45727 +0.45727 0.2875993 0.45727 +0.4662797 0.2875993 0.45727 +0.4745834 0.2875993 0.45727 +0.4822838 0.2875993 0.45727 +0.4894626 0.2875993 0.45727 +0.4961862 0.2875993 0.45727 +0.5025087 0.2875993 0.45727 +0.5084753 0.2875993 0.45727 +0.514124 0.2875993 0.45727 +0.519487 0.2875993 0.45727 +0.5245917 0.2875993 0.45727 +0.529462 0.2875993 0.45727 +0.5341183 0.2875993 0.45727 +0.5385787 0.2875993 0.45727 +0.5428591 0.2875993 0.45727 +0.5469733 0.2875993 0.45727 +0.5509339 0.2875993 0.45727 +0.5547519 0.2875993 0.45727 +0.5584371 0.2875993 0.45727 +0.5619986 0.2875993 0.45727 +0.5654443 0.2875993 0.45727 +0.5687816 0.2875993 0.45727 +0.092819 0.3262122 0.45727 +0.2262531 0.3262122 0.45727 +0.2875993 0.3262122 0.45727 +0.3262122 0.3262122 0.45727 +0.3544566 0.3262122 0.45727 +0.3767383 0.3262122 0.45727 +0.3951413 0.3262122 0.45727 +0.4108177 0.3262122 0.45727 +0.4244723 0.3262122 0.45727 +0.4365675 0.3262122 0.45727 +0.4474232 0.3262122 0.45727 +0.45727 0.3262122 0.45727 +0.4662797 0.3262122 0.45727 +0.4745834 0.3262122 0.45727 +0.4822838 0.3262122 0.45727 +0.4894626 0.3262122 0.45727 +0.4961862 0.3262122 0.45727 +0.5025087 0.3262122 0.45727 +0.5084753 0.3262122 0.45727 +0.514124 0.3262122 0.45727 +0.519487 0.3262122 0.45727 +0.5245917 0.3262122 0.45727 +0.529462 0.3262122 0.45727 +0.5341183 0.3262122 0.45727 +0.5385787 0.3262122 0.45727 +0.5428591 0.3262122 0.45727 +0.5469733 0.3262122 0.45727 +0.5509339 0.3262122 0.45727 +0.5547519 0.3262122 0.45727 +0.5584371 0.3262122 0.45727 +0.5619986 0.3262122 0.45727 +0.5654443 0.3262122 0.45727 +0.5687816 0.3262122 0.45727 +0.092819 0.3544566 0.45727 +0.2262531 0.3544566 0.45727 +0.2875993 0.3544566 0.45727 +0.3262122 0.3544566 0.45727 +0.3544566 0.3544566 0.45727 +0.3767383 0.3544566 0.45727 +0.3951413 0.3544566 0.45727 +0.4108177 0.3544566 0.45727 +0.4244723 0.3544566 0.45727 +0.4365675 0.3544566 0.45727 +0.4474232 0.3544566 0.45727 +0.45727 0.3544566 0.45727 +0.4662797 0.3544566 0.45727 +0.4745834 0.3544566 0.45727 +0.4822838 0.3544566 0.45727 +0.4894626 0.3544566 0.45727 +0.4961862 0.3544566 0.45727 +0.5025087 0.3544566 0.45727 +0.5084753 0.3544566 0.45727 +0.514124 0.3544566 0.45727 +0.519487 0.3544566 0.45727 +0.5245917 0.3544566 0.45727 +0.529462 0.3544566 0.45727 +0.5341183 0.3544566 0.45727 +0.5385787 0.3544566 0.45727 +0.5428591 0.3544566 0.45727 +0.5469733 0.3544566 0.45727 +0.5509339 0.3544566 0.45727 +0.5547519 0.3544566 0.45727 +0.5584371 0.3544566 0.45727 +0.5619986 0.3544566 0.45727 +0.5654443 0.3544566 0.45727 +0.5687816 0.3544566 0.45727 +0.092819 0.3767383 0.45727 +0.2262531 0.3767383 0.45727 +0.2875993 0.3767383 0.45727 +0.3262122 0.3767383 0.45727 +0.3544566 0.3767383 0.45727 +0.3767383 0.3767383 0.45727 +0.3951413 0.3767383 0.45727 +0.4108177 0.3767383 0.45727 +0.4244723 0.3767383 0.45727 +0.4365675 0.3767383 0.45727 +0.4474232 0.3767383 0.45727 +0.45727 0.3767383 0.45727 +0.4662797 0.3767383 0.45727 +0.4745834 0.3767383 0.45727 +0.4822838 0.3767383 0.45727 +0.4894626 0.3767383 0.45727 +0.4961862 0.3767383 0.45727 +0.5025087 0.3767383 0.45727 +0.5084753 0.3767383 0.45727 +0.514124 0.3767383 0.45727 +0.519487 0.3767383 0.45727 +0.5245917 0.3767383 0.45727 +0.529462 0.3767383 0.45727 +0.5341183 0.3767383 0.45727 +0.5385787 0.3767383 0.45727 +0.5428591 0.3767383 0.45727 +0.5469733 0.3767383 0.45727 +0.5509339 0.3767383 0.45727 +0.5547519 0.3767383 0.45727 +0.5584371 0.3767383 0.45727 +0.5619986 0.3767383 0.45727 +0.5654443 0.3767383 0.45727 +0.5687816 0.3767383 0.45727 +0.092819 0.3951413 0.45727 +0.2262531 0.3951413 0.45727 +0.2875993 0.3951413 0.45727 +0.3262122 0.3951413 0.45727 +0.3544566 0.3951413 0.45727 +0.3767383 0.3951413 0.45727 +0.3951413 0.3951413 0.45727 +0.4108177 0.3951413 0.45727 +0.4244723 0.3951413 0.45727 +0.4365675 0.3951413 0.45727 +0.4474232 0.3951413 0.45727 +0.45727 0.3951413 0.45727 +0.4662797 0.3951413 0.45727 +0.4745834 0.3951413 0.45727 +0.4822838 0.3951413 0.45727 +0.4894626 0.3951413 0.45727 +0.4961862 0.3951413 0.45727 +0.5025087 0.3951413 0.45727 +0.5084753 0.3951413 0.45727 +0.514124 0.3951413 0.45727 +0.519487 0.3951413 0.45727 +0.5245917 0.3951413 0.45727 +0.529462 0.3951413 0.45727 +0.5341183 0.3951413 0.45727 +0.5385787 0.3951413 0.45727 +0.5428591 0.3951413 0.45727 +0.5469733 0.3951413 0.45727 +0.5509339 0.3951413 0.45727 +0.5547519 0.3951413 0.45727 +0.5584371 0.3951413 0.45727 +0.5619986 0.3951413 0.45727 +0.5654443 0.3951413 0.45727 +0.5687816 0.3951413 0.45727 +0.092819 0.4108177 0.45727 +0.2262531 0.4108177 0.45727 +0.2875993 0.4108177 0.45727 +0.3262122 0.4108177 0.45727 +0.3544566 0.4108177 0.45727 +0.3767383 0.4108177 0.45727 +0.3951413 0.4108177 0.45727 +0.4108177 0.4108177 0.45727 +0.4244723 0.4108177 0.45727 +0.4365675 0.4108177 0.45727 +0.4474232 0.4108177 0.45727 +0.45727 0.4108177 0.45727 +0.4662797 0.4108177 0.45727 +0.4745834 0.4108177 0.45727 +0.4822838 0.4108177 0.45727 +0.4894626 0.4108177 0.45727 +0.4961862 0.4108177 0.45727 +0.5025087 0.4108177 0.45727 +0.5084753 0.4108177 0.45727 +0.514124 0.4108177 0.45727 +0.519487 0.4108177 0.45727 +0.5245917 0.4108177 0.45727 +0.529462 0.4108177 0.45727 +0.5341183 0.4108177 0.45727 +0.5385787 0.4108177 0.45727 +0.5428591 0.4108177 0.45727 +0.5469733 0.4108177 0.45727 +0.5509339 0.4108177 0.45727 +0.5547519 0.4108177 0.45727 +0.5584371 0.4108177 0.45727 +0.5619986 0.4108177 0.45727 +0.5654443 0.4108177 0.45727 +0.5687816 0.4108177 0.45727 +0.092819 0.4244723 0.45727 +0.2262531 0.4244723 0.45727 +0.2875993 0.4244723 0.45727 +0.3262122 0.4244723 0.45727 +0.3544566 0.4244723 0.45727 +0.3767383 0.4244723 0.45727 +0.3951413 0.4244723 0.45727 +0.4108177 0.4244723 0.45727 +0.4244723 0.4244723 0.45727 +0.4365675 0.4244723 0.45727 +0.4474232 0.4244723 0.45727 +0.45727 0.4244723 0.45727 +0.4662797 0.4244723 0.45727 +0.4745834 0.4244723 0.45727 +0.4822838 0.4244723 0.45727 +0.4894626 0.4244723 0.45727 +0.4961862 0.4244723 0.45727 +0.5025087 0.4244723 0.45727 +0.5084753 0.4244723 0.45727 +0.514124 0.4244723 0.45727 +0.519487 0.4244723 0.45727 +0.5245917 0.4244723 0.45727 +0.529462 0.4244723 0.45727 +0.5341183 0.4244723 0.45727 +0.5385787 0.4244723 0.45727 +0.5428591 0.4244723 0.45727 +0.5469733 0.4244723 0.45727 +0.5509339 0.4244723 0.45727 +0.5547519 0.4244723 0.45727 +0.5584371 0.4244723 0.45727 +0.5619986 0.4244723 0.45727 +0.5654443 0.4244723 0.45727 +0.5687816 0.4244723 0.45727 +0.092819 0.4365675 0.45727 +0.2262531 0.4365675 0.45727 +0.2875993 0.4365675 0.45727 +0.3262122 0.4365675 0.45727 +0.3544566 0.4365675 0.45727 +0.3767383 0.4365675 0.45727 +0.3951413 0.4365675 0.45727 +0.4108177 0.4365675 0.45727 +0.4244723 0.4365675 0.45727 +0.4365675 0.4365675 0.45727 +0.4474232 0.4365675 0.45727 +0.45727 0.4365675 0.45727 +0.4662797 0.4365675 0.45727 +0.4745834 0.4365675 0.45727 +0.4822838 0.4365675 0.45727 +0.4894626 0.4365675 0.45727 +0.4961862 0.4365675 0.45727 +0.5025087 0.4365675 0.45727 +0.5084753 0.4365675 0.45727 +0.514124 0.4365675 0.45727 +0.519487 0.4365675 0.45727 +0.5245917 0.4365675 0.45727 +0.529462 0.4365675 0.45727 +0.5341183 0.4365675 0.45727 +0.5385787 0.4365675 0.45727 +0.5428591 0.4365675 0.45727 +0.5469733 0.4365675 0.45727 +0.5509339 0.4365675 0.45727 +0.5547519 0.4365675 0.45727 +0.5584371 0.4365675 0.45727 +0.5619986 0.4365675 0.45727 +0.5654443 0.4365675 0.45727 +0.5687816 0.4365675 0.45727 +0.092819 0.4474232 0.45727 +0.2262531 0.4474232 0.45727 +0.2875993 0.4474232 0.45727 +0.3262122 0.4474232 0.45727 +0.3544566 0.4474232 0.45727 +0.3767383 0.4474232 0.45727 +0.3951413 0.4474232 0.45727 +0.4108177 0.4474232 0.45727 +0.4244723 0.4474232 0.45727 +0.4365675 0.4474232 0.45727 +0.4474232 0.4474232 0.45727 +0.45727 0.4474232 0.45727 +0.4662797 0.4474232 0.45727 +0.4745834 0.4474232 0.45727 +0.4822838 0.4474232 0.45727 +0.4894626 0.4474232 0.45727 +0.4961862 0.4474232 0.45727 +0.5025087 0.4474232 0.45727 +0.5084753 0.4474232 0.45727 +0.514124 0.4474232 0.45727 +0.519487 0.4474232 0.45727 +0.5245917 0.4474232 0.45727 +0.529462 0.4474232 0.45727 +0.5341183 0.4474232 0.45727 +0.5385787 0.4474232 0.45727 +0.5428591 0.4474232 0.45727 +0.5469733 0.4474232 0.45727 +0.5509339 0.4474232 0.45727 +0.5547519 0.4474232 0.45727 +0.5584371 0.4474232 0.45727 +0.5619986 0.4474232 0.45727 +0.5654443 0.4474232 0.45727 +0.5687816 0.4474232 0.45727 +0.092819 0.45727 0.45727 +0.2262531 0.45727 0.45727 +0.2875993 0.45727 0.45727 +0.3262122 0.45727 0.45727 +0.3544566 0.45727 0.45727 +0.3767383 0.45727 0.45727 +0.3951413 0.45727 0.45727 +0.4108177 0.45727 0.45727 +0.4244723 0.45727 0.45727 +0.4365675 0.45727 0.45727 +0.4474232 0.45727 0.45727 +0.45727 0.45727 0.45727 +0.4662797 0.45727 0.45727 +0.4745834 0.45727 0.45727 +0.4822838 0.45727 0.45727 +0.4894626 0.45727 0.45727 +0.4961862 0.45727 0.45727 +0.5025087 0.45727 0.45727 +0.5084753 0.45727 0.45727 +0.514124 0.45727 0.45727 +0.519487 0.45727 0.45727 +0.5245917 0.45727 0.45727 +0.529462 0.45727 0.45727 +0.5341183 0.45727 0.45727 +0.5385787 0.45727 0.45727 +0.5428591 0.45727 0.45727 +0.5469733 0.45727 0.45727 +0.5509339 0.45727 0.45727 +0.5547519 0.45727 0.45727 +0.5584371 0.45727 0.45727 +0.5619986 0.45727 0.45727 +0.5654443 0.45727 0.45727 +0.5687816 0.45727 0.45727 +0.092819 0.4662797 0.45727 +0.2262531 0.4662797 0.45727 +0.2875993 0.4662797 0.45727 +0.3262122 0.4662797 0.45727 +0.3544566 0.4662797 0.45727 +0.3767383 0.4662797 0.45727 +0.3951413 0.4662797 0.45727 +0.4108177 0.4662797 0.45727 +0.4244723 0.4662797 0.45727 +0.4365675 0.4662797 0.45727 +0.4474232 0.4662797 0.45727 +0.45727 0.4662797 0.45727 +0.4662797 0.4662797 0.45727 +0.4745834 0.4662797 0.45727 +0.4822838 0.4662797 0.45727 +0.4894626 0.4662797 0.45727 +0.4961862 0.4662797 0.45727 +0.5025087 0.4662797 0.45727 +0.5084753 0.4662797 0.45727 +0.514124 0.4662797 0.45727 +0.519487 0.4662797 0.45727 +0.5245917 0.4662797 0.45727 +0.529462 0.4662797 0.45727 +0.5341183 0.4662797 0.45727 +0.5385787 0.4662797 0.45727 +0.5428591 0.4662797 0.45727 +0.5469733 0.4662797 0.45727 +0.5509339 0.4662797 0.45727 +0.5547519 0.4662797 0.45727 +0.5584371 0.4662797 0.45727 +0.5619986 0.4662797 0.45727 +0.5654443 0.4662797 0.45727 +0.5687816 0.4662797 0.45727 +0.092819 0.4745834 0.45727 +0.2262531 0.4745834 0.45727 +0.2875993 0.4745834 0.45727 +0.3262122 0.4745834 0.45727 +0.3544566 0.4745834 0.45727 +0.3767383 0.4745834 0.45727 +0.3951413 0.4745834 0.45727 +0.4108177 0.4745834 0.45727 +0.4244723 0.4745834 0.45727 +0.4365675 0.4745834 0.45727 +0.4474232 0.4745834 0.45727 +0.45727 0.4745834 0.45727 +0.4662797 0.4745834 0.45727 +0.4745834 0.4745834 0.45727 +0.4822838 0.4745834 0.45727 +0.4894626 0.4745834 0.45727 +0.4961862 0.4745834 0.45727 +0.5025087 0.4745834 0.45727 +0.5084753 0.4745834 0.45727 +0.514124 0.4745834 0.45727 +0.519487 0.4745834 0.45727 +0.5245917 0.4745834 0.45727 +0.529462 0.4745834 0.45727 +0.5341183 0.4745834 0.45727 +0.5385787 0.4745834 0.45727 +0.5428591 0.4745834 0.45727 +0.5469733 0.4745834 0.45727 +0.5509339 0.4745834 0.45727 +0.5547519 0.4745834 0.45727 +0.5584371 0.4745834 0.45727 +0.5619986 0.4745834 0.45727 +0.5654443 0.4745834 0.45727 +0.5687816 0.4745834 0.45727 +0.092819 0.4822838 0.45727 +0.2262531 0.4822838 0.45727 +0.2875993 0.4822838 0.45727 +0.3262122 0.4822838 0.45727 +0.3544566 0.4822838 0.45727 +0.3767383 0.4822838 0.45727 +0.3951413 0.4822838 0.45727 +0.4108177 0.4822838 0.45727 +0.4244723 0.4822838 0.45727 +0.4365675 0.4822838 0.45727 +0.4474232 0.4822838 0.45727 +0.45727 0.4822838 0.45727 +0.4662797 0.4822838 0.45727 +0.4745834 0.4822838 0.45727 +0.4822838 0.4822838 0.45727 +0.4894626 0.4822838 0.45727 +0.4961862 0.4822838 0.45727 +0.5025087 0.4822838 0.45727 +0.5084753 0.4822838 0.45727 +0.514124 0.4822838 0.45727 +0.519487 0.4822838 0.45727 +0.5245917 0.4822838 0.45727 +0.529462 0.4822838 0.45727 +0.5341183 0.4822838 0.45727 +0.5385787 0.4822838 0.45727 +0.5428591 0.4822838 0.45727 +0.5469733 0.4822838 0.45727 +0.5509339 0.4822838 0.45727 +0.5547519 0.4822838 0.45727 +0.5584371 0.4822838 0.45727 +0.5619986 0.4822838 0.45727 +0.5654443 0.4822838 0.45727 +0.5687816 0.4822838 0.45727 +0.092819 0.4894626 0.45727 +0.2262531 0.4894626 0.45727 +0.2875993 0.4894626 0.45727 +0.3262122 0.4894626 0.45727 +0.3544566 0.4894626 0.45727 +0.3767383 0.4894626 0.45727 +0.3951413 0.4894626 0.45727 +0.4108177 0.4894626 0.45727 +0.4244723 0.4894626 0.45727 +0.4365675 0.4894626 0.45727 +0.4474232 0.4894626 0.45727 +0.45727 0.4894626 0.45727 +0.4662797 0.4894626 0.45727 +0.4745834 0.4894626 0.45727 +0.4822838 0.4894626 0.45727 +0.4894626 0.4894626 0.45727 +0.4961862 0.4894626 0.45727 +0.5025087 0.4894626 0.45727 +0.5084753 0.4894626 0.45727 +0.514124 0.4894626 0.45727 +0.519487 0.4894626 0.45727 +0.5245917 0.4894626 0.45727 +0.529462 0.4894626 0.45727 +0.5341183 0.4894626 0.45727 +0.5385787 0.4894626 0.45727 +0.5428591 0.4894626 0.45727 +0.5469733 0.4894626 0.45727 +0.5509339 0.4894626 0.45727 +0.5547519 0.4894626 0.45727 +0.5584371 0.4894626 0.45727 +0.5619986 0.4894626 0.45727 +0.5654443 0.4894626 0.45727 +0.5687816 0.4894626 0.45727 +0.092819 0.4961862 0.45727 +0.2262531 0.4961862 0.45727 +0.2875993 0.4961862 0.45727 +0.3262122 0.4961862 0.45727 +0.3544566 0.4961862 0.45727 +0.3767383 0.4961862 0.45727 +0.3951413 0.4961862 0.45727 +0.4108177 0.4961862 0.45727 +0.4244723 0.4961862 0.45727 +0.4365675 0.4961862 0.45727 +0.4474232 0.4961862 0.45727 +0.45727 0.4961862 0.45727 +0.4662797 0.4961862 0.45727 +0.4745834 0.4961862 0.45727 +0.4822838 0.4961862 0.45727 +0.4894626 0.4961862 0.45727 +0.4961862 0.4961862 0.45727 +0.5025087 0.4961862 0.45727 +0.5084753 0.4961862 0.45727 +0.514124 0.4961862 0.45727 +0.519487 0.4961862 0.45727 +0.5245917 0.4961862 0.45727 +0.529462 0.4961862 0.45727 +0.5341183 0.4961862 0.45727 +0.5385787 0.4961862 0.45727 +0.5428591 0.4961862 0.45727 +0.5469733 0.4961862 0.45727 +0.5509339 0.4961862 0.45727 +0.5547519 0.4961862 0.45727 +0.5584371 0.4961862 0.45727 +0.5619986 0.4961862 0.45727 +0.5654443 0.4961862 0.45727 +0.5687816 0.4961862 0.45727 +0.092819 0.5025087 0.45727 +0.2262531 0.5025087 0.45727 +0.2875993 0.5025087 0.45727 +0.3262122 0.5025087 0.45727 +0.3544566 0.5025087 0.45727 +0.3767383 0.5025087 0.45727 +0.3951413 0.5025087 0.45727 +0.4108177 0.5025087 0.45727 +0.4244723 0.5025087 0.45727 +0.4365675 0.5025087 0.45727 +0.4474232 0.5025087 0.45727 +0.45727 0.5025087 0.45727 +0.4662797 0.5025087 0.45727 +0.4745834 0.5025087 0.45727 +0.4822838 0.5025087 0.45727 +0.4894626 0.5025087 0.45727 +0.4961862 0.5025087 0.45727 +0.5025087 0.5025087 0.45727 +0.5084753 0.5025087 0.45727 +0.514124 0.5025087 0.45727 +0.519487 0.5025087 0.45727 +0.5245917 0.5025087 0.45727 +0.529462 0.5025087 0.45727 +0.5341183 0.5025087 0.45727 +0.5385787 0.5025087 0.45727 +0.5428591 0.5025087 0.45727 +0.5469733 0.5025087 0.45727 +0.5509339 0.5025087 0.45727 +0.5547519 0.5025087 0.45727 +0.5584371 0.5025087 0.45727 +0.5619986 0.5025087 0.45727 +0.5654443 0.5025087 0.45727 +0.5687816 0.5025087 0.45727 +0.092819 0.5084753 0.45727 +0.2262531 0.5084753 0.45727 +0.2875993 0.5084753 0.45727 +0.3262122 0.5084753 0.45727 +0.3544566 0.5084753 0.45727 +0.3767383 0.5084753 0.45727 +0.3951413 0.5084753 0.45727 +0.4108177 0.5084753 0.45727 +0.4244723 0.5084753 0.45727 +0.4365675 0.5084753 0.45727 +0.4474232 0.5084753 0.45727 +0.45727 0.5084753 0.45727 +0.4662797 0.5084753 0.45727 +0.4745834 0.5084753 0.45727 +0.4822838 0.5084753 0.45727 +0.4894626 0.5084753 0.45727 +0.4961862 0.5084753 0.45727 +0.5025087 0.5084753 0.45727 +0.5084753 0.5084753 0.45727 +0.514124 0.5084753 0.45727 +0.519487 0.5084753 0.45727 +0.5245917 0.5084753 0.45727 +0.529462 0.5084753 0.45727 +0.5341183 0.5084753 0.45727 +0.5385787 0.5084753 0.45727 +0.5428591 0.5084753 0.45727 +0.5469733 0.5084753 0.45727 +0.5509339 0.5084753 0.45727 +0.5547519 0.5084753 0.45727 +0.5584371 0.5084753 0.45727 +0.5619986 0.5084753 0.45727 +0.5654443 0.5084753 0.45727 +0.5687816 0.5084753 0.45727 +0.092819 0.514124 0.45727 +0.2262531 0.514124 0.45727 +0.2875993 0.514124 0.45727 +0.3262122 0.514124 0.45727 +0.3544566 0.514124 0.45727 +0.3767383 0.514124 0.45727 +0.3951413 0.514124 0.45727 +0.4108177 0.514124 0.45727 +0.4244723 0.514124 0.45727 +0.4365675 0.514124 0.45727 +0.4474232 0.514124 0.45727 +0.45727 0.514124 0.45727 +0.4662797 0.514124 0.45727 +0.4745834 0.514124 0.45727 +0.4822838 0.514124 0.45727 +0.4894626 0.514124 0.45727 +0.4961862 0.514124 0.45727 +0.5025087 0.514124 0.45727 +0.5084753 0.514124 0.45727 +0.514124 0.514124 0.45727 +0.519487 0.514124 0.45727 +0.5245917 0.514124 0.45727 +0.529462 0.514124 0.45727 +0.5341183 0.514124 0.45727 +0.5385787 0.514124 0.45727 +0.5428591 0.514124 0.45727 +0.5469733 0.514124 0.45727 +0.5509339 0.514124 0.45727 +0.5547519 0.514124 0.45727 +0.5584371 0.514124 0.45727 +0.5619986 0.514124 0.45727 +0.5654443 0.514124 0.45727 +0.5687816 0.514124 0.45727 +0.092819 0.519487 0.45727 +0.2262531 0.519487 0.45727 +0.2875993 0.519487 0.45727 +0.3262122 0.519487 0.45727 +0.3544566 0.519487 0.45727 +0.3767383 0.519487 0.45727 +0.3951413 0.519487 0.45727 +0.4108177 0.519487 0.45727 +0.4244723 0.519487 0.45727 +0.4365675 0.519487 0.45727 +0.4474232 0.519487 0.45727 +0.45727 0.519487 0.45727 +0.4662797 0.519487 0.45727 +0.4745834 0.519487 0.45727 +0.4822838 0.519487 0.45727 +0.4894626 0.519487 0.45727 +0.4961862 0.519487 0.45727 +0.5025087 0.519487 0.45727 +0.5084753 0.519487 0.45727 +0.514124 0.519487 0.45727 +0.519487 0.519487 0.45727 +0.5245917 0.519487 0.45727 +0.529462 0.519487 0.45727 +0.5341183 0.519487 0.45727 +0.5385787 0.519487 0.45727 +0.5428591 0.519487 0.45727 +0.5469733 0.519487 0.45727 +0.5509339 0.519487 0.45727 +0.5547519 0.519487 0.45727 +0.5584371 0.519487 0.45727 +0.5619986 0.519487 0.45727 +0.5654443 0.519487 0.45727 +0.5687816 0.519487 0.45727 +0.092819 0.5245917 0.45727 +0.2262531 0.5245917 0.45727 +0.2875993 0.5245917 0.45727 +0.3262122 0.5245917 0.45727 +0.3544566 0.5245917 0.45727 +0.3767383 0.5245917 0.45727 +0.3951413 0.5245917 0.45727 +0.4108177 0.5245917 0.45727 +0.4244723 0.5245917 0.45727 +0.4365675 0.5245917 0.45727 +0.4474232 0.5245917 0.45727 +0.45727 0.5245917 0.45727 +0.4662797 0.5245917 0.45727 +0.4745834 0.5245917 0.45727 +0.4822838 0.5245917 0.45727 +0.4894626 0.5245917 0.45727 +0.4961862 0.5245917 0.45727 +0.5025087 0.5245917 0.45727 +0.5084753 0.5245917 0.45727 +0.514124 0.5245917 0.45727 +0.519487 0.5245917 0.45727 +0.5245917 0.5245917 0.45727 +0.529462 0.5245917 0.45727 +0.5341183 0.5245917 0.45727 +0.5385787 0.5245917 0.45727 +0.5428591 0.5245917 0.45727 +0.5469733 0.5245917 0.45727 +0.5509339 0.5245917 0.45727 +0.5547519 0.5245917 0.45727 +0.5584371 0.5245917 0.45727 +0.5619986 0.5245917 0.45727 +0.5654443 0.5245917 0.45727 +0.5687816 0.5245917 0.45727 +0.092819 0.529462 0.45727 +0.2262531 0.529462 0.45727 +0.2875993 0.529462 0.45727 +0.3262122 0.529462 0.45727 +0.3544566 0.529462 0.45727 +0.3767383 0.529462 0.45727 +0.3951413 0.529462 0.45727 +0.4108177 0.529462 0.45727 +0.4244723 0.529462 0.45727 +0.4365675 0.529462 0.45727 +0.4474232 0.529462 0.45727 +0.45727 0.529462 0.45727 +0.4662797 0.529462 0.45727 +0.4745834 0.529462 0.45727 +0.4822838 0.529462 0.45727 +0.4894626 0.529462 0.45727 +0.4961862 0.529462 0.45727 +0.5025087 0.529462 0.45727 +0.5084753 0.529462 0.45727 +0.514124 0.529462 0.45727 +0.519487 0.529462 0.45727 +0.5245917 0.529462 0.45727 +0.529462 0.529462 0.45727 +0.5341183 0.529462 0.45727 +0.5385787 0.529462 0.45727 +0.5428591 0.529462 0.45727 +0.5469733 0.529462 0.45727 +0.5509339 0.529462 0.45727 +0.5547519 0.529462 0.45727 +0.5584371 0.529462 0.45727 +0.5619986 0.529462 0.45727 +0.5654443 0.529462 0.45727 +0.5687816 0.529462 0.45727 +0.092819 0.5341183 0.45727 +0.2262531 0.5341183 0.45727 +0.2875993 0.5341183 0.45727 +0.3262122 0.5341183 0.45727 +0.3544566 0.5341183 0.45727 +0.3767383 0.5341183 0.45727 +0.3951413 0.5341183 0.45727 +0.4108177 0.5341183 0.45727 +0.4244723 0.5341183 0.45727 +0.4365675 0.5341183 0.45727 +0.4474232 0.5341183 0.45727 +0.45727 0.5341183 0.45727 +0.4662797 0.5341183 0.45727 +0.4745834 0.5341183 0.45727 +0.4822838 0.5341183 0.45727 +0.4894626 0.5341183 0.45727 +0.4961862 0.5341183 0.45727 +0.5025087 0.5341183 0.45727 +0.5084753 0.5341183 0.45727 +0.514124 0.5341183 0.45727 +0.519487 0.5341183 0.45727 +0.5245917 0.5341183 0.45727 +0.529462 0.5341183 0.45727 +0.5341183 0.5341183 0.45727 +0.5385787 0.5341183 0.45727 +0.5428591 0.5341183 0.45727 +0.5469733 0.5341183 0.45727 +0.5509339 0.5341183 0.45727 +0.5547519 0.5341183 0.45727 +0.5584371 0.5341183 0.45727 +0.5619986 0.5341183 0.45727 +0.5654443 0.5341183 0.45727 +0.5687816 0.5341183 0.45727 +0.092819 0.5385787 0.45727 +0.2262531 0.5385787 0.45727 +0.2875993 0.5385787 0.45727 +0.3262122 0.5385787 0.45727 +0.3544566 0.5385787 0.45727 +0.3767383 0.5385787 0.45727 +0.3951413 0.5385787 0.45727 +0.4108177 0.5385787 0.45727 +0.4244723 0.5385787 0.45727 +0.4365675 0.5385787 0.45727 +0.4474232 0.5385787 0.45727 +0.45727 0.5385787 0.45727 +0.4662797 0.5385787 0.45727 +0.4745834 0.5385787 0.45727 +0.4822838 0.5385787 0.45727 +0.4894626 0.5385787 0.45727 +0.4961862 0.5385787 0.45727 +0.5025087 0.5385787 0.45727 +0.5084753 0.5385787 0.45727 +0.514124 0.5385787 0.45727 +0.519487 0.5385787 0.45727 +0.5245917 0.5385787 0.45727 +0.529462 0.5385787 0.45727 +0.5341183 0.5385787 0.45727 +0.5385787 0.5385787 0.45727 +0.5428591 0.5385787 0.45727 +0.5469733 0.5385787 0.45727 +0.5509339 0.5385787 0.45727 +0.5547519 0.5385787 0.45727 +0.5584371 0.5385787 0.45727 +0.5619986 0.5385787 0.45727 +0.5654443 0.5385787 0.45727 +0.5687816 0.5385787 0.45727 +0.092819 0.5428591 0.45727 +0.2262531 0.5428591 0.45727 +0.2875993 0.5428591 0.45727 +0.3262122 0.5428591 0.45727 +0.3544566 0.5428591 0.45727 +0.3767383 0.5428591 0.45727 +0.3951413 0.5428591 0.45727 +0.4108177 0.5428591 0.45727 +0.4244723 0.5428591 0.45727 +0.4365675 0.5428591 0.45727 +0.4474232 0.5428591 0.45727 +0.45727 0.5428591 0.45727 +0.4662797 0.5428591 0.45727 +0.4745834 0.5428591 0.45727 +0.4822838 0.5428591 0.45727 +0.4894626 0.5428591 0.45727 +0.4961862 0.5428591 0.45727 +0.5025087 0.5428591 0.45727 +0.5084753 0.5428591 0.45727 +0.514124 0.5428591 0.45727 +0.519487 0.5428591 0.45727 +0.5245917 0.5428591 0.45727 +0.529462 0.5428591 0.45727 +0.5341183 0.5428591 0.45727 +0.5385787 0.5428591 0.45727 +0.5428591 0.5428591 0.45727 +0.5469733 0.5428591 0.45727 +0.5509339 0.5428591 0.45727 +0.5547519 0.5428591 0.45727 +0.5584371 0.5428591 0.45727 +0.5619986 0.5428591 0.45727 +0.5654443 0.5428591 0.45727 +0.5687816 0.5428591 0.45727 +0.092819 0.5469733 0.45727 +0.2262531 0.5469733 0.45727 +0.2875993 0.5469733 0.45727 +0.3262122 0.5469733 0.45727 +0.3544566 0.5469733 0.45727 +0.3767383 0.5469733 0.45727 +0.3951413 0.5469733 0.45727 +0.4108177 0.5469733 0.45727 +0.4244723 0.5469733 0.45727 +0.4365675 0.5469733 0.45727 +0.4474232 0.5469733 0.45727 +0.45727 0.5469733 0.45727 +0.4662797 0.5469733 0.45727 +0.4745834 0.5469733 0.45727 +0.4822838 0.5469733 0.45727 +0.4894626 0.5469733 0.45727 +0.4961862 0.5469733 0.45727 +0.5025087 0.5469733 0.45727 +0.5084753 0.5469733 0.45727 +0.514124 0.5469733 0.45727 +0.519487 0.5469733 0.45727 +0.5245917 0.5469733 0.45727 +0.529462 0.5469733 0.45727 +0.5341183 0.5469733 0.45727 +0.5385787 0.5469733 0.45727 +0.5428591 0.5469733 0.45727 +0.5469733 0.5469733 0.45727 +0.5509339 0.5469733 0.45727 +0.5547519 0.5469733 0.45727 +0.5584371 0.5469733 0.45727 +0.5619986 0.5469733 0.45727 +0.5654443 0.5469733 0.45727 +0.5687816 0.5469733 0.45727 +0.092819 0.5509339 0.45727 +0.2262531 0.5509339 0.45727 +0.2875993 0.5509339 0.45727 +0.3262122 0.5509339 0.45727 +0.3544566 0.5509339 0.45727 +0.3767383 0.5509339 0.45727 +0.3951413 0.5509339 0.45727 +0.4108177 0.5509339 0.45727 +0.4244723 0.5509339 0.45727 +0.4365675 0.5509339 0.45727 +0.4474232 0.5509339 0.45727 +0.45727 0.5509339 0.45727 +0.4662797 0.5509339 0.45727 +0.4745834 0.5509339 0.45727 +0.4822838 0.5509339 0.45727 +0.4894626 0.5509339 0.45727 +0.4961862 0.5509339 0.45727 +0.5025087 0.5509339 0.45727 +0.5084753 0.5509339 0.45727 +0.514124 0.5509339 0.45727 +0.519487 0.5509339 0.45727 +0.5245917 0.5509339 0.45727 +0.529462 0.5509339 0.45727 +0.5341183 0.5509339 0.45727 +0.5385787 0.5509339 0.45727 +0.5428591 0.5509339 0.45727 +0.5469733 0.5509339 0.45727 +0.5509339 0.5509339 0.45727 +0.5547519 0.5509339 0.45727 +0.5584371 0.5509339 0.45727 +0.5619986 0.5509339 0.45727 +0.5654443 0.5509339 0.45727 +0.5687816 0.5509339 0.45727 +0.092819 0.5547519 0.45727 +0.2262531 0.5547519 0.45727 +0.2875993 0.5547519 0.45727 +0.3262122 0.5547519 0.45727 +0.3544566 0.5547519 0.45727 +0.3767383 0.5547519 0.45727 +0.3951413 0.5547519 0.45727 +0.4108177 0.5547519 0.45727 +0.4244723 0.5547519 0.45727 +0.4365675 0.5547519 0.45727 +0.4474232 0.5547519 0.45727 +0.45727 0.5547519 0.45727 +0.4662797 0.5547519 0.45727 +0.4745834 0.5547519 0.45727 +0.4822838 0.5547519 0.45727 +0.4894626 0.5547519 0.45727 +0.4961862 0.5547519 0.45727 +0.5025087 0.5547519 0.45727 +0.5084753 0.5547519 0.45727 +0.514124 0.5547519 0.45727 +0.519487 0.5547519 0.45727 +0.5245917 0.5547519 0.45727 +0.529462 0.5547519 0.45727 +0.5341183 0.5547519 0.45727 +0.5385787 0.5547519 0.45727 +0.5428591 0.5547519 0.45727 +0.5469733 0.5547519 0.45727 +0.5509339 0.5547519 0.45727 +0.5547519 0.5547519 0.45727 +0.5584371 0.5547519 0.45727 +0.5619986 0.5547519 0.45727 +0.5654443 0.5547519 0.45727 +0.5687816 0.5547519 0.45727 +0.092819 0.5584371 0.45727 +0.2262531 0.5584371 0.45727 +0.2875993 0.5584371 0.45727 +0.3262122 0.5584371 0.45727 +0.3544566 0.5584371 0.45727 +0.3767383 0.5584371 0.45727 +0.3951413 0.5584371 0.45727 +0.4108177 0.5584371 0.45727 +0.4244723 0.5584371 0.45727 +0.4365675 0.5584371 0.45727 +0.4474232 0.5584371 0.45727 +0.45727 0.5584371 0.45727 +0.4662797 0.5584371 0.45727 +0.4745834 0.5584371 0.45727 +0.4822838 0.5584371 0.45727 +0.4894626 0.5584371 0.45727 +0.4961862 0.5584371 0.45727 +0.5025087 0.5584371 0.45727 +0.5084753 0.5584371 0.45727 +0.514124 0.5584371 0.45727 +0.519487 0.5584371 0.45727 +0.5245917 0.5584371 0.45727 +0.529462 0.5584371 0.45727 +0.5341183 0.5584371 0.45727 +0.5385787 0.5584371 0.45727 +0.5428591 0.5584371 0.45727 +0.5469733 0.5584371 0.45727 +0.5509339 0.5584371 0.45727 +0.5547519 0.5584371 0.45727 +0.5584371 0.5584371 0.45727 +0.5619986 0.5584371 0.45727 +0.5654443 0.5584371 0.45727 +0.5687816 0.5584371 0.45727 +0.092819 0.5619986 0.45727 +0.2262531 0.5619986 0.45727 +0.2875993 0.5619986 0.45727 +0.3262122 0.5619986 0.45727 +0.3544566 0.5619986 0.45727 +0.3767383 0.5619986 0.45727 +0.3951413 0.5619986 0.45727 +0.4108177 0.5619986 0.45727 +0.4244723 0.5619986 0.45727 +0.4365675 0.5619986 0.45727 +0.4474232 0.5619986 0.45727 +0.45727 0.5619986 0.45727 +0.4662797 0.5619986 0.45727 +0.4745834 0.5619986 0.45727 +0.4822838 0.5619986 0.45727 +0.4894626 0.5619986 0.45727 +0.4961862 0.5619986 0.45727 +0.5025087 0.5619986 0.45727 +0.5084753 0.5619986 0.45727 +0.514124 0.5619986 0.45727 +0.519487 0.5619986 0.45727 +0.5245917 0.5619986 0.45727 +0.529462 0.5619986 0.45727 +0.5341183 0.5619986 0.45727 +0.5385787 0.5619986 0.45727 +0.5428591 0.5619986 0.45727 +0.5469733 0.5619986 0.45727 +0.5509339 0.5619986 0.45727 +0.5547519 0.5619986 0.45727 +0.5584371 0.5619986 0.45727 +0.5619986 0.5619986 0.45727 +0.5654443 0.5619986 0.45727 +0.5687816 0.5619986 0.45727 +0.092819 0.5654443 0.45727 +0.2262531 0.5654443 0.45727 +0.2875993 0.5654443 0.45727 +0.3262122 0.5654443 0.45727 +0.3544566 0.5654443 0.45727 +0.3767383 0.5654443 0.45727 +0.3951413 0.5654443 0.45727 +0.4108177 0.5654443 0.45727 +0.4244723 0.5654443 0.45727 +0.4365675 0.5654443 0.45727 +0.4474232 0.5654443 0.45727 +0.45727 0.5654443 0.45727 +0.4662797 0.5654443 0.45727 +0.4745834 0.5654443 0.45727 +0.4822838 0.5654443 0.45727 +0.4894626 0.5654443 0.45727 +0.4961862 0.5654443 0.45727 +0.5025087 0.5654443 0.45727 +0.5084753 0.5654443 0.45727 +0.514124 0.5654443 0.45727 +0.519487 0.5654443 0.45727 +0.5245917 0.5654443 0.45727 +0.529462 0.5654443 0.45727 +0.5341183 0.5654443 0.45727 +0.5385787 0.5654443 0.45727 +0.5428591 0.5654443 0.45727 +0.5469733 0.5654443 0.45727 +0.5509339 0.5654443 0.45727 +0.5547519 0.5654443 0.45727 +0.5584371 0.5654443 0.45727 +0.5619986 0.5654443 0.45727 +0.5654443 0.5654443 0.45727 +0.5687816 0.5654443 0.45727 +0.092819 0.5687816 0.45727 +0.2262531 0.5687816 0.45727 +0.2875993 0.5687816 0.45727 +0.3262122 0.5687816 0.45727 +0.3544566 0.5687816 0.45727 +0.3767383 0.5687816 0.45727 +0.3951413 0.5687816 0.45727 +0.4108177 0.5687816 0.45727 +0.4244723 0.5687816 0.45727 +0.4365675 0.5687816 0.45727 +0.4474232 0.5687816 0.45727 +0.45727 0.5687816 0.45727 +0.4662797 0.5687816 0.45727 +0.4745834 0.5687816 0.45727 +0.4822838 0.5687816 0.45727 +0.4894626 0.5687816 0.45727 +0.4961862 0.5687816 0.45727 +0.5025087 0.5687816 0.45727 +0.5084753 0.5687816 0.45727 +0.514124 0.5687816 0.45727 +0.519487 0.5687816 0.45727 +0.5245917 0.5687816 0.45727 +0.529462 0.5687816 0.45727 +0.5341183 0.5687816 0.45727 +0.5385787 0.5687816 0.45727 +0.5428591 0.5687816 0.45727 +0.5469733 0.5687816 0.45727 +0.5509339 0.5687816 0.45727 +0.5547519 0.5687816 0.45727 +0.5584371 0.5687816 0.45727 +0.5619986 0.5687816 0.45727 +0.5654443 0.5687816 0.45727 +0.5687816 0.5687816 0.45727 +0.092819 0.092819 0.4662797 +0.2262531 0.092819 0.4662797 +0.2875993 0.092819 0.4662797 +0.3262122 0.092819 0.4662797 +0.3544566 0.092819 0.4662797 +0.3767383 0.092819 0.4662797 +0.3951413 0.092819 0.4662797 +0.4108177 0.092819 0.4662797 +0.4244723 0.092819 0.4662797 +0.4365675 0.092819 0.4662797 +0.4474232 0.092819 0.4662797 +0.45727 0.092819 0.4662797 +0.4662797 0.092819 0.4662797 +0.4745834 0.092819 0.4662797 +0.4822838 0.092819 0.4662797 +0.4894626 0.092819 0.4662797 +0.4961862 0.092819 0.4662797 +0.5025087 0.092819 0.4662797 +0.5084753 0.092819 0.4662797 +0.514124 0.092819 0.4662797 +0.519487 0.092819 0.4662797 +0.5245917 0.092819 0.4662797 +0.529462 0.092819 0.4662797 +0.5341183 0.092819 0.4662797 +0.5385787 0.092819 0.4662797 +0.5428591 0.092819 0.4662797 +0.5469733 0.092819 0.4662797 +0.5509339 0.092819 0.4662797 +0.5547519 0.092819 0.4662797 +0.5584371 0.092819 0.4662797 +0.5619986 0.092819 0.4662797 +0.5654443 0.092819 0.4662797 +0.5687816 0.092819 0.4662797 +0.092819 0.2262531 0.4662797 +0.2262531 0.2262531 0.4662797 +0.2875993 0.2262531 0.4662797 +0.3262122 0.2262531 0.4662797 +0.3544566 0.2262531 0.4662797 +0.3767383 0.2262531 0.4662797 +0.3951413 0.2262531 0.4662797 +0.4108177 0.2262531 0.4662797 +0.4244723 0.2262531 0.4662797 +0.4365675 0.2262531 0.4662797 +0.4474232 0.2262531 0.4662797 +0.45727 0.2262531 0.4662797 +0.4662797 0.2262531 0.4662797 +0.4745834 0.2262531 0.4662797 +0.4822838 0.2262531 0.4662797 +0.4894626 0.2262531 0.4662797 +0.4961862 0.2262531 0.4662797 +0.5025087 0.2262531 0.4662797 +0.5084753 0.2262531 0.4662797 +0.514124 0.2262531 0.4662797 +0.519487 0.2262531 0.4662797 +0.5245917 0.2262531 0.4662797 +0.529462 0.2262531 0.4662797 +0.5341183 0.2262531 0.4662797 +0.5385787 0.2262531 0.4662797 +0.5428591 0.2262531 0.4662797 +0.5469733 0.2262531 0.4662797 +0.5509339 0.2262531 0.4662797 +0.5547519 0.2262531 0.4662797 +0.5584371 0.2262531 0.4662797 +0.5619986 0.2262531 0.4662797 +0.5654443 0.2262531 0.4662797 +0.5687816 0.2262531 0.4662797 +0.092819 0.2875993 0.4662797 +0.2262531 0.2875993 0.4662797 +0.2875993 0.2875993 0.4662797 +0.3262122 0.2875993 0.4662797 +0.3544566 0.2875993 0.4662797 +0.3767383 0.2875993 0.4662797 +0.3951413 0.2875993 0.4662797 +0.4108177 0.2875993 0.4662797 +0.4244723 0.2875993 0.4662797 +0.4365675 0.2875993 0.4662797 +0.4474232 0.2875993 0.4662797 +0.45727 0.2875993 0.4662797 +0.4662797 0.2875993 0.4662797 +0.4745834 0.2875993 0.4662797 +0.4822838 0.2875993 0.4662797 +0.4894626 0.2875993 0.4662797 +0.4961862 0.2875993 0.4662797 +0.5025087 0.2875993 0.4662797 +0.5084753 0.2875993 0.4662797 +0.514124 0.2875993 0.4662797 +0.519487 0.2875993 0.4662797 +0.5245917 0.2875993 0.4662797 +0.529462 0.2875993 0.4662797 +0.5341183 0.2875993 0.4662797 +0.5385787 0.2875993 0.4662797 +0.5428591 0.2875993 0.4662797 +0.5469733 0.2875993 0.4662797 +0.5509339 0.2875993 0.4662797 +0.5547519 0.2875993 0.4662797 +0.5584371 0.2875993 0.4662797 +0.5619986 0.2875993 0.4662797 +0.5654443 0.2875993 0.4662797 +0.5687816 0.2875993 0.4662797 +0.092819 0.3262122 0.4662797 +0.2262531 0.3262122 0.4662797 +0.2875993 0.3262122 0.4662797 +0.3262122 0.3262122 0.4662797 +0.3544566 0.3262122 0.4662797 +0.3767383 0.3262122 0.4662797 +0.3951413 0.3262122 0.4662797 +0.4108177 0.3262122 0.4662797 +0.4244723 0.3262122 0.4662797 +0.4365675 0.3262122 0.4662797 +0.4474232 0.3262122 0.4662797 +0.45727 0.3262122 0.4662797 +0.4662797 0.3262122 0.4662797 +0.4745834 0.3262122 0.4662797 +0.4822838 0.3262122 0.4662797 +0.4894626 0.3262122 0.4662797 +0.4961862 0.3262122 0.4662797 +0.5025087 0.3262122 0.4662797 +0.5084753 0.3262122 0.4662797 +0.514124 0.3262122 0.4662797 +0.519487 0.3262122 0.4662797 +0.5245917 0.3262122 0.4662797 +0.529462 0.3262122 0.4662797 +0.5341183 0.3262122 0.4662797 +0.5385787 0.3262122 0.4662797 +0.5428591 0.3262122 0.4662797 +0.5469733 0.3262122 0.4662797 +0.5509339 0.3262122 0.4662797 +0.5547519 0.3262122 0.4662797 +0.5584371 0.3262122 0.4662797 +0.5619986 0.3262122 0.4662797 +0.5654443 0.3262122 0.4662797 +0.5687816 0.3262122 0.4662797 +0.092819 0.3544566 0.4662797 +0.2262531 0.3544566 0.4662797 +0.2875993 0.3544566 0.4662797 +0.3262122 0.3544566 0.4662797 +0.3544566 0.3544566 0.4662797 +0.3767383 0.3544566 0.4662797 +0.3951413 0.3544566 0.4662797 +0.4108177 0.3544566 0.4662797 +0.4244723 0.3544566 0.4662797 +0.4365675 0.3544566 0.4662797 +0.4474232 0.3544566 0.4662797 +0.45727 0.3544566 0.4662797 +0.4662797 0.3544566 0.4662797 +0.4745834 0.3544566 0.4662797 +0.4822838 0.3544566 0.4662797 +0.4894626 0.3544566 0.4662797 +0.4961862 0.3544566 0.4662797 +0.5025087 0.3544566 0.4662797 +0.5084753 0.3544566 0.4662797 +0.514124 0.3544566 0.4662797 +0.519487 0.3544566 0.4662797 +0.5245917 0.3544566 0.4662797 +0.529462 0.3544566 0.4662797 +0.5341183 0.3544566 0.4662797 +0.5385787 0.3544566 0.4662797 +0.5428591 0.3544566 0.4662797 +0.5469733 0.3544566 0.4662797 +0.5509339 0.3544566 0.4662797 +0.5547519 0.3544566 0.4662797 +0.5584371 0.3544566 0.4662797 +0.5619986 0.3544566 0.4662797 +0.5654443 0.3544566 0.4662797 +0.5687816 0.3544566 0.4662797 +0.092819 0.3767383 0.4662797 +0.2262531 0.3767383 0.4662797 +0.2875993 0.3767383 0.4662797 +0.3262122 0.3767383 0.4662797 +0.3544566 0.3767383 0.4662797 +0.3767383 0.3767383 0.4662797 +0.3951413 0.3767383 0.4662797 +0.4108177 0.3767383 0.4662797 +0.4244723 0.3767383 0.4662797 +0.4365675 0.3767383 0.4662797 +0.4474232 0.3767383 0.4662797 +0.45727 0.3767383 0.4662797 +0.4662797 0.3767383 0.4662797 +0.4745834 0.3767383 0.4662797 +0.4822838 0.3767383 0.4662797 +0.4894626 0.3767383 0.4662797 +0.4961862 0.3767383 0.4662797 +0.5025087 0.3767383 0.4662797 +0.5084753 0.3767383 0.4662797 +0.514124 0.3767383 0.4662797 +0.519487 0.3767383 0.4662797 +0.5245917 0.3767383 0.4662797 +0.529462 0.3767383 0.4662797 +0.5341183 0.3767383 0.4662797 +0.5385787 0.3767383 0.4662797 +0.5428591 0.3767383 0.4662797 +0.5469733 0.3767383 0.4662797 +0.5509339 0.3767383 0.4662797 +0.5547519 0.3767383 0.4662797 +0.5584371 0.3767383 0.4662797 +0.5619986 0.3767383 0.4662797 +0.5654443 0.3767383 0.4662797 +0.5687816 0.3767383 0.4662797 +0.092819 0.3951413 0.4662797 +0.2262531 0.3951413 0.4662797 +0.2875993 0.3951413 0.4662797 +0.3262122 0.3951413 0.4662797 +0.3544566 0.3951413 0.4662797 +0.3767383 0.3951413 0.4662797 +0.3951413 0.3951413 0.4662797 +0.4108177 0.3951413 0.4662797 +0.4244723 0.3951413 0.4662797 +0.4365675 0.3951413 0.4662797 +0.4474232 0.3951413 0.4662797 +0.45727 0.3951413 0.4662797 +0.4662797 0.3951413 0.4662797 +0.4745834 0.3951413 0.4662797 +0.4822838 0.3951413 0.4662797 +0.4894626 0.3951413 0.4662797 +0.4961862 0.3951413 0.4662797 +0.5025087 0.3951413 0.4662797 +0.5084753 0.3951413 0.4662797 +0.514124 0.3951413 0.4662797 +0.519487 0.3951413 0.4662797 +0.5245917 0.3951413 0.4662797 +0.529462 0.3951413 0.4662797 +0.5341183 0.3951413 0.4662797 +0.5385787 0.3951413 0.4662797 +0.5428591 0.3951413 0.4662797 +0.5469733 0.3951413 0.4662797 +0.5509339 0.3951413 0.4662797 +0.5547519 0.3951413 0.4662797 +0.5584371 0.3951413 0.4662797 +0.5619986 0.3951413 0.4662797 +0.5654443 0.3951413 0.4662797 +0.5687816 0.3951413 0.4662797 +0.092819 0.4108177 0.4662797 +0.2262531 0.4108177 0.4662797 +0.2875993 0.4108177 0.4662797 +0.3262122 0.4108177 0.4662797 +0.3544566 0.4108177 0.4662797 +0.3767383 0.4108177 0.4662797 +0.3951413 0.4108177 0.4662797 +0.4108177 0.4108177 0.4662797 +0.4244723 0.4108177 0.4662797 +0.4365675 0.4108177 0.4662797 +0.4474232 0.4108177 0.4662797 +0.45727 0.4108177 0.4662797 +0.4662797 0.4108177 0.4662797 +0.4745834 0.4108177 0.4662797 +0.4822838 0.4108177 0.4662797 +0.4894626 0.4108177 0.4662797 +0.4961862 0.4108177 0.4662797 +0.5025087 0.4108177 0.4662797 +0.5084753 0.4108177 0.4662797 +0.514124 0.4108177 0.4662797 +0.519487 0.4108177 0.4662797 +0.5245917 0.4108177 0.4662797 +0.529462 0.4108177 0.4662797 +0.5341183 0.4108177 0.4662797 +0.5385787 0.4108177 0.4662797 +0.5428591 0.4108177 0.4662797 +0.5469733 0.4108177 0.4662797 +0.5509339 0.4108177 0.4662797 +0.5547519 0.4108177 0.4662797 +0.5584371 0.4108177 0.4662797 +0.5619986 0.4108177 0.4662797 +0.5654443 0.4108177 0.4662797 +0.5687816 0.4108177 0.4662797 +0.092819 0.4244723 0.4662797 +0.2262531 0.4244723 0.4662797 +0.2875993 0.4244723 0.4662797 +0.3262122 0.4244723 0.4662797 +0.3544566 0.4244723 0.4662797 +0.3767383 0.4244723 0.4662797 +0.3951413 0.4244723 0.4662797 +0.4108177 0.4244723 0.4662797 +0.4244723 0.4244723 0.4662797 +0.4365675 0.4244723 0.4662797 +0.4474232 0.4244723 0.4662797 +0.45727 0.4244723 0.4662797 +0.4662797 0.4244723 0.4662797 +0.4745834 0.4244723 0.4662797 +0.4822838 0.4244723 0.4662797 +0.4894626 0.4244723 0.4662797 +0.4961862 0.4244723 0.4662797 +0.5025087 0.4244723 0.4662797 +0.5084753 0.4244723 0.4662797 +0.514124 0.4244723 0.4662797 +0.519487 0.4244723 0.4662797 +0.5245917 0.4244723 0.4662797 +0.529462 0.4244723 0.4662797 +0.5341183 0.4244723 0.4662797 +0.5385787 0.4244723 0.4662797 +0.5428591 0.4244723 0.4662797 +0.5469733 0.4244723 0.4662797 +0.5509339 0.4244723 0.4662797 +0.5547519 0.4244723 0.4662797 +0.5584371 0.4244723 0.4662797 +0.5619986 0.4244723 0.4662797 +0.5654443 0.4244723 0.4662797 +0.5687816 0.4244723 0.4662797 +0.092819 0.4365675 0.4662797 +0.2262531 0.4365675 0.4662797 +0.2875993 0.4365675 0.4662797 +0.3262122 0.4365675 0.4662797 +0.3544566 0.4365675 0.4662797 +0.3767383 0.4365675 0.4662797 +0.3951413 0.4365675 0.4662797 +0.4108177 0.4365675 0.4662797 +0.4244723 0.4365675 0.4662797 +0.4365675 0.4365675 0.4662797 +0.4474232 0.4365675 0.4662797 +0.45727 0.4365675 0.4662797 +0.4662797 0.4365675 0.4662797 +0.4745834 0.4365675 0.4662797 +0.4822838 0.4365675 0.4662797 +0.4894626 0.4365675 0.4662797 +0.4961862 0.4365675 0.4662797 +0.5025087 0.4365675 0.4662797 +0.5084753 0.4365675 0.4662797 +0.514124 0.4365675 0.4662797 +0.519487 0.4365675 0.4662797 +0.5245917 0.4365675 0.4662797 +0.529462 0.4365675 0.4662797 +0.5341183 0.4365675 0.4662797 +0.5385787 0.4365675 0.4662797 +0.5428591 0.4365675 0.4662797 +0.5469733 0.4365675 0.4662797 +0.5509339 0.4365675 0.4662797 +0.5547519 0.4365675 0.4662797 +0.5584371 0.4365675 0.4662797 +0.5619986 0.4365675 0.4662797 +0.5654443 0.4365675 0.4662797 +0.5687816 0.4365675 0.4662797 +0.092819 0.4474232 0.4662797 +0.2262531 0.4474232 0.4662797 +0.2875993 0.4474232 0.4662797 +0.3262122 0.4474232 0.4662797 +0.3544566 0.4474232 0.4662797 +0.3767383 0.4474232 0.4662797 +0.3951413 0.4474232 0.4662797 +0.4108177 0.4474232 0.4662797 +0.4244723 0.4474232 0.4662797 +0.4365675 0.4474232 0.4662797 +0.4474232 0.4474232 0.4662797 +0.45727 0.4474232 0.4662797 +0.4662797 0.4474232 0.4662797 +0.4745834 0.4474232 0.4662797 +0.4822838 0.4474232 0.4662797 +0.4894626 0.4474232 0.4662797 +0.4961862 0.4474232 0.4662797 +0.5025087 0.4474232 0.4662797 +0.5084753 0.4474232 0.4662797 +0.514124 0.4474232 0.4662797 +0.519487 0.4474232 0.4662797 +0.5245917 0.4474232 0.4662797 +0.529462 0.4474232 0.4662797 +0.5341183 0.4474232 0.4662797 +0.5385787 0.4474232 0.4662797 +0.5428591 0.4474232 0.4662797 +0.5469733 0.4474232 0.4662797 +0.5509339 0.4474232 0.4662797 +0.5547519 0.4474232 0.4662797 +0.5584371 0.4474232 0.4662797 +0.5619986 0.4474232 0.4662797 +0.5654443 0.4474232 0.4662797 +0.5687816 0.4474232 0.4662797 +0.092819 0.45727 0.4662797 +0.2262531 0.45727 0.4662797 +0.2875993 0.45727 0.4662797 +0.3262122 0.45727 0.4662797 +0.3544566 0.45727 0.4662797 +0.3767383 0.45727 0.4662797 +0.3951413 0.45727 0.4662797 +0.4108177 0.45727 0.4662797 +0.4244723 0.45727 0.4662797 +0.4365675 0.45727 0.4662797 +0.4474232 0.45727 0.4662797 +0.45727 0.45727 0.4662797 +0.4662797 0.45727 0.4662797 +0.4745834 0.45727 0.4662797 +0.4822838 0.45727 0.4662797 +0.4894626 0.45727 0.4662797 +0.4961862 0.45727 0.4662797 +0.5025087 0.45727 0.4662797 +0.5084753 0.45727 0.4662797 +0.514124 0.45727 0.4662797 +0.519487 0.45727 0.4662797 +0.5245917 0.45727 0.4662797 +0.529462 0.45727 0.4662797 +0.5341183 0.45727 0.4662797 +0.5385787 0.45727 0.4662797 +0.5428591 0.45727 0.4662797 +0.5469733 0.45727 0.4662797 +0.5509339 0.45727 0.4662797 +0.5547519 0.45727 0.4662797 +0.5584371 0.45727 0.4662797 +0.5619986 0.45727 0.4662797 +0.5654443 0.45727 0.4662797 +0.5687816 0.45727 0.4662797 +0.092819 0.4662797 0.4662797 +0.2262531 0.4662797 0.4662797 +0.2875993 0.4662797 0.4662797 +0.3262122 0.4662797 0.4662797 +0.3544566 0.4662797 0.4662797 +0.3767383 0.4662797 0.4662797 +0.3951413 0.4662797 0.4662797 +0.4108177 0.4662797 0.4662797 +0.4244723 0.4662797 0.4662797 +0.4365675 0.4662797 0.4662797 +0.4474232 0.4662797 0.4662797 +0.45727 0.4662797 0.4662797 +0.4662797 0.4662797 0.4662797 +0.4745834 0.4662797 0.4662797 +0.4822838 0.4662797 0.4662797 +0.4894626 0.4662797 0.4662797 +0.4961862 0.4662797 0.4662797 +0.5025087 0.4662797 0.4662797 +0.5084753 0.4662797 0.4662797 +0.514124 0.4662797 0.4662797 +0.519487 0.4662797 0.4662797 +0.5245917 0.4662797 0.4662797 +0.529462 0.4662797 0.4662797 +0.5341183 0.4662797 0.4662797 +0.5385787 0.4662797 0.4662797 +0.5428591 0.4662797 0.4662797 +0.5469733 0.4662797 0.4662797 +0.5509339 0.4662797 0.4662797 +0.5547519 0.4662797 0.4662797 +0.5584371 0.4662797 0.4662797 +0.5619986 0.4662797 0.4662797 +0.5654443 0.4662797 0.4662797 +0.5687816 0.4662797 0.4662797 +0.092819 0.4745834 0.4662797 +0.2262531 0.4745834 0.4662797 +0.2875993 0.4745834 0.4662797 +0.3262122 0.4745834 0.4662797 +0.3544566 0.4745834 0.4662797 +0.3767383 0.4745834 0.4662797 +0.3951413 0.4745834 0.4662797 +0.4108177 0.4745834 0.4662797 +0.4244723 0.4745834 0.4662797 +0.4365675 0.4745834 0.4662797 +0.4474232 0.4745834 0.4662797 +0.45727 0.4745834 0.4662797 +0.4662797 0.4745834 0.4662797 +0.4745834 0.4745834 0.4662797 +0.4822838 0.4745834 0.4662797 +0.4894626 0.4745834 0.4662797 +0.4961862 0.4745834 0.4662797 +0.5025087 0.4745834 0.4662797 +0.5084753 0.4745834 0.4662797 +0.514124 0.4745834 0.4662797 +0.519487 0.4745834 0.4662797 +0.5245917 0.4745834 0.4662797 +0.529462 0.4745834 0.4662797 +0.5341183 0.4745834 0.4662797 +0.5385787 0.4745834 0.4662797 +0.5428591 0.4745834 0.4662797 +0.5469733 0.4745834 0.4662797 +0.5509339 0.4745834 0.4662797 +0.5547519 0.4745834 0.4662797 +0.5584371 0.4745834 0.4662797 +0.5619986 0.4745834 0.4662797 +0.5654443 0.4745834 0.4662797 +0.5687816 0.4745834 0.4662797 +0.092819 0.4822838 0.4662797 +0.2262531 0.4822838 0.4662797 +0.2875993 0.4822838 0.4662797 +0.3262122 0.4822838 0.4662797 +0.3544566 0.4822838 0.4662797 +0.3767383 0.4822838 0.4662797 +0.3951413 0.4822838 0.4662797 +0.4108177 0.4822838 0.4662797 +0.4244723 0.4822838 0.4662797 +0.4365675 0.4822838 0.4662797 +0.4474232 0.4822838 0.4662797 +0.45727 0.4822838 0.4662797 +0.4662797 0.4822838 0.4662797 +0.4745834 0.4822838 0.4662797 +0.4822838 0.4822838 0.4662797 +0.4894626 0.4822838 0.4662797 +0.4961862 0.4822838 0.4662797 +0.5025087 0.4822838 0.4662797 +0.5084753 0.4822838 0.4662797 +0.514124 0.4822838 0.4662797 +0.519487 0.4822838 0.4662797 +0.5245917 0.4822838 0.4662797 +0.529462 0.4822838 0.4662797 +0.5341183 0.4822838 0.4662797 +0.5385787 0.4822838 0.4662797 +0.5428591 0.4822838 0.4662797 +0.5469733 0.4822838 0.4662797 +0.5509339 0.4822838 0.4662797 +0.5547519 0.4822838 0.4662797 +0.5584371 0.4822838 0.4662797 +0.5619986 0.4822838 0.4662797 +0.5654443 0.4822838 0.4662797 +0.5687816 0.4822838 0.4662797 +0.092819 0.4894626 0.4662797 +0.2262531 0.4894626 0.4662797 +0.2875993 0.4894626 0.4662797 +0.3262122 0.4894626 0.4662797 +0.3544566 0.4894626 0.4662797 +0.3767383 0.4894626 0.4662797 +0.3951413 0.4894626 0.4662797 +0.4108177 0.4894626 0.4662797 +0.4244723 0.4894626 0.4662797 +0.4365675 0.4894626 0.4662797 +0.4474232 0.4894626 0.4662797 +0.45727 0.4894626 0.4662797 +0.4662797 0.4894626 0.4662797 +0.4745834 0.4894626 0.4662797 +0.4822838 0.4894626 0.4662797 +0.4894626 0.4894626 0.4662797 +0.4961862 0.4894626 0.4662797 +0.5025087 0.4894626 0.4662797 +0.5084753 0.4894626 0.4662797 +0.514124 0.4894626 0.4662797 +0.519487 0.4894626 0.4662797 +0.5245917 0.4894626 0.4662797 +0.529462 0.4894626 0.4662797 +0.5341183 0.4894626 0.4662797 +0.5385787 0.4894626 0.4662797 +0.5428591 0.4894626 0.4662797 +0.5469733 0.4894626 0.4662797 +0.5509339 0.4894626 0.4662797 +0.5547519 0.4894626 0.4662797 +0.5584371 0.4894626 0.4662797 +0.5619986 0.4894626 0.4662797 +0.5654443 0.4894626 0.4662797 +0.5687816 0.4894626 0.4662797 +0.092819 0.4961862 0.4662797 +0.2262531 0.4961862 0.4662797 +0.2875993 0.4961862 0.4662797 +0.3262122 0.4961862 0.4662797 +0.3544566 0.4961862 0.4662797 +0.3767383 0.4961862 0.4662797 +0.3951413 0.4961862 0.4662797 +0.4108177 0.4961862 0.4662797 +0.4244723 0.4961862 0.4662797 +0.4365675 0.4961862 0.4662797 +0.4474232 0.4961862 0.4662797 +0.45727 0.4961862 0.4662797 +0.4662797 0.4961862 0.4662797 +0.4745834 0.4961862 0.4662797 +0.4822838 0.4961862 0.4662797 +0.4894626 0.4961862 0.4662797 +0.4961862 0.4961862 0.4662797 +0.5025087 0.4961862 0.4662797 +0.5084753 0.4961862 0.4662797 +0.514124 0.4961862 0.4662797 +0.519487 0.4961862 0.4662797 +0.5245917 0.4961862 0.4662797 +0.529462 0.4961862 0.4662797 +0.5341183 0.4961862 0.4662797 +0.5385787 0.4961862 0.4662797 +0.5428591 0.4961862 0.4662797 +0.5469733 0.4961862 0.4662797 +0.5509339 0.4961862 0.4662797 +0.5547519 0.4961862 0.4662797 +0.5584371 0.4961862 0.4662797 +0.5619986 0.4961862 0.4662797 +0.5654443 0.4961862 0.4662797 +0.5687816 0.4961862 0.4662797 +0.092819 0.5025087 0.4662797 +0.2262531 0.5025087 0.4662797 +0.2875993 0.5025087 0.4662797 +0.3262122 0.5025087 0.4662797 +0.3544566 0.5025087 0.4662797 +0.3767383 0.5025087 0.4662797 +0.3951413 0.5025087 0.4662797 +0.4108177 0.5025087 0.4662797 +0.4244723 0.5025087 0.4662797 +0.4365675 0.5025087 0.4662797 +0.4474232 0.5025087 0.4662797 +0.45727 0.5025087 0.4662797 +0.4662797 0.5025087 0.4662797 +0.4745834 0.5025087 0.4662797 +0.4822838 0.5025087 0.4662797 +0.4894626 0.5025087 0.4662797 +0.4961862 0.5025087 0.4662797 +0.5025087 0.5025087 0.4662797 +0.5084753 0.5025087 0.4662797 +0.514124 0.5025087 0.4662797 +0.519487 0.5025087 0.4662797 +0.5245917 0.5025087 0.4662797 +0.529462 0.5025087 0.4662797 +0.5341183 0.5025087 0.4662797 +0.5385787 0.5025087 0.4662797 +0.5428591 0.5025087 0.4662797 +0.5469733 0.5025087 0.4662797 +0.5509339 0.5025087 0.4662797 +0.5547519 0.5025087 0.4662797 +0.5584371 0.5025087 0.4662797 +0.5619986 0.5025087 0.4662797 +0.5654443 0.5025087 0.4662797 +0.5687816 0.5025087 0.4662797 +0.092819 0.5084753 0.4662797 +0.2262531 0.5084753 0.4662797 +0.2875993 0.5084753 0.4662797 +0.3262122 0.5084753 0.4662797 +0.3544566 0.5084753 0.4662797 +0.3767383 0.5084753 0.4662797 +0.3951413 0.5084753 0.4662797 +0.4108177 0.5084753 0.4662797 +0.4244723 0.5084753 0.4662797 +0.4365675 0.5084753 0.4662797 +0.4474232 0.5084753 0.4662797 +0.45727 0.5084753 0.4662797 +0.4662797 0.5084753 0.4662797 +0.4745834 0.5084753 0.4662797 +0.4822838 0.5084753 0.4662797 +0.4894626 0.5084753 0.4662797 +0.4961862 0.5084753 0.4662797 +0.5025087 0.5084753 0.4662797 +0.5084753 0.5084753 0.4662797 +0.514124 0.5084753 0.4662797 +0.519487 0.5084753 0.4662797 +0.5245917 0.5084753 0.4662797 +0.529462 0.5084753 0.4662797 +0.5341183 0.5084753 0.4662797 +0.5385787 0.5084753 0.4662797 +0.5428591 0.5084753 0.4662797 +0.5469733 0.5084753 0.4662797 +0.5509339 0.5084753 0.4662797 +0.5547519 0.5084753 0.4662797 +0.5584371 0.5084753 0.4662797 +0.5619986 0.5084753 0.4662797 +0.5654443 0.5084753 0.4662797 +0.5687816 0.5084753 0.4662797 +0.092819 0.514124 0.4662797 +0.2262531 0.514124 0.4662797 +0.2875993 0.514124 0.4662797 +0.3262122 0.514124 0.4662797 +0.3544566 0.514124 0.4662797 +0.3767383 0.514124 0.4662797 +0.3951413 0.514124 0.4662797 +0.4108177 0.514124 0.4662797 +0.4244723 0.514124 0.4662797 +0.4365675 0.514124 0.4662797 +0.4474232 0.514124 0.4662797 +0.45727 0.514124 0.4662797 +0.4662797 0.514124 0.4662797 +0.4745834 0.514124 0.4662797 +0.4822838 0.514124 0.4662797 +0.4894626 0.514124 0.4662797 +0.4961862 0.514124 0.4662797 +0.5025087 0.514124 0.4662797 +0.5084753 0.514124 0.4662797 +0.514124 0.514124 0.4662797 +0.519487 0.514124 0.4662797 +0.5245917 0.514124 0.4662797 +0.529462 0.514124 0.4662797 +0.5341183 0.514124 0.4662797 +0.5385787 0.514124 0.4662797 +0.5428591 0.514124 0.4662797 +0.5469733 0.514124 0.4662797 +0.5509339 0.514124 0.4662797 +0.5547519 0.514124 0.4662797 +0.5584371 0.514124 0.4662797 +0.5619986 0.514124 0.4662797 +0.5654443 0.514124 0.4662797 +0.5687816 0.514124 0.4662797 +0.092819 0.519487 0.4662797 +0.2262531 0.519487 0.4662797 +0.2875993 0.519487 0.4662797 +0.3262122 0.519487 0.4662797 +0.3544566 0.519487 0.4662797 +0.3767383 0.519487 0.4662797 +0.3951413 0.519487 0.4662797 +0.4108177 0.519487 0.4662797 +0.4244723 0.519487 0.4662797 +0.4365675 0.519487 0.4662797 +0.4474232 0.519487 0.4662797 +0.45727 0.519487 0.4662797 +0.4662797 0.519487 0.4662797 +0.4745834 0.519487 0.4662797 +0.4822838 0.519487 0.4662797 +0.4894626 0.519487 0.4662797 +0.4961862 0.519487 0.4662797 +0.5025087 0.519487 0.4662797 +0.5084753 0.519487 0.4662797 +0.514124 0.519487 0.4662797 +0.519487 0.519487 0.4662797 +0.5245917 0.519487 0.4662797 +0.529462 0.519487 0.4662797 +0.5341183 0.519487 0.4662797 +0.5385787 0.519487 0.4662797 +0.5428591 0.519487 0.4662797 +0.5469733 0.519487 0.4662797 +0.5509339 0.519487 0.4662797 +0.5547519 0.519487 0.4662797 +0.5584371 0.519487 0.4662797 +0.5619986 0.519487 0.4662797 +0.5654443 0.519487 0.4662797 +0.5687816 0.519487 0.4662797 +0.092819 0.5245917 0.4662797 +0.2262531 0.5245917 0.4662797 +0.2875993 0.5245917 0.4662797 +0.3262122 0.5245917 0.4662797 +0.3544566 0.5245917 0.4662797 +0.3767383 0.5245917 0.4662797 +0.3951413 0.5245917 0.4662797 +0.4108177 0.5245917 0.4662797 +0.4244723 0.5245917 0.4662797 +0.4365675 0.5245917 0.4662797 +0.4474232 0.5245917 0.4662797 +0.45727 0.5245917 0.4662797 +0.4662797 0.5245917 0.4662797 +0.4745834 0.5245917 0.4662797 +0.4822838 0.5245917 0.4662797 +0.4894626 0.5245917 0.4662797 +0.4961862 0.5245917 0.4662797 +0.5025087 0.5245917 0.4662797 +0.5084753 0.5245917 0.4662797 +0.514124 0.5245917 0.4662797 +0.519487 0.5245917 0.4662797 +0.5245917 0.5245917 0.4662797 +0.529462 0.5245917 0.4662797 +0.5341183 0.5245917 0.4662797 +0.5385787 0.5245917 0.4662797 +0.5428591 0.5245917 0.4662797 +0.5469733 0.5245917 0.4662797 +0.5509339 0.5245917 0.4662797 +0.5547519 0.5245917 0.4662797 +0.5584371 0.5245917 0.4662797 +0.5619986 0.5245917 0.4662797 +0.5654443 0.5245917 0.4662797 +0.5687816 0.5245917 0.4662797 +0.092819 0.529462 0.4662797 +0.2262531 0.529462 0.4662797 +0.2875993 0.529462 0.4662797 +0.3262122 0.529462 0.4662797 +0.3544566 0.529462 0.4662797 +0.3767383 0.529462 0.4662797 +0.3951413 0.529462 0.4662797 +0.4108177 0.529462 0.4662797 +0.4244723 0.529462 0.4662797 +0.4365675 0.529462 0.4662797 +0.4474232 0.529462 0.4662797 +0.45727 0.529462 0.4662797 +0.4662797 0.529462 0.4662797 +0.4745834 0.529462 0.4662797 +0.4822838 0.529462 0.4662797 +0.4894626 0.529462 0.4662797 +0.4961862 0.529462 0.4662797 +0.5025087 0.529462 0.4662797 +0.5084753 0.529462 0.4662797 +0.514124 0.529462 0.4662797 +0.519487 0.529462 0.4662797 +0.5245917 0.529462 0.4662797 +0.529462 0.529462 0.4662797 +0.5341183 0.529462 0.4662797 +0.5385787 0.529462 0.4662797 +0.5428591 0.529462 0.4662797 +0.5469733 0.529462 0.4662797 +0.5509339 0.529462 0.4662797 +0.5547519 0.529462 0.4662797 +0.5584371 0.529462 0.4662797 +0.5619986 0.529462 0.4662797 +0.5654443 0.529462 0.4662797 +0.5687816 0.529462 0.4662797 +0.092819 0.5341183 0.4662797 +0.2262531 0.5341183 0.4662797 +0.2875993 0.5341183 0.4662797 +0.3262122 0.5341183 0.4662797 +0.3544566 0.5341183 0.4662797 +0.3767383 0.5341183 0.4662797 +0.3951413 0.5341183 0.4662797 +0.4108177 0.5341183 0.4662797 +0.4244723 0.5341183 0.4662797 +0.4365675 0.5341183 0.4662797 +0.4474232 0.5341183 0.4662797 +0.45727 0.5341183 0.4662797 +0.4662797 0.5341183 0.4662797 +0.4745834 0.5341183 0.4662797 +0.4822838 0.5341183 0.4662797 +0.4894626 0.5341183 0.4662797 +0.4961862 0.5341183 0.4662797 +0.5025087 0.5341183 0.4662797 +0.5084753 0.5341183 0.4662797 +0.514124 0.5341183 0.4662797 +0.519487 0.5341183 0.4662797 +0.5245917 0.5341183 0.4662797 +0.529462 0.5341183 0.4662797 +0.5341183 0.5341183 0.4662797 +0.5385787 0.5341183 0.4662797 +0.5428591 0.5341183 0.4662797 +0.5469733 0.5341183 0.4662797 +0.5509339 0.5341183 0.4662797 +0.5547519 0.5341183 0.4662797 +0.5584371 0.5341183 0.4662797 +0.5619986 0.5341183 0.4662797 +0.5654443 0.5341183 0.4662797 +0.5687816 0.5341183 0.4662797 +0.092819 0.5385787 0.4662797 +0.2262531 0.5385787 0.4662797 +0.2875993 0.5385787 0.4662797 +0.3262122 0.5385787 0.4662797 +0.3544566 0.5385787 0.4662797 +0.3767383 0.5385787 0.4662797 +0.3951413 0.5385787 0.4662797 +0.4108177 0.5385787 0.4662797 +0.4244723 0.5385787 0.4662797 +0.4365675 0.5385787 0.4662797 +0.4474232 0.5385787 0.4662797 +0.45727 0.5385787 0.4662797 +0.4662797 0.5385787 0.4662797 +0.4745834 0.5385787 0.4662797 +0.4822838 0.5385787 0.4662797 +0.4894626 0.5385787 0.4662797 +0.4961862 0.5385787 0.4662797 +0.5025087 0.5385787 0.4662797 +0.5084753 0.5385787 0.4662797 +0.514124 0.5385787 0.4662797 +0.519487 0.5385787 0.4662797 +0.5245917 0.5385787 0.4662797 +0.529462 0.5385787 0.4662797 +0.5341183 0.5385787 0.4662797 +0.5385787 0.5385787 0.4662797 +0.5428591 0.5385787 0.4662797 +0.5469733 0.5385787 0.4662797 +0.5509339 0.5385787 0.4662797 +0.5547519 0.5385787 0.4662797 +0.5584371 0.5385787 0.4662797 +0.5619986 0.5385787 0.4662797 +0.5654443 0.5385787 0.4662797 +0.5687816 0.5385787 0.4662797 +0.092819 0.5428591 0.4662797 +0.2262531 0.5428591 0.4662797 +0.2875993 0.5428591 0.4662797 +0.3262122 0.5428591 0.4662797 +0.3544566 0.5428591 0.4662797 +0.3767383 0.5428591 0.4662797 +0.3951413 0.5428591 0.4662797 +0.4108177 0.5428591 0.4662797 +0.4244723 0.5428591 0.4662797 +0.4365675 0.5428591 0.4662797 +0.4474232 0.5428591 0.4662797 +0.45727 0.5428591 0.4662797 +0.4662797 0.5428591 0.4662797 +0.4745834 0.5428591 0.4662797 +0.4822838 0.5428591 0.4662797 +0.4894626 0.5428591 0.4662797 +0.4961862 0.5428591 0.4662797 +0.5025087 0.5428591 0.4662797 +0.5084753 0.5428591 0.4662797 +0.514124 0.5428591 0.4662797 +0.519487 0.5428591 0.4662797 +0.5245917 0.5428591 0.4662797 +0.529462 0.5428591 0.4662797 +0.5341183 0.5428591 0.4662797 +0.5385787 0.5428591 0.4662797 +0.5428591 0.5428591 0.4662797 +0.5469733 0.5428591 0.4662797 +0.5509339 0.5428591 0.4662797 +0.5547519 0.5428591 0.4662797 +0.5584371 0.5428591 0.4662797 +0.5619986 0.5428591 0.4662797 +0.5654443 0.5428591 0.4662797 +0.5687816 0.5428591 0.4662797 +0.092819 0.5469733 0.4662797 +0.2262531 0.5469733 0.4662797 +0.2875993 0.5469733 0.4662797 +0.3262122 0.5469733 0.4662797 +0.3544566 0.5469733 0.4662797 +0.3767383 0.5469733 0.4662797 +0.3951413 0.5469733 0.4662797 +0.4108177 0.5469733 0.4662797 +0.4244723 0.5469733 0.4662797 +0.4365675 0.5469733 0.4662797 +0.4474232 0.5469733 0.4662797 +0.45727 0.5469733 0.4662797 +0.4662797 0.5469733 0.4662797 +0.4745834 0.5469733 0.4662797 +0.4822838 0.5469733 0.4662797 +0.4894626 0.5469733 0.4662797 +0.4961862 0.5469733 0.4662797 +0.5025087 0.5469733 0.4662797 +0.5084753 0.5469733 0.4662797 +0.514124 0.5469733 0.4662797 +0.519487 0.5469733 0.4662797 +0.5245917 0.5469733 0.4662797 +0.529462 0.5469733 0.4662797 +0.5341183 0.5469733 0.4662797 +0.5385787 0.5469733 0.4662797 +0.5428591 0.5469733 0.4662797 +0.5469733 0.5469733 0.4662797 +0.5509339 0.5469733 0.4662797 +0.5547519 0.5469733 0.4662797 +0.5584371 0.5469733 0.4662797 +0.5619986 0.5469733 0.4662797 +0.5654443 0.5469733 0.4662797 +0.5687816 0.5469733 0.4662797 +0.092819 0.5509339 0.4662797 +0.2262531 0.5509339 0.4662797 +0.2875993 0.5509339 0.4662797 +0.3262122 0.5509339 0.4662797 +0.3544566 0.5509339 0.4662797 +0.3767383 0.5509339 0.4662797 +0.3951413 0.5509339 0.4662797 +0.4108177 0.5509339 0.4662797 +0.4244723 0.5509339 0.4662797 +0.4365675 0.5509339 0.4662797 +0.4474232 0.5509339 0.4662797 +0.45727 0.5509339 0.4662797 +0.4662797 0.5509339 0.4662797 +0.4745834 0.5509339 0.4662797 +0.4822838 0.5509339 0.4662797 +0.4894626 0.5509339 0.4662797 +0.4961862 0.5509339 0.4662797 +0.5025087 0.5509339 0.4662797 +0.5084753 0.5509339 0.4662797 +0.514124 0.5509339 0.4662797 +0.519487 0.5509339 0.4662797 +0.5245917 0.5509339 0.4662797 +0.529462 0.5509339 0.4662797 +0.5341183 0.5509339 0.4662797 +0.5385787 0.5509339 0.4662797 +0.5428591 0.5509339 0.4662797 +0.5469733 0.5509339 0.4662797 +0.5509339 0.5509339 0.4662797 +0.5547519 0.5509339 0.4662797 +0.5584371 0.5509339 0.4662797 +0.5619986 0.5509339 0.4662797 +0.5654443 0.5509339 0.4662797 +0.5687816 0.5509339 0.4662797 +0.092819 0.5547519 0.4662797 +0.2262531 0.5547519 0.4662797 +0.2875993 0.5547519 0.4662797 +0.3262122 0.5547519 0.4662797 +0.3544566 0.5547519 0.4662797 +0.3767383 0.5547519 0.4662797 +0.3951413 0.5547519 0.4662797 +0.4108177 0.5547519 0.4662797 +0.4244723 0.5547519 0.4662797 +0.4365675 0.5547519 0.4662797 +0.4474232 0.5547519 0.4662797 +0.45727 0.5547519 0.4662797 +0.4662797 0.5547519 0.4662797 +0.4745834 0.5547519 0.4662797 +0.4822838 0.5547519 0.4662797 +0.4894626 0.5547519 0.4662797 +0.4961862 0.5547519 0.4662797 +0.5025087 0.5547519 0.4662797 +0.5084753 0.5547519 0.4662797 +0.514124 0.5547519 0.4662797 +0.519487 0.5547519 0.4662797 +0.5245917 0.5547519 0.4662797 +0.529462 0.5547519 0.4662797 +0.5341183 0.5547519 0.4662797 +0.5385787 0.5547519 0.4662797 +0.5428591 0.5547519 0.4662797 +0.5469733 0.5547519 0.4662797 +0.5509339 0.5547519 0.4662797 +0.5547519 0.5547519 0.4662797 +0.5584371 0.5547519 0.4662797 +0.5619986 0.5547519 0.4662797 +0.5654443 0.5547519 0.4662797 +0.5687816 0.5547519 0.4662797 +0.092819 0.5584371 0.4662797 +0.2262531 0.5584371 0.4662797 +0.2875993 0.5584371 0.4662797 +0.3262122 0.5584371 0.4662797 +0.3544566 0.5584371 0.4662797 +0.3767383 0.5584371 0.4662797 +0.3951413 0.5584371 0.4662797 +0.4108177 0.5584371 0.4662797 +0.4244723 0.5584371 0.4662797 +0.4365675 0.5584371 0.4662797 +0.4474232 0.5584371 0.4662797 +0.45727 0.5584371 0.4662797 +0.4662797 0.5584371 0.4662797 +0.4745834 0.5584371 0.4662797 +0.4822838 0.5584371 0.4662797 +0.4894626 0.5584371 0.4662797 +0.4961862 0.5584371 0.4662797 +0.5025087 0.5584371 0.4662797 +0.5084753 0.5584371 0.4662797 +0.514124 0.5584371 0.4662797 +0.519487 0.5584371 0.4662797 +0.5245917 0.5584371 0.4662797 +0.529462 0.5584371 0.4662797 +0.5341183 0.5584371 0.4662797 +0.5385787 0.5584371 0.4662797 +0.5428591 0.5584371 0.4662797 +0.5469733 0.5584371 0.4662797 +0.5509339 0.5584371 0.4662797 +0.5547519 0.5584371 0.4662797 +0.5584371 0.5584371 0.4662797 +0.5619986 0.5584371 0.4662797 +0.5654443 0.5584371 0.4662797 +0.5687816 0.5584371 0.4662797 +0.092819 0.5619986 0.4662797 +0.2262531 0.5619986 0.4662797 +0.2875993 0.5619986 0.4662797 +0.3262122 0.5619986 0.4662797 +0.3544566 0.5619986 0.4662797 +0.3767383 0.5619986 0.4662797 +0.3951413 0.5619986 0.4662797 +0.4108177 0.5619986 0.4662797 +0.4244723 0.5619986 0.4662797 +0.4365675 0.5619986 0.4662797 +0.4474232 0.5619986 0.4662797 +0.45727 0.5619986 0.4662797 +0.4662797 0.5619986 0.4662797 +0.4745834 0.5619986 0.4662797 +0.4822838 0.5619986 0.4662797 +0.4894626 0.5619986 0.4662797 +0.4961862 0.5619986 0.4662797 +0.5025087 0.5619986 0.4662797 +0.5084753 0.5619986 0.4662797 +0.514124 0.5619986 0.4662797 +0.519487 0.5619986 0.4662797 +0.5245917 0.5619986 0.4662797 +0.529462 0.5619986 0.4662797 +0.5341183 0.5619986 0.4662797 +0.5385787 0.5619986 0.4662797 +0.5428591 0.5619986 0.4662797 +0.5469733 0.5619986 0.4662797 +0.5509339 0.5619986 0.4662797 +0.5547519 0.5619986 0.4662797 +0.5584371 0.5619986 0.4662797 +0.5619986 0.5619986 0.4662797 +0.5654443 0.5619986 0.4662797 +0.5687816 0.5619986 0.4662797 +0.092819 0.5654443 0.4662797 +0.2262531 0.5654443 0.4662797 +0.2875993 0.5654443 0.4662797 +0.3262122 0.5654443 0.4662797 +0.3544566 0.5654443 0.4662797 +0.3767383 0.5654443 0.4662797 +0.3951413 0.5654443 0.4662797 +0.4108177 0.5654443 0.4662797 +0.4244723 0.5654443 0.4662797 +0.4365675 0.5654443 0.4662797 +0.4474232 0.5654443 0.4662797 +0.45727 0.5654443 0.4662797 +0.4662797 0.5654443 0.4662797 +0.4745834 0.5654443 0.4662797 +0.4822838 0.5654443 0.4662797 +0.4894626 0.5654443 0.4662797 +0.4961862 0.5654443 0.4662797 +0.5025087 0.5654443 0.4662797 +0.5084753 0.5654443 0.4662797 +0.514124 0.5654443 0.4662797 +0.519487 0.5654443 0.4662797 +0.5245917 0.5654443 0.4662797 +0.529462 0.5654443 0.4662797 +0.5341183 0.5654443 0.4662797 +0.5385787 0.5654443 0.4662797 +0.5428591 0.5654443 0.4662797 +0.5469733 0.5654443 0.4662797 +0.5509339 0.5654443 0.4662797 +0.5547519 0.5654443 0.4662797 +0.5584371 0.5654443 0.4662797 +0.5619986 0.5654443 0.4662797 +0.5654443 0.5654443 0.4662797 +0.5687816 0.5654443 0.4662797 +0.092819 0.5687816 0.4662797 +0.2262531 0.5687816 0.4662797 +0.2875993 0.5687816 0.4662797 +0.3262122 0.5687816 0.4662797 +0.3544566 0.5687816 0.4662797 +0.3767383 0.5687816 0.4662797 +0.3951413 0.5687816 0.4662797 +0.4108177 0.5687816 0.4662797 +0.4244723 0.5687816 0.4662797 +0.4365675 0.5687816 0.4662797 +0.4474232 0.5687816 0.4662797 +0.45727 0.5687816 0.4662797 +0.4662797 0.5687816 0.4662797 +0.4745834 0.5687816 0.4662797 +0.4822838 0.5687816 0.4662797 +0.4894626 0.5687816 0.4662797 +0.4961862 0.5687816 0.4662797 +0.5025087 0.5687816 0.4662797 +0.5084753 0.5687816 0.4662797 +0.514124 0.5687816 0.4662797 +0.519487 0.5687816 0.4662797 +0.5245917 0.5687816 0.4662797 +0.529462 0.5687816 0.4662797 +0.5341183 0.5687816 0.4662797 +0.5385787 0.5687816 0.4662797 +0.5428591 0.5687816 0.4662797 +0.5469733 0.5687816 0.4662797 +0.5509339 0.5687816 0.4662797 +0.5547519 0.5687816 0.4662797 +0.5584371 0.5687816 0.4662797 +0.5619986 0.5687816 0.4662797 +0.5654443 0.5687816 0.4662797 +0.5687816 0.5687816 0.4662797 +0.092819 0.092819 0.4745834 +0.2262531 0.092819 0.4745834 +0.2875993 0.092819 0.4745834 +0.3262122 0.092819 0.4745834 +0.3544566 0.092819 0.4745834 +0.3767383 0.092819 0.4745834 +0.3951413 0.092819 0.4745834 +0.4108177 0.092819 0.4745834 +0.4244723 0.092819 0.4745834 +0.4365675 0.092819 0.4745834 +0.4474232 0.092819 0.4745834 +0.45727 0.092819 0.4745834 +0.4662797 0.092819 0.4745834 +0.4745834 0.092819 0.4745834 +0.4822838 0.092819 0.4745834 +0.4894626 0.092819 0.4745834 +0.4961862 0.092819 0.4745834 +0.5025087 0.092819 0.4745834 +0.5084753 0.092819 0.4745834 +0.514124 0.092819 0.4745834 +0.519487 0.092819 0.4745834 +0.5245917 0.092819 0.4745834 +0.529462 0.092819 0.4745834 +0.5341183 0.092819 0.4745834 +0.5385787 0.092819 0.4745834 +0.5428591 0.092819 0.4745834 +0.5469733 0.092819 0.4745834 +0.5509339 0.092819 0.4745834 +0.5547519 0.092819 0.4745834 +0.5584371 0.092819 0.4745834 +0.5619986 0.092819 0.4745834 +0.5654443 0.092819 0.4745834 +0.5687816 0.092819 0.4745834 +0.092819 0.2262531 0.4745834 +0.2262531 0.2262531 0.4745834 +0.2875993 0.2262531 0.4745834 +0.3262122 0.2262531 0.4745834 +0.3544566 0.2262531 0.4745834 +0.3767383 0.2262531 0.4745834 +0.3951413 0.2262531 0.4745834 +0.4108177 0.2262531 0.4745834 +0.4244723 0.2262531 0.4745834 +0.4365675 0.2262531 0.4745834 +0.4474232 0.2262531 0.4745834 +0.45727 0.2262531 0.4745834 +0.4662797 0.2262531 0.4745834 +0.4745834 0.2262531 0.4745834 +0.4822838 0.2262531 0.4745834 +0.4894626 0.2262531 0.4745834 +0.4961862 0.2262531 0.4745834 +0.5025087 0.2262531 0.4745834 +0.5084753 0.2262531 0.4745834 +0.514124 0.2262531 0.4745834 +0.519487 0.2262531 0.4745834 +0.5245917 0.2262531 0.4745834 +0.529462 0.2262531 0.4745834 +0.5341183 0.2262531 0.4745834 +0.5385787 0.2262531 0.4745834 +0.5428591 0.2262531 0.4745834 +0.5469733 0.2262531 0.4745834 +0.5509339 0.2262531 0.4745834 +0.5547519 0.2262531 0.4745834 +0.5584371 0.2262531 0.4745834 +0.5619986 0.2262531 0.4745834 +0.5654443 0.2262531 0.4745834 +0.5687816 0.2262531 0.4745834 +0.092819 0.2875993 0.4745834 +0.2262531 0.2875993 0.4745834 +0.2875993 0.2875993 0.4745834 +0.3262122 0.2875993 0.4745834 +0.3544566 0.2875993 0.4745834 +0.3767383 0.2875993 0.4745834 +0.3951413 0.2875993 0.4745834 +0.4108177 0.2875993 0.4745834 +0.4244723 0.2875993 0.4745834 +0.4365675 0.2875993 0.4745834 +0.4474232 0.2875993 0.4745834 +0.45727 0.2875993 0.4745834 +0.4662797 0.2875993 0.4745834 +0.4745834 0.2875993 0.4745834 +0.4822838 0.2875993 0.4745834 +0.4894626 0.2875993 0.4745834 +0.4961862 0.2875993 0.4745834 +0.5025087 0.2875993 0.4745834 +0.5084753 0.2875993 0.4745834 +0.514124 0.2875993 0.4745834 +0.519487 0.2875993 0.4745834 +0.5245917 0.2875993 0.4745834 +0.529462 0.2875993 0.4745834 +0.5341183 0.2875993 0.4745834 +0.5385787 0.2875993 0.4745834 +0.5428591 0.2875993 0.4745834 +0.5469733 0.2875993 0.4745834 +0.5509339 0.2875993 0.4745834 +0.5547519 0.2875993 0.4745834 +0.5584371 0.2875993 0.4745834 +0.5619986 0.2875993 0.4745834 +0.5654443 0.2875993 0.4745834 +0.5687816 0.2875993 0.4745834 +0.092819 0.3262122 0.4745834 +0.2262531 0.3262122 0.4745834 +0.2875993 0.3262122 0.4745834 +0.3262122 0.3262122 0.4745834 +0.3544566 0.3262122 0.4745834 +0.3767383 0.3262122 0.4745834 +0.3951413 0.3262122 0.4745834 +0.4108177 0.3262122 0.4745834 +0.4244723 0.3262122 0.4745834 +0.4365675 0.3262122 0.4745834 +0.4474232 0.3262122 0.4745834 +0.45727 0.3262122 0.4745834 +0.4662797 0.3262122 0.4745834 +0.4745834 0.3262122 0.4745834 +0.4822838 0.3262122 0.4745834 +0.4894626 0.3262122 0.4745834 +0.4961862 0.3262122 0.4745834 +0.5025087 0.3262122 0.4745834 +0.5084753 0.3262122 0.4745834 +0.514124 0.3262122 0.4745834 +0.519487 0.3262122 0.4745834 +0.5245917 0.3262122 0.4745834 +0.529462 0.3262122 0.4745834 +0.5341183 0.3262122 0.4745834 +0.5385787 0.3262122 0.4745834 +0.5428591 0.3262122 0.4745834 +0.5469733 0.3262122 0.4745834 +0.5509339 0.3262122 0.4745834 +0.5547519 0.3262122 0.4745834 +0.5584371 0.3262122 0.4745834 +0.5619986 0.3262122 0.4745834 +0.5654443 0.3262122 0.4745834 +0.5687816 0.3262122 0.4745834 +0.092819 0.3544566 0.4745834 +0.2262531 0.3544566 0.4745834 +0.2875993 0.3544566 0.4745834 +0.3262122 0.3544566 0.4745834 +0.3544566 0.3544566 0.4745834 +0.3767383 0.3544566 0.4745834 +0.3951413 0.3544566 0.4745834 +0.4108177 0.3544566 0.4745834 +0.4244723 0.3544566 0.4745834 +0.4365675 0.3544566 0.4745834 +0.4474232 0.3544566 0.4745834 +0.45727 0.3544566 0.4745834 +0.4662797 0.3544566 0.4745834 +0.4745834 0.3544566 0.4745834 +0.4822838 0.3544566 0.4745834 +0.4894626 0.3544566 0.4745834 +0.4961862 0.3544566 0.4745834 +0.5025087 0.3544566 0.4745834 +0.5084753 0.3544566 0.4745834 +0.514124 0.3544566 0.4745834 +0.519487 0.3544566 0.4745834 +0.5245917 0.3544566 0.4745834 +0.529462 0.3544566 0.4745834 +0.5341183 0.3544566 0.4745834 +0.5385787 0.3544566 0.4745834 +0.5428591 0.3544566 0.4745834 +0.5469733 0.3544566 0.4745834 +0.5509339 0.3544566 0.4745834 +0.5547519 0.3544566 0.4745834 +0.5584371 0.3544566 0.4745834 +0.5619986 0.3544566 0.4745834 +0.5654443 0.3544566 0.4745834 +0.5687816 0.3544566 0.4745834 +0.092819 0.3767383 0.4745834 +0.2262531 0.3767383 0.4745834 +0.2875993 0.3767383 0.4745834 +0.3262122 0.3767383 0.4745834 +0.3544566 0.3767383 0.4745834 +0.3767383 0.3767383 0.4745834 +0.3951413 0.3767383 0.4745834 +0.4108177 0.3767383 0.4745834 +0.4244723 0.3767383 0.4745834 +0.4365675 0.3767383 0.4745834 +0.4474232 0.3767383 0.4745834 +0.45727 0.3767383 0.4745834 +0.4662797 0.3767383 0.4745834 +0.4745834 0.3767383 0.4745834 +0.4822838 0.3767383 0.4745834 +0.4894626 0.3767383 0.4745834 +0.4961862 0.3767383 0.4745834 +0.5025087 0.3767383 0.4745834 +0.5084753 0.3767383 0.4745834 +0.514124 0.3767383 0.4745834 +0.519487 0.3767383 0.4745834 +0.5245917 0.3767383 0.4745834 +0.529462 0.3767383 0.4745834 +0.5341183 0.3767383 0.4745834 +0.5385787 0.3767383 0.4745834 +0.5428591 0.3767383 0.4745834 +0.5469733 0.3767383 0.4745834 +0.5509339 0.3767383 0.4745834 +0.5547519 0.3767383 0.4745834 +0.5584371 0.3767383 0.4745834 +0.5619986 0.3767383 0.4745834 +0.5654443 0.3767383 0.4745834 +0.5687816 0.3767383 0.4745834 +0.092819 0.3951413 0.4745834 +0.2262531 0.3951413 0.4745834 +0.2875993 0.3951413 0.4745834 +0.3262122 0.3951413 0.4745834 +0.3544566 0.3951413 0.4745834 +0.3767383 0.3951413 0.4745834 +0.3951413 0.3951413 0.4745834 +0.4108177 0.3951413 0.4745834 +0.4244723 0.3951413 0.4745834 +0.4365675 0.3951413 0.4745834 +0.4474232 0.3951413 0.4745834 +0.45727 0.3951413 0.4745834 +0.4662797 0.3951413 0.4745834 +0.4745834 0.3951413 0.4745834 +0.4822838 0.3951413 0.4745834 +0.4894626 0.3951413 0.4745834 +0.4961862 0.3951413 0.4745834 +0.5025087 0.3951413 0.4745834 +0.5084753 0.3951413 0.4745834 +0.514124 0.3951413 0.4745834 +0.519487 0.3951413 0.4745834 +0.5245917 0.3951413 0.4745834 +0.529462 0.3951413 0.4745834 +0.5341183 0.3951413 0.4745834 +0.5385787 0.3951413 0.4745834 +0.5428591 0.3951413 0.4745834 +0.5469733 0.3951413 0.4745834 +0.5509339 0.3951413 0.4745834 +0.5547519 0.3951413 0.4745834 +0.5584371 0.3951413 0.4745834 +0.5619986 0.3951413 0.4745834 +0.5654443 0.3951413 0.4745834 +0.5687816 0.3951413 0.4745834 +0.092819 0.4108177 0.4745834 +0.2262531 0.4108177 0.4745834 +0.2875993 0.4108177 0.4745834 +0.3262122 0.4108177 0.4745834 +0.3544566 0.4108177 0.4745834 +0.3767383 0.4108177 0.4745834 +0.3951413 0.4108177 0.4745834 +0.4108177 0.4108177 0.4745834 +0.4244723 0.4108177 0.4745834 +0.4365675 0.4108177 0.4745834 +0.4474232 0.4108177 0.4745834 +0.45727 0.4108177 0.4745834 +0.4662797 0.4108177 0.4745834 +0.4745834 0.4108177 0.4745834 +0.4822838 0.4108177 0.4745834 +0.4894626 0.4108177 0.4745834 +0.4961862 0.4108177 0.4745834 +0.5025087 0.4108177 0.4745834 +0.5084753 0.4108177 0.4745834 +0.514124 0.4108177 0.4745834 +0.519487 0.4108177 0.4745834 +0.5245917 0.4108177 0.4745834 +0.529462 0.4108177 0.4745834 +0.5341183 0.4108177 0.4745834 +0.5385787 0.4108177 0.4745834 +0.5428591 0.4108177 0.4745834 +0.5469733 0.4108177 0.4745834 +0.5509339 0.4108177 0.4745834 +0.5547519 0.4108177 0.4745834 +0.5584371 0.4108177 0.4745834 +0.5619986 0.4108177 0.4745834 +0.5654443 0.4108177 0.4745834 +0.5687816 0.4108177 0.4745834 +0.092819 0.4244723 0.4745834 +0.2262531 0.4244723 0.4745834 +0.2875993 0.4244723 0.4745834 +0.3262122 0.4244723 0.4745834 +0.3544566 0.4244723 0.4745834 +0.3767383 0.4244723 0.4745834 +0.3951413 0.4244723 0.4745834 +0.4108177 0.4244723 0.4745834 +0.4244723 0.4244723 0.4745834 +0.4365675 0.4244723 0.4745834 +0.4474232 0.4244723 0.4745834 +0.45727 0.4244723 0.4745834 +0.4662797 0.4244723 0.4745834 +0.4745834 0.4244723 0.4745834 +0.4822838 0.4244723 0.4745834 +0.4894626 0.4244723 0.4745834 +0.4961862 0.4244723 0.4745834 +0.5025087 0.4244723 0.4745834 +0.5084753 0.4244723 0.4745834 +0.514124 0.4244723 0.4745834 +0.519487 0.4244723 0.4745834 +0.5245917 0.4244723 0.4745834 +0.529462 0.4244723 0.4745834 +0.5341183 0.4244723 0.4745834 +0.5385787 0.4244723 0.4745834 +0.5428591 0.4244723 0.4745834 +0.5469733 0.4244723 0.4745834 +0.5509339 0.4244723 0.4745834 +0.5547519 0.4244723 0.4745834 +0.5584371 0.4244723 0.4745834 +0.5619986 0.4244723 0.4745834 +0.5654443 0.4244723 0.4745834 +0.5687816 0.4244723 0.4745834 +0.092819 0.4365675 0.4745834 +0.2262531 0.4365675 0.4745834 +0.2875993 0.4365675 0.4745834 +0.3262122 0.4365675 0.4745834 +0.3544566 0.4365675 0.4745834 +0.3767383 0.4365675 0.4745834 +0.3951413 0.4365675 0.4745834 +0.4108177 0.4365675 0.4745834 +0.4244723 0.4365675 0.4745834 +0.4365675 0.4365675 0.4745834 +0.4474232 0.4365675 0.4745834 +0.45727 0.4365675 0.4745834 +0.4662797 0.4365675 0.4745834 +0.4745834 0.4365675 0.4745834 +0.4822838 0.4365675 0.4745834 +0.4894626 0.4365675 0.4745834 +0.4961862 0.4365675 0.4745834 +0.5025087 0.4365675 0.4745834 +0.5084753 0.4365675 0.4745834 +0.514124 0.4365675 0.4745834 +0.519487 0.4365675 0.4745834 +0.5245917 0.4365675 0.4745834 +0.529462 0.4365675 0.4745834 +0.5341183 0.4365675 0.4745834 +0.5385787 0.4365675 0.4745834 +0.5428591 0.4365675 0.4745834 +0.5469733 0.4365675 0.4745834 +0.5509339 0.4365675 0.4745834 +0.5547519 0.4365675 0.4745834 +0.5584371 0.4365675 0.4745834 +0.5619986 0.4365675 0.4745834 +0.5654443 0.4365675 0.4745834 +0.5687816 0.4365675 0.4745834 +0.092819 0.4474232 0.4745834 +0.2262531 0.4474232 0.4745834 +0.2875993 0.4474232 0.4745834 +0.3262122 0.4474232 0.4745834 +0.3544566 0.4474232 0.4745834 +0.3767383 0.4474232 0.4745834 +0.3951413 0.4474232 0.4745834 +0.4108177 0.4474232 0.4745834 +0.4244723 0.4474232 0.4745834 +0.4365675 0.4474232 0.4745834 +0.4474232 0.4474232 0.4745834 +0.45727 0.4474232 0.4745834 +0.4662797 0.4474232 0.4745834 +0.4745834 0.4474232 0.4745834 +0.4822838 0.4474232 0.4745834 +0.4894626 0.4474232 0.4745834 +0.4961862 0.4474232 0.4745834 +0.5025087 0.4474232 0.4745834 +0.5084753 0.4474232 0.4745834 +0.514124 0.4474232 0.4745834 +0.519487 0.4474232 0.4745834 +0.5245917 0.4474232 0.4745834 +0.529462 0.4474232 0.4745834 +0.5341183 0.4474232 0.4745834 +0.5385787 0.4474232 0.4745834 +0.5428591 0.4474232 0.4745834 +0.5469733 0.4474232 0.4745834 +0.5509339 0.4474232 0.4745834 +0.5547519 0.4474232 0.4745834 +0.5584371 0.4474232 0.4745834 +0.5619986 0.4474232 0.4745834 +0.5654443 0.4474232 0.4745834 +0.5687816 0.4474232 0.4745834 +0.092819 0.45727 0.4745834 +0.2262531 0.45727 0.4745834 +0.2875993 0.45727 0.4745834 +0.3262122 0.45727 0.4745834 +0.3544566 0.45727 0.4745834 +0.3767383 0.45727 0.4745834 +0.3951413 0.45727 0.4745834 +0.4108177 0.45727 0.4745834 +0.4244723 0.45727 0.4745834 +0.4365675 0.45727 0.4745834 +0.4474232 0.45727 0.4745834 +0.45727 0.45727 0.4745834 +0.4662797 0.45727 0.4745834 +0.4745834 0.45727 0.4745834 +0.4822838 0.45727 0.4745834 +0.4894626 0.45727 0.4745834 +0.4961862 0.45727 0.4745834 +0.5025087 0.45727 0.4745834 +0.5084753 0.45727 0.4745834 +0.514124 0.45727 0.4745834 +0.519487 0.45727 0.4745834 +0.5245917 0.45727 0.4745834 +0.529462 0.45727 0.4745834 +0.5341183 0.45727 0.4745834 +0.5385787 0.45727 0.4745834 +0.5428591 0.45727 0.4745834 +0.5469733 0.45727 0.4745834 +0.5509339 0.45727 0.4745834 +0.5547519 0.45727 0.4745834 +0.5584371 0.45727 0.4745834 +0.5619986 0.45727 0.4745834 +0.5654443 0.45727 0.4745834 +0.5687816 0.45727 0.4745834 +0.092819 0.4662797 0.4745834 +0.2262531 0.4662797 0.4745834 +0.2875993 0.4662797 0.4745834 +0.3262122 0.4662797 0.4745834 +0.3544566 0.4662797 0.4745834 +0.3767383 0.4662797 0.4745834 +0.3951413 0.4662797 0.4745834 +0.4108177 0.4662797 0.4745834 +0.4244723 0.4662797 0.4745834 +0.4365675 0.4662797 0.4745834 +0.4474232 0.4662797 0.4745834 +0.45727 0.4662797 0.4745834 +0.4662797 0.4662797 0.4745834 +0.4745834 0.4662797 0.4745834 +0.4822838 0.4662797 0.4745834 +0.4894626 0.4662797 0.4745834 +0.4961862 0.4662797 0.4745834 +0.5025087 0.4662797 0.4745834 +0.5084753 0.4662797 0.4745834 +0.514124 0.4662797 0.4745834 +0.519487 0.4662797 0.4745834 +0.5245917 0.4662797 0.4745834 +0.529462 0.4662797 0.4745834 +0.5341183 0.4662797 0.4745834 +0.5385787 0.4662797 0.4745834 +0.5428591 0.4662797 0.4745834 +0.5469733 0.4662797 0.4745834 +0.5509339 0.4662797 0.4745834 +0.5547519 0.4662797 0.4745834 +0.5584371 0.4662797 0.4745834 +0.5619986 0.4662797 0.4745834 +0.5654443 0.4662797 0.4745834 +0.5687816 0.4662797 0.4745834 +0.092819 0.4745834 0.4745834 +0.2262531 0.4745834 0.4745834 +0.2875993 0.4745834 0.4745834 +0.3262122 0.4745834 0.4745834 +0.3544566 0.4745834 0.4745834 +0.3767383 0.4745834 0.4745834 +0.3951413 0.4745834 0.4745834 +0.4108177 0.4745834 0.4745834 +0.4244723 0.4745834 0.4745834 +0.4365675 0.4745834 0.4745834 +0.4474232 0.4745834 0.4745834 +0.45727 0.4745834 0.4745834 +0.4662797 0.4745834 0.4745834 +0.4745834 0.4745834 0.4745834 +0.4822838 0.4745834 0.4745834 +0.4894626 0.4745834 0.4745834 +0.4961862 0.4745834 0.4745834 +0.5025087 0.4745834 0.4745834 +0.5084753 0.4745834 0.4745834 +0.514124 0.4745834 0.4745834 +0.519487 0.4745834 0.4745834 +0.5245917 0.4745834 0.4745834 +0.529462 0.4745834 0.4745834 +0.5341183 0.4745834 0.4745834 +0.5385787 0.4745834 0.4745834 +0.5428591 0.4745834 0.4745834 +0.5469733 0.4745834 0.4745834 +0.5509339 0.4745834 0.4745834 +0.5547519 0.4745834 0.4745834 +0.5584371 0.4745834 0.4745834 +0.5619986 0.4745834 0.4745834 +0.5654443 0.4745834 0.4745834 +0.5687816 0.4745834 0.4745834 +0.092819 0.4822838 0.4745834 +0.2262531 0.4822838 0.4745834 +0.2875993 0.4822838 0.4745834 +0.3262122 0.4822838 0.4745834 +0.3544566 0.4822838 0.4745834 +0.3767383 0.4822838 0.4745834 +0.3951413 0.4822838 0.4745834 +0.4108177 0.4822838 0.4745834 +0.4244723 0.4822838 0.4745834 +0.4365675 0.4822838 0.4745834 +0.4474232 0.4822838 0.4745834 +0.45727 0.4822838 0.4745834 +0.4662797 0.4822838 0.4745834 +0.4745834 0.4822838 0.4745834 +0.4822838 0.4822838 0.4745834 +0.4894626 0.4822838 0.4745834 +0.4961862 0.4822838 0.4745834 +0.5025087 0.4822838 0.4745834 +0.5084753 0.4822838 0.4745834 +0.514124 0.4822838 0.4745834 +0.519487 0.4822838 0.4745834 +0.5245917 0.4822838 0.4745834 +0.529462 0.4822838 0.4745834 +0.5341183 0.4822838 0.4745834 +0.5385787 0.4822838 0.4745834 +0.5428591 0.4822838 0.4745834 +0.5469733 0.4822838 0.4745834 +0.5509339 0.4822838 0.4745834 +0.5547519 0.4822838 0.4745834 +0.5584371 0.4822838 0.4745834 +0.5619986 0.4822838 0.4745834 +0.5654443 0.4822838 0.4745834 +0.5687816 0.4822838 0.4745834 +0.092819 0.4894626 0.4745834 +0.2262531 0.4894626 0.4745834 +0.2875993 0.4894626 0.4745834 +0.3262122 0.4894626 0.4745834 +0.3544566 0.4894626 0.4745834 +0.3767383 0.4894626 0.4745834 +0.3951413 0.4894626 0.4745834 +0.4108177 0.4894626 0.4745834 +0.4244723 0.4894626 0.4745834 +0.4365675 0.4894626 0.4745834 +0.4474232 0.4894626 0.4745834 +0.45727 0.4894626 0.4745834 +0.4662797 0.4894626 0.4745834 +0.4745834 0.4894626 0.4745834 +0.4822838 0.4894626 0.4745834 +0.4894626 0.4894626 0.4745834 +0.4961862 0.4894626 0.4745834 +0.5025087 0.4894626 0.4745834 +0.5084753 0.4894626 0.4745834 +0.514124 0.4894626 0.4745834 +0.519487 0.4894626 0.4745834 +0.5245917 0.4894626 0.4745834 +0.529462 0.4894626 0.4745834 +0.5341183 0.4894626 0.4745834 +0.5385787 0.4894626 0.4745834 +0.5428591 0.4894626 0.4745834 +0.5469733 0.4894626 0.4745834 +0.5509339 0.4894626 0.4745834 +0.5547519 0.4894626 0.4745834 +0.5584371 0.4894626 0.4745834 +0.5619986 0.4894626 0.4745834 +0.5654443 0.4894626 0.4745834 +0.5687816 0.4894626 0.4745834 +0.092819 0.4961862 0.4745834 +0.2262531 0.4961862 0.4745834 +0.2875993 0.4961862 0.4745834 +0.3262122 0.4961862 0.4745834 +0.3544566 0.4961862 0.4745834 +0.3767383 0.4961862 0.4745834 +0.3951413 0.4961862 0.4745834 +0.4108177 0.4961862 0.4745834 +0.4244723 0.4961862 0.4745834 +0.4365675 0.4961862 0.4745834 +0.4474232 0.4961862 0.4745834 +0.45727 0.4961862 0.4745834 +0.4662797 0.4961862 0.4745834 +0.4745834 0.4961862 0.4745834 +0.4822838 0.4961862 0.4745834 +0.4894626 0.4961862 0.4745834 +0.4961862 0.4961862 0.4745834 +0.5025087 0.4961862 0.4745834 +0.5084753 0.4961862 0.4745834 +0.514124 0.4961862 0.4745834 +0.519487 0.4961862 0.4745834 +0.5245917 0.4961862 0.4745834 +0.529462 0.4961862 0.4745834 +0.5341183 0.4961862 0.4745834 +0.5385787 0.4961862 0.4745834 +0.5428591 0.4961862 0.4745834 +0.5469733 0.4961862 0.4745834 +0.5509339 0.4961862 0.4745834 +0.5547519 0.4961862 0.4745834 +0.5584371 0.4961862 0.4745834 +0.5619986 0.4961862 0.4745834 +0.5654443 0.4961862 0.4745834 +0.5687816 0.4961862 0.4745834 +0.092819 0.5025087 0.4745834 +0.2262531 0.5025087 0.4745834 +0.2875993 0.5025087 0.4745834 +0.3262122 0.5025087 0.4745834 +0.3544566 0.5025087 0.4745834 +0.3767383 0.5025087 0.4745834 +0.3951413 0.5025087 0.4745834 +0.4108177 0.5025087 0.4745834 +0.4244723 0.5025087 0.4745834 +0.4365675 0.5025087 0.4745834 +0.4474232 0.5025087 0.4745834 +0.45727 0.5025087 0.4745834 +0.4662797 0.5025087 0.4745834 +0.4745834 0.5025087 0.4745834 +0.4822838 0.5025087 0.4745834 +0.4894626 0.5025087 0.4745834 +0.4961862 0.5025087 0.4745834 +0.5025087 0.5025087 0.4745834 +0.5084753 0.5025087 0.4745834 +0.514124 0.5025087 0.4745834 +0.519487 0.5025087 0.4745834 +0.5245917 0.5025087 0.4745834 +0.529462 0.5025087 0.4745834 +0.5341183 0.5025087 0.4745834 +0.5385787 0.5025087 0.4745834 +0.5428591 0.5025087 0.4745834 +0.5469733 0.5025087 0.4745834 +0.5509339 0.5025087 0.4745834 +0.5547519 0.5025087 0.4745834 +0.5584371 0.5025087 0.4745834 +0.5619986 0.5025087 0.4745834 +0.5654443 0.5025087 0.4745834 +0.5687816 0.5025087 0.4745834 +0.092819 0.5084753 0.4745834 +0.2262531 0.5084753 0.4745834 +0.2875993 0.5084753 0.4745834 +0.3262122 0.5084753 0.4745834 +0.3544566 0.5084753 0.4745834 +0.3767383 0.5084753 0.4745834 +0.3951413 0.5084753 0.4745834 +0.4108177 0.5084753 0.4745834 +0.4244723 0.5084753 0.4745834 +0.4365675 0.5084753 0.4745834 +0.4474232 0.5084753 0.4745834 +0.45727 0.5084753 0.4745834 +0.4662797 0.5084753 0.4745834 +0.4745834 0.5084753 0.4745834 +0.4822838 0.5084753 0.4745834 +0.4894626 0.5084753 0.4745834 +0.4961862 0.5084753 0.4745834 +0.5025087 0.5084753 0.4745834 +0.5084753 0.5084753 0.4745834 +0.514124 0.5084753 0.4745834 +0.519487 0.5084753 0.4745834 +0.5245917 0.5084753 0.4745834 +0.529462 0.5084753 0.4745834 +0.5341183 0.5084753 0.4745834 +0.5385787 0.5084753 0.4745834 +0.5428591 0.5084753 0.4745834 +0.5469733 0.5084753 0.4745834 +0.5509339 0.5084753 0.4745834 +0.5547519 0.5084753 0.4745834 +0.5584371 0.5084753 0.4745834 +0.5619986 0.5084753 0.4745834 +0.5654443 0.5084753 0.4745834 +0.5687816 0.5084753 0.4745834 +0.092819 0.514124 0.4745834 +0.2262531 0.514124 0.4745834 +0.2875993 0.514124 0.4745834 +0.3262122 0.514124 0.4745834 +0.3544566 0.514124 0.4745834 +0.3767383 0.514124 0.4745834 +0.3951413 0.514124 0.4745834 +0.4108177 0.514124 0.4745834 +0.4244723 0.514124 0.4745834 +0.4365675 0.514124 0.4745834 +0.4474232 0.514124 0.4745834 +0.45727 0.514124 0.4745834 +0.4662797 0.514124 0.4745834 +0.4745834 0.514124 0.4745834 +0.4822838 0.514124 0.4745834 +0.4894626 0.514124 0.4745834 +0.4961862 0.514124 0.4745834 +0.5025087 0.514124 0.4745834 +0.5084753 0.514124 0.4745834 +0.514124 0.514124 0.4745834 +0.519487 0.514124 0.4745834 +0.5245917 0.514124 0.4745834 +0.529462 0.514124 0.4745834 +0.5341183 0.514124 0.4745834 +0.5385787 0.514124 0.4745834 +0.5428591 0.514124 0.4745834 +0.5469733 0.514124 0.4745834 +0.5509339 0.514124 0.4745834 +0.5547519 0.514124 0.4745834 +0.5584371 0.514124 0.4745834 +0.5619986 0.514124 0.4745834 +0.5654443 0.514124 0.4745834 +0.5687816 0.514124 0.4745834 +0.092819 0.519487 0.4745834 +0.2262531 0.519487 0.4745834 +0.2875993 0.519487 0.4745834 +0.3262122 0.519487 0.4745834 +0.3544566 0.519487 0.4745834 +0.3767383 0.519487 0.4745834 +0.3951413 0.519487 0.4745834 +0.4108177 0.519487 0.4745834 +0.4244723 0.519487 0.4745834 +0.4365675 0.519487 0.4745834 +0.4474232 0.519487 0.4745834 +0.45727 0.519487 0.4745834 +0.4662797 0.519487 0.4745834 +0.4745834 0.519487 0.4745834 +0.4822838 0.519487 0.4745834 +0.4894626 0.519487 0.4745834 +0.4961862 0.519487 0.4745834 +0.5025087 0.519487 0.4745834 +0.5084753 0.519487 0.4745834 +0.514124 0.519487 0.4745834 +0.519487 0.519487 0.4745834 +0.5245917 0.519487 0.4745834 +0.529462 0.519487 0.4745834 +0.5341183 0.519487 0.4745834 +0.5385787 0.519487 0.4745834 +0.5428591 0.519487 0.4745834 +0.5469733 0.519487 0.4745834 +0.5509339 0.519487 0.4745834 +0.5547519 0.519487 0.4745834 +0.5584371 0.519487 0.4745834 +0.5619986 0.519487 0.4745834 +0.5654443 0.519487 0.4745834 +0.5687816 0.519487 0.4745834 +0.092819 0.5245917 0.4745834 +0.2262531 0.5245917 0.4745834 +0.2875993 0.5245917 0.4745834 +0.3262122 0.5245917 0.4745834 +0.3544566 0.5245917 0.4745834 +0.3767383 0.5245917 0.4745834 +0.3951413 0.5245917 0.4745834 +0.4108177 0.5245917 0.4745834 +0.4244723 0.5245917 0.4745834 +0.4365675 0.5245917 0.4745834 +0.4474232 0.5245917 0.4745834 +0.45727 0.5245917 0.4745834 +0.4662797 0.5245917 0.4745834 +0.4745834 0.5245917 0.4745834 +0.4822838 0.5245917 0.4745834 +0.4894626 0.5245917 0.4745834 +0.4961862 0.5245917 0.4745834 +0.5025087 0.5245917 0.4745834 +0.5084753 0.5245917 0.4745834 +0.514124 0.5245917 0.4745834 +0.519487 0.5245917 0.4745834 +0.5245917 0.5245917 0.4745834 +0.529462 0.5245917 0.4745834 +0.5341183 0.5245917 0.4745834 +0.5385787 0.5245917 0.4745834 +0.5428591 0.5245917 0.4745834 +0.5469733 0.5245917 0.4745834 +0.5509339 0.5245917 0.4745834 +0.5547519 0.5245917 0.4745834 +0.5584371 0.5245917 0.4745834 +0.5619986 0.5245917 0.4745834 +0.5654443 0.5245917 0.4745834 +0.5687816 0.5245917 0.4745834 +0.092819 0.529462 0.4745834 +0.2262531 0.529462 0.4745834 +0.2875993 0.529462 0.4745834 +0.3262122 0.529462 0.4745834 +0.3544566 0.529462 0.4745834 +0.3767383 0.529462 0.4745834 +0.3951413 0.529462 0.4745834 +0.4108177 0.529462 0.4745834 +0.4244723 0.529462 0.4745834 +0.4365675 0.529462 0.4745834 +0.4474232 0.529462 0.4745834 +0.45727 0.529462 0.4745834 +0.4662797 0.529462 0.4745834 +0.4745834 0.529462 0.4745834 +0.4822838 0.529462 0.4745834 +0.4894626 0.529462 0.4745834 +0.4961862 0.529462 0.4745834 +0.5025087 0.529462 0.4745834 +0.5084753 0.529462 0.4745834 +0.514124 0.529462 0.4745834 +0.519487 0.529462 0.4745834 +0.5245917 0.529462 0.4745834 +0.529462 0.529462 0.4745834 +0.5341183 0.529462 0.4745834 +0.5385787 0.529462 0.4745834 +0.5428591 0.529462 0.4745834 +0.5469733 0.529462 0.4745834 +0.5509339 0.529462 0.4745834 +0.5547519 0.529462 0.4745834 +0.5584371 0.529462 0.4745834 +0.5619986 0.529462 0.4745834 +0.5654443 0.529462 0.4745834 +0.5687816 0.529462 0.4745834 +0.092819 0.5341183 0.4745834 +0.2262531 0.5341183 0.4745834 +0.2875993 0.5341183 0.4745834 +0.3262122 0.5341183 0.4745834 +0.3544566 0.5341183 0.4745834 +0.3767383 0.5341183 0.4745834 +0.3951413 0.5341183 0.4745834 +0.4108177 0.5341183 0.4745834 +0.4244723 0.5341183 0.4745834 +0.4365675 0.5341183 0.4745834 +0.4474232 0.5341183 0.4745834 +0.45727 0.5341183 0.4745834 +0.4662797 0.5341183 0.4745834 +0.4745834 0.5341183 0.4745834 +0.4822838 0.5341183 0.4745834 +0.4894626 0.5341183 0.4745834 +0.4961862 0.5341183 0.4745834 +0.5025087 0.5341183 0.4745834 +0.5084753 0.5341183 0.4745834 +0.514124 0.5341183 0.4745834 +0.519487 0.5341183 0.4745834 +0.5245917 0.5341183 0.4745834 +0.529462 0.5341183 0.4745834 +0.5341183 0.5341183 0.4745834 +0.5385787 0.5341183 0.4745834 +0.5428591 0.5341183 0.4745834 +0.5469733 0.5341183 0.4745834 +0.5509339 0.5341183 0.4745834 +0.5547519 0.5341183 0.4745834 +0.5584371 0.5341183 0.4745834 +0.5619986 0.5341183 0.4745834 +0.5654443 0.5341183 0.4745834 +0.5687816 0.5341183 0.4745834 +0.092819 0.5385787 0.4745834 +0.2262531 0.5385787 0.4745834 +0.2875993 0.5385787 0.4745834 +0.3262122 0.5385787 0.4745834 +0.3544566 0.5385787 0.4745834 +0.3767383 0.5385787 0.4745834 +0.3951413 0.5385787 0.4745834 +0.4108177 0.5385787 0.4745834 +0.4244723 0.5385787 0.4745834 +0.4365675 0.5385787 0.4745834 +0.4474232 0.5385787 0.4745834 +0.45727 0.5385787 0.4745834 +0.4662797 0.5385787 0.4745834 +0.4745834 0.5385787 0.4745834 +0.4822838 0.5385787 0.4745834 +0.4894626 0.5385787 0.4745834 +0.4961862 0.5385787 0.4745834 +0.5025087 0.5385787 0.4745834 +0.5084753 0.5385787 0.4745834 +0.514124 0.5385787 0.4745834 +0.519487 0.5385787 0.4745834 +0.5245917 0.5385787 0.4745834 +0.529462 0.5385787 0.4745834 +0.5341183 0.5385787 0.4745834 +0.5385787 0.5385787 0.4745834 +0.5428591 0.5385787 0.4745834 +0.5469733 0.5385787 0.4745834 +0.5509339 0.5385787 0.4745834 +0.5547519 0.5385787 0.4745834 +0.5584371 0.5385787 0.4745834 +0.5619986 0.5385787 0.4745834 +0.5654443 0.5385787 0.4745834 +0.5687816 0.5385787 0.4745834 +0.092819 0.5428591 0.4745834 +0.2262531 0.5428591 0.4745834 +0.2875993 0.5428591 0.4745834 +0.3262122 0.5428591 0.4745834 +0.3544566 0.5428591 0.4745834 +0.3767383 0.5428591 0.4745834 +0.3951413 0.5428591 0.4745834 +0.4108177 0.5428591 0.4745834 +0.4244723 0.5428591 0.4745834 +0.4365675 0.5428591 0.4745834 +0.4474232 0.5428591 0.4745834 +0.45727 0.5428591 0.4745834 +0.4662797 0.5428591 0.4745834 +0.4745834 0.5428591 0.4745834 +0.4822838 0.5428591 0.4745834 +0.4894626 0.5428591 0.4745834 +0.4961862 0.5428591 0.4745834 +0.5025087 0.5428591 0.4745834 +0.5084753 0.5428591 0.4745834 +0.514124 0.5428591 0.4745834 +0.519487 0.5428591 0.4745834 +0.5245917 0.5428591 0.4745834 +0.529462 0.5428591 0.4745834 +0.5341183 0.5428591 0.4745834 +0.5385787 0.5428591 0.4745834 +0.5428591 0.5428591 0.4745834 +0.5469733 0.5428591 0.4745834 +0.5509339 0.5428591 0.4745834 +0.5547519 0.5428591 0.4745834 +0.5584371 0.5428591 0.4745834 +0.5619986 0.5428591 0.4745834 +0.5654443 0.5428591 0.4745834 +0.5687816 0.5428591 0.4745834 +0.092819 0.5469733 0.4745834 +0.2262531 0.5469733 0.4745834 +0.2875993 0.5469733 0.4745834 +0.3262122 0.5469733 0.4745834 +0.3544566 0.5469733 0.4745834 +0.3767383 0.5469733 0.4745834 +0.3951413 0.5469733 0.4745834 +0.4108177 0.5469733 0.4745834 +0.4244723 0.5469733 0.4745834 +0.4365675 0.5469733 0.4745834 +0.4474232 0.5469733 0.4745834 +0.45727 0.5469733 0.4745834 +0.4662797 0.5469733 0.4745834 +0.4745834 0.5469733 0.4745834 +0.4822838 0.5469733 0.4745834 +0.4894626 0.5469733 0.4745834 +0.4961862 0.5469733 0.4745834 +0.5025087 0.5469733 0.4745834 +0.5084753 0.5469733 0.4745834 +0.514124 0.5469733 0.4745834 +0.519487 0.5469733 0.4745834 +0.5245917 0.5469733 0.4745834 +0.529462 0.5469733 0.4745834 +0.5341183 0.5469733 0.4745834 +0.5385787 0.5469733 0.4745834 +0.5428591 0.5469733 0.4745834 +0.5469733 0.5469733 0.4745834 +0.5509339 0.5469733 0.4745834 +0.5547519 0.5469733 0.4745834 +0.5584371 0.5469733 0.4745834 +0.5619986 0.5469733 0.4745834 +0.5654443 0.5469733 0.4745834 +0.5687816 0.5469733 0.4745834 +0.092819 0.5509339 0.4745834 +0.2262531 0.5509339 0.4745834 +0.2875993 0.5509339 0.4745834 +0.3262122 0.5509339 0.4745834 +0.3544566 0.5509339 0.4745834 +0.3767383 0.5509339 0.4745834 +0.3951413 0.5509339 0.4745834 +0.4108177 0.5509339 0.4745834 +0.4244723 0.5509339 0.4745834 +0.4365675 0.5509339 0.4745834 +0.4474232 0.5509339 0.4745834 +0.45727 0.5509339 0.4745834 +0.4662797 0.5509339 0.4745834 +0.4745834 0.5509339 0.4745834 +0.4822838 0.5509339 0.4745834 +0.4894626 0.5509339 0.4745834 +0.4961862 0.5509339 0.4745834 +0.5025087 0.5509339 0.4745834 +0.5084753 0.5509339 0.4745834 +0.514124 0.5509339 0.4745834 +0.519487 0.5509339 0.4745834 +0.5245917 0.5509339 0.4745834 +0.529462 0.5509339 0.4745834 +0.5341183 0.5509339 0.4745834 +0.5385787 0.5509339 0.4745834 +0.5428591 0.5509339 0.4745834 +0.5469733 0.5509339 0.4745834 +0.5509339 0.5509339 0.4745834 +0.5547519 0.5509339 0.4745834 +0.5584371 0.5509339 0.4745834 +0.5619986 0.5509339 0.4745834 +0.5654443 0.5509339 0.4745834 +0.5687816 0.5509339 0.4745834 +0.092819 0.5547519 0.4745834 +0.2262531 0.5547519 0.4745834 +0.2875993 0.5547519 0.4745834 +0.3262122 0.5547519 0.4745834 +0.3544566 0.5547519 0.4745834 +0.3767383 0.5547519 0.4745834 +0.3951413 0.5547519 0.4745834 +0.4108177 0.5547519 0.4745834 +0.4244723 0.5547519 0.4745834 +0.4365675 0.5547519 0.4745834 +0.4474232 0.5547519 0.4745834 +0.45727 0.5547519 0.4745834 +0.4662797 0.5547519 0.4745834 +0.4745834 0.5547519 0.4745834 +0.4822838 0.5547519 0.4745834 +0.4894626 0.5547519 0.4745834 +0.4961862 0.5547519 0.4745834 +0.5025087 0.5547519 0.4745834 +0.5084753 0.5547519 0.4745834 +0.514124 0.5547519 0.4745834 +0.519487 0.5547519 0.4745834 +0.5245917 0.5547519 0.4745834 +0.529462 0.5547519 0.4745834 +0.5341183 0.5547519 0.4745834 +0.5385787 0.5547519 0.4745834 +0.5428591 0.5547519 0.4745834 +0.5469733 0.5547519 0.4745834 +0.5509339 0.5547519 0.4745834 +0.5547519 0.5547519 0.4745834 +0.5584371 0.5547519 0.4745834 +0.5619986 0.5547519 0.4745834 +0.5654443 0.5547519 0.4745834 +0.5687816 0.5547519 0.4745834 +0.092819 0.5584371 0.4745834 +0.2262531 0.5584371 0.4745834 +0.2875993 0.5584371 0.4745834 +0.3262122 0.5584371 0.4745834 +0.3544566 0.5584371 0.4745834 +0.3767383 0.5584371 0.4745834 +0.3951413 0.5584371 0.4745834 +0.4108177 0.5584371 0.4745834 +0.4244723 0.5584371 0.4745834 +0.4365675 0.5584371 0.4745834 +0.4474232 0.5584371 0.4745834 +0.45727 0.5584371 0.4745834 +0.4662797 0.5584371 0.4745834 +0.4745834 0.5584371 0.4745834 +0.4822838 0.5584371 0.4745834 +0.4894626 0.5584371 0.4745834 +0.4961862 0.5584371 0.4745834 +0.5025087 0.5584371 0.4745834 +0.5084753 0.5584371 0.4745834 +0.514124 0.5584371 0.4745834 +0.519487 0.5584371 0.4745834 +0.5245917 0.5584371 0.4745834 +0.529462 0.5584371 0.4745834 +0.5341183 0.5584371 0.4745834 +0.5385787 0.5584371 0.4745834 +0.5428591 0.5584371 0.4745834 +0.5469733 0.5584371 0.4745834 +0.5509339 0.5584371 0.4745834 +0.5547519 0.5584371 0.4745834 +0.5584371 0.5584371 0.4745834 +0.5619986 0.5584371 0.4745834 +0.5654443 0.5584371 0.4745834 +0.5687816 0.5584371 0.4745834 +0.092819 0.5619986 0.4745834 +0.2262531 0.5619986 0.4745834 +0.2875993 0.5619986 0.4745834 +0.3262122 0.5619986 0.4745834 +0.3544566 0.5619986 0.4745834 +0.3767383 0.5619986 0.4745834 +0.3951413 0.5619986 0.4745834 +0.4108177 0.5619986 0.4745834 +0.4244723 0.5619986 0.4745834 +0.4365675 0.5619986 0.4745834 +0.4474232 0.5619986 0.4745834 +0.45727 0.5619986 0.4745834 +0.4662797 0.5619986 0.4745834 +0.4745834 0.5619986 0.4745834 +0.4822838 0.5619986 0.4745834 +0.4894626 0.5619986 0.4745834 +0.4961862 0.5619986 0.4745834 +0.5025087 0.5619986 0.4745834 +0.5084753 0.5619986 0.4745834 +0.514124 0.5619986 0.4745834 +0.519487 0.5619986 0.4745834 +0.5245917 0.5619986 0.4745834 +0.529462 0.5619986 0.4745834 +0.5341183 0.5619986 0.4745834 +0.5385787 0.5619986 0.4745834 +0.5428591 0.5619986 0.4745834 +0.5469733 0.5619986 0.4745834 +0.5509339 0.5619986 0.4745834 +0.5547519 0.5619986 0.4745834 +0.5584371 0.5619986 0.4745834 +0.5619986 0.5619986 0.4745834 +0.5654443 0.5619986 0.4745834 +0.5687816 0.5619986 0.4745834 +0.092819 0.5654443 0.4745834 +0.2262531 0.5654443 0.4745834 +0.2875993 0.5654443 0.4745834 +0.3262122 0.5654443 0.4745834 +0.3544566 0.5654443 0.4745834 +0.3767383 0.5654443 0.4745834 +0.3951413 0.5654443 0.4745834 +0.4108177 0.5654443 0.4745834 +0.4244723 0.5654443 0.4745834 +0.4365675 0.5654443 0.4745834 +0.4474232 0.5654443 0.4745834 +0.45727 0.5654443 0.4745834 +0.4662797 0.5654443 0.4745834 +0.4745834 0.5654443 0.4745834 +0.4822838 0.5654443 0.4745834 +0.4894626 0.5654443 0.4745834 +0.4961862 0.5654443 0.4745834 +0.5025087 0.5654443 0.4745834 +0.5084753 0.5654443 0.4745834 +0.514124 0.5654443 0.4745834 +0.519487 0.5654443 0.4745834 +0.5245917 0.5654443 0.4745834 +0.529462 0.5654443 0.4745834 +0.5341183 0.5654443 0.4745834 +0.5385787 0.5654443 0.4745834 +0.5428591 0.5654443 0.4745834 +0.5469733 0.5654443 0.4745834 +0.5509339 0.5654443 0.4745834 +0.5547519 0.5654443 0.4745834 +0.5584371 0.5654443 0.4745834 +0.5619986 0.5654443 0.4745834 +0.5654443 0.5654443 0.4745834 +0.5687816 0.5654443 0.4745834 +0.092819 0.5687816 0.4745834 +0.2262531 0.5687816 0.4745834 +0.2875993 0.5687816 0.4745834 +0.3262122 0.5687816 0.4745834 +0.3544566 0.5687816 0.4745834 +0.3767383 0.5687816 0.4745834 +0.3951413 0.5687816 0.4745834 +0.4108177 0.5687816 0.4745834 +0.4244723 0.5687816 0.4745834 +0.4365675 0.5687816 0.4745834 +0.4474232 0.5687816 0.4745834 +0.45727 0.5687816 0.4745834 +0.4662797 0.5687816 0.4745834 +0.4745834 0.5687816 0.4745834 +0.4822838 0.5687816 0.4745834 +0.4894626 0.5687816 0.4745834 +0.4961862 0.5687816 0.4745834 +0.5025087 0.5687816 0.4745834 +0.5084753 0.5687816 0.4745834 +0.514124 0.5687816 0.4745834 +0.519487 0.5687816 0.4745834 +0.5245917 0.5687816 0.4745834 +0.529462 0.5687816 0.4745834 +0.5341183 0.5687816 0.4745834 +0.5385787 0.5687816 0.4745834 +0.5428591 0.5687816 0.4745834 +0.5469733 0.5687816 0.4745834 +0.5509339 0.5687816 0.4745834 +0.5547519 0.5687816 0.4745834 +0.5584371 0.5687816 0.4745834 +0.5619986 0.5687816 0.4745834 +0.5654443 0.5687816 0.4745834 +0.5687816 0.5687816 0.4745834 +0.092819 0.092819 0.4822838 +0.2262531 0.092819 0.4822838 +0.2875993 0.092819 0.4822838 +0.3262122 0.092819 0.4822838 +0.3544566 0.092819 0.4822838 +0.3767383 0.092819 0.4822838 +0.3951413 0.092819 0.4822838 +0.4108177 0.092819 0.4822838 +0.4244723 0.092819 0.4822838 +0.4365675 0.092819 0.4822838 +0.4474232 0.092819 0.4822838 +0.45727 0.092819 0.4822838 +0.4662797 0.092819 0.4822838 +0.4745834 0.092819 0.4822838 +0.4822838 0.092819 0.4822838 +0.4894626 0.092819 0.4822838 +0.4961862 0.092819 0.4822838 +0.5025087 0.092819 0.4822838 +0.5084753 0.092819 0.4822838 +0.514124 0.092819 0.4822838 +0.519487 0.092819 0.4822838 +0.5245917 0.092819 0.4822838 +0.529462 0.092819 0.4822838 +0.5341183 0.092819 0.4822838 +0.5385787 0.092819 0.4822838 +0.5428591 0.092819 0.4822838 +0.5469733 0.092819 0.4822838 +0.5509339 0.092819 0.4822838 +0.5547519 0.092819 0.4822838 +0.5584371 0.092819 0.4822838 +0.5619986 0.092819 0.4822838 +0.5654443 0.092819 0.4822838 +0.5687816 0.092819 0.4822838 +0.092819 0.2262531 0.4822838 +0.2262531 0.2262531 0.4822838 +0.2875993 0.2262531 0.4822838 +0.3262122 0.2262531 0.4822838 +0.3544566 0.2262531 0.4822838 +0.3767383 0.2262531 0.4822838 +0.3951413 0.2262531 0.4822838 +0.4108177 0.2262531 0.4822838 +0.4244723 0.2262531 0.4822838 +0.4365675 0.2262531 0.4822838 +0.4474232 0.2262531 0.4822838 +0.45727 0.2262531 0.4822838 +0.4662797 0.2262531 0.4822838 +0.4745834 0.2262531 0.4822838 +0.4822838 0.2262531 0.4822838 +0.4894626 0.2262531 0.4822838 +0.4961862 0.2262531 0.4822838 +0.5025087 0.2262531 0.4822838 +0.5084753 0.2262531 0.4822838 +0.514124 0.2262531 0.4822838 +0.519487 0.2262531 0.4822838 +0.5245917 0.2262531 0.4822838 +0.529462 0.2262531 0.4822838 +0.5341183 0.2262531 0.4822838 +0.5385787 0.2262531 0.4822838 +0.5428591 0.2262531 0.4822838 +0.5469733 0.2262531 0.4822838 +0.5509339 0.2262531 0.4822838 +0.5547519 0.2262531 0.4822838 +0.5584371 0.2262531 0.4822838 +0.5619986 0.2262531 0.4822838 +0.5654443 0.2262531 0.4822838 +0.5687816 0.2262531 0.4822838 +0.092819 0.2875993 0.4822838 +0.2262531 0.2875993 0.4822838 +0.2875993 0.2875993 0.4822838 +0.3262122 0.2875993 0.4822838 +0.3544566 0.2875993 0.4822838 +0.3767383 0.2875993 0.4822838 +0.3951413 0.2875993 0.4822838 +0.4108177 0.2875993 0.4822838 +0.4244723 0.2875993 0.4822838 +0.4365675 0.2875993 0.4822838 +0.4474232 0.2875993 0.4822838 +0.45727 0.2875993 0.4822838 +0.4662797 0.2875993 0.4822838 +0.4745834 0.2875993 0.4822838 +0.4822838 0.2875993 0.4822838 +0.4894626 0.2875993 0.4822838 +0.4961862 0.2875993 0.4822838 +0.5025087 0.2875993 0.4822838 +0.5084753 0.2875993 0.4822838 +0.514124 0.2875993 0.4822838 +0.519487 0.2875993 0.4822838 +0.5245917 0.2875993 0.4822838 +0.529462 0.2875993 0.4822838 +0.5341183 0.2875993 0.4822838 +0.5385787 0.2875993 0.4822838 +0.5428591 0.2875993 0.4822838 +0.5469733 0.2875993 0.4822838 +0.5509339 0.2875993 0.4822838 +0.5547519 0.2875993 0.4822838 +0.5584371 0.2875993 0.4822838 +0.5619986 0.2875993 0.4822838 +0.5654443 0.2875993 0.4822838 +0.5687816 0.2875993 0.4822838 +0.092819 0.3262122 0.4822838 +0.2262531 0.3262122 0.4822838 +0.2875993 0.3262122 0.4822838 +0.3262122 0.3262122 0.4822838 +0.3544566 0.3262122 0.4822838 +0.3767383 0.3262122 0.4822838 +0.3951413 0.3262122 0.4822838 +0.4108177 0.3262122 0.4822838 +0.4244723 0.3262122 0.4822838 +0.4365675 0.3262122 0.4822838 +0.4474232 0.3262122 0.4822838 +0.45727 0.3262122 0.4822838 +0.4662797 0.3262122 0.4822838 +0.4745834 0.3262122 0.4822838 +0.4822838 0.3262122 0.4822838 +0.4894626 0.3262122 0.4822838 +0.4961862 0.3262122 0.4822838 +0.5025087 0.3262122 0.4822838 +0.5084753 0.3262122 0.4822838 +0.514124 0.3262122 0.4822838 +0.519487 0.3262122 0.4822838 +0.5245917 0.3262122 0.4822838 +0.529462 0.3262122 0.4822838 +0.5341183 0.3262122 0.4822838 +0.5385787 0.3262122 0.4822838 +0.5428591 0.3262122 0.4822838 +0.5469733 0.3262122 0.4822838 +0.5509339 0.3262122 0.4822838 +0.5547519 0.3262122 0.4822838 +0.5584371 0.3262122 0.4822838 +0.5619986 0.3262122 0.4822838 +0.5654443 0.3262122 0.4822838 +0.5687816 0.3262122 0.4822838 +0.092819 0.3544566 0.4822838 +0.2262531 0.3544566 0.4822838 +0.2875993 0.3544566 0.4822838 +0.3262122 0.3544566 0.4822838 +0.3544566 0.3544566 0.4822838 +0.3767383 0.3544566 0.4822838 +0.3951413 0.3544566 0.4822838 +0.4108177 0.3544566 0.4822838 +0.4244723 0.3544566 0.4822838 +0.4365675 0.3544566 0.4822838 +0.4474232 0.3544566 0.4822838 +0.45727 0.3544566 0.4822838 +0.4662797 0.3544566 0.4822838 +0.4745834 0.3544566 0.4822838 +0.4822838 0.3544566 0.4822838 +0.4894626 0.3544566 0.4822838 +0.4961862 0.3544566 0.4822838 +0.5025087 0.3544566 0.4822838 +0.5084753 0.3544566 0.4822838 +0.514124 0.3544566 0.4822838 +0.519487 0.3544566 0.4822838 +0.5245917 0.3544566 0.4822838 +0.529462 0.3544566 0.4822838 +0.5341183 0.3544566 0.4822838 +0.5385787 0.3544566 0.4822838 +0.5428591 0.3544566 0.4822838 +0.5469733 0.3544566 0.4822838 +0.5509339 0.3544566 0.4822838 +0.5547519 0.3544566 0.4822838 +0.5584371 0.3544566 0.4822838 +0.5619986 0.3544566 0.4822838 +0.5654443 0.3544566 0.4822838 +0.5687816 0.3544566 0.4822838 +0.092819 0.3767383 0.4822838 +0.2262531 0.3767383 0.4822838 +0.2875993 0.3767383 0.4822838 +0.3262122 0.3767383 0.4822838 +0.3544566 0.3767383 0.4822838 +0.3767383 0.3767383 0.4822838 +0.3951413 0.3767383 0.4822838 +0.4108177 0.3767383 0.4822838 +0.4244723 0.3767383 0.4822838 +0.4365675 0.3767383 0.4822838 +0.4474232 0.3767383 0.4822838 +0.45727 0.3767383 0.4822838 +0.4662797 0.3767383 0.4822838 +0.4745834 0.3767383 0.4822838 +0.4822838 0.3767383 0.4822838 +0.4894626 0.3767383 0.4822838 +0.4961862 0.3767383 0.4822838 +0.5025087 0.3767383 0.4822838 +0.5084753 0.3767383 0.4822838 +0.514124 0.3767383 0.4822838 +0.519487 0.3767383 0.4822838 +0.5245917 0.3767383 0.4822838 +0.529462 0.3767383 0.4822838 +0.5341183 0.3767383 0.4822838 +0.5385787 0.3767383 0.4822838 +0.5428591 0.3767383 0.4822838 +0.5469733 0.3767383 0.4822838 +0.5509339 0.3767383 0.4822838 +0.5547519 0.3767383 0.4822838 +0.5584371 0.3767383 0.4822838 +0.5619986 0.3767383 0.4822838 +0.5654443 0.3767383 0.4822838 +0.5687816 0.3767383 0.4822838 +0.092819 0.3951413 0.4822838 +0.2262531 0.3951413 0.4822838 +0.2875993 0.3951413 0.4822838 +0.3262122 0.3951413 0.4822838 +0.3544566 0.3951413 0.4822838 +0.3767383 0.3951413 0.4822838 +0.3951413 0.3951413 0.4822838 +0.4108177 0.3951413 0.4822838 +0.4244723 0.3951413 0.4822838 +0.4365675 0.3951413 0.4822838 +0.4474232 0.3951413 0.4822838 +0.45727 0.3951413 0.4822838 +0.4662797 0.3951413 0.4822838 +0.4745834 0.3951413 0.4822838 +0.4822838 0.3951413 0.4822838 +0.4894626 0.3951413 0.4822838 +0.4961862 0.3951413 0.4822838 +0.5025087 0.3951413 0.4822838 +0.5084753 0.3951413 0.4822838 +0.514124 0.3951413 0.4822838 +0.519487 0.3951413 0.4822838 +0.5245917 0.3951413 0.4822838 +0.529462 0.3951413 0.4822838 +0.5341183 0.3951413 0.4822838 +0.5385787 0.3951413 0.4822838 +0.5428591 0.3951413 0.4822838 +0.5469733 0.3951413 0.4822838 +0.5509339 0.3951413 0.4822838 +0.5547519 0.3951413 0.4822838 +0.5584371 0.3951413 0.4822838 +0.5619986 0.3951413 0.4822838 +0.5654443 0.3951413 0.4822838 +0.5687816 0.3951413 0.4822838 +0.092819 0.4108177 0.4822838 +0.2262531 0.4108177 0.4822838 +0.2875993 0.4108177 0.4822838 +0.3262122 0.4108177 0.4822838 +0.3544566 0.4108177 0.4822838 +0.3767383 0.4108177 0.4822838 +0.3951413 0.4108177 0.4822838 +0.4108177 0.4108177 0.4822838 +0.4244723 0.4108177 0.4822838 +0.4365675 0.4108177 0.4822838 +0.4474232 0.4108177 0.4822838 +0.45727 0.4108177 0.4822838 +0.4662797 0.4108177 0.4822838 +0.4745834 0.4108177 0.4822838 +0.4822838 0.4108177 0.4822838 +0.4894626 0.4108177 0.4822838 +0.4961862 0.4108177 0.4822838 +0.5025087 0.4108177 0.4822838 +0.5084753 0.4108177 0.4822838 +0.514124 0.4108177 0.4822838 +0.519487 0.4108177 0.4822838 +0.5245917 0.4108177 0.4822838 +0.529462 0.4108177 0.4822838 +0.5341183 0.4108177 0.4822838 +0.5385787 0.4108177 0.4822838 +0.5428591 0.4108177 0.4822838 +0.5469733 0.4108177 0.4822838 +0.5509339 0.4108177 0.4822838 +0.5547519 0.4108177 0.4822838 +0.5584371 0.4108177 0.4822838 +0.5619986 0.4108177 0.4822838 +0.5654443 0.4108177 0.4822838 +0.5687816 0.4108177 0.4822838 +0.092819 0.4244723 0.4822838 +0.2262531 0.4244723 0.4822838 +0.2875993 0.4244723 0.4822838 +0.3262122 0.4244723 0.4822838 +0.3544566 0.4244723 0.4822838 +0.3767383 0.4244723 0.4822838 +0.3951413 0.4244723 0.4822838 +0.4108177 0.4244723 0.4822838 +0.4244723 0.4244723 0.4822838 +0.4365675 0.4244723 0.4822838 +0.4474232 0.4244723 0.4822838 +0.45727 0.4244723 0.4822838 +0.4662797 0.4244723 0.4822838 +0.4745834 0.4244723 0.4822838 +0.4822838 0.4244723 0.4822838 +0.4894626 0.4244723 0.4822838 +0.4961862 0.4244723 0.4822838 +0.5025087 0.4244723 0.4822838 +0.5084753 0.4244723 0.4822838 +0.514124 0.4244723 0.4822838 +0.519487 0.4244723 0.4822838 +0.5245917 0.4244723 0.4822838 +0.529462 0.4244723 0.4822838 +0.5341183 0.4244723 0.4822838 +0.5385787 0.4244723 0.4822838 +0.5428591 0.4244723 0.4822838 +0.5469733 0.4244723 0.4822838 +0.5509339 0.4244723 0.4822838 +0.5547519 0.4244723 0.4822838 +0.5584371 0.4244723 0.4822838 +0.5619986 0.4244723 0.4822838 +0.5654443 0.4244723 0.4822838 +0.5687816 0.4244723 0.4822838 +0.092819 0.4365675 0.4822838 +0.2262531 0.4365675 0.4822838 +0.2875993 0.4365675 0.4822838 +0.3262122 0.4365675 0.4822838 +0.3544566 0.4365675 0.4822838 +0.3767383 0.4365675 0.4822838 +0.3951413 0.4365675 0.4822838 +0.4108177 0.4365675 0.4822838 +0.4244723 0.4365675 0.4822838 +0.4365675 0.4365675 0.4822838 +0.4474232 0.4365675 0.4822838 +0.45727 0.4365675 0.4822838 +0.4662797 0.4365675 0.4822838 +0.4745834 0.4365675 0.4822838 +0.4822838 0.4365675 0.4822838 +0.4894626 0.4365675 0.4822838 +0.4961862 0.4365675 0.4822838 +0.5025087 0.4365675 0.4822838 +0.5084753 0.4365675 0.4822838 +0.514124 0.4365675 0.4822838 +0.519487 0.4365675 0.4822838 +0.5245917 0.4365675 0.4822838 +0.529462 0.4365675 0.4822838 +0.5341183 0.4365675 0.4822838 +0.5385787 0.4365675 0.4822838 +0.5428591 0.4365675 0.4822838 +0.5469733 0.4365675 0.4822838 +0.5509339 0.4365675 0.4822838 +0.5547519 0.4365675 0.4822838 +0.5584371 0.4365675 0.4822838 +0.5619986 0.4365675 0.4822838 +0.5654443 0.4365675 0.4822838 +0.5687816 0.4365675 0.4822838 +0.092819 0.4474232 0.4822838 +0.2262531 0.4474232 0.4822838 +0.2875993 0.4474232 0.4822838 +0.3262122 0.4474232 0.4822838 +0.3544566 0.4474232 0.4822838 +0.3767383 0.4474232 0.4822838 +0.3951413 0.4474232 0.4822838 +0.4108177 0.4474232 0.4822838 +0.4244723 0.4474232 0.4822838 +0.4365675 0.4474232 0.4822838 +0.4474232 0.4474232 0.4822838 +0.45727 0.4474232 0.4822838 +0.4662797 0.4474232 0.4822838 +0.4745834 0.4474232 0.4822838 +0.4822838 0.4474232 0.4822838 +0.4894626 0.4474232 0.4822838 +0.4961862 0.4474232 0.4822838 +0.5025087 0.4474232 0.4822838 +0.5084753 0.4474232 0.4822838 +0.514124 0.4474232 0.4822838 +0.519487 0.4474232 0.4822838 +0.5245917 0.4474232 0.4822838 +0.529462 0.4474232 0.4822838 +0.5341183 0.4474232 0.4822838 +0.5385787 0.4474232 0.4822838 +0.5428591 0.4474232 0.4822838 +0.5469733 0.4474232 0.4822838 +0.5509339 0.4474232 0.4822838 +0.5547519 0.4474232 0.4822838 +0.5584371 0.4474232 0.4822838 +0.5619986 0.4474232 0.4822838 +0.5654443 0.4474232 0.4822838 +0.5687816 0.4474232 0.4822838 +0.092819 0.45727 0.4822838 +0.2262531 0.45727 0.4822838 +0.2875993 0.45727 0.4822838 +0.3262122 0.45727 0.4822838 +0.3544566 0.45727 0.4822838 +0.3767383 0.45727 0.4822838 +0.3951413 0.45727 0.4822838 +0.4108177 0.45727 0.4822838 +0.4244723 0.45727 0.4822838 +0.4365675 0.45727 0.4822838 +0.4474232 0.45727 0.4822838 +0.45727 0.45727 0.4822838 +0.4662797 0.45727 0.4822838 +0.4745834 0.45727 0.4822838 +0.4822838 0.45727 0.4822838 +0.4894626 0.45727 0.4822838 +0.4961862 0.45727 0.4822838 +0.5025087 0.45727 0.4822838 +0.5084753 0.45727 0.4822838 +0.514124 0.45727 0.4822838 +0.519487 0.45727 0.4822838 +0.5245917 0.45727 0.4822838 +0.529462 0.45727 0.4822838 +0.5341183 0.45727 0.4822838 +0.5385787 0.45727 0.4822838 +0.5428591 0.45727 0.4822838 +0.5469733 0.45727 0.4822838 +0.5509339 0.45727 0.4822838 +0.5547519 0.45727 0.4822838 +0.5584371 0.45727 0.4822838 +0.5619986 0.45727 0.4822838 +0.5654443 0.45727 0.4822838 +0.5687816 0.45727 0.4822838 +0.092819 0.4662797 0.4822838 +0.2262531 0.4662797 0.4822838 +0.2875993 0.4662797 0.4822838 +0.3262122 0.4662797 0.4822838 +0.3544566 0.4662797 0.4822838 +0.3767383 0.4662797 0.4822838 +0.3951413 0.4662797 0.4822838 +0.4108177 0.4662797 0.4822838 +0.4244723 0.4662797 0.4822838 +0.4365675 0.4662797 0.4822838 +0.4474232 0.4662797 0.4822838 +0.45727 0.4662797 0.4822838 +0.4662797 0.4662797 0.4822838 +0.4745834 0.4662797 0.4822838 +0.4822838 0.4662797 0.4822838 +0.4894626 0.4662797 0.4822838 +0.4961862 0.4662797 0.4822838 +0.5025087 0.4662797 0.4822838 +0.5084753 0.4662797 0.4822838 +0.514124 0.4662797 0.4822838 +0.519487 0.4662797 0.4822838 +0.5245917 0.4662797 0.4822838 +0.529462 0.4662797 0.4822838 +0.5341183 0.4662797 0.4822838 +0.5385787 0.4662797 0.4822838 +0.5428591 0.4662797 0.4822838 +0.5469733 0.4662797 0.4822838 +0.5509339 0.4662797 0.4822838 +0.5547519 0.4662797 0.4822838 +0.5584371 0.4662797 0.4822838 +0.5619986 0.4662797 0.4822838 +0.5654443 0.4662797 0.4822838 +0.5687816 0.4662797 0.4822838 +0.092819 0.4745834 0.4822838 +0.2262531 0.4745834 0.4822838 +0.2875993 0.4745834 0.4822838 +0.3262122 0.4745834 0.4822838 +0.3544566 0.4745834 0.4822838 +0.3767383 0.4745834 0.4822838 +0.3951413 0.4745834 0.4822838 +0.4108177 0.4745834 0.4822838 +0.4244723 0.4745834 0.4822838 +0.4365675 0.4745834 0.4822838 +0.4474232 0.4745834 0.4822838 +0.45727 0.4745834 0.4822838 +0.4662797 0.4745834 0.4822838 +0.4745834 0.4745834 0.4822838 +0.4822838 0.4745834 0.4822838 +0.4894626 0.4745834 0.4822838 +0.4961862 0.4745834 0.4822838 +0.5025087 0.4745834 0.4822838 +0.5084753 0.4745834 0.4822838 +0.514124 0.4745834 0.4822838 +0.519487 0.4745834 0.4822838 +0.5245917 0.4745834 0.4822838 +0.529462 0.4745834 0.4822838 +0.5341183 0.4745834 0.4822838 +0.5385787 0.4745834 0.4822838 +0.5428591 0.4745834 0.4822838 +0.5469733 0.4745834 0.4822838 +0.5509339 0.4745834 0.4822838 +0.5547519 0.4745834 0.4822838 +0.5584371 0.4745834 0.4822838 +0.5619986 0.4745834 0.4822838 +0.5654443 0.4745834 0.4822838 +0.5687816 0.4745834 0.4822838 +0.092819 0.4822838 0.4822838 +0.2262531 0.4822838 0.4822838 +0.2875993 0.4822838 0.4822838 +0.3262122 0.4822838 0.4822838 +0.3544566 0.4822838 0.4822838 +0.3767383 0.4822838 0.4822838 +0.3951413 0.4822838 0.4822838 +0.4108177 0.4822838 0.4822838 +0.4244723 0.4822838 0.4822838 +0.4365675 0.4822838 0.4822838 +0.4474232 0.4822838 0.4822838 +0.45727 0.4822838 0.4822838 +0.4662797 0.4822838 0.4822838 +0.4745834 0.4822838 0.4822838 +0.4822838 0.4822838 0.4822838 +0.4894626 0.4822838 0.4822838 +0.4961862 0.4822838 0.4822838 +0.5025087 0.4822838 0.4822838 +0.5084753 0.4822838 0.4822838 +0.514124 0.4822838 0.4822838 +0.519487 0.4822838 0.4822838 +0.5245917 0.4822838 0.4822838 +0.529462 0.4822838 0.4822838 +0.5341183 0.4822838 0.4822838 +0.5385787 0.4822838 0.4822838 +0.5428591 0.4822838 0.4822838 +0.5469733 0.4822838 0.4822838 +0.5509339 0.4822838 0.4822838 +0.5547519 0.4822838 0.4822838 +0.5584371 0.4822838 0.4822838 +0.5619986 0.4822838 0.4822838 +0.5654443 0.4822838 0.4822838 +0.5687816 0.4822838 0.4822838 +0.092819 0.4894626 0.4822838 +0.2262531 0.4894626 0.4822838 +0.2875993 0.4894626 0.4822838 +0.3262122 0.4894626 0.4822838 +0.3544566 0.4894626 0.4822838 +0.3767383 0.4894626 0.4822838 +0.3951413 0.4894626 0.4822838 +0.4108177 0.4894626 0.4822838 +0.4244723 0.4894626 0.4822838 +0.4365675 0.4894626 0.4822838 +0.4474232 0.4894626 0.4822838 +0.45727 0.4894626 0.4822838 +0.4662797 0.4894626 0.4822838 +0.4745834 0.4894626 0.4822838 +0.4822838 0.4894626 0.4822838 +0.4894626 0.4894626 0.4822838 +0.4961862 0.4894626 0.4822838 +0.5025087 0.4894626 0.4822838 +0.5084753 0.4894626 0.4822838 +0.514124 0.4894626 0.4822838 +0.519487 0.4894626 0.4822838 +0.5245917 0.4894626 0.4822838 +0.529462 0.4894626 0.4822838 +0.5341183 0.4894626 0.4822838 +0.5385787 0.4894626 0.4822838 +0.5428591 0.4894626 0.4822838 +0.5469733 0.4894626 0.4822838 +0.5509339 0.4894626 0.4822838 +0.5547519 0.4894626 0.4822838 +0.5584371 0.4894626 0.4822838 +0.5619986 0.4894626 0.4822838 +0.5654443 0.4894626 0.4822838 +0.5687816 0.4894626 0.4822838 +0.092819 0.4961862 0.4822838 +0.2262531 0.4961862 0.4822838 +0.2875993 0.4961862 0.4822838 +0.3262122 0.4961862 0.4822838 +0.3544566 0.4961862 0.4822838 +0.3767383 0.4961862 0.4822838 +0.3951413 0.4961862 0.4822838 +0.4108177 0.4961862 0.4822838 +0.4244723 0.4961862 0.4822838 +0.4365675 0.4961862 0.4822838 +0.4474232 0.4961862 0.4822838 +0.45727 0.4961862 0.4822838 +0.4662797 0.4961862 0.4822838 +0.4745834 0.4961862 0.4822838 +0.4822838 0.4961862 0.4822838 +0.4894626 0.4961862 0.4822838 +0.4961862 0.4961862 0.4822838 +0.5025087 0.4961862 0.4822838 +0.5084753 0.4961862 0.4822838 +0.514124 0.4961862 0.4822838 +0.519487 0.4961862 0.4822838 +0.5245917 0.4961862 0.4822838 +0.529462 0.4961862 0.4822838 +0.5341183 0.4961862 0.4822838 +0.5385787 0.4961862 0.4822838 +0.5428591 0.4961862 0.4822838 +0.5469733 0.4961862 0.4822838 +0.5509339 0.4961862 0.4822838 +0.5547519 0.4961862 0.4822838 +0.5584371 0.4961862 0.4822838 +0.5619986 0.4961862 0.4822838 +0.5654443 0.4961862 0.4822838 +0.5687816 0.4961862 0.4822838 +0.092819 0.5025087 0.4822838 +0.2262531 0.5025087 0.4822838 +0.2875993 0.5025087 0.4822838 +0.3262122 0.5025087 0.4822838 +0.3544566 0.5025087 0.4822838 +0.3767383 0.5025087 0.4822838 +0.3951413 0.5025087 0.4822838 +0.4108177 0.5025087 0.4822838 +0.4244723 0.5025087 0.4822838 +0.4365675 0.5025087 0.4822838 +0.4474232 0.5025087 0.4822838 +0.45727 0.5025087 0.4822838 +0.4662797 0.5025087 0.4822838 +0.4745834 0.5025087 0.4822838 +0.4822838 0.5025087 0.4822838 +0.4894626 0.5025087 0.4822838 +0.4961862 0.5025087 0.4822838 +0.5025087 0.5025087 0.4822838 +0.5084753 0.5025087 0.4822838 +0.514124 0.5025087 0.4822838 +0.519487 0.5025087 0.4822838 +0.5245917 0.5025087 0.4822838 +0.529462 0.5025087 0.4822838 +0.5341183 0.5025087 0.4822838 +0.5385787 0.5025087 0.4822838 +0.5428591 0.5025087 0.4822838 +0.5469733 0.5025087 0.4822838 +0.5509339 0.5025087 0.4822838 +0.5547519 0.5025087 0.4822838 +0.5584371 0.5025087 0.4822838 +0.5619986 0.5025087 0.4822838 +0.5654443 0.5025087 0.4822838 +0.5687816 0.5025087 0.4822838 +0.092819 0.5084753 0.4822838 +0.2262531 0.5084753 0.4822838 +0.2875993 0.5084753 0.4822838 +0.3262122 0.5084753 0.4822838 +0.3544566 0.5084753 0.4822838 +0.3767383 0.5084753 0.4822838 +0.3951413 0.5084753 0.4822838 +0.4108177 0.5084753 0.4822838 +0.4244723 0.5084753 0.4822838 +0.4365675 0.5084753 0.4822838 +0.4474232 0.5084753 0.4822838 +0.45727 0.5084753 0.4822838 +0.4662797 0.5084753 0.4822838 +0.4745834 0.5084753 0.4822838 +0.4822838 0.5084753 0.4822838 +0.4894626 0.5084753 0.4822838 +0.4961862 0.5084753 0.4822838 +0.5025087 0.5084753 0.4822838 +0.5084753 0.5084753 0.4822838 +0.514124 0.5084753 0.4822838 +0.519487 0.5084753 0.4822838 +0.5245917 0.5084753 0.4822838 +0.529462 0.5084753 0.4822838 +0.5341183 0.5084753 0.4822838 +0.5385787 0.5084753 0.4822838 +0.5428591 0.5084753 0.4822838 +0.5469733 0.5084753 0.4822838 +0.5509339 0.5084753 0.4822838 +0.5547519 0.5084753 0.4822838 +0.5584371 0.5084753 0.4822838 +0.5619986 0.5084753 0.4822838 +0.5654443 0.5084753 0.4822838 +0.5687816 0.5084753 0.4822838 +0.092819 0.514124 0.4822838 +0.2262531 0.514124 0.4822838 +0.2875993 0.514124 0.4822838 +0.3262122 0.514124 0.4822838 +0.3544566 0.514124 0.4822838 +0.3767383 0.514124 0.4822838 +0.3951413 0.514124 0.4822838 +0.4108177 0.514124 0.4822838 +0.4244723 0.514124 0.4822838 +0.4365675 0.514124 0.4822838 +0.4474232 0.514124 0.4822838 +0.45727 0.514124 0.4822838 +0.4662797 0.514124 0.4822838 +0.4745834 0.514124 0.4822838 +0.4822838 0.514124 0.4822838 +0.4894626 0.514124 0.4822838 +0.4961862 0.514124 0.4822838 +0.5025087 0.514124 0.4822838 +0.5084753 0.514124 0.4822838 +0.514124 0.514124 0.4822838 +0.519487 0.514124 0.4822838 +0.5245917 0.514124 0.4822838 +0.529462 0.514124 0.4822838 +0.5341183 0.514124 0.4822838 +0.5385787 0.514124 0.4822838 +0.5428591 0.514124 0.4822838 +0.5469733 0.514124 0.4822838 +0.5509339 0.514124 0.4822838 +0.5547519 0.514124 0.4822838 +0.5584371 0.514124 0.4822838 +0.5619986 0.514124 0.4822838 +0.5654443 0.514124 0.4822838 +0.5687816 0.514124 0.4822838 +0.092819 0.519487 0.4822838 +0.2262531 0.519487 0.4822838 +0.2875993 0.519487 0.4822838 +0.3262122 0.519487 0.4822838 +0.3544566 0.519487 0.4822838 +0.3767383 0.519487 0.4822838 +0.3951413 0.519487 0.4822838 +0.4108177 0.519487 0.4822838 +0.4244723 0.519487 0.4822838 +0.4365675 0.519487 0.4822838 +0.4474232 0.519487 0.4822838 +0.45727 0.519487 0.4822838 +0.4662797 0.519487 0.4822838 +0.4745834 0.519487 0.4822838 +0.4822838 0.519487 0.4822838 +0.4894626 0.519487 0.4822838 +0.4961862 0.519487 0.4822838 +0.5025087 0.519487 0.4822838 +0.5084753 0.519487 0.4822838 +0.514124 0.519487 0.4822838 +0.519487 0.519487 0.4822838 +0.5245917 0.519487 0.4822838 +0.529462 0.519487 0.4822838 +0.5341183 0.519487 0.4822838 +0.5385787 0.519487 0.4822838 +0.5428591 0.519487 0.4822838 +0.5469733 0.519487 0.4822838 +0.5509339 0.519487 0.4822838 +0.5547519 0.519487 0.4822838 +0.5584371 0.519487 0.4822838 +0.5619986 0.519487 0.4822838 +0.5654443 0.519487 0.4822838 +0.5687816 0.519487 0.4822838 +0.092819 0.5245917 0.4822838 +0.2262531 0.5245917 0.4822838 +0.2875993 0.5245917 0.4822838 +0.3262122 0.5245917 0.4822838 +0.3544566 0.5245917 0.4822838 +0.3767383 0.5245917 0.4822838 +0.3951413 0.5245917 0.4822838 +0.4108177 0.5245917 0.4822838 +0.4244723 0.5245917 0.4822838 +0.4365675 0.5245917 0.4822838 +0.4474232 0.5245917 0.4822838 +0.45727 0.5245917 0.4822838 +0.4662797 0.5245917 0.4822838 +0.4745834 0.5245917 0.4822838 +0.4822838 0.5245917 0.4822838 +0.4894626 0.5245917 0.4822838 +0.4961862 0.5245917 0.4822838 +0.5025087 0.5245917 0.4822838 +0.5084753 0.5245917 0.4822838 +0.514124 0.5245917 0.4822838 +0.519487 0.5245917 0.4822838 +0.5245917 0.5245917 0.4822838 +0.529462 0.5245917 0.4822838 +0.5341183 0.5245917 0.4822838 +0.5385787 0.5245917 0.4822838 +0.5428591 0.5245917 0.4822838 +0.5469733 0.5245917 0.4822838 +0.5509339 0.5245917 0.4822838 +0.5547519 0.5245917 0.4822838 +0.5584371 0.5245917 0.4822838 +0.5619986 0.5245917 0.4822838 +0.5654443 0.5245917 0.4822838 +0.5687816 0.5245917 0.4822838 +0.092819 0.529462 0.4822838 +0.2262531 0.529462 0.4822838 +0.2875993 0.529462 0.4822838 +0.3262122 0.529462 0.4822838 +0.3544566 0.529462 0.4822838 +0.3767383 0.529462 0.4822838 +0.3951413 0.529462 0.4822838 +0.4108177 0.529462 0.4822838 +0.4244723 0.529462 0.4822838 +0.4365675 0.529462 0.4822838 +0.4474232 0.529462 0.4822838 +0.45727 0.529462 0.4822838 +0.4662797 0.529462 0.4822838 +0.4745834 0.529462 0.4822838 +0.4822838 0.529462 0.4822838 +0.4894626 0.529462 0.4822838 +0.4961862 0.529462 0.4822838 +0.5025087 0.529462 0.4822838 +0.5084753 0.529462 0.4822838 +0.514124 0.529462 0.4822838 +0.519487 0.529462 0.4822838 +0.5245917 0.529462 0.4822838 +0.529462 0.529462 0.4822838 +0.5341183 0.529462 0.4822838 +0.5385787 0.529462 0.4822838 +0.5428591 0.529462 0.4822838 +0.5469733 0.529462 0.4822838 +0.5509339 0.529462 0.4822838 +0.5547519 0.529462 0.4822838 +0.5584371 0.529462 0.4822838 +0.5619986 0.529462 0.4822838 +0.5654443 0.529462 0.4822838 +0.5687816 0.529462 0.4822838 +0.092819 0.5341183 0.4822838 +0.2262531 0.5341183 0.4822838 +0.2875993 0.5341183 0.4822838 +0.3262122 0.5341183 0.4822838 +0.3544566 0.5341183 0.4822838 +0.3767383 0.5341183 0.4822838 +0.3951413 0.5341183 0.4822838 +0.4108177 0.5341183 0.4822838 +0.4244723 0.5341183 0.4822838 +0.4365675 0.5341183 0.4822838 +0.4474232 0.5341183 0.4822838 +0.45727 0.5341183 0.4822838 +0.4662797 0.5341183 0.4822838 +0.4745834 0.5341183 0.4822838 +0.4822838 0.5341183 0.4822838 +0.4894626 0.5341183 0.4822838 +0.4961862 0.5341183 0.4822838 +0.5025087 0.5341183 0.4822838 +0.5084753 0.5341183 0.4822838 +0.514124 0.5341183 0.4822838 +0.519487 0.5341183 0.4822838 +0.5245917 0.5341183 0.4822838 +0.529462 0.5341183 0.4822838 +0.5341183 0.5341183 0.4822838 +0.5385787 0.5341183 0.4822838 +0.5428591 0.5341183 0.4822838 +0.5469733 0.5341183 0.4822838 +0.5509339 0.5341183 0.4822838 +0.5547519 0.5341183 0.4822838 +0.5584371 0.5341183 0.4822838 +0.5619986 0.5341183 0.4822838 +0.5654443 0.5341183 0.4822838 +0.5687816 0.5341183 0.4822838 +0.092819 0.5385787 0.4822838 +0.2262531 0.5385787 0.4822838 +0.2875993 0.5385787 0.4822838 +0.3262122 0.5385787 0.4822838 +0.3544566 0.5385787 0.4822838 +0.3767383 0.5385787 0.4822838 +0.3951413 0.5385787 0.4822838 +0.4108177 0.5385787 0.4822838 +0.4244723 0.5385787 0.4822838 +0.4365675 0.5385787 0.4822838 +0.4474232 0.5385787 0.4822838 +0.45727 0.5385787 0.4822838 +0.4662797 0.5385787 0.4822838 +0.4745834 0.5385787 0.4822838 +0.4822838 0.5385787 0.4822838 +0.4894626 0.5385787 0.4822838 +0.4961862 0.5385787 0.4822838 +0.5025087 0.5385787 0.4822838 +0.5084753 0.5385787 0.4822838 +0.514124 0.5385787 0.4822838 +0.519487 0.5385787 0.4822838 +0.5245917 0.5385787 0.4822838 +0.529462 0.5385787 0.4822838 +0.5341183 0.5385787 0.4822838 +0.5385787 0.5385787 0.4822838 +0.5428591 0.5385787 0.4822838 +0.5469733 0.5385787 0.4822838 +0.5509339 0.5385787 0.4822838 +0.5547519 0.5385787 0.4822838 +0.5584371 0.5385787 0.4822838 +0.5619986 0.5385787 0.4822838 +0.5654443 0.5385787 0.4822838 +0.5687816 0.5385787 0.4822838 +0.092819 0.5428591 0.4822838 +0.2262531 0.5428591 0.4822838 +0.2875993 0.5428591 0.4822838 +0.3262122 0.5428591 0.4822838 +0.3544566 0.5428591 0.4822838 +0.3767383 0.5428591 0.4822838 +0.3951413 0.5428591 0.4822838 +0.4108177 0.5428591 0.4822838 +0.4244723 0.5428591 0.4822838 +0.4365675 0.5428591 0.4822838 +0.4474232 0.5428591 0.4822838 +0.45727 0.5428591 0.4822838 +0.4662797 0.5428591 0.4822838 +0.4745834 0.5428591 0.4822838 +0.4822838 0.5428591 0.4822838 +0.4894626 0.5428591 0.4822838 +0.4961862 0.5428591 0.4822838 +0.5025087 0.5428591 0.4822838 +0.5084753 0.5428591 0.4822838 +0.514124 0.5428591 0.4822838 +0.519487 0.5428591 0.4822838 +0.5245917 0.5428591 0.4822838 +0.529462 0.5428591 0.4822838 +0.5341183 0.5428591 0.4822838 +0.5385787 0.5428591 0.4822838 +0.5428591 0.5428591 0.4822838 +0.5469733 0.5428591 0.4822838 +0.5509339 0.5428591 0.4822838 +0.5547519 0.5428591 0.4822838 +0.5584371 0.5428591 0.4822838 +0.5619986 0.5428591 0.4822838 +0.5654443 0.5428591 0.4822838 +0.5687816 0.5428591 0.4822838 +0.092819 0.5469733 0.4822838 +0.2262531 0.5469733 0.4822838 +0.2875993 0.5469733 0.4822838 +0.3262122 0.5469733 0.4822838 +0.3544566 0.5469733 0.4822838 +0.3767383 0.5469733 0.4822838 +0.3951413 0.5469733 0.4822838 +0.4108177 0.5469733 0.4822838 +0.4244723 0.5469733 0.4822838 +0.4365675 0.5469733 0.4822838 +0.4474232 0.5469733 0.4822838 +0.45727 0.5469733 0.4822838 +0.4662797 0.5469733 0.4822838 +0.4745834 0.5469733 0.4822838 +0.4822838 0.5469733 0.4822838 +0.4894626 0.5469733 0.4822838 +0.4961862 0.5469733 0.4822838 +0.5025087 0.5469733 0.4822838 +0.5084753 0.5469733 0.4822838 +0.514124 0.5469733 0.4822838 +0.519487 0.5469733 0.4822838 +0.5245917 0.5469733 0.4822838 +0.529462 0.5469733 0.4822838 +0.5341183 0.5469733 0.4822838 +0.5385787 0.5469733 0.4822838 +0.5428591 0.5469733 0.4822838 +0.5469733 0.5469733 0.4822838 +0.5509339 0.5469733 0.4822838 +0.5547519 0.5469733 0.4822838 +0.5584371 0.5469733 0.4822838 +0.5619986 0.5469733 0.4822838 +0.5654443 0.5469733 0.4822838 +0.5687816 0.5469733 0.4822838 +0.092819 0.5509339 0.4822838 +0.2262531 0.5509339 0.4822838 +0.2875993 0.5509339 0.4822838 +0.3262122 0.5509339 0.4822838 +0.3544566 0.5509339 0.4822838 +0.3767383 0.5509339 0.4822838 +0.3951413 0.5509339 0.4822838 +0.4108177 0.5509339 0.4822838 +0.4244723 0.5509339 0.4822838 +0.4365675 0.5509339 0.4822838 +0.4474232 0.5509339 0.4822838 +0.45727 0.5509339 0.4822838 +0.4662797 0.5509339 0.4822838 +0.4745834 0.5509339 0.4822838 +0.4822838 0.5509339 0.4822838 +0.4894626 0.5509339 0.4822838 +0.4961862 0.5509339 0.4822838 +0.5025087 0.5509339 0.4822838 +0.5084753 0.5509339 0.4822838 +0.514124 0.5509339 0.4822838 +0.519487 0.5509339 0.4822838 +0.5245917 0.5509339 0.4822838 +0.529462 0.5509339 0.4822838 +0.5341183 0.5509339 0.4822838 +0.5385787 0.5509339 0.4822838 +0.5428591 0.5509339 0.4822838 +0.5469733 0.5509339 0.4822838 +0.5509339 0.5509339 0.4822838 +0.5547519 0.5509339 0.4822838 +0.5584371 0.5509339 0.4822838 +0.5619986 0.5509339 0.4822838 +0.5654443 0.5509339 0.4822838 +0.5687816 0.5509339 0.4822838 +0.092819 0.5547519 0.4822838 +0.2262531 0.5547519 0.4822838 +0.2875993 0.5547519 0.4822838 +0.3262122 0.5547519 0.4822838 +0.3544566 0.5547519 0.4822838 +0.3767383 0.5547519 0.4822838 +0.3951413 0.5547519 0.4822838 +0.4108177 0.5547519 0.4822838 +0.4244723 0.5547519 0.4822838 +0.4365675 0.5547519 0.4822838 +0.4474232 0.5547519 0.4822838 +0.45727 0.5547519 0.4822838 +0.4662797 0.5547519 0.4822838 +0.4745834 0.5547519 0.4822838 +0.4822838 0.5547519 0.4822838 +0.4894626 0.5547519 0.4822838 +0.4961862 0.5547519 0.4822838 +0.5025087 0.5547519 0.4822838 +0.5084753 0.5547519 0.4822838 +0.514124 0.5547519 0.4822838 +0.519487 0.5547519 0.4822838 +0.5245917 0.5547519 0.4822838 +0.529462 0.5547519 0.4822838 +0.5341183 0.5547519 0.4822838 +0.5385787 0.5547519 0.4822838 +0.5428591 0.5547519 0.4822838 +0.5469733 0.5547519 0.4822838 +0.5509339 0.5547519 0.4822838 +0.5547519 0.5547519 0.4822838 +0.5584371 0.5547519 0.4822838 +0.5619986 0.5547519 0.4822838 +0.5654443 0.5547519 0.4822838 +0.5687816 0.5547519 0.4822838 +0.092819 0.5584371 0.4822838 +0.2262531 0.5584371 0.4822838 +0.2875993 0.5584371 0.4822838 +0.3262122 0.5584371 0.4822838 +0.3544566 0.5584371 0.4822838 +0.3767383 0.5584371 0.4822838 +0.3951413 0.5584371 0.4822838 +0.4108177 0.5584371 0.4822838 +0.4244723 0.5584371 0.4822838 +0.4365675 0.5584371 0.4822838 +0.4474232 0.5584371 0.4822838 +0.45727 0.5584371 0.4822838 +0.4662797 0.5584371 0.4822838 +0.4745834 0.5584371 0.4822838 +0.4822838 0.5584371 0.4822838 +0.4894626 0.5584371 0.4822838 +0.4961862 0.5584371 0.4822838 +0.5025087 0.5584371 0.4822838 +0.5084753 0.5584371 0.4822838 +0.514124 0.5584371 0.4822838 +0.519487 0.5584371 0.4822838 +0.5245917 0.5584371 0.4822838 +0.529462 0.5584371 0.4822838 +0.5341183 0.5584371 0.4822838 +0.5385787 0.5584371 0.4822838 +0.5428591 0.5584371 0.4822838 +0.5469733 0.5584371 0.4822838 +0.5509339 0.5584371 0.4822838 +0.5547519 0.5584371 0.4822838 +0.5584371 0.5584371 0.4822838 +0.5619986 0.5584371 0.4822838 +0.5654443 0.5584371 0.4822838 +0.5687816 0.5584371 0.4822838 +0.092819 0.5619986 0.4822838 +0.2262531 0.5619986 0.4822838 +0.2875993 0.5619986 0.4822838 +0.3262122 0.5619986 0.4822838 +0.3544566 0.5619986 0.4822838 +0.3767383 0.5619986 0.4822838 +0.3951413 0.5619986 0.4822838 +0.4108177 0.5619986 0.4822838 +0.4244723 0.5619986 0.4822838 +0.4365675 0.5619986 0.4822838 +0.4474232 0.5619986 0.4822838 +0.45727 0.5619986 0.4822838 +0.4662797 0.5619986 0.4822838 +0.4745834 0.5619986 0.4822838 +0.4822838 0.5619986 0.4822838 +0.4894626 0.5619986 0.4822838 +0.4961862 0.5619986 0.4822838 +0.5025087 0.5619986 0.4822838 +0.5084753 0.5619986 0.4822838 +0.514124 0.5619986 0.4822838 +0.519487 0.5619986 0.4822838 +0.5245917 0.5619986 0.4822838 +0.529462 0.5619986 0.4822838 +0.5341183 0.5619986 0.4822838 +0.5385787 0.5619986 0.4822838 +0.5428591 0.5619986 0.4822838 +0.5469733 0.5619986 0.4822838 +0.5509339 0.5619986 0.4822838 +0.5547519 0.5619986 0.4822838 +0.5584371 0.5619986 0.4822838 +0.5619986 0.5619986 0.4822838 +0.5654443 0.5619986 0.4822838 +0.5687816 0.5619986 0.4822838 +0.092819 0.5654443 0.4822838 +0.2262531 0.5654443 0.4822838 +0.2875993 0.5654443 0.4822838 +0.3262122 0.5654443 0.4822838 +0.3544566 0.5654443 0.4822838 +0.3767383 0.5654443 0.4822838 +0.3951413 0.5654443 0.4822838 +0.4108177 0.5654443 0.4822838 +0.4244723 0.5654443 0.4822838 +0.4365675 0.5654443 0.4822838 +0.4474232 0.5654443 0.4822838 +0.45727 0.5654443 0.4822838 +0.4662797 0.5654443 0.4822838 +0.4745834 0.5654443 0.4822838 +0.4822838 0.5654443 0.4822838 +0.4894626 0.5654443 0.4822838 +0.4961862 0.5654443 0.4822838 +0.5025087 0.5654443 0.4822838 +0.5084753 0.5654443 0.4822838 +0.514124 0.5654443 0.4822838 +0.519487 0.5654443 0.4822838 +0.5245917 0.5654443 0.4822838 +0.529462 0.5654443 0.4822838 +0.5341183 0.5654443 0.4822838 +0.5385787 0.5654443 0.4822838 +0.5428591 0.5654443 0.4822838 +0.5469733 0.5654443 0.4822838 +0.5509339 0.5654443 0.4822838 +0.5547519 0.5654443 0.4822838 +0.5584371 0.5654443 0.4822838 +0.5619986 0.5654443 0.4822838 +0.5654443 0.5654443 0.4822838 +0.5687816 0.5654443 0.4822838 +0.092819 0.5687816 0.4822838 +0.2262531 0.5687816 0.4822838 +0.2875993 0.5687816 0.4822838 +0.3262122 0.5687816 0.4822838 +0.3544566 0.5687816 0.4822838 +0.3767383 0.5687816 0.4822838 +0.3951413 0.5687816 0.4822838 +0.4108177 0.5687816 0.4822838 +0.4244723 0.5687816 0.4822838 +0.4365675 0.5687816 0.4822838 +0.4474232 0.5687816 0.4822838 +0.45727 0.5687816 0.4822838 +0.4662797 0.5687816 0.4822838 +0.4745834 0.5687816 0.4822838 +0.4822838 0.5687816 0.4822838 +0.4894626 0.5687816 0.4822838 +0.4961862 0.5687816 0.4822838 +0.5025087 0.5687816 0.4822838 +0.5084753 0.5687816 0.4822838 +0.514124 0.5687816 0.4822838 +0.519487 0.5687816 0.4822838 +0.5245917 0.5687816 0.4822838 +0.529462 0.5687816 0.4822838 +0.5341183 0.5687816 0.4822838 +0.5385787 0.5687816 0.4822838 +0.5428591 0.5687816 0.4822838 +0.5469733 0.5687816 0.4822838 +0.5509339 0.5687816 0.4822838 +0.5547519 0.5687816 0.4822838 +0.5584371 0.5687816 0.4822838 +0.5619986 0.5687816 0.4822838 +0.5654443 0.5687816 0.4822838 +0.5687816 0.5687816 0.4822838 +0.092819 0.092819 0.4894626 +0.2262531 0.092819 0.4894626 +0.2875993 0.092819 0.4894626 +0.3262122 0.092819 0.4894626 +0.3544566 0.092819 0.4894626 +0.3767383 0.092819 0.4894626 +0.3951413 0.092819 0.4894626 +0.4108177 0.092819 0.4894626 +0.4244723 0.092819 0.4894626 +0.4365675 0.092819 0.4894626 +0.4474232 0.092819 0.4894626 +0.45727 0.092819 0.4894626 +0.4662797 0.092819 0.4894626 +0.4745834 0.092819 0.4894626 +0.4822838 0.092819 0.4894626 +0.4894626 0.092819 0.4894626 +0.4961862 0.092819 0.4894626 +0.5025087 0.092819 0.4894626 +0.5084753 0.092819 0.4894626 +0.514124 0.092819 0.4894626 +0.519487 0.092819 0.4894626 +0.5245917 0.092819 0.4894626 +0.529462 0.092819 0.4894626 +0.5341183 0.092819 0.4894626 +0.5385787 0.092819 0.4894626 +0.5428591 0.092819 0.4894626 +0.5469733 0.092819 0.4894626 +0.5509339 0.092819 0.4894626 +0.5547519 0.092819 0.4894626 +0.5584371 0.092819 0.4894626 +0.5619986 0.092819 0.4894626 +0.5654443 0.092819 0.4894626 +0.5687816 0.092819 0.4894626 +0.092819 0.2262531 0.4894626 +0.2262531 0.2262531 0.4894626 +0.2875993 0.2262531 0.4894626 +0.3262122 0.2262531 0.4894626 +0.3544566 0.2262531 0.4894626 +0.3767383 0.2262531 0.4894626 +0.3951413 0.2262531 0.4894626 +0.4108177 0.2262531 0.4894626 +0.4244723 0.2262531 0.4894626 +0.4365675 0.2262531 0.4894626 +0.4474232 0.2262531 0.4894626 +0.45727 0.2262531 0.4894626 +0.4662797 0.2262531 0.4894626 +0.4745834 0.2262531 0.4894626 +0.4822838 0.2262531 0.4894626 +0.4894626 0.2262531 0.4894626 +0.4961862 0.2262531 0.4894626 +0.5025087 0.2262531 0.4894626 +0.5084753 0.2262531 0.4894626 +0.514124 0.2262531 0.4894626 +0.519487 0.2262531 0.4894626 +0.5245917 0.2262531 0.4894626 +0.529462 0.2262531 0.4894626 +0.5341183 0.2262531 0.4894626 +0.5385787 0.2262531 0.4894626 +0.5428591 0.2262531 0.4894626 +0.5469733 0.2262531 0.4894626 +0.5509339 0.2262531 0.4894626 +0.5547519 0.2262531 0.4894626 +0.5584371 0.2262531 0.4894626 +0.5619986 0.2262531 0.4894626 +0.5654443 0.2262531 0.4894626 +0.5687816 0.2262531 0.4894626 +0.092819 0.2875993 0.4894626 +0.2262531 0.2875993 0.4894626 +0.2875993 0.2875993 0.4894626 +0.3262122 0.2875993 0.4894626 +0.3544566 0.2875993 0.4894626 +0.3767383 0.2875993 0.4894626 +0.3951413 0.2875993 0.4894626 +0.4108177 0.2875993 0.4894626 +0.4244723 0.2875993 0.4894626 +0.4365675 0.2875993 0.4894626 +0.4474232 0.2875993 0.4894626 +0.45727 0.2875993 0.4894626 +0.4662797 0.2875993 0.4894626 +0.4745834 0.2875993 0.4894626 +0.4822838 0.2875993 0.4894626 +0.4894626 0.2875993 0.4894626 +0.4961862 0.2875993 0.4894626 +0.5025087 0.2875993 0.4894626 +0.5084753 0.2875993 0.4894626 +0.514124 0.2875993 0.4894626 +0.519487 0.2875993 0.4894626 +0.5245917 0.2875993 0.4894626 +0.529462 0.2875993 0.4894626 +0.5341183 0.2875993 0.4894626 +0.5385787 0.2875993 0.4894626 +0.5428591 0.2875993 0.4894626 +0.5469733 0.2875993 0.4894626 +0.5509339 0.2875993 0.4894626 +0.5547519 0.2875993 0.4894626 +0.5584371 0.2875993 0.4894626 +0.5619986 0.2875993 0.4894626 +0.5654443 0.2875993 0.4894626 +0.5687816 0.2875993 0.4894626 +0.092819 0.3262122 0.4894626 +0.2262531 0.3262122 0.4894626 +0.2875993 0.3262122 0.4894626 +0.3262122 0.3262122 0.4894626 +0.3544566 0.3262122 0.4894626 +0.3767383 0.3262122 0.4894626 +0.3951413 0.3262122 0.4894626 +0.4108177 0.3262122 0.4894626 +0.4244723 0.3262122 0.4894626 +0.4365675 0.3262122 0.4894626 +0.4474232 0.3262122 0.4894626 +0.45727 0.3262122 0.4894626 +0.4662797 0.3262122 0.4894626 +0.4745834 0.3262122 0.4894626 +0.4822838 0.3262122 0.4894626 +0.4894626 0.3262122 0.4894626 +0.4961862 0.3262122 0.4894626 +0.5025087 0.3262122 0.4894626 +0.5084753 0.3262122 0.4894626 +0.514124 0.3262122 0.4894626 +0.519487 0.3262122 0.4894626 +0.5245917 0.3262122 0.4894626 +0.529462 0.3262122 0.4894626 +0.5341183 0.3262122 0.4894626 +0.5385787 0.3262122 0.4894626 +0.5428591 0.3262122 0.4894626 +0.5469733 0.3262122 0.4894626 +0.5509339 0.3262122 0.4894626 +0.5547519 0.3262122 0.4894626 +0.5584371 0.3262122 0.4894626 +0.5619986 0.3262122 0.4894626 +0.5654443 0.3262122 0.4894626 +0.5687816 0.3262122 0.4894626 +0.092819 0.3544566 0.4894626 +0.2262531 0.3544566 0.4894626 +0.2875993 0.3544566 0.4894626 +0.3262122 0.3544566 0.4894626 +0.3544566 0.3544566 0.4894626 +0.3767383 0.3544566 0.4894626 +0.3951413 0.3544566 0.4894626 +0.4108177 0.3544566 0.4894626 +0.4244723 0.3544566 0.4894626 +0.4365675 0.3544566 0.4894626 +0.4474232 0.3544566 0.4894626 +0.45727 0.3544566 0.4894626 +0.4662797 0.3544566 0.4894626 +0.4745834 0.3544566 0.4894626 +0.4822838 0.3544566 0.4894626 +0.4894626 0.3544566 0.4894626 +0.4961862 0.3544566 0.4894626 +0.5025087 0.3544566 0.4894626 +0.5084753 0.3544566 0.4894626 +0.514124 0.3544566 0.4894626 +0.519487 0.3544566 0.4894626 +0.5245917 0.3544566 0.4894626 +0.529462 0.3544566 0.4894626 +0.5341183 0.3544566 0.4894626 +0.5385787 0.3544566 0.4894626 +0.5428591 0.3544566 0.4894626 +0.5469733 0.3544566 0.4894626 +0.5509339 0.3544566 0.4894626 +0.5547519 0.3544566 0.4894626 +0.5584371 0.3544566 0.4894626 +0.5619986 0.3544566 0.4894626 +0.5654443 0.3544566 0.4894626 +0.5687816 0.3544566 0.4894626 +0.092819 0.3767383 0.4894626 +0.2262531 0.3767383 0.4894626 +0.2875993 0.3767383 0.4894626 +0.3262122 0.3767383 0.4894626 +0.3544566 0.3767383 0.4894626 +0.3767383 0.3767383 0.4894626 +0.3951413 0.3767383 0.4894626 +0.4108177 0.3767383 0.4894626 +0.4244723 0.3767383 0.4894626 +0.4365675 0.3767383 0.4894626 +0.4474232 0.3767383 0.4894626 +0.45727 0.3767383 0.4894626 +0.4662797 0.3767383 0.4894626 +0.4745834 0.3767383 0.4894626 +0.4822838 0.3767383 0.4894626 +0.4894626 0.3767383 0.4894626 +0.4961862 0.3767383 0.4894626 +0.5025087 0.3767383 0.4894626 +0.5084753 0.3767383 0.4894626 +0.514124 0.3767383 0.4894626 +0.519487 0.3767383 0.4894626 +0.5245917 0.3767383 0.4894626 +0.529462 0.3767383 0.4894626 +0.5341183 0.3767383 0.4894626 +0.5385787 0.3767383 0.4894626 +0.5428591 0.3767383 0.4894626 +0.5469733 0.3767383 0.4894626 +0.5509339 0.3767383 0.4894626 +0.5547519 0.3767383 0.4894626 +0.5584371 0.3767383 0.4894626 +0.5619986 0.3767383 0.4894626 +0.5654443 0.3767383 0.4894626 +0.5687816 0.3767383 0.4894626 +0.092819 0.3951413 0.4894626 +0.2262531 0.3951413 0.4894626 +0.2875993 0.3951413 0.4894626 +0.3262122 0.3951413 0.4894626 +0.3544566 0.3951413 0.4894626 +0.3767383 0.3951413 0.4894626 +0.3951413 0.3951413 0.4894626 +0.4108177 0.3951413 0.4894626 +0.4244723 0.3951413 0.4894626 +0.4365675 0.3951413 0.4894626 +0.4474232 0.3951413 0.4894626 +0.45727 0.3951413 0.4894626 +0.4662797 0.3951413 0.4894626 +0.4745834 0.3951413 0.4894626 +0.4822838 0.3951413 0.4894626 +0.4894626 0.3951413 0.4894626 +0.4961862 0.3951413 0.4894626 +0.5025087 0.3951413 0.4894626 +0.5084753 0.3951413 0.4894626 +0.514124 0.3951413 0.4894626 +0.519487 0.3951413 0.4894626 +0.5245917 0.3951413 0.4894626 +0.529462 0.3951413 0.4894626 +0.5341183 0.3951413 0.4894626 +0.5385787 0.3951413 0.4894626 +0.5428591 0.3951413 0.4894626 +0.5469733 0.3951413 0.4894626 +0.5509339 0.3951413 0.4894626 +0.5547519 0.3951413 0.4894626 +0.5584371 0.3951413 0.4894626 +0.5619986 0.3951413 0.4894626 +0.5654443 0.3951413 0.4894626 +0.5687816 0.3951413 0.4894626 +0.092819 0.4108177 0.4894626 +0.2262531 0.4108177 0.4894626 +0.2875993 0.4108177 0.4894626 +0.3262122 0.4108177 0.4894626 +0.3544566 0.4108177 0.4894626 +0.3767383 0.4108177 0.4894626 +0.3951413 0.4108177 0.4894626 +0.4108177 0.4108177 0.4894626 +0.4244723 0.4108177 0.4894626 +0.4365675 0.4108177 0.4894626 +0.4474232 0.4108177 0.4894626 +0.45727 0.4108177 0.4894626 +0.4662797 0.4108177 0.4894626 +0.4745834 0.4108177 0.4894626 +0.4822838 0.4108177 0.4894626 +0.4894626 0.4108177 0.4894626 +0.4961862 0.4108177 0.4894626 +0.5025087 0.4108177 0.4894626 +0.5084753 0.4108177 0.4894626 +0.514124 0.4108177 0.4894626 +0.519487 0.4108177 0.4894626 +0.5245917 0.4108177 0.4894626 +0.529462 0.4108177 0.4894626 +0.5341183 0.4108177 0.4894626 +0.5385787 0.4108177 0.4894626 +0.5428591 0.4108177 0.4894626 +0.5469733 0.4108177 0.4894626 +0.5509339 0.4108177 0.4894626 +0.5547519 0.4108177 0.4894626 +0.5584371 0.4108177 0.4894626 +0.5619986 0.4108177 0.4894626 +0.5654443 0.4108177 0.4894626 +0.5687816 0.4108177 0.4894626 +0.092819 0.4244723 0.4894626 +0.2262531 0.4244723 0.4894626 +0.2875993 0.4244723 0.4894626 +0.3262122 0.4244723 0.4894626 +0.3544566 0.4244723 0.4894626 +0.3767383 0.4244723 0.4894626 +0.3951413 0.4244723 0.4894626 +0.4108177 0.4244723 0.4894626 +0.4244723 0.4244723 0.4894626 +0.4365675 0.4244723 0.4894626 +0.4474232 0.4244723 0.4894626 +0.45727 0.4244723 0.4894626 +0.4662797 0.4244723 0.4894626 +0.4745834 0.4244723 0.4894626 +0.4822838 0.4244723 0.4894626 +0.4894626 0.4244723 0.4894626 +0.4961862 0.4244723 0.4894626 +0.5025087 0.4244723 0.4894626 +0.5084753 0.4244723 0.4894626 +0.514124 0.4244723 0.4894626 +0.519487 0.4244723 0.4894626 +0.5245917 0.4244723 0.4894626 +0.529462 0.4244723 0.4894626 +0.5341183 0.4244723 0.4894626 +0.5385787 0.4244723 0.4894626 +0.5428591 0.4244723 0.4894626 +0.5469733 0.4244723 0.4894626 +0.5509339 0.4244723 0.4894626 +0.5547519 0.4244723 0.4894626 +0.5584371 0.4244723 0.4894626 +0.5619986 0.4244723 0.4894626 +0.5654443 0.4244723 0.4894626 +0.5687816 0.4244723 0.4894626 +0.092819 0.4365675 0.4894626 +0.2262531 0.4365675 0.4894626 +0.2875993 0.4365675 0.4894626 +0.3262122 0.4365675 0.4894626 +0.3544566 0.4365675 0.4894626 +0.3767383 0.4365675 0.4894626 +0.3951413 0.4365675 0.4894626 +0.4108177 0.4365675 0.4894626 +0.4244723 0.4365675 0.4894626 +0.4365675 0.4365675 0.4894626 +0.4474232 0.4365675 0.4894626 +0.45727 0.4365675 0.4894626 +0.4662797 0.4365675 0.4894626 +0.4745834 0.4365675 0.4894626 +0.4822838 0.4365675 0.4894626 +0.4894626 0.4365675 0.4894626 +0.4961862 0.4365675 0.4894626 +0.5025087 0.4365675 0.4894626 +0.5084753 0.4365675 0.4894626 +0.514124 0.4365675 0.4894626 +0.519487 0.4365675 0.4894626 +0.5245917 0.4365675 0.4894626 +0.529462 0.4365675 0.4894626 +0.5341183 0.4365675 0.4894626 +0.5385787 0.4365675 0.4894626 +0.5428591 0.4365675 0.4894626 +0.5469733 0.4365675 0.4894626 +0.5509339 0.4365675 0.4894626 +0.5547519 0.4365675 0.4894626 +0.5584371 0.4365675 0.4894626 +0.5619986 0.4365675 0.4894626 +0.5654443 0.4365675 0.4894626 +0.5687816 0.4365675 0.4894626 +0.092819 0.4474232 0.4894626 +0.2262531 0.4474232 0.4894626 +0.2875993 0.4474232 0.4894626 +0.3262122 0.4474232 0.4894626 +0.3544566 0.4474232 0.4894626 +0.3767383 0.4474232 0.4894626 +0.3951413 0.4474232 0.4894626 +0.4108177 0.4474232 0.4894626 +0.4244723 0.4474232 0.4894626 +0.4365675 0.4474232 0.4894626 +0.4474232 0.4474232 0.4894626 +0.45727 0.4474232 0.4894626 +0.4662797 0.4474232 0.4894626 +0.4745834 0.4474232 0.4894626 +0.4822838 0.4474232 0.4894626 +0.4894626 0.4474232 0.4894626 +0.4961862 0.4474232 0.4894626 +0.5025087 0.4474232 0.4894626 +0.5084753 0.4474232 0.4894626 +0.514124 0.4474232 0.4894626 +0.519487 0.4474232 0.4894626 +0.5245917 0.4474232 0.4894626 +0.529462 0.4474232 0.4894626 +0.5341183 0.4474232 0.4894626 +0.5385787 0.4474232 0.4894626 +0.5428591 0.4474232 0.4894626 +0.5469733 0.4474232 0.4894626 +0.5509339 0.4474232 0.4894626 +0.5547519 0.4474232 0.4894626 +0.5584371 0.4474232 0.4894626 +0.5619986 0.4474232 0.4894626 +0.5654443 0.4474232 0.4894626 +0.5687816 0.4474232 0.4894626 +0.092819 0.45727 0.4894626 +0.2262531 0.45727 0.4894626 +0.2875993 0.45727 0.4894626 +0.3262122 0.45727 0.4894626 +0.3544566 0.45727 0.4894626 +0.3767383 0.45727 0.4894626 +0.3951413 0.45727 0.4894626 +0.4108177 0.45727 0.4894626 +0.4244723 0.45727 0.4894626 +0.4365675 0.45727 0.4894626 +0.4474232 0.45727 0.4894626 +0.45727 0.45727 0.4894626 +0.4662797 0.45727 0.4894626 +0.4745834 0.45727 0.4894626 +0.4822838 0.45727 0.4894626 +0.4894626 0.45727 0.4894626 +0.4961862 0.45727 0.4894626 +0.5025087 0.45727 0.4894626 +0.5084753 0.45727 0.4894626 +0.514124 0.45727 0.4894626 +0.519487 0.45727 0.4894626 +0.5245917 0.45727 0.4894626 +0.529462 0.45727 0.4894626 +0.5341183 0.45727 0.4894626 +0.5385787 0.45727 0.4894626 +0.5428591 0.45727 0.4894626 +0.5469733 0.45727 0.4894626 +0.5509339 0.45727 0.4894626 +0.5547519 0.45727 0.4894626 +0.5584371 0.45727 0.4894626 +0.5619986 0.45727 0.4894626 +0.5654443 0.45727 0.4894626 +0.5687816 0.45727 0.4894626 +0.092819 0.4662797 0.4894626 +0.2262531 0.4662797 0.4894626 +0.2875993 0.4662797 0.4894626 +0.3262122 0.4662797 0.4894626 +0.3544566 0.4662797 0.4894626 +0.3767383 0.4662797 0.4894626 +0.3951413 0.4662797 0.4894626 +0.4108177 0.4662797 0.4894626 +0.4244723 0.4662797 0.4894626 +0.4365675 0.4662797 0.4894626 +0.4474232 0.4662797 0.4894626 +0.45727 0.4662797 0.4894626 +0.4662797 0.4662797 0.4894626 +0.4745834 0.4662797 0.4894626 +0.4822838 0.4662797 0.4894626 +0.4894626 0.4662797 0.4894626 +0.4961862 0.4662797 0.4894626 +0.5025087 0.4662797 0.4894626 +0.5084753 0.4662797 0.4894626 +0.514124 0.4662797 0.4894626 +0.519487 0.4662797 0.4894626 +0.5245917 0.4662797 0.4894626 +0.529462 0.4662797 0.4894626 +0.5341183 0.4662797 0.4894626 +0.5385787 0.4662797 0.4894626 +0.5428591 0.4662797 0.4894626 +0.5469733 0.4662797 0.4894626 +0.5509339 0.4662797 0.4894626 +0.5547519 0.4662797 0.4894626 +0.5584371 0.4662797 0.4894626 +0.5619986 0.4662797 0.4894626 +0.5654443 0.4662797 0.4894626 +0.5687816 0.4662797 0.4894626 +0.092819 0.4745834 0.4894626 +0.2262531 0.4745834 0.4894626 +0.2875993 0.4745834 0.4894626 +0.3262122 0.4745834 0.4894626 +0.3544566 0.4745834 0.4894626 +0.3767383 0.4745834 0.4894626 +0.3951413 0.4745834 0.4894626 +0.4108177 0.4745834 0.4894626 +0.4244723 0.4745834 0.4894626 +0.4365675 0.4745834 0.4894626 +0.4474232 0.4745834 0.4894626 +0.45727 0.4745834 0.4894626 +0.4662797 0.4745834 0.4894626 +0.4745834 0.4745834 0.4894626 +0.4822838 0.4745834 0.4894626 +0.4894626 0.4745834 0.4894626 +0.4961862 0.4745834 0.4894626 +0.5025087 0.4745834 0.4894626 +0.5084753 0.4745834 0.4894626 +0.514124 0.4745834 0.4894626 +0.519487 0.4745834 0.4894626 +0.5245917 0.4745834 0.4894626 +0.529462 0.4745834 0.4894626 +0.5341183 0.4745834 0.4894626 +0.5385787 0.4745834 0.4894626 +0.5428591 0.4745834 0.4894626 +0.5469733 0.4745834 0.4894626 +0.5509339 0.4745834 0.4894626 +0.5547519 0.4745834 0.4894626 +0.5584371 0.4745834 0.4894626 +0.5619986 0.4745834 0.4894626 +0.5654443 0.4745834 0.4894626 +0.5687816 0.4745834 0.4894626 +0.092819 0.4822838 0.4894626 +0.2262531 0.4822838 0.4894626 +0.2875993 0.4822838 0.4894626 +0.3262122 0.4822838 0.4894626 +0.3544566 0.4822838 0.4894626 +0.3767383 0.4822838 0.4894626 +0.3951413 0.4822838 0.4894626 +0.4108177 0.4822838 0.4894626 +0.4244723 0.4822838 0.4894626 +0.4365675 0.4822838 0.4894626 +0.4474232 0.4822838 0.4894626 +0.45727 0.4822838 0.4894626 +0.4662797 0.4822838 0.4894626 +0.4745834 0.4822838 0.4894626 +0.4822838 0.4822838 0.4894626 +0.4894626 0.4822838 0.4894626 +0.4961862 0.4822838 0.4894626 +0.5025087 0.4822838 0.4894626 +0.5084753 0.4822838 0.4894626 +0.514124 0.4822838 0.4894626 +0.519487 0.4822838 0.4894626 +0.5245917 0.4822838 0.4894626 +0.529462 0.4822838 0.4894626 +0.5341183 0.4822838 0.4894626 +0.5385787 0.4822838 0.4894626 +0.5428591 0.4822838 0.4894626 +0.5469733 0.4822838 0.4894626 +0.5509339 0.4822838 0.4894626 +0.5547519 0.4822838 0.4894626 +0.5584371 0.4822838 0.4894626 +0.5619986 0.4822838 0.4894626 +0.5654443 0.4822838 0.4894626 +0.5687816 0.4822838 0.4894626 +0.092819 0.4894626 0.4894626 +0.2262531 0.4894626 0.4894626 +0.2875993 0.4894626 0.4894626 +0.3262122 0.4894626 0.4894626 +0.3544566 0.4894626 0.4894626 +0.3767383 0.4894626 0.4894626 +0.3951413 0.4894626 0.4894626 +0.4108177 0.4894626 0.4894626 +0.4244723 0.4894626 0.4894626 +0.4365675 0.4894626 0.4894626 +0.4474232 0.4894626 0.4894626 +0.45727 0.4894626 0.4894626 +0.4662797 0.4894626 0.4894626 +0.4745834 0.4894626 0.4894626 +0.4822838 0.4894626 0.4894626 +0.4894626 0.4894626 0.4894626 +0.4961862 0.4894626 0.4894626 +0.5025087 0.4894626 0.4894626 +0.5084753 0.4894626 0.4894626 +0.514124 0.4894626 0.4894626 +0.519487 0.4894626 0.4894626 +0.5245917 0.4894626 0.4894626 +0.529462 0.4894626 0.4894626 +0.5341183 0.4894626 0.4894626 +0.5385787 0.4894626 0.4894626 +0.5428591 0.4894626 0.4894626 +0.5469733 0.4894626 0.4894626 +0.5509339 0.4894626 0.4894626 +0.5547519 0.4894626 0.4894626 +0.5584371 0.4894626 0.4894626 +0.5619986 0.4894626 0.4894626 +0.5654443 0.4894626 0.4894626 +0.5687816 0.4894626 0.4894626 +0.092819 0.4961862 0.4894626 +0.2262531 0.4961862 0.4894626 +0.2875993 0.4961862 0.4894626 +0.3262122 0.4961862 0.4894626 +0.3544566 0.4961862 0.4894626 +0.3767383 0.4961862 0.4894626 +0.3951413 0.4961862 0.4894626 +0.4108177 0.4961862 0.4894626 +0.4244723 0.4961862 0.4894626 +0.4365675 0.4961862 0.4894626 +0.4474232 0.4961862 0.4894626 +0.45727 0.4961862 0.4894626 +0.4662797 0.4961862 0.4894626 +0.4745834 0.4961862 0.4894626 +0.4822838 0.4961862 0.4894626 +0.4894626 0.4961862 0.4894626 +0.4961862 0.4961862 0.4894626 +0.5025087 0.4961862 0.4894626 +0.5084753 0.4961862 0.4894626 +0.514124 0.4961862 0.4894626 +0.519487 0.4961862 0.4894626 +0.5245917 0.4961862 0.4894626 +0.529462 0.4961862 0.4894626 +0.5341183 0.4961862 0.4894626 +0.5385787 0.4961862 0.4894626 +0.5428591 0.4961862 0.4894626 +0.5469733 0.4961862 0.4894626 +0.5509339 0.4961862 0.4894626 +0.5547519 0.4961862 0.4894626 +0.5584371 0.4961862 0.4894626 +0.5619986 0.4961862 0.4894626 +0.5654443 0.4961862 0.4894626 +0.5687816 0.4961862 0.4894626 +0.092819 0.5025087 0.4894626 +0.2262531 0.5025087 0.4894626 +0.2875993 0.5025087 0.4894626 +0.3262122 0.5025087 0.4894626 +0.3544566 0.5025087 0.4894626 +0.3767383 0.5025087 0.4894626 +0.3951413 0.5025087 0.4894626 +0.4108177 0.5025087 0.4894626 +0.4244723 0.5025087 0.4894626 +0.4365675 0.5025087 0.4894626 +0.4474232 0.5025087 0.4894626 +0.45727 0.5025087 0.4894626 +0.4662797 0.5025087 0.4894626 +0.4745834 0.5025087 0.4894626 +0.4822838 0.5025087 0.4894626 +0.4894626 0.5025087 0.4894626 +0.4961862 0.5025087 0.4894626 +0.5025087 0.5025087 0.4894626 +0.5084753 0.5025087 0.4894626 +0.514124 0.5025087 0.4894626 +0.519487 0.5025087 0.4894626 +0.5245917 0.5025087 0.4894626 +0.529462 0.5025087 0.4894626 +0.5341183 0.5025087 0.4894626 +0.5385787 0.5025087 0.4894626 +0.5428591 0.5025087 0.4894626 +0.5469733 0.5025087 0.4894626 +0.5509339 0.5025087 0.4894626 +0.5547519 0.5025087 0.4894626 +0.5584371 0.5025087 0.4894626 +0.5619986 0.5025087 0.4894626 +0.5654443 0.5025087 0.4894626 +0.5687816 0.5025087 0.4894626 +0.092819 0.5084753 0.4894626 +0.2262531 0.5084753 0.4894626 +0.2875993 0.5084753 0.4894626 +0.3262122 0.5084753 0.4894626 +0.3544566 0.5084753 0.4894626 +0.3767383 0.5084753 0.4894626 +0.3951413 0.5084753 0.4894626 +0.4108177 0.5084753 0.4894626 +0.4244723 0.5084753 0.4894626 +0.4365675 0.5084753 0.4894626 +0.4474232 0.5084753 0.4894626 +0.45727 0.5084753 0.4894626 +0.4662797 0.5084753 0.4894626 +0.4745834 0.5084753 0.4894626 +0.4822838 0.5084753 0.4894626 +0.4894626 0.5084753 0.4894626 +0.4961862 0.5084753 0.4894626 +0.5025087 0.5084753 0.4894626 +0.5084753 0.5084753 0.4894626 +0.514124 0.5084753 0.4894626 +0.519487 0.5084753 0.4894626 +0.5245917 0.5084753 0.4894626 +0.529462 0.5084753 0.4894626 +0.5341183 0.5084753 0.4894626 +0.5385787 0.5084753 0.4894626 +0.5428591 0.5084753 0.4894626 +0.5469733 0.5084753 0.4894626 +0.5509339 0.5084753 0.4894626 +0.5547519 0.5084753 0.4894626 +0.5584371 0.5084753 0.4894626 +0.5619986 0.5084753 0.4894626 +0.5654443 0.5084753 0.4894626 +0.5687816 0.5084753 0.4894626 +0.092819 0.514124 0.4894626 +0.2262531 0.514124 0.4894626 +0.2875993 0.514124 0.4894626 +0.3262122 0.514124 0.4894626 +0.3544566 0.514124 0.4894626 +0.3767383 0.514124 0.4894626 +0.3951413 0.514124 0.4894626 +0.4108177 0.514124 0.4894626 +0.4244723 0.514124 0.4894626 +0.4365675 0.514124 0.4894626 +0.4474232 0.514124 0.4894626 +0.45727 0.514124 0.4894626 +0.4662797 0.514124 0.4894626 +0.4745834 0.514124 0.4894626 +0.4822838 0.514124 0.4894626 +0.4894626 0.514124 0.4894626 +0.4961862 0.514124 0.4894626 +0.5025087 0.514124 0.4894626 +0.5084753 0.514124 0.4894626 +0.514124 0.514124 0.4894626 +0.519487 0.514124 0.4894626 +0.5245917 0.514124 0.4894626 +0.529462 0.514124 0.4894626 +0.5341183 0.514124 0.4894626 +0.5385787 0.514124 0.4894626 +0.5428591 0.514124 0.4894626 +0.5469733 0.514124 0.4894626 +0.5509339 0.514124 0.4894626 +0.5547519 0.514124 0.4894626 +0.5584371 0.514124 0.4894626 +0.5619986 0.514124 0.4894626 +0.5654443 0.514124 0.4894626 +0.5687816 0.514124 0.4894626 +0.092819 0.519487 0.4894626 +0.2262531 0.519487 0.4894626 +0.2875993 0.519487 0.4894626 +0.3262122 0.519487 0.4894626 +0.3544566 0.519487 0.4894626 +0.3767383 0.519487 0.4894626 +0.3951413 0.519487 0.4894626 +0.4108177 0.519487 0.4894626 +0.4244723 0.519487 0.4894626 +0.4365675 0.519487 0.4894626 +0.4474232 0.519487 0.4894626 +0.45727 0.519487 0.4894626 +0.4662797 0.519487 0.4894626 +0.4745834 0.519487 0.4894626 +0.4822838 0.519487 0.4894626 +0.4894626 0.519487 0.4894626 +0.4961862 0.519487 0.4894626 +0.5025087 0.519487 0.4894626 +0.5084753 0.519487 0.4894626 +0.514124 0.519487 0.4894626 +0.519487 0.519487 0.4894626 +0.5245917 0.519487 0.4894626 +0.529462 0.519487 0.4894626 +0.5341183 0.519487 0.4894626 +0.5385787 0.519487 0.4894626 +0.5428591 0.519487 0.4894626 +0.5469733 0.519487 0.4894626 +0.5509339 0.519487 0.4894626 +0.5547519 0.519487 0.4894626 +0.5584371 0.519487 0.4894626 +0.5619986 0.519487 0.4894626 +0.5654443 0.519487 0.4894626 +0.5687816 0.519487 0.4894626 +0.092819 0.5245917 0.4894626 +0.2262531 0.5245917 0.4894626 +0.2875993 0.5245917 0.4894626 +0.3262122 0.5245917 0.4894626 +0.3544566 0.5245917 0.4894626 +0.3767383 0.5245917 0.4894626 +0.3951413 0.5245917 0.4894626 +0.4108177 0.5245917 0.4894626 +0.4244723 0.5245917 0.4894626 +0.4365675 0.5245917 0.4894626 +0.4474232 0.5245917 0.4894626 +0.45727 0.5245917 0.4894626 +0.4662797 0.5245917 0.4894626 +0.4745834 0.5245917 0.4894626 +0.4822838 0.5245917 0.4894626 +0.4894626 0.5245917 0.4894626 +0.4961862 0.5245917 0.4894626 +0.5025087 0.5245917 0.4894626 +0.5084753 0.5245917 0.4894626 +0.514124 0.5245917 0.4894626 +0.519487 0.5245917 0.4894626 +0.5245917 0.5245917 0.4894626 +0.529462 0.5245917 0.4894626 +0.5341183 0.5245917 0.4894626 +0.5385787 0.5245917 0.4894626 +0.5428591 0.5245917 0.4894626 +0.5469733 0.5245917 0.4894626 +0.5509339 0.5245917 0.4894626 +0.5547519 0.5245917 0.4894626 +0.5584371 0.5245917 0.4894626 +0.5619986 0.5245917 0.4894626 +0.5654443 0.5245917 0.4894626 +0.5687816 0.5245917 0.4894626 +0.092819 0.529462 0.4894626 +0.2262531 0.529462 0.4894626 +0.2875993 0.529462 0.4894626 +0.3262122 0.529462 0.4894626 +0.3544566 0.529462 0.4894626 +0.3767383 0.529462 0.4894626 +0.3951413 0.529462 0.4894626 +0.4108177 0.529462 0.4894626 +0.4244723 0.529462 0.4894626 +0.4365675 0.529462 0.4894626 +0.4474232 0.529462 0.4894626 +0.45727 0.529462 0.4894626 +0.4662797 0.529462 0.4894626 +0.4745834 0.529462 0.4894626 +0.4822838 0.529462 0.4894626 +0.4894626 0.529462 0.4894626 +0.4961862 0.529462 0.4894626 +0.5025087 0.529462 0.4894626 +0.5084753 0.529462 0.4894626 +0.514124 0.529462 0.4894626 +0.519487 0.529462 0.4894626 +0.5245917 0.529462 0.4894626 +0.529462 0.529462 0.4894626 +0.5341183 0.529462 0.4894626 +0.5385787 0.529462 0.4894626 +0.5428591 0.529462 0.4894626 +0.5469733 0.529462 0.4894626 +0.5509339 0.529462 0.4894626 +0.5547519 0.529462 0.4894626 +0.5584371 0.529462 0.4894626 +0.5619986 0.529462 0.4894626 +0.5654443 0.529462 0.4894626 +0.5687816 0.529462 0.4894626 +0.092819 0.5341183 0.4894626 +0.2262531 0.5341183 0.4894626 +0.2875993 0.5341183 0.4894626 +0.3262122 0.5341183 0.4894626 +0.3544566 0.5341183 0.4894626 +0.3767383 0.5341183 0.4894626 +0.3951413 0.5341183 0.4894626 +0.4108177 0.5341183 0.4894626 +0.4244723 0.5341183 0.4894626 +0.4365675 0.5341183 0.4894626 +0.4474232 0.5341183 0.4894626 +0.45727 0.5341183 0.4894626 +0.4662797 0.5341183 0.4894626 +0.4745834 0.5341183 0.4894626 +0.4822838 0.5341183 0.4894626 +0.4894626 0.5341183 0.4894626 +0.4961862 0.5341183 0.4894626 +0.5025087 0.5341183 0.4894626 +0.5084753 0.5341183 0.4894626 +0.514124 0.5341183 0.4894626 +0.519487 0.5341183 0.4894626 +0.5245917 0.5341183 0.4894626 +0.529462 0.5341183 0.4894626 +0.5341183 0.5341183 0.4894626 +0.5385787 0.5341183 0.4894626 +0.5428591 0.5341183 0.4894626 +0.5469733 0.5341183 0.4894626 +0.5509339 0.5341183 0.4894626 +0.5547519 0.5341183 0.4894626 +0.5584371 0.5341183 0.4894626 +0.5619986 0.5341183 0.4894626 +0.5654443 0.5341183 0.4894626 +0.5687816 0.5341183 0.4894626 +0.092819 0.5385787 0.4894626 +0.2262531 0.5385787 0.4894626 +0.2875993 0.5385787 0.4894626 +0.3262122 0.5385787 0.4894626 +0.3544566 0.5385787 0.4894626 +0.3767383 0.5385787 0.4894626 +0.3951413 0.5385787 0.4894626 +0.4108177 0.5385787 0.4894626 +0.4244723 0.5385787 0.4894626 +0.4365675 0.5385787 0.4894626 +0.4474232 0.5385787 0.4894626 +0.45727 0.5385787 0.4894626 +0.4662797 0.5385787 0.4894626 +0.4745834 0.5385787 0.4894626 +0.4822838 0.5385787 0.4894626 +0.4894626 0.5385787 0.4894626 +0.4961862 0.5385787 0.4894626 +0.5025087 0.5385787 0.4894626 +0.5084753 0.5385787 0.4894626 +0.514124 0.5385787 0.4894626 +0.519487 0.5385787 0.4894626 +0.5245917 0.5385787 0.4894626 +0.529462 0.5385787 0.4894626 +0.5341183 0.5385787 0.4894626 +0.5385787 0.5385787 0.4894626 +0.5428591 0.5385787 0.4894626 +0.5469733 0.5385787 0.4894626 +0.5509339 0.5385787 0.4894626 +0.5547519 0.5385787 0.4894626 +0.5584371 0.5385787 0.4894626 +0.5619986 0.5385787 0.4894626 +0.5654443 0.5385787 0.4894626 +0.5687816 0.5385787 0.4894626 +0.092819 0.5428591 0.4894626 +0.2262531 0.5428591 0.4894626 +0.2875993 0.5428591 0.4894626 +0.3262122 0.5428591 0.4894626 +0.3544566 0.5428591 0.4894626 +0.3767383 0.5428591 0.4894626 +0.3951413 0.5428591 0.4894626 +0.4108177 0.5428591 0.4894626 +0.4244723 0.5428591 0.4894626 +0.4365675 0.5428591 0.4894626 +0.4474232 0.5428591 0.4894626 +0.45727 0.5428591 0.4894626 +0.4662797 0.5428591 0.4894626 +0.4745834 0.5428591 0.4894626 +0.4822838 0.5428591 0.4894626 +0.4894626 0.5428591 0.4894626 +0.4961862 0.5428591 0.4894626 +0.5025087 0.5428591 0.4894626 +0.5084753 0.5428591 0.4894626 +0.514124 0.5428591 0.4894626 +0.519487 0.5428591 0.4894626 +0.5245917 0.5428591 0.4894626 +0.529462 0.5428591 0.4894626 +0.5341183 0.5428591 0.4894626 +0.5385787 0.5428591 0.4894626 +0.5428591 0.5428591 0.4894626 +0.5469733 0.5428591 0.4894626 +0.5509339 0.5428591 0.4894626 +0.5547519 0.5428591 0.4894626 +0.5584371 0.5428591 0.4894626 +0.5619986 0.5428591 0.4894626 +0.5654443 0.5428591 0.4894626 +0.5687816 0.5428591 0.4894626 +0.092819 0.5469733 0.4894626 +0.2262531 0.5469733 0.4894626 +0.2875993 0.5469733 0.4894626 +0.3262122 0.5469733 0.4894626 +0.3544566 0.5469733 0.4894626 +0.3767383 0.5469733 0.4894626 +0.3951413 0.5469733 0.4894626 +0.4108177 0.5469733 0.4894626 +0.4244723 0.5469733 0.4894626 +0.4365675 0.5469733 0.4894626 +0.4474232 0.5469733 0.4894626 +0.45727 0.5469733 0.4894626 +0.4662797 0.5469733 0.4894626 +0.4745834 0.5469733 0.4894626 +0.4822838 0.5469733 0.4894626 +0.4894626 0.5469733 0.4894626 +0.4961862 0.5469733 0.4894626 +0.5025087 0.5469733 0.4894626 +0.5084753 0.5469733 0.4894626 +0.514124 0.5469733 0.4894626 +0.519487 0.5469733 0.4894626 +0.5245917 0.5469733 0.4894626 +0.529462 0.5469733 0.4894626 +0.5341183 0.5469733 0.4894626 +0.5385787 0.5469733 0.4894626 +0.5428591 0.5469733 0.4894626 +0.5469733 0.5469733 0.4894626 +0.5509339 0.5469733 0.4894626 +0.5547519 0.5469733 0.4894626 +0.5584371 0.5469733 0.4894626 +0.5619986 0.5469733 0.4894626 +0.5654443 0.5469733 0.4894626 +0.5687816 0.5469733 0.4894626 +0.092819 0.5509339 0.4894626 +0.2262531 0.5509339 0.4894626 +0.2875993 0.5509339 0.4894626 +0.3262122 0.5509339 0.4894626 +0.3544566 0.5509339 0.4894626 +0.3767383 0.5509339 0.4894626 +0.3951413 0.5509339 0.4894626 +0.4108177 0.5509339 0.4894626 +0.4244723 0.5509339 0.4894626 +0.4365675 0.5509339 0.4894626 +0.4474232 0.5509339 0.4894626 +0.45727 0.5509339 0.4894626 +0.4662797 0.5509339 0.4894626 +0.4745834 0.5509339 0.4894626 +0.4822838 0.5509339 0.4894626 +0.4894626 0.5509339 0.4894626 +0.4961862 0.5509339 0.4894626 +0.5025087 0.5509339 0.4894626 +0.5084753 0.5509339 0.4894626 +0.514124 0.5509339 0.4894626 +0.519487 0.5509339 0.4894626 +0.5245917 0.5509339 0.4894626 +0.529462 0.5509339 0.4894626 +0.5341183 0.5509339 0.4894626 +0.5385787 0.5509339 0.4894626 +0.5428591 0.5509339 0.4894626 +0.5469733 0.5509339 0.4894626 +0.5509339 0.5509339 0.4894626 +0.5547519 0.5509339 0.4894626 +0.5584371 0.5509339 0.4894626 +0.5619986 0.5509339 0.4894626 +0.5654443 0.5509339 0.4894626 +0.5687816 0.5509339 0.4894626 +0.092819 0.5547519 0.4894626 +0.2262531 0.5547519 0.4894626 +0.2875993 0.5547519 0.4894626 +0.3262122 0.5547519 0.4894626 +0.3544566 0.5547519 0.4894626 +0.3767383 0.5547519 0.4894626 +0.3951413 0.5547519 0.4894626 +0.4108177 0.5547519 0.4894626 +0.4244723 0.5547519 0.4894626 +0.4365675 0.5547519 0.4894626 +0.4474232 0.5547519 0.4894626 +0.45727 0.5547519 0.4894626 +0.4662797 0.5547519 0.4894626 +0.4745834 0.5547519 0.4894626 +0.4822838 0.5547519 0.4894626 +0.4894626 0.5547519 0.4894626 +0.4961862 0.5547519 0.4894626 +0.5025087 0.5547519 0.4894626 +0.5084753 0.5547519 0.4894626 +0.514124 0.5547519 0.4894626 +0.519487 0.5547519 0.4894626 +0.5245917 0.5547519 0.4894626 +0.529462 0.5547519 0.4894626 +0.5341183 0.5547519 0.4894626 +0.5385787 0.5547519 0.4894626 +0.5428591 0.5547519 0.4894626 +0.5469733 0.5547519 0.4894626 +0.5509339 0.5547519 0.4894626 +0.5547519 0.5547519 0.4894626 +0.5584371 0.5547519 0.4894626 +0.5619986 0.5547519 0.4894626 +0.5654443 0.5547519 0.4894626 +0.5687816 0.5547519 0.4894626 +0.092819 0.5584371 0.4894626 +0.2262531 0.5584371 0.4894626 +0.2875993 0.5584371 0.4894626 +0.3262122 0.5584371 0.4894626 +0.3544566 0.5584371 0.4894626 +0.3767383 0.5584371 0.4894626 +0.3951413 0.5584371 0.4894626 +0.4108177 0.5584371 0.4894626 +0.4244723 0.5584371 0.4894626 +0.4365675 0.5584371 0.4894626 +0.4474232 0.5584371 0.4894626 +0.45727 0.5584371 0.4894626 +0.4662797 0.5584371 0.4894626 +0.4745834 0.5584371 0.4894626 +0.4822838 0.5584371 0.4894626 +0.4894626 0.5584371 0.4894626 +0.4961862 0.5584371 0.4894626 +0.5025087 0.5584371 0.4894626 +0.5084753 0.5584371 0.4894626 +0.514124 0.5584371 0.4894626 +0.519487 0.5584371 0.4894626 +0.5245917 0.5584371 0.4894626 +0.529462 0.5584371 0.4894626 +0.5341183 0.5584371 0.4894626 +0.5385787 0.5584371 0.4894626 +0.5428591 0.5584371 0.4894626 +0.5469733 0.5584371 0.4894626 +0.5509339 0.5584371 0.4894626 +0.5547519 0.5584371 0.4894626 +0.5584371 0.5584371 0.4894626 +0.5619986 0.5584371 0.4894626 +0.5654443 0.5584371 0.4894626 +0.5687816 0.5584371 0.4894626 +0.092819 0.5619986 0.4894626 +0.2262531 0.5619986 0.4894626 +0.2875993 0.5619986 0.4894626 +0.3262122 0.5619986 0.4894626 +0.3544566 0.5619986 0.4894626 +0.3767383 0.5619986 0.4894626 +0.3951413 0.5619986 0.4894626 +0.4108177 0.5619986 0.4894626 +0.4244723 0.5619986 0.4894626 +0.4365675 0.5619986 0.4894626 +0.4474232 0.5619986 0.4894626 +0.45727 0.5619986 0.4894626 +0.4662797 0.5619986 0.4894626 +0.4745834 0.5619986 0.4894626 +0.4822838 0.5619986 0.4894626 +0.4894626 0.5619986 0.4894626 +0.4961862 0.5619986 0.4894626 +0.5025087 0.5619986 0.4894626 +0.5084753 0.5619986 0.4894626 +0.514124 0.5619986 0.4894626 +0.519487 0.5619986 0.4894626 +0.5245917 0.5619986 0.4894626 +0.529462 0.5619986 0.4894626 +0.5341183 0.5619986 0.4894626 +0.5385787 0.5619986 0.4894626 +0.5428591 0.5619986 0.4894626 +0.5469733 0.5619986 0.4894626 +0.5509339 0.5619986 0.4894626 +0.5547519 0.5619986 0.4894626 +0.5584371 0.5619986 0.4894626 +0.5619986 0.5619986 0.4894626 +0.5654443 0.5619986 0.4894626 +0.5687816 0.5619986 0.4894626 +0.092819 0.5654443 0.4894626 +0.2262531 0.5654443 0.4894626 +0.2875993 0.5654443 0.4894626 +0.3262122 0.5654443 0.4894626 +0.3544566 0.5654443 0.4894626 +0.3767383 0.5654443 0.4894626 +0.3951413 0.5654443 0.4894626 +0.4108177 0.5654443 0.4894626 +0.4244723 0.5654443 0.4894626 +0.4365675 0.5654443 0.4894626 +0.4474232 0.5654443 0.4894626 +0.45727 0.5654443 0.4894626 +0.4662797 0.5654443 0.4894626 +0.4745834 0.5654443 0.4894626 +0.4822838 0.5654443 0.4894626 +0.4894626 0.5654443 0.4894626 +0.4961862 0.5654443 0.4894626 +0.5025087 0.5654443 0.4894626 +0.5084753 0.5654443 0.4894626 +0.514124 0.5654443 0.4894626 +0.519487 0.5654443 0.4894626 +0.5245917 0.5654443 0.4894626 +0.529462 0.5654443 0.4894626 +0.5341183 0.5654443 0.4894626 +0.5385787 0.5654443 0.4894626 +0.5428591 0.5654443 0.4894626 +0.5469733 0.5654443 0.4894626 +0.5509339 0.5654443 0.4894626 +0.5547519 0.5654443 0.4894626 +0.5584371 0.5654443 0.4894626 +0.5619986 0.5654443 0.4894626 +0.5654443 0.5654443 0.4894626 +0.5687816 0.5654443 0.4894626 +0.092819 0.5687816 0.4894626 +0.2262531 0.5687816 0.4894626 +0.2875993 0.5687816 0.4894626 +0.3262122 0.5687816 0.4894626 +0.3544566 0.5687816 0.4894626 +0.3767383 0.5687816 0.4894626 +0.3951413 0.5687816 0.4894626 +0.4108177 0.5687816 0.4894626 +0.4244723 0.5687816 0.4894626 +0.4365675 0.5687816 0.4894626 +0.4474232 0.5687816 0.4894626 +0.45727 0.5687816 0.4894626 +0.4662797 0.5687816 0.4894626 +0.4745834 0.5687816 0.4894626 +0.4822838 0.5687816 0.4894626 +0.4894626 0.5687816 0.4894626 +0.4961862 0.5687816 0.4894626 +0.5025087 0.5687816 0.4894626 +0.5084753 0.5687816 0.4894626 +0.514124 0.5687816 0.4894626 +0.519487 0.5687816 0.4894626 +0.5245917 0.5687816 0.4894626 +0.529462 0.5687816 0.4894626 +0.5341183 0.5687816 0.4894626 +0.5385787 0.5687816 0.4894626 +0.5428591 0.5687816 0.4894626 +0.5469733 0.5687816 0.4894626 +0.5509339 0.5687816 0.4894626 +0.5547519 0.5687816 0.4894626 +0.5584371 0.5687816 0.4894626 +0.5619986 0.5687816 0.4894626 +0.5654443 0.5687816 0.4894626 +0.5687816 0.5687816 0.4894626 +0.092819 0.092819 0.4961862 +0.2262531 0.092819 0.4961862 +0.2875993 0.092819 0.4961862 +0.3262122 0.092819 0.4961862 +0.3544566 0.092819 0.4961862 +0.3767383 0.092819 0.4961862 +0.3951413 0.092819 0.4961862 +0.4108177 0.092819 0.4961862 +0.4244723 0.092819 0.4961862 +0.4365675 0.092819 0.4961862 +0.4474232 0.092819 0.4961862 +0.45727 0.092819 0.4961862 +0.4662797 0.092819 0.4961862 +0.4745834 0.092819 0.4961862 +0.4822838 0.092819 0.4961862 +0.4894626 0.092819 0.4961862 +0.4961862 0.092819 0.4961862 +0.5025087 0.092819 0.4961862 +0.5084753 0.092819 0.4961862 +0.514124 0.092819 0.4961862 +0.519487 0.092819 0.4961862 +0.5245917 0.092819 0.4961862 +0.529462 0.092819 0.4961862 +0.5341183 0.092819 0.4961862 +0.5385787 0.092819 0.4961862 +0.5428591 0.092819 0.4961862 +0.5469733 0.092819 0.4961862 +0.5509339 0.092819 0.4961862 +0.5547519 0.092819 0.4961862 +0.5584371 0.092819 0.4961862 +0.5619986 0.092819 0.4961862 +0.5654443 0.092819 0.4961862 +0.5687816 0.092819 0.4961862 +0.092819 0.2262531 0.4961862 +0.2262531 0.2262531 0.4961862 +0.2875993 0.2262531 0.4961862 +0.3262122 0.2262531 0.4961862 +0.3544566 0.2262531 0.4961862 +0.3767383 0.2262531 0.4961862 +0.3951413 0.2262531 0.4961862 +0.4108177 0.2262531 0.4961862 +0.4244723 0.2262531 0.4961862 +0.4365675 0.2262531 0.4961862 +0.4474232 0.2262531 0.4961862 +0.45727 0.2262531 0.4961862 +0.4662797 0.2262531 0.4961862 +0.4745834 0.2262531 0.4961862 +0.4822838 0.2262531 0.4961862 +0.4894626 0.2262531 0.4961862 +0.4961862 0.2262531 0.4961862 +0.5025087 0.2262531 0.4961862 +0.5084753 0.2262531 0.4961862 +0.514124 0.2262531 0.4961862 +0.519487 0.2262531 0.4961862 +0.5245917 0.2262531 0.4961862 +0.529462 0.2262531 0.4961862 +0.5341183 0.2262531 0.4961862 +0.5385787 0.2262531 0.4961862 +0.5428591 0.2262531 0.4961862 +0.5469733 0.2262531 0.4961862 +0.5509339 0.2262531 0.4961862 +0.5547519 0.2262531 0.4961862 +0.5584371 0.2262531 0.4961862 +0.5619986 0.2262531 0.4961862 +0.5654443 0.2262531 0.4961862 +0.5687816 0.2262531 0.4961862 +0.092819 0.2875993 0.4961862 +0.2262531 0.2875993 0.4961862 +0.2875993 0.2875993 0.4961862 +0.3262122 0.2875993 0.4961862 +0.3544566 0.2875993 0.4961862 +0.3767383 0.2875993 0.4961862 +0.3951413 0.2875993 0.4961862 +0.4108177 0.2875993 0.4961862 +0.4244723 0.2875993 0.4961862 +0.4365675 0.2875993 0.4961862 +0.4474232 0.2875993 0.4961862 +0.45727 0.2875993 0.4961862 +0.4662797 0.2875993 0.4961862 +0.4745834 0.2875993 0.4961862 +0.4822838 0.2875993 0.4961862 +0.4894626 0.2875993 0.4961862 +0.4961862 0.2875993 0.4961862 +0.5025087 0.2875993 0.4961862 +0.5084753 0.2875993 0.4961862 +0.514124 0.2875993 0.4961862 +0.519487 0.2875993 0.4961862 +0.5245917 0.2875993 0.4961862 +0.529462 0.2875993 0.4961862 +0.5341183 0.2875993 0.4961862 +0.5385787 0.2875993 0.4961862 +0.5428591 0.2875993 0.4961862 +0.5469733 0.2875993 0.4961862 +0.5509339 0.2875993 0.4961862 +0.5547519 0.2875993 0.4961862 +0.5584371 0.2875993 0.4961862 +0.5619986 0.2875993 0.4961862 +0.5654443 0.2875993 0.4961862 +0.5687816 0.2875993 0.4961862 +0.092819 0.3262122 0.4961862 +0.2262531 0.3262122 0.4961862 +0.2875993 0.3262122 0.4961862 +0.3262122 0.3262122 0.4961862 +0.3544566 0.3262122 0.4961862 +0.3767383 0.3262122 0.4961862 +0.3951413 0.3262122 0.4961862 +0.4108177 0.3262122 0.4961862 +0.4244723 0.3262122 0.4961862 +0.4365675 0.3262122 0.4961862 +0.4474232 0.3262122 0.4961862 +0.45727 0.3262122 0.4961862 +0.4662797 0.3262122 0.4961862 +0.4745834 0.3262122 0.4961862 +0.4822838 0.3262122 0.4961862 +0.4894626 0.3262122 0.4961862 +0.4961862 0.3262122 0.4961862 +0.5025087 0.3262122 0.4961862 +0.5084753 0.3262122 0.4961862 +0.514124 0.3262122 0.4961862 +0.519487 0.3262122 0.4961862 +0.5245917 0.3262122 0.4961862 +0.529462 0.3262122 0.4961862 +0.5341183 0.3262122 0.4961862 +0.5385787 0.3262122 0.4961862 +0.5428591 0.3262122 0.4961862 +0.5469733 0.3262122 0.4961862 +0.5509339 0.3262122 0.4961862 +0.5547519 0.3262122 0.4961862 +0.5584371 0.3262122 0.4961862 +0.5619986 0.3262122 0.4961862 +0.5654443 0.3262122 0.4961862 +0.5687816 0.3262122 0.4961862 +0.092819 0.3544566 0.4961862 +0.2262531 0.3544566 0.4961862 +0.2875993 0.3544566 0.4961862 +0.3262122 0.3544566 0.4961862 +0.3544566 0.3544566 0.4961862 +0.3767383 0.3544566 0.4961862 +0.3951413 0.3544566 0.4961862 +0.4108177 0.3544566 0.4961862 +0.4244723 0.3544566 0.4961862 +0.4365675 0.3544566 0.4961862 +0.4474232 0.3544566 0.4961862 +0.45727 0.3544566 0.4961862 +0.4662797 0.3544566 0.4961862 +0.4745834 0.3544566 0.4961862 +0.4822838 0.3544566 0.4961862 +0.4894626 0.3544566 0.4961862 +0.4961862 0.3544566 0.4961862 +0.5025087 0.3544566 0.4961862 +0.5084753 0.3544566 0.4961862 +0.514124 0.3544566 0.4961862 +0.519487 0.3544566 0.4961862 +0.5245917 0.3544566 0.4961862 +0.529462 0.3544566 0.4961862 +0.5341183 0.3544566 0.4961862 +0.5385787 0.3544566 0.4961862 +0.5428591 0.3544566 0.4961862 +0.5469733 0.3544566 0.4961862 +0.5509339 0.3544566 0.4961862 +0.5547519 0.3544566 0.4961862 +0.5584371 0.3544566 0.4961862 +0.5619986 0.3544566 0.4961862 +0.5654443 0.3544566 0.4961862 +0.5687816 0.3544566 0.4961862 +0.092819 0.3767383 0.4961862 +0.2262531 0.3767383 0.4961862 +0.2875993 0.3767383 0.4961862 +0.3262122 0.3767383 0.4961862 +0.3544566 0.3767383 0.4961862 +0.3767383 0.3767383 0.4961862 +0.3951413 0.3767383 0.4961862 +0.4108177 0.3767383 0.4961862 +0.4244723 0.3767383 0.4961862 +0.4365675 0.3767383 0.4961862 +0.4474232 0.3767383 0.4961862 +0.45727 0.3767383 0.4961862 +0.4662797 0.3767383 0.4961862 +0.4745834 0.3767383 0.4961862 +0.4822838 0.3767383 0.4961862 +0.4894626 0.3767383 0.4961862 +0.4961862 0.3767383 0.4961862 +0.5025087 0.3767383 0.4961862 +0.5084753 0.3767383 0.4961862 +0.514124 0.3767383 0.4961862 +0.519487 0.3767383 0.4961862 +0.5245917 0.3767383 0.4961862 +0.529462 0.3767383 0.4961862 +0.5341183 0.3767383 0.4961862 +0.5385787 0.3767383 0.4961862 +0.5428591 0.3767383 0.4961862 +0.5469733 0.3767383 0.4961862 +0.5509339 0.3767383 0.4961862 +0.5547519 0.3767383 0.4961862 +0.5584371 0.3767383 0.4961862 +0.5619986 0.3767383 0.4961862 +0.5654443 0.3767383 0.4961862 +0.5687816 0.3767383 0.4961862 +0.092819 0.3951413 0.4961862 +0.2262531 0.3951413 0.4961862 +0.2875993 0.3951413 0.4961862 +0.3262122 0.3951413 0.4961862 +0.3544566 0.3951413 0.4961862 +0.3767383 0.3951413 0.4961862 +0.3951413 0.3951413 0.4961862 +0.4108177 0.3951413 0.4961862 +0.4244723 0.3951413 0.4961862 +0.4365675 0.3951413 0.4961862 +0.4474232 0.3951413 0.4961862 +0.45727 0.3951413 0.4961862 +0.4662797 0.3951413 0.4961862 +0.4745834 0.3951413 0.4961862 +0.4822838 0.3951413 0.4961862 +0.4894626 0.3951413 0.4961862 +0.4961862 0.3951413 0.4961862 +0.5025087 0.3951413 0.4961862 +0.5084753 0.3951413 0.4961862 +0.514124 0.3951413 0.4961862 +0.519487 0.3951413 0.4961862 +0.5245917 0.3951413 0.4961862 +0.529462 0.3951413 0.4961862 +0.5341183 0.3951413 0.4961862 +0.5385787 0.3951413 0.4961862 +0.5428591 0.3951413 0.4961862 +0.5469733 0.3951413 0.4961862 +0.5509339 0.3951413 0.4961862 +0.5547519 0.3951413 0.4961862 +0.5584371 0.3951413 0.4961862 +0.5619986 0.3951413 0.4961862 +0.5654443 0.3951413 0.4961862 +0.5687816 0.3951413 0.4961862 +0.092819 0.4108177 0.4961862 +0.2262531 0.4108177 0.4961862 +0.2875993 0.4108177 0.4961862 +0.3262122 0.4108177 0.4961862 +0.3544566 0.4108177 0.4961862 +0.3767383 0.4108177 0.4961862 +0.3951413 0.4108177 0.4961862 +0.4108177 0.4108177 0.4961862 +0.4244723 0.4108177 0.4961862 +0.4365675 0.4108177 0.4961862 +0.4474232 0.4108177 0.4961862 +0.45727 0.4108177 0.4961862 +0.4662797 0.4108177 0.4961862 +0.4745834 0.4108177 0.4961862 +0.4822838 0.4108177 0.4961862 +0.4894626 0.4108177 0.4961862 +0.4961862 0.4108177 0.4961862 +0.5025087 0.4108177 0.4961862 +0.5084753 0.4108177 0.4961862 +0.514124 0.4108177 0.4961862 +0.519487 0.4108177 0.4961862 +0.5245917 0.4108177 0.4961862 +0.529462 0.4108177 0.4961862 +0.5341183 0.4108177 0.4961862 +0.5385787 0.4108177 0.4961862 +0.5428591 0.4108177 0.4961862 +0.5469733 0.4108177 0.4961862 +0.5509339 0.4108177 0.4961862 +0.5547519 0.4108177 0.4961862 +0.5584371 0.4108177 0.4961862 +0.5619986 0.4108177 0.4961862 +0.5654443 0.4108177 0.4961862 +0.5687816 0.4108177 0.4961862 +0.092819 0.4244723 0.4961862 +0.2262531 0.4244723 0.4961862 +0.2875993 0.4244723 0.4961862 +0.3262122 0.4244723 0.4961862 +0.3544566 0.4244723 0.4961862 +0.3767383 0.4244723 0.4961862 +0.3951413 0.4244723 0.4961862 +0.4108177 0.4244723 0.4961862 +0.4244723 0.4244723 0.4961862 +0.4365675 0.4244723 0.4961862 +0.4474232 0.4244723 0.4961862 +0.45727 0.4244723 0.4961862 +0.4662797 0.4244723 0.4961862 +0.4745834 0.4244723 0.4961862 +0.4822838 0.4244723 0.4961862 +0.4894626 0.4244723 0.4961862 +0.4961862 0.4244723 0.4961862 +0.5025087 0.4244723 0.4961862 +0.5084753 0.4244723 0.4961862 +0.514124 0.4244723 0.4961862 +0.519487 0.4244723 0.4961862 +0.5245917 0.4244723 0.4961862 +0.529462 0.4244723 0.4961862 +0.5341183 0.4244723 0.4961862 +0.5385787 0.4244723 0.4961862 +0.5428591 0.4244723 0.4961862 +0.5469733 0.4244723 0.4961862 +0.5509339 0.4244723 0.4961862 +0.5547519 0.4244723 0.4961862 +0.5584371 0.4244723 0.4961862 +0.5619986 0.4244723 0.4961862 +0.5654443 0.4244723 0.4961862 +0.5687816 0.4244723 0.4961862 +0.092819 0.4365675 0.4961862 +0.2262531 0.4365675 0.4961862 +0.2875993 0.4365675 0.4961862 +0.3262122 0.4365675 0.4961862 +0.3544566 0.4365675 0.4961862 +0.3767383 0.4365675 0.4961862 +0.3951413 0.4365675 0.4961862 +0.4108177 0.4365675 0.4961862 +0.4244723 0.4365675 0.4961862 +0.4365675 0.4365675 0.4961862 +0.4474232 0.4365675 0.4961862 +0.45727 0.4365675 0.4961862 +0.4662797 0.4365675 0.4961862 +0.4745834 0.4365675 0.4961862 +0.4822838 0.4365675 0.4961862 +0.4894626 0.4365675 0.4961862 +0.4961862 0.4365675 0.4961862 +0.5025087 0.4365675 0.4961862 +0.5084753 0.4365675 0.4961862 +0.514124 0.4365675 0.4961862 +0.519487 0.4365675 0.4961862 +0.5245917 0.4365675 0.4961862 +0.529462 0.4365675 0.4961862 +0.5341183 0.4365675 0.4961862 +0.5385787 0.4365675 0.4961862 +0.5428591 0.4365675 0.4961862 +0.5469733 0.4365675 0.4961862 +0.5509339 0.4365675 0.4961862 +0.5547519 0.4365675 0.4961862 +0.5584371 0.4365675 0.4961862 +0.5619986 0.4365675 0.4961862 +0.5654443 0.4365675 0.4961862 +0.5687816 0.4365675 0.4961862 +0.092819 0.4474232 0.4961862 +0.2262531 0.4474232 0.4961862 +0.2875993 0.4474232 0.4961862 +0.3262122 0.4474232 0.4961862 +0.3544566 0.4474232 0.4961862 +0.3767383 0.4474232 0.4961862 +0.3951413 0.4474232 0.4961862 +0.4108177 0.4474232 0.4961862 +0.4244723 0.4474232 0.4961862 +0.4365675 0.4474232 0.4961862 +0.4474232 0.4474232 0.4961862 +0.45727 0.4474232 0.4961862 +0.4662797 0.4474232 0.4961862 +0.4745834 0.4474232 0.4961862 +0.4822838 0.4474232 0.4961862 +0.4894626 0.4474232 0.4961862 +0.4961862 0.4474232 0.4961862 +0.5025087 0.4474232 0.4961862 +0.5084753 0.4474232 0.4961862 +0.514124 0.4474232 0.4961862 +0.519487 0.4474232 0.4961862 +0.5245917 0.4474232 0.4961862 +0.529462 0.4474232 0.4961862 +0.5341183 0.4474232 0.4961862 +0.5385787 0.4474232 0.4961862 +0.5428591 0.4474232 0.4961862 +0.5469733 0.4474232 0.4961862 +0.5509339 0.4474232 0.4961862 +0.5547519 0.4474232 0.4961862 +0.5584371 0.4474232 0.4961862 +0.5619986 0.4474232 0.4961862 +0.5654443 0.4474232 0.4961862 +0.5687816 0.4474232 0.4961862 +0.092819 0.45727 0.4961862 +0.2262531 0.45727 0.4961862 +0.2875993 0.45727 0.4961862 +0.3262122 0.45727 0.4961862 +0.3544566 0.45727 0.4961862 +0.3767383 0.45727 0.4961862 +0.3951413 0.45727 0.4961862 +0.4108177 0.45727 0.4961862 +0.4244723 0.45727 0.4961862 +0.4365675 0.45727 0.4961862 +0.4474232 0.45727 0.4961862 +0.45727 0.45727 0.4961862 +0.4662797 0.45727 0.4961862 +0.4745834 0.45727 0.4961862 +0.4822838 0.45727 0.4961862 +0.4894626 0.45727 0.4961862 +0.4961862 0.45727 0.4961862 +0.5025087 0.45727 0.4961862 +0.5084753 0.45727 0.4961862 +0.514124 0.45727 0.4961862 +0.519487 0.45727 0.4961862 +0.5245917 0.45727 0.4961862 +0.529462 0.45727 0.4961862 +0.5341183 0.45727 0.4961862 +0.5385787 0.45727 0.4961862 +0.5428591 0.45727 0.4961862 +0.5469733 0.45727 0.4961862 +0.5509339 0.45727 0.4961862 +0.5547519 0.45727 0.4961862 +0.5584371 0.45727 0.4961862 +0.5619986 0.45727 0.4961862 +0.5654443 0.45727 0.4961862 +0.5687816 0.45727 0.4961862 +0.092819 0.4662797 0.4961862 +0.2262531 0.4662797 0.4961862 +0.2875993 0.4662797 0.4961862 +0.3262122 0.4662797 0.4961862 +0.3544566 0.4662797 0.4961862 +0.3767383 0.4662797 0.4961862 +0.3951413 0.4662797 0.4961862 +0.4108177 0.4662797 0.4961862 +0.4244723 0.4662797 0.4961862 +0.4365675 0.4662797 0.4961862 +0.4474232 0.4662797 0.4961862 +0.45727 0.4662797 0.4961862 +0.4662797 0.4662797 0.4961862 +0.4745834 0.4662797 0.4961862 +0.4822838 0.4662797 0.4961862 +0.4894626 0.4662797 0.4961862 +0.4961862 0.4662797 0.4961862 +0.5025087 0.4662797 0.4961862 +0.5084753 0.4662797 0.4961862 +0.514124 0.4662797 0.4961862 +0.519487 0.4662797 0.4961862 +0.5245917 0.4662797 0.4961862 +0.529462 0.4662797 0.4961862 +0.5341183 0.4662797 0.4961862 +0.5385787 0.4662797 0.4961862 +0.5428591 0.4662797 0.4961862 +0.5469733 0.4662797 0.4961862 +0.5509339 0.4662797 0.4961862 +0.5547519 0.4662797 0.4961862 +0.5584371 0.4662797 0.4961862 +0.5619986 0.4662797 0.4961862 +0.5654443 0.4662797 0.4961862 +0.5687816 0.4662797 0.4961862 +0.092819 0.4745834 0.4961862 +0.2262531 0.4745834 0.4961862 +0.2875993 0.4745834 0.4961862 +0.3262122 0.4745834 0.4961862 +0.3544566 0.4745834 0.4961862 +0.3767383 0.4745834 0.4961862 +0.3951413 0.4745834 0.4961862 +0.4108177 0.4745834 0.4961862 +0.4244723 0.4745834 0.4961862 +0.4365675 0.4745834 0.4961862 +0.4474232 0.4745834 0.4961862 +0.45727 0.4745834 0.4961862 +0.4662797 0.4745834 0.4961862 +0.4745834 0.4745834 0.4961862 +0.4822838 0.4745834 0.4961862 +0.4894626 0.4745834 0.4961862 +0.4961862 0.4745834 0.4961862 +0.5025087 0.4745834 0.4961862 +0.5084753 0.4745834 0.4961862 +0.514124 0.4745834 0.4961862 +0.519487 0.4745834 0.4961862 +0.5245917 0.4745834 0.4961862 +0.529462 0.4745834 0.4961862 +0.5341183 0.4745834 0.4961862 +0.5385787 0.4745834 0.4961862 +0.5428591 0.4745834 0.4961862 +0.5469733 0.4745834 0.4961862 +0.5509339 0.4745834 0.4961862 +0.5547519 0.4745834 0.4961862 +0.5584371 0.4745834 0.4961862 +0.5619986 0.4745834 0.4961862 +0.5654443 0.4745834 0.4961862 +0.5687816 0.4745834 0.4961862 +0.092819 0.4822838 0.4961862 +0.2262531 0.4822838 0.4961862 +0.2875993 0.4822838 0.4961862 +0.3262122 0.4822838 0.4961862 +0.3544566 0.4822838 0.4961862 +0.3767383 0.4822838 0.4961862 +0.3951413 0.4822838 0.4961862 +0.4108177 0.4822838 0.4961862 +0.4244723 0.4822838 0.4961862 +0.4365675 0.4822838 0.4961862 +0.4474232 0.4822838 0.4961862 +0.45727 0.4822838 0.4961862 +0.4662797 0.4822838 0.4961862 +0.4745834 0.4822838 0.4961862 +0.4822838 0.4822838 0.4961862 +0.4894626 0.4822838 0.4961862 +0.4961862 0.4822838 0.4961862 +0.5025087 0.4822838 0.4961862 +0.5084753 0.4822838 0.4961862 +0.514124 0.4822838 0.4961862 +0.519487 0.4822838 0.4961862 +0.5245917 0.4822838 0.4961862 +0.529462 0.4822838 0.4961862 +0.5341183 0.4822838 0.4961862 +0.5385787 0.4822838 0.4961862 +0.5428591 0.4822838 0.4961862 +0.5469733 0.4822838 0.4961862 +0.5509339 0.4822838 0.4961862 +0.5547519 0.4822838 0.4961862 +0.5584371 0.4822838 0.4961862 +0.5619986 0.4822838 0.4961862 +0.5654443 0.4822838 0.4961862 +0.5687816 0.4822838 0.4961862 +0.092819 0.4894626 0.4961862 +0.2262531 0.4894626 0.4961862 +0.2875993 0.4894626 0.4961862 +0.3262122 0.4894626 0.4961862 +0.3544566 0.4894626 0.4961862 +0.3767383 0.4894626 0.4961862 +0.3951413 0.4894626 0.4961862 +0.4108177 0.4894626 0.4961862 +0.4244723 0.4894626 0.4961862 +0.4365675 0.4894626 0.4961862 +0.4474232 0.4894626 0.4961862 +0.45727 0.4894626 0.4961862 +0.4662797 0.4894626 0.4961862 +0.4745834 0.4894626 0.4961862 +0.4822838 0.4894626 0.4961862 +0.4894626 0.4894626 0.4961862 +0.4961862 0.4894626 0.4961862 +0.5025087 0.4894626 0.4961862 +0.5084753 0.4894626 0.4961862 +0.514124 0.4894626 0.4961862 +0.519487 0.4894626 0.4961862 +0.5245917 0.4894626 0.4961862 +0.529462 0.4894626 0.4961862 +0.5341183 0.4894626 0.4961862 +0.5385787 0.4894626 0.4961862 +0.5428591 0.4894626 0.4961862 +0.5469733 0.4894626 0.4961862 +0.5509339 0.4894626 0.4961862 +0.5547519 0.4894626 0.4961862 +0.5584371 0.4894626 0.4961862 +0.5619986 0.4894626 0.4961862 +0.5654443 0.4894626 0.4961862 +0.5687816 0.4894626 0.4961862 +0.092819 0.4961862 0.4961862 +0.2262531 0.4961862 0.4961862 +0.2875993 0.4961862 0.4961862 +0.3262122 0.4961862 0.4961862 +0.3544566 0.4961862 0.4961862 +0.3767383 0.4961862 0.4961862 +0.3951413 0.4961862 0.4961862 +0.4108177 0.4961862 0.4961862 +0.4244723 0.4961862 0.4961862 +0.4365675 0.4961862 0.4961862 +0.4474232 0.4961862 0.4961862 +0.45727 0.4961862 0.4961862 +0.4662797 0.4961862 0.4961862 +0.4745834 0.4961862 0.4961862 +0.4822838 0.4961862 0.4961862 +0.4894626 0.4961862 0.4961862 +0.4961862 0.4961862 0.4961862 +0.5025087 0.4961862 0.4961862 +0.5084753 0.4961862 0.4961862 +0.514124 0.4961862 0.4961862 +0.519487 0.4961862 0.4961862 +0.5245917 0.4961862 0.4961862 +0.529462 0.4961862 0.4961862 +0.5341183 0.4961862 0.4961862 +0.5385787 0.4961862 0.4961862 +0.5428591 0.4961862 0.4961862 +0.5469733 0.4961862 0.4961862 +0.5509339 0.4961862 0.4961862 +0.5547519 0.4961862 0.4961862 +0.5584371 0.4961862 0.4961862 +0.5619986 0.4961862 0.4961862 +0.5654443 0.4961862 0.4961862 +0.5687816 0.4961862 0.4961862 +0.092819 0.5025087 0.4961862 +0.2262531 0.5025087 0.4961862 +0.2875993 0.5025087 0.4961862 +0.3262122 0.5025087 0.4961862 +0.3544566 0.5025087 0.4961862 +0.3767383 0.5025087 0.4961862 +0.3951413 0.5025087 0.4961862 +0.4108177 0.5025087 0.4961862 +0.4244723 0.5025087 0.4961862 +0.4365675 0.5025087 0.4961862 +0.4474232 0.5025087 0.4961862 +0.45727 0.5025087 0.4961862 +0.4662797 0.5025087 0.4961862 +0.4745834 0.5025087 0.4961862 +0.4822838 0.5025087 0.4961862 +0.4894626 0.5025087 0.4961862 +0.4961862 0.5025087 0.4961862 +0.5025087 0.5025087 0.4961862 +0.5084753 0.5025087 0.4961862 +0.514124 0.5025087 0.4961862 +0.519487 0.5025087 0.4961862 +0.5245917 0.5025087 0.4961862 +0.529462 0.5025087 0.4961862 +0.5341183 0.5025087 0.4961862 +0.5385787 0.5025087 0.4961862 +0.5428591 0.5025087 0.4961862 +0.5469733 0.5025087 0.4961862 +0.5509339 0.5025087 0.4961862 +0.5547519 0.5025087 0.4961862 +0.5584371 0.5025087 0.4961862 +0.5619986 0.5025087 0.4961862 +0.5654443 0.5025087 0.4961862 +0.5687816 0.5025087 0.4961862 +0.092819 0.5084753 0.4961862 +0.2262531 0.5084753 0.4961862 +0.2875993 0.5084753 0.4961862 +0.3262122 0.5084753 0.4961862 +0.3544566 0.5084753 0.4961862 +0.3767383 0.5084753 0.4961862 +0.3951413 0.5084753 0.4961862 +0.4108177 0.5084753 0.4961862 +0.4244723 0.5084753 0.4961862 +0.4365675 0.5084753 0.4961862 +0.4474232 0.5084753 0.4961862 +0.45727 0.5084753 0.4961862 +0.4662797 0.5084753 0.4961862 +0.4745834 0.5084753 0.4961862 +0.4822838 0.5084753 0.4961862 +0.4894626 0.5084753 0.4961862 +0.4961862 0.5084753 0.4961862 +0.5025087 0.5084753 0.4961862 +0.5084753 0.5084753 0.4961862 +0.514124 0.5084753 0.4961862 +0.519487 0.5084753 0.4961862 +0.5245917 0.5084753 0.4961862 +0.529462 0.5084753 0.4961862 +0.5341183 0.5084753 0.4961862 +0.5385787 0.5084753 0.4961862 +0.5428591 0.5084753 0.4961862 +0.5469733 0.5084753 0.4961862 +0.5509339 0.5084753 0.4961862 +0.5547519 0.5084753 0.4961862 +0.5584371 0.5084753 0.4961862 +0.5619986 0.5084753 0.4961862 +0.5654443 0.5084753 0.4961862 +0.5687816 0.5084753 0.4961862 +0.092819 0.514124 0.4961862 +0.2262531 0.514124 0.4961862 +0.2875993 0.514124 0.4961862 +0.3262122 0.514124 0.4961862 +0.3544566 0.514124 0.4961862 +0.3767383 0.514124 0.4961862 +0.3951413 0.514124 0.4961862 +0.4108177 0.514124 0.4961862 +0.4244723 0.514124 0.4961862 +0.4365675 0.514124 0.4961862 +0.4474232 0.514124 0.4961862 +0.45727 0.514124 0.4961862 +0.4662797 0.514124 0.4961862 +0.4745834 0.514124 0.4961862 +0.4822838 0.514124 0.4961862 +0.4894626 0.514124 0.4961862 +0.4961862 0.514124 0.4961862 +0.5025087 0.514124 0.4961862 +0.5084753 0.514124 0.4961862 +0.514124 0.514124 0.4961862 +0.519487 0.514124 0.4961862 +0.5245917 0.514124 0.4961862 +0.529462 0.514124 0.4961862 +0.5341183 0.514124 0.4961862 +0.5385787 0.514124 0.4961862 +0.5428591 0.514124 0.4961862 +0.5469733 0.514124 0.4961862 +0.5509339 0.514124 0.4961862 +0.5547519 0.514124 0.4961862 +0.5584371 0.514124 0.4961862 +0.5619986 0.514124 0.4961862 +0.5654443 0.514124 0.4961862 +0.5687816 0.514124 0.4961862 +0.092819 0.519487 0.4961862 +0.2262531 0.519487 0.4961862 +0.2875993 0.519487 0.4961862 +0.3262122 0.519487 0.4961862 +0.3544566 0.519487 0.4961862 +0.3767383 0.519487 0.4961862 +0.3951413 0.519487 0.4961862 +0.4108177 0.519487 0.4961862 +0.4244723 0.519487 0.4961862 +0.4365675 0.519487 0.4961862 +0.4474232 0.519487 0.4961862 +0.45727 0.519487 0.4961862 +0.4662797 0.519487 0.4961862 +0.4745834 0.519487 0.4961862 +0.4822838 0.519487 0.4961862 +0.4894626 0.519487 0.4961862 +0.4961862 0.519487 0.4961862 +0.5025087 0.519487 0.4961862 +0.5084753 0.519487 0.4961862 +0.514124 0.519487 0.4961862 +0.519487 0.519487 0.4961862 +0.5245917 0.519487 0.4961862 +0.529462 0.519487 0.4961862 +0.5341183 0.519487 0.4961862 +0.5385787 0.519487 0.4961862 +0.5428591 0.519487 0.4961862 +0.5469733 0.519487 0.4961862 +0.5509339 0.519487 0.4961862 +0.5547519 0.519487 0.4961862 +0.5584371 0.519487 0.4961862 +0.5619986 0.519487 0.4961862 +0.5654443 0.519487 0.4961862 +0.5687816 0.519487 0.4961862 +0.092819 0.5245917 0.4961862 +0.2262531 0.5245917 0.4961862 +0.2875993 0.5245917 0.4961862 +0.3262122 0.5245917 0.4961862 +0.3544566 0.5245917 0.4961862 +0.3767383 0.5245917 0.4961862 +0.3951413 0.5245917 0.4961862 +0.4108177 0.5245917 0.4961862 +0.4244723 0.5245917 0.4961862 +0.4365675 0.5245917 0.4961862 +0.4474232 0.5245917 0.4961862 +0.45727 0.5245917 0.4961862 +0.4662797 0.5245917 0.4961862 +0.4745834 0.5245917 0.4961862 +0.4822838 0.5245917 0.4961862 +0.4894626 0.5245917 0.4961862 +0.4961862 0.5245917 0.4961862 +0.5025087 0.5245917 0.4961862 +0.5084753 0.5245917 0.4961862 +0.514124 0.5245917 0.4961862 +0.519487 0.5245917 0.4961862 +0.5245917 0.5245917 0.4961862 +0.529462 0.5245917 0.4961862 +0.5341183 0.5245917 0.4961862 +0.5385787 0.5245917 0.4961862 +0.5428591 0.5245917 0.4961862 +0.5469733 0.5245917 0.4961862 +0.5509339 0.5245917 0.4961862 +0.5547519 0.5245917 0.4961862 +0.5584371 0.5245917 0.4961862 +0.5619986 0.5245917 0.4961862 +0.5654443 0.5245917 0.4961862 +0.5687816 0.5245917 0.4961862 +0.092819 0.529462 0.4961862 +0.2262531 0.529462 0.4961862 +0.2875993 0.529462 0.4961862 +0.3262122 0.529462 0.4961862 +0.3544566 0.529462 0.4961862 +0.3767383 0.529462 0.4961862 +0.3951413 0.529462 0.4961862 +0.4108177 0.529462 0.4961862 +0.4244723 0.529462 0.4961862 +0.4365675 0.529462 0.4961862 +0.4474232 0.529462 0.4961862 +0.45727 0.529462 0.4961862 +0.4662797 0.529462 0.4961862 +0.4745834 0.529462 0.4961862 +0.4822838 0.529462 0.4961862 +0.4894626 0.529462 0.4961862 +0.4961862 0.529462 0.4961862 +0.5025087 0.529462 0.4961862 +0.5084753 0.529462 0.4961862 +0.514124 0.529462 0.4961862 +0.519487 0.529462 0.4961862 +0.5245917 0.529462 0.4961862 +0.529462 0.529462 0.4961862 +0.5341183 0.529462 0.4961862 +0.5385787 0.529462 0.4961862 +0.5428591 0.529462 0.4961862 +0.5469733 0.529462 0.4961862 +0.5509339 0.529462 0.4961862 +0.5547519 0.529462 0.4961862 +0.5584371 0.529462 0.4961862 +0.5619986 0.529462 0.4961862 +0.5654443 0.529462 0.4961862 +0.5687816 0.529462 0.4961862 +0.092819 0.5341183 0.4961862 +0.2262531 0.5341183 0.4961862 +0.2875993 0.5341183 0.4961862 +0.3262122 0.5341183 0.4961862 +0.3544566 0.5341183 0.4961862 +0.3767383 0.5341183 0.4961862 +0.3951413 0.5341183 0.4961862 +0.4108177 0.5341183 0.4961862 +0.4244723 0.5341183 0.4961862 +0.4365675 0.5341183 0.4961862 +0.4474232 0.5341183 0.4961862 +0.45727 0.5341183 0.4961862 +0.4662797 0.5341183 0.4961862 +0.4745834 0.5341183 0.4961862 +0.4822838 0.5341183 0.4961862 +0.4894626 0.5341183 0.4961862 +0.4961862 0.5341183 0.4961862 +0.5025087 0.5341183 0.4961862 +0.5084753 0.5341183 0.4961862 +0.514124 0.5341183 0.4961862 +0.519487 0.5341183 0.4961862 +0.5245917 0.5341183 0.4961862 +0.529462 0.5341183 0.4961862 +0.5341183 0.5341183 0.4961862 +0.5385787 0.5341183 0.4961862 +0.5428591 0.5341183 0.4961862 +0.5469733 0.5341183 0.4961862 +0.5509339 0.5341183 0.4961862 +0.5547519 0.5341183 0.4961862 +0.5584371 0.5341183 0.4961862 +0.5619986 0.5341183 0.4961862 +0.5654443 0.5341183 0.4961862 +0.5687816 0.5341183 0.4961862 +0.092819 0.5385787 0.4961862 +0.2262531 0.5385787 0.4961862 +0.2875993 0.5385787 0.4961862 +0.3262122 0.5385787 0.4961862 +0.3544566 0.5385787 0.4961862 +0.3767383 0.5385787 0.4961862 +0.3951413 0.5385787 0.4961862 +0.4108177 0.5385787 0.4961862 +0.4244723 0.5385787 0.4961862 +0.4365675 0.5385787 0.4961862 +0.4474232 0.5385787 0.4961862 +0.45727 0.5385787 0.4961862 +0.4662797 0.5385787 0.4961862 +0.4745834 0.5385787 0.4961862 +0.4822838 0.5385787 0.4961862 +0.4894626 0.5385787 0.4961862 +0.4961862 0.5385787 0.4961862 +0.5025087 0.5385787 0.4961862 +0.5084753 0.5385787 0.4961862 +0.514124 0.5385787 0.4961862 +0.519487 0.5385787 0.4961862 +0.5245917 0.5385787 0.4961862 +0.529462 0.5385787 0.4961862 +0.5341183 0.5385787 0.4961862 +0.5385787 0.5385787 0.4961862 +0.5428591 0.5385787 0.4961862 +0.5469733 0.5385787 0.4961862 +0.5509339 0.5385787 0.4961862 +0.5547519 0.5385787 0.4961862 +0.5584371 0.5385787 0.4961862 +0.5619986 0.5385787 0.4961862 +0.5654443 0.5385787 0.4961862 +0.5687816 0.5385787 0.4961862 +0.092819 0.5428591 0.4961862 +0.2262531 0.5428591 0.4961862 +0.2875993 0.5428591 0.4961862 +0.3262122 0.5428591 0.4961862 +0.3544566 0.5428591 0.4961862 +0.3767383 0.5428591 0.4961862 +0.3951413 0.5428591 0.4961862 +0.4108177 0.5428591 0.4961862 +0.4244723 0.5428591 0.4961862 +0.4365675 0.5428591 0.4961862 +0.4474232 0.5428591 0.4961862 +0.45727 0.5428591 0.4961862 +0.4662797 0.5428591 0.4961862 +0.4745834 0.5428591 0.4961862 +0.4822838 0.5428591 0.4961862 +0.4894626 0.5428591 0.4961862 +0.4961862 0.5428591 0.4961862 +0.5025087 0.5428591 0.4961862 +0.5084753 0.5428591 0.4961862 +0.514124 0.5428591 0.4961862 +0.519487 0.5428591 0.4961862 +0.5245917 0.5428591 0.4961862 +0.529462 0.5428591 0.4961862 +0.5341183 0.5428591 0.4961862 +0.5385787 0.5428591 0.4961862 +0.5428591 0.5428591 0.4961862 +0.5469733 0.5428591 0.4961862 +0.5509339 0.5428591 0.4961862 +0.5547519 0.5428591 0.4961862 +0.5584371 0.5428591 0.4961862 +0.5619986 0.5428591 0.4961862 +0.5654443 0.5428591 0.4961862 +0.5687816 0.5428591 0.4961862 +0.092819 0.5469733 0.4961862 +0.2262531 0.5469733 0.4961862 +0.2875993 0.5469733 0.4961862 +0.3262122 0.5469733 0.4961862 +0.3544566 0.5469733 0.4961862 +0.3767383 0.5469733 0.4961862 +0.3951413 0.5469733 0.4961862 +0.4108177 0.5469733 0.4961862 +0.4244723 0.5469733 0.4961862 +0.4365675 0.5469733 0.4961862 +0.4474232 0.5469733 0.4961862 +0.45727 0.5469733 0.4961862 +0.4662797 0.5469733 0.4961862 +0.4745834 0.5469733 0.4961862 +0.4822838 0.5469733 0.4961862 +0.4894626 0.5469733 0.4961862 +0.4961862 0.5469733 0.4961862 +0.5025087 0.5469733 0.4961862 +0.5084753 0.5469733 0.4961862 +0.514124 0.5469733 0.4961862 +0.519487 0.5469733 0.4961862 +0.5245917 0.5469733 0.4961862 +0.529462 0.5469733 0.4961862 +0.5341183 0.5469733 0.4961862 +0.5385787 0.5469733 0.4961862 +0.5428591 0.5469733 0.4961862 +0.5469733 0.5469733 0.4961862 +0.5509339 0.5469733 0.4961862 +0.5547519 0.5469733 0.4961862 +0.5584371 0.5469733 0.4961862 +0.5619986 0.5469733 0.4961862 +0.5654443 0.5469733 0.4961862 +0.5687816 0.5469733 0.4961862 +0.092819 0.5509339 0.4961862 +0.2262531 0.5509339 0.4961862 +0.2875993 0.5509339 0.4961862 +0.3262122 0.5509339 0.4961862 +0.3544566 0.5509339 0.4961862 +0.3767383 0.5509339 0.4961862 +0.3951413 0.5509339 0.4961862 +0.4108177 0.5509339 0.4961862 +0.4244723 0.5509339 0.4961862 +0.4365675 0.5509339 0.4961862 +0.4474232 0.5509339 0.4961862 +0.45727 0.5509339 0.4961862 +0.4662797 0.5509339 0.4961862 +0.4745834 0.5509339 0.4961862 +0.4822838 0.5509339 0.4961862 +0.4894626 0.5509339 0.4961862 +0.4961862 0.5509339 0.4961862 +0.5025087 0.5509339 0.4961862 +0.5084753 0.5509339 0.4961862 +0.514124 0.5509339 0.4961862 +0.519487 0.5509339 0.4961862 +0.5245917 0.5509339 0.4961862 +0.529462 0.5509339 0.4961862 +0.5341183 0.5509339 0.4961862 +0.5385787 0.5509339 0.4961862 +0.5428591 0.5509339 0.4961862 +0.5469733 0.5509339 0.4961862 +0.5509339 0.5509339 0.4961862 +0.5547519 0.5509339 0.4961862 +0.5584371 0.5509339 0.4961862 +0.5619986 0.5509339 0.4961862 +0.5654443 0.5509339 0.4961862 +0.5687816 0.5509339 0.4961862 +0.092819 0.5547519 0.4961862 +0.2262531 0.5547519 0.4961862 +0.2875993 0.5547519 0.4961862 +0.3262122 0.5547519 0.4961862 +0.3544566 0.5547519 0.4961862 +0.3767383 0.5547519 0.4961862 +0.3951413 0.5547519 0.4961862 +0.4108177 0.5547519 0.4961862 +0.4244723 0.5547519 0.4961862 +0.4365675 0.5547519 0.4961862 +0.4474232 0.5547519 0.4961862 +0.45727 0.5547519 0.4961862 +0.4662797 0.5547519 0.4961862 +0.4745834 0.5547519 0.4961862 +0.4822838 0.5547519 0.4961862 +0.4894626 0.5547519 0.4961862 +0.4961862 0.5547519 0.4961862 +0.5025087 0.5547519 0.4961862 +0.5084753 0.5547519 0.4961862 +0.514124 0.5547519 0.4961862 +0.519487 0.5547519 0.4961862 +0.5245917 0.5547519 0.4961862 +0.529462 0.5547519 0.4961862 +0.5341183 0.5547519 0.4961862 +0.5385787 0.5547519 0.4961862 +0.5428591 0.5547519 0.4961862 +0.5469733 0.5547519 0.4961862 +0.5509339 0.5547519 0.4961862 +0.5547519 0.5547519 0.4961862 +0.5584371 0.5547519 0.4961862 +0.5619986 0.5547519 0.4961862 +0.5654443 0.5547519 0.4961862 +0.5687816 0.5547519 0.4961862 +0.092819 0.5584371 0.4961862 +0.2262531 0.5584371 0.4961862 +0.2875993 0.5584371 0.4961862 +0.3262122 0.5584371 0.4961862 +0.3544566 0.5584371 0.4961862 +0.3767383 0.5584371 0.4961862 +0.3951413 0.5584371 0.4961862 +0.4108177 0.5584371 0.4961862 +0.4244723 0.5584371 0.4961862 +0.4365675 0.5584371 0.4961862 +0.4474232 0.5584371 0.4961862 +0.45727 0.5584371 0.4961862 +0.4662797 0.5584371 0.4961862 +0.4745834 0.5584371 0.4961862 +0.4822838 0.5584371 0.4961862 +0.4894626 0.5584371 0.4961862 +0.4961862 0.5584371 0.4961862 +0.5025087 0.5584371 0.4961862 +0.5084753 0.5584371 0.4961862 +0.514124 0.5584371 0.4961862 +0.519487 0.5584371 0.4961862 +0.5245917 0.5584371 0.4961862 +0.529462 0.5584371 0.4961862 +0.5341183 0.5584371 0.4961862 +0.5385787 0.5584371 0.4961862 +0.5428591 0.5584371 0.4961862 +0.5469733 0.5584371 0.4961862 +0.5509339 0.5584371 0.4961862 +0.5547519 0.5584371 0.4961862 +0.5584371 0.5584371 0.4961862 +0.5619986 0.5584371 0.4961862 +0.5654443 0.5584371 0.4961862 +0.5687816 0.5584371 0.4961862 +0.092819 0.5619986 0.4961862 +0.2262531 0.5619986 0.4961862 +0.2875993 0.5619986 0.4961862 +0.3262122 0.5619986 0.4961862 +0.3544566 0.5619986 0.4961862 +0.3767383 0.5619986 0.4961862 +0.3951413 0.5619986 0.4961862 +0.4108177 0.5619986 0.4961862 +0.4244723 0.5619986 0.4961862 +0.4365675 0.5619986 0.4961862 +0.4474232 0.5619986 0.4961862 +0.45727 0.5619986 0.4961862 +0.4662797 0.5619986 0.4961862 +0.4745834 0.5619986 0.4961862 +0.4822838 0.5619986 0.4961862 +0.4894626 0.5619986 0.4961862 +0.4961862 0.5619986 0.4961862 +0.5025087 0.5619986 0.4961862 +0.5084753 0.5619986 0.4961862 +0.514124 0.5619986 0.4961862 +0.519487 0.5619986 0.4961862 +0.5245917 0.5619986 0.4961862 +0.529462 0.5619986 0.4961862 +0.5341183 0.5619986 0.4961862 +0.5385787 0.5619986 0.4961862 +0.5428591 0.5619986 0.4961862 +0.5469733 0.5619986 0.4961862 +0.5509339 0.5619986 0.4961862 +0.5547519 0.5619986 0.4961862 +0.5584371 0.5619986 0.4961862 +0.5619986 0.5619986 0.4961862 +0.5654443 0.5619986 0.4961862 +0.5687816 0.5619986 0.4961862 +0.092819 0.5654443 0.4961862 +0.2262531 0.5654443 0.4961862 +0.2875993 0.5654443 0.4961862 +0.3262122 0.5654443 0.4961862 +0.3544566 0.5654443 0.4961862 +0.3767383 0.5654443 0.4961862 +0.3951413 0.5654443 0.4961862 +0.4108177 0.5654443 0.4961862 +0.4244723 0.5654443 0.4961862 +0.4365675 0.5654443 0.4961862 +0.4474232 0.5654443 0.4961862 +0.45727 0.5654443 0.4961862 +0.4662797 0.5654443 0.4961862 +0.4745834 0.5654443 0.4961862 +0.4822838 0.5654443 0.4961862 +0.4894626 0.5654443 0.4961862 +0.4961862 0.5654443 0.4961862 +0.5025087 0.5654443 0.4961862 +0.5084753 0.5654443 0.4961862 +0.514124 0.5654443 0.4961862 +0.519487 0.5654443 0.4961862 +0.5245917 0.5654443 0.4961862 +0.529462 0.5654443 0.4961862 +0.5341183 0.5654443 0.4961862 +0.5385787 0.5654443 0.4961862 +0.5428591 0.5654443 0.4961862 +0.5469733 0.5654443 0.4961862 +0.5509339 0.5654443 0.4961862 +0.5547519 0.5654443 0.4961862 +0.5584371 0.5654443 0.4961862 +0.5619986 0.5654443 0.4961862 +0.5654443 0.5654443 0.4961862 +0.5687816 0.5654443 0.4961862 +0.092819 0.5687816 0.4961862 +0.2262531 0.5687816 0.4961862 +0.2875993 0.5687816 0.4961862 +0.3262122 0.5687816 0.4961862 +0.3544566 0.5687816 0.4961862 +0.3767383 0.5687816 0.4961862 +0.3951413 0.5687816 0.4961862 +0.4108177 0.5687816 0.4961862 +0.4244723 0.5687816 0.4961862 +0.4365675 0.5687816 0.4961862 +0.4474232 0.5687816 0.4961862 +0.45727 0.5687816 0.4961862 +0.4662797 0.5687816 0.4961862 +0.4745834 0.5687816 0.4961862 +0.4822838 0.5687816 0.4961862 +0.4894626 0.5687816 0.4961862 +0.4961862 0.5687816 0.4961862 +0.5025087 0.5687816 0.4961862 +0.5084753 0.5687816 0.4961862 +0.514124 0.5687816 0.4961862 +0.519487 0.5687816 0.4961862 +0.5245917 0.5687816 0.4961862 +0.529462 0.5687816 0.4961862 +0.5341183 0.5687816 0.4961862 +0.5385787 0.5687816 0.4961862 +0.5428591 0.5687816 0.4961862 +0.5469733 0.5687816 0.4961862 +0.5509339 0.5687816 0.4961862 +0.5547519 0.5687816 0.4961862 +0.5584371 0.5687816 0.4961862 +0.5619986 0.5687816 0.4961862 +0.5654443 0.5687816 0.4961862 +0.5687816 0.5687816 0.4961862 +0.092819 0.092819 0.5025087 +0.2262531 0.092819 0.5025087 +0.2875993 0.092819 0.5025087 +0.3262122 0.092819 0.5025087 +0.3544566 0.092819 0.5025087 +0.3767383 0.092819 0.5025087 +0.3951413 0.092819 0.5025087 +0.4108177 0.092819 0.5025087 +0.4244723 0.092819 0.5025087 +0.4365675 0.092819 0.5025087 +0.4474232 0.092819 0.5025087 +0.45727 0.092819 0.5025087 +0.4662797 0.092819 0.5025087 +0.4745834 0.092819 0.5025087 +0.4822838 0.092819 0.5025087 +0.4894626 0.092819 0.5025087 +0.4961862 0.092819 0.5025087 +0.5025087 0.092819 0.5025087 +0.5084753 0.092819 0.5025087 +0.514124 0.092819 0.5025087 +0.519487 0.092819 0.5025087 +0.5245917 0.092819 0.5025087 +0.529462 0.092819 0.5025087 +0.5341183 0.092819 0.5025087 +0.5385787 0.092819 0.5025087 +0.5428591 0.092819 0.5025087 +0.5469733 0.092819 0.5025087 +0.5509339 0.092819 0.5025087 +0.5547519 0.092819 0.5025087 +0.5584371 0.092819 0.5025087 +0.5619986 0.092819 0.5025087 +0.5654443 0.092819 0.5025087 +0.5687816 0.092819 0.5025087 +0.092819 0.2262531 0.5025087 +0.2262531 0.2262531 0.5025087 +0.2875993 0.2262531 0.5025087 +0.3262122 0.2262531 0.5025087 +0.3544566 0.2262531 0.5025087 +0.3767383 0.2262531 0.5025087 +0.3951413 0.2262531 0.5025087 +0.4108177 0.2262531 0.5025087 +0.4244723 0.2262531 0.5025087 +0.4365675 0.2262531 0.5025087 +0.4474232 0.2262531 0.5025087 +0.45727 0.2262531 0.5025087 +0.4662797 0.2262531 0.5025087 +0.4745834 0.2262531 0.5025087 +0.4822838 0.2262531 0.5025087 +0.4894626 0.2262531 0.5025087 +0.4961862 0.2262531 0.5025087 +0.5025087 0.2262531 0.5025087 +0.5084753 0.2262531 0.5025087 +0.514124 0.2262531 0.5025087 +0.519487 0.2262531 0.5025087 +0.5245917 0.2262531 0.5025087 +0.529462 0.2262531 0.5025087 +0.5341183 0.2262531 0.5025087 +0.5385787 0.2262531 0.5025087 +0.5428591 0.2262531 0.5025087 +0.5469733 0.2262531 0.5025087 +0.5509339 0.2262531 0.5025087 +0.5547519 0.2262531 0.5025087 +0.5584371 0.2262531 0.5025087 +0.5619986 0.2262531 0.5025087 +0.5654443 0.2262531 0.5025087 +0.5687816 0.2262531 0.5025087 +0.092819 0.2875993 0.5025087 +0.2262531 0.2875993 0.5025087 +0.2875993 0.2875993 0.5025087 +0.3262122 0.2875993 0.5025087 +0.3544566 0.2875993 0.5025087 +0.3767383 0.2875993 0.5025087 +0.3951413 0.2875993 0.5025087 +0.4108177 0.2875993 0.5025087 +0.4244723 0.2875993 0.5025087 +0.4365675 0.2875993 0.5025087 +0.4474232 0.2875993 0.5025087 +0.45727 0.2875993 0.5025087 +0.4662797 0.2875993 0.5025087 +0.4745834 0.2875993 0.5025087 +0.4822838 0.2875993 0.5025087 +0.4894626 0.2875993 0.5025087 +0.4961862 0.2875993 0.5025087 +0.5025087 0.2875993 0.5025087 +0.5084753 0.2875993 0.5025087 +0.514124 0.2875993 0.5025087 +0.519487 0.2875993 0.5025087 +0.5245917 0.2875993 0.5025087 +0.529462 0.2875993 0.5025087 +0.5341183 0.2875993 0.5025087 +0.5385787 0.2875993 0.5025087 +0.5428591 0.2875993 0.5025087 +0.5469733 0.2875993 0.5025087 +0.5509339 0.2875993 0.5025087 +0.5547519 0.2875993 0.5025087 +0.5584371 0.2875993 0.5025087 +0.5619986 0.2875993 0.5025087 +0.5654443 0.2875993 0.5025087 +0.5687816 0.2875993 0.5025087 +0.092819 0.3262122 0.5025087 +0.2262531 0.3262122 0.5025087 +0.2875993 0.3262122 0.5025087 +0.3262122 0.3262122 0.5025087 +0.3544566 0.3262122 0.5025087 +0.3767383 0.3262122 0.5025087 +0.3951413 0.3262122 0.5025087 +0.4108177 0.3262122 0.5025087 +0.4244723 0.3262122 0.5025087 +0.4365675 0.3262122 0.5025087 +0.4474232 0.3262122 0.5025087 +0.45727 0.3262122 0.5025087 +0.4662797 0.3262122 0.5025087 +0.4745834 0.3262122 0.5025087 +0.4822838 0.3262122 0.5025087 +0.4894626 0.3262122 0.5025087 +0.4961862 0.3262122 0.5025087 +0.5025087 0.3262122 0.5025087 +0.5084753 0.3262122 0.5025087 +0.514124 0.3262122 0.5025087 +0.519487 0.3262122 0.5025087 +0.5245917 0.3262122 0.5025087 +0.529462 0.3262122 0.5025087 +0.5341183 0.3262122 0.5025087 +0.5385787 0.3262122 0.5025087 +0.5428591 0.3262122 0.5025087 +0.5469733 0.3262122 0.5025087 +0.5509339 0.3262122 0.5025087 +0.5547519 0.3262122 0.5025087 +0.5584371 0.3262122 0.5025087 +0.5619986 0.3262122 0.5025087 +0.5654443 0.3262122 0.5025087 +0.5687816 0.3262122 0.5025087 +0.092819 0.3544566 0.5025087 +0.2262531 0.3544566 0.5025087 +0.2875993 0.3544566 0.5025087 +0.3262122 0.3544566 0.5025087 +0.3544566 0.3544566 0.5025087 +0.3767383 0.3544566 0.5025087 +0.3951413 0.3544566 0.5025087 +0.4108177 0.3544566 0.5025087 +0.4244723 0.3544566 0.5025087 +0.4365675 0.3544566 0.5025087 +0.4474232 0.3544566 0.5025087 +0.45727 0.3544566 0.5025087 +0.4662797 0.3544566 0.5025087 +0.4745834 0.3544566 0.5025087 +0.4822838 0.3544566 0.5025087 +0.4894626 0.3544566 0.5025087 +0.4961862 0.3544566 0.5025087 +0.5025087 0.3544566 0.5025087 +0.5084753 0.3544566 0.5025087 +0.514124 0.3544566 0.5025087 +0.519487 0.3544566 0.5025087 +0.5245917 0.3544566 0.5025087 +0.529462 0.3544566 0.5025087 +0.5341183 0.3544566 0.5025087 +0.5385787 0.3544566 0.5025087 +0.5428591 0.3544566 0.5025087 +0.5469733 0.3544566 0.5025087 +0.5509339 0.3544566 0.5025087 +0.5547519 0.3544566 0.5025087 +0.5584371 0.3544566 0.5025087 +0.5619986 0.3544566 0.5025087 +0.5654443 0.3544566 0.5025087 +0.5687816 0.3544566 0.5025087 +0.092819 0.3767383 0.5025087 +0.2262531 0.3767383 0.5025087 +0.2875993 0.3767383 0.5025087 +0.3262122 0.3767383 0.5025087 +0.3544566 0.3767383 0.5025087 +0.3767383 0.3767383 0.5025087 +0.3951413 0.3767383 0.5025087 +0.4108177 0.3767383 0.5025087 +0.4244723 0.3767383 0.5025087 +0.4365675 0.3767383 0.5025087 +0.4474232 0.3767383 0.5025087 +0.45727 0.3767383 0.5025087 +0.4662797 0.3767383 0.5025087 +0.4745834 0.3767383 0.5025087 +0.4822838 0.3767383 0.5025087 +0.4894626 0.3767383 0.5025087 +0.4961862 0.3767383 0.5025087 +0.5025087 0.3767383 0.5025087 +0.5084753 0.3767383 0.5025087 +0.514124 0.3767383 0.5025087 +0.519487 0.3767383 0.5025087 +0.5245917 0.3767383 0.5025087 +0.529462 0.3767383 0.5025087 +0.5341183 0.3767383 0.5025087 +0.5385787 0.3767383 0.5025087 +0.5428591 0.3767383 0.5025087 +0.5469733 0.3767383 0.5025087 +0.5509339 0.3767383 0.5025087 +0.5547519 0.3767383 0.5025087 +0.5584371 0.3767383 0.5025087 +0.5619986 0.3767383 0.5025087 +0.5654443 0.3767383 0.5025087 +0.5687816 0.3767383 0.5025087 +0.092819 0.3951413 0.5025087 +0.2262531 0.3951413 0.5025087 +0.2875993 0.3951413 0.5025087 +0.3262122 0.3951413 0.5025087 +0.3544566 0.3951413 0.5025087 +0.3767383 0.3951413 0.5025087 +0.3951413 0.3951413 0.5025087 +0.4108177 0.3951413 0.5025087 +0.4244723 0.3951413 0.5025087 +0.4365675 0.3951413 0.5025087 +0.4474232 0.3951413 0.5025087 +0.45727 0.3951413 0.5025087 +0.4662797 0.3951413 0.5025087 +0.4745834 0.3951413 0.5025087 +0.4822838 0.3951413 0.5025087 +0.4894626 0.3951413 0.5025087 +0.4961862 0.3951413 0.5025087 +0.5025087 0.3951413 0.5025087 +0.5084753 0.3951413 0.5025087 +0.514124 0.3951413 0.5025087 +0.519487 0.3951413 0.5025087 +0.5245917 0.3951413 0.5025087 +0.529462 0.3951413 0.5025087 +0.5341183 0.3951413 0.5025087 +0.5385787 0.3951413 0.5025087 +0.5428591 0.3951413 0.5025087 +0.5469733 0.3951413 0.5025087 +0.5509339 0.3951413 0.5025087 +0.5547519 0.3951413 0.5025087 +0.5584371 0.3951413 0.5025087 +0.5619986 0.3951413 0.5025087 +0.5654443 0.3951413 0.5025087 +0.5687816 0.3951413 0.5025087 +0.092819 0.4108177 0.5025087 +0.2262531 0.4108177 0.5025087 +0.2875993 0.4108177 0.5025087 +0.3262122 0.4108177 0.5025087 +0.3544566 0.4108177 0.5025087 +0.3767383 0.4108177 0.5025087 +0.3951413 0.4108177 0.5025087 +0.4108177 0.4108177 0.5025087 +0.4244723 0.4108177 0.5025087 +0.4365675 0.4108177 0.5025087 +0.4474232 0.4108177 0.5025087 +0.45727 0.4108177 0.5025087 +0.4662797 0.4108177 0.5025087 +0.4745834 0.4108177 0.5025087 +0.4822838 0.4108177 0.5025087 +0.4894626 0.4108177 0.5025087 +0.4961862 0.4108177 0.5025087 +0.5025087 0.4108177 0.5025087 +0.5084753 0.4108177 0.5025087 +0.514124 0.4108177 0.5025087 +0.519487 0.4108177 0.5025087 +0.5245917 0.4108177 0.5025087 +0.529462 0.4108177 0.5025087 +0.5341183 0.4108177 0.5025087 +0.5385787 0.4108177 0.5025087 +0.5428591 0.4108177 0.5025087 +0.5469733 0.4108177 0.5025087 +0.5509339 0.4108177 0.5025087 +0.5547519 0.4108177 0.5025087 +0.5584371 0.4108177 0.5025087 +0.5619986 0.4108177 0.5025087 +0.5654443 0.4108177 0.5025087 +0.5687816 0.4108177 0.5025087 +0.092819 0.4244723 0.5025087 +0.2262531 0.4244723 0.5025087 +0.2875993 0.4244723 0.5025087 +0.3262122 0.4244723 0.5025087 +0.3544566 0.4244723 0.5025087 +0.3767383 0.4244723 0.5025087 +0.3951413 0.4244723 0.5025087 +0.4108177 0.4244723 0.5025087 +0.4244723 0.4244723 0.5025087 +0.4365675 0.4244723 0.5025087 +0.4474232 0.4244723 0.5025087 +0.45727 0.4244723 0.5025087 +0.4662797 0.4244723 0.5025087 +0.4745834 0.4244723 0.5025087 +0.4822838 0.4244723 0.5025087 +0.4894626 0.4244723 0.5025087 +0.4961862 0.4244723 0.5025087 +0.5025087 0.4244723 0.5025087 +0.5084753 0.4244723 0.5025087 +0.514124 0.4244723 0.5025087 +0.519487 0.4244723 0.5025087 +0.5245917 0.4244723 0.5025087 +0.529462 0.4244723 0.5025087 +0.5341183 0.4244723 0.5025087 +0.5385787 0.4244723 0.5025087 +0.5428591 0.4244723 0.5025087 +0.5469733 0.4244723 0.5025087 +0.5509339 0.4244723 0.5025087 +0.5547519 0.4244723 0.5025087 +0.5584371 0.4244723 0.5025087 +0.5619986 0.4244723 0.5025087 +0.5654443 0.4244723 0.5025087 +0.5687816 0.4244723 0.5025087 +0.092819 0.4365675 0.5025087 +0.2262531 0.4365675 0.5025087 +0.2875993 0.4365675 0.5025087 +0.3262122 0.4365675 0.5025087 +0.3544566 0.4365675 0.5025087 +0.3767383 0.4365675 0.5025087 +0.3951413 0.4365675 0.5025087 +0.4108177 0.4365675 0.5025087 +0.4244723 0.4365675 0.5025087 +0.4365675 0.4365675 0.5025087 +0.4474232 0.4365675 0.5025087 +0.45727 0.4365675 0.5025087 +0.4662797 0.4365675 0.5025087 +0.4745834 0.4365675 0.5025087 +0.4822838 0.4365675 0.5025087 +0.4894626 0.4365675 0.5025087 +0.4961862 0.4365675 0.5025087 +0.5025087 0.4365675 0.5025087 +0.5084753 0.4365675 0.5025087 +0.514124 0.4365675 0.5025087 +0.519487 0.4365675 0.5025087 +0.5245917 0.4365675 0.5025087 +0.529462 0.4365675 0.5025087 +0.5341183 0.4365675 0.5025087 +0.5385787 0.4365675 0.5025087 +0.5428591 0.4365675 0.5025087 +0.5469733 0.4365675 0.5025087 +0.5509339 0.4365675 0.5025087 +0.5547519 0.4365675 0.5025087 +0.5584371 0.4365675 0.5025087 +0.5619986 0.4365675 0.5025087 +0.5654443 0.4365675 0.5025087 +0.5687816 0.4365675 0.5025087 +0.092819 0.4474232 0.5025087 +0.2262531 0.4474232 0.5025087 +0.2875993 0.4474232 0.5025087 +0.3262122 0.4474232 0.5025087 +0.3544566 0.4474232 0.5025087 +0.3767383 0.4474232 0.5025087 +0.3951413 0.4474232 0.5025087 +0.4108177 0.4474232 0.5025087 +0.4244723 0.4474232 0.5025087 +0.4365675 0.4474232 0.5025087 +0.4474232 0.4474232 0.5025087 +0.45727 0.4474232 0.5025087 +0.4662797 0.4474232 0.5025087 +0.4745834 0.4474232 0.5025087 +0.4822838 0.4474232 0.5025087 +0.4894626 0.4474232 0.5025087 +0.4961862 0.4474232 0.5025087 +0.5025087 0.4474232 0.5025087 +0.5084753 0.4474232 0.5025087 +0.514124 0.4474232 0.5025087 +0.519487 0.4474232 0.5025087 +0.5245917 0.4474232 0.5025087 +0.529462 0.4474232 0.5025087 +0.5341183 0.4474232 0.5025087 +0.5385787 0.4474232 0.5025087 +0.5428591 0.4474232 0.5025087 +0.5469733 0.4474232 0.5025087 +0.5509339 0.4474232 0.5025087 +0.5547519 0.4474232 0.5025087 +0.5584371 0.4474232 0.5025087 +0.5619986 0.4474232 0.5025087 +0.5654443 0.4474232 0.5025087 +0.5687816 0.4474232 0.5025087 +0.092819 0.45727 0.5025087 +0.2262531 0.45727 0.5025087 +0.2875993 0.45727 0.5025087 +0.3262122 0.45727 0.5025087 +0.3544566 0.45727 0.5025087 +0.3767383 0.45727 0.5025087 +0.3951413 0.45727 0.5025087 +0.4108177 0.45727 0.5025087 +0.4244723 0.45727 0.5025087 +0.4365675 0.45727 0.5025087 +0.4474232 0.45727 0.5025087 +0.45727 0.45727 0.5025087 +0.4662797 0.45727 0.5025087 +0.4745834 0.45727 0.5025087 +0.4822838 0.45727 0.5025087 +0.4894626 0.45727 0.5025087 +0.4961862 0.45727 0.5025087 +0.5025087 0.45727 0.5025087 +0.5084753 0.45727 0.5025087 +0.514124 0.45727 0.5025087 +0.519487 0.45727 0.5025087 +0.5245917 0.45727 0.5025087 +0.529462 0.45727 0.5025087 +0.5341183 0.45727 0.5025087 +0.5385787 0.45727 0.5025087 +0.5428591 0.45727 0.5025087 +0.5469733 0.45727 0.5025087 +0.5509339 0.45727 0.5025087 +0.5547519 0.45727 0.5025087 +0.5584371 0.45727 0.5025087 +0.5619986 0.45727 0.5025087 +0.5654443 0.45727 0.5025087 +0.5687816 0.45727 0.5025087 +0.092819 0.4662797 0.5025087 +0.2262531 0.4662797 0.5025087 +0.2875993 0.4662797 0.5025087 +0.3262122 0.4662797 0.5025087 +0.3544566 0.4662797 0.5025087 +0.3767383 0.4662797 0.5025087 +0.3951413 0.4662797 0.5025087 +0.4108177 0.4662797 0.5025087 +0.4244723 0.4662797 0.5025087 +0.4365675 0.4662797 0.5025087 +0.4474232 0.4662797 0.5025087 +0.45727 0.4662797 0.5025087 +0.4662797 0.4662797 0.5025087 +0.4745834 0.4662797 0.5025087 +0.4822838 0.4662797 0.5025087 +0.4894626 0.4662797 0.5025087 +0.4961862 0.4662797 0.5025087 +0.5025087 0.4662797 0.5025087 +0.5084753 0.4662797 0.5025087 +0.514124 0.4662797 0.5025087 +0.519487 0.4662797 0.5025087 +0.5245917 0.4662797 0.5025087 +0.529462 0.4662797 0.5025087 +0.5341183 0.4662797 0.5025087 +0.5385787 0.4662797 0.5025087 +0.5428591 0.4662797 0.5025087 +0.5469733 0.4662797 0.5025087 +0.5509339 0.4662797 0.5025087 +0.5547519 0.4662797 0.5025087 +0.5584371 0.4662797 0.5025087 +0.5619986 0.4662797 0.5025087 +0.5654443 0.4662797 0.5025087 +0.5687816 0.4662797 0.5025087 +0.092819 0.4745834 0.5025087 +0.2262531 0.4745834 0.5025087 +0.2875993 0.4745834 0.5025087 +0.3262122 0.4745834 0.5025087 +0.3544566 0.4745834 0.5025087 +0.3767383 0.4745834 0.5025087 +0.3951413 0.4745834 0.5025087 +0.4108177 0.4745834 0.5025087 +0.4244723 0.4745834 0.5025087 +0.4365675 0.4745834 0.5025087 +0.4474232 0.4745834 0.5025087 +0.45727 0.4745834 0.5025087 +0.4662797 0.4745834 0.5025087 +0.4745834 0.4745834 0.5025087 +0.4822838 0.4745834 0.5025087 +0.4894626 0.4745834 0.5025087 +0.4961862 0.4745834 0.5025087 +0.5025087 0.4745834 0.5025087 +0.5084753 0.4745834 0.5025087 +0.514124 0.4745834 0.5025087 +0.519487 0.4745834 0.5025087 +0.5245917 0.4745834 0.5025087 +0.529462 0.4745834 0.5025087 +0.5341183 0.4745834 0.5025087 +0.5385787 0.4745834 0.5025087 +0.5428591 0.4745834 0.5025087 +0.5469733 0.4745834 0.5025087 +0.5509339 0.4745834 0.5025087 +0.5547519 0.4745834 0.5025087 +0.5584371 0.4745834 0.5025087 +0.5619986 0.4745834 0.5025087 +0.5654443 0.4745834 0.5025087 +0.5687816 0.4745834 0.5025087 +0.092819 0.4822838 0.5025087 +0.2262531 0.4822838 0.5025087 +0.2875993 0.4822838 0.5025087 +0.3262122 0.4822838 0.5025087 +0.3544566 0.4822838 0.5025087 +0.3767383 0.4822838 0.5025087 +0.3951413 0.4822838 0.5025087 +0.4108177 0.4822838 0.5025087 +0.4244723 0.4822838 0.5025087 +0.4365675 0.4822838 0.5025087 +0.4474232 0.4822838 0.5025087 +0.45727 0.4822838 0.5025087 +0.4662797 0.4822838 0.5025087 +0.4745834 0.4822838 0.5025087 +0.4822838 0.4822838 0.5025087 +0.4894626 0.4822838 0.5025087 +0.4961862 0.4822838 0.5025087 +0.5025087 0.4822838 0.5025087 +0.5084753 0.4822838 0.5025087 +0.514124 0.4822838 0.5025087 +0.519487 0.4822838 0.5025087 +0.5245917 0.4822838 0.5025087 +0.529462 0.4822838 0.5025087 +0.5341183 0.4822838 0.5025087 +0.5385787 0.4822838 0.5025087 +0.5428591 0.4822838 0.5025087 +0.5469733 0.4822838 0.5025087 +0.5509339 0.4822838 0.5025087 +0.5547519 0.4822838 0.5025087 +0.5584371 0.4822838 0.5025087 +0.5619986 0.4822838 0.5025087 +0.5654443 0.4822838 0.5025087 +0.5687816 0.4822838 0.5025087 +0.092819 0.4894626 0.5025087 +0.2262531 0.4894626 0.5025087 +0.2875993 0.4894626 0.5025087 +0.3262122 0.4894626 0.5025087 +0.3544566 0.4894626 0.5025087 +0.3767383 0.4894626 0.5025087 +0.3951413 0.4894626 0.5025087 +0.4108177 0.4894626 0.5025087 +0.4244723 0.4894626 0.5025087 +0.4365675 0.4894626 0.5025087 +0.4474232 0.4894626 0.5025087 +0.45727 0.4894626 0.5025087 +0.4662797 0.4894626 0.5025087 +0.4745834 0.4894626 0.5025087 +0.4822838 0.4894626 0.5025087 +0.4894626 0.4894626 0.5025087 +0.4961862 0.4894626 0.5025087 +0.5025087 0.4894626 0.5025087 +0.5084753 0.4894626 0.5025087 +0.514124 0.4894626 0.5025087 +0.519487 0.4894626 0.5025087 +0.5245917 0.4894626 0.5025087 +0.529462 0.4894626 0.5025087 +0.5341183 0.4894626 0.5025087 +0.5385787 0.4894626 0.5025087 +0.5428591 0.4894626 0.5025087 +0.5469733 0.4894626 0.5025087 +0.5509339 0.4894626 0.5025087 +0.5547519 0.4894626 0.5025087 +0.5584371 0.4894626 0.5025087 +0.5619986 0.4894626 0.5025087 +0.5654443 0.4894626 0.5025087 +0.5687816 0.4894626 0.5025087 +0.092819 0.4961862 0.5025087 +0.2262531 0.4961862 0.5025087 +0.2875993 0.4961862 0.5025087 +0.3262122 0.4961862 0.5025087 +0.3544566 0.4961862 0.5025087 +0.3767383 0.4961862 0.5025087 +0.3951413 0.4961862 0.5025087 +0.4108177 0.4961862 0.5025087 +0.4244723 0.4961862 0.5025087 +0.4365675 0.4961862 0.5025087 +0.4474232 0.4961862 0.5025087 +0.45727 0.4961862 0.5025087 +0.4662797 0.4961862 0.5025087 +0.4745834 0.4961862 0.5025087 +0.4822838 0.4961862 0.5025087 +0.4894626 0.4961862 0.5025087 +0.4961862 0.4961862 0.5025087 +0.5025087 0.4961862 0.5025087 +0.5084753 0.4961862 0.5025087 +0.514124 0.4961862 0.5025087 +0.519487 0.4961862 0.5025087 +0.5245917 0.4961862 0.5025087 +0.529462 0.4961862 0.5025087 +0.5341183 0.4961862 0.5025087 +0.5385787 0.4961862 0.5025087 +0.5428591 0.4961862 0.5025087 +0.5469733 0.4961862 0.5025087 +0.5509339 0.4961862 0.5025087 +0.5547519 0.4961862 0.5025087 +0.5584371 0.4961862 0.5025087 +0.5619986 0.4961862 0.5025087 +0.5654443 0.4961862 0.5025087 +0.5687816 0.4961862 0.5025087 +0.092819 0.5025087 0.5025087 +0.2262531 0.5025087 0.5025087 +0.2875993 0.5025087 0.5025087 +0.3262122 0.5025087 0.5025087 +0.3544566 0.5025087 0.5025087 +0.3767383 0.5025087 0.5025087 +0.3951413 0.5025087 0.5025087 +0.4108177 0.5025087 0.5025087 +0.4244723 0.5025087 0.5025087 +0.4365675 0.5025087 0.5025087 +0.4474232 0.5025087 0.5025087 +0.45727 0.5025087 0.5025087 +0.4662797 0.5025087 0.5025087 +0.4745834 0.5025087 0.5025087 +0.4822838 0.5025087 0.5025087 +0.4894626 0.5025087 0.5025087 +0.4961862 0.5025087 0.5025087 +0.5025087 0.5025087 0.5025087 +0.5084753 0.5025087 0.5025087 +0.514124 0.5025087 0.5025087 +0.519487 0.5025087 0.5025087 +0.5245917 0.5025087 0.5025087 +0.529462 0.5025087 0.5025087 +0.5341183 0.5025087 0.5025087 +0.5385787 0.5025087 0.5025087 +0.5428591 0.5025087 0.5025087 +0.5469733 0.5025087 0.5025087 +0.5509339 0.5025087 0.5025087 +0.5547519 0.5025087 0.5025087 +0.5584371 0.5025087 0.5025087 +0.5619986 0.5025087 0.5025087 +0.5654443 0.5025087 0.5025087 +0.5687816 0.5025087 0.5025087 +0.092819 0.5084753 0.5025087 +0.2262531 0.5084753 0.5025087 +0.2875993 0.5084753 0.5025087 +0.3262122 0.5084753 0.5025087 +0.3544566 0.5084753 0.5025087 +0.3767383 0.5084753 0.5025087 +0.3951413 0.5084753 0.5025087 +0.4108177 0.5084753 0.5025087 +0.4244723 0.5084753 0.5025087 +0.4365675 0.5084753 0.5025087 +0.4474232 0.5084753 0.5025087 +0.45727 0.5084753 0.5025087 +0.4662797 0.5084753 0.5025087 +0.4745834 0.5084753 0.5025087 +0.4822838 0.5084753 0.5025087 +0.4894626 0.5084753 0.5025087 +0.4961862 0.5084753 0.5025087 +0.5025087 0.5084753 0.5025087 +0.5084753 0.5084753 0.5025087 +0.514124 0.5084753 0.5025087 +0.519487 0.5084753 0.5025087 +0.5245917 0.5084753 0.5025087 +0.529462 0.5084753 0.5025087 +0.5341183 0.5084753 0.5025087 +0.5385787 0.5084753 0.5025087 +0.5428591 0.5084753 0.5025087 +0.5469733 0.5084753 0.5025087 +0.5509339 0.5084753 0.5025087 +0.5547519 0.5084753 0.5025087 +0.5584371 0.5084753 0.5025087 +0.5619986 0.5084753 0.5025087 +0.5654443 0.5084753 0.5025087 +0.5687816 0.5084753 0.5025087 +0.092819 0.514124 0.5025087 +0.2262531 0.514124 0.5025087 +0.2875993 0.514124 0.5025087 +0.3262122 0.514124 0.5025087 +0.3544566 0.514124 0.5025087 +0.3767383 0.514124 0.5025087 +0.3951413 0.514124 0.5025087 +0.4108177 0.514124 0.5025087 +0.4244723 0.514124 0.5025087 +0.4365675 0.514124 0.5025087 +0.4474232 0.514124 0.5025087 +0.45727 0.514124 0.5025087 +0.4662797 0.514124 0.5025087 +0.4745834 0.514124 0.5025087 +0.4822838 0.514124 0.5025087 +0.4894626 0.514124 0.5025087 +0.4961862 0.514124 0.5025087 +0.5025087 0.514124 0.5025087 +0.5084753 0.514124 0.5025087 +0.514124 0.514124 0.5025087 +0.519487 0.514124 0.5025087 +0.5245917 0.514124 0.5025087 +0.529462 0.514124 0.5025087 +0.5341183 0.514124 0.5025087 +0.5385787 0.514124 0.5025087 +0.5428591 0.514124 0.5025087 +0.5469733 0.514124 0.5025087 +0.5509339 0.514124 0.5025087 +0.5547519 0.514124 0.5025087 +0.5584371 0.514124 0.5025087 +0.5619986 0.514124 0.5025087 +0.5654443 0.514124 0.5025087 +0.5687816 0.514124 0.5025087 +0.092819 0.519487 0.5025087 +0.2262531 0.519487 0.5025087 +0.2875993 0.519487 0.5025087 +0.3262122 0.519487 0.5025087 +0.3544566 0.519487 0.5025087 +0.3767383 0.519487 0.5025087 +0.3951413 0.519487 0.5025087 +0.4108177 0.519487 0.5025087 +0.4244723 0.519487 0.5025087 +0.4365675 0.519487 0.5025087 +0.4474232 0.519487 0.5025087 +0.45727 0.519487 0.5025087 +0.4662797 0.519487 0.5025087 +0.4745834 0.519487 0.5025087 +0.4822838 0.519487 0.5025087 +0.4894626 0.519487 0.5025087 +0.4961862 0.519487 0.5025087 +0.5025087 0.519487 0.5025087 +0.5084753 0.519487 0.5025087 +0.514124 0.519487 0.5025087 +0.519487 0.519487 0.5025087 +0.5245917 0.519487 0.5025087 +0.529462 0.519487 0.5025087 +0.5341183 0.519487 0.5025087 +0.5385787 0.519487 0.5025087 +0.5428591 0.519487 0.5025087 +0.5469733 0.519487 0.5025087 +0.5509339 0.519487 0.5025087 +0.5547519 0.519487 0.5025087 +0.5584371 0.519487 0.5025087 +0.5619986 0.519487 0.5025087 +0.5654443 0.519487 0.5025087 +0.5687816 0.519487 0.5025087 +0.092819 0.5245917 0.5025087 +0.2262531 0.5245917 0.5025087 +0.2875993 0.5245917 0.5025087 +0.3262122 0.5245917 0.5025087 +0.3544566 0.5245917 0.5025087 +0.3767383 0.5245917 0.5025087 +0.3951413 0.5245917 0.5025087 +0.4108177 0.5245917 0.5025087 +0.4244723 0.5245917 0.5025087 +0.4365675 0.5245917 0.5025087 +0.4474232 0.5245917 0.5025087 +0.45727 0.5245917 0.5025087 +0.4662797 0.5245917 0.5025087 +0.4745834 0.5245917 0.5025087 +0.4822838 0.5245917 0.5025087 +0.4894626 0.5245917 0.5025087 +0.4961862 0.5245917 0.5025087 +0.5025087 0.5245917 0.5025087 +0.5084753 0.5245917 0.5025087 +0.514124 0.5245917 0.5025087 +0.519487 0.5245917 0.5025087 +0.5245917 0.5245917 0.5025087 +0.529462 0.5245917 0.5025087 +0.5341183 0.5245917 0.5025087 +0.5385787 0.5245917 0.5025087 +0.5428591 0.5245917 0.5025087 +0.5469733 0.5245917 0.5025087 +0.5509339 0.5245917 0.5025087 +0.5547519 0.5245917 0.5025087 +0.5584371 0.5245917 0.5025087 +0.5619986 0.5245917 0.5025087 +0.5654443 0.5245917 0.5025087 +0.5687816 0.5245917 0.5025087 +0.092819 0.529462 0.5025087 +0.2262531 0.529462 0.5025087 +0.2875993 0.529462 0.5025087 +0.3262122 0.529462 0.5025087 +0.3544566 0.529462 0.5025087 +0.3767383 0.529462 0.5025087 +0.3951413 0.529462 0.5025087 +0.4108177 0.529462 0.5025087 +0.4244723 0.529462 0.5025087 +0.4365675 0.529462 0.5025087 +0.4474232 0.529462 0.5025087 +0.45727 0.529462 0.5025087 +0.4662797 0.529462 0.5025087 +0.4745834 0.529462 0.5025087 +0.4822838 0.529462 0.5025087 +0.4894626 0.529462 0.5025087 +0.4961862 0.529462 0.5025087 +0.5025087 0.529462 0.5025087 +0.5084753 0.529462 0.5025087 +0.514124 0.529462 0.5025087 +0.519487 0.529462 0.5025087 +0.5245917 0.529462 0.5025087 +0.529462 0.529462 0.5025087 +0.5341183 0.529462 0.5025087 +0.5385787 0.529462 0.5025087 +0.5428591 0.529462 0.5025087 +0.5469733 0.529462 0.5025087 +0.5509339 0.529462 0.5025087 +0.5547519 0.529462 0.5025087 +0.5584371 0.529462 0.5025087 +0.5619986 0.529462 0.5025087 +0.5654443 0.529462 0.5025087 +0.5687816 0.529462 0.5025087 +0.092819 0.5341183 0.5025087 +0.2262531 0.5341183 0.5025087 +0.2875993 0.5341183 0.5025087 +0.3262122 0.5341183 0.5025087 +0.3544566 0.5341183 0.5025087 +0.3767383 0.5341183 0.5025087 +0.3951413 0.5341183 0.5025087 +0.4108177 0.5341183 0.5025087 +0.4244723 0.5341183 0.5025087 +0.4365675 0.5341183 0.5025087 +0.4474232 0.5341183 0.5025087 +0.45727 0.5341183 0.5025087 +0.4662797 0.5341183 0.5025087 +0.4745834 0.5341183 0.5025087 +0.4822838 0.5341183 0.5025087 +0.4894626 0.5341183 0.5025087 +0.4961862 0.5341183 0.5025087 +0.5025087 0.5341183 0.5025087 +0.5084753 0.5341183 0.5025087 +0.514124 0.5341183 0.5025087 +0.519487 0.5341183 0.5025087 +0.5245917 0.5341183 0.5025087 +0.529462 0.5341183 0.5025087 +0.5341183 0.5341183 0.5025087 +0.5385787 0.5341183 0.5025087 +0.5428591 0.5341183 0.5025087 +0.5469733 0.5341183 0.5025087 +0.5509339 0.5341183 0.5025087 +0.5547519 0.5341183 0.5025087 +0.5584371 0.5341183 0.5025087 +0.5619986 0.5341183 0.5025087 +0.5654443 0.5341183 0.5025087 +0.5687816 0.5341183 0.5025087 +0.092819 0.5385787 0.5025087 +0.2262531 0.5385787 0.5025087 +0.2875993 0.5385787 0.5025087 +0.3262122 0.5385787 0.5025087 +0.3544566 0.5385787 0.5025087 +0.3767383 0.5385787 0.5025087 +0.3951413 0.5385787 0.5025087 +0.4108177 0.5385787 0.5025087 +0.4244723 0.5385787 0.5025087 +0.4365675 0.5385787 0.5025087 +0.4474232 0.5385787 0.5025087 +0.45727 0.5385787 0.5025087 +0.4662797 0.5385787 0.5025087 +0.4745834 0.5385787 0.5025087 +0.4822838 0.5385787 0.5025087 +0.4894626 0.5385787 0.5025087 +0.4961862 0.5385787 0.5025087 +0.5025087 0.5385787 0.5025087 +0.5084753 0.5385787 0.5025087 +0.514124 0.5385787 0.5025087 +0.519487 0.5385787 0.5025087 +0.5245917 0.5385787 0.5025087 +0.529462 0.5385787 0.5025087 +0.5341183 0.5385787 0.5025087 +0.5385787 0.5385787 0.5025087 +0.5428591 0.5385787 0.5025087 +0.5469733 0.5385787 0.5025087 +0.5509339 0.5385787 0.5025087 +0.5547519 0.5385787 0.5025087 +0.5584371 0.5385787 0.5025087 +0.5619986 0.5385787 0.5025087 +0.5654443 0.5385787 0.5025087 +0.5687816 0.5385787 0.5025087 +0.092819 0.5428591 0.5025087 +0.2262531 0.5428591 0.5025087 +0.2875993 0.5428591 0.5025087 +0.3262122 0.5428591 0.5025087 +0.3544566 0.5428591 0.5025087 +0.3767383 0.5428591 0.5025087 +0.3951413 0.5428591 0.5025087 +0.4108177 0.5428591 0.5025087 +0.4244723 0.5428591 0.5025087 +0.4365675 0.5428591 0.5025087 +0.4474232 0.5428591 0.5025087 +0.45727 0.5428591 0.5025087 +0.4662797 0.5428591 0.5025087 +0.4745834 0.5428591 0.5025087 +0.4822838 0.5428591 0.5025087 +0.4894626 0.5428591 0.5025087 +0.4961862 0.5428591 0.5025087 +0.5025087 0.5428591 0.5025087 +0.5084753 0.5428591 0.5025087 +0.514124 0.5428591 0.5025087 +0.519487 0.5428591 0.5025087 +0.5245917 0.5428591 0.5025087 +0.529462 0.5428591 0.5025087 +0.5341183 0.5428591 0.5025087 +0.5385787 0.5428591 0.5025087 +0.5428591 0.5428591 0.5025087 +0.5469733 0.5428591 0.5025087 +0.5509339 0.5428591 0.5025087 +0.5547519 0.5428591 0.5025087 +0.5584371 0.5428591 0.5025087 +0.5619986 0.5428591 0.5025087 +0.5654443 0.5428591 0.5025087 +0.5687816 0.5428591 0.5025087 +0.092819 0.5469733 0.5025087 +0.2262531 0.5469733 0.5025087 +0.2875993 0.5469733 0.5025087 +0.3262122 0.5469733 0.5025087 +0.3544566 0.5469733 0.5025087 +0.3767383 0.5469733 0.5025087 +0.3951413 0.5469733 0.5025087 +0.4108177 0.5469733 0.5025087 +0.4244723 0.5469733 0.5025087 +0.4365675 0.5469733 0.5025087 +0.4474232 0.5469733 0.5025087 +0.45727 0.5469733 0.5025087 +0.4662797 0.5469733 0.5025087 +0.4745834 0.5469733 0.5025087 +0.4822838 0.5469733 0.5025087 +0.4894626 0.5469733 0.5025087 +0.4961862 0.5469733 0.5025087 +0.5025087 0.5469733 0.5025087 +0.5084753 0.5469733 0.5025087 +0.514124 0.5469733 0.5025087 +0.519487 0.5469733 0.5025087 +0.5245917 0.5469733 0.5025087 +0.529462 0.5469733 0.5025087 +0.5341183 0.5469733 0.5025087 +0.5385787 0.5469733 0.5025087 +0.5428591 0.5469733 0.5025087 +0.5469733 0.5469733 0.5025087 +0.5509339 0.5469733 0.5025087 +0.5547519 0.5469733 0.5025087 +0.5584371 0.5469733 0.5025087 +0.5619986 0.5469733 0.5025087 +0.5654443 0.5469733 0.5025087 +0.5687816 0.5469733 0.5025087 +0.092819 0.5509339 0.5025087 +0.2262531 0.5509339 0.5025087 +0.2875993 0.5509339 0.5025087 +0.3262122 0.5509339 0.5025087 +0.3544566 0.5509339 0.5025087 +0.3767383 0.5509339 0.5025087 +0.3951413 0.5509339 0.5025087 +0.4108177 0.5509339 0.5025087 +0.4244723 0.5509339 0.5025087 +0.4365675 0.5509339 0.5025087 +0.4474232 0.5509339 0.5025087 +0.45727 0.5509339 0.5025087 +0.4662797 0.5509339 0.5025087 +0.4745834 0.5509339 0.5025087 +0.4822838 0.5509339 0.5025087 +0.4894626 0.5509339 0.5025087 +0.4961862 0.5509339 0.5025087 +0.5025087 0.5509339 0.5025087 +0.5084753 0.5509339 0.5025087 +0.514124 0.5509339 0.5025087 +0.519487 0.5509339 0.5025087 +0.5245917 0.5509339 0.5025087 +0.529462 0.5509339 0.5025087 +0.5341183 0.5509339 0.5025087 +0.5385787 0.5509339 0.5025087 +0.5428591 0.5509339 0.5025087 +0.5469733 0.5509339 0.5025087 +0.5509339 0.5509339 0.5025087 +0.5547519 0.5509339 0.5025087 +0.5584371 0.5509339 0.5025087 +0.5619986 0.5509339 0.5025087 +0.5654443 0.5509339 0.5025087 +0.5687816 0.5509339 0.5025087 +0.092819 0.5547519 0.5025087 +0.2262531 0.5547519 0.5025087 +0.2875993 0.5547519 0.5025087 +0.3262122 0.5547519 0.5025087 +0.3544566 0.5547519 0.5025087 +0.3767383 0.5547519 0.5025087 +0.3951413 0.5547519 0.5025087 +0.4108177 0.5547519 0.5025087 +0.4244723 0.5547519 0.5025087 +0.4365675 0.5547519 0.5025087 +0.4474232 0.5547519 0.5025087 +0.45727 0.5547519 0.5025087 +0.4662797 0.5547519 0.5025087 +0.4745834 0.5547519 0.5025087 +0.4822838 0.5547519 0.5025087 +0.4894626 0.5547519 0.5025087 +0.4961862 0.5547519 0.5025087 +0.5025087 0.5547519 0.5025087 +0.5084753 0.5547519 0.5025087 +0.514124 0.5547519 0.5025087 +0.519487 0.5547519 0.5025087 +0.5245917 0.5547519 0.5025087 +0.529462 0.5547519 0.5025087 +0.5341183 0.5547519 0.5025087 +0.5385787 0.5547519 0.5025087 +0.5428591 0.5547519 0.5025087 +0.5469733 0.5547519 0.5025087 +0.5509339 0.5547519 0.5025087 +0.5547519 0.5547519 0.5025087 +0.5584371 0.5547519 0.5025087 +0.5619986 0.5547519 0.5025087 +0.5654443 0.5547519 0.5025087 +0.5687816 0.5547519 0.5025087 +0.092819 0.5584371 0.5025087 +0.2262531 0.5584371 0.5025087 +0.2875993 0.5584371 0.5025087 +0.3262122 0.5584371 0.5025087 +0.3544566 0.5584371 0.5025087 +0.3767383 0.5584371 0.5025087 +0.3951413 0.5584371 0.5025087 +0.4108177 0.5584371 0.5025087 +0.4244723 0.5584371 0.5025087 +0.4365675 0.5584371 0.5025087 +0.4474232 0.5584371 0.5025087 +0.45727 0.5584371 0.5025087 +0.4662797 0.5584371 0.5025087 +0.4745834 0.5584371 0.5025087 +0.4822838 0.5584371 0.5025087 +0.4894626 0.5584371 0.5025087 +0.4961862 0.5584371 0.5025087 +0.5025087 0.5584371 0.5025087 +0.5084753 0.5584371 0.5025087 +0.514124 0.5584371 0.5025087 +0.519487 0.5584371 0.5025087 +0.5245917 0.5584371 0.5025087 +0.529462 0.5584371 0.5025087 +0.5341183 0.5584371 0.5025087 +0.5385787 0.5584371 0.5025087 +0.5428591 0.5584371 0.5025087 +0.5469733 0.5584371 0.5025087 +0.5509339 0.5584371 0.5025087 +0.5547519 0.5584371 0.5025087 +0.5584371 0.5584371 0.5025087 +0.5619986 0.5584371 0.5025087 +0.5654443 0.5584371 0.5025087 +0.5687816 0.5584371 0.5025087 +0.092819 0.5619986 0.5025087 +0.2262531 0.5619986 0.5025087 +0.2875993 0.5619986 0.5025087 +0.3262122 0.5619986 0.5025087 +0.3544566 0.5619986 0.5025087 +0.3767383 0.5619986 0.5025087 +0.3951413 0.5619986 0.5025087 +0.4108177 0.5619986 0.5025087 +0.4244723 0.5619986 0.5025087 +0.4365675 0.5619986 0.5025087 +0.4474232 0.5619986 0.5025087 +0.45727 0.5619986 0.5025087 +0.4662797 0.5619986 0.5025087 +0.4745834 0.5619986 0.5025087 +0.4822838 0.5619986 0.5025087 +0.4894626 0.5619986 0.5025087 +0.4961862 0.5619986 0.5025087 +0.5025087 0.5619986 0.5025087 +0.5084753 0.5619986 0.5025087 +0.514124 0.5619986 0.5025087 +0.519487 0.5619986 0.5025087 +0.5245917 0.5619986 0.5025087 +0.529462 0.5619986 0.5025087 +0.5341183 0.5619986 0.5025087 +0.5385787 0.5619986 0.5025087 +0.5428591 0.5619986 0.5025087 +0.5469733 0.5619986 0.5025087 +0.5509339 0.5619986 0.5025087 +0.5547519 0.5619986 0.5025087 +0.5584371 0.5619986 0.5025087 +0.5619986 0.5619986 0.5025087 +0.5654443 0.5619986 0.5025087 +0.5687816 0.5619986 0.5025087 +0.092819 0.5654443 0.5025087 +0.2262531 0.5654443 0.5025087 +0.2875993 0.5654443 0.5025087 +0.3262122 0.5654443 0.5025087 +0.3544566 0.5654443 0.5025087 +0.3767383 0.5654443 0.5025087 +0.3951413 0.5654443 0.5025087 +0.4108177 0.5654443 0.5025087 +0.4244723 0.5654443 0.5025087 +0.4365675 0.5654443 0.5025087 +0.4474232 0.5654443 0.5025087 +0.45727 0.5654443 0.5025087 +0.4662797 0.5654443 0.5025087 +0.4745834 0.5654443 0.5025087 +0.4822838 0.5654443 0.5025087 +0.4894626 0.5654443 0.5025087 +0.4961862 0.5654443 0.5025087 +0.5025087 0.5654443 0.5025087 +0.5084753 0.5654443 0.5025087 +0.514124 0.5654443 0.5025087 +0.519487 0.5654443 0.5025087 +0.5245917 0.5654443 0.5025087 +0.529462 0.5654443 0.5025087 +0.5341183 0.5654443 0.5025087 +0.5385787 0.5654443 0.5025087 +0.5428591 0.5654443 0.5025087 +0.5469733 0.5654443 0.5025087 +0.5509339 0.5654443 0.5025087 +0.5547519 0.5654443 0.5025087 +0.5584371 0.5654443 0.5025087 +0.5619986 0.5654443 0.5025087 +0.5654443 0.5654443 0.5025087 +0.5687816 0.5654443 0.5025087 +0.092819 0.5687816 0.5025087 +0.2262531 0.5687816 0.5025087 +0.2875993 0.5687816 0.5025087 +0.3262122 0.5687816 0.5025087 +0.3544566 0.5687816 0.5025087 +0.3767383 0.5687816 0.5025087 +0.3951413 0.5687816 0.5025087 +0.4108177 0.5687816 0.5025087 +0.4244723 0.5687816 0.5025087 +0.4365675 0.5687816 0.5025087 +0.4474232 0.5687816 0.5025087 +0.45727 0.5687816 0.5025087 +0.4662797 0.5687816 0.5025087 +0.4745834 0.5687816 0.5025087 +0.4822838 0.5687816 0.5025087 +0.4894626 0.5687816 0.5025087 +0.4961862 0.5687816 0.5025087 +0.5025087 0.5687816 0.5025087 +0.5084753 0.5687816 0.5025087 +0.514124 0.5687816 0.5025087 +0.519487 0.5687816 0.5025087 +0.5245917 0.5687816 0.5025087 +0.529462 0.5687816 0.5025087 +0.5341183 0.5687816 0.5025087 +0.5385787 0.5687816 0.5025087 +0.5428591 0.5687816 0.5025087 +0.5469733 0.5687816 0.5025087 +0.5509339 0.5687816 0.5025087 +0.5547519 0.5687816 0.5025087 +0.5584371 0.5687816 0.5025087 +0.5619986 0.5687816 0.5025087 +0.5654443 0.5687816 0.5025087 +0.5687816 0.5687816 0.5025087 +0.092819 0.092819 0.5084753 +0.2262531 0.092819 0.5084753 +0.2875993 0.092819 0.5084753 +0.3262122 0.092819 0.5084753 +0.3544566 0.092819 0.5084753 +0.3767383 0.092819 0.5084753 +0.3951413 0.092819 0.5084753 +0.4108177 0.092819 0.5084753 +0.4244723 0.092819 0.5084753 +0.4365675 0.092819 0.5084753 +0.4474232 0.092819 0.5084753 +0.45727 0.092819 0.5084753 +0.4662797 0.092819 0.5084753 +0.4745834 0.092819 0.5084753 +0.4822838 0.092819 0.5084753 +0.4894626 0.092819 0.5084753 +0.4961862 0.092819 0.5084753 +0.5025087 0.092819 0.5084753 +0.5084753 0.092819 0.5084753 +0.514124 0.092819 0.5084753 +0.519487 0.092819 0.5084753 +0.5245917 0.092819 0.5084753 +0.529462 0.092819 0.5084753 +0.5341183 0.092819 0.5084753 +0.5385787 0.092819 0.5084753 +0.5428591 0.092819 0.5084753 +0.5469733 0.092819 0.5084753 +0.5509339 0.092819 0.5084753 +0.5547519 0.092819 0.5084753 +0.5584371 0.092819 0.5084753 +0.5619986 0.092819 0.5084753 +0.5654443 0.092819 0.5084753 +0.5687816 0.092819 0.5084753 +0.092819 0.2262531 0.5084753 +0.2262531 0.2262531 0.5084753 +0.2875993 0.2262531 0.5084753 +0.3262122 0.2262531 0.5084753 +0.3544566 0.2262531 0.5084753 +0.3767383 0.2262531 0.5084753 +0.3951413 0.2262531 0.5084753 +0.4108177 0.2262531 0.5084753 +0.4244723 0.2262531 0.5084753 +0.4365675 0.2262531 0.5084753 +0.4474232 0.2262531 0.5084753 +0.45727 0.2262531 0.5084753 +0.4662797 0.2262531 0.5084753 +0.4745834 0.2262531 0.5084753 +0.4822838 0.2262531 0.5084753 +0.4894626 0.2262531 0.5084753 +0.4961862 0.2262531 0.5084753 +0.5025087 0.2262531 0.5084753 +0.5084753 0.2262531 0.5084753 +0.514124 0.2262531 0.5084753 +0.519487 0.2262531 0.5084753 +0.5245917 0.2262531 0.5084753 +0.529462 0.2262531 0.5084753 +0.5341183 0.2262531 0.5084753 +0.5385787 0.2262531 0.5084753 +0.5428591 0.2262531 0.5084753 +0.5469733 0.2262531 0.5084753 +0.5509339 0.2262531 0.5084753 +0.5547519 0.2262531 0.5084753 +0.5584371 0.2262531 0.5084753 +0.5619986 0.2262531 0.5084753 +0.5654443 0.2262531 0.5084753 +0.5687816 0.2262531 0.5084753 +0.092819 0.2875993 0.5084753 +0.2262531 0.2875993 0.5084753 +0.2875993 0.2875993 0.5084753 +0.3262122 0.2875993 0.5084753 +0.3544566 0.2875993 0.5084753 +0.3767383 0.2875993 0.5084753 +0.3951413 0.2875993 0.5084753 +0.4108177 0.2875993 0.5084753 +0.4244723 0.2875993 0.5084753 +0.4365675 0.2875993 0.5084753 +0.4474232 0.2875993 0.5084753 +0.45727 0.2875993 0.5084753 +0.4662797 0.2875993 0.5084753 +0.4745834 0.2875993 0.5084753 +0.4822838 0.2875993 0.5084753 +0.4894626 0.2875993 0.5084753 +0.4961862 0.2875993 0.5084753 +0.5025087 0.2875993 0.5084753 +0.5084753 0.2875993 0.5084753 +0.514124 0.2875993 0.5084753 +0.519487 0.2875993 0.5084753 +0.5245917 0.2875993 0.5084753 +0.529462 0.2875993 0.5084753 +0.5341183 0.2875993 0.5084753 +0.5385787 0.2875993 0.5084753 +0.5428591 0.2875993 0.5084753 +0.5469733 0.2875993 0.5084753 +0.5509339 0.2875993 0.5084753 +0.5547519 0.2875993 0.5084753 +0.5584371 0.2875993 0.5084753 +0.5619986 0.2875993 0.5084753 +0.5654443 0.2875993 0.5084753 +0.5687816 0.2875993 0.5084753 +0.092819 0.3262122 0.5084753 +0.2262531 0.3262122 0.5084753 +0.2875993 0.3262122 0.5084753 +0.3262122 0.3262122 0.5084753 +0.3544566 0.3262122 0.5084753 +0.3767383 0.3262122 0.5084753 +0.3951413 0.3262122 0.5084753 +0.4108177 0.3262122 0.5084753 +0.4244723 0.3262122 0.5084753 +0.4365675 0.3262122 0.5084753 +0.4474232 0.3262122 0.5084753 +0.45727 0.3262122 0.5084753 +0.4662797 0.3262122 0.5084753 +0.4745834 0.3262122 0.5084753 +0.4822838 0.3262122 0.5084753 +0.4894626 0.3262122 0.5084753 +0.4961862 0.3262122 0.5084753 +0.5025087 0.3262122 0.5084753 +0.5084753 0.3262122 0.5084753 +0.514124 0.3262122 0.5084753 +0.519487 0.3262122 0.5084753 +0.5245917 0.3262122 0.5084753 +0.529462 0.3262122 0.5084753 +0.5341183 0.3262122 0.5084753 +0.5385787 0.3262122 0.5084753 +0.5428591 0.3262122 0.5084753 +0.5469733 0.3262122 0.5084753 +0.5509339 0.3262122 0.5084753 +0.5547519 0.3262122 0.5084753 +0.5584371 0.3262122 0.5084753 +0.5619986 0.3262122 0.5084753 +0.5654443 0.3262122 0.5084753 +0.5687816 0.3262122 0.5084753 +0.092819 0.3544566 0.5084753 +0.2262531 0.3544566 0.5084753 +0.2875993 0.3544566 0.5084753 +0.3262122 0.3544566 0.5084753 +0.3544566 0.3544566 0.5084753 +0.3767383 0.3544566 0.5084753 +0.3951413 0.3544566 0.5084753 +0.4108177 0.3544566 0.5084753 +0.4244723 0.3544566 0.5084753 +0.4365675 0.3544566 0.5084753 +0.4474232 0.3544566 0.5084753 +0.45727 0.3544566 0.5084753 +0.4662797 0.3544566 0.5084753 +0.4745834 0.3544566 0.5084753 +0.4822838 0.3544566 0.5084753 +0.4894626 0.3544566 0.5084753 +0.4961862 0.3544566 0.5084753 +0.5025087 0.3544566 0.5084753 +0.5084753 0.3544566 0.5084753 +0.514124 0.3544566 0.5084753 +0.519487 0.3544566 0.5084753 +0.5245917 0.3544566 0.5084753 +0.529462 0.3544566 0.5084753 +0.5341183 0.3544566 0.5084753 +0.5385787 0.3544566 0.5084753 +0.5428591 0.3544566 0.5084753 +0.5469733 0.3544566 0.5084753 +0.5509339 0.3544566 0.5084753 +0.5547519 0.3544566 0.5084753 +0.5584371 0.3544566 0.5084753 +0.5619986 0.3544566 0.5084753 +0.5654443 0.3544566 0.5084753 +0.5687816 0.3544566 0.5084753 +0.092819 0.3767383 0.5084753 +0.2262531 0.3767383 0.5084753 +0.2875993 0.3767383 0.5084753 +0.3262122 0.3767383 0.5084753 +0.3544566 0.3767383 0.5084753 +0.3767383 0.3767383 0.5084753 +0.3951413 0.3767383 0.5084753 +0.4108177 0.3767383 0.5084753 +0.4244723 0.3767383 0.5084753 +0.4365675 0.3767383 0.5084753 +0.4474232 0.3767383 0.5084753 +0.45727 0.3767383 0.5084753 +0.4662797 0.3767383 0.5084753 +0.4745834 0.3767383 0.5084753 +0.4822838 0.3767383 0.5084753 +0.4894626 0.3767383 0.5084753 +0.4961862 0.3767383 0.5084753 +0.5025087 0.3767383 0.5084753 +0.5084753 0.3767383 0.5084753 +0.514124 0.3767383 0.5084753 +0.519487 0.3767383 0.5084753 +0.5245917 0.3767383 0.5084753 +0.529462 0.3767383 0.5084753 +0.5341183 0.3767383 0.5084753 +0.5385787 0.3767383 0.5084753 +0.5428591 0.3767383 0.5084753 +0.5469733 0.3767383 0.5084753 +0.5509339 0.3767383 0.5084753 +0.5547519 0.3767383 0.5084753 +0.5584371 0.3767383 0.5084753 +0.5619986 0.3767383 0.5084753 +0.5654443 0.3767383 0.5084753 +0.5687816 0.3767383 0.5084753 +0.092819 0.3951413 0.5084753 +0.2262531 0.3951413 0.5084753 +0.2875993 0.3951413 0.5084753 +0.3262122 0.3951413 0.5084753 +0.3544566 0.3951413 0.5084753 +0.3767383 0.3951413 0.5084753 +0.3951413 0.3951413 0.5084753 +0.4108177 0.3951413 0.5084753 +0.4244723 0.3951413 0.5084753 +0.4365675 0.3951413 0.5084753 +0.4474232 0.3951413 0.5084753 +0.45727 0.3951413 0.5084753 +0.4662797 0.3951413 0.5084753 +0.4745834 0.3951413 0.5084753 +0.4822838 0.3951413 0.5084753 +0.4894626 0.3951413 0.5084753 +0.4961862 0.3951413 0.5084753 +0.5025087 0.3951413 0.5084753 +0.5084753 0.3951413 0.5084753 +0.514124 0.3951413 0.5084753 +0.519487 0.3951413 0.5084753 +0.5245917 0.3951413 0.5084753 +0.529462 0.3951413 0.5084753 +0.5341183 0.3951413 0.5084753 +0.5385787 0.3951413 0.5084753 +0.5428591 0.3951413 0.5084753 +0.5469733 0.3951413 0.5084753 +0.5509339 0.3951413 0.5084753 +0.5547519 0.3951413 0.5084753 +0.5584371 0.3951413 0.5084753 +0.5619986 0.3951413 0.5084753 +0.5654443 0.3951413 0.5084753 +0.5687816 0.3951413 0.5084753 +0.092819 0.4108177 0.5084753 +0.2262531 0.4108177 0.5084753 +0.2875993 0.4108177 0.5084753 +0.3262122 0.4108177 0.5084753 +0.3544566 0.4108177 0.5084753 +0.3767383 0.4108177 0.5084753 +0.3951413 0.4108177 0.5084753 +0.4108177 0.4108177 0.5084753 +0.4244723 0.4108177 0.5084753 +0.4365675 0.4108177 0.5084753 +0.4474232 0.4108177 0.5084753 +0.45727 0.4108177 0.5084753 +0.4662797 0.4108177 0.5084753 +0.4745834 0.4108177 0.5084753 +0.4822838 0.4108177 0.5084753 +0.4894626 0.4108177 0.5084753 +0.4961862 0.4108177 0.5084753 +0.5025087 0.4108177 0.5084753 +0.5084753 0.4108177 0.5084753 +0.514124 0.4108177 0.5084753 +0.519487 0.4108177 0.5084753 +0.5245917 0.4108177 0.5084753 +0.529462 0.4108177 0.5084753 +0.5341183 0.4108177 0.5084753 +0.5385787 0.4108177 0.5084753 +0.5428591 0.4108177 0.5084753 +0.5469733 0.4108177 0.5084753 +0.5509339 0.4108177 0.5084753 +0.5547519 0.4108177 0.5084753 +0.5584371 0.4108177 0.5084753 +0.5619986 0.4108177 0.5084753 +0.5654443 0.4108177 0.5084753 +0.5687816 0.4108177 0.5084753 +0.092819 0.4244723 0.5084753 +0.2262531 0.4244723 0.5084753 +0.2875993 0.4244723 0.5084753 +0.3262122 0.4244723 0.5084753 +0.3544566 0.4244723 0.5084753 +0.3767383 0.4244723 0.5084753 +0.3951413 0.4244723 0.5084753 +0.4108177 0.4244723 0.5084753 +0.4244723 0.4244723 0.5084753 +0.4365675 0.4244723 0.5084753 +0.4474232 0.4244723 0.5084753 +0.45727 0.4244723 0.5084753 +0.4662797 0.4244723 0.5084753 +0.4745834 0.4244723 0.5084753 +0.4822838 0.4244723 0.5084753 +0.4894626 0.4244723 0.5084753 +0.4961862 0.4244723 0.5084753 +0.5025087 0.4244723 0.5084753 +0.5084753 0.4244723 0.5084753 +0.514124 0.4244723 0.5084753 +0.519487 0.4244723 0.5084753 +0.5245917 0.4244723 0.5084753 +0.529462 0.4244723 0.5084753 +0.5341183 0.4244723 0.5084753 +0.5385787 0.4244723 0.5084753 +0.5428591 0.4244723 0.5084753 +0.5469733 0.4244723 0.5084753 +0.5509339 0.4244723 0.5084753 +0.5547519 0.4244723 0.5084753 +0.5584371 0.4244723 0.5084753 +0.5619986 0.4244723 0.5084753 +0.5654443 0.4244723 0.5084753 +0.5687816 0.4244723 0.5084753 +0.092819 0.4365675 0.5084753 +0.2262531 0.4365675 0.5084753 +0.2875993 0.4365675 0.5084753 +0.3262122 0.4365675 0.5084753 +0.3544566 0.4365675 0.5084753 +0.3767383 0.4365675 0.5084753 +0.3951413 0.4365675 0.5084753 +0.4108177 0.4365675 0.5084753 +0.4244723 0.4365675 0.5084753 +0.4365675 0.4365675 0.5084753 +0.4474232 0.4365675 0.5084753 +0.45727 0.4365675 0.5084753 +0.4662797 0.4365675 0.5084753 +0.4745834 0.4365675 0.5084753 +0.4822838 0.4365675 0.5084753 +0.4894626 0.4365675 0.5084753 +0.4961862 0.4365675 0.5084753 +0.5025087 0.4365675 0.5084753 +0.5084753 0.4365675 0.5084753 +0.514124 0.4365675 0.5084753 +0.519487 0.4365675 0.5084753 +0.5245917 0.4365675 0.5084753 +0.529462 0.4365675 0.5084753 +0.5341183 0.4365675 0.5084753 +0.5385787 0.4365675 0.5084753 +0.5428591 0.4365675 0.5084753 +0.5469733 0.4365675 0.5084753 +0.5509339 0.4365675 0.5084753 +0.5547519 0.4365675 0.5084753 +0.5584371 0.4365675 0.5084753 +0.5619986 0.4365675 0.5084753 +0.5654443 0.4365675 0.5084753 +0.5687816 0.4365675 0.5084753 +0.092819 0.4474232 0.5084753 +0.2262531 0.4474232 0.5084753 +0.2875993 0.4474232 0.5084753 +0.3262122 0.4474232 0.5084753 +0.3544566 0.4474232 0.5084753 +0.3767383 0.4474232 0.5084753 +0.3951413 0.4474232 0.5084753 +0.4108177 0.4474232 0.5084753 +0.4244723 0.4474232 0.5084753 +0.4365675 0.4474232 0.5084753 +0.4474232 0.4474232 0.5084753 +0.45727 0.4474232 0.5084753 +0.4662797 0.4474232 0.5084753 +0.4745834 0.4474232 0.5084753 +0.4822838 0.4474232 0.5084753 +0.4894626 0.4474232 0.5084753 +0.4961862 0.4474232 0.5084753 +0.5025087 0.4474232 0.5084753 +0.5084753 0.4474232 0.5084753 +0.514124 0.4474232 0.5084753 +0.519487 0.4474232 0.5084753 +0.5245917 0.4474232 0.5084753 +0.529462 0.4474232 0.5084753 +0.5341183 0.4474232 0.5084753 +0.5385787 0.4474232 0.5084753 +0.5428591 0.4474232 0.5084753 +0.5469733 0.4474232 0.5084753 +0.5509339 0.4474232 0.5084753 +0.5547519 0.4474232 0.5084753 +0.5584371 0.4474232 0.5084753 +0.5619986 0.4474232 0.5084753 +0.5654443 0.4474232 0.5084753 +0.5687816 0.4474232 0.5084753 +0.092819 0.45727 0.5084753 +0.2262531 0.45727 0.5084753 +0.2875993 0.45727 0.5084753 +0.3262122 0.45727 0.5084753 +0.3544566 0.45727 0.5084753 +0.3767383 0.45727 0.5084753 +0.3951413 0.45727 0.5084753 +0.4108177 0.45727 0.5084753 +0.4244723 0.45727 0.5084753 +0.4365675 0.45727 0.5084753 +0.4474232 0.45727 0.5084753 +0.45727 0.45727 0.5084753 +0.4662797 0.45727 0.5084753 +0.4745834 0.45727 0.5084753 +0.4822838 0.45727 0.5084753 +0.4894626 0.45727 0.5084753 +0.4961862 0.45727 0.5084753 +0.5025087 0.45727 0.5084753 +0.5084753 0.45727 0.5084753 +0.514124 0.45727 0.5084753 +0.519487 0.45727 0.5084753 +0.5245917 0.45727 0.5084753 +0.529462 0.45727 0.5084753 +0.5341183 0.45727 0.5084753 +0.5385787 0.45727 0.5084753 +0.5428591 0.45727 0.5084753 +0.5469733 0.45727 0.5084753 +0.5509339 0.45727 0.5084753 +0.5547519 0.45727 0.5084753 +0.5584371 0.45727 0.5084753 +0.5619986 0.45727 0.5084753 +0.5654443 0.45727 0.5084753 +0.5687816 0.45727 0.5084753 +0.092819 0.4662797 0.5084753 +0.2262531 0.4662797 0.5084753 +0.2875993 0.4662797 0.5084753 +0.3262122 0.4662797 0.5084753 +0.3544566 0.4662797 0.5084753 +0.3767383 0.4662797 0.5084753 +0.3951413 0.4662797 0.5084753 +0.4108177 0.4662797 0.5084753 +0.4244723 0.4662797 0.5084753 +0.4365675 0.4662797 0.5084753 +0.4474232 0.4662797 0.5084753 +0.45727 0.4662797 0.5084753 +0.4662797 0.4662797 0.5084753 +0.4745834 0.4662797 0.5084753 +0.4822838 0.4662797 0.5084753 +0.4894626 0.4662797 0.5084753 +0.4961862 0.4662797 0.5084753 +0.5025087 0.4662797 0.5084753 +0.5084753 0.4662797 0.5084753 +0.514124 0.4662797 0.5084753 +0.519487 0.4662797 0.5084753 +0.5245917 0.4662797 0.5084753 +0.529462 0.4662797 0.5084753 +0.5341183 0.4662797 0.5084753 +0.5385787 0.4662797 0.5084753 +0.5428591 0.4662797 0.5084753 +0.5469733 0.4662797 0.5084753 +0.5509339 0.4662797 0.5084753 +0.5547519 0.4662797 0.5084753 +0.5584371 0.4662797 0.5084753 +0.5619986 0.4662797 0.5084753 +0.5654443 0.4662797 0.5084753 +0.5687816 0.4662797 0.5084753 +0.092819 0.4745834 0.5084753 +0.2262531 0.4745834 0.5084753 +0.2875993 0.4745834 0.5084753 +0.3262122 0.4745834 0.5084753 +0.3544566 0.4745834 0.5084753 +0.3767383 0.4745834 0.5084753 +0.3951413 0.4745834 0.5084753 +0.4108177 0.4745834 0.5084753 +0.4244723 0.4745834 0.5084753 +0.4365675 0.4745834 0.5084753 +0.4474232 0.4745834 0.5084753 +0.45727 0.4745834 0.5084753 +0.4662797 0.4745834 0.5084753 +0.4745834 0.4745834 0.5084753 +0.4822838 0.4745834 0.5084753 +0.4894626 0.4745834 0.5084753 +0.4961862 0.4745834 0.5084753 +0.5025087 0.4745834 0.5084753 +0.5084753 0.4745834 0.5084753 +0.514124 0.4745834 0.5084753 +0.519487 0.4745834 0.5084753 +0.5245917 0.4745834 0.5084753 +0.529462 0.4745834 0.5084753 +0.5341183 0.4745834 0.5084753 +0.5385787 0.4745834 0.5084753 +0.5428591 0.4745834 0.5084753 +0.5469733 0.4745834 0.5084753 +0.5509339 0.4745834 0.5084753 +0.5547519 0.4745834 0.5084753 +0.5584371 0.4745834 0.5084753 +0.5619986 0.4745834 0.5084753 +0.5654443 0.4745834 0.5084753 +0.5687816 0.4745834 0.5084753 +0.092819 0.4822838 0.5084753 +0.2262531 0.4822838 0.5084753 +0.2875993 0.4822838 0.5084753 +0.3262122 0.4822838 0.5084753 +0.3544566 0.4822838 0.5084753 +0.3767383 0.4822838 0.5084753 +0.3951413 0.4822838 0.5084753 +0.4108177 0.4822838 0.5084753 +0.4244723 0.4822838 0.5084753 +0.4365675 0.4822838 0.5084753 +0.4474232 0.4822838 0.5084753 +0.45727 0.4822838 0.5084753 +0.4662797 0.4822838 0.5084753 +0.4745834 0.4822838 0.5084753 +0.4822838 0.4822838 0.5084753 +0.4894626 0.4822838 0.5084753 +0.4961862 0.4822838 0.5084753 +0.5025087 0.4822838 0.5084753 +0.5084753 0.4822838 0.5084753 +0.514124 0.4822838 0.5084753 +0.519487 0.4822838 0.5084753 +0.5245917 0.4822838 0.5084753 +0.529462 0.4822838 0.5084753 +0.5341183 0.4822838 0.5084753 +0.5385787 0.4822838 0.5084753 +0.5428591 0.4822838 0.5084753 +0.5469733 0.4822838 0.5084753 +0.5509339 0.4822838 0.5084753 +0.5547519 0.4822838 0.5084753 +0.5584371 0.4822838 0.5084753 +0.5619986 0.4822838 0.5084753 +0.5654443 0.4822838 0.5084753 +0.5687816 0.4822838 0.5084753 +0.092819 0.4894626 0.5084753 +0.2262531 0.4894626 0.5084753 +0.2875993 0.4894626 0.5084753 +0.3262122 0.4894626 0.5084753 +0.3544566 0.4894626 0.5084753 +0.3767383 0.4894626 0.5084753 +0.3951413 0.4894626 0.5084753 +0.4108177 0.4894626 0.5084753 +0.4244723 0.4894626 0.5084753 +0.4365675 0.4894626 0.5084753 +0.4474232 0.4894626 0.5084753 +0.45727 0.4894626 0.5084753 +0.4662797 0.4894626 0.5084753 +0.4745834 0.4894626 0.5084753 +0.4822838 0.4894626 0.5084753 +0.4894626 0.4894626 0.5084753 +0.4961862 0.4894626 0.5084753 +0.5025087 0.4894626 0.5084753 +0.5084753 0.4894626 0.5084753 +0.514124 0.4894626 0.5084753 +0.519487 0.4894626 0.5084753 +0.5245917 0.4894626 0.5084753 +0.529462 0.4894626 0.5084753 +0.5341183 0.4894626 0.5084753 +0.5385787 0.4894626 0.5084753 +0.5428591 0.4894626 0.5084753 +0.5469733 0.4894626 0.5084753 +0.5509339 0.4894626 0.5084753 +0.5547519 0.4894626 0.5084753 +0.5584371 0.4894626 0.5084753 +0.5619986 0.4894626 0.5084753 +0.5654443 0.4894626 0.5084753 +0.5687816 0.4894626 0.5084753 +0.092819 0.4961862 0.5084753 +0.2262531 0.4961862 0.5084753 +0.2875993 0.4961862 0.5084753 +0.3262122 0.4961862 0.5084753 +0.3544566 0.4961862 0.5084753 +0.3767383 0.4961862 0.5084753 +0.3951413 0.4961862 0.5084753 +0.4108177 0.4961862 0.5084753 +0.4244723 0.4961862 0.5084753 +0.4365675 0.4961862 0.5084753 +0.4474232 0.4961862 0.5084753 +0.45727 0.4961862 0.5084753 +0.4662797 0.4961862 0.5084753 +0.4745834 0.4961862 0.5084753 +0.4822838 0.4961862 0.5084753 +0.4894626 0.4961862 0.5084753 +0.4961862 0.4961862 0.5084753 +0.5025087 0.4961862 0.5084753 +0.5084753 0.4961862 0.5084753 +0.514124 0.4961862 0.5084753 +0.519487 0.4961862 0.5084753 +0.5245917 0.4961862 0.5084753 +0.529462 0.4961862 0.5084753 +0.5341183 0.4961862 0.5084753 +0.5385787 0.4961862 0.5084753 +0.5428591 0.4961862 0.5084753 +0.5469733 0.4961862 0.5084753 +0.5509339 0.4961862 0.5084753 +0.5547519 0.4961862 0.5084753 +0.5584371 0.4961862 0.5084753 +0.5619986 0.4961862 0.5084753 +0.5654443 0.4961862 0.5084753 +0.5687816 0.4961862 0.5084753 +0.092819 0.5025087 0.5084753 +0.2262531 0.5025087 0.5084753 +0.2875993 0.5025087 0.5084753 +0.3262122 0.5025087 0.5084753 +0.3544566 0.5025087 0.5084753 +0.3767383 0.5025087 0.5084753 +0.3951413 0.5025087 0.5084753 +0.4108177 0.5025087 0.5084753 +0.4244723 0.5025087 0.5084753 +0.4365675 0.5025087 0.5084753 +0.4474232 0.5025087 0.5084753 +0.45727 0.5025087 0.5084753 +0.4662797 0.5025087 0.5084753 +0.4745834 0.5025087 0.5084753 +0.4822838 0.5025087 0.5084753 +0.4894626 0.5025087 0.5084753 +0.4961862 0.5025087 0.5084753 +0.5025087 0.5025087 0.5084753 +0.5084753 0.5025087 0.5084753 +0.514124 0.5025087 0.5084753 +0.519487 0.5025087 0.5084753 +0.5245917 0.5025087 0.5084753 +0.529462 0.5025087 0.5084753 +0.5341183 0.5025087 0.5084753 +0.5385787 0.5025087 0.5084753 +0.5428591 0.5025087 0.5084753 +0.5469733 0.5025087 0.5084753 +0.5509339 0.5025087 0.5084753 +0.5547519 0.5025087 0.5084753 +0.5584371 0.5025087 0.5084753 +0.5619986 0.5025087 0.5084753 +0.5654443 0.5025087 0.5084753 +0.5687816 0.5025087 0.5084753 +0.092819 0.5084753 0.5084753 +0.2262531 0.5084753 0.5084753 +0.2875993 0.5084753 0.5084753 +0.3262122 0.5084753 0.5084753 +0.3544566 0.5084753 0.5084753 +0.3767383 0.5084753 0.5084753 +0.3951413 0.5084753 0.5084753 +0.4108177 0.5084753 0.5084753 +0.4244723 0.5084753 0.5084753 +0.4365675 0.5084753 0.5084753 +0.4474232 0.5084753 0.5084753 +0.45727 0.5084753 0.5084753 +0.4662797 0.5084753 0.5084753 +0.4745834 0.5084753 0.5084753 +0.4822838 0.5084753 0.5084753 +0.4894626 0.5084753 0.5084753 +0.4961862 0.5084753 0.5084753 +0.5025087 0.5084753 0.5084753 +0.5084753 0.5084753 0.5084753 +0.514124 0.5084753 0.5084753 +0.519487 0.5084753 0.5084753 +0.5245917 0.5084753 0.5084753 +0.529462 0.5084753 0.5084753 +0.5341183 0.5084753 0.5084753 +0.5385787 0.5084753 0.5084753 +0.5428591 0.5084753 0.5084753 +0.5469733 0.5084753 0.5084753 +0.5509339 0.5084753 0.5084753 +0.5547519 0.5084753 0.5084753 +0.5584371 0.5084753 0.5084753 +0.5619986 0.5084753 0.5084753 +0.5654443 0.5084753 0.5084753 +0.5687816 0.5084753 0.5084753 +0.092819 0.514124 0.5084753 +0.2262531 0.514124 0.5084753 +0.2875993 0.514124 0.5084753 +0.3262122 0.514124 0.5084753 +0.3544566 0.514124 0.5084753 +0.3767383 0.514124 0.5084753 +0.3951413 0.514124 0.5084753 +0.4108177 0.514124 0.5084753 +0.4244723 0.514124 0.5084753 +0.4365675 0.514124 0.5084753 +0.4474232 0.514124 0.5084753 +0.45727 0.514124 0.5084753 +0.4662797 0.514124 0.5084753 +0.4745834 0.514124 0.5084753 +0.4822838 0.514124 0.5084753 +0.4894626 0.514124 0.5084753 +0.4961862 0.514124 0.5084753 +0.5025087 0.514124 0.5084753 +0.5084753 0.514124 0.5084753 +0.514124 0.514124 0.5084753 +0.519487 0.514124 0.5084753 +0.5245917 0.514124 0.5084753 +0.529462 0.514124 0.5084753 +0.5341183 0.514124 0.5084753 +0.5385787 0.514124 0.5084753 +0.5428591 0.514124 0.5084753 +0.5469733 0.514124 0.5084753 +0.5509339 0.514124 0.5084753 +0.5547519 0.514124 0.5084753 +0.5584371 0.514124 0.5084753 +0.5619986 0.514124 0.5084753 +0.5654443 0.514124 0.5084753 +0.5687816 0.514124 0.5084753 +0.092819 0.519487 0.5084753 +0.2262531 0.519487 0.5084753 +0.2875993 0.519487 0.5084753 +0.3262122 0.519487 0.5084753 +0.3544566 0.519487 0.5084753 +0.3767383 0.519487 0.5084753 +0.3951413 0.519487 0.5084753 +0.4108177 0.519487 0.5084753 +0.4244723 0.519487 0.5084753 +0.4365675 0.519487 0.5084753 +0.4474232 0.519487 0.5084753 +0.45727 0.519487 0.5084753 +0.4662797 0.519487 0.5084753 +0.4745834 0.519487 0.5084753 +0.4822838 0.519487 0.5084753 +0.4894626 0.519487 0.5084753 +0.4961862 0.519487 0.5084753 +0.5025087 0.519487 0.5084753 +0.5084753 0.519487 0.5084753 +0.514124 0.519487 0.5084753 +0.519487 0.519487 0.5084753 +0.5245917 0.519487 0.5084753 +0.529462 0.519487 0.5084753 +0.5341183 0.519487 0.5084753 +0.5385787 0.519487 0.5084753 +0.5428591 0.519487 0.5084753 +0.5469733 0.519487 0.5084753 +0.5509339 0.519487 0.5084753 +0.5547519 0.519487 0.5084753 +0.5584371 0.519487 0.5084753 +0.5619986 0.519487 0.5084753 +0.5654443 0.519487 0.5084753 +0.5687816 0.519487 0.5084753 +0.092819 0.5245917 0.5084753 +0.2262531 0.5245917 0.5084753 +0.2875993 0.5245917 0.5084753 +0.3262122 0.5245917 0.5084753 +0.3544566 0.5245917 0.5084753 +0.3767383 0.5245917 0.5084753 +0.3951413 0.5245917 0.5084753 +0.4108177 0.5245917 0.5084753 +0.4244723 0.5245917 0.5084753 +0.4365675 0.5245917 0.5084753 +0.4474232 0.5245917 0.5084753 +0.45727 0.5245917 0.5084753 +0.4662797 0.5245917 0.5084753 +0.4745834 0.5245917 0.5084753 +0.4822838 0.5245917 0.5084753 +0.4894626 0.5245917 0.5084753 +0.4961862 0.5245917 0.5084753 +0.5025087 0.5245917 0.5084753 +0.5084753 0.5245917 0.5084753 +0.514124 0.5245917 0.5084753 +0.519487 0.5245917 0.5084753 +0.5245917 0.5245917 0.5084753 +0.529462 0.5245917 0.5084753 +0.5341183 0.5245917 0.5084753 +0.5385787 0.5245917 0.5084753 +0.5428591 0.5245917 0.5084753 +0.5469733 0.5245917 0.5084753 +0.5509339 0.5245917 0.5084753 +0.5547519 0.5245917 0.5084753 +0.5584371 0.5245917 0.5084753 +0.5619986 0.5245917 0.5084753 +0.5654443 0.5245917 0.5084753 +0.5687816 0.5245917 0.5084753 +0.092819 0.529462 0.5084753 +0.2262531 0.529462 0.5084753 +0.2875993 0.529462 0.5084753 +0.3262122 0.529462 0.5084753 +0.3544566 0.529462 0.5084753 +0.3767383 0.529462 0.5084753 +0.3951413 0.529462 0.5084753 +0.4108177 0.529462 0.5084753 +0.4244723 0.529462 0.5084753 +0.4365675 0.529462 0.5084753 +0.4474232 0.529462 0.5084753 +0.45727 0.529462 0.5084753 +0.4662797 0.529462 0.5084753 +0.4745834 0.529462 0.5084753 +0.4822838 0.529462 0.5084753 +0.4894626 0.529462 0.5084753 +0.4961862 0.529462 0.5084753 +0.5025087 0.529462 0.5084753 +0.5084753 0.529462 0.5084753 +0.514124 0.529462 0.5084753 +0.519487 0.529462 0.5084753 +0.5245917 0.529462 0.5084753 +0.529462 0.529462 0.5084753 +0.5341183 0.529462 0.5084753 +0.5385787 0.529462 0.5084753 +0.5428591 0.529462 0.5084753 +0.5469733 0.529462 0.5084753 +0.5509339 0.529462 0.5084753 +0.5547519 0.529462 0.5084753 +0.5584371 0.529462 0.5084753 +0.5619986 0.529462 0.5084753 +0.5654443 0.529462 0.5084753 +0.5687816 0.529462 0.5084753 +0.092819 0.5341183 0.5084753 +0.2262531 0.5341183 0.5084753 +0.2875993 0.5341183 0.5084753 +0.3262122 0.5341183 0.5084753 +0.3544566 0.5341183 0.5084753 +0.3767383 0.5341183 0.5084753 +0.3951413 0.5341183 0.5084753 +0.4108177 0.5341183 0.5084753 +0.4244723 0.5341183 0.5084753 +0.4365675 0.5341183 0.5084753 +0.4474232 0.5341183 0.5084753 +0.45727 0.5341183 0.5084753 +0.4662797 0.5341183 0.5084753 +0.4745834 0.5341183 0.5084753 +0.4822838 0.5341183 0.5084753 +0.4894626 0.5341183 0.5084753 +0.4961862 0.5341183 0.5084753 +0.5025087 0.5341183 0.5084753 +0.5084753 0.5341183 0.5084753 +0.514124 0.5341183 0.5084753 +0.519487 0.5341183 0.5084753 +0.5245917 0.5341183 0.5084753 +0.529462 0.5341183 0.5084753 +0.5341183 0.5341183 0.5084753 +0.5385787 0.5341183 0.5084753 +0.5428591 0.5341183 0.5084753 +0.5469733 0.5341183 0.5084753 +0.5509339 0.5341183 0.5084753 +0.5547519 0.5341183 0.5084753 +0.5584371 0.5341183 0.5084753 +0.5619986 0.5341183 0.5084753 +0.5654443 0.5341183 0.5084753 +0.5687816 0.5341183 0.5084753 +0.092819 0.5385787 0.5084753 +0.2262531 0.5385787 0.5084753 +0.2875993 0.5385787 0.5084753 +0.3262122 0.5385787 0.5084753 +0.3544566 0.5385787 0.5084753 +0.3767383 0.5385787 0.5084753 +0.3951413 0.5385787 0.5084753 +0.4108177 0.5385787 0.5084753 +0.4244723 0.5385787 0.5084753 +0.4365675 0.5385787 0.5084753 +0.4474232 0.5385787 0.5084753 +0.45727 0.5385787 0.5084753 +0.4662797 0.5385787 0.5084753 +0.4745834 0.5385787 0.5084753 +0.4822838 0.5385787 0.5084753 +0.4894626 0.5385787 0.5084753 +0.4961862 0.5385787 0.5084753 +0.5025087 0.5385787 0.5084753 +0.5084753 0.5385787 0.5084753 +0.514124 0.5385787 0.5084753 +0.519487 0.5385787 0.5084753 +0.5245917 0.5385787 0.5084753 +0.529462 0.5385787 0.5084753 +0.5341183 0.5385787 0.5084753 +0.5385787 0.5385787 0.5084753 +0.5428591 0.5385787 0.5084753 +0.5469733 0.5385787 0.5084753 +0.5509339 0.5385787 0.5084753 +0.5547519 0.5385787 0.5084753 +0.5584371 0.5385787 0.5084753 +0.5619986 0.5385787 0.5084753 +0.5654443 0.5385787 0.5084753 +0.5687816 0.5385787 0.5084753 +0.092819 0.5428591 0.5084753 +0.2262531 0.5428591 0.5084753 +0.2875993 0.5428591 0.5084753 +0.3262122 0.5428591 0.5084753 +0.3544566 0.5428591 0.5084753 +0.3767383 0.5428591 0.5084753 +0.3951413 0.5428591 0.5084753 +0.4108177 0.5428591 0.5084753 +0.4244723 0.5428591 0.5084753 +0.4365675 0.5428591 0.5084753 +0.4474232 0.5428591 0.5084753 +0.45727 0.5428591 0.5084753 +0.4662797 0.5428591 0.5084753 +0.4745834 0.5428591 0.5084753 +0.4822838 0.5428591 0.5084753 +0.4894626 0.5428591 0.5084753 +0.4961862 0.5428591 0.5084753 +0.5025087 0.5428591 0.5084753 +0.5084753 0.5428591 0.5084753 +0.514124 0.5428591 0.5084753 +0.519487 0.5428591 0.5084753 +0.5245917 0.5428591 0.5084753 +0.529462 0.5428591 0.5084753 +0.5341183 0.5428591 0.5084753 +0.5385787 0.5428591 0.5084753 +0.5428591 0.5428591 0.5084753 +0.5469733 0.5428591 0.5084753 +0.5509339 0.5428591 0.5084753 +0.5547519 0.5428591 0.5084753 +0.5584371 0.5428591 0.5084753 +0.5619986 0.5428591 0.5084753 +0.5654443 0.5428591 0.5084753 +0.5687816 0.5428591 0.5084753 +0.092819 0.5469733 0.5084753 +0.2262531 0.5469733 0.5084753 +0.2875993 0.5469733 0.5084753 +0.3262122 0.5469733 0.5084753 +0.3544566 0.5469733 0.5084753 +0.3767383 0.5469733 0.5084753 +0.3951413 0.5469733 0.5084753 +0.4108177 0.5469733 0.5084753 +0.4244723 0.5469733 0.5084753 +0.4365675 0.5469733 0.5084753 +0.4474232 0.5469733 0.5084753 +0.45727 0.5469733 0.5084753 +0.4662797 0.5469733 0.5084753 +0.4745834 0.5469733 0.5084753 +0.4822838 0.5469733 0.5084753 +0.4894626 0.5469733 0.5084753 +0.4961862 0.5469733 0.5084753 +0.5025087 0.5469733 0.5084753 +0.5084753 0.5469733 0.5084753 +0.514124 0.5469733 0.5084753 +0.519487 0.5469733 0.5084753 +0.5245917 0.5469733 0.5084753 +0.529462 0.5469733 0.5084753 +0.5341183 0.5469733 0.5084753 +0.5385787 0.5469733 0.5084753 +0.5428591 0.5469733 0.5084753 +0.5469733 0.5469733 0.5084753 +0.5509339 0.5469733 0.5084753 +0.5547519 0.5469733 0.5084753 +0.5584371 0.5469733 0.5084753 +0.5619986 0.5469733 0.5084753 +0.5654443 0.5469733 0.5084753 +0.5687816 0.5469733 0.5084753 +0.092819 0.5509339 0.5084753 +0.2262531 0.5509339 0.5084753 +0.2875993 0.5509339 0.5084753 +0.3262122 0.5509339 0.5084753 +0.3544566 0.5509339 0.5084753 +0.3767383 0.5509339 0.5084753 +0.3951413 0.5509339 0.5084753 +0.4108177 0.5509339 0.5084753 +0.4244723 0.5509339 0.5084753 +0.4365675 0.5509339 0.5084753 +0.4474232 0.5509339 0.5084753 +0.45727 0.5509339 0.5084753 +0.4662797 0.5509339 0.5084753 +0.4745834 0.5509339 0.5084753 +0.4822838 0.5509339 0.5084753 +0.4894626 0.5509339 0.5084753 +0.4961862 0.5509339 0.5084753 +0.5025087 0.5509339 0.5084753 +0.5084753 0.5509339 0.5084753 +0.514124 0.5509339 0.5084753 +0.519487 0.5509339 0.5084753 +0.5245917 0.5509339 0.5084753 +0.529462 0.5509339 0.5084753 +0.5341183 0.5509339 0.5084753 +0.5385787 0.5509339 0.5084753 +0.5428591 0.5509339 0.5084753 +0.5469733 0.5509339 0.5084753 +0.5509339 0.5509339 0.5084753 +0.5547519 0.5509339 0.5084753 +0.5584371 0.5509339 0.5084753 +0.5619986 0.5509339 0.5084753 +0.5654443 0.5509339 0.5084753 +0.5687816 0.5509339 0.5084753 +0.092819 0.5547519 0.5084753 +0.2262531 0.5547519 0.5084753 +0.2875993 0.5547519 0.5084753 +0.3262122 0.5547519 0.5084753 +0.3544566 0.5547519 0.5084753 +0.3767383 0.5547519 0.5084753 +0.3951413 0.5547519 0.5084753 +0.4108177 0.5547519 0.5084753 +0.4244723 0.5547519 0.5084753 +0.4365675 0.5547519 0.5084753 +0.4474232 0.5547519 0.5084753 +0.45727 0.5547519 0.5084753 +0.4662797 0.5547519 0.5084753 +0.4745834 0.5547519 0.5084753 +0.4822838 0.5547519 0.5084753 +0.4894626 0.5547519 0.5084753 +0.4961862 0.5547519 0.5084753 +0.5025087 0.5547519 0.5084753 +0.5084753 0.5547519 0.5084753 +0.514124 0.5547519 0.5084753 +0.519487 0.5547519 0.5084753 +0.5245917 0.5547519 0.5084753 +0.529462 0.5547519 0.5084753 +0.5341183 0.5547519 0.5084753 +0.5385787 0.5547519 0.5084753 +0.5428591 0.5547519 0.5084753 +0.5469733 0.5547519 0.5084753 +0.5509339 0.5547519 0.5084753 +0.5547519 0.5547519 0.5084753 +0.5584371 0.5547519 0.5084753 +0.5619986 0.5547519 0.5084753 +0.5654443 0.5547519 0.5084753 +0.5687816 0.5547519 0.5084753 +0.092819 0.5584371 0.5084753 +0.2262531 0.5584371 0.5084753 +0.2875993 0.5584371 0.5084753 +0.3262122 0.5584371 0.5084753 +0.3544566 0.5584371 0.5084753 +0.3767383 0.5584371 0.5084753 +0.3951413 0.5584371 0.5084753 +0.4108177 0.5584371 0.5084753 +0.4244723 0.5584371 0.5084753 +0.4365675 0.5584371 0.5084753 +0.4474232 0.5584371 0.5084753 +0.45727 0.5584371 0.5084753 +0.4662797 0.5584371 0.5084753 +0.4745834 0.5584371 0.5084753 +0.4822838 0.5584371 0.5084753 +0.4894626 0.5584371 0.5084753 +0.4961862 0.5584371 0.5084753 +0.5025087 0.5584371 0.5084753 +0.5084753 0.5584371 0.5084753 +0.514124 0.5584371 0.5084753 +0.519487 0.5584371 0.5084753 +0.5245917 0.5584371 0.5084753 +0.529462 0.5584371 0.5084753 +0.5341183 0.5584371 0.5084753 +0.5385787 0.5584371 0.5084753 +0.5428591 0.5584371 0.5084753 +0.5469733 0.5584371 0.5084753 +0.5509339 0.5584371 0.5084753 +0.5547519 0.5584371 0.5084753 +0.5584371 0.5584371 0.5084753 +0.5619986 0.5584371 0.5084753 +0.5654443 0.5584371 0.5084753 +0.5687816 0.5584371 0.5084753 +0.092819 0.5619986 0.5084753 +0.2262531 0.5619986 0.5084753 +0.2875993 0.5619986 0.5084753 +0.3262122 0.5619986 0.5084753 +0.3544566 0.5619986 0.5084753 +0.3767383 0.5619986 0.5084753 +0.3951413 0.5619986 0.5084753 +0.4108177 0.5619986 0.5084753 +0.4244723 0.5619986 0.5084753 +0.4365675 0.5619986 0.5084753 +0.4474232 0.5619986 0.5084753 +0.45727 0.5619986 0.5084753 +0.4662797 0.5619986 0.5084753 +0.4745834 0.5619986 0.5084753 +0.4822838 0.5619986 0.5084753 +0.4894626 0.5619986 0.5084753 +0.4961862 0.5619986 0.5084753 +0.5025087 0.5619986 0.5084753 +0.5084753 0.5619986 0.5084753 +0.514124 0.5619986 0.5084753 +0.519487 0.5619986 0.5084753 +0.5245917 0.5619986 0.5084753 +0.529462 0.5619986 0.5084753 +0.5341183 0.5619986 0.5084753 +0.5385787 0.5619986 0.5084753 +0.5428591 0.5619986 0.5084753 +0.5469733 0.5619986 0.5084753 +0.5509339 0.5619986 0.5084753 +0.5547519 0.5619986 0.5084753 +0.5584371 0.5619986 0.5084753 +0.5619986 0.5619986 0.5084753 +0.5654443 0.5619986 0.5084753 +0.5687816 0.5619986 0.5084753 +0.092819 0.5654443 0.5084753 +0.2262531 0.5654443 0.5084753 +0.2875993 0.5654443 0.5084753 +0.3262122 0.5654443 0.5084753 +0.3544566 0.5654443 0.5084753 +0.3767383 0.5654443 0.5084753 +0.3951413 0.5654443 0.5084753 +0.4108177 0.5654443 0.5084753 +0.4244723 0.5654443 0.5084753 +0.4365675 0.5654443 0.5084753 +0.4474232 0.5654443 0.5084753 +0.45727 0.5654443 0.5084753 +0.4662797 0.5654443 0.5084753 +0.4745834 0.5654443 0.5084753 +0.4822838 0.5654443 0.5084753 +0.4894626 0.5654443 0.5084753 +0.4961862 0.5654443 0.5084753 +0.5025087 0.5654443 0.5084753 +0.5084753 0.5654443 0.5084753 +0.514124 0.5654443 0.5084753 +0.519487 0.5654443 0.5084753 +0.5245917 0.5654443 0.5084753 +0.529462 0.5654443 0.5084753 +0.5341183 0.5654443 0.5084753 +0.5385787 0.5654443 0.5084753 +0.5428591 0.5654443 0.5084753 +0.5469733 0.5654443 0.5084753 +0.5509339 0.5654443 0.5084753 +0.5547519 0.5654443 0.5084753 +0.5584371 0.5654443 0.5084753 +0.5619986 0.5654443 0.5084753 +0.5654443 0.5654443 0.5084753 +0.5687816 0.5654443 0.5084753 +0.092819 0.5687816 0.5084753 +0.2262531 0.5687816 0.5084753 +0.2875993 0.5687816 0.5084753 +0.3262122 0.5687816 0.5084753 +0.3544566 0.5687816 0.5084753 +0.3767383 0.5687816 0.5084753 +0.3951413 0.5687816 0.5084753 +0.4108177 0.5687816 0.5084753 +0.4244723 0.5687816 0.5084753 +0.4365675 0.5687816 0.5084753 +0.4474232 0.5687816 0.5084753 +0.45727 0.5687816 0.5084753 +0.4662797 0.5687816 0.5084753 +0.4745834 0.5687816 0.5084753 +0.4822838 0.5687816 0.5084753 +0.4894626 0.5687816 0.5084753 +0.4961862 0.5687816 0.5084753 +0.5025087 0.5687816 0.5084753 +0.5084753 0.5687816 0.5084753 +0.514124 0.5687816 0.5084753 +0.519487 0.5687816 0.5084753 +0.5245917 0.5687816 0.5084753 +0.529462 0.5687816 0.5084753 +0.5341183 0.5687816 0.5084753 +0.5385787 0.5687816 0.5084753 +0.5428591 0.5687816 0.5084753 +0.5469733 0.5687816 0.5084753 +0.5509339 0.5687816 0.5084753 +0.5547519 0.5687816 0.5084753 +0.5584371 0.5687816 0.5084753 +0.5619986 0.5687816 0.5084753 +0.5654443 0.5687816 0.5084753 +0.5687816 0.5687816 0.5084753 +0.092819 0.092819 0.514124 +0.2262531 0.092819 0.514124 +0.2875993 0.092819 0.514124 +0.3262122 0.092819 0.514124 +0.3544566 0.092819 0.514124 +0.3767383 0.092819 0.514124 +0.3951413 0.092819 0.514124 +0.4108177 0.092819 0.514124 +0.4244723 0.092819 0.514124 +0.4365675 0.092819 0.514124 +0.4474232 0.092819 0.514124 +0.45727 0.092819 0.514124 +0.4662797 0.092819 0.514124 +0.4745834 0.092819 0.514124 +0.4822838 0.092819 0.514124 +0.4894626 0.092819 0.514124 +0.4961862 0.092819 0.514124 +0.5025087 0.092819 0.514124 +0.5084753 0.092819 0.514124 +0.514124 0.092819 0.514124 +0.519487 0.092819 0.514124 +0.5245917 0.092819 0.514124 +0.529462 0.092819 0.514124 +0.5341183 0.092819 0.514124 +0.5385787 0.092819 0.514124 +0.5428591 0.092819 0.514124 +0.5469733 0.092819 0.514124 +0.5509339 0.092819 0.514124 +0.5547519 0.092819 0.514124 +0.5584371 0.092819 0.514124 +0.5619986 0.092819 0.514124 +0.5654443 0.092819 0.514124 +0.5687816 0.092819 0.514124 +0.092819 0.2262531 0.514124 +0.2262531 0.2262531 0.514124 +0.2875993 0.2262531 0.514124 +0.3262122 0.2262531 0.514124 +0.3544566 0.2262531 0.514124 +0.3767383 0.2262531 0.514124 +0.3951413 0.2262531 0.514124 +0.4108177 0.2262531 0.514124 +0.4244723 0.2262531 0.514124 +0.4365675 0.2262531 0.514124 +0.4474232 0.2262531 0.514124 +0.45727 0.2262531 0.514124 +0.4662797 0.2262531 0.514124 +0.4745834 0.2262531 0.514124 +0.4822838 0.2262531 0.514124 +0.4894626 0.2262531 0.514124 +0.4961862 0.2262531 0.514124 +0.5025087 0.2262531 0.514124 +0.5084753 0.2262531 0.514124 +0.514124 0.2262531 0.514124 +0.519487 0.2262531 0.514124 +0.5245917 0.2262531 0.514124 +0.529462 0.2262531 0.514124 +0.5341183 0.2262531 0.514124 +0.5385787 0.2262531 0.514124 +0.5428591 0.2262531 0.514124 +0.5469733 0.2262531 0.514124 +0.5509339 0.2262531 0.514124 +0.5547519 0.2262531 0.514124 +0.5584371 0.2262531 0.514124 +0.5619986 0.2262531 0.514124 +0.5654443 0.2262531 0.514124 +0.5687816 0.2262531 0.514124 +0.092819 0.2875993 0.514124 +0.2262531 0.2875993 0.514124 +0.2875993 0.2875993 0.514124 +0.3262122 0.2875993 0.514124 +0.3544566 0.2875993 0.514124 +0.3767383 0.2875993 0.514124 +0.3951413 0.2875993 0.514124 +0.4108177 0.2875993 0.514124 +0.4244723 0.2875993 0.514124 +0.4365675 0.2875993 0.514124 +0.4474232 0.2875993 0.514124 +0.45727 0.2875993 0.514124 +0.4662797 0.2875993 0.514124 +0.4745834 0.2875993 0.514124 +0.4822838 0.2875993 0.514124 +0.4894626 0.2875993 0.514124 +0.4961862 0.2875993 0.514124 +0.5025087 0.2875993 0.514124 +0.5084753 0.2875993 0.514124 +0.514124 0.2875993 0.514124 +0.519487 0.2875993 0.514124 +0.5245917 0.2875993 0.514124 +0.529462 0.2875993 0.514124 +0.5341183 0.2875993 0.514124 +0.5385787 0.2875993 0.514124 +0.5428591 0.2875993 0.514124 +0.5469733 0.2875993 0.514124 +0.5509339 0.2875993 0.514124 +0.5547519 0.2875993 0.514124 +0.5584371 0.2875993 0.514124 +0.5619986 0.2875993 0.514124 +0.5654443 0.2875993 0.514124 +0.5687816 0.2875993 0.514124 +0.092819 0.3262122 0.514124 +0.2262531 0.3262122 0.514124 +0.2875993 0.3262122 0.514124 +0.3262122 0.3262122 0.514124 +0.3544566 0.3262122 0.514124 +0.3767383 0.3262122 0.514124 +0.3951413 0.3262122 0.514124 +0.4108177 0.3262122 0.514124 +0.4244723 0.3262122 0.514124 +0.4365675 0.3262122 0.514124 +0.4474232 0.3262122 0.514124 +0.45727 0.3262122 0.514124 +0.4662797 0.3262122 0.514124 +0.4745834 0.3262122 0.514124 +0.4822838 0.3262122 0.514124 +0.4894626 0.3262122 0.514124 +0.4961862 0.3262122 0.514124 +0.5025087 0.3262122 0.514124 +0.5084753 0.3262122 0.514124 +0.514124 0.3262122 0.514124 +0.519487 0.3262122 0.514124 +0.5245917 0.3262122 0.514124 +0.529462 0.3262122 0.514124 +0.5341183 0.3262122 0.514124 +0.5385787 0.3262122 0.514124 +0.5428591 0.3262122 0.514124 +0.5469733 0.3262122 0.514124 +0.5509339 0.3262122 0.514124 +0.5547519 0.3262122 0.514124 +0.5584371 0.3262122 0.514124 +0.5619986 0.3262122 0.514124 +0.5654443 0.3262122 0.514124 +0.5687816 0.3262122 0.514124 +0.092819 0.3544566 0.514124 +0.2262531 0.3544566 0.514124 +0.2875993 0.3544566 0.514124 +0.3262122 0.3544566 0.514124 +0.3544566 0.3544566 0.514124 +0.3767383 0.3544566 0.514124 +0.3951413 0.3544566 0.514124 +0.4108177 0.3544566 0.514124 +0.4244723 0.3544566 0.514124 +0.4365675 0.3544566 0.514124 +0.4474232 0.3544566 0.514124 +0.45727 0.3544566 0.514124 +0.4662797 0.3544566 0.514124 +0.4745834 0.3544566 0.514124 +0.4822838 0.3544566 0.514124 +0.4894626 0.3544566 0.514124 +0.4961862 0.3544566 0.514124 +0.5025087 0.3544566 0.514124 +0.5084753 0.3544566 0.514124 +0.514124 0.3544566 0.514124 +0.519487 0.3544566 0.514124 +0.5245917 0.3544566 0.514124 +0.529462 0.3544566 0.514124 +0.5341183 0.3544566 0.514124 +0.5385787 0.3544566 0.514124 +0.5428591 0.3544566 0.514124 +0.5469733 0.3544566 0.514124 +0.5509339 0.3544566 0.514124 +0.5547519 0.3544566 0.514124 +0.5584371 0.3544566 0.514124 +0.5619986 0.3544566 0.514124 +0.5654443 0.3544566 0.514124 +0.5687816 0.3544566 0.514124 +0.092819 0.3767383 0.514124 +0.2262531 0.3767383 0.514124 +0.2875993 0.3767383 0.514124 +0.3262122 0.3767383 0.514124 +0.3544566 0.3767383 0.514124 +0.3767383 0.3767383 0.514124 +0.3951413 0.3767383 0.514124 +0.4108177 0.3767383 0.514124 +0.4244723 0.3767383 0.514124 +0.4365675 0.3767383 0.514124 +0.4474232 0.3767383 0.514124 +0.45727 0.3767383 0.514124 +0.4662797 0.3767383 0.514124 +0.4745834 0.3767383 0.514124 +0.4822838 0.3767383 0.514124 +0.4894626 0.3767383 0.514124 +0.4961862 0.3767383 0.514124 +0.5025087 0.3767383 0.514124 +0.5084753 0.3767383 0.514124 +0.514124 0.3767383 0.514124 +0.519487 0.3767383 0.514124 +0.5245917 0.3767383 0.514124 +0.529462 0.3767383 0.514124 +0.5341183 0.3767383 0.514124 +0.5385787 0.3767383 0.514124 +0.5428591 0.3767383 0.514124 +0.5469733 0.3767383 0.514124 +0.5509339 0.3767383 0.514124 +0.5547519 0.3767383 0.514124 +0.5584371 0.3767383 0.514124 +0.5619986 0.3767383 0.514124 +0.5654443 0.3767383 0.514124 +0.5687816 0.3767383 0.514124 +0.092819 0.3951413 0.514124 +0.2262531 0.3951413 0.514124 +0.2875993 0.3951413 0.514124 +0.3262122 0.3951413 0.514124 +0.3544566 0.3951413 0.514124 +0.3767383 0.3951413 0.514124 +0.3951413 0.3951413 0.514124 +0.4108177 0.3951413 0.514124 +0.4244723 0.3951413 0.514124 +0.4365675 0.3951413 0.514124 +0.4474232 0.3951413 0.514124 +0.45727 0.3951413 0.514124 +0.4662797 0.3951413 0.514124 +0.4745834 0.3951413 0.514124 +0.4822838 0.3951413 0.514124 +0.4894626 0.3951413 0.514124 +0.4961862 0.3951413 0.514124 +0.5025087 0.3951413 0.514124 +0.5084753 0.3951413 0.514124 +0.514124 0.3951413 0.514124 +0.519487 0.3951413 0.514124 +0.5245917 0.3951413 0.514124 +0.529462 0.3951413 0.514124 +0.5341183 0.3951413 0.514124 +0.5385787 0.3951413 0.514124 +0.5428591 0.3951413 0.514124 +0.5469733 0.3951413 0.514124 +0.5509339 0.3951413 0.514124 +0.5547519 0.3951413 0.514124 +0.5584371 0.3951413 0.514124 +0.5619986 0.3951413 0.514124 +0.5654443 0.3951413 0.514124 +0.5687816 0.3951413 0.514124 +0.092819 0.4108177 0.514124 +0.2262531 0.4108177 0.514124 +0.2875993 0.4108177 0.514124 +0.3262122 0.4108177 0.514124 +0.3544566 0.4108177 0.514124 +0.3767383 0.4108177 0.514124 +0.3951413 0.4108177 0.514124 +0.4108177 0.4108177 0.514124 +0.4244723 0.4108177 0.514124 +0.4365675 0.4108177 0.514124 +0.4474232 0.4108177 0.514124 +0.45727 0.4108177 0.514124 +0.4662797 0.4108177 0.514124 +0.4745834 0.4108177 0.514124 +0.4822838 0.4108177 0.514124 +0.4894626 0.4108177 0.514124 +0.4961862 0.4108177 0.514124 +0.5025087 0.4108177 0.514124 +0.5084753 0.4108177 0.514124 +0.514124 0.4108177 0.514124 +0.519487 0.4108177 0.514124 +0.5245917 0.4108177 0.514124 +0.529462 0.4108177 0.514124 +0.5341183 0.4108177 0.514124 +0.5385787 0.4108177 0.514124 +0.5428591 0.4108177 0.514124 +0.5469733 0.4108177 0.514124 +0.5509339 0.4108177 0.514124 +0.5547519 0.4108177 0.514124 +0.5584371 0.4108177 0.514124 +0.5619986 0.4108177 0.514124 +0.5654443 0.4108177 0.514124 +0.5687816 0.4108177 0.514124 +0.092819 0.4244723 0.514124 +0.2262531 0.4244723 0.514124 +0.2875993 0.4244723 0.514124 +0.3262122 0.4244723 0.514124 +0.3544566 0.4244723 0.514124 +0.3767383 0.4244723 0.514124 +0.3951413 0.4244723 0.514124 +0.4108177 0.4244723 0.514124 +0.4244723 0.4244723 0.514124 +0.4365675 0.4244723 0.514124 +0.4474232 0.4244723 0.514124 +0.45727 0.4244723 0.514124 +0.4662797 0.4244723 0.514124 +0.4745834 0.4244723 0.514124 +0.4822838 0.4244723 0.514124 +0.4894626 0.4244723 0.514124 +0.4961862 0.4244723 0.514124 +0.5025087 0.4244723 0.514124 +0.5084753 0.4244723 0.514124 +0.514124 0.4244723 0.514124 +0.519487 0.4244723 0.514124 +0.5245917 0.4244723 0.514124 +0.529462 0.4244723 0.514124 +0.5341183 0.4244723 0.514124 +0.5385787 0.4244723 0.514124 +0.5428591 0.4244723 0.514124 +0.5469733 0.4244723 0.514124 +0.5509339 0.4244723 0.514124 +0.5547519 0.4244723 0.514124 +0.5584371 0.4244723 0.514124 +0.5619986 0.4244723 0.514124 +0.5654443 0.4244723 0.514124 +0.5687816 0.4244723 0.514124 +0.092819 0.4365675 0.514124 +0.2262531 0.4365675 0.514124 +0.2875993 0.4365675 0.514124 +0.3262122 0.4365675 0.514124 +0.3544566 0.4365675 0.514124 +0.3767383 0.4365675 0.514124 +0.3951413 0.4365675 0.514124 +0.4108177 0.4365675 0.514124 +0.4244723 0.4365675 0.514124 +0.4365675 0.4365675 0.514124 +0.4474232 0.4365675 0.514124 +0.45727 0.4365675 0.514124 +0.4662797 0.4365675 0.514124 +0.4745834 0.4365675 0.514124 +0.4822838 0.4365675 0.514124 +0.4894626 0.4365675 0.514124 +0.4961862 0.4365675 0.514124 +0.5025087 0.4365675 0.514124 +0.5084753 0.4365675 0.514124 +0.514124 0.4365675 0.514124 +0.519487 0.4365675 0.514124 +0.5245917 0.4365675 0.514124 +0.529462 0.4365675 0.514124 +0.5341183 0.4365675 0.514124 +0.5385787 0.4365675 0.514124 +0.5428591 0.4365675 0.514124 +0.5469733 0.4365675 0.514124 +0.5509339 0.4365675 0.514124 +0.5547519 0.4365675 0.514124 +0.5584371 0.4365675 0.514124 +0.5619986 0.4365675 0.514124 +0.5654443 0.4365675 0.514124 +0.5687816 0.4365675 0.514124 +0.092819 0.4474232 0.514124 +0.2262531 0.4474232 0.514124 +0.2875993 0.4474232 0.514124 +0.3262122 0.4474232 0.514124 +0.3544566 0.4474232 0.514124 +0.3767383 0.4474232 0.514124 +0.3951413 0.4474232 0.514124 +0.4108177 0.4474232 0.514124 +0.4244723 0.4474232 0.514124 +0.4365675 0.4474232 0.514124 +0.4474232 0.4474232 0.514124 +0.45727 0.4474232 0.514124 +0.4662797 0.4474232 0.514124 +0.4745834 0.4474232 0.514124 +0.4822838 0.4474232 0.514124 +0.4894626 0.4474232 0.514124 +0.4961862 0.4474232 0.514124 +0.5025087 0.4474232 0.514124 +0.5084753 0.4474232 0.514124 +0.514124 0.4474232 0.514124 +0.519487 0.4474232 0.514124 +0.5245917 0.4474232 0.514124 +0.529462 0.4474232 0.514124 +0.5341183 0.4474232 0.514124 +0.5385787 0.4474232 0.514124 +0.5428591 0.4474232 0.514124 +0.5469733 0.4474232 0.514124 +0.5509339 0.4474232 0.514124 +0.5547519 0.4474232 0.514124 +0.5584371 0.4474232 0.514124 +0.5619986 0.4474232 0.514124 +0.5654443 0.4474232 0.514124 +0.5687816 0.4474232 0.514124 +0.092819 0.45727 0.514124 +0.2262531 0.45727 0.514124 +0.2875993 0.45727 0.514124 +0.3262122 0.45727 0.514124 +0.3544566 0.45727 0.514124 +0.3767383 0.45727 0.514124 +0.3951413 0.45727 0.514124 +0.4108177 0.45727 0.514124 +0.4244723 0.45727 0.514124 +0.4365675 0.45727 0.514124 +0.4474232 0.45727 0.514124 +0.45727 0.45727 0.514124 +0.4662797 0.45727 0.514124 +0.4745834 0.45727 0.514124 +0.4822838 0.45727 0.514124 +0.4894626 0.45727 0.514124 +0.4961862 0.45727 0.514124 +0.5025087 0.45727 0.514124 +0.5084753 0.45727 0.514124 +0.514124 0.45727 0.514124 +0.519487 0.45727 0.514124 +0.5245917 0.45727 0.514124 +0.529462 0.45727 0.514124 +0.5341183 0.45727 0.514124 +0.5385787 0.45727 0.514124 +0.5428591 0.45727 0.514124 +0.5469733 0.45727 0.514124 +0.5509339 0.45727 0.514124 +0.5547519 0.45727 0.514124 +0.5584371 0.45727 0.514124 +0.5619986 0.45727 0.514124 +0.5654443 0.45727 0.514124 +0.5687816 0.45727 0.514124 +0.092819 0.4662797 0.514124 +0.2262531 0.4662797 0.514124 +0.2875993 0.4662797 0.514124 +0.3262122 0.4662797 0.514124 +0.3544566 0.4662797 0.514124 +0.3767383 0.4662797 0.514124 +0.3951413 0.4662797 0.514124 +0.4108177 0.4662797 0.514124 +0.4244723 0.4662797 0.514124 +0.4365675 0.4662797 0.514124 +0.4474232 0.4662797 0.514124 +0.45727 0.4662797 0.514124 +0.4662797 0.4662797 0.514124 +0.4745834 0.4662797 0.514124 +0.4822838 0.4662797 0.514124 +0.4894626 0.4662797 0.514124 +0.4961862 0.4662797 0.514124 +0.5025087 0.4662797 0.514124 +0.5084753 0.4662797 0.514124 +0.514124 0.4662797 0.514124 +0.519487 0.4662797 0.514124 +0.5245917 0.4662797 0.514124 +0.529462 0.4662797 0.514124 +0.5341183 0.4662797 0.514124 +0.5385787 0.4662797 0.514124 +0.5428591 0.4662797 0.514124 +0.5469733 0.4662797 0.514124 +0.5509339 0.4662797 0.514124 +0.5547519 0.4662797 0.514124 +0.5584371 0.4662797 0.514124 +0.5619986 0.4662797 0.514124 +0.5654443 0.4662797 0.514124 +0.5687816 0.4662797 0.514124 +0.092819 0.4745834 0.514124 +0.2262531 0.4745834 0.514124 +0.2875993 0.4745834 0.514124 +0.3262122 0.4745834 0.514124 +0.3544566 0.4745834 0.514124 +0.3767383 0.4745834 0.514124 +0.3951413 0.4745834 0.514124 +0.4108177 0.4745834 0.514124 +0.4244723 0.4745834 0.514124 +0.4365675 0.4745834 0.514124 +0.4474232 0.4745834 0.514124 +0.45727 0.4745834 0.514124 +0.4662797 0.4745834 0.514124 +0.4745834 0.4745834 0.514124 +0.4822838 0.4745834 0.514124 +0.4894626 0.4745834 0.514124 +0.4961862 0.4745834 0.514124 +0.5025087 0.4745834 0.514124 +0.5084753 0.4745834 0.514124 +0.514124 0.4745834 0.514124 +0.519487 0.4745834 0.514124 +0.5245917 0.4745834 0.514124 +0.529462 0.4745834 0.514124 +0.5341183 0.4745834 0.514124 +0.5385787 0.4745834 0.514124 +0.5428591 0.4745834 0.514124 +0.5469733 0.4745834 0.514124 +0.5509339 0.4745834 0.514124 +0.5547519 0.4745834 0.514124 +0.5584371 0.4745834 0.514124 +0.5619986 0.4745834 0.514124 +0.5654443 0.4745834 0.514124 +0.5687816 0.4745834 0.514124 +0.092819 0.4822838 0.514124 +0.2262531 0.4822838 0.514124 +0.2875993 0.4822838 0.514124 +0.3262122 0.4822838 0.514124 +0.3544566 0.4822838 0.514124 +0.3767383 0.4822838 0.514124 +0.3951413 0.4822838 0.514124 +0.4108177 0.4822838 0.514124 +0.4244723 0.4822838 0.514124 +0.4365675 0.4822838 0.514124 +0.4474232 0.4822838 0.514124 +0.45727 0.4822838 0.514124 +0.4662797 0.4822838 0.514124 +0.4745834 0.4822838 0.514124 +0.4822838 0.4822838 0.514124 +0.4894626 0.4822838 0.514124 +0.4961862 0.4822838 0.514124 +0.5025087 0.4822838 0.514124 +0.5084753 0.4822838 0.514124 +0.514124 0.4822838 0.514124 +0.519487 0.4822838 0.514124 +0.5245917 0.4822838 0.514124 +0.529462 0.4822838 0.514124 +0.5341183 0.4822838 0.514124 +0.5385787 0.4822838 0.514124 +0.5428591 0.4822838 0.514124 +0.5469733 0.4822838 0.514124 +0.5509339 0.4822838 0.514124 +0.5547519 0.4822838 0.514124 +0.5584371 0.4822838 0.514124 +0.5619986 0.4822838 0.514124 +0.5654443 0.4822838 0.514124 +0.5687816 0.4822838 0.514124 +0.092819 0.4894626 0.514124 +0.2262531 0.4894626 0.514124 +0.2875993 0.4894626 0.514124 +0.3262122 0.4894626 0.514124 +0.3544566 0.4894626 0.514124 +0.3767383 0.4894626 0.514124 +0.3951413 0.4894626 0.514124 +0.4108177 0.4894626 0.514124 +0.4244723 0.4894626 0.514124 +0.4365675 0.4894626 0.514124 +0.4474232 0.4894626 0.514124 +0.45727 0.4894626 0.514124 +0.4662797 0.4894626 0.514124 +0.4745834 0.4894626 0.514124 +0.4822838 0.4894626 0.514124 +0.4894626 0.4894626 0.514124 +0.4961862 0.4894626 0.514124 +0.5025087 0.4894626 0.514124 +0.5084753 0.4894626 0.514124 +0.514124 0.4894626 0.514124 +0.519487 0.4894626 0.514124 +0.5245917 0.4894626 0.514124 +0.529462 0.4894626 0.514124 +0.5341183 0.4894626 0.514124 +0.5385787 0.4894626 0.514124 +0.5428591 0.4894626 0.514124 +0.5469733 0.4894626 0.514124 +0.5509339 0.4894626 0.514124 +0.5547519 0.4894626 0.514124 +0.5584371 0.4894626 0.514124 +0.5619986 0.4894626 0.514124 +0.5654443 0.4894626 0.514124 +0.5687816 0.4894626 0.514124 +0.092819 0.4961862 0.514124 +0.2262531 0.4961862 0.514124 +0.2875993 0.4961862 0.514124 +0.3262122 0.4961862 0.514124 +0.3544566 0.4961862 0.514124 +0.3767383 0.4961862 0.514124 +0.3951413 0.4961862 0.514124 +0.4108177 0.4961862 0.514124 +0.4244723 0.4961862 0.514124 +0.4365675 0.4961862 0.514124 +0.4474232 0.4961862 0.514124 +0.45727 0.4961862 0.514124 +0.4662797 0.4961862 0.514124 +0.4745834 0.4961862 0.514124 +0.4822838 0.4961862 0.514124 +0.4894626 0.4961862 0.514124 +0.4961862 0.4961862 0.514124 +0.5025087 0.4961862 0.514124 +0.5084753 0.4961862 0.514124 +0.514124 0.4961862 0.514124 +0.519487 0.4961862 0.514124 +0.5245917 0.4961862 0.514124 +0.529462 0.4961862 0.514124 +0.5341183 0.4961862 0.514124 +0.5385787 0.4961862 0.514124 +0.5428591 0.4961862 0.514124 +0.5469733 0.4961862 0.514124 +0.5509339 0.4961862 0.514124 +0.5547519 0.4961862 0.514124 +0.5584371 0.4961862 0.514124 +0.5619986 0.4961862 0.514124 +0.5654443 0.4961862 0.514124 +0.5687816 0.4961862 0.514124 +0.092819 0.5025087 0.514124 +0.2262531 0.5025087 0.514124 +0.2875993 0.5025087 0.514124 +0.3262122 0.5025087 0.514124 +0.3544566 0.5025087 0.514124 +0.3767383 0.5025087 0.514124 +0.3951413 0.5025087 0.514124 +0.4108177 0.5025087 0.514124 +0.4244723 0.5025087 0.514124 +0.4365675 0.5025087 0.514124 +0.4474232 0.5025087 0.514124 +0.45727 0.5025087 0.514124 +0.4662797 0.5025087 0.514124 +0.4745834 0.5025087 0.514124 +0.4822838 0.5025087 0.514124 +0.4894626 0.5025087 0.514124 +0.4961862 0.5025087 0.514124 +0.5025087 0.5025087 0.514124 +0.5084753 0.5025087 0.514124 +0.514124 0.5025087 0.514124 +0.519487 0.5025087 0.514124 +0.5245917 0.5025087 0.514124 +0.529462 0.5025087 0.514124 +0.5341183 0.5025087 0.514124 +0.5385787 0.5025087 0.514124 +0.5428591 0.5025087 0.514124 +0.5469733 0.5025087 0.514124 +0.5509339 0.5025087 0.514124 +0.5547519 0.5025087 0.514124 +0.5584371 0.5025087 0.514124 +0.5619986 0.5025087 0.514124 +0.5654443 0.5025087 0.514124 +0.5687816 0.5025087 0.514124 +0.092819 0.5084753 0.514124 +0.2262531 0.5084753 0.514124 +0.2875993 0.5084753 0.514124 +0.3262122 0.5084753 0.514124 +0.3544566 0.5084753 0.514124 +0.3767383 0.5084753 0.514124 +0.3951413 0.5084753 0.514124 +0.4108177 0.5084753 0.514124 +0.4244723 0.5084753 0.514124 +0.4365675 0.5084753 0.514124 +0.4474232 0.5084753 0.514124 +0.45727 0.5084753 0.514124 +0.4662797 0.5084753 0.514124 +0.4745834 0.5084753 0.514124 +0.4822838 0.5084753 0.514124 +0.4894626 0.5084753 0.514124 +0.4961862 0.5084753 0.514124 +0.5025087 0.5084753 0.514124 +0.5084753 0.5084753 0.514124 +0.514124 0.5084753 0.514124 +0.519487 0.5084753 0.514124 +0.5245917 0.5084753 0.514124 +0.529462 0.5084753 0.514124 +0.5341183 0.5084753 0.514124 +0.5385787 0.5084753 0.514124 +0.5428591 0.5084753 0.514124 +0.5469733 0.5084753 0.514124 +0.5509339 0.5084753 0.514124 +0.5547519 0.5084753 0.514124 +0.5584371 0.5084753 0.514124 +0.5619986 0.5084753 0.514124 +0.5654443 0.5084753 0.514124 +0.5687816 0.5084753 0.514124 +0.092819 0.514124 0.514124 +0.2262531 0.514124 0.514124 +0.2875993 0.514124 0.514124 +0.3262122 0.514124 0.514124 +0.3544566 0.514124 0.514124 +0.3767383 0.514124 0.514124 +0.3951413 0.514124 0.514124 +0.4108177 0.514124 0.514124 +0.4244723 0.514124 0.514124 +0.4365675 0.514124 0.514124 +0.4474232 0.514124 0.514124 +0.45727 0.514124 0.514124 +0.4662797 0.514124 0.514124 +0.4745834 0.514124 0.514124 +0.4822838 0.514124 0.514124 +0.4894626 0.514124 0.514124 +0.4961862 0.514124 0.514124 +0.5025087 0.514124 0.514124 +0.5084753 0.514124 0.514124 +0.514124 0.514124 0.514124 +0.519487 0.514124 0.514124 +0.5245917 0.514124 0.514124 +0.529462 0.514124 0.514124 +0.5341183 0.514124 0.514124 +0.5385787 0.514124 0.514124 +0.5428591 0.514124 0.514124 +0.5469733 0.514124 0.514124 +0.5509339 0.514124 0.514124 +0.5547519 0.514124 0.514124 +0.5584371 0.514124 0.514124 +0.5619986 0.514124 0.514124 +0.5654443 0.514124 0.514124 +0.5687816 0.514124 0.514124 +0.092819 0.519487 0.514124 +0.2262531 0.519487 0.514124 +0.2875993 0.519487 0.514124 +0.3262122 0.519487 0.514124 +0.3544566 0.519487 0.514124 +0.3767383 0.519487 0.514124 +0.3951413 0.519487 0.514124 +0.4108177 0.519487 0.514124 +0.4244723 0.519487 0.514124 +0.4365675 0.519487 0.514124 +0.4474232 0.519487 0.514124 +0.45727 0.519487 0.514124 +0.4662797 0.519487 0.514124 +0.4745834 0.519487 0.514124 +0.4822838 0.519487 0.514124 +0.4894626 0.519487 0.514124 +0.4961862 0.519487 0.514124 +0.5025087 0.519487 0.514124 +0.5084753 0.519487 0.514124 +0.514124 0.519487 0.514124 +0.519487 0.519487 0.514124 +0.5245917 0.519487 0.514124 +0.529462 0.519487 0.514124 +0.5341183 0.519487 0.514124 +0.5385787 0.519487 0.514124 +0.5428591 0.519487 0.514124 +0.5469733 0.519487 0.514124 +0.5509339 0.519487 0.514124 +0.5547519 0.519487 0.514124 +0.5584371 0.519487 0.514124 +0.5619986 0.519487 0.514124 +0.5654443 0.519487 0.514124 +0.5687816 0.519487 0.514124 +0.092819 0.5245917 0.514124 +0.2262531 0.5245917 0.514124 +0.2875993 0.5245917 0.514124 +0.3262122 0.5245917 0.514124 +0.3544566 0.5245917 0.514124 +0.3767383 0.5245917 0.514124 +0.3951413 0.5245917 0.514124 +0.4108177 0.5245917 0.514124 +0.4244723 0.5245917 0.514124 +0.4365675 0.5245917 0.514124 +0.4474232 0.5245917 0.514124 +0.45727 0.5245917 0.514124 +0.4662797 0.5245917 0.514124 +0.4745834 0.5245917 0.514124 +0.4822838 0.5245917 0.514124 +0.4894626 0.5245917 0.514124 +0.4961862 0.5245917 0.514124 +0.5025087 0.5245917 0.514124 +0.5084753 0.5245917 0.514124 +0.514124 0.5245917 0.514124 +0.519487 0.5245917 0.514124 +0.5245917 0.5245917 0.514124 +0.529462 0.5245917 0.514124 +0.5341183 0.5245917 0.514124 +0.5385787 0.5245917 0.514124 +0.5428591 0.5245917 0.514124 +0.5469733 0.5245917 0.514124 +0.5509339 0.5245917 0.514124 +0.5547519 0.5245917 0.514124 +0.5584371 0.5245917 0.514124 +0.5619986 0.5245917 0.514124 +0.5654443 0.5245917 0.514124 +0.5687816 0.5245917 0.514124 +0.092819 0.529462 0.514124 +0.2262531 0.529462 0.514124 +0.2875993 0.529462 0.514124 +0.3262122 0.529462 0.514124 +0.3544566 0.529462 0.514124 +0.3767383 0.529462 0.514124 +0.3951413 0.529462 0.514124 +0.4108177 0.529462 0.514124 +0.4244723 0.529462 0.514124 +0.4365675 0.529462 0.514124 +0.4474232 0.529462 0.514124 +0.45727 0.529462 0.514124 +0.4662797 0.529462 0.514124 +0.4745834 0.529462 0.514124 +0.4822838 0.529462 0.514124 +0.4894626 0.529462 0.514124 +0.4961862 0.529462 0.514124 +0.5025087 0.529462 0.514124 +0.5084753 0.529462 0.514124 +0.514124 0.529462 0.514124 +0.519487 0.529462 0.514124 +0.5245917 0.529462 0.514124 +0.529462 0.529462 0.514124 +0.5341183 0.529462 0.514124 +0.5385787 0.529462 0.514124 +0.5428591 0.529462 0.514124 +0.5469733 0.529462 0.514124 +0.5509339 0.529462 0.514124 +0.5547519 0.529462 0.514124 +0.5584371 0.529462 0.514124 +0.5619986 0.529462 0.514124 +0.5654443 0.529462 0.514124 +0.5687816 0.529462 0.514124 +0.092819 0.5341183 0.514124 +0.2262531 0.5341183 0.514124 +0.2875993 0.5341183 0.514124 +0.3262122 0.5341183 0.514124 +0.3544566 0.5341183 0.514124 +0.3767383 0.5341183 0.514124 +0.3951413 0.5341183 0.514124 +0.4108177 0.5341183 0.514124 +0.4244723 0.5341183 0.514124 +0.4365675 0.5341183 0.514124 +0.4474232 0.5341183 0.514124 +0.45727 0.5341183 0.514124 +0.4662797 0.5341183 0.514124 +0.4745834 0.5341183 0.514124 +0.4822838 0.5341183 0.514124 +0.4894626 0.5341183 0.514124 +0.4961862 0.5341183 0.514124 +0.5025087 0.5341183 0.514124 +0.5084753 0.5341183 0.514124 +0.514124 0.5341183 0.514124 +0.519487 0.5341183 0.514124 +0.5245917 0.5341183 0.514124 +0.529462 0.5341183 0.514124 +0.5341183 0.5341183 0.514124 +0.5385787 0.5341183 0.514124 +0.5428591 0.5341183 0.514124 +0.5469733 0.5341183 0.514124 +0.5509339 0.5341183 0.514124 +0.5547519 0.5341183 0.514124 +0.5584371 0.5341183 0.514124 +0.5619986 0.5341183 0.514124 +0.5654443 0.5341183 0.514124 +0.5687816 0.5341183 0.514124 +0.092819 0.5385787 0.514124 +0.2262531 0.5385787 0.514124 +0.2875993 0.5385787 0.514124 +0.3262122 0.5385787 0.514124 +0.3544566 0.5385787 0.514124 +0.3767383 0.5385787 0.514124 +0.3951413 0.5385787 0.514124 +0.4108177 0.5385787 0.514124 +0.4244723 0.5385787 0.514124 +0.4365675 0.5385787 0.514124 +0.4474232 0.5385787 0.514124 +0.45727 0.5385787 0.514124 +0.4662797 0.5385787 0.514124 +0.4745834 0.5385787 0.514124 +0.4822838 0.5385787 0.514124 +0.4894626 0.5385787 0.514124 +0.4961862 0.5385787 0.514124 +0.5025087 0.5385787 0.514124 +0.5084753 0.5385787 0.514124 +0.514124 0.5385787 0.514124 +0.519487 0.5385787 0.514124 +0.5245917 0.5385787 0.514124 +0.529462 0.5385787 0.514124 +0.5341183 0.5385787 0.514124 +0.5385787 0.5385787 0.514124 +0.5428591 0.5385787 0.514124 +0.5469733 0.5385787 0.514124 +0.5509339 0.5385787 0.514124 +0.5547519 0.5385787 0.514124 +0.5584371 0.5385787 0.514124 +0.5619986 0.5385787 0.514124 +0.5654443 0.5385787 0.514124 +0.5687816 0.5385787 0.514124 +0.092819 0.5428591 0.514124 +0.2262531 0.5428591 0.514124 +0.2875993 0.5428591 0.514124 +0.3262122 0.5428591 0.514124 +0.3544566 0.5428591 0.514124 +0.3767383 0.5428591 0.514124 +0.3951413 0.5428591 0.514124 +0.4108177 0.5428591 0.514124 +0.4244723 0.5428591 0.514124 +0.4365675 0.5428591 0.514124 +0.4474232 0.5428591 0.514124 +0.45727 0.5428591 0.514124 +0.4662797 0.5428591 0.514124 +0.4745834 0.5428591 0.514124 +0.4822838 0.5428591 0.514124 +0.4894626 0.5428591 0.514124 +0.4961862 0.5428591 0.514124 +0.5025087 0.5428591 0.514124 +0.5084753 0.5428591 0.514124 +0.514124 0.5428591 0.514124 +0.519487 0.5428591 0.514124 +0.5245917 0.5428591 0.514124 +0.529462 0.5428591 0.514124 +0.5341183 0.5428591 0.514124 +0.5385787 0.5428591 0.514124 +0.5428591 0.5428591 0.514124 +0.5469733 0.5428591 0.514124 +0.5509339 0.5428591 0.514124 +0.5547519 0.5428591 0.514124 +0.5584371 0.5428591 0.514124 +0.5619986 0.5428591 0.514124 +0.5654443 0.5428591 0.514124 +0.5687816 0.5428591 0.514124 +0.092819 0.5469733 0.514124 +0.2262531 0.5469733 0.514124 +0.2875993 0.5469733 0.514124 +0.3262122 0.5469733 0.514124 +0.3544566 0.5469733 0.514124 +0.3767383 0.5469733 0.514124 +0.3951413 0.5469733 0.514124 +0.4108177 0.5469733 0.514124 +0.4244723 0.5469733 0.514124 +0.4365675 0.5469733 0.514124 +0.4474232 0.5469733 0.514124 +0.45727 0.5469733 0.514124 +0.4662797 0.5469733 0.514124 +0.4745834 0.5469733 0.514124 +0.4822838 0.5469733 0.514124 +0.4894626 0.5469733 0.514124 +0.4961862 0.5469733 0.514124 +0.5025087 0.5469733 0.514124 +0.5084753 0.5469733 0.514124 +0.514124 0.5469733 0.514124 +0.519487 0.5469733 0.514124 +0.5245917 0.5469733 0.514124 +0.529462 0.5469733 0.514124 +0.5341183 0.5469733 0.514124 +0.5385787 0.5469733 0.514124 +0.5428591 0.5469733 0.514124 +0.5469733 0.5469733 0.514124 +0.5509339 0.5469733 0.514124 +0.5547519 0.5469733 0.514124 +0.5584371 0.5469733 0.514124 +0.5619986 0.5469733 0.514124 +0.5654443 0.5469733 0.514124 +0.5687816 0.5469733 0.514124 +0.092819 0.5509339 0.514124 +0.2262531 0.5509339 0.514124 +0.2875993 0.5509339 0.514124 +0.3262122 0.5509339 0.514124 +0.3544566 0.5509339 0.514124 +0.3767383 0.5509339 0.514124 +0.3951413 0.5509339 0.514124 +0.4108177 0.5509339 0.514124 +0.4244723 0.5509339 0.514124 +0.4365675 0.5509339 0.514124 +0.4474232 0.5509339 0.514124 +0.45727 0.5509339 0.514124 +0.4662797 0.5509339 0.514124 +0.4745834 0.5509339 0.514124 +0.4822838 0.5509339 0.514124 +0.4894626 0.5509339 0.514124 +0.4961862 0.5509339 0.514124 +0.5025087 0.5509339 0.514124 +0.5084753 0.5509339 0.514124 +0.514124 0.5509339 0.514124 +0.519487 0.5509339 0.514124 +0.5245917 0.5509339 0.514124 +0.529462 0.5509339 0.514124 +0.5341183 0.5509339 0.514124 +0.5385787 0.5509339 0.514124 +0.5428591 0.5509339 0.514124 +0.5469733 0.5509339 0.514124 +0.5509339 0.5509339 0.514124 +0.5547519 0.5509339 0.514124 +0.5584371 0.5509339 0.514124 +0.5619986 0.5509339 0.514124 +0.5654443 0.5509339 0.514124 +0.5687816 0.5509339 0.514124 +0.092819 0.5547519 0.514124 +0.2262531 0.5547519 0.514124 +0.2875993 0.5547519 0.514124 +0.3262122 0.5547519 0.514124 +0.3544566 0.5547519 0.514124 +0.3767383 0.5547519 0.514124 +0.3951413 0.5547519 0.514124 +0.4108177 0.5547519 0.514124 +0.4244723 0.5547519 0.514124 +0.4365675 0.5547519 0.514124 +0.4474232 0.5547519 0.514124 +0.45727 0.5547519 0.514124 +0.4662797 0.5547519 0.514124 +0.4745834 0.5547519 0.514124 +0.4822838 0.5547519 0.514124 +0.4894626 0.5547519 0.514124 +0.4961862 0.5547519 0.514124 +0.5025087 0.5547519 0.514124 +0.5084753 0.5547519 0.514124 +0.514124 0.5547519 0.514124 +0.519487 0.5547519 0.514124 +0.5245917 0.5547519 0.514124 +0.529462 0.5547519 0.514124 +0.5341183 0.5547519 0.514124 +0.5385787 0.5547519 0.514124 +0.5428591 0.5547519 0.514124 +0.5469733 0.5547519 0.514124 +0.5509339 0.5547519 0.514124 +0.5547519 0.5547519 0.514124 +0.5584371 0.5547519 0.514124 +0.5619986 0.5547519 0.514124 +0.5654443 0.5547519 0.514124 +0.5687816 0.5547519 0.514124 +0.092819 0.5584371 0.514124 +0.2262531 0.5584371 0.514124 +0.2875993 0.5584371 0.514124 +0.3262122 0.5584371 0.514124 +0.3544566 0.5584371 0.514124 +0.3767383 0.5584371 0.514124 +0.3951413 0.5584371 0.514124 +0.4108177 0.5584371 0.514124 +0.4244723 0.5584371 0.514124 +0.4365675 0.5584371 0.514124 +0.4474232 0.5584371 0.514124 +0.45727 0.5584371 0.514124 +0.4662797 0.5584371 0.514124 +0.4745834 0.5584371 0.514124 +0.4822838 0.5584371 0.514124 +0.4894626 0.5584371 0.514124 +0.4961862 0.5584371 0.514124 +0.5025087 0.5584371 0.514124 +0.5084753 0.5584371 0.514124 +0.514124 0.5584371 0.514124 +0.519487 0.5584371 0.514124 +0.5245917 0.5584371 0.514124 +0.529462 0.5584371 0.514124 +0.5341183 0.5584371 0.514124 +0.5385787 0.5584371 0.514124 +0.5428591 0.5584371 0.514124 +0.5469733 0.5584371 0.514124 +0.5509339 0.5584371 0.514124 +0.5547519 0.5584371 0.514124 +0.5584371 0.5584371 0.514124 +0.5619986 0.5584371 0.514124 +0.5654443 0.5584371 0.514124 +0.5687816 0.5584371 0.514124 +0.092819 0.5619986 0.514124 +0.2262531 0.5619986 0.514124 +0.2875993 0.5619986 0.514124 +0.3262122 0.5619986 0.514124 +0.3544566 0.5619986 0.514124 +0.3767383 0.5619986 0.514124 +0.3951413 0.5619986 0.514124 +0.4108177 0.5619986 0.514124 +0.4244723 0.5619986 0.514124 +0.4365675 0.5619986 0.514124 +0.4474232 0.5619986 0.514124 +0.45727 0.5619986 0.514124 +0.4662797 0.5619986 0.514124 +0.4745834 0.5619986 0.514124 +0.4822838 0.5619986 0.514124 +0.4894626 0.5619986 0.514124 +0.4961862 0.5619986 0.514124 +0.5025087 0.5619986 0.514124 +0.5084753 0.5619986 0.514124 +0.514124 0.5619986 0.514124 +0.519487 0.5619986 0.514124 +0.5245917 0.5619986 0.514124 +0.529462 0.5619986 0.514124 +0.5341183 0.5619986 0.514124 +0.5385787 0.5619986 0.514124 +0.5428591 0.5619986 0.514124 +0.5469733 0.5619986 0.514124 +0.5509339 0.5619986 0.514124 +0.5547519 0.5619986 0.514124 +0.5584371 0.5619986 0.514124 +0.5619986 0.5619986 0.514124 +0.5654443 0.5619986 0.514124 +0.5687816 0.5619986 0.514124 +0.092819 0.5654443 0.514124 +0.2262531 0.5654443 0.514124 +0.2875993 0.5654443 0.514124 +0.3262122 0.5654443 0.514124 +0.3544566 0.5654443 0.514124 +0.3767383 0.5654443 0.514124 +0.3951413 0.5654443 0.514124 +0.4108177 0.5654443 0.514124 +0.4244723 0.5654443 0.514124 +0.4365675 0.5654443 0.514124 +0.4474232 0.5654443 0.514124 +0.45727 0.5654443 0.514124 +0.4662797 0.5654443 0.514124 +0.4745834 0.5654443 0.514124 +0.4822838 0.5654443 0.514124 +0.4894626 0.5654443 0.514124 +0.4961862 0.5654443 0.514124 +0.5025087 0.5654443 0.514124 +0.5084753 0.5654443 0.514124 +0.514124 0.5654443 0.514124 +0.519487 0.5654443 0.514124 +0.5245917 0.5654443 0.514124 +0.529462 0.5654443 0.514124 +0.5341183 0.5654443 0.514124 +0.5385787 0.5654443 0.514124 +0.5428591 0.5654443 0.514124 +0.5469733 0.5654443 0.514124 +0.5509339 0.5654443 0.514124 +0.5547519 0.5654443 0.514124 +0.5584371 0.5654443 0.514124 +0.5619986 0.5654443 0.514124 +0.5654443 0.5654443 0.514124 +0.5687816 0.5654443 0.514124 +0.092819 0.5687816 0.514124 +0.2262531 0.5687816 0.514124 +0.2875993 0.5687816 0.514124 +0.3262122 0.5687816 0.514124 +0.3544566 0.5687816 0.514124 +0.3767383 0.5687816 0.514124 +0.3951413 0.5687816 0.514124 +0.4108177 0.5687816 0.514124 +0.4244723 0.5687816 0.514124 +0.4365675 0.5687816 0.514124 +0.4474232 0.5687816 0.514124 +0.45727 0.5687816 0.514124 +0.4662797 0.5687816 0.514124 +0.4745834 0.5687816 0.514124 +0.4822838 0.5687816 0.514124 +0.4894626 0.5687816 0.514124 +0.4961862 0.5687816 0.514124 +0.5025087 0.5687816 0.514124 +0.5084753 0.5687816 0.514124 +0.514124 0.5687816 0.514124 +0.519487 0.5687816 0.514124 +0.5245917 0.5687816 0.514124 +0.529462 0.5687816 0.514124 +0.5341183 0.5687816 0.514124 +0.5385787 0.5687816 0.514124 +0.5428591 0.5687816 0.514124 +0.5469733 0.5687816 0.514124 +0.5509339 0.5687816 0.514124 +0.5547519 0.5687816 0.514124 +0.5584371 0.5687816 0.514124 +0.5619986 0.5687816 0.514124 +0.5654443 0.5687816 0.514124 +0.5687816 0.5687816 0.514124 +0.092819 0.092819 0.519487 +0.2262531 0.092819 0.519487 +0.2875993 0.092819 0.519487 +0.3262122 0.092819 0.519487 +0.3544566 0.092819 0.519487 +0.3767383 0.092819 0.519487 +0.3951413 0.092819 0.519487 +0.4108177 0.092819 0.519487 +0.4244723 0.092819 0.519487 +0.4365675 0.092819 0.519487 +0.4474232 0.092819 0.519487 +0.45727 0.092819 0.519487 +0.4662797 0.092819 0.519487 +0.4745834 0.092819 0.519487 +0.4822838 0.092819 0.519487 +0.4894626 0.092819 0.519487 +0.4961862 0.092819 0.519487 +0.5025087 0.092819 0.519487 +0.5084753 0.092819 0.519487 +0.514124 0.092819 0.519487 +0.519487 0.092819 0.519487 +0.5245917 0.092819 0.519487 +0.529462 0.092819 0.519487 +0.5341183 0.092819 0.519487 +0.5385787 0.092819 0.519487 +0.5428591 0.092819 0.519487 +0.5469733 0.092819 0.519487 +0.5509339 0.092819 0.519487 +0.5547519 0.092819 0.519487 +0.5584371 0.092819 0.519487 +0.5619986 0.092819 0.519487 +0.5654443 0.092819 0.519487 +0.5687816 0.092819 0.519487 +0.092819 0.2262531 0.519487 +0.2262531 0.2262531 0.519487 +0.2875993 0.2262531 0.519487 +0.3262122 0.2262531 0.519487 +0.3544566 0.2262531 0.519487 +0.3767383 0.2262531 0.519487 +0.3951413 0.2262531 0.519487 +0.4108177 0.2262531 0.519487 +0.4244723 0.2262531 0.519487 +0.4365675 0.2262531 0.519487 +0.4474232 0.2262531 0.519487 +0.45727 0.2262531 0.519487 +0.4662797 0.2262531 0.519487 +0.4745834 0.2262531 0.519487 +0.4822838 0.2262531 0.519487 +0.4894626 0.2262531 0.519487 +0.4961862 0.2262531 0.519487 +0.5025087 0.2262531 0.519487 +0.5084753 0.2262531 0.519487 +0.514124 0.2262531 0.519487 +0.519487 0.2262531 0.519487 +0.5245917 0.2262531 0.519487 +0.529462 0.2262531 0.519487 +0.5341183 0.2262531 0.519487 +0.5385787 0.2262531 0.519487 +0.5428591 0.2262531 0.519487 +0.5469733 0.2262531 0.519487 +0.5509339 0.2262531 0.519487 +0.5547519 0.2262531 0.519487 +0.5584371 0.2262531 0.519487 +0.5619986 0.2262531 0.519487 +0.5654443 0.2262531 0.519487 +0.5687816 0.2262531 0.519487 +0.092819 0.2875993 0.519487 +0.2262531 0.2875993 0.519487 +0.2875993 0.2875993 0.519487 +0.3262122 0.2875993 0.519487 +0.3544566 0.2875993 0.519487 +0.3767383 0.2875993 0.519487 +0.3951413 0.2875993 0.519487 +0.4108177 0.2875993 0.519487 +0.4244723 0.2875993 0.519487 +0.4365675 0.2875993 0.519487 +0.4474232 0.2875993 0.519487 +0.45727 0.2875993 0.519487 +0.4662797 0.2875993 0.519487 +0.4745834 0.2875993 0.519487 +0.4822838 0.2875993 0.519487 +0.4894626 0.2875993 0.519487 +0.4961862 0.2875993 0.519487 +0.5025087 0.2875993 0.519487 +0.5084753 0.2875993 0.519487 +0.514124 0.2875993 0.519487 +0.519487 0.2875993 0.519487 +0.5245917 0.2875993 0.519487 +0.529462 0.2875993 0.519487 +0.5341183 0.2875993 0.519487 +0.5385787 0.2875993 0.519487 +0.5428591 0.2875993 0.519487 +0.5469733 0.2875993 0.519487 +0.5509339 0.2875993 0.519487 +0.5547519 0.2875993 0.519487 +0.5584371 0.2875993 0.519487 +0.5619986 0.2875993 0.519487 +0.5654443 0.2875993 0.519487 +0.5687816 0.2875993 0.519487 +0.092819 0.3262122 0.519487 +0.2262531 0.3262122 0.519487 +0.2875993 0.3262122 0.519487 +0.3262122 0.3262122 0.519487 +0.3544566 0.3262122 0.519487 +0.3767383 0.3262122 0.519487 +0.3951413 0.3262122 0.519487 +0.4108177 0.3262122 0.519487 +0.4244723 0.3262122 0.519487 +0.4365675 0.3262122 0.519487 +0.4474232 0.3262122 0.519487 +0.45727 0.3262122 0.519487 +0.4662797 0.3262122 0.519487 +0.4745834 0.3262122 0.519487 +0.4822838 0.3262122 0.519487 +0.4894626 0.3262122 0.519487 +0.4961862 0.3262122 0.519487 +0.5025087 0.3262122 0.519487 +0.5084753 0.3262122 0.519487 +0.514124 0.3262122 0.519487 +0.519487 0.3262122 0.519487 +0.5245917 0.3262122 0.519487 +0.529462 0.3262122 0.519487 +0.5341183 0.3262122 0.519487 +0.5385787 0.3262122 0.519487 +0.5428591 0.3262122 0.519487 +0.5469733 0.3262122 0.519487 +0.5509339 0.3262122 0.519487 +0.5547519 0.3262122 0.519487 +0.5584371 0.3262122 0.519487 +0.5619986 0.3262122 0.519487 +0.5654443 0.3262122 0.519487 +0.5687816 0.3262122 0.519487 +0.092819 0.3544566 0.519487 +0.2262531 0.3544566 0.519487 +0.2875993 0.3544566 0.519487 +0.3262122 0.3544566 0.519487 +0.3544566 0.3544566 0.519487 +0.3767383 0.3544566 0.519487 +0.3951413 0.3544566 0.519487 +0.4108177 0.3544566 0.519487 +0.4244723 0.3544566 0.519487 +0.4365675 0.3544566 0.519487 +0.4474232 0.3544566 0.519487 +0.45727 0.3544566 0.519487 +0.4662797 0.3544566 0.519487 +0.4745834 0.3544566 0.519487 +0.4822838 0.3544566 0.519487 +0.4894626 0.3544566 0.519487 +0.4961862 0.3544566 0.519487 +0.5025087 0.3544566 0.519487 +0.5084753 0.3544566 0.519487 +0.514124 0.3544566 0.519487 +0.519487 0.3544566 0.519487 +0.5245917 0.3544566 0.519487 +0.529462 0.3544566 0.519487 +0.5341183 0.3544566 0.519487 +0.5385787 0.3544566 0.519487 +0.5428591 0.3544566 0.519487 +0.5469733 0.3544566 0.519487 +0.5509339 0.3544566 0.519487 +0.5547519 0.3544566 0.519487 +0.5584371 0.3544566 0.519487 +0.5619986 0.3544566 0.519487 +0.5654443 0.3544566 0.519487 +0.5687816 0.3544566 0.519487 +0.092819 0.3767383 0.519487 +0.2262531 0.3767383 0.519487 +0.2875993 0.3767383 0.519487 +0.3262122 0.3767383 0.519487 +0.3544566 0.3767383 0.519487 +0.3767383 0.3767383 0.519487 +0.3951413 0.3767383 0.519487 +0.4108177 0.3767383 0.519487 +0.4244723 0.3767383 0.519487 +0.4365675 0.3767383 0.519487 +0.4474232 0.3767383 0.519487 +0.45727 0.3767383 0.519487 +0.4662797 0.3767383 0.519487 +0.4745834 0.3767383 0.519487 +0.4822838 0.3767383 0.519487 +0.4894626 0.3767383 0.519487 +0.4961862 0.3767383 0.519487 +0.5025087 0.3767383 0.519487 +0.5084753 0.3767383 0.519487 +0.514124 0.3767383 0.519487 +0.519487 0.3767383 0.519487 +0.5245917 0.3767383 0.519487 +0.529462 0.3767383 0.519487 +0.5341183 0.3767383 0.519487 +0.5385787 0.3767383 0.519487 +0.5428591 0.3767383 0.519487 +0.5469733 0.3767383 0.519487 +0.5509339 0.3767383 0.519487 +0.5547519 0.3767383 0.519487 +0.5584371 0.3767383 0.519487 +0.5619986 0.3767383 0.519487 +0.5654443 0.3767383 0.519487 +0.5687816 0.3767383 0.519487 +0.092819 0.3951413 0.519487 +0.2262531 0.3951413 0.519487 +0.2875993 0.3951413 0.519487 +0.3262122 0.3951413 0.519487 +0.3544566 0.3951413 0.519487 +0.3767383 0.3951413 0.519487 +0.3951413 0.3951413 0.519487 +0.4108177 0.3951413 0.519487 +0.4244723 0.3951413 0.519487 +0.4365675 0.3951413 0.519487 +0.4474232 0.3951413 0.519487 +0.45727 0.3951413 0.519487 +0.4662797 0.3951413 0.519487 +0.4745834 0.3951413 0.519487 +0.4822838 0.3951413 0.519487 +0.4894626 0.3951413 0.519487 +0.4961862 0.3951413 0.519487 +0.5025087 0.3951413 0.519487 +0.5084753 0.3951413 0.519487 +0.514124 0.3951413 0.519487 +0.519487 0.3951413 0.519487 +0.5245917 0.3951413 0.519487 +0.529462 0.3951413 0.519487 +0.5341183 0.3951413 0.519487 +0.5385787 0.3951413 0.519487 +0.5428591 0.3951413 0.519487 +0.5469733 0.3951413 0.519487 +0.5509339 0.3951413 0.519487 +0.5547519 0.3951413 0.519487 +0.5584371 0.3951413 0.519487 +0.5619986 0.3951413 0.519487 +0.5654443 0.3951413 0.519487 +0.5687816 0.3951413 0.519487 +0.092819 0.4108177 0.519487 +0.2262531 0.4108177 0.519487 +0.2875993 0.4108177 0.519487 +0.3262122 0.4108177 0.519487 +0.3544566 0.4108177 0.519487 +0.3767383 0.4108177 0.519487 +0.3951413 0.4108177 0.519487 +0.4108177 0.4108177 0.519487 +0.4244723 0.4108177 0.519487 +0.4365675 0.4108177 0.519487 +0.4474232 0.4108177 0.519487 +0.45727 0.4108177 0.519487 +0.4662797 0.4108177 0.519487 +0.4745834 0.4108177 0.519487 +0.4822838 0.4108177 0.519487 +0.4894626 0.4108177 0.519487 +0.4961862 0.4108177 0.519487 +0.5025087 0.4108177 0.519487 +0.5084753 0.4108177 0.519487 +0.514124 0.4108177 0.519487 +0.519487 0.4108177 0.519487 +0.5245917 0.4108177 0.519487 +0.529462 0.4108177 0.519487 +0.5341183 0.4108177 0.519487 +0.5385787 0.4108177 0.519487 +0.5428591 0.4108177 0.519487 +0.5469733 0.4108177 0.519487 +0.5509339 0.4108177 0.519487 +0.5547519 0.4108177 0.519487 +0.5584371 0.4108177 0.519487 +0.5619986 0.4108177 0.519487 +0.5654443 0.4108177 0.519487 +0.5687816 0.4108177 0.519487 +0.092819 0.4244723 0.519487 +0.2262531 0.4244723 0.519487 +0.2875993 0.4244723 0.519487 +0.3262122 0.4244723 0.519487 +0.3544566 0.4244723 0.519487 +0.3767383 0.4244723 0.519487 +0.3951413 0.4244723 0.519487 +0.4108177 0.4244723 0.519487 +0.4244723 0.4244723 0.519487 +0.4365675 0.4244723 0.519487 +0.4474232 0.4244723 0.519487 +0.45727 0.4244723 0.519487 +0.4662797 0.4244723 0.519487 +0.4745834 0.4244723 0.519487 +0.4822838 0.4244723 0.519487 +0.4894626 0.4244723 0.519487 +0.4961862 0.4244723 0.519487 +0.5025087 0.4244723 0.519487 +0.5084753 0.4244723 0.519487 +0.514124 0.4244723 0.519487 +0.519487 0.4244723 0.519487 +0.5245917 0.4244723 0.519487 +0.529462 0.4244723 0.519487 +0.5341183 0.4244723 0.519487 +0.5385787 0.4244723 0.519487 +0.5428591 0.4244723 0.519487 +0.5469733 0.4244723 0.519487 +0.5509339 0.4244723 0.519487 +0.5547519 0.4244723 0.519487 +0.5584371 0.4244723 0.519487 +0.5619986 0.4244723 0.519487 +0.5654443 0.4244723 0.519487 +0.5687816 0.4244723 0.519487 +0.092819 0.4365675 0.519487 +0.2262531 0.4365675 0.519487 +0.2875993 0.4365675 0.519487 +0.3262122 0.4365675 0.519487 +0.3544566 0.4365675 0.519487 +0.3767383 0.4365675 0.519487 +0.3951413 0.4365675 0.519487 +0.4108177 0.4365675 0.519487 +0.4244723 0.4365675 0.519487 +0.4365675 0.4365675 0.519487 +0.4474232 0.4365675 0.519487 +0.45727 0.4365675 0.519487 +0.4662797 0.4365675 0.519487 +0.4745834 0.4365675 0.519487 +0.4822838 0.4365675 0.519487 +0.4894626 0.4365675 0.519487 +0.4961862 0.4365675 0.519487 +0.5025087 0.4365675 0.519487 +0.5084753 0.4365675 0.519487 +0.514124 0.4365675 0.519487 +0.519487 0.4365675 0.519487 +0.5245917 0.4365675 0.519487 +0.529462 0.4365675 0.519487 +0.5341183 0.4365675 0.519487 +0.5385787 0.4365675 0.519487 +0.5428591 0.4365675 0.519487 +0.5469733 0.4365675 0.519487 +0.5509339 0.4365675 0.519487 +0.5547519 0.4365675 0.519487 +0.5584371 0.4365675 0.519487 +0.5619986 0.4365675 0.519487 +0.5654443 0.4365675 0.519487 +0.5687816 0.4365675 0.519487 +0.092819 0.4474232 0.519487 +0.2262531 0.4474232 0.519487 +0.2875993 0.4474232 0.519487 +0.3262122 0.4474232 0.519487 +0.3544566 0.4474232 0.519487 +0.3767383 0.4474232 0.519487 +0.3951413 0.4474232 0.519487 +0.4108177 0.4474232 0.519487 +0.4244723 0.4474232 0.519487 +0.4365675 0.4474232 0.519487 +0.4474232 0.4474232 0.519487 +0.45727 0.4474232 0.519487 +0.4662797 0.4474232 0.519487 +0.4745834 0.4474232 0.519487 +0.4822838 0.4474232 0.519487 +0.4894626 0.4474232 0.519487 +0.4961862 0.4474232 0.519487 +0.5025087 0.4474232 0.519487 +0.5084753 0.4474232 0.519487 +0.514124 0.4474232 0.519487 +0.519487 0.4474232 0.519487 +0.5245917 0.4474232 0.519487 +0.529462 0.4474232 0.519487 +0.5341183 0.4474232 0.519487 +0.5385787 0.4474232 0.519487 +0.5428591 0.4474232 0.519487 +0.5469733 0.4474232 0.519487 +0.5509339 0.4474232 0.519487 +0.5547519 0.4474232 0.519487 +0.5584371 0.4474232 0.519487 +0.5619986 0.4474232 0.519487 +0.5654443 0.4474232 0.519487 +0.5687816 0.4474232 0.519487 +0.092819 0.45727 0.519487 +0.2262531 0.45727 0.519487 +0.2875993 0.45727 0.519487 +0.3262122 0.45727 0.519487 +0.3544566 0.45727 0.519487 +0.3767383 0.45727 0.519487 +0.3951413 0.45727 0.519487 +0.4108177 0.45727 0.519487 +0.4244723 0.45727 0.519487 +0.4365675 0.45727 0.519487 +0.4474232 0.45727 0.519487 +0.45727 0.45727 0.519487 +0.4662797 0.45727 0.519487 +0.4745834 0.45727 0.519487 +0.4822838 0.45727 0.519487 +0.4894626 0.45727 0.519487 +0.4961862 0.45727 0.519487 +0.5025087 0.45727 0.519487 +0.5084753 0.45727 0.519487 +0.514124 0.45727 0.519487 +0.519487 0.45727 0.519487 +0.5245917 0.45727 0.519487 +0.529462 0.45727 0.519487 +0.5341183 0.45727 0.519487 +0.5385787 0.45727 0.519487 +0.5428591 0.45727 0.519487 +0.5469733 0.45727 0.519487 +0.5509339 0.45727 0.519487 +0.5547519 0.45727 0.519487 +0.5584371 0.45727 0.519487 +0.5619986 0.45727 0.519487 +0.5654443 0.45727 0.519487 +0.5687816 0.45727 0.519487 +0.092819 0.4662797 0.519487 +0.2262531 0.4662797 0.519487 +0.2875993 0.4662797 0.519487 +0.3262122 0.4662797 0.519487 +0.3544566 0.4662797 0.519487 +0.3767383 0.4662797 0.519487 +0.3951413 0.4662797 0.519487 +0.4108177 0.4662797 0.519487 +0.4244723 0.4662797 0.519487 +0.4365675 0.4662797 0.519487 +0.4474232 0.4662797 0.519487 +0.45727 0.4662797 0.519487 +0.4662797 0.4662797 0.519487 +0.4745834 0.4662797 0.519487 +0.4822838 0.4662797 0.519487 +0.4894626 0.4662797 0.519487 +0.4961862 0.4662797 0.519487 +0.5025087 0.4662797 0.519487 +0.5084753 0.4662797 0.519487 +0.514124 0.4662797 0.519487 +0.519487 0.4662797 0.519487 +0.5245917 0.4662797 0.519487 +0.529462 0.4662797 0.519487 +0.5341183 0.4662797 0.519487 +0.5385787 0.4662797 0.519487 +0.5428591 0.4662797 0.519487 +0.5469733 0.4662797 0.519487 +0.5509339 0.4662797 0.519487 +0.5547519 0.4662797 0.519487 +0.5584371 0.4662797 0.519487 +0.5619986 0.4662797 0.519487 +0.5654443 0.4662797 0.519487 +0.5687816 0.4662797 0.519487 +0.092819 0.4745834 0.519487 +0.2262531 0.4745834 0.519487 +0.2875993 0.4745834 0.519487 +0.3262122 0.4745834 0.519487 +0.3544566 0.4745834 0.519487 +0.3767383 0.4745834 0.519487 +0.3951413 0.4745834 0.519487 +0.4108177 0.4745834 0.519487 +0.4244723 0.4745834 0.519487 +0.4365675 0.4745834 0.519487 +0.4474232 0.4745834 0.519487 +0.45727 0.4745834 0.519487 +0.4662797 0.4745834 0.519487 +0.4745834 0.4745834 0.519487 +0.4822838 0.4745834 0.519487 +0.4894626 0.4745834 0.519487 +0.4961862 0.4745834 0.519487 +0.5025087 0.4745834 0.519487 +0.5084753 0.4745834 0.519487 +0.514124 0.4745834 0.519487 +0.519487 0.4745834 0.519487 +0.5245917 0.4745834 0.519487 +0.529462 0.4745834 0.519487 +0.5341183 0.4745834 0.519487 +0.5385787 0.4745834 0.519487 +0.5428591 0.4745834 0.519487 +0.5469733 0.4745834 0.519487 +0.5509339 0.4745834 0.519487 +0.5547519 0.4745834 0.519487 +0.5584371 0.4745834 0.519487 +0.5619986 0.4745834 0.519487 +0.5654443 0.4745834 0.519487 +0.5687816 0.4745834 0.519487 +0.092819 0.4822838 0.519487 +0.2262531 0.4822838 0.519487 +0.2875993 0.4822838 0.519487 +0.3262122 0.4822838 0.519487 +0.3544566 0.4822838 0.519487 +0.3767383 0.4822838 0.519487 +0.3951413 0.4822838 0.519487 +0.4108177 0.4822838 0.519487 +0.4244723 0.4822838 0.519487 +0.4365675 0.4822838 0.519487 +0.4474232 0.4822838 0.519487 +0.45727 0.4822838 0.519487 +0.4662797 0.4822838 0.519487 +0.4745834 0.4822838 0.519487 +0.4822838 0.4822838 0.519487 +0.4894626 0.4822838 0.519487 +0.4961862 0.4822838 0.519487 +0.5025087 0.4822838 0.519487 +0.5084753 0.4822838 0.519487 +0.514124 0.4822838 0.519487 +0.519487 0.4822838 0.519487 +0.5245917 0.4822838 0.519487 +0.529462 0.4822838 0.519487 +0.5341183 0.4822838 0.519487 +0.5385787 0.4822838 0.519487 +0.5428591 0.4822838 0.519487 +0.5469733 0.4822838 0.519487 +0.5509339 0.4822838 0.519487 +0.5547519 0.4822838 0.519487 +0.5584371 0.4822838 0.519487 +0.5619986 0.4822838 0.519487 +0.5654443 0.4822838 0.519487 +0.5687816 0.4822838 0.519487 +0.092819 0.4894626 0.519487 +0.2262531 0.4894626 0.519487 +0.2875993 0.4894626 0.519487 +0.3262122 0.4894626 0.519487 +0.3544566 0.4894626 0.519487 +0.3767383 0.4894626 0.519487 +0.3951413 0.4894626 0.519487 +0.4108177 0.4894626 0.519487 +0.4244723 0.4894626 0.519487 +0.4365675 0.4894626 0.519487 +0.4474232 0.4894626 0.519487 +0.45727 0.4894626 0.519487 +0.4662797 0.4894626 0.519487 +0.4745834 0.4894626 0.519487 +0.4822838 0.4894626 0.519487 +0.4894626 0.4894626 0.519487 +0.4961862 0.4894626 0.519487 +0.5025087 0.4894626 0.519487 +0.5084753 0.4894626 0.519487 +0.514124 0.4894626 0.519487 +0.519487 0.4894626 0.519487 +0.5245917 0.4894626 0.519487 +0.529462 0.4894626 0.519487 +0.5341183 0.4894626 0.519487 +0.5385787 0.4894626 0.519487 +0.5428591 0.4894626 0.519487 +0.5469733 0.4894626 0.519487 +0.5509339 0.4894626 0.519487 +0.5547519 0.4894626 0.519487 +0.5584371 0.4894626 0.519487 +0.5619986 0.4894626 0.519487 +0.5654443 0.4894626 0.519487 +0.5687816 0.4894626 0.519487 +0.092819 0.4961862 0.519487 +0.2262531 0.4961862 0.519487 +0.2875993 0.4961862 0.519487 +0.3262122 0.4961862 0.519487 +0.3544566 0.4961862 0.519487 +0.3767383 0.4961862 0.519487 +0.3951413 0.4961862 0.519487 +0.4108177 0.4961862 0.519487 +0.4244723 0.4961862 0.519487 +0.4365675 0.4961862 0.519487 +0.4474232 0.4961862 0.519487 +0.45727 0.4961862 0.519487 +0.4662797 0.4961862 0.519487 +0.4745834 0.4961862 0.519487 +0.4822838 0.4961862 0.519487 +0.4894626 0.4961862 0.519487 +0.4961862 0.4961862 0.519487 +0.5025087 0.4961862 0.519487 +0.5084753 0.4961862 0.519487 +0.514124 0.4961862 0.519487 +0.519487 0.4961862 0.519487 +0.5245917 0.4961862 0.519487 +0.529462 0.4961862 0.519487 +0.5341183 0.4961862 0.519487 +0.5385787 0.4961862 0.519487 +0.5428591 0.4961862 0.519487 +0.5469733 0.4961862 0.519487 +0.5509339 0.4961862 0.519487 +0.5547519 0.4961862 0.519487 +0.5584371 0.4961862 0.519487 +0.5619986 0.4961862 0.519487 +0.5654443 0.4961862 0.519487 +0.5687816 0.4961862 0.519487 +0.092819 0.5025087 0.519487 +0.2262531 0.5025087 0.519487 +0.2875993 0.5025087 0.519487 +0.3262122 0.5025087 0.519487 +0.3544566 0.5025087 0.519487 +0.3767383 0.5025087 0.519487 +0.3951413 0.5025087 0.519487 +0.4108177 0.5025087 0.519487 +0.4244723 0.5025087 0.519487 +0.4365675 0.5025087 0.519487 +0.4474232 0.5025087 0.519487 +0.45727 0.5025087 0.519487 +0.4662797 0.5025087 0.519487 +0.4745834 0.5025087 0.519487 +0.4822838 0.5025087 0.519487 +0.4894626 0.5025087 0.519487 +0.4961862 0.5025087 0.519487 +0.5025087 0.5025087 0.519487 +0.5084753 0.5025087 0.519487 +0.514124 0.5025087 0.519487 +0.519487 0.5025087 0.519487 +0.5245917 0.5025087 0.519487 +0.529462 0.5025087 0.519487 +0.5341183 0.5025087 0.519487 +0.5385787 0.5025087 0.519487 +0.5428591 0.5025087 0.519487 +0.5469733 0.5025087 0.519487 +0.5509339 0.5025087 0.519487 +0.5547519 0.5025087 0.519487 +0.5584371 0.5025087 0.519487 +0.5619986 0.5025087 0.519487 +0.5654443 0.5025087 0.519487 +0.5687816 0.5025087 0.519487 +0.092819 0.5084753 0.519487 +0.2262531 0.5084753 0.519487 +0.2875993 0.5084753 0.519487 +0.3262122 0.5084753 0.519487 +0.3544566 0.5084753 0.519487 +0.3767383 0.5084753 0.519487 +0.3951413 0.5084753 0.519487 +0.4108177 0.5084753 0.519487 +0.4244723 0.5084753 0.519487 +0.4365675 0.5084753 0.519487 +0.4474232 0.5084753 0.519487 +0.45727 0.5084753 0.519487 +0.4662797 0.5084753 0.519487 +0.4745834 0.5084753 0.519487 +0.4822838 0.5084753 0.519487 +0.4894626 0.5084753 0.519487 +0.4961862 0.5084753 0.519487 +0.5025087 0.5084753 0.519487 +0.5084753 0.5084753 0.519487 +0.514124 0.5084753 0.519487 +0.519487 0.5084753 0.519487 +0.5245917 0.5084753 0.519487 +0.529462 0.5084753 0.519487 +0.5341183 0.5084753 0.519487 +0.5385787 0.5084753 0.519487 +0.5428591 0.5084753 0.519487 +0.5469733 0.5084753 0.519487 +0.5509339 0.5084753 0.519487 +0.5547519 0.5084753 0.519487 +0.5584371 0.5084753 0.519487 +0.5619986 0.5084753 0.519487 +0.5654443 0.5084753 0.519487 +0.5687816 0.5084753 0.519487 +0.092819 0.514124 0.519487 +0.2262531 0.514124 0.519487 +0.2875993 0.514124 0.519487 +0.3262122 0.514124 0.519487 +0.3544566 0.514124 0.519487 +0.3767383 0.514124 0.519487 +0.3951413 0.514124 0.519487 +0.4108177 0.514124 0.519487 +0.4244723 0.514124 0.519487 +0.4365675 0.514124 0.519487 +0.4474232 0.514124 0.519487 +0.45727 0.514124 0.519487 +0.4662797 0.514124 0.519487 +0.4745834 0.514124 0.519487 +0.4822838 0.514124 0.519487 +0.4894626 0.514124 0.519487 +0.4961862 0.514124 0.519487 +0.5025087 0.514124 0.519487 +0.5084753 0.514124 0.519487 +0.514124 0.514124 0.519487 +0.519487 0.514124 0.519487 +0.5245917 0.514124 0.519487 +0.529462 0.514124 0.519487 +0.5341183 0.514124 0.519487 +0.5385787 0.514124 0.519487 +0.5428591 0.514124 0.519487 +0.5469733 0.514124 0.519487 +0.5509339 0.514124 0.519487 +0.5547519 0.514124 0.519487 +0.5584371 0.514124 0.519487 +0.5619986 0.514124 0.519487 +0.5654443 0.514124 0.519487 +0.5687816 0.514124 0.519487 +0.092819 0.519487 0.519487 +0.2262531 0.519487 0.519487 +0.2875993 0.519487 0.519487 +0.3262122 0.519487 0.519487 +0.3544566 0.519487 0.519487 +0.3767383 0.519487 0.519487 +0.3951413 0.519487 0.519487 +0.4108177 0.519487 0.519487 +0.4244723 0.519487 0.519487 +0.4365675 0.519487 0.519487 +0.4474232 0.519487 0.519487 +0.45727 0.519487 0.519487 +0.4662797 0.519487 0.519487 +0.4745834 0.519487 0.519487 +0.4822838 0.519487 0.519487 +0.4894626 0.519487 0.519487 +0.4961862 0.519487 0.519487 +0.5025087 0.519487 0.519487 +0.5084753 0.519487 0.519487 +0.514124 0.519487 0.519487 +0.519487 0.519487 0.519487 +0.5245917 0.519487 0.519487 +0.529462 0.519487 0.519487 +0.5341183 0.519487 0.519487 +0.5385787 0.519487 0.519487 +0.5428591 0.519487 0.519487 +0.5469733 0.519487 0.519487 +0.5509339 0.519487 0.519487 +0.5547519 0.519487 0.519487 +0.5584371 0.519487 0.519487 +0.5619986 0.519487 0.519487 +0.5654443 0.519487 0.519487 +0.5687816 0.519487 0.519487 +0.092819 0.5245917 0.519487 +0.2262531 0.5245917 0.519487 +0.2875993 0.5245917 0.519487 +0.3262122 0.5245917 0.519487 +0.3544566 0.5245917 0.519487 +0.3767383 0.5245917 0.519487 +0.3951413 0.5245917 0.519487 +0.4108177 0.5245917 0.519487 +0.4244723 0.5245917 0.519487 +0.4365675 0.5245917 0.519487 +0.4474232 0.5245917 0.519487 +0.45727 0.5245917 0.519487 +0.4662797 0.5245917 0.519487 +0.4745834 0.5245917 0.519487 +0.4822838 0.5245917 0.519487 +0.4894626 0.5245917 0.519487 +0.4961862 0.5245917 0.519487 +0.5025087 0.5245917 0.519487 +0.5084753 0.5245917 0.519487 +0.514124 0.5245917 0.519487 +0.519487 0.5245917 0.519487 +0.5245917 0.5245917 0.519487 +0.529462 0.5245917 0.519487 +0.5341183 0.5245917 0.519487 +0.5385787 0.5245917 0.519487 +0.5428591 0.5245917 0.519487 +0.5469733 0.5245917 0.519487 +0.5509339 0.5245917 0.519487 +0.5547519 0.5245917 0.519487 +0.5584371 0.5245917 0.519487 +0.5619986 0.5245917 0.519487 +0.5654443 0.5245917 0.519487 +0.5687816 0.5245917 0.519487 +0.092819 0.529462 0.519487 +0.2262531 0.529462 0.519487 +0.2875993 0.529462 0.519487 +0.3262122 0.529462 0.519487 +0.3544566 0.529462 0.519487 +0.3767383 0.529462 0.519487 +0.3951413 0.529462 0.519487 +0.4108177 0.529462 0.519487 +0.4244723 0.529462 0.519487 +0.4365675 0.529462 0.519487 +0.4474232 0.529462 0.519487 +0.45727 0.529462 0.519487 +0.4662797 0.529462 0.519487 +0.4745834 0.529462 0.519487 +0.4822838 0.529462 0.519487 +0.4894626 0.529462 0.519487 +0.4961862 0.529462 0.519487 +0.5025087 0.529462 0.519487 +0.5084753 0.529462 0.519487 +0.514124 0.529462 0.519487 +0.519487 0.529462 0.519487 +0.5245917 0.529462 0.519487 +0.529462 0.529462 0.519487 +0.5341183 0.529462 0.519487 +0.5385787 0.529462 0.519487 +0.5428591 0.529462 0.519487 +0.5469733 0.529462 0.519487 +0.5509339 0.529462 0.519487 +0.5547519 0.529462 0.519487 +0.5584371 0.529462 0.519487 +0.5619986 0.529462 0.519487 +0.5654443 0.529462 0.519487 +0.5687816 0.529462 0.519487 +0.092819 0.5341183 0.519487 +0.2262531 0.5341183 0.519487 +0.2875993 0.5341183 0.519487 +0.3262122 0.5341183 0.519487 +0.3544566 0.5341183 0.519487 +0.3767383 0.5341183 0.519487 +0.3951413 0.5341183 0.519487 +0.4108177 0.5341183 0.519487 +0.4244723 0.5341183 0.519487 +0.4365675 0.5341183 0.519487 +0.4474232 0.5341183 0.519487 +0.45727 0.5341183 0.519487 +0.4662797 0.5341183 0.519487 +0.4745834 0.5341183 0.519487 +0.4822838 0.5341183 0.519487 +0.4894626 0.5341183 0.519487 +0.4961862 0.5341183 0.519487 +0.5025087 0.5341183 0.519487 +0.5084753 0.5341183 0.519487 +0.514124 0.5341183 0.519487 +0.519487 0.5341183 0.519487 +0.5245917 0.5341183 0.519487 +0.529462 0.5341183 0.519487 +0.5341183 0.5341183 0.519487 +0.5385787 0.5341183 0.519487 +0.5428591 0.5341183 0.519487 +0.5469733 0.5341183 0.519487 +0.5509339 0.5341183 0.519487 +0.5547519 0.5341183 0.519487 +0.5584371 0.5341183 0.519487 +0.5619986 0.5341183 0.519487 +0.5654443 0.5341183 0.519487 +0.5687816 0.5341183 0.519487 +0.092819 0.5385787 0.519487 +0.2262531 0.5385787 0.519487 +0.2875993 0.5385787 0.519487 +0.3262122 0.5385787 0.519487 +0.3544566 0.5385787 0.519487 +0.3767383 0.5385787 0.519487 +0.3951413 0.5385787 0.519487 +0.4108177 0.5385787 0.519487 +0.4244723 0.5385787 0.519487 +0.4365675 0.5385787 0.519487 +0.4474232 0.5385787 0.519487 +0.45727 0.5385787 0.519487 +0.4662797 0.5385787 0.519487 +0.4745834 0.5385787 0.519487 +0.4822838 0.5385787 0.519487 +0.4894626 0.5385787 0.519487 +0.4961862 0.5385787 0.519487 +0.5025087 0.5385787 0.519487 +0.5084753 0.5385787 0.519487 +0.514124 0.5385787 0.519487 +0.519487 0.5385787 0.519487 +0.5245917 0.5385787 0.519487 +0.529462 0.5385787 0.519487 +0.5341183 0.5385787 0.519487 +0.5385787 0.5385787 0.519487 +0.5428591 0.5385787 0.519487 +0.5469733 0.5385787 0.519487 +0.5509339 0.5385787 0.519487 +0.5547519 0.5385787 0.519487 +0.5584371 0.5385787 0.519487 +0.5619986 0.5385787 0.519487 +0.5654443 0.5385787 0.519487 +0.5687816 0.5385787 0.519487 +0.092819 0.5428591 0.519487 +0.2262531 0.5428591 0.519487 +0.2875993 0.5428591 0.519487 +0.3262122 0.5428591 0.519487 +0.3544566 0.5428591 0.519487 +0.3767383 0.5428591 0.519487 +0.3951413 0.5428591 0.519487 +0.4108177 0.5428591 0.519487 +0.4244723 0.5428591 0.519487 +0.4365675 0.5428591 0.519487 +0.4474232 0.5428591 0.519487 +0.45727 0.5428591 0.519487 +0.4662797 0.5428591 0.519487 +0.4745834 0.5428591 0.519487 +0.4822838 0.5428591 0.519487 +0.4894626 0.5428591 0.519487 +0.4961862 0.5428591 0.519487 +0.5025087 0.5428591 0.519487 +0.5084753 0.5428591 0.519487 +0.514124 0.5428591 0.519487 +0.519487 0.5428591 0.519487 +0.5245917 0.5428591 0.519487 +0.529462 0.5428591 0.519487 +0.5341183 0.5428591 0.519487 +0.5385787 0.5428591 0.519487 +0.5428591 0.5428591 0.519487 +0.5469733 0.5428591 0.519487 +0.5509339 0.5428591 0.519487 +0.5547519 0.5428591 0.519487 +0.5584371 0.5428591 0.519487 +0.5619986 0.5428591 0.519487 +0.5654443 0.5428591 0.519487 +0.5687816 0.5428591 0.519487 +0.092819 0.5469733 0.519487 +0.2262531 0.5469733 0.519487 +0.2875993 0.5469733 0.519487 +0.3262122 0.5469733 0.519487 +0.3544566 0.5469733 0.519487 +0.3767383 0.5469733 0.519487 +0.3951413 0.5469733 0.519487 +0.4108177 0.5469733 0.519487 +0.4244723 0.5469733 0.519487 +0.4365675 0.5469733 0.519487 +0.4474232 0.5469733 0.519487 +0.45727 0.5469733 0.519487 +0.4662797 0.5469733 0.519487 +0.4745834 0.5469733 0.519487 +0.4822838 0.5469733 0.519487 +0.4894626 0.5469733 0.519487 +0.4961862 0.5469733 0.519487 +0.5025087 0.5469733 0.519487 +0.5084753 0.5469733 0.519487 +0.514124 0.5469733 0.519487 +0.519487 0.5469733 0.519487 +0.5245917 0.5469733 0.519487 +0.529462 0.5469733 0.519487 +0.5341183 0.5469733 0.519487 +0.5385787 0.5469733 0.519487 +0.5428591 0.5469733 0.519487 +0.5469733 0.5469733 0.519487 +0.5509339 0.5469733 0.519487 +0.5547519 0.5469733 0.519487 +0.5584371 0.5469733 0.519487 +0.5619986 0.5469733 0.519487 +0.5654443 0.5469733 0.519487 +0.5687816 0.5469733 0.519487 +0.092819 0.5509339 0.519487 +0.2262531 0.5509339 0.519487 +0.2875993 0.5509339 0.519487 +0.3262122 0.5509339 0.519487 +0.3544566 0.5509339 0.519487 +0.3767383 0.5509339 0.519487 +0.3951413 0.5509339 0.519487 +0.4108177 0.5509339 0.519487 +0.4244723 0.5509339 0.519487 +0.4365675 0.5509339 0.519487 +0.4474232 0.5509339 0.519487 +0.45727 0.5509339 0.519487 +0.4662797 0.5509339 0.519487 +0.4745834 0.5509339 0.519487 +0.4822838 0.5509339 0.519487 +0.4894626 0.5509339 0.519487 +0.4961862 0.5509339 0.519487 +0.5025087 0.5509339 0.519487 +0.5084753 0.5509339 0.519487 +0.514124 0.5509339 0.519487 +0.519487 0.5509339 0.519487 +0.5245917 0.5509339 0.519487 +0.529462 0.5509339 0.519487 +0.5341183 0.5509339 0.519487 +0.5385787 0.5509339 0.519487 +0.5428591 0.5509339 0.519487 +0.5469733 0.5509339 0.519487 +0.5509339 0.5509339 0.519487 +0.5547519 0.5509339 0.519487 +0.5584371 0.5509339 0.519487 +0.5619986 0.5509339 0.519487 +0.5654443 0.5509339 0.519487 +0.5687816 0.5509339 0.519487 +0.092819 0.5547519 0.519487 +0.2262531 0.5547519 0.519487 +0.2875993 0.5547519 0.519487 +0.3262122 0.5547519 0.519487 +0.3544566 0.5547519 0.519487 +0.3767383 0.5547519 0.519487 +0.3951413 0.5547519 0.519487 +0.4108177 0.5547519 0.519487 +0.4244723 0.5547519 0.519487 +0.4365675 0.5547519 0.519487 +0.4474232 0.5547519 0.519487 +0.45727 0.5547519 0.519487 +0.4662797 0.5547519 0.519487 +0.4745834 0.5547519 0.519487 +0.4822838 0.5547519 0.519487 +0.4894626 0.5547519 0.519487 +0.4961862 0.5547519 0.519487 +0.5025087 0.5547519 0.519487 +0.5084753 0.5547519 0.519487 +0.514124 0.5547519 0.519487 +0.519487 0.5547519 0.519487 +0.5245917 0.5547519 0.519487 +0.529462 0.5547519 0.519487 +0.5341183 0.5547519 0.519487 +0.5385787 0.5547519 0.519487 +0.5428591 0.5547519 0.519487 +0.5469733 0.5547519 0.519487 +0.5509339 0.5547519 0.519487 +0.5547519 0.5547519 0.519487 +0.5584371 0.5547519 0.519487 +0.5619986 0.5547519 0.519487 +0.5654443 0.5547519 0.519487 +0.5687816 0.5547519 0.519487 +0.092819 0.5584371 0.519487 +0.2262531 0.5584371 0.519487 +0.2875993 0.5584371 0.519487 +0.3262122 0.5584371 0.519487 +0.3544566 0.5584371 0.519487 +0.3767383 0.5584371 0.519487 +0.3951413 0.5584371 0.519487 +0.4108177 0.5584371 0.519487 +0.4244723 0.5584371 0.519487 +0.4365675 0.5584371 0.519487 +0.4474232 0.5584371 0.519487 +0.45727 0.5584371 0.519487 +0.4662797 0.5584371 0.519487 +0.4745834 0.5584371 0.519487 +0.4822838 0.5584371 0.519487 +0.4894626 0.5584371 0.519487 +0.4961862 0.5584371 0.519487 +0.5025087 0.5584371 0.519487 +0.5084753 0.5584371 0.519487 +0.514124 0.5584371 0.519487 +0.519487 0.5584371 0.519487 +0.5245917 0.5584371 0.519487 +0.529462 0.5584371 0.519487 +0.5341183 0.5584371 0.519487 +0.5385787 0.5584371 0.519487 +0.5428591 0.5584371 0.519487 +0.5469733 0.5584371 0.519487 +0.5509339 0.5584371 0.519487 +0.5547519 0.5584371 0.519487 +0.5584371 0.5584371 0.519487 +0.5619986 0.5584371 0.519487 +0.5654443 0.5584371 0.519487 +0.5687816 0.5584371 0.519487 +0.092819 0.5619986 0.519487 +0.2262531 0.5619986 0.519487 +0.2875993 0.5619986 0.519487 +0.3262122 0.5619986 0.519487 +0.3544566 0.5619986 0.519487 +0.3767383 0.5619986 0.519487 +0.3951413 0.5619986 0.519487 +0.4108177 0.5619986 0.519487 +0.4244723 0.5619986 0.519487 +0.4365675 0.5619986 0.519487 +0.4474232 0.5619986 0.519487 +0.45727 0.5619986 0.519487 +0.4662797 0.5619986 0.519487 +0.4745834 0.5619986 0.519487 +0.4822838 0.5619986 0.519487 +0.4894626 0.5619986 0.519487 +0.4961862 0.5619986 0.519487 +0.5025087 0.5619986 0.519487 +0.5084753 0.5619986 0.519487 +0.514124 0.5619986 0.519487 +0.519487 0.5619986 0.519487 +0.5245917 0.5619986 0.519487 +0.529462 0.5619986 0.519487 +0.5341183 0.5619986 0.519487 +0.5385787 0.5619986 0.519487 +0.5428591 0.5619986 0.519487 +0.5469733 0.5619986 0.519487 +0.5509339 0.5619986 0.519487 +0.5547519 0.5619986 0.519487 +0.5584371 0.5619986 0.519487 +0.5619986 0.5619986 0.519487 +0.5654443 0.5619986 0.519487 +0.5687816 0.5619986 0.519487 +0.092819 0.5654443 0.519487 +0.2262531 0.5654443 0.519487 +0.2875993 0.5654443 0.519487 +0.3262122 0.5654443 0.519487 +0.3544566 0.5654443 0.519487 +0.3767383 0.5654443 0.519487 +0.3951413 0.5654443 0.519487 +0.4108177 0.5654443 0.519487 +0.4244723 0.5654443 0.519487 +0.4365675 0.5654443 0.519487 +0.4474232 0.5654443 0.519487 +0.45727 0.5654443 0.519487 +0.4662797 0.5654443 0.519487 +0.4745834 0.5654443 0.519487 +0.4822838 0.5654443 0.519487 +0.4894626 0.5654443 0.519487 +0.4961862 0.5654443 0.519487 +0.5025087 0.5654443 0.519487 +0.5084753 0.5654443 0.519487 +0.514124 0.5654443 0.519487 +0.519487 0.5654443 0.519487 +0.5245917 0.5654443 0.519487 +0.529462 0.5654443 0.519487 +0.5341183 0.5654443 0.519487 +0.5385787 0.5654443 0.519487 +0.5428591 0.5654443 0.519487 +0.5469733 0.5654443 0.519487 +0.5509339 0.5654443 0.519487 +0.5547519 0.5654443 0.519487 +0.5584371 0.5654443 0.519487 +0.5619986 0.5654443 0.519487 +0.5654443 0.5654443 0.519487 +0.5687816 0.5654443 0.519487 +0.092819 0.5687816 0.519487 +0.2262531 0.5687816 0.519487 +0.2875993 0.5687816 0.519487 +0.3262122 0.5687816 0.519487 +0.3544566 0.5687816 0.519487 +0.3767383 0.5687816 0.519487 +0.3951413 0.5687816 0.519487 +0.4108177 0.5687816 0.519487 +0.4244723 0.5687816 0.519487 +0.4365675 0.5687816 0.519487 +0.4474232 0.5687816 0.519487 +0.45727 0.5687816 0.519487 +0.4662797 0.5687816 0.519487 +0.4745834 0.5687816 0.519487 +0.4822838 0.5687816 0.519487 +0.4894626 0.5687816 0.519487 +0.4961862 0.5687816 0.519487 +0.5025087 0.5687816 0.519487 +0.5084753 0.5687816 0.519487 +0.514124 0.5687816 0.519487 +0.519487 0.5687816 0.519487 +0.5245917 0.5687816 0.519487 +0.529462 0.5687816 0.519487 +0.5341183 0.5687816 0.519487 +0.5385787 0.5687816 0.519487 +0.5428591 0.5687816 0.519487 +0.5469733 0.5687816 0.519487 +0.5509339 0.5687816 0.519487 +0.5547519 0.5687816 0.519487 +0.5584371 0.5687816 0.519487 +0.5619986 0.5687816 0.519487 +0.5654443 0.5687816 0.519487 +0.5687816 0.5687816 0.519487 +0.092819 0.092819 0.5245917 +0.2262531 0.092819 0.5245917 +0.2875993 0.092819 0.5245917 +0.3262122 0.092819 0.5245917 +0.3544566 0.092819 0.5245917 +0.3767383 0.092819 0.5245917 +0.3951413 0.092819 0.5245917 +0.4108177 0.092819 0.5245917 +0.4244723 0.092819 0.5245917 +0.4365675 0.092819 0.5245917 +0.4474232 0.092819 0.5245917 +0.45727 0.092819 0.5245917 +0.4662797 0.092819 0.5245917 +0.4745834 0.092819 0.5245917 +0.4822838 0.092819 0.5245917 +0.4894626 0.092819 0.5245917 +0.4961862 0.092819 0.5245917 +0.5025087 0.092819 0.5245917 +0.5084753 0.092819 0.5245917 +0.514124 0.092819 0.5245917 +0.519487 0.092819 0.5245917 +0.5245917 0.092819 0.5245917 +0.529462 0.092819 0.5245917 +0.5341183 0.092819 0.5245917 +0.5385787 0.092819 0.5245917 +0.5428591 0.092819 0.5245917 +0.5469733 0.092819 0.5245917 +0.5509339 0.092819 0.5245917 +0.5547519 0.092819 0.5245917 +0.5584371 0.092819 0.5245917 +0.5619986 0.092819 0.5245917 +0.5654443 0.092819 0.5245917 +0.5687816 0.092819 0.5245917 +0.092819 0.2262531 0.5245917 +0.2262531 0.2262531 0.5245917 +0.2875993 0.2262531 0.5245917 +0.3262122 0.2262531 0.5245917 +0.3544566 0.2262531 0.5245917 +0.3767383 0.2262531 0.5245917 +0.3951413 0.2262531 0.5245917 +0.4108177 0.2262531 0.5245917 +0.4244723 0.2262531 0.5245917 +0.4365675 0.2262531 0.5245917 +0.4474232 0.2262531 0.5245917 +0.45727 0.2262531 0.5245917 +0.4662797 0.2262531 0.5245917 +0.4745834 0.2262531 0.5245917 +0.4822838 0.2262531 0.5245917 +0.4894626 0.2262531 0.5245917 +0.4961862 0.2262531 0.5245917 +0.5025087 0.2262531 0.5245917 +0.5084753 0.2262531 0.5245917 +0.514124 0.2262531 0.5245917 +0.519487 0.2262531 0.5245917 +0.5245917 0.2262531 0.5245917 +0.529462 0.2262531 0.5245917 +0.5341183 0.2262531 0.5245917 +0.5385787 0.2262531 0.5245917 +0.5428591 0.2262531 0.5245917 +0.5469733 0.2262531 0.5245917 +0.5509339 0.2262531 0.5245917 +0.5547519 0.2262531 0.5245917 +0.5584371 0.2262531 0.5245917 +0.5619986 0.2262531 0.5245917 +0.5654443 0.2262531 0.5245917 +0.5687816 0.2262531 0.5245917 +0.092819 0.2875993 0.5245917 +0.2262531 0.2875993 0.5245917 +0.2875993 0.2875993 0.5245917 +0.3262122 0.2875993 0.5245917 +0.3544566 0.2875993 0.5245917 +0.3767383 0.2875993 0.5245917 +0.3951413 0.2875993 0.5245917 +0.4108177 0.2875993 0.5245917 +0.4244723 0.2875993 0.5245917 +0.4365675 0.2875993 0.5245917 +0.4474232 0.2875993 0.5245917 +0.45727 0.2875993 0.5245917 +0.4662797 0.2875993 0.5245917 +0.4745834 0.2875993 0.5245917 +0.4822838 0.2875993 0.5245917 +0.4894626 0.2875993 0.5245917 +0.4961862 0.2875993 0.5245917 +0.5025087 0.2875993 0.5245917 +0.5084753 0.2875993 0.5245917 +0.514124 0.2875993 0.5245917 +0.519487 0.2875993 0.5245917 +0.5245917 0.2875993 0.5245917 +0.529462 0.2875993 0.5245917 +0.5341183 0.2875993 0.5245917 +0.5385787 0.2875993 0.5245917 +0.5428591 0.2875993 0.5245917 +0.5469733 0.2875993 0.5245917 +0.5509339 0.2875993 0.5245917 +0.5547519 0.2875993 0.5245917 +0.5584371 0.2875993 0.5245917 +0.5619986 0.2875993 0.5245917 +0.5654443 0.2875993 0.5245917 +0.5687816 0.2875993 0.5245917 +0.092819 0.3262122 0.5245917 +0.2262531 0.3262122 0.5245917 +0.2875993 0.3262122 0.5245917 +0.3262122 0.3262122 0.5245917 +0.3544566 0.3262122 0.5245917 +0.3767383 0.3262122 0.5245917 +0.3951413 0.3262122 0.5245917 +0.4108177 0.3262122 0.5245917 +0.4244723 0.3262122 0.5245917 +0.4365675 0.3262122 0.5245917 +0.4474232 0.3262122 0.5245917 +0.45727 0.3262122 0.5245917 +0.4662797 0.3262122 0.5245917 +0.4745834 0.3262122 0.5245917 +0.4822838 0.3262122 0.5245917 +0.4894626 0.3262122 0.5245917 +0.4961862 0.3262122 0.5245917 +0.5025087 0.3262122 0.5245917 +0.5084753 0.3262122 0.5245917 +0.514124 0.3262122 0.5245917 +0.519487 0.3262122 0.5245917 +0.5245917 0.3262122 0.5245917 +0.529462 0.3262122 0.5245917 +0.5341183 0.3262122 0.5245917 +0.5385787 0.3262122 0.5245917 +0.5428591 0.3262122 0.5245917 +0.5469733 0.3262122 0.5245917 +0.5509339 0.3262122 0.5245917 +0.5547519 0.3262122 0.5245917 +0.5584371 0.3262122 0.5245917 +0.5619986 0.3262122 0.5245917 +0.5654443 0.3262122 0.5245917 +0.5687816 0.3262122 0.5245917 +0.092819 0.3544566 0.5245917 +0.2262531 0.3544566 0.5245917 +0.2875993 0.3544566 0.5245917 +0.3262122 0.3544566 0.5245917 +0.3544566 0.3544566 0.5245917 +0.3767383 0.3544566 0.5245917 +0.3951413 0.3544566 0.5245917 +0.4108177 0.3544566 0.5245917 +0.4244723 0.3544566 0.5245917 +0.4365675 0.3544566 0.5245917 +0.4474232 0.3544566 0.5245917 +0.45727 0.3544566 0.5245917 +0.4662797 0.3544566 0.5245917 +0.4745834 0.3544566 0.5245917 +0.4822838 0.3544566 0.5245917 +0.4894626 0.3544566 0.5245917 +0.4961862 0.3544566 0.5245917 +0.5025087 0.3544566 0.5245917 +0.5084753 0.3544566 0.5245917 +0.514124 0.3544566 0.5245917 +0.519487 0.3544566 0.5245917 +0.5245917 0.3544566 0.5245917 +0.529462 0.3544566 0.5245917 +0.5341183 0.3544566 0.5245917 +0.5385787 0.3544566 0.5245917 +0.5428591 0.3544566 0.5245917 +0.5469733 0.3544566 0.5245917 +0.5509339 0.3544566 0.5245917 +0.5547519 0.3544566 0.5245917 +0.5584371 0.3544566 0.5245917 +0.5619986 0.3544566 0.5245917 +0.5654443 0.3544566 0.5245917 +0.5687816 0.3544566 0.5245917 +0.092819 0.3767383 0.5245917 +0.2262531 0.3767383 0.5245917 +0.2875993 0.3767383 0.5245917 +0.3262122 0.3767383 0.5245917 +0.3544566 0.3767383 0.5245917 +0.3767383 0.3767383 0.5245917 +0.3951413 0.3767383 0.5245917 +0.4108177 0.3767383 0.5245917 +0.4244723 0.3767383 0.5245917 +0.4365675 0.3767383 0.5245917 +0.4474232 0.3767383 0.5245917 +0.45727 0.3767383 0.5245917 +0.4662797 0.3767383 0.5245917 +0.4745834 0.3767383 0.5245917 +0.4822838 0.3767383 0.5245917 +0.4894626 0.3767383 0.5245917 +0.4961862 0.3767383 0.5245917 +0.5025087 0.3767383 0.5245917 +0.5084753 0.3767383 0.5245917 +0.514124 0.3767383 0.5245917 +0.519487 0.3767383 0.5245917 +0.5245917 0.3767383 0.5245917 +0.529462 0.3767383 0.5245917 +0.5341183 0.3767383 0.5245917 +0.5385787 0.3767383 0.5245917 +0.5428591 0.3767383 0.5245917 +0.5469733 0.3767383 0.5245917 +0.5509339 0.3767383 0.5245917 +0.5547519 0.3767383 0.5245917 +0.5584371 0.3767383 0.5245917 +0.5619986 0.3767383 0.5245917 +0.5654443 0.3767383 0.5245917 +0.5687816 0.3767383 0.5245917 +0.092819 0.3951413 0.5245917 +0.2262531 0.3951413 0.5245917 +0.2875993 0.3951413 0.5245917 +0.3262122 0.3951413 0.5245917 +0.3544566 0.3951413 0.5245917 +0.3767383 0.3951413 0.5245917 +0.3951413 0.3951413 0.5245917 +0.4108177 0.3951413 0.5245917 +0.4244723 0.3951413 0.5245917 +0.4365675 0.3951413 0.5245917 +0.4474232 0.3951413 0.5245917 +0.45727 0.3951413 0.5245917 +0.4662797 0.3951413 0.5245917 +0.4745834 0.3951413 0.5245917 +0.4822838 0.3951413 0.5245917 +0.4894626 0.3951413 0.5245917 +0.4961862 0.3951413 0.5245917 +0.5025087 0.3951413 0.5245917 +0.5084753 0.3951413 0.5245917 +0.514124 0.3951413 0.5245917 +0.519487 0.3951413 0.5245917 +0.5245917 0.3951413 0.5245917 +0.529462 0.3951413 0.5245917 +0.5341183 0.3951413 0.5245917 +0.5385787 0.3951413 0.5245917 +0.5428591 0.3951413 0.5245917 +0.5469733 0.3951413 0.5245917 +0.5509339 0.3951413 0.5245917 +0.5547519 0.3951413 0.5245917 +0.5584371 0.3951413 0.5245917 +0.5619986 0.3951413 0.5245917 +0.5654443 0.3951413 0.5245917 +0.5687816 0.3951413 0.5245917 +0.092819 0.4108177 0.5245917 +0.2262531 0.4108177 0.5245917 +0.2875993 0.4108177 0.5245917 +0.3262122 0.4108177 0.5245917 +0.3544566 0.4108177 0.5245917 +0.3767383 0.4108177 0.5245917 +0.3951413 0.4108177 0.5245917 +0.4108177 0.4108177 0.5245917 +0.4244723 0.4108177 0.5245917 +0.4365675 0.4108177 0.5245917 +0.4474232 0.4108177 0.5245917 +0.45727 0.4108177 0.5245917 +0.4662797 0.4108177 0.5245917 +0.4745834 0.4108177 0.5245917 +0.4822838 0.4108177 0.5245917 +0.4894626 0.4108177 0.5245917 +0.4961862 0.4108177 0.5245917 +0.5025087 0.4108177 0.5245917 +0.5084753 0.4108177 0.5245917 +0.514124 0.4108177 0.5245917 +0.519487 0.4108177 0.5245917 +0.5245917 0.4108177 0.5245917 +0.529462 0.4108177 0.5245917 +0.5341183 0.4108177 0.5245917 +0.5385787 0.4108177 0.5245917 +0.5428591 0.4108177 0.5245917 +0.5469733 0.4108177 0.5245917 +0.5509339 0.4108177 0.5245917 +0.5547519 0.4108177 0.5245917 +0.5584371 0.4108177 0.5245917 +0.5619986 0.4108177 0.5245917 +0.5654443 0.4108177 0.5245917 +0.5687816 0.4108177 0.5245917 +0.092819 0.4244723 0.5245917 +0.2262531 0.4244723 0.5245917 +0.2875993 0.4244723 0.5245917 +0.3262122 0.4244723 0.5245917 +0.3544566 0.4244723 0.5245917 +0.3767383 0.4244723 0.5245917 +0.3951413 0.4244723 0.5245917 +0.4108177 0.4244723 0.5245917 +0.4244723 0.4244723 0.5245917 +0.4365675 0.4244723 0.5245917 +0.4474232 0.4244723 0.5245917 +0.45727 0.4244723 0.5245917 +0.4662797 0.4244723 0.5245917 +0.4745834 0.4244723 0.5245917 +0.4822838 0.4244723 0.5245917 +0.4894626 0.4244723 0.5245917 +0.4961862 0.4244723 0.5245917 +0.5025087 0.4244723 0.5245917 +0.5084753 0.4244723 0.5245917 +0.514124 0.4244723 0.5245917 +0.519487 0.4244723 0.5245917 +0.5245917 0.4244723 0.5245917 +0.529462 0.4244723 0.5245917 +0.5341183 0.4244723 0.5245917 +0.5385787 0.4244723 0.5245917 +0.5428591 0.4244723 0.5245917 +0.5469733 0.4244723 0.5245917 +0.5509339 0.4244723 0.5245917 +0.5547519 0.4244723 0.5245917 +0.5584371 0.4244723 0.5245917 +0.5619986 0.4244723 0.5245917 +0.5654443 0.4244723 0.5245917 +0.5687816 0.4244723 0.5245917 +0.092819 0.4365675 0.5245917 +0.2262531 0.4365675 0.5245917 +0.2875993 0.4365675 0.5245917 +0.3262122 0.4365675 0.5245917 +0.3544566 0.4365675 0.5245917 +0.3767383 0.4365675 0.5245917 +0.3951413 0.4365675 0.5245917 +0.4108177 0.4365675 0.5245917 +0.4244723 0.4365675 0.5245917 +0.4365675 0.4365675 0.5245917 +0.4474232 0.4365675 0.5245917 +0.45727 0.4365675 0.5245917 +0.4662797 0.4365675 0.5245917 +0.4745834 0.4365675 0.5245917 +0.4822838 0.4365675 0.5245917 +0.4894626 0.4365675 0.5245917 +0.4961862 0.4365675 0.5245917 +0.5025087 0.4365675 0.5245917 +0.5084753 0.4365675 0.5245917 +0.514124 0.4365675 0.5245917 +0.519487 0.4365675 0.5245917 +0.5245917 0.4365675 0.5245917 +0.529462 0.4365675 0.5245917 +0.5341183 0.4365675 0.5245917 +0.5385787 0.4365675 0.5245917 +0.5428591 0.4365675 0.5245917 +0.5469733 0.4365675 0.5245917 +0.5509339 0.4365675 0.5245917 +0.5547519 0.4365675 0.5245917 +0.5584371 0.4365675 0.5245917 +0.5619986 0.4365675 0.5245917 +0.5654443 0.4365675 0.5245917 +0.5687816 0.4365675 0.5245917 +0.092819 0.4474232 0.5245917 +0.2262531 0.4474232 0.5245917 +0.2875993 0.4474232 0.5245917 +0.3262122 0.4474232 0.5245917 +0.3544566 0.4474232 0.5245917 +0.3767383 0.4474232 0.5245917 +0.3951413 0.4474232 0.5245917 +0.4108177 0.4474232 0.5245917 +0.4244723 0.4474232 0.5245917 +0.4365675 0.4474232 0.5245917 +0.4474232 0.4474232 0.5245917 +0.45727 0.4474232 0.5245917 +0.4662797 0.4474232 0.5245917 +0.4745834 0.4474232 0.5245917 +0.4822838 0.4474232 0.5245917 +0.4894626 0.4474232 0.5245917 +0.4961862 0.4474232 0.5245917 +0.5025087 0.4474232 0.5245917 +0.5084753 0.4474232 0.5245917 +0.514124 0.4474232 0.5245917 +0.519487 0.4474232 0.5245917 +0.5245917 0.4474232 0.5245917 +0.529462 0.4474232 0.5245917 +0.5341183 0.4474232 0.5245917 +0.5385787 0.4474232 0.5245917 +0.5428591 0.4474232 0.5245917 +0.5469733 0.4474232 0.5245917 +0.5509339 0.4474232 0.5245917 +0.5547519 0.4474232 0.5245917 +0.5584371 0.4474232 0.5245917 +0.5619986 0.4474232 0.5245917 +0.5654443 0.4474232 0.5245917 +0.5687816 0.4474232 0.5245917 +0.092819 0.45727 0.5245917 +0.2262531 0.45727 0.5245917 +0.2875993 0.45727 0.5245917 +0.3262122 0.45727 0.5245917 +0.3544566 0.45727 0.5245917 +0.3767383 0.45727 0.5245917 +0.3951413 0.45727 0.5245917 +0.4108177 0.45727 0.5245917 +0.4244723 0.45727 0.5245917 +0.4365675 0.45727 0.5245917 +0.4474232 0.45727 0.5245917 +0.45727 0.45727 0.5245917 +0.4662797 0.45727 0.5245917 +0.4745834 0.45727 0.5245917 +0.4822838 0.45727 0.5245917 +0.4894626 0.45727 0.5245917 +0.4961862 0.45727 0.5245917 +0.5025087 0.45727 0.5245917 +0.5084753 0.45727 0.5245917 +0.514124 0.45727 0.5245917 +0.519487 0.45727 0.5245917 +0.5245917 0.45727 0.5245917 +0.529462 0.45727 0.5245917 +0.5341183 0.45727 0.5245917 +0.5385787 0.45727 0.5245917 +0.5428591 0.45727 0.5245917 +0.5469733 0.45727 0.5245917 +0.5509339 0.45727 0.5245917 +0.5547519 0.45727 0.5245917 +0.5584371 0.45727 0.5245917 +0.5619986 0.45727 0.5245917 +0.5654443 0.45727 0.5245917 +0.5687816 0.45727 0.5245917 +0.092819 0.4662797 0.5245917 +0.2262531 0.4662797 0.5245917 +0.2875993 0.4662797 0.5245917 +0.3262122 0.4662797 0.5245917 +0.3544566 0.4662797 0.5245917 +0.3767383 0.4662797 0.5245917 +0.3951413 0.4662797 0.5245917 +0.4108177 0.4662797 0.5245917 +0.4244723 0.4662797 0.5245917 +0.4365675 0.4662797 0.5245917 +0.4474232 0.4662797 0.5245917 +0.45727 0.4662797 0.5245917 +0.4662797 0.4662797 0.5245917 +0.4745834 0.4662797 0.5245917 +0.4822838 0.4662797 0.5245917 +0.4894626 0.4662797 0.5245917 +0.4961862 0.4662797 0.5245917 +0.5025087 0.4662797 0.5245917 +0.5084753 0.4662797 0.5245917 +0.514124 0.4662797 0.5245917 +0.519487 0.4662797 0.5245917 +0.5245917 0.4662797 0.5245917 +0.529462 0.4662797 0.5245917 +0.5341183 0.4662797 0.5245917 +0.5385787 0.4662797 0.5245917 +0.5428591 0.4662797 0.5245917 +0.5469733 0.4662797 0.5245917 +0.5509339 0.4662797 0.5245917 +0.5547519 0.4662797 0.5245917 +0.5584371 0.4662797 0.5245917 +0.5619986 0.4662797 0.5245917 +0.5654443 0.4662797 0.5245917 +0.5687816 0.4662797 0.5245917 +0.092819 0.4745834 0.5245917 +0.2262531 0.4745834 0.5245917 +0.2875993 0.4745834 0.5245917 +0.3262122 0.4745834 0.5245917 +0.3544566 0.4745834 0.5245917 +0.3767383 0.4745834 0.5245917 +0.3951413 0.4745834 0.5245917 +0.4108177 0.4745834 0.5245917 +0.4244723 0.4745834 0.5245917 +0.4365675 0.4745834 0.5245917 +0.4474232 0.4745834 0.5245917 +0.45727 0.4745834 0.5245917 +0.4662797 0.4745834 0.5245917 +0.4745834 0.4745834 0.5245917 +0.4822838 0.4745834 0.5245917 +0.4894626 0.4745834 0.5245917 +0.4961862 0.4745834 0.5245917 +0.5025087 0.4745834 0.5245917 +0.5084753 0.4745834 0.5245917 +0.514124 0.4745834 0.5245917 +0.519487 0.4745834 0.5245917 +0.5245917 0.4745834 0.5245917 +0.529462 0.4745834 0.5245917 +0.5341183 0.4745834 0.5245917 +0.5385787 0.4745834 0.5245917 +0.5428591 0.4745834 0.5245917 +0.5469733 0.4745834 0.5245917 +0.5509339 0.4745834 0.5245917 +0.5547519 0.4745834 0.5245917 +0.5584371 0.4745834 0.5245917 +0.5619986 0.4745834 0.5245917 +0.5654443 0.4745834 0.5245917 +0.5687816 0.4745834 0.5245917 +0.092819 0.4822838 0.5245917 +0.2262531 0.4822838 0.5245917 +0.2875993 0.4822838 0.5245917 +0.3262122 0.4822838 0.5245917 +0.3544566 0.4822838 0.5245917 +0.3767383 0.4822838 0.5245917 +0.3951413 0.4822838 0.5245917 +0.4108177 0.4822838 0.5245917 +0.4244723 0.4822838 0.5245917 +0.4365675 0.4822838 0.5245917 +0.4474232 0.4822838 0.5245917 +0.45727 0.4822838 0.5245917 +0.4662797 0.4822838 0.5245917 +0.4745834 0.4822838 0.5245917 +0.4822838 0.4822838 0.5245917 +0.4894626 0.4822838 0.5245917 +0.4961862 0.4822838 0.5245917 +0.5025087 0.4822838 0.5245917 +0.5084753 0.4822838 0.5245917 +0.514124 0.4822838 0.5245917 +0.519487 0.4822838 0.5245917 +0.5245917 0.4822838 0.5245917 +0.529462 0.4822838 0.5245917 +0.5341183 0.4822838 0.5245917 +0.5385787 0.4822838 0.5245917 +0.5428591 0.4822838 0.5245917 +0.5469733 0.4822838 0.5245917 +0.5509339 0.4822838 0.5245917 +0.5547519 0.4822838 0.5245917 +0.5584371 0.4822838 0.5245917 +0.5619986 0.4822838 0.5245917 +0.5654443 0.4822838 0.5245917 +0.5687816 0.4822838 0.5245917 +0.092819 0.4894626 0.5245917 +0.2262531 0.4894626 0.5245917 +0.2875993 0.4894626 0.5245917 +0.3262122 0.4894626 0.5245917 +0.3544566 0.4894626 0.5245917 +0.3767383 0.4894626 0.5245917 +0.3951413 0.4894626 0.5245917 +0.4108177 0.4894626 0.5245917 +0.4244723 0.4894626 0.5245917 +0.4365675 0.4894626 0.5245917 +0.4474232 0.4894626 0.5245917 +0.45727 0.4894626 0.5245917 +0.4662797 0.4894626 0.5245917 +0.4745834 0.4894626 0.5245917 +0.4822838 0.4894626 0.5245917 +0.4894626 0.4894626 0.5245917 +0.4961862 0.4894626 0.5245917 +0.5025087 0.4894626 0.5245917 +0.5084753 0.4894626 0.5245917 +0.514124 0.4894626 0.5245917 +0.519487 0.4894626 0.5245917 +0.5245917 0.4894626 0.5245917 +0.529462 0.4894626 0.5245917 +0.5341183 0.4894626 0.5245917 +0.5385787 0.4894626 0.5245917 +0.5428591 0.4894626 0.5245917 +0.5469733 0.4894626 0.5245917 +0.5509339 0.4894626 0.5245917 +0.5547519 0.4894626 0.5245917 +0.5584371 0.4894626 0.5245917 +0.5619986 0.4894626 0.5245917 +0.5654443 0.4894626 0.5245917 +0.5687816 0.4894626 0.5245917 +0.092819 0.4961862 0.5245917 +0.2262531 0.4961862 0.5245917 +0.2875993 0.4961862 0.5245917 +0.3262122 0.4961862 0.5245917 +0.3544566 0.4961862 0.5245917 +0.3767383 0.4961862 0.5245917 +0.3951413 0.4961862 0.5245917 +0.4108177 0.4961862 0.5245917 +0.4244723 0.4961862 0.5245917 +0.4365675 0.4961862 0.5245917 +0.4474232 0.4961862 0.5245917 +0.45727 0.4961862 0.5245917 +0.4662797 0.4961862 0.5245917 +0.4745834 0.4961862 0.5245917 +0.4822838 0.4961862 0.5245917 +0.4894626 0.4961862 0.5245917 +0.4961862 0.4961862 0.5245917 +0.5025087 0.4961862 0.5245917 +0.5084753 0.4961862 0.5245917 +0.514124 0.4961862 0.5245917 +0.519487 0.4961862 0.5245917 +0.5245917 0.4961862 0.5245917 +0.529462 0.4961862 0.5245917 +0.5341183 0.4961862 0.5245917 +0.5385787 0.4961862 0.5245917 +0.5428591 0.4961862 0.5245917 +0.5469733 0.4961862 0.5245917 +0.5509339 0.4961862 0.5245917 +0.5547519 0.4961862 0.5245917 +0.5584371 0.4961862 0.5245917 +0.5619986 0.4961862 0.5245917 +0.5654443 0.4961862 0.5245917 +0.5687816 0.4961862 0.5245917 +0.092819 0.5025087 0.5245917 +0.2262531 0.5025087 0.5245917 +0.2875993 0.5025087 0.5245917 +0.3262122 0.5025087 0.5245917 +0.3544566 0.5025087 0.5245917 +0.3767383 0.5025087 0.5245917 +0.3951413 0.5025087 0.5245917 +0.4108177 0.5025087 0.5245917 +0.4244723 0.5025087 0.5245917 +0.4365675 0.5025087 0.5245917 +0.4474232 0.5025087 0.5245917 +0.45727 0.5025087 0.5245917 +0.4662797 0.5025087 0.5245917 +0.4745834 0.5025087 0.5245917 +0.4822838 0.5025087 0.5245917 +0.4894626 0.5025087 0.5245917 +0.4961862 0.5025087 0.5245917 +0.5025087 0.5025087 0.5245917 +0.5084753 0.5025087 0.5245917 +0.514124 0.5025087 0.5245917 +0.519487 0.5025087 0.5245917 +0.5245917 0.5025087 0.5245917 +0.529462 0.5025087 0.5245917 +0.5341183 0.5025087 0.5245917 +0.5385787 0.5025087 0.5245917 +0.5428591 0.5025087 0.5245917 +0.5469733 0.5025087 0.5245917 +0.5509339 0.5025087 0.5245917 +0.5547519 0.5025087 0.5245917 +0.5584371 0.5025087 0.5245917 +0.5619986 0.5025087 0.5245917 +0.5654443 0.5025087 0.5245917 +0.5687816 0.5025087 0.5245917 +0.092819 0.5084753 0.5245917 +0.2262531 0.5084753 0.5245917 +0.2875993 0.5084753 0.5245917 +0.3262122 0.5084753 0.5245917 +0.3544566 0.5084753 0.5245917 +0.3767383 0.5084753 0.5245917 +0.3951413 0.5084753 0.5245917 +0.4108177 0.5084753 0.5245917 +0.4244723 0.5084753 0.5245917 +0.4365675 0.5084753 0.5245917 +0.4474232 0.5084753 0.5245917 +0.45727 0.5084753 0.5245917 +0.4662797 0.5084753 0.5245917 +0.4745834 0.5084753 0.5245917 +0.4822838 0.5084753 0.5245917 +0.4894626 0.5084753 0.5245917 +0.4961862 0.5084753 0.5245917 +0.5025087 0.5084753 0.5245917 +0.5084753 0.5084753 0.5245917 +0.514124 0.5084753 0.5245917 +0.519487 0.5084753 0.5245917 +0.5245917 0.5084753 0.5245917 +0.529462 0.5084753 0.5245917 +0.5341183 0.5084753 0.5245917 +0.5385787 0.5084753 0.5245917 +0.5428591 0.5084753 0.5245917 +0.5469733 0.5084753 0.5245917 +0.5509339 0.5084753 0.5245917 +0.5547519 0.5084753 0.5245917 +0.5584371 0.5084753 0.5245917 +0.5619986 0.5084753 0.5245917 +0.5654443 0.5084753 0.5245917 +0.5687816 0.5084753 0.5245917 +0.092819 0.514124 0.5245917 +0.2262531 0.514124 0.5245917 +0.2875993 0.514124 0.5245917 +0.3262122 0.514124 0.5245917 +0.3544566 0.514124 0.5245917 +0.3767383 0.514124 0.5245917 +0.3951413 0.514124 0.5245917 +0.4108177 0.514124 0.5245917 +0.4244723 0.514124 0.5245917 +0.4365675 0.514124 0.5245917 +0.4474232 0.514124 0.5245917 +0.45727 0.514124 0.5245917 +0.4662797 0.514124 0.5245917 +0.4745834 0.514124 0.5245917 +0.4822838 0.514124 0.5245917 +0.4894626 0.514124 0.5245917 +0.4961862 0.514124 0.5245917 +0.5025087 0.514124 0.5245917 +0.5084753 0.514124 0.5245917 +0.514124 0.514124 0.5245917 +0.519487 0.514124 0.5245917 +0.5245917 0.514124 0.5245917 +0.529462 0.514124 0.5245917 +0.5341183 0.514124 0.5245917 +0.5385787 0.514124 0.5245917 +0.5428591 0.514124 0.5245917 +0.5469733 0.514124 0.5245917 +0.5509339 0.514124 0.5245917 +0.5547519 0.514124 0.5245917 +0.5584371 0.514124 0.5245917 +0.5619986 0.514124 0.5245917 +0.5654443 0.514124 0.5245917 +0.5687816 0.514124 0.5245917 +0.092819 0.519487 0.5245917 +0.2262531 0.519487 0.5245917 +0.2875993 0.519487 0.5245917 +0.3262122 0.519487 0.5245917 +0.3544566 0.519487 0.5245917 +0.3767383 0.519487 0.5245917 +0.3951413 0.519487 0.5245917 +0.4108177 0.519487 0.5245917 +0.4244723 0.519487 0.5245917 +0.4365675 0.519487 0.5245917 +0.4474232 0.519487 0.5245917 +0.45727 0.519487 0.5245917 +0.4662797 0.519487 0.5245917 +0.4745834 0.519487 0.5245917 +0.4822838 0.519487 0.5245917 +0.4894626 0.519487 0.5245917 +0.4961862 0.519487 0.5245917 +0.5025087 0.519487 0.5245917 +0.5084753 0.519487 0.5245917 +0.514124 0.519487 0.5245917 +0.519487 0.519487 0.5245917 +0.5245917 0.519487 0.5245917 +0.529462 0.519487 0.5245917 +0.5341183 0.519487 0.5245917 +0.5385787 0.519487 0.5245917 +0.5428591 0.519487 0.5245917 +0.5469733 0.519487 0.5245917 +0.5509339 0.519487 0.5245917 +0.5547519 0.519487 0.5245917 +0.5584371 0.519487 0.5245917 +0.5619986 0.519487 0.5245917 +0.5654443 0.519487 0.5245917 +0.5687816 0.519487 0.5245917 +0.092819 0.5245917 0.5245917 +0.2262531 0.5245917 0.5245917 +0.2875993 0.5245917 0.5245917 +0.3262122 0.5245917 0.5245917 +0.3544566 0.5245917 0.5245917 +0.3767383 0.5245917 0.5245917 +0.3951413 0.5245917 0.5245917 +0.4108177 0.5245917 0.5245917 +0.4244723 0.5245917 0.5245917 +0.4365675 0.5245917 0.5245917 +0.4474232 0.5245917 0.5245917 +0.45727 0.5245917 0.5245917 +0.4662797 0.5245917 0.5245917 +0.4745834 0.5245917 0.5245917 +0.4822838 0.5245917 0.5245917 +0.4894626 0.5245917 0.5245917 +0.4961862 0.5245917 0.5245917 +0.5025087 0.5245917 0.5245917 +0.5084753 0.5245917 0.5245917 +0.514124 0.5245917 0.5245917 +0.519487 0.5245917 0.5245917 +0.5245917 0.5245917 0.5245917 +0.529462 0.5245917 0.5245917 +0.5341183 0.5245917 0.5245917 +0.5385787 0.5245917 0.5245917 +0.5428591 0.5245917 0.5245917 +0.5469733 0.5245917 0.5245917 +0.5509339 0.5245917 0.5245917 +0.5547519 0.5245917 0.5245917 +0.5584371 0.5245917 0.5245917 +0.5619986 0.5245917 0.5245917 +0.5654443 0.5245917 0.5245917 +0.5687816 0.5245917 0.5245917 +0.092819 0.529462 0.5245917 +0.2262531 0.529462 0.5245917 +0.2875993 0.529462 0.5245917 +0.3262122 0.529462 0.5245917 +0.3544566 0.529462 0.5245917 +0.3767383 0.529462 0.5245917 +0.3951413 0.529462 0.5245917 +0.4108177 0.529462 0.5245917 +0.4244723 0.529462 0.5245917 +0.4365675 0.529462 0.5245917 +0.4474232 0.529462 0.5245917 +0.45727 0.529462 0.5245917 +0.4662797 0.529462 0.5245917 +0.4745834 0.529462 0.5245917 +0.4822838 0.529462 0.5245917 +0.4894626 0.529462 0.5245917 +0.4961862 0.529462 0.5245917 +0.5025087 0.529462 0.5245917 +0.5084753 0.529462 0.5245917 +0.514124 0.529462 0.5245917 +0.519487 0.529462 0.5245917 +0.5245917 0.529462 0.5245917 +0.529462 0.529462 0.5245917 +0.5341183 0.529462 0.5245917 +0.5385787 0.529462 0.5245917 +0.5428591 0.529462 0.5245917 +0.5469733 0.529462 0.5245917 +0.5509339 0.529462 0.5245917 +0.5547519 0.529462 0.5245917 +0.5584371 0.529462 0.5245917 +0.5619986 0.529462 0.5245917 +0.5654443 0.529462 0.5245917 +0.5687816 0.529462 0.5245917 +0.092819 0.5341183 0.5245917 +0.2262531 0.5341183 0.5245917 +0.2875993 0.5341183 0.5245917 +0.3262122 0.5341183 0.5245917 +0.3544566 0.5341183 0.5245917 +0.3767383 0.5341183 0.5245917 +0.3951413 0.5341183 0.5245917 +0.4108177 0.5341183 0.5245917 +0.4244723 0.5341183 0.5245917 +0.4365675 0.5341183 0.5245917 +0.4474232 0.5341183 0.5245917 +0.45727 0.5341183 0.5245917 +0.4662797 0.5341183 0.5245917 +0.4745834 0.5341183 0.5245917 +0.4822838 0.5341183 0.5245917 +0.4894626 0.5341183 0.5245917 +0.4961862 0.5341183 0.5245917 +0.5025087 0.5341183 0.5245917 +0.5084753 0.5341183 0.5245917 +0.514124 0.5341183 0.5245917 +0.519487 0.5341183 0.5245917 +0.5245917 0.5341183 0.5245917 +0.529462 0.5341183 0.5245917 +0.5341183 0.5341183 0.5245917 +0.5385787 0.5341183 0.5245917 +0.5428591 0.5341183 0.5245917 +0.5469733 0.5341183 0.5245917 +0.5509339 0.5341183 0.5245917 +0.5547519 0.5341183 0.5245917 +0.5584371 0.5341183 0.5245917 +0.5619986 0.5341183 0.5245917 +0.5654443 0.5341183 0.5245917 +0.5687816 0.5341183 0.5245917 +0.092819 0.5385787 0.5245917 +0.2262531 0.5385787 0.5245917 +0.2875993 0.5385787 0.5245917 +0.3262122 0.5385787 0.5245917 +0.3544566 0.5385787 0.5245917 +0.3767383 0.5385787 0.5245917 +0.3951413 0.5385787 0.5245917 +0.4108177 0.5385787 0.5245917 +0.4244723 0.5385787 0.5245917 +0.4365675 0.5385787 0.5245917 +0.4474232 0.5385787 0.5245917 +0.45727 0.5385787 0.5245917 +0.4662797 0.5385787 0.5245917 +0.4745834 0.5385787 0.5245917 +0.4822838 0.5385787 0.5245917 +0.4894626 0.5385787 0.5245917 +0.4961862 0.5385787 0.5245917 +0.5025087 0.5385787 0.5245917 +0.5084753 0.5385787 0.5245917 +0.514124 0.5385787 0.5245917 +0.519487 0.5385787 0.5245917 +0.5245917 0.5385787 0.5245917 +0.529462 0.5385787 0.5245917 +0.5341183 0.5385787 0.5245917 +0.5385787 0.5385787 0.5245917 +0.5428591 0.5385787 0.5245917 +0.5469733 0.5385787 0.5245917 +0.5509339 0.5385787 0.5245917 +0.5547519 0.5385787 0.5245917 +0.5584371 0.5385787 0.5245917 +0.5619986 0.5385787 0.5245917 +0.5654443 0.5385787 0.5245917 +0.5687816 0.5385787 0.5245917 +0.092819 0.5428591 0.5245917 +0.2262531 0.5428591 0.5245917 +0.2875993 0.5428591 0.5245917 +0.3262122 0.5428591 0.5245917 +0.3544566 0.5428591 0.5245917 +0.3767383 0.5428591 0.5245917 +0.3951413 0.5428591 0.5245917 +0.4108177 0.5428591 0.5245917 +0.4244723 0.5428591 0.5245917 +0.4365675 0.5428591 0.5245917 +0.4474232 0.5428591 0.5245917 +0.45727 0.5428591 0.5245917 +0.4662797 0.5428591 0.5245917 +0.4745834 0.5428591 0.5245917 +0.4822838 0.5428591 0.5245917 +0.4894626 0.5428591 0.5245917 +0.4961862 0.5428591 0.5245917 +0.5025087 0.5428591 0.5245917 +0.5084753 0.5428591 0.5245917 +0.514124 0.5428591 0.5245917 +0.519487 0.5428591 0.5245917 +0.5245917 0.5428591 0.5245917 +0.529462 0.5428591 0.5245917 +0.5341183 0.5428591 0.5245917 +0.5385787 0.5428591 0.5245917 +0.5428591 0.5428591 0.5245917 +0.5469733 0.5428591 0.5245917 +0.5509339 0.5428591 0.5245917 +0.5547519 0.5428591 0.5245917 +0.5584371 0.5428591 0.5245917 +0.5619986 0.5428591 0.5245917 +0.5654443 0.5428591 0.5245917 +0.5687816 0.5428591 0.5245917 +0.092819 0.5469733 0.5245917 +0.2262531 0.5469733 0.5245917 +0.2875993 0.5469733 0.5245917 +0.3262122 0.5469733 0.5245917 +0.3544566 0.5469733 0.5245917 +0.3767383 0.5469733 0.5245917 +0.3951413 0.5469733 0.5245917 +0.4108177 0.5469733 0.5245917 +0.4244723 0.5469733 0.5245917 +0.4365675 0.5469733 0.5245917 +0.4474232 0.5469733 0.5245917 +0.45727 0.5469733 0.5245917 +0.4662797 0.5469733 0.5245917 +0.4745834 0.5469733 0.5245917 +0.4822838 0.5469733 0.5245917 +0.4894626 0.5469733 0.5245917 +0.4961862 0.5469733 0.5245917 +0.5025087 0.5469733 0.5245917 +0.5084753 0.5469733 0.5245917 +0.514124 0.5469733 0.5245917 +0.519487 0.5469733 0.5245917 +0.5245917 0.5469733 0.5245917 +0.529462 0.5469733 0.5245917 +0.5341183 0.5469733 0.5245917 +0.5385787 0.5469733 0.5245917 +0.5428591 0.5469733 0.5245917 +0.5469733 0.5469733 0.5245917 +0.5509339 0.5469733 0.5245917 +0.5547519 0.5469733 0.5245917 +0.5584371 0.5469733 0.5245917 +0.5619986 0.5469733 0.5245917 +0.5654443 0.5469733 0.5245917 +0.5687816 0.5469733 0.5245917 +0.092819 0.5509339 0.5245917 +0.2262531 0.5509339 0.5245917 +0.2875993 0.5509339 0.5245917 +0.3262122 0.5509339 0.5245917 +0.3544566 0.5509339 0.5245917 +0.3767383 0.5509339 0.5245917 +0.3951413 0.5509339 0.5245917 +0.4108177 0.5509339 0.5245917 +0.4244723 0.5509339 0.5245917 +0.4365675 0.5509339 0.5245917 +0.4474232 0.5509339 0.5245917 +0.45727 0.5509339 0.5245917 +0.4662797 0.5509339 0.5245917 +0.4745834 0.5509339 0.5245917 +0.4822838 0.5509339 0.5245917 +0.4894626 0.5509339 0.5245917 +0.4961862 0.5509339 0.5245917 +0.5025087 0.5509339 0.5245917 +0.5084753 0.5509339 0.5245917 +0.514124 0.5509339 0.5245917 +0.519487 0.5509339 0.5245917 +0.5245917 0.5509339 0.5245917 +0.529462 0.5509339 0.5245917 +0.5341183 0.5509339 0.5245917 +0.5385787 0.5509339 0.5245917 +0.5428591 0.5509339 0.5245917 +0.5469733 0.5509339 0.5245917 +0.5509339 0.5509339 0.5245917 +0.5547519 0.5509339 0.5245917 +0.5584371 0.5509339 0.5245917 +0.5619986 0.5509339 0.5245917 +0.5654443 0.5509339 0.5245917 +0.5687816 0.5509339 0.5245917 +0.092819 0.5547519 0.5245917 +0.2262531 0.5547519 0.5245917 +0.2875993 0.5547519 0.5245917 +0.3262122 0.5547519 0.5245917 +0.3544566 0.5547519 0.5245917 +0.3767383 0.5547519 0.5245917 +0.3951413 0.5547519 0.5245917 +0.4108177 0.5547519 0.5245917 +0.4244723 0.5547519 0.5245917 +0.4365675 0.5547519 0.5245917 +0.4474232 0.5547519 0.5245917 +0.45727 0.5547519 0.5245917 +0.4662797 0.5547519 0.5245917 +0.4745834 0.5547519 0.5245917 +0.4822838 0.5547519 0.5245917 +0.4894626 0.5547519 0.5245917 +0.4961862 0.5547519 0.5245917 +0.5025087 0.5547519 0.5245917 +0.5084753 0.5547519 0.5245917 +0.514124 0.5547519 0.5245917 +0.519487 0.5547519 0.5245917 +0.5245917 0.5547519 0.5245917 +0.529462 0.5547519 0.5245917 +0.5341183 0.5547519 0.5245917 +0.5385787 0.5547519 0.5245917 +0.5428591 0.5547519 0.5245917 +0.5469733 0.5547519 0.5245917 +0.5509339 0.5547519 0.5245917 +0.5547519 0.5547519 0.5245917 +0.5584371 0.5547519 0.5245917 +0.5619986 0.5547519 0.5245917 +0.5654443 0.5547519 0.5245917 +0.5687816 0.5547519 0.5245917 +0.092819 0.5584371 0.5245917 +0.2262531 0.5584371 0.5245917 +0.2875993 0.5584371 0.5245917 +0.3262122 0.5584371 0.5245917 +0.3544566 0.5584371 0.5245917 +0.3767383 0.5584371 0.5245917 +0.3951413 0.5584371 0.5245917 +0.4108177 0.5584371 0.5245917 +0.4244723 0.5584371 0.5245917 +0.4365675 0.5584371 0.5245917 +0.4474232 0.5584371 0.5245917 +0.45727 0.5584371 0.5245917 +0.4662797 0.5584371 0.5245917 +0.4745834 0.5584371 0.5245917 +0.4822838 0.5584371 0.5245917 +0.4894626 0.5584371 0.5245917 +0.4961862 0.5584371 0.5245917 +0.5025087 0.5584371 0.5245917 +0.5084753 0.5584371 0.5245917 +0.514124 0.5584371 0.5245917 +0.519487 0.5584371 0.5245917 +0.5245917 0.5584371 0.5245917 +0.529462 0.5584371 0.5245917 +0.5341183 0.5584371 0.5245917 +0.5385787 0.5584371 0.5245917 +0.5428591 0.5584371 0.5245917 +0.5469733 0.5584371 0.5245917 +0.5509339 0.5584371 0.5245917 +0.5547519 0.5584371 0.5245917 +0.5584371 0.5584371 0.5245917 +0.5619986 0.5584371 0.5245917 +0.5654443 0.5584371 0.5245917 +0.5687816 0.5584371 0.5245917 +0.092819 0.5619986 0.5245917 +0.2262531 0.5619986 0.5245917 +0.2875993 0.5619986 0.5245917 +0.3262122 0.5619986 0.5245917 +0.3544566 0.5619986 0.5245917 +0.3767383 0.5619986 0.5245917 +0.3951413 0.5619986 0.5245917 +0.4108177 0.5619986 0.5245917 +0.4244723 0.5619986 0.5245917 +0.4365675 0.5619986 0.5245917 +0.4474232 0.5619986 0.5245917 +0.45727 0.5619986 0.5245917 +0.4662797 0.5619986 0.5245917 +0.4745834 0.5619986 0.5245917 +0.4822838 0.5619986 0.5245917 +0.4894626 0.5619986 0.5245917 +0.4961862 0.5619986 0.5245917 +0.5025087 0.5619986 0.5245917 +0.5084753 0.5619986 0.5245917 +0.514124 0.5619986 0.5245917 +0.519487 0.5619986 0.5245917 +0.5245917 0.5619986 0.5245917 +0.529462 0.5619986 0.5245917 +0.5341183 0.5619986 0.5245917 +0.5385787 0.5619986 0.5245917 +0.5428591 0.5619986 0.5245917 +0.5469733 0.5619986 0.5245917 +0.5509339 0.5619986 0.5245917 +0.5547519 0.5619986 0.5245917 +0.5584371 0.5619986 0.5245917 +0.5619986 0.5619986 0.5245917 +0.5654443 0.5619986 0.5245917 +0.5687816 0.5619986 0.5245917 +0.092819 0.5654443 0.5245917 +0.2262531 0.5654443 0.5245917 +0.2875993 0.5654443 0.5245917 +0.3262122 0.5654443 0.5245917 +0.3544566 0.5654443 0.5245917 +0.3767383 0.5654443 0.5245917 +0.3951413 0.5654443 0.5245917 +0.4108177 0.5654443 0.5245917 +0.4244723 0.5654443 0.5245917 +0.4365675 0.5654443 0.5245917 +0.4474232 0.5654443 0.5245917 +0.45727 0.5654443 0.5245917 +0.4662797 0.5654443 0.5245917 +0.4745834 0.5654443 0.5245917 +0.4822838 0.5654443 0.5245917 +0.4894626 0.5654443 0.5245917 +0.4961862 0.5654443 0.5245917 +0.5025087 0.5654443 0.5245917 +0.5084753 0.5654443 0.5245917 +0.514124 0.5654443 0.5245917 +0.519487 0.5654443 0.5245917 +0.5245917 0.5654443 0.5245917 +0.529462 0.5654443 0.5245917 +0.5341183 0.5654443 0.5245917 +0.5385787 0.5654443 0.5245917 +0.5428591 0.5654443 0.5245917 +0.5469733 0.5654443 0.5245917 +0.5509339 0.5654443 0.5245917 +0.5547519 0.5654443 0.5245917 +0.5584371 0.5654443 0.5245917 +0.5619986 0.5654443 0.5245917 +0.5654443 0.5654443 0.5245917 +0.5687816 0.5654443 0.5245917 +0.092819 0.5687816 0.5245917 +0.2262531 0.5687816 0.5245917 +0.2875993 0.5687816 0.5245917 +0.3262122 0.5687816 0.5245917 +0.3544566 0.5687816 0.5245917 +0.3767383 0.5687816 0.5245917 +0.3951413 0.5687816 0.5245917 +0.4108177 0.5687816 0.5245917 +0.4244723 0.5687816 0.5245917 +0.4365675 0.5687816 0.5245917 +0.4474232 0.5687816 0.5245917 +0.45727 0.5687816 0.5245917 +0.4662797 0.5687816 0.5245917 +0.4745834 0.5687816 0.5245917 +0.4822838 0.5687816 0.5245917 +0.4894626 0.5687816 0.5245917 +0.4961862 0.5687816 0.5245917 +0.5025087 0.5687816 0.5245917 +0.5084753 0.5687816 0.5245917 +0.514124 0.5687816 0.5245917 +0.519487 0.5687816 0.5245917 +0.5245917 0.5687816 0.5245917 +0.529462 0.5687816 0.5245917 +0.5341183 0.5687816 0.5245917 +0.5385787 0.5687816 0.5245917 +0.5428591 0.5687816 0.5245917 +0.5469733 0.5687816 0.5245917 +0.5509339 0.5687816 0.5245917 +0.5547519 0.5687816 0.5245917 +0.5584371 0.5687816 0.5245917 +0.5619986 0.5687816 0.5245917 +0.5654443 0.5687816 0.5245917 +0.5687816 0.5687816 0.5245917 +0.092819 0.092819 0.529462 +0.2262531 0.092819 0.529462 +0.2875993 0.092819 0.529462 +0.3262122 0.092819 0.529462 +0.3544566 0.092819 0.529462 +0.3767383 0.092819 0.529462 +0.3951413 0.092819 0.529462 +0.4108177 0.092819 0.529462 +0.4244723 0.092819 0.529462 +0.4365675 0.092819 0.529462 +0.4474232 0.092819 0.529462 +0.45727 0.092819 0.529462 +0.4662797 0.092819 0.529462 +0.4745834 0.092819 0.529462 +0.4822838 0.092819 0.529462 +0.4894626 0.092819 0.529462 +0.4961862 0.092819 0.529462 +0.5025087 0.092819 0.529462 +0.5084753 0.092819 0.529462 +0.514124 0.092819 0.529462 +0.519487 0.092819 0.529462 +0.5245917 0.092819 0.529462 +0.529462 0.092819 0.529462 +0.5341183 0.092819 0.529462 +0.5385787 0.092819 0.529462 +0.5428591 0.092819 0.529462 +0.5469733 0.092819 0.529462 +0.5509339 0.092819 0.529462 +0.5547519 0.092819 0.529462 +0.5584371 0.092819 0.529462 +0.5619986 0.092819 0.529462 +0.5654443 0.092819 0.529462 +0.5687816 0.092819 0.529462 +0.092819 0.2262531 0.529462 +0.2262531 0.2262531 0.529462 +0.2875993 0.2262531 0.529462 +0.3262122 0.2262531 0.529462 +0.3544566 0.2262531 0.529462 +0.3767383 0.2262531 0.529462 +0.3951413 0.2262531 0.529462 +0.4108177 0.2262531 0.529462 +0.4244723 0.2262531 0.529462 +0.4365675 0.2262531 0.529462 +0.4474232 0.2262531 0.529462 +0.45727 0.2262531 0.529462 +0.4662797 0.2262531 0.529462 +0.4745834 0.2262531 0.529462 +0.4822838 0.2262531 0.529462 +0.4894626 0.2262531 0.529462 +0.4961862 0.2262531 0.529462 +0.5025087 0.2262531 0.529462 +0.5084753 0.2262531 0.529462 +0.514124 0.2262531 0.529462 +0.519487 0.2262531 0.529462 +0.5245917 0.2262531 0.529462 +0.529462 0.2262531 0.529462 +0.5341183 0.2262531 0.529462 +0.5385787 0.2262531 0.529462 +0.5428591 0.2262531 0.529462 +0.5469733 0.2262531 0.529462 +0.5509339 0.2262531 0.529462 +0.5547519 0.2262531 0.529462 +0.5584371 0.2262531 0.529462 +0.5619986 0.2262531 0.529462 +0.5654443 0.2262531 0.529462 +0.5687816 0.2262531 0.529462 +0.092819 0.2875993 0.529462 +0.2262531 0.2875993 0.529462 +0.2875993 0.2875993 0.529462 +0.3262122 0.2875993 0.529462 +0.3544566 0.2875993 0.529462 +0.3767383 0.2875993 0.529462 +0.3951413 0.2875993 0.529462 +0.4108177 0.2875993 0.529462 +0.4244723 0.2875993 0.529462 +0.4365675 0.2875993 0.529462 +0.4474232 0.2875993 0.529462 +0.45727 0.2875993 0.529462 +0.4662797 0.2875993 0.529462 +0.4745834 0.2875993 0.529462 +0.4822838 0.2875993 0.529462 +0.4894626 0.2875993 0.529462 +0.4961862 0.2875993 0.529462 +0.5025087 0.2875993 0.529462 +0.5084753 0.2875993 0.529462 +0.514124 0.2875993 0.529462 +0.519487 0.2875993 0.529462 +0.5245917 0.2875993 0.529462 +0.529462 0.2875993 0.529462 +0.5341183 0.2875993 0.529462 +0.5385787 0.2875993 0.529462 +0.5428591 0.2875993 0.529462 +0.5469733 0.2875993 0.529462 +0.5509339 0.2875993 0.529462 +0.5547519 0.2875993 0.529462 +0.5584371 0.2875993 0.529462 +0.5619986 0.2875993 0.529462 +0.5654443 0.2875993 0.529462 +0.5687816 0.2875993 0.529462 +0.092819 0.3262122 0.529462 +0.2262531 0.3262122 0.529462 +0.2875993 0.3262122 0.529462 +0.3262122 0.3262122 0.529462 +0.3544566 0.3262122 0.529462 +0.3767383 0.3262122 0.529462 +0.3951413 0.3262122 0.529462 +0.4108177 0.3262122 0.529462 +0.4244723 0.3262122 0.529462 +0.4365675 0.3262122 0.529462 +0.4474232 0.3262122 0.529462 +0.45727 0.3262122 0.529462 +0.4662797 0.3262122 0.529462 +0.4745834 0.3262122 0.529462 +0.4822838 0.3262122 0.529462 +0.4894626 0.3262122 0.529462 +0.4961862 0.3262122 0.529462 +0.5025087 0.3262122 0.529462 +0.5084753 0.3262122 0.529462 +0.514124 0.3262122 0.529462 +0.519487 0.3262122 0.529462 +0.5245917 0.3262122 0.529462 +0.529462 0.3262122 0.529462 +0.5341183 0.3262122 0.529462 +0.5385787 0.3262122 0.529462 +0.5428591 0.3262122 0.529462 +0.5469733 0.3262122 0.529462 +0.5509339 0.3262122 0.529462 +0.5547519 0.3262122 0.529462 +0.5584371 0.3262122 0.529462 +0.5619986 0.3262122 0.529462 +0.5654443 0.3262122 0.529462 +0.5687816 0.3262122 0.529462 +0.092819 0.3544566 0.529462 +0.2262531 0.3544566 0.529462 +0.2875993 0.3544566 0.529462 +0.3262122 0.3544566 0.529462 +0.3544566 0.3544566 0.529462 +0.3767383 0.3544566 0.529462 +0.3951413 0.3544566 0.529462 +0.4108177 0.3544566 0.529462 +0.4244723 0.3544566 0.529462 +0.4365675 0.3544566 0.529462 +0.4474232 0.3544566 0.529462 +0.45727 0.3544566 0.529462 +0.4662797 0.3544566 0.529462 +0.4745834 0.3544566 0.529462 +0.4822838 0.3544566 0.529462 +0.4894626 0.3544566 0.529462 +0.4961862 0.3544566 0.529462 +0.5025087 0.3544566 0.529462 +0.5084753 0.3544566 0.529462 +0.514124 0.3544566 0.529462 +0.519487 0.3544566 0.529462 +0.5245917 0.3544566 0.529462 +0.529462 0.3544566 0.529462 +0.5341183 0.3544566 0.529462 +0.5385787 0.3544566 0.529462 +0.5428591 0.3544566 0.529462 +0.5469733 0.3544566 0.529462 +0.5509339 0.3544566 0.529462 +0.5547519 0.3544566 0.529462 +0.5584371 0.3544566 0.529462 +0.5619986 0.3544566 0.529462 +0.5654443 0.3544566 0.529462 +0.5687816 0.3544566 0.529462 +0.092819 0.3767383 0.529462 +0.2262531 0.3767383 0.529462 +0.2875993 0.3767383 0.529462 +0.3262122 0.3767383 0.529462 +0.3544566 0.3767383 0.529462 +0.3767383 0.3767383 0.529462 +0.3951413 0.3767383 0.529462 +0.4108177 0.3767383 0.529462 +0.4244723 0.3767383 0.529462 +0.4365675 0.3767383 0.529462 +0.4474232 0.3767383 0.529462 +0.45727 0.3767383 0.529462 +0.4662797 0.3767383 0.529462 +0.4745834 0.3767383 0.529462 +0.4822838 0.3767383 0.529462 +0.4894626 0.3767383 0.529462 +0.4961862 0.3767383 0.529462 +0.5025087 0.3767383 0.529462 +0.5084753 0.3767383 0.529462 +0.514124 0.3767383 0.529462 +0.519487 0.3767383 0.529462 +0.5245917 0.3767383 0.529462 +0.529462 0.3767383 0.529462 +0.5341183 0.3767383 0.529462 +0.5385787 0.3767383 0.529462 +0.5428591 0.3767383 0.529462 +0.5469733 0.3767383 0.529462 +0.5509339 0.3767383 0.529462 +0.5547519 0.3767383 0.529462 +0.5584371 0.3767383 0.529462 +0.5619986 0.3767383 0.529462 +0.5654443 0.3767383 0.529462 +0.5687816 0.3767383 0.529462 +0.092819 0.3951413 0.529462 +0.2262531 0.3951413 0.529462 +0.2875993 0.3951413 0.529462 +0.3262122 0.3951413 0.529462 +0.3544566 0.3951413 0.529462 +0.3767383 0.3951413 0.529462 +0.3951413 0.3951413 0.529462 +0.4108177 0.3951413 0.529462 +0.4244723 0.3951413 0.529462 +0.4365675 0.3951413 0.529462 +0.4474232 0.3951413 0.529462 +0.45727 0.3951413 0.529462 +0.4662797 0.3951413 0.529462 +0.4745834 0.3951413 0.529462 +0.4822838 0.3951413 0.529462 +0.4894626 0.3951413 0.529462 +0.4961862 0.3951413 0.529462 +0.5025087 0.3951413 0.529462 +0.5084753 0.3951413 0.529462 +0.514124 0.3951413 0.529462 +0.519487 0.3951413 0.529462 +0.5245917 0.3951413 0.529462 +0.529462 0.3951413 0.529462 +0.5341183 0.3951413 0.529462 +0.5385787 0.3951413 0.529462 +0.5428591 0.3951413 0.529462 +0.5469733 0.3951413 0.529462 +0.5509339 0.3951413 0.529462 +0.5547519 0.3951413 0.529462 +0.5584371 0.3951413 0.529462 +0.5619986 0.3951413 0.529462 +0.5654443 0.3951413 0.529462 +0.5687816 0.3951413 0.529462 +0.092819 0.4108177 0.529462 +0.2262531 0.4108177 0.529462 +0.2875993 0.4108177 0.529462 +0.3262122 0.4108177 0.529462 +0.3544566 0.4108177 0.529462 +0.3767383 0.4108177 0.529462 +0.3951413 0.4108177 0.529462 +0.4108177 0.4108177 0.529462 +0.4244723 0.4108177 0.529462 +0.4365675 0.4108177 0.529462 +0.4474232 0.4108177 0.529462 +0.45727 0.4108177 0.529462 +0.4662797 0.4108177 0.529462 +0.4745834 0.4108177 0.529462 +0.4822838 0.4108177 0.529462 +0.4894626 0.4108177 0.529462 +0.4961862 0.4108177 0.529462 +0.5025087 0.4108177 0.529462 +0.5084753 0.4108177 0.529462 +0.514124 0.4108177 0.529462 +0.519487 0.4108177 0.529462 +0.5245917 0.4108177 0.529462 +0.529462 0.4108177 0.529462 +0.5341183 0.4108177 0.529462 +0.5385787 0.4108177 0.529462 +0.5428591 0.4108177 0.529462 +0.5469733 0.4108177 0.529462 +0.5509339 0.4108177 0.529462 +0.5547519 0.4108177 0.529462 +0.5584371 0.4108177 0.529462 +0.5619986 0.4108177 0.529462 +0.5654443 0.4108177 0.529462 +0.5687816 0.4108177 0.529462 +0.092819 0.4244723 0.529462 +0.2262531 0.4244723 0.529462 +0.2875993 0.4244723 0.529462 +0.3262122 0.4244723 0.529462 +0.3544566 0.4244723 0.529462 +0.3767383 0.4244723 0.529462 +0.3951413 0.4244723 0.529462 +0.4108177 0.4244723 0.529462 +0.4244723 0.4244723 0.529462 +0.4365675 0.4244723 0.529462 +0.4474232 0.4244723 0.529462 +0.45727 0.4244723 0.529462 +0.4662797 0.4244723 0.529462 +0.4745834 0.4244723 0.529462 +0.4822838 0.4244723 0.529462 +0.4894626 0.4244723 0.529462 +0.4961862 0.4244723 0.529462 +0.5025087 0.4244723 0.529462 +0.5084753 0.4244723 0.529462 +0.514124 0.4244723 0.529462 +0.519487 0.4244723 0.529462 +0.5245917 0.4244723 0.529462 +0.529462 0.4244723 0.529462 +0.5341183 0.4244723 0.529462 +0.5385787 0.4244723 0.529462 +0.5428591 0.4244723 0.529462 +0.5469733 0.4244723 0.529462 +0.5509339 0.4244723 0.529462 +0.5547519 0.4244723 0.529462 +0.5584371 0.4244723 0.529462 +0.5619986 0.4244723 0.529462 +0.5654443 0.4244723 0.529462 +0.5687816 0.4244723 0.529462 +0.092819 0.4365675 0.529462 +0.2262531 0.4365675 0.529462 +0.2875993 0.4365675 0.529462 +0.3262122 0.4365675 0.529462 +0.3544566 0.4365675 0.529462 +0.3767383 0.4365675 0.529462 +0.3951413 0.4365675 0.529462 +0.4108177 0.4365675 0.529462 +0.4244723 0.4365675 0.529462 +0.4365675 0.4365675 0.529462 +0.4474232 0.4365675 0.529462 +0.45727 0.4365675 0.529462 +0.4662797 0.4365675 0.529462 +0.4745834 0.4365675 0.529462 +0.4822838 0.4365675 0.529462 +0.4894626 0.4365675 0.529462 +0.4961862 0.4365675 0.529462 +0.5025087 0.4365675 0.529462 +0.5084753 0.4365675 0.529462 +0.514124 0.4365675 0.529462 +0.519487 0.4365675 0.529462 +0.5245917 0.4365675 0.529462 +0.529462 0.4365675 0.529462 +0.5341183 0.4365675 0.529462 +0.5385787 0.4365675 0.529462 +0.5428591 0.4365675 0.529462 +0.5469733 0.4365675 0.529462 +0.5509339 0.4365675 0.529462 +0.5547519 0.4365675 0.529462 +0.5584371 0.4365675 0.529462 +0.5619986 0.4365675 0.529462 +0.5654443 0.4365675 0.529462 +0.5687816 0.4365675 0.529462 +0.092819 0.4474232 0.529462 +0.2262531 0.4474232 0.529462 +0.2875993 0.4474232 0.529462 +0.3262122 0.4474232 0.529462 +0.3544566 0.4474232 0.529462 +0.3767383 0.4474232 0.529462 +0.3951413 0.4474232 0.529462 +0.4108177 0.4474232 0.529462 +0.4244723 0.4474232 0.529462 +0.4365675 0.4474232 0.529462 +0.4474232 0.4474232 0.529462 +0.45727 0.4474232 0.529462 +0.4662797 0.4474232 0.529462 +0.4745834 0.4474232 0.529462 +0.4822838 0.4474232 0.529462 +0.4894626 0.4474232 0.529462 +0.4961862 0.4474232 0.529462 +0.5025087 0.4474232 0.529462 +0.5084753 0.4474232 0.529462 +0.514124 0.4474232 0.529462 +0.519487 0.4474232 0.529462 +0.5245917 0.4474232 0.529462 +0.529462 0.4474232 0.529462 +0.5341183 0.4474232 0.529462 +0.5385787 0.4474232 0.529462 +0.5428591 0.4474232 0.529462 +0.5469733 0.4474232 0.529462 +0.5509339 0.4474232 0.529462 +0.5547519 0.4474232 0.529462 +0.5584371 0.4474232 0.529462 +0.5619986 0.4474232 0.529462 +0.5654443 0.4474232 0.529462 +0.5687816 0.4474232 0.529462 +0.092819 0.45727 0.529462 +0.2262531 0.45727 0.529462 +0.2875993 0.45727 0.529462 +0.3262122 0.45727 0.529462 +0.3544566 0.45727 0.529462 +0.3767383 0.45727 0.529462 +0.3951413 0.45727 0.529462 +0.4108177 0.45727 0.529462 +0.4244723 0.45727 0.529462 +0.4365675 0.45727 0.529462 +0.4474232 0.45727 0.529462 +0.45727 0.45727 0.529462 +0.4662797 0.45727 0.529462 +0.4745834 0.45727 0.529462 +0.4822838 0.45727 0.529462 +0.4894626 0.45727 0.529462 +0.4961862 0.45727 0.529462 +0.5025087 0.45727 0.529462 +0.5084753 0.45727 0.529462 +0.514124 0.45727 0.529462 +0.519487 0.45727 0.529462 +0.5245917 0.45727 0.529462 +0.529462 0.45727 0.529462 +0.5341183 0.45727 0.529462 +0.5385787 0.45727 0.529462 +0.5428591 0.45727 0.529462 +0.5469733 0.45727 0.529462 +0.5509339 0.45727 0.529462 +0.5547519 0.45727 0.529462 +0.5584371 0.45727 0.529462 +0.5619986 0.45727 0.529462 +0.5654443 0.45727 0.529462 +0.5687816 0.45727 0.529462 +0.092819 0.4662797 0.529462 +0.2262531 0.4662797 0.529462 +0.2875993 0.4662797 0.529462 +0.3262122 0.4662797 0.529462 +0.3544566 0.4662797 0.529462 +0.3767383 0.4662797 0.529462 +0.3951413 0.4662797 0.529462 +0.4108177 0.4662797 0.529462 +0.4244723 0.4662797 0.529462 +0.4365675 0.4662797 0.529462 +0.4474232 0.4662797 0.529462 +0.45727 0.4662797 0.529462 +0.4662797 0.4662797 0.529462 +0.4745834 0.4662797 0.529462 +0.4822838 0.4662797 0.529462 +0.4894626 0.4662797 0.529462 +0.4961862 0.4662797 0.529462 +0.5025087 0.4662797 0.529462 +0.5084753 0.4662797 0.529462 +0.514124 0.4662797 0.529462 +0.519487 0.4662797 0.529462 +0.5245917 0.4662797 0.529462 +0.529462 0.4662797 0.529462 +0.5341183 0.4662797 0.529462 +0.5385787 0.4662797 0.529462 +0.5428591 0.4662797 0.529462 +0.5469733 0.4662797 0.529462 +0.5509339 0.4662797 0.529462 +0.5547519 0.4662797 0.529462 +0.5584371 0.4662797 0.529462 +0.5619986 0.4662797 0.529462 +0.5654443 0.4662797 0.529462 +0.5687816 0.4662797 0.529462 +0.092819 0.4745834 0.529462 +0.2262531 0.4745834 0.529462 +0.2875993 0.4745834 0.529462 +0.3262122 0.4745834 0.529462 +0.3544566 0.4745834 0.529462 +0.3767383 0.4745834 0.529462 +0.3951413 0.4745834 0.529462 +0.4108177 0.4745834 0.529462 +0.4244723 0.4745834 0.529462 +0.4365675 0.4745834 0.529462 +0.4474232 0.4745834 0.529462 +0.45727 0.4745834 0.529462 +0.4662797 0.4745834 0.529462 +0.4745834 0.4745834 0.529462 +0.4822838 0.4745834 0.529462 +0.4894626 0.4745834 0.529462 +0.4961862 0.4745834 0.529462 +0.5025087 0.4745834 0.529462 +0.5084753 0.4745834 0.529462 +0.514124 0.4745834 0.529462 +0.519487 0.4745834 0.529462 +0.5245917 0.4745834 0.529462 +0.529462 0.4745834 0.529462 +0.5341183 0.4745834 0.529462 +0.5385787 0.4745834 0.529462 +0.5428591 0.4745834 0.529462 +0.5469733 0.4745834 0.529462 +0.5509339 0.4745834 0.529462 +0.5547519 0.4745834 0.529462 +0.5584371 0.4745834 0.529462 +0.5619986 0.4745834 0.529462 +0.5654443 0.4745834 0.529462 +0.5687816 0.4745834 0.529462 +0.092819 0.4822838 0.529462 +0.2262531 0.4822838 0.529462 +0.2875993 0.4822838 0.529462 +0.3262122 0.4822838 0.529462 +0.3544566 0.4822838 0.529462 +0.3767383 0.4822838 0.529462 +0.3951413 0.4822838 0.529462 +0.4108177 0.4822838 0.529462 +0.4244723 0.4822838 0.529462 +0.4365675 0.4822838 0.529462 +0.4474232 0.4822838 0.529462 +0.45727 0.4822838 0.529462 +0.4662797 0.4822838 0.529462 +0.4745834 0.4822838 0.529462 +0.4822838 0.4822838 0.529462 +0.4894626 0.4822838 0.529462 +0.4961862 0.4822838 0.529462 +0.5025087 0.4822838 0.529462 +0.5084753 0.4822838 0.529462 +0.514124 0.4822838 0.529462 +0.519487 0.4822838 0.529462 +0.5245917 0.4822838 0.529462 +0.529462 0.4822838 0.529462 +0.5341183 0.4822838 0.529462 +0.5385787 0.4822838 0.529462 +0.5428591 0.4822838 0.529462 +0.5469733 0.4822838 0.529462 +0.5509339 0.4822838 0.529462 +0.5547519 0.4822838 0.529462 +0.5584371 0.4822838 0.529462 +0.5619986 0.4822838 0.529462 +0.5654443 0.4822838 0.529462 +0.5687816 0.4822838 0.529462 +0.092819 0.4894626 0.529462 +0.2262531 0.4894626 0.529462 +0.2875993 0.4894626 0.529462 +0.3262122 0.4894626 0.529462 +0.3544566 0.4894626 0.529462 +0.3767383 0.4894626 0.529462 +0.3951413 0.4894626 0.529462 +0.4108177 0.4894626 0.529462 +0.4244723 0.4894626 0.529462 +0.4365675 0.4894626 0.529462 +0.4474232 0.4894626 0.529462 +0.45727 0.4894626 0.529462 +0.4662797 0.4894626 0.529462 +0.4745834 0.4894626 0.529462 +0.4822838 0.4894626 0.529462 +0.4894626 0.4894626 0.529462 +0.4961862 0.4894626 0.529462 +0.5025087 0.4894626 0.529462 +0.5084753 0.4894626 0.529462 +0.514124 0.4894626 0.529462 +0.519487 0.4894626 0.529462 +0.5245917 0.4894626 0.529462 +0.529462 0.4894626 0.529462 +0.5341183 0.4894626 0.529462 +0.5385787 0.4894626 0.529462 +0.5428591 0.4894626 0.529462 +0.5469733 0.4894626 0.529462 +0.5509339 0.4894626 0.529462 +0.5547519 0.4894626 0.529462 +0.5584371 0.4894626 0.529462 +0.5619986 0.4894626 0.529462 +0.5654443 0.4894626 0.529462 +0.5687816 0.4894626 0.529462 +0.092819 0.4961862 0.529462 +0.2262531 0.4961862 0.529462 +0.2875993 0.4961862 0.529462 +0.3262122 0.4961862 0.529462 +0.3544566 0.4961862 0.529462 +0.3767383 0.4961862 0.529462 +0.3951413 0.4961862 0.529462 +0.4108177 0.4961862 0.529462 +0.4244723 0.4961862 0.529462 +0.4365675 0.4961862 0.529462 +0.4474232 0.4961862 0.529462 +0.45727 0.4961862 0.529462 +0.4662797 0.4961862 0.529462 +0.4745834 0.4961862 0.529462 +0.4822838 0.4961862 0.529462 +0.4894626 0.4961862 0.529462 +0.4961862 0.4961862 0.529462 +0.5025087 0.4961862 0.529462 +0.5084753 0.4961862 0.529462 +0.514124 0.4961862 0.529462 +0.519487 0.4961862 0.529462 +0.5245917 0.4961862 0.529462 +0.529462 0.4961862 0.529462 +0.5341183 0.4961862 0.529462 +0.5385787 0.4961862 0.529462 +0.5428591 0.4961862 0.529462 +0.5469733 0.4961862 0.529462 +0.5509339 0.4961862 0.529462 +0.5547519 0.4961862 0.529462 +0.5584371 0.4961862 0.529462 +0.5619986 0.4961862 0.529462 +0.5654443 0.4961862 0.529462 +0.5687816 0.4961862 0.529462 +0.092819 0.5025087 0.529462 +0.2262531 0.5025087 0.529462 +0.2875993 0.5025087 0.529462 +0.3262122 0.5025087 0.529462 +0.3544566 0.5025087 0.529462 +0.3767383 0.5025087 0.529462 +0.3951413 0.5025087 0.529462 +0.4108177 0.5025087 0.529462 +0.4244723 0.5025087 0.529462 +0.4365675 0.5025087 0.529462 +0.4474232 0.5025087 0.529462 +0.45727 0.5025087 0.529462 +0.4662797 0.5025087 0.529462 +0.4745834 0.5025087 0.529462 +0.4822838 0.5025087 0.529462 +0.4894626 0.5025087 0.529462 +0.4961862 0.5025087 0.529462 +0.5025087 0.5025087 0.529462 +0.5084753 0.5025087 0.529462 +0.514124 0.5025087 0.529462 +0.519487 0.5025087 0.529462 +0.5245917 0.5025087 0.529462 +0.529462 0.5025087 0.529462 +0.5341183 0.5025087 0.529462 +0.5385787 0.5025087 0.529462 +0.5428591 0.5025087 0.529462 +0.5469733 0.5025087 0.529462 +0.5509339 0.5025087 0.529462 +0.5547519 0.5025087 0.529462 +0.5584371 0.5025087 0.529462 +0.5619986 0.5025087 0.529462 +0.5654443 0.5025087 0.529462 +0.5687816 0.5025087 0.529462 +0.092819 0.5084753 0.529462 +0.2262531 0.5084753 0.529462 +0.2875993 0.5084753 0.529462 +0.3262122 0.5084753 0.529462 +0.3544566 0.5084753 0.529462 +0.3767383 0.5084753 0.529462 +0.3951413 0.5084753 0.529462 +0.4108177 0.5084753 0.529462 +0.4244723 0.5084753 0.529462 +0.4365675 0.5084753 0.529462 +0.4474232 0.5084753 0.529462 +0.45727 0.5084753 0.529462 +0.4662797 0.5084753 0.529462 +0.4745834 0.5084753 0.529462 +0.4822838 0.5084753 0.529462 +0.4894626 0.5084753 0.529462 +0.4961862 0.5084753 0.529462 +0.5025087 0.5084753 0.529462 +0.5084753 0.5084753 0.529462 +0.514124 0.5084753 0.529462 +0.519487 0.5084753 0.529462 +0.5245917 0.5084753 0.529462 +0.529462 0.5084753 0.529462 +0.5341183 0.5084753 0.529462 +0.5385787 0.5084753 0.529462 +0.5428591 0.5084753 0.529462 +0.5469733 0.5084753 0.529462 +0.5509339 0.5084753 0.529462 +0.5547519 0.5084753 0.529462 +0.5584371 0.5084753 0.529462 +0.5619986 0.5084753 0.529462 +0.5654443 0.5084753 0.529462 +0.5687816 0.5084753 0.529462 +0.092819 0.514124 0.529462 +0.2262531 0.514124 0.529462 +0.2875993 0.514124 0.529462 +0.3262122 0.514124 0.529462 +0.3544566 0.514124 0.529462 +0.3767383 0.514124 0.529462 +0.3951413 0.514124 0.529462 +0.4108177 0.514124 0.529462 +0.4244723 0.514124 0.529462 +0.4365675 0.514124 0.529462 +0.4474232 0.514124 0.529462 +0.45727 0.514124 0.529462 +0.4662797 0.514124 0.529462 +0.4745834 0.514124 0.529462 +0.4822838 0.514124 0.529462 +0.4894626 0.514124 0.529462 +0.4961862 0.514124 0.529462 +0.5025087 0.514124 0.529462 +0.5084753 0.514124 0.529462 +0.514124 0.514124 0.529462 +0.519487 0.514124 0.529462 +0.5245917 0.514124 0.529462 +0.529462 0.514124 0.529462 +0.5341183 0.514124 0.529462 +0.5385787 0.514124 0.529462 +0.5428591 0.514124 0.529462 +0.5469733 0.514124 0.529462 +0.5509339 0.514124 0.529462 +0.5547519 0.514124 0.529462 +0.5584371 0.514124 0.529462 +0.5619986 0.514124 0.529462 +0.5654443 0.514124 0.529462 +0.5687816 0.514124 0.529462 +0.092819 0.519487 0.529462 +0.2262531 0.519487 0.529462 +0.2875993 0.519487 0.529462 +0.3262122 0.519487 0.529462 +0.3544566 0.519487 0.529462 +0.3767383 0.519487 0.529462 +0.3951413 0.519487 0.529462 +0.4108177 0.519487 0.529462 +0.4244723 0.519487 0.529462 +0.4365675 0.519487 0.529462 +0.4474232 0.519487 0.529462 +0.45727 0.519487 0.529462 +0.4662797 0.519487 0.529462 +0.4745834 0.519487 0.529462 +0.4822838 0.519487 0.529462 +0.4894626 0.519487 0.529462 +0.4961862 0.519487 0.529462 +0.5025087 0.519487 0.529462 +0.5084753 0.519487 0.529462 +0.514124 0.519487 0.529462 +0.519487 0.519487 0.529462 +0.5245917 0.519487 0.529462 +0.529462 0.519487 0.529462 +0.5341183 0.519487 0.529462 +0.5385787 0.519487 0.529462 +0.5428591 0.519487 0.529462 +0.5469733 0.519487 0.529462 +0.5509339 0.519487 0.529462 +0.5547519 0.519487 0.529462 +0.5584371 0.519487 0.529462 +0.5619986 0.519487 0.529462 +0.5654443 0.519487 0.529462 +0.5687816 0.519487 0.529462 +0.092819 0.5245917 0.529462 +0.2262531 0.5245917 0.529462 +0.2875993 0.5245917 0.529462 +0.3262122 0.5245917 0.529462 +0.3544566 0.5245917 0.529462 +0.3767383 0.5245917 0.529462 +0.3951413 0.5245917 0.529462 +0.4108177 0.5245917 0.529462 +0.4244723 0.5245917 0.529462 +0.4365675 0.5245917 0.529462 +0.4474232 0.5245917 0.529462 +0.45727 0.5245917 0.529462 +0.4662797 0.5245917 0.529462 +0.4745834 0.5245917 0.529462 +0.4822838 0.5245917 0.529462 +0.4894626 0.5245917 0.529462 +0.4961862 0.5245917 0.529462 +0.5025087 0.5245917 0.529462 +0.5084753 0.5245917 0.529462 +0.514124 0.5245917 0.529462 +0.519487 0.5245917 0.529462 +0.5245917 0.5245917 0.529462 +0.529462 0.5245917 0.529462 +0.5341183 0.5245917 0.529462 +0.5385787 0.5245917 0.529462 +0.5428591 0.5245917 0.529462 +0.5469733 0.5245917 0.529462 +0.5509339 0.5245917 0.529462 +0.5547519 0.5245917 0.529462 +0.5584371 0.5245917 0.529462 +0.5619986 0.5245917 0.529462 +0.5654443 0.5245917 0.529462 +0.5687816 0.5245917 0.529462 +0.092819 0.529462 0.529462 +0.2262531 0.529462 0.529462 +0.2875993 0.529462 0.529462 +0.3262122 0.529462 0.529462 +0.3544566 0.529462 0.529462 +0.3767383 0.529462 0.529462 +0.3951413 0.529462 0.529462 +0.4108177 0.529462 0.529462 +0.4244723 0.529462 0.529462 +0.4365675 0.529462 0.529462 +0.4474232 0.529462 0.529462 +0.45727 0.529462 0.529462 +0.4662797 0.529462 0.529462 +0.4745834 0.529462 0.529462 +0.4822838 0.529462 0.529462 +0.4894626 0.529462 0.529462 +0.4961862 0.529462 0.529462 +0.5025087 0.529462 0.529462 +0.5084753 0.529462 0.529462 +0.514124 0.529462 0.529462 +0.519487 0.529462 0.529462 +0.5245917 0.529462 0.529462 +0.529462 0.529462 0.529462 +0.5341183 0.529462 0.529462 +0.5385787 0.529462 0.529462 +0.5428591 0.529462 0.529462 +0.5469733 0.529462 0.529462 +0.5509339 0.529462 0.529462 +0.5547519 0.529462 0.529462 +0.5584371 0.529462 0.529462 +0.5619986 0.529462 0.529462 +0.5654443 0.529462 0.529462 +0.5687816 0.529462 0.529462 +0.092819 0.5341183 0.529462 +0.2262531 0.5341183 0.529462 +0.2875993 0.5341183 0.529462 +0.3262122 0.5341183 0.529462 +0.3544566 0.5341183 0.529462 +0.3767383 0.5341183 0.529462 +0.3951413 0.5341183 0.529462 +0.4108177 0.5341183 0.529462 +0.4244723 0.5341183 0.529462 +0.4365675 0.5341183 0.529462 +0.4474232 0.5341183 0.529462 +0.45727 0.5341183 0.529462 +0.4662797 0.5341183 0.529462 +0.4745834 0.5341183 0.529462 +0.4822838 0.5341183 0.529462 +0.4894626 0.5341183 0.529462 +0.4961862 0.5341183 0.529462 +0.5025087 0.5341183 0.529462 +0.5084753 0.5341183 0.529462 +0.514124 0.5341183 0.529462 +0.519487 0.5341183 0.529462 +0.5245917 0.5341183 0.529462 +0.529462 0.5341183 0.529462 +0.5341183 0.5341183 0.529462 +0.5385787 0.5341183 0.529462 +0.5428591 0.5341183 0.529462 +0.5469733 0.5341183 0.529462 +0.5509339 0.5341183 0.529462 +0.5547519 0.5341183 0.529462 +0.5584371 0.5341183 0.529462 +0.5619986 0.5341183 0.529462 +0.5654443 0.5341183 0.529462 +0.5687816 0.5341183 0.529462 +0.092819 0.5385787 0.529462 +0.2262531 0.5385787 0.529462 +0.2875993 0.5385787 0.529462 +0.3262122 0.5385787 0.529462 +0.3544566 0.5385787 0.529462 +0.3767383 0.5385787 0.529462 +0.3951413 0.5385787 0.529462 +0.4108177 0.5385787 0.529462 +0.4244723 0.5385787 0.529462 +0.4365675 0.5385787 0.529462 +0.4474232 0.5385787 0.529462 +0.45727 0.5385787 0.529462 +0.4662797 0.5385787 0.529462 +0.4745834 0.5385787 0.529462 +0.4822838 0.5385787 0.529462 +0.4894626 0.5385787 0.529462 +0.4961862 0.5385787 0.529462 +0.5025087 0.5385787 0.529462 +0.5084753 0.5385787 0.529462 +0.514124 0.5385787 0.529462 +0.519487 0.5385787 0.529462 +0.5245917 0.5385787 0.529462 +0.529462 0.5385787 0.529462 +0.5341183 0.5385787 0.529462 +0.5385787 0.5385787 0.529462 +0.5428591 0.5385787 0.529462 +0.5469733 0.5385787 0.529462 +0.5509339 0.5385787 0.529462 +0.5547519 0.5385787 0.529462 +0.5584371 0.5385787 0.529462 +0.5619986 0.5385787 0.529462 +0.5654443 0.5385787 0.529462 +0.5687816 0.5385787 0.529462 +0.092819 0.5428591 0.529462 +0.2262531 0.5428591 0.529462 +0.2875993 0.5428591 0.529462 +0.3262122 0.5428591 0.529462 +0.3544566 0.5428591 0.529462 +0.3767383 0.5428591 0.529462 +0.3951413 0.5428591 0.529462 +0.4108177 0.5428591 0.529462 +0.4244723 0.5428591 0.529462 +0.4365675 0.5428591 0.529462 +0.4474232 0.5428591 0.529462 +0.45727 0.5428591 0.529462 +0.4662797 0.5428591 0.529462 +0.4745834 0.5428591 0.529462 +0.4822838 0.5428591 0.529462 +0.4894626 0.5428591 0.529462 +0.4961862 0.5428591 0.529462 +0.5025087 0.5428591 0.529462 +0.5084753 0.5428591 0.529462 +0.514124 0.5428591 0.529462 +0.519487 0.5428591 0.529462 +0.5245917 0.5428591 0.529462 +0.529462 0.5428591 0.529462 +0.5341183 0.5428591 0.529462 +0.5385787 0.5428591 0.529462 +0.5428591 0.5428591 0.529462 +0.5469733 0.5428591 0.529462 +0.5509339 0.5428591 0.529462 +0.5547519 0.5428591 0.529462 +0.5584371 0.5428591 0.529462 +0.5619986 0.5428591 0.529462 +0.5654443 0.5428591 0.529462 +0.5687816 0.5428591 0.529462 +0.092819 0.5469733 0.529462 +0.2262531 0.5469733 0.529462 +0.2875993 0.5469733 0.529462 +0.3262122 0.5469733 0.529462 +0.3544566 0.5469733 0.529462 +0.3767383 0.5469733 0.529462 +0.3951413 0.5469733 0.529462 +0.4108177 0.5469733 0.529462 +0.4244723 0.5469733 0.529462 +0.4365675 0.5469733 0.529462 +0.4474232 0.5469733 0.529462 +0.45727 0.5469733 0.529462 +0.4662797 0.5469733 0.529462 +0.4745834 0.5469733 0.529462 +0.4822838 0.5469733 0.529462 +0.4894626 0.5469733 0.529462 +0.4961862 0.5469733 0.529462 +0.5025087 0.5469733 0.529462 +0.5084753 0.5469733 0.529462 +0.514124 0.5469733 0.529462 +0.519487 0.5469733 0.529462 +0.5245917 0.5469733 0.529462 +0.529462 0.5469733 0.529462 +0.5341183 0.5469733 0.529462 +0.5385787 0.5469733 0.529462 +0.5428591 0.5469733 0.529462 +0.5469733 0.5469733 0.529462 +0.5509339 0.5469733 0.529462 +0.5547519 0.5469733 0.529462 +0.5584371 0.5469733 0.529462 +0.5619986 0.5469733 0.529462 +0.5654443 0.5469733 0.529462 +0.5687816 0.5469733 0.529462 +0.092819 0.5509339 0.529462 +0.2262531 0.5509339 0.529462 +0.2875993 0.5509339 0.529462 +0.3262122 0.5509339 0.529462 +0.3544566 0.5509339 0.529462 +0.3767383 0.5509339 0.529462 +0.3951413 0.5509339 0.529462 +0.4108177 0.5509339 0.529462 +0.4244723 0.5509339 0.529462 +0.4365675 0.5509339 0.529462 +0.4474232 0.5509339 0.529462 +0.45727 0.5509339 0.529462 +0.4662797 0.5509339 0.529462 +0.4745834 0.5509339 0.529462 +0.4822838 0.5509339 0.529462 +0.4894626 0.5509339 0.529462 +0.4961862 0.5509339 0.529462 +0.5025087 0.5509339 0.529462 +0.5084753 0.5509339 0.529462 +0.514124 0.5509339 0.529462 +0.519487 0.5509339 0.529462 +0.5245917 0.5509339 0.529462 +0.529462 0.5509339 0.529462 +0.5341183 0.5509339 0.529462 +0.5385787 0.5509339 0.529462 +0.5428591 0.5509339 0.529462 +0.5469733 0.5509339 0.529462 +0.5509339 0.5509339 0.529462 +0.5547519 0.5509339 0.529462 +0.5584371 0.5509339 0.529462 +0.5619986 0.5509339 0.529462 +0.5654443 0.5509339 0.529462 +0.5687816 0.5509339 0.529462 +0.092819 0.5547519 0.529462 +0.2262531 0.5547519 0.529462 +0.2875993 0.5547519 0.529462 +0.3262122 0.5547519 0.529462 +0.3544566 0.5547519 0.529462 +0.3767383 0.5547519 0.529462 +0.3951413 0.5547519 0.529462 +0.4108177 0.5547519 0.529462 +0.4244723 0.5547519 0.529462 +0.4365675 0.5547519 0.529462 +0.4474232 0.5547519 0.529462 +0.45727 0.5547519 0.529462 +0.4662797 0.5547519 0.529462 +0.4745834 0.5547519 0.529462 +0.4822838 0.5547519 0.529462 +0.4894626 0.5547519 0.529462 +0.4961862 0.5547519 0.529462 +0.5025087 0.5547519 0.529462 +0.5084753 0.5547519 0.529462 +0.514124 0.5547519 0.529462 +0.519487 0.5547519 0.529462 +0.5245917 0.5547519 0.529462 +0.529462 0.5547519 0.529462 +0.5341183 0.5547519 0.529462 +0.5385787 0.5547519 0.529462 +0.5428591 0.5547519 0.529462 +0.5469733 0.5547519 0.529462 +0.5509339 0.5547519 0.529462 +0.5547519 0.5547519 0.529462 +0.5584371 0.5547519 0.529462 +0.5619986 0.5547519 0.529462 +0.5654443 0.5547519 0.529462 +0.5687816 0.5547519 0.529462 +0.092819 0.5584371 0.529462 +0.2262531 0.5584371 0.529462 +0.2875993 0.5584371 0.529462 +0.3262122 0.5584371 0.529462 +0.3544566 0.5584371 0.529462 +0.3767383 0.5584371 0.529462 +0.3951413 0.5584371 0.529462 +0.4108177 0.5584371 0.529462 +0.4244723 0.5584371 0.529462 +0.4365675 0.5584371 0.529462 +0.4474232 0.5584371 0.529462 +0.45727 0.5584371 0.529462 +0.4662797 0.5584371 0.529462 +0.4745834 0.5584371 0.529462 +0.4822838 0.5584371 0.529462 +0.4894626 0.5584371 0.529462 +0.4961862 0.5584371 0.529462 +0.5025087 0.5584371 0.529462 +0.5084753 0.5584371 0.529462 +0.514124 0.5584371 0.529462 +0.519487 0.5584371 0.529462 +0.5245917 0.5584371 0.529462 +0.529462 0.5584371 0.529462 +0.5341183 0.5584371 0.529462 +0.5385787 0.5584371 0.529462 +0.5428591 0.5584371 0.529462 +0.5469733 0.5584371 0.529462 +0.5509339 0.5584371 0.529462 +0.5547519 0.5584371 0.529462 +0.5584371 0.5584371 0.529462 +0.5619986 0.5584371 0.529462 +0.5654443 0.5584371 0.529462 +0.5687816 0.5584371 0.529462 +0.092819 0.5619986 0.529462 +0.2262531 0.5619986 0.529462 +0.2875993 0.5619986 0.529462 +0.3262122 0.5619986 0.529462 +0.3544566 0.5619986 0.529462 +0.3767383 0.5619986 0.529462 +0.3951413 0.5619986 0.529462 +0.4108177 0.5619986 0.529462 +0.4244723 0.5619986 0.529462 +0.4365675 0.5619986 0.529462 +0.4474232 0.5619986 0.529462 +0.45727 0.5619986 0.529462 +0.4662797 0.5619986 0.529462 +0.4745834 0.5619986 0.529462 +0.4822838 0.5619986 0.529462 +0.4894626 0.5619986 0.529462 +0.4961862 0.5619986 0.529462 +0.5025087 0.5619986 0.529462 +0.5084753 0.5619986 0.529462 +0.514124 0.5619986 0.529462 +0.519487 0.5619986 0.529462 +0.5245917 0.5619986 0.529462 +0.529462 0.5619986 0.529462 +0.5341183 0.5619986 0.529462 +0.5385787 0.5619986 0.529462 +0.5428591 0.5619986 0.529462 +0.5469733 0.5619986 0.529462 +0.5509339 0.5619986 0.529462 +0.5547519 0.5619986 0.529462 +0.5584371 0.5619986 0.529462 +0.5619986 0.5619986 0.529462 +0.5654443 0.5619986 0.529462 +0.5687816 0.5619986 0.529462 +0.092819 0.5654443 0.529462 +0.2262531 0.5654443 0.529462 +0.2875993 0.5654443 0.529462 +0.3262122 0.5654443 0.529462 +0.3544566 0.5654443 0.529462 +0.3767383 0.5654443 0.529462 +0.3951413 0.5654443 0.529462 +0.4108177 0.5654443 0.529462 +0.4244723 0.5654443 0.529462 +0.4365675 0.5654443 0.529462 +0.4474232 0.5654443 0.529462 +0.45727 0.5654443 0.529462 +0.4662797 0.5654443 0.529462 +0.4745834 0.5654443 0.529462 +0.4822838 0.5654443 0.529462 +0.4894626 0.5654443 0.529462 +0.4961862 0.5654443 0.529462 +0.5025087 0.5654443 0.529462 +0.5084753 0.5654443 0.529462 +0.514124 0.5654443 0.529462 +0.519487 0.5654443 0.529462 +0.5245917 0.5654443 0.529462 +0.529462 0.5654443 0.529462 +0.5341183 0.5654443 0.529462 +0.5385787 0.5654443 0.529462 +0.5428591 0.5654443 0.529462 +0.5469733 0.5654443 0.529462 +0.5509339 0.5654443 0.529462 +0.5547519 0.5654443 0.529462 +0.5584371 0.5654443 0.529462 +0.5619986 0.5654443 0.529462 +0.5654443 0.5654443 0.529462 +0.5687816 0.5654443 0.529462 +0.092819 0.5687816 0.529462 +0.2262531 0.5687816 0.529462 +0.2875993 0.5687816 0.529462 +0.3262122 0.5687816 0.529462 +0.3544566 0.5687816 0.529462 +0.3767383 0.5687816 0.529462 +0.3951413 0.5687816 0.529462 +0.4108177 0.5687816 0.529462 +0.4244723 0.5687816 0.529462 +0.4365675 0.5687816 0.529462 +0.4474232 0.5687816 0.529462 +0.45727 0.5687816 0.529462 +0.4662797 0.5687816 0.529462 +0.4745834 0.5687816 0.529462 +0.4822838 0.5687816 0.529462 +0.4894626 0.5687816 0.529462 +0.4961862 0.5687816 0.529462 +0.5025087 0.5687816 0.529462 +0.5084753 0.5687816 0.529462 +0.514124 0.5687816 0.529462 +0.519487 0.5687816 0.529462 +0.5245917 0.5687816 0.529462 +0.529462 0.5687816 0.529462 +0.5341183 0.5687816 0.529462 +0.5385787 0.5687816 0.529462 +0.5428591 0.5687816 0.529462 +0.5469733 0.5687816 0.529462 +0.5509339 0.5687816 0.529462 +0.5547519 0.5687816 0.529462 +0.5584371 0.5687816 0.529462 +0.5619986 0.5687816 0.529462 +0.5654443 0.5687816 0.529462 +0.5687816 0.5687816 0.529462 +0.092819 0.092819 0.5341183 +0.2262531 0.092819 0.5341183 +0.2875993 0.092819 0.5341183 +0.3262122 0.092819 0.5341183 +0.3544566 0.092819 0.5341183 +0.3767383 0.092819 0.5341183 +0.3951413 0.092819 0.5341183 +0.4108177 0.092819 0.5341183 +0.4244723 0.092819 0.5341183 +0.4365675 0.092819 0.5341183 +0.4474232 0.092819 0.5341183 +0.45727 0.092819 0.5341183 +0.4662797 0.092819 0.5341183 +0.4745834 0.092819 0.5341183 +0.4822838 0.092819 0.5341183 +0.4894626 0.092819 0.5341183 +0.4961862 0.092819 0.5341183 +0.5025087 0.092819 0.5341183 +0.5084753 0.092819 0.5341183 +0.514124 0.092819 0.5341183 +0.519487 0.092819 0.5341183 +0.5245917 0.092819 0.5341183 +0.529462 0.092819 0.5341183 +0.5341183 0.092819 0.5341183 +0.5385787 0.092819 0.5341183 +0.5428591 0.092819 0.5341183 +0.5469733 0.092819 0.5341183 +0.5509339 0.092819 0.5341183 +0.5547519 0.092819 0.5341183 +0.5584371 0.092819 0.5341183 +0.5619986 0.092819 0.5341183 +0.5654443 0.092819 0.5341183 +0.5687816 0.092819 0.5341183 +0.092819 0.2262531 0.5341183 +0.2262531 0.2262531 0.5341183 +0.2875993 0.2262531 0.5341183 +0.3262122 0.2262531 0.5341183 +0.3544566 0.2262531 0.5341183 +0.3767383 0.2262531 0.5341183 +0.3951413 0.2262531 0.5341183 +0.4108177 0.2262531 0.5341183 +0.4244723 0.2262531 0.5341183 +0.4365675 0.2262531 0.5341183 +0.4474232 0.2262531 0.5341183 +0.45727 0.2262531 0.5341183 +0.4662797 0.2262531 0.5341183 +0.4745834 0.2262531 0.5341183 +0.4822838 0.2262531 0.5341183 +0.4894626 0.2262531 0.5341183 +0.4961862 0.2262531 0.5341183 +0.5025087 0.2262531 0.5341183 +0.5084753 0.2262531 0.5341183 +0.514124 0.2262531 0.5341183 +0.519487 0.2262531 0.5341183 +0.5245917 0.2262531 0.5341183 +0.529462 0.2262531 0.5341183 +0.5341183 0.2262531 0.5341183 +0.5385787 0.2262531 0.5341183 +0.5428591 0.2262531 0.5341183 +0.5469733 0.2262531 0.5341183 +0.5509339 0.2262531 0.5341183 +0.5547519 0.2262531 0.5341183 +0.5584371 0.2262531 0.5341183 +0.5619986 0.2262531 0.5341183 +0.5654443 0.2262531 0.5341183 +0.5687816 0.2262531 0.5341183 +0.092819 0.2875993 0.5341183 +0.2262531 0.2875993 0.5341183 +0.2875993 0.2875993 0.5341183 +0.3262122 0.2875993 0.5341183 +0.3544566 0.2875993 0.5341183 +0.3767383 0.2875993 0.5341183 +0.3951413 0.2875993 0.5341183 +0.4108177 0.2875993 0.5341183 +0.4244723 0.2875993 0.5341183 +0.4365675 0.2875993 0.5341183 +0.4474232 0.2875993 0.5341183 +0.45727 0.2875993 0.5341183 +0.4662797 0.2875993 0.5341183 +0.4745834 0.2875993 0.5341183 +0.4822838 0.2875993 0.5341183 +0.4894626 0.2875993 0.5341183 +0.4961862 0.2875993 0.5341183 +0.5025087 0.2875993 0.5341183 +0.5084753 0.2875993 0.5341183 +0.514124 0.2875993 0.5341183 +0.519487 0.2875993 0.5341183 +0.5245917 0.2875993 0.5341183 +0.529462 0.2875993 0.5341183 +0.5341183 0.2875993 0.5341183 +0.5385787 0.2875993 0.5341183 +0.5428591 0.2875993 0.5341183 +0.5469733 0.2875993 0.5341183 +0.5509339 0.2875993 0.5341183 +0.5547519 0.2875993 0.5341183 +0.5584371 0.2875993 0.5341183 +0.5619986 0.2875993 0.5341183 +0.5654443 0.2875993 0.5341183 +0.5687816 0.2875993 0.5341183 +0.092819 0.3262122 0.5341183 +0.2262531 0.3262122 0.5341183 +0.2875993 0.3262122 0.5341183 +0.3262122 0.3262122 0.5341183 +0.3544566 0.3262122 0.5341183 +0.3767383 0.3262122 0.5341183 +0.3951413 0.3262122 0.5341183 +0.4108177 0.3262122 0.5341183 +0.4244723 0.3262122 0.5341183 +0.4365675 0.3262122 0.5341183 +0.4474232 0.3262122 0.5341183 +0.45727 0.3262122 0.5341183 +0.4662797 0.3262122 0.5341183 +0.4745834 0.3262122 0.5341183 +0.4822838 0.3262122 0.5341183 +0.4894626 0.3262122 0.5341183 +0.4961862 0.3262122 0.5341183 +0.5025087 0.3262122 0.5341183 +0.5084753 0.3262122 0.5341183 +0.514124 0.3262122 0.5341183 +0.519487 0.3262122 0.5341183 +0.5245917 0.3262122 0.5341183 +0.529462 0.3262122 0.5341183 +0.5341183 0.3262122 0.5341183 +0.5385787 0.3262122 0.5341183 +0.5428591 0.3262122 0.5341183 +0.5469733 0.3262122 0.5341183 +0.5509339 0.3262122 0.5341183 +0.5547519 0.3262122 0.5341183 +0.5584371 0.3262122 0.5341183 +0.5619986 0.3262122 0.5341183 +0.5654443 0.3262122 0.5341183 +0.5687816 0.3262122 0.5341183 +0.092819 0.3544566 0.5341183 +0.2262531 0.3544566 0.5341183 +0.2875993 0.3544566 0.5341183 +0.3262122 0.3544566 0.5341183 +0.3544566 0.3544566 0.5341183 +0.3767383 0.3544566 0.5341183 +0.3951413 0.3544566 0.5341183 +0.4108177 0.3544566 0.5341183 +0.4244723 0.3544566 0.5341183 +0.4365675 0.3544566 0.5341183 +0.4474232 0.3544566 0.5341183 +0.45727 0.3544566 0.5341183 +0.4662797 0.3544566 0.5341183 +0.4745834 0.3544566 0.5341183 +0.4822838 0.3544566 0.5341183 +0.4894626 0.3544566 0.5341183 +0.4961862 0.3544566 0.5341183 +0.5025087 0.3544566 0.5341183 +0.5084753 0.3544566 0.5341183 +0.514124 0.3544566 0.5341183 +0.519487 0.3544566 0.5341183 +0.5245917 0.3544566 0.5341183 +0.529462 0.3544566 0.5341183 +0.5341183 0.3544566 0.5341183 +0.5385787 0.3544566 0.5341183 +0.5428591 0.3544566 0.5341183 +0.5469733 0.3544566 0.5341183 +0.5509339 0.3544566 0.5341183 +0.5547519 0.3544566 0.5341183 +0.5584371 0.3544566 0.5341183 +0.5619986 0.3544566 0.5341183 +0.5654443 0.3544566 0.5341183 +0.5687816 0.3544566 0.5341183 +0.092819 0.3767383 0.5341183 +0.2262531 0.3767383 0.5341183 +0.2875993 0.3767383 0.5341183 +0.3262122 0.3767383 0.5341183 +0.3544566 0.3767383 0.5341183 +0.3767383 0.3767383 0.5341183 +0.3951413 0.3767383 0.5341183 +0.4108177 0.3767383 0.5341183 +0.4244723 0.3767383 0.5341183 +0.4365675 0.3767383 0.5341183 +0.4474232 0.3767383 0.5341183 +0.45727 0.3767383 0.5341183 +0.4662797 0.3767383 0.5341183 +0.4745834 0.3767383 0.5341183 +0.4822838 0.3767383 0.5341183 +0.4894626 0.3767383 0.5341183 +0.4961862 0.3767383 0.5341183 +0.5025087 0.3767383 0.5341183 +0.5084753 0.3767383 0.5341183 +0.514124 0.3767383 0.5341183 +0.519487 0.3767383 0.5341183 +0.5245917 0.3767383 0.5341183 +0.529462 0.3767383 0.5341183 +0.5341183 0.3767383 0.5341183 +0.5385787 0.3767383 0.5341183 +0.5428591 0.3767383 0.5341183 +0.5469733 0.3767383 0.5341183 +0.5509339 0.3767383 0.5341183 +0.5547519 0.3767383 0.5341183 +0.5584371 0.3767383 0.5341183 +0.5619986 0.3767383 0.5341183 +0.5654443 0.3767383 0.5341183 +0.5687816 0.3767383 0.5341183 +0.092819 0.3951413 0.5341183 +0.2262531 0.3951413 0.5341183 +0.2875993 0.3951413 0.5341183 +0.3262122 0.3951413 0.5341183 +0.3544566 0.3951413 0.5341183 +0.3767383 0.3951413 0.5341183 +0.3951413 0.3951413 0.5341183 +0.4108177 0.3951413 0.5341183 +0.4244723 0.3951413 0.5341183 +0.4365675 0.3951413 0.5341183 +0.4474232 0.3951413 0.5341183 +0.45727 0.3951413 0.5341183 +0.4662797 0.3951413 0.5341183 +0.4745834 0.3951413 0.5341183 +0.4822838 0.3951413 0.5341183 +0.4894626 0.3951413 0.5341183 +0.4961862 0.3951413 0.5341183 +0.5025087 0.3951413 0.5341183 +0.5084753 0.3951413 0.5341183 +0.514124 0.3951413 0.5341183 +0.519487 0.3951413 0.5341183 +0.5245917 0.3951413 0.5341183 +0.529462 0.3951413 0.5341183 +0.5341183 0.3951413 0.5341183 +0.5385787 0.3951413 0.5341183 +0.5428591 0.3951413 0.5341183 +0.5469733 0.3951413 0.5341183 +0.5509339 0.3951413 0.5341183 +0.5547519 0.3951413 0.5341183 +0.5584371 0.3951413 0.5341183 +0.5619986 0.3951413 0.5341183 +0.5654443 0.3951413 0.5341183 +0.5687816 0.3951413 0.5341183 +0.092819 0.4108177 0.5341183 +0.2262531 0.4108177 0.5341183 +0.2875993 0.4108177 0.5341183 +0.3262122 0.4108177 0.5341183 +0.3544566 0.4108177 0.5341183 +0.3767383 0.4108177 0.5341183 +0.3951413 0.4108177 0.5341183 +0.4108177 0.4108177 0.5341183 +0.4244723 0.4108177 0.5341183 +0.4365675 0.4108177 0.5341183 +0.4474232 0.4108177 0.5341183 +0.45727 0.4108177 0.5341183 +0.4662797 0.4108177 0.5341183 +0.4745834 0.4108177 0.5341183 +0.4822838 0.4108177 0.5341183 +0.4894626 0.4108177 0.5341183 +0.4961862 0.4108177 0.5341183 +0.5025087 0.4108177 0.5341183 +0.5084753 0.4108177 0.5341183 +0.514124 0.4108177 0.5341183 +0.519487 0.4108177 0.5341183 +0.5245917 0.4108177 0.5341183 +0.529462 0.4108177 0.5341183 +0.5341183 0.4108177 0.5341183 +0.5385787 0.4108177 0.5341183 +0.5428591 0.4108177 0.5341183 +0.5469733 0.4108177 0.5341183 +0.5509339 0.4108177 0.5341183 +0.5547519 0.4108177 0.5341183 +0.5584371 0.4108177 0.5341183 +0.5619986 0.4108177 0.5341183 +0.5654443 0.4108177 0.5341183 +0.5687816 0.4108177 0.5341183 +0.092819 0.4244723 0.5341183 +0.2262531 0.4244723 0.5341183 +0.2875993 0.4244723 0.5341183 +0.3262122 0.4244723 0.5341183 +0.3544566 0.4244723 0.5341183 +0.3767383 0.4244723 0.5341183 +0.3951413 0.4244723 0.5341183 +0.4108177 0.4244723 0.5341183 +0.4244723 0.4244723 0.5341183 +0.4365675 0.4244723 0.5341183 +0.4474232 0.4244723 0.5341183 +0.45727 0.4244723 0.5341183 +0.4662797 0.4244723 0.5341183 +0.4745834 0.4244723 0.5341183 +0.4822838 0.4244723 0.5341183 +0.4894626 0.4244723 0.5341183 +0.4961862 0.4244723 0.5341183 +0.5025087 0.4244723 0.5341183 +0.5084753 0.4244723 0.5341183 +0.514124 0.4244723 0.5341183 +0.519487 0.4244723 0.5341183 +0.5245917 0.4244723 0.5341183 +0.529462 0.4244723 0.5341183 +0.5341183 0.4244723 0.5341183 +0.5385787 0.4244723 0.5341183 +0.5428591 0.4244723 0.5341183 +0.5469733 0.4244723 0.5341183 +0.5509339 0.4244723 0.5341183 +0.5547519 0.4244723 0.5341183 +0.5584371 0.4244723 0.5341183 +0.5619986 0.4244723 0.5341183 +0.5654443 0.4244723 0.5341183 +0.5687816 0.4244723 0.5341183 +0.092819 0.4365675 0.5341183 +0.2262531 0.4365675 0.5341183 +0.2875993 0.4365675 0.5341183 +0.3262122 0.4365675 0.5341183 +0.3544566 0.4365675 0.5341183 +0.3767383 0.4365675 0.5341183 +0.3951413 0.4365675 0.5341183 +0.4108177 0.4365675 0.5341183 +0.4244723 0.4365675 0.5341183 +0.4365675 0.4365675 0.5341183 +0.4474232 0.4365675 0.5341183 +0.45727 0.4365675 0.5341183 +0.4662797 0.4365675 0.5341183 +0.4745834 0.4365675 0.5341183 +0.4822838 0.4365675 0.5341183 +0.4894626 0.4365675 0.5341183 +0.4961862 0.4365675 0.5341183 +0.5025087 0.4365675 0.5341183 +0.5084753 0.4365675 0.5341183 +0.514124 0.4365675 0.5341183 +0.519487 0.4365675 0.5341183 +0.5245917 0.4365675 0.5341183 +0.529462 0.4365675 0.5341183 +0.5341183 0.4365675 0.5341183 +0.5385787 0.4365675 0.5341183 +0.5428591 0.4365675 0.5341183 +0.5469733 0.4365675 0.5341183 +0.5509339 0.4365675 0.5341183 +0.5547519 0.4365675 0.5341183 +0.5584371 0.4365675 0.5341183 +0.5619986 0.4365675 0.5341183 +0.5654443 0.4365675 0.5341183 +0.5687816 0.4365675 0.5341183 +0.092819 0.4474232 0.5341183 +0.2262531 0.4474232 0.5341183 +0.2875993 0.4474232 0.5341183 +0.3262122 0.4474232 0.5341183 +0.3544566 0.4474232 0.5341183 +0.3767383 0.4474232 0.5341183 +0.3951413 0.4474232 0.5341183 +0.4108177 0.4474232 0.5341183 +0.4244723 0.4474232 0.5341183 +0.4365675 0.4474232 0.5341183 +0.4474232 0.4474232 0.5341183 +0.45727 0.4474232 0.5341183 +0.4662797 0.4474232 0.5341183 +0.4745834 0.4474232 0.5341183 +0.4822838 0.4474232 0.5341183 +0.4894626 0.4474232 0.5341183 +0.4961862 0.4474232 0.5341183 +0.5025087 0.4474232 0.5341183 +0.5084753 0.4474232 0.5341183 +0.514124 0.4474232 0.5341183 +0.519487 0.4474232 0.5341183 +0.5245917 0.4474232 0.5341183 +0.529462 0.4474232 0.5341183 +0.5341183 0.4474232 0.5341183 +0.5385787 0.4474232 0.5341183 +0.5428591 0.4474232 0.5341183 +0.5469733 0.4474232 0.5341183 +0.5509339 0.4474232 0.5341183 +0.5547519 0.4474232 0.5341183 +0.5584371 0.4474232 0.5341183 +0.5619986 0.4474232 0.5341183 +0.5654443 0.4474232 0.5341183 +0.5687816 0.4474232 0.5341183 +0.092819 0.45727 0.5341183 +0.2262531 0.45727 0.5341183 +0.2875993 0.45727 0.5341183 +0.3262122 0.45727 0.5341183 +0.3544566 0.45727 0.5341183 +0.3767383 0.45727 0.5341183 +0.3951413 0.45727 0.5341183 +0.4108177 0.45727 0.5341183 +0.4244723 0.45727 0.5341183 +0.4365675 0.45727 0.5341183 +0.4474232 0.45727 0.5341183 +0.45727 0.45727 0.5341183 +0.4662797 0.45727 0.5341183 +0.4745834 0.45727 0.5341183 +0.4822838 0.45727 0.5341183 +0.4894626 0.45727 0.5341183 +0.4961862 0.45727 0.5341183 +0.5025087 0.45727 0.5341183 +0.5084753 0.45727 0.5341183 +0.514124 0.45727 0.5341183 +0.519487 0.45727 0.5341183 +0.5245917 0.45727 0.5341183 +0.529462 0.45727 0.5341183 +0.5341183 0.45727 0.5341183 +0.5385787 0.45727 0.5341183 +0.5428591 0.45727 0.5341183 +0.5469733 0.45727 0.5341183 +0.5509339 0.45727 0.5341183 +0.5547519 0.45727 0.5341183 +0.5584371 0.45727 0.5341183 +0.5619986 0.45727 0.5341183 +0.5654443 0.45727 0.5341183 +0.5687816 0.45727 0.5341183 +0.092819 0.4662797 0.5341183 +0.2262531 0.4662797 0.5341183 +0.2875993 0.4662797 0.5341183 +0.3262122 0.4662797 0.5341183 +0.3544566 0.4662797 0.5341183 +0.3767383 0.4662797 0.5341183 +0.3951413 0.4662797 0.5341183 +0.4108177 0.4662797 0.5341183 +0.4244723 0.4662797 0.5341183 +0.4365675 0.4662797 0.5341183 +0.4474232 0.4662797 0.5341183 +0.45727 0.4662797 0.5341183 +0.4662797 0.4662797 0.5341183 +0.4745834 0.4662797 0.5341183 +0.4822838 0.4662797 0.5341183 +0.4894626 0.4662797 0.5341183 +0.4961862 0.4662797 0.5341183 +0.5025087 0.4662797 0.5341183 +0.5084753 0.4662797 0.5341183 +0.514124 0.4662797 0.5341183 +0.519487 0.4662797 0.5341183 +0.5245917 0.4662797 0.5341183 +0.529462 0.4662797 0.5341183 +0.5341183 0.4662797 0.5341183 +0.5385787 0.4662797 0.5341183 +0.5428591 0.4662797 0.5341183 +0.5469733 0.4662797 0.5341183 +0.5509339 0.4662797 0.5341183 +0.5547519 0.4662797 0.5341183 +0.5584371 0.4662797 0.5341183 +0.5619986 0.4662797 0.5341183 +0.5654443 0.4662797 0.5341183 +0.5687816 0.4662797 0.5341183 +0.092819 0.4745834 0.5341183 +0.2262531 0.4745834 0.5341183 +0.2875993 0.4745834 0.5341183 +0.3262122 0.4745834 0.5341183 +0.3544566 0.4745834 0.5341183 +0.3767383 0.4745834 0.5341183 +0.3951413 0.4745834 0.5341183 +0.4108177 0.4745834 0.5341183 +0.4244723 0.4745834 0.5341183 +0.4365675 0.4745834 0.5341183 +0.4474232 0.4745834 0.5341183 +0.45727 0.4745834 0.5341183 +0.4662797 0.4745834 0.5341183 +0.4745834 0.4745834 0.5341183 +0.4822838 0.4745834 0.5341183 +0.4894626 0.4745834 0.5341183 +0.4961862 0.4745834 0.5341183 +0.5025087 0.4745834 0.5341183 +0.5084753 0.4745834 0.5341183 +0.514124 0.4745834 0.5341183 +0.519487 0.4745834 0.5341183 +0.5245917 0.4745834 0.5341183 +0.529462 0.4745834 0.5341183 +0.5341183 0.4745834 0.5341183 +0.5385787 0.4745834 0.5341183 +0.5428591 0.4745834 0.5341183 +0.5469733 0.4745834 0.5341183 +0.5509339 0.4745834 0.5341183 +0.5547519 0.4745834 0.5341183 +0.5584371 0.4745834 0.5341183 +0.5619986 0.4745834 0.5341183 +0.5654443 0.4745834 0.5341183 +0.5687816 0.4745834 0.5341183 +0.092819 0.4822838 0.5341183 +0.2262531 0.4822838 0.5341183 +0.2875993 0.4822838 0.5341183 +0.3262122 0.4822838 0.5341183 +0.3544566 0.4822838 0.5341183 +0.3767383 0.4822838 0.5341183 +0.3951413 0.4822838 0.5341183 +0.4108177 0.4822838 0.5341183 +0.4244723 0.4822838 0.5341183 +0.4365675 0.4822838 0.5341183 +0.4474232 0.4822838 0.5341183 +0.45727 0.4822838 0.5341183 +0.4662797 0.4822838 0.5341183 +0.4745834 0.4822838 0.5341183 +0.4822838 0.4822838 0.5341183 +0.4894626 0.4822838 0.5341183 +0.4961862 0.4822838 0.5341183 +0.5025087 0.4822838 0.5341183 +0.5084753 0.4822838 0.5341183 +0.514124 0.4822838 0.5341183 +0.519487 0.4822838 0.5341183 +0.5245917 0.4822838 0.5341183 +0.529462 0.4822838 0.5341183 +0.5341183 0.4822838 0.5341183 +0.5385787 0.4822838 0.5341183 +0.5428591 0.4822838 0.5341183 +0.5469733 0.4822838 0.5341183 +0.5509339 0.4822838 0.5341183 +0.5547519 0.4822838 0.5341183 +0.5584371 0.4822838 0.5341183 +0.5619986 0.4822838 0.5341183 +0.5654443 0.4822838 0.5341183 +0.5687816 0.4822838 0.5341183 +0.092819 0.4894626 0.5341183 +0.2262531 0.4894626 0.5341183 +0.2875993 0.4894626 0.5341183 +0.3262122 0.4894626 0.5341183 +0.3544566 0.4894626 0.5341183 +0.3767383 0.4894626 0.5341183 +0.3951413 0.4894626 0.5341183 +0.4108177 0.4894626 0.5341183 +0.4244723 0.4894626 0.5341183 +0.4365675 0.4894626 0.5341183 +0.4474232 0.4894626 0.5341183 +0.45727 0.4894626 0.5341183 +0.4662797 0.4894626 0.5341183 +0.4745834 0.4894626 0.5341183 +0.4822838 0.4894626 0.5341183 +0.4894626 0.4894626 0.5341183 +0.4961862 0.4894626 0.5341183 +0.5025087 0.4894626 0.5341183 +0.5084753 0.4894626 0.5341183 +0.514124 0.4894626 0.5341183 +0.519487 0.4894626 0.5341183 +0.5245917 0.4894626 0.5341183 +0.529462 0.4894626 0.5341183 +0.5341183 0.4894626 0.5341183 +0.5385787 0.4894626 0.5341183 +0.5428591 0.4894626 0.5341183 +0.5469733 0.4894626 0.5341183 +0.5509339 0.4894626 0.5341183 +0.5547519 0.4894626 0.5341183 +0.5584371 0.4894626 0.5341183 +0.5619986 0.4894626 0.5341183 +0.5654443 0.4894626 0.5341183 +0.5687816 0.4894626 0.5341183 +0.092819 0.4961862 0.5341183 +0.2262531 0.4961862 0.5341183 +0.2875993 0.4961862 0.5341183 +0.3262122 0.4961862 0.5341183 +0.3544566 0.4961862 0.5341183 +0.3767383 0.4961862 0.5341183 +0.3951413 0.4961862 0.5341183 +0.4108177 0.4961862 0.5341183 +0.4244723 0.4961862 0.5341183 +0.4365675 0.4961862 0.5341183 +0.4474232 0.4961862 0.5341183 +0.45727 0.4961862 0.5341183 +0.4662797 0.4961862 0.5341183 +0.4745834 0.4961862 0.5341183 +0.4822838 0.4961862 0.5341183 +0.4894626 0.4961862 0.5341183 +0.4961862 0.4961862 0.5341183 +0.5025087 0.4961862 0.5341183 +0.5084753 0.4961862 0.5341183 +0.514124 0.4961862 0.5341183 +0.519487 0.4961862 0.5341183 +0.5245917 0.4961862 0.5341183 +0.529462 0.4961862 0.5341183 +0.5341183 0.4961862 0.5341183 +0.5385787 0.4961862 0.5341183 +0.5428591 0.4961862 0.5341183 +0.5469733 0.4961862 0.5341183 +0.5509339 0.4961862 0.5341183 +0.5547519 0.4961862 0.5341183 +0.5584371 0.4961862 0.5341183 +0.5619986 0.4961862 0.5341183 +0.5654443 0.4961862 0.5341183 +0.5687816 0.4961862 0.5341183 +0.092819 0.5025087 0.5341183 +0.2262531 0.5025087 0.5341183 +0.2875993 0.5025087 0.5341183 +0.3262122 0.5025087 0.5341183 +0.3544566 0.5025087 0.5341183 +0.3767383 0.5025087 0.5341183 +0.3951413 0.5025087 0.5341183 +0.4108177 0.5025087 0.5341183 +0.4244723 0.5025087 0.5341183 +0.4365675 0.5025087 0.5341183 +0.4474232 0.5025087 0.5341183 +0.45727 0.5025087 0.5341183 +0.4662797 0.5025087 0.5341183 +0.4745834 0.5025087 0.5341183 +0.4822838 0.5025087 0.5341183 +0.4894626 0.5025087 0.5341183 +0.4961862 0.5025087 0.5341183 +0.5025087 0.5025087 0.5341183 +0.5084753 0.5025087 0.5341183 +0.514124 0.5025087 0.5341183 +0.519487 0.5025087 0.5341183 +0.5245917 0.5025087 0.5341183 +0.529462 0.5025087 0.5341183 +0.5341183 0.5025087 0.5341183 +0.5385787 0.5025087 0.5341183 +0.5428591 0.5025087 0.5341183 +0.5469733 0.5025087 0.5341183 +0.5509339 0.5025087 0.5341183 +0.5547519 0.5025087 0.5341183 +0.5584371 0.5025087 0.5341183 +0.5619986 0.5025087 0.5341183 +0.5654443 0.5025087 0.5341183 +0.5687816 0.5025087 0.5341183 +0.092819 0.5084753 0.5341183 +0.2262531 0.5084753 0.5341183 +0.2875993 0.5084753 0.5341183 +0.3262122 0.5084753 0.5341183 +0.3544566 0.5084753 0.5341183 +0.3767383 0.5084753 0.5341183 +0.3951413 0.5084753 0.5341183 +0.4108177 0.5084753 0.5341183 +0.4244723 0.5084753 0.5341183 +0.4365675 0.5084753 0.5341183 +0.4474232 0.5084753 0.5341183 +0.45727 0.5084753 0.5341183 +0.4662797 0.5084753 0.5341183 +0.4745834 0.5084753 0.5341183 +0.4822838 0.5084753 0.5341183 +0.4894626 0.5084753 0.5341183 +0.4961862 0.5084753 0.5341183 +0.5025087 0.5084753 0.5341183 +0.5084753 0.5084753 0.5341183 +0.514124 0.5084753 0.5341183 +0.519487 0.5084753 0.5341183 +0.5245917 0.5084753 0.5341183 +0.529462 0.5084753 0.5341183 +0.5341183 0.5084753 0.5341183 +0.5385787 0.5084753 0.5341183 +0.5428591 0.5084753 0.5341183 +0.5469733 0.5084753 0.5341183 +0.5509339 0.5084753 0.5341183 +0.5547519 0.5084753 0.5341183 +0.5584371 0.5084753 0.5341183 +0.5619986 0.5084753 0.5341183 +0.5654443 0.5084753 0.5341183 +0.5687816 0.5084753 0.5341183 +0.092819 0.514124 0.5341183 +0.2262531 0.514124 0.5341183 +0.2875993 0.514124 0.5341183 +0.3262122 0.514124 0.5341183 +0.3544566 0.514124 0.5341183 +0.3767383 0.514124 0.5341183 +0.3951413 0.514124 0.5341183 +0.4108177 0.514124 0.5341183 +0.4244723 0.514124 0.5341183 +0.4365675 0.514124 0.5341183 +0.4474232 0.514124 0.5341183 +0.45727 0.514124 0.5341183 +0.4662797 0.514124 0.5341183 +0.4745834 0.514124 0.5341183 +0.4822838 0.514124 0.5341183 +0.4894626 0.514124 0.5341183 +0.4961862 0.514124 0.5341183 +0.5025087 0.514124 0.5341183 +0.5084753 0.514124 0.5341183 +0.514124 0.514124 0.5341183 +0.519487 0.514124 0.5341183 +0.5245917 0.514124 0.5341183 +0.529462 0.514124 0.5341183 +0.5341183 0.514124 0.5341183 +0.5385787 0.514124 0.5341183 +0.5428591 0.514124 0.5341183 +0.5469733 0.514124 0.5341183 +0.5509339 0.514124 0.5341183 +0.5547519 0.514124 0.5341183 +0.5584371 0.514124 0.5341183 +0.5619986 0.514124 0.5341183 +0.5654443 0.514124 0.5341183 +0.5687816 0.514124 0.5341183 +0.092819 0.519487 0.5341183 +0.2262531 0.519487 0.5341183 +0.2875993 0.519487 0.5341183 +0.3262122 0.519487 0.5341183 +0.3544566 0.519487 0.5341183 +0.3767383 0.519487 0.5341183 +0.3951413 0.519487 0.5341183 +0.4108177 0.519487 0.5341183 +0.4244723 0.519487 0.5341183 +0.4365675 0.519487 0.5341183 +0.4474232 0.519487 0.5341183 +0.45727 0.519487 0.5341183 +0.4662797 0.519487 0.5341183 +0.4745834 0.519487 0.5341183 +0.4822838 0.519487 0.5341183 +0.4894626 0.519487 0.5341183 +0.4961862 0.519487 0.5341183 +0.5025087 0.519487 0.5341183 +0.5084753 0.519487 0.5341183 +0.514124 0.519487 0.5341183 +0.519487 0.519487 0.5341183 +0.5245917 0.519487 0.5341183 +0.529462 0.519487 0.5341183 +0.5341183 0.519487 0.5341183 +0.5385787 0.519487 0.5341183 +0.5428591 0.519487 0.5341183 +0.5469733 0.519487 0.5341183 +0.5509339 0.519487 0.5341183 +0.5547519 0.519487 0.5341183 +0.5584371 0.519487 0.5341183 +0.5619986 0.519487 0.5341183 +0.5654443 0.519487 0.5341183 +0.5687816 0.519487 0.5341183 +0.092819 0.5245917 0.5341183 +0.2262531 0.5245917 0.5341183 +0.2875993 0.5245917 0.5341183 +0.3262122 0.5245917 0.5341183 +0.3544566 0.5245917 0.5341183 +0.3767383 0.5245917 0.5341183 +0.3951413 0.5245917 0.5341183 +0.4108177 0.5245917 0.5341183 +0.4244723 0.5245917 0.5341183 +0.4365675 0.5245917 0.5341183 +0.4474232 0.5245917 0.5341183 +0.45727 0.5245917 0.5341183 +0.4662797 0.5245917 0.5341183 +0.4745834 0.5245917 0.5341183 +0.4822838 0.5245917 0.5341183 +0.4894626 0.5245917 0.5341183 +0.4961862 0.5245917 0.5341183 +0.5025087 0.5245917 0.5341183 +0.5084753 0.5245917 0.5341183 +0.514124 0.5245917 0.5341183 +0.519487 0.5245917 0.5341183 +0.5245917 0.5245917 0.5341183 +0.529462 0.5245917 0.5341183 +0.5341183 0.5245917 0.5341183 +0.5385787 0.5245917 0.5341183 +0.5428591 0.5245917 0.5341183 +0.5469733 0.5245917 0.5341183 +0.5509339 0.5245917 0.5341183 +0.5547519 0.5245917 0.5341183 +0.5584371 0.5245917 0.5341183 +0.5619986 0.5245917 0.5341183 +0.5654443 0.5245917 0.5341183 +0.5687816 0.5245917 0.5341183 +0.092819 0.529462 0.5341183 +0.2262531 0.529462 0.5341183 +0.2875993 0.529462 0.5341183 +0.3262122 0.529462 0.5341183 +0.3544566 0.529462 0.5341183 +0.3767383 0.529462 0.5341183 +0.3951413 0.529462 0.5341183 +0.4108177 0.529462 0.5341183 +0.4244723 0.529462 0.5341183 +0.4365675 0.529462 0.5341183 +0.4474232 0.529462 0.5341183 +0.45727 0.529462 0.5341183 +0.4662797 0.529462 0.5341183 +0.4745834 0.529462 0.5341183 +0.4822838 0.529462 0.5341183 +0.4894626 0.529462 0.5341183 +0.4961862 0.529462 0.5341183 +0.5025087 0.529462 0.5341183 +0.5084753 0.529462 0.5341183 +0.514124 0.529462 0.5341183 +0.519487 0.529462 0.5341183 +0.5245917 0.529462 0.5341183 +0.529462 0.529462 0.5341183 +0.5341183 0.529462 0.5341183 +0.5385787 0.529462 0.5341183 +0.5428591 0.529462 0.5341183 +0.5469733 0.529462 0.5341183 +0.5509339 0.529462 0.5341183 +0.5547519 0.529462 0.5341183 +0.5584371 0.529462 0.5341183 +0.5619986 0.529462 0.5341183 +0.5654443 0.529462 0.5341183 +0.5687816 0.529462 0.5341183 +0.092819 0.5341183 0.5341183 +0.2262531 0.5341183 0.5341183 +0.2875993 0.5341183 0.5341183 +0.3262122 0.5341183 0.5341183 +0.3544566 0.5341183 0.5341183 +0.3767383 0.5341183 0.5341183 +0.3951413 0.5341183 0.5341183 +0.4108177 0.5341183 0.5341183 +0.4244723 0.5341183 0.5341183 +0.4365675 0.5341183 0.5341183 +0.4474232 0.5341183 0.5341183 +0.45727 0.5341183 0.5341183 +0.4662797 0.5341183 0.5341183 +0.4745834 0.5341183 0.5341183 +0.4822838 0.5341183 0.5341183 +0.4894626 0.5341183 0.5341183 +0.4961862 0.5341183 0.5341183 +0.5025087 0.5341183 0.5341183 +0.5084753 0.5341183 0.5341183 +0.514124 0.5341183 0.5341183 +0.519487 0.5341183 0.5341183 +0.5245917 0.5341183 0.5341183 +0.529462 0.5341183 0.5341183 +0.5341183 0.5341183 0.5341183 +0.5385787 0.5341183 0.5341183 +0.5428591 0.5341183 0.5341183 +0.5469733 0.5341183 0.5341183 +0.5509339 0.5341183 0.5341183 +0.5547519 0.5341183 0.5341183 +0.5584371 0.5341183 0.5341183 +0.5619986 0.5341183 0.5341183 +0.5654443 0.5341183 0.5341183 +0.5687816 0.5341183 0.5341183 +0.092819 0.5385787 0.5341183 +0.2262531 0.5385787 0.5341183 +0.2875993 0.5385787 0.5341183 +0.3262122 0.5385787 0.5341183 +0.3544566 0.5385787 0.5341183 +0.3767383 0.5385787 0.5341183 +0.3951413 0.5385787 0.5341183 +0.4108177 0.5385787 0.5341183 +0.4244723 0.5385787 0.5341183 +0.4365675 0.5385787 0.5341183 +0.4474232 0.5385787 0.5341183 +0.45727 0.5385787 0.5341183 +0.4662797 0.5385787 0.5341183 +0.4745834 0.5385787 0.5341183 +0.4822838 0.5385787 0.5341183 +0.4894626 0.5385787 0.5341183 +0.4961862 0.5385787 0.5341183 +0.5025087 0.5385787 0.5341183 +0.5084753 0.5385787 0.5341183 +0.514124 0.5385787 0.5341183 +0.519487 0.5385787 0.5341183 +0.5245917 0.5385787 0.5341183 +0.529462 0.5385787 0.5341183 +0.5341183 0.5385787 0.5341183 +0.5385787 0.5385787 0.5341183 +0.5428591 0.5385787 0.5341183 +0.5469733 0.5385787 0.5341183 +0.5509339 0.5385787 0.5341183 +0.5547519 0.5385787 0.5341183 +0.5584371 0.5385787 0.5341183 +0.5619986 0.5385787 0.5341183 +0.5654443 0.5385787 0.5341183 +0.5687816 0.5385787 0.5341183 +0.092819 0.5428591 0.5341183 +0.2262531 0.5428591 0.5341183 +0.2875993 0.5428591 0.5341183 +0.3262122 0.5428591 0.5341183 +0.3544566 0.5428591 0.5341183 +0.3767383 0.5428591 0.5341183 +0.3951413 0.5428591 0.5341183 +0.4108177 0.5428591 0.5341183 +0.4244723 0.5428591 0.5341183 +0.4365675 0.5428591 0.5341183 +0.4474232 0.5428591 0.5341183 +0.45727 0.5428591 0.5341183 +0.4662797 0.5428591 0.5341183 +0.4745834 0.5428591 0.5341183 +0.4822838 0.5428591 0.5341183 +0.4894626 0.5428591 0.5341183 +0.4961862 0.5428591 0.5341183 +0.5025087 0.5428591 0.5341183 +0.5084753 0.5428591 0.5341183 +0.514124 0.5428591 0.5341183 +0.519487 0.5428591 0.5341183 +0.5245917 0.5428591 0.5341183 +0.529462 0.5428591 0.5341183 +0.5341183 0.5428591 0.5341183 +0.5385787 0.5428591 0.5341183 +0.5428591 0.5428591 0.5341183 +0.5469733 0.5428591 0.5341183 +0.5509339 0.5428591 0.5341183 +0.5547519 0.5428591 0.5341183 +0.5584371 0.5428591 0.5341183 +0.5619986 0.5428591 0.5341183 +0.5654443 0.5428591 0.5341183 +0.5687816 0.5428591 0.5341183 +0.092819 0.5469733 0.5341183 +0.2262531 0.5469733 0.5341183 +0.2875993 0.5469733 0.5341183 +0.3262122 0.5469733 0.5341183 +0.3544566 0.5469733 0.5341183 +0.3767383 0.5469733 0.5341183 +0.3951413 0.5469733 0.5341183 +0.4108177 0.5469733 0.5341183 +0.4244723 0.5469733 0.5341183 +0.4365675 0.5469733 0.5341183 +0.4474232 0.5469733 0.5341183 +0.45727 0.5469733 0.5341183 +0.4662797 0.5469733 0.5341183 +0.4745834 0.5469733 0.5341183 +0.4822838 0.5469733 0.5341183 +0.4894626 0.5469733 0.5341183 +0.4961862 0.5469733 0.5341183 +0.5025087 0.5469733 0.5341183 +0.5084753 0.5469733 0.5341183 +0.514124 0.5469733 0.5341183 +0.519487 0.5469733 0.5341183 +0.5245917 0.5469733 0.5341183 +0.529462 0.5469733 0.5341183 +0.5341183 0.5469733 0.5341183 +0.5385787 0.5469733 0.5341183 +0.5428591 0.5469733 0.5341183 +0.5469733 0.5469733 0.5341183 +0.5509339 0.5469733 0.5341183 +0.5547519 0.5469733 0.5341183 +0.5584371 0.5469733 0.5341183 +0.5619986 0.5469733 0.5341183 +0.5654443 0.5469733 0.5341183 +0.5687816 0.5469733 0.5341183 +0.092819 0.5509339 0.5341183 +0.2262531 0.5509339 0.5341183 +0.2875993 0.5509339 0.5341183 +0.3262122 0.5509339 0.5341183 +0.3544566 0.5509339 0.5341183 +0.3767383 0.5509339 0.5341183 +0.3951413 0.5509339 0.5341183 +0.4108177 0.5509339 0.5341183 +0.4244723 0.5509339 0.5341183 +0.4365675 0.5509339 0.5341183 +0.4474232 0.5509339 0.5341183 +0.45727 0.5509339 0.5341183 +0.4662797 0.5509339 0.5341183 +0.4745834 0.5509339 0.5341183 +0.4822838 0.5509339 0.5341183 +0.4894626 0.5509339 0.5341183 +0.4961862 0.5509339 0.5341183 +0.5025087 0.5509339 0.5341183 +0.5084753 0.5509339 0.5341183 +0.514124 0.5509339 0.5341183 +0.519487 0.5509339 0.5341183 +0.5245917 0.5509339 0.5341183 +0.529462 0.5509339 0.5341183 +0.5341183 0.5509339 0.5341183 +0.5385787 0.5509339 0.5341183 +0.5428591 0.5509339 0.5341183 +0.5469733 0.5509339 0.5341183 +0.5509339 0.5509339 0.5341183 +0.5547519 0.5509339 0.5341183 +0.5584371 0.5509339 0.5341183 +0.5619986 0.5509339 0.5341183 +0.5654443 0.5509339 0.5341183 +0.5687816 0.5509339 0.5341183 +0.092819 0.5547519 0.5341183 +0.2262531 0.5547519 0.5341183 +0.2875993 0.5547519 0.5341183 +0.3262122 0.5547519 0.5341183 +0.3544566 0.5547519 0.5341183 +0.3767383 0.5547519 0.5341183 +0.3951413 0.5547519 0.5341183 +0.4108177 0.5547519 0.5341183 +0.4244723 0.5547519 0.5341183 +0.4365675 0.5547519 0.5341183 +0.4474232 0.5547519 0.5341183 +0.45727 0.5547519 0.5341183 +0.4662797 0.5547519 0.5341183 +0.4745834 0.5547519 0.5341183 +0.4822838 0.5547519 0.5341183 +0.4894626 0.5547519 0.5341183 +0.4961862 0.5547519 0.5341183 +0.5025087 0.5547519 0.5341183 +0.5084753 0.5547519 0.5341183 +0.514124 0.5547519 0.5341183 +0.519487 0.5547519 0.5341183 +0.5245917 0.5547519 0.5341183 +0.529462 0.5547519 0.5341183 +0.5341183 0.5547519 0.5341183 +0.5385787 0.5547519 0.5341183 +0.5428591 0.5547519 0.5341183 +0.5469733 0.5547519 0.5341183 +0.5509339 0.5547519 0.5341183 +0.5547519 0.5547519 0.5341183 +0.5584371 0.5547519 0.5341183 +0.5619986 0.5547519 0.5341183 +0.5654443 0.5547519 0.5341183 +0.5687816 0.5547519 0.5341183 +0.092819 0.5584371 0.5341183 +0.2262531 0.5584371 0.5341183 +0.2875993 0.5584371 0.5341183 +0.3262122 0.5584371 0.5341183 +0.3544566 0.5584371 0.5341183 +0.3767383 0.5584371 0.5341183 +0.3951413 0.5584371 0.5341183 +0.4108177 0.5584371 0.5341183 +0.4244723 0.5584371 0.5341183 +0.4365675 0.5584371 0.5341183 +0.4474232 0.5584371 0.5341183 +0.45727 0.5584371 0.5341183 +0.4662797 0.5584371 0.5341183 +0.4745834 0.5584371 0.5341183 +0.4822838 0.5584371 0.5341183 +0.4894626 0.5584371 0.5341183 +0.4961862 0.5584371 0.5341183 +0.5025087 0.5584371 0.5341183 +0.5084753 0.5584371 0.5341183 +0.514124 0.5584371 0.5341183 +0.519487 0.5584371 0.5341183 +0.5245917 0.5584371 0.5341183 +0.529462 0.5584371 0.5341183 +0.5341183 0.5584371 0.5341183 +0.5385787 0.5584371 0.5341183 +0.5428591 0.5584371 0.5341183 +0.5469733 0.5584371 0.5341183 +0.5509339 0.5584371 0.5341183 +0.5547519 0.5584371 0.5341183 +0.5584371 0.5584371 0.5341183 +0.5619986 0.5584371 0.5341183 +0.5654443 0.5584371 0.5341183 +0.5687816 0.5584371 0.5341183 +0.092819 0.5619986 0.5341183 +0.2262531 0.5619986 0.5341183 +0.2875993 0.5619986 0.5341183 +0.3262122 0.5619986 0.5341183 +0.3544566 0.5619986 0.5341183 +0.3767383 0.5619986 0.5341183 +0.3951413 0.5619986 0.5341183 +0.4108177 0.5619986 0.5341183 +0.4244723 0.5619986 0.5341183 +0.4365675 0.5619986 0.5341183 +0.4474232 0.5619986 0.5341183 +0.45727 0.5619986 0.5341183 +0.4662797 0.5619986 0.5341183 +0.4745834 0.5619986 0.5341183 +0.4822838 0.5619986 0.5341183 +0.4894626 0.5619986 0.5341183 +0.4961862 0.5619986 0.5341183 +0.5025087 0.5619986 0.5341183 +0.5084753 0.5619986 0.5341183 +0.514124 0.5619986 0.5341183 +0.519487 0.5619986 0.5341183 +0.5245917 0.5619986 0.5341183 +0.529462 0.5619986 0.5341183 +0.5341183 0.5619986 0.5341183 +0.5385787 0.5619986 0.5341183 +0.5428591 0.5619986 0.5341183 +0.5469733 0.5619986 0.5341183 +0.5509339 0.5619986 0.5341183 +0.5547519 0.5619986 0.5341183 +0.5584371 0.5619986 0.5341183 +0.5619986 0.5619986 0.5341183 +0.5654443 0.5619986 0.5341183 +0.5687816 0.5619986 0.5341183 +0.092819 0.5654443 0.5341183 +0.2262531 0.5654443 0.5341183 +0.2875993 0.5654443 0.5341183 +0.3262122 0.5654443 0.5341183 +0.3544566 0.5654443 0.5341183 +0.3767383 0.5654443 0.5341183 +0.3951413 0.5654443 0.5341183 +0.4108177 0.5654443 0.5341183 +0.4244723 0.5654443 0.5341183 +0.4365675 0.5654443 0.5341183 +0.4474232 0.5654443 0.5341183 +0.45727 0.5654443 0.5341183 +0.4662797 0.5654443 0.5341183 +0.4745834 0.5654443 0.5341183 +0.4822838 0.5654443 0.5341183 +0.4894626 0.5654443 0.5341183 +0.4961862 0.5654443 0.5341183 +0.5025087 0.5654443 0.5341183 +0.5084753 0.5654443 0.5341183 +0.514124 0.5654443 0.5341183 +0.519487 0.5654443 0.5341183 +0.5245917 0.5654443 0.5341183 +0.529462 0.5654443 0.5341183 +0.5341183 0.5654443 0.5341183 +0.5385787 0.5654443 0.5341183 +0.5428591 0.5654443 0.5341183 +0.5469733 0.5654443 0.5341183 +0.5509339 0.5654443 0.5341183 +0.5547519 0.5654443 0.5341183 +0.5584371 0.5654443 0.5341183 +0.5619986 0.5654443 0.5341183 +0.5654443 0.5654443 0.5341183 +0.5687816 0.5654443 0.5341183 +0.092819 0.5687816 0.5341183 +0.2262531 0.5687816 0.5341183 +0.2875993 0.5687816 0.5341183 +0.3262122 0.5687816 0.5341183 +0.3544566 0.5687816 0.5341183 +0.3767383 0.5687816 0.5341183 +0.3951413 0.5687816 0.5341183 +0.4108177 0.5687816 0.5341183 +0.4244723 0.5687816 0.5341183 +0.4365675 0.5687816 0.5341183 +0.4474232 0.5687816 0.5341183 +0.45727 0.5687816 0.5341183 +0.4662797 0.5687816 0.5341183 +0.4745834 0.5687816 0.5341183 +0.4822838 0.5687816 0.5341183 +0.4894626 0.5687816 0.5341183 +0.4961862 0.5687816 0.5341183 +0.5025087 0.5687816 0.5341183 +0.5084753 0.5687816 0.5341183 +0.514124 0.5687816 0.5341183 +0.519487 0.5687816 0.5341183 +0.5245917 0.5687816 0.5341183 +0.529462 0.5687816 0.5341183 +0.5341183 0.5687816 0.5341183 +0.5385787 0.5687816 0.5341183 +0.5428591 0.5687816 0.5341183 +0.5469733 0.5687816 0.5341183 +0.5509339 0.5687816 0.5341183 +0.5547519 0.5687816 0.5341183 +0.5584371 0.5687816 0.5341183 +0.5619986 0.5687816 0.5341183 +0.5654443 0.5687816 0.5341183 +0.5687816 0.5687816 0.5341183 +0.092819 0.092819 0.5385787 +0.2262531 0.092819 0.5385787 +0.2875993 0.092819 0.5385787 +0.3262122 0.092819 0.5385787 +0.3544566 0.092819 0.5385787 +0.3767383 0.092819 0.5385787 +0.3951413 0.092819 0.5385787 +0.4108177 0.092819 0.5385787 +0.4244723 0.092819 0.5385787 +0.4365675 0.092819 0.5385787 +0.4474232 0.092819 0.5385787 +0.45727 0.092819 0.5385787 +0.4662797 0.092819 0.5385787 +0.4745834 0.092819 0.5385787 +0.4822838 0.092819 0.5385787 +0.4894626 0.092819 0.5385787 +0.4961862 0.092819 0.5385787 +0.5025087 0.092819 0.5385787 +0.5084753 0.092819 0.5385787 +0.514124 0.092819 0.5385787 +0.519487 0.092819 0.5385787 +0.5245917 0.092819 0.5385787 +0.529462 0.092819 0.5385787 +0.5341183 0.092819 0.5385787 +0.5385787 0.092819 0.5385787 +0.5428591 0.092819 0.5385787 +0.5469733 0.092819 0.5385787 +0.5509339 0.092819 0.5385787 +0.5547519 0.092819 0.5385787 +0.5584371 0.092819 0.5385787 +0.5619986 0.092819 0.5385787 +0.5654443 0.092819 0.5385787 +0.5687816 0.092819 0.5385787 +0.092819 0.2262531 0.5385787 +0.2262531 0.2262531 0.5385787 +0.2875993 0.2262531 0.5385787 +0.3262122 0.2262531 0.5385787 +0.3544566 0.2262531 0.5385787 +0.3767383 0.2262531 0.5385787 +0.3951413 0.2262531 0.5385787 +0.4108177 0.2262531 0.5385787 +0.4244723 0.2262531 0.5385787 +0.4365675 0.2262531 0.5385787 +0.4474232 0.2262531 0.5385787 +0.45727 0.2262531 0.5385787 +0.4662797 0.2262531 0.5385787 +0.4745834 0.2262531 0.5385787 +0.4822838 0.2262531 0.5385787 +0.4894626 0.2262531 0.5385787 +0.4961862 0.2262531 0.5385787 +0.5025087 0.2262531 0.5385787 +0.5084753 0.2262531 0.5385787 +0.514124 0.2262531 0.5385787 +0.519487 0.2262531 0.5385787 +0.5245917 0.2262531 0.5385787 +0.529462 0.2262531 0.5385787 +0.5341183 0.2262531 0.5385787 +0.5385787 0.2262531 0.5385787 +0.5428591 0.2262531 0.5385787 +0.5469733 0.2262531 0.5385787 +0.5509339 0.2262531 0.5385787 +0.5547519 0.2262531 0.5385787 +0.5584371 0.2262531 0.5385787 +0.5619986 0.2262531 0.5385787 +0.5654443 0.2262531 0.5385787 +0.5687816 0.2262531 0.5385787 +0.092819 0.2875993 0.5385787 +0.2262531 0.2875993 0.5385787 +0.2875993 0.2875993 0.5385787 +0.3262122 0.2875993 0.5385787 +0.3544566 0.2875993 0.5385787 +0.3767383 0.2875993 0.5385787 +0.3951413 0.2875993 0.5385787 +0.4108177 0.2875993 0.5385787 +0.4244723 0.2875993 0.5385787 +0.4365675 0.2875993 0.5385787 +0.4474232 0.2875993 0.5385787 +0.45727 0.2875993 0.5385787 +0.4662797 0.2875993 0.5385787 +0.4745834 0.2875993 0.5385787 +0.4822838 0.2875993 0.5385787 +0.4894626 0.2875993 0.5385787 +0.4961862 0.2875993 0.5385787 +0.5025087 0.2875993 0.5385787 +0.5084753 0.2875993 0.5385787 +0.514124 0.2875993 0.5385787 +0.519487 0.2875993 0.5385787 +0.5245917 0.2875993 0.5385787 +0.529462 0.2875993 0.5385787 +0.5341183 0.2875993 0.5385787 +0.5385787 0.2875993 0.5385787 +0.5428591 0.2875993 0.5385787 +0.5469733 0.2875993 0.5385787 +0.5509339 0.2875993 0.5385787 +0.5547519 0.2875993 0.5385787 +0.5584371 0.2875993 0.5385787 +0.5619986 0.2875993 0.5385787 +0.5654443 0.2875993 0.5385787 +0.5687816 0.2875993 0.5385787 +0.092819 0.3262122 0.5385787 +0.2262531 0.3262122 0.5385787 +0.2875993 0.3262122 0.5385787 +0.3262122 0.3262122 0.5385787 +0.3544566 0.3262122 0.5385787 +0.3767383 0.3262122 0.5385787 +0.3951413 0.3262122 0.5385787 +0.4108177 0.3262122 0.5385787 +0.4244723 0.3262122 0.5385787 +0.4365675 0.3262122 0.5385787 +0.4474232 0.3262122 0.5385787 +0.45727 0.3262122 0.5385787 +0.4662797 0.3262122 0.5385787 +0.4745834 0.3262122 0.5385787 +0.4822838 0.3262122 0.5385787 +0.4894626 0.3262122 0.5385787 +0.4961862 0.3262122 0.5385787 +0.5025087 0.3262122 0.5385787 +0.5084753 0.3262122 0.5385787 +0.514124 0.3262122 0.5385787 +0.519487 0.3262122 0.5385787 +0.5245917 0.3262122 0.5385787 +0.529462 0.3262122 0.5385787 +0.5341183 0.3262122 0.5385787 +0.5385787 0.3262122 0.5385787 +0.5428591 0.3262122 0.5385787 +0.5469733 0.3262122 0.5385787 +0.5509339 0.3262122 0.5385787 +0.5547519 0.3262122 0.5385787 +0.5584371 0.3262122 0.5385787 +0.5619986 0.3262122 0.5385787 +0.5654443 0.3262122 0.5385787 +0.5687816 0.3262122 0.5385787 +0.092819 0.3544566 0.5385787 +0.2262531 0.3544566 0.5385787 +0.2875993 0.3544566 0.5385787 +0.3262122 0.3544566 0.5385787 +0.3544566 0.3544566 0.5385787 +0.3767383 0.3544566 0.5385787 +0.3951413 0.3544566 0.5385787 +0.4108177 0.3544566 0.5385787 +0.4244723 0.3544566 0.5385787 +0.4365675 0.3544566 0.5385787 +0.4474232 0.3544566 0.5385787 +0.45727 0.3544566 0.5385787 +0.4662797 0.3544566 0.5385787 +0.4745834 0.3544566 0.5385787 +0.4822838 0.3544566 0.5385787 +0.4894626 0.3544566 0.5385787 +0.4961862 0.3544566 0.5385787 +0.5025087 0.3544566 0.5385787 +0.5084753 0.3544566 0.5385787 +0.514124 0.3544566 0.5385787 +0.519487 0.3544566 0.5385787 +0.5245917 0.3544566 0.5385787 +0.529462 0.3544566 0.5385787 +0.5341183 0.3544566 0.5385787 +0.5385787 0.3544566 0.5385787 +0.5428591 0.3544566 0.5385787 +0.5469733 0.3544566 0.5385787 +0.5509339 0.3544566 0.5385787 +0.5547519 0.3544566 0.5385787 +0.5584371 0.3544566 0.5385787 +0.5619986 0.3544566 0.5385787 +0.5654443 0.3544566 0.5385787 +0.5687816 0.3544566 0.5385787 +0.092819 0.3767383 0.5385787 +0.2262531 0.3767383 0.5385787 +0.2875993 0.3767383 0.5385787 +0.3262122 0.3767383 0.5385787 +0.3544566 0.3767383 0.5385787 +0.3767383 0.3767383 0.5385787 +0.3951413 0.3767383 0.5385787 +0.4108177 0.3767383 0.5385787 +0.4244723 0.3767383 0.5385787 +0.4365675 0.3767383 0.5385787 +0.4474232 0.3767383 0.5385787 +0.45727 0.3767383 0.5385787 +0.4662797 0.3767383 0.5385787 +0.4745834 0.3767383 0.5385787 +0.4822838 0.3767383 0.5385787 +0.4894626 0.3767383 0.5385787 +0.4961862 0.3767383 0.5385787 +0.5025087 0.3767383 0.5385787 +0.5084753 0.3767383 0.5385787 +0.514124 0.3767383 0.5385787 +0.519487 0.3767383 0.5385787 +0.5245917 0.3767383 0.5385787 +0.529462 0.3767383 0.5385787 +0.5341183 0.3767383 0.5385787 +0.5385787 0.3767383 0.5385787 +0.5428591 0.3767383 0.5385787 +0.5469733 0.3767383 0.5385787 +0.5509339 0.3767383 0.5385787 +0.5547519 0.3767383 0.5385787 +0.5584371 0.3767383 0.5385787 +0.5619986 0.3767383 0.5385787 +0.5654443 0.3767383 0.5385787 +0.5687816 0.3767383 0.5385787 +0.092819 0.3951413 0.5385787 +0.2262531 0.3951413 0.5385787 +0.2875993 0.3951413 0.5385787 +0.3262122 0.3951413 0.5385787 +0.3544566 0.3951413 0.5385787 +0.3767383 0.3951413 0.5385787 +0.3951413 0.3951413 0.5385787 +0.4108177 0.3951413 0.5385787 +0.4244723 0.3951413 0.5385787 +0.4365675 0.3951413 0.5385787 +0.4474232 0.3951413 0.5385787 +0.45727 0.3951413 0.5385787 +0.4662797 0.3951413 0.5385787 +0.4745834 0.3951413 0.5385787 +0.4822838 0.3951413 0.5385787 +0.4894626 0.3951413 0.5385787 +0.4961862 0.3951413 0.5385787 +0.5025087 0.3951413 0.5385787 +0.5084753 0.3951413 0.5385787 +0.514124 0.3951413 0.5385787 +0.519487 0.3951413 0.5385787 +0.5245917 0.3951413 0.5385787 +0.529462 0.3951413 0.5385787 +0.5341183 0.3951413 0.5385787 +0.5385787 0.3951413 0.5385787 +0.5428591 0.3951413 0.5385787 +0.5469733 0.3951413 0.5385787 +0.5509339 0.3951413 0.5385787 +0.5547519 0.3951413 0.5385787 +0.5584371 0.3951413 0.5385787 +0.5619986 0.3951413 0.5385787 +0.5654443 0.3951413 0.5385787 +0.5687816 0.3951413 0.5385787 +0.092819 0.4108177 0.5385787 +0.2262531 0.4108177 0.5385787 +0.2875993 0.4108177 0.5385787 +0.3262122 0.4108177 0.5385787 +0.3544566 0.4108177 0.5385787 +0.3767383 0.4108177 0.5385787 +0.3951413 0.4108177 0.5385787 +0.4108177 0.4108177 0.5385787 +0.4244723 0.4108177 0.5385787 +0.4365675 0.4108177 0.5385787 +0.4474232 0.4108177 0.5385787 +0.45727 0.4108177 0.5385787 +0.4662797 0.4108177 0.5385787 +0.4745834 0.4108177 0.5385787 +0.4822838 0.4108177 0.5385787 +0.4894626 0.4108177 0.5385787 +0.4961862 0.4108177 0.5385787 +0.5025087 0.4108177 0.5385787 +0.5084753 0.4108177 0.5385787 +0.514124 0.4108177 0.5385787 +0.519487 0.4108177 0.5385787 +0.5245917 0.4108177 0.5385787 +0.529462 0.4108177 0.5385787 +0.5341183 0.4108177 0.5385787 +0.5385787 0.4108177 0.5385787 +0.5428591 0.4108177 0.5385787 +0.5469733 0.4108177 0.5385787 +0.5509339 0.4108177 0.5385787 +0.5547519 0.4108177 0.5385787 +0.5584371 0.4108177 0.5385787 +0.5619986 0.4108177 0.5385787 +0.5654443 0.4108177 0.5385787 +0.5687816 0.4108177 0.5385787 +0.092819 0.4244723 0.5385787 +0.2262531 0.4244723 0.5385787 +0.2875993 0.4244723 0.5385787 +0.3262122 0.4244723 0.5385787 +0.3544566 0.4244723 0.5385787 +0.3767383 0.4244723 0.5385787 +0.3951413 0.4244723 0.5385787 +0.4108177 0.4244723 0.5385787 +0.4244723 0.4244723 0.5385787 +0.4365675 0.4244723 0.5385787 +0.4474232 0.4244723 0.5385787 +0.45727 0.4244723 0.5385787 +0.4662797 0.4244723 0.5385787 +0.4745834 0.4244723 0.5385787 +0.4822838 0.4244723 0.5385787 +0.4894626 0.4244723 0.5385787 +0.4961862 0.4244723 0.5385787 +0.5025087 0.4244723 0.5385787 +0.5084753 0.4244723 0.5385787 +0.514124 0.4244723 0.5385787 +0.519487 0.4244723 0.5385787 +0.5245917 0.4244723 0.5385787 +0.529462 0.4244723 0.5385787 +0.5341183 0.4244723 0.5385787 +0.5385787 0.4244723 0.5385787 +0.5428591 0.4244723 0.5385787 +0.5469733 0.4244723 0.5385787 +0.5509339 0.4244723 0.5385787 +0.5547519 0.4244723 0.5385787 +0.5584371 0.4244723 0.5385787 +0.5619986 0.4244723 0.5385787 +0.5654443 0.4244723 0.5385787 +0.5687816 0.4244723 0.5385787 +0.092819 0.4365675 0.5385787 +0.2262531 0.4365675 0.5385787 +0.2875993 0.4365675 0.5385787 +0.3262122 0.4365675 0.5385787 +0.3544566 0.4365675 0.5385787 +0.3767383 0.4365675 0.5385787 +0.3951413 0.4365675 0.5385787 +0.4108177 0.4365675 0.5385787 +0.4244723 0.4365675 0.5385787 +0.4365675 0.4365675 0.5385787 +0.4474232 0.4365675 0.5385787 +0.45727 0.4365675 0.5385787 +0.4662797 0.4365675 0.5385787 +0.4745834 0.4365675 0.5385787 +0.4822838 0.4365675 0.5385787 +0.4894626 0.4365675 0.5385787 +0.4961862 0.4365675 0.5385787 +0.5025087 0.4365675 0.5385787 +0.5084753 0.4365675 0.5385787 +0.514124 0.4365675 0.5385787 +0.519487 0.4365675 0.5385787 +0.5245917 0.4365675 0.5385787 +0.529462 0.4365675 0.5385787 +0.5341183 0.4365675 0.5385787 +0.5385787 0.4365675 0.5385787 +0.5428591 0.4365675 0.5385787 +0.5469733 0.4365675 0.5385787 +0.5509339 0.4365675 0.5385787 +0.5547519 0.4365675 0.5385787 +0.5584371 0.4365675 0.5385787 +0.5619986 0.4365675 0.5385787 +0.5654443 0.4365675 0.5385787 +0.5687816 0.4365675 0.5385787 +0.092819 0.4474232 0.5385787 +0.2262531 0.4474232 0.5385787 +0.2875993 0.4474232 0.5385787 +0.3262122 0.4474232 0.5385787 +0.3544566 0.4474232 0.5385787 +0.3767383 0.4474232 0.5385787 +0.3951413 0.4474232 0.5385787 +0.4108177 0.4474232 0.5385787 +0.4244723 0.4474232 0.5385787 +0.4365675 0.4474232 0.5385787 +0.4474232 0.4474232 0.5385787 +0.45727 0.4474232 0.5385787 +0.4662797 0.4474232 0.5385787 +0.4745834 0.4474232 0.5385787 +0.4822838 0.4474232 0.5385787 +0.4894626 0.4474232 0.5385787 +0.4961862 0.4474232 0.5385787 +0.5025087 0.4474232 0.5385787 +0.5084753 0.4474232 0.5385787 +0.514124 0.4474232 0.5385787 +0.519487 0.4474232 0.5385787 +0.5245917 0.4474232 0.5385787 +0.529462 0.4474232 0.5385787 +0.5341183 0.4474232 0.5385787 +0.5385787 0.4474232 0.5385787 +0.5428591 0.4474232 0.5385787 +0.5469733 0.4474232 0.5385787 +0.5509339 0.4474232 0.5385787 +0.5547519 0.4474232 0.5385787 +0.5584371 0.4474232 0.5385787 +0.5619986 0.4474232 0.5385787 +0.5654443 0.4474232 0.5385787 +0.5687816 0.4474232 0.5385787 +0.092819 0.45727 0.5385787 +0.2262531 0.45727 0.5385787 +0.2875993 0.45727 0.5385787 +0.3262122 0.45727 0.5385787 +0.3544566 0.45727 0.5385787 +0.3767383 0.45727 0.5385787 +0.3951413 0.45727 0.5385787 +0.4108177 0.45727 0.5385787 +0.4244723 0.45727 0.5385787 +0.4365675 0.45727 0.5385787 +0.4474232 0.45727 0.5385787 +0.45727 0.45727 0.5385787 +0.4662797 0.45727 0.5385787 +0.4745834 0.45727 0.5385787 +0.4822838 0.45727 0.5385787 +0.4894626 0.45727 0.5385787 +0.4961862 0.45727 0.5385787 +0.5025087 0.45727 0.5385787 +0.5084753 0.45727 0.5385787 +0.514124 0.45727 0.5385787 +0.519487 0.45727 0.5385787 +0.5245917 0.45727 0.5385787 +0.529462 0.45727 0.5385787 +0.5341183 0.45727 0.5385787 +0.5385787 0.45727 0.5385787 +0.5428591 0.45727 0.5385787 +0.5469733 0.45727 0.5385787 +0.5509339 0.45727 0.5385787 +0.5547519 0.45727 0.5385787 +0.5584371 0.45727 0.5385787 +0.5619986 0.45727 0.5385787 +0.5654443 0.45727 0.5385787 +0.5687816 0.45727 0.5385787 +0.092819 0.4662797 0.5385787 +0.2262531 0.4662797 0.5385787 +0.2875993 0.4662797 0.5385787 +0.3262122 0.4662797 0.5385787 +0.3544566 0.4662797 0.5385787 +0.3767383 0.4662797 0.5385787 +0.3951413 0.4662797 0.5385787 +0.4108177 0.4662797 0.5385787 +0.4244723 0.4662797 0.5385787 +0.4365675 0.4662797 0.5385787 +0.4474232 0.4662797 0.5385787 +0.45727 0.4662797 0.5385787 +0.4662797 0.4662797 0.5385787 +0.4745834 0.4662797 0.5385787 +0.4822838 0.4662797 0.5385787 +0.4894626 0.4662797 0.5385787 +0.4961862 0.4662797 0.5385787 +0.5025087 0.4662797 0.5385787 +0.5084753 0.4662797 0.5385787 +0.514124 0.4662797 0.5385787 +0.519487 0.4662797 0.5385787 +0.5245917 0.4662797 0.5385787 +0.529462 0.4662797 0.5385787 +0.5341183 0.4662797 0.5385787 +0.5385787 0.4662797 0.5385787 +0.5428591 0.4662797 0.5385787 +0.5469733 0.4662797 0.5385787 +0.5509339 0.4662797 0.5385787 +0.5547519 0.4662797 0.5385787 +0.5584371 0.4662797 0.5385787 +0.5619986 0.4662797 0.5385787 +0.5654443 0.4662797 0.5385787 +0.5687816 0.4662797 0.5385787 +0.092819 0.4745834 0.5385787 +0.2262531 0.4745834 0.5385787 +0.2875993 0.4745834 0.5385787 +0.3262122 0.4745834 0.5385787 +0.3544566 0.4745834 0.5385787 +0.3767383 0.4745834 0.5385787 +0.3951413 0.4745834 0.5385787 +0.4108177 0.4745834 0.5385787 +0.4244723 0.4745834 0.5385787 +0.4365675 0.4745834 0.5385787 +0.4474232 0.4745834 0.5385787 +0.45727 0.4745834 0.5385787 +0.4662797 0.4745834 0.5385787 +0.4745834 0.4745834 0.5385787 +0.4822838 0.4745834 0.5385787 +0.4894626 0.4745834 0.5385787 +0.4961862 0.4745834 0.5385787 +0.5025087 0.4745834 0.5385787 +0.5084753 0.4745834 0.5385787 +0.514124 0.4745834 0.5385787 +0.519487 0.4745834 0.5385787 +0.5245917 0.4745834 0.5385787 +0.529462 0.4745834 0.5385787 +0.5341183 0.4745834 0.5385787 +0.5385787 0.4745834 0.5385787 +0.5428591 0.4745834 0.5385787 +0.5469733 0.4745834 0.5385787 +0.5509339 0.4745834 0.5385787 +0.5547519 0.4745834 0.5385787 +0.5584371 0.4745834 0.5385787 +0.5619986 0.4745834 0.5385787 +0.5654443 0.4745834 0.5385787 +0.5687816 0.4745834 0.5385787 +0.092819 0.4822838 0.5385787 +0.2262531 0.4822838 0.5385787 +0.2875993 0.4822838 0.5385787 +0.3262122 0.4822838 0.5385787 +0.3544566 0.4822838 0.5385787 +0.3767383 0.4822838 0.5385787 +0.3951413 0.4822838 0.5385787 +0.4108177 0.4822838 0.5385787 +0.4244723 0.4822838 0.5385787 +0.4365675 0.4822838 0.5385787 +0.4474232 0.4822838 0.5385787 +0.45727 0.4822838 0.5385787 +0.4662797 0.4822838 0.5385787 +0.4745834 0.4822838 0.5385787 +0.4822838 0.4822838 0.5385787 +0.4894626 0.4822838 0.5385787 +0.4961862 0.4822838 0.5385787 +0.5025087 0.4822838 0.5385787 +0.5084753 0.4822838 0.5385787 +0.514124 0.4822838 0.5385787 +0.519487 0.4822838 0.5385787 +0.5245917 0.4822838 0.5385787 +0.529462 0.4822838 0.5385787 +0.5341183 0.4822838 0.5385787 +0.5385787 0.4822838 0.5385787 +0.5428591 0.4822838 0.5385787 +0.5469733 0.4822838 0.5385787 +0.5509339 0.4822838 0.5385787 +0.5547519 0.4822838 0.5385787 +0.5584371 0.4822838 0.5385787 +0.5619986 0.4822838 0.5385787 +0.5654443 0.4822838 0.5385787 +0.5687816 0.4822838 0.5385787 +0.092819 0.4894626 0.5385787 +0.2262531 0.4894626 0.5385787 +0.2875993 0.4894626 0.5385787 +0.3262122 0.4894626 0.5385787 +0.3544566 0.4894626 0.5385787 +0.3767383 0.4894626 0.5385787 +0.3951413 0.4894626 0.5385787 +0.4108177 0.4894626 0.5385787 +0.4244723 0.4894626 0.5385787 +0.4365675 0.4894626 0.5385787 +0.4474232 0.4894626 0.5385787 +0.45727 0.4894626 0.5385787 +0.4662797 0.4894626 0.5385787 +0.4745834 0.4894626 0.5385787 +0.4822838 0.4894626 0.5385787 +0.4894626 0.4894626 0.5385787 +0.4961862 0.4894626 0.5385787 +0.5025087 0.4894626 0.5385787 +0.5084753 0.4894626 0.5385787 +0.514124 0.4894626 0.5385787 +0.519487 0.4894626 0.5385787 +0.5245917 0.4894626 0.5385787 +0.529462 0.4894626 0.5385787 +0.5341183 0.4894626 0.5385787 +0.5385787 0.4894626 0.5385787 +0.5428591 0.4894626 0.5385787 +0.5469733 0.4894626 0.5385787 +0.5509339 0.4894626 0.5385787 +0.5547519 0.4894626 0.5385787 +0.5584371 0.4894626 0.5385787 +0.5619986 0.4894626 0.5385787 +0.5654443 0.4894626 0.5385787 +0.5687816 0.4894626 0.5385787 +0.092819 0.4961862 0.5385787 +0.2262531 0.4961862 0.5385787 +0.2875993 0.4961862 0.5385787 +0.3262122 0.4961862 0.5385787 +0.3544566 0.4961862 0.5385787 +0.3767383 0.4961862 0.5385787 +0.3951413 0.4961862 0.5385787 +0.4108177 0.4961862 0.5385787 +0.4244723 0.4961862 0.5385787 +0.4365675 0.4961862 0.5385787 +0.4474232 0.4961862 0.5385787 +0.45727 0.4961862 0.5385787 +0.4662797 0.4961862 0.5385787 +0.4745834 0.4961862 0.5385787 +0.4822838 0.4961862 0.5385787 +0.4894626 0.4961862 0.5385787 +0.4961862 0.4961862 0.5385787 +0.5025087 0.4961862 0.5385787 +0.5084753 0.4961862 0.5385787 +0.514124 0.4961862 0.5385787 +0.519487 0.4961862 0.5385787 +0.5245917 0.4961862 0.5385787 +0.529462 0.4961862 0.5385787 +0.5341183 0.4961862 0.5385787 +0.5385787 0.4961862 0.5385787 +0.5428591 0.4961862 0.5385787 +0.5469733 0.4961862 0.5385787 +0.5509339 0.4961862 0.5385787 +0.5547519 0.4961862 0.5385787 +0.5584371 0.4961862 0.5385787 +0.5619986 0.4961862 0.5385787 +0.5654443 0.4961862 0.5385787 +0.5687816 0.4961862 0.5385787 +0.092819 0.5025087 0.5385787 +0.2262531 0.5025087 0.5385787 +0.2875993 0.5025087 0.5385787 +0.3262122 0.5025087 0.5385787 +0.3544566 0.5025087 0.5385787 +0.3767383 0.5025087 0.5385787 +0.3951413 0.5025087 0.5385787 +0.4108177 0.5025087 0.5385787 +0.4244723 0.5025087 0.5385787 +0.4365675 0.5025087 0.5385787 +0.4474232 0.5025087 0.5385787 +0.45727 0.5025087 0.5385787 +0.4662797 0.5025087 0.5385787 +0.4745834 0.5025087 0.5385787 +0.4822838 0.5025087 0.5385787 +0.4894626 0.5025087 0.5385787 +0.4961862 0.5025087 0.5385787 +0.5025087 0.5025087 0.5385787 +0.5084753 0.5025087 0.5385787 +0.514124 0.5025087 0.5385787 +0.519487 0.5025087 0.5385787 +0.5245917 0.5025087 0.5385787 +0.529462 0.5025087 0.5385787 +0.5341183 0.5025087 0.5385787 +0.5385787 0.5025087 0.5385787 +0.5428591 0.5025087 0.5385787 +0.5469733 0.5025087 0.5385787 +0.5509339 0.5025087 0.5385787 +0.5547519 0.5025087 0.5385787 +0.5584371 0.5025087 0.5385787 +0.5619986 0.5025087 0.5385787 +0.5654443 0.5025087 0.5385787 +0.5687816 0.5025087 0.5385787 +0.092819 0.5084753 0.5385787 +0.2262531 0.5084753 0.5385787 +0.2875993 0.5084753 0.5385787 +0.3262122 0.5084753 0.5385787 +0.3544566 0.5084753 0.5385787 +0.3767383 0.5084753 0.5385787 +0.3951413 0.5084753 0.5385787 +0.4108177 0.5084753 0.5385787 +0.4244723 0.5084753 0.5385787 +0.4365675 0.5084753 0.5385787 +0.4474232 0.5084753 0.5385787 +0.45727 0.5084753 0.5385787 +0.4662797 0.5084753 0.5385787 +0.4745834 0.5084753 0.5385787 +0.4822838 0.5084753 0.5385787 +0.4894626 0.5084753 0.5385787 +0.4961862 0.5084753 0.5385787 +0.5025087 0.5084753 0.5385787 +0.5084753 0.5084753 0.5385787 +0.514124 0.5084753 0.5385787 +0.519487 0.5084753 0.5385787 +0.5245917 0.5084753 0.5385787 +0.529462 0.5084753 0.5385787 +0.5341183 0.5084753 0.5385787 +0.5385787 0.5084753 0.5385787 +0.5428591 0.5084753 0.5385787 +0.5469733 0.5084753 0.5385787 +0.5509339 0.5084753 0.5385787 +0.5547519 0.5084753 0.5385787 +0.5584371 0.5084753 0.5385787 +0.5619986 0.5084753 0.5385787 +0.5654443 0.5084753 0.5385787 +0.5687816 0.5084753 0.5385787 +0.092819 0.514124 0.5385787 +0.2262531 0.514124 0.5385787 +0.2875993 0.514124 0.5385787 +0.3262122 0.514124 0.5385787 +0.3544566 0.514124 0.5385787 +0.3767383 0.514124 0.5385787 +0.3951413 0.514124 0.5385787 +0.4108177 0.514124 0.5385787 +0.4244723 0.514124 0.5385787 +0.4365675 0.514124 0.5385787 +0.4474232 0.514124 0.5385787 +0.45727 0.514124 0.5385787 +0.4662797 0.514124 0.5385787 +0.4745834 0.514124 0.5385787 +0.4822838 0.514124 0.5385787 +0.4894626 0.514124 0.5385787 +0.4961862 0.514124 0.5385787 +0.5025087 0.514124 0.5385787 +0.5084753 0.514124 0.5385787 +0.514124 0.514124 0.5385787 +0.519487 0.514124 0.5385787 +0.5245917 0.514124 0.5385787 +0.529462 0.514124 0.5385787 +0.5341183 0.514124 0.5385787 +0.5385787 0.514124 0.5385787 +0.5428591 0.514124 0.5385787 +0.5469733 0.514124 0.5385787 +0.5509339 0.514124 0.5385787 +0.5547519 0.514124 0.5385787 +0.5584371 0.514124 0.5385787 +0.5619986 0.514124 0.5385787 +0.5654443 0.514124 0.5385787 +0.5687816 0.514124 0.5385787 +0.092819 0.519487 0.5385787 +0.2262531 0.519487 0.5385787 +0.2875993 0.519487 0.5385787 +0.3262122 0.519487 0.5385787 +0.3544566 0.519487 0.5385787 +0.3767383 0.519487 0.5385787 +0.3951413 0.519487 0.5385787 +0.4108177 0.519487 0.5385787 +0.4244723 0.519487 0.5385787 +0.4365675 0.519487 0.5385787 +0.4474232 0.519487 0.5385787 +0.45727 0.519487 0.5385787 +0.4662797 0.519487 0.5385787 +0.4745834 0.519487 0.5385787 +0.4822838 0.519487 0.5385787 +0.4894626 0.519487 0.5385787 +0.4961862 0.519487 0.5385787 +0.5025087 0.519487 0.5385787 +0.5084753 0.519487 0.5385787 +0.514124 0.519487 0.5385787 +0.519487 0.519487 0.5385787 +0.5245917 0.519487 0.5385787 +0.529462 0.519487 0.5385787 +0.5341183 0.519487 0.5385787 +0.5385787 0.519487 0.5385787 +0.5428591 0.519487 0.5385787 +0.5469733 0.519487 0.5385787 +0.5509339 0.519487 0.5385787 +0.5547519 0.519487 0.5385787 +0.5584371 0.519487 0.5385787 +0.5619986 0.519487 0.5385787 +0.5654443 0.519487 0.5385787 +0.5687816 0.519487 0.5385787 +0.092819 0.5245917 0.5385787 +0.2262531 0.5245917 0.5385787 +0.2875993 0.5245917 0.5385787 +0.3262122 0.5245917 0.5385787 +0.3544566 0.5245917 0.5385787 +0.3767383 0.5245917 0.5385787 +0.3951413 0.5245917 0.5385787 +0.4108177 0.5245917 0.5385787 +0.4244723 0.5245917 0.5385787 +0.4365675 0.5245917 0.5385787 +0.4474232 0.5245917 0.5385787 +0.45727 0.5245917 0.5385787 +0.4662797 0.5245917 0.5385787 +0.4745834 0.5245917 0.5385787 +0.4822838 0.5245917 0.5385787 +0.4894626 0.5245917 0.5385787 +0.4961862 0.5245917 0.5385787 +0.5025087 0.5245917 0.5385787 +0.5084753 0.5245917 0.5385787 +0.514124 0.5245917 0.5385787 +0.519487 0.5245917 0.5385787 +0.5245917 0.5245917 0.5385787 +0.529462 0.5245917 0.5385787 +0.5341183 0.5245917 0.5385787 +0.5385787 0.5245917 0.5385787 +0.5428591 0.5245917 0.5385787 +0.5469733 0.5245917 0.5385787 +0.5509339 0.5245917 0.5385787 +0.5547519 0.5245917 0.5385787 +0.5584371 0.5245917 0.5385787 +0.5619986 0.5245917 0.5385787 +0.5654443 0.5245917 0.5385787 +0.5687816 0.5245917 0.5385787 +0.092819 0.529462 0.5385787 +0.2262531 0.529462 0.5385787 +0.2875993 0.529462 0.5385787 +0.3262122 0.529462 0.5385787 +0.3544566 0.529462 0.5385787 +0.3767383 0.529462 0.5385787 +0.3951413 0.529462 0.5385787 +0.4108177 0.529462 0.5385787 +0.4244723 0.529462 0.5385787 +0.4365675 0.529462 0.5385787 +0.4474232 0.529462 0.5385787 +0.45727 0.529462 0.5385787 +0.4662797 0.529462 0.5385787 +0.4745834 0.529462 0.5385787 +0.4822838 0.529462 0.5385787 +0.4894626 0.529462 0.5385787 +0.4961862 0.529462 0.5385787 +0.5025087 0.529462 0.5385787 +0.5084753 0.529462 0.5385787 +0.514124 0.529462 0.5385787 +0.519487 0.529462 0.5385787 +0.5245917 0.529462 0.5385787 +0.529462 0.529462 0.5385787 +0.5341183 0.529462 0.5385787 +0.5385787 0.529462 0.5385787 +0.5428591 0.529462 0.5385787 +0.5469733 0.529462 0.5385787 +0.5509339 0.529462 0.5385787 +0.5547519 0.529462 0.5385787 +0.5584371 0.529462 0.5385787 +0.5619986 0.529462 0.5385787 +0.5654443 0.529462 0.5385787 +0.5687816 0.529462 0.5385787 +0.092819 0.5341183 0.5385787 +0.2262531 0.5341183 0.5385787 +0.2875993 0.5341183 0.5385787 +0.3262122 0.5341183 0.5385787 +0.3544566 0.5341183 0.5385787 +0.3767383 0.5341183 0.5385787 +0.3951413 0.5341183 0.5385787 +0.4108177 0.5341183 0.5385787 +0.4244723 0.5341183 0.5385787 +0.4365675 0.5341183 0.5385787 +0.4474232 0.5341183 0.5385787 +0.45727 0.5341183 0.5385787 +0.4662797 0.5341183 0.5385787 +0.4745834 0.5341183 0.5385787 +0.4822838 0.5341183 0.5385787 +0.4894626 0.5341183 0.5385787 +0.4961862 0.5341183 0.5385787 +0.5025087 0.5341183 0.5385787 +0.5084753 0.5341183 0.5385787 +0.514124 0.5341183 0.5385787 +0.519487 0.5341183 0.5385787 +0.5245917 0.5341183 0.5385787 +0.529462 0.5341183 0.5385787 +0.5341183 0.5341183 0.5385787 +0.5385787 0.5341183 0.5385787 +0.5428591 0.5341183 0.5385787 +0.5469733 0.5341183 0.5385787 +0.5509339 0.5341183 0.5385787 +0.5547519 0.5341183 0.5385787 +0.5584371 0.5341183 0.5385787 +0.5619986 0.5341183 0.5385787 +0.5654443 0.5341183 0.5385787 +0.5687816 0.5341183 0.5385787 +0.092819 0.5385787 0.5385787 +0.2262531 0.5385787 0.5385787 +0.2875993 0.5385787 0.5385787 +0.3262122 0.5385787 0.5385787 +0.3544566 0.5385787 0.5385787 +0.3767383 0.5385787 0.5385787 +0.3951413 0.5385787 0.5385787 +0.4108177 0.5385787 0.5385787 +0.4244723 0.5385787 0.5385787 +0.4365675 0.5385787 0.5385787 +0.4474232 0.5385787 0.5385787 +0.45727 0.5385787 0.5385787 +0.4662797 0.5385787 0.5385787 +0.4745834 0.5385787 0.5385787 +0.4822838 0.5385787 0.5385787 +0.4894626 0.5385787 0.5385787 +0.4961862 0.5385787 0.5385787 +0.5025087 0.5385787 0.5385787 +0.5084753 0.5385787 0.5385787 +0.514124 0.5385787 0.5385787 +0.519487 0.5385787 0.5385787 +0.5245917 0.5385787 0.5385787 +0.529462 0.5385787 0.5385787 +0.5341183 0.5385787 0.5385787 +0.5385787 0.5385787 0.5385787 +0.5428591 0.5385787 0.5385787 +0.5469733 0.5385787 0.5385787 +0.5509339 0.5385787 0.5385787 +0.5547519 0.5385787 0.5385787 +0.5584371 0.5385787 0.5385787 +0.5619986 0.5385787 0.5385787 +0.5654443 0.5385787 0.5385787 +0.5687816 0.5385787 0.5385787 +0.092819 0.5428591 0.5385787 +0.2262531 0.5428591 0.5385787 +0.2875993 0.5428591 0.5385787 +0.3262122 0.5428591 0.5385787 +0.3544566 0.5428591 0.5385787 +0.3767383 0.5428591 0.5385787 +0.3951413 0.5428591 0.5385787 +0.4108177 0.5428591 0.5385787 +0.4244723 0.5428591 0.5385787 +0.4365675 0.5428591 0.5385787 +0.4474232 0.5428591 0.5385787 +0.45727 0.5428591 0.5385787 +0.4662797 0.5428591 0.5385787 +0.4745834 0.5428591 0.5385787 +0.4822838 0.5428591 0.5385787 +0.4894626 0.5428591 0.5385787 +0.4961862 0.5428591 0.5385787 +0.5025087 0.5428591 0.5385787 +0.5084753 0.5428591 0.5385787 +0.514124 0.5428591 0.5385787 +0.519487 0.5428591 0.5385787 +0.5245917 0.5428591 0.5385787 +0.529462 0.5428591 0.5385787 +0.5341183 0.5428591 0.5385787 +0.5385787 0.5428591 0.5385787 +0.5428591 0.5428591 0.5385787 +0.5469733 0.5428591 0.5385787 +0.5509339 0.5428591 0.5385787 +0.5547519 0.5428591 0.5385787 +0.5584371 0.5428591 0.5385787 +0.5619986 0.5428591 0.5385787 +0.5654443 0.5428591 0.5385787 +0.5687816 0.5428591 0.5385787 +0.092819 0.5469733 0.5385787 +0.2262531 0.5469733 0.5385787 +0.2875993 0.5469733 0.5385787 +0.3262122 0.5469733 0.5385787 +0.3544566 0.5469733 0.5385787 +0.3767383 0.5469733 0.5385787 +0.3951413 0.5469733 0.5385787 +0.4108177 0.5469733 0.5385787 +0.4244723 0.5469733 0.5385787 +0.4365675 0.5469733 0.5385787 +0.4474232 0.5469733 0.5385787 +0.45727 0.5469733 0.5385787 +0.4662797 0.5469733 0.5385787 +0.4745834 0.5469733 0.5385787 +0.4822838 0.5469733 0.5385787 +0.4894626 0.5469733 0.5385787 +0.4961862 0.5469733 0.5385787 +0.5025087 0.5469733 0.5385787 +0.5084753 0.5469733 0.5385787 +0.514124 0.5469733 0.5385787 +0.519487 0.5469733 0.5385787 +0.5245917 0.5469733 0.5385787 +0.529462 0.5469733 0.5385787 +0.5341183 0.5469733 0.5385787 +0.5385787 0.5469733 0.5385787 +0.5428591 0.5469733 0.5385787 +0.5469733 0.5469733 0.5385787 +0.5509339 0.5469733 0.5385787 +0.5547519 0.5469733 0.5385787 +0.5584371 0.5469733 0.5385787 +0.5619986 0.5469733 0.5385787 +0.5654443 0.5469733 0.5385787 +0.5687816 0.5469733 0.5385787 +0.092819 0.5509339 0.5385787 +0.2262531 0.5509339 0.5385787 +0.2875993 0.5509339 0.5385787 +0.3262122 0.5509339 0.5385787 +0.3544566 0.5509339 0.5385787 +0.3767383 0.5509339 0.5385787 +0.3951413 0.5509339 0.5385787 +0.4108177 0.5509339 0.5385787 +0.4244723 0.5509339 0.5385787 +0.4365675 0.5509339 0.5385787 +0.4474232 0.5509339 0.5385787 +0.45727 0.5509339 0.5385787 +0.4662797 0.5509339 0.5385787 +0.4745834 0.5509339 0.5385787 +0.4822838 0.5509339 0.5385787 +0.4894626 0.5509339 0.5385787 +0.4961862 0.5509339 0.5385787 +0.5025087 0.5509339 0.5385787 +0.5084753 0.5509339 0.5385787 +0.514124 0.5509339 0.5385787 +0.519487 0.5509339 0.5385787 +0.5245917 0.5509339 0.5385787 +0.529462 0.5509339 0.5385787 +0.5341183 0.5509339 0.5385787 +0.5385787 0.5509339 0.5385787 +0.5428591 0.5509339 0.5385787 +0.5469733 0.5509339 0.5385787 +0.5509339 0.5509339 0.5385787 +0.5547519 0.5509339 0.5385787 +0.5584371 0.5509339 0.5385787 +0.5619986 0.5509339 0.5385787 +0.5654443 0.5509339 0.5385787 +0.5687816 0.5509339 0.5385787 +0.092819 0.5547519 0.5385787 +0.2262531 0.5547519 0.5385787 +0.2875993 0.5547519 0.5385787 +0.3262122 0.5547519 0.5385787 +0.3544566 0.5547519 0.5385787 +0.3767383 0.5547519 0.5385787 +0.3951413 0.5547519 0.5385787 +0.4108177 0.5547519 0.5385787 +0.4244723 0.5547519 0.5385787 +0.4365675 0.5547519 0.5385787 +0.4474232 0.5547519 0.5385787 +0.45727 0.5547519 0.5385787 +0.4662797 0.5547519 0.5385787 +0.4745834 0.5547519 0.5385787 +0.4822838 0.5547519 0.5385787 +0.4894626 0.5547519 0.5385787 +0.4961862 0.5547519 0.5385787 +0.5025087 0.5547519 0.5385787 +0.5084753 0.5547519 0.5385787 +0.514124 0.5547519 0.5385787 +0.519487 0.5547519 0.5385787 +0.5245917 0.5547519 0.5385787 +0.529462 0.5547519 0.5385787 +0.5341183 0.5547519 0.5385787 +0.5385787 0.5547519 0.5385787 +0.5428591 0.5547519 0.5385787 +0.5469733 0.5547519 0.5385787 +0.5509339 0.5547519 0.5385787 +0.5547519 0.5547519 0.5385787 +0.5584371 0.5547519 0.5385787 +0.5619986 0.5547519 0.5385787 +0.5654443 0.5547519 0.5385787 +0.5687816 0.5547519 0.5385787 +0.092819 0.5584371 0.5385787 +0.2262531 0.5584371 0.5385787 +0.2875993 0.5584371 0.5385787 +0.3262122 0.5584371 0.5385787 +0.3544566 0.5584371 0.5385787 +0.3767383 0.5584371 0.5385787 +0.3951413 0.5584371 0.5385787 +0.4108177 0.5584371 0.5385787 +0.4244723 0.5584371 0.5385787 +0.4365675 0.5584371 0.5385787 +0.4474232 0.5584371 0.5385787 +0.45727 0.5584371 0.5385787 +0.4662797 0.5584371 0.5385787 +0.4745834 0.5584371 0.5385787 +0.4822838 0.5584371 0.5385787 +0.4894626 0.5584371 0.5385787 +0.4961862 0.5584371 0.5385787 +0.5025087 0.5584371 0.5385787 +0.5084753 0.5584371 0.5385787 +0.514124 0.5584371 0.5385787 +0.519487 0.5584371 0.5385787 +0.5245917 0.5584371 0.5385787 +0.529462 0.5584371 0.5385787 +0.5341183 0.5584371 0.5385787 +0.5385787 0.5584371 0.5385787 +0.5428591 0.5584371 0.5385787 +0.5469733 0.5584371 0.5385787 +0.5509339 0.5584371 0.5385787 +0.5547519 0.5584371 0.5385787 +0.5584371 0.5584371 0.5385787 +0.5619986 0.5584371 0.5385787 +0.5654443 0.5584371 0.5385787 +0.5687816 0.5584371 0.5385787 +0.092819 0.5619986 0.5385787 +0.2262531 0.5619986 0.5385787 +0.2875993 0.5619986 0.5385787 +0.3262122 0.5619986 0.5385787 +0.3544566 0.5619986 0.5385787 +0.3767383 0.5619986 0.5385787 +0.3951413 0.5619986 0.5385787 +0.4108177 0.5619986 0.5385787 +0.4244723 0.5619986 0.5385787 +0.4365675 0.5619986 0.5385787 +0.4474232 0.5619986 0.5385787 +0.45727 0.5619986 0.5385787 +0.4662797 0.5619986 0.5385787 +0.4745834 0.5619986 0.5385787 +0.4822838 0.5619986 0.5385787 +0.4894626 0.5619986 0.5385787 +0.4961862 0.5619986 0.5385787 +0.5025087 0.5619986 0.5385787 +0.5084753 0.5619986 0.5385787 +0.514124 0.5619986 0.5385787 +0.519487 0.5619986 0.5385787 +0.5245917 0.5619986 0.5385787 +0.529462 0.5619986 0.5385787 +0.5341183 0.5619986 0.5385787 +0.5385787 0.5619986 0.5385787 +0.5428591 0.5619986 0.5385787 +0.5469733 0.5619986 0.5385787 +0.5509339 0.5619986 0.5385787 +0.5547519 0.5619986 0.5385787 +0.5584371 0.5619986 0.5385787 +0.5619986 0.5619986 0.5385787 +0.5654443 0.5619986 0.5385787 +0.5687816 0.5619986 0.5385787 +0.092819 0.5654443 0.5385787 +0.2262531 0.5654443 0.5385787 +0.2875993 0.5654443 0.5385787 +0.3262122 0.5654443 0.5385787 +0.3544566 0.5654443 0.5385787 +0.3767383 0.5654443 0.5385787 +0.3951413 0.5654443 0.5385787 +0.4108177 0.5654443 0.5385787 +0.4244723 0.5654443 0.5385787 +0.4365675 0.5654443 0.5385787 +0.4474232 0.5654443 0.5385787 +0.45727 0.5654443 0.5385787 +0.4662797 0.5654443 0.5385787 +0.4745834 0.5654443 0.5385787 +0.4822838 0.5654443 0.5385787 +0.4894626 0.5654443 0.5385787 +0.4961862 0.5654443 0.5385787 +0.5025087 0.5654443 0.5385787 +0.5084753 0.5654443 0.5385787 +0.514124 0.5654443 0.5385787 +0.519487 0.5654443 0.5385787 +0.5245917 0.5654443 0.5385787 +0.529462 0.5654443 0.5385787 +0.5341183 0.5654443 0.5385787 +0.5385787 0.5654443 0.5385787 +0.5428591 0.5654443 0.5385787 +0.5469733 0.5654443 0.5385787 +0.5509339 0.5654443 0.5385787 +0.5547519 0.5654443 0.5385787 +0.5584371 0.5654443 0.5385787 +0.5619986 0.5654443 0.5385787 +0.5654443 0.5654443 0.5385787 +0.5687816 0.5654443 0.5385787 +0.092819 0.5687816 0.5385787 +0.2262531 0.5687816 0.5385787 +0.2875993 0.5687816 0.5385787 +0.3262122 0.5687816 0.5385787 +0.3544566 0.5687816 0.5385787 +0.3767383 0.5687816 0.5385787 +0.3951413 0.5687816 0.5385787 +0.4108177 0.5687816 0.5385787 +0.4244723 0.5687816 0.5385787 +0.4365675 0.5687816 0.5385787 +0.4474232 0.5687816 0.5385787 +0.45727 0.5687816 0.5385787 +0.4662797 0.5687816 0.5385787 +0.4745834 0.5687816 0.5385787 +0.4822838 0.5687816 0.5385787 +0.4894626 0.5687816 0.5385787 +0.4961862 0.5687816 0.5385787 +0.5025087 0.5687816 0.5385787 +0.5084753 0.5687816 0.5385787 +0.514124 0.5687816 0.5385787 +0.519487 0.5687816 0.5385787 +0.5245917 0.5687816 0.5385787 +0.529462 0.5687816 0.5385787 +0.5341183 0.5687816 0.5385787 +0.5385787 0.5687816 0.5385787 +0.5428591 0.5687816 0.5385787 +0.5469733 0.5687816 0.5385787 +0.5509339 0.5687816 0.5385787 +0.5547519 0.5687816 0.5385787 +0.5584371 0.5687816 0.5385787 +0.5619986 0.5687816 0.5385787 +0.5654443 0.5687816 0.5385787 +0.5687816 0.5687816 0.5385787 +0.092819 0.092819 0.5428591 +0.2262531 0.092819 0.5428591 +0.2875993 0.092819 0.5428591 +0.3262122 0.092819 0.5428591 +0.3544566 0.092819 0.5428591 +0.3767383 0.092819 0.5428591 +0.3951413 0.092819 0.5428591 +0.4108177 0.092819 0.5428591 +0.4244723 0.092819 0.5428591 +0.4365675 0.092819 0.5428591 +0.4474232 0.092819 0.5428591 +0.45727 0.092819 0.5428591 +0.4662797 0.092819 0.5428591 +0.4745834 0.092819 0.5428591 +0.4822838 0.092819 0.5428591 +0.4894626 0.092819 0.5428591 +0.4961862 0.092819 0.5428591 +0.5025087 0.092819 0.5428591 +0.5084753 0.092819 0.5428591 +0.514124 0.092819 0.5428591 +0.519487 0.092819 0.5428591 +0.5245917 0.092819 0.5428591 +0.529462 0.092819 0.5428591 +0.5341183 0.092819 0.5428591 +0.5385787 0.092819 0.5428591 +0.5428591 0.092819 0.5428591 +0.5469733 0.092819 0.5428591 +0.5509339 0.092819 0.5428591 +0.5547519 0.092819 0.5428591 +0.5584371 0.092819 0.5428591 +0.5619986 0.092819 0.5428591 +0.5654443 0.092819 0.5428591 +0.5687816 0.092819 0.5428591 +0.092819 0.2262531 0.5428591 +0.2262531 0.2262531 0.5428591 +0.2875993 0.2262531 0.5428591 +0.3262122 0.2262531 0.5428591 +0.3544566 0.2262531 0.5428591 +0.3767383 0.2262531 0.5428591 +0.3951413 0.2262531 0.5428591 +0.4108177 0.2262531 0.5428591 +0.4244723 0.2262531 0.5428591 +0.4365675 0.2262531 0.5428591 +0.4474232 0.2262531 0.5428591 +0.45727 0.2262531 0.5428591 +0.4662797 0.2262531 0.5428591 +0.4745834 0.2262531 0.5428591 +0.4822838 0.2262531 0.5428591 +0.4894626 0.2262531 0.5428591 +0.4961862 0.2262531 0.5428591 +0.5025087 0.2262531 0.5428591 +0.5084753 0.2262531 0.5428591 +0.514124 0.2262531 0.5428591 +0.519487 0.2262531 0.5428591 +0.5245917 0.2262531 0.5428591 +0.529462 0.2262531 0.5428591 +0.5341183 0.2262531 0.5428591 +0.5385787 0.2262531 0.5428591 +0.5428591 0.2262531 0.5428591 +0.5469733 0.2262531 0.5428591 +0.5509339 0.2262531 0.5428591 +0.5547519 0.2262531 0.5428591 +0.5584371 0.2262531 0.5428591 +0.5619986 0.2262531 0.5428591 +0.5654443 0.2262531 0.5428591 +0.5687816 0.2262531 0.5428591 +0.092819 0.2875993 0.5428591 +0.2262531 0.2875993 0.5428591 +0.2875993 0.2875993 0.5428591 +0.3262122 0.2875993 0.5428591 +0.3544566 0.2875993 0.5428591 +0.3767383 0.2875993 0.5428591 +0.3951413 0.2875993 0.5428591 +0.4108177 0.2875993 0.5428591 +0.4244723 0.2875993 0.5428591 +0.4365675 0.2875993 0.5428591 +0.4474232 0.2875993 0.5428591 +0.45727 0.2875993 0.5428591 +0.4662797 0.2875993 0.5428591 +0.4745834 0.2875993 0.5428591 +0.4822838 0.2875993 0.5428591 +0.4894626 0.2875993 0.5428591 +0.4961862 0.2875993 0.5428591 +0.5025087 0.2875993 0.5428591 +0.5084753 0.2875993 0.5428591 +0.514124 0.2875993 0.5428591 +0.519487 0.2875993 0.5428591 +0.5245917 0.2875993 0.5428591 +0.529462 0.2875993 0.5428591 +0.5341183 0.2875993 0.5428591 +0.5385787 0.2875993 0.5428591 +0.5428591 0.2875993 0.5428591 +0.5469733 0.2875993 0.5428591 +0.5509339 0.2875993 0.5428591 +0.5547519 0.2875993 0.5428591 +0.5584371 0.2875993 0.5428591 +0.5619986 0.2875993 0.5428591 +0.5654443 0.2875993 0.5428591 +0.5687816 0.2875993 0.5428591 +0.092819 0.3262122 0.5428591 +0.2262531 0.3262122 0.5428591 +0.2875993 0.3262122 0.5428591 +0.3262122 0.3262122 0.5428591 +0.3544566 0.3262122 0.5428591 +0.3767383 0.3262122 0.5428591 +0.3951413 0.3262122 0.5428591 +0.4108177 0.3262122 0.5428591 +0.4244723 0.3262122 0.5428591 +0.4365675 0.3262122 0.5428591 +0.4474232 0.3262122 0.5428591 +0.45727 0.3262122 0.5428591 +0.4662797 0.3262122 0.5428591 +0.4745834 0.3262122 0.5428591 +0.4822838 0.3262122 0.5428591 +0.4894626 0.3262122 0.5428591 +0.4961862 0.3262122 0.5428591 +0.5025087 0.3262122 0.5428591 +0.5084753 0.3262122 0.5428591 +0.514124 0.3262122 0.5428591 +0.519487 0.3262122 0.5428591 +0.5245917 0.3262122 0.5428591 +0.529462 0.3262122 0.5428591 +0.5341183 0.3262122 0.5428591 +0.5385787 0.3262122 0.5428591 +0.5428591 0.3262122 0.5428591 +0.5469733 0.3262122 0.5428591 +0.5509339 0.3262122 0.5428591 +0.5547519 0.3262122 0.5428591 +0.5584371 0.3262122 0.5428591 +0.5619986 0.3262122 0.5428591 +0.5654443 0.3262122 0.5428591 +0.5687816 0.3262122 0.5428591 +0.092819 0.3544566 0.5428591 +0.2262531 0.3544566 0.5428591 +0.2875993 0.3544566 0.5428591 +0.3262122 0.3544566 0.5428591 +0.3544566 0.3544566 0.5428591 +0.3767383 0.3544566 0.5428591 +0.3951413 0.3544566 0.5428591 +0.4108177 0.3544566 0.5428591 +0.4244723 0.3544566 0.5428591 +0.4365675 0.3544566 0.5428591 +0.4474232 0.3544566 0.5428591 +0.45727 0.3544566 0.5428591 +0.4662797 0.3544566 0.5428591 +0.4745834 0.3544566 0.5428591 +0.4822838 0.3544566 0.5428591 +0.4894626 0.3544566 0.5428591 +0.4961862 0.3544566 0.5428591 +0.5025087 0.3544566 0.5428591 +0.5084753 0.3544566 0.5428591 +0.514124 0.3544566 0.5428591 +0.519487 0.3544566 0.5428591 +0.5245917 0.3544566 0.5428591 +0.529462 0.3544566 0.5428591 +0.5341183 0.3544566 0.5428591 +0.5385787 0.3544566 0.5428591 +0.5428591 0.3544566 0.5428591 +0.5469733 0.3544566 0.5428591 +0.5509339 0.3544566 0.5428591 +0.5547519 0.3544566 0.5428591 +0.5584371 0.3544566 0.5428591 +0.5619986 0.3544566 0.5428591 +0.5654443 0.3544566 0.5428591 +0.5687816 0.3544566 0.5428591 +0.092819 0.3767383 0.5428591 +0.2262531 0.3767383 0.5428591 +0.2875993 0.3767383 0.5428591 +0.3262122 0.3767383 0.5428591 +0.3544566 0.3767383 0.5428591 +0.3767383 0.3767383 0.5428591 +0.3951413 0.3767383 0.5428591 +0.4108177 0.3767383 0.5428591 +0.4244723 0.3767383 0.5428591 +0.4365675 0.3767383 0.5428591 +0.4474232 0.3767383 0.5428591 +0.45727 0.3767383 0.5428591 +0.4662797 0.3767383 0.5428591 +0.4745834 0.3767383 0.5428591 +0.4822838 0.3767383 0.5428591 +0.4894626 0.3767383 0.5428591 +0.4961862 0.3767383 0.5428591 +0.5025087 0.3767383 0.5428591 +0.5084753 0.3767383 0.5428591 +0.514124 0.3767383 0.5428591 +0.519487 0.3767383 0.5428591 +0.5245917 0.3767383 0.5428591 +0.529462 0.3767383 0.5428591 +0.5341183 0.3767383 0.5428591 +0.5385787 0.3767383 0.5428591 +0.5428591 0.3767383 0.5428591 +0.5469733 0.3767383 0.5428591 +0.5509339 0.3767383 0.5428591 +0.5547519 0.3767383 0.5428591 +0.5584371 0.3767383 0.5428591 +0.5619986 0.3767383 0.5428591 +0.5654443 0.3767383 0.5428591 +0.5687816 0.3767383 0.5428591 +0.092819 0.3951413 0.5428591 +0.2262531 0.3951413 0.5428591 +0.2875993 0.3951413 0.5428591 +0.3262122 0.3951413 0.5428591 +0.3544566 0.3951413 0.5428591 +0.3767383 0.3951413 0.5428591 +0.3951413 0.3951413 0.5428591 +0.4108177 0.3951413 0.5428591 +0.4244723 0.3951413 0.5428591 +0.4365675 0.3951413 0.5428591 +0.4474232 0.3951413 0.5428591 +0.45727 0.3951413 0.5428591 +0.4662797 0.3951413 0.5428591 +0.4745834 0.3951413 0.5428591 +0.4822838 0.3951413 0.5428591 +0.4894626 0.3951413 0.5428591 +0.4961862 0.3951413 0.5428591 +0.5025087 0.3951413 0.5428591 +0.5084753 0.3951413 0.5428591 +0.514124 0.3951413 0.5428591 +0.519487 0.3951413 0.5428591 +0.5245917 0.3951413 0.5428591 +0.529462 0.3951413 0.5428591 +0.5341183 0.3951413 0.5428591 +0.5385787 0.3951413 0.5428591 +0.5428591 0.3951413 0.5428591 +0.5469733 0.3951413 0.5428591 +0.5509339 0.3951413 0.5428591 +0.5547519 0.3951413 0.5428591 +0.5584371 0.3951413 0.5428591 +0.5619986 0.3951413 0.5428591 +0.5654443 0.3951413 0.5428591 +0.5687816 0.3951413 0.5428591 +0.092819 0.4108177 0.5428591 +0.2262531 0.4108177 0.5428591 +0.2875993 0.4108177 0.5428591 +0.3262122 0.4108177 0.5428591 +0.3544566 0.4108177 0.5428591 +0.3767383 0.4108177 0.5428591 +0.3951413 0.4108177 0.5428591 +0.4108177 0.4108177 0.5428591 +0.4244723 0.4108177 0.5428591 +0.4365675 0.4108177 0.5428591 +0.4474232 0.4108177 0.5428591 +0.45727 0.4108177 0.5428591 +0.4662797 0.4108177 0.5428591 +0.4745834 0.4108177 0.5428591 +0.4822838 0.4108177 0.5428591 +0.4894626 0.4108177 0.5428591 +0.4961862 0.4108177 0.5428591 +0.5025087 0.4108177 0.5428591 +0.5084753 0.4108177 0.5428591 +0.514124 0.4108177 0.5428591 +0.519487 0.4108177 0.5428591 +0.5245917 0.4108177 0.5428591 +0.529462 0.4108177 0.5428591 +0.5341183 0.4108177 0.5428591 +0.5385787 0.4108177 0.5428591 +0.5428591 0.4108177 0.5428591 +0.5469733 0.4108177 0.5428591 +0.5509339 0.4108177 0.5428591 +0.5547519 0.4108177 0.5428591 +0.5584371 0.4108177 0.5428591 +0.5619986 0.4108177 0.5428591 +0.5654443 0.4108177 0.5428591 +0.5687816 0.4108177 0.5428591 +0.092819 0.4244723 0.5428591 +0.2262531 0.4244723 0.5428591 +0.2875993 0.4244723 0.5428591 +0.3262122 0.4244723 0.5428591 +0.3544566 0.4244723 0.5428591 +0.3767383 0.4244723 0.5428591 +0.3951413 0.4244723 0.5428591 +0.4108177 0.4244723 0.5428591 +0.4244723 0.4244723 0.5428591 +0.4365675 0.4244723 0.5428591 +0.4474232 0.4244723 0.5428591 +0.45727 0.4244723 0.5428591 +0.4662797 0.4244723 0.5428591 +0.4745834 0.4244723 0.5428591 +0.4822838 0.4244723 0.5428591 +0.4894626 0.4244723 0.5428591 +0.4961862 0.4244723 0.5428591 +0.5025087 0.4244723 0.5428591 +0.5084753 0.4244723 0.5428591 +0.514124 0.4244723 0.5428591 +0.519487 0.4244723 0.5428591 +0.5245917 0.4244723 0.5428591 +0.529462 0.4244723 0.5428591 +0.5341183 0.4244723 0.5428591 +0.5385787 0.4244723 0.5428591 +0.5428591 0.4244723 0.5428591 +0.5469733 0.4244723 0.5428591 +0.5509339 0.4244723 0.5428591 +0.5547519 0.4244723 0.5428591 +0.5584371 0.4244723 0.5428591 +0.5619986 0.4244723 0.5428591 +0.5654443 0.4244723 0.5428591 +0.5687816 0.4244723 0.5428591 +0.092819 0.4365675 0.5428591 +0.2262531 0.4365675 0.5428591 +0.2875993 0.4365675 0.5428591 +0.3262122 0.4365675 0.5428591 +0.3544566 0.4365675 0.5428591 +0.3767383 0.4365675 0.5428591 +0.3951413 0.4365675 0.5428591 +0.4108177 0.4365675 0.5428591 +0.4244723 0.4365675 0.5428591 +0.4365675 0.4365675 0.5428591 +0.4474232 0.4365675 0.5428591 +0.45727 0.4365675 0.5428591 +0.4662797 0.4365675 0.5428591 +0.4745834 0.4365675 0.5428591 +0.4822838 0.4365675 0.5428591 +0.4894626 0.4365675 0.5428591 +0.4961862 0.4365675 0.5428591 +0.5025087 0.4365675 0.5428591 +0.5084753 0.4365675 0.5428591 +0.514124 0.4365675 0.5428591 +0.519487 0.4365675 0.5428591 +0.5245917 0.4365675 0.5428591 +0.529462 0.4365675 0.5428591 +0.5341183 0.4365675 0.5428591 +0.5385787 0.4365675 0.5428591 +0.5428591 0.4365675 0.5428591 +0.5469733 0.4365675 0.5428591 +0.5509339 0.4365675 0.5428591 +0.5547519 0.4365675 0.5428591 +0.5584371 0.4365675 0.5428591 +0.5619986 0.4365675 0.5428591 +0.5654443 0.4365675 0.5428591 +0.5687816 0.4365675 0.5428591 +0.092819 0.4474232 0.5428591 +0.2262531 0.4474232 0.5428591 +0.2875993 0.4474232 0.5428591 +0.3262122 0.4474232 0.5428591 +0.3544566 0.4474232 0.5428591 +0.3767383 0.4474232 0.5428591 +0.3951413 0.4474232 0.5428591 +0.4108177 0.4474232 0.5428591 +0.4244723 0.4474232 0.5428591 +0.4365675 0.4474232 0.5428591 +0.4474232 0.4474232 0.5428591 +0.45727 0.4474232 0.5428591 +0.4662797 0.4474232 0.5428591 +0.4745834 0.4474232 0.5428591 +0.4822838 0.4474232 0.5428591 +0.4894626 0.4474232 0.5428591 +0.4961862 0.4474232 0.5428591 +0.5025087 0.4474232 0.5428591 +0.5084753 0.4474232 0.5428591 +0.514124 0.4474232 0.5428591 +0.519487 0.4474232 0.5428591 +0.5245917 0.4474232 0.5428591 +0.529462 0.4474232 0.5428591 +0.5341183 0.4474232 0.5428591 +0.5385787 0.4474232 0.5428591 +0.5428591 0.4474232 0.5428591 +0.5469733 0.4474232 0.5428591 +0.5509339 0.4474232 0.5428591 +0.5547519 0.4474232 0.5428591 +0.5584371 0.4474232 0.5428591 +0.5619986 0.4474232 0.5428591 +0.5654443 0.4474232 0.5428591 +0.5687816 0.4474232 0.5428591 +0.092819 0.45727 0.5428591 +0.2262531 0.45727 0.5428591 +0.2875993 0.45727 0.5428591 +0.3262122 0.45727 0.5428591 +0.3544566 0.45727 0.5428591 +0.3767383 0.45727 0.5428591 +0.3951413 0.45727 0.5428591 +0.4108177 0.45727 0.5428591 +0.4244723 0.45727 0.5428591 +0.4365675 0.45727 0.5428591 +0.4474232 0.45727 0.5428591 +0.45727 0.45727 0.5428591 +0.4662797 0.45727 0.5428591 +0.4745834 0.45727 0.5428591 +0.4822838 0.45727 0.5428591 +0.4894626 0.45727 0.5428591 +0.4961862 0.45727 0.5428591 +0.5025087 0.45727 0.5428591 +0.5084753 0.45727 0.5428591 +0.514124 0.45727 0.5428591 +0.519487 0.45727 0.5428591 +0.5245917 0.45727 0.5428591 +0.529462 0.45727 0.5428591 +0.5341183 0.45727 0.5428591 +0.5385787 0.45727 0.5428591 +0.5428591 0.45727 0.5428591 +0.5469733 0.45727 0.5428591 +0.5509339 0.45727 0.5428591 +0.5547519 0.45727 0.5428591 +0.5584371 0.45727 0.5428591 +0.5619986 0.45727 0.5428591 +0.5654443 0.45727 0.5428591 +0.5687816 0.45727 0.5428591 +0.092819 0.4662797 0.5428591 +0.2262531 0.4662797 0.5428591 +0.2875993 0.4662797 0.5428591 +0.3262122 0.4662797 0.5428591 +0.3544566 0.4662797 0.5428591 +0.3767383 0.4662797 0.5428591 +0.3951413 0.4662797 0.5428591 +0.4108177 0.4662797 0.5428591 +0.4244723 0.4662797 0.5428591 +0.4365675 0.4662797 0.5428591 +0.4474232 0.4662797 0.5428591 +0.45727 0.4662797 0.5428591 +0.4662797 0.4662797 0.5428591 +0.4745834 0.4662797 0.5428591 +0.4822838 0.4662797 0.5428591 +0.4894626 0.4662797 0.5428591 +0.4961862 0.4662797 0.5428591 +0.5025087 0.4662797 0.5428591 +0.5084753 0.4662797 0.5428591 +0.514124 0.4662797 0.5428591 +0.519487 0.4662797 0.5428591 +0.5245917 0.4662797 0.5428591 +0.529462 0.4662797 0.5428591 +0.5341183 0.4662797 0.5428591 +0.5385787 0.4662797 0.5428591 +0.5428591 0.4662797 0.5428591 +0.5469733 0.4662797 0.5428591 +0.5509339 0.4662797 0.5428591 +0.5547519 0.4662797 0.5428591 +0.5584371 0.4662797 0.5428591 +0.5619986 0.4662797 0.5428591 +0.5654443 0.4662797 0.5428591 +0.5687816 0.4662797 0.5428591 +0.092819 0.4745834 0.5428591 +0.2262531 0.4745834 0.5428591 +0.2875993 0.4745834 0.5428591 +0.3262122 0.4745834 0.5428591 +0.3544566 0.4745834 0.5428591 +0.3767383 0.4745834 0.5428591 +0.3951413 0.4745834 0.5428591 +0.4108177 0.4745834 0.5428591 +0.4244723 0.4745834 0.5428591 +0.4365675 0.4745834 0.5428591 +0.4474232 0.4745834 0.5428591 +0.45727 0.4745834 0.5428591 +0.4662797 0.4745834 0.5428591 +0.4745834 0.4745834 0.5428591 +0.4822838 0.4745834 0.5428591 +0.4894626 0.4745834 0.5428591 +0.4961862 0.4745834 0.5428591 +0.5025087 0.4745834 0.5428591 +0.5084753 0.4745834 0.5428591 +0.514124 0.4745834 0.5428591 +0.519487 0.4745834 0.5428591 +0.5245917 0.4745834 0.5428591 +0.529462 0.4745834 0.5428591 +0.5341183 0.4745834 0.5428591 +0.5385787 0.4745834 0.5428591 +0.5428591 0.4745834 0.5428591 +0.5469733 0.4745834 0.5428591 +0.5509339 0.4745834 0.5428591 +0.5547519 0.4745834 0.5428591 +0.5584371 0.4745834 0.5428591 +0.5619986 0.4745834 0.5428591 +0.5654443 0.4745834 0.5428591 +0.5687816 0.4745834 0.5428591 +0.092819 0.4822838 0.5428591 +0.2262531 0.4822838 0.5428591 +0.2875993 0.4822838 0.5428591 +0.3262122 0.4822838 0.5428591 +0.3544566 0.4822838 0.5428591 +0.3767383 0.4822838 0.5428591 +0.3951413 0.4822838 0.5428591 +0.4108177 0.4822838 0.5428591 +0.4244723 0.4822838 0.5428591 +0.4365675 0.4822838 0.5428591 +0.4474232 0.4822838 0.5428591 +0.45727 0.4822838 0.5428591 +0.4662797 0.4822838 0.5428591 +0.4745834 0.4822838 0.5428591 +0.4822838 0.4822838 0.5428591 +0.4894626 0.4822838 0.5428591 +0.4961862 0.4822838 0.5428591 +0.5025087 0.4822838 0.5428591 +0.5084753 0.4822838 0.5428591 +0.514124 0.4822838 0.5428591 +0.519487 0.4822838 0.5428591 +0.5245917 0.4822838 0.5428591 +0.529462 0.4822838 0.5428591 +0.5341183 0.4822838 0.5428591 +0.5385787 0.4822838 0.5428591 +0.5428591 0.4822838 0.5428591 +0.5469733 0.4822838 0.5428591 +0.5509339 0.4822838 0.5428591 +0.5547519 0.4822838 0.5428591 +0.5584371 0.4822838 0.5428591 +0.5619986 0.4822838 0.5428591 +0.5654443 0.4822838 0.5428591 +0.5687816 0.4822838 0.5428591 +0.092819 0.4894626 0.5428591 +0.2262531 0.4894626 0.5428591 +0.2875993 0.4894626 0.5428591 +0.3262122 0.4894626 0.5428591 +0.3544566 0.4894626 0.5428591 +0.3767383 0.4894626 0.5428591 +0.3951413 0.4894626 0.5428591 +0.4108177 0.4894626 0.5428591 +0.4244723 0.4894626 0.5428591 +0.4365675 0.4894626 0.5428591 +0.4474232 0.4894626 0.5428591 +0.45727 0.4894626 0.5428591 +0.4662797 0.4894626 0.5428591 +0.4745834 0.4894626 0.5428591 +0.4822838 0.4894626 0.5428591 +0.4894626 0.4894626 0.5428591 +0.4961862 0.4894626 0.5428591 +0.5025087 0.4894626 0.5428591 +0.5084753 0.4894626 0.5428591 +0.514124 0.4894626 0.5428591 +0.519487 0.4894626 0.5428591 +0.5245917 0.4894626 0.5428591 +0.529462 0.4894626 0.5428591 +0.5341183 0.4894626 0.5428591 +0.5385787 0.4894626 0.5428591 +0.5428591 0.4894626 0.5428591 +0.5469733 0.4894626 0.5428591 +0.5509339 0.4894626 0.5428591 +0.5547519 0.4894626 0.5428591 +0.5584371 0.4894626 0.5428591 +0.5619986 0.4894626 0.5428591 +0.5654443 0.4894626 0.5428591 +0.5687816 0.4894626 0.5428591 +0.092819 0.4961862 0.5428591 +0.2262531 0.4961862 0.5428591 +0.2875993 0.4961862 0.5428591 +0.3262122 0.4961862 0.5428591 +0.3544566 0.4961862 0.5428591 +0.3767383 0.4961862 0.5428591 +0.3951413 0.4961862 0.5428591 +0.4108177 0.4961862 0.5428591 +0.4244723 0.4961862 0.5428591 +0.4365675 0.4961862 0.5428591 +0.4474232 0.4961862 0.5428591 +0.45727 0.4961862 0.5428591 +0.4662797 0.4961862 0.5428591 +0.4745834 0.4961862 0.5428591 +0.4822838 0.4961862 0.5428591 +0.4894626 0.4961862 0.5428591 +0.4961862 0.4961862 0.5428591 +0.5025087 0.4961862 0.5428591 +0.5084753 0.4961862 0.5428591 +0.514124 0.4961862 0.5428591 +0.519487 0.4961862 0.5428591 +0.5245917 0.4961862 0.5428591 +0.529462 0.4961862 0.5428591 +0.5341183 0.4961862 0.5428591 +0.5385787 0.4961862 0.5428591 +0.5428591 0.4961862 0.5428591 +0.5469733 0.4961862 0.5428591 +0.5509339 0.4961862 0.5428591 +0.5547519 0.4961862 0.5428591 +0.5584371 0.4961862 0.5428591 +0.5619986 0.4961862 0.5428591 +0.5654443 0.4961862 0.5428591 +0.5687816 0.4961862 0.5428591 +0.092819 0.5025087 0.5428591 +0.2262531 0.5025087 0.5428591 +0.2875993 0.5025087 0.5428591 +0.3262122 0.5025087 0.5428591 +0.3544566 0.5025087 0.5428591 +0.3767383 0.5025087 0.5428591 +0.3951413 0.5025087 0.5428591 +0.4108177 0.5025087 0.5428591 +0.4244723 0.5025087 0.5428591 +0.4365675 0.5025087 0.5428591 +0.4474232 0.5025087 0.5428591 +0.45727 0.5025087 0.5428591 +0.4662797 0.5025087 0.5428591 +0.4745834 0.5025087 0.5428591 +0.4822838 0.5025087 0.5428591 +0.4894626 0.5025087 0.5428591 +0.4961862 0.5025087 0.5428591 +0.5025087 0.5025087 0.5428591 +0.5084753 0.5025087 0.5428591 +0.514124 0.5025087 0.5428591 +0.519487 0.5025087 0.5428591 +0.5245917 0.5025087 0.5428591 +0.529462 0.5025087 0.5428591 +0.5341183 0.5025087 0.5428591 +0.5385787 0.5025087 0.5428591 +0.5428591 0.5025087 0.5428591 +0.5469733 0.5025087 0.5428591 +0.5509339 0.5025087 0.5428591 +0.5547519 0.5025087 0.5428591 +0.5584371 0.5025087 0.5428591 +0.5619986 0.5025087 0.5428591 +0.5654443 0.5025087 0.5428591 +0.5687816 0.5025087 0.5428591 +0.092819 0.5084753 0.5428591 +0.2262531 0.5084753 0.5428591 +0.2875993 0.5084753 0.5428591 +0.3262122 0.5084753 0.5428591 +0.3544566 0.5084753 0.5428591 +0.3767383 0.5084753 0.5428591 +0.3951413 0.5084753 0.5428591 +0.4108177 0.5084753 0.5428591 +0.4244723 0.5084753 0.5428591 +0.4365675 0.5084753 0.5428591 +0.4474232 0.5084753 0.5428591 +0.45727 0.5084753 0.5428591 +0.4662797 0.5084753 0.5428591 +0.4745834 0.5084753 0.5428591 +0.4822838 0.5084753 0.5428591 +0.4894626 0.5084753 0.5428591 +0.4961862 0.5084753 0.5428591 +0.5025087 0.5084753 0.5428591 +0.5084753 0.5084753 0.5428591 +0.514124 0.5084753 0.5428591 +0.519487 0.5084753 0.5428591 +0.5245917 0.5084753 0.5428591 +0.529462 0.5084753 0.5428591 +0.5341183 0.5084753 0.5428591 +0.5385787 0.5084753 0.5428591 +0.5428591 0.5084753 0.5428591 +0.5469733 0.5084753 0.5428591 +0.5509339 0.5084753 0.5428591 +0.5547519 0.5084753 0.5428591 +0.5584371 0.5084753 0.5428591 +0.5619986 0.5084753 0.5428591 +0.5654443 0.5084753 0.5428591 +0.5687816 0.5084753 0.5428591 +0.092819 0.514124 0.5428591 +0.2262531 0.514124 0.5428591 +0.2875993 0.514124 0.5428591 +0.3262122 0.514124 0.5428591 +0.3544566 0.514124 0.5428591 +0.3767383 0.514124 0.5428591 +0.3951413 0.514124 0.5428591 +0.4108177 0.514124 0.5428591 +0.4244723 0.514124 0.5428591 +0.4365675 0.514124 0.5428591 +0.4474232 0.514124 0.5428591 +0.45727 0.514124 0.5428591 +0.4662797 0.514124 0.5428591 +0.4745834 0.514124 0.5428591 +0.4822838 0.514124 0.5428591 +0.4894626 0.514124 0.5428591 +0.4961862 0.514124 0.5428591 +0.5025087 0.514124 0.5428591 +0.5084753 0.514124 0.5428591 +0.514124 0.514124 0.5428591 +0.519487 0.514124 0.5428591 +0.5245917 0.514124 0.5428591 +0.529462 0.514124 0.5428591 +0.5341183 0.514124 0.5428591 +0.5385787 0.514124 0.5428591 +0.5428591 0.514124 0.5428591 +0.5469733 0.514124 0.5428591 +0.5509339 0.514124 0.5428591 +0.5547519 0.514124 0.5428591 +0.5584371 0.514124 0.5428591 +0.5619986 0.514124 0.5428591 +0.5654443 0.514124 0.5428591 +0.5687816 0.514124 0.5428591 +0.092819 0.519487 0.5428591 +0.2262531 0.519487 0.5428591 +0.2875993 0.519487 0.5428591 +0.3262122 0.519487 0.5428591 +0.3544566 0.519487 0.5428591 +0.3767383 0.519487 0.5428591 +0.3951413 0.519487 0.5428591 +0.4108177 0.519487 0.5428591 +0.4244723 0.519487 0.5428591 +0.4365675 0.519487 0.5428591 +0.4474232 0.519487 0.5428591 +0.45727 0.519487 0.5428591 +0.4662797 0.519487 0.5428591 +0.4745834 0.519487 0.5428591 +0.4822838 0.519487 0.5428591 +0.4894626 0.519487 0.5428591 +0.4961862 0.519487 0.5428591 +0.5025087 0.519487 0.5428591 +0.5084753 0.519487 0.5428591 +0.514124 0.519487 0.5428591 +0.519487 0.519487 0.5428591 +0.5245917 0.519487 0.5428591 +0.529462 0.519487 0.5428591 +0.5341183 0.519487 0.5428591 +0.5385787 0.519487 0.5428591 +0.5428591 0.519487 0.5428591 +0.5469733 0.519487 0.5428591 +0.5509339 0.519487 0.5428591 +0.5547519 0.519487 0.5428591 +0.5584371 0.519487 0.5428591 +0.5619986 0.519487 0.5428591 +0.5654443 0.519487 0.5428591 +0.5687816 0.519487 0.5428591 +0.092819 0.5245917 0.5428591 +0.2262531 0.5245917 0.5428591 +0.2875993 0.5245917 0.5428591 +0.3262122 0.5245917 0.5428591 +0.3544566 0.5245917 0.5428591 +0.3767383 0.5245917 0.5428591 +0.3951413 0.5245917 0.5428591 +0.4108177 0.5245917 0.5428591 +0.4244723 0.5245917 0.5428591 +0.4365675 0.5245917 0.5428591 +0.4474232 0.5245917 0.5428591 +0.45727 0.5245917 0.5428591 +0.4662797 0.5245917 0.5428591 +0.4745834 0.5245917 0.5428591 +0.4822838 0.5245917 0.5428591 +0.4894626 0.5245917 0.5428591 +0.4961862 0.5245917 0.5428591 +0.5025087 0.5245917 0.5428591 +0.5084753 0.5245917 0.5428591 +0.514124 0.5245917 0.5428591 +0.519487 0.5245917 0.5428591 +0.5245917 0.5245917 0.5428591 +0.529462 0.5245917 0.5428591 +0.5341183 0.5245917 0.5428591 +0.5385787 0.5245917 0.5428591 +0.5428591 0.5245917 0.5428591 +0.5469733 0.5245917 0.5428591 +0.5509339 0.5245917 0.5428591 +0.5547519 0.5245917 0.5428591 +0.5584371 0.5245917 0.5428591 +0.5619986 0.5245917 0.5428591 +0.5654443 0.5245917 0.5428591 +0.5687816 0.5245917 0.5428591 +0.092819 0.529462 0.5428591 +0.2262531 0.529462 0.5428591 +0.2875993 0.529462 0.5428591 +0.3262122 0.529462 0.5428591 +0.3544566 0.529462 0.5428591 +0.3767383 0.529462 0.5428591 +0.3951413 0.529462 0.5428591 +0.4108177 0.529462 0.5428591 +0.4244723 0.529462 0.5428591 +0.4365675 0.529462 0.5428591 +0.4474232 0.529462 0.5428591 +0.45727 0.529462 0.5428591 +0.4662797 0.529462 0.5428591 +0.4745834 0.529462 0.5428591 +0.4822838 0.529462 0.5428591 +0.4894626 0.529462 0.5428591 +0.4961862 0.529462 0.5428591 +0.5025087 0.529462 0.5428591 +0.5084753 0.529462 0.5428591 +0.514124 0.529462 0.5428591 +0.519487 0.529462 0.5428591 +0.5245917 0.529462 0.5428591 +0.529462 0.529462 0.5428591 +0.5341183 0.529462 0.5428591 +0.5385787 0.529462 0.5428591 +0.5428591 0.529462 0.5428591 +0.5469733 0.529462 0.5428591 +0.5509339 0.529462 0.5428591 +0.5547519 0.529462 0.5428591 +0.5584371 0.529462 0.5428591 +0.5619986 0.529462 0.5428591 +0.5654443 0.529462 0.5428591 +0.5687816 0.529462 0.5428591 +0.092819 0.5341183 0.5428591 +0.2262531 0.5341183 0.5428591 +0.2875993 0.5341183 0.5428591 +0.3262122 0.5341183 0.5428591 +0.3544566 0.5341183 0.5428591 +0.3767383 0.5341183 0.5428591 +0.3951413 0.5341183 0.5428591 +0.4108177 0.5341183 0.5428591 +0.4244723 0.5341183 0.5428591 +0.4365675 0.5341183 0.5428591 +0.4474232 0.5341183 0.5428591 +0.45727 0.5341183 0.5428591 +0.4662797 0.5341183 0.5428591 +0.4745834 0.5341183 0.5428591 +0.4822838 0.5341183 0.5428591 +0.4894626 0.5341183 0.5428591 +0.4961862 0.5341183 0.5428591 +0.5025087 0.5341183 0.5428591 +0.5084753 0.5341183 0.5428591 +0.514124 0.5341183 0.5428591 +0.519487 0.5341183 0.5428591 +0.5245917 0.5341183 0.5428591 +0.529462 0.5341183 0.5428591 +0.5341183 0.5341183 0.5428591 +0.5385787 0.5341183 0.5428591 +0.5428591 0.5341183 0.5428591 +0.5469733 0.5341183 0.5428591 +0.5509339 0.5341183 0.5428591 +0.5547519 0.5341183 0.5428591 +0.5584371 0.5341183 0.5428591 +0.5619986 0.5341183 0.5428591 +0.5654443 0.5341183 0.5428591 +0.5687816 0.5341183 0.5428591 +0.092819 0.5385787 0.5428591 +0.2262531 0.5385787 0.5428591 +0.2875993 0.5385787 0.5428591 +0.3262122 0.5385787 0.5428591 +0.3544566 0.5385787 0.5428591 +0.3767383 0.5385787 0.5428591 +0.3951413 0.5385787 0.5428591 +0.4108177 0.5385787 0.5428591 +0.4244723 0.5385787 0.5428591 +0.4365675 0.5385787 0.5428591 +0.4474232 0.5385787 0.5428591 +0.45727 0.5385787 0.5428591 +0.4662797 0.5385787 0.5428591 +0.4745834 0.5385787 0.5428591 +0.4822838 0.5385787 0.5428591 +0.4894626 0.5385787 0.5428591 +0.4961862 0.5385787 0.5428591 +0.5025087 0.5385787 0.5428591 +0.5084753 0.5385787 0.5428591 +0.514124 0.5385787 0.5428591 +0.519487 0.5385787 0.5428591 +0.5245917 0.5385787 0.5428591 +0.529462 0.5385787 0.5428591 +0.5341183 0.5385787 0.5428591 +0.5385787 0.5385787 0.5428591 +0.5428591 0.5385787 0.5428591 +0.5469733 0.5385787 0.5428591 +0.5509339 0.5385787 0.5428591 +0.5547519 0.5385787 0.5428591 +0.5584371 0.5385787 0.5428591 +0.5619986 0.5385787 0.5428591 +0.5654443 0.5385787 0.5428591 +0.5687816 0.5385787 0.5428591 +0.092819 0.5428591 0.5428591 +0.2262531 0.5428591 0.5428591 +0.2875993 0.5428591 0.5428591 +0.3262122 0.5428591 0.5428591 +0.3544566 0.5428591 0.5428591 +0.3767383 0.5428591 0.5428591 +0.3951413 0.5428591 0.5428591 +0.4108177 0.5428591 0.5428591 +0.4244723 0.5428591 0.5428591 +0.4365675 0.5428591 0.5428591 +0.4474232 0.5428591 0.5428591 +0.45727 0.5428591 0.5428591 +0.4662797 0.5428591 0.5428591 +0.4745834 0.5428591 0.5428591 +0.4822838 0.5428591 0.5428591 +0.4894626 0.5428591 0.5428591 +0.4961862 0.5428591 0.5428591 +0.5025087 0.5428591 0.5428591 +0.5084753 0.5428591 0.5428591 +0.514124 0.5428591 0.5428591 +0.519487 0.5428591 0.5428591 +0.5245917 0.5428591 0.5428591 +0.529462 0.5428591 0.5428591 +0.5341183 0.5428591 0.5428591 +0.5385787 0.5428591 0.5428591 +0.5428591 0.5428591 0.5428591 +0.5469733 0.5428591 0.5428591 +0.5509339 0.5428591 0.5428591 +0.5547519 0.5428591 0.5428591 +0.5584371 0.5428591 0.5428591 +0.5619986 0.5428591 0.5428591 +0.5654443 0.5428591 0.5428591 +0.5687816 0.5428591 0.5428591 +0.092819 0.5469733 0.5428591 +0.2262531 0.5469733 0.5428591 +0.2875993 0.5469733 0.5428591 +0.3262122 0.5469733 0.5428591 +0.3544566 0.5469733 0.5428591 +0.3767383 0.5469733 0.5428591 +0.3951413 0.5469733 0.5428591 +0.4108177 0.5469733 0.5428591 +0.4244723 0.5469733 0.5428591 +0.4365675 0.5469733 0.5428591 +0.4474232 0.5469733 0.5428591 +0.45727 0.5469733 0.5428591 +0.4662797 0.5469733 0.5428591 +0.4745834 0.5469733 0.5428591 +0.4822838 0.5469733 0.5428591 +0.4894626 0.5469733 0.5428591 +0.4961862 0.5469733 0.5428591 +0.5025087 0.5469733 0.5428591 +0.5084753 0.5469733 0.5428591 +0.514124 0.5469733 0.5428591 +0.519487 0.5469733 0.5428591 +0.5245917 0.5469733 0.5428591 +0.529462 0.5469733 0.5428591 +0.5341183 0.5469733 0.5428591 +0.5385787 0.5469733 0.5428591 +0.5428591 0.5469733 0.5428591 +0.5469733 0.5469733 0.5428591 +0.5509339 0.5469733 0.5428591 +0.5547519 0.5469733 0.5428591 +0.5584371 0.5469733 0.5428591 +0.5619986 0.5469733 0.5428591 +0.5654443 0.5469733 0.5428591 +0.5687816 0.5469733 0.5428591 +0.092819 0.5509339 0.5428591 +0.2262531 0.5509339 0.5428591 +0.2875993 0.5509339 0.5428591 +0.3262122 0.5509339 0.5428591 +0.3544566 0.5509339 0.5428591 +0.3767383 0.5509339 0.5428591 +0.3951413 0.5509339 0.5428591 +0.4108177 0.5509339 0.5428591 +0.4244723 0.5509339 0.5428591 +0.4365675 0.5509339 0.5428591 +0.4474232 0.5509339 0.5428591 +0.45727 0.5509339 0.5428591 +0.4662797 0.5509339 0.5428591 +0.4745834 0.5509339 0.5428591 +0.4822838 0.5509339 0.5428591 +0.4894626 0.5509339 0.5428591 +0.4961862 0.5509339 0.5428591 +0.5025087 0.5509339 0.5428591 +0.5084753 0.5509339 0.5428591 +0.514124 0.5509339 0.5428591 +0.519487 0.5509339 0.5428591 +0.5245917 0.5509339 0.5428591 +0.529462 0.5509339 0.5428591 +0.5341183 0.5509339 0.5428591 +0.5385787 0.5509339 0.5428591 +0.5428591 0.5509339 0.5428591 +0.5469733 0.5509339 0.5428591 +0.5509339 0.5509339 0.5428591 +0.5547519 0.5509339 0.5428591 +0.5584371 0.5509339 0.5428591 +0.5619986 0.5509339 0.5428591 +0.5654443 0.5509339 0.5428591 +0.5687816 0.5509339 0.5428591 +0.092819 0.5547519 0.5428591 +0.2262531 0.5547519 0.5428591 +0.2875993 0.5547519 0.5428591 +0.3262122 0.5547519 0.5428591 +0.3544566 0.5547519 0.5428591 +0.3767383 0.5547519 0.5428591 +0.3951413 0.5547519 0.5428591 +0.4108177 0.5547519 0.5428591 +0.4244723 0.5547519 0.5428591 +0.4365675 0.5547519 0.5428591 +0.4474232 0.5547519 0.5428591 +0.45727 0.5547519 0.5428591 +0.4662797 0.5547519 0.5428591 +0.4745834 0.5547519 0.5428591 +0.4822838 0.5547519 0.5428591 +0.4894626 0.5547519 0.5428591 +0.4961862 0.5547519 0.5428591 +0.5025087 0.5547519 0.5428591 +0.5084753 0.5547519 0.5428591 +0.514124 0.5547519 0.5428591 +0.519487 0.5547519 0.5428591 +0.5245917 0.5547519 0.5428591 +0.529462 0.5547519 0.5428591 +0.5341183 0.5547519 0.5428591 +0.5385787 0.5547519 0.5428591 +0.5428591 0.5547519 0.5428591 +0.5469733 0.5547519 0.5428591 +0.5509339 0.5547519 0.5428591 +0.5547519 0.5547519 0.5428591 +0.5584371 0.5547519 0.5428591 +0.5619986 0.5547519 0.5428591 +0.5654443 0.5547519 0.5428591 +0.5687816 0.5547519 0.5428591 +0.092819 0.5584371 0.5428591 +0.2262531 0.5584371 0.5428591 +0.2875993 0.5584371 0.5428591 +0.3262122 0.5584371 0.5428591 +0.3544566 0.5584371 0.5428591 +0.3767383 0.5584371 0.5428591 +0.3951413 0.5584371 0.5428591 +0.4108177 0.5584371 0.5428591 +0.4244723 0.5584371 0.5428591 +0.4365675 0.5584371 0.5428591 +0.4474232 0.5584371 0.5428591 +0.45727 0.5584371 0.5428591 +0.4662797 0.5584371 0.5428591 +0.4745834 0.5584371 0.5428591 +0.4822838 0.5584371 0.5428591 +0.4894626 0.5584371 0.5428591 +0.4961862 0.5584371 0.5428591 +0.5025087 0.5584371 0.5428591 +0.5084753 0.5584371 0.5428591 +0.514124 0.5584371 0.5428591 +0.519487 0.5584371 0.5428591 +0.5245917 0.5584371 0.5428591 +0.529462 0.5584371 0.5428591 +0.5341183 0.5584371 0.5428591 +0.5385787 0.5584371 0.5428591 +0.5428591 0.5584371 0.5428591 +0.5469733 0.5584371 0.5428591 +0.5509339 0.5584371 0.5428591 +0.5547519 0.5584371 0.5428591 +0.5584371 0.5584371 0.5428591 +0.5619986 0.5584371 0.5428591 +0.5654443 0.5584371 0.5428591 +0.5687816 0.5584371 0.5428591 +0.092819 0.5619986 0.5428591 +0.2262531 0.5619986 0.5428591 +0.2875993 0.5619986 0.5428591 +0.3262122 0.5619986 0.5428591 +0.3544566 0.5619986 0.5428591 +0.3767383 0.5619986 0.5428591 +0.3951413 0.5619986 0.5428591 +0.4108177 0.5619986 0.5428591 +0.4244723 0.5619986 0.5428591 +0.4365675 0.5619986 0.5428591 +0.4474232 0.5619986 0.5428591 +0.45727 0.5619986 0.5428591 +0.4662797 0.5619986 0.5428591 +0.4745834 0.5619986 0.5428591 +0.4822838 0.5619986 0.5428591 +0.4894626 0.5619986 0.5428591 +0.4961862 0.5619986 0.5428591 +0.5025087 0.5619986 0.5428591 +0.5084753 0.5619986 0.5428591 +0.514124 0.5619986 0.5428591 +0.519487 0.5619986 0.5428591 +0.5245917 0.5619986 0.5428591 +0.529462 0.5619986 0.5428591 +0.5341183 0.5619986 0.5428591 +0.5385787 0.5619986 0.5428591 +0.5428591 0.5619986 0.5428591 +0.5469733 0.5619986 0.5428591 +0.5509339 0.5619986 0.5428591 +0.5547519 0.5619986 0.5428591 +0.5584371 0.5619986 0.5428591 +0.5619986 0.5619986 0.5428591 +0.5654443 0.5619986 0.5428591 +0.5687816 0.5619986 0.5428591 +0.092819 0.5654443 0.5428591 +0.2262531 0.5654443 0.5428591 +0.2875993 0.5654443 0.5428591 +0.3262122 0.5654443 0.5428591 +0.3544566 0.5654443 0.5428591 +0.3767383 0.5654443 0.5428591 +0.3951413 0.5654443 0.5428591 +0.4108177 0.5654443 0.5428591 +0.4244723 0.5654443 0.5428591 +0.4365675 0.5654443 0.5428591 +0.4474232 0.5654443 0.5428591 +0.45727 0.5654443 0.5428591 +0.4662797 0.5654443 0.5428591 +0.4745834 0.5654443 0.5428591 +0.4822838 0.5654443 0.5428591 +0.4894626 0.5654443 0.5428591 +0.4961862 0.5654443 0.5428591 +0.5025087 0.5654443 0.5428591 +0.5084753 0.5654443 0.5428591 +0.514124 0.5654443 0.5428591 +0.519487 0.5654443 0.5428591 +0.5245917 0.5654443 0.5428591 +0.529462 0.5654443 0.5428591 +0.5341183 0.5654443 0.5428591 +0.5385787 0.5654443 0.5428591 +0.5428591 0.5654443 0.5428591 +0.5469733 0.5654443 0.5428591 +0.5509339 0.5654443 0.5428591 +0.5547519 0.5654443 0.5428591 +0.5584371 0.5654443 0.5428591 +0.5619986 0.5654443 0.5428591 +0.5654443 0.5654443 0.5428591 +0.5687816 0.5654443 0.5428591 +0.092819 0.5687816 0.5428591 +0.2262531 0.5687816 0.5428591 +0.2875993 0.5687816 0.5428591 +0.3262122 0.5687816 0.5428591 +0.3544566 0.5687816 0.5428591 +0.3767383 0.5687816 0.5428591 +0.3951413 0.5687816 0.5428591 +0.4108177 0.5687816 0.5428591 +0.4244723 0.5687816 0.5428591 +0.4365675 0.5687816 0.5428591 +0.4474232 0.5687816 0.5428591 +0.45727 0.5687816 0.5428591 +0.4662797 0.5687816 0.5428591 +0.4745834 0.5687816 0.5428591 +0.4822838 0.5687816 0.5428591 +0.4894626 0.5687816 0.5428591 +0.4961862 0.5687816 0.5428591 +0.5025087 0.5687816 0.5428591 +0.5084753 0.5687816 0.5428591 +0.514124 0.5687816 0.5428591 +0.519487 0.5687816 0.5428591 +0.5245917 0.5687816 0.5428591 +0.529462 0.5687816 0.5428591 +0.5341183 0.5687816 0.5428591 +0.5385787 0.5687816 0.5428591 +0.5428591 0.5687816 0.5428591 +0.5469733 0.5687816 0.5428591 +0.5509339 0.5687816 0.5428591 +0.5547519 0.5687816 0.5428591 +0.5584371 0.5687816 0.5428591 +0.5619986 0.5687816 0.5428591 +0.5654443 0.5687816 0.5428591 +0.5687816 0.5687816 0.5428591 +0.092819 0.092819 0.5469733 +0.2262531 0.092819 0.5469733 +0.2875993 0.092819 0.5469733 +0.3262122 0.092819 0.5469733 +0.3544566 0.092819 0.5469733 +0.3767383 0.092819 0.5469733 +0.3951413 0.092819 0.5469733 +0.4108177 0.092819 0.5469733 +0.4244723 0.092819 0.5469733 +0.4365675 0.092819 0.5469733 +0.4474232 0.092819 0.5469733 +0.45727 0.092819 0.5469733 +0.4662797 0.092819 0.5469733 +0.4745834 0.092819 0.5469733 +0.4822838 0.092819 0.5469733 +0.4894626 0.092819 0.5469733 +0.4961862 0.092819 0.5469733 +0.5025087 0.092819 0.5469733 +0.5084753 0.092819 0.5469733 +0.514124 0.092819 0.5469733 +0.519487 0.092819 0.5469733 +0.5245917 0.092819 0.5469733 +0.529462 0.092819 0.5469733 +0.5341183 0.092819 0.5469733 +0.5385787 0.092819 0.5469733 +0.5428591 0.092819 0.5469733 +0.5469733 0.092819 0.5469733 +0.5509339 0.092819 0.5469733 +0.5547519 0.092819 0.5469733 +0.5584371 0.092819 0.5469733 +0.5619986 0.092819 0.5469733 +0.5654443 0.092819 0.5469733 +0.5687816 0.092819 0.5469733 +0.092819 0.2262531 0.5469733 +0.2262531 0.2262531 0.5469733 +0.2875993 0.2262531 0.5469733 +0.3262122 0.2262531 0.5469733 +0.3544566 0.2262531 0.5469733 +0.3767383 0.2262531 0.5469733 +0.3951413 0.2262531 0.5469733 +0.4108177 0.2262531 0.5469733 +0.4244723 0.2262531 0.5469733 +0.4365675 0.2262531 0.5469733 +0.4474232 0.2262531 0.5469733 +0.45727 0.2262531 0.5469733 +0.4662797 0.2262531 0.5469733 +0.4745834 0.2262531 0.5469733 +0.4822838 0.2262531 0.5469733 +0.4894626 0.2262531 0.5469733 +0.4961862 0.2262531 0.5469733 +0.5025087 0.2262531 0.5469733 +0.5084753 0.2262531 0.5469733 +0.514124 0.2262531 0.5469733 +0.519487 0.2262531 0.5469733 +0.5245917 0.2262531 0.5469733 +0.529462 0.2262531 0.5469733 +0.5341183 0.2262531 0.5469733 +0.5385787 0.2262531 0.5469733 +0.5428591 0.2262531 0.5469733 +0.5469733 0.2262531 0.5469733 +0.5509339 0.2262531 0.5469733 +0.5547519 0.2262531 0.5469733 +0.5584371 0.2262531 0.5469733 +0.5619986 0.2262531 0.5469733 +0.5654443 0.2262531 0.5469733 +0.5687816 0.2262531 0.5469733 +0.092819 0.2875993 0.5469733 +0.2262531 0.2875993 0.5469733 +0.2875993 0.2875993 0.5469733 +0.3262122 0.2875993 0.5469733 +0.3544566 0.2875993 0.5469733 +0.3767383 0.2875993 0.5469733 +0.3951413 0.2875993 0.5469733 +0.4108177 0.2875993 0.5469733 +0.4244723 0.2875993 0.5469733 +0.4365675 0.2875993 0.5469733 +0.4474232 0.2875993 0.5469733 +0.45727 0.2875993 0.5469733 +0.4662797 0.2875993 0.5469733 +0.4745834 0.2875993 0.5469733 +0.4822838 0.2875993 0.5469733 +0.4894626 0.2875993 0.5469733 +0.4961862 0.2875993 0.5469733 +0.5025087 0.2875993 0.5469733 +0.5084753 0.2875993 0.5469733 +0.514124 0.2875993 0.5469733 +0.519487 0.2875993 0.5469733 +0.5245917 0.2875993 0.5469733 +0.529462 0.2875993 0.5469733 +0.5341183 0.2875993 0.5469733 +0.5385787 0.2875993 0.5469733 +0.5428591 0.2875993 0.5469733 +0.5469733 0.2875993 0.5469733 +0.5509339 0.2875993 0.5469733 +0.5547519 0.2875993 0.5469733 +0.5584371 0.2875993 0.5469733 +0.5619986 0.2875993 0.5469733 +0.5654443 0.2875993 0.5469733 +0.5687816 0.2875993 0.5469733 +0.092819 0.3262122 0.5469733 +0.2262531 0.3262122 0.5469733 +0.2875993 0.3262122 0.5469733 +0.3262122 0.3262122 0.5469733 +0.3544566 0.3262122 0.5469733 +0.3767383 0.3262122 0.5469733 +0.3951413 0.3262122 0.5469733 +0.4108177 0.3262122 0.5469733 +0.4244723 0.3262122 0.5469733 +0.4365675 0.3262122 0.5469733 +0.4474232 0.3262122 0.5469733 +0.45727 0.3262122 0.5469733 +0.4662797 0.3262122 0.5469733 +0.4745834 0.3262122 0.5469733 +0.4822838 0.3262122 0.5469733 +0.4894626 0.3262122 0.5469733 +0.4961862 0.3262122 0.5469733 +0.5025087 0.3262122 0.5469733 +0.5084753 0.3262122 0.5469733 +0.514124 0.3262122 0.5469733 +0.519487 0.3262122 0.5469733 +0.5245917 0.3262122 0.5469733 +0.529462 0.3262122 0.5469733 +0.5341183 0.3262122 0.5469733 +0.5385787 0.3262122 0.5469733 +0.5428591 0.3262122 0.5469733 +0.5469733 0.3262122 0.5469733 +0.5509339 0.3262122 0.5469733 +0.5547519 0.3262122 0.5469733 +0.5584371 0.3262122 0.5469733 +0.5619986 0.3262122 0.5469733 +0.5654443 0.3262122 0.5469733 +0.5687816 0.3262122 0.5469733 +0.092819 0.3544566 0.5469733 +0.2262531 0.3544566 0.5469733 +0.2875993 0.3544566 0.5469733 +0.3262122 0.3544566 0.5469733 +0.3544566 0.3544566 0.5469733 +0.3767383 0.3544566 0.5469733 +0.3951413 0.3544566 0.5469733 +0.4108177 0.3544566 0.5469733 +0.4244723 0.3544566 0.5469733 +0.4365675 0.3544566 0.5469733 +0.4474232 0.3544566 0.5469733 +0.45727 0.3544566 0.5469733 +0.4662797 0.3544566 0.5469733 +0.4745834 0.3544566 0.5469733 +0.4822838 0.3544566 0.5469733 +0.4894626 0.3544566 0.5469733 +0.4961862 0.3544566 0.5469733 +0.5025087 0.3544566 0.5469733 +0.5084753 0.3544566 0.5469733 +0.514124 0.3544566 0.5469733 +0.519487 0.3544566 0.5469733 +0.5245917 0.3544566 0.5469733 +0.529462 0.3544566 0.5469733 +0.5341183 0.3544566 0.5469733 +0.5385787 0.3544566 0.5469733 +0.5428591 0.3544566 0.5469733 +0.5469733 0.3544566 0.5469733 +0.5509339 0.3544566 0.5469733 +0.5547519 0.3544566 0.5469733 +0.5584371 0.3544566 0.5469733 +0.5619986 0.3544566 0.5469733 +0.5654443 0.3544566 0.5469733 +0.5687816 0.3544566 0.5469733 +0.092819 0.3767383 0.5469733 +0.2262531 0.3767383 0.5469733 +0.2875993 0.3767383 0.5469733 +0.3262122 0.3767383 0.5469733 +0.3544566 0.3767383 0.5469733 +0.3767383 0.3767383 0.5469733 +0.3951413 0.3767383 0.5469733 +0.4108177 0.3767383 0.5469733 +0.4244723 0.3767383 0.5469733 +0.4365675 0.3767383 0.5469733 +0.4474232 0.3767383 0.5469733 +0.45727 0.3767383 0.5469733 +0.4662797 0.3767383 0.5469733 +0.4745834 0.3767383 0.5469733 +0.4822838 0.3767383 0.5469733 +0.4894626 0.3767383 0.5469733 +0.4961862 0.3767383 0.5469733 +0.5025087 0.3767383 0.5469733 +0.5084753 0.3767383 0.5469733 +0.514124 0.3767383 0.5469733 +0.519487 0.3767383 0.5469733 +0.5245917 0.3767383 0.5469733 +0.529462 0.3767383 0.5469733 +0.5341183 0.3767383 0.5469733 +0.5385787 0.3767383 0.5469733 +0.5428591 0.3767383 0.5469733 +0.5469733 0.3767383 0.5469733 +0.5509339 0.3767383 0.5469733 +0.5547519 0.3767383 0.5469733 +0.5584371 0.3767383 0.5469733 +0.5619986 0.3767383 0.5469733 +0.5654443 0.3767383 0.5469733 +0.5687816 0.3767383 0.5469733 +0.092819 0.3951413 0.5469733 +0.2262531 0.3951413 0.5469733 +0.2875993 0.3951413 0.5469733 +0.3262122 0.3951413 0.5469733 +0.3544566 0.3951413 0.5469733 +0.3767383 0.3951413 0.5469733 +0.3951413 0.3951413 0.5469733 +0.4108177 0.3951413 0.5469733 +0.4244723 0.3951413 0.5469733 +0.4365675 0.3951413 0.5469733 +0.4474232 0.3951413 0.5469733 +0.45727 0.3951413 0.5469733 +0.4662797 0.3951413 0.5469733 +0.4745834 0.3951413 0.5469733 +0.4822838 0.3951413 0.5469733 +0.4894626 0.3951413 0.5469733 +0.4961862 0.3951413 0.5469733 +0.5025087 0.3951413 0.5469733 +0.5084753 0.3951413 0.5469733 +0.514124 0.3951413 0.5469733 +0.519487 0.3951413 0.5469733 +0.5245917 0.3951413 0.5469733 +0.529462 0.3951413 0.5469733 +0.5341183 0.3951413 0.5469733 +0.5385787 0.3951413 0.5469733 +0.5428591 0.3951413 0.5469733 +0.5469733 0.3951413 0.5469733 +0.5509339 0.3951413 0.5469733 +0.5547519 0.3951413 0.5469733 +0.5584371 0.3951413 0.5469733 +0.5619986 0.3951413 0.5469733 +0.5654443 0.3951413 0.5469733 +0.5687816 0.3951413 0.5469733 +0.092819 0.4108177 0.5469733 +0.2262531 0.4108177 0.5469733 +0.2875993 0.4108177 0.5469733 +0.3262122 0.4108177 0.5469733 +0.3544566 0.4108177 0.5469733 +0.3767383 0.4108177 0.5469733 +0.3951413 0.4108177 0.5469733 +0.4108177 0.4108177 0.5469733 +0.4244723 0.4108177 0.5469733 +0.4365675 0.4108177 0.5469733 +0.4474232 0.4108177 0.5469733 +0.45727 0.4108177 0.5469733 +0.4662797 0.4108177 0.5469733 +0.4745834 0.4108177 0.5469733 +0.4822838 0.4108177 0.5469733 +0.4894626 0.4108177 0.5469733 +0.4961862 0.4108177 0.5469733 +0.5025087 0.4108177 0.5469733 +0.5084753 0.4108177 0.5469733 +0.514124 0.4108177 0.5469733 +0.519487 0.4108177 0.5469733 +0.5245917 0.4108177 0.5469733 +0.529462 0.4108177 0.5469733 +0.5341183 0.4108177 0.5469733 +0.5385787 0.4108177 0.5469733 +0.5428591 0.4108177 0.5469733 +0.5469733 0.4108177 0.5469733 +0.5509339 0.4108177 0.5469733 +0.5547519 0.4108177 0.5469733 +0.5584371 0.4108177 0.5469733 +0.5619986 0.4108177 0.5469733 +0.5654443 0.4108177 0.5469733 +0.5687816 0.4108177 0.5469733 +0.092819 0.4244723 0.5469733 +0.2262531 0.4244723 0.5469733 +0.2875993 0.4244723 0.5469733 +0.3262122 0.4244723 0.5469733 +0.3544566 0.4244723 0.5469733 +0.3767383 0.4244723 0.5469733 +0.3951413 0.4244723 0.5469733 +0.4108177 0.4244723 0.5469733 +0.4244723 0.4244723 0.5469733 +0.4365675 0.4244723 0.5469733 +0.4474232 0.4244723 0.5469733 +0.45727 0.4244723 0.5469733 +0.4662797 0.4244723 0.5469733 +0.4745834 0.4244723 0.5469733 +0.4822838 0.4244723 0.5469733 +0.4894626 0.4244723 0.5469733 +0.4961862 0.4244723 0.5469733 +0.5025087 0.4244723 0.5469733 +0.5084753 0.4244723 0.5469733 +0.514124 0.4244723 0.5469733 +0.519487 0.4244723 0.5469733 +0.5245917 0.4244723 0.5469733 +0.529462 0.4244723 0.5469733 +0.5341183 0.4244723 0.5469733 +0.5385787 0.4244723 0.5469733 +0.5428591 0.4244723 0.5469733 +0.5469733 0.4244723 0.5469733 +0.5509339 0.4244723 0.5469733 +0.5547519 0.4244723 0.5469733 +0.5584371 0.4244723 0.5469733 +0.5619986 0.4244723 0.5469733 +0.5654443 0.4244723 0.5469733 +0.5687816 0.4244723 0.5469733 +0.092819 0.4365675 0.5469733 +0.2262531 0.4365675 0.5469733 +0.2875993 0.4365675 0.5469733 +0.3262122 0.4365675 0.5469733 +0.3544566 0.4365675 0.5469733 +0.3767383 0.4365675 0.5469733 +0.3951413 0.4365675 0.5469733 +0.4108177 0.4365675 0.5469733 +0.4244723 0.4365675 0.5469733 +0.4365675 0.4365675 0.5469733 +0.4474232 0.4365675 0.5469733 +0.45727 0.4365675 0.5469733 +0.4662797 0.4365675 0.5469733 +0.4745834 0.4365675 0.5469733 +0.4822838 0.4365675 0.5469733 +0.4894626 0.4365675 0.5469733 +0.4961862 0.4365675 0.5469733 +0.5025087 0.4365675 0.5469733 +0.5084753 0.4365675 0.5469733 +0.514124 0.4365675 0.5469733 +0.519487 0.4365675 0.5469733 +0.5245917 0.4365675 0.5469733 +0.529462 0.4365675 0.5469733 +0.5341183 0.4365675 0.5469733 +0.5385787 0.4365675 0.5469733 +0.5428591 0.4365675 0.5469733 +0.5469733 0.4365675 0.5469733 +0.5509339 0.4365675 0.5469733 +0.5547519 0.4365675 0.5469733 +0.5584371 0.4365675 0.5469733 +0.5619986 0.4365675 0.5469733 +0.5654443 0.4365675 0.5469733 +0.5687816 0.4365675 0.5469733 +0.092819 0.4474232 0.5469733 +0.2262531 0.4474232 0.5469733 +0.2875993 0.4474232 0.5469733 +0.3262122 0.4474232 0.5469733 +0.3544566 0.4474232 0.5469733 +0.3767383 0.4474232 0.5469733 +0.3951413 0.4474232 0.5469733 +0.4108177 0.4474232 0.5469733 +0.4244723 0.4474232 0.5469733 +0.4365675 0.4474232 0.5469733 +0.4474232 0.4474232 0.5469733 +0.45727 0.4474232 0.5469733 +0.4662797 0.4474232 0.5469733 +0.4745834 0.4474232 0.5469733 +0.4822838 0.4474232 0.5469733 +0.4894626 0.4474232 0.5469733 +0.4961862 0.4474232 0.5469733 +0.5025087 0.4474232 0.5469733 +0.5084753 0.4474232 0.5469733 +0.514124 0.4474232 0.5469733 +0.519487 0.4474232 0.5469733 +0.5245917 0.4474232 0.5469733 +0.529462 0.4474232 0.5469733 +0.5341183 0.4474232 0.5469733 +0.5385787 0.4474232 0.5469733 +0.5428591 0.4474232 0.5469733 +0.5469733 0.4474232 0.5469733 +0.5509339 0.4474232 0.5469733 +0.5547519 0.4474232 0.5469733 +0.5584371 0.4474232 0.5469733 +0.5619986 0.4474232 0.5469733 +0.5654443 0.4474232 0.5469733 +0.5687816 0.4474232 0.5469733 +0.092819 0.45727 0.5469733 +0.2262531 0.45727 0.5469733 +0.2875993 0.45727 0.5469733 +0.3262122 0.45727 0.5469733 +0.3544566 0.45727 0.5469733 +0.3767383 0.45727 0.5469733 +0.3951413 0.45727 0.5469733 +0.4108177 0.45727 0.5469733 +0.4244723 0.45727 0.5469733 +0.4365675 0.45727 0.5469733 +0.4474232 0.45727 0.5469733 +0.45727 0.45727 0.5469733 +0.4662797 0.45727 0.5469733 +0.4745834 0.45727 0.5469733 +0.4822838 0.45727 0.5469733 +0.4894626 0.45727 0.5469733 +0.4961862 0.45727 0.5469733 +0.5025087 0.45727 0.5469733 +0.5084753 0.45727 0.5469733 +0.514124 0.45727 0.5469733 +0.519487 0.45727 0.5469733 +0.5245917 0.45727 0.5469733 +0.529462 0.45727 0.5469733 +0.5341183 0.45727 0.5469733 +0.5385787 0.45727 0.5469733 +0.5428591 0.45727 0.5469733 +0.5469733 0.45727 0.5469733 +0.5509339 0.45727 0.5469733 +0.5547519 0.45727 0.5469733 +0.5584371 0.45727 0.5469733 +0.5619986 0.45727 0.5469733 +0.5654443 0.45727 0.5469733 +0.5687816 0.45727 0.5469733 +0.092819 0.4662797 0.5469733 +0.2262531 0.4662797 0.5469733 +0.2875993 0.4662797 0.5469733 +0.3262122 0.4662797 0.5469733 +0.3544566 0.4662797 0.5469733 +0.3767383 0.4662797 0.5469733 +0.3951413 0.4662797 0.5469733 +0.4108177 0.4662797 0.5469733 +0.4244723 0.4662797 0.5469733 +0.4365675 0.4662797 0.5469733 +0.4474232 0.4662797 0.5469733 +0.45727 0.4662797 0.5469733 +0.4662797 0.4662797 0.5469733 +0.4745834 0.4662797 0.5469733 +0.4822838 0.4662797 0.5469733 +0.4894626 0.4662797 0.5469733 +0.4961862 0.4662797 0.5469733 +0.5025087 0.4662797 0.5469733 +0.5084753 0.4662797 0.5469733 +0.514124 0.4662797 0.5469733 +0.519487 0.4662797 0.5469733 +0.5245917 0.4662797 0.5469733 +0.529462 0.4662797 0.5469733 +0.5341183 0.4662797 0.5469733 +0.5385787 0.4662797 0.5469733 +0.5428591 0.4662797 0.5469733 +0.5469733 0.4662797 0.5469733 +0.5509339 0.4662797 0.5469733 +0.5547519 0.4662797 0.5469733 +0.5584371 0.4662797 0.5469733 +0.5619986 0.4662797 0.5469733 +0.5654443 0.4662797 0.5469733 +0.5687816 0.4662797 0.5469733 +0.092819 0.4745834 0.5469733 +0.2262531 0.4745834 0.5469733 +0.2875993 0.4745834 0.5469733 +0.3262122 0.4745834 0.5469733 +0.3544566 0.4745834 0.5469733 +0.3767383 0.4745834 0.5469733 +0.3951413 0.4745834 0.5469733 +0.4108177 0.4745834 0.5469733 +0.4244723 0.4745834 0.5469733 +0.4365675 0.4745834 0.5469733 +0.4474232 0.4745834 0.5469733 +0.45727 0.4745834 0.5469733 +0.4662797 0.4745834 0.5469733 +0.4745834 0.4745834 0.5469733 +0.4822838 0.4745834 0.5469733 +0.4894626 0.4745834 0.5469733 +0.4961862 0.4745834 0.5469733 +0.5025087 0.4745834 0.5469733 +0.5084753 0.4745834 0.5469733 +0.514124 0.4745834 0.5469733 +0.519487 0.4745834 0.5469733 +0.5245917 0.4745834 0.5469733 +0.529462 0.4745834 0.5469733 +0.5341183 0.4745834 0.5469733 +0.5385787 0.4745834 0.5469733 +0.5428591 0.4745834 0.5469733 +0.5469733 0.4745834 0.5469733 +0.5509339 0.4745834 0.5469733 +0.5547519 0.4745834 0.5469733 +0.5584371 0.4745834 0.5469733 +0.5619986 0.4745834 0.5469733 +0.5654443 0.4745834 0.5469733 +0.5687816 0.4745834 0.5469733 +0.092819 0.4822838 0.5469733 +0.2262531 0.4822838 0.5469733 +0.2875993 0.4822838 0.5469733 +0.3262122 0.4822838 0.5469733 +0.3544566 0.4822838 0.5469733 +0.3767383 0.4822838 0.5469733 +0.3951413 0.4822838 0.5469733 +0.4108177 0.4822838 0.5469733 +0.4244723 0.4822838 0.5469733 +0.4365675 0.4822838 0.5469733 +0.4474232 0.4822838 0.5469733 +0.45727 0.4822838 0.5469733 +0.4662797 0.4822838 0.5469733 +0.4745834 0.4822838 0.5469733 +0.4822838 0.4822838 0.5469733 +0.4894626 0.4822838 0.5469733 +0.4961862 0.4822838 0.5469733 +0.5025087 0.4822838 0.5469733 +0.5084753 0.4822838 0.5469733 +0.514124 0.4822838 0.5469733 +0.519487 0.4822838 0.5469733 +0.5245917 0.4822838 0.5469733 +0.529462 0.4822838 0.5469733 +0.5341183 0.4822838 0.5469733 +0.5385787 0.4822838 0.5469733 +0.5428591 0.4822838 0.5469733 +0.5469733 0.4822838 0.5469733 +0.5509339 0.4822838 0.5469733 +0.5547519 0.4822838 0.5469733 +0.5584371 0.4822838 0.5469733 +0.5619986 0.4822838 0.5469733 +0.5654443 0.4822838 0.5469733 +0.5687816 0.4822838 0.5469733 +0.092819 0.4894626 0.5469733 +0.2262531 0.4894626 0.5469733 +0.2875993 0.4894626 0.5469733 +0.3262122 0.4894626 0.5469733 +0.3544566 0.4894626 0.5469733 +0.3767383 0.4894626 0.5469733 +0.3951413 0.4894626 0.5469733 +0.4108177 0.4894626 0.5469733 +0.4244723 0.4894626 0.5469733 +0.4365675 0.4894626 0.5469733 +0.4474232 0.4894626 0.5469733 +0.45727 0.4894626 0.5469733 +0.4662797 0.4894626 0.5469733 +0.4745834 0.4894626 0.5469733 +0.4822838 0.4894626 0.5469733 +0.4894626 0.4894626 0.5469733 +0.4961862 0.4894626 0.5469733 +0.5025087 0.4894626 0.5469733 +0.5084753 0.4894626 0.5469733 +0.514124 0.4894626 0.5469733 +0.519487 0.4894626 0.5469733 +0.5245917 0.4894626 0.5469733 +0.529462 0.4894626 0.5469733 +0.5341183 0.4894626 0.5469733 +0.5385787 0.4894626 0.5469733 +0.5428591 0.4894626 0.5469733 +0.5469733 0.4894626 0.5469733 +0.5509339 0.4894626 0.5469733 +0.5547519 0.4894626 0.5469733 +0.5584371 0.4894626 0.5469733 +0.5619986 0.4894626 0.5469733 +0.5654443 0.4894626 0.5469733 +0.5687816 0.4894626 0.5469733 +0.092819 0.4961862 0.5469733 +0.2262531 0.4961862 0.5469733 +0.2875993 0.4961862 0.5469733 +0.3262122 0.4961862 0.5469733 +0.3544566 0.4961862 0.5469733 +0.3767383 0.4961862 0.5469733 +0.3951413 0.4961862 0.5469733 +0.4108177 0.4961862 0.5469733 +0.4244723 0.4961862 0.5469733 +0.4365675 0.4961862 0.5469733 +0.4474232 0.4961862 0.5469733 +0.45727 0.4961862 0.5469733 +0.4662797 0.4961862 0.5469733 +0.4745834 0.4961862 0.5469733 +0.4822838 0.4961862 0.5469733 +0.4894626 0.4961862 0.5469733 +0.4961862 0.4961862 0.5469733 +0.5025087 0.4961862 0.5469733 +0.5084753 0.4961862 0.5469733 +0.514124 0.4961862 0.5469733 +0.519487 0.4961862 0.5469733 +0.5245917 0.4961862 0.5469733 +0.529462 0.4961862 0.5469733 +0.5341183 0.4961862 0.5469733 +0.5385787 0.4961862 0.5469733 +0.5428591 0.4961862 0.5469733 +0.5469733 0.4961862 0.5469733 +0.5509339 0.4961862 0.5469733 +0.5547519 0.4961862 0.5469733 +0.5584371 0.4961862 0.5469733 +0.5619986 0.4961862 0.5469733 +0.5654443 0.4961862 0.5469733 +0.5687816 0.4961862 0.5469733 +0.092819 0.5025087 0.5469733 +0.2262531 0.5025087 0.5469733 +0.2875993 0.5025087 0.5469733 +0.3262122 0.5025087 0.5469733 +0.3544566 0.5025087 0.5469733 +0.3767383 0.5025087 0.5469733 +0.3951413 0.5025087 0.5469733 +0.4108177 0.5025087 0.5469733 +0.4244723 0.5025087 0.5469733 +0.4365675 0.5025087 0.5469733 +0.4474232 0.5025087 0.5469733 +0.45727 0.5025087 0.5469733 +0.4662797 0.5025087 0.5469733 +0.4745834 0.5025087 0.5469733 +0.4822838 0.5025087 0.5469733 +0.4894626 0.5025087 0.5469733 +0.4961862 0.5025087 0.5469733 +0.5025087 0.5025087 0.5469733 +0.5084753 0.5025087 0.5469733 +0.514124 0.5025087 0.5469733 +0.519487 0.5025087 0.5469733 +0.5245917 0.5025087 0.5469733 +0.529462 0.5025087 0.5469733 +0.5341183 0.5025087 0.5469733 +0.5385787 0.5025087 0.5469733 +0.5428591 0.5025087 0.5469733 +0.5469733 0.5025087 0.5469733 +0.5509339 0.5025087 0.5469733 +0.5547519 0.5025087 0.5469733 +0.5584371 0.5025087 0.5469733 +0.5619986 0.5025087 0.5469733 +0.5654443 0.5025087 0.5469733 +0.5687816 0.5025087 0.5469733 +0.092819 0.5084753 0.5469733 +0.2262531 0.5084753 0.5469733 +0.2875993 0.5084753 0.5469733 +0.3262122 0.5084753 0.5469733 +0.3544566 0.5084753 0.5469733 +0.3767383 0.5084753 0.5469733 +0.3951413 0.5084753 0.5469733 +0.4108177 0.5084753 0.5469733 +0.4244723 0.5084753 0.5469733 +0.4365675 0.5084753 0.5469733 +0.4474232 0.5084753 0.5469733 +0.45727 0.5084753 0.5469733 +0.4662797 0.5084753 0.5469733 +0.4745834 0.5084753 0.5469733 +0.4822838 0.5084753 0.5469733 +0.4894626 0.5084753 0.5469733 +0.4961862 0.5084753 0.5469733 +0.5025087 0.5084753 0.5469733 +0.5084753 0.5084753 0.5469733 +0.514124 0.5084753 0.5469733 +0.519487 0.5084753 0.5469733 +0.5245917 0.5084753 0.5469733 +0.529462 0.5084753 0.5469733 +0.5341183 0.5084753 0.5469733 +0.5385787 0.5084753 0.5469733 +0.5428591 0.5084753 0.5469733 +0.5469733 0.5084753 0.5469733 +0.5509339 0.5084753 0.5469733 +0.5547519 0.5084753 0.5469733 +0.5584371 0.5084753 0.5469733 +0.5619986 0.5084753 0.5469733 +0.5654443 0.5084753 0.5469733 +0.5687816 0.5084753 0.5469733 +0.092819 0.514124 0.5469733 +0.2262531 0.514124 0.5469733 +0.2875993 0.514124 0.5469733 +0.3262122 0.514124 0.5469733 +0.3544566 0.514124 0.5469733 +0.3767383 0.514124 0.5469733 +0.3951413 0.514124 0.5469733 +0.4108177 0.514124 0.5469733 +0.4244723 0.514124 0.5469733 +0.4365675 0.514124 0.5469733 +0.4474232 0.514124 0.5469733 +0.45727 0.514124 0.5469733 +0.4662797 0.514124 0.5469733 +0.4745834 0.514124 0.5469733 +0.4822838 0.514124 0.5469733 +0.4894626 0.514124 0.5469733 +0.4961862 0.514124 0.5469733 +0.5025087 0.514124 0.5469733 +0.5084753 0.514124 0.5469733 +0.514124 0.514124 0.5469733 +0.519487 0.514124 0.5469733 +0.5245917 0.514124 0.5469733 +0.529462 0.514124 0.5469733 +0.5341183 0.514124 0.5469733 +0.5385787 0.514124 0.5469733 +0.5428591 0.514124 0.5469733 +0.5469733 0.514124 0.5469733 +0.5509339 0.514124 0.5469733 +0.5547519 0.514124 0.5469733 +0.5584371 0.514124 0.5469733 +0.5619986 0.514124 0.5469733 +0.5654443 0.514124 0.5469733 +0.5687816 0.514124 0.5469733 +0.092819 0.519487 0.5469733 +0.2262531 0.519487 0.5469733 +0.2875993 0.519487 0.5469733 +0.3262122 0.519487 0.5469733 +0.3544566 0.519487 0.5469733 +0.3767383 0.519487 0.5469733 +0.3951413 0.519487 0.5469733 +0.4108177 0.519487 0.5469733 +0.4244723 0.519487 0.5469733 +0.4365675 0.519487 0.5469733 +0.4474232 0.519487 0.5469733 +0.45727 0.519487 0.5469733 +0.4662797 0.519487 0.5469733 +0.4745834 0.519487 0.5469733 +0.4822838 0.519487 0.5469733 +0.4894626 0.519487 0.5469733 +0.4961862 0.519487 0.5469733 +0.5025087 0.519487 0.5469733 +0.5084753 0.519487 0.5469733 +0.514124 0.519487 0.5469733 +0.519487 0.519487 0.5469733 +0.5245917 0.519487 0.5469733 +0.529462 0.519487 0.5469733 +0.5341183 0.519487 0.5469733 +0.5385787 0.519487 0.5469733 +0.5428591 0.519487 0.5469733 +0.5469733 0.519487 0.5469733 +0.5509339 0.519487 0.5469733 +0.5547519 0.519487 0.5469733 +0.5584371 0.519487 0.5469733 +0.5619986 0.519487 0.5469733 +0.5654443 0.519487 0.5469733 +0.5687816 0.519487 0.5469733 +0.092819 0.5245917 0.5469733 +0.2262531 0.5245917 0.5469733 +0.2875993 0.5245917 0.5469733 +0.3262122 0.5245917 0.5469733 +0.3544566 0.5245917 0.5469733 +0.3767383 0.5245917 0.5469733 +0.3951413 0.5245917 0.5469733 +0.4108177 0.5245917 0.5469733 +0.4244723 0.5245917 0.5469733 +0.4365675 0.5245917 0.5469733 +0.4474232 0.5245917 0.5469733 +0.45727 0.5245917 0.5469733 +0.4662797 0.5245917 0.5469733 +0.4745834 0.5245917 0.5469733 +0.4822838 0.5245917 0.5469733 +0.4894626 0.5245917 0.5469733 +0.4961862 0.5245917 0.5469733 +0.5025087 0.5245917 0.5469733 +0.5084753 0.5245917 0.5469733 +0.514124 0.5245917 0.5469733 +0.519487 0.5245917 0.5469733 +0.5245917 0.5245917 0.5469733 +0.529462 0.5245917 0.5469733 +0.5341183 0.5245917 0.5469733 +0.5385787 0.5245917 0.5469733 +0.5428591 0.5245917 0.5469733 +0.5469733 0.5245917 0.5469733 +0.5509339 0.5245917 0.5469733 +0.5547519 0.5245917 0.5469733 +0.5584371 0.5245917 0.5469733 +0.5619986 0.5245917 0.5469733 +0.5654443 0.5245917 0.5469733 +0.5687816 0.5245917 0.5469733 +0.092819 0.529462 0.5469733 +0.2262531 0.529462 0.5469733 +0.2875993 0.529462 0.5469733 +0.3262122 0.529462 0.5469733 +0.3544566 0.529462 0.5469733 +0.3767383 0.529462 0.5469733 +0.3951413 0.529462 0.5469733 +0.4108177 0.529462 0.5469733 +0.4244723 0.529462 0.5469733 +0.4365675 0.529462 0.5469733 +0.4474232 0.529462 0.5469733 +0.45727 0.529462 0.5469733 +0.4662797 0.529462 0.5469733 +0.4745834 0.529462 0.5469733 +0.4822838 0.529462 0.5469733 +0.4894626 0.529462 0.5469733 +0.4961862 0.529462 0.5469733 +0.5025087 0.529462 0.5469733 +0.5084753 0.529462 0.5469733 +0.514124 0.529462 0.5469733 +0.519487 0.529462 0.5469733 +0.5245917 0.529462 0.5469733 +0.529462 0.529462 0.5469733 +0.5341183 0.529462 0.5469733 +0.5385787 0.529462 0.5469733 +0.5428591 0.529462 0.5469733 +0.5469733 0.529462 0.5469733 +0.5509339 0.529462 0.5469733 +0.5547519 0.529462 0.5469733 +0.5584371 0.529462 0.5469733 +0.5619986 0.529462 0.5469733 +0.5654443 0.529462 0.5469733 +0.5687816 0.529462 0.5469733 +0.092819 0.5341183 0.5469733 +0.2262531 0.5341183 0.5469733 +0.2875993 0.5341183 0.5469733 +0.3262122 0.5341183 0.5469733 +0.3544566 0.5341183 0.5469733 +0.3767383 0.5341183 0.5469733 +0.3951413 0.5341183 0.5469733 +0.4108177 0.5341183 0.5469733 +0.4244723 0.5341183 0.5469733 +0.4365675 0.5341183 0.5469733 +0.4474232 0.5341183 0.5469733 +0.45727 0.5341183 0.5469733 +0.4662797 0.5341183 0.5469733 +0.4745834 0.5341183 0.5469733 +0.4822838 0.5341183 0.5469733 +0.4894626 0.5341183 0.5469733 +0.4961862 0.5341183 0.5469733 +0.5025087 0.5341183 0.5469733 +0.5084753 0.5341183 0.5469733 +0.514124 0.5341183 0.5469733 +0.519487 0.5341183 0.5469733 +0.5245917 0.5341183 0.5469733 +0.529462 0.5341183 0.5469733 +0.5341183 0.5341183 0.5469733 +0.5385787 0.5341183 0.5469733 +0.5428591 0.5341183 0.5469733 +0.5469733 0.5341183 0.5469733 +0.5509339 0.5341183 0.5469733 +0.5547519 0.5341183 0.5469733 +0.5584371 0.5341183 0.5469733 +0.5619986 0.5341183 0.5469733 +0.5654443 0.5341183 0.5469733 +0.5687816 0.5341183 0.5469733 +0.092819 0.5385787 0.5469733 +0.2262531 0.5385787 0.5469733 +0.2875993 0.5385787 0.5469733 +0.3262122 0.5385787 0.5469733 +0.3544566 0.5385787 0.5469733 +0.3767383 0.5385787 0.5469733 +0.3951413 0.5385787 0.5469733 +0.4108177 0.5385787 0.5469733 +0.4244723 0.5385787 0.5469733 +0.4365675 0.5385787 0.5469733 +0.4474232 0.5385787 0.5469733 +0.45727 0.5385787 0.5469733 +0.4662797 0.5385787 0.5469733 +0.4745834 0.5385787 0.5469733 +0.4822838 0.5385787 0.5469733 +0.4894626 0.5385787 0.5469733 +0.4961862 0.5385787 0.5469733 +0.5025087 0.5385787 0.5469733 +0.5084753 0.5385787 0.5469733 +0.514124 0.5385787 0.5469733 +0.519487 0.5385787 0.5469733 +0.5245917 0.5385787 0.5469733 +0.529462 0.5385787 0.5469733 +0.5341183 0.5385787 0.5469733 +0.5385787 0.5385787 0.5469733 +0.5428591 0.5385787 0.5469733 +0.5469733 0.5385787 0.5469733 +0.5509339 0.5385787 0.5469733 +0.5547519 0.5385787 0.5469733 +0.5584371 0.5385787 0.5469733 +0.5619986 0.5385787 0.5469733 +0.5654443 0.5385787 0.5469733 +0.5687816 0.5385787 0.5469733 +0.092819 0.5428591 0.5469733 +0.2262531 0.5428591 0.5469733 +0.2875993 0.5428591 0.5469733 +0.3262122 0.5428591 0.5469733 +0.3544566 0.5428591 0.5469733 +0.3767383 0.5428591 0.5469733 +0.3951413 0.5428591 0.5469733 +0.4108177 0.5428591 0.5469733 +0.4244723 0.5428591 0.5469733 +0.4365675 0.5428591 0.5469733 +0.4474232 0.5428591 0.5469733 +0.45727 0.5428591 0.5469733 +0.4662797 0.5428591 0.5469733 +0.4745834 0.5428591 0.5469733 +0.4822838 0.5428591 0.5469733 +0.4894626 0.5428591 0.5469733 +0.4961862 0.5428591 0.5469733 +0.5025087 0.5428591 0.5469733 +0.5084753 0.5428591 0.5469733 +0.514124 0.5428591 0.5469733 +0.519487 0.5428591 0.5469733 +0.5245917 0.5428591 0.5469733 +0.529462 0.5428591 0.5469733 +0.5341183 0.5428591 0.5469733 +0.5385787 0.5428591 0.5469733 +0.5428591 0.5428591 0.5469733 +0.5469733 0.5428591 0.5469733 +0.5509339 0.5428591 0.5469733 +0.5547519 0.5428591 0.5469733 +0.5584371 0.5428591 0.5469733 +0.5619986 0.5428591 0.5469733 +0.5654443 0.5428591 0.5469733 +0.5687816 0.5428591 0.5469733 +0.092819 0.5469733 0.5469733 +0.2262531 0.5469733 0.5469733 +0.2875993 0.5469733 0.5469733 +0.3262122 0.5469733 0.5469733 +0.3544566 0.5469733 0.5469733 +0.3767383 0.5469733 0.5469733 +0.3951413 0.5469733 0.5469733 +0.4108177 0.5469733 0.5469733 +0.4244723 0.5469733 0.5469733 +0.4365675 0.5469733 0.5469733 +0.4474232 0.5469733 0.5469733 +0.45727 0.5469733 0.5469733 +0.4662797 0.5469733 0.5469733 +0.4745834 0.5469733 0.5469733 +0.4822838 0.5469733 0.5469733 +0.4894626 0.5469733 0.5469733 +0.4961862 0.5469733 0.5469733 +0.5025087 0.5469733 0.5469733 +0.5084753 0.5469733 0.5469733 +0.514124 0.5469733 0.5469733 +0.519487 0.5469733 0.5469733 +0.5245917 0.5469733 0.5469733 +0.529462 0.5469733 0.5469733 +0.5341183 0.5469733 0.5469733 +0.5385787 0.5469733 0.5469733 +0.5428591 0.5469733 0.5469733 +0.5469733 0.5469733 0.5469733 +0.5509339 0.5469733 0.5469733 +0.5547519 0.5469733 0.5469733 +0.5584371 0.5469733 0.5469733 +0.5619986 0.5469733 0.5469733 +0.5654443 0.5469733 0.5469733 +0.5687816 0.5469733 0.5469733 +0.092819 0.5509339 0.5469733 +0.2262531 0.5509339 0.5469733 +0.2875993 0.5509339 0.5469733 +0.3262122 0.5509339 0.5469733 +0.3544566 0.5509339 0.5469733 +0.3767383 0.5509339 0.5469733 +0.3951413 0.5509339 0.5469733 +0.4108177 0.5509339 0.5469733 +0.4244723 0.5509339 0.5469733 +0.4365675 0.5509339 0.5469733 +0.4474232 0.5509339 0.5469733 +0.45727 0.5509339 0.5469733 +0.4662797 0.5509339 0.5469733 +0.4745834 0.5509339 0.5469733 +0.4822838 0.5509339 0.5469733 +0.4894626 0.5509339 0.5469733 +0.4961862 0.5509339 0.5469733 +0.5025087 0.5509339 0.5469733 +0.5084753 0.5509339 0.5469733 +0.514124 0.5509339 0.5469733 +0.519487 0.5509339 0.5469733 +0.5245917 0.5509339 0.5469733 +0.529462 0.5509339 0.5469733 +0.5341183 0.5509339 0.5469733 +0.5385787 0.5509339 0.5469733 +0.5428591 0.5509339 0.5469733 +0.5469733 0.5509339 0.5469733 +0.5509339 0.5509339 0.5469733 +0.5547519 0.5509339 0.5469733 +0.5584371 0.5509339 0.5469733 +0.5619986 0.5509339 0.5469733 +0.5654443 0.5509339 0.5469733 +0.5687816 0.5509339 0.5469733 +0.092819 0.5547519 0.5469733 +0.2262531 0.5547519 0.5469733 +0.2875993 0.5547519 0.5469733 +0.3262122 0.5547519 0.5469733 +0.3544566 0.5547519 0.5469733 +0.3767383 0.5547519 0.5469733 +0.3951413 0.5547519 0.5469733 +0.4108177 0.5547519 0.5469733 +0.4244723 0.5547519 0.5469733 +0.4365675 0.5547519 0.5469733 +0.4474232 0.5547519 0.5469733 +0.45727 0.5547519 0.5469733 +0.4662797 0.5547519 0.5469733 +0.4745834 0.5547519 0.5469733 +0.4822838 0.5547519 0.5469733 +0.4894626 0.5547519 0.5469733 +0.4961862 0.5547519 0.5469733 +0.5025087 0.5547519 0.5469733 +0.5084753 0.5547519 0.5469733 +0.514124 0.5547519 0.5469733 +0.519487 0.5547519 0.5469733 +0.5245917 0.5547519 0.5469733 +0.529462 0.5547519 0.5469733 +0.5341183 0.5547519 0.5469733 +0.5385787 0.5547519 0.5469733 +0.5428591 0.5547519 0.5469733 +0.5469733 0.5547519 0.5469733 +0.5509339 0.5547519 0.5469733 +0.5547519 0.5547519 0.5469733 +0.5584371 0.5547519 0.5469733 +0.5619986 0.5547519 0.5469733 +0.5654443 0.5547519 0.5469733 +0.5687816 0.5547519 0.5469733 +0.092819 0.5584371 0.5469733 +0.2262531 0.5584371 0.5469733 +0.2875993 0.5584371 0.5469733 +0.3262122 0.5584371 0.5469733 +0.3544566 0.5584371 0.5469733 +0.3767383 0.5584371 0.5469733 +0.3951413 0.5584371 0.5469733 +0.4108177 0.5584371 0.5469733 +0.4244723 0.5584371 0.5469733 +0.4365675 0.5584371 0.5469733 +0.4474232 0.5584371 0.5469733 +0.45727 0.5584371 0.5469733 +0.4662797 0.5584371 0.5469733 +0.4745834 0.5584371 0.5469733 +0.4822838 0.5584371 0.5469733 +0.4894626 0.5584371 0.5469733 +0.4961862 0.5584371 0.5469733 +0.5025087 0.5584371 0.5469733 +0.5084753 0.5584371 0.5469733 +0.514124 0.5584371 0.5469733 +0.519487 0.5584371 0.5469733 +0.5245917 0.5584371 0.5469733 +0.529462 0.5584371 0.5469733 +0.5341183 0.5584371 0.5469733 +0.5385787 0.5584371 0.5469733 +0.5428591 0.5584371 0.5469733 +0.5469733 0.5584371 0.5469733 +0.5509339 0.5584371 0.5469733 +0.5547519 0.5584371 0.5469733 +0.5584371 0.5584371 0.5469733 +0.5619986 0.5584371 0.5469733 +0.5654443 0.5584371 0.5469733 +0.5687816 0.5584371 0.5469733 +0.092819 0.5619986 0.5469733 +0.2262531 0.5619986 0.5469733 +0.2875993 0.5619986 0.5469733 +0.3262122 0.5619986 0.5469733 +0.3544566 0.5619986 0.5469733 +0.3767383 0.5619986 0.5469733 +0.3951413 0.5619986 0.5469733 +0.4108177 0.5619986 0.5469733 +0.4244723 0.5619986 0.5469733 +0.4365675 0.5619986 0.5469733 +0.4474232 0.5619986 0.5469733 +0.45727 0.5619986 0.5469733 +0.4662797 0.5619986 0.5469733 +0.4745834 0.5619986 0.5469733 +0.4822838 0.5619986 0.5469733 +0.4894626 0.5619986 0.5469733 +0.4961862 0.5619986 0.5469733 +0.5025087 0.5619986 0.5469733 +0.5084753 0.5619986 0.5469733 +0.514124 0.5619986 0.5469733 +0.519487 0.5619986 0.5469733 +0.5245917 0.5619986 0.5469733 +0.529462 0.5619986 0.5469733 +0.5341183 0.5619986 0.5469733 +0.5385787 0.5619986 0.5469733 +0.5428591 0.5619986 0.5469733 +0.5469733 0.5619986 0.5469733 +0.5509339 0.5619986 0.5469733 +0.5547519 0.5619986 0.5469733 +0.5584371 0.5619986 0.5469733 +0.5619986 0.5619986 0.5469733 +0.5654443 0.5619986 0.5469733 +0.5687816 0.5619986 0.5469733 +0.092819 0.5654443 0.5469733 +0.2262531 0.5654443 0.5469733 +0.2875993 0.5654443 0.5469733 +0.3262122 0.5654443 0.5469733 +0.3544566 0.5654443 0.5469733 +0.3767383 0.5654443 0.5469733 +0.3951413 0.5654443 0.5469733 +0.4108177 0.5654443 0.5469733 +0.4244723 0.5654443 0.5469733 +0.4365675 0.5654443 0.5469733 +0.4474232 0.5654443 0.5469733 +0.45727 0.5654443 0.5469733 +0.4662797 0.5654443 0.5469733 +0.4745834 0.5654443 0.5469733 +0.4822838 0.5654443 0.5469733 +0.4894626 0.5654443 0.5469733 +0.4961862 0.5654443 0.5469733 +0.5025087 0.5654443 0.5469733 +0.5084753 0.5654443 0.5469733 +0.514124 0.5654443 0.5469733 +0.519487 0.5654443 0.5469733 +0.5245917 0.5654443 0.5469733 +0.529462 0.5654443 0.5469733 +0.5341183 0.5654443 0.5469733 +0.5385787 0.5654443 0.5469733 +0.5428591 0.5654443 0.5469733 +0.5469733 0.5654443 0.5469733 +0.5509339 0.5654443 0.5469733 +0.5547519 0.5654443 0.5469733 +0.5584371 0.5654443 0.5469733 +0.5619986 0.5654443 0.5469733 +0.5654443 0.5654443 0.5469733 +0.5687816 0.5654443 0.5469733 +0.092819 0.5687816 0.5469733 +0.2262531 0.5687816 0.5469733 +0.2875993 0.5687816 0.5469733 +0.3262122 0.5687816 0.5469733 +0.3544566 0.5687816 0.5469733 +0.3767383 0.5687816 0.5469733 +0.3951413 0.5687816 0.5469733 +0.4108177 0.5687816 0.5469733 +0.4244723 0.5687816 0.5469733 +0.4365675 0.5687816 0.5469733 +0.4474232 0.5687816 0.5469733 +0.45727 0.5687816 0.5469733 +0.4662797 0.5687816 0.5469733 +0.4745834 0.5687816 0.5469733 +0.4822838 0.5687816 0.5469733 +0.4894626 0.5687816 0.5469733 +0.4961862 0.5687816 0.5469733 +0.5025087 0.5687816 0.5469733 +0.5084753 0.5687816 0.5469733 +0.514124 0.5687816 0.5469733 +0.519487 0.5687816 0.5469733 +0.5245917 0.5687816 0.5469733 +0.529462 0.5687816 0.5469733 +0.5341183 0.5687816 0.5469733 +0.5385787 0.5687816 0.5469733 +0.5428591 0.5687816 0.5469733 +0.5469733 0.5687816 0.5469733 +0.5509339 0.5687816 0.5469733 +0.5547519 0.5687816 0.5469733 +0.5584371 0.5687816 0.5469733 +0.5619986 0.5687816 0.5469733 +0.5654443 0.5687816 0.5469733 +0.5687816 0.5687816 0.5469733 +0.092819 0.092819 0.5509339 +0.2262531 0.092819 0.5509339 +0.2875993 0.092819 0.5509339 +0.3262122 0.092819 0.5509339 +0.3544566 0.092819 0.5509339 +0.3767383 0.092819 0.5509339 +0.3951413 0.092819 0.5509339 +0.4108177 0.092819 0.5509339 +0.4244723 0.092819 0.5509339 +0.4365675 0.092819 0.5509339 +0.4474232 0.092819 0.5509339 +0.45727 0.092819 0.5509339 +0.4662797 0.092819 0.5509339 +0.4745834 0.092819 0.5509339 +0.4822838 0.092819 0.5509339 +0.4894626 0.092819 0.5509339 +0.4961862 0.092819 0.5509339 +0.5025087 0.092819 0.5509339 +0.5084753 0.092819 0.5509339 +0.514124 0.092819 0.5509339 +0.519487 0.092819 0.5509339 +0.5245917 0.092819 0.5509339 +0.529462 0.092819 0.5509339 +0.5341183 0.092819 0.5509339 +0.5385787 0.092819 0.5509339 +0.5428591 0.092819 0.5509339 +0.5469733 0.092819 0.5509339 +0.5509339 0.092819 0.5509339 +0.5547519 0.092819 0.5509339 +0.5584371 0.092819 0.5509339 +0.5619986 0.092819 0.5509339 +0.5654443 0.092819 0.5509339 +0.5687816 0.092819 0.5509339 +0.092819 0.2262531 0.5509339 +0.2262531 0.2262531 0.5509339 +0.2875993 0.2262531 0.5509339 +0.3262122 0.2262531 0.5509339 +0.3544566 0.2262531 0.5509339 +0.3767383 0.2262531 0.5509339 +0.3951413 0.2262531 0.5509339 +0.4108177 0.2262531 0.5509339 +0.4244723 0.2262531 0.5509339 +0.4365675 0.2262531 0.5509339 +0.4474232 0.2262531 0.5509339 +0.45727 0.2262531 0.5509339 +0.4662797 0.2262531 0.5509339 +0.4745834 0.2262531 0.5509339 +0.4822838 0.2262531 0.5509339 +0.4894626 0.2262531 0.5509339 +0.4961862 0.2262531 0.5509339 +0.5025087 0.2262531 0.5509339 +0.5084753 0.2262531 0.5509339 +0.514124 0.2262531 0.5509339 +0.519487 0.2262531 0.5509339 +0.5245917 0.2262531 0.5509339 +0.529462 0.2262531 0.5509339 +0.5341183 0.2262531 0.5509339 +0.5385787 0.2262531 0.5509339 +0.5428591 0.2262531 0.5509339 +0.5469733 0.2262531 0.5509339 +0.5509339 0.2262531 0.5509339 +0.5547519 0.2262531 0.5509339 +0.5584371 0.2262531 0.5509339 +0.5619986 0.2262531 0.5509339 +0.5654443 0.2262531 0.5509339 +0.5687816 0.2262531 0.5509339 +0.092819 0.2875993 0.5509339 +0.2262531 0.2875993 0.5509339 +0.2875993 0.2875993 0.5509339 +0.3262122 0.2875993 0.5509339 +0.3544566 0.2875993 0.5509339 +0.3767383 0.2875993 0.5509339 +0.3951413 0.2875993 0.5509339 +0.4108177 0.2875993 0.5509339 +0.4244723 0.2875993 0.5509339 +0.4365675 0.2875993 0.5509339 +0.4474232 0.2875993 0.5509339 +0.45727 0.2875993 0.5509339 +0.4662797 0.2875993 0.5509339 +0.4745834 0.2875993 0.5509339 +0.4822838 0.2875993 0.5509339 +0.4894626 0.2875993 0.5509339 +0.4961862 0.2875993 0.5509339 +0.5025087 0.2875993 0.5509339 +0.5084753 0.2875993 0.5509339 +0.514124 0.2875993 0.5509339 +0.519487 0.2875993 0.5509339 +0.5245917 0.2875993 0.5509339 +0.529462 0.2875993 0.5509339 +0.5341183 0.2875993 0.5509339 +0.5385787 0.2875993 0.5509339 +0.5428591 0.2875993 0.5509339 +0.5469733 0.2875993 0.5509339 +0.5509339 0.2875993 0.5509339 +0.5547519 0.2875993 0.5509339 +0.5584371 0.2875993 0.5509339 +0.5619986 0.2875993 0.5509339 +0.5654443 0.2875993 0.5509339 +0.5687816 0.2875993 0.5509339 +0.092819 0.3262122 0.5509339 +0.2262531 0.3262122 0.5509339 +0.2875993 0.3262122 0.5509339 +0.3262122 0.3262122 0.5509339 +0.3544566 0.3262122 0.5509339 +0.3767383 0.3262122 0.5509339 +0.3951413 0.3262122 0.5509339 +0.4108177 0.3262122 0.5509339 +0.4244723 0.3262122 0.5509339 +0.4365675 0.3262122 0.5509339 +0.4474232 0.3262122 0.5509339 +0.45727 0.3262122 0.5509339 +0.4662797 0.3262122 0.5509339 +0.4745834 0.3262122 0.5509339 +0.4822838 0.3262122 0.5509339 +0.4894626 0.3262122 0.5509339 +0.4961862 0.3262122 0.5509339 +0.5025087 0.3262122 0.5509339 +0.5084753 0.3262122 0.5509339 +0.514124 0.3262122 0.5509339 +0.519487 0.3262122 0.5509339 +0.5245917 0.3262122 0.5509339 +0.529462 0.3262122 0.5509339 +0.5341183 0.3262122 0.5509339 +0.5385787 0.3262122 0.5509339 +0.5428591 0.3262122 0.5509339 +0.5469733 0.3262122 0.5509339 +0.5509339 0.3262122 0.5509339 +0.5547519 0.3262122 0.5509339 +0.5584371 0.3262122 0.5509339 +0.5619986 0.3262122 0.5509339 +0.5654443 0.3262122 0.5509339 +0.5687816 0.3262122 0.5509339 +0.092819 0.3544566 0.5509339 +0.2262531 0.3544566 0.5509339 +0.2875993 0.3544566 0.5509339 +0.3262122 0.3544566 0.5509339 +0.3544566 0.3544566 0.5509339 +0.3767383 0.3544566 0.5509339 +0.3951413 0.3544566 0.5509339 +0.4108177 0.3544566 0.5509339 +0.4244723 0.3544566 0.5509339 +0.4365675 0.3544566 0.5509339 +0.4474232 0.3544566 0.5509339 +0.45727 0.3544566 0.5509339 +0.4662797 0.3544566 0.5509339 +0.4745834 0.3544566 0.5509339 +0.4822838 0.3544566 0.5509339 +0.4894626 0.3544566 0.5509339 +0.4961862 0.3544566 0.5509339 +0.5025087 0.3544566 0.5509339 +0.5084753 0.3544566 0.5509339 +0.514124 0.3544566 0.5509339 +0.519487 0.3544566 0.5509339 +0.5245917 0.3544566 0.5509339 +0.529462 0.3544566 0.5509339 +0.5341183 0.3544566 0.5509339 +0.5385787 0.3544566 0.5509339 +0.5428591 0.3544566 0.5509339 +0.5469733 0.3544566 0.5509339 +0.5509339 0.3544566 0.5509339 +0.5547519 0.3544566 0.5509339 +0.5584371 0.3544566 0.5509339 +0.5619986 0.3544566 0.5509339 +0.5654443 0.3544566 0.5509339 +0.5687816 0.3544566 0.5509339 +0.092819 0.3767383 0.5509339 +0.2262531 0.3767383 0.5509339 +0.2875993 0.3767383 0.5509339 +0.3262122 0.3767383 0.5509339 +0.3544566 0.3767383 0.5509339 +0.3767383 0.3767383 0.5509339 +0.3951413 0.3767383 0.5509339 +0.4108177 0.3767383 0.5509339 +0.4244723 0.3767383 0.5509339 +0.4365675 0.3767383 0.5509339 +0.4474232 0.3767383 0.5509339 +0.45727 0.3767383 0.5509339 +0.4662797 0.3767383 0.5509339 +0.4745834 0.3767383 0.5509339 +0.4822838 0.3767383 0.5509339 +0.4894626 0.3767383 0.5509339 +0.4961862 0.3767383 0.5509339 +0.5025087 0.3767383 0.5509339 +0.5084753 0.3767383 0.5509339 +0.514124 0.3767383 0.5509339 +0.519487 0.3767383 0.5509339 +0.5245917 0.3767383 0.5509339 +0.529462 0.3767383 0.5509339 +0.5341183 0.3767383 0.5509339 +0.5385787 0.3767383 0.5509339 +0.5428591 0.3767383 0.5509339 +0.5469733 0.3767383 0.5509339 +0.5509339 0.3767383 0.5509339 +0.5547519 0.3767383 0.5509339 +0.5584371 0.3767383 0.5509339 +0.5619986 0.3767383 0.5509339 +0.5654443 0.3767383 0.5509339 +0.5687816 0.3767383 0.5509339 +0.092819 0.3951413 0.5509339 +0.2262531 0.3951413 0.5509339 +0.2875993 0.3951413 0.5509339 +0.3262122 0.3951413 0.5509339 +0.3544566 0.3951413 0.5509339 +0.3767383 0.3951413 0.5509339 +0.3951413 0.3951413 0.5509339 +0.4108177 0.3951413 0.5509339 +0.4244723 0.3951413 0.5509339 +0.4365675 0.3951413 0.5509339 +0.4474232 0.3951413 0.5509339 +0.45727 0.3951413 0.5509339 +0.4662797 0.3951413 0.5509339 +0.4745834 0.3951413 0.5509339 +0.4822838 0.3951413 0.5509339 +0.4894626 0.3951413 0.5509339 +0.4961862 0.3951413 0.5509339 +0.5025087 0.3951413 0.5509339 +0.5084753 0.3951413 0.5509339 +0.514124 0.3951413 0.5509339 +0.519487 0.3951413 0.5509339 +0.5245917 0.3951413 0.5509339 +0.529462 0.3951413 0.5509339 +0.5341183 0.3951413 0.5509339 +0.5385787 0.3951413 0.5509339 +0.5428591 0.3951413 0.5509339 +0.5469733 0.3951413 0.5509339 +0.5509339 0.3951413 0.5509339 +0.5547519 0.3951413 0.5509339 +0.5584371 0.3951413 0.5509339 +0.5619986 0.3951413 0.5509339 +0.5654443 0.3951413 0.5509339 +0.5687816 0.3951413 0.5509339 +0.092819 0.4108177 0.5509339 +0.2262531 0.4108177 0.5509339 +0.2875993 0.4108177 0.5509339 +0.3262122 0.4108177 0.5509339 +0.3544566 0.4108177 0.5509339 +0.3767383 0.4108177 0.5509339 +0.3951413 0.4108177 0.5509339 +0.4108177 0.4108177 0.5509339 +0.4244723 0.4108177 0.5509339 +0.4365675 0.4108177 0.5509339 +0.4474232 0.4108177 0.5509339 +0.45727 0.4108177 0.5509339 +0.4662797 0.4108177 0.5509339 +0.4745834 0.4108177 0.5509339 +0.4822838 0.4108177 0.5509339 +0.4894626 0.4108177 0.5509339 +0.4961862 0.4108177 0.5509339 +0.5025087 0.4108177 0.5509339 +0.5084753 0.4108177 0.5509339 +0.514124 0.4108177 0.5509339 +0.519487 0.4108177 0.5509339 +0.5245917 0.4108177 0.5509339 +0.529462 0.4108177 0.5509339 +0.5341183 0.4108177 0.5509339 +0.5385787 0.4108177 0.5509339 +0.5428591 0.4108177 0.5509339 +0.5469733 0.4108177 0.5509339 +0.5509339 0.4108177 0.5509339 +0.5547519 0.4108177 0.5509339 +0.5584371 0.4108177 0.5509339 +0.5619986 0.4108177 0.5509339 +0.5654443 0.4108177 0.5509339 +0.5687816 0.4108177 0.5509339 +0.092819 0.4244723 0.5509339 +0.2262531 0.4244723 0.5509339 +0.2875993 0.4244723 0.5509339 +0.3262122 0.4244723 0.5509339 +0.3544566 0.4244723 0.5509339 +0.3767383 0.4244723 0.5509339 +0.3951413 0.4244723 0.5509339 +0.4108177 0.4244723 0.5509339 +0.4244723 0.4244723 0.5509339 +0.4365675 0.4244723 0.5509339 +0.4474232 0.4244723 0.5509339 +0.45727 0.4244723 0.5509339 +0.4662797 0.4244723 0.5509339 +0.4745834 0.4244723 0.5509339 +0.4822838 0.4244723 0.5509339 +0.4894626 0.4244723 0.5509339 +0.4961862 0.4244723 0.5509339 +0.5025087 0.4244723 0.5509339 +0.5084753 0.4244723 0.5509339 +0.514124 0.4244723 0.5509339 +0.519487 0.4244723 0.5509339 +0.5245917 0.4244723 0.5509339 +0.529462 0.4244723 0.5509339 +0.5341183 0.4244723 0.5509339 +0.5385787 0.4244723 0.5509339 +0.5428591 0.4244723 0.5509339 +0.5469733 0.4244723 0.5509339 +0.5509339 0.4244723 0.5509339 +0.5547519 0.4244723 0.5509339 +0.5584371 0.4244723 0.5509339 +0.5619986 0.4244723 0.5509339 +0.5654443 0.4244723 0.5509339 +0.5687816 0.4244723 0.5509339 +0.092819 0.4365675 0.5509339 +0.2262531 0.4365675 0.5509339 +0.2875993 0.4365675 0.5509339 +0.3262122 0.4365675 0.5509339 +0.3544566 0.4365675 0.5509339 +0.3767383 0.4365675 0.5509339 +0.3951413 0.4365675 0.5509339 +0.4108177 0.4365675 0.5509339 +0.4244723 0.4365675 0.5509339 +0.4365675 0.4365675 0.5509339 +0.4474232 0.4365675 0.5509339 +0.45727 0.4365675 0.5509339 +0.4662797 0.4365675 0.5509339 +0.4745834 0.4365675 0.5509339 +0.4822838 0.4365675 0.5509339 +0.4894626 0.4365675 0.5509339 +0.4961862 0.4365675 0.5509339 +0.5025087 0.4365675 0.5509339 +0.5084753 0.4365675 0.5509339 +0.514124 0.4365675 0.5509339 +0.519487 0.4365675 0.5509339 +0.5245917 0.4365675 0.5509339 +0.529462 0.4365675 0.5509339 +0.5341183 0.4365675 0.5509339 +0.5385787 0.4365675 0.5509339 +0.5428591 0.4365675 0.5509339 +0.5469733 0.4365675 0.5509339 +0.5509339 0.4365675 0.5509339 +0.5547519 0.4365675 0.5509339 +0.5584371 0.4365675 0.5509339 +0.5619986 0.4365675 0.5509339 +0.5654443 0.4365675 0.5509339 +0.5687816 0.4365675 0.5509339 +0.092819 0.4474232 0.5509339 +0.2262531 0.4474232 0.5509339 +0.2875993 0.4474232 0.5509339 +0.3262122 0.4474232 0.5509339 +0.3544566 0.4474232 0.5509339 +0.3767383 0.4474232 0.5509339 +0.3951413 0.4474232 0.5509339 +0.4108177 0.4474232 0.5509339 +0.4244723 0.4474232 0.5509339 +0.4365675 0.4474232 0.5509339 +0.4474232 0.4474232 0.5509339 +0.45727 0.4474232 0.5509339 +0.4662797 0.4474232 0.5509339 +0.4745834 0.4474232 0.5509339 +0.4822838 0.4474232 0.5509339 +0.4894626 0.4474232 0.5509339 +0.4961862 0.4474232 0.5509339 +0.5025087 0.4474232 0.5509339 +0.5084753 0.4474232 0.5509339 +0.514124 0.4474232 0.5509339 +0.519487 0.4474232 0.5509339 +0.5245917 0.4474232 0.5509339 +0.529462 0.4474232 0.5509339 +0.5341183 0.4474232 0.5509339 +0.5385787 0.4474232 0.5509339 +0.5428591 0.4474232 0.5509339 +0.5469733 0.4474232 0.5509339 +0.5509339 0.4474232 0.5509339 +0.5547519 0.4474232 0.5509339 +0.5584371 0.4474232 0.5509339 +0.5619986 0.4474232 0.5509339 +0.5654443 0.4474232 0.5509339 +0.5687816 0.4474232 0.5509339 +0.092819 0.45727 0.5509339 +0.2262531 0.45727 0.5509339 +0.2875993 0.45727 0.5509339 +0.3262122 0.45727 0.5509339 +0.3544566 0.45727 0.5509339 +0.3767383 0.45727 0.5509339 +0.3951413 0.45727 0.5509339 +0.4108177 0.45727 0.5509339 +0.4244723 0.45727 0.5509339 +0.4365675 0.45727 0.5509339 +0.4474232 0.45727 0.5509339 +0.45727 0.45727 0.5509339 +0.4662797 0.45727 0.5509339 +0.4745834 0.45727 0.5509339 +0.4822838 0.45727 0.5509339 +0.4894626 0.45727 0.5509339 +0.4961862 0.45727 0.5509339 +0.5025087 0.45727 0.5509339 +0.5084753 0.45727 0.5509339 +0.514124 0.45727 0.5509339 +0.519487 0.45727 0.5509339 +0.5245917 0.45727 0.5509339 +0.529462 0.45727 0.5509339 +0.5341183 0.45727 0.5509339 +0.5385787 0.45727 0.5509339 +0.5428591 0.45727 0.5509339 +0.5469733 0.45727 0.5509339 +0.5509339 0.45727 0.5509339 +0.5547519 0.45727 0.5509339 +0.5584371 0.45727 0.5509339 +0.5619986 0.45727 0.5509339 +0.5654443 0.45727 0.5509339 +0.5687816 0.45727 0.5509339 +0.092819 0.4662797 0.5509339 +0.2262531 0.4662797 0.5509339 +0.2875993 0.4662797 0.5509339 +0.3262122 0.4662797 0.5509339 +0.3544566 0.4662797 0.5509339 +0.3767383 0.4662797 0.5509339 +0.3951413 0.4662797 0.5509339 +0.4108177 0.4662797 0.5509339 +0.4244723 0.4662797 0.5509339 +0.4365675 0.4662797 0.5509339 +0.4474232 0.4662797 0.5509339 +0.45727 0.4662797 0.5509339 +0.4662797 0.4662797 0.5509339 +0.4745834 0.4662797 0.5509339 +0.4822838 0.4662797 0.5509339 +0.4894626 0.4662797 0.5509339 +0.4961862 0.4662797 0.5509339 +0.5025087 0.4662797 0.5509339 +0.5084753 0.4662797 0.5509339 +0.514124 0.4662797 0.5509339 +0.519487 0.4662797 0.5509339 +0.5245917 0.4662797 0.5509339 +0.529462 0.4662797 0.5509339 +0.5341183 0.4662797 0.5509339 +0.5385787 0.4662797 0.5509339 +0.5428591 0.4662797 0.5509339 +0.5469733 0.4662797 0.5509339 +0.5509339 0.4662797 0.5509339 +0.5547519 0.4662797 0.5509339 +0.5584371 0.4662797 0.5509339 +0.5619986 0.4662797 0.5509339 +0.5654443 0.4662797 0.5509339 +0.5687816 0.4662797 0.5509339 +0.092819 0.4745834 0.5509339 +0.2262531 0.4745834 0.5509339 +0.2875993 0.4745834 0.5509339 +0.3262122 0.4745834 0.5509339 +0.3544566 0.4745834 0.5509339 +0.3767383 0.4745834 0.5509339 +0.3951413 0.4745834 0.5509339 +0.4108177 0.4745834 0.5509339 +0.4244723 0.4745834 0.5509339 +0.4365675 0.4745834 0.5509339 +0.4474232 0.4745834 0.5509339 +0.45727 0.4745834 0.5509339 +0.4662797 0.4745834 0.5509339 +0.4745834 0.4745834 0.5509339 +0.4822838 0.4745834 0.5509339 +0.4894626 0.4745834 0.5509339 +0.4961862 0.4745834 0.5509339 +0.5025087 0.4745834 0.5509339 +0.5084753 0.4745834 0.5509339 +0.514124 0.4745834 0.5509339 +0.519487 0.4745834 0.5509339 +0.5245917 0.4745834 0.5509339 +0.529462 0.4745834 0.5509339 +0.5341183 0.4745834 0.5509339 +0.5385787 0.4745834 0.5509339 +0.5428591 0.4745834 0.5509339 +0.5469733 0.4745834 0.5509339 +0.5509339 0.4745834 0.5509339 +0.5547519 0.4745834 0.5509339 +0.5584371 0.4745834 0.5509339 +0.5619986 0.4745834 0.5509339 +0.5654443 0.4745834 0.5509339 +0.5687816 0.4745834 0.5509339 +0.092819 0.4822838 0.5509339 +0.2262531 0.4822838 0.5509339 +0.2875993 0.4822838 0.5509339 +0.3262122 0.4822838 0.5509339 +0.3544566 0.4822838 0.5509339 +0.3767383 0.4822838 0.5509339 +0.3951413 0.4822838 0.5509339 +0.4108177 0.4822838 0.5509339 +0.4244723 0.4822838 0.5509339 +0.4365675 0.4822838 0.5509339 +0.4474232 0.4822838 0.5509339 +0.45727 0.4822838 0.5509339 +0.4662797 0.4822838 0.5509339 +0.4745834 0.4822838 0.5509339 +0.4822838 0.4822838 0.5509339 +0.4894626 0.4822838 0.5509339 +0.4961862 0.4822838 0.5509339 +0.5025087 0.4822838 0.5509339 +0.5084753 0.4822838 0.5509339 +0.514124 0.4822838 0.5509339 +0.519487 0.4822838 0.5509339 +0.5245917 0.4822838 0.5509339 +0.529462 0.4822838 0.5509339 +0.5341183 0.4822838 0.5509339 +0.5385787 0.4822838 0.5509339 +0.5428591 0.4822838 0.5509339 +0.5469733 0.4822838 0.5509339 +0.5509339 0.4822838 0.5509339 +0.5547519 0.4822838 0.5509339 +0.5584371 0.4822838 0.5509339 +0.5619986 0.4822838 0.5509339 +0.5654443 0.4822838 0.5509339 +0.5687816 0.4822838 0.5509339 +0.092819 0.4894626 0.5509339 +0.2262531 0.4894626 0.5509339 +0.2875993 0.4894626 0.5509339 +0.3262122 0.4894626 0.5509339 +0.3544566 0.4894626 0.5509339 +0.3767383 0.4894626 0.5509339 +0.3951413 0.4894626 0.5509339 +0.4108177 0.4894626 0.5509339 +0.4244723 0.4894626 0.5509339 +0.4365675 0.4894626 0.5509339 +0.4474232 0.4894626 0.5509339 +0.45727 0.4894626 0.5509339 +0.4662797 0.4894626 0.5509339 +0.4745834 0.4894626 0.5509339 +0.4822838 0.4894626 0.5509339 +0.4894626 0.4894626 0.5509339 +0.4961862 0.4894626 0.5509339 +0.5025087 0.4894626 0.5509339 +0.5084753 0.4894626 0.5509339 +0.514124 0.4894626 0.5509339 +0.519487 0.4894626 0.5509339 +0.5245917 0.4894626 0.5509339 +0.529462 0.4894626 0.5509339 +0.5341183 0.4894626 0.5509339 +0.5385787 0.4894626 0.5509339 +0.5428591 0.4894626 0.5509339 +0.5469733 0.4894626 0.5509339 +0.5509339 0.4894626 0.5509339 +0.5547519 0.4894626 0.5509339 +0.5584371 0.4894626 0.5509339 +0.5619986 0.4894626 0.5509339 +0.5654443 0.4894626 0.5509339 +0.5687816 0.4894626 0.5509339 +0.092819 0.4961862 0.5509339 +0.2262531 0.4961862 0.5509339 +0.2875993 0.4961862 0.5509339 +0.3262122 0.4961862 0.5509339 +0.3544566 0.4961862 0.5509339 +0.3767383 0.4961862 0.5509339 +0.3951413 0.4961862 0.5509339 +0.4108177 0.4961862 0.5509339 +0.4244723 0.4961862 0.5509339 +0.4365675 0.4961862 0.5509339 +0.4474232 0.4961862 0.5509339 +0.45727 0.4961862 0.5509339 +0.4662797 0.4961862 0.5509339 +0.4745834 0.4961862 0.5509339 +0.4822838 0.4961862 0.5509339 +0.4894626 0.4961862 0.5509339 +0.4961862 0.4961862 0.5509339 +0.5025087 0.4961862 0.5509339 +0.5084753 0.4961862 0.5509339 +0.514124 0.4961862 0.5509339 +0.519487 0.4961862 0.5509339 +0.5245917 0.4961862 0.5509339 +0.529462 0.4961862 0.5509339 +0.5341183 0.4961862 0.5509339 +0.5385787 0.4961862 0.5509339 +0.5428591 0.4961862 0.5509339 +0.5469733 0.4961862 0.5509339 +0.5509339 0.4961862 0.5509339 +0.5547519 0.4961862 0.5509339 +0.5584371 0.4961862 0.5509339 +0.5619986 0.4961862 0.5509339 +0.5654443 0.4961862 0.5509339 +0.5687816 0.4961862 0.5509339 +0.092819 0.5025087 0.5509339 +0.2262531 0.5025087 0.5509339 +0.2875993 0.5025087 0.5509339 +0.3262122 0.5025087 0.5509339 +0.3544566 0.5025087 0.5509339 +0.3767383 0.5025087 0.5509339 +0.3951413 0.5025087 0.5509339 +0.4108177 0.5025087 0.5509339 +0.4244723 0.5025087 0.5509339 +0.4365675 0.5025087 0.5509339 +0.4474232 0.5025087 0.5509339 +0.45727 0.5025087 0.5509339 +0.4662797 0.5025087 0.5509339 +0.4745834 0.5025087 0.5509339 +0.4822838 0.5025087 0.5509339 +0.4894626 0.5025087 0.5509339 +0.4961862 0.5025087 0.5509339 +0.5025087 0.5025087 0.5509339 +0.5084753 0.5025087 0.5509339 +0.514124 0.5025087 0.5509339 +0.519487 0.5025087 0.5509339 +0.5245917 0.5025087 0.5509339 +0.529462 0.5025087 0.5509339 +0.5341183 0.5025087 0.5509339 +0.5385787 0.5025087 0.5509339 +0.5428591 0.5025087 0.5509339 +0.5469733 0.5025087 0.5509339 +0.5509339 0.5025087 0.5509339 +0.5547519 0.5025087 0.5509339 +0.5584371 0.5025087 0.5509339 +0.5619986 0.5025087 0.5509339 +0.5654443 0.5025087 0.5509339 +0.5687816 0.5025087 0.5509339 +0.092819 0.5084753 0.5509339 +0.2262531 0.5084753 0.5509339 +0.2875993 0.5084753 0.5509339 +0.3262122 0.5084753 0.5509339 +0.3544566 0.5084753 0.5509339 +0.3767383 0.5084753 0.5509339 +0.3951413 0.5084753 0.5509339 +0.4108177 0.5084753 0.5509339 +0.4244723 0.5084753 0.5509339 +0.4365675 0.5084753 0.5509339 +0.4474232 0.5084753 0.5509339 +0.45727 0.5084753 0.5509339 +0.4662797 0.5084753 0.5509339 +0.4745834 0.5084753 0.5509339 +0.4822838 0.5084753 0.5509339 +0.4894626 0.5084753 0.5509339 +0.4961862 0.5084753 0.5509339 +0.5025087 0.5084753 0.5509339 +0.5084753 0.5084753 0.5509339 +0.514124 0.5084753 0.5509339 +0.519487 0.5084753 0.5509339 +0.5245917 0.5084753 0.5509339 +0.529462 0.5084753 0.5509339 +0.5341183 0.5084753 0.5509339 +0.5385787 0.5084753 0.5509339 +0.5428591 0.5084753 0.5509339 +0.5469733 0.5084753 0.5509339 +0.5509339 0.5084753 0.5509339 +0.5547519 0.5084753 0.5509339 +0.5584371 0.5084753 0.5509339 +0.5619986 0.5084753 0.5509339 +0.5654443 0.5084753 0.5509339 +0.5687816 0.5084753 0.5509339 +0.092819 0.514124 0.5509339 +0.2262531 0.514124 0.5509339 +0.2875993 0.514124 0.5509339 +0.3262122 0.514124 0.5509339 +0.3544566 0.514124 0.5509339 +0.3767383 0.514124 0.5509339 +0.3951413 0.514124 0.5509339 +0.4108177 0.514124 0.5509339 +0.4244723 0.514124 0.5509339 +0.4365675 0.514124 0.5509339 +0.4474232 0.514124 0.5509339 +0.45727 0.514124 0.5509339 +0.4662797 0.514124 0.5509339 +0.4745834 0.514124 0.5509339 +0.4822838 0.514124 0.5509339 +0.4894626 0.514124 0.5509339 +0.4961862 0.514124 0.5509339 +0.5025087 0.514124 0.5509339 +0.5084753 0.514124 0.5509339 +0.514124 0.514124 0.5509339 +0.519487 0.514124 0.5509339 +0.5245917 0.514124 0.5509339 +0.529462 0.514124 0.5509339 +0.5341183 0.514124 0.5509339 +0.5385787 0.514124 0.5509339 +0.5428591 0.514124 0.5509339 +0.5469733 0.514124 0.5509339 +0.5509339 0.514124 0.5509339 +0.5547519 0.514124 0.5509339 +0.5584371 0.514124 0.5509339 +0.5619986 0.514124 0.5509339 +0.5654443 0.514124 0.5509339 +0.5687816 0.514124 0.5509339 +0.092819 0.519487 0.5509339 +0.2262531 0.519487 0.5509339 +0.2875993 0.519487 0.5509339 +0.3262122 0.519487 0.5509339 +0.3544566 0.519487 0.5509339 +0.3767383 0.519487 0.5509339 +0.3951413 0.519487 0.5509339 +0.4108177 0.519487 0.5509339 +0.4244723 0.519487 0.5509339 +0.4365675 0.519487 0.5509339 +0.4474232 0.519487 0.5509339 +0.45727 0.519487 0.5509339 +0.4662797 0.519487 0.5509339 +0.4745834 0.519487 0.5509339 +0.4822838 0.519487 0.5509339 +0.4894626 0.519487 0.5509339 +0.4961862 0.519487 0.5509339 +0.5025087 0.519487 0.5509339 +0.5084753 0.519487 0.5509339 +0.514124 0.519487 0.5509339 +0.519487 0.519487 0.5509339 +0.5245917 0.519487 0.5509339 +0.529462 0.519487 0.5509339 +0.5341183 0.519487 0.5509339 +0.5385787 0.519487 0.5509339 +0.5428591 0.519487 0.5509339 +0.5469733 0.519487 0.5509339 +0.5509339 0.519487 0.5509339 +0.5547519 0.519487 0.5509339 +0.5584371 0.519487 0.5509339 +0.5619986 0.519487 0.5509339 +0.5654443 0.519487 0.5509339 +0.5687816 0.519487 0.5509339 +0.092819 0.5245917 0.5509339 +0.2262531 0.5245917 0.5509339 +0.2875993 0.5245917 0.5509339 +0.3262122 0.5245917 0.5509339 +0.3544566 0.5245917 0.5509339 +0.3767383 0.5245917 0.5509339 +0.3951413 0.5245917 0.5509339 +0.4108177 0.5245917 0.5509339 +0.4244723 0.5245917 0.5509339 +0.4365675 0.5245917 0.5509339 +0.4474232 0.5245917 0.5509339 +0.45727 0.5245917 0.5509339 +0.4662797 0.5245917 0.5509339 +0.4745834 0.5245917 0.5509339 +0.4822838 0.5245917 0.5509339 +0.4894626 0.5245917 0.5509339 +0.4961862 0.5245917 0.5509339 +0.5025087 0.5245917 0.5509339 +0.5084753 0.5245917 0.5509339 +0.514124 0.5245917 0.5509339 +0.519487 0.5245917 0.5509339 +0.5245917 0.5245917 0.5509339 +0.529462 0.5245917 0.5509339 +0.5341183 0.5245917 0.5509339 +0.5385787 0.5245917 0.5509339 +0.5428591 0.5245917 0.5509339 +0.5469733 0.5245917 0.5509339 +0.5509339 0.5245917 0.5509339 +0.5547519 0.5245917 0.5509339 +0.5584371 0.5245917 0.5509339 +0.5619986 0.5245917 0.5509339 +0.5654443 0.5245917 0.5509339 +0.5687816 0.5245917 0.5509339 +0.092819 0.529462 0.5509339 +0.2262531 0.529462 0.5509339 +0.2875993 0.529462 0.5509339 +0.3262122 0.529462 0.5509339 +0.3544566 0.529462 0.5509339 +0.3767383 0.529462 0.5509339 +0.3951413 0.529462 0.5509339 +0.4108177 0.529462 0.5509339 +0.4244723 0.529462 0.5509339 +0.4365675 0.529462 0.5509339 +0.4474232 0.529462 0.5509339 +0.45727 0.529462 0.5509339 +0.4662797 0.529462 0.5509339 +0.4745834 0.529462 0.5509339 +0.4822838 0.529462 0.5509339 +0.4894626 0.529462 0.5509339 +0.4961862 0.529462 0.5509339 +0.5025087 0.529462 0.5509339 +0.5084753 0.529462 0.5509339 +0.514124 0.529462 0.5509339 +0.519487 0.529462 0.5509339 +0.5245917 0.529462 0.5509339 +0.529462 0.529462 0.5509339 +0.5341183 0.529462 0.5509339 +0.5385787 0.529462 0.5509339 +0.5428591 0.529462 0.5509339 +0.5469733 0.529462 0.5509339 +0.5509339 0.529462 0.5509339 +0.5547519 0.529462 0.5509339 +0.5584371 0.529462 0.5509339 +0.5619986 0.529462 0.5509339 +0.5654443 0.529462 0.5509339 +0.5687816 0.529462 0.5509339 +0.092819 0.5341183 0.5509339 +0.2262531 0.5341183 0.5509339 +0.2875993 0.5341183 0.5509339 +0.3262122 0.5341183 0.5509339 +0.3544566 0.5341183 0.5509339 +0.3767383 0.5341183 0.5509339 +0.3951413 0.5341183 0.5509339 +0.4108177 0.5341183 0.5509339 +0.4244723 0.5341183 0.5509339 +0.4365675 0.5341183 0.5509339 +0.4474232 0.5341183 0.5509339 +0.45727 0.5341183 0.5509339 +0.4662797 0.5341183 0.5509339 +0.4745834 0.5341183 0.5509339 +0.4822838 0.5341183 0.5509339 +0.4894626 0.5341183 0.5509339 +0.4961862 0.5341183 0.5509339 +0.5025087 0.5341183 0.5509339 +0.5084753 0.5341183 0.5509339 +0.514124 0.5341183 0.5509339 +0.519487 0.5341183 0.5509339 +0.5245917 0.5341183 0.5509339 +0.529462 0.5341183 0.5509339 +0.5341183 0.5341183 0.5509339 +0.5385787 0.5341183 0.5509339 +0.5428591 0.5341183 0.5509339 +0.5469733 0.5341183 0.5509339 +0.5509339 0.5341183 0.5509339 +0.5547519 0.5341183 0.5509339 +0.5584371 0.5341183 0.5509339 +0.5619986 0.5341183 0.5509339 +0.5654443 0.5341183 0.5509339 +0.5687816 0.5341183 0.5509339 +0.092819 0.5385787 0.5509339 +0.2262531 0.5385787 0.5509339 +0.2875993 0.5385787 0.5509339 +0.3262122 0.5385787 0.5509339 +0.3544566 0.5385787 0.5509339 +0.3767383 0.5385787 0.5509339 +0.3951413 0.5385787 0.5509339 +0.4108177 0.5385787 0.5509339 +0.4244723 0.5385787 0.5509339 +0.4365675 0.5385787 0.5509339 +0.4474232 0.5385787 0.5509339 +0.45727 0.5385787 0.5509339 +0.4662797 0.5385787 0.5509339 +0.4745834 0.5385787 0.5509339 +0.4822838 0.5385787 0.5509339 +0.4894626 0.5385787 0.5509339 +0.4961862 0.5385787 0.5509339 +0.5025087 0.5385787 0.5509339 +0.5084753 0.5385787 0.5509339 +0.514124 0.5385787 0.5509339 +0.519487 0.5385787 0.5509339 +0.5245917 0.5385787 0.5509339 +0.529462 0.5385787 0.5509339 +0.5341183 0.5385787 0.5509339 +0.5385787 0.5385787 0.5509339 +0.5428591 0.5385787 0.5509339 +0.5469733 0.5385787 0.5509339 +0.5509339 0.5385787 0.5509339 +0.5547519 0.5385787 0.5509339 +0.5584371 0.5385787 0.5509339 +0.5619986 0.5385787 0.5509339 +0.5654443 0.5385787 0.5509339 +0.5687816 0.5385787 0.5509339 +0.092819 0.5428591 0.5509339 +0.2262531 0.5428591 0.5509339 +0.2875993 0.5428591 0.5509339 +0.3262122 0.5428591 0.5509339 +0.3544566 0.5428591 0.5509339 +0.3767383 0.5428591 0.5509339 +0.3951413 0.5428591 0.5509339 +0.4108177 0.5428591 0.5509339 +0.4244723 0.5428591 0.5509339 +0.4365675 0.5428591 0.5509339 +0.4474232 0.5428591 0.5509339 +0.45727 0.5428591 0.5509339 +0.4662797 0.5428591 0.5509339 +0.4745834 0.5428591 0.5509339 +0.4822838 0.5428591 0.5509339 +0.4894626 0.5428591 0.5509339 +0.4961862 0.5428591 0.5509339 +0.5025087 0.5428591 0.5509339 +0.5084753 0.5428591 0.5509339 +0.514124 0.5428591 0.5509339 +0.519487 0.5428591 0.5509339 +0.5245917 0.5428591 0.5509339 +0.529462 0.5428591 0.5509339 +0.5341183 0.5428591 0.5509339 +0.5385787 0.5428591 0.5509339 +0.5428591 0.5428591 0.5509339 +0.5469733 0.5428591 0.5509339 +0.5509339 0.5428591 0.5509339 +0.5547519 0.5428591 0.5509339 +0.5584371 0.5428591 0.5509339 +0.5619986 0.5428591 0.5509339 +0.5654443 0.5428591 0.5509339 +0.5687816 0.5428591 0.5509339 +0.092819 0.5469733 0.5509339 +0.2262531 0.5469733 0.5509339 +0.2875993 0.5469733 0.5509339 +0.3262122 0.5469733 0.5509339 +0.3544566 0.5469733 0.5509339 +0.3767383 0.5469733 0.5509339 +0.3951413 0.5469733 0.5509339 +0.4108177 0.5469733 0.5509339 +0.4244723 0.5469733 0.5509339 +0.4365675 0.5469733 0.5509339 +0.4474232 0.5469733 0.5509339 +0.45727 0.5469733 0.5509339 +0.4662797 0.5469733 0.5509339 +0.4745834 0.5469733 0.5509339 +0.4822838 0.5469733 0.5509339 +0.4894626 0.5469733 0.5509339 +0.4961862 0.5469733 0.5509339 +0.5025087 0.5469733 0.5509339 +0.5084753 0.5469733 0.5509339 +0.514124 0.5469733 0.5509339 +0.519487 0.5469733 0.5509339 +0.5245917 0.5469733 0.5509339 +0.529462 0.5469733 0.5509339 +0.5341183 0.5469733 0.5509339 +0.5385787 0.5469733 0.5509339 +0.5428591 0.5469733 0.5509339 +0.5469733 0.5469733 0.5509339 +0.5509339 0.5469733 0.5509339 +0.5547519 0.5469733 0.5509339 +0.5584371 0.5469733 0.5509339 +0.5619986 0.5469733 0.5509339 +0.5654443 0.5469733 0.5509339 +0.5687816 0.5469733 0.5509339 +0.092819 0.5509339 0.5509339 +0.2262531 0.5509339 0.5509339 +0.2875993 0.5509339 0.5509339 +0.3262122 0.5509339 0.5509339 +0.3544566 0.5509339 0.5509339 +0.3767383 0.5509339 0.5509339 +0.3951413 0.5509339 0.5509339 +0.4108177 0.5509339 0.5509339 +0.4244723 0.5509339 0.5509339 +0.4365675 0.5509339 0.5509339 +0.4474232 0.5509339 0.5509339 +0.45727 0.5509339 0.5509339 +0.4662797 0.5509339 0.5509339 +0.4745834 0.5509339 0.5509339 +0.4822838 0.5509339 0.5509339 +0.4894626 0.5509339 0.5509339 +0.4961862 0.5509339 0.5509339 +0.5025087 0.5509339 0.5509339 +0.5084753 0.5509339 0.5509339 +0.514124 0.5509339 0.5509339 +0.519487 0.5509339 0.5509339 +0.5245917 0.5509339 0.5509339 +0.529462 0.5509339 0.5509339 +0.5341183 0.5509339 0.5509339 +0.5385787 0.5509339 0.5509339 +0.5428591 0.5509339 0.5509339 +0.5469733 0.5509339 0.5509339 +0.5509339 0.5509339 0.5509339 +0.5547519 0.5509339 0.5509339 +0.5584371 0.5509339 0.5509339 +0.5619986 0.5509339 0.5509339 +0.5654443 0.5509339 0.5509339 +0.5687816 0.5509339 0.5509339 +0.092819 0.5547519 0.5509339 +0.2262531 0.5547519 0.5509339 +0.2875993 0.5547519 0.5509339 +0.3262122 0.5547519 0.5509339 +0.3544566 0.5547519 0.5509339 +0.3767383 0.5547519 0.5509339 +0.3951413 0.5547519 0.5509339 +0.4108177 0.5547519 0.5509339 +0.4244723 0.5547519 0.5509339 +0.4365675 0.5547519 0.5509339 +0.4474232 0.5547519 0.5509339 +0.45727 0.5547519 0.5509339 +0.4662797 0.5547519 0.5509339 +0.4745834 0.5547519 0.5509339 +0.4822838 0.5547519 0.5509339 +0.4894626 0.5547519 0.5509339 +0.4961862 0.5547519 0.5509339 +0.5025087 0.5547519 0.5509339 +0.5084753 0.5547519 0.5509339 +0.514124 0.5547519 0.5509339 +0.519487 0.5547519 0.5509339 +0.5245917 0.5547519 0.5509339 +0.529462 0.5547519 0.5509339 +0.5341183 0.5547519 0.5509339 +0.5385787 0.5547519 0.5509339 +0.5428591 0.5547519 0.5509339 +0.5469733 0.5547519 0.5509339 +0.5509339 0.5547519 0.5509339 +0.5547519 0.5547519 0.5509339 +0.5584371 0.5547519 0.5509339 +0.5619986 0.5547519 0.5509339 +0.5654443 0.5547519 0.5509339 +0.5687816 0.5547519 0.5509339 +0.092819 0.5584371 0.5509339 +0.2262531 0.5584371 0.5509339 +0.2875993 0.5584371 0.5509339 +0.3262122 0.5584371 0.5509339 +0.3544566 0.5584371 0.5509339 +0.3767383 0.5584371 0.5509339 +0.3951413 0.5584371 0.5509339 +0.4108177 0.5584371 0.5509339 +0.4244723 0.5584371 0.5509339 +0.4365675 0.5584371 0.5509339 +0.4474232 0.5584371 0.5509339 +0.45727 0.5584371 0.5509339 +0.4662797 0.5584371 0.5509339 +0.4745834 0.5584371 0.5509339 +0.4822838 0.5584371 0.5509339 +0.4894626 0.5584371 0.5509339 +0.4961862 0.5584371 0.5509339 +0.5025087 0.5584371 0.5509339 +0.5084753 0.5584371 0.5509339 +0.514124 0.5584371 0.5509339 +0.519487 0.5584371 0.5509339 +0.5245917 0.5584371 0.5509339 +0.529462 0.5584371 0.5509339 +0.5341183 0.5584371 0.5509339 +0.5385787 0.5584371 0.5509339 +0.5428591 0.5584371 0.5509339 +0.5469733 0.5584371 0.5509339 +0.5509339 0.5584371 0.5509339 +0.5547519 0.5584371 0.5509339 +0.5584371 0.5584371 0.5509339 +0.5619986 0.5584371 0.5509339 +0.5654443 0.5584371 0.5509339 +0.5687816 0.5584371 0.5509339 +0.092819 0.5619986 0.5509339 +0.2262531 0.5619986 0.5509339 +0.2875993 0.5619986 0.5509339 +0.3262122 0.5619986 0.5509339 +0.3544566 0.5619986 0.5509339 +0.3767383 0.5619986 0.5509339 +0.3951413 0.5619986 0.5509339 +0.4108177 0.5619986 0.5509339 +0.4244723 0.5619986 0.5509339 +0.4365675 0.5619986 0.5509339 +0.4474232 0.5619986 0.5509339 +0.45727 0.5619986 0.5509339 +0.4662797 0.5619986 0.5509339 +0.4745834 0.5619986 0.5509339 +0.4822838 0.5619986 0.5509339 +0.4894626 0.5619986 0.5509339 +0.4961862 0.5619986 0.5509339 +0.5025087 0.5619986 0.5509339 +0.5084753 0.5619986 0.5509339 +0.514124 0.5619986 0.5509339 +0.519487 0.5619986 0.5509339 +0.5245917 0.5619986 0.5509339 +0.529462 0.5619986 0.5509339 +0.5341183 0.5619986 0.5509339 +0.5385787 0.5619986 0.5509339 +0.5428591 0.5619986 0.5509339 +0.5469733 0.5619986 0.5509339 +0.5509339 0.5619986 0.5509339 +0.5547519 0.5619986 0.5509339 +0.5584371 0.5619986 0.5509339 +0.5619986 0.5619986 0.5509339 +0.5654443 0.5619986 0.5509339 +0.5687816 0.5619986 0.5509339 +0.092819 0.5654443 0.5509339 +0.2262531 0.5654443 0.5509339 +0.2875993 0.5654443 0.5509339 +0.3262122 0.5654443 0.5509339 +0.3544566 0.5654443 0.5509339 +0.3767383 0.5654443 0.5509339 +0.3951413 0.5654443 0.5509339 +0.4108177 0.5654443 0.5509339 +0.4244723 0.5654443 0.5509339 +0.4365675 0.5654443 0.5509339 +0.4474232 0.5654443 0.5509339 +0.45727 0.5654443 0.5509339 +0.4662797 0.5654443 0.5509339 +0.4745834 0.5654443 0.5509339 +0.4822838 0.5654443 0.5509339 +0.4894626 0.5654443 0.5509339 +0.4961862 0.5654443 0.5509339 +0.5025087 0.5654443 0.5509339 +0.5084753 0.5654443 0.5509339 +0.514124 0.5654443 0.5509339 +0.519487 0.5654443 0.5509339 +0.5245917 0.5654443 0.5509339 +0.529462 0.5654443 0.5509339 +0.5341183 0.5654443 0.5509339 +0.5385787 0.5654443 0.5509339 +0.5428591 0.5654443 0.5509339 +0.5469733 0.5654443 0.5509339 +0.5509339 0.5654443 0.5509339 +0.5547519 0.5654443 0.5509339 +0.5584371 0.5654443 0.5509339 +0.5619986 0.5654443 0.5509339 +0.5654443 0.5654443 0.5509339 +0.5687816 0.5654443 0.5509339 +0.092819 0.5687816 0.5509339 +0.2262531 0.5687816 0.5509339 +0.2875993 0.5687816 0.5509339 +0.3262122 0.5687816 0.5509339 +0.3544566 0.5687816 0.5509339 +0.3767383 0.5687816 0.5509339 +0.3951413 0.5687816 0.5509339 +0.4108177 0.5687816 0.5509339 +0.4244723 0.5687816 0.5509339 +0.4365675 0.5687816 0.5509339 +0.4474232 0.5687816 0.5509339 +0.45727 0.5687816 0.5509339 +0.4662797 0.5687816 0.5509339 +0.4745834 0.5687816 0.5509339 +0.4822838 0.5687816 0.5509339 +0.4894626 0.5687816 0.5509339 +0.4961862 0.5687816 0.5509339 +0.5025087 0.5687816 0.5509339 +0.5084753 0.5687816 0.5509339 +0.514124 0.5687816 0.5509339 +0.519487 0.5687816 0.5509339 +0.5245917 0.5687816 0.5509339 +0.529462 0.5687816 0.5509339 +0.5341183 0.5687816 0.5509339 +0.5385787 0.5687816 0.5509339 +0.5428591 0.5687816 0.5509339 +0.5469733 0.5687816 0.5509339 +0.5509339 0.5687816 0.5509339 +0.5547519 0.5687816 0.5509339 +0.5584371 0.5687816 0.5509339 +0.5619986 0.5687816 0.5509339 +0.5654443 0.5687816 0.5509339 +0.5687816 0.5687816 0.5509339 +0.092819 0.092819 0.5547519 +0.2262531 0.092819 0.5547519 +0.2875993 0.092819 0.5547519 +0.3262122 0.092819 0.5547519 +0.3544566 0.092819 0.5547519 +0.3767383 0.092819 0.5547519 +0.3951413 0.092819 0.5547519 +0.4108177 0.092819 0.5547519 +0.4244723 0.092819 0.5547519 +0.4365675 0.092819 0.5547519 +0.4474232 0.092819 0.5547519 +0.45727 0.092819 0.5547519 +0.4662797 0.092819 0.5547519 +0.4745834 0.092819 0.5547519 +0.4822838 0.092819 0.5547519 +0.4894626 0.092819 0.5547519 +0.4961862 0.092819 0.5547519 +0.5025087 0.092819 0.5547519 +0.5084753 0.092819 0.5547519 +0.514124 0.092819 0.5547519 +0.519487 0.092819 0.5547519 +0.5245917 0.092819 0.5547519 +0.529462 0.092819 0.5547519 +0.5341183 0.092819 0.5547519 +0.5385787 0.092819 0.5547519 +0.5428591 0.092819 0.5547519 +0.5469733 0.092819 0.5547519 +0.5509339 0.092819 0.5547519 +0.5547519 0.092819 0.5547519 +0.5584371 0.092819 0.5547519 +0.5619986 0.092819 0.5547519 +0.5654443 0.092819 0.5547519 +0.5687816 0.092819 0.5547519 +0.092819 0.2262531 0.5547519 +0.2262531 0.2262531 0.5547519 +0.2875993 0.2262531 0.5547519 +0.3262122 0.2262531 0.5547519 +0.3544566 0.2262531 0.5547519 +0.3767383 0.2262531 0.5547519 +0.3951413 0.2262531 0.5547519 +0.4108177 0.2262531 0.5547519 +0.4244723 0.2262531 0.5547519 +0.4365675 0.2262531 0.5547519 +0.4474232 0.2262531 0.5547519 +0.45727 0.2262531 0.5547519 +0.4662797 0.2262531 0.5547519 +0.4745834 0.2262531 0.5547519 +0.4822838 0.2262531 0.5547519 +0.4894626 0.2262531 0.5547519 +0.4961862 0.2262531 0.5547519 +0.5025087 0.2262531 0.5547519 +0.5084753 0.2262531 0.5547519 +0.514124 0.2262531 0.5547519 +0.519487 0.2262531 0.5547519 +0.5245917 0.2262531 0.5547519 +0.529462 0.2262531 0.5547519 +0.5341183 0.2262531 0.5547519 +0.5385787 0.2262531 0.5547519 +0.5428591 0.2262531 0.5547519 +0.5469733 0.2262531 0.5547519 +0.5509339 0.2262531 0.5547519 +0.5547519 0.2262531 0.5547519 +0.5584371 0.2262531 0.5547519 +0.5619986 0.2262531 0.5547519 +0.5654443 0.2262531 0.5547519 +0.5687816 0.2262531 0.5547519 +0.092819 0.2875993 0.5547519 +0.2262531 0.2875993 0.5547519 +0.2875993 0.2875993 0.5547519 +0.3262122 0.2875993 0.5547519 +0.3544566 0.2875993 0.5547519 +0.3767383 0.2875993 0.5547519 +0.3951413 0.2875993 0.5547519 +0.4108177 0.2875993 0.5547519 +0.4244723 0.2875993 0.5547519 +0.4365675 0.2875993 0.5547519 +0.4474232 0.2875993 0.5547519 +0.45727 0.2875993 0.5547519 +0.4662797 0.2875993 0.5547519 +0.4745834 0.2875993 0.5547519 +0.4822838 0.2875993 0.5547519 +0.4894626 0.2875993 0.5547519 +0.4961862 0.2875993 0.5547519 +0.5025087 0.2875993 0.5547519 +0.5084753 0.2875993 0.5547519 +0.514124 0.2875993 0.5547519 +0.519487 0.2875993 0.5547519 +0.5245917 0.2875993 0.5547519 +0.529462 0.2875993 0.5547519 +0.5341183 0.2875993 0.5547519 +0.5385787 0.2875993 0.5547519 +0.5428591 0.2875993 0.5547519 +0.5469733 0.2875993 0.5547519 +0.5509339 0.2875993 0.5547519 +0.5547519 0.2875993 0.5547519 +0.5584371 0.2875993 0.5547519 +0.5619986 0.2875993 0.5547519 +0.5654443 0.2875993 0.5547519 +0.5687816 0.2875993 0.5547519 +0.092819 0.3262122 0.5547519 +0.2262531 0.3262122 0.5547519 +0.2875993 0.3262122 0.5547519 +0.3262122 0.3262122 0.5547519 +0.3544566 0.3262122 0.5547519 +0.3767383 0.3262122 0.5547519 +0.3951413 0.3262122 0.5547519 +0.4108177 0.3262122 0.5547519 +0.4244723 0.3262122 0.5547519 +0.4365675 0.3262122 0.5547519 +0.4474232 0.3262122 0.5547519 +0.45727 0.3262122 0.5547519 +0.4662797 0.3262122 0.5547519 +0.4745834 0.3262122 0.5547519 +0.4822838 0.3262122 0.5547519 +0.4894626 0.3262122 0.5547519 +0.4961862 0.3262122 0.5547519 +0.5025087 0.3262122 0.5547519 +0.5084753 0.3262122 0.5547519 +0.514124 0.3262122 0.5547519 +0.519487 0.3262122 0.5547519 +0.5245917 0.3262122 0.5547519 +0.529462 0.3262122 0.5547519 +0.5341183 0.3262122 0.5547519 +0.5385787 0.3262122 0.5547519 +0.5428591 0.3262122 0.5547519 +0.5469733 0.3262122 0.5547519 +0.5509339 0.3262122 0.5547519 +0.5547519 0.3262122 0.5547519 +0.5584371 0.3262122 0.5547519 +0.5619986 0.3262122 0.5547519 +0.5654443 0.3262122 0.5547519 +0.5687816 0.3262122 0.5547519 +0.092819 0.3544566 0.5547519 +0.2262531 0.3544566 0.5547519 +0.2875993 0.3544566 0.5547519 +0.3262122 0.3544566 0.5547519 +0.3544566 0.3544566 0.5547519 +0.3767383 0.3544566 0.5547519 +0.3951413 0.3544566 0.5547519 +0.4108177 0.3544566 0.5547519 +0.4244723 0.3544566 0.5547519 +0.4365675 0.3544566 0.5547519 +0.4474232 0.3544566 0.5547519 +0.45727 0.3544566 0.5547519 +0.4662797 0.3544566 0.5547519 +0.4745834 0.3544566 0.5547519 +0.4822838 0.3544566 0.5547519 +0.4894626 0.3544566 0.5547519 +0.4961862 0.3544566 0.5547519 +0.5025087 0.3544566 0.5547519 +0.5084753 0.3544566 0.5547519 +0.514124 0.3544566 0.5547519 +0.519487 0.3544566 0.5547519 +0.5245917 0.3544566 0.5547519 +0.529462 0.3544566 0.5547519 +0.5341183 0.3544566 0.5547519 +0.5385787 0.3544566 0.5547519 +0.5428591 0.3544566 0.5547519 +0.5469733 0.3544566 0.5547519 +0.5509339 0.3544566 0.5547519 +0.5547519 0.3544566 0.5547519 +0.5584371 0.3544566 0.5547519 +0.5619986 0.3544566 0.5547519 +0.5654443 0.3544566 0.5547519 +0.5687816 0.3544566 0.5547519 +0.092819 0.3767383 0.5547519 +0.2262531 0.3767383 0.5547519 +0.2875993 0.3767383 0.5547519 +0.3262122 0.3767383 0.5547519 +0.3544566 0.3767383 0.5547519 +0.3767383 0.3767383 0.5547519 +0.3951413 0.3767383 0.5547519 +0.4108177 0.3767383 0.5547519 +0.4244723 0.3767383 0.5547519 +0.4365675 0.3767383 0.5547519 +0.4474232 0.3767383 0.5547519 +0.45727 0.3767383 0.5547519 +0.4662797 0.3767383 0.5547519 +0.4745834 0.3767383 0.5547519 +0.4822838 0.3767383 0.5547519 +0.4894626 0.3767383 0.5547519 +0.4961862 0.3767383 0.5547519 +0.5025087 0.3767383 0.5547519 +0.5084753 0.3767383 0.5547519 +0.514124 0.3767383 0.5547519 +0.519487 0.3767383 0.5547519 +0.5245917 0.3767383 0.5547519 +0.529462 0.3767383 0.5547519 +0.5341183 0.3767383 0.5547519 +0.5385787 0.3767383 0.5547519 +0.5428591 0.3767383 0.5547519 +0.5469733 0.3767383 0.5547519 +0.5509339 0.3767383 0.5547519 +0.5547519 0.3767383 0.5547519 +0.5584371 0.3767383 0.5547519 +0.5619986 0.3767383 0.5547519 +0.5654443 0.3767383 0.5547519 +0.5687816 0.3767383 0.5547519 +0.092819 0.3951413 0.5547519 +0.2262531 0.3951413 0.5547519 +0.2875993 0.3951413 0.5547519 +0.3262122 0.3951413 0.5547519 +0.3544566 0.3951413 0.5547519 +0.3767383 0.3951413 0.5547519 +0.3951413 0.3951413 0.5547519 +0.4108177 0.3951413 0.5547519 +0.4244723 0.3951413 0.5547519 +0.4365675 0.3951413 0.5547519 +0.4474232 0.3951413 0.5547519 +0.45727 0.3951413 0.5547519 +0.4662797 0.3951413 0.5547519 +0.4745834 0.3951413 0.5547519 +0.4822838 0.3951413 0.5547519 +0.4894626 0.3951413 0.5547519 +0.4961862 0.3951413 0.5547519 +0.5025087 0.3951413 0.5547519 +0.5084753 0.3951413 0.5547519 +0.514124 0.3951413 0.5547519 +0.519487 0.3951413 0.5547519 +0.5245917 0.3951413 0.5547519 +0.529462 0.3951413 0.5547519 +0.5341183 0.3951413 0.5547519 +0.5385787 0.3951413 0.5547519 +0.5428591 0.3951413 0.5547519 +0.5469733 0.3951413 0.5547519 +0.5509339 0.3951413 0.5547519 +0.5547519 0.3951413 0.5547519 +0.5584371 0.3951413 0.5547519 +0.5619986 0.3951413 0.5547519 +0.5654443 0.3951413 0.5547519 +0.5687816 0.3951413 0.5547519 +0.092819 0.4108177 0.5547519 +0.2262531 0.4108177 0.5547519 +0.2875993 0.4108177 0.5547519 +0.3262122 0.4108177 0.5547519 +0.3544566 0.4108177 0.5547519 +0.3767383 0.4108177 0.5547519 +0.3951413 0.4108177 0.5547519 +0.4108177 0.4108177 0.5547519 +0.4244723 0.4108177 0.5547519 +0.4365675 0.4108177 0.5547519 +0.4474232 0.4108177 0.5547519 +0.45727 0.4108177 0.5547519 +0.4662797 0.4108177 0.5547519 +0.4745834 0.4108177 0.5547519 +0.4822838 0.4108177 0.5547519 +0.4894626 0.4108177 0.5547519 +0.4961862 0.4108177 0.5547519 +0.5025087 0.4108177 0.5547519 +0.5084753 0.4108177 0.5547519 +0.514124 0.4108177 0.5547519 +0.519487 0.4108177 0.5547519 +0.5245917 0.4108177 0.5547519 +0.529462 0.4108177 0.5547519 +0.5341183 0.4108177 0.5547519 +0.5385787 0.4108177 0.5547519 +0.5428591 0.4108177 0.5547519 +0.5469733 0.4108177 0.5547519 +0.5509339 0.4108177 0.5547519 +0.5547519 0.4108177 0.5547519 +0.5584371 0.4108177 0.5547519 +0.5619986 0.4108177 0.5547519 +0.5654443 0.4108177 0.5547519 +0.5687816 0.4108177 0.5547519 +0.092819 0.4244723 0.5547519 +0.2262531 0.4244723 0.5547519 +0.2875993 0.4244723 0.5547519 +0.3262122 0.4244723 0.5547519 +0.3544566 0.4244723 0.5547519 +0.3767383 0.4244723 0.5547519 +0.3951413 0.4244723 0.5547519 +0.4108177 0.4244723 0.5547519 +0.4244723 0.4244723 0.5547519 +0.4365675 0.4244723 0.5547519 +0.4474232 0.4244723 0.5547519 +0.45727 0.4244723 0.5547519 +0.4662797 0.4244723 0.5547519 +0.4745834 0.4244723 0.5547519 +0.4822838 0.4244723 0.5547519 +0.4894626 0.4244723 0.5547519 +0.4961862 0.4244723 0.5547519 +0.5025087 0.4244723 0.5547519 +0.5084753 0.4244723 0.5547519 +0.514124 0.4244723 0.5547519 +0.519487 0.4244723 0.5547519 +0.5245917 0.4244723 0.5547519 +0.529462 0.4244723 0.5547519 +0.5341183 0.4244723 0.5547519 +0.5385787 0.4244723 0.5547519 +0.5428591 0.4244723 0.5547519 +0.5469733 0.4244723 0.5547519 +0.5509339 0.4244723 0.5547519 +0.5547519 0.4244723 0.5547519 +0.5584371 0.4244723 0.5547519 +0.5619986 0.4244723 0.5547519 +0.5654443 0.4244723 0.5547519 +0.5687816 0.4244723 0.5547519 +0.092819 0.4365675 0.5547519 +0.2262531 0.4365675 0.5547519 +0.2875993 0.4365675 0.5547519 +0.3262122 0.4365675 0.5547519 +0.3544566 0.4365675 0.5547519 +0.3767383 0.4365675 0.5547519 +0.3951413 0.4365675 0.5547519 +0.4108177 0.4365675 0.5547519 +0.4244723 0.4365675 0.5547519 +0.4365675 0.4365675 0.5547519 +0.4474232 0.4365675 0.5547519 +0.45727 0.4365675 0.5547519 +0.4662797 0.4365675 0.5547519 +0.4745834 0.4365675 0.5547519 +0.4822838 0.4365675 0.5547519 +0.4894626 0.4365675 0.5547519 +0.4961862 0.4365675 0.5547519 +0.5025087 0.4365675 0.5547519 +0.5084753 0.4365675 0.5547519 +0.514124 0.4365675 0.5547519 +0.519487 0.4365675 0.5547519 +0.5245917 0.4365675 0.5547519 +0.529462 0.4365675 0.5547519 +0.5341183 0.4365675 0.5547519 +0.5385787 0.4365675 0.5547519 +0.5428591 0.4365675 0.5547519 +0.5469733 0.4365675 0.5547519 +0.5509339 0.4365675 0.5547519 +0.5547519 0.4365675 0.5547519 +0.5584371 0.4365675 0.5547519 +0.5619986 0.4365675 0.5547519 +0.5654443 0.4365675 0.5547519 +0.5687816 0.4365675 0.5547519 +0.092819 0.4474232 0.5547519 +0.2262531 0.4474232 0.5547519 +0.2875993 0.4474232 0.5547519 +0.3262122 0.4474232 0.5547519 +0.3544566 0.4474232 0.5547519 +0.3767383 0.4474232 0.5547519 +0.3951413 0.4474232 0.5547519 +0.4108177 0.4474232 0.5547519 +0.4244723 0.4474232 0.5547519 +0.4365675 0.4474232 0.5547519 +0.4474232 0.4474232 0.5547519 +0.45727 0.4474232 0.5547519 +0.4662797 0.4474232 0.5547519 +0.4745834 0.4474232 0.5547519 +0.4822838 0.4474232 0.5547519 +0.4894626 0.4474232 0.5547519 +0.4961862 0.4474232 0.5547519 +0.5025087 0.4474232 0.5547519 +0.5084753 0.4474232 0.5547519 +0.514124 0.4474232 0.5547519 +0.519487 0.4474232 0.5547519 +0.5245917 0.4474232 0.5547519 +0.529462 0.4474232 0.5547519 +0.5341183 0.4474232 0.5547519 +0.5385787 0.4474232 0.5547519 +0.5428591 0.4474232 0.5547519 +0.5469733 0.4474232 0.5547519 +0.5509339 0.4474232 0.5547519 +0.5547519 0.4474232 0.5547519 +0.5584371 0.4474232 0.5547519 +0.5619986 0.4474232 0.5547519 +0.5654443 0.4474232 0.5547519 +0.5687816 0.4474232 0.5547519 +0.092819 0.45727 0.5547519 +0.2262531 0.45727 0.5547519 +0.2875993 0.45727 0.5547519 +0.3262122 0.45727 0.5547519 +0.3544566 0.45727 0.5547519 +0.3767383 0.45727 0.5547519 +0.3951413 0.45727 0.5547519 +0.4108177 0.45727 0.5547519 +0.4244723 0.45727 0.5547519 +0.4365675 0.45727 0.5547519 +0.4474232 0.45727 0.5547519 +0.45727 0.45727 0.5547519 +0.4662797 0.45727 0.5547519 +0.4745834 0.45727 0.5547519 +0.4822838 0.45727 0.5547519 +0.4894626 0.45727 0.5547519 +0.4961862 0.45727 0.5547519 +0.5025087 0.45727 0.5547519 +0.5084753 0.45727 0.5547519 +0.514124 0.45727 0.5547519 +0.519487 0.45727 0.5547519 +0.5245917 0.45727 0.5547519 +0.529462 0.45727 0.5547519 +0.5341183 0.45727 0.5547519 +0.5385787 0.45727 0.5547519 +0.5428591 0.45727 0.5547519 +0.5469733 0.45727 0.5547519 +0.5509339 0.45727 0.5547519 +0.5547519 0.45727 0.5547519 +0.5584371 0.45727 0.5547519 +0.5619986 0.45727 0.5547519 +0.5654443 0.45727 0.5547519 +0.5687816 0.45727 0.5547519 +0.092819 0.4662797 0.5547519 +0.2262531 0.4662797 0.5547519 +0.2875993 0.4662797 0.5547519 +0.3262122 0.4662797 0.5547519 +0.3544566 0.4662797 0.5547519 +0.3767383 0.4662797 0.5547519 +0.3951413 0.4662797 0.5547519 +0.4108177 0.4662797 0.5547519 +0.4244723 0.4662797 0.5547519 +0.4365675 0.4662797 0.5547519 +0.4474232 0.4662797 0.5547519 +0.45727 0.4662797 0.5547519 +0.4662797 0.4662797 0.5547519 +0.4745834 0.4662797 0.5547519 +0.4822838 0.4662797 0.5547519 +0.4894626 0.4662797 0.5547519 +0.4961862 0.4662797 0.5547519 +0.5025087 0.4662797 0.5547519 +0.5084753 0.4662797 0.5547519 +0.514124 0.4662797 0.5547519 +0.519487 0.4662797 0.5547519 +0.5245917 0.4662797 0.5547519 +0.529462 0.4662797 0.5547519 +0.5341183 0.4662797 0.5547519 +0.5385787 0.4662797 0.5547519 +0.5428591 0.4662797 0.5547519 +0.5469733 0.4662797 0.5547519 +0.5509339 0.4662797 0.5547519 +0.5547519 0.4662797 0.5547519 +0.5584371 0.4662797 0.5547519 +0.5619986 0.4662797 0.5547519 +0.5654443 0.4662797 0.5547519 +0.5687816 0.4662797 0.5547519 +0.092819 0.4745834 0.5547519 +0.2262531 0.4745834 0.5547519 +0.2875993 0.4745834 0.5547519 +0.3262122 0.4745834 0.5547519 +0.3544566 0.4745834 0.5547519 +0.3767383 0.4745834 0.5547519 +0.3951413 0.4745834 0.5547519 +0.4108177 0.4745834 0.5547519 +0.4244723 0.4745834 0.5547519 +0.4365675 0.4745834 0.5547519 +0.4474232 0.4745834 0.5547519 +0.45727 0.4745834 0.5547519 +0.4662797 0.4745834 0.5547519 +0.4745834 0.4745834 0.5547519 +0.4822838 0.4745834 0.5547519 +0.4894626 0.4745834 0.5547519 +0.4961862 0.4745834 0.5547519 +0.5025087 0.4745834 0.5547519 +0.5084753 0.4745834 0.5547519 +0.514124 0.4745834 0.5547519 +0.519487 0.4745834 0.5547519 +0.5245917 0.4745834 0.5547519 +0.529462 0.4745834 0.5547519 +0.5341183 0.4745834 0.5547519 +0.5385787 0.4745834 0.5547519 +0.5428591 0.4745834 0.5547519 +0.5469733 0.4745834 0.5547519 +0.5509339 0.4745834 0.5547519 +0.5547519 0.4745834 0.5547519 +0.5584371 0.4745834 0.5547519 +0.5619986 0.4745834 0.5547519 +0.5654443 0.4745834 0.5547519 +0.5687816 0.4745834 0.5547519 +0.092819 0.4822838 0.5547519 +0.2262531 0.4822838 0.5547519 +0.2875993 0.4822838 0.5547519 +0.3262122 0.4822838 0.5547519 +0.3544566 0.4822838 0.5547519 +0.3767383 0.4822838 0.5547519 +0.3951413 0.4822838 0.5547519 +0.4108177 0.4822838 0.5547519 +0.4244723 0.4822838 0.5547519 +0.4365675 0.4822838 0.5547519 +0.4474232 0.4822838 0.5547519 +0.45727 0.4822838 0.5547519 +0.4662797 0.4822838 0.5547519 +0.4745834 0.4822838 0.5547519 +0.4822838 0.4822838 0.5547519 +0.4894626 0.4822838 0.5547519 +0.4961862 0.4822838 0.5547519 +0.5025087 0.4822838 0.5547519 +0.5084753 0.4822838 0.5547519 +0.514124 0.4822838 0.5547519 +0.519487 0.4822838 0.5547519 +0.5245917 0.4822838 0.5547519 +0.529462 0.4822838 0.5547519 +0.5341183 0.4822838 0.5547519 +0.5385787 0.4822838 0.5547519 +0.5428591 0.4822838 0.5547519 +0.5469733 0.4822838 0.5547519 +0.5509339 0.4822838 0.5547519 +0.5547519 0.4822838 0.5547519 +0.5584371 0.4822838 0.5547519 +0.5619986 0.4822838 0.5547519 +0.5654443 0.4822838 0.5547519 +0.5687816 0.4822838 0.5547519 +0.092819 0.4894626 0.5547519 +0.2262531 0.4894626 0.5547519 +0.2875993 0.4894626 0.5547519 +0.3262122 0.4894626 0.5547519 +0.3544566 0.4894626 0.5547519 +0.3767383 0.4894626 0.5547519 +0.3951413 0.4894626 0.5547519 +0.4108177 0.4894626 0.5547519 +0.4244723 0.4894626 0.5547519 +0.4365675 0.4894626 0.5547519 +0.4474232 0.4894626 0.5547519 +0.45727 0.4894626 0.5547519 +0.4662797 0.4894626 0.5547519 +0.4745834 0.4894626 0.5547519 +0.4822838 0.4894626 0.5547519 +0.4894626 0.4894626 0.5547519 +0.4961862 0.4894626 0.5547519 +0.5025087 0.4894626 0.5547519 +0.5084753 0.4894626 0.5547519 +0.514124 0.4894626 0.5547519 +0.519487 0.4894626 0.5547519 +0.5245917 0.4894626 0.5547519 +0.529462 0.4894626 0.5547519 +0.5341183 0.4894626 0.5547519 +0.5385787 0.4894626 0.5547519 +0.5428591 0.4894626 0.5547519 +0.5469733 0.4894626 0.5547519 +0.5509339 0.4894626 0.5547519 +0.5547519 0.4894626 0.5547519 +0.5584371 0.4894626 0.5547519 +0.5619986 0.4894626 0.5547519 +0.5654443 0.4894626 0.5547519 +0.5687816 0.4894626 0.5547519 +0.092819 0.4961862 0.5547519 +0.2262531 0.4961862 0.5547519 +0.2875993 0.4961862 0.5547519 +0.3262122 0.4961862 0.5547519 +0.3544566 0.4961862 0.5547519 +0.3767383 0.4961862 0.5547519 +0.3951413 0.4961862 0.5547519 +0.4108177 0.4961862 0.5547519 +0.4244723 0.4961862 0.5547519 +0.4365675 0.4961862 0.5547519 +0.4474232 0.4961862 0.5547519 +0.45727 0.4961862 0.5547519 +0.4662797 0.4961862 0.5547519 +0.4745834 0.4961862 0.5547519 +0.4822838 0.4961862 0.5547519 +0.4894626 0.4961862 0.5547519 +0.4961862 0.4961862 0.5547519 +0.5025087 0.4961862 0.5547519 +0.5084753 0.4961862 0.5547519 +0.514124 0.4961862 0.5547519 +0.519487 0.4961862 0.5547519 +0.5245917 0.4961862 0.5547519 +0.529462 0.4961862 0.5547519 +0.5341183 0.4961862 0.5547519 +0.5385787 0.4961862 0.5547519 +0.5428591 0.4961862 0.5547519 +0.5469733 0.4961862 0.5547519 +0.5509339 0.4961862 0.5547519 +0.5547519 0.4961862 0.5547519 +0.5584371 0.4961862 0.5547519 +0.5619986 0.4961862 0.5547519 +0.5654443 0.4961862 0.5547519 +0.5687816 0.4961862 0.5547519 +0.092819 0.5025087 0.5547519 +0.2262531 0.5025087 0.5547519 +0.2875993 0.5025087 0.5547519 +0.3262122 0.5025087 0.5547519 +0.3544566 0.5025087 0.5547519 +0.3767383 0.5025087 0.5547519 +0.3951413 0.5025087 0.5547519 +0.4108177 0.5025087 0.5547519 +0.4244723 0.5025087 0.5547519 +0.4365675 0.5025087 0.5547519 +0.4474232 0.5025087 0.5547519 +0.45727 0.5025087 0.5547519 +0.4662797 0.5025087 0.5547519 +0.4745834 0.5025087 0.5547519 +0.4822838 0.5025087 0.5547519 +0.4894626 0.5025087 0.5547519 +0.4961862 0.5025087 0.5547519 +0.5025087 0.5025087 0.5547519 +0.5084753 0.5025087 0.5547519 +0.514124 0.5025087 0.5547519 +0.519487 0.5025087 0.5547519 +0.5245917 0.5025087 0.5547519 +0.529462 0.5025087 0.5547519 +0.5341183 0.5025087 0.5547519 +0.5385787 0.5025087 0.5547519 +0.5428591 0.5025087 0.5547519 +0.5469733 0.5025087 0.5547519 +0.5509339 0.5025087 0.5547519 +0.5547519 0.5025087 0.5547519 +0.5584371 0.5025087 0.5547519 +0.5619986 0.5025087 0.5547519 +0.5654443 0.5025087 0.5547519 +0.5687816 0.5025087 0.5547519 +0.092819 0.5084753 0.5547519 +0.2262531 0.5084753 0.5547519 +0.2875993 0.5084753 0.5547519 +0.3262122 0.5084753 0.5547519 +0.3544566 0.5084753 0.5547519 +0.3767383 0.5084753 0.5547519 +0.3951413 0.5084753 0.5547519 +0.4108177 0.5084753 0.5547519 +0.4244723 0.5084753 0.5547519 +0.4365675 0.5084753 0.5547519 +0.4474232 0.5084753 0.5547519 +0.45727 0.5084753 0.5547519 +0.4662797 0.5084753 0.5547519 +0.4745834 0.5084753 0.5547519 +0.4822838 0.5084753 0.5547519 +0.4894626 0.5084753 0.5547519 +0.4961862 0.5084753 0.5547519 +0.5025087 0.5084753 0.5547519 +0.5084753 0.5084753 0.5547519 +0.514124 0.5084753 0.5547519 +0.519487 0.5084753 0.5547519 +0.5245917 0.5084753 0.5547519 +0.529462 0.5084753 0.5547519 +0.5341183 0.5084753 0.5547519 +0.5385787 0.5084753 0.5547519 +0.5428591 0.5084753 0.5547519 +0.5469733 0.5084753 0.5547519 +0.5509339 0.5084753 0.5547519 +0.5547519 0.5084753 0.5547519 +0.5584371 0.5084753 0.5547519 +0.5619986 0.5084753 0.5547519 +0.5654443 0.5084753 0.5547519 +0.5687816 0.5084753 0.5547519 +0.092819 0.514124 0.5547519 +0.2262531 0.514124 0.5547519 +0.2875993 0.514124 0.5547519 +0.3262122 0.514124 0.5547519 +0.3544566 0.514124 0.5547519 +0.3767383 0.514124 0.5547519 +0.3951413 0.514124 0.5547519 +0.4108177 0.514124 0.5547519 +0.4244723 0.514124 0.5547519 +0.4365675 0.514124 0.5547519 +0.4474232 0.514124 0.5547519 +0.45727 0.514124 0.5547519 +0.4662797 0.514124 0.5547519 +0.4745834 0.514124 0.5547519 +0.4822838 0.514124 0.5547519 +0.4894626 0.514124 0.5547519 +0.4961862 0.514124 0.5547519 +0.5025087 0.514124 0.5547519 +0.5084753 0.514124 0.5547519 +0.514124 0.514124 0.5547519 +0.519487 0.514124 0.5547519 +0.5245917 0.514124 0.5547519 +0.529462 0.514124 0.5547519 +0.5341183 0.514124 0.5547519 +0.5385787 0.514124 0.5547519 +0.5428591 0.514124 0.5547519 +0.5469733 0.514124 0.5547519 +0.5509339 0.514124 0.5547519 +0.5547519 0.514124 0.5547519 +0.5584371 0.514124 0.5547519 +0.5619986 0.514124 0.5547519 +0.5654443 0.514124 0.5547519 +0.5687816 0.514124 0.5547519 +0.092819 0.519487 0.5547519 +0.2262531 0.519487 0.5547519 +0.2875993 0.519487 0.5547519 +0.3262122 0.519487 0.5547519 +0.3544566 0.519487 0.5547519 +0.3767383 0.519487 0.5547519 +0.3951413 0.519487 0.5547519 +0.4108177 0.519487 0.5547519 +0.4244723 0.519487 0.5547519 +0.4365675 0.519487 0.5547519 +0.4474232 0.519487 0.5547519 +0.45727 0.519487 0.5547519 +0.4662797 0.519487 0.5547519 +0.4745834 0.519487 0.5547519 +0.4822838 0.519487 0.5547519 +0.4894626 0.519487 0.5547519 +0.4961862 0.519487 0.5547519 +0.5025087 0.519487 0.5547519 +0.5084753 0.519487 0.5547519 +0.514124 0.519487 0.5547519 +0.519487 0.519487 0.5547519 +0.5245917 0.519487 0.5547519 +0.529462 0.519487 0.5547519 +0.5341183 0.519487 0.5547519 +0.5385787 0.519487 0.5547519 +0.5428591 0.519487 0.5547519 +0.5469733 0.519487 0.5547519 +0.5509339 0.519487 0.5547519 +0.5547519 0.519487 0.5547519 +0.5584371 0.519487 0.5547519 +0.5619986 0.519487 0.5547519 +0.5654443 0.519487 0.5547519 +0.5687816 0.519487 0.5547519 +0.092819 0.5245917 0.5547519 +0.2262531 0.5245917 0.5547519 +0.2875993 0.5245917 0.5547519 +0.3262122 0.5245917 0.5547519 +0.3544566 0.5245917 0.5547519 +0.3767383 0.5245917 0.5547519 +0.3951413 0.5245917 0.5547519 +0.4108177 0.5245917 0.5547519 +0.4244723 0.5245917 0.5547519 +0.4365675 0.5245917 0.5547519 +0.4474232 0.5245917 0.5547519 +0.45727 0.5245917 0.5547519 +0.4662797 0.5245917 0.5547519 +0.4745834 0.5245917 0.5547519 +0.4822838 0.5245917 0.5547519 +0.4894626 0.5245917 0.5547519 +0.4961862 0.5245917 0.5547519 +0.5025087 0.5245917 0.5547519 +0.5084753 0.5245917 0.5547519 +0.514124 0.5245917 0.5547519 +0.519487 0.5245917 0.5547519 +0.5245917 0.5245917 0.5547519 +0.529462 0.5245917 0.5547519 +0.5341183 0.5245917 0.5547519 +0.5385787 0.5245917 0.5547519 +0.5428591 0.5245917 0.5547519 +0.5469733 0.5245917 0.5547519 +0.5509339 0.5245917 0.5547519 +0.5547519 0.5245917 0.5547519 +0.5584371 0.5245917 0.5547519 +0.5619986 0.5245917 0.5547519 +0.5654443 0.5245917 0.5547519 +0.5687816 0.5245917 0.5547519 +0.092819 0.529462 0.5547519 +0.2262531 0.529462 0.5547519 +0.2875993 0.529462 0.5547519 +0.3262122 0.529462 0.5547519 +0.3544566 0.529462 0.5547519 +0.3767383 0.529462 0.5547519 +0.3951413 0.529462 0.5547519 +0.4108177 0.529462 0.5547519 +0.4244723 0.529462 0.5547519 +0.4365675 0.529462 0.5547519 +0.4474232 0.529462 0.5547519 +0.45727 0.529462 0.5547519 +0.4662797 0.529462 0.5547519 +0.4745834 0.529462 0.5547519 +0.4822838 0.529462 0.5547519 +0.4894626 0.529462 0.5547519 +0.4961862 0.529462 0.5547519 +0.5025087 0.529462 0.5547519 +0.5084753 0.529462 0.5547519 +0.514124 0.529462 0.5547519 +0.519487 0.529462 0.5547519 +0.5245917 0.529462 0.5547519 +0.529462 0.529462 0.5547519 +0.5341183 0.529462 0.5547519 +0.5385787 0.529462 0.5547519 +0.5428591 0.529462 0.5547519 +0.5469733 0.529462 0.5547519 +0.5509339 0.529462 0.5547519 +0.5547519 0.529462 0.5547519 +0.5584371 0.529462 0.5547519 +0.5619986 0.529462 0.5547519 +0.5654443 0.529462 0.5547519 +0.5687816 0.529462 0.5547519 +0.092819 0.5341183 0.5547519 +0.2262531 0.5341183 0.5547519 +0.2875993 0.5341183 0.5547519 +0.3262122 0.5341183 0.5547519 +0.3544566 0.5341183 0.5547519 +0.3767383 0.5341183 0.5547519 +0.3951413 0.5341183 0.5547519 +0.4108177 0.5341183 0.5547519 +0.4244723 0.5341183 0.5547519 +0.4365675 0.5341183 0.5547519 +0.4474232 0.5341183 0.5547519 +0.45727 0.5341183 0.5547519 +0.4662797 0.5341183 0.5547519 +0.4745834 0.5341183 0.5547519 +0.4822838 0.5341183 0.5547519 +0.4894626 0.5341183 0.5547519 +0.4961862 0.5341183 0.5547519 +0.5025087 0.5341183 0.5547519 +0.5084753 0.5341183 0.5547519 +0.514124 0.5341183 0.5547519 +0.519487 0.5341183 0.5547519 +0.5245917 0.5341183 0.5547519 +0.529462 0.5341183 0.5547519 +0.5341183 0.5341183 0.5547519 +0.5385787 0.5341183 0.5547519 +0.5428591 0.5341183 0.5547519 +0.5469733 0.5341183 0.5547519 +0.5509339 0.5341183 0.5547519 +0.5547519 0.5341183 0.5547519 +0.5584371 0.5341183 0.5547519 +0.5619986 0.5341183 0.5547519 +0.5654443 0.5341183 0.5547519 +0.5687816 0.5341183 0.5547519 +0.092819 0.5385787 0.5547519 +0.2262531 0.5385787 0.5547519 +0.2875993 0.5385787 0.5547519 +0.3262122 0.5385787 0.5547519 +0.3544566 0.5385787 0.5547519 +0.3767383 0.5385787 0.5547519 +0.3951413 0.5385787 0.5547519 +0.4108177 0.5385787 0.5547519 +0.4244723 0.5385787 0.5547519 +0.4365675 0.5385787 0.5547519 +0.4474232 0.5385787 0.5547519 +0.45727 0.5385787 0.5547519 +0.4662797 0.5385787 0.5547519 +0.4745834 0.5385787 0.5547519 +0.4822838 0.5385787 0.5547519 +0.4894626 0.5385787 0.5547519 +0.4961862 0.5385787 0.5547519 +0.5025087 0.5385787 0.5547519 +0.5084753 0.5385787 0.5547519 +0.514124 0.5385787 0.5547519 +0.519487 0.5385787 0.5547519 +0.5245917 0.5385787 0.5547519 +0.529462 0.5385787 0.5547519 +0.5341183 0.5385787 0.5547519 +0.5385787 0.5385787 0.5547519 +0.5428591 0.5385787 0.5547519 +0.5469733 0.5385787 0.5547519 +0.5509339 0.5385787 0.5547519 +0.5547519 0.5385787 0.5547519 +0.5584371 0.5385787 0.5547519 +0.5619986 0.5385787 0.5547519 +0.5654443 0.5385787 0.5547519 +0.5687816 0.5385787 0.5547519 +0.092819 0.5428591 0.5547519 +0.2262531 0.5428591 0.5547519 +0.2875993 0.5428591 0.5547519 +0.3262122 0.5428591 0.5547519 +0.3544566 0.5428591 0.5547519 +0.3767383 0.5428591 0.5547519 +0.3951413 0.5428591 0.5547519 +0.4108177 0.5428591 0.5547519 +0.4244723 0.5428591 0.5547519 +0.4365675 0.5428591 0.5547519 +0.4474232 0.5428591 0.5547519 +0.45727 0.5428591 0.5547519 +0.4662797 0.5428591 0.5547519 +0.4745834 0.5428591 0.5547519 +0.4822838 0.5428591 0.5547519 +0.4894626 0.5428591 0.5547519 +0.4961862 0.5428591 0.5547519 +0.5025087 0.5428591 0.5547519 +0.5084753 0.5428591 0.5547519 +0.514124 0.5428591 0.5547519 +0.519487 0.5428591 0.5547519 +0.5245917 0.5428591 0.5547519 +0.529462 0.5428591 0.5547519 +0.5341183 0.5428591 0.5547519 +0.5385787 0.5428591 0.5547519 +0.5428591 0.5428591 0.5547519 +0.5469733 0.5428591 0.5547519 +0.5509339 0.5428591 0.5547519 +0.5547519 0.5428591 0.5547519 +0.5584371 0.5428591 0.5547519 +0.5619986 0.5428591 0.5547519 +0.5654443 0.5428591 0.5547519 +0.5687816 0.5428591 0.5547519 +0.092819 0.5469733 0.5547519 +0.2262531 0.5469733 0.5547519 +0.2875993 0.5469733 0.5547519 +0.3262122 0.5469733 0.5547519 +0.3544566 0.5469733 0.5547519 +0.3767383 0.5469733 0.5547519 +0.3951413 0.5469733 0.5547519 +0.4108177 0.5469733 0.5547519 +0.4244723 0.5469733 0.5547519 +0.4365675 0.5469733 0.5547519 +0.4474232 0.5469733 0.5547519 +0.45727 0.5469733 0.5547519 +0.4662797 0.5469733 0.5547519 +0.4745834 0.5469733 0.5547519 +0.4822838 0.5469733 0.5547519 +0.4894626 0.5469733 0.5547519 +0.4961862 0.5469733 0.5547519 +0.5025087 0.5469733 0.5547519 +0.5084753 0.5469733 0.5547519 +0.514124 0.5469733 0.5547519 +0.519487 0.5469733 0.5547519 +0.5245917 0.5469733 0.5547519 +0.529462 0.5469733 0.5547519 +0.5341183 0.5469733 0.5547519 +0.5385787 0.5469733 0.5547519 +0.5428591 0.5469733 0.5547519 +0.5469733 0.5469733 0.5547519 +0.5509339 0.5469733 0.5547519 +0.5547519 0.5469733 0.5547519 +0.5584371 0.5469733 0.5547519 +0.5619986 0.5469733 0.5547519 +0.5654443 0.5469733 0.5547519 +0.5687816 0.5469733 0.5547519 +0.092819 0.5509339 0.5547519 +0.2262531 0.5509339 0.5547519 +0.2875993 0.5509339 0.5547519 +0.3262122 0.5509339 0.5547519 +0.3544566 0.5509339 0.5547519 +0.3767383 0.5509339 0.5547519 +0.3951413 0.5509339 0.5547519 +0.4108177 0.5509339 0.5547519 +0.4244723 0.5509339 0.5547519 +0.4365675 0.5509339 0.5547519 +0.4474232 0.5509339 0.5547519 +0.45727 0.5509339 0.5547519 +0.4662797 0.5509339 0.5547519 +0.4745834 0.5509339 0.5547519 +0.4822838 0.5509339 0.5547519 +0.4894626 0.5509339 0.5547519 +0.4961862 0.5509339 0.5547519 +0.5025087 0.5509339 0.5547519 +0.5084753 0.5509339 0.5547519 +0.514124 0.5509339 0.5547519 +0.519487 0.5509339 0.5547519 +0.5245917 0.5509339 0.5547519 +0.529462 0.5509339 0.5547519 +0.5341183 0.5509339 0.5547519 +0.5385787 0.5509339 0.5547519 +0.5428591 0.5509339 0.5547519 +0.5469733 0.5509339 0.5547519 +0.5509339 0.5509339 0.5547519 +0.5547519 0.5509339 0.5547519 +0.5584371 0.5509339 0.5547519 +0.5619986 0.5509339 0.5547519 +0.5654443 0.5509339 0.5547519 +0.5687816 0.5509339 0.5547519 +0.092819 0.5547519 0.5547519 +0.2262531 0.5547519 0.5547519 +0.2875993 0.5547519 0.5547519 +0.3262122 0.5547519 0.5547519 +0.3544566 0.5547519 0.5547519 +0.3767383 0.5547519 0.5547519 +0.3951413 0.5547519 0.5547519 +0.4108177 0.5547519 0.5547519 +0.4244723 0.5547519 0.5547519 +0.4365675 0.5547519 0.5547519 +0.4474232 0.5547519 0.5547519 +0.45727 0.5547519 0.5547519 +0.4662797 0.5547519 0.5547519 +0.4745834 0.5547519 0.5547519 +0.4822838 0.5547519 0.5547519 +0.4894626 0.5547519 0.5547519 +0.4961862 0.5547519 0.5547519 +0.5025087 0.5547519 0.5547519 +0.5084753 0.5547519 0.5547519 +0.514124 0.5547519 0.5547519 +0.519487 0.5547519 0.5547519 +0.5245917 0.5547519 0.5547519 +0.529462 0.5547519 0.5547519 +0.5341183 0.5547519 0.5547519 +0.5385787 0.5547519 0.5547519 +0.5428591 0.5547519 0.5547519 +0.5469733 0.5547519 0.5547519 +0.5509339 0.5547519 0.5547519 +0.5547519 0.5547519 0.5547519 +0.5584371 0.5547519 0.5547519 +0.5619986 0.5547519 0.5547519 +0.5654443 0.5547519 0.5547519 +0.5687816 0.5547519 0.5547519 +0.092819 0.5584371 0.5547519 +0.2262531 0.5584371 0.5547519 +0.2875993 0.5584371 0.5547519 +0.3262122 0.5584371 0.5547519 +0.3544566 0.5584371 0.5547519 +0.3767383 0.5584371 0.5547519 +0.3951413 0.5584371 0.5547519 +0.4108177 0.5584371 0.5547519 +0.4244723 0.5584371 0.5547519 +0.4365675 0.5584371 0.5547519 +0.4474232 0.5584371 0.5547519 +0.45727 0.5584371 0.5547519 +0.4662797 0.5584371 0.5547519 +0.4745834 0.5584371 0.5547519 +0.4822838 0.5584371 0.5547519 +0.4894626 0.5584371 0.5547519 +0.4961862 0.5584371 0.5547519 +0.5025087 0.5584371 0.5547519 +0.5084753 0.5584371 0.5547519 +0.514124 0.5584371 0.5547519 +0.519487 0.5584371 0.5547519 +0.5245917 0.5584371 0.5547519 +0.529462 0.5584371 0.5547519 +0.5341183 0.5584371 0.5547519 +0.5385787 0.5584371 0.5547519 +0.5428591 0.5584371 0.5547519 +0.5469733 0.5584371 0.5547519 +0.5509339 0.5584371 0.5547519 +0.5547519 0.5584371 0.5547519 +0.5584371 0.5584371 0.5547519 +0.5619986 0.5584371 0.5547519 +0.5654443 0.5584371 0.5547519 +0.5687816 0.5584371 0.5547519 +0.092819 0.5619986 0.5547519 +0.2262531 0.5619986 0.5547519 +0.2875993 0.5619986 0.5547519 +0.3262122 0.5619986 0.5547519 +0.3544566 0.5619986 0.5547519 +0.3767383 0.5619986 0.5547519 +0.3951413 0.5619986 0.5547519 +0.4108177 0.5619986 0.5547519 +0.4244723 0.5619986 0.5547519 +0.4365675 0.5619986 0.5547519 +0.4474232 0.5619986 0.5547519 +0.45727 0.5619986 0.5547519 +0.4662797 0.5619986 0.5547519 +0.4745834 0.5619986 0.5547519 +0.4822838 0.5619986 0.5547519 +0.4894626 0.5619986 0.5547519 +0.4961862 0.5619986 0.5547519 +0.5025087 0.5619986 0.5547519 +0.5084753 0.5619986 0.5547519 +0.514124 0.5619986 0.5547519 +0.519487 0.5619986 0.5547519 +0.5245917 0.5619986 0.5547519 +0.529462 0.5619986 0.5547519 +0.5341183 0.5619986 0.5547519 +0.5385787 0.5619986 0.5547519 +0.5428591 0.5619986 0.5547519 +0.5469733 0.5619986 0.5547519 +0.5509339 0.5619986 0.5547519 +0.5547519 0.5619986 0.5547519 +0.5584371 0.5619986 0.5547519 +0.5619986 0.5619986 0.5547519 +0.5654443 0.5619986 0.5547519 +0.5687816 0.5619986 0.5547519 +0.092819 0.5654443 0.5547519 +0.2262531 0.5654443 0.5547519 +0.2875993 0.5654443 0.5547519 +0.3262122 0.5654443 0.5547519 +0.3544566 0.5654443 0.5547519 +0.3767383 0.5654443 0.5547519 +0.3951413 0.5654443 0.5547519 +0.4108177 0.5654443 0.5547519 +0.4244723 0.5654443 0.5547519 +0.4365675 0.5654443 0.5547519 +0.4474232 0.5654443 0.5547519 +0.45727 0.5654443 0.5547519 +0.4662797 0.5654443 0.5547519 +0.4745834 0.5654443 0.5547519 +0.4822838 0.5654443 0.5547519 +0.4894626 0.5654443 0.5547519 +0.4961862 0.5654443 0.5547519 +0.5025087 0.5654443 0.5547519 +0.5084753 0.5654443 0.5547519 +0.514124 0.5654443 0.5547519 +0.519487 0.5654443 0.5547519 +0.5245917 0.5654443 0.5547519 +0.529462 0.5654443 0.5547519 +0.5341183 0.5654443 0.5547519 +0.5385787 0.5654443 0.5547519 +0.5428591 0.5654443 0.5547519 +0.5469733 0.5654443 0.5547519 +0.5509339 0.5654443 0.5547519 +0.5547519 0.5654443 0.5547519 +0.5584371 0.5654443 0.5547519 +0.5619986 0.5654443 0.5547519 +0.5654443 0.5654443 0.5547519 +0.5687816 0.5654443 0.5547519 +0.092819 0.5687816 0.5547519 +0.2262531 0.5687816 0.5547519 +0.2875993 0.5687816 0.5547519 +0.3262122 0.5687816 0.5547519 +0.3544566 0.5687816 0.5547519 +0.3767383 0.5687816 0.5547519 +0.3951413 0.5687816 0.5547519 +0.4108177 0.5687816 0.5547519 +0.4244723 0.5687816 0.5547519 +0.4365675 0.5687816 0.5547519 +0.4474232 0.5687816 0.5547519 +0.45727 0.5687816 0.5547519 +0.4662797 0.5687816 0.5547519 +0.4745834 0.5687816 0.5547519 +0.4822838 0.5687816 0.5547519 +0.4894626 0.5687816 0.5547519 +0.4961862 0.5687816 0.5547519 +0.5025087 0.5687816 0.5547519 +0.5084753 0.5687816 0.5547519 +0.514124 0.5687816 0.5547519 +0.519487 0.5687816 0.5547519 +0.5245917 0.5687816 0.5547519 +0.529462 0.5687816 0.5547519 +0.5341183 0.5687816 0.5547519 +0.5385787 0.5687816 0.5547519 +0.5428591 0.5687816 0.5547519 +0.5469733 0.5687816 0.5547519 +0.5509339 0.5687816 0.5547519 +0.5547519 0.5687816 0.5547519 +0.5584371 0.5687816 0.5547519 +0.5619986 0.5687816 0.5547519 +0.5654443 0.5687816 0.5547519 +0.5687816 0.5687816 0.5547519 +0.092819 0.092819 0.5584371 +0.2262531 0.092819 0.5584371 +0.2875993 0.092819 0.5584371 +0.3262122 0.092819 0.5584371 +0.3544566 0.092819 0.5584371 +0.3767383 0.092819 0.5584371 +0.3951413 0.092819 0.5584371 +0.4108177 0.092819 0.5584371 +0.4244723 0.092819 0.5584371 +0.4365675 0.092819 0.5584371 +0.4474232 0.092819 0.5584371 +0.45727 0.092819 0.5584371 +0.4662797 0.092819 0.5584371 +0.4745834 0.092819 0.5584371 +0.4822838 0.092819 0.5584371 +0.4894626 0.092819 0.5584371 +0.4961862 0.092819 0.5584371 +0.5025087 0.092819 0.5584371 +0.5084753 0.092819 0.5584371 +0.514124 0.092819 0.5584371 +0.519487 0.092819 0.5584371 +0.5245917 0.092819 0.5584371 +0.529462 0.092819 0.5584371 +0.5341183 0.092819 0.5584371 +0.5385787 0.092819 0.5584371 +0.5428591 0.092819 0.5584371 +0.5469733 0.092819 0.5584371 +0.5509339 0.092819 0.5584371 +0.5547519 0.092819 0.5584371 +0.5584371 0.092819 0.5584371 +0.5619986 0.092819 0.5584371 +0.5654443 0.092819 0.5584371 +0.5687816 0.092819 0.5584371 +0.092819 0.2262531 0.5584371 +0.2262531 0.2262531 0.5584371 +0.2875993 0.2262531 0.5584371 +0.3262122 0.2262531 0.5584371 +0.3544566 0.2262531 0.5584371 +0.3767383 0.2262531 0.5584371 +0.3951413 0.2262531 0.5584371 +0.4108177 0.2262531 0.5584371 +0.4244723 0.2262531 0.5584371 +0.4365675 0.2262531 0.5584371 +0.4474232 0.2262531 0.5584371 +0.45727 0.2262531 0.5584371 +0.4662797 0.2262531 0.5584371 +0.4745834 0.2262531 0.5584371 +0.4822838 0.2262531 0.5584371 +0.4894626 0.2262531 0.5584371 +0.4961862 0.2262531 0.5584371 +0.5025087 0.2262531 0.5584371 +0.5084753 0.2262531 0.5584371 +0.514124 0.2262531 0.5584371 +0.519487 0.2262531 0.5584371 +0.5245917 0.2262531 0.5584371 +0.529462 0.2262531 0.5584371 +0.5341183 0.2262531 0.5584371 +0.5385787 0.2262531 0.5584371 +0.5428591 0.2262531 0.5584371 +0.5469733 0.2262531 0.5584371 +0.5509339 0.2262531 0.5584371 +0.5547519 0.2262531 0.5584371 +0.5584371 0.2262531 0.5584371 +0.5619986 0.2262531 0.5584371 +0.5654443 0.2262531 0.5584371 +0.5687816 0.2262531 0.5584371 +0.092819 0.2875993 0.5584371 +0.2262531 0.2875993 0.5584371 +0.2875993 0.2875993 0.5584371 +0.3262122 0.2875993 0.5584371 +0.3544566 0.2875993 0.5584371 +0.3767383 0.2875993 0.5584371 +0.3951413 0.2875993 0.5584371 +0.4108177 0.2875993 0.5584371 +0.4244723 0.2875993 0.5584371 +0.4365675 0.2875993 0.5584371 +0.4474232 0.2875993 0.5584371 +0.45727 0.2875993 0.5584371 +0.4662797 0.2875993 0.5584371 +0.4745834 0.2875993 0.5584371 +0.4822838 0.2875993 0.5584371 +0.4894626 0.2875993 0.5584371 +0.4961862 0.2875993 0.5584371 +0.5025087 0.2875993 0.5584371 +0.5084753 0.2875993 0.5584371 +0.514124 0.2875993 0.5584371 +0.519487 0.2875993 0.5584371 +0.5245917 0.2875993 0.5584371 +0.529462 0.2875993 0.5584371 +0.5341183 0.2875993 0.5584371 +0.5385787 0.2875993 0.5584371 +0.5428591 0.2875993 0.5584371 +0.5469733 0.2875993 0.5584371 +0.5509339 0.2875993 0.5584371 +0.5547519 0.2875993 0.5584371 +0.5584371 0.2875993 0.5584371 +0.5619986 0.2875993 0.5584371 +0.5654443 0.2875993 0.5584371 +0.5687816 0.2875993 0.5584371 +0.092819 0.3262122 0.5584371 +0.2262531 0.3262122 0.5584371 +0.2875993 0.3262122 0.5584371 +0.3262122 0.3262122 0.5584371 +0.3544566 0.3262122 0.5584371 +0.3767383 0.3262122 0.5584371 +0.3951413 0.3262122 0.5584371 +0.4108177 0.3262122 0.5584371 +0.4244723 0.3262122 0.5584371 +0.4365675 0.3262122 0.5584371 +0.4474232 0.3262122 0.5584371 +0.45727 0.3262122 0.5584371 +0.4662797 0.3262122 0.5584371 +0.4745834 0.3262122 0.5584371 +0.4822838 0.3262122 0.5584371 +0.4894626 0.3262122 0.5584371 +0.4961862 0.3262122 0.5584371 +0.5025087 0.3262122 0.5584371 +0.5084753 0.3262122 0.5584371 +0.514124 0.3262122 0.5584371 +0.519487 0.3262122 0.5584371 +0.5245917 0.3262122 0.5584371 +0.529462 0.3262122 0.5584371 +0.5341183 0.3262122 0.5584371 +0.5385787 0.3262122 0.5584371 +0.5428591 0.3262122 0.5584371 +0.5469733 0.3262122 0.5584371 +0.5509339 0.3262122 0.5584371 +0.5547519 0.3262122 0.5584371 +0.5584371 0.3262122 0.5584371 +0.5619986 0.3262122 0.5584371 +0.5654443 0.3262122 0.5584371 +0.5687816 0.3262122 0.5584371 +0.092819 0.3544566 0.5584371 +0.2262531 0.3544566 0.5584371 +0.2875993 0.3544566 0.5584371 +0.3262122 0.3544566 0.5584371 +0.3544566 0.3544566 0.5584371 +0.3767383 0.3544566 0.5584371 +0.3951413 0.3544566 0.5584371 +0.4108177 0.3544566 0.5584371 +0.4244723 0.3544566 0.5584371 +0.4365675 0.3544566 0.5584371 +0.4474232 0.3544566 0.5584371 +0.45727 0.3544566 0.5584371 +0.4662797 0.3544566 0.5584371 +0.4745834 0.3544566 0.5584371 +0.4822838 0.3544566 0.5584371 +0.4894626 0.3544566 0.5584371 +0.4961862 0.3544566 0.5584371 +0.5025087 0.3544566 0.5584371 +0.5084753 0.3544566 0.5584371 +0.514124 0.3544566 0.5584371 +0.519487 0.3544566 0.5584371 +0.5245917 0.3544566 0.5584371 +0.529462 0.3544566 0.5584371 +0.5341183 0.3544566 0.5584371 +0.5385787 0.3544566 0.5584371 +0.5428591 0.3544566 0.5584371 +0.5469733 0.3544566 0.5584371 +0.5509339 0.3544566 0.5584371 +0.5547519 0.3544566 0.5584371 +0.5584371 0.3544566 0.5584371 +0.5619986 0.3544566 0.5584371 +0.5654443 0.3544566 0.5584371 +0.5687816 0.3544566 0.5584371 +0.092819 0.3767383 0.5584371 +0.2262531 0.3767383 0.5584371 +0.2875993 0.3767383 0.5584371 +0.3262122 0.3767383 0.5584371 +0.3544566 0.3767383 0.5584371 +0.3767383 0.3767383 0.5584371 +0.3951413 0.3767383 0.5584371 +0.4108177 0.3767383 0.5584371 +0.4244723 0.3767383 0.5584371 +0.4365675 0.3767383 0.5584371 +0.4474232 0.3767383 0.5584371 +0.45727 0.3767383 0.5584371 +0.4662797 0.3767383 0.5584371 +0.4745834 0.3767383 0.5584371 +0.4822838 0.3767383 0.5584371 +0.4894626 0.3767383 0.5584371 +0.4961862 0.3767383 0.5584371 +0.5025087 0.3767383 0.5584371 +0.5084753 0.3767383 0.5584371 +0.514124 0.3767383 0.5584371 +0.519487 0.3767383 0.5584371 +0.5245917 0.3767383 0.5584371 +0.529462 0.3767383 0.5584371 +0.5341183 0.3767383 0.5584371 +0.5385787 0.3767383 0.5584371 +0.5428591 0.3767383 0.5584371 +0.5469733 0.3767383 0.5584371 +0.5509339 0.3767383 0.5584371 +0.5547519 0.3767383 0.5584371 +0.5584371 0.3767383 0.5584371 +0.5619986 0.3767383 0.5584371 +0.5654443 0.3767383 0.5584371 +0.5687816 0.3767383 0.5584371 +0.092819 0.3951413 0.5584371 +0.2262531 0.3951413 0.5584371 +0.2875993 0.3951413 0.5584371 +0.3262122 0.3951413 0.5584371 +0.3544566 0.3951413 0.5584371 +0.3767383 0.3951413 0.5584371 +0.3951413 0.3951413 0.5584371 +0.4108177 0.3951413 0.5584371 +0.4244723 0.3951413 0.5584371 +0.4365675 0.3951413 0.5584371 +0.4474232 0.3951413 0.5584371 +0.45727 0.3951413 0.5584371 +0.4662797 0.3951413 0.5584371 +0.4745834 0.3951413 0.5584371 +0.4822838 0.3951413 0.5584371 +0.4894626 0.3951413 0.5584371 +0.4961862 0.3951413 0.5584371 +0.5025087 0.3951413 0.5584371 +0.5084753 0.3951413 0.5584371 +0.514124 0.3951413 0.5584371 +0.519487 0.3951413 0.5584371 +0.5245917 0.3951413 0.5584371 +0.529462 0.3951413 0.5584371 +0.5341183 0.3951413 0.5584371 +0.5385787 0.3951413 0.5584371 +0.5428591 0.3951413 0.5584371 +0.5469733 0.3951413 0.5584371 +0.5509339 0.3951413 0.5584371 +0.5547519 0.3951413 0.5584371 +0.5584371 0.3951413 0.5584371 +0.5619986 0.3951413 0.5584371 +0.5654443 0.3951413 0.5584371 +0.5687816 0.3951413 0.5584371 +0.092819 0.4108177 0.5584371 +0.2262531 0.4108177 0.5584371 +0.2875993 0.4108177 0.5584371 +0.3262122 0.4108177 0.5584371 +0.3544566 0.4108177 0.5584371 +0.3767383 0.4108177 0.5584371 +0.3951413 0.4108177 0.5584371 +0.4108177 0.4108177 0.5584371 +0.4244723 0.4108177 0.5584371 +0.4365675 0.4108177 0.5584371 +0.4474232 0.4108177 0.5584371 +0.45727 0.4108177 0.5584371 +0.4662797 0.4108177 0.5584371 +0.4745834 0.4108177 0.5584371 +0.4822838 0.4108177 0.5584371 +0.4894626 0.4108177 0.5584371 +0.4961862 0.4108177 0.5584371 +0.5025087 0.4108177 0.5584371 +0.5084753 0.4108177 0.5584371 +0.514124 0.4108177 0.5584371 +0.519487 0.4108177 0.5584371 +0.5245917 0.4108177 0.5584371 +0.529462 0.4108177 0.5584371 +0.5341183 0.4108177 0.5584371 +0.5385787 0.4108177 0.5584371 +0.5428591 0.4108177 0.5584371 +0.5469733 0.4108177 0.5584371 +0.5509339 0.4108177 0.5584371 +0.5547519 0.4108177 0.5584371 +0.5584371 0.4108177 0.5584371 +0.5619986 0.4108177 0.5584371 +0.5654443 0.4108177 0.5584371 +0.5687816 0.4108177 0.5584371 +0.092819 0.4244723 0.5584371 +0.2262531 0.4244723 0.5584371 +0.2875993 0.4244723 0.5584371 +0.3262122 0.4244723 0.5584371 +0.3544566 0.4244723 0.5584371 +0.3767383 0.4244723 0.5584371 +0.3951413 0.4244723 0.5584371 +0.4108177 0.4244723 0.5584371 +0.4244723 0.4244723 0.5584371 +0.4365675 0.4244723 0.5584371 +0.4474232 0.4244723 0.5584371 +0.45727 0.4244723 0.5584371 +0.4662797 0.4244723 0.5584371 +0.4745834 0.4244723 0.5584371 +0.4822838 0.4244723 0.5584371 +0.4894626 0.4244723 0.5584371 +0.4961862 0.4244723 0.5584371 +0.5025087 0.4244723 0.5584371 +0.5084753 0.4244723 0.5584371 +0.514124 0.4244723 0.5584371 +0.519487 0.4244723 0.5584371 +0.5245917 0.4244723 0.5584371 +0.529462 0.4244723 0.5584371 +0.5341183 0.4244723 0.5584371 +0.5385787 0.4244723 0.5584371 +0.5428591 0.4244723 0.5584371 +0.5469733 0.4244723 0.5584371 +0.5509339 0.4244723 0.5584371 +0.5547519 0.4244723 0.5584371 +0.5584371 0.4244723 0.5584371 +0.5619986 0.4244723 0.5584371 +0.5654443 0.4244723 0.5584371 +0.5687816 0.4244723 0.5584371 +0.092819 0.4365675 0.5584371 +0.2262531 0.4365675 0.5584371 +0.2875993 0.4365675 0.5584371 +0.3262122 0.4365675 0.5584371 +0.3544566 0.4365675 0.5584371 +0.3767383 0.4365675 0.5584371 +0.3951413 0.4365675 0.5584371 +0.4108177 0.4365675 0.5584371 +0.4244723 0.4365675 0.5584371 +0.4365675 0.4365675 0.5584371 +0.4474232 0.4365675 0.5584371 +0.45727 0.4365675 0.5584371 +0.4662797 0.4365675 0.5584371 +0.4745834 0.4365675 0.5584371 +0.4822838 0.4365675 0.5584371 +0.4894626 0.4365675 0.5584371 +0.4961862 0.4365675 0.5584371 +0.5025087 0.4365675 0.5584371 +0.5084753 0.4365675 0.5584371 +0.514124 0.4365675 0.5584371 +0.519487 0.4365675 0.5584371 +0.5245917 0.4365675 0.5584371 +0.529462 0.4365675 0.5584371 +0.5341183 0.4365675 0.5584371 +0.5385787 0.4365675 0.5584371 +0.5428591 0.4365675 0.5584371 +0.5469733 0.4365675 0.5584371 +0.5509339 0.4365675 0.5584371 +0.5547519 0.4365675 0.5584371 +0.5584371 0.4365675 0.5584371 +0.5619986 0.4365675 0.5584371 +0.5654443 0.4365675 0.5584371 +0.5687816 0.4365675 0.5584371 +0.092819 0.4474232 0.5584371 +0.2262531 0.4474232 0.5584371 +0.2875993 0.4474232 0.5584371 +0.3262122 0.4474232 0.5584371 +0.3544566 0.4474232 0.5584371 +0.3767383 0.4474232 0.5584371 +0.3951413 0.4474232 0.5584371 +0.4108177 0.4474232 0.5584371 +0.4244723 0.4474232 0.5584371 +0.4365675 0.4474232 0.5584371 +0.4474232 0.4474232 0.5584371 +0.45727 0.4474232 0.5584371 +0.4662797 0.4474232 0.5584371 +0.4745834 0.4474232 0.5584371 +0.4822838 0.4474232 0.5584371 +0.4894626 0.4474232 0.5584371 +0.4961862 0.4474232 0.5584371 +0.5025087 0.4474232 0.5584371 +0.5084753 0.4474232 0.5584371 +0.514124 0.4474232 0.5584371 +0.519487 0.4474232 0.5584371 +0.5245917 0.4474232 0.5584371 +0.529462 0.4474232 0.5584371 +0.5341183 0.4474232 0.5584371 +0.5385787 0.4474232 0.5584371 +0.5428591 0.4474232 0.5584371 +0.5469733 0.4474232 0.5584371 +0.5509339 0.4474232 0.5584371 +0.5547519 0.4474232 0.5584371 +0.5584371 0.4474232 0.5584371 +0.5619986 0.4474232 0.5584371 +0.5654443 0.4474232 0.5584371 +0.5687816 0.4474232 0.5584371 +0.092819 0.45727 0.5584371 +0.2262531 0.45727 0.5584371 +0.2875993 0.45727 0.5584371 +0.3262122 0.45727 0.5584371 +0.3544566 0.45727 0.5584371 +0.3767383 0.45727 0.5584371 +0.3951413 0.45727 0.5584371 +0.4108177 0.45727 0.5584371 +0.4244723 0.45727 0.5584371 +0.4365675 0.45727 0.5584371 +0.4474232 0.45727 0.5584371 +0.45727 0.45727 0.5584371 +0.4662797 0.45727 0.5584371 +0.4745834 0.45727 0.5584371 +0.4822838 0.45727 0.5584371 +0.4894626 0.45727 0.5584371 +0.4961862 0.45727 0.5584371 +0.5025087 0.45727 0.5584371 +0.5084753 0.45727 0.5584371 +0.514124 0.45727 0.5584371 +0.519487 0.45727 0.5584371 +0.5245917 0.45727 0.5584371 +0.529462 0.45727 0.5584371 +0.5341183 0.45727 0.5584371 +0.5385787 0.45727 0.5584371 +0.5428591 0.45727 0.5584371 +0.5469733 0.45727 0.5584371 +0.5509339 0.45727 0.5584371 +0.5547519 0.45727 0.5584371 +0.5584371 0.45727 0.5584371 +0.5619986 0.45727 0.5584371 +0.5654443 0.45727 0.5584371 +0.5687816 0.45727 0.5584371 +0.092819 0.4662797 0.5584371 +0.2262531 0.4662797 0.5584371 +0.2875993 0.4662797 0.5584371 +0.3262122 0.4662797 0.5584371 +0.3544566 0.4662797 0.5584371 +0.3767383 0.4662797 0.5584371 +0.3951413 0.4662797 0.5584371 +0.4108177 0.4662797 0.5584371 +0.4244723 0.4662797 0.5584371 +0.4365675 0.4662797 0.5584371 +0.4474232 0.4662797 0.5584371 +0.45727 0.4662797 0.5584371 +0.4662797 0.4662797 0.5584371 +0.4745834 0.4662797 0.5584371 +0.4822838 0.4662797 0.5584371 +0.4894626 0.4662797 0.5584371 +0.4961862 0.4662797 0.5584371 +0.5025087 0.4662797 0.5584371 +0.5084753 0.4662797 0.5584371 +0.514124 0.4662797 0.5584371 +0.519487 0.4662797 0.5584371 +0.5245917 0.4662797 0.5584371 +0.529462 0.4662797 0.5584371 +0.5341183 0.4662797 0.5584371 +0.5385787 0.4662797 0.5584371 +0.5428591 0.4662797 0.5584371 +0.5469733 0.4662797 0.5584371 +0.5509339 0.4662797 0.5584371 +0.5547519 0.4662797 0.5584371 +0.5584371 0.4662797 0.5584371 +0.5619986 0.4662797 0.5584371 +0.5654443 0.4662797 0.5584371 +0.5687816 0.4662797 0.5584371 +0.092819 0.4745834 0.5584371 +0.2262531 0.4745834 0.5584371 +0.2875993 0.4745834 0.5584371 +0.3262122 0.4745834 0.5584371 +0.3544566 0.4745834 0.5584371 +0.3767383 0.4745834 0.5584371 +0.3951413 0.4745834 0.5584371 +0.4108177 0.4745834 0.5584371 +0.4244723 0.4745834 0.5584371 +0.4365675 0.4745834 0.5584371 +0.4474232 0.4745834 0.5584371 +0.45727 0.4745834 0.5584371 +0.4662797 0.4745834 0.5584371 +0.4745834 0.4745834 0.5584371 +0.4822838 0.4745834 0.5584371 +0.4894626 0.4745834 0.5584371 +0.4961862 0.4745834 0.5584371 +0.5025087 0.4745834 0.5584371 +0.5084753 0.4745834 0.5584371 +0.514124 0.4745834 0.5584371 +0.519487 0.4745834 0.5584371 +0.5245917 0.4745834 0.5584371 +0.529462 0.4745834 0.5584371 +0.5341183 0.4745834 0.5584371 +0.5385787 0.4745834 0.5584371 +0.5428591 0.4745834 0.5584371 +0.5469733 0.4745834 0.5584371 +0.5509339 0.4745834 0.5584371 +0.5547519 0.4745834 0.5584371 +0.5584371 0.4745834 0.5584371 +0.5619986 0.4745834 0.5584371 +0.5654443 0.4745834 0.5584371 +0.5687816 0.4745834 0.5584371 +0.092819 0.4822838 0.5584371 +0.2262531 0.4822838 0.5584371 +0.2875993 0.4822838 0.5584371 +0.3262122 0.4822838 0.5584371 +0.3544566 0.4822838 0.5584371 +0.3767383 0.4822838 0.5584371 +0.3951413 0.4822838 0.5584371 +0.4108177 0.4822838 0.5584371 +0.4244723 0.4822838 0.5584371 +0.4365675 0.4822838 0.5584371 +0.4474232 0.4822838 0.5584371 +0.45727 0.4822838 0.5584371 +0.4662797 0.4822838 0.5584371 +0.4745834 0.4822838 0.5584371 +0.4822838 0.4822838 0.5584371 +0.4894626 0.4822838 0.5584371 +0.4961862 0.4822838 0.5584371 +0.5025087 0.4822838 0.5584371 +0.5084753 0.4822838 0.5584371 +0.514124 0.4822838 0.5584371 +0.519487 0.4822838 0.5584371 +0.5245917 0.4822838 0.5584371 +0.529462 0.4822838 0.5584371 +0.5341183 0.4822838 0.5584371 +0.5385787 0.4822838 0.5584371 +0.5428591 0.4822838 0.5584371 +0.5469733 0.4822838 0.5584371 +0.5509339 0.4822838 0.5584371 +0.5547519 0.4822838 0.5584371 +0.5584371 0.4822838 0.5584371 +0.5619986 0.4822838 0.5584371 +0.5654443 0.4822838 0.5584371 +0.5687816 0.4822838 0.5584371 +0.092819 0.4894626 0.5584371 +0.2262531 0.4894626 0.5584371 +0.2875993 0.4894626 0.5584371 +0.3262122 0.4894626 0.5584371 +0.3544566 0.4894626 0.5584371 +0.3767383 0.4894626 0.5584371 +0.3951413 0.4894626 0.5584371 +0.4108177 0.4894626 0.5584371 +0.4244723 0.4894626 0.5584371 +0.4365675 0.4894626 0.5584371 +0.4474232 0.4894626 0.5584371 +0.45727 0.4894626 0.5584371 +0.4662797 0.4894626 0.5584371 +0.4745834 0.4894626 0.5584371 +0.4822838 0.4894626 0.5584371 +0.4894626 0.4894626 0.5584371 +0.4961862 0.4894626 0.5584371 +0.5025087 0.4894626 0.5584371 +0.5084753 0.4894626 0.5584371 +0.514124 0.4894626 0.5584371 +0.519487 0.4894626 0.5584371 +0.5245917 0.4894626 0.5584371 +0.529462 0.4894626 0.5584371 +0.5341183 0.4894626 0.5584371 +0.5385787 0.4894626 0.5584371 +0.5428591 0.4894626 0.5584371 +0.5469733 0.4894626 0.5584371 +0.5509339 0.4894626 0.5584371 +0.5547519 0.4894626 0.5584371 +0.5584371 0.4894626 0.5584371 +0.5619986 0.4894626 0.5584371 +0.5654443 0.4894626 0.5584371 +0.5687816 0.4894626 0.5584371 +0.092819 0.4961862 0.5584371 +0.2262531 0.4961862 0.5584371 +0.2875993 0.4961862 0.5584371 +0.3262122 0.4961862 0.5584371 +0.3544566 0.4961862 0.5584371 +0.3767383 0.4961862 0.5584371 +0.3951413 0.4961862 0.5584371 +0.4108177 0.4961862 0.5584371 +0.4244723 0.4961862 0.5584371 +0.4365675 0.4961862 0.5584371 +0.4474232 0.4961862 0.5584371 +0.45727 0.4961862 0.5584371 +0.4662797 0.4961862 0.5584371 +0.4745834 0.4961862 0.5584371 +0.4822838 0.4961862 0.5584371 +0.4894626 0.4961862 0.5584371 +0.4961862 0.4961862 0.5584371 +0.5025087 0.4961862 0.5584371 +0.5084753 0.4961862 0.5584371 +0.514124 0.4961862 0.5584371 +0.519487 0.4961862 0.5584371 +0.5245917 0.4961862 0.5584371 +0.529462 0.4961862 0.5584371 +0.5341183 0.4961862 0.5584371 +0.5385787 0.4961862 0.5584371 +0.5428591 0.4961862 0.5584371 +0.5469733 0.4961862 0.5584371 +0.5509339 0.4961862 0.5584371 +0.5547519 0.4961862 0.5584371 +0.5584371 0.4961862 0.5584371 +0.5619986 0.4961862 0.5584371 +0.5654443 0.4961862 0.5584371 +0.5687816 0.4961862 0.5584371 +0.092819 0.5025087 0.5584371 +0.2262531 0.5025087 0.5584371 +0.2875993 0.5025087 0.5584371 +0.3262122 0.5025087 0.5584371 +0.3544566 0.5025087 0.5584371 +0.3767383 0.5025087 0.5584371 +0.3951413 0.5025087 0.5584371 +0.4108177 0.5025087 0.5584371 +0.4244723 0.5025087 0.5584371 +0.4365675 0.5025087 0.5584371 +0.4474232 0.5025087 0.5584371 +0.45727 0.5025087 0.5584371 +0.4662797 0.5025087 0.5584371 +0.4745834 0.5025087 0.5584371 +0.4822838 0.5025087 0.5584371 +0.4894626 0.5025087 0.5584371 +0.4961862 0.5025087 0.5584371 +0.5025087 0.5025087 0.5584371 +0.5084753 0.5025087 0.5584371 +0.514124 0.5025087 0.5584371 +0.519487 0.5025087 0.5584371 +0.5245917 0.5025087 0.5584371 +0.529462 0.5025087 0.5584371 +0.5341183 0.5025087 0.5584371 +0.5385787 0.5025087 0.5584371 +0.5428591 0.5025087 0.5584371 +0.5469733 0.5025087 0.5584371 +0.5509339 0.5025087 0.5584371 +0.5547519 0.5025087 0.5584371 +0.5584371 0.5025087 0.5584371 +0.5619986 0.5025087 0.5584371 +0.5654443 0.5025087 0.5584371 +0.5687816 0.5025087 0.5584371 +0.092819 0.5084753 0.5584371 +0.2262531 0.5084753 0.5584371 +0.2875993 0.5084753 0.5584371 +0.3262122 0.5084753 0.5584371 +0.3544566 0.5084753 0.5584371 +0.3767383 0.5084753 0.5584371 +0.3951413 0.5084753 0.5584371 +0.4108177 0.5084753 0.5584371 +0.4244723 0.5084753 0.5584371 +0.4365675 0.5084753 0.5584371 +0.4474232 0.5084753 0.5584371 +0.45727 0.5084753 0.5584371 +0.4662797 0.5084753 0.5584371 +0.4745834 0.5084753 0.5584371 +0.4822838 0.5084753 0.5584371 +0.4894626 0.5084753 0.5584371 +0.4961862 0.5084753 0.5584371 +0.5025087 0.5084753 0.5584371 +0.5084753 0.5084753 0.5584371 +0.514124 0.5084753 0.5584371 +0.519487 0.5084753 0.5584371 +0.5245917 0.5084753 0.5584371 +0.529462 0.5084753 0.5584371 +0.5341183 0.5084753 0.5584371 +0.5385787 0.5084753 0.5584371 +0.5428591 0.5084753 0.5584371 +0.5469733 0.5084753 0.5584371 +0.5509339 0.5084753 0.5584371 +0.5547519 0.5084753 0.5584371 +0.5584371 0.5084753 0.5584371 +0.5619986 0.5084753 0.5584371 +0.5654443 0.5084753 0.5584371 +0.5687816 0.5084753 0.5584371 +0.092819 0.514124 0.5584371 +0.2262531 0.514124 0.5584371 +0.2875993 0.514124 0.5584371 +0.3262122 0.514124 0.5584371 +0.3544566 0.514124 0.5584371 +0.3767383 0.514124 0.5584371 +0.3951413 0.514124 0.5584371 +0.4108177 0.514124 0.5584371 +0.4244723 0.514124 0.5584371 +0.4365675 0.514124 0.5584371 +0.4474232 0.514124 0.5584371 +0.45727 0.514124 0.5584371 +0.4662797 0.514124 0.5584371 +0.4745834 0.514124 0.5584371 +0.4822838 0.514124 0.5584371 +0.4894626 0.514124 0.5584371 +0.4961862 0.514124 0.5584371 +0.5025087 0.514124 0.5584371 +0.5084753 0.514124 0.5584371 +0.514124 0.514124 0.5584371 +0.519487 0.514124 0.5584371 +0.5245917 0.514124 0.5584371 +0.529462 0.514124 0.5584371 +0.5341183 0.514124 0.5584371 +0.5385787 0.514124 0.5584371 +0.5428591 0.514124 0.5584371 +0.5469733 0.514124 0.5584371 +0.5509339 0.514124 0.5584371 +0.5547519 0.514124 0.5584371 +0.5584371 0.514124 0.5584371 +0.5619986 0.514124 0.5584371 +0.5654443 0.514124 0.5584371 +0.5687816 0.514124 0.5584371 +0.092819 0.519487 0.5584371 +0.2262531 0.519487 0.5584371 +0.2875993 0.519487 0.5584371 +0.3262122 0.519487 0.5584371 +0.3544566 0.519487 0.5584371 +0.3767383 0.519487 0.5584371 +0.3951413 0.519487 0.5584371 +0.4108177 0.519487 0.5584371 +0.4244723 0.519487 0.5584371 +0.4365675 0.519487 0.5584371 +0.4474232 0.519487 0.5584371 +0.45727 0.519487 0.5584371 +0.4662797 0.519487 0.5584371 +0.4745834 0.519487 0.5584371 +0.4822838 0.519487 0.5584371 +0.4894626 0.519487 0.5584371 +0.4961862 0.519487 0.5584371 +0.5025087 0.519487 0.5584371 +0.5084753 0.519487 0.5584371 +0.514124 0.519487 0.5584371 +0.519487 0.519487 0.5584371 +0.5245917 0.519487 0.5584371 +0.529462 0.519487 0.5584371 +0.5341183 0.519487 0.5584371 +0.5385787 0.519487 0.5584371 +0.5428591 0.519487 0.5584371 +0.5469733 0.519487 0.5584371 +0.5509339 0.519487 0.5584371 +0.5547519 0.519487 0.5584371 +0.5584371 0.519487 0.5584371 +0.5619986 0.519487 0.5584371 +0.5654443 0.519487 0.5584371 +0.5687816 0.519487 0.5584371 +0.092819 0.5245917 0.5584371 +0.2262531 0.5245917 0.5584371 +0.2875993 0.5245917 0.5584371 +0.3262122 0.5245917 0.5584371 +0.3544566 0.5245917 0.5584371 +0.3767383 0.5245917 0.5584371 +0.3951413 0.5245917 0.5584371 +0.4108177 0.5245917 0.5584371 +0.4244723 0.5245917 0.5584371 +0.4365675 0.5245917 0.5584371 +0.4474232 0.5245917 0.5584371 +0.45727 0.5245917 0.5584371 +0.4662797 0.5245917 0.5584371 +0.4745834 0.5245917 0.5584371 +0.4822838 0.5245917 0.5584371 +0.4894626 0.5245917 0.5584371 +0.4961862 0.5245917 0.5584371 +0.5025087 0.5245917 0.5584371 +0.5084753 0.5245917 0.5584371 +0.514124 0.5245917 0.5584371 +0.519487 0.5245917 0.5584371 +0.5245917 0.5245917 0.5584371 +0.529462 0.5245917 0.5584371 +0.5341183 0.5245917 0.5584371 +0.5385787 0.5245917 0.5584371 +0.5428591 0.5245917 0.5584371 +0.5469733 0.5245917 0.5584371 +0.5509339 0.5245917 0.5584371 +0.5547519 0.5245917 0.5584371 +0.5584371 0.5245917 0.5584371 +0.5619986 0.5245917 0.5584371 +0.5654443 0.5245917 0.5584371 +0.5687816 0.5245917 0.5584371 +0.092819 0.529462 0.5584371 +0.2262531 0.529462 0.5584371 +0.2875993 0.529462 0.5584371 +0.3262122 0.529462 0.5584371 +0.3544566 0.529462 0.5584371 +0.3767383 0.529462 0.5584371 +0.3951413 0.529462 0.5584371 +0.4108177 0.529462 0.5584371 +0.4244723 0.529462 0.5584371 +0.4365675 0.529462 0.5584371 +0.4474232 0.529462 0.5584371 +0.45727 0.529462 0.5584371 +0.4662797 0.529462 0.5584371 +0.4745834 0.529462 0.5584371 +0.4822838 0.529462 0.5584371 +0.4894626 0.529462 0.5584371 +0.4961862 0.529462 0.5584371 +0.5025087 0.529462 0.5584371 +0.5084753 0.529462 0.5584371 +0.514124 0.529462 0.5584371 +0.519487 0.529462 0.5584371 +0.5245917 0.529462 0.5584371 +0.529462 0.529462 0.5584371 +0.5341183 0.529462 0.5584371 +0.5385787 0.529462 0.5584371 +0.5428591 0.529462 0.5584371 +0.5469733 0.529462 0.5584371 +0.5509339 0.529462 0.5584371 +0.5547519 0.529462 0.5584371 +0.5584371 0.529462 0.5584371 +0.5619986 0.529462 0.5584371 +0.5654443 0.529462 0.5584371 +0.5687816 0.529462 0.5584371 +0.092819 0.5341183 0.5584371 +0.2262531 0.5341183 0.5584371 +0.2875993 0.5341183 0.5584371 +0.3262122 0.5341183 0.5584371 +0.3544566 0.5341183 0.5584371 +0.3767383 0.5341183 0.5584371 +0.3951413 0.5341183 0.5584371 +0.4108177 0.5341183 0.5584371 +0.4244723 0.5341183 0.5584371 +0.4365675 0.5341183 0.5584371 +0.4474232 0.5341183 0.5584371 +0.45727 0.5341183 0.5584371 +0.4662797 0.5341183 0.5584371 +0.4745834 0.5341183 0.5584371 +0.4822838 0.5341183 0.5584371 +0.4894626 0.5341183 0.5584371 +0.4961862 0.5341183 0.5584371 +0.5025087 0.5341183 0.5584371 +0.5084753 0.5341183 0.5584371 +0.514124 0.5341183 0.5584371 +0.519487 0.5341183 0.5584371 +0.5245917 0.5341183 0.5584371 +0.529462 0.5341183 0.5584371 +0.5341183 0.5341183 0.5584371 +0.5385787 0.5341183 0.5584371 +0.5428591 0.5341183 0.5584371 +0.5469733 0.5341183 0.5584371 +0.5509339 0.5341183 0.5584371 +0.5547519 0.5341183 0.5584371 +0.5584371 0.5341183 0.5584371 +0.5619986 0.5341183 0.5584371 +0.5654443 0.5341183 0.5584371 +0.5687816 0.5341183 0.5584371 +0.092819 0.5385787 0.5584371 +0.2262531 0.5385787 0.5584371 +0.2875993 0.5385787 0.5584371 +0.3262122 0.5385787 0.5584371 +0.3544566 0.5385787 0.5584371 +0.3767383 0.5385787 0.5584371 +0.3951413 0.5385787 0.5584371 +0.4108177 0.5385787 0.5584371 +0.4244723 0.5385787 0.5584371 +0.4365675 0.5385787 0.5584371 +0.4474232 0.5385787 0.5584371 +0.45727 0.5385787 0.5584371 +0.4662797 0.5385787 0.5584371 +0.4745834 0.5385787 0.5584371 +0.4822838 0.5385787 0.5584371 +0.4894626 0.5385787 0.5584371 +0.4961862 0.5385787 0.5584371 +0.5025087 0.5385787 0.5584371 +0.5084753 0.5385787 0.5584371 +0.514124 0.5385787 0.5584371 +0.519487 0.5385787 0.5584371 +0.5245917 0.5385787 0.5584371 +0.529462 0.5385787 0.5584371 +0.5341183 0.5385787 0.5584371 +0.5385787 0.5385787 0.5584371 +0.5428591 0.5385787 0.5584371 +0.5469733 0.5385787 0.5584371 +0.5509339 0.5385787 0.5584371 +0.5547519 0.5385787 0.5584371 +0.5584371 0.5385787 0.5584371 +0.5619986 0.5385787 0.5584371 +0.5654443 0.5385787 0.5584371 +0.5687816 0.5385787 0.5584371 +0.092819 0.5428591 0.5584371 +0.2262531 0.5428591 0.5584371 +0.2875993 0.5428591 0.5584371 +0.3262122 0.5428591 0.5584371 +0.3544566 0.5428591 0.5584371 +0.3767383 0.5428591 0.5584371 +0.3951413 0.5428591 0.5584371 +0.4108177 0.5428591 0.5584371 +0.4244723 0.5428591 0.5584371 +0.4365675 0.5428591 0.5584371 +0.4474232 0.5428591 0.5584371 +0.45727 0.5428591 0.5584371 +0.4662797 0.5428591 0.5584371 +0.4745834 0.5428591 0.5584371 +0.4822838 0.5428591 0.5584371 +0.4894626 0.5428591 0.5584371 +0.4961862 0.5428591 0.5584371 +0.5025087 0.5428591 0.5584371 +0.5084753 0.5428591 0.5584371 +0.514124 0.5428591 0.5584371 +0.519487 0.5428591 0.5584371 +0.5245917 0.5428591 0.5584371 +0.529462 0.5428591 0.5584371 +0.5341183 0.5428591 0.5584371 +0.5385787 0.5428591 0.5584371 +0.5428591 0.5428591 0.5584371 +0.5469733 0.5428591 0.5584371 +0.5509339 0.5428591 0.5584371 +0.5547519 0.5428591 0.5584371 +0.5584371 0.5428591 0.5584371 +0.5619986 0.5428591 0.5584371 +0.5654443 0.5428591 0.5584371 +0.5687816 0.5428591 0.5584371 +0.092819 0.5469733 0.5584371 +0.2262531 0.5469733 0.5584371 +0.2875993 0.5469733 0.5584371 +0.3262122 0.5469733 0.5584371 +0.3544566 0.5469733 0.5584371 +0.3767383 0.5469733 0.5584371 +0.3951413 0.5469733 0.5584371 +0.4108177 0.5469733 0.5584371 +0.4244723 0.5469733 0.5584371 +0.4365675 0.5469733 0.5584371 +0.4474232 0.5469733 0.5584371 +0.45727 0.5469733 0.5584371 +0.4662797 0.5469733 0.5584371 +0.4745834 0.5469733 0.5584371 +0.4822838 0.5469733 0.5584371 +0.4894626 0.5469733 0.5584371 +0.4961862 0.5469733 0.5584371 +0.5025087 0.5469733 0.5584371 +0.5084753 0.5469733 0.5584371 +0.514124 0.5469733 0.5584371 +0.519487 0.5469733 0.5584371 +0.5245917 0.5469733 0.5584371 +0.529462 0.5469733 0.5584371 +0.5341183 0.5469733 0.5584371 +0.5385787 0.5469733 0.5584371 +0.5428591 0.5469733 0.5584371 +0.5469733 0.5469733 0.5584371 +0.5509339 0.5469733 0.5584371 +0.5547519 0.5469733 0.5584371 +0.5584371 0.5469733 0.5584371 +0.5619986 0.5469733 0.5584371 +0.5654443 0.5469733 0.5584371 +0.5687816 0.5469733 0.5584371 +0.092819 0.5509339 0.5584371 +0.2262531 0.5509339 0.5584371 +0.2875993 0.5509339 0.5584371 +0.3262122 0.5509339 0.5584371 +0.3544566 0.5509339 0.5584371 +0.3767383 0.5509339 0.5584371 +0.3951413 0.5509339 0.5584371 +0.4108177 0.5509339 0.5584371 +0.4244723 0.5509339 0.5584371 +0.4365675 0.5509339 0.5584371 +0.4474232 0.5509339 0.5584371 +0.45727 0.5509339 0.5584371 +0.4662797 0.5509339 0.5584371 +0.4745834 0.5509339 0.5584371 +0.4822838 0.5509339 0.5584371 +0.4894626 0.5509339 0.5584371 +0.4961862 0.5509339 0.5584371 +0.5025087 0.5509339 0.5584371 +0.5084753 0.5509339 0.5584371 +0.514124 0.5509339 0.5584371 +0.519487 0.5509339 0.5584371 +0.5245917 0.5509339 0.5584371 +0.529462 0.5509339 0.5584371 +0.5341183 0.5509339 0.5584371 +0.5385787 0.5509339 0.5584371 +0.5428591 0.5509339 0.5584371 +0.5469733 0.5509339 0.5584371 +0.5509339 0.5509339 0.5584371 +0.5547519 0.5509339 0.5584371 +0.5584371 0.5509339 0.5584371 +0.5619986 0.5509339 0.5584371 +0.5654443 0.5509339 0.5584371 +0.5687816 0.5509339 0.5584371 +0.092819 0.5547519 0.5584371 +0.2262531 0.5547519 0.5584371 +0.2875993 0.5547519 0.5584371 +0.3262122 0.5547519 0.5584371 +0.3544566 0.5547519 0.5584371 +0.3767383 0.5547519 0.5584371 +0.3951413 0.5547519 0.5584371 +0.4108177 0.5547519 0.5584371 +0.4244723 0.5547519 0.5584371 +0.4365675 0.5547519 0.5584371 +0.4474232 0.5547519 0.5584371 +0.45727 0.5547519 0.5584371 +0.4662797 0.5547519 0.5584371 +0.4745834 0.5547519 0.5584371 +0.4822838 0.5547519 0.5584371 +0.4894626 0.5547519 0.5584371 +0.4961862 0.5547519 0.5584371 +0.5025087 0.5547519 0.5584371 +0.5084753 0.5547519 0.5584371 +0.514124 0.5547519 0.5584371 +0.519487 0.5547519 0.5584371 +0.5245917 0.5547519 0.5584371 +0.529462 0.5547519 0.5584371 +0.5341183 0.5547519 0.5584371 +0.5385787 0.5547519 0.5584371 +0.5428591 0.5547519 0.5584371 +0.5469733 0.5547519 0.5584371 +0.5509339 0.5547519 0.5584371 +0.5547519 0.5547519 0.5584371 +0.5584371 0.5547519 0.5584371 +0.5619986 0.5547519 0.5584371 +0.5654443 0.5547519 0.5584371 +0.5687816 0.5547519 0.5584371 +0.092819 0.5584371 0.5584371 +0.2262531 0.5584371 0.5584371 +0.2875993 0.5584371 0.5584371 +0.3262122 0.5584371 0.5584371 +0.3544566 0.5584371 0.5584371 +0.3767383 0.5584371 0.5584371 +0.3951413 0.5584371 0.5584371 +0.4108177 0.5584371 0.5584371 +0.4244723 0.5584371 0.5584371 +0.4365675 0.5584371 0.5584371 +0.4474232 0.5584371 0.5584371 +0.45727 0.5584371 0.5584371 +0.4662797 0.5584371 0.5584371 +0.4745834 0.5584371 0.5584371 +0.4822838 0.5584371 0.5584371 +0.4894626 0.5584371 0.5584371 +0.4961862 0.5584371 0.5584371 +0.5025087 0.5584371 0.5584371 +0.5084753 0.5584371 0.5584371 +0.514124 0.5584371 0.5584371 +0.519487 0.5584371 0.5584371 +0.5245917 0.5584371 0.5584371 +0.529462 0.5584371 0.5584371 +0.5341183 0.5584371 0.5584371 +0.5385787 0.5584371 0.5584371 +0.5428591 0.5584371 0.5584371 +0.5469733 0.5584371 0.5584371 +0.5509339 0.5584371 0.5584371 +0.5547519 0.5584371 0.5584371 +0.5584371 0.5584371 0.5584371 +0.5619986 0.5584371 0.5584371 +0.5654443 0.5584371 0.5584371 +0.5687816 0.5584371 0.5584371 +0.092819 0.5619986 0.5584371 +0.2262531 0.5619986 0.5584371 +0.2875993 0.5619986 0.5584371 +0.3262122 0.5619986 0.5584371 +0.3544566 0.5619986 0.5584371 +0.3767383 0.5619986 0.5584371 +0.3951413 0.5619986 0.5584371 +0.4108177 0.5619986 0.5584371 +0.4244723 0.5619986 0.5584371 +0.4365675 0.5619986 0.5584371 +0.4474232 0.5619986 0.5584371 +0.45727 0.5619986 0.5584371 +0.4662797 0.5619986 0.5584371 +0.4745834 0.5619986 0.5584371 +0.4822838 0.5619986 0.5584371 +0.4894626 0.5619986 0.5584371 +0.4961862 0.5619986 0.5584371 +0.5025087 0.5619986 0.5584371 +0.5084753 0.5619986 0.5584371 +0.514124 0.5619986 0.5584371 +0.519487 0.5619986 0.5584371 +0.5245917 0.5619986 0.5584371 +0.529462 0.5619986 0.5584371 +0.5341183 0.5619986 0.5584371 +0.5385787 0.5619986 0.5584371 +0.5428591 0.5619986 0.5584371 +0.5469733 0.5619986 0.5584371 +0.5509339 0.5619986 0.5584371 +0.5547519 0.5619986 0.5584371 +0.5584371 0.5619986 0.5584371 +0.5619986 0.5619986 0.5584371 +0.5654443 0.5619986 0.5584371 +0.5687816 0.5619986 0.5584371 +0.092819 0.5654443 0.5584371 +0.2262531 0.5654443 0.5584371 +0.2875993 0.5654443 0.5584371 +0.3262122 0.5654443 0.5584371 +0.3544566 0.5654443 0.5584371 +0.3767383 0.5654443 0.5584371 +0.3951413 0.5654443 0.5584371 +0.4108177 0.5654443 0.5584371 +0.4244723 0.5654443 0.5584371 +0.4365675 0.5654443 0.5584371 +0.4474232 0.5654443 0.5584371 +0.45727 0.5654443 0.5584371 +0.4662797 0.5654443 0.5584371 +0.4745834 0.5654443 0.5584371 +0.4822838 0.5654443 0.5584371 +0.4894626 0.5654443 0.5584371 +0.4961862 0.5654443 0.5584371 +0.5025087 0.5654443 0.5584371 +0.5084753 0.5654443 0.5584371 +0.514124 0.5654443 0.5584371 +0.519487 0.5654443 0.5584371 +0.5245917 0.5654443 0.5584371 +0.529462 0.5654443 0.5584371 +0.5341183 0.5654443 0.5584371 +0.5385787 0.5654443 0.5584371 +0.5428591 0.5654443 0.5584371 +0.5469733 0.5654443 0.5584371 +0.5509339 0.5654443 0.5584371 +0.5547519 0.5654443 0.5584371 +0.5584371 0.5654443 0.5584371 +0.5619986 0.5654443 0.5584371 +0.5654443 0.5654443 0.5584371 +0.5687816 0.5654443 0.5584371 +0.092819 0.5687816 0.5584371 +0.2262531 0.5687816 0.5584371 +0.2875993 0.5687816 0.5584371 +0.3262122 0.5687816 0.5584371 +0.3544566 0.5687816 0.5584371 +0.3767383 0.5687816 0.5584371 +0.3951413 0.5687816 0.5584371 +0.4108177 0.5687816 0.5584371 +0.4244723 0.5687816 0.5584371 +0.4365675 0.5687816 0.5584371 +0.4474232 0.5687816 0.5584371 +0.45727 0.5687816 0.5584371 +0.4662797 0.5687816 0.5584371 +0.4745834 0.5687816 0.5584371 +0.4822838 0.5687816 0.5584371 +0.4894626 0.5687816 0.5584371 +0.4961862 0.5687816 0.5584371 +0.5025087 0.5687816 0.5584371 +0.5084753 0.5687816 0.5584371 +0.514124 0.5687816 0.5584371 +0.519487 0.5687816 0.5584371 +0.5245917 0.5687816 0.5584371 +0.529462 0.5687816 0.5584371 +0.5341183 0.5687816 0.5584371 +0.5385787 0.5687816 0.5584371 +0.5428591 0.5687816 0.5584371 +0.5469733 0.5687816 0.5584371 +0.5509339 0.5687816 0.5584371 +0.5547519 0.5687816 0.5584371 +0.5584371 0.5687816 0.5584371 +0.5619986 0.5687816 0.5584371 +0.5654443 0.5687816 0.5584371 +0.5687816 0.5687816 0.5584371 +0.092819 0.092819 0.5619986 +0.2262531 0.092819 0.5619986 +0.2875993 0.092819 0.5619986 +0.3262122 0.092819 0.5619986 +0.3544566 0.092819 0.5619986 +0.3767383 0.092819 0.5619986 +0.3951413 0.092819 0.5619986 +0.4108177 0.092819 0.5619986 +0.4244723 0.092819 0.5619986 +0.4365675 0.092819 0.5619986 +0.4474232 0.092819 0.5619986 +0.45727 0.092819 0.5619986 +0.4662797 0.092819 0.5619986 +0.4745834 0.092819 0.5619986 +0.4822838 0.092819 0.5619986 +0.4894626 0.092819 0.5619986 +0.4961862 0.092819 0.5619986 +0.5025087 0.092819 0.5619986 +0.5084753 0.092819 0.5619986 +0.514124 0.092819 0.5619986 +0.519487 0.092819 0.5619986 +0.5245917 0.092819 0.5619986 +0.529462 0.092819 0.5619986 +0.5341183 0.092819 0.5619986 +0.5385787 0.092819 0.5619986 +0.5428591 0.092819 0.5619986 +0.5469733 0.092819 0.5619986 +0.5509339 0.092819 0.5619986 +0.5547519 0.092819 0.5619986 +0.5584371 0.092819 0.5619986 +0.5619986 0.092819 0.5619986 +0.5654443 0.092819 0.5619986 +0.5687816 0.092819 0.5619986 +0.092819 0.2262531 0.5619986 +0.2262531 0.2262531 0.5619986 +0.2875993 0.2262531 0.5619986 +0.3262122 0.2262531 0.5619986 +0.3544566 0.2262531 0.5619986 +0.3767383 0.2262531 0.5619986 +0.3951413 0.2262531 0.5619986 +0.4108177 0.2262531 0.5619986 +0.4244723 0.2262531 0.5619986 +0.4365675 0.2262531 0.5619986 +0.4474232 0.2262531 0.5619986 +0.45727 0.2262531 0.5619986 +0.4662797 0.2262531 0.5619986 +0.4745834 0.2262531 0.5619986 +0.4822838 0.2262531 0.5619986 +0.4894626 0.2262531 0.5619986 +0.4961862 0.2262531 0.5619986 +0.5025087 0.2262531 0.5619986 +0.5084753 0.2262531 0.5619986 +0.514124 0.2262531 0.5619986 +0.519487 0.2262531 0.5619986 +0.5245917 0.2262531 0.5619986 +0.529462 0.2262531 0.5619986 +0.5341183 0.2262531 0.5619986 +0.5385787 0.2262531 0.5619986 +0.5428591 0.2262531 0.5619986 +0.5469733 0.2262531 0.5619986 +0.5509339 0.2262531 0.5619986 +0.5547519 0.2262531 0.5619986 +0.5584371 0.2262531 0.5619986 +0.5619986 0.2262531 0.5619986 +0.5654443 0.2262531 0.5619986 +0.5687816 0.2262531 0.5619986 +0.092819 0.2875993 0.5619986 +0.2262531 0.2875993 0.5619986 +0.2875993 0.2875993 0.5619986 +0.3262122 0.2875993 0.5619986 +0.3544566 0.2875993 0.5619986 +0.3767383 0.2875993 0.5619986 +0.3951413 0.2875993 0.5619986 +0.4108177 0.2875993 0.5619986 +0.4244723 0.2875993 0.5619986 +0.4365675 0.2875993 0.5619986 +0.4474232 0.2875993 0.5619986 +0.45727 0.2875993 0.5619986 +0.4662797 0.2875993 0.5619986 +0.4745834 0.2875993 0.5619986 +0.4822838 0.2875993 0.5619986 +0.4894626 0.2875993 0.5619986 +0.4961862 0.2875993 0.5619986 +0.5025087 0.2875993 0.5619986 +0.5084753 0.2875993 0.5619986 +0.514124 0.2875993 0.5619986 +0.519487 0.2875993 0.5619986 +0.5245917 0.2875993 0.5619986 +0.529462 0.2875993 0.5619986 +0.5341183 0.2875993 0.5619986 +0.5385787 0.2875993 0.5619986 +0.5428591 0.2875993 0.5619986 +0.5469733 0.2875993 0.5619986 +0.5509339 0.2875993 0.5619986 +0.5547519 0.2875993 0.5619986 +0.5584371 0.2875993 0.5619986 +0.5619986 0.2875993 0.5619986 +0.5654443 0.2875993 0.5619986 +0.5687816 0.2875993 0.5619986 +0.092819 0.3262122 0.5619986 +0.2262531 0.3262122 0.5619986 +0.2875993 0.3262122 0.5619986 +0.3262122 0.3262122 0.5619986 +0.3544566 0.3262122 0.5619986 +0.3767383 0.3262122 0.5619986 +0.3951413 0.3262122 0.5619986 +0.4108177 0.3262122 0.5619986 +0.4244723 0.3262122 0.5619986 +0.4365675 0.3262122 0.5619986 +0.4474232 0.3262122 0.5619986 +0.45727 0.3262122 0.5619986 +0.4662797 0.3262122 0.5619986 +0.4745834 0.3262122 0.5619986 +0.4822838 0.3262122 0.5619986 +0.4894626 0.3262122 0.5619986 +0.4961862 0.3262122 0.5619986 +0.5025087 0.3262122 0.5619986 +0.5084753 0.3262122 0.5619986 +0.514124 0.3262122 0.5619986 +0.519487 0.3262122 0.5619986 +0.5245917 0.3262122 0.5619986 +0.529462 0.3262122 0.5619986 +0.5341183 0.3262122 0.5619986 +0.5385787 0.3262122 0.5619986 +0.5428591 0.3262122 0.5619986 +0.5469733 0.3262122 0.5619986 +0.5509339 0.3262122 0.5619986 +0.5547519 0.3262122 0.5619986 +0.5584371 0.3262122 0.5619986 +0.5619986 0.3262122 0.5619986 +0.5654443 0.3262122 0.5619986 +0.5687816 0.3262122 0.5619986 +0.092819 0.3544566 0.5619986 +0.2262531 0.3544566 0.5619986 +0.2875993 0.3544566 0.5619986 +0.3262122 0.3544566 0.5619986 +0.3544566 0.3544566 0.5619986 +0.3767383 0.3544566 0.5619986 +0.3951413 0.3544566 0.5619986 +0.4108177 0.3544566 0.5619986 +0.4244723 0.3544566 0.5619986 +0.4365675 0.3544566 0.5619986 +0.4474232 0.3544566 0.5619986 +0.45727 0.3544566 0.5619986 +0.4662797 0.3544566 0.5619986 +0.4745834 0.3544566 0.5619986 +0.4822838 0.3544566 0.5619986 +0.4894626 0.3544566 0.5619986 +0.4961862 0.3544566 0.5619986 +0.5025087 0.3544566 0.5619986 +0.5084753 0.3544566 0.5619986 +0.514124 0.3544566 0.5619986 +0.519487 0.3544566 0.5619986 +0.5245917 0.3544566 0.5619986 +0.529462 0.3544566 0.5619986 +0.5341183 0.3544566 0.5619986 +0.5385787 0.3544566 0.5619986 +0.5428591 0.3544566 0.5619986 +0.5469733 0.3544566 0.5619986 +0.5509339 0.3544566 0.5619986 +0.5547519 0.3544566 0.5619986 +0.5584371 0.3544566 0.5619986 +0.5619986 0.3544566 0.5619986 +0.5654443 0.3544566 0.5619986 +0.5687816 0.3544566 0.5619986 +0.092819 0.3767383 0.5619986 +0.2262531 0.3767383 0.5619986 +0.2875993 0.3767383 0.5619986 +0.3262122 0.3767383 0.5619986 +0.3544566 0.3767383 0.5619986 +0.3767383 0.3767383 0.5619986 +0.3951413 0.3767383 0.5619986 +0.4108177 0.3767383 0.5619986 +0.4244723 0.3767383 0.5619986 +0.4365675 0.3767383 0.5619986 +0.4474232 0.3767383 0.5619986 +0.45727 0.3767383 0.5619986 +0.4662797 0.3767383 0.5619986 +0.4745834 0.3767383 0.5619986 +0.4822838 0.3767383 0.5619986 +0.4894626 0.3767383 0.5619986 +0.4961862 0.3767383 0.5619986 +0.5025087 0.3767383 0.5619986 +0.5084753 0.3767383 0.5619986 +0.514124 0.3767383 0.5619986 +0.519487 0.3767383 0.5619986 +0.5245917 0.3767383 0.5619986 +0.529462 0.3767383 0.5619986 +0.5341183 0.3767383 0.5619986 +0.5385787 0.3767383 0.5619986 +0.5428591 0.3767383 0.5619986 +0.5469733 0.3767383 0.5619986 +0.5509339 0.3767383 0.5619986 +0.5547519 0.3767383 0.5619986 +0.5584371 0.3767383 0.5619986 +0.5619986 0.3767383 0.5619986 +0.5654443 0.3767383 0.5619986 +0.5687816 0.3767383 0.5619986 +0.092819 0.3951413 0.5619986 +0.2262531 0.3951413 0.5619986 +0.2875993 0.3951413 0.5619986 +0.3262122 0.3951413 0.5619986 +0.3544566 0.3951413 0.5619986 +0.3767383 0.3951413 0.5619986 +0.3951413 0.3951413 0.5619986 +0.4108177 0.3951413 0.5619986 +0.4244723 0.3951413 0.5619986 +0.4365675 0.3951413 0.5619986 +0.4474232 0.3951413 0.5619986 +0.45727 0.3951413 0.5619986 +0.4662797 0.3951413 0.5619986 +0.4745834 0.3951413 0.5619986 +0.4822838 0.3951413 0.5619986 +0.4894626 0.3951413 0.5619986 +0.4961862 0.3951413 0.5619986 +0.5025087 0.3951413 0.5619986 +0.5084753 0.3951413 0.5619986 +0.514124 0.3951413 0.5619986 +0.519487 0.3951413 0.5619986 +0.5245917 0.3951413 0.5619986 +0.529462 0.3951413 0.5619986 +0.5341183 0.3951413 0.5619986 +0.5385787 0.3951413 0.5619986 +0.5428591 0.3951413 0.5619986 +0.5469733 0.3951413 0.5619986 +0.5509339 0.3951413 0.5619986 +0.5547519 0.3951413 0.5619986 +0.5584371 0.3951413 0.5619986 +0.5619986 0.3951413 0.5619986 +0.5654443 0.3951413 0.5619986 +0.5687816 0.3951413 0.5619986 +0.092819 0.4108177 0.5619986 +0.2262531 0.4108177 0.5619986 +0.2875993 0.4108177 0.5619986 +0.3262122 0.4108177 0.5619986 +0.3544566 0.4108177 0.5619986 +0.3767383 0.4108177 0.5619986 +0.3951413 0.4108177 0.5619986 +0.4108177 0.4108177 0.5619986 +0.4244723 0.4108177 0.5619986 +0.4365675 0.4108177 0.5619986 +0.4474232 0.4108177 0.5619986 +0.45727 0.4108177 0.5619986 +0.4662797 0.4108177 0.5619986 +0.4745834 0.4108177 0.5619986 +0.4822838 0.4108177 0.5619986 +0.4894626 0.4108177 0.5619986 +0.4961862 0.4108177 0.5619986 +0.5025087 0.4108177 0.5619986 +0.5084753 0.4108177 0.5619986 +0.514124 0.4108177 0.5619986 +0.519487 0.4108177 0.5619986 +0.5245917 0.4108177 0.5619986 +0.529462 0.4108177 0.5619986 +0.5341183 0.4108177 0.5619986 +0.5385787 0.4108177 0.5619986 +0.5428591 0.4108177 0.5619986 +0.5469733 0.4108177 0.5619986 +0.5509339 0.4108177 0.5619986 +0.5547519 0.4108177 0.5619986 +0.5584371 0.4108177 0.5619986 +0.5619986 0.4108177 0.5619986 +0.5654443 0.4108177 0.5619986 +0.5687816 0.4108177 0.5619986 +0.092819 0.4244723 0.5619986 +0.2262531 0.4244723 0.5619986 +0.2875993 0.4244723 0.5619986 +0.3262122 0.4244723 0.5619986 +0.3544566 0.4244723 0.5619986 +0.3767383 0.4244723 0.5619986 +0.3951413 0.4244723 0.5619986 +0.4108177 0.4244723 0.5619986 +0.4244723 0.4244723 0.5619986 +0.4365675 0.4244723 0.5619986 +0.4474232 0.4244723 0.5619986 +0.45727 0.4244723 0.5619986 +0.4662797 0.4244723 0.5619986 +0.4745834 0.4244723 0.5619986 +0.4822838 0.4244723 0.5619986 +0.4894626 0.4244723 0.5619986 +0.4961862 0.4244723 0.5619986 +0.5025087 0.4244723 0.5619986 +0.5084753 0.4244723 0.5619986 +0.514124 0.4244723 0.5619986 +0.519487 0.4244723 0.5619986 +0.5245917 0.4244723 0.5619986 +0.529462 0.4244723 0.5619986 +0.5341183 0.4244723 0.5619986 +0.5385787 0.4244723 0.5619986 +0.5428591 0.4244723 0.5619986 +0.5469733 0.4244723 0.5619986 +0.5509339 0.4244723 0.5619986 +0.5547519 0.4244723 0.5619986 +0.5584371 0.4244723 0.5619986 +0.5619986 0.4244723 0.5619986 +0.5654443 0.4244723 0.5619986 +0.5687816 0.4244723 0.5619986 +0.092819 0.4365675 0.5619986 +0.2262531 0.4365675 0.5619986 +0.2875993 0.4365675 0.5619986 +0.3262122 0.4365675 0.5619986 +0.3544566 0.4365675 0.5619986 +0.3767383 0.4365675 0.5619986 +0.3951413 0.4365675 0.5619986 +0.4108177 0.4365675 0.5619986 +0.4244723 0.4365675 0.5619986 +0.4365675 0.4365675 0.5619986 +0.4474232 0.4365675 0.5619986 +0.45727 0.4365675 0.5619986 +0.4662797 0.4365675 0.5619986 +0.4745834 0.4365675 0.5619986 +0.4822838 0.4365675 0.5619986 +0.4894626 0.4365675 0.5619986 +0.4961862 0.4365675 0.5619986 +0.5025087 0.4365675 0.5619986 +0.5084753 0.4365675 0.5619986 +0.514124 0.4365675 0.5619986 +0.519487 0.4365675 0.5619986 +0.5245917 0.4365675 0.5619986 +0.529462 0.4365675 0.5619986 +0.5341183 0.4365675 0.5619986 +0.5385787 0.4365675 0.5619986 +0.5428591 0.4365675 0.5619986 +0.5469733 0.4365675 0.5619986 +0.5509339 0.4365675 0.5619986 +0.5547519 0.4365675 0.5619986 +0.5584371 0.4365675 0.5619986 +0.5619986 0.4365675 0.5619986 +0.5654443 0.4365675 0.5619986 +0.5687816 0.4365675 0.5619986 +0.092819 0.4474232 0.5619986 +0.2262531 0.4474232 0.5619986 +0.2875993 0.4474232 0.5619986 +0.3262122 0.4474232 0.5619986 +0.3544566 0.4474232 0.5619986 +0.3767383 0.4474232 0.5619986 +0.3951413 0.4474232 0.5619986 +0.4108177 0.4474232 0.5619986 +0.4244723 0.4474232 0.5619986 +0.4365675 0.4474232 0.5619986 +0.4474232 0.4474232 0.5619986 +0.45727 0.4474232 0.5619986 +0.4662797 0.4474232 0.5619986 +0.4745834 0.4474232 0.5619986 +0.4822838 0.4474232 0.5619986 +0.4894626 0.4474232 0.5619986 +0.4961862 0.4474232 0.5619986 +0.5025087 0.4474232 0.5619986 +0.5084753 0.4474232 0.5619986 +0.514124 0.4474232 0.5619986 +0.519487 0.4474232 0.5619986 +0.5245917 0.4474232 0.5619986 +0.529462 0.4474232 0.5619986 +0.5341183 0.4474232 0.5619986 +0.5385787 0.4474232 0.5619986 +0.5428591 0.4474232 0.5619986 +0.5469733 0.4474232 0.5619986 +0.5509339 0.4474232 0.5619986 +0.5547519 0.4474232 0.5619986 +0.5584371 0.4474232 0.5619986 +0.5619986 0.4474232 0.5619986 +0.5654443 0.4474232 0.5619986 +0.5687816 0.4474232 0.5619986 +0.092819 0.45727 0.5619986 +0.2262531 0.45727 0.5619986 +0.2875993 0.45727 0.5619986 +0.3262122 0.45727 0.5619986 +0.3544566 0.45727 0.5619986 +0.3767383 0.45727 0.5619986 +0.3951413 0.45727 0.5619986 +0.4108177 0.45727 0.5619986 +0.4244723 0.45727 0.5619986 +0.4365675 0.45727 0.5619986 +0.4474232 0.45727 0.5619986 +0.45727 0.45727 0.5619986 +0.4662797 0.45727 0.5619986 +0.4745834 0.45727 0.5619986 +0.4822838 0.45727 0.5619986 +0.4894626 0.45727 0.5619986 +0.4961862 0.45727 0.5619986 +0.5025087 0.45727 0.5619986 +0.5084753 0.45727 0.5619986 +0.514124 0.45727 0.5619986 +0.519487 0.45727 0.5619986 +0.5245917 0.45727 0.5619986 +0.529462 0.45727 0.5619986 +0.5341183 0.45727 0.5619986 +0.5385787 0.45727 0.5619986 +0.5428591 0.45727 0.5619986 +0.5469733 0.45727 0.5619986 +0.5509339 0.45727 0.5619986 +0.5547519 0.45727 0.5619986 +0.5584371 0.45727 0.5619986 +0.5619986 0.45727 0.5619986 +0.5654443 0.45727 0.5619986 +0.5687816 0.45727 0.5619986 +0.092819 0.4662797 0.5619986 +0.2262531 0.4662797 0.5619986 +0.2875993 0.4662797 0.5619986 +0.3262122 0.4662797 0.5619986 +0.3544566 0.4662797 0.5619986 +0.3767383 0.4662797 0.5619986 +0.3951413 0.4662797 0.5619986 +0.4108177 0.4662797 0.5619986 +0.4244723 0.4662797 0.5619986 +0.4365675 0.4662797 0.5619986 +0.4474232 0.4662797 0.5619986 +0.45727 0.4662797 0.5619986 +0.4662797 0.4662797 0.5619986 +0.4745834 0.4662797 0.5619986 +0.4822838 0.4662797 0.5619986 +0.4894626 0.4662797 0.5619986 +0.4961862 0.4662797 0.5619986 +0.5025087 0.4662797 0.5619986 +0.5084753 0.4662797 0.5619986 +0.514124 0.4662797 0.5619986 +0.519487 0.4662797 0.5619986 +0.5245917 0.4662797 0.5619986 +0.529462 0.4662797 0.5619986 +0.5341183 0.4662797 0.5619986 +0.5385787 0.4662797 0.5619986 +0.5428591 0.4662797 0.5619986 +0.5469733 0.4662797 0.5619986 +0.5509339 0.4662797 0.5619986 +0.5547519 0.4662797 0.5619986 +0.5584371 0.4662797 0.5619986 +0.5619986 0.4662797 0.5619986 +0.5654443 0.4662797 0.5619986 +0.5687816 0.4662797 0.5619986 +0.092819 0.4745834 0.5619986 +0.2262531 0.4745834 0.5619986 +0.2875993 0.4745834 0.5619986 +0.3262122 0.4745834 0.5619986 +0.3544566 0.4745834 0.5619986 +0.3767383 0.4745834 0.5619986 +0.3951413 0.4745834 0.5619986 +0.4108177 0.4745834 0.5619986 +0.4244723 0.4745834 0.5619986 +0.4365675 0.4745834 0.5619986 +0.4474232 0.4745834 0.5619986 +0.45727 0.4745834 0.5619986 +0.4662797 0.4745834 0.5619986 +0.4745834 0.4745834 0.5619986 +0.4822838 0.4745834 0.5619986 +0.4894626 0.4745834 0.5619986 +0.4961862 0.4745834 0.5619986 +0.5025087 0.4745834 0.5619986 +0.5084753 0.4745834 0.5619986 +0.514124 0.4745834 0.5619986 +0.519487 0.4745834 0.5619986 +0.5245917 0.4745834 0.5619986 +0.529462 0.4745834 0.5619986 +0.5341183 0.4745834 0.5619986 +0.5385787 0.4745834 0.5619986 +0.5428591 0.4745834 0.5619986 +0.5469733 0.4745834 0.5619986 +0.5509339 0.4745834 0.5619986 +0.5547519 0.4745834 0.5619986 +0.5584371 0.4745834 0.5619986 +0.5619986 0.4745834 0.5619986 +0.5654443 0.4745834 0.5619986 +0.5687816 0.4745834 0.5619986 +0.092819 0.4822838 0.5619986 +0.2262531 0.4822838 0.5619986 +0.2875993 0.4822838 0.5619986 +0.3262122 0.4822838 0.5619986 +0.3544566 0.4822838 0.5619986 +0.3767383 0.4822838 0.5619986 +0.3951413 0.4822838 0.5619986 +0.4108177 0.4822838 0.5619986 +0.4244723 0.4822838 0.5619986 +0.4365675 0.4822838 0.5619986 +0.4474232 0.4822838 0.5619986 +0.45727 0.4822838 0.5619986 +0.4662797 0.4822838 0.5619986 +0.4745834 0.4822838 0.5619986 +0.4822838 0.4822838 0.5619986 +0.4894626 0.4822838 0.5619986 +0.4961862 0.4822838 0.5619986 +0.5025087 0.4822838 0.5619986 +0.5084753 0.4822838 0.5619986 +0.514124 0.4822838 0.5619986 +0.519487 0.4822838 0.5619986 +0.5245917 0.4822838 0.5619986 +0.529462 0.4822838 0.5619986 +0.5341183 0.4822838 0.5619986 +0.5385787 0.4822838 0.5619986 +0.5428591 0.4822838 0.5619986 +0.5469733 0.4822838 0.5619986 +0.5509339 0.4822838 0.5619986 +0.5547519 0.4822838 0.5619986 +0.5584371 0.4822838 0.5619986 +0.5619986 0.4822838 0.5619986 +0.5654443 0.4822838 0.5619986 +0.5687816 0.4822838 0.5619986 +0.092819 0.4894626 0.5619986 +0.2262531 0.4894626 0.5619986 +0.2875993 0.4894626 0.5619986 +0.3262122 0.4894626 0.5619986 +0.3544566 0.4894626 0.5619986 +0.3767383 0.4894626 0.5619986 +0.3951413 0.4894626 0.5619986 +0.4108177 0.4894626 0.5619986 +0.4244723 0.4894626 0.5619986 +0.4365675 0.4894626 0.5619986 +0.4474232 0.4894626 0.5619986 +0.45727 0.4894626 0.5619986 +0.4662797 0.4894626 0.5619986 +0.4745834 0.4894626 0.5619986 +0.4822838 0.4894626 0.5619986 +0.4894626 0.4894626 0.5619986 +0.4961862 0.4894626 0.5619986 +0.5025087 0.4894626 0.5619986 +0.5084753 0.4894626 0.5619986 +0.514124 0.4894626 0.5619986 +0.519487 0.4894626 0.5619986 +0.5245917 0.4894626 0.5619986 +0.529462 0.4894626 0.5619986 +0.5341183 0.4894626 0.5619986 +0.5385787 0.4894626 0.5619986 +0.5428591 0.4894626 0.5619986 +0.5469733 0.4894626 0.5619986 +0.5509339 0.4894626 0.5619986 +0.5547519 0.4894626 0.5619986 +0.5584371 0.4894626 0.5619986 +0.5619986 0.4894626 0.5619986 +0.5654443 0.4894626 0.5619986 +0.5687816 0.4894626 0.5619986 +0.092819 0.4961862 0.5619986 +0.2262531 0.4961862 0.5619986 +0.2875993 0.4961862 0.5619986 +0.3262122 0.4961862 0.5619986 +0.3544566 0.4961862 0.5619986 +0.3767383 0.4961862 0.5619986 +0.3951413 0.4961862 0.5619986 +0.4108177 0.4961862 0.5619986 +0.4244723 0.4961862 0.5619986 +0.4365675 0.4961862 0.5619986 +0.4474232 0.4961862 0.5619986 +0.45727 0.4961862 0.5619986 +0.4662797 0.4961862 0.5619986 +0.4745834 0.4961862 0.5619986 +0.4822838 0.4961862 0.5619986 +0.4894626 0.4961862 0.5619986 +0.4961862 0.4961862 0.5619986 +0.5025087 0.4961862 0.5619986 +0.5084753 0.4961862 0.5619986 +0.514124 0.4961862 0.5619986 +0.519487 0.4961862 0.5619986 +0.5245917 0.4961862 0.5619986 +0.529462 0.4961862 0.5619986 +0.5341183 0.4961862 0.5619986 +0.5385787 0.4961862 0.5619986 +0.5428591 0.4961862 0.5619986 +0.5469733 0.4961862 0.5619986 +0.5509339 0.4961862 0.5619986 +0.5547519 0.4961862 0.5619986 +0.5584371 0.4961862 0.5619986 +0.5619986 0.4961862 0.5619986 +0.5654443 0.4961862 0.5619986 +0.5687816 0.4961862 0.5619986 +0.092819 0.5025087 0.5619986 +0.2262531 0.5025087 0.5619986 +0.2875993 0.5025087 0.5619986 +0.3262122 0.5025087 0.5619986 +0.3544566 0.5025087 0.5619986 +0.3767383 0.5025087 0.5619986 +0.3951413 0.5025087 0.5619986 +0.4108177 0.5025087 0.5619986 +0.4244723 0.5025087 0.5619986 +0.4365675 0.5025087 0.5619986 +0.4474232 0.5025087 0.5619986 +0.45727 0.5025087 0.5619986 +0.4662797 0.5025087 0.5619986 +0.4745834 0.5025087 0.5619986 +0.4822838 0.5025087 0.5619986 +0.4894626 0.5025087 0.5619986 +0.4961862 0.5025087 0.5619986 +0.5025087 0.5025087 0.5619986 +0.5084753 0.5025087 0.5619986 +0.514124 0.5025087 0.5619986 +0.519487 0.5025087 0.5619986 +0.5245917 0.5025087 0.5619986 +0.529462 0.5025087 0.5619986 +0.5341183 0.5025087 0.5619986 +0.5385787 0.5025087 0.5619986 +0.5428591 0.5025087 0.5619986 +0.5469733 0.5025087 0.5619986 +0.5509339 0.5025087 0.5619986 +0.5547519 0.5025087 0.5619986 +0.5584371 0.5025087 0.5619986 +0.5619986 0.5025087 0.5619986 +0.5654443 0.5025087 0.5619986 +0.5687816 0.5025087 0.5619986 +0.092819 0.5084753 0.5619986 +0.2262531 0.5084753 0.5619986 +0.2875993 0.5084753 0.5619986 +0.3262122 0.5084753 0.5619986 +0.3544566 0.5084753 0.5619986 +0.3767383 0.5084753 0.5619986 +0.3951413 0.5084753 0.5619986 +0.4108177 0.5084753 0.5619986 +0.4244723 0.5084753 0.5619986 +0.4365675 0.5084753 0.5619986 +0.4474232 0.5084753 0.5619986 +0.45727 0.5084753 0.5619986 +0.4662797 0.5084753 0.5619986 +0.4745834 0.5084753 0.5619986 +0.4822838 0.5084753 0.5619986 +0.4894626 0.5084753 0.5619986 +0.4961862 0.5084753 0.5619986 +0.5025087 0.5084753 0.5619986 +0.5084753 0.5084753 0.5619986 +0.514124 0.5084753 0.5619986 +0.519487 0.5084753 0.5619986 +0.5245917 0.5084753 0.5619986 +0.529462 0.5084753 0.5619986 +0.5341183 0.5084753 0.5619986 +0.5385787 0.5084753 0.5619986 +0.5428591 0.5084753 0.5619986 +0.5469733 0.5084753 0.5619986 +0.5509339 0.5084753 0.5619986 +0.5547519 0.5084753 0.5619986 +0.5584371 0.5084753 0.5619986 +0.5619986 0.5084753 0.5619986 +0.5654443 0.5084753 0.5619986 +0.5687816 0.5084753 0.5619986 +0.092819 0.514124 0.5619986 +0.2262531 0.514124 0.5619986 +0.2875993 0.514124 0.5619986 +0.3262122 0.514124 0.5619986 +0.3544566 0.514124 0.5619986 +0.3767383 0.514124 0.5619986 +0.3951413 0.514124 0.5619986 +0.4108177 0.514124 0.5619986 +0.4244723 0.514124 0.5619986 +0.4365675 0.514124 0.5619986 +0.4474232 0.514124 0.5619986 +0.45727 0.514124 0.5619986 +0.4662797 0.514124 0.5619986 +0.4745834 0.514124 0.5619986 +0.4822838 0.514124 0.5619986 +0.4894626 0.514124 0.5619986 +0.4961862 0.514124 0.5619986 +0.5025087 0.514124 0.5619986 +0.5084753 0.514124 0.5619986 +0.514124 0.514124 0.5619986 +0.519487 0.514124 0.5619986 +0.5245917 0.514124 0.5619986 +0.529462 0.514124 0.5619986 +0.5341183 0.514124 0.5619986 +0.5385787 0.514124 0.5619986 +0.5428591 0.514124 0.5619986 +0.5469733 0.514124 0.5619986 +0.5509339 0.514124 0.5619986 +0.5547519 0.514124 0.5619986 +0.5584371 0.514124 0.5619986 +0.5619986 0.514124 0.5619986 +0.5654443 0.514124 0.5619986 +0.5687816 0.514124 0.5619986 +0.092819 0.519487 0.5619986 +0.2262531 0.519487 0.5619986 +0.2875993 0.519487 0.5619986 +0.3262122 0.519487 0.5619986 +0.3544566 0.519487 0.5619986 +0.3767383 0.519487 0.5619986 +0.3951413 0.519487 0.5619986 +0.4108177 0.519487 0.5619986 +0.4244723 0.519487 0.5619986 +0.4365675 0.519487 0.5619986 +0.4474232 0.519487 0.5619986 +0.45727 0.519487 0.5619986 +0.4662797 0.519487 0.5619986 +0.4745834 0.519487 0.5619986 +0.4822838 0.519487 0.5619986 +0.4894626 0.519487 0.5619986 +0.4961862 0.519487 0.5619986 +0.5025087 0.519487 0.5619986 +0.5084753 0.519487 0.5619986 +0.514124 0.519487 0.5619986 +0.519487 0.519487 0.5619986 +0.5245917 0.519487 0.5619986 +0.529462 0.519487 0.5619986 +0.5341183 0.519487 0.5619986 +0.5385787 0.519487 0.5619986 +0.5428591 0.519487 0.5619986 +0.5469733 0.519487 0.5619986 +0.5509339 0.519487 0.5619986 +0.5547519 0.519487 0.5619986 +0.5584371 0.519487 0.5619986 +0.5619986 0.519487 0.5619986 +0.5654443 0.519487 0.5619986 +0.5687816 0.519487 0.5619986 +0.092819 0.5245917 0.5619986 +0.2262531 0.5245917 0.5619986 +0.2875993 0.5245917 0.5619986 +0.3262122 0.5245917 0.5619986 +0.3544566 0.5245917 0.5619986 +0.3767383 0.5245917 0.5619986 +0.3951413 0.5245917 0.5619986 +0.4108177 0.5245917 0.5619986 +0.4244723 0.5245917 0.5619986 +0.4365675 0.5245917 0.5619986 +0.4474232 0.5245917 0.5619986 +0.45727 0.5245917 0.5619986 +0.4662797 0.5245917 0.5619986 +0.4745834 0.5245917 0.5619986 +0.4822838 0.5245917 0.5619986 +0.4894626 0.5245917 0.5619986 +0.4961862 0.5245917 0.5619986 +0.5025087 0.5245917 0.5619986 +0.5084753 0.5245917 0.5619986 +0.514124 0.5245917 0.5619986 +0.519487 0.5245917 0.5619986 +0.5245917 0.5245917 0.5619986 +0.529462 0.5245917 0.5619986 +0.5341183 0.5245917 0.5619986 +0.5385787 0.5245917 0.5619986 +0.5428591 0.5245917 0.5619986 +0.5469733 0.5245917 0.5619986 +0.5509339 0.5245917 0.5619986 +0.5547519 0.5245917 0.5619986 +0.5584371 0.5245917 0.5619986 +0.5619986 0.5245917 0.5619986 +0.5654443 0.5245917 0.5619986 +0.5687816 0.5245917 0.5619986 +0.092819 0.529462 0.5619986 +0.2262531 0.529462 0.5619986 +0.2875993 0.529462 0.5619986 +0.3262122 0.529462 0.5619986 +0.3544566 0.529462 0.5619986 +0.3767383 0.529462 0.5619986 +0.3951413 0.529462 0.5619986 +0.4108177 0.529462 0.5619986 +0.4244723 0.529462 0.5619986 +0.4365675 0.529462 0.5619986 +0.4474232 0.529462 0.5619986 +0.45727 0.529462 0.5619986 +0.4662797 0.529462 0.5619986 +0.4745834 0.529462 0.5619986 +0.4822838 0.529462 0.5619986 +0.4894626 0.529462 0.5619986 +0.4961862 0.529462 0.5619986 +0.5025087 0.529462 0.5619986 +0.5084753 0.529462 0.5619986 +0.514124 0.529462 0.5619986 +0.519487 0.529462 0.5619986 +0.5245917 0.529462 0.5619986 +0.529462 0.529462 0.5619986 +0.5341183 0.529462 0.5619986 +0.5385787 0.529462 0.5619986 +0.5428591 0.529462 0.5619986 +0.5469733 0.529462 0.5619986 +0.5509339 0.529462 0.5619986 +0.5547519 0.529462 0.5619986 +0.5584371 0.529462 0.5619986 +0.5619986 0.529462 0.5619986 +0.5654443 0.529462 0.5619986 +0.5687816 0.529462 0.5619986 +0.092819 0.5341183 0.5619986 +0.2262531 0.5341183 0.5619986 +0.2875993 0.5341183 0.5619986 +0.3262122 0.5341183 0.5619986 +0.3544566 0.5341183 0.5619986 +0.3767383 0.5341183 0.5619986 +0.3951413 0.5341183 0.5619986 +0.4108177 0.5341183 0.5619986 +0.4244723 0.5341183 0.5619986 +0.4365675 0.5341183 0.5619986 +0.4474232 0.5341183 0.5619986 +0.45727 0.5341183 0.5619986 +0.4662797 0.5341183 0.5619986 +0.4745834 0.5341183 0.5619986 +0.4822838 0.5341183 0.5619986 +0.4894626 0.5341183 0.5619986 +0.4961862 0.5341183 0.5619986 +0.5025087 0.5341183 0.5619986 +0.5084753 0.5341183 0.5619986 +0.514124 0.5341183 0.5619986 +0.519487 0.5341183 0.5619986 +0.5245917 0.5341183 0.5619986 +0.529462 0.5341183 0.5619986 +0.5341183 0.5341183 0.5619986 +0.5385787 0.5341183 0.5619986 +0.5428591 0.5341183 0.5619986 +0.5469733 0.5341183 0.5619986 +0.5509339 0.5341183 0.5619986 +0.5547519 0.5341183 0.5619986 +0.5584371 0.5341183 0.5619986 +0.5619986 0.5341183 0.5619986 +0.5654443 0.5341183 0.5619986 +0.5687816 0.5341183 0.5619986 +0.092819 0.5385787 0.5619986 +0.2262531 0.5385787 0.5619986 +0.2875993 0.5385787 0.5619986 +0.3262122 0.5385787 0.5619986 +0.3544566 0.5385787 0.5619986 +0.3767383 0.5385787 0.5619986 +0.3951413 0.5385787 0.5619986 +0.4108177 0.5385787 0.5619986 +0.4244723 0.5385787 0.5619986 +0.4365675 0.5385787 0.5619986 +0.4474232 0.5385787 0.5619986 +0.45727 0.5385787 0.5619986 +0.4662797 0.5385787 0.5619986 +0.4745834 0.5385787 0.5619986 +0.4822838 0.5385787 0.5619986 +0.4894626 0.5385787 0.5619986 +0.4961862 0.5385787 0.5619986 +0.5025087 0.5385787 0.5619986 +0.5084753 0.5385787 0.5619986 +0.514124 0.5385787 0.5619986 +0.519487 0.5385787 0.5619986 +0.5245917 0.5385787 0.5619986 +0.529462 0.5385787 0.5619986 +0.5341183 0.5385787 0.5619986 +0.5385787 0.5385787 0.5619986 +0.5428591 0.5385787 0.5619986 +0.5469733 0.5385787 0.5619986 +0.5509339 0.5385787 0.5619986 +0.5547519 0.5385787 0.5619986 +0.5584371 0.5385787 0.5619986 +0.5619986 0.5385787 0.5619986 +0.5654443 0.5385787 0.5619986 +0.5687816 0.5385787 0.5619986 +0.092819 0.5428591 0.5619986 +0.2262531 0.5428591 0.5619986 +0.2875993 0.5428591 0.5619986 +0.3262122 0.5428591 0.5619986 +0.3544566 0.5428591 0.5619986 +0.3767383 0.5428591 0.5619986 +0.3951413 0.5428591 0.5619986 +0.4108177 0.5428591 0.5619986 +0.4244723 0.5428591 0.5619986 +0.4365675 0.5428591 0.5619986 +0.4474232 0.5428591 0.5619986 +0.45727 0.5428591 0.5619986 +0.4662797 0.5428591 0.5619986 +0.4745834 0.5428591 0.5619986 +0.4822838 0.5428591 0.5619986 +0.4894626 0.5428591 0.5619986 +0.4961862 0.5428591 0.5619986 +0.5025087 0.5428591 0.5619986 +0.5084753 0.5428591 0.5619986 +0.514124 0.5428591 0.5619986 +0.519487 0.5428591 0.5619986 +0.5245917 0.5428591 0.5619986 +0.529462 0.5428591 0.5619986 +0.5341183 0.5428591 0.5619986 +0.5385787 0.5428591 0.5619986 +0.5428591 0.5428591 0.5619986 +0.5469733 0.5428591 0.5619986 +0.5509339 0.5428591 0.5619986 +0.5547519 0.5428591 0.5619986 +0.5584371 0.5428591 0.5619986 +0.5619986 0.5428591 0.5619986 +0.5654443 0.5428591 0.5619986 +0.5687816 0.5428591 0.5619986 +0.092819 0.5469733 0.5619986 +0.2262531 0.5469733 0.5619986 +0.2875993 0.5469733 0.5619986 +0.3262122 0.5469733 0.5619986 +0.3544566 0.5469733 0.5619986 +0.3767383 0.5469733 0.5619986 +0.3951413 0.5469733 0.5619986 +0.4108177 0.5469733 0.5619986 +0.4244723 0.5469733 0.5619986 +0.4365675 0.5469733 0.5619986 +0.4474232 0.5469733 0.5619986 +0.45727 0.5469733 0.5619986 +0.4662797 0.5469733 0.5619986 +0.4745834 0.5469733 0.5619986 +0.4822838 0.5469733 0.5619986 +0.4894626 0.5469733 0.5619986 +0.4961862 0.5469733 0.5619986 +0.5025087 0.5469733 0.5619986 +0.5084753 0.5469733 0.5619986 +0.514124 0.5469733 0.5619986 +0.519487 0.5469733 0.5619986 +0.5245917 0.5469733 0.5619986 +0.529462 0.5469733 0.5619986 +0.5341183 0.5469733 0.5619986 +0.5385787 0.5469733 0.5619986 +0.5428591 0.5469733 0.5619986 +0.5469733 0.5469733 0.5619986 +0.5509339 0.5469733 0.5619986 +0.5547519 0.5469733 0.5619986 +0.5584371 0.5469733 0.5619986 +0.5619986 0.5469733 0.5619986 +0.5654443 0.5469733 0.5619986 +0.5687816 0.5469733 0.5619986 +0.092819 0.5509339 0.5619986 +0.2262531 0.5509339 0.5619986 +0.2875993 0.5509339 0.5619986 +0.3262122 0.5509339 0.5619986 +0.3544566 0.5509339 0.5619986 +0.3767383 0.5509339 0.5619986 +0.3951413 0.5509339 0.5619986 +0.4108177 0.5509339 0.5619986 +0.4244723 0.5509339 0.5619986 +0.4365675 0.5509339 0.5619986 +0.4474232 0.5509339 0.5619986 +0.45727 0.5509339 0.5619986 +0.4662797 0.5509339 0.5619986 +0.4745834 0.5509339 0.5619986 +0.4822838 0.5509339 0.5619986 +0.4894626 0.5509339 0.5619986 +0.4961862 0.5509339 0.5619986 +0.5025087 0.5509339 0.5619986 +0.5084753 0.5509339 0.5619986 +0.514124 0.5509339 0.5619986 +0.519487 0.5509339 0.5619986 +0.5245917 0.5509339 0.5619986 +0.529462 0.5509339 0.5619986 +0.5341183 0.5509339 0.5619986 +0.5385787 0.5509339 0.5619986 +0.5428591 0.5509339 0.5619986 +0.5469733 0.5509339 0.5619986 +0.5509339 0.5509339 0.5619986 +0.5547519 0.5509339 0.5619986 +0.5584371 0.5509339 0.5619986 +0.5619986 0.5509339 0.5619986 +0.5654443 0.5509339 0.5619986 +0.5687816 0.5509339 0.5619986 +0.092819 0.5547519 0.5619986 +0.2262531 0.5547519 0.5619986 +0.2875993 0.5547519 0.5619986 +0.3262122 0.5547519 0.5619986 +0.3544566 0.5547519 0.5619986 +0.3767383 0.5547519 0.5619986 +0.3951413 0.5547519 0.5619986 +0.4108177 0.5547519 0.5619986 +0.4244723 0.5547519 0.5619986 +0.4365675 0.5547519 0.5619986 +0.4474232 0.5547519 0.5619986 +0.45727 0.5547519 0.5619986 +0.4662797 0.5547519 0.5619986 +0.4745834 0.5547519 0.5619986 +0.4822838 0.5547519 0.5619986 +0.4894626 0.5547519 0.5619986 +0.4961862 0.5547519 0.5619986 +0.5025087 0.5547519 0.5619986 +0.5084753 0.5547519 0.5619986 +0.514124 0.5547519 0.5619986 +0.519487 0.5547519 0.5619986 +0.5245917 0.5547519 0.5619986 +0.529462 0.5547519 0.5619986 +0.5341183 0.5547519 0.5619986 +0.5385787 0.5547519 0.5619986 +0.5428591 0.5547519 0.5619986 +0.5469733 0.5547519 0.5619986 +0.5509339 0.5547519 0.5619986 +0.5547519 0.5547519 0.5619986 +0.5584371 0.5547519 0.5619986 +0.5619986 0.5547519 0.5619986 +0.5654443 0.5547519 0.5619986 +0.5687816 0.5547519 0.5619986 +0.092819 0.5584371 0.5619986 +0.2262531 0.5584371 0.5619986 +0.2875993 0.5584371 0.5619986 +0.3262122 0.5584371 0.5619986 +0.3544566 0.5584371 0.5619986 +0.3767383 0.5584371 0.5619986 +0.3951413 0.5584371 0.5619986 +0.4108177 0.5584371 0.5619986 +0.4244723 0.5584371 0.5619986 +0.4365675 0.5584371 0.5619986 +0.4474232 0.5584371 0.5619986 +0.45727 0.5584371 0.5619986 +0.4662797 0.5584371 0.5619986 +0.4745834 0.5584371 0.5619986 +0.4822838 0.5584371 0.5619986 +0.4894626 0.5584371 0.5619986 +0.4961862 0.5584371 0.5619986 +0.5025087 0.5584371 0.5619986 +0.5084753 0.5584371 0.5619986 +0.514124 0.5584371 0.5619986 +0.519487 0.5584371 0.5619986 +0.5245917 0.5584371 0.5619986 +0.529462 0.5584371 0.5619986 +0.5341183 0.5584371 0.5619986 +0.5385787 0.5584371 0.5619986 +0.5428591 0.5584371 0.5619986 +0.5469733 0.5584371 0.5619986 +0.5509339 0.5584371 0.5619986 +0.5547519 0.5584371 0.5619986 +0.5584371 0.5584371 0.5619986 +0.5619986 0.5584371 0.5619986 +0.5654443 0.5584371 0.5619986 +0.5687816 0.5584371 0.5619986 +0.092819 0.5619986 0.5619986 +0.2262531 0.5619986 0.5619986 +0.2875993 0.5619986 0.5619986 +0.3262122 0.5619986 0.5619986 +0.3544566 0.5619986 0.5619986 +0.3767383 0.5619986 0.5619986 +0.3951413 0.5619986 0.5619986 +0.4108177 0.5619986 0.5619986 +0.4244723 0.5619986 0.5619986 +0.4365675 0.5619986 0.5619986 +0.4474232 0.5619986 0.5619986 +0.45727 0.5619986 0.5619986 +0.4662797 0.5619986 0.5619986 +0.4745834 0.5619986 0.5619986 +0.4822838 0.5619986 0.5619986 +0.4894626 0.5619986 0.5619986 +0.4961862 0.5619986 0.5619986 +0.5025087 0.5619986 0.5619986 +0.5084753 0.5619986 0.5619986 +0.514124 0.5619986 0.5619986 +0.519487 0.5619986 0.5619986 +0.5245917 0.5619986 0.5619986 +0.529462 0.5619986 0.5619986 +0.5341183 0.5619986 0.5619986 +0.5385787 0.5619986 0.5619986 +0.5428591 0.5619986 0.5619986 +0.5469733 0.5619986 0.5619986 +0.5509339 0.5619986 0.5619986 +0.5547519 0.5619986 0.5619986 +0.5584371 0.5619986 0.5619986 +0.5619986 0.5619986 0.5619986 +0.5654443 0.5619986 0.5619986 +0.5687816 0.5619986 0.5619986 +0.092819 0.5654443 0.5619986 +0.2262531 0.5654443 0.5619986 +0.2875993 0.5654443 0.5619986 +0.3262122 0.5654443 0.5619986 +0.3544566 0.5654443 0.5619986 +0.3767383 0.5654443 0.5619986 +0.3951413 0.5654443 0.5619986 +0.4108177 0.5654443 0.5619986 +0.4244723 0.5654443 0.5619986 +0.4365675 0.5654443 0.5619986 +0.4474232 0.5654443 0.5619986 +0.45727 0.5654443 0.5619986 +0.4662797 0.5654443 0.5619986 +0.4745834 0.5654443 0.5619986 +0.4822838 0.5654443 0.5619986 +0.4894626 0.5654443 0.5619986 +0.4961862 0.5654443 0.5619986 +0.5025087 0.5654443 0.5619986 +0.5084753 0.5654443 0.5619986 +0.514124 0.5654443 0.5619986 +0.519487 0.5654443 0.5619986 +0.5245917 0.5654443 0.5619986 +0.529462 0.5654443 0.5619986 +0.5341183 0.5654443 0.5619986 +0.5385787 0.5654443 0.5619986 +0.5428591 0.5654443 0.5619986 +0.5469733 0.5654443 0.5619986 +0.5509339 0.5654443 0.5619986 +0.5547519 0.5654443 0.5619986 +0.5584371 0.5654443 0.5619986 +0.5619986 0.5654443 0.5619986 +0.5654443 0.5654443 0.5619986 +0.5687816 0.5654443 0.5619986 +0.092819 0.5687816 0.5619986 +0.2262531 0.5687816 0.5619986 +0.2875993 0.5687816 0.5619986 +0.3262122 0.5687816 0.5619986 +0.3544566 0.5687816 0.5619986 +0.3767383 0.5687816 0.5619986 +0.3951413 0.5687816 0.5619986 +0.4108177 0.5687816 0.5619986 +0.4244723 0.5687816 0.5619986 +0.4365675 0.5687816 0.5619986 +0.4474232 0.5687816 0.5619986 +0.45727 0.5687816 0.5619986 +0.4662797 0.5687816 0.5619986 +0.4745834 0.5687816 0.5619986 +0.4822838 0.5687816 0.5619986 +0.4894626 0.5687816 0.5619986 +0.4961862 0.5687816 0.5619986 +0.5025087 0.5687816 0.5619986 +0.5084753 0.5687816 0.5619986 +0.514124 0.5687816 0.5619986 +0.519487 0.5687816 0.5619986 +0.5245917 0.5687816 0.5619986 +0.529462 0.5687816 0.5619986 +0.5341183 0.5687816 0.5619986 +0.5385787 0.5687816 0.5619986 +0.5428591 0.5687816 0.5619986 +0.5469733 0.5687816 0.5619986 +0.5509339 0.5687816 0.5619986 +0.5547519 0.5687816 0.5619986 +0.5584371 0.5687816 0.5619986 +0.5619986 0.5687816 0.5619986 +0.5654443 0.5687816 0.5619986 +0.5687816 0.5687816 0.5619986 +0.092819 0.092819 0.5654443 +0.2262531 0.092819 0.5654443 +0.2875993 0.092819 0.5654443 +0.3262122 0.092819 0.5654443 +0.3544566 0.092819 0.5654443 +0.3767383 0.092819 0.5654443 +0.3951413 0.092819 0.5654443 +0.4108177 0.092819 0.5654443 +0.4244723 0.092819 0.5654443 +0.4365675 0.092819 0.5654443 +0.4474232 0.092819 0.5654443 +0.45727 0.092819 0.5654443 +0.4662797 0.092819 0.5654443 +0.4745834 0.092819 0.5654443 +0.4822838 0.092819 0.5654443 +0.4894626 0.092819 0.5654443 +0.4961862 0.092819 0.5654443 +0.5025087 0.092819 0.5654443 +0.5084753 0.092819 0.5654443 +0.514124 0.092819 0.5654443 +0.519487 0.092819 0.5654443 +0.5245917 0.092819 0.5654443 +0.529462 0.092819 0.5654443 +0.5341183 0.092819 0.5654443 +0.5385787 0.092819 0.5654443 +0.5428591 0.092819 0.5654443 +0.5469733 0.092819 0.5654443 +0.5509339 0.092819 0.5654443 +0.5547519 0.092819 0.5654443 +0.5584371 0.092819 0.5654443 +0.5619986 0.092819 0.5654443 +0.5654443 0.092819 0.5654443 +0.5687816 0.092819 0.5654443 +0.092819 0.2262531 0.5654443 +0.2262531 0.2262531 0.5654443 +0.2875993 0.2262531 0.5654443 +0.3262122 0.2262531 0.5654443 +0.3544566 0.2262531 0.5654443 +0.3767383 0.2262531 0.5654443 +0.3951413 0.2262531 0.5654443 +0.4108177 0.2262531 0.5654443 +0.4244723 0.2262531 0.5654443 +0.4365675 0.2262531 0.5654443 +0.4474232 0.2262531 0.5654443 +0.45727 0.2262531 0.5654443 +0.4662797 0.2262531 0.5654443 +0.4745834 0.2262531 0.5654443 +0.4822838 0.2262531 0.5654443 +0.4894626 0.2262531 0.5654443 +0.4961862 0.2262531 0.5654443 +0.5025087 0.2262531 0.5654443 +0.5084753 0.2262531 0.5654443 +0.514124 0.2262531 0.5654443 +0.519487 0.2262531 0.5654443 +0.5245917 0.2262531 0.5654443 +0.529462 0.2262531 0.5654443 +0.5341183 0.2262531 0.5654443 +0.5385787 0.2262531 0.5654443 +0.5428591 0.2262531 0.5654443 +0.5469733 0.2262531 0.5654443 +0.5509339 0.2262531 0.5654443 +0.5547519 0.2262531 0.5654443 +0.5584371 0.2262531 0.5654443 +0.5619986 0.2262531 0.5654443 +0.5654443 0.2262531 0.5654443 +0.5687816 0.2262531 0.5654443 +0.092819 0.2875993 0.5654443 +0.2262531 0.2875993 0.5654443 +0.2875993 0.2875993 0.5654443 +0.3262122 0.2875993 0.5654443 +0.3544566 0.2875993 0.5654443 +0.3767383 0.2875993 0.5654443 +0.3951413 0.2875993 0.5654443 +0.4108177 0.2875993 0.5654443 +0.4244723 0.2875993 0.5654443 +0.4365675 0.2875993 0.5654443 +0.4474232 0.2875993 0.5654443 +0.45727 0.2875993 0.5654443 +0.4662797 0.2875993 0.5654443 +0.4745834 0.2875993 0.5654443 +0.4822838 0.2875993 0.5654443 +0.4894626 0.2875993 0.5654443 +0.4961862 0.2875993 0.5654443 +0.5025087 0.2875993 0.5654443 +0.5084753 0.2875993 0.5654443 +0.514124 0.2875993 0.5654443 +0.519487 0.2875993 0.5654443 +0.5245917 0.2875993 0.5654443 +0.529462 0.2875993 0.5654443 +0.5341183 0.2875993 0.5654443 +0.5385787 0.2875993 0.5654443 +0.5428591 0.2875993 0.5654443 +0.5469733 0.2875993 0.5654443 +0.5509339 0.2875993 0.5654443 +0.5547519 0.2875993 0.5654443 +0.5584371 0.2875993 0.5654443 +0.5619986 0.2875993 0.5654443 +0.5654443 0.2875993 0.5654443 +0.5687816 0.2875993 0.5654443 +0.092819 0.3262122 0.5654443 +0.2262531 0.3262122 0.5654443 +0.2875993 0.3262122 0.5654443 +0.3262122 0.3262122 0.5654443 +0.3544566 0.3262122 0.5654443 +0.3767383 0.3262122 0.5654443 +0.3951413 0.3262122 0.5654443 +0.4108177 0.3262122 0.5654443 +0.4244723 0.3262122 0.5654443 +0.4365675 0.3262122 0.5654443 +0.4474232 0.3262122 0.5654443 +0.45727 0.3262122 0.5654443 +0.4662797 0.3262122 0.5654443 +0.4745834 0.3262122 0.5654443 +0.4822838 0.3262122 0.5654443 +0.4894626 0.3262122 0.5654443 +0.4961862 0.3262122 0.5654443 +0.5025087 0.3262122 0.5654443 +0.5084753 0.3262122 0.5654443 +0.514124 0.3262122 0.5654443 +0.519487 0.3262122 0.5654443 +0.5245917 0.3262122 0.5654443 +0.529462 0.3262122 0.5654443 +0.5341183 0.3262122 0.5654443 +0.5385787 0.3262122 0.5654443 +0.5428591 0.3262122 0.5654443 +0.5469733 0.3262122 0.5654443 +0.5509339 0.3262122 0.5654443 +0.5547519 0.3262122 0.5654443 +0.5584371 0.3262122 0.5654443 +0.5619986 0.3262122 0.5654443 +0.5654443 0.3262122 0.5654443 +0.5687816 0.3262122 0.5654443 +0.092819 0.3544566 0.5654443 +0.2262531 0.3544566 0.5654443 +0.2875993 0.3544566 0.5654443 +0.3262122 0.3544566 0.5654443 +0.3544566 0.3544566 0.5654443 +0.3767383 0.3544566 0.5654443 +0.3951413 0.3544566 0.5654443 +0.4108177 0.3544566 0.5654443 +0.4244723 0.3544566 0.5654443 +0.4365675 0.3544566 0.5654443 +0.4474232 0.3544566 0.5654443 +0.45727 0.3544566 0.5654443 +0.4662797 0.3544566 0.5654443 +0.4745834 0.3544566 0.5654443 +0.4822838 0.3544566 0.5654443 +0.4894626 0.3544566 0.5654443 +0.4961862 0.3544566 0.5654443 +0.5025087 0.3544566 0.5654443 +0.5084753 0.3544566 0.5654443 +0.514124 0.3544566 0.5654443 +0.519487 0.3544566 0.5654443 +0.5245917 0.3544566 0.5654443 +0.529462 0.3544566 0.5654443 +0.5341183 0.3544566 0.5654443 +0.5385787 0.3544566 0.5654443 +0.5428591 0.3544566 0.5654443 +0.5469733 0.3544566 0.5654443 +0.5509339 0.3544566 0.5654443 +0.5547519 0.3544566 0.5654443 +0.5584371 0.3544566 0.5654443 +0.5619986 0.3544566 0.5654443 +0.5654443 0.3544566 0.5654443 +0.5687816 0.3544566 0.5654443 +0.092819 0.3767383 0.5654443 +0.2262531 0.3767383 0.5654443 +0.2875993 0.3767383 0.5654443 +0.3262122 0.3767383 0.5654443 +0.3544566 0.3767383 0.5654443 +0.3767383 0.3767383 0.5654443 +0.3951413 0.3767383 0.5654443 +0.4108177 0.3767383 0.5654443 +0.4244723 0.3767383 0.5654443 +0.4365675 0.3767383 0.5654443 +0.4474232 0.3767383 0.5654443 +0.45727 0.3767383 0.5654443 +0.4662797 0.3767383 0.5654443 +0.4745834 0.3767383 0.5654443 +0.4822838 0.3767383 0.5654443 +0.4894626 0.3767383 0.5654443 +0.4961862 0.3767383 0.5654443 +0.5025087 0.3767383 0.5654443 +0.5084753 0.3767383 0.5654443 +0.514124 0.3767383 0.5654443 +0.519487 0.3767383 0.5654443 +0.5245917 0.3767383 0.5654443 +0.529462 0.3767383 0.5654443 +0.5341183 0.3767383 0.5654443 +0.5385787 0.3767383 0.5654443 +0.5428591 0.3767383 0.5654443 +0.5469733 0.3767383 0.5654443 +0.5509339 0.3767383 0.5654443 +0.5547519 0.3767383 0.5654443 +0.5584371 0.3767383 0.5654443 +0.5619986 0.3767383 0.5654443 +0.5654443 0.3767383 0.5654443 +0.5687816 0.3767383 0.5654443 +0.092819 0.3951413 0.5654443 +0.2262531 0.3951413 0.5654443 +0.2875993 0.3951413 0.5654443 +0.3262122 0.3951413 0.5654443 +0.3544566 0.3951413 0.5654443 +0.3767383 0.3951413 0.5654443 +0.3951413 0.3951413 0.5654443 +0.4108177 0.3951413 0.5654443 +0.4244723 0.3951413 0.5654443 +0.4365675 0.3951413 0.5654443 +0.4474232 0.3951413 0.5654443 +0.45727 0.3951413 0.5654443 +0.4662797 0.3951413 0.5654443 +0.4745834 0.3951413 0.5654443 +0.4822838 0.3951413 0.5654443 +0.4894626 0.3951413 0.5654443 +0.4961862 0.3951413 0.5654443 +0.5025087 0.3951413 0.5654443 +0.5084753 0.3951413 0.5654443 +0.514124 0.3951413 0.5654443 +0.519487 0.3951413 0.5654443 +0.5245917 0.3951413 0.5654443 +0.529462 0.3951413 0.5654443 +0.5341183 0.3951413 0.5654443 +0.5385787 0.3951413 0.5654443 +0.5428591 0.3951413 0.5654443 +0.5469733 0.3951413 0.5654443 +0.5509339 0.3951413 0.5654443 +0.5547519 0.3951413 0.5654443 +0.5584371 0.3951413 0.5654443 +0.5619986 0.3951413 0.5654443 +0.5654443 0.3951413 0.5654443 +0.5687816 0.3951413 0.5654443 +0.092819 0.4108177 0.5654443 +0.2262531 0.4108177 0.5654443 +0.2875993 0.4108177 0.5654443 +0.3262122 0.4108177 0.5654443 +0.3544566 0.4108177 0.5654443 +0.3767383 0.4108177 0.5654443 +0.3951413 0.4108177 0.5654443 +0.4108177 0.4108177 0.5654443 +0.4244723 0.4108177 0.5654443 +0.4365675 0.4108177 0.5654443 +0.4474232 0.4108177 0.5654443 +0.45727 0.4108177 0.5654443 +0.4662797 0.4108177 0.5654443 +0.4745834 0.4108177 0.5654443 +0.4822838 0.4108177 0.5654443 +0.4894626 0.4108177 0.5654443 +0.4961862 0.4108177 0.5654443 +0.5025087 0.4108177 0.5654443 +0.5084753 0.4108177 0.5654443 +0.514124 0.4108177 0.5654443 +0.519487 0.4108177 0.5654443 +0.5245917 0.4108177 0.5654443 +0.529462 0.4108177 0.5654443 +0.5341183 0.4108177 0.5654443 +0.5385787 0.4108177 0.5654443 +0.5428591 0.4108177 0.5654443 +0.5469733 0.4108177 0.5654443 +0.5509339 0.4108177 0.5654443 +0.5547519 0.4108177 0.5654443 +0.5584371 0.4108177 0.5654443 +0.5619986 0.4108177 0.5654443 +0.5654443 0.4108177 0.5654443 +0.5687816 0.4108177 0.5654443 +0.092819 0.4244723 0.5654443 +0.2262531 0.4244723 0.5654443 +0.2875993 0.4244723 0.5654443 +0.3262122 0.4244723 0.5654443 +0.3544566 0.4244723 0.5654443 +0.3767383 0.4244723 0.5654443 +0.3951413 0.4244723 0.5654443 +0.4108177 0.4244723 0.5654443 +0.4244723 0.4244723 0.5654443 +0.4365675 0.4244723 0.5654443 +0.4474232 0.4244723 0.5654443 +0.45727 0.4244723 0.5654443 +0.4662797 0.4244723 0.5654443 +0.4745834 0.4244723 0.5654443 +0.4822838 0.4244723 0.5654443 +0.4894626 0.4244723 0.5654443 +0.4961862 0.4244723 0.5654443 +0.5025087 0.4244723 0.5654443 +0.5084753 0.4244723 0.5654443 +0.514124 0.4244723 0.5654443 +0.519487 0.4244723 0.5654443 +0.5245917 0.4244723 0.5654443 +0.529462 0.4244723 0.5654443 +0.5341183 0.4244723 0.5654443 +0.5385787 0.4244723 0.5654443 +0.5428591 0.4244723 0.5654443 +0.5469733 0.4244723 0.5654443 +0.5509339 0.4244723 0.5654443 +0.5547519 0.4244723 0.5654443 +0.5584371 0.4244723 0.5654443 +0.5619986 0.4244723 0.5654443 +0.5654443 0.4244723 0.5654443 +0.5687816 0.4244723 0.5654443 +0.092819 0.4365675 0.5654443 +0.2262531 0.4365675 0.5654443 +0.2875993 0.4365675 0.5654443 +0.3262122 0.4365675 0.5654443 +0.3544566 0.4365675 0.5654443 +0.3767383 0.4365675 0.5654443 +0.3951413 0.4365675 0.5654443 +0.4108177 0.4365675 0.5654443 +0.4244723 0.4365675 0.5654443 +0.4365675 0.4365675 0.5654443 +0.4474232 0.4365675 0.5654443 +0.45727 0.4365675 0.5654443 +0.4662797 0.4365675 0.5654443 +0.4745834 0.4365675 0.5654443 +0.4822838 0.4365675 0.5654443 +0.4894626 0.4365675 0.5654443 +0.4961862 0.4365675 0.5654443 +0.5025087 0.4365675 0.5654443 +0.5084753 0.4365675 0.5654443 +0.514124 0.4365675 0.5654443 +0.519487 0.4365675 0.5654443 +0.5245917 0.4365675 0.5654443 +0.529462 0.4365675 0.5654443 +0.5341183 0.4365675 0.5654443 +0.5385787 0.4365675 0.5654443 +0.5428591 0.4365675 0.5654443 +0.5469733 0.4365675 0.5654443 +0.5509339 0.4365675 0.5654443 +0.5547519 0.4365675 0.5654443 +0.5584371 0.4365675 0.5654443 +0.5619986 0.4365675 0.5654443 +0.5654443 0.4365675 0.5654443 +0.5687816 0.4365675 0.5654443 +0.092819 0.4474232 0.5654443 +0.2262531 0.4474232 0.5654443 +0.2875993 0.4474232 0.5654443 +0.3262122 0.4474232 0.5654443 +0.3544566 0.4474232 0.5654443 +0.3767383 0.4474232 0.5654443 +0.3951413 0.4474232 0.5654443 +0.4108177 0.4474232 0.5654443 +0.4244723 0.4474232 0.5654443 +0.4365675 0.4474232 0.5654443 +0.4474232 0.4474232 0.5654443 +0.45727 0.4474232 0.5654443 +0.4662797 0.4474232 0.5654443 +0.4745834 0.4474232 0.5654443 +0.4822838 0.4474232 0.5654443 +0.4894626 0.4474232 0.5654443 +0.4961862 0.4474232 0.5654443 +0.5025087 0.4474232 0.5654443 +0.5084753 0.4474232 0.5654443 +0.514124 0.4474232 0.5654443 +0.519487 0.4474232 0.5654443 +0.5245917 0.4474232 0.5654443 +0.529462 0.4474232 0.5654443 +0.5341183 0.4474232 0.5654443 +0.5385787 0.4474232 0.5654443 +0.5428591 0.4474232 0.5654443 +0.5469733 0.4474232 0.5654443 +0.5509339 0.4474232 0.5654443 +0.5547519 0.4474232 0.5654443 +0.5584371 0.4474232 0.5654443 +0.5619986 0.4474232 0.5654443 +0.5654443 0.4474232 0.5654443 +0.5687816 0.4474232 0.5654443 +0.092819 0.45727 0.5654443 +0.2262531 0.45727 0.5654443 +0.2875993 0.45727 0.5654443 +0.3262122 0.45727 0.5654443 +0.3544566 0.45727 0.5654443 +0.3767383 0.45727 0.5654443 +0.3951413 0.45727 0.5654443 +0.4108177 0.45727 0.5654443 +0.4244723 0.45727 0.5654443 +0.4365675 0.45727 0.5654443 +0.4474232 0.45727 0.5654443 +0.45727 0.45727 0.5654443 +0.4662797 0.45727 0.5654443 +0.4745834 0.45727 0.5654443 +0.4822838 0.45727 0.5654443 +0.4894626 0.45727 0.5654443 +0.4961862 0.45727 0.5654443 +0.5025087 0.45727 0.5654443 +0.5084753 0.45727 0.5654443 +0.514124 0.45727 0.5654443 +0.519487 0.45727 0.5654443 +0.5245917 0.45727 0.5654443 +0.529462 0.45727 0.5654443 +0.5341183 0.45727 0.5654443 +0.5385787 0.45727 0.5654443 +0.5428591 0.45727 0.5654443 +0.5469733 0.45727 0.5654443 +0.5509339 0.45727 0.5654443 +0.5547519 0.45727 0.5654443 +0.5584371 0.45727 0.5654443 +0.5619986 0.45727 0.5654443 +0.5654443 0.45727 0.5654443 +0.5687816 0.45727 0.5654443 +0.092819 0.4662797 0.5654443 +0.2262531 0.4662797 0.5654443 +0.2875993 0.4662797 0.5654443 +0.3262122 0.4662797 0.5654443 +0.3544566 0.4662797 0.5654443 +0.3767383 0.4662797 0.5654443 +0.3951413 0.4662797 0.5654443 +0.4108177 0.4662797 0.5654443 +0.4244723 0.4662797 0.5654443 +0.4365675 0.4662797 0.5654443 +0.4474232 0.4662797 0.5654443 +0.45727 0.4662797 0.5654443 +0.4662797 0.4662797 0.5654443 +0.4745834 0.4662797 0.5654443 +0.4822838 0.4662797 0.5654443 +0.4894626 0.4662797 0.5654443 +0.4961862 0.4662797 0.5654443 +0.5025087 0.4662797 0.5654443 +0.5084753 0.4662797 0.5654443 +0.514124 0.4662797 0.5654443 +0.519487 0.4662797 0.5654443 +0.5245917 0.4662797 0.5654443 +0.529462 0.4662797 0.5654443 +0.5341183 0.4662797 0.5654443 +0.5385787 0.4662797 0.5654443 +0.5428591 0.4662797 0.5654443 +0.5469733 0.4662797 0.5654443 +0.5509339 0.4662797 0.5654443 +0.5547519 0.4662797 0.5654443 +0.5584371 0.4662797 0.5654443 +0.5619986 0.4662797 0.5654443 +0.5654443 0.4662797 0.5654443 +0.5687816 0.4662797 0.5654443 +0.092819 0.4745834 0.5654443 +0.2262531 0.4745834 0.5654443 +0.2875993 0.4745834 0.5654443 +0.3262122 0.4745834 0.5654443 +0.3544566 0.4745834 0.5654443 +0.3767383 0.4745834 0.5654443 +0.3951413 0.4745834 0.5654443 +0.4108177 0.4745834 0.5654443 +0.4244723 0.4745834 0.5654443 +0.4365675 0.4745834 0.5654443 +0.4474232 0.4745834 0.5654443 +0.45727 0.4745834 0.5654443 +0.4662797 0.4745834 0.5654443 +0.4745834 0.4745834 0.5654443 +0.4822838 0.4745834 0.5654443 +0.4894626 0.4745834 0.5654443 +0.4961862 0.4745834 0.5654443 +0.5025087 0.4745834 0.5654443 +0.5084753 0.4745834 0.5654443 +0.514124 0.4745834 0.5654443 +0.519487 0.4745834 0.5654443 +0.5245917 0.4745834 0.5654443 +0.529462 0.4745834 0.5654443 +0.5341183 0.4745834 0.5654443 +0.5385787 0.4745834 0.5654443 +0.5428591 0.4745834 0.5654443 +0.5469733 0.4745834 0.5654443 +0.5509339 0.4745834 0.5654443 +0.5547519 0.4745834 0.5654443 +0.5584371 0.4745834 0.5654443 +0.5619986 0.4745834 0.5654443 +0.5654443 0.4745834 0.5654443 +0.5687816 0.4745834 0.5654443 +0.092819 0.4822838 0.5654443 +0.2262531 0.4822838 0.5654443 +0.2875993 0.4822838 0.5654443 +0.3262122 0.4822838 0.5654443 +0.3544566 0.4822838 0.5654443 +0.3767383 0.4822838 0.5654443 +0.3951413 0.4822838 0.5654443 +0.4108177 0.4822838 0.5654443 +0.4244723 0.4822838 0.5654443 +0.4365675 0.4822838 0.5654443 +0.4474232 0.4822838 0.5654443 +0.45727 0.4822838 0.5654443 +0.4662797 0.4822838 0.5654443 +0.4745834 0.4822838 0.5654443 +0.4822838 0.4822838 0.5654443 +0.4894626 0.4822838 0.5654443 +0.4961862 0.4822838 0.5654443 +0.5025087 0.4822838 0.5654443 +0.5084753 0.4822838 0.5654443 +0.514124 0.4822838 0.5654443 +0.519487 0.4822838 0.5654443 +0.5245917 0.4822838 0.5654443 +0.529462 0.4822838 0.5654443 +0.5341183 0.4822838 0.5654443 +0.5385787 0.4822838 0.5654443 +0.5428591 0.4822838 0.5654443 +0.5469733 0.4822838 0.5654443 +0.5509339 0.4822838 0.5654443 +0.5547519 0.4822838 0.5654443 +0.5584371 0.4822838 0.5654443 +0.5619986 0.4822838 0.5654443 +0.5654443 0.4822838 0.5654443 +0.5687816 0.4822838 0.5654443 +0.092819 0.4894626 0.5654443 +0.2262531 0.4894626 0.5654443 +0.2875993 0.4894626 0.5654443 +0.3262122 0.4894626 0.5654443 +0.3544566 0.4894626 0.5654443 +0.3767383 0.4894626 0.5654443 +0.3951413 0.4894626 0.5654443 +0.4108177 0.4894626 0.5654443 +0.4244723 0.4894626 0.5654443 +0.4365675 0.4894626 0.5654443 +0.4474232 0.4894626 0.5654443 +0.45727 0.4894626 0.5654443 +0.4662797 0.4894626 0.5654443 +0.4745834 0.4894626 0.5654443 +0.4822838 0.4894626 0.5654443 +0.4894626 0.4894626 0.5654443 +0.4961862 0.4894626 0.5654443 +0.5025087 0.4894626 0.5654443 +0.5084753 0.4894626 0.5654443 +0.514124 0.4894626 0.5654443 +0.519487 0.4894626 0.5654443 +0.5245917 0.4894626 0.5654443 +0.529462 0.4894626 0.5654443 +0.5341183 0.4894626 0.5654443 +0.5385787 0.4894626 0.5654443 +0.5428591 0.4894626 0.5654443 +0.5469733 0.4894626 0.5654443 +0.5509339 0.4894626 0.5654443 +0.5547519 0.4894626 0.5654443 +0.5584371 0.4894626 0.5654443 +0.5619986 0.4894626 0.5654443 +0.5654443 0.4894626 0.5654443 +0.5687816 0.4894626 0.5654443 +0.092819 0.4961862 0.5654443 +0.2262531 0.4961862 0.5654443 +0.2875993 0.4961862 0.5654443 +0.3262122 0.4961862 0.5654443 +0.3544566 0.4961862 0.5654443 +0.3767383 0.4961862 0.5654443 +0.3951413 0.4961862 0.5654443 +0.4108177 0.4961862 0.5654443 +0.4244723 0.4961862 0.5654443 +0.4365675 0.4961862 0.5654443 +0.4474232 0.4961862 0.5654443 +0.45727 0.4961862 0.5654443 +0.4662797 0.4961862 0.5654443 +0.4745834 0.4961862 0.5654443 +0.4822838 0.4961862 0.5654443 +0.4894626 0.4961862 0.5654443 +0.4961862 0.4961862 0.5654443 +0.5025087 0.4961862 0.5654443 +0.5084753 0.4961862 0.5654443 +0.514124 0.4961862 0.5654443 +0.519487 0.4961862 0.5654443 +0.5245917 0.4961862 0.5654443 +0.529462 0.4961862 0.5654443 +0.5341183 0.4961862 0.5654443 +0.5385787 0.4961862 0.5654443 +0.5428591 0.4961862 0.5654443 +0.5469733 0.4961862 0.5654443 +0.5509339 0.4961862 0.5654443 +0.5547519 0.4961862 0.5654443 +0.5584371 0.4961862 0.5654443 +0.5619986 0.4961862 0.5654443 +0.5654443 0.4961862 0.5654443 +0.5687816 0.4961862 0.5654443 +0.092819 0.5025087 0.5654443 +0.2262531 0.5025087 0.5654443 +0.2875993 0.5025087 0.5654443 +0.3262122 0.5025087 0.5654443 +0.3544566 0.5025087 0.5654443 +0.3767383 0.5025087 0.5654443 +0.3951413 0.5025087 0.5654443 +0.4108177 0.5025087 0.5654443 +0.4244723 0.5025087 0.5654443 +0.4365675 0.5025087 0.5654443 +0.4474232 0.5025087 0.5654443 +0.45727 0.5025087 0.5654443 +0.4662797 0.5025087 0.5654443 +0.4745834 0.5025087 0.5654443 +0.4822838 0.5025087 0.5654443 +0.4894626 0.5025087 0.5654443 +0.4961862 0.5025087 0.5654443 +0.5025087 0.5025087 0.5654443 +0.5084753 0.5025087 0.5654443 +0.514124 0.5025087 0.5654443 +0.519487 0.5025087 0.5654443 +0.5245917 0.5025087 0.5654443 +0.529462 0.5025087 0.5654443 +0.5341183 0.5025087 0.5654443 +0.5385787 0.5025087 0.5654443 +0.5428591 0.5025087 0.5654443 +0.5469733 0.5025087 0.5654443 +0.5509339 0.5025087 0.5654443 +0.5547519 0.5025087 0.5654443 +0.5584371 0.5025087 0.5654443 +0.5619986 0.5025087 0.5654443 +0.5654443 0.5025087 0.5654443 +0.5687816 0.5025087 0.5654443 +0.092819 0.5084753 0.5654443 +0.2262531 0.5084753 0.5654443 +0.2875993 0.5084753 0.5654443 +0.3262122 0.5084753 0.5654443 +0.3544566 0.5084753 0.5654443 +0.3767383 0.5084753 0.5654443 +0.3951413 0.5084753 0.5654443 +0.4108177 0.5084753 0.5654443 +0.4244723 0.5084753 0.5654443 +0.4365675 0.5084753 0.5654443 +0.4474232 0.5084753 0.5654443 +0.45727 0.5084753 0.5654443 +0.4662797 0.5084753 0.5654443 +0.4745834 0.5084753 0.5654443 +0.4822838 0.5084753 0.5654443 +0.4894626 0.5084753 0.5654443 +0.4961862 0.5084753 0.5654443 +0.5025087 0.5084753 0.5654443 +0.5084753 0.5084753 0.5654443 +0.514124 0.5084753 0.5654443 +0.519487 0.5084753 0.5654443 +0.5245917 0.5084753 0.5654443 +0.529462 0.5084753 0.5654443 +0.5341183 0.5084753 0.5654443 +0.5385787 0.5084753 0.5654443 +0.5428591 0.5084753 0.5654443 +0.5469733 0.5084753 0.5654443 +0.5509339 0.5084753 0.5654443 +0.5547519 0.5084753 0.5654443 +0.5584371 0.5084753 0.5654443 +0.5619986 0.5084753 0.5654443 +0.5654443 0.5084753 0.5654443 +0.5687816 0.5084753 0.5654443 +0.092819 0.514124 0.5654443 +0.2262531 0.514124 0.5654443 +0.2875993 0.514124 0.5654443 +0.3262122 0.514124 0.5654443 +0.3544566 0.514124 0.5654443 +0.3767383 0.514124 0.5654443 +0.3951413 0.514124 0.5654443 +0.4108177 0.514124 0.5654443 +0.4244723 0.514124 0.5654443 +0.4365675 0.514124 0.5654443 +0.4474232 0.514124 0.5654443 +0.45727 0.514124 0.5654443 +0.4662797 0.514124 0.5654443 +0.4745834 0.514124 0.5654443 +0.4822838 0.514124 0.5654443 +0.4894626 0.514124 0.5654443 +0.4961862 0.514124 0.5654443 +0.5025087 0.514124 0.5654443 +0.5084753 0.514124 0.5654443 +0.514124 0.514124 0.5654443 +0.519487 0.514124 0.5654443 +0.5245917 0.514124 0.5654443 +0.529462 0.514124 0.5654443 +0.5341183 0.514124 0.5654443 +0.5385787 0.514124 0.5654443 +0.5428591 0.514124 0.5654443 +0.5469733 0.514124 0.5654443 +0.5509339 0.514124 0.5654443 +0.5547519 0.514124 0.5654443 +0.5584371 0.514124 0.5654443 +0.5619986 0.514124 0.5654443 +0.5654443 0.514124 0.5654443 +0.5687816 0.514124 0.5654443 +0.092819 0.519487 0.5654443 +0.2262531 0.519487 0.5654443 +0.2875993 0.519487 0.5654443 +0.3262122 0.519487 0.5654443 +0.3544566 0.519487 0.5654443 +0.3767383 0.519487 0.5654443 +0.3951413 0.519487 0.5654443 +0.4108177 0.519487 0.5654443 +0.4244723 0.519487 0.5654443 +0.4365675 0.519487 0.5654443 +0.4474232 0.519487 0.5654443 +0.45727 0.519487 0.5654443 +0.4662797 0.519487 0.5654443 +0.4745834 0.519487 0.5654443 +0.4822838 0.519487 0.5654443 +0.4894626 0.519487 0.5654443 +0.4961862 0.519487 0.5654443 +0.5025087 0.519487 0.5654443 +0.5084753 0.519487 0.5654443 +0.514124 0.519487 0.5654443 +0.519487 0.519487 0.5654443 +0.5245917 0.519487 0.5654443 +0.529462 0.519487 0.5654443 +0.5341183 0.519487 0.5654443 +0.5385787 0.519487 0.5654443 +0.5428591 0.519487 0.5654443 +0.5469733 0.519487 0.5654443 +0.5509339 0.519487 0.5654443 +0.5547519 0.519487 0.5654443 +0.5584371 0.519487 0.5654443 +0.5619986 0.519487 0.5654443 +0.5654443 0.519487 0.5654443 +0.5687816 0.519487 0.5654443 +0.092819 0.5245917 0.5654443 +0.2262531 0.5245917 0.5654443 +0.2875993 0.5245917 0.5654443 +0.3262122 0.5245917 0.5654443 +0.3544566 0.5245917 0.5654443 +0.3767383 0.5245917 0.5654443 +0.3951413 0.5245917 0.5654443 +0.4108177 0.5245917 0.5654443 +0.4244723 0.5245917 0.5654443 +0.4365675 0.5245917 0.5654443 +0.4474232 0.5245917 0.5654443 +0.45727 0.5245917 0.5654443 +0.4662797 0.5245917 0.5654443 +0.4745834 0.5245917 0.5654443 +0.4822838 0.5245917 0.5654443 +0.4894626 0.5245917 0.5654443 +0.4961862 0.5245917 0.5654443 +0.5025087 0.5245917 0.5654443 +0.5084753 0.5245917 0.5654443 +0.514124 0.5245917 0.5654443 +0.519487 0.5245917 0.5654443 +0.5245917 0.5245917 0.5654443 +0.529462 0.5245917 0.5654443 +0.5341183 0.5245917 0.5654443 +0.5385787 0.5245917 0.5654443 +0.5428591 0.5245917 0.5654443 +0.5469733 0.5245917 0.5654443 +0.5509339 0.5245917 0.5654443 +0.5547519 0.5245917 0.5654443 +0.5584371 0.5245917 0.5654443 +0.5619986 0.5245917 0.5654443 +0.5654443 0.5245917 0.5654443 +0.5687816 0.5245917 0.5654443 +0.092819 0.529462 0.5654443 +0.2262531 0.529462 0.5654443 +0.2875993 0.529462 0.5654443 +0.3262122 0.529462 0.5654443 +0.3544566 0.529462 0.5654443 +0.3767383 0.529462 0.5654443 +0.3951413 0.529462 0.5654443 +0.4108177 0.529462 0.5654443 +0.4244723 0.529462 0.5654443 +0.4365675 0.529462 0.5654443 +0.4474232 0.529462 0.5654443 +0.45727 0.529462 0.5654443 +0.4662797 0.529462 0.5654443 +0.4745834 0.529462 0.5654443 +0.4822838 0.529462 0.5654443 +0.4894626 0.529462 0.5654443 +0.4961862 0.529462 0.5654443 +0.5025087 0.529462 0.5654443 +0.5084753 0.529462 0.5654443 +0.514124 0.529462 0.5654443 +0.519487 0.529462 0.5654443 +0.5245917 0.529462 0.5654443 +0.529462 0.529462 0.5654443 +0.5341183 0.529462 0.5654443 +0.5385787 0.529462 0.5654443 +0.5428591 0.529462 0.5654443 +0.5469733 0.529462 0.5654443 +0.5509339 0.529462 0.5654443 +0.5547519 0.529462 0.5654443 +0.5584371 0.529462 0.5654443 +0.5619986 0.529462 0.5654443 +0.5654443 0.529462 0.5654443 +0.5687816 0.529462 0.5654443 +0.092819 0.5341183 0.5654443 +0.2262531 0.5341183 0.5654443 +0.2875993 0.5341183 0.5654443 +0.3262122 0.5341183 0.5654443 +0.3544566 0.5341183 0.5654443 +0.3767383 0.5341183 0.5654443 +0.3951413 0.5341183 0.5654443 +0.4108177 0.5341183 0.5654443 +0.4244723 0.5341183 0.5654443 +0.4365675 0.5341183 0.5654443 +0.4474232 0.5341183 0.5654443 +0.45727 0.5341183 0.5654443 +0.4662797 0.5341183 0.5654443 +0.4745834 0.5341183 0.5654443 +0.4822838 0.5341183 0.5654443 +0.4894626 0.5341183 0.5654443 +0.4961862 0.5341183 0.5654443 +0.5025087 0.5341183 0.5654443 +0.5084753 0.5341183 0.5654443 +0.514124 0.5341183 0.5654443 +0.519487 0.5341183 0.5654443 +0.5245917 0.5341183 0.5654443 +0.529462 0.5341183 0.5654443 +0.5341183 0.5341183 0.5654443 +0.5385787 0.5341183 0.5654443 +0.5428591 0.5341183 0.5654443 +0.5469733 0.5341183 0.5654443 +0.5509339 0.5341183 0.5654443 +0.5547519 0.5341183 0.5654443 +0.5584371 0.5341183 0.5654443 +0.5619986 0.5341183 0.5654443 +0.5654443 0.5341183 0.5654443 +0.5687816 0.5341183 0.5654443 +0.092819 0.5385787 0.5654443 +0.2262531 0.5385787 0.5654443 +0.2875993 0.5385787 0.5654443 +0.3262122 0.5385787 0.5654443 +0.3544566 0.5385787 0.5654443 +0.3767383 0.5385787 0.5654443 +0.3951413 0.5385787 0.5654443 +0.4108177 0.5385787 0.5654443 +0.4244723 0.5385787 0.5654443 +0.4365675 0.5385787 0.5654443 +0.4474232 0.5385787 0.5654443 +0.45727 0.5385787 0.5654443 +0.4662797 0.5385787 0.5654443 +0.4745834 0.5385787 0.5654443 +0.4822838 0.5385787 0.5654443 +0.4894626 0.5385787 0.5654443 +0.4961862 0.5385787 0.5654443 +0.5025087 0.5385787 0.5654443 +0.5084753 0.5385787 0.5654443 +0.514124 0.5385787 0.5654443 +0.519487 0.5385787 0.5654443 +0.5245917 0.5385787 0.5654443 +0.529462 0.5385787 0.5654443 +0.5341183 0.5385787 0.5654443 +0.5385787 0.5385787 0.5654443 +0.5428591 0.5385787 0.5654443 +0.5469733 0.5385787 0.5654443 +0.5509339 0.5385787 0.5654443 +0.5547519 0.5385787 0.5654443 +0.5584371 0.5385787 0.5654443 +0.5619986 0.5385787 0.5654443 +0.5654443 0.5385787 0.5654443 +0.5687816 0.5385787 0.5654443 +0.092819 0.5428591 0.5654443 +0.2262531 0.5428591 0.5654443 +0.2875993 0.5428591 0.5654443 +0.3262122 0.5428591 0.5654443 +0.3544566 0.5428591 0.5654443 +0.3767383 0.5428591 0.5654443 +0.3951413 0.5428591 0.5654443 +0.4108177 0.5428591 0.5654443 +0.4244723 0.5428591 0.5654443 +0.4365675 0.5428591 0.5654443 +0.4474232 0.5428591 0.5654443 +0.45727 0.5428591 0.5654443 +0.4662797 0.5428591 0.5654443 +0.4745834 0.5428591 0.5654443 +0.4822838 0.5428591 0.5654443 +0.4894626 0.5428591 0.5654443 +0.4961862 0.5428591 0.5654443 +0.5025087 0.5428591 0.5654443 +0.5084753 0.5428591 0.5654443 +0.514124 0.5428591 0.5654443 +0.519487 0.5428591 0.5654443 +0.5245917 0.5428591 0.5654443 +0.529462 0.5428591 0.5654443 +0.5341183 0.5428591 0.5654443 +0.5385787 0.5428591 0.5654443 +0.5428591 0.5428591 0.5654443 +0.5469733 0.5428591 0.5654443 +0.5509339 0.5428591 0.5654443 +0.5547519 0.5428591 0.5654443 +0.5584371 0.5428591 0.5654443 +0.5619986 0.5428591 0.5654443 +0.5654443 0.5428591 0.5654443 +0.5687816 0.5428591 0.5654443 +0.092819 0.5469733 0.5654443 +0.2262531 0.5469733 0.5654443 +0.2875993 0.5469733 0.5654443 +0.3262122 0.5469733 0.5654443 +0.3544566 0.5469733 0.5654443 +0.3767383 0.5469733 0.5654443 +0.3951413 0.5469733 0.5654443 +0.4108177 0.5469733 0.5654443 +0.4244723 0.5469733 0.5654443 +0.4365675 0.5469733 0.5654443 +0.4474232 0.5469733 0.5654443 +0.45727 0.5469733 0.5654443 +0.4662797 0.5469733 0.5654443 +0.4745834 0.5469733 0.5654443 +0.4822838 0.5469733 0.5654443 +0.4894626 0.5469733 0.5654443 +0.4961862 0.5469733 0.5654443 +0.5025087 0.5469733 0.5654443 +0.5084753 0.5469733 0.5654443 +0.514124 0.5469733 0.5654443 +0.519487 0.5469733 0.5654443 +0.5245917 0.5469733 0.5654443 +0.529462 0.5469733 0.5654443 +0.5341183 0.5469733 0.5654443 +0.5385787 0.5469733 0.5654443 +0.5428591 0.5469733 0.5654443 +0.5469733 0.5469733 0.5654443 +0.5509339 0.5469733 0.5654443 +0.5547519 0.5469733 0.5654443 +0.5584371 0.5469733 0.5654443 +0.5619986 0.5469733 0.5654443 +0.5654443 0.5469733 0.5654443 +0.5687816 0.5469733 0.5654443 +0.092819 0.5509339 0.5654443 +0.2262531 0.5509339 0.5654443 +0.2875993 0.5509339 0.5654443 +0.3262122 0.5509339 0.5654443 +0.3544566 0.5509339 0.5654443 +0.3767383 0.5509339 0.5654443 +0.3951413 0.5509339 0.5654443 +0.4108177 0.5509339 0.5654443 +0.4244723 0.5509339 0.5654443 +0.4365675 0.5509339 0.5654443 +0.4474232 0.5509339 0.5654443 +0.45727 0.5509339 0.5654443 +0.4662797 0.5509339 0.5654443 +0.4745834 0.5509339 0.5654443 +0.4822838 0.5509339 0.5654443 +0.4894626 0.5509339 0.5654443 +0.4961862 0.5509339 0.5654443 +0.5025087 0.5509339 0.5654443 +0.5084753 0.5509339 0.5654443 +0.514124 0.5509339 0.5654443 +0.519487 0.5509339 0.5654443 +0.5245917 0.5509339 0.5654443 +0.529462 0.5509339 0.5654443 +0.5341183 0.5509339 0.5654443 +0.5385787 0.5509339 0.5654443 +0.5428591 0.5509339 0.5654443 +0.5469733 0.5509339 0.5654443 +0.5509339 0.5509339 0.5654443 +0.5547519 0.5509339 0.5654443 +0.5584371 0.5509339 0.5654443 +0.5619986 0.5509339 0.5654443 +0.5654443 0.5509339 0.5654443 +0.5687816 0.5509339 0.5654443 +0.092819 0.5547519 0.5654443 +0.2262531 0.5547519 0.5654443 +0.2875993 0.5547519 0.5654443 +0.3262122 0.5547519 0.5654443 +0.3544566 0.5547519 0.5654443 +0.3767383 0.5547519 0.5654443 +0.3951413 0.5547519 0.5654443 +0.4108177 0.5547519 0.5654443 +0.4244723 0.5547519 0.5654443 +0.4365675 0.5547519 0.5654443 +0.4474232 0.5547519 0.5654443 +0.45727 0.5547519 0.5654443 +0.4662797 0.5547519 0.5654443 +0.4745834 0.5547519 0.5654443 +0.4822838 0.5547519 0.5654443 +0.4894626 0.5547519 0.5654443 +0.4961862 0.5547519 0.5654443 +0.5025087 0.5547519 0.5654443 +0.5084753 0.5547519 0.5654443 +0.514124 0.5547519 0.5654443 +0.519487 0.5547519 0.5654443 +0.5245917 0.5547519 0.5654443 +0.529462 0.5547519 0.5654443 +0.5341183 0.5547519 0.5654443 +0.5385787 0.5547519 0.5654443 +0.5428591 0.5547519 0.5654443 +0.5469733 0.5547519 0.5654443 +0.5509339 0.5547519 0.5654443 +0.5547519 0.5547519 0.5654443 +0.5584371 0.5547519 0.5654443 +0.5619986 0.5547519 0.5654443 +0.5654443 0.5547519 0.5654443 +0.5687816 0.5547519 0.5654443 +0.092819 0.5584371 0.5654443 +0.2262531 0.5584371 0.5654443 +0.2875993 0.5584371 0.5654443 +0.3262122 0.5584371 0.5654443 +0.3544566 0.5584371 0.5654443 +0.3767383 0.5584371 0.5654443 +0.3951413 0.5584371 0.5654443 +0.4108177 0.5584371 0.5654443 +0.4244723 0.5584371 0.5654443 +0.4365675 0.5584371 0.5654443 +0.4474232 0.5584371 0.5654443 +0.45727 0.5584371 0.5654443 +0.4662797 0.5584371 0.5654443 +0.4745834 0.5584371 0.5654443 +0.4822838 0.5584371 0.5654443 +0.4894626 0.5584371 0.5654443 +0.4961862 0.5584371 0.5654443 +0.5025087 0.5584371 0.5654443 +0.5084753 0.5584371 0.5654443 +0.514124 0.5584371 0.5654443 +0.519487 0.5584371 0.5654443 +0.5245917 0.5584371 0.5654443 +0.529462 0.5584371 0.5654443 +0.5341183 0.5584371 0.5654443 +0.5385787 0.5584371 0.5654443 +0.5428591 0.5584371 0.5654443 +0.5469733 0.5584371 0.5654443 +0.5509339 0.5584371 0.5654443 +0.5547519 0.5584371 0.5654443 +0.5584371 0.5584371 0.5654443 +0.5619986 0.5584371 0.5654443 +0.5654443 0.5584371 0.5654443 +0.5687816 0.5584371 0.5654443 +0.092819 0.5619986 0.5654443 +0.2262531 0.5619986 0.5654443 +0.2875993 0.5619986 0.5654443 +0.3262122 0.5619986 0.5654443 +0.3544566 0.5619986 0.5654443 +0.3767383 0.5619986 0.5654443 +0.3951413 0.5619986 0.5654443 +0.4108177 0.5619986 0.5654443 +0.4244723 0.5619986 0.5654443 +0.4365675 0.5619986 0.5654443 +0.4474232 0.5619986 0.5654443 +0.45727 0.5619986 0.5654443 +0.4662797 0.5619986 0.5654443 +0.4745834 0.5619986 0.5654443 +0.4822838 0.5619986 0.5654443 +0.4894626 0.5619986 0.5654443 +0.4961862 0.5619986 0.5654443 +0.5025087 0.5619986 0.5654443 +0.5084753 0.5619986 0.5654443 +0.514124 0.5619986 0.5654443 +0.519487 0.5619986 0.5654443 +0.5245917 0.5619986 0.5654443 +0.529462 0.5619986 0.5654443 +0.5341183 0.5619986 0.5654443 +0.5385787 0.5619986 0.5654443 +0.5428591 0.5619986 0.5654443 +0.5469733 0.5619986 0.5654443 +0.5509339 0.5619986 0.5654443 +0.5547519 0.5619986 0.5654443 +0.5584371 0.5619986 0.5654443 +0.5619986 0.5619986 0.5654443 +0.5654443 0.5619986 0.5654443 +0.5687816 0.5619986 0.5654443 +0.092819 0.5654443 0.5654443 +0.2262531 0.5654443 0.5654443 +0.2875993 0.5654443 0.5654443 +0.3262122 0.5654443 0.5654443 +0.3544566 0.5654443 0.5654443 +0.3767383 0.5654443 0.5654443 +0.3951413 0.5654443 0.5654443 +0.4108177 0.5654443 0.5654443 +0.4244723 0.5654443 0.5654443 +0.4365675 0.5654443 0.5654443 +0.4474232 0.5654443 0.5654443 +0.45727 0.5654443 0.5654443 +0.4662797 0.5654443 0.5654443 +0.4745834 0.5654443 0.5654443 +0.4822838 0.5654443 0.5654443 +0.4894626 0.5654443 0.5654443 +0.4961862 0.5654443 0.5654443 +0.5025087 0.5654443 0.5654443 +0.5084753 0.5654443 0.5654443 +0.514124 0.5654443 0.5654443 +0.519487 0.5654443 0.5654443 +0.5245917 0.5654443 0.5654443 +0.529462 0.5654443 0.5654443 +0.5341183 0.5654443 0.5654443 +0.5385787 0.5654443 0.5654443 +0.5428591 0.5654443 0.5654443 +0.5469733 0.5654443 0.5654443 +0.5509339 0.5654443 0.5654443 +0.5547519 0.5654443 0.5654443 +0.5584371 0.5654443 0.5654443 +0.5619986 0.5654443 0.5654443 +0.5654443 0.5654443 0.5654443 +0.5687816 0.5654443 0.5654443 +0.092819 0.5687816 0.5654443 +0.2262531 0.5687816 0.5654443 +0.2875993 0.5687816 0.5654443 +0.3262122 0.5687816 0.5654443 +0.3544566 0.5687816 0.5654443 +0.3767383 0.5687816 0.5654443 +0.3951413 0.5687816 0.5654443 +0.4108177 0.5687816 0.5654443 +0.4244723 0.5687816 0.5654443 +0.4365675 0.5687816 0.5654443 +0.4474232 0.5687816 0.5654443 +0.45727 0.5687816 0.5654443 +0.4662797 0.5687816 0.5654443 +0.4745834 0.5687816 0.5654443 +0.4822838 0.5687816 0.5654443 +0.4894626 0.5687816 0.5654443 +0.4961862 0.5687816 0.5654443 +0.5025087 0.5687816 0.5654443 +0.5084753 0.5687816 0.5654443 +0.514124 0.5687816 0.5654443 +0.519487 0.5687816 0.5654443 +0.5245917 0.5687816 0.5654443 +0.529462 0.5687816 0.5654443 +0.5341183 0.5687816 0.5654443 +0.5385787 0.5687816 0.5654443 +0.5428591 0.5687816 0.5654443 +0.5469733 0.5687816 0.5654443 +0.5509339 0.5687816 0.5654443 +0.5547519 0.5687816 0.5654443 +0.5584371 0.5687816 0.5654443 +0.5619986 0.5687816 0.5654443 +0.5654443 0.5687816 0.5654443 +0.5687816 0.5687816 0.5654443 +0.092819 0.092819 0.5687816 +0.2262531 0.092819 0.5687816 +0.2875993 0.092819 0.5687816 +0.3262122 0.092819 0.5687816 +0.3544566 0.092819 0.5687816 +0.3767383 0.092819 0.5687816 +0.3951413 0.092819 0.5687816 +0.4108177 0.092819 0.5687816 +0.4244723 0.092819 0.5687816 +0.4365675 0.092819 0.5687816 +0.4474232 0.092819 0.5687816 +0.45727 0.092819 0.5687816 +0.4662797 0.092819 0.5687816 +0.4745834 0.092819 0.5687816 +0.4822838 0.092819 0.5687816 +0.4894626 0.092819 0.5687816 +0.4961862 0.092819 0.5687816 +0.5025087 0.092819 0.5687816 +0.5084753 0.092819 0.5687816 +0.514124 0.092819 0.5687816 +0.519487 0.092819 0.5687816 +0.5245917 0.092819 0.5687816 +0.529462 0.092819 0.5687816 +0.5341183 0.092819 0.5687816 +0.5385787 0.092819 0.5687816 +0.5428591 0.092819 0.5687816 +0.5469733 0.092819 0.5687816 +0.5509339 0.092819 0.5687816 +0.5547519 0.092819 0.5687816 +0.5584371 0.092819 0.5687816 +0.5619986 0.092819 0.5687816 +0.5654443 0.092819 0.5687816 +0.5687816 0.092819 0.5687816 +0.092819 0.2262531 0.5687816 +0.2262531 0.2262531 0.5687816 +0.2875993 0.2262531 0.5687816 +0.3262122 0.2262531 0.5687816 +0.3544566 0.2262531 0.5687816 +0.3767383 0.2262531 0.5687816 +0.3951413 0.2262531 0.5687816 +0.4108177 0.2262531 0.5687816 +0.4244723 0.2262531 0.5687816 +0.4365675 0.2262531 0.5687816 +0.4474232 0.2262531 0.5687816 +0.45727 0.2262531 0.5687816 +0.4662797 0.2262531 0.5687816 +0.4745834 0.2262531 0.5687816 +0.4822838 0.2262531 0.5687816 +0.4894626 0.2262531 0.5687816 +0.4961862 0.2262531 0.5687816 +0.5025087 0.2262531 0.5687816 +0.5084753 0.2262531 0.5687816 +0.514124 0.2262531 0.5687816 +0.519487 0.2262531 0.5687816 +0.5245917 0.2262531 0.5687816 +0.529462 0.2262531 0.5687816 +0.5341183 0.2262531 0.5687816 +0.5385787 0.2262531 0.5687816 +0.5428591 0.2262531 0.5687816 +0.5469733 0.2262531 0.5687816 +0.5509339 0.2262531 0.5687816 +0.5547519 0.2262531 0.5687816 +0.5584371 0.2262531 0.5687816 +0.5619986 0.2262531 0.5687816 +0.5654443 0.2262531 0.5687816 +0.5687816 0.2262531 0.5687816 +0.092819 0.2875993 0.5687816 +0.2262531 0.2875993 0.5687816 +0.2875993 0.2875993 0.5687816 +0.3262122 0.2875993 0.5687816 +0.3544566 0.2875993 0.5687816 +0.3767383 0.2875993 0.5687816 +0.3951413 0.2875993 0.5687816 +0.4108177 0.2875993 0.5687816 +0.4244723 0.2875993 0.5687816 +0.4365675 0.2875993 0.5687816 +0.4474232 0.2875993 0.5687816 +0.45727 0.2875993 0.5687816 +0.4662797 0.2875993 0.5687816 +0.4745834 0.2875993 0.5687816 +0.4822838 0.2875993 0.5687816 +0.4894626 0.2875993 0.5687816 +0.4961862 0.2875993 0.5687816 +0.5025087 0.2875993 0.5687816 +0.5084753 0.2875993 0.5687816 +0.514124 0.2875993 0.5687816 +0.519487 0.2875993 0.5687816 +0.5245917 0.2875993 0.5687816 +0.529462 0.2875993 0.5687816 +0.5341183 0.2875993 0.5687816 +0.5385787 0.2875993 0.5687816 +0.5428591 0.2875993 0.5687816 +0.5469733 0.2875993 0.5687816 +0.5509339 0.2875993 0.5687816 +0.5547519 0.2875993 0.5687816 +0.5584371 0.2875993 0.5687816 +0.5619986 0.2875993 0.5687816 +0.5654443 0.2875993 0.5687816 +0.5687816 0.2875993 0.5687816 +0.092819 0.3262122 0.5687816 +0.2262531 0.3262122 0.5687816 +0.2875993 0.3262122 0.5687816 +0.3262122 0.3262122 0.5687816 +0.3544566 0.3262122 0.5687816 +0.3767383 0.3262122 0.5687816 +0.3951413 0.3262122 0.5687816 +0.4108177 0.3262122 0.5687816 +0.4244723 0.3262122 0.5687816 +0.4365675 0.3262122 0.5687816 +0.4474232 0.3262122 0.5687816 +0.45727 0.3262122 0.5687816 +0.4662797 0.3262122 0.5687816 +0.4745834 0.3262122 0.5687816 +0.4822838 0.3262122 0.5687816 +0.4894626 0.3262122 0.5687816 +0.4961862 0.3262122 0.5687816 +0.5025087 0.3262122 0.5687816 +0.5084753 0.3262122 0.5687816 +0.514124 0.3262122 0.5687816 +0.519487 0.3262122 0.5687816 +0.5245917 0.3262122 0.5687816 +0.529462 0.3262122 0.5687816 +0.5341183 0.3262122 0.5687816 +0.5385787 0.3262122 0.5687816 +0.5428591 0.3262122 0.5687816 +0.5469733 0.3262122 0.5687816 +0.5509339 0.3262122 0.5687816 +0.5547519 0.3262122 0.5687816 +0.5584371 0.3262122 0.5687816 +0.5619986 0.3262122 0.5687816 +0.5654443 0.3262122 0.5687816 +0.5687816 0.3262122 0.5687816 +0.092819 0.3544566 0.5687816 +0.2262531 0.3544566 0.5687816 +0.2875993 0.3544566 0.5687816 +0.3262122 0.3544566 0.5687816 +0.3544566 0.3544566 0.5687816 +0.3767383 0.3544566 0.5687816 +0.3951413 0.3544566 0.5687816 +0.4108177 0.3544566 0.5687816 +0.4244723 0.3544566 0.5687816 +0.4365675 0.3544566 0.5687816 +0.4474232 0.3544566 0.5687816 +0.45727 0.3544566 0.5687816 +0.4662797 0.3544566 0.5687816 +0.4745834 0.3544566 0.5687816 +0.4822838 0.3544566 0.5687816 +0.4894626 0.3544566 0.5687816 +0.4961862 0.3544566 0.5687816 +0.5025087 0.3544566 0.5687816 +0.5084753 0.3544566 0.5687816 +0.514124 0.3544566 0.5687816 +0.519487 0.3544566 0.5687816 +0.5245917 0.3544566 0.5687816 +0.529462 0.3544566 0.5687816 +0.5341183 0.3544566 0.5687816 +0.5385787 0.3544566 0.5687816 +0.5428591 0.3544566 0.5687816 +0.5469733 0.3544566 0.5687816 +0.5509339 0.3544566 0.5687816 +0.5547519 0.3544566 0.5687816 +0.5584371 0.3544566 0.5687816 +0.5619986 0.3544566 0.5687816 +0.5654443 0.3544566 0.5687816 +0.5687816 0.3544566 0.5687816 +0.092819 0.3767383 0.5687816 +0.2262531 0.3767383 0.5687816 +0.2875993 0.3767383 0.5687816 +0.3262122 0.3767383 0.5687816 +0.3544566 0.3767383 0.5687816 +0.3767383 0.3767383 0.5687816 +0.3951413 0.3767383 0.5687816 +0.4108177 0.3767383 0.5687816 +0.4244723 0.3767383 0.5687816 +0.4365675 0.3767383 0.5687816 +0.4474232 0.3767383 0.5687816 +0.45727 0.3767383 0.5687816 +0.4662797 0.3767383 0.5687816 +0.4745834 0.3767383 0.5687816 +0.4822838 0.3767383 0.5687816 +0.4894626 0.3767383 0.5687816 +0.4961862 0.3767383 0.5687816 +0.5025087 0.3767383 0.5687816 +0.5084753 0.3767383 0.5687816 +0.514124 0.3767383 0.5687816 +0.519487 0.3767383 0.5687816 +0.5245917 0.3767383 0.5687816 +0.529462 0.3767383 0.5687816 +0.5341183 0.3767383 0.5687816 +0.5385787 0.3767383 0.5687816 +0.5428591 0.3767383 0.5687816 +0.5469733 0.3767383 0.5687816 +0.5509339 0.3767383 0.5687816 +0.5547519 0.3767383 0.5687816 +0.5584371 0.3767383 0.5687816 +0.5619986 0.3767383 0.5687816 +0.5654443 0.3767383 0.5687816 +0.5687816 0.3767383 0.5687816 +0.092819 0.3951413 0.5687816 +0.2262531 0.3951413 0.5687816 +0.2875993 0.3951413 0.5687816 +0.3262122 0.3951413 0.5687816 +0.3544566 0.3951413 0.5687816 +0.3767383 0.3951413 0.5687816 +0.3951413 0.3951413 0.5687816 +0.4108177 0.3951413 0.5687816 +0.4244723 0.3951413 0.5687816 +0.4365675 0.3951413 0.5687816 +0.4474232 0.3951413 0.5687816 +0.45727 0.3951413 0.5687816 +0.4662797 0.3951413 0.5687816 +0.4745834 0.3951413 0.5687816 +0.4822838 0.3951413 0.5687816 +0.4894626 0.3951413 0.5687816 +0.4961862 0.3951413 0.5687816 +0.5025087 0.3951413 0.5687816 +0.5084753 0.3951413 0.5687816 +0.514124 0.3951413 0.5687816 +0.519487 0.3951413 0.5687816 +0.5245917 0.3951413 0.5687816 +0.529462 0.3951413 0.5687816 +0.5341183 0.3951413 0.5687816 +0.5385787 0.3951413 0.5687816 +0.5428591 0.3951413 0.5687816 +0.5469733 0.3951413 0.5687816 +0.5509339 0.3951413 0.5687816 +0.5547519 0.3951413 0.5687816 +0.5584371 0.3951413 0.5687816 +0.5619986 0.3951413 0.5687816 +0.5654443 0.3951413 0.5687816 +0.5687816 0.3951413 0.5687816 +0.092819 0.4108177 0.5687816 +0.2262531 0.4108177 0.5687816 +0.2875993 0.4108177 0.5687816 +0.3262122 0.4108177 0.5687816 +0.3544566 0.4108177 0.5687816 +0.3767383 0.4108177 0.5687816 +0.3951413 0.4108177 0.5687816 +0.4108177 0.4108177 0.5687816 +0.4244723 0.4108177 0.5687816 +0.4365675 0.4108177 0.5687816 +0.4474232 0.4108177 0.5687816 +0.45727 0.4108177 0.5687816 +0.4662797 0.4108177 0.5687816 +0.4745834 0.4108177 0.5687816 +0.4822838 0.4108177 0.5687816 +0.4894626 0.4108177 0.5687816 +0.4961862 0.4108177 0.5687816 +0.5025087 0.4108177 0.5687816 +0.5084753 0.4108177 0.5687816 +0.514124 0.4108177 0.5687816 +0.519487 0.4108177 0.5687816 +0.5245917 0.4108177 0.5687816 +0.529462 0.4108177 0.5687816 +0.5341183 0.4108177 0.5687816 +0.5385787 0.4108177 0.5687816 +0.5428591 0.4108177 0.5687816 +0.5469733 0.4108177 0.5687816 +0.5509339 0.4108177 0.5687816 +0.5547519 0.4108177 0.5687816 +0.5584371 0.4108177 0.5687816 +0.5619986 0.4108177 0.5687816 +0.5654443 0.4108177 0.5687816 +0.5687816 0.4108177 0.5687816 +0.092819 0.4244723 0.5687816 +0.2262531 0.4244723 0.5687816 +0.2875993 0.4244723 0.5687816 +0.3262122 0.4244723 0.5687816 +0.3544566 0.4244723 0.5687816 +0.3767383 0.4244723 0.5687816 +0.3951413 0.4244723 0.5687816 +0.4108177 0.4244723 0.5687816 +0.4244723 0.4244723 0.5687816 +0.4365675 0.4244723 0.5687816 +0.4474232 0.4244723 0.5687816 +0.45727 0.4244723 0.5687816 +0.4662797 0.4244723 0.5687816 +0.4745834 0.4244723 0.5687816 +0.4822838 0.4244723 0.5687816 +0.4894626 0.4244723 0.5687816 +0.4961862 0.4244723 0.5687816 +0.5025087 0.4244723 0.5687816 +0.5084753 0.4244723 0.5687816 +0.514124 0.4244723 0.5687816 +0.519487 0.4244723 0.5687816 +0.5245917 0.4244723 0.5687816 +0.529462 0.4244723 0.5687816 +0.5341183 0.4244723 0.5687816 +0.5385787 0.4244723 0.5687816 +0.5428591 0.4244723 0.5687816 +0.5469733 0.4244723 0.5687816 +0.5509339 0.4244723 0.5687816 +0.5547519 0.4244723 0.5687816 +0.5584371 0.4244723 0.5687816 +0.5619986 0.4244723 0.5687816 +0.5654443 0.4244723 0.5687816 +0.5687816 0.4244723 0.5687816 +0.092819 0.4365675 0.5687816 +0.2262531 0.4365675 0.5687816 +0.2875993 0.4365675 0.5687816 +0.3262122 0.4365675 0.5687816 +0.3544566 0.4365675 0.5687816 +0.3767383 0.4365675 0.5687816 +0.3951413 0.4365675 0.5687816 +0.4108177 0.4365675 0.5687816 +0.4244723 0.4365675 0.5687816 +0.4365675 0.4365675 0.5687816 +0.4474232 0.4365675 0.5687816 +0.45727 0.4365675 0.5687816 +0.4662797 0.4365675 0.5687816 +0.4745834 0.4365675 0.5687816 +0.4822838 0.4365675 0.5687816 +0.4894626 0.4365675 0.5687816 +0.4961862 0.4365675 0.5687816 +0.5025087 0.4365675 0.5687816 +0.5084753 0.4365675 0.5687816 +0.514124 0.4365675 0.5687816 +0.519487 0.4365675 0.5687816 +0.5245917 0.4365675 0.5687816 +0.529462 0.4365675 0.5687816 +0.5341183 0.4365675 0.5687816 +0.5385787 0.4365675 0.5687816 +0.5428591 0.4365675 0.5687816 +0.5469733 0.4365675 0.5687816 +0.5509339 0.4365675 0.5687816 +0.5547519 0.4365675 0.5687816 +0.5584371 0.4365675 0.5687816 +0.5619986 0.4365675 0.5687816 +0.5654443 0.4365675 0.5687816 +0.5687816 0.4365675 0.5687816 +0.092819 0.4474232 0.5687816 +0.2262531 0.4474232 0.5687816 +0.2875993 0.4474232 0.5687816 +0.3262122 0.4474232 0.5687816 +0.3544566 0.4474232 0.5687816 +0.3767383 0.4474232 0.5687816 +0.3951413 0.4474232 0.5687816 +0.4108177 0.4474232 0.5687816 +0.4244723 0.4474232 0.5687816 +0.4365675 0.4474232 0.5687816 +0.4474232 0.4474232 0.5687816 +0.45727 0.4474232 0.5687816 +0.4662797 0.4474232 0.5687816 +0.4745834 0.4474232 0.5687816 +0.4822838 0.4474232 0.5687816 +0.4894626 0.4474232 0.5687816 +0.4961862 0.4474232 0.5687816 +0.5025087 0.4474232 0.5687816 +0.5084753 0.4474232 0.5687816 +0.514124 0.4474232 0.5687816 +0.519487 0.4474232 0.5687816 +0.5245917 0.4474232 0.5687816 +0.529462 0.4474232 0.5687816 +0.5341183 0.4474232 0.5687816 +0.5385787 0.4474232 0.5687816 +0.5428591 0.4474232 0.5687816 +0.5469733 0.4474232 0.5687816 +0.5509339 0.4474232 0.5687816 +0.5547519 0.4474232 0.5687816 +0.5584371 0.4474232 0.5687816 +0.5619986 0.4474232 0.5687816 +0.5654443 0.4474232 0.5687816 +0.5687816 0.4474232 0.5687816 +0.092819 0.45727 0.5687816 +0.2262531 0.45727 0.5687816 +0.2875993 0.45727 0.5687816 +0.3262122 0.45727 0.5687816 +0.3544566 0.45727 0.5687816 +0.3767383 0.45727 0.5687816 +0.3951413 0.45727 0.5687816 +0.4108177 0.45727 0.5687816 +0.4244723 0.45727 0.5687816 +0.4365675 0.45727 0.5687816 +0.4474232 0.45727 0.5687816 +0.45727 0.45727 0.5687816 +0.4662797 0.45727 0.5687816 +0.4745834 0.45727 0.5687816 +0.4822838 0.45727 0.5687816 +0.4894626 0.45727 0.5687816 +0.4961862 0.45727 0.5687816 +0.5025087 0.45727 0.5687816 +0.5084753 0.45727 0.5687816 +0.514124 0.45727 0.5687816 +0.519487 0.45727 0.5687816 +0.5245917 0.45727 0.5687816 +0.529462 0.45727 0.5687816 +0.5341183 0.45727 0.5687816 +0.5385787 0.45727 0.5687816 +0.5428591 0.45727 0.5687816 +0.5469733 0.45727 0.5687816 +0.5509339 0.45727 0.5687816 +0.5547519 0.45727 0.5687816 +0.5584371 0.45727 0.5687816 +0.5619986 0.45727 0.5687816 +0.5654443 0.45727 0.5687816 +0.5687816 0.45727 0.5687816 +0.092819 0.4662797 0.5687816 +0.2262531 0.4662797 0.5687816 +0.2875993 0.4662797 0.5687816 +0.3262122 0.4662797 0.5687816 +0.3544566 0.4662797 0.5687816 +0.3767383 0.4662797 0.5687816 +0.3951413 0.4662797 0.5687816 +0.4108177 0.4662797 0.5687816 +0.4244723 0.4662797 0.5687816 +0.4365675 0.4662797 0.5687816 +0.4474232 0.4662797 0.5687816 +0.45727 0.4662797 0.5687816 +0.4662797 0.4662797 0.5687816 +0.4745834 0.4662797 0.5687816 +0.4822838 0.4662797 0.5687816 +0.4894626 0.4662797 0.5687816 +0.4961862 0.4662797 0.5687816 +0.5025087 0.4662797 0.5687816 +0.5084753 0.4662797 0.5687816 +0.514124 0.4662797 0.5687816 +0.519487 0.4662797 0.5687816 +0.5245917 0.4662797 0.5687816 +0.529462 0.4662797 0.5687816 +0.5341183 0.4662797 0.5687816 +0.5385787 0.4662797 0.5687816 +0.5428591 0.4662797 0.5687816 +0.5469733 0.4662797 0.5687816 +0.5509339 0.4662797 0.5687816 +0.5547519 0.4662797 0.5687816 +0.5584371 0.4662797 0.5687816 +0.5619986 0.4662797 0.5687816 +0.5654443 0.4662797 0.5687816 +0.5687816 0.4662797 0.5687816 +0.092819 0.4745834 0.5687816 +0.2262531 0.4745834 0.5687816 +0.2875993 0.4745834 0.5687816 +0.3262122 0.4745834 0.5687816 +0.3544566 0.4745834 0.5687816 +0.3767383 0.4745834 0.5687816 +0.3951413 0.4745834 0.5687816 +0.4108177 0.4745834 0.5687816 +0.4244723 0.4745834 0.5687816 +0.4365675 0.4745834 0.5687816 +0.4474232 0.4745834 0.5687816 +0.45727 0.4745834 0.5687816 +0.4662797 0.4745834 0.5687816 +0.4745834 0.4745834 0.5687816 +0.4822838 0.4745834 0.5687816 +0.4894626 0.4745834 0.5687816 +0.4961862 0.4745834 0.5687816 +0.5025087 0.4745834 0.5687816 +0.5084753 0.4745834 0.5687816 +0.514124 0.4745834 0.5687816 +0.519487 0.4745834 0.5687816 +0.5245917 0.4745834 0.5687816 +0.529462 0.4745834 0.5687816 +0.5341183 0.4745834 0.5687816 +0.5385787 0.4745834 0.5687816 +0.5428591 0.4745834 0.5687816 +0.5469733 0.4745834 0.5687816 +0.5509339 0.4745834 0.5687816 +0.5547519 0.4745834 0.5687816 +0.5584371 0.4745834 0.5687816 +0.5619986 0.4745834 0.5687816 +0.5654443 0.4745834 0.5687816 +0.5687816 0.4745834 0.5687816 +0.092819 0.4822838 0.5687816 +0.2262531 0.4822838 0.5687816 +0.2875993 0.4822838 0.5687816 +0.3262122 0.4822838 0.5687816 +0.3544566 0.4822838 0.5687816 +0.3767383 0.4822838 0.5687816 +0.3951413 0.4822838 0.5687816 +0.4108177 0.4822838 0.5687816 +0.4244723 0.4822838 0.5687816 +0.4365675 0.4822838 0.5687816 +0.4474232 0.4822838 0.5687816 +0.45727 0.4822838 0.5687816 +0.4662797 0.4822838 0.5687816 +0.4745834 0.4822838 0.5687816 +0.4822838 0.4822838 0.5687816 +0.4894626 0.4822838 0.5687816 +0.4961862 0.4822838 0.5687816 +0.5025087 0.4822838 0.5687816 +0.5084753 0.4822838 0.5687816 +0.514124 0.4822838 0.5687816 +0.519487 0.4822838 0.5687816 +0.5245917 0.4822838 0.5687816 +0.529462 0.4822838 0.5687816 +0.5341183 0.4822838 0.5687816 +0.5385787 0.4822838 0.5687816 +0.5428591 0.4822838 0.5687816 +0.5469733 0.4822838 0.5687816 +0.5509339 0.4822838 0.5687816 +0.5547519 0.4822838 0.5687816 +0.5584371 0.4822838 0.5687816 +0.5619986 0.4822838 0.5687816 +0.5654443 0.4822838 0.5687816 +0.5687816 0.4822838 0.5687816 +0.092819 0.4894626 0.5687816 +0.2262531 0.4894626 0.5687816 +0.2875993 0.4894626 0.5687816 +0.3262122 0.4894626 0.5687816 +0.3544566 0.4894626 0.5687816 +0.3767383 0.4894626 0.5687816 +0.3951413 0.4894626 0.5687816 +0.4108177 0.4894626 0.5687816 +0.4244723 0.4894626 0.5687816 +0.4365675 0.4894626 0.5687816 +0.4474232 0.4894626 0.5687816 +0.45727 0.4894626 0.5687816 +0.4662797 0.4894626 0.5687816 +0.4745834 0.4894626 0.5687816 +0.4822838 0.4894626 0.5687816 +0.4894626 0.4894626 0.5687816 +0.4961862 0.4894626 0.5687816 +0.5025087 0.4894626 0.5687816 +0.5084753 0.4894626 0.5687816 +0.514124 0.4894626 0.5687816 +0.519487 0.4894626 0.5687816 +0.5245917 0.4894626 0.5687816 +0.529462 0.4894626 0.5687816 +0.5341183 0.4894626 0.5687816 +0.5385787 0.4894626 0.5687816 +0.5428591 0.4894626 0.5687816 +0.5469733 0.4894626 0.5687816 +0.5509339 0.4894626 0.5687816 +0.5547519 0.4894626 0.5687816 +0.5584371 0.4894626 0.5687816 +0.5619986 0.4894626 0.5687816 +0.5654443 0.4894626 0.5687816 +0.5687816 0.4894626 0.5687816 +0.092819 0.4961862 0.5687816 +0.2262531 0.4961862 0.5687816 +0.2875993 0.4961862 0.5687816 +0.3262122 0.4961862 0.5687816 +0.3544566 0.4961862 0.5687816 +0.3767383 0.4961862 0.5687816 +0.3951413 0.4961862 0.5687816 +0.4108177 0.4961862 0.5687816 +0.4244723 0.4961862 0.5687816 +0.4365675 0.4961862 0.5687816 +0.4474232 0.4961862 0.5687816 +0.45727 0.4961862 0.5687816 +0.4662797 0.4961862 0.5687816 +0.4745834 0.4961862 0.5687816 +0.4822838 0.4961862 0.5687816 +0.4894626 0.4961862 0.5687816 +0.4961862 0.4961862 0.5687816 +0.5025087 0.4961862 0.5687816 +0.5084753 0.4961862 0.5687816 +0.514124 0.4961862 0.5687816 +0.519487 0.4961862 0.5687816 +0.5245917 0.4961862 0.5687816 +0.529462 0.4961862 0.5687816 +0.5341183 0.4961862 0.5687816 +0.5385787 0.4961862 0.5687816 +0.5428591 0.4961862 0.5687816 +0.5469733 0.4961862 0.5687816 +0.5509339 0.4961862 0.5687816 +0.5547519 0.4961862 0.5687816 +0.5584371 0.4961862 0.5687816 +0.5619986 0.4961862 0.5687816 +0.5654443 0.4961862 0.5687816 +0.5687816 0.4961862 0.5687816 +0.092819 0.5025087 0.5687816 +0.2262531 0.5025087 0.5687816 +0.2875993 0.5025087 0.5687816 +0.3262122 0.5025087 0.5687816 +0.3544566 0.5025087 0.5687816 +0.3767383 0.5025087 0.5687816 +0.3951413 0.5025087 0.5687816 +0.4108177 0.5025087 0.5687816 +0.4244723 0.5025087 0.5687816 +0.4365675 0.5025087 0.5687816 +0.4474232 0.5025087 0.5687816 +0.45727 0.5025087 0.5687816 +0.4662797 0.5025087 0.5687816 +0.4745834 0.5025087 0.5687816 +0.4822838 0.5025087 0.5687816 +0.4894626 0.5025087 0.5687816 +0.4961862 0.5025087 0.5687816 +0.5025087 0.5025087 0.5687816 +0.5084753 0.5025087 0.5687816 +0.514124 0.5025087 0.5687816 +0.519487 0.5025087 0.5687816 +0.5245917 0.5025087 0.5687816 +0.529462 0.5025087 0.5687816 +0.5341183 0.5025087 0.5687816 +0.5385787 0.5025087 0.5687816 +0.5428591 0.5025087 0.5687816 +0.5469733 0.5025087 0.5687816 +0.5509339 0.5025087 0.5687816 +0.5547519 0.5025087 0.5687816 +0.5584371 0.5025087 0.5687816 +0.5619986 0.5025087 0.5687816 +0.5654443 0.5025087 0.5687816 +0.5687816 0.5025087 0.5687816 +0.092819 0.5084753 0.5687816 +0.2262531 0.5084753 0.5687816 +0.2875993 0.5084753 0.5687816 +0.3262122 0.5084753 0.5687816 +0.3544566 0.5084753 0.5687816 +0.3767383 0.5084753 0.5687816 +0.3951413 0.5084753 0.5687816 +0.4108177 0.5084753 0.5687816 +0.4244723 0.5084753 0.5687816 +0.4365675 0.5084753 0.5687816 +0.4474232 0.5084753 0.5687816 +0.45727 0.5084753 0.5687816 +0.4662797 0.5084753 0.5687816 +0.4745834 0.5084753 0.5687816 +0.4822838 0.5084753 0.5687816 +0.4894626 0.5084753 0.5687816 +0.4961862 0.5084753 0.5687816 +0.5025087 0.5084753 0.5687816 +0.5084753 0.5084753 0.5687816 +0.514124 0.5084753 0.5687816 +0.519487 0.5084753 0.5687816 +0.5245917 0.5084753 0.5687816 +0.529462 0.5084753 0.5687816 +0.5341183 0.5084753 0.5687816 +0.5385787 0.5084753 0.5687816 +0.5428591 0.5084753 0.5687816 +0.5469733 0.5084753 0.5687816 +0.5509339 0.5084753 0.5687816 +0.5547519 0.5084753 0.5687816 +0.5584371 0.5084753 0.5687816 +0.5619986 0.5084753 0.5687816 +0.5654443 0.5084753 0.5687816 +0.5687816 0.5084753 0.5687816 +0.092819 0.514124 0.5687816 +0.2262531 0.514124 0.5687816 +0.2875993 0.514124 0.5687816 +0.3262122 0.514124 0.5687816 +0.3544566 0.514124 0.5687816 +0.3767383 0.514124 0.5687816 +0.3951413 0.514124 0.5687816 +0.4108177 0.514124 0.5687816 +0.4244723 0.514124 0.5687816 +0.4365675 0.514124 0.5687816 +0.4474232 0.514124 0.5687816 +0.45727 0.514124 0.5687816 +0.4662797 0.514124 0.5687816 +0.4745834 0.514124 0.5687816 +0.4822838 0.514124 0.5687816 +0.4894626 0.514124 0.5687816 +0.4961862 0.514124 0.5687816 +0.5025087 0.514124 0.5687816 +0.5084753 0.514124 0.5687816 +0.514124 0.514124 0.5687816 +0.519487 0.514124 0.5687816 +0.5245917 0.514124 0.5687816 +0.529462 0.514124 0.5687816 +0.5341183 0.514124 0.5687816 +0.5385787 0.514124 0.5687816 +0.5428591 0.514124 0.5687816 +0.5469733 0.514124 0.5687816 +0.5509339 0.514124 0.5687816 +0.5547519 0.514124 0.5687816 +0.5584371 0.514124 0.5687816 +0.5619986 0.514124 0.5687816 +0.5654443 0.514124 0.5687816 +0.5687816 0.514124 0.5687816 +0.092819 0.519487 0.5687816 +0.2262531 0.519487 0.5687816 +0.2875993 0.519487 0.5687816 +0.3262122 0.519487 0.5687816 +0.3544566 0.519487 0.5687816 +0.3767383 0.519487 0.5687816 +0.3951413 0.519487 0.5687816 +0.4108177 0.519487 0.5687816 +0.4244723 0.519487 0.5687816 +0.4365675 0.519487 0.5687816 +0.4474232 0.519487 0.5687816 +0.45727 0.519487 0.5687816 +0.4662797 0.519487 0.5687816 +0.4745834 0.519487 0.5687816 +0.4822838 0.519487 0.5687816 +0.4894626 0.519487 0.5687816 +0.4961862 0.519487 0.5687816 +0.5025087 0.519487 0.5687816 +0.5084753 0.519487 0.5687816 +0.514124 0.519487 0.5687816 +0.519487 0.519487 0.5687816 +0.5245917 0.519487 0.5687816 +0.529462 0.519487 0.5687816 +0.5341183 0.519487 0.5687816 +0.5385787 0.519487 0.5687816 +0.5428591 0.519487 0.5687816 +0.5469733 0.519487 0.5687816 +0.5509339 0.519487 0.5687816 +0.5547519 0.519487 0.5687816 +0.5584371 0.519487 0.5687816 +0.5619986 0.519487 0.5687816 +0.5654443 0.519487 0.5687816 +0.5687816 0.519487 0.5687816 +0.092819 0.5245917 0.5687816 +0.2262531 0.5245917 0.5687816 +0.2875993 0.5245917 0.5687816 +0.3262122 0.5245917 0.5687816 +0.3544566 0.5245917 0.5687816 +0.3767383 0.5245917 0.5687816 +0.3951413 0.5245917 0.5687816 +0.4108177 0.5245917 0.5687816 +0.4244723 0.5245917 0.5687816 +0.4365675 0.5245917 0.5687816 +0.4474232 0.5245917 0.5687816 +0.45727 0.5245917 0.5687816 +0.4662797 0.5245917 0.5687816 +0.4745834 0.5245917 0.5687816 +0.4822838 0.5245917 0.5687816 +0.4894626 0.5245917 0.5687816 +0.4961862 0.5245917 0.5687816 +0.5025087 0.5245917 0.5687816 +0.5084753 0.5245917 0.5687816 +0.514124 0.5245917 0.5687816 +0.519487 0.5245917 0.5687816 +0.5245917 0.5245917 0.5687816 +0.529462 0.5245917 0.5687816 +0.5341183 0.5245917 0.5687816 +0.5385787 0.5245917 0.5687816 +0.5428591 0.5245917 0.5687816 +0.5469733 0.5245917 0.5687816 +0.5509339 0.5245917 0.5687816 +0.5547519 0.5245917 0.5687816 +0.5584371 0.5245917 0.5687816 +0.5619986 0.5245917 0.5687816 +0.5654443 0.5245917 0.5687816 +0.5687816 0.5245917 0.5687816 +0.092819 0.529462 0.5687816 +0.2262531 0.529462 0.5687816 +0.2875993 0.529462 0.5687816 +0.3262122 0.529462 0.5687816 +0.3544566 0.529462 0.5687816 +0.3767383 0.529462 0.5687816 +0.3951413 0.529462 0.5687816 +0.4108177 0.529462 0.5687816 +0.4244723 0.529462 0.5687816 +0.4365675 0.529462 0.5687816 +0.4474232 0.529462 0.5687816 +0.45727 0.529462 0.5687816 +0.4662797 0.529462 0.5687816 +0.4745834 0.529462 0.5687816 +0.4822838 0.529462 0.5687816 +0.4894626 0.529462 0.5687816 +0.4961862 0.529462 0.5687816 +0.5025087 0.529462 0.5687816 +0.5084753 0.529462 0.5687816 +0.514124 0.529462 0.5687816 +0.519487 0.529462 0.5687816 +0.5245917 0.529462 0.5687816 +0.529462 0.529462 0.5687816 +0.5341183 0.529462 0.5687816 +0.5385787 0.529462 0.5687816 +0.5428591 0.529462 0.5687816 +0.5469733 0.529462 0.5687816 +0.5509339 0.529462 0.5687816 +0.5547519 0.529462 0.5687816 +0.5584371 0.529462 0.5687816 +0.5619986 0.529462 0.5687816 +0.5654443 0.529462 0.5687816 +0.5687816 0.529462 0.5687816 +0.092819 0.5341183 0.5687816 +0.2262531 0.5341183 0.5687816 +0.2875993 0.5341183 0.5687816 +0.3262122 0.5341183 0.5687816 +0.3544566 0.5341183 0.5687816 +0.3767383 0.5341183 0.5687816 +0.3951413 0.5341183 0.5687816 +0.4108177 0.5341183 0.5687816 +0.4244723 0.5341183 0.5687816 +0.4365675 0.5341183 0.5687816 +0.4474232 0.5341183 0.5687816 +0.45727 0.5341183 0.5687816 +0.4662797 0.5341183 0.5687816 +0.4745834 0.5341183 0.5687816 +0.4822838 0.5341183 0.5687816 +0.4894626 0.5341183 0.5687816 +0.4961862 0.5341183 0.5687816 +0.5025087 0.5341183 0.5687816 +0.5084753 0.5341183 0.5687816 +0.514124 0.5341183 0.5687816 +0.519487 0.5341183 0.5687816 +0.5245917 0.5341183 0.5687816 +0.529462 0.5341183 0.5687816 +0.5341183 0.5341183 0.5687816 +0.5385787 0.5341183 0.5687816 +0.5428591 0.5341183 0.5687816 +0.5469733 0.5341183 0.5687816 +0.5509339 0.5341183 0.5687816 +0.5547519 0.5341183 0.5687816 +0.5584371 0.5341183 0.5687816 +0.5619986 0.5341183 0.5687816 +0.5654443 0.5341183 0.5687816 +0.5687816 0.5341183 0.5687816 +0.092819 0.5385787 0.5687816 +0.2262531 0.5385787 0.5687816 +0.2875993 0.5385787 0.5687816 +0.3262122 0.5385787 0.5687816 +0.3544566 0.5385787 0.5687816 +0.3767383 0.5385787 0.5687816 +0.3951413 0.5385787 0.5687816 +0.4108177 0.5385787 0.5687816 +0.4244723 0.5385787 0.5687816 +0.4365675 0.5385787 0.5687816 +0.4474232 0.5385787 0.5687816 +0.45727 0.5385787 0.5687816 +0.4662797 0.5385787 0.5687816 +0.4745834 0.5385787 0.5687816 +0.4822838 0.5385787 0.5687816 +0.4894626 0.5385787 0.5687816 +0.4961862 0.5385787 0.5687816 +0.5025087 0.5385787 0.5687816 +0.5084753 0.5385787 0.5687816 +0.514124 0.5385787 0.5687816 +0.519487 0.5385787 0.5687816 +0.5245917 0.5385787 0.5687816 +0.529462 0.5385787 0.5687816 +0.5341183 0.5385787 0.5687816 +0.5385787 0.5385787 0.5687816 +0.5428591 0.5385787 0.5687816 +0.5469733 0.5385787 0.5687816 +0.5509339 0.5385787 0.5687816 +0.5547519 0.5385787 0.5687816 +0.5584371 0.5385787 0.5687816 +0.5619986 0.5385787 0.5687816 +0.5654443 0.5385787 0.5687816 +0.5687816 0.5385787 0.5687816 +0.092819 0.5428591 0.5687816 +0.2262531 0.5428591 0.5687816 +0.2875993 0.5428591 0.5687816 +0.3262122 0.5428591 0.5687816 +0.3544566 0.5428591 0.5687816 +0.3767383 0.5428591 0.5687816 +0.3951413 0.5428591 0.5687816 +0.4108177 0.5428591 0.5687816 +0.4244723 0.5428591 0.5687816 +0.4365675 0.5428591 0.5687816 +0.4474232 0.5428591 0.5687816 +0.45727 0.5428591 0.5687816 +0.4662797 0.5428591 0.5687816 +0.4745834 0.5428591 0.5687816 +0.4822838 0.5428591 0.5687816 +0.4894626 0.5428591 0.5687816 +0.4961862 0.5428591 0.5687816 +0.5025087 0.5428591 0.5687816 +0.5084753 0.5428591 0.5687816 +0.514124 0.5428591 0.5687816 +0.519487 0.5428591 0.5687816 +0.5245917 0.5428591 0.5687816 +0.529462 0.5428591 0.5687816 +0.5341183 0.5428591 0.5687816 +0.5385787 0.5428591 0.5687816 +0.5428591 0.5428591 0.5687816 +0.5469733 0.5428591 0.5687816 +0.5509339 0.5428591 0.5687816 +0.5547519 0.5428591 0.5687816 +0.5584371 0.5428591 0.5687816 +0.5619986 0.5428591 0.5687816 +0.5654443 0.5428591 0.5687816 +0.5687816 0.5428591 0.5687816 +0.092819 0.5469733 0.5687816 +0.2262531 0.5469733 0.5687816 +0.2875993 0.5469733 0.5687816 +0.3262122 0.5469733 0.5687816 +0.3544566 0.5469733 0.5687816 +0.3767383 0.5469733 0.5687816 +0.3951413 0.5469733 0.5687816 +0.4108177 0.5469733 0.5687816 +0.4244723 0.5469733 0.5687816 +0.4365675 0.5469733 0.5687816 +0.4474232 0.5469733 0.5687816 +0.45727 0.5469733 0.5687816 +0.4662797 0.5469733 0.5687816 +0.4745834 0.5469733 0.5687816 +0.4822838 0.5469733 0.5687816 +0.4894626 0.5469733 0.5687816 +0.4961862 0.5469733 0.5687816 +0.5025087 0.5469733 0.5687816 +0.5084753 0.5469733 0.5687816 +0.514124 0.5469733 0.5687816 +0.519487 0.5469733 0.5687816 +0.5245917 0.5469733 0.5687816 +0.529462 0.5469733 0.5687816 +0.5341183 0.5469733 0.5687816 +0.5385787 0.5469733 0.5687816 +0.5428591 0.5469733 0.5687816 +0.5469733 0.5469733 0.5687816 +0.5509339 0.5469733 0.5687816 +0.5547519 0.5469733 0.5687816 +0.5584371 0.5469733 0.5687816 +0.5619986 0.5469733 0.5687816 +0.5654443 0.5469733 0.5687816 +0.5687816 0.5469733 0.5687816 +0.092819 0.5509339 0.5687816 +0.2262531 0.5509339 0.5687816 +0.2875993 0.5509339 0.5687816 +0.3262122 0.5509339 0.5687816 +0.3544566 0.5509339 0.5687816 +0.3767383 0.5509339 0.5687816 +0.3951413 0.5509339 0.5687816 +0.4108177 0.5509339 0.5687816 +0.4244723 0.5509339 0.5687816 +0.4365675 0.5509339 0.5687816 +0.4474232 0.5509339 0.5687816 +0.45727 0.5509339 0.5687816 +0.4662797 0.5509339 0.5687816 +0.4745834 0.5509339 0.5687816 +0.4822838 0.5509339 0.5687816 +0.4894626 0.5509339 0.5687816 +0.4961862 0.5509339 0.5687816 +0.5025087 0.5509339 0.5687816 +0.5084753 0.5509339 0.5687816 +0.514124 0.5509339 0.5687816 +0.519487 0.5509339 0.5687816 +0.5245917 0.5509339 0.5687816 +0.529462 0.5509339 0.5687816 +0.5341183 0.5509339 0.5687816 +0.5385787 0.5509339 0.5687816 +0.5428591 0.5509339 0.5687816 +0.5469733 0.5509339 0.5687816 +0.5509339 0.5509339 0.5687816 +0.5547519 0.5509339 0.5687816 +0.5584371 0.5509339 0.5687816 +0.5619986 0.5509339 0.5687816 +0.5654443 0.5509339 0.5687816 +0.5687816 0.5509339 0.5687816 +0.092819 0.5547519 0.5687816 +0.2262531 0.5547519 0.5687816 +0.2875993 0.5547519 0.5687816 +0.3262122 0.5547519 0.5687816 +0.3544566 0.5547519 0.5687816 +0.3767383 0.5547519 0.5687816 +0.3951413 0.5547519 0.5687816 +0.4108177 0.5547519 0.5687816 +0.4244723 0.5547519 0.5687816 +0.4365675 0.5547519 0.5687816 +0.4474232 0.5547519 0.5687816 +0.45727 0.5547519 0.5687816 +0.4662797 0.5547519 0.5687816 +0.4745834 0.5547519 0.5687816 +0.4822838 0.5547519 0.5687816 +0.4894626 0.5547519 0.5687816 +0.4961862 0.5547519 0.5687816 +0.5025087 0.5547519 0.5687816 +0.5084753 0.5547519 0.5687816 +0.514124 0.5547519 0.5687816 +0.519487 0.5547519 0.5687816 +0.5245917 0.5547519 0.5687816 +0.529462 0.5547519 0.5687816 +0.5341183 0.5547519 0.5687816 +0.5385787 0.5547519 0.5687816 +0.5428591 0.5547519 0.5687816 +0.5469733 0.5547519 0.5687816 +0.5509339 0.5547519 0.5687816 +0.5547519 0.5547519 0.5687816 +0.5584371 0.5547519 0.5687816 +0.5619986 0.5547519 0.5687816 +0.5654443 0.5547519 0.5687816 +0.5687816 0.5547519 0.5687816 +0.092819 0.5584371 0.5687816 +0.2262531 0.5584371 0.5687816 +0.2875993 0.5584371 0.5687816 +0.3262122 0.5584371 0.5687816 +0.3544566 0.5584371 0.5687816 +0.3767383 0.5584371 0.5687816 +0.3951413 0.5584371 0.5687816 +0.4108177 0.5584371 0.5687816 +0.4244723 0.5584371 0.5687816 +0.4365675 0.5584371 0.5687816 +0.4474232 0.5584371 0.5687816 +0.45727 0.5584371 0.5687816 +0.4662797 0.5584371 0.5687816 +0.4745834 0.5584371 0.5687816 +0.4822838 0.5584371 0.5687816 +0.4894626 0.5584371 0.5687816 +0.4961862 0.5584371 0.5687816 +0.5025087 0.5584371 0.5687816 +0.5084753 0.5584371 0.5687816 +0.514124 0.5584371 0.5687816 +0.519487 0.5584371 0.5687816 +0.5245917 0.5584371 0.5687816 +0.529462 0.5584371 0.5687816 +0.5341183 0.5584371 0.5687816 +0.5385787 0.5584371 0.5687816 +0.5428591 0.5584371 0.5687816 +0.5469733 0.5584371 0.5687816 +0.5509339 0.5584371 0.5687816 +0.5547519 0.5584371 0.5687816 +0.5584371 0.5584371 0.5687816 +0.5619986 0.5584371 0.5687816 +0.5654443 0.5584371 0.5687816 +0.5687816 0.5584371 0.5687816 +0.092819 0.5619986 0.5687816 +0.2262531 0.5619986 0.5687816 +0.2875993 0.5619986 0.5687816 +0.3262122 0.5619986 0.5687816 +0.3544566 0.5619986 0.5687816 +0.3767383 0.5619986 0.5687816 +0.3951413 0.5619986 0.5687816 +0.4108177 0.5619986 0.5687816 +0.4244723 0.5619986 0.5687816 +0.4365675 0.5619986 0.5687816 +0.4474232 0.5619986 0.5687816 +0.45727 0.5619986 0.5687816 +0.4662797 0.5619986 0.5687816 +0.4745834 0.5619986 0.5687816 +0.4822838 0.5619986 0.5687816 +0.4894626 0.5619986 0.5687816 +0.4961862 0.5619986 0.5687816 +0.5025087 0.5619986 0.5687816 +0.5084753 0.5619986 0.5687816 +0.514124 0.5619986 0.5687816 +0.519487 0.5619986 0.5687816 +0.5245917 0.5619986 0.5687816 +0.529462 0.5619986 0.5687816 +0.5341183 0.5619986 0.5687816 +0.5385787 0.5619986 0.5687816 +0.5428591 0.5619986 0.5687816 +0.5469733 0.5619986 0.5687816 +0.5509339 0.5619986 0.5687816 +0.5547519 0.5619986 0.5687816 +0.5584371 0.5619986 0.5687816 +0.5619986 0.5619986 0.5687816 +0.5654443 0.5619986 0.5687816 +0.5687816 0.5619986 0.5687816 +0.092819 0.5654443 0.5687816 +0.2262531 0.5654443 0.5687816 +0.2875993 0.5654443 0.5687816 +0.3262122 0.5654443 0.5687816 +0.3544566 0.5654443 0.5687816 +0.3767383 0.5654443 0.5687816 +0.3951413 0.5654443 0.5687816 +0.4108177 0.5654443 0.5687816 +0.4244723 0.5654443 0.5687816 +0.4365675 0.5654443 0.5687816 +0.4474232 0.5654443 0.5687816 +0.45727 0.5654443 0.5687816 +0.4662797 0.5654443 0.5687816 +0.4745834 0.5654443 0.5687816 +0.4822838 0.5654443 0.5687816 +0.4894626 0.5654443 0.5687816 +0.4961862 0.5654443 0.5687816 +0.5025087 0.5654443 0.5687816 +0.5084753 0.5654443 0.5687816 +0.514124 0.5654443 0.5687816 +0.519487 0.5654443 0.5687816 +0.5245917 0.5654443 0.5687816 +0.529462 0.5654443 0.5687816 +0.5341183 0.5654443 0.5687816 +0.5385787 0.5654443 0.5687816 +0.5428591 0.5654443 0.5687816 +0.5469733 0.5654443 0.5687816 +0.5509339 0.5654443 0.5687816 +0.5547519 0.5654443 0.5687816 +0.5584371 0.5654443 0.5687816 +0.5619986 0.5654443 0.5687816 +0.5654443 0.5654443 0.5687816 +0.5687816 0.5654443 0.5687816 +0.092819 0.5687816 0.5687816 +0.2262531 0.5687816 0.5687816 +0.2875993 0.5687816 0.5687816 +0.3262122 0.5687816 0.5687816 +0.3544566 0.5687816 0.5687816 +0.3767383 0.5687816 0.5687816 +0.3951413 0.5687816 0.5687816 +0.4108177 0.5687816 0.5687816 +0.4244723 0.5687816 0.5687816 +0.4365675 0.5687816 0.5687816 +0.4474232 0.5687816 0.5687816 +0.45727 0.5687816 0.5687816 +0.4662797 0.5687816 0.5687816 +0.4745834 0.5687816 0.5687816 +0.4822838 0.5687816 0.5687816 +0.4894626 0.5687816 0.5687816 +0.4961862 0.5687816 0.5687816 +0.5025087 0.5687816 0.5687816 +0.5084753 0.5687816 0.5687816 +0.514124 0.5687816 0.5687816 +0.519487 0.5687816 0.5687816 +0.5245917 0.5687816 0.5687816 +0.529462 0.5687816 0.5687816 +0.5341183 0.5687816 0.5687816 +0.5385787 0.5687816 0.5687816 +0.5428591 0.5687816 0.5687816 +0.5469733 0.5687816 0.5687816 +0.5509339 0.5687816 0.5687816 +0.5547519 0.5687816 0.5687816 +0.5584371 0.5687816 0.5687816 +0.5619986 0.5687816 0.5687816 +0.5654443 0.5687816 0.5687816 +0.5687816 0.5687816 0.5687816 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube.meta new file mode 100644 index 0000000..34a48fb --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_Unity_Log_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aaf1ed25614e1134daed0822f948ebb8 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube new file mode 100644 index 0000000..57c17db --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube @@ -0,0 +1,35941 @@ +TITLE "Linear to sRGB r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0.1939468 0 0 +0.2773041 0 0 +0.3384659 0 0 +0.3885728 0 0 +0.4317928 0 0 +0.470214 0 0 +0.5050551 0 0 +0.5370987 0 0 +0.5668815 0 0 +0.5947903 0 0 +0.6211144 0 0 +0.6460766 0 0 +0.6698526 0 0 +0.6925839 0 0 +0.7143866 0 0 +0.7353569 0 0 +0.7555758 0 0 +0.7751122 0 0 +0.7940252 0 0 +0.8123661 0 0 +0.8301795 0 0 +0.8475045 0 0 +0.8643761 0 0 +0.880825 0 0 +0.8968787 0 0 +0.9125621 0 0 +0.9278974 0 0 +0.9429048 0 0 +0.9576028 0 0 +0.9720079 0 0 +0.9861357 0 0 +1 0 0 +0 0.1939468 0 +0.1939468 0.1939468 0 +0.2773041 0.1939468 0 +0.3384659 0.1939468 0 +0.3885728 0.1939468 0 +0.4317928 0.1939468 0 +0.470214 0.1939468 0 +0.5050551 0.1939468 0 +0.5370987 0.1939468 0 +0.5668815 0.1939468 0 +0.5947903 0.1939468 0 +0.6211144 0.1939468 0 +0.6460766 0.1939468 0 +0.6698526 0.1939468 0 +0.6925839 0.1939468 0 +0.7143866 0.1939468 0 +0.7353569 0.1939468 0 +0.7555758 0.1939468 0 +0.7751122 0.1939468 0 +0.7940252 0.1939468 0 +0.8123661 0.1939468 0 +0.8301795 0.1939468 0 +0.8475045 0.1939468 0 +0.8643761 0.1939468 0 +0.880825 0.1939468 0 +0.8968787 0.1939468 0 +0.9125621 0.1939468 0 +0.9278974 0.1939468 0 +0.9429048 0.1939468 0 +0.9576028 0.1939468 0 +0.9720079 0.1939468 0 +0.9861357 0.1939468 0 +1 0.1939468 0 +0 0.2773041 0 +0.1939468 0.2773041 0 +0.2773041 0.2773041 0 +0.3384659 0.2773041 0 +0.3885728 0.2773041 0 +0.4317928 0.2773041 0 +0.470214 0.2773041 0 +0.5050551 0.2773041 0 +0.5370987 0.2773041 0 +0.5668815 0.2773041 0 +0.5947903 0.2773041 0 +0.6211144 0.2773041 0 +0.6460766 0.2773041 0 +0.6698526 0.2773041 0 +0.6925839 0.2773041 0 +0.7143866 0.2773041 0 +0.7353569 0.2773041 0 +0.7555758 0.2773041 0 +0.7751122 0.2773041 0 +0.7940252 0.2773041 0 +0.8123661 0.2773041 0 +0.8301795 0.2773041 0 +0.8475045 0.2773041 0 +0.8643761 0.2773041 0 +0.880825 0.2773041 0 +0.8968787 0.2773041 0 +0.9125621 0.2773041 0 +0.9278974 0.2773041 0 +0.9429048 0.2773041 0 +0.9576028 0.2773041 0 +0.9720079 0.2773041 0 +0.9861357 0.2773041 0 +1 0.2773041 0 +0 0.3384659 0 +0.1939468 0.3384659 0 +0.2773041 0.3384659 0 +0.3384659 0.3384659 0 +0.3885728 0.3384659 0 +0.4317928 0.3384659 0 +0.470214 0.3384659 0 +0.5050551 0.3384659 0 +0.5370987 0.3384659 0 +0.5668815 0.3384659 0 +0.5947903 0.3384659 0 +0.6211144 0.3384659 0 +0.6460766 0.3384659 0 +0.6698526 0.3384659 0 +0.6925839 0.3384659 0 +0.7143866 0.3384659 0 +0.7353569 0.3384659 0 +0.7555758 0.3384659 0 +0.7751122 0.3384659 0 +0.7940252 0.3384659 0 +0.8123661 0.3384659 0 +0.8301795 0.3384659 0 +0.8475045 0.3384659 0 +0.8643761 0.3384659 0 +0.880825 0.3384659 0 +0.8968787 0.3384659 0 +0.9125621 0.3384659 0 +0.9278974 0.3384659 0 +0.9429048 0.3384659 0 +0.9576028 0.3384659 0 +0.9720079 0.3384659 0 +0.9861357 0.3384659 0 +1 0.3384659 0 +0 0.3885728 0 +0.1939468 0.3885728 0 +0.2773041 0.3885728 0 +0.3384659 0.3885728 0 +0.3885728 0.3885728 0 +0.4317928 0.3885728 0 +0.470214 0.3885728 0 +0.5050551 0.3885728 0 +0.5370987 0.3885728 0 +0.5668815 0.3885728 0 +0.5947903 0.3885728 0 +0.6211144 0.3885728 0 +0.6460766 0.3885728 0 +0.6698526 0.3885728 0 +0.6925839 0.3885728 0 +0.7143866 0.3885728 0 +0.7353569 0.3885728 0 +0.7555758 0.3885728 0 +0.7751122 0.3885728 0 +0.7940252 0.3885728 0 +0.8123661 0.3885728 0 +0.8301795 0.3885728 0 +0.8475045 0.3885728 0 +0.8643761 0.3885728 0 +0.880825 0.3885728 0 +0.8968787 0.3885728 0 +0.9125621 0.3885728 0 +0.9278974 0.3885728 0 +0.9429048 0.3885728 0 +0.9576028 0.3885728 0 +0.9720079 0.3885728 0 +0.9861357 0.3885728 0 +1 0.3885728 0 +0 0.4317928 0 +0.1939468 0.4317928 0 +0.2773041 0.4317928 0 +0.3384659 0.4317928 0 +0.3885728 0.4317928 0 +0.4317928 0.4317928 0 +0.470214 0.4317928 0 +0.5050551 0.4317928 0 +0.5370987 0.4317928 0 +0.5668815 0.4317928 0 +0.5947903 0.4317928 0 +0.6211144 0.4317928 0 +0.6460766 0.4317928 0 +0.6698526 0.4317928 0 +0.6925839 0.4317928 0 +0.7143866 0.4317928 0 +0.7353569 0.4317928 0 +0.7555758 0.4317928 0 +0.7751122 0.4317928 0 +0.7940252 0.4317928 0 +0.8123661 0.4317928 0 +0.8301795 0.4317928 0 +0.8475045 0.4317928 0 +0.8643761 0.4317928 0 +0.880825 0.4317928 0 +0.8968787 0.4317928 0 +0.9125621 0.4317928 0 +0.9278974 0.4317928 0 +0.9429048 0.4317928 0 +0.9576028 0.4317928 0 +0.9720079 0.4317928 0 +0.9861357 0.4317928 0 +1 0.4317928 0 +0 0.470214 0 +0.1939468 0.470214 0 +0.2773041 0.470214 0 +0.3384659 0.470214 0 +0.3885728 0.470214 0 +0.4317928 0.470214 0 +0.470214 0.470214 0 +0.5050551 0.470214 0 +0.5370987 0.470214 0 +0.5668815 0.470214 0 +0.5947903 0.470214 0 +0.6211144 0.470214 0 +0.6460766 0.470214 0 +0.6698526 0.470214 0 +0.6925839 0.470214 0 +0.7143866 0.470214 0 +0.7353569 0.470214 0 +0.7555758 0.470214 0 +0.7751122 0.470214 0 +0.7940252 0.470214 0 +0.8123661 0.470214 0 +0.8301795 0.470214 0 +0.8475045 0.470214 0 +0.8643761 0.470214 0 +0.880825 0.470214 0 +0.8968787 0.470214 0 +0.9125621 0.470214 0 +0.9278974 0.470214 0 +0.9429048 0.470214 0 +0.9576028 0.470214 0 +0.9720079 0.470214 0 +0.9861357 0.470214 0 +1 0.470214 0 +0 0.5050551 0 +0.1939468 0.5050551 0 +0.2773041 0.5050551 0 +0.3384659 0.5050551 0 +0.3885728 0.5050551 0 +0.4317928 0.5050551 0 +0.470214 0.5050551 0 +0.5050551 0.5050551 0 +0.5370987 0.5050551 0 +0.5668815 0.5050551 0 +0.5947903 0.5050551 0 +0.6211144 0.5050551 0 +0.6460766 0.5050551 0 +0.6698526 0.5050551 0 +0.6925839 0.5050551 0 +0.7143866 0.5050551 0 +0.7353569 0.5050551 0 +0.7555758 0.5050551 0 +0.7751122 0.5050551 0 +0.7940252 0.5050551 0 +0.8123661 0.5050551 0 +0.8301795 0.5050551 0 +0.8475045 0.5050551 0 +0.8643761 0.5050551 0 +0.880825 0.5050551 0 +0.8968787 0.5050551 0 +0.9125621 0.5050551 0 +0.9278974 0.5050551 0 +0.9429048 0.5050551 0 +0.9576028 0.5050551 0 +0.9720079 0.5050551 0 +0.9861357 0.5050551 0 +1 0.5050551 0 +0 0.5370987 0 +0.1939468 0.5370987 0 +0.2773041 0.5370987 0 +0.3384659 0.5370987 0 +0.3885728 0.5370987 0 +0.4317928 0.5370987 0 +0.470214 0.5370987 0 +0.5050551 0.5370987 0 +0.5370987 0.5370987 0 +0.5668815 0.5370987 0 +0.5947903 0.5370987 0 +0.6211144 0.5370987 0 +0.6460766 0.5370987 0 +0.6698526 0.5370987 0 +0.6925839 0.5370987 0 +0.7143866 0.5370987 0 +0.7353569 0.5370987 0 +0.7555758 0.5370987 0 +0.7751122 0.5370987 0 +0.7940252 0.5370987 0 +0.8123661 0.5370987 0 +0.8301795 0.5370987 0 +0.8475045 0.5370987 0 +0.8643761 0.5370987 0 +0.880825 0.5370987 0 +0.8968787 0.5370987 0 +0.9125621 0.5370987 0 +0.9278974 0.5370987 0 +0.9429048 0.5370987 0 +0.9576028 0.5370987 0 +0.9720079 0.5370987 0 +0.9861357 0.5370987 0 +1 0.5370987 0 +0 0.5668815 0 +0.1939468 0.5668815 0 +0.2773041 0.5668815 0 +0.3384659 0.5668815 0 +0.3885728 0.5668815 0 +0.4317928 0.5668815 0 +0.470214 0.5668815 0 +0.5050551 0.5668815 0 +0.5370987 0.5668815 0 +0.5668815 0.5668815 0 +0.5947903 0.5668815 0 +0.6211144 0.5668815 0 +0.6460766 0.5668815 0 +0.6698526 0.5668815 0 +0.6925839 0.5668815 0 +0.7143866 0.5668815 0 +0.7353569 0.5668815 0 +0.7555758 0.5668815 0 +0.7751122 0.5668815 0 +0.7940252 0.5668815 0 +0.8123661 0.5668815 0 +0.8301795 0.5668815 0 +0.8475045 0.5668815 0 +0.8643761 0.5668815 0 +0.880825 0.5668815 0 +0.8968787 0.5668815 0 +0.9125621 0.5668815 0 +0.9278974 0.5668815 0 +0.9429048 0.5668815 0 +0.9576028 0.5668815 0 +0.9720079 0.5668815 0 +0.9861357 0.5668815 0 +1 0.5668815 0 +0 0.5947903 0 +0.1939468 0.5947903 0 +0.2773041 0.5947903 0 +0.3384659 0.5947903 0 +0.3885728 0.5947903 0 +0.4317928 0.5947903 0 +0.470214 0.5947903 0 +0.5050551 0.5947903 0 +0.5370987 0.5947903 0 +0.5668815 0.5947903 0 +0.5947903 0.5947903 0 +0.6211144 0.5947903 0 +0.6460766 0.5947903 0 +0.6698526 0.5947903 0 +0.6925839 0.5947903 0 +0.7143866 0.5947903 0 +0.7353569 0.5947903 0 +0.7555758 0.5947903 0 +0.7751122 0.5947903 0 +0.7940252 0.5947903 0 +0.8123661 0.5947903 0 +0.8301795 0.5947903 0 +0.8475045 0.5947903 0 +0.8643761 0.5947903 0 +0.880825 0.5947903 0 +0.8968787 0.5947903 0 +0.9125621 0.5947903 0 +0.9278974 0.5947903 0 +0.9429048 0.5947903 0 +0.9576028 0.5947903 0 +0.9720079 0.5947903 0 +0.9861357 0.5947903 0 +1 0.5947903 0 +0 0.6211144 0 +0.1939468 0.6211144 0 +0.2773041 0.6211144 0 +0.3384659 0.6211144 0 +0.3885728 0.6211144 0 +0.4317928 0.6211144 0 +0.470214 0.6211144 0 +0.5050551 0.6211144 0 +0.5370987 0.6211144 0 +0.5668815 0.6211144 0 +0.5947903 0.6211144 0 +0.6211144 0.6211144 0 +0.6460766 0.6211144 0 +0.6698526 0.6211144 0 +0.6925839 0.6211144 0 +0.7143866 0.6211144 0 +0.7353569 0.6211144 0 +0.7555758 0.6211144 0 +0.7751122 0.6211144 0 +0.7940252 0.6211144 0 +0.8123661 0.6211144 0 +0.8301795 0.6211144 0 +0.8475045 0.6211144 0 +0.8643761 0.6211144 0 +0.880825 0.6211144 0 +0.8968787 0.6211144 0 +0.9125621 0.6211144 0 +0.9278974 0.6211144 0 +0.9429048 0.6211144 0 +0.9576028 0.6211144 0 +0.9720079 0.6211144 0 +0.9861357 0.6211144 0 +1 0.6211144 0 +0 0.6460766 0 +0.1939468 0.6460766 0 +0.2773041 0.6460766 0 +0.3384659 0.6460766 0 +0.3885728 0.6460766 0 +0.4317928 0.6460766 0 +0.470214 0.6460766 0 +0.5050551 0.6460766 0 +0.5370987 0.6460766 0 +0.5668815 0.6460766 0 +0.5947903 0.6460766 0 +0.6211144 0.6460766 0 +0.6460766 0.6460766 0 +0.6698526 0.6460766 0 +0.6925839 0.6460766 0 +0.7143866 0.6460766 0 +0.7353569 0.6460766 0 +0.7555758 0.6460766 0 +0.7751122 0.6460766 0 +0.7940252 0.6460766 0 +0.8123661 0.6460766 0 +0.8301795 0.6460766 0 +0.8475045 0.6460766 0 +0.8643761 0.6460766 0 +0.880825 0.6460766 0 +0.8968787 0.6460766 0 +0.9125621 0.6460766 0 +0.9278974 0.6460766 0 +0.9429048 0.6460766 0 +0.9576028 0.6460766 0 +0.9720079 0.6460766 0 +0.9861357 0.6460766 0 +1 0.6460766 0 +0 0.6698526 0 +0.1939468 0.6698526 0 +0.2773041 0.6698526 0 +0.3384659 0.6698526 0 +0.3885728 0.6698526 0 +0.4317928 0.6698526 0 +0.470214 0.6698526 0 +0.5050551 0.6698526 0 +0.5370987 0.6698526 0 +0.5668815 0.6698526 0 +0.5947903 0.6698526 0 +0.6211144 0.6698526 0 +0.6460766 0.6698526 0 +0.6698526 0.6698526 0 +0.6925839 0.6698526 0 +0.7143866 0.6698526 0 +0.7353569 0.6698526 0 +0.7555758 0.6698526 0 +0.7751122 0.6698526 0 +0.7940252 0.6698526 0 +0.8123661 0.6698526 0 +0.8301795 0.6698526 0 +0.8475045 0.6698526 0 +0.8643761 0.6698526 0 +0.880825 0.6698526 0 +0.8968787 0.6698526 0 +0.9125621 0.6698526 0 +0.9278974 0.6698526 0 +0.9429048 0.6698526 0 +0.9576028 0.6698526 0 +0.9720079 0.6698526 0 +0.9861357 0.6698526 0 +1 0.6698526 0 +0 0.6925839 0 +0.1939468 0.6925839 0 +0.2773041 0.6925839 0 +0.3384659 0.6925839 0 +0.3885728 0.6925839 0 +0.4317928 0.6925839 0 +0.470214 0.6925839 0 +0.5050551 0.6925839 0 +0.5370987 0.6925839 0 +0.5668815 0.6925839 0 +0.5947903 0.6925839 0 +0.6211144 0.6925839 0 +0.6460766 0.6925839 0 +0.6698526 0.6925839 0 +0.6925839 0.6925839 0 +0.7143866 0.6925839 0 +0.7353569 0.6925839 0 +0.7555758 0.6925839 0 +0.7751122 0.6925839 0 +0.7940252 0.6925839 0 +0.8123661 0.6925839 0 +0.8301795 0.6925839 0 +0.8475045 0.6925839 0 +0.8643761 0.6925839 0 +0.880825 0.6925839 0 +0.8968787 0.6925839 0 +0.9125621 0.6925839 0 +0.9278974 0.6925839 0 +0.9429048 0.6925839 0 +0.9576028 0.6925839 0 +0.9720079 0.6925839 0 +0.9861357 0.6925839 0 +1 0.6925839 0 +0 0.7143866 0 +0.1939468 0.7143866 0 +0.2773041 0.7143866 0 +0.3384659 0.7143866 0 +0.3885728 0.7143866 0 +0.4317928 0.7143866 0 +0.470214 0.7143866 0 +0.5050551 0.7143866 0 +0.5370987 0.7143866 0 +0.5668815 0.7143866 0 +0.5947903 0.7143866 0 +0.6211144 0.7143866 0 +0.6460766 0.7143866 0 +0.6698526 0.7143866 0 +0.6925839 0.7143866 0 +0.7143866 0.7143866 0 +0.7353569 0.7143866 0 +0.7555758 0.7143866 0 +0.7751122 0.7143866 0 +0.7940252 0.7143866 0 +0.8123661 0.7143866 0 +0.8301795 0.7143866 0 +0.8475045 0.7143866 0 +0.8643761 0.7143866 0 +0.880825 0.7143866 0 +0.8968787 0.7143866 0 +0.9125621 0.7143866 0 +0.9278974 0.7143866 0 +0.9429048 0.7143866 0 +0.9576028 0.7143866 0 +0.9720079 0.7143866 0 +0.9861357 0.7143866 0 +1 0.7143866 0 +0 0.7353569 0 +0.1939468 0.7353569 0 +0.2773041 0.7353569 0 +0.3384659 0.7353569 0 +0.3885728 0.7353569 0 +0.4317928 0.7353569 0 +0.470214 0.7353569 0 +0.5050551 0.7353569 0 +0.5370987 0.7353569 0 +0.5668815 0.7353569 0 +0.5947903 0.7353569 0 +0.6211144 0.7353569 0 +0.6460766 0.7353569 0 +0.6698526 0.7353569 0 +0.6925839 0.7353569 0 +0.7143866 0.7353569 0 +0.7353569 0.7353569 0 +0.7555758 0.7353569 0 +0.7751122 0.7353569 0 +0.7940252 0.7353569 0 +0.8123661 0.7353569 0 +0.8301795 0.7353569 0 +0.8475045 0.7353569 0 +0.8643761 0.7353569 0 +0.880825 0.7353569 0 +0.8968787 0.7353569 0 +0.9125621 0.7353569 0 +0.9278974 0.7353569 0 +0.9429048 0.7353569 0 +0.9576028 0.7353569 0 +0.9720079 0.7353569 0 +0.9861357 0.7353569 0 +1 0.7353569 0 +0 0.7555758 0 +0.1939468 0.7555758 0 +0.2773041 0.7555758 0 +0.3384659 0.7555758 0 +0.3885728 0.7555758 0 +0.4317928 0.7555758 0 +0.470214 0.7555758 0 +0.5050551 0.7555758 0 +0.5370987 0.7555758 0 +0.5668815 0.7555758 0 +0.5947903 0.7555758 0 +0.6211144 0.7555758 0 +0.6460766 0.7555758 0 +0.6698526 0.7555758 0 +0.6925839 0.7555758 0 +0.7143866 0.7555758 0 +0.7353569 0.7555758 0 +0.7555758 0.7555758 0 +0.7751122 0.7555758 0 +0.7940252 0.7555758 0 +0.8123661 0.7555758 0 +0.8301795 0.7555758 0 +0.8475045 0.7555758 0 +0.8643761 0.7555758 0 +0.880825 0.7555758 0 +0.8968787 0.7555758 0 +0.9125621 0.7555758 0 +0.9278974 0.7555758 0 +0.9429048 0.7555758 0 +0.9576028 0.7555758 0 +0.9720079 0.7555758 0 +0.9861357 0.7555758 0 +1 0.7555758 0 +0 0.7751122 0 +0.1939468 0.7751122 0 +0.2773041 0.7751122 0 +0.3384659 0.7751122 0 +0.3885728 0.7751122 0 +0.4317928 0.7751122 0 +0.470214 0.7751122 0 +0.5050551 0.7751122 0 +0.5370987 0.7751122 0 +0.5668815 0.7751122 0 +0.5947903 0.7751122 0 +0.6211144 0.7751122 0 +0.6460766 0.7751122 0 +0.6698526 0.7751122 0 +0.6925839 0.7751122 0 +0.7143866 0.7751122 0 +0.7353569 0.7751122 0 +0.7555758 0.7751122 0 +0.7751122 0.7751122 0 +0.7940252 0.7751122 0 +0.8123661 0.7751122 0 +0.8301795 0.7751122 0 +0.8475045 0.7751122 0 +0.8643761 0.7751122 0 +0.880825 0.7751122 0 +0.8968787 0.7751122 0 +0.9125621 0.7751122 0 +0.9278974 0.7751122 0 +0.9429048 0.7751122 0 +0.9576028 0.7751122 0 +0.9720079 0.7751122 0 +0.9861357 0.7751122 0 +1 0.7751122 0 +0 0.7940252 0 +0.1939468 0.7940252 0 +0.2773041 0.7940252 0 +0.3384659 0.7940252 0 +0.3885728 0.7940252 0 +0.4317928 0.7940252 0 +0.470214 0.7940252 0 +0.5050551 0.7940252 0 +0.5370987 0.7940252 0 +0.5668815 0.7940252 0 +0.5947903 0.7940252 0 +0.6211144 0.7940252 0 +0.6460766 0.7940252 0 +0.6698526 0.7940252 0 +0.6925839 0.7940252 0 +0.7143866 0.7940252 0 +0.7353569 0.7940252 0 +0.7555758 0.7940252 0 +0.7751122 0.7940252 0 +0.7940252 0.7940252 0 +0.8123661 0.7940252 0 +0.8301795 0.7940252 0 +0.8475045 0.7940252 0 +0.8643761 0.7940252 0 +0.880825 0.7940252 0 +0.8968787 0.7940252 0 +0.9125621 0.7940252 0 +0.9278974 0.7940252 0 +0.9429048 0.7940252 0 +0.9576028 0.7940252 0 +0.9720079 0.7940252 0 +0.9861357 0.7940252 0 +1 0.7940252 0 +0 0.8123661 0 +0.1939468 0.8123661 0 +0.2773041 0.8123661 0 +0.3384659 0.8123661 0 +0.3885728 0.8123661 0 +0.4317928 0.8123661 0 +0.470214 0.8123661 0 +0.5050551 0.8123661 0 +0.5370987 0.8123661 0 +0.5668815 0.8123661 0 +0.5947903 0.8123661 0 +0.6211144 0.8123661 0 +0.6460766 0.8123661 0 +0.6698526 0.8123661 0 +0.6925839 0.8123661 0 +0.7143866 0.8123661 0 +0.7353569 0.8123661 0 +0.7555758 0.8123661 0 +0.7751122 0.8123661 0 +0.7940252 0.8123661 0 +0.8123661 0.8123661 0 +0.8301795 0.8123661 0 +0.8475045 0.8123661 0 +0.8643761 0.8123661 0 +0.880825 0.8123661 0 +0.8968787 0.8123661 0 +0.9125621 0.8123661 0 +0.9278974 0.8123661 0 +0.9429048 0.8123661 0 +0.9576028 0.8123661 0 +0.9720079 0.8123661 0 +0.9861357 0.8123661 0 +1 0.8123661 0 +0 0.8301795 0 +0.1939468 0.8301795 0 +0.2773041 0.8301795 0 +0.3384659 0.8301795 0 +0.3885728 0.8301795 0 +0.4317928 0.8301795 0 +0.470214 0.8301795 0 +0.5050551 0.8301795 0 +0.5370987 0.8301795 0 +0.5668815 0.8301795 0 +0.5947903 0.8301795 0 +0.6211144 0.8301795 0 +0.6460766 0.8301795 0 +0.6698526 0.8301795 0 +0.6925839 0.8301795 0 +0.7143866 0.8301795 0 +0.7353569 0.8301795 0 +0.7555758 0.8301795 0 +0.7751122 0.8301795 0 +0.7940252 0.8301795 0 +0.8123661 0.8301795 0 +0.8301795 0.8301795 0 +0.8475045 0.8301795 0 +0.8643761 0.8301795 0 +0.880825 0.8301795 0 +0.8968787 0.8301795 0 +0.9125621 0.8301795 0 +0.9278974 0.8301795 0 +0.9429048 0.8301795 0 +0.9576028 0.8301795 0 +0.9720079 0.8301795 0 +0.9861357 0.8301795 0 +1 0.8301795 0 +0 0.8475045 0 +0.1939468 0.8475045 0 +0.2773041 0.8475045 0 +0.3384659 0.8475045 0 +0.3885728 0.8475045 0 +0.4317928 0.8475045 0 +0.470214 0.8475045 0 +0.5050551 0.8475045 0 +0.5370987 0.8475045 0 +0.5668815 0.8475045 0 +0.5947903 0.8475045 0 +0.6211144 0.8475045 0 +0.6460766 0.8475045 0 +0.6698526 0.8475045 0 +0.6925839 0.8475045 0 +0.7143866 0.8475045 0 +0.7353569 0.8475045 0 +0.7555758 0.8475045 0 +0.7751122 0.8475045 0 +0.7940252 0.8475045 0 +0.8123661 0.8475045 0 +0.8301795 0.8475045 0 +0.8475045 0.8475045 0 +0.8643761 0.8475045 0 +0.880825 0.8475045 0 +0.8968787 0.8475045 0 +0.9125621 0.8475045 0 +0.9278974 0.8475045 0 +0.9429048 0.8475045 0 +0.9576028 0.8475045 0 +0.9720079 0.8475045 0 +0.9861357 0.8475045 0 +1 0.8475045 0 +0 0.8643761 0 +0.1939468 0.8643761 0 +0.2773041 0.8643761 0 +0.3384659 0.8643761 0 +0.3885728 0.8643761 0 +0.4317928 0.8643761 0 +0.470214 0.8643761 0 +0.5050551 0.8643761 0 +0.5370987 0.8643761 0 +0.5668815 0.8643761 0 +0.5947903 0.8643761 0 +0.6211144 0.8643761 0 +0.6460766 0.8643761 0 +0.6698526 0.8643761 0 +0.6925839 0.8643761 0 +0.7143866 0.8643761 0 +0.7353569 0.8643761 0 +0.7555758 0.8643761 0 +0.7751122 0.8643761 0 +0.7940252 0.8643761 0 +0.8123661 0.8643761 0 +0.8301795 0.8643761 0 +0.8475045 0.8643761 0 +0.8643761 0.8643761 0 +0.880825 0.8643761 0 +0.8968787 0.8643761 0 +0.9125621 0.8643761 0 +0.9278974 0.8643761 0 +0.9429048 0.8643761 0 +0.9576028 0.8643761 0 +0.9720079 0.8643761 0 +0.9861357 0.8643761 0 +1 0.8643761 0 +0 0.880825 0 +0.1939468 0.880825 0 +0.2773041 0.880825 0 +0.3384659 0.880825 0 +0.3885728 0.880825 0 +0.4317928 0.880825 0 +0.470214 0.880825 0 +0.5050551 0.880825 0 +0.5370987 0.880825 0 +0.5668815 0.880825 0 +0.5947903 0.880825 0 +0.6211144 0.880825 0 +0.6460766 0.880825 0 +0.6698526 0.880825 0 +0.6925839 0.880825 0 +0.7143866 0.880825 0 +0.7353569 0.880825 0 +0.7555758 0.880825 0 +0.7751122 0.880825 0 +0.7940252 0.880825 0 +0.8123661 0.880825 0 +0.8301795 0.880825 0 +0.8475045 0.880825 0 +0.8643761 0.880825 0 +0.880825 0.880825 0 +0.8968787 0.880825 0 +0.9125621 0.880825 0 +0.9278974 0.880825 0 +0.9429048 0.880825 0 +0.9576028 0.880825 0 +0.9720079 0.880825 0 +0.9861357 0.880825 0 +1 0.880825 0 +0 0.8968787 0 +0.1939468 0.8968787 0 +0.2773041 0.8968787 0 +0.3384659 0.8968787 0 +0.3885728 0.8968787 0 +0.4317928 0.8968787 0 +0.470214 0.8968787 0 +0.5050551 0.8968787 0 +0.5370987 0.8968787 0 +0.5668815 0.8968787 0 +0.5947903 0.8968787 0 +0.6211144 0.8968787 0 +0.6460766 0.8968787 0 +0.6698526 0.8968787 0 +0.6925839 0.8968787 0 +0.7143866 0.8968787 0 +0.7353569 0.8968787 0 +0.7555758 0.8968787 0 +0.7751122 0.8968787 0 +0.7940252 0.8968787 0 +0.8123661 0.8968787 0 +0.8301795 0.8968787 0 +0.8475045 0.8968787 0 +0.8643761 0.8968787 0 +0.880825 0.8968787 0 +0.8968787 0.8968787 0 +0.9125621 0.8968787 0 +0.9278974 0.8968787 0 +0.9429048 0.8968787 0 +0.9576028 0.8968787 0 +0.9720079 0.8968787 0 +0.9861357 0.8968787 0 +1 0.8968787 0 +0 0.9125621 0 +0.1939468 0.9125621 0 +0.2773041 0.9125621 0 +0.3384659 0.9125621 0 +0.3885728 0.9125621 0 +0.4317928 0.9125621 0 +0.470214 0.9125621 0 +0.5050551 0.9125621 0 +0.5370987 0.9125621 0 +0.5668815 0.9125621 0 +0.5947903 0.9125621 0 +0.6211144 0.9125621 0 +0.6460766 0.9125621 0 +0.6698526 0.9125621 0 +0.6925839 0.9125621 0 +0.7143866 0.9125621 0 +0.7353569 0.9125621 0 +0.7555758 0.9125621 0 +0.7751122 0.9125621 0 +0.7940252 0.9125621 0 +0.8123661 0.9125621 0 +0.8301795 0.9125621 0 +0.8475045 0.9125621 0 +0.8643761 0.9125621 0 +0.880825 0.9125621 0 +0.8968787 0.9125621 0 +0.9125621 0.9125621 0 +0.9278974 0.9125621 0 +0.9429048 0.9125621 0 +0.9576028 0.9125621 0 +0.9720079 0.9125621 0 +0.9861357 0.9125621 0 +1 0.9125621 0 +0 0.9278974 0 +0.1939468 0.9278974 0 +0.2773041 0.9278974 0 +0.3384659 0.9278974 0 +0.3885728 0.9278974 0 +0.4317928 0.9278974 0 +0.470214 0.9278974 0 +0.5050551 0.9278974 0 +0.5370987 0.9278974 0 +0.5668815 0.9278974 0 +0.5947903 0.9278974 0 +0.6211144 0.9278974 0 +0.6460766 0.9278974 0 +0.6698526 0.9278974 0 +0.6925839 0.9278974 0 +0.7143866 0.9278974 0 +0.7353569 0.9278974 0 +0.7555758 0.9278974 0 +0.7751122 0.9278974 0 +0.7940252 0.9278974 0 +0.8123661 0.9278974 0 +0.8301795 0.9278974 0 +0.8475045 0.9278974 0 +0.8643761 0.9278974 0 +0.880825 0.9278974 0 +0.8968787 0.9278974 0 +0.9125621 0.9278974 0 +0.9278974 0.9278974 0 +0.9429048 0.9278974 0 +0.9576028 0.9278974 0 +0.9720079 0.9278974 0 +0.9861357 0.9278974 0 +1 0.9278974 0 +0 0.9429048 0 +0.1939468 0.9429048 0 +0.2773041 0.9429048 0 +0.3384659 0.9429048 0 +0.3885728 0.9429048 0 +0.4317928 0.9429048 0 +0.470214 0.9429048 0 +0.5050551 0.9429048 0 +0.5370987 0.9429048 0 +0.5668815 0.9429048 0 +0.5947903 0.9429048 0 +0.6211144 0.9429048 0 +0.6460766 0.9429048 0 +0.6698526 0.9429048 0 +0.6925839 0.9429048 0 +0.7143866 0.9429048 0 +0.7353569 0.9429048 0 +0.7555758 0.9429048 0 +0.7751122 0.9429048 0 +0.7940252 0.9429048 0 +0.8123661 0.9429048 0 +0.8301795 0.9429048 0 +0.8475045 0.9429048 0 +0.8643761 0.9429048 0 +0.880825 0.9429048 0 +0.8968787 0.9429048 0 +0.9125621 0.9429048 0 +0.9278974 0.9429048 0 +0.9429048 0.9429048 0 +0.9576028 0.9429048 0 +0.9720079 0.9429048 0 +0.9861357 0.9429048 0 +1 0.9429048 0 +0 0.9576028 0 +0.1939468 0.9576028 0 +0.2773041 0.9576028 0 +0.3384659 0.9576028 0 +0.3885728 0.9576028 0 +0.4317928 0.9576028 0 +0.470214 0.9576028 0 +0.5050551 0.9576028 0 +0.5370987 0.9576028 0 +0.5668815 0.9576028 0 +0.5947903 0.9576028 0 +0.6211144 0.9576028 0 +0.6460766 0.9576028 0 +0.6698526 0.9576028 0 +0.6925839 0.9576028 0 +0.7143866 0.9576028 0 +0.7353569 0.9576028 0 +0.7555758 0.9576028 0 +0.7751122 0.9576028 0 +0.7940252 0.9576028 0 +0.8123661 0.9576028 0 +0.8301795 0.9576028 0 +0.8475045 0.9576028 0 +0.8643761 0.9576028 0 +0.880825 0.9576028 0 +0.8968787 0.9576028 0 +0.9125621 0.9576028 0 +0.9278974 0.9576028 0 +0.9429048 0.9576028 0 +0.9576028 0.9576028 0 +0.9720079 0.9576028 0 +0.9861357 0.9576028 0 +1 0.9576028 0 +0 0.9720079 0 +0.1939468 0.9720079 0 +0.2773041 0.9720079 0 +0.3384659 0.9720079 0 +0.3885728 0.9720079 0 +0.4317928 0.9720079 0 +0.470214 0.9720079 0 +0.5050551 0.9720079 0 +0.5370987 0.9720079 0 +0.5668815 0.9720079 0 +0.5947903 0.9720079 0 +0.6211144 0.9720079 0 +0.6460766 0.9720079 0 +0.6698526 0.9720079 0 +0.6925839 0.9720079 0 +0.7143866 0.9720079 0 +0.7353569 0.9720079 0 +0.7555758 0.9720079 0 +0.7751122 0.9720079 0 +0.7940252 0.9720079 0 +0.8123661 0.9720079 0 +0.8301795 0.9720079 0 +0.8475045 0.9720079 0 +0.8643761 0.9720079 0 +0.880825 0.9720079 0 +0.8968787 0.9720079 0 +0.9125621 0.9720079 0 +0.9278974 0.9720079 0 +0.9429048 0.9720079 0 +0.9576028 0.9720079 0 +0.9720079 0.9720079 0 +0.9861357 0.9720079 0 +1 0.9720079 0 +0 0.9861357 0 +0.1939468 0.9861357 0 +0.2773041 0.9861357 0 +0.3384659 0.9861357 0 +0.3885728 0.9861357 0 +0.4317928 0.9861357 0 +0.470214 0.9861357 0 +0.5050551 0.9861357 0 +0.5370987 0.9861357 0 +0.5668815 0.9861357 0 +0.5947903 0.9861357 0 +0.6211144 0.9861357 0 +0.6460766 0.9861357 0 +0.6698526 0.9861357 0 +0.6925839 0.9861357 0 +0.7143866 0.9861357 0 +0.7353569 0.9861357 0 +0.7555758 0.9861357 0 +0.7751122 0.9861357 0 +0.7940252 0.9861357 0 +0.8123661 0.9861357 0 +0.8301795 0.9861357 0 +0.8475045 0.9861357 0 +0.8643761 0.9861357 0 +0.880825 0.9861357 0 +0.8968787 0.9861357 0 +0.9125621 0.9861357 0 +0.9278974 0.9861357 0 +0.9429048 0.9861357 0 +0.9576028 0.9861357 0 +0.9720079 0.9861357 0 +0.9861357 0.9861357 0 +1 0.9861357 0 +0 1 0 +0.1939468 1 0 +0.2773041 1 0 +0.3384659 1 0 +0.3885728 1 0 +0.4317928 1 0 +0.470214 1 0 +0.5050551 1 0 +0.5370987 1 0 +0.5668815 1 0 +0.5947903 1 0 +0.6211144 1 0 +0.6460766 1 0 +0.6698526 1 0 +0.6925839 1 0 +0.7143866 1 0 +0.7353569 1 0 +0.7555758 1 0 +0.7751122 1 0 +0.7940252 1 0 +0.8123661 1 0 +0.8301795 1 0 +0.8475045 1 0 +0.8643761 1 0 +0.880825 1 0 +0.8968787 1 0 +0.9125621 1 0 +0.9278974 1 0 +0.9429048 1 0 +0.9576028 1 0 +0.9720079 1 0 +0.9861357 1 0 +1 1 0 +0 0 0.1939468 +0.1939468 0 0.1939468 +0.2773041 0 0.1939468 +0.3384659 0 0.1939468 +0.3885728 0 0.1939468 +0.4317928 0 0.1939468 +0.470214 0 0.1939468 +0.5050551 0 0.1939468 +0.5370987 0 0.1939468 +0.5668815 0 0.1939468 +0.5947903 0 0.1939468 +0.6211144 0 0.1939468 +0.6460766 0 0.1939468 +0.6698526 0 0.1939468 +0.6925839 0 0.1939468 +0.7143866 0 0.1939468 +0.7353569 0 0.1939468 +0.7555758 0 0.1939468 +0.7751122 0 0.1939468 +0.7940252 0 0.1939468 +0.8123661 0 0.1939468 +0.8301795 0 0.1939468 +0.8475045 0 0.1939468 +0.8643761 0 0.1939468 +0.880825 0 0.1939468 +0.8968787 0 0.1939468 +0.9125621 0 0.1939468 +0.9278974 0 0.1939468 +0.9429048 0 0.1939468 +0.9576028 0 0.1939468 +0.9720079 0 0.1939468 +0.9861357 0 0.1939468 +1 0 0.1939468 +0 0.1939468 0.1939468 +0.1939468 0.1939468 0.1939468 +0.2773041 0.1939468 0.1939468 +0.3384659 0.1939468 0.1939468 +0.3885728 0.1939468 0.1939468 +0.4317928 0.1939468 0.1939468 +0.470214 0.1939468 0.1939468 +0.5050551 0.1939468 0.1939468 +0.5370987 0.1939468 0.1939468 +0.5668815 0.1939468 0.1939468 +0.5947903 0.1939468 0.1939468 +0.6211144 0.1939468 0.1939468 +0.6460766 0.1939468 0.1939468 +0.6698526 0.1939468 0.1939468 +0.6925839 0.1939468 0.1939468 +0.7143866 0.1939468 0.1939468 +0.7353569 0.1939468 0.1939468 +0.7555758 0.1939468 0.1939468 +0.7751122 0.1939468 0.1939468 +0.7940252 0.1939468 0.1939468 +0.8123661 0.1939468 0.1939468 +0.8301795 0.1939468 0.1939468 +0.8475045 0.1939468 0.1939468 +0.8643761 0.1939468 0.1939468 +0.880825 0.1939468 0.1939468 +0.8968787 0.1939468 0.1939468 +0.9125621 0.1939468 0.1939468 +0.9278974 0.1939468 0.1939468 +0.9429048 0.1939468 0.1939468 +0.9576028 0.1939468 0.1939468 +0.9720079 0.1939468 0.1939468 +0.9861357 0.1939468 0.1939468 +1 0.1939468 0.1939468 +0 0.2773041 0.1939468 +0.1939468 0.2773041 0.1939468 +0.2773041 0.2773041 0.1939468 +0.3384659 0.2773041 0.1939468 +0.3885728 0.2773041 0.1939468 +0.4317928 0.2773041 0.1939468 +0.470214 0.2773041 0.1939468 +0.5050551 0.2773041 0.1939468 +0.5370987 0.2773041 0.1939468 +0.5668815 0.2773041 0.1939468 +0.5947903 0.2773041 0.1939468 +0.6211144 0.2773041 0.1939468 +0.6460766 0.2773041 0.1939468 +0.6698526 0.2773041 0.1939468 +0.6925839 0.2773041 0.1939468 +0.7143866 0.2773041 0.1939468 +0.7353569 0.2773041 0.1939468 +0.7555758 0.2773041 0.1939468 +0.7751122 0.2773041 0.1939468 +0.7940252 0.2773041 0.1939468 +0.8123661 0.2773041 0.1939468 +0.8301795 0.2773041 0.1939468 +0.8475045 0.2773041 0.1939468 +0.8643761 0.2773041 0.1939468 +0.880825 0.2773041 0.1939468 +0.8968787 0.2773041 0.1939468 +0.9125621 0.2773041 0.1939468 +0.9278974 0.2773041 0.1939468 +0.9429048 0.2773041 0.1939468 +0.9576028 0.2773041 0.1939468 +0.9720079 0.2773041 0.1939468 +0.9861357 0.2773041 0.1939468 +1 0.2773041 0.1939468 +0 0.3384659 0.1939468 +0.1939468 0.3384659 0.1939468 +0.2773041 0.3384659 0.1939468 +0.3384659 0.3384659 0.1939468 +0.3885728 0.3384659 0.1939468 +0.4317928 0.3384659 0.1939468 +0.470214 0.3384659 0.1939468 +0.5050551 0.3384659 0.1939468 +0.5370987 0.3384659 0.1939468 +0.5668815 0.3384659 0.1939468 +0.5947903 0.3384659 0.1939468 +0.6211144 0.3384659 0.1939468 +0.6460766 0.3384659 0.1939468 +0.6698526 0.3384659 0.1939468 +0.6925839 0.3384659 0.1939468 +0.7143866 0.3384659 0.1939468 +0.7353569 0.3384659 0.1939468 +0.7555758 0.3384659 0.1939468 +0.7751122 0.3384659 0.1939468 +0.7940252 0.3384659 0.1939468 +0.8123661 0.3384659 0.1939468 +0.8301795 0.3384659 0.1939468 +0.8475045 0.3384659 0.1939468 +0.8643761 0.3384659 0.1939468 +0.880825 0.3384659 0.1939468 +0.8968787 0.3384659 0.1939468 +0.9125621 0.3384659 0.1939468 +0.9278974 0.3384659 0.1939468 +0.9429048 0.3384659 0.1939468 +0.9576028 0.3384659 0.1939468 +0.9720079 0.3384659 0.1939468 +0.9861357 0.3384659 0.1939468 +1 0.3384659 0.1939468 +0 0.3885728 0.1939468 +0.1939468 0.3885728 0.1939468 +0.2773041 0.3885728 0.1939468 +0.3384659 0.3885728 0.1939468 +0.3885728 0.3885728 0.1939468 +0.4317928 0.3885728 0.1939468 +0.470214 0.3885728 0.1939468 +0.5050551 0.3885728 0.1939468 +0.5370987 0.3885728 0.1939468 +0.5668815 0.3885728 0.1939468 +0.5947903 0.3885728 0.1939468 +0.6211144 0.3885728 0.1939468 +0.6460766 0.3885728 0.1939468 +0.6698526 0.3885728 0.1939468 +0.6925839 0.3885728 0.1939468 +0.7143866 0.3885728 0.1939468 +0.7353569 0.3885728 0.1939468 +0.7555758 0.3885728 0.1939468 +0.7751122 0.3885728 0.1939468 +0.7940252 0.3885728 0.1939468 +0.8123661 0.3885728 0.1939468 +0.8301795 0.3885728 0.1939468 +0.8475045 0.3885728 0.1939468 +0.8643761 0.3885728 0.1939468 +0.880825 0.3885728 0.1939468 +0.8968787 0.3885728 0.1939468 +0.9125621 0.3885728 0.1939468 +0.9278974 0.3885728 0.1939468 +0.9429048 0.3885728 0.1939468 +0.9576028 0.3885728 0.1939468 +0.9720079 0.3885728 0.1939468 +0.9861357 0.3885728 0.1939468 +1 0.3885728 0.1939468 +0 0.4317928 0.1939468 +0.1939468 0.4317928 0.1939468 +0.2773041 0.4317928 0.1939468 +0.3384659 0.4317928 0.1939468 +0.3885728 0.4317928 0.1939468 +0.4317928 0.4317928 0.1939468 +0.470214 0.4317928 0.1939468 +0.5050551 0.4317928 0.1939468 +0.5370987 0.4317928 0.1939468 +0.5668815 0.4317928 0.1939468 +0.5947903 0.4317928 0.1939468 +0.6211144 0.4317928 0.1939468 +0.6460766 0.4317928 0.1939468 +0.6698526 0.4317928 0.1939468 +0.6925839 0.4317928 0.1939468 +0.7143866 0.4317928 0.1939468 +0.7353569 0.4317928 0.1939468 +0.7555758 0.4317928 0.1939468 +0.7751122 0.4317928 0.1939468 +0.7940252 0.4317928 0.1939468 +0.8123661 0.4317928 0.1939468 +0.8301795 0.4317928 0.1939468 +0.8475045 0.4317928 0.1939468 +0.8643761 0.4317928 0.1939468 +0.880825 0.4317928 0.1939468 +0.8968787 0.4317928 0.1939468 +0.9125621 0.4317928 0.1939468 +0.9278974 0.4317928 0.1939468 +0.9429048 0.4317928 0.1939468 +0.9576028 0.4317928 0.1939468 +0.9720079 0.4317928 0.1939468 +0.9861357 0.4317928 0.1939468 +1 0.4317928 0.1939468 +0 0.470214 0.1939468 +0.1939468 0.470214 0.1939468 +0.2773041 0.470214 0.1939468 +0.3384659 0.470214 0.1939468 +0.3885728 0.470214 0.1939468 +0.4317928 0.470214 0.1939468 +0.470214 0.470214 0.1939468 +0.5050551 0.470214 0.1939468 +0.5370987 0.470214 0.1939468 +0.5668815 0.470214 0.1939468 +0.5947903 0.470214 0.1939468 +0.6211144 0.470214 0.1939468 +0.6460766 0.470214 0.1939468 +0.6698526 0.470214 0.1939468 +0.6925839 0.470214 0.1939468 +0.7143866 0.470214 0.1939468 +0.7353569 0.470214 0.1939468 +0.7555758 0.470214 0.1939468 +0.7751122 0.470214 0.1939468 +0.7940252 0.470214 0.1939468 +0.8123661 0.470214 0.1939468 +0.8301795 0.470214 0.1939468 +0.8475045 0.470214 0.1939468 +0.8643761 0.470214 0.1939468 +0.880825 0.470214 0.1939468 +0.8968787 0.470214 0.1939468 +0.9125621 0.470214 0.1939468 +0.9278974 0.470214 0.1939468 +0.9429048 0.470214 0.1939468 +0.9576028 0.470214 0.1939468 +0.9720079 0.470214 0.1939468 +0.9861357 0.470214 0.1939468 +1 0.470214 0.1939468 +0 0.5050551 0.1939468 +0.1939468 0.5050551 0.1939468 +0.2773041 0.5050551 0.1939468 +0.3384659 0.5050551 0.1939468 +0.3885728 0.5050551 0.1939468 +0.4317928 0.5050551 0.1939468 +0.470214 0.5050551 0.1939468 +0.5050551 0.5050551 0.1939468 +0.5370987 0.5050551 0.1939468 +0.5668815 0.5050551 0.1939468 +0.5947903 0.5050551 0.1939468 +0.6211144 0.5050551 0.1939468 +0.6460766 0.5050551 0.1939468 +0.6698526 0.5050551 0.1939468 +0.6925839 0.5050551 0.1939468 +0.7143866 0.5050551 0.1939468 +0.7353569 0.5050551 0.1939468 +0.7555758 0.5050551 0.1939468 +0.7751122 0.5050551 0.1939468 +0.7940252 0.5050551 0.1939468 +0.8123661 0.5050551 0.1939468 +0.8301795 0.5050551 0.1939468 +0.8475045 0.5050551 0.1939468 +0.8643761 0.5050551 0.1939468 +0.880825 0.5050551 0.1939468 +0.8968787 0.5050551 0.1939468 +0.9125621 0.5050551 0.1939468 +0.9278974 0.5050551 0.1939468 +0.9429048 0.5050551 0.1939468 +0.9576028 0.5050551 0.1939468 +0.9720079 0.5050551 0.1939468 +0.9861357 0.5050551 0.1939468 +1 0.5050551 0.1939468 +0 0.5370987 0.1939468 +0.1939468 0.5370987 0.1939468 +0.2773041 0.5370987 0.1939468 +0.3384659 0.5370987 0.1939468 +0.3885728 0.5370987 0.1939468 +0.4317928 0.5370987 0.1939468 +0.470214 0.5370987 0.1939468 +0.5050551 0.5370987 0.1939468 +0.5370987 0.5370987 0.1939468 +0.5668815 0.5370987 0.1939468 +0.5947903 0.5370987 0.1939468 +0.6211144 0.5370987 0.1939468 +0.6460766 0.5370987 0.1939468 +0.6698526 0.5370987 0.1939468 +0.6925839 0.5370987 0.1939468 +0.7143866 0.5370987 0.1939468 +0.7353569 0.5370987 0.1939468 +0.7555758 0.5370987 0.1939468 +0.7751122 0.5370987 0.1939468 +0.7940252 0.5370987 0.1939468 +0.8123661 0.5370987 0.1939468 +0.8301795 0.5370987 0.1939468 +0.8475045 0.5370987 0.1939468 +0.8643761 0.5370987 0.1939468 +0.880825 0.5370987 0.1939468 +0.8968787 0.5370987 0.1939468 +0.9125621 0.5370987 0.1939468 +0.9278974 0.5370987 0.1939468 +0.9429048 0.5370987 0.1939468 +0.9576028 0.5370987 0.1939468 +0.9720079 0.5370987 0.1939468 +0.9861357 0.5370987 0.1939468 +1 0.5370987 0.1939468 +0 0.5668815 0.1939468 +0.1939468 0.5668815 0.1939468 +0.2773041 0.5668815 0.1939468 +0.3384659 0.5668815 0.1939468 +0.3885728 0.5668815 0.1939468 +0.4317928 0.5668815 0.1939468 +0.470214 0.5668815 0.1939468 +0.5050551 0.5668815 0.1939468 +0.5370987 0.5668815 0.1939468 +0.5668815 0.5668815 0.1939468 +0.5947903 0.5668815 0.1939468 +0.6211144 0.5668815 0.1939468 +0.6460766 0.5668815 0.1939468 +0.6698526 0.5668815 0.1939468 +0.6925839 0.5668815 0.1939468 +0.7143866 0.5668815 0.1939468 +0.7353569 0.5668815 0.1939468 +0.7555758 0.5668815 0.1939468 +0.7751122 0.5668815 0.1939468 +0.7940252 0.5668815 0.1939468 +0.8123661 0.5668815 0.1939468 +0.8301795 0.5668815 0.1939468 +0.8475045 0.5668815 0.1939468 +0.8643761 0.5668815 0.1939468 +0.880825 0.5668815 0.1939468 +0.8968787 0.5668815 0.1939468 +0.9125621 0.5668815 0.1939468 +0.9278974 0.5668815 0.1939468 +0.9429048 0.5668815 0.1939468 +0.9576028 0.5668815 0.1939468 +0.9720079 0.5668815 0.1939468 +0.9861357 0.5668815 0.1939468 +1 0.5668815 0.1939468 +0 0.5947903 0.1939468 +0.1939468 0.5947903 0.1939468 +0.2773041 0.5947903 0.1939468 +0.3384659 0.5947903 0.1939468 +0.3885728 0.5947903 0.1939468 +0.4317928 0.5947903 0.1939468 +0.470214 0.5947903 0.1939468 +0.5050551 0.5947903 0.1939468 +0.5370987 0.5947903 0.1939468 +0.5668815 0.5947903 0.1939468 +0.5947903 0.5947903 0.1939468 +0.6211144 0.5947903 0.1939468 +0.6460766 0.5947903 0.1939468 +0.6698526 0.5947903 0.1939468 +0.6925839 0.5947903 0.1939468 +0.7143866 0.5947903 0.1939468 +0.7353569 0.5947903 0.1939468 +0.7555758 0.5947903 0.1939468 +0.7751122 0.5947903 0.1939468 +0.7940252 0.5947903 0.1939468 +0.8123661 0.5947903 0.1939468 +0.8301795 0.5947903 0.1939468 +0.8475045 0.5947903 0.1939468 +0.8643761 0.5947903 0.1939468 +0.880825 0.5947903 0.1939468 +0.8968787 0.5947903 0.1939468 +0.9125621 0.5947903 0.1939468 +0.9278974 0.5947903 0.1939468 +0.9429048 0.5947903 0.1939468 +0.9576028 0.5947903 0.1939468 +0.9720079 0.5947903 0.1939468 +0.9861357 0.5947903 0.1939468 +1 0.5947903 0.1939468 +0 0.6211144 0.1939468 +0.1939468 0.6211144 0.1939468 +0.2773041 0.6211144 0.1939468 +0.3384659 0.6211144 0.1939468 +0.3885728 0.6211144 0.1939468 +0.4317928 0.6211144 0.1939468 +0.470214 0.6211144 0.1939468 +0.5050551 0.6211144 0.1939468 +0.5370987 0.6211144 0.1939468 +0.5668815 0.6211144 0.1939468 +0.5947903 0.6211144 0.1939468 +0.6211144 0.6211144 0.1939468 +0.6460766 0.6211144 0.1939468 +0.6698526 0.6211144 0.1939468 +0.6925839 0.6211144 0.1939468 +0.7143866 0.6211144 0.1939468 +0.7353569 0.6211144 0.1939468 +0.7555758 0.6211144 0.1939468 +0.7751122 0.6211144 0.1939468 +0.7940252 0.6211144 0.1939468 +0.8123661 0.6211144 0.1939468 +0.8301795 0.6211144 0.1939468 +0.8475045 0.6211144 0.1939468 +0.8643761 0.6211144 0.1939468 +0.880825 0.6211144 0.1939468 +0.8968787 0.6211144 0.1939468 +0.9125621 0.6211144 0.1939468 +0.9278974 0.6211144 0.1939468 +0.9429048 0.6211144 0.1939468 +0.9576028 0.6211144 0.1939468 +0.9720079 0.6211144 0.1939468 +0.9861357 0.6211144 0.1939468 +1 0.6211144 0.1939468 +0 0.6460766 0.1939468 +0.1939468 0.6460766 0.1939468 +0.2773041 0.6460766 0.1939468 +0.3384659 0.6460766 0.1939468 +0.3885728 0.6460766 0.1939468 +0.4317928 0.6460766 0.1939468 +0.470214 0.6460766 0.1939468 +0.5050551 0.6460766 0.1939468 +0.5370987 0.6460766 0.1939468 +0.5668815 0.6460766 0.1939468 +0.5947903 0.6460766 0.1939468 +0.6211144 0.6460766 0.1939468 +0.6460766 0.6460766 0.1939468 +0.6698526 0.6460766 0.1939468 +0.6925839 0.6460766 0.1939468 +0.7143866 0.6460766 0.1939468 +0.7353569 0.6460766 0.1939468 +0.7555758 0.6460766 0.1939468 +0.7751122 0.6460766 0.1939468 +0.7940252 0.6460766 0.1939468 +0.8123661 0.6460766 0.1939468 +0.8301795 0.6460766 0.1939468 +0.8475045 0.6460766 0.1939468 +0.8643761 0.6460766 0.1939468 +0.880825 0.6460766 0.1939468 +0.8968787 0.6460766 0.1939468 +0.9125621 0.6460766 0.1939468 +0.9278974 0.6460766 0.1939468 +0.9429048 0.6460766 0.1939468 +0.9576028 0.6460766 0.1939468 +0.9720079 0.6460766 0.1939468 +0.9861357 0.6460766 0.1939468 +1 0.6460766 0.1939468 +0 0.6698526 0.1939468 +0.1939468 0.6698526 0.1939468 +0.2773041 0.6698526 0.1939468 +0.3384659 0.6698526 0.1939468 +0.3885728 0.6698526 0.1939468 +0.4317928 0.6698526 0.1939468 +0.470214 0.6698526 0.1939468 +0.5050551 0.6698526 0.1939468 +0.5370987 0.6698526 0.1939468 +0.5668815 0.6698526 0.1939468 +0.5947903 0.6698526 0.1939468 +0.6211144 0.6698526 0.1939468 +0.6460766 0.6698526 0.1939468 +0.6698526 0.6698526 0.1939468 +0.6925839 0.6698526 0.1939468 +0.7143866 0.6698526 0.1939468 +0.7353569 0.6698526 0.1939468 +0.7555758 0.6698526 0.1939468 +0.7751122 0.6698526 0.1939468 +0.7940252 0.6698526 0.1939468 +0.8123661 0.6698526 0.1939468 +0.8301795 0.6698526 0.1939468 +0.8475045 0.6698526 0.1939468 +0.8643761 0.6698526 0.1939468 +0.880825 0.6698526 0.1939468 +0.8968787 0.6698526 0.1939468 +0.9125621 0.6698526 0.1939468 +0.9278974 0.6698526 0.1939468 +0.9429048 0.6698526 0.1939468 +0.9576028 0.6698526 0.1939468 +0.9720079 0.6698526 0.1939468 +0.9861357 0.6698526 0.1939468 +1 0.6698526 0.1939468 +0 0.6925839 0.1939468 +0.1939468 0.6925839 0.1939468 +0.2773041 0.6925839 0.1939468 +0.3384659 0.6925839 0.1939468 +0.3885728 0.6925839 0.1939468 +0.4317928 0.6925839 0.1939468 +0.470214 0.6925839 0.1939468 +0.5050551 0.6925839 0.1939468 +0.5370987 0.6925839 0.1939468 +0.5668815 0.6925839 0.1939468 +0.5947903 0.6925839 0.1939468 +0.6211144 0.6925839 0.1939468 +0.6460766 0.6925839 0.1939468 +0.6698526 0.6925839 0.1939468 +0.6925839 0.6925839 0.1939468 +0.7143866 0.6925839 0.1939468 +0.7353569 0.6925839 0.1939468 +0.7555758 0.6925839 0.1939468 +0.7751122 0.6925839 0.1939468 +0.7940252 0.6925839 0.1939468 +0.8123661 0.6925839 0.1939468 +0.8301795 0.6925839 0.1939468 +0.8475045 0.6925839 0.1939468 +0.8643761 0.6925839 0.1939468 +0.880825 0.6925839 0.1939468 +0.8968787 0.6925839 0.1939468 +0.9125621 0.6925839 0.1939468 +0.9278974 0.6925839 0.1939468 +0.9429048 0.6925839 0.1939468 +0.9576028 0.6925839 0.1939468 +0.9720079 0.6925839 0.1939468 +0.9861357 0.6925839 0.1939468 +1 0.6925839 0.1939468 +0 0.7143866 0.1939468 +0.1939468 0.7143866 0.1939468 +0.2773041 0.7143866 0.1939468 +0.3384659 0.7143866 0.1939468 +0.3885728 0.7143866 0.1939468 +0.4317928 0.7143866 0.1939468 +0.470214 0.7143866 0.1939468 +0.5050551 0.7143866 0.1939468 +0.5370987 0.7143866 0.1939468 +0.5668815 0.7143866 0.1939468 +0.5947903 0.7143866 0.1939468 +0.6211144 0.7143866 0.1939468 +0.6460766 0.7143866 0.1939468 +0.6698526 0.7143866 0.1939468 +0.6925839 0.7143866 0.1939468 +0.7143866 0.7143866 0.1939468 +0.7353569 0.7143866 0.1939468 +0.7555758 0.7143866 0.1939468 +0.7751122 0.7143866 0.1939468 +0.7940252 0.7143866 0.1939468 +0.8123661 0.7143866 0.1939468 +0.8301795 0.7143866 0.1939468 +0.8475045 0.7143866 0.1939468 +0.8643761 0.7143866 0.1939468 +0.880825 0.7143866 0.1939468 +0.8968787 0.7143866 0.1939468 +0.9125621 0.7143866 0.1939468 +0.9278974 0.7143866 0.1939468 +0.9429048 0.7143866 0.1939468 +0.9576028 0.7143866 0.1939468 +0.9720079 0.7143866 0.1939468 +0.9861357 0.7143866 0.1939468 +1 0.7143866 0.1939468 +0 0.7353569 0.1939468 +0.1939468 0.7353569 0.1939468 +0.2773041 0.7353569 0.1939468 +0.3384659 0.7353569 0.1939468 +0.3885728 0.7353569 0.1939468 +0.4317928 0.7353569 0.1939468 +0.470214 0.7353569 0.1939468 +0.5050551 0.7353569 0.1939468 +0.5370987 0.7353569 0.1939468 +0.5668815 0.7353569 0.1939468 +0.5947903 0.7353569 0.1939468 +0.6211144 0.7353569 0.1939468 +0.6460766 0.7353569 0.1939468 +0.6698526 0.7353569 0.1939468 +0.6925839 0.7353569 0.1939468 +0.7143866 0.7353569 0.1939468 +0.7353569 0.7353569 0.1939468 +0.7555758 0.7353569 0.1939468 +0.7751122 0.7353569 0.1939468 +0.7940252 0.7353569 0.1939468 +0.8123661 0.7353569 0.1939468 +0.8301795 0.7353569 0.1939468 +0.8475045 0.7353569 0.1939468 +0.8643761 0.7353569 0.1939468 +0.880825 0.7353569 0.1939468 +0.8968787 0.7353569 0.1939468 +0.9125621 0.7353569 0.1939468 +0.9278974 0.7353569 0.1939468 +0.9429048 0.7353569 0.1939468 +0.9576028 0.7353569 0.1939468 +0.9720079 0.7353569 0.1939468 +0.9861357 0.7353569 0.1939468 +1 0.7353569 0.1939468 +0 0.7555758 0.1939468 +0.1939468 0.7555758 0.1939468 +0.2773041 0.7555758 0.1939468 +0.3384659 0.7555758 0.1939468 +0.3885728 0.7555758 0.1939468 +0.4317928 0.7555758 0.1939468 +0.470214 0.7555758 0.1939468 +0.5050551 0.7555758 0.1939468 +0.5370987 0.7555758 0.1939468 +0.5668815 0.7555758 0.1939468 +0.5947903 0.7555758 0.1939468 +0.6211144 0.7555758 0.1939468 +0.6460766 0.7555758 0.1939468 +0.6698526 0.7555758 0.1939468 +0.6925839 0.7555758 0.1939468 +0.7143866 0.7555758 0.1939468 +0.7353569 0.7555758 0.1939468 +0.7555758 0.7555758 0.1939468 +0.7751122 0.7555758 0.1939468 +0.7940252 0.7555758 0.1939468 +0.8123661 0.7555758 0.1939468 +0.8301795 0.7555758 0.1939468 +0.8475045 0.7555758 0.1939468 +0.8643761 0.7555758 0.1939468 +0.880825 0.7555758 0.1939468 +0.8968787 0.7555758 0.1939468 +0.9125621 0.7555758 0.1939468 +0.9278974 0.7555758 0.1939468 +0.9429048 0.7555758 0.1939468 +0.9576028 0.7555758 0.1939468 +0.9720079 0.7555758 0.1939468 +0.9861357 0.7555758 0.1939468 +1 0.7555758 0.1939468 +0 0.7751122 0.1939468 +0.1939468 0.7751122 0.1939468 +0.2773041 0.7751122 0.1939468 +0.3384659 0.7751122 0.1939468 +0.3885728 0.7751122 0.1939468 +0.4317928 0.7751122 0.1939468 +0.470214 0.7751122 0.1939468 +0.5050551 0.7751122 0.1939468 +0.5370987 0.7751122 0.1939468 +0.5668815 0.7751122 0.1939468 +0.5947903 0.7751122 0.1939468 +0.6211144 0.7751122 0.1939468 +0.6460766 0.7751122 0.1939468 +0.6698526 0.7751122 0.1939468 +0.6925839 0.7751122 0.1939468 +0.7143866 0.7751122 0.1939468 +0.7353569 0.7751122 0.1939468 +0.7555758 0.7751122 0.1939468 +0.7751122 0.7751122 0.1939468 +0.7940252 0.7751122 0.1939468 +0.8123661 0.7751122 0.1939468 +0.8301795 0.7751122 0.1939468 +0.8475045 0.7751122 0.1939468 +0.8643761 0.7751122 0.1939468 +0.880825 0.7751122 0.1939468 +0.8968787 0.7751122 0.1939468 +0.9125621 0.7751122 0.1939468 +0.9278974 0.7751122 0.1939468 +0.9429048 0.7751122 0.1939468 +0.9576028 0.7751122 0.1939468 +0.9720079 0.7751122 0.1939468 +0.9861357 0.7751122 0.1939468 +1 0.7751122 0.1939468 +0 0.7940252 0.1939468 +0.1939468 0.7940252 0.1939468 +0.2773041 0.7940252 0.1939468 +0.3384659 0.7940252 0.1939468 +0.3885728 0.7940252 0.1939468 +0.4317928 0.7940252 0.1939468 +0.470214 0.7940252 0.1939468 +0.5050551 0.7940252 0.1939468 +0.5370987 0.7940252 0.1939468 +0.5668815 0.7940252 0.1939468 +0.5947903 0.7940252 0.1939468 +0.6211144 0.7940252 0.1939468 +0.6460766 0.7940252 0.1939468 +0.6698526 0.7940252 0.1939468 +0.6925839 0.7940252 0.1939468 +0.7143866 0.7940252 0.1939468 +0.7353569 0.7940252 0.1939468 +0.7555758 0.7940252 0.1939468 +0.7751122 0.7940252 0.1939468 +0.7940252 0.7940252 0.1939468 +0.8123661 0.7940252 0.1939468 +0.8301795 0.7940252 0.1939468 +0.8475045 0.7940252 0.1939468 +0.8643761 0.7940252 0.1939468 +0.880825 0.7940252 0.1939468 +0.8968787 0.7940252 0.1939468 +0.9125621 0.7940252 0.1939468 +0.9278974 0.7940252 0.1939468 +0.9429048 0.7940252 0.1939468 +0.9576028 0.7940252 0.1939468 +0.9720079 0.7940252 0.1939468 +0.9861357 0.7940252 0.1939468 +1 0.7940252 0.1939468 +0 0.8123661 0.1939468 +0.1939468 0.8123661 0.1939468 +0.2773041 0.8123661 0.1939468 +0.3384659 0.8123661 0.1939468 +0.3885728 0.8123661 0.1939468 +0.4317928 0.8123661 0.1939468 +0.470214 0.8123661 0.1939468 +0.5050551 0.8123661 0.1939468 +0.5370987 0.8123661 0.1939468 +0.5668815 0.8123661 0.1939468 +0.5947903 0.8123661 0.1939468 +0.6211144 0.8123661 0.1939468 +0.6460766 0.8123661 0.1939468 +0.6698526 0.8123661 0.1939468 +0.6925839 0.8123661 0.1939468 +0.7143866 0.8123661 0.1939468 +0.7353569 0.8123661 0.1939468 +0.7555758 0.8123661 0.1939468 +0.7751122 0.8123661 0.1939468 +0.7940252 0.8123661 0.1939468 +0.8123661 0.8123661 0.1939468 +0.8301795 0.8123661 0.1939468 +0.8475045 0.8123661 0.1939468 +0.8643761 0.8123661 0.1939468 +0.880825 0.8123661 0.1939468 +0.8968787 0.8123661 0.1939468 +0.9125621 0.8123661 0.1939468 +0.9278974 0.8123661 0.1939468 +0.9429048 0.8123661 0.1939468 +0.9576028 0.8123661 0.1939468 +0.9720079 0.8123661 0.1939468 +0.9861357 0.8123661 0.1939468 +1 0.8123661 0.1939468 +0 0.8301795 0.1939468 +0.1939468 0.8301795 0.1939468 +0.2773041 0.8301795 0.1939468 +0.3384659 0.8301795 0.1939468 +0.3885728 0.8301795 0.1939468 +0.4317928 0.8301795 0.1939468 +0.470214 0.8301795 0.1939468 +0.5050551 0.8301795 0.1939468 +0.5370987 0.8301795 0.1939468 +0.5668815 0.8301795 0.1939468 +0.5947903 0.8301795 0.1939468 +0.6211144 0.8301795 0.1939468 +0.6460766 0.8301795 0.1939468 +0.6698526 0.8301795 0.1939468 +0.6925839 0.8301795 0.1939468 +0.7143866 0.8301795 0.1939468 +0.7353569 0.8301795 0.1939468 +0.7555758 0.8301795 0.1939468 +0.7751122 0.8301795 0.1939468 +0.7940252 0.8301795 0.1939468 +0.8123661 0.8301795 0.1939468 +0.8301795 0.8301795 0.1939468 +0.8475045 0.8301795 0.1939468 +0.8643761 0.8301795 0.1939468 +0.880825 0.8301795 0.1939468 +0.8968787 0.8301795 0.1939468 +0.9125621 0.8301795 0.1939468 +0.9278974 0.8301795 0.1939468 +0.9429048 0.8301795 0.1939468 +0.9576028 0.8301795 0.1939468 +0.9720079 0.8301795 0.1939468 +0.9861357 0.8301795 0.1939468 +1 0.8301795 0.1939468 +0 0.8475045 0.1939468 +0.1939468 0.8475045 0.1939468 +0.2773041 0.8475045 0.1939468 +0.3384659 0.8475045 0.1939468 +0.3885728 0.8475045 0.1939468 +0.4317928 0.8475045 0.1939468 +0.470214 0.8475045 0.1939468 +0.5050551 0.8475045 0.1939468 +0.5370987 0.8475045 0.1939468 +0.5668815 0.8475045 0.1939468 +0.5947903 0.8475045 0.1939468 +0.6211144 0.8475045 0.1939468 +0.6460766 0.8475045 0.1939468 +0.6698526 0.8475045 0.1939468 +0.6925839 0.8475045 0.1939468 +0.7143866 0.8475045 0.1939468 +0.7353569 0.8475045 0.1939468 +0.7555758 0.8475045 0.1939468 +0.7751122 0.8475045 0.1939468 +0.7940252 0.8475045 0.1939468 +0.8123661 0.8475045 0.1939468 +0.8301795 0.8475045 0.1939468 +0.8475045 0.8475045 0.1939468 +0.8643761 0.8475045 0.1939468 +0.880825 0.8475045 0.1939468 +0.8968787 0.8475045 0.1939468 +0.9125621 0.8475045 0.1939468 +0.9278974 0.8475045 0.1939468 +0.9429048 0.8475045 0.1939468 +0.9576028 0.8475045 0.1939468 +0.9720079 0.8475045 0.1939468 +0.9861357 0.8475045 0.1939468 +1 0.8475045 0.1939468 +0 0.8643761 0.1939468 +0.1939468 0.8643761 0.1939468 +0.2773041 0.8643761 0.1939468 +0.3384659 0.8643761 0.1939468 +0.3885728 0.8643761 0.1939468 +0.4317928 0.8643761 0.1939468 +0.470214 0.8643761 0.1939468 +0.5050551 0.8643761 0.1939468 +0.5370987 0.8643761 0.1939468 +0.5668815 0.8643761 0.1939468 +0.5947903 0.8643761 0.1939468 +0.6211144 0.8643761 0.1939468 +0.6460766 0.8643761 0.1939468 +0.6698526 0.8643761 0.1939468 +0.6925839 0.8643761 0.1939468 +0.7143866 0.8643761 0.1939468 +0.7353569 0.8643761 0.1939468 +0.7555758 0.8643761 0.1939468 +0.7751122 0.8643761 0.1939468 +0.7940252 0.8643761 0.1939468 +0.8123661 0.8643761 0.1939468 +0.8301795 0.8643761 0.1939468 +0.8475045 0.8643761 0.1939468 +0.8643761 0.8643761 0.1939468 +0.880825 0.8643761 0.1939468 +0.8968787 0.8643761 0.1939468 +0.9125621 0.8643761 0.1939468 +0.9278974 0.8643761 0.1939468 +0.9429048 0.8643761 0.1939468 +0.9576028 0.8643761 0.1939468 +0.9720079 0.8643761 0.1939468 +0.9861357 0.8643761 0.1939468 +1 0.8643761 0.1939468 +0 0.880825 0.1939468 +0.1939468 0.880825 0.1939468 +0.2773041 0.880825 0.1939468 +0.3384659 0.880825 0.1939468 +0.3885728 0.880825 0.1939468 +0.4317928 0.880825 0.1939468 +0.470214 0.880825 0.1939468 +0.5050551 0.880825 0.1939468 +0.5370987 0.880825 0.1939468 +0.5668815 0.880825 0.1939468 +0.5947903 0.880825 0.1939468 +0.6211144 0.880825 0.1939468 +0.6460766 0.880825 0.1939468 +0.6698526 0.880825 0.1939468 +0.6925839 0.880825 0.1939468 +0.7143866 0.880825 0.1939468 +0.7353569 0.880825 0.1939468 +0.7555758 0.880825 0.1939468 +0.7751122 0.880825 0.1939468 +0.7940252 0.880825 0.1939468 +0.8123661 0.880825 0.1939468 +0.8301795 0.880825 0.1939468 +0.8475045 0.880825 0.1939468 +0.8643761 0.880825 0.1939468 +0.880825 0.880825 0.1939468 +0.8968787 0.880825 0.1939468 +0.9125621 0.880825 0.1939468 +0.9278974 0.880825 0.1939468 +0.9429048 0.880825 0.1939468 +0.9576028 0.880825 0.1939468 +0.9720079 0.880825 0.1939468 +0.9861357 0.880825 0.1939468 +1 0.880825 0.1939468 +0 0.8968787 0.1939468 +0.1939468 0.8968787 0.1939468 +0.2773041 0.8968787 0.1939468 +0.3384659 0.8968787 0.1939468 +0.3885728 0.8968787 0.1939468 +0.4317928 0.8968787 0.1939468 +0.470214 0.8968787 0.1939468 +0.5050551 0.8968787 0.1939468 +0.5370987 0.8968787 0.1939468 +0.5668815 0.8968787 0.1939468 +0.5947903 0.8968787 0.1939468 +0.6211144 0.8968787 0.1939468 +0.6460766 0.8968787 0.1939468 +0.6698526 0.8968787 0.1939468 +0.6925839 0.8968787 0.1939468 +0.7143866 0.8968787 0.1939468 +0.7353569 0.8968787 0.1939468 +0.7555758 0.8968787 0.1939468 +0.7751122 0.8968787 0.1939468 +0.7940252 0.8968787 0.1939468 +0.8123661 0.8968787 0.1939468 +0.8301795 0.8968787 0.1939468 +0.8475045 0.8968787 0.1939468 +0.8643761 0.8968787 0.1939468 +0.880825 0.8968787 0.1939468 +0.8968787 0.8968787 0.1939468 +0.9125621 0.8968787 0.1939468 +0.9278974 0.8968787 0.1939468 +0.9429048 0.8968787 0.1939468 +0.9576028 0.8968787 0.1939468 +0.9720079 0.8968787 0.1939468 +0.9861357 0.8968787 0.1939468 +1 0.8968787 0.1939468 +0 0.9125621 0.1939468 +0.1939468 0.9125621 0.1939468 +0.2773041 0.9125621 0.1939468 +0.3384659 0.9125621 0.1939468 +0.3885728 0.9125621 0.1939468 +0.4317928 0.9125621 0.1939468 +0.470214 0.9125621 0.1939468 +0.5050551 0.9125621 0.1939468 +0.5370987 0.9125621 0.1939468 +0.5668815 0.9125621 0.1939468 +0.5947903 0.9125621 0.1939468 +0.6211144 0.9125621 0.1939468 +0.6460766 0.9125621 0.1939468 +0.6698526 0.9125621 0.1939468 +0.6925839 0.9125621 0.1939468 +0.7143866 0.9125621 0.1939468 +0.7353569 0.9125621 0.1939468 +0.7555758 0.9125621 0.1939468 +0.7751122 0.9125621 0.1939468 +0.7940252 0.9125621 0.1939468 +0.8123661 0.9125621 0.1939468 +0.8301795 0.9125621 0.1939468 +0.8475045 0.9125621 0.1939468 +0.8643761 0.9125621 0.1939468 +0.880825 0.9125621 0.1939468 +0.8968787 0.9125621 0.1939468 +0.9125621 0.9125621 0.1939468 +0.9278974 0.9125621 0.1939468 +0.9429048 0.9125621 0.1939468 +0.9576028 0.9125621 0.1939468 +0.9720079 0.9125621 0.1939468 +0.9861357 0.9125621 0.1939468 +1 0.9125621 0.1939468 +0 0.9278974 0.1939468 +0.1939468 0.9278974 0.1939468 +0.2773041 0.9278974 0.1939468 +0.3384659 0.9278974 0.1939468 +0.3885728 0.9278974 0.1939468 +0.4317928 0.9278974 0.1939468 +0.470214 0.9278974 0.1939468 +0.5050551 0.9278974 0.1939468 +0.5370987 0.9278974 0.1939468 +0.5668815 0.9278974 0.1939468 +0.5947903 0.9278974 0.1939468 +0.6211144 0.9278974 0.1939468 +0.6460766 0.9278974 0.1939468 +0.6698526 0.9278974 0.1939468 +0.6925839 0.9278974 0.1939468 +0.7143866 0.9278974 0.1939468 +0.7353569 0.9278974 0.1939468 +0.7555758 0.9278974 0.1939468 +0.7751122 0.9278974 0.1939468 +0.7940252 0.9278974 0.1939468 +0.8123661 0.9278974 0.1939468 +0.8301795 0.9278974 0.1939468 +0.8475045 0.9278974 0.1939468 +0.8643761 0.9278974 0.1939468 +0.880825 0.9278974 0.1939468 +0.8968787 0.9278974 0.1939468 +0.9125621 0.9278974 0.1939468 +0.9278974 0.9278974 0.1939468 +0.9429048 0.9278974 0.1939468 +0.9576028 0.9278974 0.1939468 +0.9720079 0.9278974 0.1939468 +0.9861357 0.9278974 0.1939468 +1 0.9278974 0.1939468 +0 0.9429048 0.1939468 +0.1939468 0.9429048 0.1939468 +0.2773041 0.9429048 0.1939468 +0.3384659 0.9429048 0.1939468 +0.3885728 0.9429048 0.1939468 +0.4317928 0.9429048 0.1939468 +0.470214 0.9429048 0.1939468 +0.5050551 0.9429048 0.1939468 +0.5370987 0.9429048 0.1939468 +0.5668815 0.9429048 0.1939468 +0.5947903 0.9429048 0.1939468 +0.6211144 0.9429048 0.1939468 +0.6460766 0.9429048 0.1939468 +0.6698526 0.9429048 0.1939468 +0.6925839 0.9429048 0.1939468 +0.7143866 0.9429048 0.1939468 +0.7353569 0.9429048 0.1939468 +0.7555758 0.9429048 0.1939468 +0.7751122 0.9429048 0.1939468 +0.7940252 0.9429048 0.1939468 +0.8123661 0.9429048 0.1939468 +0.8301795 0.9429048 0.1939468 +0.8475045 0.9429048 0.1939468 +0.8643761 0.9429048 0.1939468 +0.880825 0.9429048 0.1939468 +0.8968787 0.9429048 0.1939468 +0.9125621 0.9429048 0.1939468 +0.9278974 0.9429048 0.1939468 +0.9429048 0.9429048 0.1939468 +0.9576028 0.9429048 0.1939468 +0.9720079 0.9429048 0.1939468 +0.9861357 0.9429048 0.1939468 +1 0.9429048 0.1939468 +0 0.9576028 0.1939468 +0.1939468 0.9576028 0.1939468 +0.2773041 0.9576028 0.1939468 +0.3384659 0.9576028 0.1939468 +0.3885728 0.9576028 0.1939468 +0.4317928 0.9576028 0.1939468 +0.470214 0.9576028 0.1939468 +0.5050551 0.9576028 0.1939468 +0.5370987 0.9576028 0.1939468 +0.5668815 0.9576028 0.1939468 +0.5947903 0.9576028 0.1939468 +0.6211144 0.9576028 0.1939468 +0.6460766 0.9576028 0.1939468 +0.6698526 0.9576028 0.1939468 +0.6925839 0.9576028 0.1939468 +0.7143866 0.9576028 0.1939468 +0.7353569 0.9576028 0.1939468 +0.7555758 0.9576028 0.1939468 +0.7751122 0.9576028 0.1939468 +0.7940252 0.9576028 0.1939468 +0.8123661 0.9576028 0.1939468 +0.8301795 0.9576028 0.1939468 +0.8475045 0.9576028 0.1939468 +0.8643761 0.9576028 0.1939468 +0.880825 0.9576028 0.1939468 +0.8968787 0.9576028 0.1939468 +0.9125621 0.9576028 0.1939468 +0.9278974 0.9576028 0.1939468 +0.9429048 0.9576028 0.1939468 +0.9576028 0.9576028 0.1939468 +0.9720079 0.9576028 0.1939468 +0.9861357 0.9576028 0.1939468 +1 0.9576028 0.1939468 +0 0.9720079 0.1939468 +0.1939468 0.9720079 0.1939468 +0.2773041 0.9720079 0.1939468 +0.3384659 0.9720079 0.1939468 +0.3885728 0.9720079 0.1939468 +0.4317928 0.9720079 0.1939468 +0.470214 0.9720079 0.1939468 +0.5050551 0.9720079 0.1939468 +0.5370987 0.9720079 0.1939468 +0.5668815 0.9720079 0.1939468 +0.5947903 0.9720079 0.1939468 +0.6211144 0.9720079 0.1939468 +0.6460766 0.9720079 0.1939468 +0.6698526 0.9720079 0.1939468 +0.6925839 0.9720079 0.1939468 +0.7143866 0.9720079 0.1939468 +0.7353569 0.9720079 0.1939468 +0.7555758 0.9720079 0.1939468 +0.7751122 0.9720079 0.1939468 +0.7940252 0.9720079 0.1939468 +0.8123661 0.9720079 0.1939468 +0.8301795 0.9720079 0.1939468 +0.8475045 0.9720079 0.1939468 +0.8643761 0.9720079 0.1939468 +0.880825 0.9720079 0.1939468 +0.8968787 0.9720079 0.1939468 +0.9125621 0.9720079 0.1939468 +0.9278974 0.9720079 0.1939468 +0.9429048 0.9720079 0.1939468 +0.9576028 0.9720079 0.1939468 +0.9720079 0.9720079 0.1939468 +0.9861357 0.9720079 0.1939468 +1 0.9720079 0.1939468 +0 0.9861357 0.1939468 +0.1939468 0.9861357 0.1939468 +0.2773041 0.9861357 0.1939468 +0.3384659 0.9861357 0.1939468 +0.3885728 0.9861357 0.1939468 +0.4317928 0.9861357 0.1939468 +0.470214 0.9861357 0.1939468 +0.5050551 0.9861357 0.1939468 +0.5370987 0.9861357 0.1939468 +0.5668815 0.9861357 0.1939468 +0.5947903 0.9861357 0.1939468 +0.6211144 0.9861357 0.1939468 +0.6460766 0.9861357 0.1939468 +0.6698526 0.9861357 0.1939468 +0.6925839 0.9861357 0.1939468 +0.7143866 0.9861357 0.1939468 +0.7353569 0.9861357 0.1939468 +0.7555758 0.9861357 0.1939468 +0.7751122 0.9861357 0.1939468 +0.7940252 0.9861357 0.1939468 +0.8123661 0.9861357 0.1939468 +0.8301795 0.9861357 0.1939468 +0.8475045 0.9861357 0.1939468 +0.8643761 0.9861357 0.1939468 +0.880825 0.9861357 0.1939468 +0.8968787 0.9861357 0.1939468 +0.9125621 0.9861357 0.1939468 +0.9278974 0.9861357 0.1939468 +0.9429048 0.9861357 0.1939468 +0.9576028 0.9861357 0.1939468 +0.9720079 0.9861357 0.1939468 +0.9861357 0.9861357 0.1939468 +1 0.9861357 0.1939468 +0 1 0.1939468 +0.1939468 1 0.1939468 +0.2773041 1 0.1939468 +0.3384659 1 0.1939468 +0.3885728 1 0.1939468 +0.4317928 1 0.1939468 +0.470214 1 0.1939468 +0.5050551 1 0.1939468 +0.5370987 1 0.1939468 +0.5668815 1 0.1939468 +0.5947903 1 0.1939468 +0.6211144 1 0.1939468 +0.6460766 1 0.1939468 +0.6698526 1 0.1939468 +0.6925839 1 0.1939468 +0.7143866 1 0.1939468 +0.7353569 1 0.1939468 +0.7555758 1 0.1939468 +0.7751122 1 0.1939468 +0.7940252 1 0.1939468 +0.8123661 1 0.1939468 +0.8301795 1 0.1939468 +0.8475045 1 0.1939468 +0.8643761 1 0.1939468 +0.880825 1 0.1939468 +0.8968787 1 0.1939468 +0.9125621 1 0.1939468 +0.9278974 1 0.1939468 +0.9429048 1 0.1939468 +0.9576028 1 0.1939468 +0.9720079 1 0.1939468 +0.9861357 1 0.1939468 +1 1 0.1939468 +0 0 0.2773041 +0.1939468 0 0.2773041 +0.2773041 0 0.2773041 +0.3384659 0 0.2773041 +0.3885728 0 0.2773041 +0.4317928 0 0.2773041 +0.470214 0 0.2773041 +0.5050551 0 0.2773041 +0.5370987 0 0.2773041 +0.5668815 0 0.2773041 +0.5947903 0 0.2773041 +0.6211144 0 0.2773041 +0.6460766 0 0.2773041 +0.6698526 0 0.2773041 +0.6925839 0 0.2773041 +0.7143866 0 0.2773041 +0.7353569 0 0.2773041 +0.7555758 0 0.2773041 +0.7751122 0 0.2773041 +0.7940252 0 0.2773041 +0.8123661 0 0.2773041 +0.8301795 0 0.2773041 +0.8475045 0 0.2773041 +0.8643761 0 0.2773041 +0.880825 0 0.2773041 +0.8968787 0 0.2773041 +0.9125621 0 0.2773041 +0.9278974 0 0.2773041 +0.9429048 0 0.2773041 +0.9576028 0 0.2773041 +0.9720079 0 0.2773041 +0.9861357 0 0.2773041 +1 0 0.2773041 +0 0.1939468 0.2773041 +0.1939468 0.1939468 0.2773041 +0.2773041 0.1939468 0.2773041 +0.3384659 0.1939468 0.2773041 +0.3885728 0.1939468 0.2773041 +0.4317928 0.1939468 0.2773041 +0.470214 0.1939468 0.2773041 +0.5050551 0.1939468 0.2773041 +0.5370987 0.1939468 0.2773041 +0.5668815 0.1939468 0.2773041 +0.5947903 0.1939468 0.2773041 +0.6211144 0.1939468 0.2773041 +0.6460766 0.1939468 0.2773041 +0.6698526 0.1939468 0.2773041 +0.6925839 0.1939468 0.2773041 +0.7143866 0.1939468 0.2773041 +0.7353569 0.1939468 0.2773041 +0.7555758 0.1939468 0.2773041 +0.7751122 0.1939468 0.2773041 +0.7940252 0.1939468 0.2773041 +0.8123661 0.1939468 0.2773041 +0.8301795 0.1939468 0.2773041 +0.8475045 0.1939468 0.2773041 +0.8643761 0.1939468 0.2773041 +0.880825 0.1939468 0.2773041 +0.8968787 0.1939468 0.2773041 +0.9125621 0.1939468 0.2773041 +0.9278974 0.1939468 0.2773041 +0.9429048 0.1939468 0.2773041 +0.9576028 0.1939468 0.2773041 +0.9720079 0.1939468 0.2773041 +0.9861357 0.1939468 0.2773041 +1 0.1939468 0.2773041 +0 0.2773041 0.2773041 +0.1939468 0.2773041 0.2773041 +0.2773041 0.2773041 0.2773041 +0.3384659 0.2773041 0.2773041 +0.3885728 0.2773041 0.2773041 +0.4317928 0.2773041 0.2773041 +0.470214 0.2773041 0.2773041 +0.5050551 0.2773041 0.2773041 +0.5370987 0.2773041 0.2773041 +0.5668815 0.2773041 0.2773041 +0.5947903 0.2773041 0.2773041 +0.6211144 0.2773041 0.2773041 +0.6460766 0.2773041 0.2773041 +0.6698526 0.2773041 0.2773041 +0.6925839 0.2773041 0.2773041 +0.7143866 0.2773041 0.2773041 +0.7353569 0.2773041 0.2773041 +0.7555758 0.2773041 0.2773041 +0.7751122 0.2773041 0.2773041 +0.7940252 0.2773041 0.2773041 +0.8123661 0.2773041 0.2773041 +0.8301795 0.2773041 0.2773041 +0.8475045 0.2773041 0.2773041 +0.8643761 0.2773041 0.2773041 +0.880825 0.2773041 0.2773041 +0.8968787 0.2773041 0.2773041 +0.9125621 0.2773041 0.2773041 +0.9278974 0.2773041 0.2773041 +0.9429048 0.2773041 0.2773041 +0.9576028 0.2773041 0.2773041 +0.9720079 0.2773041 0.2773041 +0.9861357 0.2773041 0.2773041 +1 0.2773041 0.2773041 +0 0.3384659 0.2773041 +0.1939468 0.3384659 0.2773041 +0.2773041 0.3384659 0.2773041 +0.3384659 0.3384659 0.2773041 +0.3885728 0.3384659 0.2773041 +0.4317928 0.3384659 0.2773041 +0.470214 0.3384659 0.2773041 +0.5050551 0.3384659 0.2773041 +0.5370987 0.3384659 0.2773041 +0.5668815 0.3384659 0.2773041 +0.5947903 0.3384659 0.2773041 +0.6211144 0.3384659 0.2773041 +0.6460766 0.3384659 0.2773041 +0.6698526 0.3384659 0.2773041 +0.6925839 0.3384659 0.2773041 +0.7143866 0.3384659 0.2773041 +0.7353569 0.3384659 0.2773041 +0.7555758 0.3384659 0.2773041 +0.7751122 0.3384659 0.2773041 +0.7940252 0.3384659 0.2773041 +0.8123661 0.3384659 0.2773041 +0.8301795 0.3384659 0.2773041 +0.8475045 0.3384659 0.2773041 +0.8643761 0.3384659 0.2773041 +0.880825 0.3384659 0.2773041 +0.8968787 0.3384659 0.2773041 +0.9125621 0.3384659 0.2773041 +0.9278974 0.3384659 0.2773041 +0.9429048 0.3384659 0.2773041 +0.9576028 0.3384659 0.2773041 +0.9720079 0.3384659 0.2773041 +0.9861357 0.3384659 0.2773041 +1 0.3384659 0.2773041 +0 0.3885728 0.2773041 +0.1939468 0.3885728 0.2773041 +0.2773041 0.3885728 0.2773041 +0.3384659 0.3885728 0.2773041 +0.3885728 0.3885728 0.2773041 +0.4317928 0.3885728 0.2773041 +0.470214 0.3885728 0.2773041 +0.5050551 0.3885728 0.2773041 +0.5370987 0.3885728 0.2773041 +0.5668815 0.3885728 0.2773041 +0.5947903 0.3885728 0.2773041 +0.6211144 0.3885728 0.2773041 +0.6460766 0.3885728 0.2773041 +0.6698526 0.3885728 0.2773041 +0.6925839 0.3885728 0.2773041 +0.7143866 0.3885728 0.2773041 +0.7353569 0.3885728 0.2773041 +0.7555758 0.3885728 0.2773041 +0.7751122 0.3885728 0.2773041 +0.7940252 0.3885728 0.2773041 +0.8123661 0.3885728 0.2773041 +0.8301795 0.3885728 0.2773041 +0.8475045 0.3885728 0.2773041 +0.8643761 0.3885728 0.2773041 +0.880825 0.3885728 0.2773041 +0.8968787 0.3885728 0.2773041 +0.9125621 0.3885728 0.2773041 +0.9278974 0.3885728 0.2773041 +0.9429048 0.3885728 0.2773041 +0.9576028 0.3885728 0.2773041 +0.9720079 0.3885728 0.2773041 +0.9861357 0.3885728 0.2773041 +1 0.3885728 0.2773041 +0 0.4317928 0.2773041 +0.1939468 0.4317928 0.2773041 +0.2773041 0.4317928 0.2773041 +0.3384659 0.4317928 0.2773041 +0.3885728 0.4317928 0.2773041 +0.4317928 0.4317928 0.2773041 +0.470214 0.4317928 0.2773041 +0.5050551 0.4317928 0.2773041 +0.5370987 0.4317928 0.2773041 +0.5668815 0.4317928 0.2773041 +0.5947903 0.4317928 0.2773041 +0.6211144 0.4317928 0.2773041 +0.6460766 0.4317928 0.2773041 +0.6698526 0.4317928 0.2773041 +0.6925839 0.4317928 0.2773041 +0.7143866 0.4317928 0.2773041 +0.7353569 0.4317928 0.2773041 +0.7555758 0.4317928 0.2773041 +0.7751122 0.4317928 0.2773041 +0.7940252 0.4317928 0.2773041 +0.8123661 0.4317928 0.2773041 +0.8301795 0.4317928 0.2773041 +0.8475045 0.4317928 0.2773041 +0.8643761 0.4317928 0.2773041 +0.880825 0.4317928 0.2773041 +0.8968787 0.4317928 0.2773041 +0.9125621 0.4317928 0.2773041 +0.9278974 0.4317928 0.2773041 +0.9429048 0.4317928 0.2773041 +0.9576028 0.4317928 0.2773041 +0.9720079 0.4317928 0.2773041 +0.9861357 0.4317928 0.2773041 +1 0.4317928 0.2773041 +0 0.470214 0.2773041 +0.1939468 0.470214 0.2773041 +0.2773041 0.470214 0.2773041 +0.3384659 0.470214 0.2773041 +0.3885728 0.470214 0.2773041 +0.4317928 0.470214 0.2773041 +0.470214 0.470214 0.2773041 +0.5050551 0.470214 0.2773041 +0.5370987 0.470214 0.2773041 +0.5668815 0.470214 0.2773041 +0.5947903 0.470214 0.2773041 +0.6211144 0.470214 0.2773041 +0.6460766 0.470214 0.2773041 +0.6698526 0.470214 0.2773041 +0.6925839 0.470214 0.2773041 +0.7143866 0.470214 0.2773041 +0.7353569 0.470214 0.2773041 +0.7555758 0.470214 0.2773041 +0.7751122 0.470214 0.2773041 +0.7940252 0.470214 0.2773041 +0.8123661 0.470214 0.2773041 +0.8301795 0.470214 0.2773041 +0.8475045 0.470214 0.2773041 +0.8643761 0.470214 0.2773041 +0.880825 0.470214 0.2773041 +0.8968787 0.470214 0.2773041 +0.9125621 0.470214 0.2773041 +0.9278974 0.470214 0.2773041 +0.9429048 0.470214 0.2773041 +0.9576028 0.470214 0.2773041 +0.9720079 0.470214 0.2773041 +0.9861357 0.470214 0.2773041 +1 0.470214 0.2773041 +0 0.5050551 0.2773041 +0.1939468 0.5050551 0.2773041 +0.2773041 0.5050551 0.2773041 +0.3384659 0.5050551 0.2773041 +0.3885728 0.5050551 0.2773041 +0.4317928 0.5050551 0.2773041 +0.470214 0.5050551 0.2773041 +0.5050551 0.5050551 0.2773041 +0.5370987 0.5050551 0.2773041 +0.5668815 0.5050551 0.2773041 +0.5947903 0.5050551 0.2773041 +0.6211144 0.5050551 0.2773041 +0.6460766 0.5050551 0.2773041 +0.6698526 0.5050551 0.2773041 +0.6925839 0.5050551 0.2773041 +0.7143866 0.5050551 0.2773041 +0.7353569 0.5050551 0.2773041 +0.7555758 0.5050551 0.2773041 +0.7751122 0.5050551 0.2773041 +0.7940252 0.5050551 0.2773041 +0.8123661 0.5050551 0.2773041 +0.8301795 0.5050551 0.2773041 +0.8475045 0.5050551 0.2773041 +0.8643761 0.5050551 0.2773041 +0.880825 0.5050551 0.2773041 +0.8968787 0.5050551 0.2773041 +0.9125621 0.5050551 0.2773041 +0.9278974 0.5050551 0.2773041 +0.9429048 0.5050551 0.2773041 +0.9576028 0.5050551 0.2773041 +0.9720079 0.5050551 0.2773041 +0.9861357 0.5050551 0.2773041 +1 0.5050551 0.2773041 +0 0.5370987 0.2773041 +0.1939468 0.5370987 0.2773041 +0.2773041 0.5370987 0.2773041 +0.3384659 0.5370987 0.2773041 +0.3885728 0.5370987 0.2773041 +0.4317928 0.5370987 0.2773041 +0.470214 0.5370987 0.2773041 +0.5050551 0.5370987 0.2773041 +0.5370987 0.5370987 0.2773041 +0.5668815 0.5370987 0.2773041 +0.5947903 0.5370987 0.2773041 +0.6211144 0.5370987 0.2773041 +0.6460766 0.5370987 0.2773041 +0.6698526 0.5370987 0.2773041 +0.6925839 0.5370987 0.2773041 +0.7143866 0.5370987 0.2773041 +0.7353569 0.5370987 0.2773041 +0.7555758 0.5370987 0.2773041 +0.7751122 0.5370987 0.2773041 +0.7940252 0.5370987 0.2773041 +0.8123661 0.5370987 0.2773041 +0.8301795 0.5370987 0.2773041 +0.8475045 0.5370987 0.2773041 +0.8643761 0.5370987 0.2773041 +0.880825 0.5370987 0.2773041 +0.8968787 0.5370987 0.2773041 +0.9125621 0.5370987 0.2773041 +0.9278974 0.5370987 0.2773041 +0.9429048 0.5370987 0.2773041 +0.9576028 0.5370987 0.2773041 +0.9720079 0.5370987 0.2773041 +0.9861357 0.5370987 0.2773041 +1 0.5370987 0.2773041 +0 0.5668815 0.2773041 +0.1939468 0.5668815 0.2773041 +0.2773041 0.5668815 0.2773041 +0.3384659 0.5668815 0.2773041 +0.3885728 0.5668815 0.2773041 +0.4317928 0.5668815 0.2773041 +0.470214 0.5668815 0.2773041 +0.5050551 0.5668815 0.2773041 +0.5370987 0.5668815 0.2773041 +0.5668815 0.5668815 0.2773041 +0.5947903 0.5668815 0.2773041 +0.6211144 0.5668815 0.2773041 +0.6460766 0.5668815 0.2773041 +0.6698526 0.5668815 0.2773041 +0.6925839 0.5668815 0.2773041 +0.7143866 0.5668815 0.2773041 +0.7353569 0.5668815 0.2773041 +0.7555758 0.5668815 0.2773041 +0.7751122 0.5668815 0.2773041 +0.7940252 0.5668815 0.2773041 +0.8123661 0.5668815 0.2773041 +0.8301795 0.5668815 0.2773041 +0.8475045 0.5668815 0.2773041 +0.8643761 0.5668815 0.2773041 +0.880825 0.5668815 0.2773041 +0.8968787 0.5668815 0.2773041 +0.9125621 0.5668815 0.2773041 +0.9278974 0.5668815 0.2773041 +0.9429048 0.5668815 0.2773041 +0.9576028 0.5668815 0.2773041 +0.9720079 0.5668815 0.2773041 +0.9861357 0.5668815 0.2773041 +1 0.5668815 0.2773041 +0 0.5947903 0.2773041 +0.1939468 0.5947903 0.2773041 +0.2773041 0.5947903 0.2773041 +0.3384659 0.5947903 0.2773041 +0.3885728 0.5947903 0.2773041 +0.4317928 0.5947903 0.2773041 +0.470214 0.5947903 0.2773041 +0.5050551 0.5947903 0.2773041 +0.5370987 0.5947903 0.2773041 +0.5668815 0.5947903 0.2773041 +0.5947903 0.5947903 0.2773041 +0.6211144 0.5947903 0.2773041 +0.6460766 0.5947903 0.2773041 +0.6698526 0.5947903 0.2773041 +0.6925839 0.5947903 0.2773041 +0.7143866 0.5947903 0.2773041 +0.7353569 0.5947903 0.2773041 +0.7555758 0.5947903 0.2773041 +0.7751122 0.5947903 0.2773041 +0.7940252 0.5947903 0.2773041 +0.8123661 0.5947903 0.2773041 +0.8301795 0.5947903 0.2773041 +0.8475045 0.5947903 0.2773041 +0.8643761 0.5947903 0.2773041 +0.880825 0.5947903 0.2773041 +0.8968787 0.5947903 0.2773041 +0.9125621 0.5947903 0.2773041 +0.9278974 0.5947903 0.2773041 +0.9429048 0.5947903 0.2773041 +0.9576028 0.5947903 0.2773041 +0.9720079 0.5947903 0.2773041 +0.9861357 0.5947903 0.2773041 +1 0.5947903 0.2773041 +0 0.6211144 0.2773041 +0.1939468 0.6211144 0.2773041 +0.2773041 0.6211144 0.2773041 +0.3384659 0.6211144 0.2773041 +0.3885728 0.6211144 0.2773041 +0.4317928 0.6211144 0.2773041 +0.470214 0.6211144 0.2773041 +0.5050551 0.6211144 0.2773041 +0.5370987 0.6211144 0.2773041 +0.5668815 0.6211144 0.2773041 +0.5947903 0.6211144 0.2773041 +0.6211144 0.6211144 0.2773041 +0.6460766 0.6211144 0.2773041 +0.6698526 0.6211144 0.2773041 +0.6925839 0.6211144 0.2773041 +0.7143866 0.6211144 0.2773041 +0.7353569 0.6211144 0.2773041 +0.7555758 0.6211144 0.2773041 +0.7751122 0.6211144 0.2773041 +0.7940252 0.6211144 0.2773041 +0.8123661 0.6211144 0.2773041 +0.8301795 0.6211144 0.2773041 +0.8475045 0.6211144 0.2773041 +0.8643761 0.6211144 0.2773041 +0.880825 0.6211144 0.2773041 +0.8968787 0.6211144 0.2773041 +0.9125621 0.6211144 0.2773041 +0.9278974 0.6211144 0.2773041 +0.9429048 0.6211144 0.2773041 +0.9576028 0.6211144 0.2773041 +0.9720079 0.6211144 0.2773041 +0.9861357 0.6211144 0.2773041 +1 0.6211144 0.2773041 +0 0.6460766 0.2773041 +0.1939468 0.6460766 0.2773041 +0.2773041 0.6460766 0.2773041 +0.3384659 0.6460766 0.2773041 +0.3885728 0.6460766 0.2773041 +0.4317928 0.6460766 0.2773041 +0.470214 0.6460766 0.2773041 +0.5050551 0.6460766 0.2773041 +0.5370987 0.6460766 0.2773041 +0.5668815 0.6460766 0.2773041 +0.5947903 0.6460766 0.2773041 +0.6211144 0.6460766 0.2773041 +0.6460766 0.6460766 0.2773041 +0.6698526 0.6460766 0.2773041 +0.6925839 0.6460766 0.2773041 +0.7143866 0.6460766 0.2773041 +0.7353569 0.6460766 0.2773041 +0.7555758 0.6460766 0.2773041 +0.7751122 0.6460766 0.2773041 +0.7940252 0.6460766 0.2773041 +0.8123661 0.6460766 0.2773041 +0.8301795 0.6460766 0.2773041 +0.8475045 0.6460766 0.2773041 +0.8643761 0.6460766 0.2773041 +0.880825 0.6460766 0.2773041 +0.8968787 0.6460766 0.2773041 +0.9125621 0.6460766 0.2773041 +0.9278974 0.6460766 0.2773041 +0.9429048 0.6460766 0.2773041 +0.9576028 0.6460766 0.2773041 +0.9720079 0.6460766 0.2773041 +0.9861357 0.6460766 0.2773041 +1 0.6460766 0.2773041 +0 0.6698526 0.2773041 +0.1939468 0.6698526 0.2773041 +0.2773041 0.6698526 0.2773041 +0.3384659 0.6698526 0.2773041 +0.3885728 0.6698526 0.2773041 +0.4317928 0.6698526 0.2773041 +0.470214 0.6698526 0.2773041 +0.5050551 0.6698526 0.2773041 +0.5370987 0.6698526 0.2773041 +0.5668815 0.6698526 0.2773041 +0.5947903 0.6698526 0.2773041 +0.6211144 0.6698526 0.2773041 +0.6460766 0.6698526 0.2773041 +0.6698526 0.6698526 0.2773041 +0.6925839 0.6698526 0.2773041 +0.7143866 0.6698526 0.2773041 +0.7353569 0.6698526 0.2773041 +0.7555758 0.6698526 0.2773041 +0.7751122 0.6698526 0.2773041 +0.7940252 0.6698526 0.2773041 +0.8123661 0.6698526 0.2773041 +0.8301795 0.6698526 0.2773041 +0.8475045 0.6698526 0.2773041 +0.8643761 0.6698526 0.2773041 +0.880825 0.6698526 0.2773041 +0.8968787 0.6698526 0.2773041 +0.9125621 0.6698526 0.2773041 +0.9278974 0.6698526 0.2773041 +0.9429048 0.6698526 0.2773041 +0.9576028 0.6698526 0.2773041 +0.9720079 0.6698526 0.2773041 +0.9861357 0.6698526 0.2773041 +1 0.6698526 0.2773041 +0 0.6925839 0.2773041 +0.1939468 0.6925839 0.2773041 +0.2773041 0.6925839 0.2773041 +0.3384659 0.6925839 0.2773041 +0.3885728 0.6925839 0.2773041 +0.4317928 0.6925839 0.2773041 +0.470214 0.6925839 0.2773041 +0.5050551 0.6925839 0.2773041 +0.5370987 0.6925839 0.2773041 +0.5668815 0.6925839 0.2773041 +0.5947903 0.6925839 0.2773041 +0.6211144 0.6925839 0.2773041 +0.6460766 0.6925839 0.2773041 +0.6698526 0.6925839 0.2773041 +0.6925839 0.6925839 0.2773041 +0.7143866 0.6925839 0.2773041 +0.7353569 0.6925839 0.2773041 +0.7555758 0.6925839 0.2773041 +0.7751122 0.6925839 0.2773041 +0.7940252 0.6925839 0.2773041 +0.8123661 0.6925839 0.2773041 +0.8301795 0.6925839 0.2773041 +0.8475045 0.6925839 0.2773041 +0.8643761 0.6925839 0.2773041 +0.880825 0.6925839 0.2773041 +0.8968787 0.6925839 0.2773041 +0.9125621 0.6925839 0.2773041 +0.9278974 0.6925839 0.2773041 +0.9429048 0.6925839 0.2773041 +0.9576028 0.6925839 0.2773041 +0.9720079 0.6925839 0.2773041 +0.9861357 0.6925839 0.2773041 +1 0.6925839 0.2773041 +0 0.7143866 0.2773041 +0.1939468 0.7143866 0.2773041 +0.2773041 0.7143866 0.2773041 +0.3384659 0.7143866 0.2773041 +0.3885728 0.7143866 0.2773041 +0.4317928 0.7143866 0.2773041 +0.470214 0.7143866 0.2773041 +0.5050551 0.7143866 0.2773041 +0.5370987 0.7143866 0.2773041 +0.5668815 0.7143866 0.2773041 +0.5947903 0.7143866 0.2773041 +0.6211144 0.7143866 0.2773041 +0.6460766 0.7143866 0.2773041 +0.6698526 0.7143866 0.2773041 +0.6925839 0.7143866 0.2773041 +0.7143866 0.7143866 0.2773041 +0.7353569 0.7143866 0.2773041 +0.7555758 0.7143866 0.2773041 +0.7751122 0.7143866 0.2773041 +0.7940252 0.7143866 0.2773041 +0.8123661 0.7143866 0.2773041 +0.8301795 0.7143866 0.2773041 +0.8475045 0.7143866 0.2773041 +0.8643761 0.7143866 0.2773041 +0.880825 0.7143866 0.2773041 +0.8968787 0.7143866 0.2773041 +0.9125621 0.7143866 0.2773041 +0.9278974 0.7143866 0.2773041 +0.9429048 0.7143866 0.2773041 +0.9576028 0.7143866 0.2773041 +0.9720079 0.7143866 0.2773041 +0.9861357 0.7143866 0.2773041 +1 0.7143866 0.2773041 +0 0.7353569 0.2773041 +0.1939468 0.7353569 0.2773041 +0.2773041 0.7353569 0.2773041 +0.3384659 0.7353569 0.2773041 +0.3885728 0.7353569 0.2773041 +0.4317928 0.7353569 0.2773041 +0.470214 0.7353569 0.2773041 +0.5050551 0.7353569 0.2773041 +0.5370987 0.7353569 0.2773041 +0.5668815 0.7353569 0.2773041 +0.5947903 0.7353569 0.2773041 +0.6211144 0.7353569 0.2773041 +0.6460766 0.7353569 0.2773041 +0.6698526 0.7353569 0.2773041 +0.6925839 0.7353569 0.2773041 +0.7143866 0.7353569 0.2773041 +0.7353569 0.7353569 0.2773041 +0.7555758 0.7353569 0.2773041 +0.7751122 0.7353569 0.2773041 +0.7940252 0.7353569 0.2773041 +0.8123661 0.7353569 0.2773041 +0.8301795 0.7353569 0.2773041 +0.8475045 0.7353569 0.2773041 +0.8643761 0.7353569 0.2773041 +0.880825 0.7353569 0.2773041 +0.8968787 0.7353569 0.2773041 +0.9125621 0.7353569 0.2773041 +0.9278974 0.7353569 0.2773041 +0.9429048 0.7353569 0.2773041 +0.9576028 0.7353569 0.2773041 +0.9720079 0.7353569 0.2773041 +0.9861357 0.7353569 0.2773041 +1 0.7353569 0.2773041 +0 0.7555758 0.2773041 +0.1939468 0.7555758 0.2773041 +0.2773041 0.7555758 0.2773041 +0.3384659 0.7555758 0.2773041 +0.3885728 0.7555758 0.2773041 +0.4317928 0.7555758 0.2773041 +0.470214 0.7555758 0.2773041 +0.5050551 0.7555758 0.2773041 +0.5370987 0.7555758 0.2773041 +0.5668815 0.7555758 0.2773041 +0.5947903 0.7555758 0.2773041 +0.6211144 0.7555758 0.2773041 +0.6460766 0.7555758 0.2773041 +0.6698526 0.7555758 0.2773041 +0.6925839 0.7555758 0.2773041 +0.7143866 0.7555758 0.2773041 +0.7353569 0.7555758 0.2773041 +0.7555758 0.7555758 0.2773041 +0.7751122 0.7555758 0.2773041 +0.7940252 0.7555758 0.2773041 +0.8123661 0.7555758 0.2773041 +0.8301795 0.7555758 0.2773041 +0.8475045 0.7555758 0.2773041 +0.8643761 0.7555758 0.2773041 +0.880825 0.7555758 0.2773041 +0.8968787 0.7555758 0.2773041 +0.9125621 0.7555758 0.2773041 +0.9278974 0.7555758 0.2773041 +0.9429048 0.7555758 0.2773041 +0.9576028 0.7555758 0.2773041 +0.9720079 0.7555758 0.2773041 +0.9861357 0.7555758 0.2773041 +1 0.7555758 0.2773041 +0 0.7751122 0.2773041 +0.1939468 0.7751122 0.2773041 +0.2773041 0.7751122 0.2773041 +0.3384659 0.7751122 0.2773041 +0.3885728 0.7751122 0.2773041 +0.4317928 0.7751122 0.2773041 +0.470214 0.7751122 0.2773041 +0.5050551 0.7751122 0.2773041 +0.5370987 0.7751122 0.2773041 +0.5668815 0.7751122 0.2773041 +0.5947903 0.7751122 0.2773041 +0.6211144 0.7751122 0.2773041 +0.6460766 0.7751122 0.2773041 +0.6698526 0.7751122 0.2773041 +0.6925839 0.7751122 0.2773041 +0.7143866 0.7751122 0.2773041 +0.7353569 0.7751122 0.2773041 +0.7555758 0.7751122 0.2773041 +0.7751122 0.7751122 0.2773041 +0.7940252 0.7751122 0.2773041 +0.8123661 0.7751122 0.2773041 +0.8301795 0.7751122 0.2773041 +0.8475045 0.7751122 0.2773041 +0.8643761 0.7751122 0.2773041 +0.880825 0.7751122 0.2773041 +0.8968787 0.7751122 0.2773041 +0.9125621 0.7751122 0.2773041 +0.9278974 0.7751122 0.2773041 +0.9429048 0.7751122 0.2773041 +0.9576028 0.7751122 0.2773041 +0.9720079 0.7751122 0.2773041 +0.9861357 0.7751122 0.2773041 +1 0.7751122 0.2773041 +0 0.7940252 0.2773041 +0.1939468 0.7940252 0.2773041 +0.2773041 0.7940252 0.2773041 +0.3384659 0.7940252 0.2773041 +0.3885728 0.7940252 0.2773041 +0.4317928 0.7940252 0.2773041 +0.470214 0.7940252 0.2773041 +0.5050551 0.7940252 0.2773041 +0.5370987 0.7940252 0.2773041 +0.5668815 0.7940252 0.2773041 +0.5947903 0.7940252 0.2773041 +0.6211144 0.7940252 0.2773041 +0.6460766 0.7940252 0.2773041 +0.6698526 0.7940252 0.2773041 +0.6925839 0.7940252 0.2773041 +0.7143866 0.7940252 0.2773041 +0.7353569 0.7940252 0.2773041 +0.7555758 0.7940252 0.2773041 +0.7751122 0.7940252 0.2773041 +0.7940252 0.7940252 0.2773041 +0.8123661 0.7940252 0.2773041 +0.8301795 0.7940252 0.2773041 +0.8475045 0.7940252 0.2773041 +0.8643761 0.7940252 0.2773041 +0.880825 0.7940252 0.2773041 +0.8968787 0.7940252 0.2773041 +0.9125621 0.7940252 0.2773041 +0.9278974 0.7940252 0.2773041 +0.9429048 0.7940252 0.2773041 +0.9576028 0.7940252 0.2773041 +0.9720079 0.7940252 0.2773041 +0.9861357 0.7940252 0.2773041 +1 0.7940252 0.2773041 +0 0.8123661 0.2773041 +0.1939468 0.8123661 0.2773041 +0.2773041 0.8123661 0.2773041 +0.3384659 0.8123661 0.2773041 +0.3885728 0.8123661 0.2773041 +0.4317928 0.8123661 0.2773041 +0.470214 0.8123661 0.2773041 +0.5050551 0.8123661 0.2773041 +0.5370987 0.8123661 0.2773041 +0.5668815 0.8123661 0.2773041 +0.5947903 0.8123661 0.2773041 +0.6211144 0.8123661 0.2773041 +0.6460766 0.8123661 0.2773041 +0.6698526 0.8123661 0.2773041 +0.6925839 0.8123661 0.2773041 +0.7143866 0.8123661 0.2773041 +0.7353569 0.8123661 0.2773041 +0.7555758 0.8123661 0.2773041 +0.7751122 0.8123661 0.2773041 +0.7940252 0.8123661 0.2773041 +0.8123661 0.8123661 0.2773041 +0.8301795 0.8123661 0.2773041 +0.8475045 0.8123661 0.2773041 +0.8643761 0.8123661 0.2773041 +0.880825 0.8123661 0.2773041 +0.8968787 0.8123661 0.2773041 +0.9125621 0.8123661 0.2773041 +0.9278974 0.8123661 0.2773041 +0.9429048 0.8123661 0.2773041 +0.9576028 0.8123661 0.2773041 +0.9720079 0.8123661 0.2773041 +0.9861357 0.8123661 0.2773041 +1 0.8123661 0.2773041 +0 0.8301795 0.2773041 +0.1939468 0.8301795 0.2773041 +0.2773041 0.8301795 0.2773041 +0.3384659 0.8301795 0.2773041 +0.3885728 0.8301795 0.2773041 +0.4317928 0.8301795 0.2773041 +0.470214 0.8301795 0.2773041 +0.5050551 0.8301795 0.2773041 +0.5370987 0.8301795 0.2773041 +0.5668815 0.8301795 0.2773041 +0.5947903 0.8301795 0.2773041 +0.6211144 0.8301795 0.2773041 +0.6460766 0.8301795 0.2773041 +0.6698526 0.8301795 0.2773041 +0.6925839 0.8301795 0.2773041 +0.7143866 0.8301795 0.2773041 +0.7353569 0.8301795 0.2773041 +0.7555758 0.8301795 0.2773041 +0.7751122 0.8301795 0.2773041 +0.7940252 0.8301795 0.2773041 +0.8123661 0.8301795 0.2773041 +0.8301795 0.8301795 0.2773041 +0.8475045 0.8301795 0.2773041 +0.8643761 0.8301795 0.2773041 +0.880825 0.8301795 0.2773041 +0.8968787 0.8301795 0.2773041 +0.9125621 0.8301795 0.2773041 +0.9278974 0.8301795 0.2773041 +0.9429048 0.8301795 0.2773041 +0.9576028 0.8301795 0.2773041 +0.9720079 0.8301795 0.2773041 +0.9861357 0.8301795 0.2773041 +1 0.8301795 0.2773041 +0 0.8475045 0.2773041 +0.1939468 0.8475045 0.2773041 +0.2773041 0.8475045 0.2773041 +0.3384659 0.8475045 0.2773041 +0.3885728 0.8475045 0.2773041 +0.4317928 0.8475045 0.2773041 +0.470214 0.8475045 0.2773041 +0.5050551 0.8475045 0.2773041 +0.5370987 0.8475045 0.2773041 +0.5668815 0.8475045 0.2773041 +0.5947903 0.8475045 0.2773041 +0.6211144 0.8475045 0.2773041 +0.6460766 0.8475045 0.2773041 +0.6698526 0.8475045 0.2773041 +0.6925839 0.8475045 0.2773041 +0.7143866 0.8475045 0.2773041 +0.7353569 0.8475045 0.2773041 +0.7555758 0.8475045 0.2773041 +0.7751122 0.8475045 0.2773041 +0.7940252 0.8475045 0.2773041 +0.8123661 0.8475045 0.2773041 +0.8301795 0.8475045 0.2773041 +0.8475045 0.8475045 0.2773041 +0.8643761 0.8475045 0.2773041 +0.880825 0.8475045 0.2773041 +0.8968787 0.8475045 0.2773041 +0.9125621 0.8475045 0.2773041 +0.9278974 0.8475045 0.2773041 +0.9429048 0.8475045 0.2773041 +0.9576028 0.8475045 0.2773041 +0.9720079 0.8475045 0.2773041 +0.9861357 0.8475045 0.2773041 +1 0.8475045 0.2773041 +0 0.8643761 0.2773041 +0.1939468 0.8643761 0.2773041 +0.2773041 0.8643761 0.2773041 +0.3384659 0.8643761 0.2773041 +0.3885728 0.8643761 0.2773041 +0.4317928 0.8643761 0.2773041 +0.470214 0.8643761 0.2773041 +0.5050551 0.8643761 0.2773041 +0.5370987 0.8643761 0.2773041 +0.5668815 0.8643761 0.2773041 +0.5947903 0.8643761 0.2773041 +0.6211144 0.8643761 0.2773041 +0.6460766 0.8643761 0.2773041 +0.6698526 0.8643761 0.2773041 +0.6925839 0.8643761 0.2773041 +0.7143866 0.8643761 0.2773041 +0.7353569 0.8643761 0.2773041 +0.7555758 0.8643761 0.2773041 +0.7751122 0.8643761 0.2773041 +0.7940252 0.8643761 0.2773041 +0.8123661 0.8643761 0.2773041 +0.8301795 0.8643761 0.2773041 +0.8475045 0.8643761 0.2773041 +0.8643761 0.8643761 0.2773041 +0.880825 0.8643761 0.2773041 +0.8968787 0.8643761 0.2773041 +0.9125621 0.8643761 0.2773041 +0.9278974 0.8643761 0.2773041 +0.9429048 0.8643761 0.2773041 +0.9576028 0.8643761 0.2773041 +0.9720079 0.8643761 0.2773041 +0.9861357 0.8643761 0.2773041 +1 0.8643761 0.2773041 +0 0.880825 0.2773041 +0.1939468 0.880825 0.2773041 +0.2773041 0.880825 0.2773041 +0.3384659 0.880825 0.2773041 +0.3885728 0.880825 0.2773041 +0.4317928 0.880825 0.2773041 +0.470214 0.880825 0.2773041 +0.5050551 0.880825 0.2773041 +0.5370987 0.880825 0.2773041 +0.5668815 0.880825 0.2773041 +0.5947903 0.880825 0.2773041 +0.6211144 0.880825 0.2773041 +0.6460766 0.880825 0.2773041 +0.6698526 0.880825 0.2773041 +0.6925839 0.880825 0.2773041 +0.7143866 0.880825 0.2773041 +0.7353569 0.880825 0.2773041 +0.7555758 0.880825 0.2773041 +0.7751122 0.880825 0.2773041 +0.7940252 0.880825 0.2773041 +0.8123661 0.880825 0.2773041 +0.8301795 0.880825 0.2773041 +0.8475045 0.880825 0.2773041 +0.8643761 0.880825 0.2773041 +0.880825 0.880825 0.2773041 +0.8968787 0.880825 0.2773041 +0.9125621 0.880825 0.2773041 +0.9278974 0.880825 0.2773041 +0.9429048 0.880825 0.2773041 +0.9576028 0.880825 0.2773041 +0.9720079 0.880825 0.2773041 +0.9861357 0.880825 0.2773041 +1 0.880825 0.2773041 +0 0.8968787 0.2773041 +0.1939468 0.8968787 0.2773041 +0.2773041 0.8968787 0.2773041 +0.3384659 0.8968787 0.2773041 +0.3885728 0.8968787 0.2773041 +0.4317928 0.8968787 0.2773041 +0.470214 0.8968787 0.2773041 +0.5050551 0.8968787 0.2773041 +0.5370987 0.8968787 0.2773041 +0.5668815 0.8968787 0.2773041 +0.5947903 0.8968787 0.2773041 +0.6211144 0.8968787 0.2773041 +0.6460766 0.8968787 0.2773041 +0.6698526 0.8968787 0.2773041 +0.6925839 0.8968787 0.2773041 +0.7143866 0.8968787 0.2773041 +0.7353569 0.8968787 0.2773041 +0.7555758 0.8968787 0.2773041 +0.7751122 0.8968787 0.2773041 +0.7940252 0.8968787 0.2773041 +0.8123661 0.8968787 0.2773041 +0.8301795 0.8968787 0.2773041 +0.8475045 0.8968787 0.2773041 +0.8643761 0.8968787 0.2773041 +0.880825 0.8968787 0.2773041 +0.8968787 0.8968787 0.2773041 +0.9125621 0.8968787 0.2773041 +0.9278974 0.8968787 0.2773041 +0.9429048 0.8968787 0.2773041 +0.9576028 0.8968787 0.2773041 +0.9720079 0.8968787 0.2773041 +0.9861357 0.8968787 0.2773041 +1 0.8968787 0.2773041 +0 0.9125621 0.2773041 +0.1939468 0.9125621 0.2773041 +0.2773041 0.9125621 0.2773041 +0.3384659 0.9125621 0.2773041 +0.3885728 0.9125621 0.2773041 +0.4317928 0.9125621 0.2773041 +0.470214 0.9125621 0.2773041 +0.5050551 0.9125621 0.2773041 +0.5370987 0.9125621 0.2773041 +0.5668815 0.9125621 0.2773041 +0.5947903 0.9125621 0.2773041 +0.6211144 0.9125621 0.2773041 +0.6460766 0.9125621 0.2773041 +0.6698526 0.9125621 0.2773041 +0.6925839 0.9125621 0.2773041 +0.7143866 0.9125621 0.2773041 +0.7353569 0.9125621 0.2773041 +0.7555758 0.9125621 0.2773041 +0.7751122 0.9125621 0.2773041 +0.7940252 0.9125621 0.2773041 +0.8123661 0.9125621 0.2773041 +0.8301795 0.9125621 0.2773041 +0.8475045 0.9125621 0.2773041 +0.8643761 0.9125621 0.2773041 +0.880825 0.9125621 0.2773041 +0.8968787 0.9125621 0.2773041 +0.9125621 0.9125621 0.2773041 +0.9278974 0.9125621 0.2773041 +0.9429048 0.9125621 0.2773041 +0.9576028 0.9125621 0.2773041 +0.9720079 0.9125621 0.2773041 +0.9861357 0.9125621 0.2773041 +1 0.9125621 0.2773041 +0 0.9278974 0.2773041 +0.1939468 0.9278974 0.2773041 +0.2773041 0.9278974 0.2773041 +0.3384659 0.9278974 0.2773041 +0.3885728 0.9278974 0.2773041 +0.4317928 0.9278974 0.2773041 +0.470214 0.9278974 0.2773041 +0.5050551 0.9278974 0.2773041 +0.5370987 0.9278974 0.2773041 +0.5668815 0.9278974 0.2773041 +0.5947903 0.9278974 0.2773041 +0.6211144 0.9278974 0.2773041 +0.6460766 0.9278974 0.2773041 +0.6698526 0.9278974 0.2773041 +0.6925839 0.9278974 0.2773041 +0.7143866 0.9278974 0.2773041 +0.7353569 0.9278974 0.2773041 +0.7555758 0.9278974 0.2773041 +0.7751122 0.9278974 0.2773041 +0.7940252 0.9278974 0.2773041 +0.8123661 0.9278974 0.2773041 +0.8301795 0.9278974 0.2773041 +0.8475045 0.9278974 0.2773041 +0.8643761 0.9278974 0.2773041 +0.880825 0.9278974 0.2773041 +0.8968787 0.9278974 0.2773041 +0.9125621 0.9278974 0.2773041 +0.9278974 0.9278974 0.2773041 +0.9429048 0.9278974 0.2773041 +0.9576028 0.9278974 0.2773041 +0.9720079 0.9278974 0.2773041 +0.9861357 0.9278974 0.2773041 +1 0.9278974 0.2773041 +0 0.9429048 0.2773041 +0.1939468 0.9429048 0.2773041 +0.2773041 0.9429048 0.2773041 +0.3384659 0.9429048 0.2773041 +0.3885728 0.9429048 0.2773041 +0.4317928 0.9429048 0.2773041 +0.470214 0.9429048 0.2773041 +0.5050551 0.9429048 0.2773041 +0.5370987 0.9429048 0.2773041 +0.5668815 0.9429048 0.2773041 +0.5947903 0.9429048 0.2773041 +0.6211144 0.9429048 0.2773041 +0.6460766 0.9429048 0.2773041 +0.6698526 0.9429048 0.2773041 +0.6925839 0.9429048 0.2773041 +0.7143866 0.9429048 0.2773041 +0.7353569 0.9429048 0.2773041 +0.7555758 0.9429048 0.2773041 +0.7751122 0.9429048 0.2773041 +0.7940252 0.9429048 0.2773041 +0.8123661 0.9429048 0.2773041 +0.8301795 0.9429048 0.2773041 +0.8475045 0.9429048 0.2773041 +0.8643761 0.9429048 0.2773041 +0.880825 0.9429048 0.2773041 +0.8968787 0.9429048 0.2773041 +0.9125621 0.9429048 0.2773041 +0.9278974 0.9429048 0.2773041 +0.9429048 0.9429048 0.2773041 +0.9576028 0.9429048 0.2773041 +0.9720079 0.9429048 0.2773041 +0.9861357 0.9429048 0.2773041 +1 0.9429048 0.2773041 +0 0.9576028 0.2773041 +0.1939468 0.9576028 0.2773041 +0.2773041 0.9576028 0.2773041 +0.3384659 0.9576028 0.2773041 +0.3885728 0.9576028 0.2773041 +0.4317928 0.9576028 0.2773041 +0.470214 0.9576028 0.2773041 +0.5050551 0.9576028 0.2773041 +0.5370987 0.9576028 0.2773041 +0.5668815 0.9576028 0.2773041 +0.5947903 0.9576028 0.2773041 +0.6211144 0.9576028 0.2773041 +0.6460766 0.9576028 0.2773041 +0.6698526 0.9576028 0.2773041 +0.6925839 0.9576028 0.2773041 +0.7143866 0.9576028 0.2773041 +0.7353569 0.9576028 0.2773041 +0.7555758 0.9576028 0.2773041 +0.7751122 0.9576028 0.2773041 +0.7940252 0.9576028 0.2773041 +0.8123661 0.9576028 0.2773041 +0.8301795 0.9576028 0.2773041 +0.8475045 0.9576028 0.2773041 +0.8643761 0.9576028 0.2773041 +0.880825 0.9576028 0.2773041 +0.8968787 0.9576028 0.2773041 +0.9125621 0.9576028 0.2773041 +0.9278974 0.9576028 0.2773041 +0.9429048 0.9576028 0.2773041 +0.9576028 0.9576028 0.2773041 +0.9720079 0.9576028 0.2773041 +0.9861357 0.9576028 0.2773041 +1 0.9576028 0.2773041 +0 0.9720079 0.2773041 +0.1939468 0.9720079 0.2773041 +0.2773041 0.9720079 0.2773041 +0.3384659 0.9720079 0.2773041 +0.3885728 0.9720079 0.2773041 +0.4317928 0.9720079 0.2773041 +0.470214 0.9720079 0.2773041 +0.5050551 0.9720079 0.2773041 +0.5370987 0.9720079 0.2773041 +0.5668815 0.9720079 0.2773041 +0.5947903 0.9720079 0.2773041 +0.6211144 0.9720079 0.2773041 +0.6460766 0.9720079 0.2773041 +0.6698526 0.9720079 0.2773041 +0.6925839 0.9720079 0.2773041 +0.7143866 0.9720079 0.2773041 +0.7353569 0.9720079 0.2773041 +0.7555758 0.9720079 0.2773041 +0.7751122 0.9720079 0.2773041 +0.7940252 0.9720079 0.2773041 +0.8123661 0.9720079 0.2773041 +0.8301795 0.9720079 0.2773041 +0.8475045 0.9720079 0.2773041 +0.8643761 0.9720079 0.2773041 +0.880825 0.9720079 0.2773041 +0.8968787 0.9720079 0.2773041 +0.9125621 0.9720079 0.2773041 +0.9278974 0.9720079 0.2773041 +0.9429048 0.9720079 0.2773041 +0.9576028 0.9720079 0.2773041 +0.9720079 0.9720079 0.2773041 +0.9861357 0.9720079 0.2773041 +1 0.9720079 0.2773041 +0 0.9861357 0.2773041 +0.1939468 0.9861357 0.2773041 +0.2773041 0.9861357 0.2773041 +0.3384659 0.9861357 0.2773041 +0.3885728 0.9861357 0.2773041 +0.4317928 0.9861357 0.2773041 +0.470214 0.9861357 0.2773041 +0.5050551 0.9861357 0.2773041 +0.5370987 0.9861357 0.2773041 +0.5668815 0.9861357 0.2773041 +0.5947903 0.9861357 0.2773041 +0.6211144 0.9861357 0.2773041 +0.6460766 0.9861357 0.2773041 +0.6698526 0.9861357 0.2773041 +0.6925839 0.9861357 0.2773041 +0.7143866 0.9861357 0.2773041 +0.7353569 0.9861357 0.2773041 +0.7555758 0.9861357 0.2773041 +0.7751122 0.9861357 0.2773041 +0.7940252 0.9861357 0.2773041 +0.8123661 0.9861357 0.2773041 +0.8301795 0.9861357 0.2773041 +0.8475045 0.9861357 0.2773041 +0.8643761 0.9861357 0.2773041 +0.880825 0.9861357 0.2773041 +0.8968787 0.9861357 0.2773041 +0.9125621 0.9861357 0.2773041 +0.9278974 0.9861357 0.2773041 +0.9429048 0.9861357 0.2773041 +0.9576028 0.9861357 0.2773041 +0.9720079 0.9861357 0.2773041 +0.9861357 0.9861357 0.2773041 +1 0.9861357 0.2773041 +0 1 0.2773041 +0.1939468 1 0.2773041 +0.2773041 1 0.2773041 +0.3384659 1 0.2773041 +0.3885728 1 0.2773041 +0.4317928 1 0.2773041 +0.470214 1 0.2773041 +0.5050551 1 0.2773041 +0.5370987 1 0.2773041 +0.5668815 1 0.2773041 +0.5947903 1 0.2773041 +0.6211144 1 0.2773041 +0.6460766 1 0.2773041 +0.6698526 1 0.2773041 +0.6925839 1 0.2773041 +0.7143866 1 0.2773041 +0.7353569 1 0.2773041 +0.7555758 1 0.2773041 +0.7751122 1 0.2773041 +0.7940252 1 0.2773041 +0.8123661 1 0.2773041 +0.8301795 1 0.2773041 +0.8475045 1 0.2773041 +0.8643761 1 0.2773041 +0.880825 1 0.2773041 +0.8968787 1 0.2773041 +0.9125621 1 0.2773041 +0.9278974 1 0.2773041 +0.9429048 1 0.2773041 +0.9576028 1 0.2773041 +0.9720079 1 0.2773041 +0.9861357 1 0.2773041 +1 1 0.2773041 +0 0 0.3384659 +0.1939468 0 0.3384659 +0.2773041 0 0.3384659 +0.3384659 0 0.3384659 +0.3885728 0 0.3384659 +0.4317928 0 0.3384659 +0.470214 0 0.3384659 +0.5050551 0 0.3384659 +0.5370987 0 0.3384659 +0.5668815 0 0.3384659 +0.5947903 0 0.3384659 +0.6211144 0 0.3384659 +0.6460766 0 0.3384659 +0.6698526 0 0.3384659 +0.6925839 0 0.3384659 +0.7143866 0 0.3384659 +0.7353569 0 0.3384659 +0.7555758 0 0.3384659 +0.7751122 0 0.3384659 +0.7940252 0 0.3384659 +0.8123661 0 0.3384659 +0.8301795 0 0.3384659 +0.8475045 0 0.3384659 +0.8643761 0 0.3384659 +0.880825 0 0.3384659 +0.8968787 0 0.3384659 +0.9125621 0 0.3384659 +0.9278974 0 0.3384659 +0.9429048 0 0.3384659 +0.9576028 0 0.3384659 +0.9720079 0 0.3384659 +0.9861357 0 0.3384659 +1 0 0.3384659 +0 0.1939468 0.3384659 +0.1939468 0.1939468 0.3384659 +0.2773041 0.1939468 0.3384659 +0.3384659 0.1939468 0.3384659 +0.3885728 0.1939468 0.3384659 +0.4317928 0.1939468 0.3384659 +0.470214 0.1939468 0.3384659 +0.5050551 0.1939468 0.3384659 +0.5370987 0.1939468 0.3384659 +0.5668815 0.1939468 0.3384659 +0.5947903 0.1939468 0.3384659 +0.6211144 0.1939468 0.3384659 +0.6460766 0.1939468 0.3384659 +0.6698526 0.1939468 0.3384659 +0.6925839 0.1939468 0.3384659 +0.7143866 0.1939468 0.3384659 +0.7353569 0.1939468 0.3384659 +0.7555758 0.1939468 0.3384659 +0.7751122 0.1939468 0.3384659 +0.7940252 0.1939468 0.3384659 +0.8123661 0.1939468 0.3384659 +0.8301795 0.1939468 0.3384659 +0.8475045 0.1939468 0.3384659 +0.8643761 0.1939468 0.3384659 +0.880825 0.1939468 0.3384659 +0.8968787 0.1939468 0.3384659 +0.9125621 0.1939468 0.3384659 +0.9278974 0.1939468 0.3384659 +0.9429048 0.1939468 0.3384659 +0.9576028 0.1939468 0.3384659 +0.9720079 0.1939468 0.3384659 +0.9861357 0.1939468 0.3384659 +1 0.1939468 0.3384659 +0 0.2773041 0.3384659 +0.1939468 0.2773041 0.3384659 +0.2773041 0.2773041 0.3384659 +0.3384659 0.2773041 0.3384659 +0.3885728 0.2773041 0.3384659 +0.4317928 0.2773041 0.3384659 +0.470214 0.2773041 0.3384659 +0.5050551 0.2773041 0.3384659 +0.5370987 0.2773041 0.3384659 +0.5668815 0.2773041 0.3384659 +0.5947903 0.2773041 0.3384659 +0.6211144 0.2773041 0.3384659 +0.6460766 0.2773041 0.3384659 +0.6698526 0.2773041 0.3384659 +0.6925839 0.2773041 0.3384659 +0.7143866 0.2773041 0.3384659 +0.7353569 0.2773041 0.3384659 +0.7555758 0.2773041 0.3384659 +0.7751122 0.2773041 0.3384659 +0.7940252 0.2773041 0.3384659 +0.8123661 0.2773041 0.3384659 +0.8301795 0.2773041 0.3384659 +0.8475045 0.2773041 0.3384659 +0.8643761 0.2773041 0.3384659 +0.880825 0.2773041 0.3384659 +0.8968787 0.2773041 0.3384659 +0.9125621 0.2773041 0.3384659 +0.9278974 0.2773041 0.3384659 +0.9429048 0.2773041 0.3384659 +0.9576028 0.2773041 0.3384659 +0.9720079 0.2773041 0.3384659 +0.9861357 0.2773041 0.3384659 +1 0.2773041 0.3384659 +0 0.3384659 0.3384659 +0.1939468 0.3384659 0.3384659 +0.2773041 0.3384659 0.3384659 +0.3384659 0.3384659 0.3384659 +0.3885728 0.3384659 0.3384659 +0.4317928 0.3384659 0.3384659 +0.470214 0.3384659 0.3384659 +0.5050551 0.3384659 0.3384659 +0.5370987 0.3384659 0.3384659 +0.5668815 0.3384659 0.3384659 +0.5947903 0.3384659 0.3384659 +0.6211144 0.3384659 0.3384659 +0.6460766 0.3384659 0.3384659 +0.6698526 0.3384659 0.3384659 +0.6925839 0.3384659 0.3384659 +0.7143866 0.3384659 0.3384659 +0.7353569 0.3384659 0.3384659 +0.7555758 0.3384659 0.3384659 +0.7751122 0.3384659 0.3384659 +0.7940252 0.3384659 0.3384659 +0.8123661 0.3384659 0.3384659 +0.8301795 0.3384659 0.3384659 +0.8475045 0.3384659 0.3384659 +0.8643761 0.3384659 0.3384659 +0.880825 0.3384659 0.3384659 +0.8968787 0.3384659 0.3384659 +0.9125621 0.3384659 0.3384659 +0.9278974 0.3384659 0.3384659 +0.9429048 0.3384659 0.3384659 +0.9576028 0.3384659 0.3384659 +0.9720079 0.3384659 0.3384659 +0.9861357 0.3384659 0.3384659 +1 0.3384659 0.3384659 +0 0.3885728 0.3384659 +0.1939468 0.3885728 0.3384659 +0.2773041 0.3885728 0.3384659 +0.3384659 0.3885728 0.3384659 +0.3885728 0.3885728 0.3384659 +0.4317928 0.3885728 0.3384659 +0.470214 0.3885728 0.3384659 +0.5050551 0.3885728 0.3384659 +0.5370987 0.3885728 0.3384659 +0.5668815 0.3885728 0.3384659 +0.5947903 0.3885728 0.3384659 +0.6211144 0.3885728 0.3384659 +0.6460766 0.3885728 0.3384659 +0.6698526 0.3885728 0.3384659 +0.6925839 0.3885728 0.3384659 +0.7143866 0.3885728 0.3384659 +0.7353569 0.3885728 0.3384659 +0.7555758 0.3885728 0.3384659 +0.7751122 0.3885728 0.3384659 +0.7940252 0.3885728 0.3384659 +0.8123661 0.3885728 0.3384659 +0.8301795 0.3885728 0.3384659 +0.8475045 0.3885728 0.3384659 +0.8643761 0.3885728 0.3384659 +0.880825 0.3885728 0.3384659 +0.8968787 0.3885728 0.3384659 +0.9125621 0.3885728 0.3384659 +0.9278974 0.3885728 0.3384659 +0.9429048 0.3885728 0.3384659 +0.9576028 0.3885728 0.3384659 +0.9720079 0.3885728 0.3384659 +0.9861357 0.3885728 0.3384659 +1 0.3885728 0.3384659 +0 0.4317928 0.3384659 +0.1939468 0.4317928 0.3384659 +0.2773041 0.4317928 0.3384659 +0.3384659 0.4317928 0.3384659 +0.3885728 0.4317928 0.3384659 +0.4317928 0.4317928 0.3384659 +0.470214 0.4317928 0.3384659 +0.5050551 0.4317928 0.3384659 +0.5370987 0.4317928 0.3384659 +0.5668815 0.4317928 0.3384659 +0.5947903 0.4317928 0.3384659 +0.6211144 0.4317928 0.3384659 +0.6460766 0.4317928 0.3384659 +0.6698526 0.4317928 0.3384659 +0.6925839 0.4317928 0.3384659 +0.7143866 0.4317928 0.3384659 +0.7353569 0.4317928 0.3384659 +0.7555758 0.4317928 0.3384659 +0.7751122 0.4317928 0.3384659 +0.7940252 0.4317928 0.3384659 +0.8123661 0.4317928 0.3384659 +0.8301795 0.4317928 0.3384659 +0.8475045 0.4317928 0.3384659 +0.8643761 0.4317928 0.3384659 +0.880825 0.4317928 0.3384659 +0.8968787 0.4317928 0.3384659 +0.9125621 0.4317928 0.3384659 +0.9278974 0.4317928 0.3384659 +0.9429048 0.4317928 0.3384659 +0.9576028 0.4317928 0.3384659 +0.9720079 0.4317928 0.3384659 +0.9861357 0.4317928 0.3384659 +1 0.4317928 0.3384659 +0 0.470214 0.3384659 +0.1939468 0.470214 0.3384659 +0.2773041 0.470214 0.3384659 +0.3384659 0.470214 0.3384659 +0.3885728 0.470214 0.3384659 +0.4317928 0.470214 0.3384659 +0.470214 0.470214 0.3384659 +0.5050551 0.470214 0.3384659 +0.5370987 0.470214 0.3384659 +0.5668815 0.470214 0.3384659 +0.5947903 0.470214 0.3384659 +0.6211144 0.470214 0.3384659 +0.6460766 0.470214 0.3384659 +0.6698526 0.470214 0.3384659 +0.6925839 0.470214 0.3384659 +0.7143866 0.470214 0.3384659 +0.7353569 0.470214 0.3384659 +0.7555758 0.470214 0.3384659 +0.7751122 0.470214 0.3384659 +0.7940252 0.470214 0.3384659 +0.8123661 0.470214 0.3384659 +0.8301795 0.470214 0.3384659 +0.8475045 0.470214 0.3384659 +0.8643761 0.470214 0.3384659 +0.880825 0.470214 0.3384659 +0.8968787 0.470214 0.3384659 +0.9125621 0.470214 0.3384659 +0.9278974 0.470214 0.3384659 +0.9429048 0.470214 0.3384659 +0.9576028 0.470214 0.3384659 +0.9720079 0.470214 0.3384659 +0.9861357 0.470214 0.3384659 +1 0.470214 0.3384659 +0 0.5050551 0.3384659 +0.1939468 0.5050551 0.3384659 +0.2773041 0.5050551 0.3384659 +0.3384659 0.5050551 0.3384659 +0.3885728 0.5050551 0.3384659 +0.4317928 0.5050551 0.3384659 +0.470214 0.5050551 0.3384659 +0.5050551 0.5050551 0.3384659 +0.5370987 0.5050551 0.3384659 +0.5668815 0.5050551 0.3384659 +0.5947903 0.5050551 0.3384659 +0.6211144 0.5050551 0.3384659 +0.6460766 0.5050551 0.3384659 +0.6698526 0.5050551 0.3384659 +0.6925839 0.5050551 0.3384659 +0.7143866 0.5050551 0.3384659 +0.7353569 0.5050551 0.3384659 +0.7555758 0.5050551 0.3384659 +0.7751122 0.5050551 0.3384659 +0.7940252 0.5050551 0.3384659 +0.8123661 0.5050551 0.3384659 +0.8301795 0.5050551 0.3384659 +0.8475045 0.5050551 0.3384659 +0.8643761 0.5050551 0.3384659 +0.880825 0.5050551 0.3384659 +0.8968787 0.5050551 0.3384659 +0.9125621 0.5050551 0.3384659 +0.9278974 0.5050551 0.3384659 +0.9429048 0.5050551 0.3384659 +0.9576028 0.5050551 0.3384659 +0.9720079 0.5050551 0.3384659 +0.9861357 0.5050551 0.3384659 +1 0.5050551 0.3384659 +0 0.5370987 0.3384659 +0.1939468 0.5370987 0.3384659 +0.2773041 0.5370987 0.3384659 +0.3384659 0.5370987 0.3384659 +0.3885728 0.5370987 0.3384659 +0.4317928 0.5370987 0.3384659 +0.470214 0.5370987 0.3384659 +0.5050551 0.5370987 0.3384659 +0.5370987 0.5370987 0.3384659 +0.5668815 0.5370987 0.3384659 +0.5947903 0.5370987 0.3384659 +0.6211144 0.5370987 0.3384659 +0.6460766 0.5370987 0.3384659 +0.6698526 0.5370987 0.3384659 +0.6925839 0.5370987 0.3384659 +0.7143866 0.5370987 0.3384659 +0.7353569 0.5370987 0.3384659 +0.7555758 0.5370987 0.3384659 +0.7751122 0.5370987 0.3384659 +0.7940252 0.5370987 0.3384659 +0.8123661 0.5370987 0.3384659 +0.8301795 0.5370987 0.3384659 +0.8475045 0.5370987 0.3384659 +0.8643761 0.5370987 0.3384659 +0.880825 0.5370987 0.3384659 +0.8968787 0.5370987 0.3384659 +0.9125621 0.5370987 0.3384659 +0.9278974 0.5370987 0.3384659 +0.9429048 0.5370987 0.3384659 +0.9576028 0.5370987 0.3384659 +0.9720079 0.5370987 0.3384659 +0.9861357 0.5370987 0.3384659 +1 0.5370987 0.3384659 +0 0.5668815 0.3384659 +0.1939468 0.5668815 0.3384659 +0.2773041 0.5668815 0.3384659 +0.3384659 0.5668815 0.3384659 +0.3885728 0.5668815 0.3384659 +0.4317928 0.5668815 0.3384659 +0.470214 0.5668815 0.3384659 +0.5050551 0.5668815 0.3384659 +0.5370987 0.5668815 0.3384659 +0.5668815 0.5668815 0.3384659 +0.5947903 0.5668815 0.3384659 +0.6211144 0.5668815 0.3384659 +0.6460766 0.5668815 0.3384659 +0.6698526 0.5668815 0.3384659 +0.6925839 0.5668815 0.3384659 +0.7143866 0.5668815 0.3384659 +0.7353569 0.5668815 0.3384659 +0.7555758 0.5668815 0.3384659 +0.7751122 0.5668815 0.3384659 +0.7940252 0.5668815 0.3384659 +0.8123661 0.5668815 0.3384659 +0.8301795 0.5668815 0.3384659 +0.8475045 0.5668815 0.3384659 +0.8643761 0.5668815 0.3384659 +0.880825 0.5668815 0.3384659 +0.8968787 0.5668815 0.3384659 +0.9125621 0.5668815 0.3384659 +0.9278974 0.5668815 0.3384659 +0.9429048 0.5668815 0.3384659 +0.9576028 0.5668815 0.3384659 +0.9720079 0.5668815 0.3384659 +0.9861357 0.5668815 0.3384659 +1 0.5668815 0.3384659 +0 0.5947903 0.3384659 +0.1939468 0.5947903 0.3384659 +0.2773041 0.5947903 0.3384659 +0.3384659 0.5947903 0.3384659 +0.3885728 0.5947903 0.3384659 +0.4317928 0.5947903 0.3384659 +0.470214 0.5947903 0.3384659 +0.5050551 0.5947903 0.3384659 +0.5370987 0.5947903 0.3384659 +0.5668815 0.5947903 0.3384659 +0.5947903 0.5947903 0.3384659 +0.6211144 0.5947903 0.3384659 +0.6460766 0.5947903 0.3384659 +0.6698526 0.5947903 0.3384659 +0.6925839 0.5947903 0.3384659 +0.7143866 0.5947903 0.3384659 +0.7353569 0.5947903 0.3384659 +0.7555758 0.5947903 0.3384659 +0.7751122 0.5947903 0.3384659 +0.7940252 0.5947903 0.3384659 +0.8123661 0.5947903 0.3384659 +0.8301795 0.5947903 0.3384659 +0.8475045 0.5947903 0.3384659 +0.8643761 0.5947903 0.3384659 +0.880825 0.5947903 0.3384659 +0.8968787 0.5947903 0.3384659 +0.9125621 0.5947903 0.3384659 +0.9278974 0.5947903 0.3384659 +0.9429048 0.5947903 0.3384659 +0.9576028 0.5947903 0.3384659 +0.9720079 0.5947903 0.3384659 +0.9861357 0.5947903 0.3384659 +1 0.5947903 0.3384659 +0 0.6211144 0.3384659 +0.1939468 0.6211144 0.3384659 +0.2773041 0.6211144 0.3384659 +0.3384659 0.6211144 0.3384659 +0.3885728 0.6211144 0.3384659 +0.4317928 0.6211144 0.3384659 +0.470214 0.6211144 0.3384659 +0.5050551 0.6211144 0.3384659 +0.5370987 0.6211144 0.3384659 +0.5668815 0.6211144 0.3384659 +0.5947903 0.6211144 0.3384659 +0.6211144 0.6211144 0.3384659 +0.6460766 0.6211144 0.3384659 +0.6698526 0.6211144 0.3384659 +0.6925839 0.6211144 0.3384659 +0.7143866 0.6211144 0.3384659 +0.7353569 0.6211144 0.3384659 +0.7555758 0.6211144 0.3384659 +0.7751122 0.6211144 0.3384659 +0.7940252 0.6211144 0.3384659 +0.8123661 0.6211144 0.3384659 +0.8301795 0.6211144 0.3384659 +0.8475045 0.6211144 0.3384659 +0.8643761 0.6211144 0.3384659 +0.880825 0.6211144 0.3384659 +0.8968787 0.6211144 0.3384659 +0.9125621 0.6211144 0.3384659 +0.9278974 0.6211144 0.3384659 +0.9429048 0.6211144 0.3384659 +0.9576028 0.6211144 0.3384659 +0.9720079 0.6211144 0.3384659 +0.9861357 0.6211144 0.3384659 +1 0.6211144 0.3384659 +0 0.6460766 0.3384659 +0.1939468 0.6460766 0.3384659 +0.2773041 0.6460766 0.3384659 +0.3384659 0.6460766 0.3384659 +0.3885728 0.6460766 0.3384659 +0.4317928 0.6460766 0.3384659 +0.470214 0.6460766 0.3384659 +0.5050551 0.6460766 0.3384659 +0.5370987 0.6460766 0.3384659 +0.5668815 0.6460766 0.3384659 +0.5947903 0.6460766 0.3384659 +0.6211144 0.6460766 0.3384659 +0.6460766 0.6460766 0.3384659 +0.6698526 0.6460766 0.3384659 +0.6925839 0.6460766 0.3384659 +0.7143866 0.6460766 0.3384659 +0.7353569 0.6460766 0.3384659 +0.7555758 0.6460766 0.3384659 +0.7751122 0.6460766 0.3384659 +0.7940252 0.6460766 0.3384659 +0.8123661 0.6460766 0.3384659 +0.8301795 0.6460766 0.3384659 +0.8475045 0.6460766 0.3384659 +0.8643761 0.6460766 0.3384659 +0.880825 0.6460766 0.3384659 +0.8968787 0.6460766 0.3384659 +0.9125621 0.6460766 0.3384659 +0.9278974 0.6460766 0.3384659 +0.9429048 0.6460766 0.3384659 +0.9576028 0.6460766 0.3384659 +0.9720079 0.6460766 0.3384659 +0.9861357 0.6460766 0.3384659 +1 0.6460766 0.3384659 +0 0.6698526 0.3384659 +0.1939468 0.6698526 0.3384659 +0.2773041 0.6698526 0.3384659 +0.3384659 0.6698526 0.3384659 +0.3885728 0.6698526 0.3384659 +0.4317928 0.6698526 0.3384659 +0.470214 0.6698526 0.3384659 +0.5050551 0.6698526 0.3384659 +0.5370987 0.6698526 0.3384659 +0.5668815 0.6698526 0.3384659 +0.5947903 0.6698526 0.3384659 +0.6211144 0.6698526 0.3384659 +0.6460766 0.6698526 0.3384659 +0.6698526 0.6698526 0.3384659 +0.6925839 0.6698526 0.3384659 +0.7143866 0.6698526 0.3384659 +0.7353569 0.6698526 0.3384659 +0.7555758 0.6698526 0.3384659 +0.7751122 0.6698526 0.3384659 +0.7940252 0.6698526 0.3384659 +0.8123661 0.6698526 0.3384659 +0.8301795 0.6698526 0.3384659 +0.8475045 0.6698526 0.3384659 +0.8643761 0.6698526 0.3384659 +0.880825 0.6698526 0.3384659 +0.8968787 0.6698526 0.3384659 +0.9125621 0.6698526 0.3384659 +0.9278974 0.6698526 0.3384659 +0.9429048 0.6698526 0.3384659 +0.9576028 0.6698526 0.3384659 +0.9720079 0.6698526 0.3384659 +0.9861357 0.6698526 0.3384659 +1 0.6698526 0.3384659 +0 0.6925839 0.3384659 +0.1939468 0.6925839 0.3384659 +0.2773041 0.6925839 0.3384659 +0.3384659 0.6925839 0.3384659 +0.3885728 0.6925839 0.3384659 +0.4317928 0.6925839 0.3384659 +0.470214 0.6925839 0.3384659 +0.5050551 0.6925839 0.3384659 +0.5370987 0.6925839 0.3384659 +0.5668815 0.6925839 0.3384659 +0.5947903 0.6925839 0.3384659 +0.6211144 0.6925839 0.3384659 +0.6460766 0.6925839 0.3384659 +0.6698526 0.6925839 0.3384659 +0.6925839 0.6925839 0.3384659 +0.7143866 0.6925839 0.3384659 +0.7353569 0.6925839 0.3384659 +0.7555758 0.6925839 0.3384659 +0.7751122 0.6925839 0.3384659 +0.7940252 0.6925839 0.3384659 +0.8123661 0.6925839 0.3384659 +0.8301795 0.6925839 0.3384659 +0.8475045 0.6925839 0.3384659 +0.8643761 0.6925839 0.3384659 +0.880825 0.6925839 0.3384659 +0.8968787 0.6925839 0.3384659 +0.9125621 0.6925839 0.3384659 +0.9278974 0.6925839 0.3384659 +0.9429048 0.6925839 0.3384659 +0.9576028 0.6925839 0.3384659 +0.9720079 0.6925839 0.3384659 +0.9861357 0.6925839 0.3384659 +1 0.6925839 0.3384659 +0 0.7143866 0.3384659 +0.1939468 0.7143866 0.3384659 +0.2773041 0.7143866 0.3384659 +0.3384659 0.7143866 0.3384659 +0.3885728 0.7143866 0.3384659 +0.4317928 0.7143866 0.3384659 +0.470214 0.7143866 0.3384659 +0.5050551 0.7143866 0.3384659 +0.5370987 0.7143866 0.3384659 +0.5668815 0.7143866 0.3384659 +0.5947903 0.7143866 0.3384659 +0.6211144 0.7143866 0.3384659 +0.6460766 0.7143866 0.3384659 +0.6698526 0.7143866 0.3384659 +0.6925839 0.7143866 0.3384659 +0.7143866 0.7143866 0.3384659 +0.7353569 0.7143866 0.3384659 +0.7555758 0.7143866 0.3384659 +0.7751122 0.7143866 0.3384659 +0.7940252 0.7143866 0.3384659 +0.8123661 0.7143866 0.3384659 +0.8301795 0.7143866 0.3384659 +0.8475045 0.7143866 0.3384659 +0.8643761 0.7143866 0.3384659 +0.880825 0.7143866 0.3384659 +0.8968787 0.7143866 0.3384659 +0.9125621 0.7143866 0.3384659 +0.9278974 0.7143866 0.3384659 +0.9429048 0.7143866 0.3384659 +0.9576028 0.7143866 0.3384659 +0.9720079 0.7143866 0.3384659 +0.9861357 0.7143866 0.3384659 +1 0.7143866 0.3384659 +0 0.7353569 0.3384659 +0.1939468 0.7353569 0.3384659 +0.2773041 0.7353569 0.3384659 +0.3384659 0.7353569 0.3384659 +0.3885728 0.7353569 0.3384659 +0.4317928 0.7353569 0.3384659 +0.470214 0.7353569 0.3384659 +0.5050551 0.7353569 0.3384659 +0.5370987 0.7353569 0.3384659 +0.5668815 0.7353569 0.3384659 +0.5947903 0.7353569 0.3384659 +0.6211144 0.7353569 0.3384659 +0.6460766 0.7353569 0.3384659 +0.6698526 0.7353569 0.3384659 +0.6925839 0.7353569 0.3384659 +0.7143866 0.7353569 0.3384659 +0.7353569 0.7353569 0.3384659 +0.7555758 0.7353569 0.3384659 +0.7751122 0.7353569 0.3384659 +0.7940252 0.7353569 0.3384659 +0.8123661 0.7353569 0.3384659 +0.8301795 0.7353569 0.3384659 +0.8475045 0.7353569 0.3384659 +0.8643761 0.7353569 0.3384659 +0.880825 0.7353569 0.3384659 +0.8968787 0.7353569 0.3384659 +0.9125621 0.7353569 0.3384659 +0.9278974 0.7353569 0.3384659 +0.9429048 0.7353569 0.3384659 +0.9576028 0.7353569 0.3384659 +0.9720079 0.7353569 0.3384659 +0.9861357 0.7353569 0.3384659 +1 0.7353569 0.3384659 +0 0.7555758 0.3384659 +0.1939468 0.7555758 0.3384659 +0.2773041 0.7555758 0.3384659 +0.3384659 0.7555758 0.3384659 +0.3885728 0.7555758 0.3384659 +0.4317928 0.7555758 0.3384659 +0.470214 0.7555758 0.3384659 +0.5050551 0.7555758 0.3384659 +0.5370987 0.7555758 0.3384659 +0.5668815 0.7555758 0.3384659 +0.5947903 0.7555758 0.3384659 +0.6211144 0.7555758 0.3384659 +0.6460766 0.7555758 0.3384659 +0.6698526 0.7555758 0.3384659 +0.6925839 0.7555758 0.3384659 +0.7143866 0.7555758 0.3384659 +0.7353569 0.7555758 0.3384659 +0.7555758 0.7555758 0.3384659 +0.7751122 0.7555758 0.3384659 +0.7940252 0.7555758 0.3384659 +0.8123661 0.7555758 0.3384659 +0.8301795 0.7555758 0.3384659 +0.8475045 0.7555758 0.3384659 +0.8643761 0.7555758 0.3384659 +0.880825 0.7555758 0.3384659 +0.8968787 0.7555758 0.3384659 +0.9125621 0.7555758 0.3384659 +0.9278974 0.7555758 0.3384659 +0.9429048 0.7555758 0.3384659 +0.9576028 0.7555758 0.3384659 +0.9720079 0.7555758 0.3384659 +0.9861357 0.7555758 0.3384659 +1 0.7555758 0.3384659 +0 0.7751122 0.3384659 +0.1939468 0.7751122 0.3384659 +0.2773041 0.7751122 0.3384659 +0.3384659 0.7751122 0.3384659 +0.3885728 0.7751122 0.3384659 +0.4317928 0.7751122 0.3384659 +0.470214 0.7751122 0.3384659 +0.5050551 0.7751122 0.3384659 +0.5370987 0.7751122 0.3384659 +0.5668815 0.7751122 0.3384659 +0.5947903 0.7751122 0.3384659 +0.6211144 0.7751122 0.3384659 +0.6460766 0.7751122 0.3384659 +0.6698526 0.7751122 0.3384659 +0.6925839 0.7751122 0.3384659 +0.7143866 0.7751122 0.3384659 +0.7353569 0.7751122 0.3384659 +0.7555758 0.7751122 0.3384659 +0.7751122 0.7751122 0.3384659 +0.7940252 0.7751122 0.3384659 +0.8123661 0.7751122 0.3384659 +0.8301795 0.7751122 0.3384659 +0.8475045 0.7751122 0.3384659 +0.8643761 0.7751122 0.3384659 +0.880825 0.7751122 0.3384659 +0.8968787 0.7751122 0.3384659 +0.9125621 0.7751122 0.3384659 +0.9278974 0.7751122 0.3384659 +0.9429048 0.7751122 0.3384659 +0.9576028 0.7751122 0.3384659 +0.9720079 0.7751122 0.3384659 +0.9861357 0.7751122 0.3384659 +1 0.7751122 0.3384659 +0 0.7940252 0.3384659 +0.1939468 0.7940252 0.3384659 +0.2773041 0.7940252 0.3384659 +0.3384659 0.7940252 0.3384659 +0.3885728 0.7940252 0.3384659 +0.4317928 0.7940252 0.3384659 +0.470214 0.7940252 0.3384659 +0.5050551 0.7940252 0.3384659 +0.5370987 0.7940252 0.3384659 +0.5668815 0.7940252 0.3384659 +0.5947903 0.7940252 0.3384659 +0.6211144 0.7940252 0.3384659 +0.6460766 0.7940252 0.3384659 +0.6698526 0.7940252 0.3384659 +0.6925839 0.7940252 0.3384659 +0.7143866 0.7940252 0.3384659 +0.7353569 0.7940252 0.3384659 +0.7555758 0.7940252 0.3384659 +0.7751122 0.7940252 0.3384659 +0.7940252 0.7940252 0.3384659 +0.8123661 0.7940252 0.3384659 +0.8301795 0.7940252 0.3384659 +0.8475045 0.7940252 0.3384659 +0.8643761 0.7940252 0.3384659 +0.880825 0.7940252 0.3384659 +0.8968787 0.7940252 0.3384659 +0.9125621 0.7940252 0.3384659 +0.9278974 0.7940252 0.3384659 +0.9429048 0.7940252 0.3384659 +0.9576028 0.7940252 0.3384659 +0.9720079 0.7940252 0.3384659 +0.9861357 0.7940252 0.3384659 +1 0.7940252 0.3384659 +0 0.8123661 0.3384659 +0.1939468 0.8123661 0.3384659 +0.2773041 0.8123661 0.3384659 +0.3384659 0.8123661 0.3384659 +0.3885728 0.8123661 0.3384659 +0.4317928 0.8123661 0.3384659 +0.470214 0.8123661 0.3384659 +0.5050551 0.8123661 0.3384659 +0.5370987 0.8123661 0.3384659 +0.5668815 0.8123661 0.3384659 +0.5947903 0.8123661 0.3384659 +0.6211144 0.8123661 0.3384659 +0.6460766 0.8123661 0.3384659 +0.6698526 0.8123661 0.3384659 +0.6925839 0.8123661 0.3384659 +0.7143866 0.8123661 0.3384659 +0.7353569 0.8123661 0.3384659 +0.7555758 0.8123661 0.3384659 +0.7751122 0.8123661 0.3384659 +0.7940252 0.8123661 0.3384659 +0.8123661 0.8123661 0.3384659 +0.8301795 0.8123661 0.3384659 +0.8475045 0.8123661 0.3384659 +0.8643761 0.8123661 0.3384659 +0.880825 0.8123661 0.3384659 +0.8968787 0.8123661 0.3384659 +0.9125621 0.8123661 0.3384659 +0.9278974 0.8123661 0.3384659 +0.9429048 0.8123661 0.3384659 +0.9576028 0.8123661 0.3384659 +0.9720079 0.8123661 0.3384659 +0.9861357 0.8123661 0.3384659 +1 0.8123661 0.3384659 +0 0.8301795 0.3384659 +0.1939468 0.8301795 0.3384659 +0.2773041 0.8301795 0.3384659 +0.3384659 0.8301795 0.3384659 +0.3885728 0.8301795 0.3384659 +0.4317928 0.8301795 0.3384659 +0.470214 0.8301795 0.3384659 +0.5050551 0.8301795 0.3384659 +0.5370987 0.8301795 0.3384659 +0.5668815 0.8301795 0.3384659 +0.5947903 0.8301795 0.3384659 +0.6211144 0.8301795 0.3384659 +0.6460766 0.8301795 0.3384659 +0.6698526 0.8301795 0.3384659 +0.6925839 0.8301795 0.3384659 +0.7143866 0.8301795 0.3384659 +0.7353569 0.8301795 0.3384659 +0.7555758 0.8301795 0.3384659 +0.7751122 0.8301795 0.3384659 +0.7940252 0.8301795 0.3384659 +0.8123661 0.8301795 0.3384659 +0.8301795 0.8301795 0.3384659 +0.8475045 0.8301795 0.3384659 +0.8643761 0.8301795 0.3384659 +0.880825 0.8301795 0.3384659 +0.8968787 0.8301795 0.3384659 +0.9125621 0.8301795 0.3384659 +0.9278974 0.8301795 0.3384659 +0.9429048 0.8301795 0.3384659 +0.9576028 0.8301795 0.3384659 +0.9720079 0.8301795 0.3384659 +0.9861357 0.8301795 0.3384659 +1 0.8301795 0.3384659 +0 0.8475045 0.3384659 +0.1939468 0.8475045 0.3384659 +0.2773041 0.8475045 0.3384659 +0.3384659 0.8475045 0.3384659 +0.3885728 0.8475045 0.3384659 +0.4317928 0.8475045 0.3384659 +0.470214 0.8475045 0.3384659 +0.5050551 0.8475045 0.3384659 +0.5370987 0.8475045 0.3384659 +0.5668815 0.8475045 0.3384659 +0.5947903 0.8475045 0.3384659 +0.6211144 0.8475045 0.3384659 +0.6460766 0.8475045 0.3384659 +0.6698526 0.8475045 0.3384659 +0.6925839 0.8475045 0.3384659 +0.7143866 0.8475045 0.3384659 +0.7353569 0.8475045 0.3384659 +0.7555758 0.8475045 0.3384659 +0.7751122 0.8475045 0.3384659 +0.7940252 0.8475045 0.3384659 +0.8123661 0.8475045 0.3384659 +0.8301795 0.8475045 0.3384659 +0.8475045 0.8475045 0.3384659 +0.8643761 0.8475045 0.3384659 +0.880825 0.8475045 0.3384659 +0.8968787 0.8475045 0.3384659 +0.9125621 0.8475045 0.3384659 +0.9278974 0.8475045 0.3384659 +0.9429048 0.8475045 0.3384659 +0.9576028 0.8475045 0.3384659 +0.9720079 0.8475045 0.3384659 +0.9861357 0.8475045 0.3384659 +1 0.8475045 0.3384659 +0 0.8643761 0.3384659 +0.1939468 0.8643761 0.3384659 +0.2773041 0.8643761 0.3384659 +0.3384659 0.8643761 0.3384659 +0.3885728 0.8643761 0.3384659 +0.4317928 0.8643761 0.3384659 +0.470214 0.8643761 0.3384659 +0.5050551 0.8643761 0.3384659 +0.5370987 0.8643761 0.3384659 +0.5668815 0.8643761 0.3384659 +0.5947903 0.8643761 0.3384659 +0.6211144 0.8643761 0.3384659 +0.6460766 0.8643761 0.3384659 +0.6698526 0.8643761 0.3384659 +0.6925839 0.8643761 0.3384659 +0.7143866 0.8643761 0.3384659 +0.7353569 0.8643761 0.3384659 +0.7555758 0.8643761 0.3384659 +0.7751122 0.8643761 0.3384659 +0.7940252 0.8643761 0.3384659 +0.8123661 0.8643761 0.3384659 +0.8301795 0.8643761 0.3384659 +0.8475045 0.8643761 0.3384659 +0.8643761 0.8643761 0.3384659 +0.880825 0.8643761 0.3384659 +0.8968787 0.8643761 0.3384659 +0.9125621 0.8643761 0.3384659 +0.9278974 0.8643761 0.3384659 +0.9429048 0.8643761 0.3384659 +0.9576028 0.8643761 0.3384659 +0.9720079 0.8643761 0.3384659 +0.9861357 0.8643761 0.3384659 +1 0.8643761 0.3384659 +0 0.880825 0.3384659 +0.1939468 0.880825 0.3384659 +0.2773041 0.880825 0.3384659 +0.3384659 0.880825 0.3384659 +0.3885728 0.880825 0.3384659 +0.4317928 0.880825 0.3384659 +0.470214 0.880825 0.3384659 +0.5050551 0.880825 0.3384659 +0.5370987 0.880825 0.3384659 +0.5668815 0.880825 0.3384659 +0.5947903 0.880825 0.3384659 +0.6211144 0.880825 0.3384659 +0.6460766 0.880825 0.3384659 +0.6698526 0.880825 0.3384659 +0.6925839 0.880825 0.3384659 +0.7143866 0.880825 0.3384659 +0.7353569 0.880825 0.3384659 +0.7555758 0.880825 0.3384659 +0.7751122 0.880825 0.3384659 +0.7940252 0.880825 0.3384659 +0.8123661 0.880825 0.3384659 +0.8301795 0.880825 0.3384659 +0.8475045 0.880825 0.3384659 +0.8643761 0.880825 0.3384659 +0.880825 0.880825 0.3384659 +0.8968787 0.880825 0.3384659 +0.9125621 0.880825 0.3384659 +0.9278974 0.880825 0.3384659 +0.9429048 0.880825 0.3384659 +0.9576028 0.880825 0.3384659 +0.9720079 0.880825 0.3384659 +0.9861357 0.880825 0.3384659 +1 0.880825 0.3384659 +0 0.8968787 0.3384659 +0.1939468 0.8968787 0.3384659 +0.2773041 0.8968787 0.3384659 +0.3384659 0.8968787 0.3384659 +0.3885728 0.8968787 0.3384659 +0.4317928 0.8968787 0.3384659 +0.470214 0.8968787 0.3384659 +0.5050551 0.8968787 0.3384659 +0.5370987 0.8968787 0.3384659 +0.5668815 0.8968787 0.3384659 +0.5947903 0.8968787 0.3384659 +0.6211144 0.8968787 0.3384659 +0.6460766 0.8968787 0.3384659 +0.6698526 0.8968787 0.3384659 +0.6925839 0.8968787 0.3384659 +0.7143866 0.8968787 0.3384659 +0.7353569 0.8968787 0.3384659 +0.7555758 0.8968787 0.3384659 +0.7751122 0.8968787 0.3384659 +0.7940252 0.8968787 0.3384659 +0.8123661 0.8968787 0.3384659 +0.8301795 0.8968787 0.3384659 +0.8475045 0.8968787 0.3384659 +0.8643761 0.8968787 0.3384659 +0.880825 0.8968787 0.3384659 +0.8968787 0.8968787 0.3384659 +0.9125621 0.8968787 0.3384659 +0.9278974 0.8968787 0.3384659 +0.9429048 0.8968787 0.3384659 +0.9576028 0.8968787 0.3384659 +0.9720079 0.8968787 0.3384659 +0.9861357 0.8968787 0.3384659 +1 0.8968787 0.3384659 +0 0.9125621 0.3384659 +0.1939468 0.9125621 0.3384659 +0.2773041 0.9125621 0.3384659 +0.3384659 0.9125621 0.3384659 +0.3885728 0.9125621 0.3384659 +0.4317928 0.9125621 0.3384659 +0.470214 0.9125621 0.3384659 +0.5050551 0.9125621 0.3384659 +0.5370987 0.9125621 0.3384659 +0.5668815 0.9125621 0.3384659 +0.5947903 0.9125621 0.3384659 +0.6211144 0.9125621 0.3384659 +0.6460766 0.9125621 0.3384659 +0.6698526 0.9125621 0.3384659 +0.6925839 0.9125621 0.3384659 +0.7143866 0.9125621 0.3384659 +0.7353569 0.9125621 0.3384659 +0.7555758 0.9125621 0.3384659 +0.7751122 0.9125621 0.3384659 +0.7940252 0.9125621 0.3384659 +0.8123661 0.9125621 0.3384659 +0.8301795 0.9125621 0.3384659 +0.8475045 0.9125621 0.3384659 +0.8643761 0.9125621 0.3384659 +0.880825 0.9125621 0.3384659 +0.8968787 0.9125621 0.3384659 +0.9125621 0.9125621 0.3384659 +0.9278974 0.9125621 0.3384659 +0.9429048 0.9125621 0.3384659 +0.9576028 0.9125621 0.3384659 +0.9720079 0.9125621 0.3384659 +0.9861357 0.9125621 0.3384659 +1 0.9125621 0.3384659 +0 0.9278974 0.3384659 +0.1939468 0.9278974 0.3384659 +0.2773041 0.9278974 0.3384659 +0.3384659 0.9278974 0.3384659 +0.3885728 0.9278974 0.3384659 +0.4317928 0.9278974 0.3384659 +0.470214 0.9278974 0.3384659 +0.5050551 0.9278974 0.3384659 +0.5370987 0.9278974 0.3384659 +0.5668815 0.9278974 0.3384659 +0.5947903 0.9278974 0.3384659 +0.6211144 0.9278974 0.3384659 +0.6460766 0.9278974 0.3384659 +0.6698526 0.9278974 0.3384659 +0.6925839 0.9278974 0.3384659 +0.7143866 0.9278974 0.3384659 +0.7353569 0.9278974 0.3384659 +0.7555758 0.9278974 0.3384659 +0.7751122 0.9278974 0.3384659 +0.7940252 0.9278974 0.3384659 +0.8123661 0.9278974 0.3384659 +0.8301795 0.9278974 0.3384659 +0.8475045 0.9278974 0.3384659 +0.8643761 0.9278974 0.3384659 +0.880825 0.9278974 0.3384659 +0.8968787 0.9278974 0.3384659 +0.9125621 0.9278974 0.3384659 +0.9278974 0.9278974 0.3384659 +0.9429048 0.9278974 0.3384659 +0.9576028 0.9278974 0.3384659 +0.9720079 0.9278974 0.3384659 +0.9861357 0.9278974 0.3384659 +1 0.9278974 0.3384659 +0 0.9429048 0.3384659 +0.1939468 0.9429048 0.3384659 +0.2773041 0.9429048 0.3384659 +0.3384659 0.9429048 0.3384659 +0.3885728 0.9429048 0.3384659 +0.4317928 0.9429048 0.3384659 +0.470214 0.9429048 0.3384659 +0.5050551 0.9429048 0.3384659 +0.5370987 0.9429048 0.3384659 +0.5668815 0.9429048 0.3384659 +0.5947903 0.9429048 0.3384659 +0.6211144 0.9429048 0.3384659 +0.6460766 0.9429048 0.3384659 +0.6698526 0.9429048 0.3384659 +0.6925839 0.9429048 0.3384659 +0.7143866 0.9429048 0.3384659 +0.7353569 0.9429048 0.3384659 +0.7555758 0.9429048 0.3384659 +0.7751122 0.9429048 0.3384659 +0.7940252 0.9429048 0.3384659 +0.8123661 0.9429048 0.3384659 +0.8301795 0.9429048 0.3384659 +0.8475045 0.9429048 0.3384659 +0.8643761 0.9429048 0.3384659 +0.880825 0.9429048 0.3384659 +0.8968787 0.9429048 0.3384659 +0.9125621 0.9429048 0.3384659 +0.9278974 0.9429048 0.3384659 +0.9429048 0.9429048 0.3384659 +0.9576028 0.9429048 0.3384659 +0.9720079 0.9429048 0.3384659 +0.9861357 0.9429048 0.3384659 +1 0.9429048 0.3384659 +0 0.9576028 0.3384659 +0.1939468 0.9576028 0.3384659 +0.2773041 0.9576028 0.3384659 +0.3384659 0.9576028 0.3384659 +0.3885728 0.9576028 0.3384659 +0.4317928 0.9576028 0.3384659 +0.470214 0.9576028 0.3384659 +0.5050551 0.9576028 0.3384659 +0.5370987 0.9576028 0.3384659 +0.5668815 0.9576028 0.3384659 +0.5947903 0.9576028 0.3384659 +0.6211144 0.9576028 0.3384659 +0.6460766 0.9576028 0.3384659 +0.6698526 0.9576028 0.3384659 +0.6925839 0.9576028 0.3384659 +0.7143866 0.9576028 0.3384659 +0.7353569 0.9576028 0.3384659 +0.7555758 0.9576028 0.3384659 +0.7751122 0.9576028 0.3384659 +0.7940252 0.9576028 0.3384659 +0.8123661 0.9576028 0.3384659 +0.8301795 0.9576028 0.3384659 +0.8475045 0.9576028 0.3384659 +0.8643761 0.9576028 0.3384659 +0.880825 0.9576028 0.3384659 +0.8968787 0.9576028 0.3384659 +0.9125621 0.9576028 0.3384659 +0.9278974 0.9576028 0.3384659 +0.9429048 0.9576028 0.3384659 +0.9576028 0.9576028 0.3384659 +0.9720079 0.9576028 0.3384659 +0.9861357 0.9576028 0.3384659 +1 0.9576028 0.3384659 +0 0.9720079 0.3384659 +0.1939468 0.9720079 0.3384659 +0.2773041 0.9720079 0.3384659 +0.3384659 0.9720079 0.3384659 +0.3885728 0.9720079 0.3384659 +0.4317928 0.9720079 0.3384659 +0.470214 0.9720079 0.3384659 +0.5050551 0.9720079 0.3384659 +0.5370987 0.9720079 0.3384659 +0.5668815 0.9720079 0.3384659 +0.5947903 0.9720079 0.3384659 +0.6211144 0.9720079 0.3384659 +0.6460766 0.9720079 0.3384659 +0.6698526 0.9720079 0.3384659 +0.6925839 0.9720079 0.3384659 +0.7143866 0.9720079 0.3384659 +0.7353569 0.9720079 0.3384659 +0.7555758 0.9720079 0.3384659 +0.7751122 0.9720079 0.3384659 +0.7940252 0.9720079 0.3384659 +0.8123661 0.9720079 0.3384659 +0.8301795 0.9720079 0.3384659 +0.8475045 0.9720079 0.3384659 +0.8643761 0.9720079 0.3384659 +0.880825 0.9720079 0.3384659 +0.8968787 0.9720079 0.3384659 +0.9125621 0.9720079 0.3384659 +0.9278974 0.9720079 0.3384659 +0.9429048 0.9720079 0.3384659 +0.9576028 0.9720079 0.3384659 +0.9720079 0.9720079 0.3384659 +0.9861357 0.9720079 0.3384659 +1 0.9720079 0.3384659 +0 0.9861357 0.3384659 +0.1939468 0.9861357 0.3384659 +0.2773041 0.9861357 0.3384659 +0.3384659 0.9861357 0.3384659 +0.3885728 0.9861357 0.3384659 +0.4317928 0.9861357 0.3384659 +0.470214 0.9861357 0.3384659 +0.5050551 0.9861357 0.3384659 +0.5370987 0.9861357 0.3384659 +0.5668815 0.9861357 0.3384659 +0.5947903 0.9861357 0.3384659 +0.6211144 0.9861357 0.3384659 +0.6460766 0.9861357 0.3384659 +0.6698526 0.9861357 0.3384659 +0.6925839 0.9861357 0.3384659 +0.7143866 0.9861357 0.3384659 +0.7353569 0.9861357 0.3384659 +0.7555758 0.9861357 0.3384659 +0.7751122 0.9861357 0.3384659 +0.7940252 0.9861357 0.3384659 +0.8123661 0.9861357 0.3384659 +0.8301795 0.9861357 0.3384659 +0.8475045 0.9861357 0.3384659 +0.8643761 0.9861357 0.3384659 +0.880825 0.9861357 0.3384659 +0.8968787 0.9861357 0.3384659 +0.9125621 0.9861357 0.3384659 +0.9278974 0.9861357 0.3384659 +0.9429048 0.9861357 0.3384659 +0.9576028 0.9861357 0.3384659 +0.9720079 0.9861357 0.3384659 +0.9861357 0.9861357 0.3384659 +1 0.9861357 0.3384659 +0 1 0.3384659 +0.1939468 1 0.3384659 +0.2773041 1 0.3384659 +0.3384659 1 0.3384659 +0.3885728 1 0.3384659 +0.4317928 1 0.3384659 +0.470214 1 0.3384659 +0.5050551 1 0.3384659 +0.5370987 1 0.3384659 +0.5668815 1 0.3384659 +0.5947903 1 0.3384659 +0.6211144 1 0.3384659 +0.6460766 1 0.3384659 +0.6698526 1 0.3384659 +0.6925839 1 0.3384659 +0.7143866 1 0.3384659 +0.7353569 1 0.3384659 +0.7555758 1 0.3384659 +0.7751122 1 0.3384659 +0.7940252 1 0.3384659 +0.8123661 1 0.3384659 +0.8301795 1 0.3384659 +0.8475045 1 0.3384659 +0.8643761 1 0.3384659 +0.880825 1 0.3384659 +0.8968787 1 0.3384659 +0.9125621 1 0.3384659 +0.9278974 1 0.3384659 +0.9429048 1 0.3384659 +0.9576028 1 0.3384659 +0.9720079 1 0.3384659 +0.9861357 1 0.3384659 +1 1 0.3384659 +0 0 0.3885728 +0.1939468 0 0.3885728 +0.2773041 0 0.3885728 +0.3384659 0 0.3885728 +0.3885728 0 0.3885728 +0.4317928 0 0.3885728 +0.470214 0 0.3885728 +0.5050551 0 0.3885728 +0.5370987 0 0.3885728 +0.5668815 0 0.3885728 +0.5947903 0 0.3885728 +0.6211144 0 0.3885728 +0.6460766 0 0.3885728 +0.6698526 0 0.3885728 +0.6925839 0 0.3885728 +0.7143866 0 0.3885728 +0.7353569 0 0.3885728 +0.7555758 0 0.3885728 +0.7751122 0 0.3885728 +0.7940252 0 0.3885728 +0.8123661 0 0.3885728 +0.8301795 0 0.3885728 +0.8475045 0 0.3885728 +0.8643761 0 0.3885728 +0.880825 0 0.3885728 +0.8968787 0 0.3885728 +0.9125621 0 0.3885728 +0.9278974 0 0.3885728 +0.9429048 0 0.3885728 +0.9576028 0 0.3885728 +0.9720079 0 0.3885728 +0.9861357 0 0.3885728 +1 0 0.3885728 +0 0.1939468 0.3885728 +0.1939468 0.1939468 0.3885728 +0.2773041 0.1939468 0.3885728 +0.3384659 0.1939468 0.3885728 +0.3885728 0.1939468 0.3885728 +0.4317928 0.1939468 0.3885728 +0.470214 0.1939468 0.3885728 +0.5050551 0.1939468 0.3885728 +0.5370987 0.1939468 0.3885728 +0.5668815 0.1939468 0.3885728 +0.5947903 0.1939468 0.3885728 +0.6211144 0.1939468 0.3885728 +0.6460766 0.1939468 0.3885728 +0.6698526 0.1939468 0.3885728 +0.6925839 0.1939468 0.3885728 +0.7143866 0.1939468 0.3885728 +0.7353569 0.1939468 0.3885728 +0.7555758 0.1939468 0.3885728 +0.7751122 0.1939468 0.3885728 +0.7940252 0.1939468 0.3885728 +0.8123661 0.1939468 0.3885728 +0.8301795 0.1939468 0.3885728 +0.8475045 0.1939468 0.3885728 +0.8643761 0.1939468 0.3885728 +0.880825 0.1939468 0.3885728 +0.8968787 0.1939468 0.3885728 +0.9125621 0.1939468 0.3885728 +0.9278974 0.1939468 0.3885728 +0.9429048 0.1939468 0.3885728 +0.9576028 0.1939468 0.3885728 +0.9720079 0.1939468 0.3885728 +0.9861357 0.1939468 0.3885728 +1 0.1939468 0.3885728 +0 0.2773041 0.3885728 +0.1939468 0.2773041 0.3885728 +0.2773041 0.2773041 0.3885728 +0.3384659 0.2773041 0.3885728 +0.3885728 0.2773041 0.3885728 +0.4317928 0.2773041 0.3885728 +0.470214 0.2773041 0.3885728 +0.5050551 0.2773041 0.3885728 +0.5370987 0.2773041 0.3885728 +0.5668815 0.2773041 0.3885728 +0.5947903 0.2773041 0.3885728 +0.6211144 0.2773041 0.3885728 +0.6460766 0.2773041 0.3885728 +0.6698526 0.2773041 0.3885728 +0.6925839 0.2773041 0.3885728 +0.7143866 0.2773041 0.3885728 +0.7353569 0.2773041 0.3885728 +0.7555758 0.2773041 0.3885728 +0.7751122 0.2773041 0.3885728 +0.7940252 0.2773041 0.3885728 +0.8123661 0.2773041 0.3885728 +0.8301795 0.2773041 0.3885728 +0.8475045 0.2773041 0.3885728 +0.8643761 0.2773041 0.3885728 +0.880825 0.2773041 0.3885728 +0.8968787 0.2773041 0.3885728 +0.9125621 0.2773041 0.3885728 +0.9278974 0.2773041 0.3885728 +0.9429048 0.2773041 0.3885728 +0.9576028 0.2773041 0.3885728 +0.9720079 0.2773041 0.3885728 +0.9861357 0.2773041 0.3885728 +1 0.2773041 0.3885728 +0 0.3384659 0.3885728 +0.1939468 0.3384659 0.3885728 +0.2773041 0.3384659 0.3885728 +0.3384659 0.3384659 0.3885728 +0.3885728 0.3384659 0.3885728 +0.4317928 0.3384659 0.3885728 +0.470214 0.3384659 0.3885728 +0.5050551 0.3384659 0.3885728 +0.5370987 0.3384659 0.3885728 +0.5668815 0.3384659 0.3885728 +0.5947903 0.3384659 0.3885728 +0.6211144 0.3384659 0.3885728 +0.6460766 0.3384659 0.3885728 +0.6698526 0.3384659 0.3885728 +0.6925839 0.3384659 0.3885728 +0.7143866 0.3384659 0.3885728 +0.7353569 0.3384659 0.3885728 +0.7555758 0.3384659 0.3885728 +0.7751122 0.3384659 0.3885728 +0.7940252 0.3384659 0.3885728 +0.8123661 0.3384659 0.3885728 +0.8301795 0.3384659 0.3885728 +0.8475045 0.3384659 0.3885728 +0.8643761 0.3384659 0.3885728 +0.880825 0.3384659 0.3885728 +0.8968787 0.3384659 0.3885728 +0.9125621 0.3384659 0.3885728 +0.9278974 0.3384659 0.3885728 +0.9429048 0.3384659 0.3885728 +0.9576028 0.3384659 0.3885728 +0.9720079 0.3384659 0.3885728 +0.9861357 0.3384659 0.3885728 +1 0.3384659 0.3885728 +0 0.3885728 0.3885728 +0.1939468 0.3885728 0.3885728 +0.2773041 0.3885728 0.3885728 +0.3384659 0.3885728 0.3885728 +0.3885728 0.3885728 0.3885728 +0.4317928 0.3885728 0.3885728 +0.470214 0.3885728 0.3885728 +0.5050551 0.3885728 0.3885728 +0.5370987 0.3885728 0.3885728 +0.5668815 0.3885728 0.3885728 +0.5947903 0.3885728 0.3885728 +0.6211144 0.3885728 0.3885728 +0.6460766 0.3885728 0.3885728 +0.6698526 0.3885728 0.3885728 +0.6925839 0.3885728 0.3885728 +0.7143866 0.3885728 0.3885728 +0.7353569 0.3885728 0.3885728 +0.7555758 0.3885728 0.3885728 +0.7751122 0.3885728 0.3885728 +0.7940252 0.3885728 0.3885728 +0.8123661 0.3885728 0.3885728 +0.8301795 0.3885728 0.3885728 +0.8475045 0.3885728 0.3885728 +0.8643761 0.3885728 0.3885728 +0.880825 0.3885728 0.3885728 +0.8968787 0.3885728 0.3885728 +0.9125621 0.3885728 0.3885728 +0.9278974 0.3885728 0.3885728 +0.9429048 0.3885728 0.3885728 +0.9576028 0.3885728 0.3885728 +0.9720079 0.3885728 0.3885728 +0.9861357 0.3885728 0.3885728 +1 0.3885728 0.3885728 +0 0.4317928 0.3885728 +0.1939468 0.4317928 0.3885728 +0.2773041 0.4317928 0.3885728 +0.3384659 0.4317928 0.3885728 +0.3885728 0.4317928 0.3885728 +0.4317928 0.4317928 0.3885728 +0.470214 0.4317928 0.3885728 +0.5050551 0.4317928 0.3885728 +0.5370987 0.4317928 0.3885728 +0.5668815 0.4317928 0.3885728 +0.5947903 0.4317928 0.3885728 +0.6211144 0.4317928 0.3885728 +0.6460766 0.4317928 0.3885728 +0.6698526 0.4317928 0.3885728 +0.6925839 0.4317928 0.3885728 +0.7143866 0.4317928 0.3885728 +0.7353569 0.4317928 0.3885728 +0.7555758 0.4317928 0.3885728 +0.7751122 0.4317928 0.3885728 +0.7940252 0.4317928 0.3885728 +0.8123661 0.4317928 0.3885728 +0.8301795 0.4317928 0.3885728 +0.8475045 0.4317928 0.3885728 +0.8643761 0.4317928 0.3885728 +0.880825 0.4317928 0.3885728 +0.8968787 0.4317928 0.3885728 +0.9125621 0.4317928 0.3885728 +0.9278974 0.4317928 0.3885728 +0.9429048 0.4317928 0.3885728 +0.9576028 0.4317928 0.3885728 +0.9720079 0.4317928 0.3885728 +0.9861357 0.4317928 0.3885728 +1 0.4317928 0.3885728 +0 0.470214 0.3885728 +0.1939468 0.470214 0.3885728 +0.2773041 0.470214 0.3885728 +0.3384659 0.470214 0.3885728 +0.3885728 0.470214 0.3885728 +0.4317928 0.470214 0.3885728 +0.470214 0.470214 0.3885728 +0.5050551 0.470214 0.3885728 +0.5370987 0.470214 0.3885728 +0.5668815 0.470214 0.3885728 +0.5947903 0.470214 0.3885728 +0.6211144 0.470214 0.3885728 +0.6460766 0.470214 0.3885728 +0.6698526 0.470214 0.3885728 +0.6925839 0.470214 0.3885728 +0.7143866 0.470214 0.3885728 +0.7353569 0.470214 0.3885728 +0.7555758 0.470214 0.3885728 +0.7751122 0.470214 0.3885728 +0.7940252 0.470214 0.3885728 +0.8123661 0.470214 0.3885728 +0.8301795 0.470214 0.3885728 +0.8475045 0.470214 0.3885728 +0.8643761 0.470214 0.3885728 +0.880825 0.470214 0.3885728 +0.8968787 0.470214 0.3885728 +0.9125621 0.470214 0.3885728 +0.9278974 0.470214 0.3885728 +0.9429048 0.470214 0.3885728 +0.9576028 0.470214 0.3885728 +0.9720079 0.470214 0.3885728 +0.9861357 0.470214 0.3885728 +1 0.470214 0.3885728 +0 0.5050551 0.3885728 +0.1939468 0.5050551 0.3885728 +0.2773041 0.5050551 0.3885728 +0.3384659 0.5050551 0.3885728 +0.3885728 0.5050551 0.3885728 +0.4317928 0.5050551 0.3885728 +0.470214 0.5050551 0.3885728 +0.5050551 0.5050551 0.3885728 +0.5370987 0.5050551 0.3885728 +0.5668815 0.5050551 0.3885728 +0.5947903 0.5050551 0.3885728 +0.6211144 0.5050551 0.3885728 +0.6460766 0.5050551 0.3885728 +0.6698526 0.5050551 0.3885728 +0.6925839 0.5050551 0.3885728 +0.7143866 0.5050551 0.3885728 +0.7353569 0.5050551 0.3885728 +0.7555758 0.5050551 0.3885728 +0.7751122 0.5050551 0.3885728 +0.7940252 0.5050551 0.3885728 +0.8123661 0.5050551 0.3885728 +0.8301795 0.5050551 0.3885728 +0.8475045 0.5050551 0.3885728 +0.8643761 0.5050551 0.3885728 +0.880825 0.5050551 0.3885728 +0.8968787 0.5050551 0.3885728 +0.9125621 0.5050551 0.3885728 +0.9278974 0.5050551 0.3885728 +0.9429048 0.5050551 0.3885728 +0.9576028 0.5050551 0.3885728 +0.9720079 0.5050551 0.3885728 +0.9861357 0.5050551 0.3885728 +1 0.5050551 0.3885728 +0 0.5370987 0.3885728 +0.1939468 0.5370987 0.3885728 +0.2773041 0.5370987 0.3885728 +0.3384659 0.5370987 0.3885728 +0.3885728 0.5370987 0.3885728 +0.4317928 0.5370987 0.3885728 +0.470214 0.5370987 0.3885728 +0.5050551 0.5370987 0.3885728 +0.5370987 0.5370987 0.3885728 +0.5668815 0.5370987 0.3885728 +0.5947903 0.5370987 0.3885728 +0.6211144 0.5370987 0.3885728 +0.6460766 0.5370987 0.3885728 +0.6698526 0.5370987 0.3885728 +0.6925839 0.5370987 0.3885728 +0.7143866 0.5370987 0.3885728 +0.7353569 0.5370987 0.3885728 +0.7555758 0.5370987 0.3885728 +0.7751122 0.5370987 0.3885728 +0.7940252 0.5370987 0.3885728 +0.8123661 0.5370987 0.3885728 +0.8301795 0.5370987 0.3885728 +0.8475045 0.5370987 0.3885728 +0.8643761 0.5370987 0.3885728 +0.880825 0.5370987 0.3885728 +0.8968787 0.5370987 0.3885728 +0.9125621 0.5370987 0.3885728 +0.9278974 0.5370987 0.3885728 +0.9429048 0.5370987 0.3885728 +0.9576028 0.5370987 0.3885728 +0.9720079 0.5370987 0.3885728 +0.9861357 0.5370987 0.3885728 +1 0.5370987 0.3885728 +0 0.5668815 0.3885728 +0.1939468 0.5668815 0.3885728 +0.2773041 0.5668815 0.3885728 +0.3384659 0.5668815 0.3885728 +0.3885728 0.5668815 0.3885728 +0.4317928 0.5668815 0.3885728 +0.470214 0.5668815 0.3885728 +0.5050551 0.5668815 0.3885728 +0.5370987 0.5668815 0.3885728 +0.5668815 0.5668815 0.3885728 +0.5947903 0.5668815 0.3885728 +0.6211144 0.5668815 0.3885728 +0.6460766 0.5668815 0.3885728 +0.6698526 0.5668815 0.3885728 +0.6925839 0.5668815 0.3885728 +0.7143866 0.5668815 0.3885728 +0.7353569 0.5668815 0.3885728 +0.7555758 0.5668815 0.3885728 +0.7751122 0.5668815 0.3885728 +0.7940252 0.5668815 0.3885728 +0.8123661 0.5668815 0.3885728 +0.8301795 0.5668815 0.3885728 +0.8475045 0.5668815 0.3885728 +0.8643761 0.5668815 0.3885728 +0.880825 0.5668815 0.3885728 +0.8968787 0.5668815 0.3885728 +0.9125621 0.5668815 0.3885728 +0.9278974 0.5668815 0.3885728 +0.9429048 0.5668815 0.3885728 +0.9576028 0.5668815 0.3885728 +0.9720079 0.5668815 0.3885728 +0.9861357 0.5668815 0.3885728 +1 0.5668815 0.3885728 +0 0.5947903 0.3885728 +0.1939468 0.5947903 0.3885728 +0.2773041 0.5947903 0.3885728 +0.3384659 0.5947903 0.3885728 +0.3885728 0.5947903 0.3885728 +0.4317928 0.5947903 0.3885728 +0.470214 0.5947903 0.3885728 +0.5050551 0.5947903 0.3885728 +0.5370987 0.5947903 0.3885728 +0.5668815 0.5947903 0.3885728 +0.5947903 0.5947903 0.3885728 +0.6211144 0.5947903 0.3885728 +0.6460766 0.5947903 0.3885728 +0.6698526 0.5947903 0.3885728 +0.6925839 0.5947903 0.3885728 +0.7143866 0.5947903 0.3885728 +0.7353569 0.5947903 0.3885728 +0.7555758 0.5947903 0.3885728 +0.7751122 0.5947903 0.3885728 +0.7940252 0.5947903 0.3885728 +0.8123661 0.5947903 0.3885728 +0.8301795 0.5947903 0.3885728 +0.8475045 0.5947903 0.3885728 +0.8643761 0.5947903 0.3885728 +0.880825 0.5947903 0.3885728 +0.8968787 0.5947903 0.3885728 +0.9125621 0.5947903 0.3885728 +0.9278974 0.5947903 0.3885728 +0.9429048 0.5947903 0.3885728 +0.9576028 0.5947903 0.3885728 +0.9720079 0.5947903 0.3885728 +0.9861357 0.5947903 0.3885728 +1 0.5947903 0.3885728 +0 0.6211144 0.3885728 +0.1939468 0.6211144 0.3885728 +0.2773041 0.6211144 0.3885728 +0.3384659 0.6211144 0.3885728 +0.3885728 0.6211144 0.3885728 +0.4317928 0.6211144 0.3885728 +0.470214 0.6211144 0.3885728 +0.5050551 0.6211144 0.3885728 +0.5370987 0.6211144 0.3885728 +0.5668815 0.6211144 0.3885728 +0.5947903 0.6211144 0.3885728 +0.6211144 0.6211144 0.3885728 +0.6460766 0.6211144 0.3885728 +0.6698526 0.6211144 0.3885728 +0.6925839 0.6211144 0.3885728 +0.7143866 0.6211144 0.3885728 +0.7353569 0.6211144 0.3885728 +0.7555758 0.6211144 0.3885728 +0.7751122 0.6211144 0.3885728 +0.7940252 0.6211144 0.3885728 +0.8123661 0.6211144 0.3885728 +0.8301795 0.6211144 0.3885728 +0.8475045 0.6211144 0.3885728 +0.8643761 0.6211144 0.3885728 +0.880825 0.6211144 0.3885728 +0.8968787 0.6211144 0.3885728 +0.9125621 0.6211144 0.3885728 +0.9278974 0.6211144 0.3885728 +0.9429048 0.6211144 0.3885728 +0.9576028 0.6211144 0.3885728 +0.9720079 0.6211144 0.3885728 +0.9861357 0.6211144 0.3885728 +1 0.6211144 0.3885728 +0 0.6460766 0.3885728 +0.1939468 0.6460766 0.3885728 +0.2773041 0.6460766 0.3885728 +0.3384659 0.6460766 0.3885728 +0.3885728 0.6460766 0.3885728 +0.4317928 0.6460766 0.3885728 +0.470214 0.6460766 0.3885728 +0.5050551 0.6460766 0.3885728 +0.5370987 0.6460766 0.3885728 +0.5668815 0.6460766 0.3885728 +0.5947903 0.6460766 0.3885728 +0.6211144 0.6460766 0.3885728 +0.6460766 0.6460766 0.3885728 +0.6698526 0.6460766 0.3885728 +0.6925839 0.6460766 0.3885728 +0.7143866 0.6460766 0.3885728 +0.7353569 0.6460766 0.3885728 +0.7555758 0.6460766 0.3885728 +0.7751122 0.6460766 0.3885728 +0.7940252 0.6460766 0.3885728 +0.8123661 0.6460766 0.3885728 +0.8301795 0.6460766 0.3885728 +0.8475045 0.6460766 0.3885728 +0.8643761 0.6460766 0.3885728 +0.880825 0.6460766 0.3885728 +0.8968787 0.6460766 0.3885728 +0.9125621 0.6460766 0.3885728 +0.9278974 0.6460766 0.3885728 +0.9429048 0.6460766 0.3885728 +0.9576028 0.6460766 0.3885728 +0.9720079 0.6460766 0.3885728 +0.9861357 0.6460766 0.3885728 +1 0.6460766 0.3885728 +0 0.6698526 0.3885728 +0.1939468 0.6698526 0.3885728 +0.2773041 0.6698526 0.3885728 +0.3384659 0.6698526 0.3885728 +0.3885728 0.6698526 0.3885728 +0.4317928 0.6698526 0.3885728 +0.470214 0.6698526 0.3885728 +0.5050551 0.6698526 0.3885728 +0.5370987 0.6698526 0.3885728 +0.5668815 0.6698526 0.3885728 +0.5947903 0.6698526 0.3885728 +0.6211144 0.6698526 0.3885728 +0.6460766 0.6698526 0.3885728 +0.6698526 0.6698526 0.3885728 +0.6925839 0.6698526 0.3885728 +0.7143866 0.6698526 0.3885728 +0.7353569 0.6698526 0.3885728 +0.7555758 0.6698526 0.3885728 +0.7751122 0.6698526 0.3885728 +0.7940252 0.6698526 0.3885728 +0.8123661 0.6698526 0.3885728 +0.8301795 0.6698526 0.3885728 +0.8475045 0.6698526 0.3885728 +0.8643761 0.6698526 0.3885728 +0.880825 0.6698526 0.3885728 +0.8968787 0.6698526 0.3885728 +0.9125621 0.6698526 0.3885728 +0.9278974 0.6698526 0.3885728 +0.9429048 0.6698526 0.3885728 +0.9576028 0.6698526 0.3885728 +0.9720079 0.6698526 0.3885728 +0.9861357 0.6698526 0.3885728 +1 0.6698526 0.3885728 +0 0.6925839 0.3885728 +0.1939468 0.6925839 0.3885728 +0.2773041 0.6925839 0.3885728 +0.3384659 0.6925839 0.3885728 +0.3885728 0.6925839 0.3885728 +0.4317928 0.6925839 0.3885728 +0.470214 0.6925839 0.3885728 +0.5050551 0.6925839 0.3885728 +0.5370987 0.6925839 0.3885728 +0.5668815 0.6925839 0.3885728 +0.5947903 0.6925839 0.3885728 +0.6211144 0.6925839 0.3885728 +0.6460766 0.6925839 0.3885728 +0.6698526 0.6925839 0.3885728 +0.6925839 0.6925839 0.3885728 +0.7143866 0.6925839 0.3885728 +0.7353569 0.6925839 0.3885728 +0.7555758 0.6925839 0.3885728 +0.7751122 0.6925839 0.3885728 +0.7940252 0.6925839 0.3885728 +0.8123661 0.6925839 0.3885728 +0.8301795 0.6925839 0.3885728 +0.8475045 0.6925839 0.3885728 +0.8643761 0.6925839 0.3885728 +0.880825 0.6925839 0.3885728 +0.8968787 0.6925839 0.3885728 +0.9125621 0.6925839 0.3885728 +0.9278974 0.6925839 0.3885728 +0.9429048 0.6925839 0.3885728 +0.9576028 0.6925839 0.3885728 +0.9720079 0.6925839 0.3885728 +0.9861357 0.6925839 0.3885728 +1 0.6925839 0.3885728 +0 0.7143866 0.3885728 +0.1939468 0.7143866 0.3885728 +0.2773041 0.7143866 0.3885728 +0.3384659 0.7143866 0.3885728 +0.3885728 0.7143866 0.3885728 +0.4317928 0.7143866 0.3885728 +0.470214 0.7143866 0.3885728 +0.5050551 0.7143866 0.3885728 +0.5370987 0.7143866 0.3885728 +0.5668815 0.7143866 0.3885728 +0.5947903 0.7143866 0.3885728 +0.6211144 0.7143866 0.3885728 +0.6460766 0.7143866 0.3885728 +0.6698526 0.7143866 0.3885728 +0.6925839 0.7143866 0.3885728 +0.7143866 0.7143866 0.3885728 +0.7353569 0.7143866 0.3885728 +0.7555758 0.7143866 0.3885728 +0.7751122 0.7143866 0.3885728 +0.7940252 0.7143866 0.3885728 +0.8123661 0.7143866 0.3885728 +0.8301795 0.7143866 0.3885728 +0.8475045 0.7143866 0.3885728 +0.8643761 0.7143866 0.3885728 +0.880825 0.7143866 0.3885728 +0.8968787 0.7143866 0.3885728 +0.9125621 0.7143866 0.3885728 +0.9278974 0.7143866 0.3885728 +0.9429048 0.7143866 0.3885728 +0.9576028 0.7143866 0.3885728 +0.9720079 0.7143866 0.3885728 +0.9861357 0.7143866 0.3885728 +1 0.7143866 0.3885728 +0 0.7353569 0.3885728 +0.1939468 0.7353569 0.3885728 +0.2773041 0.7353569 0.3885728 +0.3384659 0.7353569 0.3885728 +0.3885728 0.7353569 0.3885728 +0.4317928 0.7353569 0.3885728 +0.470214 0.7353569 0.3885728 +0.5050551 0.7353569 0.3885728 +0.5370987 0.7353569 0.3885728 +0.5668815 0.7353569 0.3885728 +0.5947903 0.7353569 0.3885728 +0.6211144 0.7353569 0.3885728 +0.6460766 0.7353569 0.3885728 +0.6698526 0.7353569 0.3885728 +0.6925839 0.7353569 0.3885728 +0.7143866 0.7353569 0.3885728 +0.7353569 0.7353569 0.3885728 +0.7555758 0.7353569 0.3885728 +0.7751122 0.7353569 0.3885728 +0.7940252 0.7353569 0.3885728 +0.8123661 0.7353569 0.3885728 +0.8301795 0.7353569 0.3885728 +0.8475045 0.7353569 0.3885728 +0.8643761 0.7353569 0.3885728 +0.880825 0.7353569 0.3885728 +0.8968787 0.7353569 0.3885728 +0.9125621 0.7353569 0.3885728 +0.9278974 0.7353569 0.3885728 +0.9429048 0.7353569 0.3885728 +0.9576028 0.7353569 0.3885728 +0.9720079 0.7353569 0.3885728 +0.9861357 0.7353569 0.3885728 +1 0.7353569 0.3885728 +0 0.7555758 0.3885728 +0.1939468 0.7555758 0.3885728 +0.2773041 0.7555758 0.3885728 +0.3384659 0.7555758 0.3885728 +0.3885728 0.7555758 0.3885728 +0.4317928 0.7555758 0.3885728 +0.470214 0.7555758 0.3885728 +0.5050551 0.7555758 0.3885728 +0.5370987 0.7555758 0.3885728 +0.5668815 0.7555758 0.3885728 +0.5947903 0.7555758 0.3885728 +0.6211144 0.7555758 0.3885728 +0.6460766 0.7555758 0.3885728 +0.6698526 0.7555758 0.3885728 +0.6925839 0.7555758 0.3885728 +0.7143866 0.7555758 0.3885728 +0.7353569 0.7555758 0.3885728 +0.7555758 0.7555758 0.3885728 +0.7751122 0.7555758 0.3885728 +0.7940252 0.7555758 0.3885728 +0.8123661 0.7555758 0.3885728 +0.8301795 0.7555758 0.3885728 +0.8475045 0.7555758 0.3885728 +0.8643761 0.7555758 0.3885728 +0.880825 0.7555758 0.3885728 +0.8968787 0.7555758 0.3885728 +0.9125621 0.7555758 0.3885728 +0.9278974 0.7555758 0.3885728 +0.9429048 0.7555758 0.3885728 +0.9576028 0.7555758 0.3885728 +0.9720079 0.7555758 0.3885728 +0.9861357 0.7555758 0.3885728 +1 0.7555758 0.3885728 +0 0.7751122 0.3885728 +0.1939468 0.7751122 0.3885728 +0.2773041 0.7751122 0.3885728 +0.3384659 0.7751122 0.3885728 +0.3885728 0.7751122 0.3885728 +0.4317928 0.7751122 0.3885728 +0.470214 0.7751122 0.3885728 +0.5050551 0.7751122 0.3885728 +0.5370987 0.7751122 0.3885728 +0.5668815 0.7751122 0.3885728 +0.5947903 0.7751122 0.3885728 +0.6211144 0.7751122 0.3885728 +0.6460766 0.7751122 0.3885728 +0.6698526 0.7751122 0.3885728 +0.6925839 0.7751122 0.3885728 +0.7143866 0.7751122 0.3885728 +0.7353569 0.7751122 0.3885728 +0.7555758 0.7751122 0.3885728 +0.7751122 0.7751122 0.3885728 +0.7940252 0.7751122 0.3885728 +0.8123661 0.7751122 0.3885728 +0.8301795 0.7751122 0.3885728 +0.8475045 0.7751122 0.3885728 +0.8643761 0.7751122 0.3885728 +0.880825 0.7751122 0.3885728 +0.8968787 0.7751122 0.3885728 +0.9125621 0.7751122 0.3885728 +0.9278974 0.7751122 0.3885728 +0.9429048 0.7751122 0.3885728 +0.9576028 0.7751122 0.3885728 +0.9720079 0.7751122 0.3885728 +0.9861357 0.7751122 0.3885728 +1 0.7751122 0.3885728 +0 0.7940252 0.3885728 +0.1939468 0.7940252 0.3885728 +0.2773041 0.7940252 0.3885728 +0.3384659 0.7940252 0.3885728 +0.3885728 0.7940252 0.3885728 +0.4317928 0.7940252 0.3885728 +0.470214 0.7940252 0.3885728 +0.5050551 0.7940252 0.3885728 +0.5370987 0.7940252 0.3885728 +0.5668815 0.7940252 0.3885728 +0.5947903 0.7940252 0.3885728 +0.6211144 0.7940252 0.3885728 +0.6460766 0.7940252 0.3885728 +0.6698526 0.7940252 0.3885728 +0.6925839 0.7940252 0.3885728 +0.7143866 0.7940252 0.3885728 +0.7353569 0.7940252 0.3885728 +0.7555758 0.7940252 0.3885728 +0.7751122 0.7940252 0.3885728 +0.7940252 0.7940252 0.3885728 +0.8123661 0.7940252 0.3885728 +0.8301795 0.7940252 0.3885728 +0.8475045 0.7940252 0.3885728 +0.8643761 0.7940252 0.3885728 +0.880825 0.7940252 0.3885728 +0.8968787 0.7940252 0.3885728 +0.9125621 0.7940252 0.3885728 +0.9278974 0.7940252 0.3885728 +0.9429048 0.7940252 0.3885728 +0.9576028 0.7940252 0.3885728 +0.9720079 0.7940252 0.3885728 +0.9861357 0.7940252 0.3885728 +1 0.7940252 0.3885728 +0 0.8123661 0.3885728 +0.1939468 0.8123661 0.3885728 +0.2773041 0.8123661 0.3885728 +0.3384659 0.8123661 0.3885728 +0.3885728 0.8123661 0.3885728 +0.4317928 0.8123661 0.3885728 +0.470214 0.8123661 0.3885728 +0.5050551 0.8123661 0.3885728 +0.5370987 0.8123661 0.3885728 +0.5668815 0.8123661 0.3885728 +0.5947903 0.8123661 0.3885728 +0.6211144 0.8123661 0.3885728 +0.6460766 0.8123661 0.3885728 +0.6698526 0.8123661 0.3885728 +0.6925839 0.8123661 0.3885728 +0.7143866 0.8123661 0.3885728 +0.7353569 0.8123661 0.3885728 +0.7555758 0.8123661 0.3885728 +0.7751122 0.8123661 0.3885728 +0.7940252 0.8123661 0.3885728 +0.8123661 0.8123661 0.3885728 +0.8301795 0.8123661 0.3885728 +0.8475045 0.8123661 0.3885728 +0.8643761 0.8123661 0.3885728 +0.880825 0.8123661 0.3885728 +0.8968787 0.8123661 0.3885728 +0.9125621 0.8123661 0.3885728 +0.9278974 0.8123661 0.3885728 +0.9429048 0.8123661 0.3885728 +0.9576028 0.8123661 0.3885728 +0.9720079 0.8123661 0.3885728 +0.9861357 0.8123661 0.3885728 +1 0.8123661 0.3885728 +0 0.8301795 0.3885728 +0.1939468 0.8301795 0.3885728 +0.2773041 0.8301795 0.3885728 +0.3384659 0.8301795 0.3885728 +0.3885728 0.8301795 0.3885728 +0.4317928 0.8301795 0.3885728 +0.470214 0.8301795 0.3885728 +0.5050551 0.8301795 0.3885728 +0.5370987 0.8301795 0.3885728 +0.5668815 0.8301795 0.3885728 +0.5947903 0.8301795 0.3885728 +0.6211144 0.8301795 0.3885728 +0.6460766 0.8301795 0.3885728 +0.6698526 0.8301795 0.3885728 +0.6925839 0.8301795 0.3885728 +0.7143866 0.8301795 0.3885728 +0.7353569 0.8301795 0.3885728 +0.7555758 0.8301795 0.3885728 +0.7751122 0.8301795 0.3885728 +0.7940252 0.8301795 0.3885728 +0.8123661 0.8301795 0.3885728 +0.8301795 0.8301795 0.3885728 +0.8475045 0.8301795 0.3885728 +0.8643761 0.8301795 0.3885728 +0.880825 0.8301795 0.3885728 +0.8968787 0.8301795 0.3885728 +0.9125621 0.8301795 0.3885728 +0.9278974 0.8301795 0.3885728 +0.9429048 0.8301795 0.3885728 +0.9576028 0.8301795 0.3885728 +0.9720079 0.8301795 0.3885728 +0.9861357 0.8301795 0.3885728 +1 0.8301795 0.3885728 +0 0.8475045 0.3885728 +0.1939468 0.8475045 0.3885728 +0.2773041 0.8475045 0.3885728 +0.3384659 0.8475045 0.3885728 +0.3885728 0.8475045 0.3885728 +0.4317928 0.8475045 0.3885728 +0.470214 0.8475045 0.3885728 +0.5050551 0.8475045 0.3885728 +0.5370987 0.8475045 0.3885728 +0.5668815 0.8475045 0.3885728 +0.5947903 0.8475045 0.3885728 +0.6211144 0.8475045 0.3885728 +0.6460766 0.8475045 0.3885728 +0.6698526 0.8475045 0.3885728 +0.6925839 0.8475045 0.3885728 +0.7143866 0.8475045 0.3885728 +0.7353569 0.8475045 0.3885728 +0.7555758 0.8475045 0.3885728 +0.7751122 0.8475045 0.3885728 +0.7940252 0.8475045 0.3885728 +0.8123661 0.8475045 0.3885728 +0.8301795 0.8475045 0.3885728 +0.8475045 0.8475045 0.3885728 +0.8643761 0.8475045 0.3885728 +0.880825 0.8475045 0.3885728 +0.8968787 0.8475045 0.3885728 +0.9125621 0.8475045 0.3885728 +0.9278974 0.8475045 0.3885728 +0.9429048 0.8475045 0.3885728 +0.9576028 0.8475045 0.3885728 +0.9720079 0.8475045 0.3885728 +0.9861357 0.8475045 0.3885728 +1 0.8475045 0.3885728 +0 0.8643761 0.3885728 +0.1939468 0.8643761 0.3885728 +0.2773041 0.8643761 0.3885728 +0.3384659 0.8643761 0.3885728 +0.3885728 0.8643761 0.3885728 +0.4317928 0.8643761 0.3885728 +0.470214 0.8643761 0.3885728 +0.5050551 0.8643761 0.3885728 +0.5370987 0.8643761 0.3885728 +0.5668815 0.8643761 0.3885728 +0.5947903 0.8643761 0.3885728 +0.6211144 0.8643761 0.3885728 +0.6460766 0.8643761 0.3885728 +0.6698526 0.8643761 0.3885728 +0.6925839 0.8643761 0.3885728 +0.7143866 0.8643761 0.3885728 +0.7353569 0.8643761 0.3885728 +0.7555758 0.8643761 0.3885728 +0.7751122 0.8643761 0.3885728 +0.7940252 0.8643761 0.3885728 +0.8123661 0.8643761 0.3885728 +0.8301795 0.8643761 0.3885728 +0.8475045 0.8643761 0.3885728 +0.8643761 0.8643761 0.3885728 +0.880825 0.8643761 0.3885728 +0.8968787 0.8643761 0.3885728 +0.9125621 0.8643761 0.3885728 +0.9278974 0.8643761 0.3885728 +0.9429048 0.8643761 0.3885728 +0.9576028 0.8643761 0.3885728 +0.9720079 0.8643761 0.3885728 +0.9861357 0.8643761 0.3885728 +1 0.8643761 0.3885728 +0 0.880825 0.3885728 +0.1939468 0.880825 0.3885728 +0.2773041 0.880825 0.3885728 +0.3384659 0.880825 0.3885728 +0.3885728 0.880825 0.3885728 +0.4317928 0.880825 0.3885728 +0.470214 0.880825 0.3885728 +0.5050551 0.880825 0.3885728 +0.5370987 0.880825 0.3885728 +0.5668815 0.880825 0.3885728 +0.5947903 0.880825 0.3885728 +0.6211144 0.880825 0.3885728 +0.6460766 0.880825 0.3885728 +0.6698526 0.880825 0.3885728 +0.6925839 0.880825 0.3885728 +0.7143866 0.880825 0.3885728 +0.7353569 0.880825 0.3885728 +0.7555758 0.880825 0.3885728 +0.7751122 0.880825 0.3885728 +0.7940252 0.880825 0.3885728 +0.8123661 0.880825 0.3885728 +0.8301795 0.880825 0.3885728 +0.8475045 0.880825 0.3885728 +0.8643761 0.880825 0.3885728 +0.880825 0.880825 0.3885728 +0.8968787 0.880825 0.3885728 +0.9125621 0.880825 0.3885728 +0.9278974 0.880825 0.3885728 +0.9429048 0.880825 0.3885728 +0.9576028 0.880825 0.3885728 +0.9720079 0.880825 0.3885728 +0.9861357 0.880825 0.3885728 +1 0.880825 0.3885728 +0 0.8968787 0.3885728 +0.1939468 0.8968787 0.3885728 +0.2773041 0.8968787 0.3885728 +0.3384659 0.8968787 0.3885728 +0.3885728 0.8968787 0.3885728 +0.4317928 0.8968787 0.3885728 +0.470214 0.8968787 0.3885728 +0.5050551 0.8968787 0.3885728 +0.5370987 0.8968787 0.3885728 +0.5668815 0.8968787 0.3885728 +0.5947903 0.8968787 0.3885728 +0.6211144 0.8968787 0.3885728 +0.6460766 0.8968787 0.3885728 +0.6698526 0.8968787 0.3885728 +0.6925839 0.8968787 0.3885728 +0.7143866 0.8968787 0.3885728 +0.7353569 0.8968787 0.3885728 +0.7555758 0.8968787 0.3885728 +0.7751122 0.8968787 0.3885728 +0.7940252 0.8968787 0.3885728 +0.8123661 0.8968787 0.3885728 +0.8301795 0.8968787 0.3885728 +0.8475045 0.8968787 0.3885728 +0.8643761 0.8968787 0.3885728 +0.880825 0.8968787 0.3885728 +0.8968787 0.8968787 0.3885728 +0.9125621 0.8968787 0.3885728 +0.9278974 0.8968787 0.3885728 +0.9429048 0.8968787 0.3885728 +0.9576028 0.8968787 0.3885728 +0.9720079 0.8968787 0.3885728 +0.9861357 0.8968787 0.3885728 +1 0.8968787 0.3885728 +0 0.9125621 0.3885728 +0.1939468 0.9125621 0.3885728 +0.2773041 0.9125621 0.3885728 +0.3384659 0.9125621 0.3885728 +0.3885728 0.9125621 0.3885728 +0.4317928 0.9125621 0.3885728 +0.470214 0.9125621 0.3885728 +0.5050551 0.9125621 0.3885728 +0.5370987 0.9125621 0.3885728 +0.5668815 0.9125621 0.3885728 +0.5947903 0.9125621 0.3885728 +0.6211144 0.9125621 0.3885728 +0.6460766 0.9125621 0.3885728 +0.6698526 0.9125621 0.3885728 +0.6925839 0.9125621 0.3885728 +0.7143866 0.9125621 0.3885728 +0.7353569 0.9125621 0.3885728 +0.7555758 0.9125621 0.3885728 +0.7751122 0.9125621 0.3885728 +0.7940252 0.9125621 0.3885728 +0.8123661 0.9125621 0.3885728 +0.8301795 0.9125621 0.3885728 +0.8475045 0.9125621 0.3885728 +0.8643761 0.9125621 0.3885728 +0.880825 0.9125621 0.3885728 +0.8968787 0.9125621 0.3885728 +0.9125621 0.9125621 0.3885728 +0.9278974 0.9125621 0.3885728 +0.9429048 0.9125621 0.3885728 +0.9576028 0.9125621 0.3885728 +0.9720079 0.9125621 0.3885728 +0.9861357 0.9125621 0.3885728 +1 0.9125621 0.3885728 +0 0.9278974 0.3885728 +0.1939468 0.9278974 0.3885728 +0.2773041 0.9278974 0.3885728 +0.3384659 0.9278974 0.3885728 +0.3885728 0.9278974 0.3885728 +0.4317928 0.9278974 0.3885728 +0.470214 0.9278974 0.3885728 +0.5050551 0.9278974 0.3885728 +0.5370987 0.9278974 0.3885728 +0.5668815 0.9278974 0.3885728 +0.5947903 0.9278974 0.3885728 +0.6211144 0.9278974 0.3885728 +0.6460766 0.9278974 0.3885728 +0.6698526 0.9278974 0.3885728 +0.6925839 0.9278974 0.3885728 +0.7143866 0.9278974 0.3885728 +0.7353569 0.9278974 0.3885728 +0.7555758 0.9278974 0.3885728 +0.7751122 0.9278974 0.3885728 +0.7940252 0.9278974 0.3885728 +0.8123661 0.9278974 0.3885728 +0.8301795 0.9278974 0.3885728 +0.8475045 0.9278974 0.3885728 +0.8643761 0.9278974 0.3885728 +0.880825 0.9278974 0.3885728 +0.8968787 0.9278974 0.3885728 +0.9125621 0.9278974 0.3885728 +0.9278974 0.9278974 0.3885728 +0.9429048 0.9278974 0.3885728 +0.9576028 0.9278974 0.3885728 +0.9720079 0.9278974 0.3885728 +0.9861357 0.9278974 0.3885728 +1 0.9278974 0.3885728 +0 0.9429048 0.3885728 +0.1939468 0.9429048 0.3885728 +0.2773041 0.9429048 0.3885728 +0.3384659 0.9429048 0.3885728 +0.3885728 0.9429048 0.3885728 +0.4317928 0.9429048 0.3885728 +0.470214 0.9429048 0.3885728 +0.5050551 0.9429048 0.3885728 +0.5370987 0.9429048 0.3885728 +0.5668815 0.9429048 0.3885728 +0.5947903 0.9429048 0.3885728 +0.6211144 0.9429048 0.3885728 +0.6460766 0.9429048 0.3885728 +0.6698526 0.9429048 0.3885728 +0.6925839 0.9429048 0.3885728 +0.7143866 0.9429048 0.3885728 +0.7353569 0.9429048 0.3885728 +0.7555758 0.9429048 0.3885728 +0.7751122 0.9429048 0.3885728 +0.7940252 0.9429048 0.3885728 +0.8123661 0.9429048 0.3885728 +0.8301795 0.9429048 0.3885728 +0.8475045 0.9429048 0.3885728 +0.8643761 0.9429048 0.3885728 +0.880825 0.9429048 0.3885728 +0.8968787 0.9429048 0.3885728 +0.9125621 0.9429048 0.3885728 +0.9278974 0.9429048 0.3885728 +0.9429048 0.9429048 0.3885728 +0.9576028 0.9429048 0.3885728 +0.9720079 0.9429048 0.3885728 +0.9861357 0.9429048 0.3885728 +1 0.9429048 0.3885728 +0 0.9576028 0.3885728 +0.1939468 0.9576028 0.3885728 +0.2773041 0.9576028 0.3885728 +0.3384659 0.9576028 0.3885728 +0.3885728 0.9576028 0.3885728 +0.4317928 0.9576028 0.3885728 +0.470214 0.9576028 0.3885728 +0.5050551 0.9576028 0.3885728 +0.5370987 0.9576028 0.3885728 +0.5668815 0.9576028 0.3885728 +0.5947903 0.9576028 0.3885728 +0.6211144 0.9576028 0.3885728 +0.6460766 0.9576028 0.3885728 +0.6698526 0.9576028 0.3885728 +0.6925839 0.9576028 0.3885728 +0.7143866 0.9576028 0.3885728 +0.7353569 0.9576028 0.3885728 +0.7555758 0.9576028 0.3885728 +0.7751122 0.9576028 0.3885728 +0.7940252 0.9576028 0.3885728 +0.8123661 0.9576028 0.3885728 +0.8301795 0.9576028 0.3885728 +0.8475045 0.9576028 0.3885728 +0.8643761 0.9576028 0.3885728 +0.880825 0.9576028 0.3885728 +0.8968787 0.9576028 0.3885728 +0.9125621 0.9576028 0.3885728 +0.9278974 0.9576028 0.3885728 +0.9429048 0.9576028 0.3885728 +0.9576028 0.9576028 0.3885728 +0.9720079 0.9576028 0.3885728 +0.9861357 0.9576028 0.3885728 +1 0.9576028 0.3885728 +0 0.9720079 0.3885728 +0.1939468 0.9720079 0.3885728 +0.2773041 0.9720079 0.3885728 +0.3384659 0.9720079 0.3885728 +0.3885728 0.9720079 0.3885728 +0.4317928 0.9720079 0.3885728 +0.470214 0.9720079 0.3885728 +0.5050551 0.9720079 0.3885728 +0.5370987 0.9720079 0.3885728 +0.5668815 0.9720079 0.3885728 +0.5947903 0.9720079 0.3885728 +0.6211144 0.9720079 0.3885728 +0.6460766 0.9720079 0.3885728 +0.6698526 0.9720079 0.3885728 +0.6925839 0.9720079 0.3885728 +0.7143866 0.9720079 0.3885728 +0.7353569 0.9720079 0.3885728 +0.7555758 0.9720079 0.3885728 +0.7751122 0.9720079 0.3885728 +0.7940252 0.9720079 0.3885728 +0.8123661 0.9720079 0.3885728 +0.8301795 0.9720079 0.3885728 +0.8475045 0.9720079 0.3885728 +0.8643761 0.9720079 0.3885728 +0.880825 0.9720079 0.3885728 +0.8968787 0.9720079 0.3885728 +0.9125621 0.9720079 0.3885728 +0.9278974 0.9720079 0.3885728 +0.9429048 0.9720079 0.3885728 +0.9576028 0.9720079 0.3885728 +0.9720079 0.9720079 0.3885728 +0.9861357 0.9720079 0.3885728 +1 0.9720079 0.3885728 +0 0.9861357 0.3885728 +0.1939468 0.9861357 0.3885728 +0.2773041 0.9861357 0.3885728 +0.3384659 0.9861357 0.3885728 +0.3885728 0.9861357 0.3885728 +0.4317928 0.9861357 0.3885728 +0.470214 0.9861357 0.3885728 +0.5050551 0.9861357 0.3885728 +0.5370987 0.9861357 0.3885728 +0.5668815 0.9861357 0.3885728 +0.5947903 0.9861357 0.3885728 +0.6211144 0.9861357 0.3885728 +0.6460766 0.9861357 0.3885728 +0.6698526 0.9861357 0.3885728 +0.6925839 0.9861357 0.3885728 +0.7143866 0.9861357 0.3885728 +0.7353569 0.9861357 0.3885728 +0.7555758 0.9861357 0.3885728 +0.7751122 0.9861357 0.3885728 +0.7940252 0.9861357 0.3885728 +0.8123661 0.9861357 0.3885728 +0.8301795 0.9861357 0.3885728 +0.8475045 0.9861357 0.3885728 +0.8643761 0.9861357 0.3885728 +0.880825 0.9861357 0.3885728 +0.8968787 0.9861357 0.3885728 +0.9125621 0.9861357 0.3885728 +0.9278974 0.9861357 0.3885728 +0.9429048 0.9861357 0.3885728 +0.9576028 0.9861357 0.3885728 +0.9720079 0.9861357 0.3885728 +0.9861357 0.9861357 0.3885728 +1 0.9861357 0.3885728 +0 1 0.3885728 +0.1939468 1 0.3885728 +0.2773041 1 0.3885728 +0.3384659 1 0.3885728 +0.3885728 1 0.3885728 +0.4317928 1 0.3885728 +0.470214 1 0.3885728 +0.5050551 1 0.3885728 +0.5370987 1 0.3885728 +0.5668815 1 0.3885728 +0.5947903 1 0.3885728 +0.6211144 1 0.3885728 +0.6460766 1 0.3885728 +0.6698526 1 0.3885728 +0.6925839 1 0.3885728 +0.7143866 1 0.3885728 +0.7353569 1 0.3885728 +0.7555758 1 0.3885728 +0.7751122 1 0.3885728 +0.7940252 1 0.3885728 +0.8123661 1 0.3885728 +0.8301795 1 0.3885728 +0.8475045 1 0.3885728 +0.8643761 1 0.3885728 +0.880825 1 0.3885728 +0.8968787 1 0.3885728 +0.9125621 1 0.3885728 +0.9278974 1 0.3885728 +0.9429048 1 0.3885728 +0.9576028 1 0.3885728 +0.9720079 1 0.3885728 +0.9861357 1 0.3885728 +1 1 0.3885728 +0 0 0.4317928 +0.1939468 0 0.4317928 +0.2773041 0 0.4317928 +0.3384659 0 0.4317928 +0.3885728 0 0.4317928 +0.4317928 0 0.4317928 +0.470214 0 0.4317928 +0.5050551 0 0.4317928 +0.5370987 0 0.4317928 +0.5668815 0 0.4317928 +0.5947903 0 0.4317928 +0.6211144 0 0.4317928 +0.6460766 0 0.4317928 +0.6698526 0 0.4317928 +0.6925839 0 0.4317928 +0.7143866 0 0.4317928 +0.7353569 0 0.4317928 +0.7555758 0 0.4317928 +0.7751122 0 0.4317928 +0.7940252 0 0.4317928 +0.8123661 0 0.4317928 +0.8301795 0 0.4317928 +0.8475045 0 0.4317928 +0.8643761 0 0.4317928 +0.880825 0 0.4317928 +0.8968787 0 0.4317928 +0.9125621 0 0.4317928 +0.9278974 0 0.4317928 +0.9429048 0 0.4317928 +0.9576028 0 0.4317928 +0.9720079 0 0.4317928 +0.9861357 0 0.4317928 +1 0 0.4317928 +0 0.1939468 0.4317928 +0.1939468 0.1939468 0.4317928 +0.2773041 0.1939468 0.4317928 +0.3384659 0.1939468 0.4317928 +0.3885728 0.1939468 0.4317928 +0.4317928 0.1939468 0.4317928 +0.470214 0.1939468 0.4317928 +0.5050551 0.1939468 0.4317928 +0.5370987 0.1939468 0.4317928 +0.5668815 0.1939468 0.4317928 +0.5947903 0.1939468 0.4317928 +0.6211144 0.1939468 0.4317928 +0.6460766 0.1939468 0.4317928 +0.6698526 0.1939468 0.4317928 +0.6925839 0.1939468 0.4317928 +0.7143866 0.1939468 0.4317928 +0.7353569 0.1939468 0.4317928 +0.7555758 0.1939468 0.4317928 +0.7751122 0.1939468 0.4317928 +0.7940252 0.1939468 0.4317928 +0.8123661 0.1939468 0.4317928 +0.8301795 0.1939468 0.4317928 +0.8475045 0.1939468 0.4317928 +0.8643761 0.1939468 0.4317928 +0.880825 0.1939468 0.4317928 +0.8968787 0.1939468 0.4317928 +0.9125621 0.1939468 0.4317928 +0.9278974 0.1939468 0.4317928 +0.9429048 0.1939468 0.4317928 +0.9576028 0.1939468 0.4317928 +0.9720079 0.1939468 0.4317928 +0.9861357 0.1939468 0.4317928 +1 0.1939468 0.4317928 +0 0.2773041 0.4317928 +0.1939468 0.2773041 0.4317928 +0.2773041 0.2773041 0.4317928 +0.3384659 0.2773041 0.4317928 +0.3885728 0.2773041 0.4317928 +0.4317928 0.2773041 0.4317928 +0.470214 0.2773041 0.4317928 +0.5050551 0.2773041 0.4317928 +0.5370987 0.2773041 0.4317928 +0.5668815 0.2773041 0.4317928 +0.5947903 0.2773041 0.4317928 +0.6211144 0.2773041 0.4317928 +0.6460766 0.2773041 0.4317928 +0.6698526 0.2773041 0.4317928 +0.6925839 0.2773041 0.4317928 +0.7143866 0.2773041 0.4317928 +0.7353569 0.2773041 0.4317928 +0.7555758 0.2773041 0.4317928 +0.7751122 0.2773041 0.4317928 +0.7940252 0.2773041 0.4317928 +0.8123661 0.2773041 0.4317928 +0.8301795 0.2773041 0.4317928 +0.8475045 0.2773041 0.4317928 +0.8643761 0.2773041 0.4317928 +0.880825 0.2773041 0.4317928 +0.8968787 0.2773041 0.4317928 +0.9125621 0.2773041 0.4317928 +0.9278974 0.2773041 0.4317928 +0.9429048 0.2773041 0.4317928 +0.9576028 0.2773041 0.4317928 +0.9720079 0.2773041 0.4317928 +0.9861357 0.2773041 0.4317928 +1 0.2773041 0.4317928 +0 0.3384659 0.4317928 +0.1939468 0.3384659 0.4317928 +0.2773041 0.3384659 0.4317928 +0.3384659 0.3384659 0.4317928 +0.3885728 0.3384659 0.4317928 +0.4317928 0.3384659 0.4317928 +0.470214 0.3384659 0.4317928 +0.5050551 0.3384659 0.4317928 +0.5370987 0.3384659 0.4317928 +0.5668815 0.3384659 0.4317928 +0.5947903 0.3384659 0.4317928 +0.6211144 0.3384659 0.4317928 +0.6460766 0.3384659 0.4317928 +0.6698526 0.3384659 0.4317928 +0.6925839 0.3384659 0.4317928 +0.7143866 0.3384659 0.4317928 +0.7353569 0.3384659 0.4317928 +0.7555758 0.3384659 0.4317928 +0.7751122 0.3384659 0.4317928 +0.7940252 0.3384659 0.4317928 +0.8123661 0.3384659 0.4317928 +0.8301795 0.3384659 0.4317928 +0.8475045 0.3384659 0.4317928 +0.8643761 0.3384659 0.4317928 +0.880825 0.3384659 0.4317928 +0.8968787 0.3384659 0.4317928 +0.9125621 0.3384659 0.4317928 +0.9278974 0.3384659 0.4317928 +0.9429048 0.3384659 0.4317928 +0.9576028 0.3384659 0.4317928 +0.9720079 0.3384659 0.4317928 +0.9861357 0.3384659 0.4317928 +1 0.3384659 0.4317928 +0 0.3885728 0.4317928 +0.1939468 0.3885728 0.4317928 +0.2773041 0.3885728 0.4317928 +0.3384659 0.3885728 0.4317928 +0.3885728 0.3885728 0.4317928 +0.4317928 0.3885728 0.4317928 +0.470214 0.3885728 0.4317928 +0.5050551 0.3885728 0.4317928 +0.5370987 0.3885728 0.4317928 +0.5668815 0.3885728 0.4317928 +0.5947903 0.3885728 0.4317928 +0.6211144 0.3885728 0.4317928 +0.6460766 0.3885728 0.4317928 +0.6698526 0.3885728 0.4317928 +0.6925839 0.3885728 0.4317928 +0.7143866 0.3885728 0.4317928 +0.7353569 0.3885728 0.4317928 +0.7555758 0.3885728 0.4317928 +0.7751122 0.3885728 0.4317928 +0.7940252 0.3885728 0.4317928 +0.8123661 0.3885728 0.4317928 +0.8301795 0.3885728 0.4317928 +0.8475045 0.3885728 0.4317928 +0.8643761 0.3885728 0.4317928 +0.880825 0.3885728 0.4317928 +0.8968787 0.3885728 0.4317928 +0.9125621 0.3885728 0.4317928 +0.9278974 0.3885728 0.4317928 +0.9429048 0.3885728 0.4317928 +0.9576028 0.3885728 0.4317928 +0.9720079 0.3885728 0.4317928 +0.9861357 0.3885728 0.4317928 +1 0.3885728 0.4317928 +0 0.4317928 0.4317928 +0.1939468 0.4317928 0.4317928 +0.2773041 0.4317928 0.4317928 +0.3384659 0.4317928 0.4317928 +0.3885728 0.4317928 0.4317928 +0.4317928 0.4317928 0.4317928 +0.470214 0.4317928 0.4317928 +0.5050551 0.4317928 0.4317928 +0.5370987 0.4317928 0.4317928 +0.5668815 0.4317928 0.4317928 +0.5947903 0.4317928 0.4317928 +0.6211144 0.4317928 0.4317928 +0.6460766 0.4317928 0.4317928 +0.6698526 0.4317928 0.4317928 +0.6925839 0.4317928 0.4317928 +0.7143866 0.4317928 0.4317928 +0.7353569 0.4317928 0.4317928 +0.7555758 0.4317928 0.4317928 +0.7751122 0.4317928 0.4317928 +0.7940252 0.4317928 0.4317928 +0.8123661 0.4317928 0.4317928 +0.8301795 0.4317928 0.4317928 +0.8475045 0.4317928 0.4317928 +0.8643761 0.4317928 0.4317928 +0.880825 0.4317928 0.4317928 +0.8968787 0.4317928 0.4317928 +0.9125621 0.4317928 0.4317928 +0.9278974 0.4317928 0.4317928 +0.9429048 0.4317928 0.4317928 +0.9576028 0.4317928 0.4317928 +0.9720079 0.4317928 0.4317928 +0.9861357 0.4317928 0.4317928 +1 0.4317928 0.4317928 +0 0.470214 0.4317928 +0.1939468 0.470214 0.4317928 +0.2773041 0.470214 0.4317928 +0.3384659 0.470214 0.4317928 +0.3885728 0.470214 0.4317928 +0.4317928 0.470214 0.4317928 +0.470214 0.470214 0.4317928 +0.5050551 0.470214 0.4317928 +0.5370987 0.470214 0.4317928 +0.5668815 0.470214 0.4317928 +0.5947903 0.470214 0.4317928 +0.6211144 0.470214 0.4317928 +0.6460766 0.470214 0.4317928 +0.6698526 0.470214 0.4317928 +0.6925839 0.470214 0.4317928 +0.7143866 0.470214 0.4317928 +0.7353569 0.470214 0.4317928 +0.7555758 0.470214 0.4317928 +0.7751122 0.470214 0.4317928 +0.7940252 0.470214 0.4317928 +0.8123661 0.470214 0.4317928 +0.8301795 0.470214 0.4317928 +0.8475045 0.470214 0.4317928 +0.8643761 0.470214 0.4317928 +0.880825 0.470214 0.4317928 +0.8968787 0.470214 0.4317928 +0.9125621 0.470214 0.4317928 +0.9278974 0.470214 0.4317928 +0.9429048 0.470214 0.4317928 +0.9576028 0.470214 0.4317928 +0.9720079 0.470214 0.4317928 +0.9861357 0.470214 0.4317928 +1 0.470214 0.4317928 +0 0.5050551 0.4317928 +0.1939468 0.5050551 0.4317928 +0.2773041 0.5050551 0.4317928 +0.3384659 0.5050551 0.4317928 +0.3885728 0.5050551 0.4317928 +0.4317928 0.5050551 0.4317928 +0.470214 0.5050551 0.4317928 +0.5050551 0.5050551 0.4317928 +0.5370987 0.5050551 0.4317928 +0.5668815 0.5050551 0.4317928 +0.5947903 0.5050551 0.4317928 +0.6211144 0.5050551 0.4317928 +0.6460766 0.5050551 0.4317928 +0.6698526 0.5050551 0.4317928 +0.6925839 0.5050551 0.4317928 +0.7143866 0.5050551 0.4317928 +0.7353569 0.5050551 0.4317928 +0.7555758 0.5050551 0.4317928 +0.7751122 0.5050551 0.4317928 +0.7940252 0.5050551 0.4317928 +0.8123661 0.5050551 0.4317928 +0.8301795 0.5050551 0.4317928 +0.8475045 0.5050551 0.4317928 +0.8643761 0.5050551 0.4317928 +0.880825 0.5050551 0.4317928 +0.8968787 0.5050551 0.4317928 +0.9125621 0.5050551 0.4317928 +0.9278974 0.5050551 0.4317928 +0.9429048 0.5050551 0.4317928 +0.9576028 0.5050551 0.4317928 +0.9720079 0.5050551 0.4317928 +0.9861357 0.5050551 0.4317928 +1 0.5050551 0.4317928 +0 0.5370987 0.4317928 +0.1939468 0.5370987 0.4317928 +0.2773041 0.5370987 0.4317928 +0.3384659 0.5370987 0.4317928 +0.3885728 0.5370987 0.4317928 +0.4317928 0.5370987 0.4317928 +0.470214 0.5370987 0.4317928 +0.5050551 0.5370987 0.4317928 +0.5370987 0.5370987 0.4317928 +0.5668815 0.5370987 0.4317928 +0.5947903 0.5370987 0.4317928 +0.6211144 0.5370987 0.4317928 +0.6460766 0.5370987 0.4317928 +0.6698526 0.5370987 0.4317928 +0.6925839 0.5370987 0.4317928 +0.7143866 0.5370987 0.4317928 +0.7353569 0.5370987 0.4317928 +0.7555758 0.5370987 0.4317928 +0.7751122 0.5370987 0.4317928 +0.7940252 0.5370987 0.4317928 +0.8123661 0.5370987 0.4317928 +0.8301795 0.5370987 0.4317928 +0.8475045 0.5370987 0.4317928 +0.8643761 0.5370987 0.4317928 +0.880825 0.5370987 0.4317928 +0.8968787 0.5370987 0.4317928 +0.9125621 0.5370987 0.4317928 +0.9278974 0.5370987 0.4317928 +0.9429048 0.5370987 0.4317928 +0.9576028 0.5370987 0.4317928 +0.9720079 0.5370987 0.4317928 +0.9861357 0.5370987 0.4317928 +1 0.5370987 0.4317928 +0 0.5668815 0.4317928 +0.1939468 0.5668815 0.4317928 +0.2773041 0.5668815 0.4317928 +0.3384659 0.5668815 0.4317928 +0.3885728 0.5668815 0.4317928 +0.4317928 0.5668815 0.4317928 +0.470214 0.5668815 0.4317928 +0.5050551 0.5668815 0.4317928 +0.5370987 0.5668815 0.4317928 +0.5668815 0.5668815 0.4317928 +0.5947903 0.5668815 0.4317928 +0.6211144 0.5668815 0.4317928 +0.6460766 0.5668815 0.4317928 +0.6698526 0.5668815 0.4317928 +0.6925839 0.5668815 0.4317928 +0.7143866 0.5668815 0.4317928 +0.7353569 0.5668815 0.4317928 +0.7555758 0.5668815 0.4317928 +0.7751122 0.5668815 0.4317928 +0.7940252 0.5668815 0.4317928 +0.8123661 0.5668815 0.4317928 +0.8301795 0.5668815 0.4317928 +0.8475045 0.5668815 0.4317928 +0.8643761 0.5668815 0.4317928 +0.880825 0.5668815 0.4317928 +0.8968787 0.5668815 0.4317928 +0.9125621 0.5668815 0.4317928 +0.9278974 0.5668815 0.4317928 +0.9429048 0.5668815 0.4317928 +0.9576028 0.5668815 0.4317928 +0.9720079 0.5668815 0.4317928 +0.9861357 0.5668815 0.4317928 +1 0.5668815 0.4317928 +0 0.5947903 0.4317928 +0.1939468 0.5947903 0.4317928 +0.2773041 0.5947903 0.4317928 +0.3384659 0.5947903 0.4317928 +0.3885728 0.5947903 0.4317928 +0.4317928 0.5947903 0.4317928 +0.470214 0.5947903 0.4317928 +0.5050551 0.5947903 0.4317928 +0.5370987 0.5947903 0.4317928 +0.5668815 0.5947903 0.4317928 +0.5947903 0.5947903 0.4317928 +0.6211144 0.5947903 0.4317928 +0.6460766 0.5947903 0.4317928 +0.6698526 0.5947903 0.4317928 +0.6925839 0.5947903 0.4317928 +0.7143866 0.5947903 0.4317928 +0.7353569 0.5947903 0.4317928 +0.7555758 0.5947903 0.4317928 +0.7751122 0.5947903 0.4317928 +0.7940252 0.5947903 0.4317928 +0.8123661 0.5947903 0.4317928 +0.8301795 0.5947903 0.4317928 +0.8475045 0.5947903 0.4317928 +0.8643761 0.5947903 0.4317928 +0.880825 0.5947903 0.4317928 +0.8968787 0.5947903 0.4317928 +0.9125621 0.5947903 0.4317928 +0.9278974 0.5947903 0.4317928 +0.9429048 0.5947903 0.4317928 +0.9576028 0.5947903 0.4317928 +0.9720079 0.5947903 0.4317928 +0.9861357 0.5947903 0.4317928 +1 0.5947903 0.4317928 +0 0.6211144 0.4317928 +0.1939468 0.6211144 0.4317928 +0.2773041 0.6211144 0.4317928 +0.3384659 0.6211144 0.4317928 +0.3885728 0.6211144 0.4317928 +0.4317928 0.6211144 0.4317928 +0.470214 0.6211144 0.4317928 +0.5050551 0.6211144 0.4317928 +0.5370987 0.6211144 0.4317928 +0.5668815 0.6211144 0.4317928 +0.5947903 0.6211144 0.4317928 +0.6211144 0.6211144 0.4317928 +0.6460766 0.6211144 0.4317928 +0.6698526 0.6211144 0.4317928 +0.6925839 0.6211144 0.4317928 +0.7143866 0.6211144 0.4317928 +0.7353569 0.6211144 0.4317928 +0.7555758 0.6211144 0.4317928 +0.7751122 0.6211144 0.4317928 +0.7940252 0.6211144 0.4317928 +0.8123661 0.6211144 0.4317928 +0.8301795 0.6211144 0.4317928 +0.8475045 0.6211144 0.4317928 +0.8643761 0.6211144 0.4317928 +0.880825 0.6211144 0.4317928 +0.8968787 0.6211144 0.4317928 +0.9125621 0.6211144 0.4317928 +0.9278974 0.6211144 0.4317928 +0.9429048 0.6211144 0.4317928 +0.9576028 0.6211144 0.4317928 +0.9720079 0.6211144 0.4317928 +0.9861357 0.6211144 0.4317928 +1 0.6211144 0.4317928 +0 0.6460766 0.4317928 +0.1939468 0.6460766 0.4317928 +0.2773041 0.6460766 0.4317928 +0.3384659 0.6460766 0.4317928 +0.3885728 0.6460766 0.4317928 +0.4317928 0.6460766 0.4317928 +0.470214 0.6460766 0.4317928 +0.5050551 0.6460766 0.4317928 +0.5370987 0.6460766 0.4317928 +0.5668815 0.6460766 0.4317928 +0.5947903 0.6460766 0.4317928 +0.6211144 0.6460766 0.4317928 +0.6460766 0.6460766 0.4317928 +0.6698526 0.6460766 0.4317928 +0.6925839 0.6460766 0.4317928 +0.7143866 0.6460766 0.4317928 +0.7353569 0.6460766 0.4317928 +0.7555758 0.6460766 0.4317928 +0.7751122 0.6460766 0.4317928 +0.7940252 0.6460766 0.4317928 +0.8123661 0.6460766 0.4317928 +0.8301795 0.6460766 0.4317928 +0.8475045 0.6460766 0.4317928 +0.8643761 0.6460766 0.4317928 +0.880825 0.6460766 0.4317928 +0.8968787 0.6460766 0.4317928 +0.9125621 0.6460766 0.4317928 +0.9278974 0.6460766 0.4317928 +0.9429048 0.6460766 0.4317928 +0.9576028 0.6460766 0.4317928 +0.9720079 0.6460766 0.4317928 +0.9861357 0.6460766 0.4317928 +1 0.6460766 0.4317928 +0 0.6698526 0.4317928 +0.1939468 0.6698526 0.4317928 +0.2773041 0.6698526 0.4317928 +0.3384659 0.6698526 0.4317928 +0.3885728 0.6698526 0.4317928 +0.4317928 0.6698526 0.4317928 +0.470214 0.6698526 0.4317928 +0.5050551 0.6698526 0.4317928 +0.5370987 0.6698526 0.4317928 +0.5668815 0.6698526 0.4317928 +0.5947903 0.6698526 0.4317928 +0.6211144 0.6698526 0.4317928 +0.6460766 0.6698526 0.4317928 +0.6698526 0.6698526 0.4317928 +0.6925839 0.6698526 0.4317928 +0.7143866 0.6698526 0.4317928 +0.7353569 0.6698526 0.4317928 +0.7555758 0.6698526 0.4317928 +0.7751122 0.6698526 0.4317928 +0.7940252 0.6698526 0.4317928 +0.8123661 0.6698526 0.4317928 +0.8301795 0.6698526 0.4317928 +0.8475045 0.6698526 0.4317928 +0.8643761 0.6698526 0.4317928 +0.880825 0.6698526 0.4317928 +0.8968787 0.6698526 0.4317928 +0.9125621 0.6698526 0.4317928 +0.9278974 0.6698526 0.4317928 +0.9429048 0.6698526 0.4317928 +0.9576028 0.6698526 0.4317928 +0.9720079 0.6698526 0.4317928 +0.9861357 0.6698526 0.4317928 +1 0.6698526 0.4317928 +0 0.6925839 0.4317928 +0.1939468 0.6925839 0.4317928 +0.2773041 0.6925839 0.4317928 +0.3384659 0.6925839 0.4317928 +0.3885728 0.6925839 0.4317928 +0.4317928 0.6925839 0.4317928 +0.470214 0.6925839 0.4317928 +0.5050551 0.6925839 0.4317928 +0.5370987 0.6925839 0.4317928 +0.5668815 0.6925839 0.4317928 +0.5947903 0.6925839 0.4317928 +0.6211144 0.6925839 0.4317928 +0.6460766 0.6925839 0.4317928 +0.6698526 0.6925839 0.4317928 +0.6925839 0.6925839 0.4317928 +0.7143866 0.6925839 0.4317928 +0.7353569 0.6925839 0.4317928 +0.7555758 0.6925839 0.4317928 +0.7751122 0.6925839 0.4317928 +0.7940252 0.6925839 0.4317928 +0.8123661 0.6925839 0.4317928 +0.8301795 0.6925839 0.4317928 +0.8475045 0.6925839 0.4317928 +0.8643761 0.6925839 0.4317928 +0.880825 0.6925839 0.4317928 +0.8968787 0.6925839 0.4317928 +0.9125621 0.6925839 0.4317928 +0.9278974 0.6925839 0.4317928 +0.9429048 0.6925839 0.4317928 +0.9576028 0.6925839 0.4317928 +0.9720079 0.6925839 0.4317928 +0.9861357 0.6925839 0.4317928 +1 0.6925839 0.4317928 +0 0.7143866 0.4317928 +0.1939468 0.7143866 0.4317928 +0.2773041 0.7143866 0.4317928 +0.3384659 0.7143866 0.4317928 +0.3885728 0.7143866 0.4317928 +0.4317928 0.7143866 0.4317928 +0.470214 0.7143866 0.4317928 +0.5050551 0.7143866 0.4317928 +0.5370987 0.7143866 0.4317928 +0.5668815 0.7143866 0.4317928 +0.5947903 0.7143866 0.4317928 +0.6211144 0.7143866 0.4317928 +0.6460766 0.7143866 0.4317928 +0.6698526 0.7143866 0.4317928 +0.6925839 0.7143866 0.4317928 +0.7143866 0.7143866 0.4317928 +0.7353569 0.7143866 0.4317928 +0.7555758 0.7143866 0.4317928 +0.7751122 0.7143866 0.4317928 +0.7940252 0.7143866 0.4317928 +0.8123661 0.7143866 0.4317928 +0.8301795 0.7143866 0.4317928 +0.8475045 0.7143866 0.4317928 +0.8643761 0.7143866 0.4317928 +0.880825 0.7143866 0.4317928 +0.8968787 0.7143866 0.4317928 +0.9125621 0.7143866 0.4317928 +0.9278974 0.7143866 0.4317928 +0.9429048 0.7143866 0.4317928 +0.9576028 0.7143866 0.4317928 +0.9720079 0.7143866 0.4317928 +0.9861357 0.7143866 0.4317928 +1 0.7143866 0.4317928 +0 0.7353569 0.4317928 +0.1939468 0.7353569 0.4317928 +0.2773041 0.7353569 0.4317928 +0.3384659 0.7353569 0.4317928 +0.3885728 0.7353569 0.4317928 +0.4317928 0.7353569 0.4317928 +0.470214 0.7353569 0.4317928 +0.5050551 0.7353569 0.4317928 +0.5370987 0.7353569 0.4317928 +0.5668815 0.7353569 0.4317928 +0.5947903 0.7353569 0.4317928 +0.6211144 0.7353569 0.4317928 +0.6460766 0.7353569 0.4317928 +0.6698526 0.7353569 0.4317928 +0.6925839 0.7353569 0.4317928 +0.7143866 0.7353569 0.4317928 +0.7353569 0.7353569 0.4317928 +0.7555758 0.7353569 0.4317928 +0.7751122 0.7353569 0.4317928 +0.7940252 0.7353569 0.4317928 +0.8123661 0.7353569 0.4317928 +0.8301795 0.7353569 0.4317928 +0.8475045 0.7353569 0.4317928 +0.8643761 0.7353569 0.4317928 +0.880825 0.7353569 0.4317928 +0.8968787 0.7353569 0.4317928 +0.9125621 0.7353569 0.4317928 +0.9278974 0.7353569 0.4317928 +0.9429048 0.7353569 0.4317928 +0.9576028 0.7353569 0.4317928 +0.9720079 0.7353569 0.4317928 +0.9861357 0.7353569 0.4317928 +1 0.7353569 0.4317928 +0 0.7555758 0.4317928 +0.1939468 0.7555758 0.4317928 +0.2773041 0.7555758 0.4317928 +0.3384659 0.7555758 0.4317928 +0.3885728 0.7555758 0.4317928 +0.4317928 0.7555758 0.4317928 +0.470214 0.7555758 0.4317928 +0.5050551 0.7555758 0.4317928 +0.5370987 0.7555758 0.4317928 +0.5668815 0.7555758 0.4317928 +0.5947903 0.7555758 0.4317928 +0.6211144 0.7555758 0.4317928 +0.6460766 0.7555758 0.4317928 +0.6698526 0.7555758 0.4317928 +0.6925839 0.7555758 0.4317928 +0.7143866 0.7555758 0.4317928 +0.7353569 0.7555758 0.4317928 +0.7555758 0.7555758 0.4317928 +0.7751122 0.7555758 0.4317928 +0.7940252 0.7555758 0.4317928 +0.8123661 0.7555758 0.4317928 +0.8301795 0.7555758 0.4317928 +0.8475045 0.7555758 0.4317928 +0.8643761 0.7555758 0.4317928 +0.880825 0.7555758 0.4317928 +0.8968787 0.7555758 0.4317928 +0.9125621 0.7555758 0.4317928 +0.9278974 0.7555758 0.4317928 +0.9429048 0.7555758 0.4317928 +0.9576028 0.7555758 0.4317928 +0.9720079 0.7555758 0.4317928 +0.9861357 0.7555758 0.4317928 +1 0.7555758 0.4317928 +0 0.7751122 0.4317928 +0.1939468 0.7751122 0.4317928 +0.2773041 0.7751122 0.4317928 +0.3384659 0.7751122 0.4317928 +0.3885728 0.7751122 0.4317928 +0.4317928 0.7751122 0.4317928 +0.470214 0.7751122 0.4317928 +0.5050551 0.7751122 0.4317928 +0.5370987 0.7751122 0.4317928 +0.5668815 0.7751122 0.4317928 +0.5947903 0.7751122 0.4317928 +0.6211144 0.7751122 0.4317928 +0.6460766 0.7751122 0.4317928 +0.6698526 0.7751122 0.4317928 +0.6925839 0.7751122 0.4317928 +0.7143866 0.7751122 0.4317928 +0.7353569 0.7751122 0.4317928 +0.7555758 0.7751122 0.4317928 +0.7751122 0.7751122 0.4317928 +0.7940252 0.7751122 0.4317928 +0.8123661 0.7751122 0.4317928 +0.8301795 0.7751122 0.4317928 +0.8475045 0.7751122 0.4317928 +0.8643761 0.7751122 0.4317928 +0.880825 0.7751122 0.4317928 +0.8968787 0.7751122 0.4317928 +0.9125621 0.7751122 0.4317928 +0.9278974 0.7751122 0.4317928 +0.9429048 0.7751122 0.4317928 +0.9576028 0.7751122 0.4317928 +0.9720079 0.7751122 0.4317928 +0.9861357 0.7751122 0.4317928 +1 0.7751122 0.4317928 +0 0.7940252 0.4317928 +0.1939468 0.7940252 0.4317928 +0.2773041 0.7940252 0.4317928 +0.3384659 0.7940252 0.4317928 +0.3885728 0.7940252 0.4317928 +0.4317928 0.7940252 0.4317928 +0.470214 0.7940252 0.4317928 +0.5050551 0.7940252 0.4317928 +0.5370987 0.7940252 0.4317928 +0.5668815 0.7940252 0.4317928 +0.5947903 0.7940252 0.4317928 +0.6211144 0.7940252 0.4317928 +0.6460766 0.7940252 0.4317928 +0.6698526 0.7940252 0.4317928 +0.6925839 0.7940252 0.4317928 +0.7143866 0.7940252 0.4317928 +0.7353569 0.7940252 0.4317928 +0.7555758 0.7940252 0.4317928 +0.7751122 0.7940252 0.4317928 +0.7940252 0.7940252 0.4317928 +0.8123661 0.7940252 0.4317928 +0.8301795 0.7940252 0.4317928 +0.8475045 0.7940252 0.4317928 +0.8643761 0.7940252 0.4317928 +0.880825 0.7940252 0.4317928 +0.8968787 0.7940252 0.4317928 +0.9125621 0.7940252 0.4317928 +0.9278974 0.7940252 0.4317928 +0.9429048 0.7940252 0.4317928 +0.9576028 0.7940252 0.4317928 +0.9720079 0.7940252 0.4317928 +0.9861357 0.7940252 0.4317928 +1 0.7940252 0.4317928 +0 0.8123661 0.4317928 +0.1939468 0.8123661 0.4317928 +0.2773041 0.8123661 0.4317928 +0.3384659 0.8123661 0.4317928 +0.3885728 0.8123661 0.4317928 +0.4317928 0.8123661 0.4317928 +0.470214 0.8123661 0.4317928 +0.5050551 0.8123661 0.4317928 +0.5370987 0.8123661 0.4317928 +0.5668815 0.8123661 0.4317928 +0.5947903 0.8123661 0.4317928 +0.6211144 0.8123661 0.4317928 +0.6460766 0.8123661 0.4317928 +0.6698526 0.8123661 0.4317928 +0.6925839 0.8123661 0.4317928 +0.7143866 0.8123661 0.4317928 +0.7353569 0.8123661 0.4317928 +0.7555758 0.8123661 0.4317928 +0.7751122 0.8123661 0.4317928 +0.7940252 0.8123661 0.4317928 +0.8123661 0.8123661 0.4317928 +0.8301795 0.8123661 0.4317928 +0.8475045 0.8123661 0.4317928 +0.8643761 0.8123661 0.4317928 +0.880825 0.8123661 0.4317928 +0.8968787 0.8123661 0.4317928 +0.9125621 0.8123661 0.4317928 +0.9278974 0.8123661 0.4317928 +0.9429048 0.8123661 0.4317928 +0.9576028 0.8123661 0.4317928 +0.9720079 0.8123661 0.4317928 +0.9861357 0.8123661 0.4317928 +1 0.8123661 0.4317928 +0 0.8301795 0.4317928 +0.1939468 0.8301795 0.4317928 +0.2773041 0.8301795 0.4317928 +0.3384659 0.8301795 0.4317928 +0.3885728 0.8301795 0.4317928 +0.4317928 0.8301795 0.4317928 +0.470214 0.8301795 0.4317928 +0.5050551 0.8301795 0.4317928 +0.5370987 0.8301795 0.4317928 +0.5668815 0.8301795 0.4317928 +0.5947903 0.8301795 0.4317928 +0.6211144 0.8301795 0.4317928 +0.6460766 0.8301795 0.4317928 +0.6698526 0.8301795 0.4317928 +0.6925839 0.8301795 0.4317928 +0.7143866 0.8301795 0.4317928 +0.7353569 0.8301795 0.4317928 +0.7555758 0.8301795 0.4317928 +0.7751122 0.8301795 0.4317928 +0.7940252 0.8301795 0.4317928 +0.8123661 0.8301795 0.4317928 +0.8301795 0.8301795 0.4317928 +0.8475045 0.8301795 0.4317928 +0.8643761 0.8301795 0.4317928 +0.880825 0.8301795 0.4317928 +0.8968787 0.8301795 0.4317928 +0.9125621 0.8301795 0.4317928 +0.9278974 0.8301795 0.4317928 +0.9429048 0.8301795 0.4317928 +0.9576028 0.8301795 0.4317928 +0.9720079 0.8301795 0.4317928 +0.9861357 0.8301795 0.4317928 +1 0.8301795 0.4317928 +0 0.8475045 0.4317928 +0.1939468 0.8475045 0.4317928 +0.2773041 0.8475045 0.4317928 +0.3384659 0.8475045 0.4317928 +0.3885728 0.8475045 0.4317928 +0.4317928 0.8475045 0.4317928 +0.470214 0.8475045 0.4317928 +0.5050551 0.8475045 0.4317928 +0.5370987 0.8475045 0.4317928 +0.5668815 0.8475045 0.4317928 +0.5947903 0.8475045 0.4317928 +0.6211144 0.8475045 0.4317928 +0.6460766 0.8475045 0.4317928 +0.6698526 0.8475045 0.4317928 +0.6925839 0.8475045 0.4317928 +0.7143866 0.8475045 0.4317928 +0.7353569 0.8475045 0.4317928 +0.7555758 0.8475045 0.4317928 +0.7751122 0.8475045 0.4317928 +0.7940252 0.8475045 0.4317928 +0.8123661 0.8475045 0.4317928 +0.8301795 0.8475045 0.4317928 +0.8475045 0.8475045 0.4317928 +0.8643761 0.8475045 0.4317928 +0.880825 0.8475045 0.4317928 +0.8968787 0.8475045 0.4317928 +0.9125621 0.8475045 0.4317928 +0.9278974 0.8475045 0.4317928 +0.9429048 0.8475045 0.4317928 +0.9576028 0.8475045 0.4317928 +0.9720079 0.8475045 0.4317928 +0.9861357 0.8475045 0.4317928 +1 0.8475045 0.4317928 +0 0.8643761 0.4317928 +0.1939468 0.8643761 0.4317928 +0.2773041 0.8643761 0.4317928 +0.3384659 0.8643761 0.4317928 +0.3885728 0.8643761 0.4317928 +0.4317928 0.8643761 0.4317928 +0.470214 0.8643761 0.4317928 +0.5050551 0.8643761 0.4317928 +0.5370987 0.8643761 0.4317928 +0.5668815 0.8643761 0.4317928 +0.5947903 0.8643761 0.4317928 +0.6211144 0.8643761 0.4317928 +0.6460766 0.8643761 0.4317928 +0.6698526 0.8643761 0.4317928 +0.6925839 0.8643761 0.4317928 +0.7143866 0.8643761 0.4317928 +0.7353569 0.8643761 0.4317928 +0.7555758 0.8643761 0.4317928 +0.7751122 0.8643761 0.4317928 +0.7940252 0.8643761 0.4317928 +0.8123661 0.8643761 0.4317928 +0.8301795 0.8643761 0.4317928 +0.8475045 0.8643761 0.4317928 +0.8643761 0.8643761 0.4317928 +0.880825 0.8643761 0.4317928 +0.8968787 0.8643761 0.4317928 +0.9125621 0.8643761 0.4317928 +0.9278974 0.8643761 0.4317928 +0.9429048 0.8643761 0.4317928 +0.9576028 0.8643761 0.4317928 +0.9720079 0.8643761 0.4317928 +0.9861357 0.8643761 0.4317928 +1 0.8643761 0.4317928 +0 0.880825 0.4317928 +0.1939468 0.880825 0.4317928 +0.2773041 0.880825 0.4317928 +0.3384659 0.880825 0.4317928 +0.3885728 0.880825 0.4317928 +0.4317928 0.880825 0.4317928 +0.470214 0.880825 0.4317928 +0.5050551 0.880825 0.4317928 +0.5370987 0.880825 0.4317928 +0.5668815 0.880825 0.4317928 +0.5947903 0.880825 0.4317928 +0.6211144 0.880825 0.4317928 +0.6460766 0.880825 0.4317928 +0.6698526 0.880825 0.4317928 +0.6925839 0.880825 0.4317928 +0.7143866 0.880825 0.4317928 +0.7353569 0.880825 0.4317928 +0.7555758 0.880825 0.4317928 +0.7751122 0.880825 0.4317928 +0.7940252 0.880825 0.4317928 +0.8123661 0.880825 0.4317928 +0.8301795 0.880825 0.4317928 +0.8475045 0.880825 0.4317928 +0.8643761 0.880825 0.4317928 +0.880825 0.880825 0.4317928 +0.8968787 0.880825 0.4317928 +0.9125621 0.880825 0.4317928 +0.9278974 0.880825 0.4317928 +0.9429048 0.880825 0.4317928 +0.9576028 0.880825 0.4317928 +0.9720079 0.880825 0.4317928 +0.9861357 0.880825 0.4317928 +1 0.880825 0.4317928 +0 0.8968787 0.4317928 +0.1939468 0.8968787 0.4317928 +0.2773041 0.8968787 0.4317928 +0.3384659 0.8968787 0.4317928 +0.3885728 0.8968787 0.4317928 +0.4317928 0.8968787 0.4317928 +0.470214 0.8968787 0.4317928 +0.5050551 0.8968787 0.4317928 +0.5370987 0.8968787 0.4317928 +0.5668815 0.8968787 0.4317928 +0.5947903 0.8968787 0.4317928 +0.6211144 0.8968787 0.4317928 +0.6460766 0.8968787 0.4317928 +0.6698526 0.8968787 0.4317928 +0.6925839 0.8968787 0.4317928 +0.7143866 0.8968787 0.4317928 +0.7353569 0.8968787 0.4317928 +0.7555758 0.8968787 0.4317928 +0.7751122 0.8968787 0.4317928 +0.7940252 0.8968787 0.4317928 +0.8123661 0.8968787 0.4317928 +0.8301795 0.8968787 0.4317928 +0.8475045 0.8968787 0.4317928 +0.8643761 0.8968787 0.4317928 +0.880825 0.8968787 0.4317928 +0.8968787 0.8968787 0.4317928 +0.9125621 0.8968787 0.4317928 +0.9278974 0.8968787 0.4317928 +0.9429048 0.8968787 0.4317928 +0.9576028 0.8968787 0.4317928 +0.9720079 0.8968787 0.4317928 +0.9861357 0.8968787 0.4317928 +1 0.8968787 0.4317928 +0 0.9125621 0.4317928 +0.1939468 0.9125621 0.4317928 +0.2773041 0.9125621 0.4317928 +0.3384659 0.9125621 0.4317928 +0.3885728 0.9125621 0.4317928 +0.4317928 0.9125621 0.4317928 +0.470214 0.9125621 0.4317928 +0.5050551 0.9125621 0.4317928 +0.5370987 0.9125621 0.4317928 +0.5668815 0.9125621 0.4317928 +0.5947903 0.9125621 0.4317928 +0.6211144 0.9125621 0.4317928 +0.6460766 0.9125621 0.4317928 +0.6698526 0.9125621 0.4317928 +0.6925839 0.9125621 0.4317928 +0.7143866 0.9125621 0.4317928 +0.7353569 0.9125621 0.4317928 +0.7555758 0.9125621 0.4317928 +0.7751122 0.9125621 0.4317928 +0.7940252 0.9125621 0.4317928 +0.8123661 0.9125621 0.4317928 +0.8301795 0.9125621 0.4317928 +0.8475045 0.9125621 0.4317928 +0.8643761 0.9125621 0.4317928 +0.880825 0.9125621 0.4317928 +0.8968787 0.9125621 0.4317928 +0.9125621 0.9125621 0.4317928 +0.9278974 0.9125621 0.4317928 +0.9429048 0.9125621 0.4317928 +0.9576028 0.9125621 0.4317928 +0.9720079 0.9125621 0.4317928 +0.9861357 0.9125621 0.4317928 +1 0.9125621 0.4317928 +0 0.9278974 0.4317928 +0.1939468 0.9278974 0.4317928 +0.2773041 0.9278974 0.4317928 +0.3384659 0.9278974 0.4317928 +0.3885728 0.9278974 0.4317928 +0.4317928 0.9278974 0.4317928 +0.470214 0.9278974 0.4317928 +0.5050551 0.9278974 0.4317928 +0.5370987 0.9278974 0.4317928 +0.5668815 0.9278974 0.4317928 +0.5947903 0.9278974 0.4317928 +0.6211144 0.9278974 0.4317928 +0.6460766 0.9278974 0.4317928 +0.6698526 0.9278974 0.4317928 +0.6925839 0.9278974 0.4317928 +0.7143866 0.9278974 0.4317928 +0.7353569 0.9278974 0.4317928 +0.7555758 0.9278974 0.4317928 +0.7751122 0.9278974 0.4317928 +0.7940252 0.9278974 0.4317928 +0.8123661 0.9278974 0.4317928 +0.8301795 0.9278974 0.4317928 +0.8475045 0.9278974 0.4317928 +0.8643761 0.9278974 0.4317928 +0.880825 0.9278974 0.4317928 +0.8968787 0.9278974 0.4317928 +0.9125621 0.9278974 0.4317928 +0.9278974 0.9278974 0.4317928 +0.9429048 0.9278974 0.4317928 +0.9576028 0.9278974 0.4317928 +0.9720079 0.9278974 0.4317928 +0.9861357 0.9278974 0.4317928 +1 0.9278974 0.4317928 +0 0.9429048 0.4317928 +0.1939468 0.9429048 0.4317928 +0.2773041 0.9429048 0.4317928 +0.3384659 0.9429048 0.4317928 +0.3885728 0.9429048 0.4317928 +0.4317928 0.9429048 0.4317928 +0.470214 0.9429048 0.4317928 +0.5050551 0.9429048 0.4317928 +0.5370987 0.9429048 0.4317928 +0.5668815 0.9429048 0.4317928 +0.5947903 0.9429048 0.4317928 +0.6211144 0.9429048 0.4317928 +0.6460766 0.9429048 0.4317928 +0.6698526 0.9429048 0.4317928 +0.6925839 0.9429048 0.4317928 +0.7143866 0.9429048 0.4317928 +0.7353569 0.9429048 0.4317928 +0.7555758 0.9429048 0.4317928 +0.7751122 0.9429048 0.4317928 +0.7940252 0.9429048 0.4317928 +0.8123661 0.9429048 0.4317928 +0.8301795 0.9429048 0.4317928 +0.8475045 0.9429048 0.4317928 +0.8643761 0.9429048 0.4317928 +0.880825 0.9429048 0.4317928 +0.8968787 0.9429048 0.4317928 +0.9125621 0.9429048 0.4317928 +0.9278974 0.9429048 0.4317928 +0.9429048 0.9429048 0.4317928 +0.9576028 0.9429048 0.4317928 +0.9720079 0.9429048 0.4317928 +0.9861357 0.9429048 0.4317928 +1 0.9429048 0.4317928 +0 0.9576028 0.4317928 +0.1939468 0.9576028 0.4317928 +0.2773041 0.9576028 0.4317928 +0.3384659 0.9576028 0.4317928 +0.3885728 0.9576028 0.4317928 +0.4317928 0.9576028 0.4317928 +0.470214 0.9576028 0.4317928 +0.5050551 0.9576028 0.4317928 +0.5370987 0.9576028 0.4317928 +0.5668815 0.9576028 0.4317928 +0.5947903 0.9576028 0.4317928 +0.6211144 0.9576028 0.4317928 +0.6460766 0.9576028 0.4317928 +0.6698526 0.9576028 0.4317928 +0.6925839 0.9576028 0.4317928 +0.7143866 0.9576028 0.4317928 +0.7353569 0.9576028 0.4317928 +0.7555758 0.9576028 0.4317928 +0.7751122 0.9576028 0.4317928 +0.7940252 0.9576028 0.4317928 +0.8123661 0.9576028 0.4317928 +0.8301795 0.9576028 0.4317928 +0.8475045 0.9576028 0.4317928 +0.8643761 0.9576028 0.4317928 +0.880825 0.9576028 0.4317928 +0.8968787 0.9576028 0.4317928 +0.9125621 0.9576028 0.4317928 +0.9278974 0.9576028 0.4317928 +0.9429048 0.9576028 0.4317928 +0.9576028 0.9576028 0.4317928 +0.9720079 0.9576028 0.4317928 +0.9861357 0.9576028 0.4317928 +1 0.9576028 0.4317928 +0 0.9720079 0.4317928 +0.1939468 0.9720079 0.4317928 +0.2773041 0.9720079 0.4317928 +0.3384659 0.9720079 0.4317928 +0.3885728 0.9720079 0.4317928 +0.4317928 0.9720079 0.4317928 +0.470214 0.9720079 0.4317928 +0.5050551 0.9720079 0.4317928 +0.5370987 0.9720079 0.4317928 +0.5668815 0.9720079 0.4317928 +0.5947903 0.9720079 0.4317928 +0.6211144 0.9720079 0.4317928 +0.6460766 0.9720079 0.4317928 +0.6698526 0.9720079 0.4317928 +0.6925839 0.9720079 0.4317928 +0.7143866 0.9720079 0.4317928 +0.7353569 0.9720079 0.4317928 +0.7555758 0.9720079 0.4317928 +0.7751122 0.9720079 0.4317928 +0.7940252 0.9720079 0.4317928 +0.8123661 0.9720079 0.4317928 +0.8301795 0.9720079 0.4317928 +0.8475045 0.9720079 0.4317928 +0.8643761 0.9720079 0.4317928 +0.880825 0.9720079 0.4317928 +0.8968787 0.9720079 0.4317928 +0.9125621 0.9720079 0.4317928 +0.9278974 0.9720079 0.4317928 +0.9429048 0.9720079 0.4317928 +0.9576028 0.9720079 0.4317928 +0.9720079 0.9720079 0.4317928 +0.9861357 0.9720079 0.4317928 +1 0.9720079 0.4317928 +0 0.9861357 0.4317928 +0.1939468 0.9861357 0.4317928 +0.2773041 0.9861357 0.4317928 +0.3384659 0.9861357 0.4317928 +0.3885728 0.9861357 0.4317928 +0.4317928 0.9861357 0.4317928 +0.470214 0.9861357 0.4317928 +0.5050551 0.9861357 0.4317928 +0.5370987 0.9861357 0.4317928 +0.5668815 0.9861357 0.4317928 +0.5947903 0.9861357 0.4317928 +0.6211144 0.9861357 0.4317928 +0.6460766 0.9861357 0.4317928 +0.6698526 0.9861357 0.4317928 +0.6925839 0.9861357 0.4317928 +0.7143866 0.9861357 0.4317928 +0.7353569 0.9861357 0.4317928 +0.7555758 0.9861357 0.4317928 +0.7751122 0.9861357 0.4317928 +0.7940252 0.9861357 0.4317928 +0.8123661 0.9861357 0.4317928 +0.8301795 0.9861357 0.4317928 +0.8475045 0.9861357 0.4317928 +0.8643761 0.9861357 0.4317928 +0.880825 0.9861357 0.4317928 +0.8968787 0.9861357 0.4317928 +0.9125621 0.9861357 0.4317928 +0.9278974 0.9861357 0.4317928 +0.9429048 0.9861357 0.4317928 +0.9576028 0.9861357 0.4317928 +0.9720079 0.9861357 0.4317928 +0.9861357 0.9861357 0.4317928 +1 0.9861357 0.4317928 +0 1 0.4317928 +0.1939468 1 0.4317928 +0.2773041 1 0.4317928 +0.3384659 1 0.4317928 +0.3885728 1 0.4317928 +0.4317928 1 0.4317928 +0.470214 1 0.4317928 +0.5050551 1 0.4317928 +0.5370987 1 0.4317928 +0.5668815 1 0.4317928 +0.5947903 1 0.4317928 +0.6211144 1 0.4317928 +0.6460766 1 0.4317928 +0.6698526 1 0.4317928 +0.6925839 1 0.4317928 +0.7143866 1 0.4317928 +0.7353569 1 0.4317928 +0.7555758 1 0.4317928 +0.7751122 1 0.4317928 +0.7940252 1 0.4317928 +0.8123661 1 0.4317928 +0.8301795 1 0.4317928 +0.8475045 1 0.4317928 +0.8643761 1 0.4317928 +0.880825 1 0.4317928 +0.8968787 1 0.4317928 +0.9125621 1 0.4317928 +0.9278974 1 0.4317928 +0.9429048 1 0.4317928 +0.9576028 1 0.4317928 +0.9720079 1 0.4317928 +0.9861357 1 0.4317928 +1 1 0.4317928 +0 0 0.470214 +0.1939468 0 0.470214 +0.2773041 0 0.470214 +0.3384659 0 0.470214 +0.3885728 0 0.470214 +0.4317928 0 0.470214 +0.470214 0 0.470214 +0.5050551 0 0.470214 +0.5370987 0 0.470214 +0.5668815 0 0.470214 +0.5947903 0 0.470214 +0.6211144 0 0.470214 +0.6460766 0 0.470214 +0.6698526 0 0.470214 +0.6925839 0 0.470214 +0.7143866 0 0.470214 +0.7353569 0 0.470214 +0.7555758 0 0.470214 +0.7751122 0 0.470214 +0.7940252 0 0.470214 +0.8123661 0 0.470214 +0.8301795 0 0.470214 +0.8475045 0 0.470214 +0.8643761 0 0.470214 +0.880825 0 0.470214 +0.8968787 0 0.470214 +0.9125621 0 0.470214 +0.9278974 0 0.470214 +0.9429048 0 0.470214 +0.9576028 0 0.470214 +0.9720079 0 0.470214 +0.9861357 0 0.470214 +1 0 0.470214 +0 0.1939468 0.470214 +0.1939468 0.1939468 0.470214 +0.2773041 0.1939468 0.470214 +0.3384659 0.1939468 0.470214 +0.3885728 0.1939468 0.470214 +0.4317928 0.1939468 0.470214 +0.470214 0.1939468 0.470214 +0.5050551 0.1939468 0.470214 +0.5370987 0.1939468 0.470214 +0.5668815 0.1939468 0.470214 +0.5947903 0.1939468 0.470214 +0.6211144 0.1939468 0.470214 +0.6460766 0.1939468 0.470214 +0.6698526 0.1939468 0.470214 +0.6925839 0.1939468 0.470214 +0.7143866 0.1939468 0.470214 +0.7353569 0.1939468 0.470214 +0.7555758 0.1939468 0.470214 +0.7751122 0.1939468 0.470214 +0.7940252 0.1939468 0.470214 +0.8123661 0.1939468 0.470214 +0.8301795 0.1939468 0.470214 +0.8475045 0.1939468 0.470214 +0.8643761 0.1939468 0.470214 +0.880825 0.1939468 0.470214 +0.8968787 0.1939468 0.470214 +0.9125621 0.1939468 0.470214 +0.9278974 0.1939468 0.470214 +0.9429048 0.1939468 0.470214 +0.9576028 0.1939468 0.470214 +0.9720079 0.1939468 0.470214 +0.9861357 0.1939468 0.470214 +1 0.1939468 0.470214 +0 0.2773041 0.470214 +0.1939468 0.2773041 0.470214 +0.2773041 0.2773041 0.470214 +0.3384659 0.2773041 0.470214 +0.3885728 0.2773041 0.470214 +0.4317928 0.2773041 0.470214 +0.470214 0.2773041 0.470214 +0.5050551 0.2773041 0.470214 +0.5370987 0.2773041 0.470214 +0.5668815 0.2773041 0.470214 +0.5947903 0.2773041 0.470214 +0.6211144 0.2773041 0.470214 +0.6460766 0.2773041 0.470214 +0.6698526 0.2773041 0.470214 +0.6925839 0.2773041 0.470214 +0.7143866 0.2773041 0.470214 +0.7353569 0.2773041 0.470214 +0.7555758 0.2773041 0.470214 +0.7751122 0.2773041 0.470214 +0.7940252 0.2773041 0.470214 +0.8123661 0.2773041 0.470214 +0.8301795 0.2773041 0.470214 +0.8475045 0.2773041 0.470214 +0.8643761 0.2773041 0.470214 +0.880825 0.2773041 0.470214 +0.8968787 0.2773041 0.470214 +0.9125621 0.2773041 0.470214 +0.9278974 0.2773041 0.470214 +0.9429048 0.2773041 0.470214 +0.9576028 0.2773041 0.470214 +0.9720079 0.2773041 0.470214 +0.9861357 0.2773041 0.470214 +1 0.2773041 0.470214 +0 0.3384659 0.470214 +0.1939468 0.3384659 0.470214 +0.2773041 0.3384659 0.470214 +0.3384659 0.3384659 0.470214 +0.3885728 0.3384659 0.470214 +0.4317928 0.3384659 0.470214 +0.470214 0.3384659 0.470214 +0.5050551 0.3384659 0.470214 +0.5370987 0.3384659 0.470214 +0.5668815 0.3384659 0.470214 +0.5947903 0.3384659 0.470214 +0.6211144 0.3384659 0.470214 +0.6460766 0.3384659 0.470214 +0.6698526 0.3384659 0.470214 +0.6925839 0.3384659 0.470214 +0.7143866 0.3384659 0.470214 +0.7353569 0.3384659 0.470214 +0.7555758 0.3384659 0.470214 +0.7751122 0.3384659 0.470214 +0.7940252 0.3384659 0.470214 +0.8123661 0.3384659 0.470214 +0.8301795 0.3384659 0.470214 +0.8475045 0.3384659 0.470214 +0.8643761 0.3384659 0.470214 +0.880825 0.3384659 0.470214 +0.8968787 0.3384659 0.470214 +0.9125621 0.3384659 0.470214 +0.9278974 0.3384659 0.470214 +0.9429048 0.3384659 0.470214 +0.9576028 0.3384659 0.470214 +0.9720079 0.3384659 0.470214 +0.9861357 0.3384659 0.470214 +1 0.3384659 0.470214 +0 0.3885728 0.470214 +0.1939468 0.3885728 0.470214 +0.2773041 0.3885728 0.470214 +0.3384659 0.3885728 0.470214 +0.3885728 0.3885728 0.470214 +0.4317928 0.3885728 0.470214 +0.470214 0.3885728 0.470214 +0.5050551 0.3885728 0.470214 +0.5370987 0.3885728 0.470214 +0.5668815 0.3885728 0.470214 +0.5947903 0.3885728 0.470214 +0.6211144 0.3885728 0.470214 +0.6460766 0.3885728 0.470214 +0.6698526 0.3885728 0.470214 +0.6925839 0.3885728 0.470214 +0.7143866 0.3885728 0.470214 +0.7353569 0.3885728 0.470214 +0.7555758 0.3885728 0.470214 +0.7751122 0.3885728 0.470214 +0.7940252 0.3885728 0.470214 +0.8123661 0.3885728 0.470214 +0.8301795 0.3885728 0.470214 +0.8475045 0.3885728 0.470214 +0.8643761 0.3885728 0.470214 +0.880825 0.3885728 0.470214 +0.8968787 0.3885728 0.470214 +0.9125621 0.3885728 0.470214 +0.9278974 0.3885728 0.470214 +0.9429048 0.3885728 0.470214 +0.9576028 0.3885728 0.470214 +0.9720079 0.3885728 0.470214 +0.9861357 0.3885728 0.470214 +1 0.3885728 0.470214 +0 0.4317928 0.470214 +0.1939468 0.4317928 0.470214 +0.2773041 0.4317928 0.470214 +0.3384659 0.4317928 0.470214 +0.3885728 0.4317928 0.470214 +0.4317928 0.4317928 0.470214 +0.470214 0.4317928 0.470214 +0.5050551 0.4317928 0.470214 +0.5370987 0.4317928 0.470214 +0.5668815 0.4317928 0.470214 +0.5947903 0.4317928 0.470214 +0.6211144 0.4317928 0.470214 +0.6460766 0.4317928 0.470214 +0.6698526 0.4317928 0.470214 +0.6925839 0.4317928 0.470214 +0.7143866 0.4317928 0.470214 +0.7353569 0.4317928 0.470214 +0.7555758 0.4317928 0.470214 +0.7751122 0.4317928 0.470214 +0.7940252 0.4317928 0.470214 +0.8123661 0.4317928 0.470214 +0.8301795 0.4317928 0.470214 +0.8475045 0.4317928 0.470214 +0.8643761 0.4317928 0.470214 +0.880825 0.4317928 0.470214 +0.8968787 0.4317928 0.470214 +0.9125621 0.4317928 0.470214 +0.9278974 0.4317928 0.470214 +0.9429048 0.4317928 0.470214 +0.9576028 0.4317928 0.470214 +0.9720079 0.4317928 0.470214 +0.9861357 0.4317928 0.470214 +1 0.4317928 0.470214 +0 0.470214 0.470214 +0.1939468 0.470214 0.470214 +0.2773041 0.470214 0.470214 +0.3384659 0.470214 0.470214 +0.3885728 0.470214 0.470214 +0.4317928 0.470214 0.470214 +0.470214 0.470214 0.470214 +0.5050551 0.470214 0.470214 +0.5370987 0.470214 0.470214 +0.5668815 0.470214 0.470214 +0.5947903 0.470214 0.470214 +0.6211144 0.470214 0.470214 +0.6460766 0.470214 0.470214 +0.6698526 0.470214 0.470214 +0.6925839 0.470214 0.470214 +0.7143866 0.470214 0.470214 +0.7353569 0.470214 0.470214 +0.7555758 0.470214 0.470214 +0.7751122 0.470214 0.470214 +0.7940252 0.470214 0.470214 +0.8123661 0.470214 0.470214 +0.8301795 0.470214 0.470214 +0.8475045 0.470214 0.470214 +0.8643761 0.470214 0.470214 +0.880825 0.470214 0.470214 +0.8968787 0.470214 0.470214 +0.9125621 0.470214 0.470214 +0.9278974 0.470214 0.470214 +0.9429048 0.470214 0.470214 +0.9576028 0.470214 0.470214 +0.9720079 0.470214 0.470214 +0.9861357 0.470214 0.470214 +1 0.470214 0.470214 +0 0.5050551 0.470214 +0.1939468 0.5050551 0.470214 +0.2773041 0.5050551 0.470214 +0.3384659 0.5050551 0.470214 +0.3885728 0.5050551 0.470214 +0.4317928 0.5050551 0.470214 +0.470214 0.5050551 0.470214 +0.5050551 0.5050551 0.470214 +0.5370987 0.5050551 0.470214 +0.5668815 0.5050551 0.470214 +0.5947903 0.5050551 0.470214 +0.6211144 0.5050551 0.470214 +0.6460766 0.5050551 0.470214 +0.6698526 0.5050551 0.470214 +0.6925839 0.5050551 0.470214 +0.7143866 0.5050551 0.470214 +0.7353569 0.5050551 0.470214 +0.7555758 0.5050551 0.470214 +0.7751122 0.5050551 0.470214 +0.7940252 0.5050551 0.470214 +0.8123661 0.5050551 0.470214 +0.8301795 0.5050551 0.470214 +0.8475045 0.5050551 0.470214 +0.8643761 0.5050551 0.470214 +0.880825 0.5050551 0.470214 +0.8968787 0.5050551 0.470214 +0.9125621 0.5050551 0.470214 +0.9278974 0.5050551 0.470214 +0.9429048 0.5050551 0.470214 +0.9576028 0.5050551 0.470214 +0.9720079 0.5050551 0.470214 +0.9861357 0.5050551 0.470214 +1 0.5050551 0.470214 +0 0.5370987 0.470214 +0.1939468 0.5370987 0.470214 +0.2773041 0.5370987 0.470214 +0.3384659 0.5370987 0.470214 +0.3885728 0.5370987 0.470214 +0.4317928 0.5370987 0.470214 +0.470214 0.5370987 0.470214 +0.5050551 0.5370987 0.470214 +0.5370987 0.5370987 0.470214 +0.5668815 0.5370987 0.470214 +0.5947903 0.5370987 0.470214 +0.6211144 0.5370987 0.470214 +0.6460766 0.5370987 0.470214 +0.6698526 0.5370987 0.470214 +0.6925839 0.5370987 0.470214 +0.7143866 0.5370987 0.470214 +0.7353569 0.5370987 0.470214 +0.7555758 0.5370987 0.470214 +0.7751122 0.5370987 0.470214 +0.7940252 0.5370987 0.470214 +0.8123661 0.5370987 0.470214 +0.8301795 0.5370987 0.470214 +0.8475045 0.5370987 0.470214 +0.8643761 0.5370987 0.470214 +0.880825 0.5370987 0.470214 +0.8968787 0.5370987 0.470214 +0.9125621 0.5370987 0.470214 +0.9278974 0.5370987 0.470214 +0.9429048 0.5370987 0.470214 +0.9576028 0.5370987 0.470214 +0.9720079 0.5370987 0.470214 +0.9861357 0.5370987 0.470214 +1 0.5370987 0.470214 +0 0.5668815 0.470214 +0.1939468 0.5668815 0.470214 +0.2773041 0.5668815 0.470214 +0.3384659 0.5668815 0.470214 +0.3885728 0.5668815 0.470214 +0.4317928 0.5668815 0.470214 +0.470214 0.5668815 0.470214 +0.5050551 0.5668815 0.470214 +0.5370987 0.5668815 0.470214 +0.5668815 0.5668815 0.470214 +0.5947903 0.5668815 0.470214 +0.6211144 0.5668815 0.470214 +0.6460766 0.5668815 0.470214 +0.6698526 0.5668815 0.470214 +0.6925839 0.5668815 0.470214 +0.7143866 0.5668815 0.470214 +0.7353569 0.5668815 0.470214 +0.7555758 0.5668815 0.470214 +0.7751122 0.5668815 0.470214 +0.7940252 0.5668815 0.470214 +0.8123661 0.5668815 0.470214 +0.8301795 0.5668815 0.470214 +0.8475045 0.5668815 0.470214 +0.8643761 0.5668815 0.470214 +0.880825 0.5668815 0.470214 +0.8968787 0.5668815 0.470214 +0.9125621 0.5668815 0.470214 +0.9278974 0.5668815 0.470214 +0.9429048 0.5668815 0.470214 +0.9576028 0.5668815 0.470214 +0.9720079 0.5668815 0.470214 +0.9861357 0.5668815 0.470214 +1 0.5668815 0.470214 +0 0.5947903 0.470214 +0.1939468 0.5947903 0.470214 +0.2773041 0.5947903 0.470214 +0.3384659 0.5947903 0.470214 +0.3885728 0.5947903 0.470214 +0.4317928 0.5947903 0.470214 +0.470214 0.5947903 0.470214 +0.5050551 0.5947903 0.470214 +0.5370987 0.5947903 0.470214 +0.5668815 0.5947903 0.470214 +0.5947903 0.5947903 0.470214 +0.6211144 0.5947903 0.470214 +0.6460766 0.5947903 0.470214 +0.6698526 0.5947903 0.470214 +0.6925839 0.5947903 0.470214 +0.7143866 0.5947903 0.470214 +0.7353569 0.5947903 0.470214 +0.7555758 0.5947903 0.470214 +0.7751122 0.5947903 0.470214 +0.7940252 0.5947903 0.470214 +0.8123661 0.5947903 0.470214 +0.8301795 0.5947903 0.470214 +0.8475045 0.5947903 0.470214 +0.8643761 0.5947903 0.470214 +0.880825 0.5947903 0.470214 +0.8968787 0.5947903 0.470214 +0.9125621 0.5947903 0.470214 +0.9278974 0.5947903 0.470214 +0.9429048 0.5947903 0.470214 +0.9576028 0.5947903 0.470214 +0.9720079 0.5947903 0.470214 +0.9861357 0.5947903 0.470214 +1 0.5947903 0.470214 +0 0.6211144 0.470214 +0.1939468 0.6211144 0.470214 +0.2773041 0.6211144 0.470214 +0.3384659 0.6211144 0.470214 +0.3885728 0.6211144 0.470214 +0.4317928 0.6211144 0.470214 +0.470214 0.6211144 0.470214 +0.5050551 0.6211144 0.470214 +0.5370987 0.6211144 0.470214 +0.5668815 0.6211144 0.470214 +0.5947903 0.6211144 0.470214 +0.6211144 0.6211144 0.470214 +0.6460766 0.6211144 0.470214 +0.6698526 0.6211144 0.470214 +0.6925839 0.6211144 0.470214 +0.7143866 0.6211144 0.470214 +0.7353569 0.6211144 0.470214 +0.7555758 0.6211144 0.470214 +0.7751122 0.6211144 0.470214 +0.7940252 0.6211144 0.470214 +0.8123661 0.6211144 0.470214 +0.8301795 0.6211144 0.470214 +0.8475045 0.6211144 0.470214 +0.8643761 0.6211144 0.470214 +0.880825 0.6211144 0.470214 +0.8968787 0.6211144 0.470214 +0.9125621 0.6211144 0.470214 +0.9278974 0.6211144 0.470214 +0.9429048 0.6211144 0.470214 +0.9576028 0.6211144 0.470214 +0.9720079 0.6211144 0.470214 +0.9861357 0.6211144 0.470214 +1 0.6211144 0.470214 +0 0.6460766 0.470214 +0.1939468 0.6460766 0.470214 +0.2773041 0.6460766 0.470214 +0.3384659 0.6460766 0.470214 +0.3885728 0.6460766 0.470214 +0.4317928 0.6460766 0.470214 +0.470214 0.6460766 0.470214 +0.5050551 0.6460766 0.470214 +0.5370987 0.6460766 0.470214 +0.5668815 0.6460766 0.470214 +0.5947903 0.6460766 0.470214 +0.6211144 0.6460766 0.470214 +0.6460766 0.6460766 0.470214 +0.6698526 0.6460766 0.470214 +0.6925839 0.6460766 0.470214 +0.7143866 0.6460766 0.470214 +0.7353569 0.6460766 0.470214 +0.7555758 0.6460766 0.470214 +0.7751122 0.6460766 0.470214 +0.7940252 0.6460766 0.470214 +0.8123661 0.6460766 0.470214 +0.8301795 0.6460766 0.470214 +0.8475045 0.6460766 0.470214 +0.8643761 0.6460766 0.470214 +0.880825 0.6460766 0.470214 +0.8968787 0.6460766 0.470214 +0.9125621 0.6460766 0.470214 +0.9278974 0.6460766 0.470214 +0.9429048 0.6460766 0.470214 +0.9576028 0.6460766 0.470214 +0.9720079 0.6460766 0.470214 +0.9861357 0.6460766 0.470214 +1 0.6460766 0.470214 +0 0.6698526 0.470214 +0.1939468 0.6698526 0.470214 +0.2773041 0.6698526 0.470214 +0.3384659 0.6698526 0.470214 +0.3885728 0.6698526 0.470214 +0.4317928 0.6698526 0.470214 +0.470214 0.6698526 0.470214 +0.5050551 0.6698526 0.470214 +0.5370987 0.6698526 0.470214 +0.5668815 0.6698526 0.470214 +0.5947903 0.6698526 0.470214 +0.6211144 0.6698526 0.470214 +0.6460766 0.6698526 0.470214 +0.6698526 0.6698526 0.470214 +0.6925839 0.6698526 0.470214 +0.7143866 0.6698526 0.470214 +0.7353569 0.6698526 0.470214 +0.7555758 0.6698526 0.470214 +0.7751122 0.6698526 0.470214 +0.7940252 0.6698526 0.470214 +0.8123661 0.6698526 0.470214 +0.8301795 0.6698526 0.470214 +0.8475045 0.6698526 0.470214 +0.8643761 0.6698526 0.470214 +0.880825 0.6698526 0.470214 +0.8968787 0.6698526 0.470214 +0.9125621 0.6698526 0.470214 +0.9278974 0.6698526 0.470214 +0.9429048 0.6698526 0.470214 +0.9576028 0.6698526 0.470214 +0.9720079 0.6698526 0.470214 +0.9861357 0.6698526 0.470214 +1 0.6698526 0.470214 +0 0.6925839 0.470214 +0.1939468 0.6925839 0.470214 +0.2773041 0.6925839 0.470214 +0.3384659 0.6925839 0.470214 +0.3885728 0.6925839 0.470214 +0.4317928 0.6925839 0.470214 +0.470214 0.6925839 0.470214 +0.5050551 0.6925839 0.470214 +0.5370987 0.6925839 0.470214 +0.5668815 0.6925839 0.470214 +0.5947903 0.6925839 0.470214 +0.6211144 0.6925839 0.470214 +0.6460766 0.6925839 0.470214 +0.6698526 0.6925839 0.470214 +0.6925839 0.6925839 0.470214 +0.7143866 0.6925839 0.470214 +0.7353569 0.6925839 0.470214 +0.7555758 0.6925839 0.470214 +0.7751122 0.6925839 0.470214 +0.7940252 0.6925839 0.470214 +0.8123661 0.6925839 0.470214 +0.8301795 0.6925839 0.470214 +0.8475045 0.6925839 0.470214 +0.8643761 0.6925839 0.470214 +0.880825 0.6925839 0.470214 +0.8968787 0.6925839 0.470214 +0.9125621 0.6925839 0.470214 +0.9278974 0.6925839 0.470214 +0.9429048 0.6925839 0.470214 +0.9576028 0.6925839 0.470214 +0.9720079 0.6925839 0.470214 +0.9861357 0.6925839 0.470214 +1 0.6925839 0.470214 +0 0.7143866 0.470214 +0.1939468 0.7143866 0.470214 +0.2773041 0.7143866 0.470214 +0.3384659 0.7143866 0.470214 +0.3885728 0.7143866 0.470214 +0.4317928 0.7143866 0.470214 +0.470214 0.7143866 0.470214 +0.5050551 0.7143866 0.470214 +0.5370987 0.7143866 0.470214 +0.5668815 0.7143866 0.470214 +0.5947903 0.7143866 0.470214 +0.6211144 0.7143866 0.470214 +0.6460766 0.7143866 0.470214 +0.6698526 0.7143866 0.470214 +0.6925839 0.7143866 0.470214 +0.7143866 0.7143866 0.470214 +0.7353569 0.7143866 0.470214 +0.7555758 0.7143866 0.470214 +0.7751122 0.7143866 0.470214 +0.7940252 0.7143866 0.470214 +0.8123661 0.7143866 0.470214 +0.8301795 0.7143866 0.470214 +0.8475045 0.7143866 0.470214 +0.8643761 0.7143866 0.470214 +0.880825 0.7143866 0.470214 +0.8968787 0.7143866 0.470214 +0.9125621 0.7143866 0.470214 +0.9278974 0.7143866 0.470214 +0.9429048 0.7143866 0.470214 +0.9576028 0.7143866 0.470214 +0.9720079 0.7143866 0.470214 +0.9861357 0.7143866 0.470214 +1 0.7143866 0.470214 +0 0.7353569 0.470214 +0.1939468 0.7353569 0.470214 +0.2773041 0.7353569 0.470214 +0.3384659 0.7353569 0.470214 +0.3885728 0.7353569 0.470214 +0.4317928 0.7353569 0.470214 +0.470214 0.7353569 0.470214 +0.5050551 0.7353569 0.470214 +0.5370987 0.7353569 0.470214 +0.5668815 0.7353569 0.470214 +0.5947903 0.7353569 0.470214 +0.6211144 0.7353569 0.470214 +0.6460766 0.7353569 0.470214 +0.6698526 0.7353569 0.470214 +0.6925839 0.7353569 0.470214 +0.7143866 0.7353569 0.470214 +0.7353569 0.7353569 0.470214 +0.7555758 0.7353569 0.470214 +0.7751122 0.7353569 0.470214 +0.7940252 0.7353569 0.470214 +0.8123661 0.7353569 0.470214 +0.8301795 0.7353569 0.470214 +0.8475045 0.7353569 0.470214 +0.8643761 0.7353569 0.470214 +0.880825 0.7353569 0.470214 +0.8968787 0.7353569 0.470214 +0.9125621 0.7353569 0.470214 +0.9278974 0.7353569 0.470214 +0.9429048 0.7353569 0.470214 +0.9576028 0.7353569 0.470214 +0.9720079 0.7353569 0.470214 +0.9861357 0.7353569 0.470214 +1 0.7353569 0.470214 +0 0.7555758 0.470214 +0.1939468 0.7555758 0.470214 +0.2773041 0.7555758 0.470214 +0.3384659 0.7555758 0.470214 +0.3885728 0.7555758 0.470214 +0.4317928 0.7555758 0.470214 +0.470214 0.7555758 0.470214 +0.5050551 0.7555758 0.470214 +0.5370987 0.7555758 0.470214 +0.5668815 0.7555758 0.470214 +0.5947903 0.7555758 0.470214 +0.6211144 0.7555758 0.470214 +0.6460766 0.7555758 0.470214 +0.6698526 0.7555758 0.470214 +0.6925839 0.7555758 0.470214 +0.7143866 0.7555758 0.470214 +0.7353569 0.7555758 0.470214 +0.7555758 0.7555758 0.470214 +0.7751122 0.7555758 0.470214 +0.7940252 0.7555758 0.470214 +0.8123661 0.7555758 0.470214 +0.8301795 0.7555758 0.470214 +0.8475045 0.7555758 0.470214 +0.8643761 0.7555758 0.470214 +0.880825 0.7555758 0.470214 +0.8968787 0.7555758 0.470214 +0.9125621 0.7555758 0.470214 +0.9278974 0.7555758 0.470214 +0.9429048 0.7555758 0.470214 +0.9576028 0.7555758 0.470214 +0.9720079 0.7555758 0.470214 +0.9861357 0.7555758 0.470214 +1 0.7555758 0.470214 +0 0.7751122 0.470214 +0.1939468 0.7751122 0.470214 +0.2773041 0.7751122 0.470214 +0.3384659 0.7751122 0.470214 +0.3885728 0.7751122 0.470214 +0.4317928 0.7751122 0.470214 +0.470214 0.7751122 0.470214 +0.5050551 0.7751122 0.470214 +0.5370987 0.7751122 0.470214 +0.5668815 0.7751122 0.470214 +0.5947903 0.7751122 0.470214 +0.6211144 0.7751122 0.470214 +0.6460766 0.7751122 0.470214 +0.6698526 0.7751122 0.470214 +0.6925839 0.7751122 0.470214 +0.7143866 0.7751122 0.470214 +0.7353569 0.7751122 0.470214 +0.7555758 0.7751122 0.470214 +0.7751122 0.7751122 0.470214 +0.7940252 0.7751122 0.470214 +0.8123661 0.7751122 0.470214 +0.8301795 0.7751122 0.470214 +0.8475045 0.7751122 0.470214 +0.8643761 0.7751122 0.470214 +0.880825 0.7751122 0.470214 +0.8968787 0.7751122 0.470214 +0.9125621 0.7751122 0.470214 +0.9278974 0.7751122 0.470214 +0.9429048 0.7751122 0.470214 +0.9576028 0.7751122 0.470214 +0.9720079 0.7751122 0.470214 +0.9861357 0.7751122 0.470214 +1 0.7751122 0.470214 +0 0.7940252 0.470214 +0.1939468 0.7940252 0.470214 +0.2773041 0.7940252 0.470214 +0.3384659 0.7940252 0.470214 +0.3885728 0.7940252 0.470214 +0.4317928 0.7940252 0.470214 +0.470214 0.7940252 0.470214 +0.5050551 0.7940252 0.470214 +0.5370987 0.7940252 0.470214 +0.5668815 0.7940252 0.470214 +0.5947903 0.7940252 0.470214 +0.6211144 0.7940252 0.470214 +0.6460766 0.7940252 0.470214 +0.6698526 0.7940252 0.470214 +0.6925839 0.7940252 0.470214 +0.7143866 0.7940252 0.470214 +0.7353569 0.7940252 0.470214 +0.7555758 0.7940252 0.470214 +0.7751122 0.7940252 0.470214 +0.7940252 0.7940252 0.470214 +0.8123661 0.7940252 0.470214 +0.8301795 0.7940252 0.470214 +0.8475045 0.7940252 0.470214 +0.8643761 0.7940252 0.470214 +0.880825 0.7940252 0.470214 +0.8968787 0.7940252 0.470214 +0.9125621 0.7940252 0.470214 +0.9278974 0.7940252 0.470214 +0.9429048 0.7940252 0.470214 +0.9576028 0.7940252 0.470214 +0.9720079 0.7940252 0.470214 +0.9861357 0.7940252 0.470214 +1 0.7940252 0.470214 +0 0.8123661 0.470214 +0.1939468 0.8123661 0.470214 +0.2773041 0.8123661 0.470214 +0.3384659 0.8123661 0.470214 +0.3885728 0.8123661 0.470214 +0.4317928 0.8123661 0.470214 +0.470214 0.8123661 0.470214 +0.5050551 0.8123661 0.470214 +0.5370987 0.8123661 0.470214 +0.5668815 0.8123661 0.470214 +0.5947903 0.8123661 0.470214 +0.6211144 0.8123661 0.470214 +0.6460766 0.8123661 0.470214 +0.6698526 0.8123661 0.470214 +0.6925839 0.8123661 0.470214 +0.7143866 0.8123661 0.470214 +0.7353569 0.8123661 0.470214 +0.7555758 0.8123661 0.470214 +0.7751122 0.8123661 0.470214 +0.7940252 0.8123661 0.470214 +0.8123661 0.8123661 0.470214 +0.8301795 0.8123661 0.470214 +0.8475045 0.8123661 0.470214 +0.8643761 0.8123661 0.470214 +0.880825 0.8123661 0.470214 +0.8968787 0.8123661 0.470214 +0.9125621 0.8123661 0.470214 +0.9278974 0.8123661 0.470214 +0.9429048 0.8123661 0.470214 +0.9576028 0.8123661 0.470214 +0.9720079 0.8123661 0.470214 +0.9861357 0.8123661 0.470214 +1 0.8123661 0.470214 +0 0.8301795 0.470214 +0.1939468 0.8301795 0.470214 +0.2773041 0.8301795 0.470214 +0.3384659 0.8301795 0.470214 +0.3885728 0.8301795 0.470214 +0.4317928 0.8301795 0.470214 +0.470214 0.8301795 0.470214 +0.5050551 0.8301795 0.470214 +0.5370987 0.8301795 0.470214 +0.5668815 0.8301795 0.470214 +0.5947903 0.8301795 0.470214 +0.6211144 0.8301795 0.470214 +0.6460766 0.8301795 0.470214 +0.6698526 0.8301795 0.470214 +0.6925839 0.8301795 0.470214 +0.7143866 0.8301795 0.470214 +0.7353569 0.8301795 0.470214 +0.7555758 0.8301795 0.470214 +0.7751122 0.8301795 0.470214 +0.7940252 0.8301795 0.470214 +0.8123661 0.8301795 0.470214 +0.8301795 0.8301795 0.470214 +0.8475045 0.8301795 0.470214 +0.8643761 0.8301795 0.470214 +0.880825 0.8301795 0.470214 +0.8968787 0.8301795 0.470214 +0.9125621 0.8301795 0.470214 +0.9278974 0.8301795 0.470214 +0.9429048 0.8301795 0.470214 +0.9576028 0.8301795 0.470214 +0.9720079 0.8301795 0.470214 +0.9861357 0.8301795 0.470214 +1 0.8301795 0.470214 +0 0.8475045 0.470214 +0.1939468 0.8475045 0.470214 +0.2773041 0.8475045 0.470214 +0.3384659 0.8475045 0.470214 +0.3885728 0.8475045 0.470214 +0.4317928 0.8475045 0.470214 +0.470214 0.8475045 0.470214 +0.5050551 0.8475045 0.470214 +0.5370987 0.8475045 0.470214 +0.5668815 0.8475045 0.470214 +0.5947903 0.8475045 0.470214 +0.6211144 0.8475045 0.470214 +0.6460766 0.8475045 0.470214 +0.6698526 0.8475045 0.470214 +0.6925839 0.8475045 0.470214 +0.7143866 0.8475045 0.470214 +0.7353569 0.8475045 0.470214 +0.7555758 0.8475045 0.470214 +0.7751122 0.8475045 0.470214 +0.7940252 0.8475045 0.470214 +0.8123661 0.8475045 0.470214 +0.8301795 0.8475045 0.470214 +0.8475045 0.8475045 0.470214 +0.8643761 0.8475045 0.470214 +0.880825 0.8475045 0.470214 +0.8968787 0.8475045 0.470214 +0.9125621 0.8475045 0.470214 +0.9278974 0.8475045 0.470214 +0.9429048 0.8475045 0.470214 +0.9576028 0.8475045 0.470214 +0.9720079 0.8475045 0.470214 +0.9861357 0.8475045 0.470214 +1 0.8475045 0.470214 +0 0.8643761 0.470214 +0.1939468 0.8643761 0.470214 +0.2773041 0.8643761 0.470214 +0.3384659 0.8643761 0.470214 +0.3885728 0.8643761 0.470214 +0.4317928 0.8643761 0.470214 +0.470214 0.8643761 0.470214 +0.5050551 0.8643761 0.470214 +0.5370987 0.8643761 0.470214 +0.5668815 0.8643761 0.470214 +0.5947903 0.8643761 0.470214 +0.6211144 0.8643761 0.470214 +0.6460766 0.8643761 0.470214 +0.6698526 0.8643761 0.470214 +0.6925839 0.8643761 0.470214 +0.7143866 0.8643761 0.470214 +0.7353569 0.8643761 0.470214 +0.7555758 0.8643761 0.470214 +0.7751122 0.8643761 0.470214 +0.7940252 0.8643761 0.470214 +0.8123661 0.8643761 0.470214 +0.8301795 0.8643761 0.470214 +0.8475045 0.8643761 0.470214 +0.8643761 0.8643761 0.470214 +0.880825 0.8643761 0.470214 +0.8968787 0.8643761 0.470214 +0.9125621 0.8643761 0.470214 +0.9278974 0.8643761 0.470214 +0.9429048 0.8643761 0.470214 +0.9576028 0.8643761 0.470214 +0.9720079 0.8643761 0.470214 +0.9861357 0.8643761 0.470214 +1 0.8643761 0.470214 +0 0.880825 0.470214 +0.1939468 0.880825 0.470214 +0.2773041 0.880825 0.470214 +0.3384659 0.880825 0.470214 +0.3885728 0.880825 0.470214 +0.4317928 0.880825 0.470214 +0.470214 0.880825 0.470214 +0.5050551 0.880825 0.470214 +0.5370987 0.880825 0.470214 +0.5668815 0.880825 0.470214 +0.5947903 0.880825 0.470214 +0.6211144 0.880825 0.470214 +0.6460766 0.880825 0.470214 +0.6698526 0.880825 0.470214 +0.6925839 0.880825 0.470214 +0.7143866 0.880825 0.470214 +0.7353569 0.880825 0.470214 +0.7555758 0.880825 0.470214 +0.7751122 0.880825 0.470214 +0.7940252 0.880825 0.470214 +0.8123661 0.880825 0.470214 +0.8301795 0.880825 0.470214 +0.8475045 0.880825 0.470214 +0.8643761 0.880825 0.470214 +0.880825 0.880825 0.470214 +0.8968787 0.880825 0.470214 +0.9125621 0.880825 0.470214 +0.9278974 0.880825 0.470214 +0.9429048 0.880825 0.470214 +0.9576028 0.880825 0.470214 +0.9720079 0.880825 0.470214 +0.9861357 0.880825 0.470214 +1 0.880825 0.470214 +0 0.8968787 0.470214 +0.1939468 0.8968787 0.470214 +0.2773041 0.8968787 0.470214 +0.3384659 0.8968787 0.470214 +0.3885728 0.8968787 0.470214 +0.4317928 0.8968787 0.470214 +0.470214 0.8968787 0.470214 +0.5050551 0.8968787 0.470214 +0.5370987 0.8968787 0.470214 +0.5668815 0.8968787 0.470214 +0.5947903 0.8968787 0.470214 +0.6211144 0.8968787 0.470214 +0.6460766 0.8968787 0.470214 +0.6698526 0.8968787 0.470214 +0.6925839 0.8968787 0.470214 +0.7143866 0.8968787 0.470214 +0.7353569 0.8968787 0.470214 +0.7555758 0.8968787 0.470214 +0.7751122 0.8968787 0.470214 +0.7940252 0.8968787 0.470214 +0.8123661 0.8968787 0.470214 +0.8301795 0.8968787 0.470214 +0.8475045 0.8968787 0.470214 +0.8643761 0.8968787 0.470214 +0.880825 0.8968787 0.470214 +0.8968787 0.8968787 0.470214 +0.9125621 0.8968787 0.470214 +0.9278974 0.8968787 0.470214 +0.9429048 0.8968787 0.470214 +0.9576028 0.8968787 0.470214 +0.9720079 0.8968787 0.470214 +0.9861357 0.8968787 0.470214 +1 0.8968787 0.470214 +0 0.9125621 0.470214 +0.1939468 0.9125621 0.470214 +0.2773041 0.9125621 0.470214 +0.3384659 0.9125621 0.470214 +0.3885728 0.9125621 0.470214 +0.4317928 0.9125621 0.470214 +0.470214 0.9125621 0.470214 +0.5050551 0.9125621 0.470214 +0.5370987 0.9125621 0.470214 +0.5668815 0.9125621 0.470214 +0.5947903 0.9125621 0.470214 +0.6211144 0.9125621 0.470214 +0.6460766 0.9125621 0.470214 +0.6698526 0.9125621 0.470214 +0.6925839 0.9125621 0.470214 +0.7143866 0.9125621 0.470214 +0.7353569 0.9125621 0.470214 +0.7555758 0.9125621 0.470214 +0.7751122 0.9125621 0.470214 +0.7940252 0.9125621 0.470214 +0.8123661 0.9125621 0.470214 +0.8301795 0.9125621 0.470214 +0.8475045 0.9125621 0.470214 +0.8643761 0.9125621 0.470214 +0.880825 0.9125621 0.470214 +0.8968787 0.9125621 0.470214 +0.9125621 0.9125621 0.470214 +0.9278974 0.9125621 0.470214 +0.9429048 0.9125621 0.470214 +0.9576028 0.9125621 0.470214 +0.9720079 0.9125621 0.470214 +0.9861357 0.9125621 0.470214 +1 0.9125621 0.470214 +0 0.9278974 0.470214 +0.1939468 0.9278974 0.470214 +0.2773041 0.9278974 0.470214 +0.3384659 0.9278974 0.470214 +0.3885728 0.9278974 0.470214 +0.4317928 0.9278974 0.470214 +0.470214 0.9278974 0.470214 +0.5050551 0.9278974 0.470214 +0.5370987 0.9278974 0.470214 +0.5668815 0.9278974 0.470214 +0.5947903 0.9278974 0.470214 +0.6211144 0.9278974 0.470214 +0.6460766 0.9278974 0.470214 +0.6698526 0.9278974 0.470214 +0.6925839 0.9278974 0.470214 +0.7143866 0.9278974 0.470214 +0.7353569 0.9278974 0.470214 +0.7555758 0.9278974 0.470214 +0.7751122 0.9278974 0.470214 +0.7940252 0.9278974 0.470214 +0.8123661 0.9278974 0.470214 +0.8301795 0.9278974 0.470214 +0.8475045 0.9278974 0.470214 +0.8643761 0.9278974 0.470214 +0.880825 0.9278974 0.470214 +0.8968787 0.9278974 0.470214 +0.9125621 0.9278974 0.470214 +0.9278974 0.9278974 0.470214 +0.9429048 0.9278974 0.470214 +0.9576028 0.9278974 0.470214 +0.9720079 0.9278974 0.470214 +0.9861357 0.9278974 0.470214 +1 0.9278974 0.470214 +0 0.9429048 0.470214 +0.1939468 0.9429048 0.470214 +0.2773041 0.9429048 0.470214 +0.3384659 0.9429048 0.470214 +0.3885728 0.9429048 0.470214 +0.4317928 0.9429048 0.470214 +0.470214 0.9429048 0.470214 +0.5050551 0.9429048 0.470214 +0.5370987 0.9429048 0.470214 +0.5668815 0.9429048 0.470214 +0.5947903 0.9429048 0.470214 +0.6211144 0.9429048 0.470214 +0.6460766 0.9429048 0.470214 +0.6698526 0.9429048 0.470214 +0.6925839 0.9429048 0.470214 +0.7143866 0.9429048 0.470214 +0.7353569 0.9429048 0.470214 +0.7555758 0.9429048 0.470214 +0.7751122 0.9429048 0.470214 +0.7940252 0.9429048 0.470214 +0.8123661 0.9429048 0.470214 +0.8301795 0.9429048 0.470214 +0.8475045 0.9429048 0.470214 +0.8643761 0.9429048 0.470214 +0.880825 0.9429048 0.470214 +0.8968787 0.9429048 0.470214 +0.9125621 0.9429048 0.470214 +0.9278974 0.9429048 0.470214 +0.9429048 0.9429048 0.470214 +0.9576028 0.9429048 0.470214 +0.9720079 0.9429048 0.470214 +0.9861357 0.9429048 0.470214 +1 0.9429048 0.470214 +0 0.9576028 0.470214 +0.1939468 0.9576028 0.470214 +0.2773041 0.9576028 0.470214 +0.3384659 0.9576028 0.470214 +0.3885728 0.9576028 0.470214 +0.4317928 0.9576028 0.470214 +0.470214 0.9576028 0.470214 +0.5050551 0.9576028 0.470214 +0.5370987 0.9576028 0.470214 +0.5668815 0.9576028 0.470214 +0.5947903 0.9576028 0.470214 +0.6211144 0.9576028 0.470214 +0.6460766 0.9576028 0.470214 +0.6698526 0.9576028 0.470214 +0.6925839 0.9576028 0.470214 +0.7143866 0.9576028 0.470214 +0.7353569 0.9576028 0.470214 +0.7555758 0.9576028 0.470214 +0.7751122 0.9576028 0.470214 +0.7940252 0.9576028 0.470214 +0.8123661 0.9576028 0.470214 +0.8301795 0.9576028 0.470214 +0.8475045 0.9576028 0.470214 +0.8643761 0.9576028 0.470214 +0.880825 0.9576028 0.470214 +0.8968787 0.9576028 0.470214 +0.9125621 0.9576028 0.470214 +0.9278974 0.9576028 0.470214 +0.9429048 0.9576028 0.470214 +0.9576028 0.9576028 0.470214 +0.9720079 0.9576028 0.470214 +0.9861357 0.9576028 0.470214 +1 0.9576028 0.470214 +0 0.9720079 0.470214 +0.1939468 0.9720079 0.470214 +0.2773041 0.9720079 0.470214 +0.3384659 0.9720079 0.470214 +0.3885728 0.9720079 0.470214 +0.4317928 0.9720079 0.470214 +0.470214 0.9720079 0.470214 +0.5050551 0.9720079 0.470214 +0.5370987 0.9720079 0.470214 +0.5668815 0.9720079 0.470214 +0.5947903 0.9720079 0.470214 +0.6211144 0.9720079 0.470214 +0.6460766 0.9720079 0.470214 +0.6698526 0.9720079 0.470214 +0.6925839 0.9720079 0.470214 +0.7143866 0.9720079 0.470214 +0.7353569 0.9720079 0.470214 +0.7555758 0.9720079 0.470214 +0.7751122 0.9720079 0.470214 +0.7940252 0.9720079 0.470214 +0.8123661 0.9720079 0.470214 +0.8301795 0.9720079 0.470214 +0.8475045 0.9720079 0.470214 +0.8643761 0.9720079 0.470214 +0.880825 0.9720079 0.470214 +0.8968787 0.9720079 0.470214 +0.9125621 0.9720079 0.470214 +0.9278974 0.9720079 0.470214 +0.9429048 0.9720079 0.470214 +0.9576028 0.9720079 0.470214 +0.9720079 0.9720079 0.470214 +0.9861357 0.9720079 0.470214 +1 0.9720079 0.470214 +0 0.9861357 0.470214 +0.1939468 0.9861357 0.470214 +0.2773041 0.9861357 0.470214 +0.3384659 0.9861357 0.470214 +0.3885728 0.9861357 0.470214 +0.4317928 0.9861357 0.470214 +0.470214 0.9861357 0.470214 +0.5050551 0.9861357 0.470214 +0.5370987 0.9861357 0.470214 +0.5668815 0.9861357 0.470214 +0.5947903 0.9861357 0.470214 +0.6211144 0.9861357 0.470214 +0.6460766 0.9861357 0.470214 +0.6698526 0.9861357 0.470214 +0.6925839 0.9861357 0.470214 +0.7143866 0.9861357 0.470214 +0.7353569 0.9861357 0.470214 +0.7555758 0.9861357 0.470214 +0.7751122 0.9861357 0.470214 +0.7940252 0.9861357 0.470214 +0.8123661 0.9861357 0.470214 +0.8301795 0.9861357 0.470214 +0.8475045 0.9861357 0.470214 +0.8643761 0.9861357 0.470214 +0.880825 0.9861357 0.470214 +0.8968787 0.9861357 0.470214 +0.9125621 0.9861357 0.470214 +0.9278974 0.9861357 0.470214 +0.9429048 0.9861357 0.470214 +0.9576028 0.9861357 0.470214 +0.9720079 0.9861357 0.470214 +0.9861357 0.9861357 0.470214 +1 0.9861357 0.470214 +0 1 0.470214 +0.1939468 1 0.470214 +0.2773041 1 0.470214 +0.3384659 1 0.470214 +0.3885728 1 0.470214 +0.4317928 1 0.470214 +0.470214 1 0.470214 +0.5050551 1 0.470214 +0.5370987 1 0.470214 +0.5668815 1 0.470214 +0.5947903 1 0.470214 +0.6211144 1 0.470214 +0.6460766 1 0.470214 +0.6698526 1 0.470214 +0.6925839 1 0.470214 +0.7143866 1 0.470214 +0.7353569 1 0.470214 +0.7555758 1 0.470214 +0.7751122 1 0.470214 +0.7940252 1 0.470214 +0.8123661 1 0.470214 +0.8301795 1 0.470214 +0.8475045 1 0.470214 +0.8643761 1 0.470214 +0.880825 1 0.470214 +0.8968787 1 0.470214 +0.9125621 1 0.470214 +0.9278974 1 0.470214 +0.9429048 1 0.470214 +0.9576028 1 0.470214 +0.9720079 1 0.470214 +0.9861357 1 0.470214 +1 1 0.470214 +0 0 0.5050551 +0.1939468 0 0.5050551 +0.2773041 0 0.5050551 +0.3384659 0 0.5050551 +0.3885728 0 0.5050551 +0.4317928 0 0.5050551 +0.470214 0 0.5050551 +0.5050551 0 0.5050551 +0.5370987 0 0.5050551 +0.5668815 0 0.5050551 +0.5947903 0 0.5050551 +0.6211144 0 0.5050551 +0.6460766 0 0.5050551 +0.6698526 0 0.5050551 +0.6925839 0 0.5050551 +0.7143866 0 0.5050551 +0.7353569 0 0.5050551 +0.7555758 0 0.5050551 +0.7751122 0 0.5050551 +0.7940252 0 0.5050551 +0.8123661 0 0.5050551 +0.8301795 0 0.5050551 +0.8475045 0 0.5050551 +0.8643761 0 0.5050551 +0.880825 0 0.5050551 +0.8968787 0 0.5050551 +0.9125621 0 0.5050551 +0.9278974 0 0.5050551 +0.9429048 0 0.5050551 +0.9576028 0 0.5050551 +0.9720079 0 0.5050551 +0.9861357 0 0.5050551 +1 0 0.5050551 +0 0.1939468 0.5050551 +0.1939468 0.1939468 0.5050551 +0.2773041 0.1939468 0.5050551 +0.3384659 0.1939468 0.5050551 +0.3885728 0.1939468 0.5050551 +0.4317928 0.1939468 0.5050551 +0.470214 0.1939468 0.5050551 +0.5050551 0.1939468 0.5050551 +0.5370987 0.1939468 0.5050551 +0.5668815 0.1939468 0.5050551 +0.5947903 0.1939468 0.5050551 +0.6211144 0.1939468 0.5050551 +0.6460766 0.1939468 0.5050551 +0.6698526 0.1939468 0.5050551 +0.6925839 0.1939468 0.5050551 +0.7143866 0.1939468 0.5050551 +0.7353569 0.1939468 0.5050551 +0.7555758 0.1939468 0.5050551 +0.7751122 0.1939468 0.5050551 +0.7940252 0.1939468 0.5050551 +0.8123661 0.1939468 0.5050551 +0.8301795 0.1939468 0.5050551 +0.8475045 0.1939468 0.5050551 +0.8643761 0.1939468 0.5050551 +0.880825 0.1939468 0.5050551 +0.8968787 0.1939468 0.5050551 +0.9125621 0.1939468 0.5050551 +0.9278974 0.1939468 0.5050551 +0.9429048 0.1939468 0.5050551 +0.9576028 0.1939468 0.5050551 +0.9720079 0.1939468 0.5050551 +0.9861357 0.1939468 0.5050551 +1 0.1939468 0.5050551 +0 0.2773041 0.5050551 +0.1939468 0.2773041 0.5050551 +0.2773041 0.2773041 0.5050551 +0.3384659 0.2773041 0.5050551 +0.3885728 0.2773041 0.5050551 +0.4317928 0.2773041 0.5050551 +0.470214 0.2773041 0.5050551 +0.5050551 0.2773041 0.5050551 +0.5370987 0.2773041 0.5050551 +0.5668815 0.2773041 0.5050551 +0.5947903 0.2773041 0.5050551 +0.6211144 0.2773041 0.5050551 +0.6460766 0.2773041 0.5050551 +0.6698526 0.2773041 0.5050551 +0.6925839 0.2773041 0.5050551 +0.7143866 0.2773041 0.5050551 +0.7353569 0.2773041 0.5050551 +0.7555758 0.2773041 0.5050551 +0.7751122 0.2773041 0.5050551 +0.7940252 0.2773041 0.5050551 +0.8123661 0.2773041 0.5050551 +0.8301795 0.2773041 0.5050551 +0.8475045 0.2773041 0.5050551 +0.8643761 0.2773041 0.5050551 +0.880825 0.2773041 0.5050551 +0.8968787 0.2773041 0.5050551 +0.9125621 0.2773041 0.5050551 +0.9278974 0.2773041 0.5050551 +0.9429048 0.2773041 0.5050551 +0.9576028 0.2773041 0.5050551 +0.9720079 0.2773041 0.5050551 +0.9861357 0.2773041 0.5050551 +1 0.2773041 0.5050551 +0 0.3384659 0.5050551 +0.1939468 0.3384659 0.5050551 +0.2773041 0.3384659 0.5050551 +0.3384659 0.3384659 0.5050551 +0.3885728 0.3384659 0.5050551 +0.4317928 0.3384659 0.5050551 +0.470214 0.3384659 0.5050551 +0.5050551 0.3384659 0.5050551 +0.5370987 0.3384659 0.5050551 +0.5668815 0.3384659 0.5050551 +0.5947903 0.3384659 0.5050551 +0.6211144 0.3384659 0.5050551 +0.6460766 0.3384659 0.5050551 +0.6698526 0.3384659 0.5050551 +0.6925839 0.3384659 0.5050551 +0.7143866 0.3384659 0.5050551 +0.7353569 0.3384659 0.5050551 +0.7555758 0.3384659 0.5050551 +0.7751122 0.3384659 0.5050551 +0.7940252 0.3384659 0.5050551 +0.8123661 0.3384659 0.5050551 +0.8301795 0.3384659 0.5050551 +0.8475045 0.3384659 0.5050551 +0.8643761 0.3384659 0.5050551 +0.880825 0.3384659 0.5050551 +0.8968787 0.3384659 0.5050551 +0.9125621 0.3384659 0.5050551 +0.9278974 0.3384659 0.5050551 +0.9429048 0.3384659 0.5050551 +0.9576028 0.3384659 0.5050551 +0.9720079 0.3384659 0.5050551 +0.9861357 0.3384659 0.5050551 +1 0.3384659 0.5050551 +0 0.3885728 0.5050551 +0.1939468 0.3885728 0.5050551 +0.2773041 0.3885728 0.5050551 +0.3384659 0.3885728 0.5050551 +0.3885728 0.3885728 0.5050551 +0.4317928 0.3885728 0.5050551 +0.470214 0.3885728 0.5050551 +0.5050551 0.3885728 0.5050551 +0.5370987 0.3885728 0.5050551 +0.5668815 0.3885728 0.5050551 +0.5947903 0.3885728 0.5050551 +0.6211144 0.3885728 0.5050551 +0.6460766 0.3885728 0.5050551 +0.6698526 0.3885728 0.5050551 +0.6925839 0.3885728 0.5050551 +0.7143866 0.3885728 0.5050551 +0.7353569 0.3885728 0.5050551 +0.7555758 0.3885728 0.5050551 +0.7751122 0.3885728 0.5050551 +0.7940252 0.3885728 0.5050551 +0.8123661 0.3885728 0.5050551 +0.8301795 0.3885728 0.5050551 +0.8475045 0.3885728 0.5050551 +0.8643761 0.3885728 0.5050551 +0.880825 0.3885728 0.5050551 +0.8968787 0.3885728 0.5050551 +0.9125621 0.3885728 0.5050551 +0.9278974 0.3885728 0.5050551 +0.9429048 0.3885728 0.5050551 +0.9576028 0.3885728 0.5050551 +0.9720079 0.3885728 0.5050551 +0.9861357 0.3885728 0.5050551 +1 0.3885728 0.5050551 +0 0.4317928 0.5050551 +0.1939468 0.4317928 0.5050551 +0.2773041 0.4317928 0.5050551 +0.3384659 0.4317928 0.5050551 +0.3885728 0.4317928 0.5050551 +0.4317928 0.4317928 0.5050551 +0.470214 0.4317928 0.5050551 +0.5050551 0.4317928 0.5050551 +0.5370987 0.4317928 0.5050551 +0.5668815 0.4317928 0.5050551 +0.5947903 0.4317928 0.5050551 +0.6211144 0.4317928 0.5050551 +0.6460766 0.4317928 0.5050551 +0.6698526 0.4317928 0.5050551 +0.6925839 0.4317928 0.5050551 +0.7143866 0.4317928 0.5050551 +0.7353569 0.4317928 0.5050551 +0.7555758 0.4317928 0.5050551 +0.7751122 0.4317928 0.5050551 +0.7940252 0.4317928 0.5050551 +0.8123661 0.4317928 0.5050551 +0.8301795 0.4317928 0.5050551 +0.8475045 0.4317928 0.5050551 +0.8643761 0.4317928 0.5050551 +0.880825 0.4317928 0.5050551 +0.8968787 0.4317928 0.5050551 +0.9125621 0.4317928 0.5050551 +0.9278974 0.4317928 0.5050551 +0.9429048 0.4317928 0.5050551 +0.9576028 0.4317928 0.5050551 +0.9720079 0.4317928 0.5050551 +0.9861357 0.4317928 0.5050551 +1 0.4317928 0.5050551 +0 0.470214 0.5050551 +0.1939468 0.470214 0.5050551 +0.2773041 0.470214 0.5050551 +0.3384659 0.470214 0.5050551 +0.3885728 0.470214 0.5050551 +0.4317928 0.470214 0.5050551 +0.470214 0.470214 0.5050551 +0.5050551 0.470214 0.5050551 +0.5370987 0.470214 0.5050551 +0.5668815 0.470214 0.5050551 +0.5947903 0.470214 0.5050551 +0.6211144 0.470214 0.5050551 +0.6460766 0.470214 0.5050551 +0.6698526 0.470214 0.5050551 +0.6925839 0.470214 0.5050551 +0.7143866 0.470214 0.5050551 +0.7353569 0.470214 0.5050551 +0.7555758 0.470214 0.5050551 +0.7751122 0.470214 0.5050551 +0.7940252 0.470214 0.5050551 +0.8123661 0.470214 0.5050551 +0.8301795 0.470214 0.5050551 +0.8475045 0.470214 0.5050551 +0.8643761 0.470214 0.5050551 +0.880825 0.470214 0.5050551 +0.8968787 0.470214 0.5050551 +0.9125621 0.470214 0.5050551 +0.9278974 0.470214 0.5050551 +0.9429048 0.470214 0.5050551 +0.9576028 0.470214 0.5050551 +0.9720079 0.470214 0.5050551 +0.9861357 0.470214 0.5050551 +1 0.470214 0.5050551 +0 0.5050551 0.5050551 +0.1939468 0.5050551 0.5050551 +0.2773041 0.5050551 0.5050551 +0.3384659 0.5050551 0.5050551 +0.3885728 0.5050551 0.5050551 +0.4317928 0.5050551 0.5050551 +0.470214 0.5050551 0.5050551 +0.5050551 0.5050551 0.5050551 +0.5370987 0.5050551 0.5050551 +0.5668815 0.5050551 0.5050551 +0.5947903 0.5050551 0.5050551 +0.6211144 0.5050551 0.5050551 +0.6460766 0.5050551 0.5050551 +0.6698526 0.5050551 0.5050551 +0.6925839 0.5050551 0.5050551 +0.7143866 0.5050551 0.5050551 +0.7353569 0.5050551 0.5050551 +0.7555758 0.5050551 0.5050551 +0.7751122 0.5050551 0.5050551 +0.7940252 0.5050551 0.5050551 +0.8123661 0.5050551 0.5050551 +0.8301795 0.5050551 0.5050551 +0.8475045 0.5050551 0.5050551 +0.8643761 0.5050551 0.5050551 +0.880825 0.5050551 0.5050551 +0.8968787 0.5050551 0.5050551 +0.9125621 0.5050551 0.5050551 +0.9278974 0.5050551 0.5050551 +0.9429048 0.5050551 0.5050551 +0.9576028 0.5050551 0.5050551 +0.9720079 0.5050551 0.5050551 +0.9861357 0.5050551 0.5050551 +1 0.5050551 0.5050551 +0 0.5370987 0.5050551 +0.1939468 0.5370987 0.5050551 +0.2773041 0.5370987 0.5050551 +0.3384659 0.5370987 0.5050551 +0.3885728 0.5370987 0.5050551 +0.4317928 0.5370987 0.5050551 +0.470214 0.5370987 0.5050551 +0.5050551 0.5370987 0.5050551 +0.5370987 0.5370987 0.5050551 +0.5668815 0.5370987 0.5050551 +0.5947903 0.5370987 0.5050551 +0.6211144 0.5370987 0.5050551 +0.6460766 0.5370987 0.5050551 +0.6698526 0.5370987 0.5050551 +0.6925839 0.5370987 0.5050551 +0.7143866 0.5370987 0.5050551 +0.7353569 0.5370987 0.5050551 +0.7555758 0.5370987 0.5050551 +0.7751122 0.5370987 0.5050551 +0.7940252 0.5370987 0.5050551 +0.8123661 0.5370987 0.5050551 +0.8301795 0.5370987 0.5050551 +0.8475045 0.5370987 0.5050551 +0.8643761 0.5370987 0.5050551 +0.880825 0.5370987 0.5050551 +0.8968787 0.5370987 0.5050551 +0.9125621 0.5370987 0.5050551 +0.9278974 0.5370987 0.5050551 +0.9429048 0.5370987 0.5050551 +0.9576028 0.5370987 0.5050551 +0.9720079 0.5370987 0.5050551 +0.9861357 0.5370987 0.5050551 +1 0.5370987 0.5050551 +0 0.5668815 0.5050551 +0.1939468 0.5668815 0.5050551 +0.2773041 0.5668815 0.5050551 +0.3384659 0.5668815 0.5050551 +0.3885728 0.5668815 0.5050551 +0.4317928 0.5668815 0.5050551 +0.470214 0.5668815 0.5050551 +0.5050551 0.5668815 0.5050551 +0.5370987 0.5668815 0.5050551 +0.5668815 0.5668815 0.5050551 +0.5947903 0.5668815 0.5050551 +0.6211144 0.5668815 0.5050551 +0.6460766 0.5668815 0.5050551 +0.6698526 0.5668815 0.5050551 +0.6925839 0.5668815 0.5050551 +0.7143866 0.5668815 0.5050551 +0.7353569 0.5668815 0.5050551 +0.7555758 0.5668815 0.5050551 +0.7751122 0.5668815 0.5050551 +0.7940252 0.5668815 0.5050551 +0.8123661 0.5668815 0.5050551 +0.8301795 0.5668815 0.5050551 +0.8475045 0.5668815 0.5050551 +0.8643761 0.5668815 0.5050551 +0.880825 0.5668815 0.5050551 +0.8968787 0.5668815 0.5050551 +0.9125621 0.5668815 0.5050551 +0.9278974 0.5668815 0.5050551 +0.9429048 0.5668815 0.5050551 +0.9576028 0.5668815 0.5050551 +0.9720079 0.5668815 0.5050551 +0.9861357 0.5668815 0.5050551 +1 0.5668815 0.5050551 +0 0.5947903 0.5050551 +0.1939468 0.5947903 0.5050551 +0.2773041 0.5947903 0.5050551 +0.3384659 0.5947903 0.5050551 +0.3885728 0.5947903 0.5050551 +0.4317928 0.5947903 0.5050551 +0.470214 0.5947903 0.5050551 +0.5050551 0.5947903 0.5050551 +0.5370987 0.5947903 0.5050551 +0.5668815 0.5947903 0.5050551 +0.5947903 0.5947903 0.5050551 +0.6211144 0.5947903 0.5050551 +0.6460766 0.5947903 0.5050551 +0.6698526 0.5947903 0.5050551 +0.6925839 0.5947903 0.5050551 +0.7143866 0.5947903 0.5050551 +0.7353569 0.5947903 0.5050551 +0.7555758 0.5947903 0.5050551 +0.7751122 0.5947903 0.5050551 +0.7940252 0.5947903 0.5050551 +0.8123661 0.5947903 0.5050551 +0.8301795 0.5947903 0.5050551 +0.8475045 0.5947903 0.5050551 +0.8643761 0.5947903 0.5050551 +0.880825 0.5947903 0.5050551 +0.8968787 0.5947903 0.5050551 +0.9125621 0.5947903 0.5050551 +0.9278974 0.5947903 0.5050551 +0.9429048 0.5947903 0.5050551 +0.9576028 0.5947903 0.5050551 +0.9720079 0.5947903 0.5050551 +0.9861357 0.5947903 0.5050551 +1 0.5947903 0.5050551 +0 0.6211144 0.5050551 +0.1939468 0.6211144 0.5050551 +0.2773041 0.6211144 0.5050551 +0.3384659 0.6211144 0.5050551 +0.3885728 0.6211144 0.5050551 +0.4317928 0.6211144 0.5050551 +0.470214 0.6211144 0.5050551 +0.5050551 0.6211144 0.5050551 +0.5370987 0.6211144 0.5050551 +0.5668815 0.6211144 0.5050551 +0.5947903 0.6211144 0.5050551 +0.6211144 0.6211144 0.5050551 +0.6460766 0.6211144 0.5050551 +0.6698526 0.6211144 0.5050551 +0.6925839 0.6211144 0.5050551 +0.7143866 0.6211144 0.5050551 +0.7353569 0.6211144 0.5050551 +0.7555758 0.6211144 0.5050551 +0.7751122 0.6211144 0.5050551 +0.7940252 0.6211144 0.5050551 +0.8123661 0.6211144 0.5050551 +0.8301795 0.6211144 0.5050551 +0.8475045 0.6211144 0.5050551 +0.8643761 0.6211144 0.5050551 +0.880825 0.6211144 0.5050551 +0.8968787 0.6211144 0.5050551 +0.9125621 0.6211144 0.5050551 +0.9278974 0.6211144 0.5050551 +0.9429048 0.6211144 0.5050551 +0.9576028 0.6211144 0.5050551 +0.9720079 0.6211144 0.5050551 +0.9861357 0.6211144 0.5050551 +1 0.6211144 0.5050551 +0 0.6460766 0.5050551 +0.1939468 0.6460766 0.5050551 +0.2773041 0.6460766 0.5050551 +0.3384659 0.6460766 0.5050551 +0.3885728 0.6460766 0.5050551 +0.4317928 0.6460766 0.5050551 +0.470214 0.6460766 0.5050551 +0.5050551 0.6460766 0.5050551 +0.5370987 0.6460766 0.5050551 +0.5668815 0.6460766 0.5050551 +0.5947903 0.6460766 0.5050551 +0.6211144 0.6460766 0.5050551 +0.6460766 0.6460766 0.5050551 +0.6698526 0.6460766 0.5050551 +0.6925839 0.6460766 0.5050551 +0.7143866 0.6460766 0.5050551 +0.7353569 0.6460766 0.5050551 +0.7555758 0.6460766 0.5050551 +0.7751122 0.6460766 0.5050551 +0.7940252 0.6460766 0.5050551 +0.8123661 0.6460766 0.5050551 +0.8301795 0.6460766 0.5050551 +0.8475045 0.6460766 0.5050551 +0.8643761 0.6460766 0.5050551 +0.880825 0.6460766 0.5050551 +0.8968787 0.6460766 0.5050551 +0.9125621 0.6460766 0.5050551 +0.9278974 0.6460766 0.5050551 +0.9429048 0.6460766 0.5050551 +0.9576028 0.6460766 0.5050551 +0.9720079 0.6460766 0.5050551 +0.9861357 0.6460766 0.5050551 +1 0.6460766 0.5050551 +0 0.6698526 0.5050551 +0.1939468 0.6698526 0.5050551 +0.2773041 0.6698526 0.5050551 +0.3384659 0.6698526 0.5050551 +0.3885728 0.6698526 0.5050551 +0.4317928 0.6698526 0.5050551 +0.470214 0.6698526 0.5050551 +0.5050551 0.6698526 0.5050551 +0.5370987 0.6698526 0.5050551 +0.5668815 0.6698526 0.5050551 +0.5947903 0.6698526 0.5050551 +0.6211144 0.6698526 0.5050551 +0.6460766 0.6698526 0.5050551 +0.6698526 0.6698526 0.5050551 +0.6925839 0.6698526 0.5050551 +0.7143866 0.6698526 0.5050551 +0.7353569 0.6698526 0.5050551 +0.7555758 0.6698526 0.5050551 +0.7751122 0.6698526 0.5050551 +0.7940252 0.6698526 0.5050551 +0.8123661 0.6698526 0.5050551 +0.8301795 0.6698526 0.5050551 +0.8475045 0.6698526 0.5050551 +0.8643761 0.6698526 0.5050551 +0.880825 0.6698526 0.5050551 +0.8968787 0.6698526 0.5050551 +0.9125621 0.6698526 0.5050551 +0.9278974 0.6698526 0.5050551 +0.9429048 0.6698526 0.5050551 +0.9576028 0.6698526 0.5050551 +0.9720079 0.6698526 0.5050551 +0.9861357 0.6698526 0.5050551 +1 0.6698526 0.5050551 +0 0.6925839 0.5050551 +0.1939468 0.6925839 0.5050551 +0.2773041 0.6925839 0.5050551 +0.3384659 0.6925839 0.5050551 +0.3885728 0.6925839 0.5050551 +0.4317928 0.6925839 0.5050551 +0.470214 0.6925839 0.5050551 +0.5050551 0.6925839 0.5050551 +0.5370987 0.6925839 0.5050551 +0.5668815 0.6925839 0.5050551 +0.5947903 0.6925839 0.5050551 +0.6211144 0.6925839 0.5050551 +0.6460766 0.6925839 0.5050551 +0.6698526 0.6925839 0.5050551 +0.6925839 0.6925839 0.5050551 +0.7143866 0.6925839 0.5050551 +0.7353569 0.6925839 0.5050551 +0.7555758 0.6925839 0.5050551 +0.7751122 0.6925839 0.5050551 +0.7940252 0.6925839 0.5050551 +0.8123661 0.6925839 0.5050551 +0.8301795 0.6925839 0.5050551 +0.8475045 0.6925839 0.5050551 +0.8643761 0.6925839 0.5050551 +0.880825 0.6925839 0.5050551 +0.8968787 0.6925839 0.5050551 +0.9125621 0.6925839 0.5050551 +0.9278974 0.6925839 0.5050551 +0.9429048 0.6925839 0.5050551 +0.9576028 0.6925839 0.5050551 +0.9720079 0.6925839 0.5050551 +0.9861357 0.6925839 0.5050551 +1 0.6925839 0.5050551 +0 0.7143866 0.5050551 +0.1939468 0.7143866 0.5050551 +0.2773041 0.7143866 0.5050551 +0.3384659 0.7143866 0.5050551 +0.3885728 0.7143866 0.5050551 +0.4317928 0.7143866 0.5050551 +0.470214 0.7143866 0.5050551 +0.5050551 0.7143866 0.5050551 +0.5370987 0.7143866 0.5050551 +0.5668815 0.7143866 0.5050551 +0.5947903 0.7143866 0.5050551 +0.6211144 0.7143866 0.5050551 +0.6460766 0.7143866 0.5050551 +0.6698526 0.7143866 0.5050551 +0.6925839 0.7143866 0.5050551 +0.7143866 0.7143866 0.5050551 +0.7353569 0.7143866 0.5050551 +0.7555758 0.7143866 0.5050551 +0.7751122 0.7143866 0.5050551 +0.7940252 0.7143866 0.5050551 +0.8123661 0.7143866 0.5050551 +0.8301795 0.7143866 0.5050551 +0.8475045 0.7143866 0.5050551 +0.8643761 0.7143866 0.5050551 +0.880825 0.7143866 0.5050551 +0.8968787 0.7143866 0.5050551 +0.9125621 0.7143866 0.5050551 +0.9278974 0.7143866 0.5050551 +0.9429048 0.7143866 0.5050551 +0.9576028 0.7143866 0.5050551 +0.9720079 0.7143866 0.5050551 +0.9861357 0.7143866 0.5050551 +1 0.7143866 0.5050551 +0 0.7353569 0.5050551 +0.1939468 0.7353569 0.5050551 +0.2773041 0.7353569 0.5050551 +0.3384659 0.7353569 0.5050551 +0.3885728 0.7353569 0.5050551 +0.4317928 0.7353569 0.5050551 +0.470214 0.7353569 0.5050551 +0.5050551 0.7353569 0.5050551 +0.5370987 0.7353569 0.5050551 +0.5668815 0.7353569 0.5050551 +0.5947903 0.7353569 0.5050551 +0.6211144 0.7353569 0.5050551 +0.6460766 0.7353569 0.5050551 +0.6698526 0.7353569 0.5050551 +0.6925839 0.7353569 0.5050551 +0.7143866 0.7353569 0.5050551 +0.7353569 0.7353569 0.5050551 +0.7555758 0.7353569 0.5050551 +0.7751122 0.7353569 0.5050551 +0.7940252 0.7353569 0.5050551 +0.8123661 0.7353569 0.5050551 +0.8301795 0.7353569 0.5050551 +0.8475045 0.7353569 0.5050551 +0.8643761 0.7353569 0.5050551 +0.880825 0.7353569 0.5050551 +0.8968787 0.7353569 0.5050551 +0.9125621 0.7353569 0.5050551 +0.9278974 0.7353569 0.5050551 +0.9429048 0.7353569 0.5050551 +0.9576028 0.7353569 0.5050551 +0.9720079 0.7353569 0.5050551 +0.9861357 0.7353569 0.5050551 +1 0.7353569 0.5050551 +0 0.7555758 0.5050551 +0.1939468 0.7555758 0.5050551 +0.2773041 0.7555758 0.5050551 +0.3384659 0.7555758 0.5050551 +0.3885728 0.7555758 0.5050551 +0.4317928 0.7555758 0.5050551 +0.470214 0.7555758 0.5050551 +0.5050551 0.7555758 0.5050551 +0.5370987 0.7555758 0.5050551 +0.5668815 0.7555758 0.5050551 +0.5947903 0.7555758 0.5050551 +0.6211144 0.7555758 0.5050551 +0.6460766 0.7555758 0.5050551 +0.6698526 0.7555758 0.5050551 +0.6925839 0.7555758 0.5050551 +0.7143866 0.7555758 0.5050551 +0.7353569 0.7555758 0.5050551 +0.7555758 0.7555758 0.5050551 +0.7751122 0.7555758 0.5050551 +0.7940252 0.7555758 0.5050551 +0.8123661 0.7555758 0.5050551 +0.8301795 0.7555758 0.5050551 +0.8475045 0.7555758 0.5050551 +0.8643761 0.7555758 0.5050551 +0.880825 0.7555758 0.5050551 +0.8968787 0.7555758 0.5050551 +0.9125621 0.7555758 0.5050551 +0.9278974 0.7555758 0.5050551 +0.9429048 0.7555758 0.5050551 +0.9576028 0.7555758 0.5050551 +0.9720079 0.7555758 0.5050551 +0.9861357 0.7555758 0.5050551 +1 0.7555758 0.5050551 +0 0.7751122 0.5050551 +0.1939468 0.7751122 0.5050551 +0.2773041 0.7751122 0.5050551 +0.3384659 0.7751122 0.5050551 +0.3885728 0.7751122 0.5050551 +0.4317928 0.7751122 0.5050551 +0.470214 0.7751122 0.5050551 +0.5050551 0.7751122 0.5050551 +0.5370987 0.7751122 0.5050551 +0.5668815 0.7751122 0.5050551 +0.5947903 0.7751122 0.5050551 +0.6211144 0.7751122 0.5050551 +0.6460766 0.7751122 0.5050551 +0.6698526 0.7751122 0.5050551 +0.6925839 0.7751122 0.5050551 +0.7143866 0.7751122 0.5050551 +0.7353569 0.7751122 0.5050551 +0.7555758 0.7751122 0.5050551 +0.7751122 0.7751122 0.5050551 +0.7940252 0.7751122 0.5050551 +0.8123661 0.7751122 0.5050551 +0.8301795 0.7751122 0.5050551 +0.8475045 0.7751122 0.5050551 +0.8643761 0.7751122 0.5050551 +0.880825 0.7751122 0.5050551 +0.8968787 0.7751122 0.5050551 +0.9125621 0.7751122 0.5050551 +0.9278974 0.7751122 0.5050551 +0.9429048 0.7751122 0.5050551 +0.9576028 0.7751122 0.5050551 +0.9720079 0.7751122 0.5050551 +0.9861357 0.7751122 0.5050551 +1 0.7751122 0.5050551 +0 0.7940252 0.5050551 +0.1939468 0.7940252 0.5050551 +0.2773041 0.7940252 0.5050551 +0.3384659 0.7940252 0.5050551 +0.3885728 0.7940252 0.5050551 +0.4317928 0.7940252 0.5050551 +0.470214 0.7940252 0.5050551 +0.5050551 0.7940252 0.5050551 +0.5370987 0.7940252 0.5050551 +0.5668815 0.7940252 0.5050551 +0.5947903 0.7940252 0.5050551 +0.6211144 0.7940252 0.5050551 +0.6460766 0.7940252 0.5050551 +0.6698526 0.7940252 0.5050551 +0.6925839 0.7940252 0.5050551 +0.7143866 0.7940252 0.5050551 +0.7353569 0.7940252 0.5050551 +0.7555758 0.7940252 0.5050551 +0.7751122 0.7940252 0.5050551 +0.7940252 0.7940252 0.5050551 +0.8123661 0.7940252 0.5050551 +0.8301795 0.7940252 0.5050551 +0.8475045 0.7940252 0.5050551 +0.8643761 0.7940252 0.5050551 +0.880825 0.7940252 0.5050551 +0.8968787 0.7940252 0.5050551 +0.9125621 0.7940252 0.5050551 +0.9278974 0.7940252 0.5050551 +0.9429048 0.7940252 0.5050551 +0.9576028 0.7940252 0.5050551 +0.9720079 0.7940252 0.5050551 +0.9861357 0.7940252 0.5050551 +1 0.7940252 0.5050551 +0 0.8123661 0.5050551 +0.1939468 0.8123661 0.5050551 +0.2773041 0.8123661 0.5050551 +0.3384659 0.8123661 0.5050551 +0.3885728 0.8123661 0.5050551 +0.4317928 0.8123661 0.5050551 +0.470214 0.8123661 0.5050551 +0.5050551 0.8123661 0.5050551 +0.5370987 0.8123661 0.5050551 +0.5668815 0.8123661 0.5050551 +0.5947903 0.8123661 0.5050551 +0.6211144 0.8123661 0.5050551 +0.6460766 0.8123661 0.5050551 +0.6698526 0.8123661 0.5050551 +0.6925839 0.8123661 0.5050551 +0.7143866 0.8123661 0.5050551 +0.7353569 0.8123661 0.5050551 +0.7555758 0.8123661 0.5050551 +0.7751122 0.8123661 0.5050551 +0.7940252 0.8123661 0.5050551 +0.8123661 0.8123661 0.5050551 +0.8301795 0.8123661 0.5050551 +0.8475045 0.8123661 0.5050551 +0.8643761 0.8123661 0.5050551 +0.880825 0.8123661 0.5050551 +0.8968787 0.8123661 0.5050551 +0.9125621 0.8123661 0.5050551 +0.9278974 0.8123661 0.5050551 +0.9429048 0.8123661 0.5050551 +0.9576028 0.8123661 0.5050551 +0.9720079 0.8123661 0.5050551 +0.9861357 0.8123661 0.5050551 +1 0.8123661 0.5050551 +0 0.8301795 0.5050551 +0.1939468 0.8301795 0.5050551 +0.2773041 0.8301795 0.5050551 +0.3384659 0.8301795 0.5050551 +0.3885728 0.8301795 0.5050551 +0.4317928 0.8301795 0.5050551 +0.470214 0.8301795 0.5050551 +0.5050551 0.8301795 0.5050551 +0.5370987 0.8301795 0.5050551 +0.5668815 0.8301795 0.5050551 +0.5947903 0.8301795 0.5050551 +0.6211144 0.8301795 0.5050551 +0.6460766 0.8301795 0.5050551 +0.6698526 0.8301795 0.5050551 +0.6925839 0.8301795 0.5050551 +0.7143866 0.8301795 0.5050551 +0.7353569 0.8301795 0.5050551 +0.7555758 0.8301795 0.5050551 +0.7751122 0.8301795 0.5050551 +0.7940252 0.8301795 0.5050551 +0.8123661 0.8301795 0.5050551 +0.8301795 0.8301795 0.5050551 +0.8475045 0.8301795 0.5050551 +0.8643761 0.8301795 0.5050551 +0.880825 0.8301795 0.5050551 +0.8968787 0.8301795 0.5050551 +0.9125621 0.8301795 0.5050551 +0.9278974 0.8301795 0.5050551 +0.9429048 0.8301795 0.5050551 +0.9576028 0.8301795 0.5050551 +0.9720079 0.8301795 0.5050551 +0.9861357 0.8301795 0.5050551 +1 0.8301795 0.5050551 +0 0.8475045 0.5050551 +0.1939468 0.8475045 0.5050551 +0.2773041 0.8475045 0.5050551 +0.3384659 0.8475045 0.5050551 +0.3885728 0.8475045 0.5050551 +0.4317928 0.8475045 0.5050551 +0.470214 0.8475045 0.5050551 +0.5050551 0.8475045 0.5050551 +0.5370987 0.8475045 0.5050551 +0.5668815 0.8475045 0.5050551 +0.5947903 0.8475045 0.5050551 +0.6211144 0.8475045 0.5050551 +0.6460766 0.8475045 0.5050551 +0.6698526 0.8475045 0.5050551 +0.6925839 0.8475045 0.5050551 +0.7143866 0.8475045 0.5050551 +0.7353569 0.8475045 0.5050551 +0.7555758 0.8475045 0.5050551 +0.7751122 0.8475045 0.5050551 +0.7940252 0.8475045 0.5050551 +0.8123661 0.8475045 0.5050551 +0.8301795 0.8475045 0.5050551 +0.8475045 0.8475045 0.5050551 +0.8643761 0.8475045 0.5050551 +0.880825 0.8475045 0.5050551 +0.8968787 0.8475045 0.5050551 +0.9125621 0.8475045 0.5050551 +0.9278974 0.8475045 0.5050551 +0.9429048 0.8475045 0.5050551 +0.9576028 0.8475045 0.5050551 +0.9720079 0.8475045 0.5050551 +0.9861357 0.8475045 0.5050551 +1 0.8475045 0.5050551 +0 0.8643761 0.5050551 +0.1939468 0.8643761 0.5050551 +0.2773041 0.8643761 0.5050551 +0.3384659 0.8643761 0.5050551 +0.3885728 0.8643761 0.5050551 +0.4317928 0.8643761 0.5050551 +0.470214 0.8643761 0.5050551 +0.5050551 0.8643761 0.5050551 +0.5370987 0.8643761 0.5050551 +0.5668815 0.8643761 0.5050551 +0.5947903 0.8643761 0.5050551 +0.6211144 0.8643761 0.5050551 +0.6460766 0.8643761 0.5050551 +0.6698526 0.8643761 0.5050551 +0.6925839 0.8643761 0.5050551 +0.7143866 0.8643761 0.5050551 +0.7353569 0.8643761 0.5050551 +0.7555758 0.8643761 0.5050551 +0.7751122 0.8643761 0.5050551 +0.7940252 0.8643761 0.5050551 +0.8123661 0.8643761 0.5050551 +0.8301795 0.8643761 0.5050551 +0.8475045 0.8643761 0.5050551 +0.8643761 0.8643761 0.5050551 +0.880825 0.8643761 0.5050551 +0.8968787 0.8643761 0.5050551 +0.9125621 0.8643761 0.5050551 +0.9278974 0.8643761 0.5050551 +0.9429048 0.8643761 0.5050551 +0.9576028 0.8643761 0.5050551 +0.9720079 0.8643761 0.5050551 +0.9861357 0.8643761 0.5050551 +1 0.8643761 0.5050551 +0 0.880825 0.5050551 +0.1939468 0.880825 0.5050551 +0.2773041 0.880825 0.5050551 +0.3384659 0.880825 0.5050551 +0.3885728 0.880825 0.5050551 +0.4317928 0.880825 0.5050551 +0.470214 0.880825 0.5050551 +0.5050551 0.880825 0.5050551 +0.5370987 0.880825 0.5050551 +0.5668815 0.880825 0.5050551 +0.5947903 0.880825 0.5050551 +0.6211144 0.880825 0.5050551 +0.6460766 0.880825 0.5050551 +0.6698526 0.880825 0.5050551 +0.6925839 0.880825 0.5050551 +0.7143866 0.880825 0.5050551 +0.7353569 0.880825 0.5050551 +0.7555758 0.880825 0.5050551 +0.7751122 0.880825 0.5050551 +0.7940252 0.880825 0.5050551 +0.8123661 0.880825 0.5050551 +0.8301795 0.880825 0.5050551 +0.8475045 0.880825 0.5050551 +0.8643761 0.880825 0.5050551 +0.880825 0.880825 0.5050551 +0.8968787 0.880825 0.5050551 +0.9125621 0.880825 0.5050551 +0.9278974 0.880825 0.5050551 +0.9429048 0.880825 0.5050551 +0.9576028 0.880825 0.5050551 +0.9720079 0.880825 0.5050551 +0.9861357 0.880825 0.5050551 +1 0.880825 0.5050551 +0 0.8968787 0.5050551 +0.1939468 0.8968787 0.5050551 +0.2773041 0.8968787 0.5050551 +0.3384659 0.8968787 0.5050551 +0.3885728 0.8968787 0.5050551 +0.4317928 0.8968787 0.5050551 +0.470214 0.8968787 0.5050551 +0.5050551 0.8968787 0.5050551 +0.5370987 0.8968787 0.5050551 +0.5668815 0.8968787 0.5050551 +0.5947903 0.8968787 0.5050551 +0.6211144 0.8968787 0.5050551 +0.6460766 0.8968787 0.5050551 +0.6698526 0.8968787 0.5050551 +0.6925839 0.8968787 0.5050551 +0.7143866 0.8968787 0.5050551 +0.7353569 0.8968787 0.5050551 +0.7555758 0.8968787 0.5050551 +0.7751122 0.8968787 0.5050551 +0.7940252 0.8968787 0.5050551 +0.8123661 0.8968787 0.5050551 +0.8301795 0.8968787 0.5050551 +0.8475045 0.8968787 0.5050551 +0.8643761 0.8968787 0.5050551 +0.880825 0.8968787 0.5050551 +0.8968787 0.8968787 0.5050551 +0.9125621 0.8968787 0.5050551 +0.9278974 0.8968787 0.5050551 +0.9429048 0.8968787 0.5050551 +0.9576028 0.8968787 0.5050551 +0.9720079 0.8968787 0.5050551 +0.9861357 0.8968787 0.5050551 +1 0.8968787 0.5050551 +0 0.9125621 0.5050551 +0.1939468 0.9125621 0.5050551 +0.2773041 0.9125621 0.5050551 +0.3384659 0.9125621 0.5050551 +0.3885728 0.9125621 0.5050551 +0.4317928 0.9125621 0.5050551 +0.470214 0.9125621 0.5050551 +0.5050551 0.9125621 0.5050551 +0.5370987 0.9125621 0.5050551 +0.5668815 0.9125621 0.5050551 +0.5947903 0.9125621 0.5050551 +0.6211144 0.9125621 0.5050551 +0.6460766 0.9125621 0.5050551 +0.6698526 0.9125621 0.5050551 +0.6925839 0.9125621 0.5050551 +0.7143866 0.9125621 0.5050551 +0.7353569 0.9125621 0.5050551 +0.7555758 0.9125621 0.5050551 +0.7751122 0.9125621 0.5050551 +0.7940252 0.9125621 0.5050551 +0.8123661 0.9125621 0.5050551 +0.8301795 0.9125621 0.5050551 +0.8475045 0.9125621 0.5050551 +0.8643761 0.9125621 0.5050551 +0.880825 0.9125621 0.5050551 +0.8968787 0.9125621 0.5050551 +0.9125621 0.9125621 0.5050551 +0.9278974 0.9125621 0.5050551 +0.9429048 0.9125621 0.5050551 +0.9576028 0.9125621 0.5050551 +0.9720079 0.9125621 0.5050551 +0.9861357 0.9125621 0.5050551 +1 0.9125621 0.5050551 +0 0.9278974 0.5050551 +0.1939468 0.9278974 0.5050551 +0.2773041 0.9278974 0.5050551 +0.3384659 0.9278974 0.5050551 +0.3885728 0.9278974 0.5050551 +0.4317928 0.9278974 0.5050551 +0.470214 0.9278974 0.5050551 +0.5050551 0.9278974 0.5050551 +0.5370987 0.9278974 0.5050551 +0.5668815 0.9278974 0.5050551 +0.5947903 0.9278974 0.5050551 +0.6211144 0.9278974 0.5050551 +0.6460766 0.9278974 0.5050551 +0.6698526 0.9278974 0.5050551 +0.6925839 0.9278974 0.5050551 +0.7143866 0.9278974 0.5050551 +0.7353569 0.9278974 0.5050551 +0.7555758 0.9278974 0.5050551 +0.7751122 0.9278974 0.5050551 +0.7940252 0.9278974 0.5050551 +0.8123661 0.9278974 0.5050551 +0.8301795 0.9278974 0.5050551 +0.8475045 0.9278974 0.5050551 +0.8643761 0.9278974 0.5050551 +0.880825 0.9278974 0.5050551 +0.8968787 0.9278974 0.5050551 +0.9125621 0.9278974 0.5050551 +0.9278974 0.9278974 0.5050551 +0.9429048 0.9278974 0.5050551 +0.9576028 0.9278974 0.5050551 +0.9720079 0.9278974 0.5050551 +0.9861357 0.9278974 0.5050551 +1 0.9278974 0.5050551 +0 0.9429048 0.5050551 +0.1939468 0.9429048 0.5050551 +0.2773041 0.9429048 0.5050551 +0.3384659 0.9429048 0.5050551 +0.3885728 0.9429048 0.5050551 +0.4317928 0.9429048 0.5050551 +0.470214 0.9429048 0.5050551 +0.5050551 0.9429048 0.5050551 +0.5370987 0.9429048 0.5050551 +0.5668815 0.9429048 0.5050551 +0.5947903 0.9429048 0.5050551 +0.6211144 0.9429048 0.5050551 +0.6460766 0.9429048 0.5050551 +0.6698526 0.9429048 0.5050551 +0.6925839 0.9429048 0.5050551 +0.7143866 0.9429048 0.5050551 +0.7353569 0.9429048 0.5050551 +0.7555758 0.9429048 0.5050551 +0.7751122 0.9429048 0.5050551 +0.7940252 0.9429048 0.5050551 +0.8123661 0.9429048 0.5050551 +0.8301795 0.9429048 0.5050551 +0.8475045 0.9429048 0.5050551 +0.8643761 0.9429048 0.5050551 +0.880825 0.9429048 0.5050551 +0.8968787 0.9429048 0.5050551 +0.9125621 0.9429048 0.5050551 +0.9278974 0.9429048 0.5050551 +0.9429048 0.9429048 0.5050551 +0.9576028 0.9429048 0.5050551 +0.9720079 0.9429048 0.5050551 +0.9861357 0.9429048 0.5050551 +1 0.9429048 0.5050551 +0 0.9576028 0.5050551 +0.1939468 0.9576028 0.5050551 +0.2773041 0.9576028 0.5050551 +0.3384659 0.9576028 0.5050551 +0.3885728 0.9576028 0.5050551 +0.4317928 0.9576028 0.5050551 +0.470214 0.9576028 0.5050551 +0.5050551 0.9576028 0.5050551 +0.5370987 0.9576028 0.5050551 +0.5668815 0.9576028 0.5050551 +0.5947903 0.9576028 0.5050551 +0.6211144 0.9576028 0.5050551 +0.6460766 0.9576028 0.5050551 +0.6698526 0.9576028 0.5050551 +0.6925839 0.9576028 0.5050551 +0.7143866 0.9576028 0.5050551 +0.7353569 0.9576028 0.5050551 +0.7555758 0.9576028 0.5050551 +0.7751122 0.9576028 0.5050551 +0.7940252 0.9576028 0.5050551 +0.8123661 0.9576028 0.5050551 +0.8301795 0.9576028 0.5050551 +0.8475045 0.9576028 0.5050551 +0.8643761 0.9576028 0.5050551 +0.880825 0.9576028 0.5050551 +0.8968787 0.9576028 0.5050551 +0.9125621 0.9576028 0.5050551 +0.9278974 0.9576028 0.5050551 +0.9429048 0.9576028 0.5050551 +0.9576028 0.9576028 0.5050551 +0.9720079 0.9576028 0.5050551 +0.9861357 0.9576028 0.5050551 +1 0.9576028 0.5050551 +0 0.9720079 0.5050551 +0.1939468 0.9720079 0.5050551 +0.2773041 0.9720079 0.5050551 +0.3384659 0.9720079 0.5050551 +0.3885728 0.9720079 0.5050551 +0.4317928 0.9720079 0.5050551 +0.470214 0.9720079 0.5050551 +0.5050551 0.9720079 0.5050551 +0.5370987 0.9720079 0.5050551 +0.5668815 0.9720079 0.5050551 +0.5947903 0.9720079 0.5050551 +0.6211144 0.9720079 0.5050551 +0.6460766 0.9720079 0.5050551 +0.6698526 0.9720079 0.5050551 +0.6925839 0.9720079 0.5050551 +0.7143866 0.9720079 0.5050551 +0.7353569 0.9720079 0.5050551 +0.7555758 0.9720079 0.5050551 +0.7751122 0.9720079 0.5050551 +0.7940252 0.9720079 0.5050551 +0.8123661 0.9720079 0.5050551 +0.8301795 0.9720079 0.5050551 +0.8475045 0.9720079 0.5050551 +0.8643761 0.9720079 0.5050551 +0.880825 0.9720079 0.5050551 +0.8968787 0.9720079 0.5050551 +0.9125621 0.9720079 0.5050551 +0.9278974 0.9720079 0.5050551 +0.9429048 0.9720079 0.5050551 +0.9576028 0.9720079 0.5050551 +0.9720079 0.9720079 0.5050551 +0.9861357 0.9720079 0.5050551 +1 0.9720079 0.5050551 +0 0.9861357 0.5050551 +0.1939468 0.9861357 0.5050551 +0.2773041 0.9861357 0.5050551 +0.3384659 0.9861357 0.5050551 +0.3885728 0.9861357 0.5050551 +0.4317928 0.9861357 0.5050551 +0.470214 0.9861357 0.5050551 +0.5050551 0.9861357 0.5050551 +0.5370987 0.9861357 0.5050551 +0.5668815 0.9861357 0.5050551 +0.5947903 0.9861357 0.5050551 +0.6211144 0.9861357 0.5050551 +0.6460766 0.9861357 0.5050551 +0.6698526 0.9861357 0.5050551 +0.6925839 0.9861357 0.5050551 +0.7143866 0.9861357 0.5050551 +0.7353569 0.9861357 0.5050551 +0.7555758 0.9861357 0.5050551 +0.7751122 0.9861357 0.5050551 +0.7940252 0.9861357 0.5050551 +0.8123661 0.9861357 0.5050551 +0.8301795 0.9861357 0.5050551 +0.8475045 0.9861357 0.5050551 +0.8643761 0.9861357 0.5050551 +0.880825 0.9861357 0.5050551 +0.8968787 0.9861357 0.5050551 +0.9125621 0.9861357 0.5050551 +0.9278974 0.9861357 0.5050551 +0.9429048 0.9861357 0.5050551 +0.9576028 0.9861357 0.5050551 +0.9720079 0.9861357 0.5050551 +0.9861357 0.9861357 0.5050551 +1 0.9861357 0.5050551 +0 1 0.5050551 +0.1939468 1 0.5050551 +0.2773041 1 0.5050551 +0.3384659 1 0.5050551 +0.3885728 1 0.5050551 +0.4317928 1 0.5050551 +0.470214 1 0.5050551 +0.5050551 1 0.5050551 +0.5370987 1 0.5050551 +0.5668815 1 0.5050551 +0.5947903 1 0.5050551 +0.6211144 1 0.5050551 +0.6460766 1 0.5050551 +0.6698526 1 0.5050551 +0.6925839 1 0.5050551 +0.7143866 1 0.5050551 +0.7353569 1 0.5050551 +0.7555758 1 0.5050551 +0.7751122 1 0.5050551 +0.7940252 1 0.5050551 +0.8123661 1 0.5050551 +0.8301795 1 0.5050551 +0.8475045 1 0.5050551 +0.8643761 1 0.5050551 +0.880825 1 0.5050551 +0.8968787 1 0.5050551 +0.9125621 1 0.5050551 +0.9278974 1 0.5050551 +0.9429048 1 0.5050551 +0.9576028 1 0.5050551 +0.9720079 1 0.5050551 +0.9861357 1 0.5050551 +1 1 0.5050551 +0 0 0.5370987 +0.1939468 0 0.5370987 +0.2773041 0 0.5370987 +0.3384659 0 0.5370987 +0.3885728 0 0.5370987 +0.4317928 0 0.5370987 +0.470214 0 0.5370987 +0.5050551 0 0.5370987 +0.5370987 0 0.5370987 +0.5668815 0 0.5370987 +0.5947903 0 0.5370987 +0.6211144 0 0.5370987 +0.6460766 0 0.5370987 +0.6698526 0 0.5370987 +0.6925839 0 0.5370987 +0.7143866 0 0.5370987 +0.7353569 0 0.5370987 +0.7555758 0 0.5370987 +0.7751122 0 0.5370987 +0.7940252 0 0.5370987 +0.8123661 0 0.5370987 +0.8301795 0 0.5370987 +0.8475045 0 0.5370987 +0.8643761 0 0.5370987 +0.880825 0 0.5370987 +0.8968787 0 0.5370987 +0.9125621 0 0.5370987 +0.9278974 0 0.5370987 +0.9429048 0 0.5370987 +0.9576028 0 0.5370987 +0.9720079 0 0.5370987 +0.9861357 0 0.5370987 +1 0 0.5370987 +0 0.1939468 0.5370987 +0.1939468 0.1939468 0.5370987 +0.2773041 0.1939468 0.5370987 +0.3384659 0.1939468 0.5370987 +0.3885728 0.1939468 0.5370987 +0.4317928 0.1939468 0.5370987 +0.470214 0.1939468 0.5370987 +0.5050551 0.1939468 0.5370987 +0.5370987 0.1939468 0.5370987 +0.5668815 0.1939468 0.5370987 +0.5947903 0.1939468 0.5370987 +0.6211144 0.1939468 0.5370987 +0.6460766 0.1939468 0.5370987 +0.6698526 0.1939468 0.5370987 +0.6925839 0.1939468 0.5370987 +0.7143866 0.1939468 0.5370987 +0.7353569 0.1939468 0.5370987 +0.7555758 0.1939468 0.5370987 +0.7751122 0.1939468 0.5370987 +0.7940252 0.1939468 0.5370987 +0.8123661 0.1939468 0.5370987 +0.8301795 0.1939468 0.5370987 +0.8475045 0.1939468 0.5370987 +0.8643761 0.1939468 0.5370987 +0.880825 0.1939468 0.5370987 +0.8968787 0.1939468 0.5370987 +0.9125621 0.1939468 0.5370987 +0.9278974 0.1939468 0.5370987 +0.9429048 0.1939468 0.5370987 +0.9576028 0.1939468 0.5370987 +0.9720079 0.1939468 0.5370987 +0.9861357 0.1939468 0.5370987 +1 0.1939468 0.5370987 +0 0.2773041 0.5370987 +0.1939468 0.2773041 0.5370987 +0.2773041 0.2773041 0.5370987 +0.3384659 0.2773041 0.5370987 +0.3885728 0.2773041 0.5370987 +0.4317928 0.2773041 0.5370987 +0.470214 0.2773041 0.5370987 +0.5050551 0.2773041 0.5370987 +0.5370987 0.2773041 0.5370987 +0.5668815 0.2773041 0.5370987 +0.5947903 0.2773041 0.5370987 +0.6211144 0.2773041 0.5370987 +0.6460766 0.2773041 0.5370987 +0.6698526 0.2773041 0.5370987 +0.6925839 0.2773041 0.5370987 +0.7143866 0.2773041 0.5370987 +0.7353569 0.2773041 0.5370987 +0.7555758 0.2773041 0.5370987 +0.7751122 0.2773041 0.5370987 +0.7940252 0.2773041 0.5370987 +0.8123661 0.2773041 0.5370987 +0.8301795 0.2773041 0.5370987 +0.8475045 0.2773041 0.5370987 +0.8643761 0.2773041 0.5370987 +0.880825 0.2773041 0.5370987 +0.8968787 0.2773041 0.5370987 +0.9125621 0.2773041 0.5370987 +0.9278974 0.2773041 0.5370987 +0.9429048 0.2773041 0.5370987 +0.9576028 0.2773041 0.5370987 +0.9720079 0.2773041 0.5370987 +0.9861357 0.2773041 0.5370987 +1 0.2773041 0.5370987 +0 0.3384659 0.5370987 +0.1939468 0.3384659 0.5370987 +0.2773041 0.3384659 0.5370987 +0.3384659 0.3384659 0.5370987 +0.3885728 0.3384659 0.5370987 +0.4317928 0.3384659 0.5370987 +0.470214 0.3384659 0.5370987 +0.5050551 0.3384659 0.5370987 +0.5370987 0.3384659 0.5370987 +0.5668815 0.3384659 0.5370987 +0.5947903 0.3384659 0.5370987 +0.6211144 0.3384659 0.5370987 +0.6460766 0.3384659 0.5370987 +0.6698526 0.3384659 0.5370987 +0.6925839 0.3384659 0.5370987 +0.7143866 0.3384659 0.5370987 +0.7353569 0.3384659 0.5370987 +0.7555758 0.3384659 0.5370987 +0.7751122 0.3384659 0.5370987 +0.7940252 0.3384659 0.5370987 +0.8123661 0.3384659 0.5370987 +0.8301795 0.3384659 0.5370987 +0.8475045 0.3384659 0.5370987 +0.8643761 0.3384659 0.5370987 +0.880825 0.3384659 0.5370987 +0.8968787 0.3384659 0.5370987 +0.9125621 0.3384659 0.5370987 +0.9278974 0.3384659 0.5370987 +0.9429048 0.3384659 0.5370987 +0.9576028 0.3384659 0.5370987 +0.9720079 0.3384659 0.5370987 +0.9861357 0.3384659 0.5370987 +1 0.3384659 0.5370987 +0 0.3885728 0.5370987 +0.1939468 0.3885728 0.5370987 +0.2773041 0.3885728 0.5370987 +0.3384659 0.3885728 0.5370987 +0.3885728 0.3885728 0.5370987 +0.4317928 0.3885728 0.5370987 +0.470214 0.3885728 0.5370987 +0.5050551 0.3885728 0.5370987 +0.5370987 0.3885728 0.5370987 +0.5668815 0.3885728 0.5370987 +0.5947903 0.3885728 0.5370987 +0.6211144 0.3885728 0.5370987 +0.6460766 0.3885728 0.5370987 +0.6698526 0.3885728 0.5370987 +0.6925839 0.3885728 0.5370987 +0.7143866 0.3885728 0.5370987 +0.7353569 0.3885728 0.5370987 +0.7555758 0.3885728 0.5370987 +0.7751122 0.3885728 0.5370987 +0.7940252 0.3885728 0.5370987 +0.8123661 0.3885728 0.5370987 +0.8301795 0.3885728 0.5370987 +0.8475045 0.3885728 0.5370987 +0.8643761 0.3885728 0.5370987 +0.880825 0.3885728 0.5370987 +0.8968787 0.3885728 0.5370987 +0.9125621 0.3885728 0.5370987 +0.9278974 0.3885728 0.5370987 +0.9429048 0.3885728 0.5370987 +0.9576028 0.3885728 0.5370987 +0.9720079 0.3885728 0.5370987 +0.9861357 0.3885728 0.5370987 +1 0.3885728 0.5370987 +0 0.4317928 0.5370987 +0.1939468 0.4317928 0.5370987 +0.2773041 0.4317928 0.5370987 +0.3384659 0.4317928 0.5370987 +0.3885728 0.4317928 0.5370987 +0.4317928 0.4317928 0.5370987 +0.470214 0.4317928 0.5370987 +0.5050551 0.4317928 0.5370987 +0.5370987 0.4317928 0.5370987 +0.5668815 0.4317928 0.5370987 +0.5947903 0.4317928 0.5370987 +0.6211144 0.4317928 0.5370987 +0.6460766 0.4317928 0.5370987 +0.6698526 0.4317928 0.5370987 +0.6925839 0.4317928 0.5370987 +0.7143866 0.4317928 0.5370987 +0.7353569 0.4317928 0.5370987 +0.7555758 0.4317928 0.5370987 +0.7751122 0.4317928 0.5370987 +0.7940252 0.4317928 0.5370987 +0.8123661 0.4317928 0.5370987 +0.8301795 0.4317928 0.5370987 +0.8475045 0.4317928 0.5370987 +0.8643761 0.4317928 0.5370987 +0.880825 0.4317928 0.5370987 +0.8968787 0.4317928 0.5370987 +0.9125621 0.4317928 0.5370987 +0.9278974 0.4317928 0.5370987 +0.9429048 0.4317928 0.5370987 +0.9576028 0.4317928 0.5370987 +0.9720079 0.4317928 0.5370987 +0.9861357 0.4317928 0.5370987 +1 0.4317928 0.5370987 +0 0.470214 0.5370987 +0.1939468 0.470214 0.5370987 +0.2773041 0.470214 0.5370987 +0.3384659 0.470214 0.5370987 +0.3885728 0.470214 0.5370987 +0.4317928 0.470214 0.5370987 +0.470214 0.470214 0.5370987 +0.5050551 0.470214 0.5370987 +0.5370987 0.470214 0.5370987 +0.5668815 0.470214 0.5370987 +0.5947903 0.470214 0.5370987 +0.6211144 0.470214 0.5370987 +0.6460766 0.470214 0.5370987 +0.6698526 0.470214 0.5370987 +0.6925839 0.470214 0.5370987 +0.7143866 0.470214 0.5370987 +0.7353569 0.470214 0.5370987 +0.7555758 0.470214 0.5370987 +0.7751122 0.470214 0.5370987 +0.7940252 0.470214 0.5370987 +0.8123661 0.470214 0.5370987 +0.8301795 0.470214 0.5370987 +0.8475045 0.470214 0.5370987 +0.8643761 0.470214 0.5370987 +0.880825 0.470214 0.5370987 +0.8968787 0.470214 0.5370987 +0.9125621 0.470214 0.5370987 +0.9278974 0.470214 0.5370987 +0.9429048 0.470214 0.5370987 +0.9576028 0.470214 0.5370987 +0.9720079 0.470214 0.5370987 +0.9861357 0.470214 0.5370987 +1 0.470214 0.5370987 +0 0.5050551 0.5370987 +0.1939468 0.5050551 0.5370987 +0.2773041 0.5050551 0.5370987 +0.3384659 0.5050551 0.5370987 +0.3885728 0.5050551 0.5370987 +0.4317928 0.5050551 0.5370987 +0.470214 0.5050551 0.5370987 +0.5050551 0.5050551 0.5370987 +0.5370987 0.5050551 0.5370987 +0.5668815 0.5050551 0.5370987 +0.5947903 0.5050551 0.5370987 +0.6211144 0.5050551 0.5370987 +0.6460766 0.5050551 0.5370987 +0.6698526 0.5050551 0.5370987 +0.6925839 0.5050551 0.5370987 +0.7143866 0.5050551 0.5370987 +0.7353569 0.5050551 0.5370987 +0.7555758 0.5050551 0.5370987 +0.7751122 0.5050551 0.5370987 +0.7940252 0.5050551 0.5370987 +0.8123661 0.5050551 0.5370987 +0.8301795 0.5050551 0.5370987 +0.8475045 0.5050551 0.5370987 +0.8643761 0.5050551 0.5370987 +0.880825 0.5050551 0.5370987 +0.8968787 0.5050551 0.5370987 +0.9125621 0.5050551 0.5370987 +0.9278974 0.5050551 0.5370987 +0.9429048 0.5050551 0.5370987 +0.9576028 0.5050551 0.5370987 +0.9720079 0.5050551 0.5370987 +0.9861357 0.5050551 0.5370987 +1 0.5050551 0.5370987 +0 0.5370987 0.5370987 +0.1939468 0.5370987 0.5370987 +0.2773041 0.5370987 0.5370987 +0.3384659 0.5370987 0.5370987 +0.3885728 0.5370987 0.5370987 +0.4317928 0.5370987 0.5370987 +0.470214 0.5370987 0.5370987 +0.5050551 0.5370987 0.5370987 +0.5370987 0.5370987 0.5370987 +0.5668815 0.5370987 0.5370987 +0.5947903 0.5370987 0.5370987 +0.6211144 0.5370987 0.5370987 +0.6460766 0.5370987 0.5370987 +0.6698526 0.5370987 0.5370987 +0.6925839 0.5370987 0.5370987 +0.7143866 0.5370987 0.5370987 +0.7353569 0.5370987 0.5370987 +0.7555758 0.5370987 0.5370987 +0.7751122 0.5370987 0.5370987 +0.7940252 0.5370987 0.5370987 +0.8123661 0.5370987 0.5370987 +0.8301795 0.5370987 0.5370987 +0.8475045 0.5370987 0.5370987 +0.8643761 0.5370987 0.5370987 +0.880825 0.5370987 0.5370987 +0.8968787 0.5370987 0.5370987 +0.9125621 0.5370987 0.5370987 +0.9278974 0.5370987 0.5370987 +0.9429048 0.5370987 0.5370987 +0.9576028 0.5370987 0.5370987 +0.9720079 0.5370987 0.5370987 +0.9861357 0.5370987 0.5370987 +1 0.5370987 0.5370987 +0 0.5668815 0.5370987 +0.1939468 0.5668815 0.5370987 +0.2773041 0.5668815 0.5370987 +0.3384659 0.5668815 0.5370987 +0.3885728 0.5668815 0.5370987 +0.4317928 0.5668815 0.5370987 +0.470214 0.5668815 0.5370987 +0.5050551 0.5668815 0.5370987 +0.5370987 0.5668815 0.5370987 +0.5668815 0.5668815 0.5370987 +0.5947903 0.5668815 0.5370987 +0.6211144 0.5668815 0.5370987 +0.6460766 0.5668815 0.5370987 +0.6698526 0.5668815 0.5370987 +0.6925839 0.5668815 0.5370987 +0.7143866 0.5668815 0.5370987 +0.7353569 0.5668815 0.5370987 +0.7555758 0.5668815 0.5370987 +0.7751122 0.5668815 0.5370987 +0.7940252 0.5668815 0.5370987 +0.8123661 0.5668815 0.5370987 +0.8301795 0.5668815 0.5370987 +0.8475045 0.5668815 0.5370987 +0.8643761 0.5668815 0.5370987 +0.880825 0.5668815 0.5370987 +0.8968787 0.5668815 0.5370987 +0.9125621 0.5668815 0.5370987 +0.9278974 0.5668815 0.5370987 +0.9429048 0.5668815 0.5370987 +0.9576028 0.5668815 0.5370987 +0.9720079 0.5668815 0.5370987 +0.9861357 0.5668815 0.5370987 +1 0.5668815 0.5370987 +0 0.5947903 0.5370987 +0.1939468 0.5947903 0.5370987 +0.2773041 0.5947903 0.5370987 +0.3384659 0.5947903 0.5370987 +0.3885728 0.5947903 0.5370987 +0.4317928 0.5947903 0.5370987 +0.470214 0.5947903 0.5370987 +0.5050551 0.5947903 0.5370987 +0.5370987 0.5947903 0.5370987 +0.5668815 0.5947903 0.5370987 +0.5947903 0.5947903 0.5370987 +0.6211144 0.5947903 0.5370987 +0.6460766 0.5947903 0.5370987 +0.6698526 0.5947903 0.5370987 +0.6925839 0.5947903 0.5370987 +0.7143866 0.5947903 0.5370987 +0.7353569 0.5947903 0.5370987 +0.7555758 0.5947903 0.5370987 +0.7751122 0.5947903 0.5370987 +0.7940252 0.5947903 0.5370987 +0.8123661 0.5947903 0.5370987 +0.8301795 0.5947903 0.5370987 +0.8475045 0.5947903 0.5370987 +0.8643761 0.5947903 0.5370987 +0.880825 0.5947903 0.5370987 +0.8968787 0.5947903 0.5370987 +0.9125621 0.5947903 0.5370987 +0.9278974 0.5947903 0.5370987 +0.9429048 0.5947903 0.5370987 +0.9576028 0.5947903 0.5370987 +0.9720079 0.5947903 0.5370987 +0.9861357 0.5947903 0.5370987 +1 0.5947903 0.5370987 +0 0.6211144 0.5370987 +0.1939468 0.6211144 0.5370987 +0.2773041 0.6211144 0.5370987 +0.3384659 0.6211144 0.5370987 +0.3885728 0.6211144 0.5370987 +0.4317928 0.6211144 0.5370987 +0.470214 0.6211144 0.5370987 +0.5050551 0.6211144 0.5370987 +0.5370987 0.6211144 0.5370987 +0.5668815 0.6211144 0.5370987 +0.5947903 0.6211144 0.5370987 +0.6211144 0.6211144 0.5370987 +0.6460766 0.6211144 0.5370987 +0.6698526 0.6211144 0.5370987 +0.6925839 0.6211144 0.5370987 +0.7143866 0.6211144 0.5370987 +0.7353569 0.6211144 0.5370987 +0.7555758 0.6211144 0.5370987 +0.7751122 0.6211144 0.5370987 +0.7940252 0.6211144 0.5370987 +0.8123661 0.6211144 0.5370987 +0.8301795 0.6211144 0.5370987 +0.8475045 0.6211144 0.5370987 +0.8643761 0.6211144 0.5370987 +0.880825 0.6211144 0.5370987 +0.8968787 0.6211144 0.5370987 +0.9125621 0.6211144 0.5370987 +0.9278974 0.6211144 0.5370987 +0.9429048 0.6211144 0.5370987 +0.9576028 0.6211144 0.5370987 +0.9720079 0.6211144 0.5370987 +0.9861357 0.6211144 0.5370987 +1 0.6211144 0.5370987 +0 0.6460766 0.5370987 +0.1939468 0.6460766 0.5370987 +0.2773041 0.6460766 0.5370987 +0.3384659 0.6460766 0.5370987 +0.3885728 0.6460766 0.5370987 +0.4317928 0.6460766 0.5370987 +0.470214 0.6460766 0.5370987 +0.5050551 0.6460766 0.5370987 +0.5370987 0.6460766 0.5370987 +0.5668815 0.6460766 0.5370987 +0.5947903 0.6460766 0.5370987 +0.6211144 0.6460766 0.5370987 +0.6460766 0.6460766 0.5370987 +0.6698526 0.6460766 0.5370987 +0.6925839 0.6460766 0.5370987 +0.7143866 0.6460766 0.5370987 +0.7353569 0.6460766 0.5370987 +0.7555758 0.6460766 0.5370987 +0.7751122 0.6460766 0.5370987 +0.7940252 0.6460766 0.5370987 +0.8123661 0.6460766 0.5370987 +0.8301795 0.6460766 0.5370987 +0.8475045 0.6460766 0.5370987 +0.8643761 0.6460766 0.5370987 +0.880825 0.6460766 0.5370987 +0.8968787 0.6460766 0.5370987 +0.9125621 0.6460766 0.5370987 +0.9278974 0.6460766 0.5370987 +0.9429048 0.6460766 0.5370987 +0.9576028 0.6460766 0.5370987 +0.9720079 0.6460766 0.5370987 +0.9861357 0.6460766 0.5370987 +1 0.6460766 0.5370987 +0 0.6698526 0.5370987 +0.1939468 0.6698526 0.5370987 +0.2773041 0.6698526 0.5370987 +0.3384659 0.6698526 0.5370987 +0.3885728 0.6698526 0.5370987 +0.4317928 0.6698526 0.5370987 +0.470214 0.6698526 0.5370987 +0.5050551 0.6698526 0.5370987 +0.5370987 0.6698526 0.5370987 +0.5668815 0.6698526 0.5370987 +0.5947903 0.6698526 0.5370987 +0.6211144 0.6698526 0.5370987 +0.6460766 0.6698526 0.5370987 +0.6698526 0.6698526 0.5370987 +0.6925839 0.6698526 0.5370987 +0.7143866 0.6698526 0.5370987 +0.7353569 0.6698526 0.5370987 +0.7555758 0.6698526 0.5370987 +0.7751122 0.6698526 0.5370987 +0.7940252 0.6698526 0.5370987 +0.8123661 0.6698526 0.5370987 +0.8301795 0.6698526 0.5370987 +0.8475045 0.6698526 0.5370987 +0.8643761 0.6698526 0.5370987 +0.880825 0.6698526 0.5370987 +0.8968787 0.6698526 0.5370987 +0.9125621 0.6698526 0.5370987 +0.9278974 0.6698526 0.5370987 +0.9429048 0.6698526 0.5370987 +0.9576028 0.6698526 0.5370987 +0.9720079 0.6698526 0.5370987 +0.9861357 0.6698526 0.5370987 +1 0.6698526 0.5370987 +0 0.6925839 0.5370987 +0.1939468 0.6925839 0.5370987 +0.2773041 0.6925839 0.5370987 +0.3384659 0.6925839 0.5370987 +0.3885728 0.6925839 0.5370987 +0.4317928 0.6925839 0.5370987 +0.470214 0.6925839 0.5370987 +0.5050551 0.6925839 0.5370987 +0.5370987 0.6925839 0.5370987 +0.5668815 0.6925839 0.5370987 +0.5947903 0.6925839 0.5370987 +0.6211144 0.6925839 0.5370987 +0.6460766 0.6925839 0.5370987 +0.6698526 0.6925839 0.5370987 +0.6925839 0.6925839 0.5370987 +0.7143866 0.6925839 0.5370987 +0.7353569 0.6925839 0.5370987 +0.7555758 0.6925839 0.5370987 +0.7751122 0.6925839 0.5370987 +0.7940252 0.6925839 0.5370987 +0.8123661 0.6925839 0.5370987 +0.8301795 0.6925839 0.5370987 +0.8475045 0.6925839 0.5370987 +0.8643761 0.6925839 0.5370987 +0.880825 0.6925839 0.5370987 +0.8968787 0.6925839 0.5370987 +0.9125621 0.6925839 0.5370987 +0.9278974 0.6925839 0.5370987 +0.9429048 0.6925839 0.5370987 +0.9576028 0.6925839 0.5370987 +0.9720079 0.6925839 0.5370987 +0.9861357 0.6925839 0.5370987 +1 0.6925839 0.5370987 +0 0.7143866 0.5370987 +0.1939468 0.7143866 0.5370987 +0.2773041 0.7143866 0.5370987 +0.3384659 0.7143866 0.5370987 +0.3885728 0.7143866 0.5370987 +0.4317928 0.7143866 0.5370987 +0.470214 0.7143866 0.5370987 +0.5050551 0.7143866 0.5370987 +0.5370987 0.7143866 0.5370987 +0.5668815 0.7143866 0.5370987 +0.5947903 0.7143866 0.5370987 +0.6211144 0.7143866 0.5370987 +0.6460766 0.7143866 0.5370987 +0.6698526 0.7143866 0.5370987 +0.6925839 0.7143866 0.5370987 +0.7143866 0.7143866 0.5370987 +0.7353569 0.7143866 0.5370987 +0.7555758 0.7143866 0.5370987 +0.7751122 0.7143866 0.5370987 +0.7940252 0.7143866 0.5370987 +0.8123661 0.7143866 0.5370987 +0.8301795 0.7143866 0.5370987 +0.8475045 0.7143866 0.5370987 +0.8643761 0.7143866 0.5370987 +0.880825 0.7143866 0.5370987 +0.8968787 0.7143866 0.5370987 +0.9125621 0.7143866 0.5370987 +0.9278974 0.7143866 0.5370987 +0.9429048 0.7143866 0.5370987 +0.9576028 0.7143866 0.5370987 +0.9720079 0.7143866 0.5370987 +0.9861357 0.7143866 0.5370987 +1 0.7143866 0.5370987 +0 0.7353569 0.5370987 +0.1939468 0.7353569 0.5370987 +0.2773041 0.7353569 0.5370987 +0.3384659 0.7353569 0.5370987 +0.3885728 0.7353569 0.5370987 +0.4317928 0.7353569 0.5370987 +0.470214 0.7353569 0.5370987 +0.5050551 0.7353569 0.5370987 +0.5370987 0.7353569 0.5370987 +0.5668815 0.7353569 0.5370987 +0.5947903 0.7353569 0.5370987 +0.6211144 0.7353569 0.5370987 +0.6460766 0.7353569 0.5370987 +0.6698526 0.7353569 0.5370987 +0.6925839 0.7353569 0.5370987 +0.7143866 0.7353569 0.5370987 +0.7353569 0.7353569 0.5370987 +0.7555758 0.7353569 0.5370987 +0.7751122 0.7353569 0.5370987 +0.7940252 0.7353569 0.5370987 +0.8123661 0.7353569 0.5370987 +0.8301795 0.7353569 0.5370987 +0.8475045 0.7353569 0.5370987 +0.8643761 0.7353569 0.5370987 +0.880825 0.7353569 0.5370987 +0.8968787 0.7353569 0.5370987 +0.9125621 0.7353569 0.5370987 +0.9278974 0.7353569 0.5370987 +0.9429048 0.7353569 0.5370987 +0.9576028 0.7353569 0.5370987 +0.9720079 0.7353569 0.5370987 +0.9861357 0.7353569 0.5370987 +1 0.7353569 0.5370987 +0 0.7555758 0.5370987 +0.1939468 0.7555758 0.5370987 +0.2773041 0.7555758 0.5370987 +0.3384659 0.7555758 0.5370987 +0.3885728 0.7555758 0.5370987 +0.4317928 0.7555758 0.5370987 +0.470214 0.7555758 0.5370987 +0.5050551 0.7555758 0.5370987 +0.5370987 0.7555758 0.5370987 +0.5668815 0.7555758 0.5370987 +0.5947903 0.7555758 0.5370987 +0.6211144 0.7555758 0.5370987 +0.6460766 0.7555758 0.5370987 +0.6698526 0.7555758 0.5370987 +0.6925839 0.7555758 0.5370987 +0.7143866 0.7555758 0.5370987 +0.7353569 0.7555758 0.5370987 +0.7555758 0.7555758 0.5370987 +0.7751122 0.7555758 0.5370987 +0.7940252 0.7555758 0.5370987 +0.8123661 0.7555758 0.5370987 +0.8301795 0.7555758 0.5370987 +0.8475045 0.7555758 0.5370987 +0.8643761 0.7555758 0.5370987 +0.880825 0.7555758 0.5370987 +0.8968787 0.7555758 0.5370987 +0.9125621 0.7555758 0.5370987 +0.9278974 0.7555758 0.5370987 +0.9429048 0.7555758 0.5370987 +0.9576028 0.7555758 0.5370987 +0.9720079 0.7555758 0.5370987 +0.9861357 0.7555758 0.5370987 +1 0.7555758 0.5370987 +0 0.7751122 0.5370987 +0.1939468 0.7751122 0.5370987 +0.2773041 0.7751122 0.5370987 +0.3384659 0.7751122 0.5370987 +0.3885728 0.7751122 0.5370987 +0.4317928 0.7751122 0.5370987 +0.470214 0.7751122 0.5370987 +0.5050551 0.7751122 0.5370987 +0.5370987 0.7751122 0.5370987 +0.5668815 0.7751122 0.5370987 +0.5947903 0.7751122 0.5370987 +0.6211144 0.7751122 0.5370987 +0.6460766 0.7751122 0.5370987 +0.6698526 0.7751122 0.5370987 +0.6925839 0.7751122 0.5370987 +0.7143866 0.7751122 0.5370987 +0.7353569 0.7751122 0.5370987 +0.7555758 0.7751122 0.5370987 +0.7751122 0.7751122 0.5370987 +0.7940252 0.7751122 0.5370987 +0.8123661 0.7751122 0.5370987 +0.8301795 0.7751122 0.5370987 +0.8475045 0.7751122 0.5370987 +0.8643761 0.7751122 0.5370987 +0.880825 0.7751122 0.5370987 +0.8968787 0.7751122 0.5370987 +0.9125621 0.7751122 0.5370987 +0.9278974 0.7751122 0.5370987 +0.9429048 0.7751122 0.5370987 +0.9576028 0.7751122 0.5370987 +0.9720079 0.7751122 0.5370987 +0.9861357 0.7751122 0.5370987 +1 0.7751122 0.5370987 +0 0.7940252 0.5370987 +0.1939468 0.7940252 0.5370987 +0.2773041 0.7940252 0.5370987 +0.3384659 0.7940252 0.5370987 +0.3885728 0.7940252 0.5370987 +0.4317928 0.7940252 0.5370987 +0.470214 0.7940252 0.5370987 +0.5050551 0.7940252 0.5370987 +0.5370987 0.7940252 0.5370987 +0.5668815 0.7940252 0.5370987 +0.5947903 0.7940252 0.5370987 +0.6211144 0.7940252 0.5370987 +0.6460766 0.7940252 0.5370987 +0.6698526 0.7940252 0.5370987 +0.6925839 0.7940252 0.5370987 +0.7143866 0.7940252 0.5370987 +0.7353569 0.7940252 0.5370987 +0.7555758 0.7940252 0.5370987 +0.7751122 0.7940252 0.5370987 +0.7940252 0.7940252 0.5370987 +0.8123661 0.7940252 0.5370987 +0.8301795 0.7940252 0.5370987 +0.8475045 0.7940252 0.5370987 +0.8643761 0.7940252 0.5370987 +0.880825 0.7940252 0.5370987 +0.8968787 0.7940252 0.5370987 +0.9125621 0.7940252 0.5370987 +0.9278974 0.7940252 0.5370987 +0.9429048 0.7940252 0.5370987 +0.9576028 0.7940252 0.5370987 +0.9720079 0.7940252 0.5370987 +0.9861357 0.7940252 0.5370987 +1 0.7940252 0.5370987 +0 0.8123661 0.5370987 +0.1939468 0.8123661 0.5370987 +0.2773041 0.8123661 0.5370987 +0.3384659 0.8123661 0.5370987 +0.3885728 0.8123661 0.5370987 +0.4317928 0.8123661 0.5370987 +0.470214 0.8123661 0.5370987 +0.5050551 0.8123661 0.5370987 +0.5370987 0.8123661 0.5370987 +0.5668815 0.8123661 0.5370987 +0.5947903 0.8123661 0.5370987 +0.6211144 0.8123661 0.5370987 +0.6460766 0.8123661 0.5370987 +0.6698526 0.8123661 0.5370987 +0.6925839 0.8123661 0.5370987 +0.7143866 0.8123661 0.5370987 +0.7353569 0.8123661 0.5370987 +0.7555758 0.8123661 0.5370987 +0.7751122 0.8123661 0.5370987 +0.7940252 0.8123661 0.5370987 +0.8123661 0.8123661 0.5370987 +0.8301795 0.8123661 0.5370987 +0.8475045 0.8123661 0.5370987 +0.8643761 0.8123661 0.5370987 +0.880825 0.8123661 0.5370987 +0.8968787 0.8123661 0.5370987 +0.9125621 0.8123661 0.5370987 +0.9278974 0.8123661 0.5370987 +0.9429048 0.8123661 0.5370987 +0.9576028 0.8123661 0.5370987 +0.9720079 0.8123661 0.5370987 +0.9861357 0.8123661 0.5370987 +1 0.8123661 0.5370987 +0 0.8301795 0.5370987 +0.1939468 0.8301795 0.5370987 +0.2773041 0.8301795 0.5370987 +0.3384659 0.8301795 0.5370987 +0.3885728 0.8301795 0.5370987 +0.4317928 0.8301795 0.5370987 +0.470214 0.8301795 0.5370987 +0.5050551 0.8301795 0.5370987 +0.5370987 0.8301795 0.5370987 +0.5668815 0.8301795 0.5370987 +0.5947903 0.8301795 0.5370987 +0.6211144 0.8301795 0.5370987 +0.6460766 0.8301795 0.5370987 +0.6698526 0.8301795 0.5370987 +0.6925839 0.8301795 0.5370987 +0.7143866 0.8301795 0.5370987 +0.7353569 0.8301795 0.5370987 +0.7555758 0.8301795 0.5370987 +0.7751122 0.8301795 0.5370987 +0.7940252 0.8301795 0.5370987 +0.8123661 0.8301795 0.5370987 +0.8301795 0.8301795 0.5370987 +0.8475045 0.8301795 0.5370987 +0.8643761 0.8301795 0.5370987 +0.880825 0.8301795 0.5370987 +0.8968787 0.8301795 0.5370987 +0.9125621 0.8301795 0.5370987 +0.9278974 0.8301795 0.5370987 +0.9429048 0.8301795 0.5370987 +0.9576028 0.8301795 0.5370987 +0.9720079 0.8301795 0.5370987 +0.9861357 0.8301795 0.5370987 +1 0.8301795 0.5370987 +0 0.8475045 0.5370987 +0.1939468 0.8475045 0.5370987 +0.2773041 0.8475045 0.5370987 +0.3384659 0.8475045 0.5370987 +0.3885728 0.8475045 0.5370987 +0.4317928 0.8475045 0.5370987 +0.470214 0.8475045 0.5370987 +0.5050551 0.8475045 0.5370987 +0.5370987 0.8475045 0.5370987 +0.5668815 0.8475045 0.5370987 +0.5947903 0.8475045 0.5370987 +0.6211144 0.8475045 0.5370987 +0.6460766 0.8475045 0.5370987 +0.6698526 0.8475045 0.5370987 +0.6925839 0.8475045 0.5370987 +0.7143866 0.8475045 0.5370987 +0.7353569 0.8475045 0.5370987 +0.7555758 0.8475045 0.5370987 +0.7751122 0.8475045 0.5370987 +0.7940252 0.8475045 0.5370987 +0.8123661 0.8475045 0.5370987 +0.8301795 0.8475045 0.5370987 +0.8475045 0.8475045 0.5370987 +0.8643761 0.8475045 0.5370987 +0.880825 0.8475045 0.5370987 +0.8968787 0.8475045 0.5370987 +0.9125621 0.8475045 0.5370987 +0.9278974 0.8475045 0.5370987 +0.9429048 0.8475045 0.5370987 +0.9576028 0.8475045 0.5370987 +0.9720079 0.8475045 0.5370987 +0.9861357 0.8475045 0.5370987 +1 0.8475045 0.5370987 +0 0.8643761 0.5370987 +0.1939468 0.8643761 0.5370987 +0.2773041 0.8643761 0.5370987 +0.3384659 0.8643761 0.5370987 +0.3885728 0.8643761 0.5370987 +0.4317928 0.8643761 0.5370987 +0.470214 0.8643761 0.5370987 +0.5050551 0.8643761 0.5370987 +0.5370987 0.8643761 0.5370987 +0.5668815 0.8643761 0.5370987 +0.5947903 0.8643761 0.5370987 +0.6211144 0.8643761 0.5370987 +0.6460766 0.8643761 0.5370987 +0.6698526 0.8643761 0.5370987 +0.6925839 0.8643761 0.5370987 +0.7143866 0.8643761 0.5370987 +0.7353569 0.8643761 0.5370987 +0.7555758 0.8643761 0.5370987 +0.7751122 0.8643761 0.5370987 +0.7940252 0.8643761 0.5370987 +0.8123661 0.8643761 0.5370987 +0.8301795 0.8643761 0.5370987 +0.8475045 0.8643761 0.5370987 +0.8643761 0.8643761 0.5370987 +0.880825 0.8643761 0.5370987 +0.8968787 0.8643761 0.5370987 +0.9125621 0.8643761 0.5370987 +0.9278974 0.8643761 0.5370987 +0.9429048 0.8643761 0.5370987 +0.9576028 0.8643761 0.5370987 +0.9720079 0.8643761 0.5370987 +0.9861357 0.8643761 0.5370987 +1 0.8643761 0.5370987 +0 0.880825 0.5370987 +0.1939468 0.880825 0.5370987 +0.2773041 0.880825 0.5370987 +0.3384659 0.880825 0.5370987 +0.3885728 0.880825 0.5370987 +0.4317928 0.880825 0.5370987 +0.470214 0.880825 0.5370987 +0.5050551 0.880825 0.5370987 +0.5370987 0.880825 0.5370987 +0.5668815 0.880825 0.5370987 +0.5947903 0.880825 0.5370987 +0.6211144 0.880825 0.5370987 +0.6460766 0.880825 0.5370987 +0.6698526 0.880825 0.5370987 +0.6925839 0.880825 0.5370987 +0.7143866 0.880825 0.5370987 +0.7353569 0.880825 0.5370987 +0.7555758 0.880825 0.5370987 +0.7751122 0.880825 0.5370987 +0.7940252 0.880825 0.5370987 +0.8123661 0.880825 0.5370987 +0.8301795 0.880825 0.5370987 +0.8475045 0.880825 0.5370987 +0.8643761 0.880825 0.5370987 +0.880825 0.880825 0.5370987 +0.8968787 0.880825 0.5370987 +0.9125621 0.880825 0.5370987 +0.9278974 0.880825 0.5370987 +0.9429048 0.880825 0.5370987 +0.9576028 0.880825 0.5370987 +0.9720079 0.880825 0.5370987 +0.9861357 0.880825 0.5370987 +1 0.880825 0.5370987 +0 0.8968787 0.5370987 +0.1939468 0.8968787 0.5370987 +0.2773041 0.8968787 0.5370987 +0.3384659 0.8968787 0.5370987 +0.3885728 0.8968787 0.5370987 +0.4317928 0.8968787 0.5370987 +0.470214 0.8968787 0.5370987 +0.5050551 0.8968787 0.5370987 +0.5370987 0.8968787 0.5370987 +0.5668815 0.8968787 0.5370987 +0.5947903 0.8968787 0.5370987 +0.6211144 0.8968787 0.5370987 +0.6460766 0.8968787 0.5370987 +0.6698526 0.8968787 0.5370987 +0.6925839 0.8968787 0.5370987 +0.7143866 0.8968787 0.5370987 +0.7353569 0.8968787 0.5370987 +0.7555758 0.8968787 0.5370987 +0.7751122 0.8968787 0.5370987 +0.7940252 0.8968787 0.5370987 +0.8123661 0.8968787 0.5370987 +0.8301795 0.8968787 0.5370987 +0.8475045 0.8968787 0.5370987 +0.8643761 0.8968787 0.5370987 +0.880825 0.8968787 0.5370987 +0.8968787 0.8968787 0.5370987 +0.9125621 0.8968787 0.5370987 +0.9278974 0.8968787 0.5370987 +0.9429048 0.8968787 0.5370987 +0.9576028 0.8968787 0.5370987 +0.9720079 0.8968787 0.5370987 +0.9861357 0.8968787 0.5370987 +1 0.8968787 0.5370987 +0 0.9125621 0.5370987 +0.1939468 0.9125621 0.5370987 +0.2773041 0.9125621 0.5370987 +0.3384659 0.9125621 0.5370987 +0.3885728 0.9125621 0.5370987 +0.4317928 0.9125621 0.5370987 +0.470214 0.9125621 0.5370987 +0.5050551 0.9125621 0.5370987 +0.5370987 0.9125621 0.5370987 +0.5668815 0.9125621 0.5370987 +0.5947903 0.9125621 0.5370987 +0.6211144 0.9125621 0.5370987 +0.6460766 0.9125621 0.5370987 +0.6698526 0.9125621 0.5370987 +0.6925839 0.9125621 0.5370987 +0.7143866 0.9125621 0.5370987 +0.7353569 0.9125621 0.5370987 +0.7555758 0.9125621 0.5370987 +0.7751122 0.9125621 0.5370987 +0.7940252 0.9125621 0.5370987 +0.8123661 0.9125621 0.5370987 +0.8301795 0.9125621 0.5370987 +0.8475045 0.9125621 0.5370987 +0.8643761 0.9125621 0.5370987 +0.880825 0.9125621 0.5370987 +0.8968787 0.9125621 0.5370987 +0.9125621 0.9125621 0.5370987 +0.9278974 0.9125621 0.5370987 +0.9429048 0.9125621 0.5370987 +0.9576028 0.9125621 0.5370987 +0.9720079 0.9125621 0.5370987 +0.9861357 0.9125621 0.5370987 +1 0.9125621 0.5370987 +0 0.9278974 0.5370987 +0.1939468 0.9278974 0.5370987 +0.2773041 0.9278974 0.5370987 +0.3384659 0.9278974 0.5370987 +0.3885728 0.9278974 0.5370987 +0.4317928 0.9278974 0.5370987 +0.470214 0.9278974 0.5370987 +0.5050551 0.9278974 0.5370987 +0.5370987 0.9278974 0.5370987 +0.5668815 0.9278974 0.5370987 +0.5947903 0.9278974 0.5370987 +0.6211144 0.9278974 0.5370987 +0.6460766 0.9278974 0.5370987 +0.6698526 0.9278974 0.5370987 +0.6925839 0.9278974 0.5370987 +0.7143866 0.9278974 0.5370987 +0.7353569 0.9278974 0.5370987 +0.7555758 0.9278974 0.5370987 +0.7751122 0.9278974 0.5370987 +0.7940252 0.9278974 0.5370987 +0.8123661 0.9278974 0.5370987 +0.8301795 0.9278974 0.5370987 +0.8475045 0.9278974 0.5370987 +0.8643761 0.9278974 0.5370987 +0.880825 0.9278974 0.5370987 +0.8968787 0.9278974 0.5370987 +0.9125621 0.9278974 0.5370987 +0.9278974 0.9278974 0.5370987 +0.9429048 0.9278974 0.5370987 +0.9576028 0.9278974 0.5370987 +0.9720079 0.9278974 0.5370987 +0.9861357 0.9278974 0.5370987 +1 0.9278974 0.5370987 +0 0.9429048 0.5370987 +0.1939468 0.9429048 0.5370987 +0.2773041 0.9429048 0.5370987 +0.3384659 0.9429048 0.5370987 +0.3885728 0.9429048 0.5370987 +0.4317928 0.9429048 0.5370987 +0.470214 0.9429048 0.5370987 +0.5050551 0.9429048 0.5370987 +0.5370987 0.9429048 0.5370987 +0.5668815 0.9429048 0.5370987 +0.5947903 0.9429048 0.5370987 +0.6211144 0.9429048 0.5370987 +0.6460766 0.9429048 0.5370987 +0.6698526 0.9429048 0.5370987 +0.6925839 0.9429048 0.5370987 +0.7143866 0.9429048 0.5370987 +0.7353569 0.9429048 0.5370987 +0.7555758 0.9429048 0.5370987 +0.7751122 0.9429048 0.5370987 +0.7940252 0.9429048 0.5370987 +0.8123661 0.9429048 0.5370987 +0.8301795 0.9429048 0.5370987 +0.8475045 0.9429048 0.5370987 +0.8643761 0.9429048 0.5370987 +0.880825 0.9429048 0.5370987 +0.8968787 0.9429048 0.5370987 +0.9125621 0.9429048 0.5370987 +0.9278974 0.9429048 0.5370987 +0.9429048 0.9429048 0.5370987 +0.9576028 0.9429048 0.5370987 +0.9720079 0.9429048 0.5370987 +0.9861357 0.9429048 0.5370987 +1 0.9429048 0.5370987 +0 0.9576028 0.5370987 +0.1939468 0.9576028 0.5370987 +0.2773041 0.9576028 0.5370987 +0.3384659 0.9576028 0.5370987 +0.3885728 0.9576028 0.5370987 +0.4317928 0.9576028 0.5370987 +0.470214 0.9576028 0.5370987 +0.5050551 0.9576028 0.5370987 +0.5370987 0.9576028 0.5370987 +0.5668815 0.9576028 0.5370987 +0.5947903 0.9576028 0.5370987 +0.6211144 0.9576028 0.5370987 +0.6460766 0.9576028 0.5370987 +0.6698526 0.9576028 0.5370987 +0.6925839 0.9576028 0.5370987 +0.7143866 0.9576028 0.5370987 +0.7353569 0.9576028 0.5370987 +0.7555758 0.9576028 0.5370987 +0.7751122 0.9576028 0.5370987 +0.7940252 0.9576028 0.5370987 +0.8123661 0.9576028 0.5370987 +0.8301795 0.9576028 0.5370987 +0.8475045 0.9576028 0.5370987 +0.8643761 0.9576028 0.5370987 +0.880825 0.9576028 0.5370987 +0.8968787 0.9576028 0.5370987 +0.9125621 0.9576028 0.5370987 +0.9278974 0.9576028 0.5370987 +0.9429048 0.9576028 0.5370987 +0.9576028 0.9576028 0.5370987 +0.9720079 0.9576028 0.5370987 +0.9861357 0.9576028 0.5370987 +1 0.9576028 0.5370987 +0 0.9720079 0.5370987 +0.1939468 0.9720079 0.5370987 +0.2773041 0.9720079 0.5370987 +0.3384659 0.9720079 0.5370987 +0.3885728 0.9720079 0.5370987 +0.4317928 0.9720079 0.5370987 +0.470214 0.9720079 0.5370987 +0.5050551 0.9720079 0.5370987 +0.5370987 0.9720079 0.5370987 +0.5668815 0.9720079 0.5370987 +0.5947903 0.9720079 0.5370987 +0.6211144 0.9720079 0.5370987 +0.6460766 0.9720079 0.5370987 +0.6698526 0.9720079 0.5370987 +0.6925839 0.9720079 0.5370987 +0.7143866 0.9720079 0.5370987 +0.7353569 0.9720079 0.5370987 +0.7555758 0.9720079 0.5370987 +0.7751122 0.9720079 0.5370987 +0.7940252 0.9720079 0.5370987 +0.8123661 0.9720079 0.5370987 +0.8301795 0.9720079 0.5370987 +0.8475045 0.9720079 0.5370987 +0.8643761 0.9720079 0.5370987 +0.880825 0.9720079 0.5370987 +0.8968787 0.9720079 0.5370987 +0.9125621 0.9720079 0.5370987 +0.9278974 0.9720079 0.5370987 +0.9429048 0.9720079 0.5370987 +0.9576028 0.9720079 0.5370987 +0.9720079 0.9720079 0.5370987 +0.9861357 0.9720079 0.5370987 +1 0.9720079 0.5370987 +0 0.9861357 0.5370987 +0.1939468 0.9861357 0.5370987 +0.2773041 0.9861357 0.5370987 +0.3384659 0.9861357 0.5370987 +0.3885728 0.9861357 0.5370987 +0.4317928 0.9861357 0.5370987 +0.470214 0.9861357 0.5370987 +0.5050551 0.9861357 0.5370987 +0.5370987 0.9861357 0.5370987 +0.5668815 0.9861357 0.5370987 +0.5947903 0.9861357 0.5370987 +0.6211144 0.9861357 0.5370987 +0.6460766 0.9861357 0.5370987 +0.6698526 0.9861357 0.5370987 +0.6925839 0.9861357 0.5370987 +0.7143866 0.9861357 0.5370987 +0.7353569 0.9861357 0.5370987 +0.7555758 0.9861357 0.5370987 +0.7751122 0.9861357 0.5370987 +0.7940252 0.9861357 0.5370987 +0.8123661 0.9861357 0.5370987 +0.8301795 0.9861357 0.5370987 +0.8475045 0.9861357 0.5370987 +0.8643761 0.9861357 0.5370987 +0.880825 0.9861357 0.5370987 +0.8968787 0.9861357 0.5370987 +0.9125621 0.9861357 0.5370987 +0.9278974 0.9861357 0.5370987 +0.9429048 0.9861357 0.5370987 +0.9576028 0.9861357 0.5370987 +0.9720079 0.9861357 0.5370987 +0.9861357 0.9861357 0.5370987 +1 0.9861357 0.5370987 +0 1 0.5370987 +0.1939468 1 0.5370987 +0.2773041 1 0.5370987 +0.3384659 1 0.5370987 +0.3885728 1 0.5370987 +0.4317928 1 0.5370987 +0.470214 1 0.5370987 +0.5050551 1 0.5370987 +0.5370987 1 0.5370987 +0.5668815 1 0.5370987 +0.5947903 1 0.5370987 +0.6211144 1 0.5370987 +0.6460766 1 0.5370987 +0.6698526 1 0.5370987 +0.6925839 1 0.5370987 +0.7143866 1 0.5370987 +0.7353569 1 0.5370987 +0.7555758 1 0.5370987 +0.7751122 1 0.5370987 +0.7940252 1 0.5370987 +0.8123661 1 0.5370987 +0.8301795 1 0.5370987 +0.8475045 1 0.5370987 +0.8643761 1 0.5370987 +0.880825 1 0.5370987 +0.8968787 1 0.5370987 +0.9125621 1 0.5370987 +0.9278974 1 0.5370987 +0.9429048 1 0.5370987 +0.9576028 1 0.5370987 +0.9720079 1 0.5370987 +0.9861357 1 0.5370987 +1 1 0.5370987 +0 0 0.5668815 +0.1939468 0 0.5668815 +0.2773041 0 0.5668815 +0.3384659 0 0.5668815 +0.3885728 0 0.5668815 +0.4317928 0 0.5668815 +0.470214 0 0.5668815 +0.5050551 0 0.5668815 +0.5370987 0 0.5668815 +0.5668815 0 0.5668815 +0.5947903 0 0.5668815 +0.6211144 0 0.5668815 +0.6460766 0 0.5668815 +0.6698526 0 0.5668815 +0.6925839 0 0.5668815 +0.7143866 0 0.5668815 +0.7353569 0 0.5668815 +0.7555758 0 0.5668815 +0.7751122 0 0.5668815 +0.7940252 0 0.5668815 +0.8123661 0 0.5668815 +0.8301795 0 0.5668815 +0.8475045 0 0.5668815 +0.8643761 0 0.5668815 +0.880825 0 0.5668815 +0.8968787 0 0.5668815 +0.9125621 0 0.5668815 +0.9278974 0 0.5668815 +0.9429048 0 0.5668815 +0.9576028 0 0.5668815 +0.9720079 0 0.5668815 +0.9861357 0 0.5668815 +1 0 0.5668815 +0 0.1939468 0.5668815 +0.1939468 0.1939468 0.5668815 +0.2773041 0.1939468 0.5668815 +0.3384659 0.1939468 0.5668815 +0.3885728 0.1939468 0.5668815 +0.4317928 0.1939468 0.5668815 +0.470214 0.1939468 0.5668815 +0.5050551 0.1939468 0.5668815 +0.5370987 0.1939468 0.5668815 +0.5668815 0.1939468 0.5668815 +0.5947903 0.1939468 0.5668815 +0.6211144 0.1939468 0.5668815 +0.6460766 0.1939468 0.5668815 +0.6698526 0.1939468 0.5668815 +0.6925839 0.1939468 0.5668815 +0.7143866 0.1939468 0.5668815 +0.7353569 0.1939468 0.5668815 +0.7555758 0.1939468 0.5668815 +0.7751122 0.1939468 0.5668815 +0.7940252 0.1939468 0.5668815 +0.8123661 0.1939468 0.5668815 +0.8301795 0.1939468 0.5668815 +0.8475045 0.1939468 0.5668815 +0.8643761 0.1939468 0.5668815 +0.880825 0.1939468 0.5668815 +0.8968787 0.1939468 0.5668815 +0.9125621 0.1939468 0.5668815 +0.9278974 0.1939468 0.5668815 +0.9429048 0.1939468 0.5668815 +0.9576028 0.1939468 0.5668815 +0.9720079 0.1939468 0.5668815 +0.9861357 0.1939468 0.5668815 +1 0.1939468 0.5668815 +0 0.2773041 0.5668815 +0.1939468 0.2773041 0.5668815 +0.2773041 0.2773041 0.5668815 +0.3384659 0.2773041 0.5668815 +0.3885728 0.2773041 0.5668815 +0.4317928 0.2773041 0.5668815 +0.470214 0.2773041 0.5668815 +0.5050551 0.2773041 0.5668815 +0.5370987 0.2773041 0.5668815 +0.5668815 0.2773041 0.5668815 +0.5947903 0.2773041 0.5668815 +0.6211144 0.2773041 0.5668815 +0.6460766 0.2773041 0.5668815 +0.6698526 0.2773041 0.5668815 +0.6925839 0.2773041 0.5668815 +0.7143866 0.2773041 0.5668815 +0.7353569 0.2773041 0.5668815 +0.7555758 0.2773041 0.5668815 +0.7751122 0.2773041 0.5668815 +0.7940252 0.2773041 0.5668815 +0.8123661 0.2773041 0.5668815 +0.8301795 0.2773041 0.5668815 +0.8475045 0.2773041 0.5668815 +0.8643761 0.2773041 0.5668815 +0.880825 0.2773041 0.5668815 +0.8968787 0.2773041 0.5668815 +0.9125621 0.2773041 0.5668815 +0.9278974 0.2773041 0.5668815 +0.9429048 0.2773041 0.5668815 +0.9576028 0.2773041 0.5668815 +0.9720079 0.2773041 0.5668815 +0.9861357 0.2773041 0.5668815 +1 0.2773041 0.5668815 +0 0.3384659 0.5668815 +0.1939468 0.3384659 0.5668815 +0.2773041 0.3384659 0.5668815 +0.3384659 0.3384659 0.5668815 +0.3885728 0.3384659 0.5668815 +0.4317928 0.3384659 0.5668815 +0.470214 0.3384659 0.5668815 +0.5050551 0.3384659 0.5668815 +0.5370987 0.3384659 0.5668815 +0.5668815 0.3384659 0.5668815 +0.5947903 0.3384659 0.5668815 +0.6211144 0.3384659 0.5668815 +0.6460766 0.3384659 0.5668815 +0.6698526 0.3384659 0.5668815 +0.6925839 0.3384659 0.5668815 +0.7143866 0.3384659 0.5668815 +0.7353569 0.3384659 0.5668815 +0.7555758 0.3384659 0.5668815 +0.7751122 0.3384659 0.5668815 +0.7940252 0.3384659 0.5668815 +0.8123661 0.3384659 0.5668815 +0.8301795 0.3384659 0.5668815 +0.8475045 0.3384659 0.5668815 +0.8643761 0.3384659 0.5668815 +0.880825 0.3384659 0.5668815 +0.8968787 0.3384659 0.5668815 +0.9125621 0.3384659 0.5668815 +0.9278974 0.3384659 0.5668815 +0.9429048 0.3384659 0.5668815 +0.9576028 0.3384659 0.5668815 +0.9720079 0.3384659 0.5668815 +0.9861357 0.3384659 0.5668815 +1 0.3384659 0.5668815 +0 0.3885728 0.5668815 +0.1939468 0.3885728 0.5668815 +0.2773041 0.3885728 0.5668815 +0.3384659 0.3885728 0.5668815 +0.3885728 0.3885728 0.5668815 +0.4317928 0.3885728 0.5668815 +0.470214 0.3885728 0.5668815 +0.5050551 0.3885728 0.5668815 +0.5370987 0.3885728 0.5668815 +0.5668815 0.3885728 0.5668815 +0.5947903 0.3885728 0.5668815 +0.6211144 0.3885728 0.5668815 +0.6460766 0.3885728 0.5668815 +0.6698526 0.3885728 0.5668815 +0.6925839 0.3885728 0.5668815 +0.7143866 0.3885728 0.5668815 +0.7353569 0.3885728 0.5668815 +0.7555758 0.3885728 0.5668815 +0.7751122 0.3885728 0.5668815 +0.7940252 0.3885728 0.5668815 +0.8123661 0.3885728 0.5668815 +0.8301795 0.3885728 0.5668815 +0.8475045 0.3885728 0.5668815 +0.8643761 0.3885728 0.5668815 +0.880825 0.3885728 0.5668815 +0.8968787 0.3885728 0.5668815 +0.9125621 0.3885728 0.5668815 +0.9278974 0.3885728 0.5668815 +0.9429048 0.3885728 0.5668815 +0.9576028 0.3885728 0.5668815 +0.9720079 0.3885728 0.5668815 +0.9861357 0.3885728 0.5668815 +1 0.3885728 0.5668815 +0 0.4317928 0.5668815 +0.1939468 0.4317928 0.5668815 +0.2773041 0.4317928 0.5668815 +0.3384659 0.4317928 0.5668815 +0.3885728 0.4317928 0.5668815 +0.4317928 0.4317928 0.5668815 +0.470214 0.4317928 0.5668815 +0.5050551 0.4317928 0.5668815 +0.5370987 0.4317928 0.5668815 +0.5668815 0.4317928 0.5668815 +0.5947903 0.4317928 0.5668815 +0.6211144 0.4317928 0.5668815 +0.6460766 0.4317928 0.5668815 +0.6698526 0.4317928 0.5668815 +0.6925839 0.4317928 0.5668815 +0.7143866 0.4317928 0.5668815 +0.7353569 0.4317928 0.5668815 +0.7555758 0.4317928 0.5668815 +0.7751122 0.4317928 0.5668815 +0.7940252 0.4317928 0.5668815 +0.8123661 0.4317928 0.5668815 +0.8301795 0.4317928 0.5668815 +0.8475045 0.4317928 0.5668815 +0.8643761 0.4317928 0.5668815 +0.880825 0.4317928 0.5668815 +0.8968787 0.4317928 0.5668815 +0.9125621 0.4317928 0.5668815 +0.9278974 0.4317928 0.5668815 +0.9429048 0.4317928 0.5668815 +0.9576028 0.4317928 0.5668815 +0.9720079 0.4317928 0.5668815 +0.9861357 0.4317928 0.5668815 +1 0.4317928 0.5668815 +0 0.470214 0.5668815 +0.1939468 0.470214 0.5668815 +0.2773041 0.470214 0.5668815 +0.3384659 0.470214 0.5668815 +0.3885728 0.470214 0.5668815 +0.4317928 0.470214 0.5668815 +0.470214 0.470214 0.5668815 +0.5050551 0.470214 0.5668815 +0.5370987 0.470214 0.5668815 +0.5668815 0.470214 0.5668815 +0.5947903 0.470214 0.5668815 +0.6211144 0.470214 0.5668815 +0.6460766 0.470214 0.5668815 +0.6698526 0.470214 0.5668815 +0.6925839 0.470214 0.5668815 +0.7143866 0.470214 0.5668815 +0.7353569 0.470214 0.5668815 +0.7555758 0.470214 0.5668815 +0.7751122 0.470214 0.5668815 +0.7940252 0.470214 0.5668815 +0.8123661 0.470214 0.5668815 +0.8301795 0.470214 0.5668815 +0.8475045 0.470214 0.5668815 +0.8643761 0.470214 0.5668815 +0.880825 0.470214 0.5668815 +0.8968787 0.470214 0.5668815 +0.9125621 0.470214 0.5668815 +0.9278974 0.470214 0.5668815 +0.9429048 0.470214 0.5668815 +0.9576028 0.470214 0.5668815 +0.9720079 0.470214 0.5668815 +0.9861357 0.470214 0.5668815 +1 0.470214 0.5668815 +0 0.5050551 0.5668815 +0.1939468 0.5050551 0.5668815 +0.2773041 0.5050551 0.5668815 +0.3384659 0.5050551 0.5668815 +0.3885728 0.5050551 0.5668815 +0.4317928 0.5050551 0.5668815 +0.470214 0.5050551 0.5668815 +0.5050551 0.5050551 0.5668815 +0.5370987 0.5050551 0.5668815 +0.5668815 0.5050551 0.5668815 +0.5947903 0.5050551 0.5668815 +0.6211144 0.5050551 0.5668815 +0.6460766 0.5050551 0.5668815 +0.6698526 0.5050551 0.5668815 +0.6925839 0.5050551 0.5668815 +0.7143866 0.5050551 0.5668815 +0.7353569 0.5050551 0.5668815 +0.7555758 0.5050551 0.5668815 +0.7751122 0.5050551 0.5668815 +0.7940252 0.5050551 0.5668815 +0.8123661 0.5050551 0.5668815 +0.8301795 0.5050551 0.5668815 +0.8475045 0.5050551 0.5668815 +0.8643761 0.5050551 0.5668815 +0.880825 0.5050551 0.5668815 +0.8968787 0.5050551 0.5668815 +0.9125621 0.5050551 0.5668815 +0.9278974 0.5050551 0.5668815 +0.9429048 0.5050551 0.5668815 +0.9576028 0.5050551 0.5668815 +0.9720079 0.5050551 0.5668815 +0.9861357 0.5050551 0.5668815 +1 0.5050551 0.5668815 +0 0.5370987 0.5668815 +0.1939468 0.5370987 0.5668815 +0.2773041 0.5370987 0.5668815 +0.3384659 0.5370987 0.5668815 +0.3885728 0.5370987 0.5668815 +0.4317928 0.5370987 0.5668815 +0.470214 0.5370987 0.5668815 +0.5050551 0.5370987 0.5668815 +0.5370987 0.5370987 0.5668815 +0.5668815 0.5370987 0.5668815 +0.5947903 0.5370987 0.5668815 +0.6211144 0.5370987 0.5668815 +0.6460766 0.5370987 0.5668815 +0.6698526 0.5370987 0.5668815 +0.6925839 0.5370987 0.5668815 +0.7143866 0.5370987 0.5668815 +0.7353569 0.5370987 0.5668815 +0.7555758 0.5370987 0.5668815 +0.7751122 0.5370987 0.5668815 +0.7940252 0.5370987 0.5668815 +0.8123661 0.5370987 0.5668815 +0.8301795 0.5370987 0.5668815 +0.8475045 0.5370987 0.5668815 +0.8643761 0.5370987 0.5668815 +0.880825 0.5370987 0.5668815 +0.8968787 0.5370987 0.5668815 +0.9125621 0.5370987 0.5668815 +0.9278974 0.5370987 0.5668815 +0.9429048 0.5370987 0.5668815 +0.9576028 0.5370987 0.5668815 +0.9720079 0.5370987 0.5668815 +0.9861357 0.5370987 0.5668815 +1 0.5370987 0.5668815 +0 0.5668815 0.5668815 +0.1939468 0.5668815 0.5668815 +0.2773041 0.5668815 0.5668815 +0.3384659 0.5668815 0.5668815 +0.3885728 0.5668815 0.5668815 +0.4317928 0.5668815 0.5668815 +0.470214 0.5668815 0.5668815 +0.5050551 0.5668815 0.5668815 +0.5370987 0.5668815 0.5668815 +0.5668815 0.5668815 0.5668815 +0.5947903 0.5668815 0.5668815 +0.6211144 0.5668815 0.5668815 +0.6460766 0.5668815 0.5668815 +0.6698526 0.5668815 0.5668815 +0.6925839 0.5668815 0.5668815 +0.7143866 0.5668815 0.5668815 +0.7353569 0.5668815 0.5668815 +0.7555758 0.5668815 0.5668815 +0.7751122 0.5668815 0.5668815 +0.7940252 0.5668815 0.5668815 +0.8123661 0.5668815 0.5668815 +0.8301795 0.5668815 0.5668815 +0.8475045 0.5668815 0.5668815 +0.8643761 0.5668815 0.5668815 +0.880825 0.5668815 0.5668815 +0.8968787 0.5668815 0.5668815 +0.9125621 0.5668815 0.5668815 +0.9278974 0.5668815 0.5668815 +0.9429048 0.5668815 0.5668815 +0.9576028 0.5668815 0.5668815 +0.9720079 0.5668815 0.5668815 +0.9861357 0.5668815 0.5668815 +1 0.5668815 0.5668815 +0 0.5947903 0.5668815 +0.1939468 0.5947903 0.5668815 +0.2773041 0.5947903 0.5668815 +0.3384659 0.5947903 0.5668815 +0.3885728 0.5947903 0.5668815 +0.4317928 0.5947903 0.5668815 +0.470214 0.5947903 0.5668815 +0.5050551 0.5947903 0.5668815 +0.5370987 0.5947903 0.5668815 +0.5668815 0.5947903 0.5668815 +0.5947903 0.5947903 0.5668815 +0.6211144 0.5947903 0.5668815 +0.6460766 0.5947903 0.5668815 +0.6698526 0.5947903 0.5668815 +0.6925839 0.5947903 0.5668815 +0.7143866 0.5947903 0.5668815 +0.7353569 0.5947903 0.5668815 +0.7555758 0.5947903 0.5668815 +0.7751122 0.5947903 0.5668815 +0.7940252 0.5947903 0.5668815 +0.8123661 0.5947903 0.5668815 +0.8301795 0.5947903 0.5668815 +0.8475045 0.5947903 0.5668815 +0.8643761 0.5947903 0.5668815 +0.880825 0.5947903 0.5668815 +0.8968787 0.5947903 0.5668815 +0.9125621 0.5947903 0.5668815 +0.9278974 0.5947903 0.5668815 +0.9429048 0.5947903 0.5668815 +0.9576028 0.5947903 0.5668815 +0.9720079 0.5947903 0.5668815 +0.9861357 0.5947903 0.5668815 +1 0.5947903 0.5668815 +0 0.6211144 0.5668815 +0.1939468 0.6211144 0.5668815 +0.2773041 0.6211144 0.5668815 +0.3384659 0.6211144 0.5668815 +0.3885728 0.6211144 0.5668815 +0.4317928 0.6211144 0.5668815 +0.470214 0.6211144 0.5668815 +0.5050551 0.6211144 0.5668815 +0.5370987 0.6211144 0.5668815 +0.5668815 0.6211144 0.5668815 +0.5947903 0.6211144 0.5668815 +0.6211144 0.6211144 0.5668815 +0.6460766 0.6211144 0.5668815 +0.6698526 0.6211144 0.5668815 +0.6925839 0.6211144 0.5668815 +0.7143866 0.6211144 0.5668815 +0.7353569 0.6211144 0.5668815 +0.7555758 0.6211144 0.5668815 +0.7751122 0.6211144 0.5668815 +0.7940252 0.6211144 0.5668815 +0.8123661 0.6211144 0.5668815 +0.8301795 0.6211144 0.5668815 +0.8475045 0.6211144 0.5668815 +0.8643761 0.6211144 0.5668815 +0.880825 0.6211144 0.5668815 +0.8968787 0.6211144 0.5668815 +0.9125621 0.6211144 0.5668815 +0.9278974 0.6211144 0.5668815 +0.9429048 0.6211144 0.5668815 +0.9576028 0.6211144 0.5668815 +0.9720079 0.6211144 0.5668815 +0.9861357 0.6211144 0.5668815 +1 0.6211144 0.5668815 +0 0.6460766 0.5668815 +0.1939468 0.6460766 0.5668815 +0.2773041 0.6460766 0.5668815 +0.3384659 0.6460766 0.5668815 +0.3885728 0.6460766 0.5668815 +0.4317928 0.6460766 0.5668815 +0.470214 0.6460766 0.5668815 +0.5050551 0.6460766 0.5668815 +0.5370987 0.6460766 0.5668815 +0.5668815 0.6460766 0.5668815 +0.5947903 0.6460766 0.5668815 +0.6211144 0.6460766 0.5668815 +0.6460766 0.6460766 0.5668815 +0.6698526 0.6460766 0.5668815 +0.6925839 0.6460766 0.5668815 +0.7143866 0.6460766 0.5668815 +0.7353569 0.6460766 0.5668815 +0.7555758 0.6460766 0.5668815 +0.7751122 0.6460766 0.5668815 +0.7940252 0.6460766 0.5668815 +0.8123661 0.6460766 0.5668815 +0.8301795 0.6460766 0.5668815 +0.8475045 0.6460766 0.5668815 +0.8643761 0.6460766 0.5668815 +0.880825 0.6460766 0.5668815 +0.8968787 0.6460766 0.5668815 +0.9125621 0.6460766 0.5668815 +0.9278974 0.6460766 0.5668815 +0.9429048 0.6460766 0.5668815 +0.9576028 0.6460766 0.5668815 +0.9720079 0.6460766 0.5668815 +0.9861357 0.6460766 0.5668815 +1 0.6460766 0.5668815 +0 0.6698526 0.5668815 +0.1939468 0.6698526 0.5668815 +0.2773041 0.6698526 0.5668815 +0.3384659 0.6698526 0.5668815 +0.3885728 0.6698526 0.5668815 +0.4317928 0.6698526 0.5668815 +0.470214 0.6698526 0.5668815 +0.5050551 0.6698526 0.5668815 +0.5370987 0.6698526 0.5668815 +0.5668815 0.6698526 0.5668815 +0.5947903 0.6698526 0.5668815 +0.6211144 0.6698526 0.5668815 +0.6460766 0.6698526 0.5668815 +0.6698526 0.6698526 0.5668815 +0.6925839 0.6698526 0.5668815 +0.7143866 0.6698526 0.5668815 +0.7353569 0.6698526 0.5668815 +0.7555758 0.6698526 0.5668815 +0.7751122 0.6698526 0.5668815 +0.7940252 0.6698526 0.5668815 +0.8123661 0.6698526 0.5668815 +0.8301795 0.6698526 0.5668815 +0.8475045 0.6698526 0.5668815 +0.8643761 0.6698526 0.5668815 +0.880825 0.6698526 0.5668815 +0.8968787 0.6698526 0.5668815 +0.9125621 0.6698526 0.5668815 +0.9278974 0.6698526 0.5668815 +0.9429048 0.6698526 0.5668815 +0.9576028 0.6698526 0.5668815 +0.9720079 0.6698526 0.5668815 +0.9861357 0.6698526 0.5668815 +1 0.6698526 0.5668815 +0 0.6925839 0.5668815 +0.1939468 0.6925839 0.5668815 +0.2773041 0.6925839 0.5668815 +0.3384659 0.6925839 0.5668815 +0.3885728 0.6925839 0.5668815 +0.4317928 0.6925839 0.5668815 +0.470214 0.6925839 0.5668815 +0.5050551 0.6925839 0.5668815 +0.5370987 0.6925839 0.5668815 +0.5668815 0.6925839 0.5668815 +0.5947903 0.6925839 0.5668815 +0.6211144 0.6925839 0.5668815 +0.6460766 0.6925839 0.5668815 +0.6698526 0.6925839 0.5668815 +0.6925839 0.6925839 0.5668815 +0.7143866 0.6925839 0.5668815 +0.7353569 0.6925839 0.5668815 +0.7555758 0.6925839 0.5668815 +0.7751122 0.6925839 0.5668815 +0.7940252 0.6925839 0.5668815 +0.8123661 0.6925839 0.5668815 +0.8301795 0.6925839 0.5668815 +0.8475045 0.6925839 0.5668815 +0.8643761 0.6925839 0.5668815 +0.880825 0.6925839 0.5668815 +0.8968787 0.6925839 0.5668815 +0.9125621 0.6925839 0.5668815 +0.9278974 0.6925839 0.5668815 +0.9429048 0.6925839 0.5668815 +0.9576028 0.6925839 0.5668815 +0.9720079 0.6925839 0.5668815 +0.9861357 0.6925839 0.5668815 +1 0.6925839 0.5668815 +0 0.7143866 0.5668815 +0.1939468 0.7143866 0.5668815 +0.2773041 0.7143866 0.5668815 +0.3384659 0.7143866 0.5668815 +0.3885728 0.7143866 0.5668815 +0.4317928 0.7143866 0.5668815 +0.470214 0.7143866 0.5668815 +0.5050551 0.7143866 0.5668815 +0.5370987 0.7143866 0.5668815 +0.5668815 0.7143866 0.5668815 +0.5947903 0.7143866 0.5668815 +0.6211144 0.7143866 0.5668815 +0.6460766 0.7143866 0.5668815 +0.6698526 0.7143866 0.5668815 +0.6925839 0.7143866 0.5668815 +0.7143866 0.7143866 0.5668815 +0.7353569 0.7143866 0.5668815 +0.7555758 0.7143866 0.5668815 +0.7751122 0.7143866 0.5668815 +0.7940252 0.7143866 0.5668815 +0.8123661 0.7143866 0.5668815 +0.8301795 0.7143866 0.5668815 +0.8475045 0.7143866 0.5668815 +0.8643761 0.7143866 0.5668815 +0.880825 0.7143866 0.5668815 +0.8968787 0.7143866 0.5668815 +0.9125621 0.7143866 0.5668815 +0.9278974 0.7143866 0.5668815 +0.9429048 0.7143866 0.5668815 +0.9576028 0.7143866 0.5668815 +0.9720079 0.7143866 0.5668815 +0.9861357 0.7143866 0.5668815 +1 0.7143866 0.5668815 +0 0.7353569 0.5668815 +0.1939468 0.7353569 0.5668815 +0.2773041 0.7353569 0.5668815 +0.3384659 0.7353569 0.5668815 +0.3885728 0.7353569 0.5668815 +0.4317928 0.7353569 0.5668815 +0.470214 0.7353569 0.5668815 +0.5050551 0.7353569 0.5668815 +0.5370987 0.7353569 0.5668815 +0.5668815 0.7353569 0.5668815 +0.5947903 0.7353569 0.5668815 +0.6211144 0.7353569 0.5668815 +0.6460766 0.7353569 0.5668815 +0.6698526 0.7353569 0.5668815 +0.6925839 0.7353569 0.5668815 +0.7143866 0.7353569 0.5668815 +0.7353569 0.7353569 0.5668815 +0.7555758 0.7353569 0.5668815 +0.7751122 0.7353569 0.5668815 +0.7940252 0.7353569 0.5668815 +0.8123661 0.7353569 0.5668815 +0.8301795 0.7353569 0.5668815 +0.8475045 0.7353569 0.5668815 +0.8643761 0.7353569 0.5668815 +0.880825 0.7353569 0.5668815 +0.8968787 0.7353569 0.5668815 +0.9125621 0.7353569 0.5668815 +0.9278974 0.7353569 0.5668815 +0.9429048 0.7353569 0.5668815 +0.9576028 0.7353569 0.5668815 +0.9720079 0.7353569 0.5668815 +0.9861357 0.7353569 0.5668815 +1 0.7353569 0.5668815 +0 0.7555758 0.5668815 +0.1939468 0.7555758 0.5668815 +0.2773041 0.7555758 0.5668815 +0.3384659 0.7555758 0.5668815 +0.3885728 0.7555758 0.5668815 +0.4317928 0.7555758 0.5668815 +0.470214 0.7555758 0.5668815 +0.5050551 0.7555758 0.5668815 +0.5370987 0.7555758 0.5668815 +0.5668815 0.7555758 0.5668815 +0.5947903 0.7555758 0.5668815 +0.6211144 0.7555758 0.5668815 +0.6460766 0.7555758 0.5668815 +0.6698526 0.7555758 0.5668815 +0.6925839 0.7555758 0.5668815 +0.7143866 0.7555758 0.5668815 +0.7353569 0.7555758 0.5668815 +0.7555758 0.7555758 0.5668815 +0.7751122 0.7555758 0.5668815 +0.7940252 0.7555758 0.5668815 +0.8123661 0.7555758 0.5668815 +0.8301795 0.7555758 0.5668815 +0.8475045 0.7555758 0.5668815 +0.8643761 0.7555758 0.5668815 +0.880825 0.7555758 0.5668815 +0.8968787 0.7555758 0.5668815 +0.9125621 0.7555758 0.5668815 +0.9278974 0.7555758 0.5668815 +0.9429048 0.7555758 0.5668815 +0.9576028 0.7555758 0.5668815 +0.9720079 0.7555758 0.5668815 +0.9861357 0.7555758 0.5668815 +1 0.7555758 0.5668815 +0 0.7751122 0.5668815 +0.1939468 0.7751122 0.5668815 +0.2773041 0.7751122 0.5668815 +0.3384659 0.7751122 0.5668815 +0.3885728 0.7751122 0.5668815 +0.4317928 0.7751122 0.5668815 +0.470214 0.7751122 0.5668815 +0.5050551 0.7751122 0.5668815 +0.5370987 0.7751122 0.5668815 +0.5668815 0.7751122 0.5668815 +0.5947903 0.7751122 0.5668815 +0.6211144 0.7751122 0.5668815 +0.6460766 0.7751122 0.5668815 +0.6698526 0.7751122 0.5668815 +0.6925839 0.7751122 0.5668815 +0.7143866 0.7751122 0.5668815 +0.7353569 0.7751122 0.5668815 +0.7555758 0.7751122 0.5668815 +0.7751122 0.7751122 0.5668815 +0.7940252 0.7751122 0.5668815 +0.8123661 0.7751122 0.5668815 +0.8301795 0.7751122 0.5668815 +0.8475045 0.7751122 0.5668815 +0.8643761 0.7751122 0.5668815 +0.880825 0.7751122 0.5668815 +0.8968787 0.7751122 0.5668815 +0.9125621 0.7751122 0.5668815 +0.9278974 0.7751122 0.5668815 +0.9429048 0.7751122 0.5668815 +0.9576028 0.7751122 0.5668815 +0.9720079 0.7751122 0.5668815 +0.9861357 0.7751122 0.5668815 +1 0.7751122 0.5668815 +0 0.7940252 0.5668815 +0.1939468 0.7940252 0.5668815 +0.2773041 0.7940252 0.5668815 +0.3384659 0.7940252 0.5668815 +0.3885728 0.7940252 0.5668815 +0.4317928 0.7940252 0.5668815 +0.470214 0.7940252 0.5668815 +0.5050551 0.7940252 0.5668815 +0.5370987 0.7940252 0.5668815 +0.5668815 0.7940252 0.5668815 +0.5947903 0.7940252 0.5668815 +0.6211144 0.7940252 0.5668815 +0.6460766 0.7940252 0.5668815 +0.6698526 0.7940252 0.5668815 +0.6925839 0.7940252 0.5668815 +0.7143866 0.7940252 0.5668815 +0.7353569 0.7940252 0.5668815 +0.7555758 0.7940252 0.5668815 +0.7751122 0.7940252 0.5668815 +0.7940252 0.7940252 0.5668815 +0.8123661 0.7940252 0.5668815 +0.8301795 0.7940252 0.5668815 +0.8475045 0.7940252 0.5668815 +0.8643761 0.7940252 0.5668815 +0.880825 0.7940252 0.5668815 +0.8968787 0.7940252 0.5668815 +0.9125621 0.7940252 0.5668815 +0.9278974 0.7940252 0.5668815 +0.9429048 0.7940252 0.5668815 +0.9576028 0.7940252 0.5668815 +0.9720079 0.7940252 0.5668815 +0.9861357 0.7940252 0.5668815 +1 0.7940252 0.5668815 +0 0.8123661 0.5668815 +0.1939468 0.8123661 0.5668815 +0.2773041 0.8123661 0.5668815 +0.3384659 0.8123661 0.5668815 +0.3885728 0.8123661 0.5668815 +0.4317928 0.8123661 0.5668815 +0.470214 0.8123661 0.5668815 +0.5050551 0.8123661 0.5668815 +0.5370987 0.8123661 0.5668815 +0.5668815 0.8123661 0.5668815 +0.5947903 0.8123661 0.5668815 +0.6211144 0.8123661 0.5668815 +0.6460766 0.8123661 0.5668815 +0.6698526 0.8123661 0.5668815 +0.6925839 0.8123661 0.5668815 +0.7143866 0.8123661 0.5668815 +0.7353569 0.8123661 0.5668815 +0.7555758 0.8123661 0.5668815 +0.7751122 0.8123661 0.5668815 +0.7940252 0.8123661 0.5668815 +0.8123661 0.8123661 0.5668815 +0.8301795 0.8123661 0.5668815 +0.8475045 0.8123661 0.5668815 +0.8643761 0.8123661 0.5668815 +0.880825 0.8123661 0.5668815 +0.8968787 0.8123661 0.5668815 +0.9125621 0.8123661 0.5668815 +0.9278974 0.8123661 0.5668815 +0.9429048 0.8123661 0.5668815 +0.9576028 0.8123661 0.5668815 +0.9720079 0.8123661 0.5668815 +0.9861357 0.8123661 0.5668815 +1 0.8123661 0.5668815 +0 0.8301795 0.5668815 +0.1939468 0.8301795 0.5668815 +0.2773041 0.8301795 0.5668815 +0.3384659 0.8301795 0.5668815 +0.3885728 0.8301795 0.5668815 +0.4317928 0.8301795 0.5668815 +0.470214 0.8301795 0.5668815 +0.5050551 0.8301795 0.5668815 +0.5370987 0.8301795 0.5668815 +0.5668815 0.8301795 0.5668815 +0.5947903 0.8301795 0.5668815 +0.6211144 0.8301795 0.5668815 +0.6460766 0.8301795 0.5668815 +0.6698526 0.8301795 0.5668815 +0.6925839 0.8301795 0.5668815 +0.7143866 0.8301795 0.5668815 +0.7353569 0.8301795 0.5668815 +0.7555758 0.8301795 0.5668815 +0.7751122 0.8301795 0.5668815 +0.7940252 0.8301795 0.5668815 +0.8123661 0.8301795 0.5668815 +0.8301795 0.8301795 0.5668815 +0.8475045 0.8301795 0.5668815 +0.8643761 0.8301795 0.5668815 +0.880825 0.8301795 0.5668815 +0.8968787 0.8301795 0.5668815 +0.9125621 0.8301795 0.5668815 +0.9278974 0.8301795 0.5668815 +0.9429048 0.8301795 0.5668815 +0.9576028 0.8301795 0.5668815 +0.9720079 0.8301795 0.5668815 +0.9861357 0.8301795 0.5668815 +1 0.8301795 0.5668815 +0 0.8475045 0.5668815 +0.1939468 0.8475045 0.5668815 +0.2773041 0.8475045 0.5668815 +0.3384659 0.8475045 0.5668815 +0.3885728 0.8475045 0.5668815 +0.4317928 0.8475045 0.5668815 +0.470214 0.8475045 0.5668815 +0.5050551 0.8475045 0.5668815 +0.5370987 0.8475045 0.5668815 +0.5668815 0.8475045 0.5668815 +0.5947903 0.8475045 0.5668815 +0.6211144 0.8475045 0.5668815 +0.6460766 0.8475045 0.5668815 +0.6698526 0.8475045 0.5668815 +0.6925839 0.8475045 0.5668815 +0.7143866 0.8475045 0.5668815 +0.7353569 0.8475045 0.5668815 +0.7555758 0.8475045 0.5668815 +0.7751122 0.8475045 0.5668815 +0.7940252 0.8475045 0.5668815 +0.8123661 0.8475045 0.5668815 +0.8301795 0.8475045 0.5668815 +0.8475045 0.8475045 0.5668815 +0.8643761 0.8475045 0.5668815 +0.880825 0.8475045 0.5668815 +0.8968787 0.8475045 0.5668815 +0.9125621 0.8475045 0.5668815 +0.9278974 0.8475045 0.5668815 +0.9429048 0.8475045 0.5668815 +0.9576028 0.8475045 0.5668815 +0.9720079 0.8475045 0.5668815 +0.9861357 0.8475045 0.5668815 +1 0.8475045 0.5668815 +0 0.8643761 0.5668815 +0.1939468 0.8643761 0.5668815 +0.2773041 0.8643761 0.5668815 +0.3384659 0.8643761 0.5668815 +0.3885728 0.8643761 0.5668815 +0.4317928 0.8643761 0.5668815 +0.470214 0.8643761 0.5668815 +0.5050551 0.8643761 0.5668815 +0.5370987 0.8643761 0.5668815 +0.5668815 0.8643761 0.5668815 +0.5947903 0.8643761 0.5668815 +0.6211144 0.8643761 0.5668815 +0.6460766 0.8643761 0.5668815 +0.6698526 0.8643761 0.5668815 +0.6925839 0.8643761 0.5668815 +0.7143866 0.8643761 0.5668815 +0.7353569 0.8643761 0.5668815 +0.7555758 0.8643761 0.5668815 +0.7751122 0.8643761 0.5668815 +0.7940252 0.8643761 0.5668815 +0.8123661 0.8643761 0.5668815 +0.8301795 0.8643761 0.5668815 +0.8475045 0.8643761 0.5668815 +0.8643761 0.8643761 0.5668815 +0.880825 0.8643761 0.5668815 +0.8968787 0.8643761 0.5668815 +0.9125621 0.8643761 0.5668815 +0.9278974 0.8643761 0.5668815 +0.9429048 0.8643761 0.5668815 +0.9576028 0.8643761 0.5668815 +0.9720079 0.8643761 0.5668815 +0.9861357 0.8643761 0.5668815 +1 0.8643761 0.5668815 +0 0.880825 0.5668815 +0.1939468 0.880825 0.5668815 +0.2773041 0.880825 0.5668815 +0.3384659 0.880825 0.5668815 +0.3885728 0.880825 0.5668815 +0.4317928 0.880825 0.5668815 +0.470214 0.880825 0.5668815 +0.5050551 0.880825 0.5668815 +0.5370987 0.880825 0.5668815 +0.5668815 0.880825 0.5668815 +0.5947903 0.880825 0.5668815 +0.6211144 0.880825 0.5668815 +0.6460766 0.880825 0.5668815 +0.6698526 0.880825 0.5668815 +0.6925839 0.880825 0.5668815 +0.7143866 0.880825 0.5668815 +0.7353569 0.880825 0.5668815 +0.7555758 0.880825 0.5668815 +0.7751122 0.880825 0.5668815 +0.7940252 0.880825 0.5668815 +0.8123661 0.880825 0.5668815 +0.8301795 0.880825 0.5668815 +0.8475045 0.880825 0.5668815 +0.8643761 0.880825 0.5668815 +0.880825 0.880825 0.5668815 +0.8968787 0.880825 0.5668815 +0.9125621 0.880825 0.5668815 +0.9278974 0.880825 0.5668815 +0.9429048 0.880825 0.5668815 +0.9576028 0.880825 0.5668815 +0.9720079 0.880825 0.5668815 +0.9861357 0.880825 0.5668815 +1 0.880825 0.5668815 +0 0.8968787 0.5668815 +0.1939468 0.8968787 0.5668815 +0.2773041 0.8968787 0.5668815 +0.3384659 0.8968787 0.5668815 +0.3885728 0.8968787 0.5668815 +0.4317928 0.8968787 0.5668815 +0.470214 0.8968787 0.5668815 +0.5050551 0.8968787 0.5668815 +0.5370987 0.8968787 0.5668815 +0.5668815 0.8968787 0.5668815 +0.5947903 0.8968787 0.5668815 +0.6211144 0.8968787 0.5668815 +0.6460766 0.8968787 0.5668815 +0.6698526 0.8968787 0.5668815 +0.6925839 0.8968787 0.5668815 +0.7143866 0.8968787 0.5668815 +0.7353569 0.8968787 0.5668815 +0.7555758 0.8968787 0.5668815 +0.7751122 0.8968787 0.5668815 +0.7940252 0.8968787 0.5668815 +0.8123661 0.8968787 0.5668815 +0.8301795 0.8968787 0.5668815 +0.8475045 0.8968787 0.5668815 +0.8643761 0.8968787 0.5668815 +0.880825 0.8968787 0.5668815 +0.8968787 0.8968787 0.5668815 +0.9125621 0.8968787 0.5668815 +0.9278974 0.8968787 0.5668815 +0.9429048 0.8968787 0.5668815 +0.9576028 0.8968787 0.5668815 +0.9720079 0.8968787 0.5668815 +0.9861357 0.8968787 0.5668815 +1 0.8968787 0.5668815 +0 0.9125621 0.5668815 +0.1939468 0.9125621 0.5668815 +0.2773041 0.9125621 0.5668815 +0.3384659 0.9125621 0.5668815 +0.3885728 0.9125621 0.5668815 +0.4317928 0.9125621 0.5668815 +0.470214 0.9125621 0.5668815 +0.5050551 0.9125621 0.5668815 +0.5370987 0.9125621 0.5668815 +0.5668815 0.9125621 0.5668815 +0.5947903 0.9125621 0.5668815 +0.6211144 0.9125621 0.5668815 +0.6460766 0.9125621 0.5668815 +0.6698526 0.9125621 0.5668815 +0.6925839 0.9125621 0.5668815 +0.7143866 0.9125621 0.5668815 +0.7353569 0.9125621 0.5668815 +0.7555758 0.9125621 0.5668815 +0.7751122 0.9125621 0.5668815 +0.7940252 0.9125621 0.5668815 +0.8123661 0.9125621 0.5668815 +0.8301795 0.9125621 0.5668815 +0.8475045 0.9125621 0.5668815 +0.8643761 0.9125621 0.5668815 +0.880825 0.9125621 0.5668815 +0.8968787 0.9125621 0.5668815 +0.9125621 0.9125621 0.5668815 +0.9278974 0.9125621 0.5668815 +0.9429048 0.9125621 0.5668815 +0.9576028 0.9125621 0.5668815 +0.9720079 0.9125621 0.5668815 +0.9861357 0.9125621 0.5668815 +1 0.9125621 0.5668815 +0 0.9278974 0.5668815 +0.1939468 0.9278974 0.5668815 +0.2773041 0.9278974 0.5668815 +0.3384659 0.9278974 0.5668815 +0.3885728 0.9278974 0.5668815 +0.4317928 0.9278974 0.5668815 +0.470214 0.9278974 0.5668815 +0.5050551 0.9278974 0.5668815 +0.5370987 0.9278974 0.5668815 +0.5668815 0.9278974 0.5668815 +0.5947903 0.9278974 0.5668815 +0.6211144 0.9278974 0.5668815 +0.6460766 0.9278974 0.5668815 +0.6698526 0.9278974 0.5668815 +0.6925839 0.9278974 0.5668815 +0.7143866 0.9278974 0.5668815 +0.7353569 0.9278974 0.5668815 +0.7555758 0.9278974 0.5668815 +0.7751122 0.9278974 0.5668815 +0.7940252 0.9278974 0.5668815 +0.8123661 0.9278974 0.5668815 +0.8301795 0.9278974 0.5668815 +0.8475045 0.9278974 0.5668815 +0.8643761 0.9278974 0.5668815 +0.880825 0.9278974 0.5668815 +0.8968787 0.9278974 0.5668815 +0.9125621 0.9278974 0.5668815 +0.9278974 0.9278974 0.5668815 +0.9429048 0.9278974 0.5668815 +0.9576028 0.9278974 0.5668815 +0.9720079 0.9278974 0.5668815 +0.9861357 0.9278974 0.5668815 +1 0.9278974 0.5668815 +0 0.9429048 0.5668815 +0.1939468 0.9429048 0.5668815 +0.2773041 0.9429048 0.5668815 +0.3384659 0.9429048 0.5668815 +0.3885728 0.9429048 0.5668815 +0.4317928 0.9429048 0.5668815 +0.470214 0.9429048 0.5668815 +0.5050551 0.9429048 0.5668815 +0.5370987 0.9429048 0.5668815 +0.5668815 0.9429048 0.5668815 +0.5947903 0.9429048 0.5668815 +0.6211144 0.9429048 0.5668815 +0.6460766 0.9429048 0.5668815 +0.6698526 0.9429048 0.5668815 +0.6925839 0.9429048 0.5668815 +0.7143866 0.9429048 0.5668815 +0.7353569 0.9429048 0.5668815 +0.7555758 0.9429048 0.5668815 +0.7751122 0.9429048 0.5668815 +0.7940252 0.9429048 0.5668815 +0.8123661 0.9429048 0.5668815 +0.8301795 0.9429048 0.5668815 +0.8475045 0.9429048 0.5668815 +0.8643761 0.9429048 0.5668815 +0.880825 0.9429048 0.5668815 +0.8968787 0.9429048 0.5668815 +0.9125621 0.9429048 0.5668815 +0.9278974 0.9429048 0.5668815 +0.9429048 0.9429048 0.5668815 +0.9576028 0.9429048 0.5668815 +0.9720079 0.9429048 0.5668815 +0.9861357 0.9429048 0.5668815 +1 0.9429048 0.5668815 +0 0.9576028 0.5668815 +0.1939468 0.9576028 0.5668815 +0.2773041 0.9576028 0.5668815 +0.3384659 0.9576028 0.5668815 +0.3885728 0.9576028 0.5668815 +0.4317928 0.9576028 0.5668815 +0.470214 0.9576028 0.5668815 +0.5050551 0.9576028 0.5668815 +0.5370987 0.9576028 0.5668815 +0.5668815 0.9576028 0.5668815 +0.5947903 0.9576028 0.5668815 +0.6211144 0.9576028 0.5668815 +0.6460766 0.9576028 0.5668815 +0.6698526 0.9576028 0.5668815 +0.6925839 0.9576028 0.5668815 +0.7143866 0.9576028 0.5668815 +0.7353569 0.9576028 0.5668815 +0.7555758 0.9576028 0.5668815 +0.7751122 0.9576028 0.5668815 +0.7940252 0.9576028 0.5668815 +0.8123661 0.9576028 0.5668815 +0.8301795 0.9576028 0.5668815 +0.8475045 0.9576028 0.5668815 +0.8643761 0.9576028 0.5668815 +0.880825 0.9576028 0.5668815 +0.8968787 0.9576028 0.5668815 +0.9125621 0.9576028 0.5668815 +0.9278974 0.9576028 0.5668815 +0.9429048 0.9576028 0.5668815 +0.9576028 0.9576028 0.5668815 +0.9720079 0.9576028 0.5668815 +0.9861357 0.9576028 0.5668815 +1 0.9576028 0.5668815 +0 0.9720079 0.5668815 +0.1939468 0.9720079 0.5668815 +0.2773041 0.9720079 0.5668815 +0.3384659 0.9720079 0.5668815 +0.3885728 0.9720079 0.5668815 +0.4317928 0.9720079 0.5668815 +0.470214 0.9720079 0.5668815 +0.5050551 0.9720079 0.5668815 +0.5370987 0.9720079 0.5668815 +0.5668815 0.9720079 0.5668815 +0.5947903 0.9720079 0.5668815 +0.6211144 0.9720079 0.5668815 +0.6460766 0.9720079 0.5668815 +0.6698526 0.9720079 0.5668815 +0.6925839 0.9720079 0.5668815 +0.7143866 0.9720079 0.5668815 +0.7353569 0.9720079 0.5668815 +0.7555758 0.9720079 0.5668815 +0.7751122 0.9720079 0.5668815 +0.7940252 0.9720079 0.5668815 +0.8123661 0.9720079 0.5668815 +0.8301795 0.9720079 0.5668815 +0.8475045 0.9720079 0.5668815 +0.8643761 0.9720079 0.5668815 +0.880825 0.9720079 0.5668815 +0.8968787 0.9720079 0.5668815 +0.9125621 0.9720079 0.5668815 +0.9278974 0.9720079 0.5668815 +0.9429048 0.9720079 0.5668815 +0.9576028 0.9720079 0.5668815 +0.9720079 0.9720079 0.5668815 +0.9861357 0.9720079 0.5668815 +1 0.9720079 0.5668815 +0 0.9861357 0.5668815 +0.1939468 0.9861357 0.5668815 +0.2773041 0.9861357 0.5668815 +0.3384659 0.9861357 0.5668815 +0.3885728 0.9861357 0.5668815 +0.4317928 0.9861357 0.5668815 +0.470214 0.9861357 0.5668815 +0.5050551 0.9861357 0.5668815 +0.5370987 0.9861357 0.5668815 +0.5668815 0.9861357 0.5668815 +0.5947903 0.9861357 0.5668815 +0.6211144 0.9861357 0.5668815 +0.6460766 0.9861357 0.5668815 +0.6698526 0.9861357 0.5668815 +0.6925839 0.9861357 0.5668815 +0.7143866 0.9861357 0.5668815 +0.7353569 0.9861357 0.5668815 +0.7555758 0.9861357 0.5668815 +0.7751122 0.9861357 0.5668815 +0.7940252 0.9861357 0.5668815 +0.8123661 0.9861357 0.5668815 +0.8301795 0.9861357 0.5668815 +0.8475045 0.9861357 0.5668815 +0.8643761 0.9861357 0.5668815 +0.880825 0.9861357 0.5668815 +0.8968787 0.9861357 0.5668815 +0.9125621 0.9861357 0.5668815 +0.9278974 0.9861357 0.5668815 +0.9429048 0.9861357 0.5668815 +0.9576028 0.9861357 0.5668815 +0.9720079 0.9861357 0.5668815 +0.9861357 0.9861357 0.5668815 +1 0.9861357 0.5668815 +0 1 0.5668815 +0.1939468 1 0.5668815 +0.2773041 1 0.5668815 +0.3384659 1 0.5668815 +0.3885728 1 0.5668815 +0.4317928 1 0.5668815 +0.470214 1 0.5668815 +0.5050551 1 0.5668815 +0.5370987 1 0.5668815 +0.5668815 1 0.5668815 +0.5947903 1 0.5668815 +0.6211144 1 0.5668815 +0.6460766 1 0.5668815 +0.6698526 1 0.5668815 +0.6925839 1 0.5668815 +0.7143866 1 0.5668815 +0.7353569 1 0.5668815 +0.7555758 1 0.5668815 +0.7751122 1 0.5668815 +0.7940252 1 0.5668815 +0.8123661 1 0.5668815 +0.8301795 1 0.5668815 +0.8475045 1 0.5668815 +0.8643761 1 0.5668815 +0.880825 1 0.5668815 +0.8968787 1 0.5668815 +0.9125621 1 0.5668815 +0.9278974 1 0.5668815 +0.9429048 1 0.5668815 +0.9576028 1 0.5668815 +0.9720079 1 0.5668815 +0.9861357 1 0.5668815 +1 1 0.5668815 +0 0 0.5947903 +0.1939468 0 0.5947903 +0.2773041 0 0.5947903 +0.3384659 0 0.5947903 +0.3885728 0 0.5947903 +0.4317928 0 0.5947903 +0.470214 0 0.5947903 +0.5050551 0 0.5947903 +0.5370987 0 0.5947903 +0.5668815 0 0.5947903 +0.5947903 0 0.5947903 +0.6211144 0 0.5947903 +0.6460766 0 0.5947903 +0.6698526 0 0.5947903 +0.6925839 0 0.5947903 +0.7143866 0 0.5947903 +0.7353569 0 0.5947903 +0.7555758 0 0.5947903 +0.7751122 0 0.5947903 +0.7940252 0 0.5947903 +0.8123661 0 0.5947903 +0.8301795 0 0.5947903 +0.8475045 0 0.5947903 +0.8643761 0 0.5947903 +0.880825 0 0.5947903 +0.8968787 0 0.5947903 +0.9125621 0 0.5947903 +0.9278974 0 0.5947903 +0.9429048 0 0.5947903 +0.9576028 0 0.5947903 +0.9720079 0 0.5947903 +0.9861357 0 0.5947903 +1 0 0.5947903 +0 0.1939468 0.5947903 +0.1939468 0.1939468 0.5947903 +0.2773041 0.1939468 0.5947903 +0.3384659 0.1939468 0.5947903 +0.3885728 0.1939468 0.5947903 +0.4317928 0.1939468 0.5947903 +0.470214 0.1939468 0.5947903 +0.5050551 0.1939468 0.5947903 +0.5370987 0.1939468 0.5947903 +0.5668815 0.1939468 0.5947903 +0.5947903 0.1939468 0.5947903 +0.6211144 0.1939468 0.5947903 +0.6460766 0.1939468 0.5947903 +0.6698526 0.1939468 0.5947903 +0.6925839 0.1939468 0.5947903 +0.7143866 0.1939468 0.5947903 +0.7353569 0.1939468 0.5947903 +0.7555758 0.1939468 0.5947903 +0.7751122 0.1939468 0.5947903 +0.7940252 0.1939468 0.5947903 +0.8123661 0.1939468 0.5947903 +0.8301795 0.1939468 0.5947903 +0.8475045 0.1939468 0.5947903 +0.8643761 0.1939468 0.5947903 +0.880825 0.1939468 0.5947903 +0.8968787 0.1939468 0.5947903 +0.9125621 0.1939468 0.5947903 +0.9278974 0.1939468 0.5947903 +0.9429048 0.1939468 0.5947903 +0.9576028 0.1939468 0.5947903 +0.9720079 0.1939468 0.5947903 +0.9861357 0.1939468 0.5947903 +1 0.1939468 0.5947903 +0 0.2773041 0.5947903 +0.1939468 0.2773041 0.5947903 +0.2773041 0.2773041 0.5947903 +0.3384659 0.2773041 0.5947903 +0.3885728 0.2773041 0.5947903 +0.4317928 0.2773041 0.5947903 +0.470214 0.2773041 0.5947903 +0.5050551 0.2773041 0.5947903 +0.5370987 0.2773041 0.5947903 +0.5668815 0.2773041 0.5947903 +0.5947903 0.2773041 0.5947903 +0.6211144 0.2773041 0.5947903 +0.6460766 0.2773041 0.5947903 +0.6698526 0.2773041 0.5947903 +0.6925839 0.2773041 0.5947903 +0.7143866 0.2773041 0.5947903 +0.7353569 0.2773041 0.5947903 +0.7555758 0.2773041 0.5947903 +0.7751122 0.2773041 0.5947903 +0.7940252 0.2773041 0.5947903 +0.8123661 0.2773041 0.5947903 +0.8301795 0.2773041 0.5947903 +0.8475045 0.2773041 0.5947903 +0.8643761 0.2773041 0.5947903 +0.880825 0.2773041 0.5947903 +0.8968787 0.2773041 0.5947903 +0.9125621 0.2773041 0.5947903 +0.9278974 0.2773041 0.5947903 +0.9429048 0.2773041 0.5947903 +0.9576028 0.2773041 0.5947903 +0.9720079 0.2773041 0.5947903 +0.9861357 0.2773041 0.5947903 +1 0.2773041 0.5947903 +0 0.3384659 0.5947903 +0.1939468 0.3384659 0.5947903 +0.2773041 0.3384659 0.5947903 +0.3384659 0.3384659 0.5947903 +0.3885728 0.3384659 0.5947903 +0.4317928 0.3384659 0.5947903 +0.470214 0.3384659 0.5947903 +0.5050551 0.3384659 0.5947903 +0.5370987 0.3384659 0.5947903 +0.5668815 0.3384659 0.5947903 +0.5947903 0.3384659 0.5947903 +0.6211144 0.3384659 0.5947903 +0.6460766 0.3384659 0.5947903 +0.6698526 0.3384659 0.5947903 +0.6925839 0.3384659 0.5947903 +0.7143866 0.3384659 0.5947903 +0.7353569 0.3384659 0.5947903 +0.7555758 0.3384659 0.5947903 +0.7751122 0.3384659 0.5947903 +0.7940252 0.3384659 0.5947903 +0.8123661 0.3384659 0.5947903 +0.8301795 0.3384659 0.5947903 +0.8475045 0.3384659 0.5947903 +0.8643761 0.3384659 0.5947903 +0.880825 0.3384659 0.5947903 +0.8968787 0.3384659 0.5947903 +0.9125621 0.3384659 0.5947903 +0.9278974 0.3384659 0.5947903 +0.9429048 0.3384659 0.5947903 +0.9576028 0.3384659 0.5947903 +0.9720079 0.3384659 0.5947903 +0.9861357 0.3384659 0.5947903 +1 0.3384659 0.5947903 +0 0.3885728 0.5947903 +0.1939468 0.3885728 0.5947903 +0.2773041 0.3885728 0.5947903 +0.3384659 0.3885728 0.5947903 +0.3885728 0.3885728 0.5947903 +0.4317928 0.3885728 0.5947903 +0.470214 0.3885728 0.5947903 +0.5050551 0.3885728 0.5947903 +0.5370987 0.3885728 0.5947903 +0.5668815 0.3885728 0.5947903 +0.5947903 0.3885728 0.5947903 +0.6211144 0.3885728 0.5947903 +0.6460766 0.3885728 0.5947903 +0.6698526 0.3885728 0.5947903 +0.6925839 0.3885728 0.5947903 +0.7143866 0.3885728 0.5947903 +0.7353569 0.3885728 0.5947903 +0.7555758 0.3885728 0.5947903 +0.7751122 0.3885728 0.5947903 +0.7940252 0.3885728 0.5947903 +0.8123661 0.3885728 0.5947903 +0.8301795 0.3885728 0.5947903 +0.8475045 0.3885728 0.5947903 +0.8643761 0.3885728 0.5947903 +0.880825 0.3885728 0.5947903 +0.8968787 0.3885728 0.5947903 +0.9125621 0.3885728 0.5947903 +0.9278974 0.3885728 0.5947903 +0.9429048 0.3885728 0.5947903 +0.9576028 0.3885728 0.5947903 +0.9720079 0.3885728 0.5947903 +0.9861357 0.3885728 0.5947903 +1 0.3885728 0.5947903 +0 0.4317928 0.5947903 +0.1939468 0.4317928 0.5947903 +0.2773041 0.4317928 0.5947903 +0.3384659 0.4317928 0.5947903 +0.3885728 0.4317928 0.5947903 +0.4317928 0.4317928 0.5947903 +0.470214 0.4317928 0.5947903 +0.5050551 0.4317928 0.5947903 +0.5370987 0.4317928 0.5947903 +0.5668815 0.4317928 0.5947903 +0.5947903 0.4317928 0.5947903 +0.6211144 0.4317928 0.5947903 +0.6460766 0.4317928 0.5947903 +0.6698526 0.4317928 0.5947903 +0.6925839 0.4317928 0.5947903 +0.7143866 0.4317928 0.5947903 +0.7353569 0.4317928 0.5947903 +0.7555758 0.4317928 0.5947903 +0.7751122 0.4317928 0.5947903 +0.7940252 0.4317928 0.5947903 +0.8123661 0.4317928 0.5947903 +0.8301795 0.4317928 0.5947903 +0.8475045 0.4317928 0.5947903 +0.8643761 0.4317928 0.5947903 +0.880825 0.4317928 0.5947903 +0.8968787 0.4317928 0.5947903 +0.9125621 0.4317928 0.5947903 +0.9278974 0.4317928 0.5947903 +0.9429048 0.4317928 0.5947903 +0.9576028 0.4317928 0.5947903 +0.9720079 0.4317928 0.5947903 +0.9861357 0.4317928 0.5947903 +1 0.4317928 0.5947903 +0 0.470214 0.5947903 +0.1939468 0.470214 0.5947903 +0.2773041 0.470214 0.5947903 +0.3384659 0.470214 0.5947903 +0.3885728 0.470214 0.5947903 +0.4317928 0.470214 0.5947903 +0.470214 0.470214 0.5947903 +0.5050551 0.470214 0.5947903 +0.5370987 0.470214 0.5947903 +0.5668815 0.470214 0.5947903 +0.5947903 0.470214 0.5947903 +0.6211144 0.470214 0.5947903 +0.6460766 0.470214 0.5947903 +0.6698526 0.470214 0.5947903 +0.6925839 0.470214 0.5947903 +0.7143866 0.470214 0.5947903 +0.7353569 0.470214 0.5947903 +0.7555758 0.470214 0.5947903 +0.7751122 0.470214 0.5947903 +0.7940252 0.470214 0.5947903 +0.8123661 0.470214 0.5947903 +0.8301795 0.470214 0.5947903 +0.8475045 0.470214 0.5947903 +0.8643761 0.470214 0.5947903 +0.880825 0.470214 0.5947903 +0.8968787 0.470214 0.5947903 +0.9125621 0.470214 0.5947903 +0.9278974 0.470214 0.5947903 +0.9429048 0.470214 0.5947903 +0.9576028 0.470214 0.5947903 +0.9720079 0.470214 0.5947903 +0.9861357 0.470214 0.5947903 +1 0.470214 0.5947903 +0 0.5050551 0.5947903 +0.1939468 0.5050551 0.5947903 +0.2773041 0.5050551 0.5947903 +0.3384659 0.5050551 0.5947903 +0.3885728 0.5050551 0.5947903 +0.4317928 0.5050551 0.5947903 +0.470214 0.5050551 0.5947903 +0.5050551 0.5050551 0.5947903 +0.5370987 0.5050551 0.5947903 +0.5668815 0.5050551 0.5947903 +0.5947903 0.5050551 0.5947903 +0.6211144 0.5050551 0.5947903 +0.6460766 0.5050551 0.5947903 +0.6698526 0.5050551 0.5947903 +0.6925839 0.5050551 0.5947903 +0.7143866 0.5050551 0.5947903 +0.7353569 0.5050551 0.5947903 +0.7555758 0.5050551 0.5947903 +0.7751122 0.5050551 0.5947903 +0.7940252 0.5050551 0.5947903 +0.8123661 0.5050551 0.5947903 +0.8301795 0.5050551 0.5947903 +0.8475045 0.5050551 0.5947903 +0.8643761 0.5050551 0.5947903 +0.880825 0.5050551 0.5947903 +0.8968787 0.5050551 0.5947903 +0.9125621 0.5050551 0.5947903 +0.9278974 0.5050551 0.5947903 +0.9429048 0.5050551 0.5947903 +0.9576028 0.5050551 0.5947903 +0.9720079 0.5050551 0.5947903 +0.9861357 0.5050551 0.5947903 +1 0.5050551 0.5947903 +0 0.5370987 0.5947903 +0.1939468 0.5370987 0.5947903 +0.2773041 0.5370987 0.5947903 +0.3384659 0.5370987 0.5947903 +0.3885728 0.5370987 0.5947903 +0.4317928 0.5370987 0.5947903 +0.470214 0.5370987 0.5947903 +0.5050551 0.5370987 0.5947903 +0.5370987 0.5370987 0.5947903 +0.5668815 0.5370987 0.5947903 +0.5947903 0.5370987 0.5947903 +0.6211144 0.5370987 0.5947903 +0.6460766 0.5370987 0.5947903 +0.6698526 0.5370987 0.5947903 +0.6925839 0.5370987 0.5947903 +0.7143866 0.5370987 0.5947903 +0.7353569 0.5370987 0.5947903 +0.7555758 0.5370987 0.5947903 +0.7751122 0.5370987 0.5947903 +0.7940252 0.5370987 0.5947903 +0.8123661 0.5370987 0.5947903 +0.8301795 0.5370987 0.5947903 +0.8475045 0.5370987 0.5947903 +0.8643761 0.5370987 0.5947903 +0.880825 0.5370987 0.5947903 +0.8968787 0.5370987 0.5947903 +0.9125621 0.5370987 0.5947903 +0.9278974 0.5370987 0.5947903 +0.9429048 0.5370987 0.5947903 +0.9576028 0.5370987 0.5947903 +0.9720079 0.5370987 0.5947903 +0.9861357 0.5370987 0.5947903 +1 0.5370987 0.5947903 +0 0.5668815 0.5947903 +0.1939468 0.5668815 0.5947903 +0.2773041 0.5668815 0.5947903 +0.3384659 0.5668815 0.5947903 +0.3885728 0.5668815 0.5947903 +0.4317928 0.5668815 0.5947903 +0.470214 0.5668815 0.5947903 +0.5050551 0.5668815 0.5947903 +0.5370987 0.5668815 0.5947903 +0.5668815 0.5668815 0.5947903 +0.5947903 0.5668815 0.5947903 +0.6211144 0.5668815 0.5947903 +0.6460766 0.5668815 0.5947903 +0.6698526 0.5668815 0.5947903 +0.6925839 0.5668815 0.5947903 +0.7143866 0.5668815 0.5947903 +0.7353569 0.5668815 0.5947903 +0.7555758 0.5668815 0.5947903 +0.7751122 0.5668815 0.5947903 +0.7940252 0.5668815 0.5947903 +0.8123661 0.5668815 0.5947903 +0.8301795 0.5668815 0.5947903 +0.8475045 0.5668815 0.5947903 +0.8643761 0.5668815 0.5947903 +0.880825 0.5668815 0.5947903 +0.8968787 0.5668815 0.5947903 +0.9125621 0.5668815 0.5947903 +0.9278974 0.5668815 0.5947903 +0.9429048 0.5668815 0.5947903 +0.9576028 0.5668815 0.5947903 +0.9720079 0.5668815 0.5947903 +0.9861357 0.5668815 0.5947903 +1 0.5668815 0.5947903 +0 0.5947903 0.5947903 +0.1939468 0.5947903 0.5947903 +0.2773041 0.5947903 0.5947903 +0.3384659 0.5947903 0.5947903 +0.3885728 0.5947903 0.5947903 +0.4317928 0.5947903 0.5947903 +0.470214 0.5947903 0.5947903 +0.5050551 0.5947903 0.5947903 +0.5370987 0.5947903 0.5947903 +0.5668815 0.5947903 0.5947903 +0.5947903 0.5947903 0.5947903 +0.6211144 0.5947903 0.5947903 +0.6460766 0.5947903 0.5947903 +0.6698526 0.5947903 0.5947903 +0.6925839 0.5947903 0.5947903 +0.7143866 0.5947903 0.5947903 +0.7353569 0.5947903 0.5947903 +0.7555758 0.5947903 0.5947903 +0.7751122 0.5947903 0.5947903 +0.7940252 0.5947903 0.5947903 +0.8123661 0.5947903 0.5947903 +0.8301795 0.5947903 0.5947903 +0.8475045 0.5947903 0.5947903 +0.8643761 0.5947903 0.5947903 +0.880825 0.5947903 0.5947903 +0.8968787 0.5947903 0.5947903 +0.9125621 0.5947903 0.5947903 +0.9278974 0.5947903 0.5947903 +0.9429048 0.5947903 0.5947903 +0.9576028 0.5947903 0.5947903 +0.9720079 0.5947903 0.5947903 +0.9861357 0.5947903 0.5947903 +1 0.5947903 0.5947903 +0 0.6211144 0.5947903 +0.1939468 0.6211144 0.5947903 +0.2773041 0.6211144 0.5947903 +0.3384659 0.6211144 0.5947903 +0.3885728 0.6211144 0.5947903 +0.4317928 0.6211144 0.5947903 +0.470214 0.6211144 0.5947903 +0.5050551 0.6211144 0.5947903 +0.5370987 0.6211144 0.5947903 +0.5668815 0.6211144 0.5947903 +0.5947903 0.6211144 0.5947903 +0.6211144 0.6211144 0.5947903 +0.6460766 0.6211144 0.5947903 +0.6698526 0.6211144 0.5947903 +0.6925839 0.6211144 0.5947903 +0.7143866 0.6211144 0.5947903 +0.7353569 0.6211144 0.5947903 +0.7555758 0.6211144 0.5947903 +0.7751122 0.6211144 0.5947903 +0.7940252 0.6211144 0.5947903 +0.8123661 0.6211144 0.5947903 +0.8301795 0.6211144 0.5947903 +0.8475045 0.6211144 0.5947903 +0.8643761 0.6211144 0.5947903 +0.880825 0.6211144 0.5947903 +0.8968787 0.6211144 0.5947903 +0.9125621 0.6211144 0.5947903 +0.9278974 0.6211144 0.5947903 +0.9429048 0.6211144 0.5947903 +0.9576028 0.6211144 0.5947903 +0.9720079 0.6211144 0.5947903 +0.9861357 0.6211144 0.5947903 +1 0.6211144 0.5947903 +0 0.6460766 0.5947903 +0.1939468 0.6460766 0.5947903 +0.2773041 0.6460766 0.5947903 +0.3384659 0.6460766 0.5947903 +0.3885728 0.6460766 0.5947903 +0.4317928 0.6460766 0.5947903 +0.470214 0.6460766 0.5947903 +0.5050551 0.6460766 0.5947903 +0.5370987 0.6460766 0.5947903 +0.5668815 0.6460766 0.5947903 +0.5947903 0.6460766 0.5947903 +0.6211144 0.6460766 0.5947903 +0.6460766 0.6460766 0.5947903 +0.6698526 0.6460766 0.5947903 +0.6925839 0.6460766 0.5947903 +0.7143866 0.6460766 0.5947903 +0.7353569 0.6460766 0.5947903 +0.7555758 0.6460766 0.5947903 +0.7751122 0.6460766 0.5947903 +0.7940252 0.6460766 0.5947903 +0.8123661 0.6460766 0.5947903 +0.8301795 0.6460766 0.5947903 +0.8475045 0.6460766 0.5947903 +0.8643761 0.6460766 0.5947903 +0.880825 0.6460766 0.5947903 +0.8968787 0.6460766 0.5947903 +0.9125621 0.6460766 0.5947903 +0.9278974 0.6460766 0.5947903 +0.9429048 0.6460766 0.5947903 +0.9576028 0.6460766 0.5947903 +0.9720079 0.6460766 0.5947903 +0.9861357 0.6460766 0.5947903 +1 0.6460766 0.5947903 +0 0.6698526 0.5947903 +0.1939468 0.6698526 0.5947903 +0.2773041 0.6698526 0.5947903 +0.3384659 0.6698526 0.5947903 +0.3885728 0.6698526 0.5947903 +0.4317928 0.6698526 0.5947903 +0.470214 0.6698526 0.5947903 +0.5050551 0.6698526 0.5947903 +0.5370987 0.6698526 0.5947903 +0.5668815 0.6698526 0.5947903 +0.5947903 0.6698526 0.5947903 +0.6211144 0.6698526 0.5947903 +0.6460766 0.6698526 0.5947903 +0.6698526 0.6698526 0.5947903 +0.6925839 0.6698526 0.5947903 +0.7143866 0.6698526 0.5947903 +0.7353569 0.6698526 0.5947903 +0.7555758 0.6698526 0.5947903 +0.7751122 0.6698526 0.5947903 +0.7940252 0.6698526 0.5947903 +0.8123661 0.6698526 0.5947903 +0.8301795 0.6698526 0.5947903 +0.8475045 0.6698526 0.5947903 +0.8643761 0.6698526 0.5947903 +0.880825 0.6698526 0.5947903 +0.8968787 0.6698526 0.5947903 +0.9125621 0.6698526 0.5947903 +0.9278974 0.6698526 0.5947903 +0.9429048 0.6698526 0.5947903 +0.9576028 0.6698526 0.5947903 +0.9720079 0.6698526 0.5947903 +0.9861357 0.6698526 0.5947903 +1 0.6698526 0.5947903 +0 0.6925839 0.5947903 +0.1939468 0.6925839 0.5947903 +0.2773041 0.6925839 0.5947903 +0.3384659 0.6925839 0.5947903 +0.3885728 0.6925839 0.5947903 +0.4317928 0.6925839 0.5947903 +0.470214 0.6925839 0.5947903 +0.5050551 0.6925839 0.5947903 +0.5370987 0.6925839 0.5947903 +0.5668815 0.6925839 0.5947903 +0.5947903 0.6925839 0.5947903 +0.6211144 0.6925839 0.5947903 +0.6460766 0.6925839 0.5947903 +0.6698526 0.6925839 0.5947903 +0.6925839 0.6925839 0.5947903 +0.7143866 0.6925839 0.5947903 +0.7353569 0.6925839 0.5947903 +0.7555758 0.6925839 0.5947903 +0.7751122 0.6925839 0.5947903 +0.7940252 0.6925839 0.5947903 +0.8123661 0.6925839 0.5947903 +0.8301795 0.6925839 0.5947903 +0.8475045 0.6925839 0.5947903 +0.8643761 0.6925839 0.5947903 +0.880825 0.6925839 0.5947903 +0.8968787 0.6925839 0.5947903 +0.9125621 0.6925839 0.5947903 +0.9278974 0.6925839 0.5947903 +0.9429048 0.6925839 0.5947903 +0.9576028 0.6925839 0.5947903 +0.9720079 0.6925839 0.5947903 +0.9861357 0.6925839 0.5947903 +1 0.6925839 0.5947903 +0 0.7143866 0.5947903 +0.1939468 0.7143866 0.5947903 +0.2773041 0.7143866 0.5947903 +0.3384659 0.7143866 0.5947903 +0.3885728 0.7143866 0.5947903 +0.4317928 0.7143866 0.5947903 +0.470214 0.7143866 0.5947903 +0.5050551 0.7143866 0.5947903 +0.5370987 0.7143866 0.5947903 +0.5668815 0.7143866 0.5947903 +0.5947903 0.7143866 0.5947903 +0.6211144 0.7143866 0.5947903 +0.6460766 0.7143866 0.5947903 +0.6698526 0.7143866 0.5947903 +0.6925839 0.7143866 0.5947903 +0.7143866 0.7143866 0.5947903 +0.7353569 0.7143866 0.5947903 +0.7555758 0.7143866 0.5947903 +0.7751122 0.7143866 0.5947903 +0.7940252 0.7143866 0.5947903 +0.8123661 0.7143866 0.5947903 +0.8301795 0.7143866 0.5947903 +0.8475045 0.7143866 0.5947903 +0.8643761 0.7143866 0.5947903 +0.880825 0.7143866 0.5947903 +0.8968787 0.7143866 0.5947903 +0.9125621 0.7143866 0.5947903 +0.9278974 0.7143866 0.5947903 +0.9429048 0.7143866 0.5947903 +0.9576028 0.7143866 0.5947903 +0.9720079 0.7143866 0.5947903 +0.9861357 0.7143866 0.5947903 +1 0.7143866 0.5947903 +0 0.7353569 0.5947903 +0.1939468 0.7353569 0.5947903 +0.2773041 0.7353569 0.5947903 +0.3384659 0.7353569 0.5947903 +0.3885728 0.7353569 0.5947903 +0.4317928 0.7353569 0.5947903 +0.470214 0.7353569 0.5947903 +0.5050551 0.7353569 0.5947903 +0.5370987 0.7353569 0.5947903 +0.5668815 0.7353569 0.5947903 +0.5947903 0.7353569 0.5947903 +0.6211144 0.7353569 0.5947903 +0.6460766 0.7353569 0.5947903 +0.6698526 0.7353569 0.5947903 +0.6925839 0.7353569 0.5947903 +0.7143866 0.7353569 0.5947903 +0.7353569 0.7353569 0.5947903 +0.7555758 0.7353569 0.5947903 +0.7751122 0.7353569 0.5947903 +0.7940252 0.7353569 0.5947903 +0.8123661 0.7353569 0.5947903 +0.8301795 0.7353569 0.5947903 +0.8475045 0.7353569 0.5947903 +0.8643761 0.7353569 0.5947903 +0.880825 0.7353569 0.5947903 +0.8968787 0.7353569 0.5947903 +0.9125621 0.7353569 0.5947903 +0.9278974 0.7353569 0.5947903 +0.9429048 0.7353569 0.5947903 +0.9576028 0.7353569 0.5947903 +0.9720079 0.7353569 0.5947903 +0.9861357 0.7353569 0.5947903 +1 0.7353569 0.5947903 +0 0.7555758 0.5947903 +0.1939468 0.7555758 0.5947903 +0.2773041 0.7555758 0.5947903 +0.3384659 0.7555758 0.5947903 +0.3885728 0.7555758 0.5947903 +0.4317928 0.7555758 0.5947903 +0.470214 0.7555758 0.5947903 +0.5050551 0.7555758 0.5947903 +0.5370987 0.7555758 0.5947903 +0.5668815 0.7555758 0.5947903 +0.5947903 0.7555758 0.5947903 +0.6211144 0.7555758 0.5947903 +0.6460766 0.7555758 0.5947903 +0.6698526 0.7555758 0.5947903 +0.6925839 0.7555758 0.5947903 +0.7143866 0.7555758 0.5947903 +0.7353569 0.7555758 0.5947903 +0.7555758 0.7555758 0.5947903 +0.7751122 0.7555758 0.5947903 +0.7940252 0.7555758 0.5947903 +0.8123661 0.7555758 0.5947903 +0.8301795 0.7555758 0.5947903 +0.8475045 0.7555758 0.5947903 +0.8643761 0.7555758 0.5947903 +0.880825 0.7555758 0.5947903 +0.8968787 0.7555758 0.5947903 +0.9125621 0.7555758 0.5947903 +0.9278974 0.7555758 0.5947903 +0.9429048 0.7555758 0.5947903 +0.9576028 0.7555758 0.5947903 +0.9720079 0.7555758 0.5947903 +0.9861357 0.7555758 0.5947903 +1 0.7555758 0.5947903 +0 0.7751122 0.5947903 +0.1939468 0.7751122 0.5947903 +0.2773041 0.7751122 0.5947903 +0.3384659 0.7751122 0.5947903 +0.3885728 0.7751122 0.5947903 +0.4317928 0.7751122 0.5947903 +0.470214 0.7751122 0.5947903 +0.5050551 0.7751122 0.5947903 +0.5370987 0.7751122 0.5947903 +0.5668815 0.7751122 0.5947903 +0.5947903 0.7751122 0.5947903 +0.6211144 0.7751122 0.5947903 +0.6460766 0.7751122 0.5947903 +0.6698526 0.7751122 0.5947903 +0.6925839 0.7751122 0.5947903 +0.7143866 0.7751122 0.5947903 +0.7353569 0.7751122 0.5947903 +0.7555758 0.7751122 0.5947903 +0.7751122 0.7751122 0.5947903 +0.7940252 0.7751122 0.5947903 +0.8123661 0.7751122 0.5947903 +0.8301795 0.7751122 0.5947903 +0.8475045 0.7751122 0.5947903 +0.8643761 0.7751122 0.5947903 +0.880825 0.7751122 0.5947903 +0.8968787 0.7751122 0.5947903 +0.9125621 0.7751122 0.5947903 +0.9278974 0.7751122 0.5947903 +0.9429048 0.7751122 0.5947903 +0.9576028 0.7751122 0.5947903 +0.9720079 0.7751122 0.5947903 +0.9861357 0.7751122 0.5947903 +1 0.7751122 0.5947903 +0 0.7940252 0.5947903 +0.1939468 0.7940252 0.5947903 +0.2773041 0.7940252 0.5947903 +0.3384659 0.7940252 0.5947903 +0.3885728 0.7940252 0.5947903 +0.4317928 0.7940252 0.5947903 +0.470214 0.7940252 0.5947903 +0.5050551 0.7940252 0.5947903 +0.5370987 0.7940252 0.5947903 +0.5668815 0.7940252 0.5947903 +0.5947903 0.7940252 0.5947903 +0.6211144 0.7940252 0.5947903 +0.6460766 0.7940252 0.5947903 +0.6698526 0.7940252 0.5947903 +0.6925839 0.7940252 0.5947903 +0.7143866 0.7940252 0.5947903 +0.7353569 0.7940252 0.5947903 +0.7555758 0.7940252 0.5947903 +0.7751122 0.7940252 0.5947903 +0.7940252 0.7940252 0.5947903 +0.8123661 0.7940252 0.5947903 +0.8301795 0.7940252 0.5947903 +0.8475045 0.7940252 0.5947903 +0.8643761 0.7940252 0.5947903 +0.880825 0.7940252 0.5947903 +0.8968787 0.7940252 0.5947903 +0.9125621 0.7940252 0.5947903 +0.9278974 0.7940252 0.5947903 +0.9429048 0.7940252 0.5947903 +0.9576028 0.7940252 0.5947903 +0.9720079 0.7940252 0.5947903 +0.9861357 0.7940252 0.5947903 +1 0.7940252 0.5947903 +0 0.8123661 0.5947903 +0.1939468 0.8123661 0.5947903 +0.2773041 0.8123661 0.5947903 +0.3384659 0.8123661 0.5947903 +0.3885728 0.8123661 0.5947903 +0.4317928 0.8123661 0.5947903 +0.470214 0.8123661 0.5947903 +0.5050551 0.8123661 0.5947903 +0.5370987 0.8123661 0.5947903 +0.5668815 0.8123661 0.5947903 +0.5947903 0.8123661 0.5947903 +0.6211144 0.8123661 0.5947903 +0.6460766 0.8123661 0.5947903 +0.6698526 0.8123661 0.5947903 +0.6925839 0.8123661 0.5947903 +0.7143866 0.8123661 0.5947903 +0.7353569 0.8123661 0.5947903 +0.7555758 0.8123661 0.5947903 +0.7751122 0.8123661 0.5947903 +0.7940252 0.8123661 0.5947903 +0.8123661 0.8123661 0.5947903 +0.8301795 0.8123661 0.5947903 +0.8475045 0.8123661 0.5947903 +0.8643761 0.8123661 0.5947903 +0.880825 0.8123661 0.5947903 +0.8968787 0.8123661 0.5947903 +0.9125621 0.8123661 0.5947903 +0.9278974 0.8123661 0.5947903 +0.9429048 0.8123661 0.5947903 +0.9576028 0.8123661 0.5947903 +0.9720079 0.8123661 0.5947903 +0.9861357 0.8123661 0.5947903 +1 0.8123661 0.5947903 +0 0.8301795 0.5947903 +0.1939468 0.8301795 0.5947903 +0.2773041 0.8301795 0.5947903 +0.3384659 0.8301795 0.5947903 +0.3885728 0.8301795 0.5947903 +0.4317928 0.8301795 0.5947903 +0.470214 0.8301795 0.5947903 +0.5050551 0.8301795 0.5947903 +0.5370987 0.8301795 0.5947903 +0.5668815 0.8301795 0.5947903 +0.5947903 0.8301795 0.5947903 +0.6211144 0.8301795 0.5947903 +0.6460766 0.8301795 0.5947903 +0.6698526 0.8301795 0.5947903 +0.6925839 0.8301795 0.5947903 +0.7143866 0.8301795 0.5947903 +0.7353569 0.8301795 0.5947903 +0.7555758 0.8301795 0.5947903 +0.7751122 0.8301795 0.5947903 +0.7940252 0.8301795 0.5947903 +0.8123661 0.8301795 0.5947903 +0.8301795 0.8301795 0.5947903 +0.8475045 0.8301795 0.5947903 +0.8643761 0.8301795 0.5947903 +0.880825 0.8301795 0.5947903 +0.8968787 0.8301795 0.5947903 +0.9125621 0.8301795 0.5947903 +0.9278974 0.8301795 0.5947903 +0.9429048 0.8301795 0.5947903 +0.9576028 0.8301795 0.5947903 +0.9720079 0.8301795 0.5947903 +0.9861357 0.8301795 0.5947903 +1 0.8301795 0.5947903 +0 0.8475045 0.5947903 +0.1939468 0.8475045 0.5947903 +0.2773041 0.8475045 0.5947903 +0.3384659 0.8475045 0.5947903 +0.3885728 0.8475045 0.5947903 +0.4317928 0.8475045 0.5947903 +0.470214 0.8475045 0.5947903 +0.5050551 0.8475045 0.5947903 +0.5370987 0.8475045 0.5947903 +0.5668815 0.8475045 0.5947903 +0.5947903 0.8475045 0.5947903 +0.6211144 0.8475045 0.5947903 +0.6460766 0.8475045 0.5947903 +0.6698526 0.8475045 0.5947903 +0.6925839 0.8475045 0.5947903 +0.7143866 0.8475045 0.5947903 +0.7353569 0.8475045 0.5947903 +0.7555758 0.8475045 0.5947903 +0.7751122 0.8475045 0.5947903 +0.7940252 0.8475045 0.5947903 +0.8123661 0.8475045 0.5947903 +0.8301795 0.8475045 0.5947903 +0.8475045 0.8475045 0.5947903 +0.8643761 0.8475045 0.5947903 +0.880825 0.8475045 0.5947903 +0.8968787 0.8475045 0.5947903 +0.9125621 0.8475045 0.5947903 +0.9278974 0.8475045 0.5947903 +0.9429048 0.8475045 0.5947903 +0.9576028 0.8475045 0.5947903 +0.9720079 0.8475045 0.5947903 +0.9861357 0.8475045 0.5947903 +1 0.8475045 0.5947903 +0 0.8643761 0.5947903 +0.1939468 0.8643761 0.5947903 +0.2773041 0.8643761 0.5947903 +0.3384659 0.8643761 0.5947903 +0.3885728 0.8643761 0.5947903 +0.4317928 0.8643761 0.5947903 +0.470214 0.8643761 0.5947903 +0.5050551 0.8643761 0.5947903 +0.5370987 0.8643761 0.5947903 +0.5668815 0.8643761 0.5947903 +0.5947903 0.8643761 0.5947903 +0.6211144 0.8643761 0.5947903 +0.6460766 0.8643761 0.5947903 +0.6698526 0.8643761 0.5947903 +0.6925839 0.8643761 0.5947903 +0.7143866 0.8643761 0.5947903 +0.7353569 0.8643761 0.5947903 +0.7555758 0.8643761 0.5947903 +0.7751122 0.8643761 0.5947903 +0.7940252 0.8643761 0.5947903 +0.8123661 0.8643761 0.5947903 +0.8301795 0.8643761 0.5947903 +0.8475045 0.8643761 0.5947903 +0.8643761 0.8643761 0.5947903 +0.880825 0.8643761 0.5947903 +0.8968787 0.8643761 0.5947903 +0.9125621 0.8643761 0.5947903 +0.9278974 0.8643761 0.5947903 +0.9429048 0.8643761 0.5947903 +0.9576028 0.8643761 0.5947903 +0.9720079 0.8643761 0.5947903 +0.9861357 0.8643761 0.5947903 +1 0.8643761 0.5947903 +0 0.880825 0.5947903 +0.1939468 0.880825 0.5947903 +0.2773041 0.880825 0.5947903 +0.3384659 0.880825 0.5947903 +0.3885728 0.880825 0.5947903 +0.4317928 0.880825 0.5947903 +0.470214 0.880825 0.5947903 +0.5050551 0.880825 0.5947903 +0.5370987 0.880825 0.5947903 +0.5668815 0.880825 0.5947903 +0.5947903 0.880825 0.5947903 +0.6211144 0.880825 0.5947903 +0.6460766 0.880825 0.5947903 +0.6698526 0.880825 0.5947903 +0.6925839 0.880825 0.5947903 +0.7143866 0.880825 0.5947903 +0.7353569 0.880825 0.5947903 +0.7555758 0.880825 0.5947903 +0.7751122 0.880825 0.5947903 +0.7940252 0.880825 0.5947903 +0.8123661 0.880825 0.5947903 +0.8301795 0.880825 0.5947903 +0.8475045 0.880825 0.5947903 +0.8643761 0.880825 0.5947903 +0.880825 0.880825 0.5947903 +0.8968787 0.880825 0.5947903 +0.9125621 0.880825 0.5947903 +0.9278974 0.880825 0.5947903 +0.9429048 0.880825 0.5947903 +0.9576028 0.880825 0.5947903 +0.9720079 0.880825 0.5947903 +0.9861357 0.880825 0.5947903 +1 0.880825 0.5947903 +0 0.8968787 0.5947903 +0.1939468 0.8968787 0.5947903 +0.2773041 0.8968787 0.5947903 +0.3384659 0.8968787 0.5947903 +0.3885728 0.8968787 0.5947903 +0.4317928 0.8968787 0.5947903 +0.470214 0.8968787 0.5947903 +0.5050551 0.8968787 0.5947903 +0.5370987 0.8968787 0.5947903 +0.5668815 0.8968787 0.5947903 +0.5947903 0.8968787 0.5947903 +0.6211144 0.8968787 0.5947903 +0.6460766 0.8968787 0.5947903 +0.6698526 0.8968787 0.5947903 +0.6925839 0.8968787 0.5947903 +0.7143866 0.8968787 0.5947903 +0.7353569 0.8968787 0.5947903 +0.7555758 0.8968787 0.5947903 +0.7751122 0.8968787 0.5947903 +0.7940252 0.8968787 0.5947903 +0.8123661 0.8968787 0.5947903 +0.8301795 0.8968787 0.5947903 +0.8475045 0.8968787 0.5947903 +0.8643761 0.8968787 0.5947903 +0.880825 0.8968787 0.5947903 +0.8968787 0.8968787 0.5947903 +0.9125621 0.8968787 0.5947903 +0.9278974 0.8968787 0.5947903 +0.9429048 0.8968787 0.5947903 +0.9576028 0.8968787 0.5947903 +0.9720079 0.8968787 0.5947903 +0.9861357 0.8968787 0.5947903 +1 0.8968787 0.5947903 +0 0.9125621 0.5947903 +0.1939468 0.9125621 0.5947903 +0.2773041 0.9125621 0.5947903 +0.3384659 0.9125621 0.5947903 +0.3885728 0.9125621 0.5947903 +0.4317928 0.9125621 0.5947903 +0.470214 0.9125621 0.5947903 +0.5050551 0.9125621 0.5947903 +0.5370987 0.9125621 0.5947903 +0.5668815 0.9125621 0.5947903 +0.5947903 0.9125621 0.5947903 +0.6211144 0.9125621 0.5947903 +0.6460766 0.9125621 0.5947903 +0.6698526 0.9125621 0.5947903 +0.6925839 0.9125621 0.5947903 +0.7143866 0.9125621 0.5947903 +0.7353569 0.9125621 0.5947903 +0.7555758 0.9125621 0.5947903 +0.7751122 0.9125621 0.5947903 +0.7940252 0.9125621 0.5947903 +0.8123661 0.9125621 0.5947903 +0.8301795 0.9125621 0.5947903 +0.8475045 0.9125621 0.5947903 +0.8643761 0.9125621 0.5947903 +0.880825 0.9125621 0.5947903 +0.8968787 0.9125621 0.5947903 +0.9125621 0.9125621 0.5947903 +0.9278974 0.9125621 0.5947903 +0.9429048 0.9125621 0.5947903 +0.9576028 0.9125621 0.5947903 +0.9720079 0.9125621 0.5947903 +0.9861357 0.9125621 0.5947903 +1 0.9125621 0.5947903 +0 0.9278974 0.5947903 +0.1939468 0.9278974 0.5947903 +0.2773041 0.9278974 0.5947903 +0.3384659 0.9278974 0.5947903 +0.3885728 0.9278974 0.5947903 +0.4317928 0.9278974 0.5947903 +0.470214 0.9278974 0.5947903 +0.5050551 0.9278974 0.5947903 +0.5370987 0.9278974 0.5947903 +0.5668815 0.9278974 0.5947903 +0.5947903 0.9278974 0.5947903 +0.6211144 0.9278974 0.5947903 +0.6460766 0.9278974 0.5947903 +0.6698526 0.9278974 0.5947903 +0.6925839 0.9278974 0.5947903 +0.7143866 0.9278974 0.5947903 +0.7353569 0.9278974 0.5947903 +0.7555758 0.9278974 0.5947903 +0.7751122 0.9278974 0.5947903 +0.7940252 0.9278974 0.5947903 +0.8123661 0.9278974 0.5947903 +0.8301795 0.9278974 0.5947903 +0.8475045 0.9278974 0.5947903 +0.8643761 0.9278974 0.5947903 +0.880825 0.9278974 0.5947903 +0.8968787 0.9278974 0.5947903 +0.9125621 0.9278974 0.5947903 +0.9278974 0.9278974 0.5947903 +0.9429048 0.9278974 0.5947903 +0.9576028 0.9278974 0.5947903 +0.9720079 0.9278974 0.5947903 +0.9861357 0.9278974 0.5947903 +1 0.9278974 0.5947903 +0 0.9429048 0.5947903 +0.1939468 0.9429048 0.5947903 +0.2773041 0.9429048 0.5947903 +0.3384659 0.9429048 0.5947903 +0.3885728 0.9429048 0.5947903 +0.4317928 0.9429048 0.5947903 +0.470214 0.9429048 0.5947903 +0.5050551 0.9429048 0.5947903 +0.5370987 0.9429048 0.5947903 +0.5668815 0.9429048 0.5947903 +0.5947903 0.9429048 0.5947903 +0.6211144 0.9429048 0.5947903 +0.6460766 0.9429048 0.5947903 +0.6698526 0.9429048 0.5947903 +0.6925839 0.9429048 0.5947903 +0.7143866 0.9429048 0.5947903 +0.7353569 0.9429048 0.5947903 +0.7555758 0.9429048 0.5947903 +0.7751122 0.9429048 0.5947903 +0.7940252 0.9429048 0.5947903 +0.8123661 0.9429048 0.5947903 +0.8301795 0.9429048 0.5947903 +0.8475045 0.9429048 0.5947903 +0.8643761 0.9429048 0.5947903 +0.880825 0.9429048 0.5947903 +0.8968787 0.9429048 0.5947903 +0.9125621 0.9429048 0.5947903 +0.9278974 0.9429048 0.5947903 +0.9429048 0.9429048 0.5947903 +0.9576028 0.9429048 0.5947903 +0.9720079 0.9429048 0.5947903 +0.9861357 0.9429048 0.5947903 +1 0.9429048 0.5947903 +0 0.9576028 0.5947903 +0.1939468 0.9576028 0.5947903 +0.2773041 0.9576028 0.5947903 +0.3384659 0.9576028 0.5947903 +0.3885728 0.9576028 0.5947903 +0.4317928 0.9576028 0.5947903 +0.470214 0.9576028 0.5947903 +0.5050551 0.9576028 0.5947903 +0.5370987 0.9576028 0.5947903 +0.5668815 0.9576028 0.5947903 +0.5947903 0.9576028 0.5947903 +0.6211144 0.9576028 0.5947903 +0.6460766 0.9576028 0.5947903 +0.6698526 0.9576028 0.5947903 +0.6925839 0.9576028 0.5947903 +0.7143866 0.9576028 0.5947903 +0.7353569 0.9576028 0.5947903 +0.7555758 0.9576028 0.5947903 +0.7751122 0.9576028 0.5947903 +0.7940252 0.9576028 0.5947903 +0.8123661 0.9576028 0.5947903 +0.8301795 0.9576028 0.5947903 +0.8475045 0.9576028 0.5947903 +0.8643761 0.9576028 0.5947903 +0.880825 0.9576028 0.5947903 +0.8968787 0.9576028 0.5947903 +0.9125621 0.9576028 0.5947903 +0.9278974 0.9576028 0.5947903 +0.9429048 0.9576028 0.5947903 +0.9576028 0.9576028 0.5947903 +0.9720079 0.9576028 0.5947903 +0.9861357 0.9576028 0.5947903 +1 0.9576028 0.5947903 +0 0.9720079 0.5947903 +0.1939468 0.9720079 0.5947903 +0.2773041 0.9720079 0.5947903 +0.3384659 0.9720079 0.5947903 +0.3885728 0.9720079 0.5947903 +0.4317928 0.9720079 0.5947903 +0.470214 0.9720079 0.5947903 +0.5050551 0.9720079 0.5947903 +0.5370987 0.9720079 0.5947903 +0.5668815 0.9720079 0.5947903 +0.5947903 0.9720079 0.5947903 +0.6211144 0.9720079 0.5947903 +0.6460766 0.9720079 0.5947903 +0.6698526 0.9720079 0.5947903 +0.6925839 0.9720079 0.5947903 +0.7143866 0.9720079 0.5947903 +0.7353569 0.9720079 0.5947903 +0.7555758 0.9720079 0.5947903 +0.7751122 0.9720079 0.5947903 +0.7940252 0.9720079 0.5947903 +0.8123661 0.9720079 0.5947903 +0.8301795 0.9720079 0.5947903 +0.8475045 0.9720079 0.5947903 +0.8643761 0.9720079 0.5947903 +0.880825 0.9720079 0.5947903 +0.8968787 0.9720079 0.5947903 +0.9125621 0.9720079 0.5947903 +0.9278974 0.9720079 0.5947903 +0.9429048 0.9720079 0.5947903 +0.9576028 0.9720079 0.5947903 +0.9720079 0.9720079 0.5947903 +0.9861357 0.9720079 0.5947903 +1 0.9720079 0.5947903 +0 0.9861357 0.5947903 +0.1939468 0.9861357 0.5947903 +0.2773041 0.9861357 0.5947903 +0.3384659 0.9861357 0.5947903 +0.3885728 0.9861357 0.5947903 +0.4317928 0.9861357 0.5947903 +0.470214 0.9861357 0.5947903 +0.5050551 0.9861357 0.5947903 +0.5370987 0.9861357 0.5947903 +0.5668815 0.9861357 0.5947903 +0.5947903 0.9861357 0.5947903 +0.6211144 0.9861357 0.5947903 +0.6460766 0.9861357 0.5947903 +0.6698526 0.9861357 0.5947903 +0.6925839 0.9861357 0.5947903 +0.7143866 0.9861357 0.5947903 +0.7353569 0.9861357 0.5947903 +0.7555758 0.9861357 0.5947903 +0.7751122 0.9861357 0.5947903 +0.7940252 0.9861357 0.5947903 +0.8123661 0.9861357 0.5947903 +0.8301795 0.9861357 0.5947903 +0.8475045 0.9861357 0.5947903 +0.8643761 0.9861357 0.5947903 +0.880825 0.9861357 0.5947903 +0.8968787 0.9861357 0.5947903 +0.9125621 0.9861357 0.5947903 +0.9278974 0.9861357 0.5947903 +0.9429048 0.9861357 0.5947903 +0.9576028 0.9861357 0.5947903 +0.9720079 0.9861357 0.5947903 +0.9861357 0.9861357 0.5947903 +1 0.9861357 0.5947903 +0 1 0.5947903 +0.1939468 1 0.5947903 +0.2773041 1 0.5947903 +0.3384659 1 0.5947903 +0.3885728 1 0.5947903 +0.4317928 1 0.5947903 +0.470214 1 0.5947903 +0.5050551 1 0.5947903 +0.5370987 1 0.5947903 +0.5668815 1 0.5947903 +0.5947903 1 0.5947903 +0.6211144 1 0.5947903 +0.6460766 1 0.5947903 +0.6698526 1 0.5947903 +0.6925839 1 0.5947903 +0.7143866 1 0.5947903 +0.7353569 1 0.5947903 +0.7555758 1 0.5947903 +0.7751122 1 0.5947903 +0.7940252 1 0.5947903 +0.8123661 1 0.5947903 +0.8301795 1 0.5947903 +0.8475045 1 0.5947903 +0.8643761 1 0.5947903 +0.880825 1 0.5947903 +0.8968787 1 0.5947903 +0.9125621 1 0.5947903 +0.9278974 1 0.5947903 +0.9429048 1 0.5947903 +0.9576028 1 0.5947903 +0.9720079 1 0.5947903 +0.9861357 1 0.5947903 +1 1 0.5947903 +0 0 0.6211144 +0.1939468 0 0.6211144 +0.2773041 0 0.6211144 +0.3384659 0 0.6211144 +0.3885728 0 0.6211144 +0.4317928 0 0.6211144 +0.470214 0 0.6211144 +0.5050551 0 0.6211144 +0.5370987 0 0.6211144 +0.5668815 0 0.6211144 +0.5947903 0 0.6211144 +0.6211144 0 0.6211144 +0.6460766 0 0.6211144 +0.6698526 0 0.6211144 +0.6925839 0 0.6211144 +0.7143866 0 0.6211144 +0.7353569 0 0.6211144 +0.7555758 0 0.6211144 +0.7751122 0 0.6211144 +0.7940252 0 0.6211144 +0.8123661 0 0.6211144 +0.8301795 0 0.6211144 +0.8475045 0 0.6211144 +0.8643761 0 0.6211144 +0.880825 0 0.6211144 +0.8968787 0 0.6211144 +0.9125621 0 0.6211144 +0.9278974 0 0.6211144 +0.9429048 0 0.6211144 +0.9576028 0 0.6211144 +0.9720079 0 0.6211144 +0.9861357 0 0.6211144 +1 0 0.6211144 +0 0.1939468 0.6211144 +0.1939468 0.1939468 0.6211144 +0.2773041 0.1939468 0.6211144 +0.3384659 0.1939468 0.6211144 +0.3885728 0.1939468 0.6211144 +0.4317928 0.1939468 0.6211144 +0.470214 0.1939468 0.6211144 +0.5050551 0.1939468 0.6211144 +0.5370987 0.1939468 0.6211144 +0.5668815 0.1939468 0.6211144 +0.5947903 0.1939468 0.6211144 +0.6211144 0.1939468 0.6211144 +0.6460766 0.1939468 0.6211144 +0.6698526 0.1939468 0.6211144 +0.6925839 0.1939468 0.6211144 +0.7143866 0.1939468 0.6211144 +0.7353569 0.1939468 0.6211144 +0.7555758 0.1939468 0.6211144 +0.7751122 0.1939468 0.6211144 +0.7940252 0.1939468 0.6211144 +0.8123661 0.1939468 0.6211144 +0.8301795 0.1939468 0.6211144 +0.8475045 0.1939468 0.6211144 +0.8643761 0.1939468 0.6211144 +0.880825 0.1939468 0.6211144 +0.8968787 0.1939468 0.6211144 +0.9125621 0.1939468 0.6211144 +0.9278974 0.1939468 0.6211144 +0.9429048 0.1939468 0.6211144 +0.9576028 0.1939468 0.6211144 +0.9720079 0.1939468 0.6211144 +0.9861357 0.1939468 0.6211144 +1 0.1939468 0.6211144 +0 0.2773041 0.6211144 +0.1939468 0.2773041 0.6211144 +0.2773041 0.2773041 0.6211144 +0.3384659 0.2773041 0.6211144 +0.3885728 0.2773041 0.6211144 +0.4317928 0.2773041 0.6211144 +0.470214 0.2773041 0.6211144 +0.5050551 0.2773041 0.6211144 +0.5370987 0.2773041 0.6211144 +0.5668815 0.2773041 0.6211144 +0.5947903 0.2773041 0.6211144 +0.6211144 0.2773041 0.6211144 +0.6460766 0.2773041 0.6211144 +0.6698526 0.2773041 0.6211144 +0.6925839 0.2773041 0.6211144 +0.7143866 0.2773041 0.6211144 +0.7353569 0.2773041 0.6211144 +0.7555758 0.2773041 0.6211144 +0.7751122 0.2773041 0.6211144 +0.7940252 0.2773041 0.6211144 +0.8123661 0.2773041 0.6211144 +0.8301795 0.2773041 0.6211144 +0.8475045 0.2773041 0.6211144 +0.8643761 0.2773041 0.6211144 +0.880825 0.2773041 0.6211144 +0.8968787 0.2773041 0.6211144 +0.9125621 0.2773041 0.6211144 +0.9278974 0.2773041 0.6211144 +0.9429048 0.2773041 0.6211144 +0.9576028 0.2773041 0.6211144 +0.9720079 0.2773041 0.6211144 +0.9861357 0.2773041 0.6211144 +1 0.2773041 0.6211144 +0 0.3384659 0.6211144 +0.1939468 0.3384659 0.6211144 +0.2773041 0.3384659 0.6211144 +0.3384659 0.3384659 0.6211144 +0.3885728 0.3384659 0.6211144 +0.4317928 0.3384659 0.6211144 +0.470214 0.3384659 0.6211144 +0.5050551 0.3384659 0.6211144 +0.5370987 0.3384659 0.6211144 +0.5668815 0.3384659 0.6211144 +0.5947903 0.3384659 0.6211144 +0.6211144 0.3384659 0.6211144 +0.6460766 0.3384659 0.6211144 +0.6698526 0.3384659 0.6211144 +0.6925839 0.3384659 0.6211144 +0.7143866 0.3384659 0.6211144 +0.7353569 0.3384659 0.6211144 +0.7555758 0.3384659 0.6211144 +0.7751122 0.3384659 0.6211144 +0.7940252 0.3384659 0.6211144 +0.8123661 0.3384659 0.6211144 +0.8301795 0.3384659 0.6211144 +0.8475045 0.3384659 0.6211144 +0.8643761 0.3384659 0.6211144 +0.880825 0.3384659 0.6211144 +0.8968787 0.3384659 0.6211144 +0.9125621 0.3384659 0.6211144 +0.9278974 0.3384659 0.6211144 +0.9429048 0.3384659 0.6211144 +0.9576028 0.3384659 0.6211144 +0.9720079 0.3384659 0.6211144 +0.9861357 0.3384659 0.6211144 +1 0.3384659 0.6211144 +0 0.3885728 0.6211144 +0.1939468 0.3885728 0.6211144 +0.2773041 0.3885728 0.6211144 +0.3384659 0.3885728 0.6211144 +0.3885728 0.3885728 0.6211144 +0.4317928 0.3885728 0.6211144 +0.470214 0.3885728 0.6211144 +0.5050551 0.3885728 0.6211144 +0.5370987 0.3885728 0.6211144 +0.5668815 0.3885728 0.6211144 +0.5947903 0.3885728 0.6211144 +0.6211144 0.3885728 0.6211144 +0.6460766 0.3885728 0.6211144 +0.6698526 0.3885728 0.6211144 +0.6925839 0.3885728 0.6211144 +0.7143866 0.3885728 0.6211144 +0.7353569 0.3885728 0.6211144 +0.7555758 0.3885728 0.6211144 +0.7751122 0.3885728 0.6211144 +0.7940252 0.3885728 0.6211144 +0.8123661 0.3885728 0.6211144 +0.8301795 0.3885728 0.6211144 +0.8475045 0.3885728 0.6211144 +0.8643761 0.3885728 0.6211144 +0.880825 0.3885728 0.6211144 +0.8968787 0.3885728 0.6211144 +0.9125621 0.3885728 0.6211144 +0.9278974 0.3885728 0.6211144 +0.9429048 0.3885728 0.6211144 +0.9576028 0.3885728 0.6211144 +0.9720079 0.3885728 0.6211144 +0.9861357 0.3885728 0.6211144 +1 0.3885728 0.6211144 +0 0.4317928 0.6211144 +0.1939468 0.4317928 0.6211144 +0.2773041 0.4317928 0.6211144 +0.3384659 0.4317928 0.6211144 +0.3885728 0.4317928 0.6211144 +0.4317928 0.4317928 0.6211144 +0.470214 0.4317928 0.6211144 +0.5050551 0.4317928 0.6211144 +0.5370987 0.4317928 0.6211144 +0.5668815 0.4317928 0.6211144 +0.5947903 0.4317928 0.6211144 +0.6211144 0.4317928 0.6211144 +0.6460766 0.4317928 0.6211144 +0.6698526 0.4317928 0.6211144 +0.6925839 0.4317928 0.6211144 +0.7143866 0.4317928 0.6211144 +0.7353569 0.4317928 0.6211144 +0.7555758 0.4317928 0.6211144 +0.7751122 0.4317928 0.6211144 +0.7940252 0.4317928 0.6211144 +0.8123661 0.4317928 0.6211144 +0.8301795 0.4317928 0.6211144 +0.8475045 0.4317928 0.6211144 +0.8643761 0.4317928 0.6211144 +0.880825 0.4317928 0.6211144 +0.8968787 0.4317928 0.6211144 +0.9125621 0.4317928 0.6211144 +0.9278974 0.4317928 0.6211144 +0.9429048 0.4317928 0.6211144 +0.9576028 0.4317928 0.6211144 +0.9720079 0.4317928 0.6211144 +0.9861357 0.4317928 0.6211144 +1 0.4317928 0.6211144 +0 0.470214 0.6211144 +0.1939468 0.470214 0.6211144 +0.2773041 0.470214 0.6211144 +0.3384659 0.470214 0.6211144 +0.3885728 0.470214 0.6211144 +0.4317928 0.470214 0.6211144 +0.470214 0.470214 0.6211144 +0.5050551 0.470214 0.6211144 +0.5370987 0.470214 0.6211144 +0.5668815 0.470214 0.6211144 +0.5947903 0.470214 0.6211144 +0.6211144 0.470214 0.6211144 +0.6460766 0.470214 0.6211144 +0.6698526 0.470214 0.6211144 +0.6925839 0.470214 0.6211144 +0.7143866 0.470214 0.6211144 +0.7353569 0.470214 0.6211144 +0.7555758 0.470214 0.6211144 +0.7751122 0.470214 0.6211144 +0.7940252 0.470214 0.6211144 +0.8123661 0.470214 0.6211144 +0.8301795 0.470214 0.6211144 +0.8475045 0.470214 0.6211144 +0.8643761 0.470214 0.6211144 +0.880825 0.470214 0.6211144 +0.8968787 0.470214 0.6211144 +0.9125621 0.470214 0.6211144 +0.9278974 0.470214 0.6211144 +0.9429048 0.470214 0.6211144 +0.9576028 0.470214 0.6211144 +0.9720079 0.470214 0.6211144 +0.9861357 0.470214 0.6211144 +1 0.470214 0.6211144 +0 0.5050551 0.6211144 +0.1939468 0.5050551 0.6211144 +0.2773041 0.5050551 0.6211144 +0.3384659 0.5050551 0.6211144 +0.3885728 0.5050551 0.6211144 +0.4317928 0.5050551 0.6211144 +0.470214 0.5050551 0.6211144 +0.5050551 0.5050551 0.6211144 +0.5370987 0.5050551 0.6211144 +0.5668815 0.5050551 0.6211144 +0.5947903 0.5050551 0.6211144 +0.6211144 0.5050551 0.6211144 +0.6460766 0.5050551 0.6211144 +0.6698526 0.5050551 0.6211144 +0.6925839 0.5050551 0.6211144 +0.7143866 0.5050551 0.6211144 +0.7353569 0.5050551 0.6211144 +0.7555758 0.5050551 0.6211144 +0.7751122 0.5050551 0.6211144 +0.7940252 0.5050551 0.6211144 +0.8123661 0.5050551 0.6211144 +0.8301795 0.5050551 0.6211144 +0.8475045 0.5050551 0.6211144 +0.8643761 0.5050551 0.6211144 +0.880825 0.5050551 0.6211144 +0.8968787 0.5050551 0.6211144 +0.9125621 0.5050551 0.6211144 +0.9278974 0.5050551 0.6211144 +0.9429048 0.5050551 0.6211144 +0.9576028 0.5050551 0.6211144 +0.9720079 0.5050551 0.6211144 +0.9861357 0.5050551 0.6211144 +1 0.5050551 0.6211144 +0 0.5370987 0.6211144 +0.1939468 0.5370987 0.6211144 +0.2773041 0.5370987 0.6211144 +0.3384659 0.5370987 0.6211144 +0.3885728 0.5370987 0.6211144 +0.4317928 0.5370987 0.6211144 +0.470214 0.5370987 0.6211144 +0.5050551 0.5370987 0.6211144 +0.5370987 0.5370987 0.6211144 +0.5668815 0.5370987 0.6211144 +0.5947903 0.5370987 0.6211144 +0.6211144 0.5370987 0.6211144 +0.6460766 0.5370987 0.6211144 +0.6698526 0.5370987 0.6211144 +0.6925839 0.5370987 0.6211144 +0.7143866 0.5370987 0.6211144 +0.7353569 0.5370987 0.6211144 +0.7555758 0.5370987 0.6211144 +0.7751122 0.5370987 0.6211144 +0.7940252 0.5370987 0.6211144 +0.8123661 0.5370987 0.6211144 +0.8301795 0.5370987 0.6211144 +0.8475045 0.5370987 0.6211144 +0.8643761 0.5370987 0.6211144 +0.880825 0.5370987 0.6211144 +0.8968787 0.5370987 0.6211144 +0.9125621 0.5370987 0.6211144 +0.9278974 0.5370987 0.6211144 +0.9429048 0.5370987 0.6211144 +0.9576028 0.5370987 0.6211144 +0.9720079 0.5370987 0.6211144 +0.9861357 0.5370987 0.6211144 +1 0.5370987 0.6211144 +0 0.5668815 0.6211144 +0.1939468 0.5668815 0.6211144 +0.2773041 0.5668815 0.6211144 +0.3384659 0.5668815 0.6211144 +0.3885728 0.5668815 0.6211144 +0.4317928 0.5668815 0.6211144 +0.470214 0.5668815 0.6211144 +0.5050551 0.5668815 0.6211144 +0.5370987 0.5668815 0.6211144 +0.5668815 0.5668815 0.6211144 +0.5947903 0.5668815 0.6211144 +0.6211144 0.5668815 0.6211144 +0.6460766 0.5668815 0.6211144 +0.6698526 0.5668815 0.6211144 +0.6925839 0.5668815 0.6211144 +0.7143866 0.5668815 0.6211144 +0.7353569 0.5668815 0.6211144 +0.7555758 0.5668815 0.6211144 +0.7751122 0.5668815 0.6211144 +0.7940252 0.5668815 0.6211144 +0.8123661 0.5668815 0.6211144 +0.8301795 0.5668815 0.6211144 +0.8475045 0.5668815 0.6211144 +0.8643761 0.5668815 0.6211144 +0.880825 0.5668815 0.6211144 +0.8968787 0.5668815 0.6211144 +0.9125621 0.5668815 0.6211144 +0.9278974 0.5668815 0.6211144 +0.9429048 0.5668815 0.6211144 +0.9576028 0.5668815 0.6211144 +0.9720079 0.5668815 0.6211144 +0.9861357 0.5668815 0.6211144 +1 0.5668815 0.6211144 +0 0.5947903 0.6211144 +0.1939468 0.5947903 0.6211144 +0.2773041 0.5947903 0.6211144 +0.3384659 0.5947903 0.6211144 +0.3885728 0.5947903 0.6211144 +0.4317928 0.5947903 0.6211144 +0.470214 0.5947903 0.6211144 +0.5050551 0.5947903 0.6211144 +0.5370987 0.5947903 0.6211144 +0.5668815 0.5947903 0.6211144 +0.5947903 0.5947903 0.6211144 +0.6211144 0.5947903 0.6211144 +0.6460766 0.5947903 0.6211144 +0.6698526 0.5947903 0.6211144 +0.6925839 0.5947903 0.6211144 +0.7143866 0.5947903 0.6211144 +0.7353569 0.5947903 0.6211144 +0.7555758 0.5947903 0.6211144 +0.7751122 0.5947903 0.6211144 +0.7940252 0.5947903 0.6211144 +0.8123661 0.5947903 0.6211144 +0.8301795 0.5947903 0.6211144 +0.8475045 0.5947903 0.6211144 +0.8643761 0.5947903 0.6211144 +0.880825 0.5947903 0.6211144 +0.8968787 0.5947903 0.6211144 +0.9125621 0.5947903 0.6211144 +0.9278974 0.5947903 0.6211144 +0.9429048 0.5947903 0.6211144 +0.9576028 0.5947903 0.6211144 +0.9720079 0.5947903 0.6211144 +0.9861357 0.5947903 0.6211144 +1 0.5947903 0.6211144 +0 0.6211144 0.6211144 +0.1939468 0.6211144 0.6211144 +0.2773041 0.6211144 0.6211144 +0.3384659 0.6211144 0.6211144 +0.3885728 0.6211144 0.6211144 +0.4317928 0.6211144 0.6211144 +0.470214 0.6211144 0.6211144 +0.5050551 0.6211144 0.6211144 +0.5370987 0.6211144 0.6211144 +0.5668815 0.6211144 0.6211144 +0.5947903 0.6211144 0.6211144 +0.6211144 0.6211144 0.6211144 +0.6460766 0.6211144 0.6211144 +0.6698526 0.6211144 0.6211144 +0.6925839 0.6211144 0.6211144 +0.7143866 0.6211144 0.6211144 +0.7353569 0.6211144 0.6211144 +0.7555758 0.6211144 0.6211144 +0.7751122 0.6211144 0.6211144 +0.7940252 0.6211144 0.6211144 +0.8123661 0.6211144 0.6211144 +0.8301795 0.6211144 0.6211144 +0.8475045 0.6211144 0.6211144 +0.8643761 0.6211144 0.6211144 +0.880825 0.6211144 0.6211144 +0.8968787 0.6211144 0.6211144 +0.9125621 0.6211144 0.6211144 +0.9278974 0.6211144 0.6211144 +0.9429048 0.6211144 0.6211144 +0.9576028 0.6211144 0.6211144 +0.9720079 0.6211144 0.6211144 +0.9861357 0.6211144 0.6211144 +1 0.6211144 0.6211144 +0 0.6460766 0.6211144 +0.1939468 0.6460766 0.6211144 +0.2773041 0.6460766 0.6211144 +0.3384659 0.6460766 0.6211144 +0.3885728 0.6460766 0.6211144 +0.4317928 0.6460766 0.6211144 +0.470214 0.6460766 0.6211144 +0.5050551 0.6460766 0.6211144 +0.5370987 0.6460766 0.6211144 +0.5668815 0.6460766 0.6211144 +0.5947903 0.6460766 0.6211144 +0.6211144 0.6460766 0.6211144 +0.6460766 0.6460766 0.6211144 +0.6698526 0.6460766 0.6211144 +0.6925839 0.6460766 0.6211144 +0.7143866 0.6460766 0.6211144 +0.7353569 0.6460766 0.6211144 +0.7555758 0.6460766 0.6211144 +0.7751122 0.6460766 0.6211144 +0.7940252 0.6460766 0.6211144 +0.8123661 0.6460766 0.6211144 +0.8301795 0.6460766 0.6211144 +0.8475045 0.6460766 0.6211144 +0.8643761 0.6460766 0.6211144 +0.880825 0.6460766 0.6211144 +0.8968787 0.6460766 0.6211144 +0.9125621 0.6460766 0.6211144 +0.9278974 0.6460766 0.6211144 +0.9429048 0.6460766 0.6211144 +0.9576028 0.6460766 0.6211144 +0.9720079 0.6460766 0.6211144 +0.9861357 0.6460766 0.6211144 +1 0.6460766 0.6211144 +0 0.6698526 0.6211144 +0.1939468 0.6698526 0.6211144 +0.2773041 0.6698526 0.6211144 +0.3384659 0.6698526 0.6211144 +0.3885728 0.6698526 0.6211144 +0.4317928 0.6698526 0.6211144 +0.470214 0.6698526 0.6211144 +0.5050551 0.6698526 0.6211144 +0.5370987 0.6698526 0.6211144 +0.5668815 0.6698526 0.6211144 +0.5947903 0.6698526 0.6211144 +0.6211144 0.6698526 0.6211144 +0.6460766 0.6698526 0.6211144 +0.6698526 0.6698526 0.6211144 +0.6925839 0.6698526 0.6211144 +0.7143866 0.6698526 0.6211144 +0.7353569 0.6698526 0.6211144 +0.7555758 0.6698526 0.6211144 +0.7751122 0.6698526 0.6211144 +0.7940252 0.6698526 0.6211144 +0.8123661 0.6698526 0.6211144 +0.8301795 0.6698526 0.6211144 +0.8475045 0.6698526 0.6211144 +0.8643761 0.6698526 0.6211144 +0.880825 0.6698526 0.6211144 +0.8968787 0.6698526 0.6211144 +0.9125621 0.6698526 0.6211144 +0.9278974 0.6698526 0.6211144 +0.9429048 0.6698526 0.6211144 +0.9576028 0.6698526 0.6211144 +0.9720079 0.6698526 0.6211144 +0.9861357 0.6698526 0.6211144 +1 0.6698526 0.6211144 +0 0.6925839 0.6211144 +0.1939468 0.6925839 0.6211144 +0.2773041 0.6925839 0.6211144 +0.3384659 0.6925839 0.6211144 +0.3885728 0.6925839 0.6211144 +0.4317928 0.6925839 0.6211144 +0.470214 0.6925839 0.6211144 +0.5050551 0.6925839 0.6211144 +0.5370987 0.6925839 0.6211144 +0.5668815 0.6925839 0.6211144 +0.5947903 0.6925839 0.6211144 +0.6211144 0.6925839 0.6211144 +0.6460766 0.6925839 0.6211144 +0.6698526 0.6925839 0.6211144 +0.6925839 0.6925839 0.6211144 +0.7143866 0.6925839 0.6211144 +0.7353569 0.6925839 0.6211144 +0.7555758 0.6925839 0.6211144 +0.7751122 0.6925839 0.6211144 +0.7940252 0.6925839 0.6211144 +0.8123661 0.6925839 0.6211144 +0.8301795 0.6925839 0.6211144 +0.8475045 0.6925839 0.6211144 +0.8643761 0.6925839 0.6211144 +0.880825 0.6925839 0.6211144 +0.8968787 0.6925839 0.6211144 +0.9125621 0.6925839 0.6211144 +0.9278974 0.6925839 0.6211144 +0.9429048 0.6925839 0.6211144 +0.9576028 0.6925839 0.6211144 +0.9720079 0.6925839 0.6211144 +0.9861357 0.6925839 0.6211144 +1 0.6925839 0.6211144 +0 0.7143866 0.6211144 +0.1939468 0.7143866 0.6211144 +0.2773041 0.7143866 0.6211144 +0.3384659 0.7143866 0.6211144 +0.3885728 0.7143866 0.6211144 +0.4317928 0.7143866 0.6211144 +0.470214 0.7143866 0.6211144 +0.5050551 0.7143866 0.6211144 +0.5370987 0.7143866 0.6211144 +0.5668815 0.7143866 0.6211144 +0.5947903 0.7143866 0.6211144 +0.6211144 0.7143866 0.6211144 +0.6460766 0.7143866 0.6211144 +0.6698526 0.7143866 0.6211144 +0.6925839 0.7143866 0.6211144 +0.7143866 0.7143866 0.6211144 +0.7353569 0.7143866 0.6211144 +0.7555758 0.7143866 0.6211144 +0.7751122 0.7143866 0.6211144 +0.7940252 0.7143866 0.6211144 +0.8123661 0.7143866 0.6211144 +0.8301795 0.7143866 0.6211144 +0.8475045 0.7143866 0.6211144 +0.8643761 0.7143866 0.6211144 +0.880825 0.7143866 0.6211144 +0.8968787 0.7143866 0.6211144 +0.9125621 0.7143866 0.6211144 +0.9278974 0.7143866 0.6211144 +0.9429048 0.7143866 0.6211144 +0.9576028 0.7143866 0.6211144 +0.9720079 0.7143866 0.6211144 +0.9861357 0.7143866 0.6211144 +1 0.7143866 0.6211144 +0 0.7353569 0.6211144 +0.1939468 0.7353569 0.6211144 +0.2773041 0.7353569 0.6211144 +0.3384659 0.7353569 0.6211144 +0.3885728 0.7353569 0.6211144 +0.4317928 0.7353569 0.6211144 +0.470214 0.7353569 0.6211144 +0.5050551 0.7353569 0.6211144 +0.5370987 0.7353569 0.6211144 +0.5668815 0.7353569 0.6211144 +0.5947903 0.7353569 0.6211144 +0.6211144 0.7353569 0.6211144 +0.6460766 0.7353569 0.6211144 +0.6698526 0.7353569 0.6211144 +0.6925839 0.7353569 0.6211144 +0.7143866 0.7353569 0.6211144 +0.7353569 0.7353569 0.6211144 +0.7555758 0.7353569 0.6211144 +0.7751122 0.7353569 0.6211144 +0.7940252 0.7353569 0.6211144 +0.8123661 0.7353569 0.6211144 +0.8301795 0.7353569 0.6211144 +0.8475045 0.7353569 0.6211144 +0.8643761 0.7353569 0.6211144 +0.880825 0.7353569 0.6211144 +0.8968787 0.7353569 0.6211144 +0.9125621 0.7353569 0.6211144 +0.9278974 0.7353569 0.6211144 +0.9429048 0.7353569 0.6211144 +0.9576028 0.7353569 0.6211144 +0.9720079 0.7353569 0.6211144 +0.9861357 0.7353569 0.6211144 +1 0.7353569 0.6211144 +0 0.7555758 0.6211144 +0.1939468 0.7555758 0.6211144 +0.2773041 0.7555758 0.6211144 +0.3384659 0.7555758 0.6211144 +0.3885728 0.7555758 0.6211144 +0.4317928 0.7555758 0.6211144 +0.470214 0.7555758 0.6211144 +0.5050551 0.7555758 0.6211144 +0.5370987 0.7555758 0.6211144 +0.5668815 0.7555758 0.6211144 +0.5947903 0.7555758 0.6211144 +0.6211144 0.7555758 0.6211144 +0.6460766 0.7555758 0.6211144 +0.6698526 0.7555758 0.6211144 +0.6925839 0.7555758 0.6211144 +0.7143866 0.7555758 0.6211144 +0.7353569 0.7555758 0.6211144 +0.7555758 0.7555758 0.6211144 +0.7751122 0.7555758 0.6211144 +0.7940252 0.7555758 0.6211144 +0.8123661 0.7555758 0.6211144 +0.8301795 0.7555758 0.6211144 +0.8475045 0.7555758 0.6211144 +0.8643761 0.7555758 0.6211144 +0.880825 0.7555758 0.6211144 +0.8968787 0.7555758 0.6211144 +0.9125621 0.7555758 0.6211144 +0.9278974 0.7555758 0.6211144 +0.9429048 0.7555758 0.6211144 +0.9576028 0.7555758 0.6211144 +0.9720079 0.7555758 0.6211144 +0.9861357 0.7555758 0.6211144 +1 0.7555758 0.6211144 +0 0.7751122 0.6211144 +0.1939468 0.7751122 0.6211144 +0.2773041 0.7751122 0.6211144 +0.3384659 0.7751122 0.6211144 +0.3885728 0.7751122 0.6211144 +0.4317928 0.7751122 0.6211144 +0.470214 0.7751122 0.6211144 +0.5050551 0.7751122 0.6211144 +0.5370987 0.7751122 0.6211144 +0.5668815 0.7751122 0.6211144 +0.5947903 0.7751122 0.6211144 +0.6211144 0.7751122 0.6211144 +0.6460766 0.7751122 0.6211144 +0.6698526 0.7751122 0.6211144 +0.6925839 0.7751122 0.6211144 +0.7143866 0.7751122 0.6211144 +0.7353569 0.7751122 0.6211144 +0.7555758 0.7751122 0.6211144 +0.7751122 0.7751122 0.6211144 +0.7940252 0.7751122 0.6211144 +0.8123661 0.7751122 0.6211144 +0.8301795 0.7751122 0.6211144 +0.8475045 0.7751122 0.6211144 +0.8643761 0.7751122 0.6211144 +0.880825 0.7751122 0.6211144 +0.8968787 0.7751122 0.6211144 +0.9125621 0.7751122 0.6211144 +0.9278974 0.7751122 0.6211144 +0.9429048 0.7751122 0.6211144 +0.9576028 0.7751122 0.6211144 +0.9720079 0.7751122 0.6211144 +0.9861357 0.7751122 0.6211144 +1 0.7751122 0.6211144 +0 0.7940252 0.6211144 +0.1939468 0.7940252 0.6211144 +0.2773041 0.7940252 0.6211144 +0.3384659 0.7940252 0.6211144 +0.3885728 0.7940252 0.6211144 +0.4317928 0.7940252 0.6211144 +0.470214 0.7940252 0.6211144 +0.5050551 0.7940252 0.6211144 +0.5370987 0.7940252 0.6211144 +0.5668815 0.7940252 0.6211144 +0.5947903 0.7940252 0.6211144 +0.6211144 0.7940252 0.6211144 +0.6460766 0.7940252 0.6211144 +0.6698526 0.7940252 0.6211144 +0.6925839 0.7940252 0.6211144 +0.7143866 0.7940252 0.6211144 +0.7353569 0.7940252 0.6211144 +0.7555758 0.7940252 0.6211144 +0.7751122 0.7940252 0.6211144 +0.7940252 0.7940252 0.6211144 +0.8123661 0.7940252 0.6211144 +0.8301795 0.7940252 0.6211144 +0.8475045 0.7940252 0.6211144 +0.8643761 0.7940252 0.6211144 +0.880825 0.7940252 0.6211144 +0.8968787 0.7940252 0.6211144 +0.9125621 0.7940252 0.6211144 +0.9278974 0.7940252 0.6211144 +0.9429048 0.7940252 0.6211144 +0.9576028 0.7940252 0.6211144 +0.9720079 0.7940252 0.6211144 +0.9861357 0.7940252 0.6211144 +1 0.7940252 0.6211144 +0 0.8123661 0.6211144 +0.1939468 0.8123661 0.6211144 +0.2773041 0.8123661 0.6211144 +0.3384659 0.8123661 0.6211144 +0.3885728 0.8123661 0.6211144 +0.4317928 0.8123661 0.6211144 +0.470214 0.8123661 0.6211144 +0.5050551 0.8123661 0.6211144 +0.5370987 0.8123661 0.6211144 +0.5668815 0.8123661 0.6211144 +0.5947903 0.8123661 0.6211144 +0.6211144 0.8123661 0.6211144 +0.6460766 0.8123661 0.6211144 +0.6698526 0.8123661 0.6211144 +0.6925839 0.8123661 0.6211144 +0.7143866 0.8123661 0.6211144 +0.7353569 0.8123661 0.6211144 +0.7555758 0.8123661 0.6211144 +0.7751122 0.8123661 0.6211144 +0.7940252 0.8123661 0.6211144 +0.8123661 0.8123661 0.6211144 +0.8301795 0.8123661 0.6211144 +0.8475045 0.8123661 0.6211144 +0.8643761 0.8123661 0.6211144 +0.880825 0.8123661 0.6211144 +0.8968787 0.8123661 0.6211144 +0.9125621 0.8123661 0.6211144 +0.9278974 0.8123661 0.6211144 +0.9429048 0.8123661 0.6211144 +0.9576028 0.8123661 0.6211144 +0.9720079 0.8123661 0.6211144 +0.9861357 0.8123661 0.6211144 +1 0.8123661 0.6211144 +0 0.8301795 0.6211144 +0.1939468 0.8301795 0.6211144 +0.2773041 0.8301795 0.6211144 +0.3384659 0.8301795 0.6211144 +0.3885728 0.8301795 0.6211144 +0.4317928 0.8301795 0.6211144 +0.470214 0.8301795 0.6211144 +0.5050551 0.8301795 0.6211144 +0.5370987 0.8301795 0.6211144 +0.5668815 0.8301795 0.6211144 +0.5947903 0.8301795 0.6211144 +0.6211144 0.8301795 0.6211144 +0.6460766 0.8301795 0.6211144 +0.6698526 0.8301795 0.6211144 +0.6925839 0.8301795 0.6211144 +0.7143866 0.8301795 0.6211144 +0.7353569 0.8301795 0.6211144 +0.7555758 0.8301795 0.6211144 +0.7751122 0.8301795 0.6211144 +0.7940252 0.8301795 0.6211144 +0.8123661 0.8301795 0.6211144 +0.8301795 0.8301795 0.6211144 +0.8475045 0.8301795 0.6211144 +0.8643761 0.8301795 0.6211144 +0.880825 0.8301795 0.6211144 +0.8968787 0.8301795 0.6211144 +0.9125621 0.8301795 0.6211144 +0.9278974 0.8301795 0.6211144 +0.9429048 0.8301795 0.6211144 +0.9576028 0.8301795 0.6211144 +0.9720079 0.8301795 0.6211144 +0.9861357 0.8301795 0.6211144 +1 0.8301795 0.6211144 +0 0.8475045 0.6211144 +0.1939468 0.8475045 0.6211144 +0.2773041 0.8475045 0.6211144 +0.3384659 0.8475045 0.6211144 +0.3885728 0.8475045 0.6211144 +0.4317928 0.8475045 0.6211144 +0.470214 0.8475045 0.6211144 +0.5050551 0.8475045 0.6211144 +0.5370987 0.8475045 0.6211144 +0.5668815 0.8475045 0.6211144 +0.5947903 0.8475045 0.6211144 +0.6211144 0.8475045 0.6211144 +0.6460766 0.8475045 0.6211144 +0.6698526 0.8475045 0.6211144 +0.6925839 0.8475045 0.6211144 +0.7143866 0.8475045 0.6211144 +0.7353569 0.8475045 0.6211144 +0.7555758 0.8475045 0.6211144 +0.7751122 0.8475045 0.6211144 +0.7940252 0.8475045 0.6211144 +0.8123661 0.8475045 0.6211144 +0.8301795 0.8475045 0.6211144 +0.8475045 0.8475045 0.6211144 +0.8643761 0.8475045 0.6211144 +0.880825 0.8475045 0.6211144 +0.8968787 0.8475045 0.6211144 +0.9125621 0.8475045 0.6211144 +0.9278974 0.8475045 0.6211144 +0.9429048 0.8475045 0.6211144 +0.9576028 0.8475045 0.6211144 +0.9720079 0.8475045 0.6211144 +0.9861357 0.8475045 0.6211144 +1 0.8475045 0.6211144 +0 0.8643761 0.6211144 +0.1939468 0.8643761 0.6211144 +0.2773041 0.8643761 0.6211144 +0.3384659 0.8643761 0.6211144 +0.3885728 0.8643761 0.6211144 +0.4317928 0.8643761 0.6211144 +0.470214 0.8643761 0.6211144 +0.5050551 0.8643761 0.6211144 +0.5370987 0.8643761 0.6211144 +0.5668815 0.8643761 0.6211144 +0.5947903 0.8643761 0.6211144 +0.6211144 0.8643761 0.6211144 +0.6460766 0.8643761 0.6211144 +0.6698526 0.8643761 0.6211144 +0.6925839 0.8643761 0.6211144 +0.7143866 0.8643761 0.6211144 +0.7353569 0.8643761 0.6211144 +0.7555758 0.8643761 0.6211144 +0.7751122 0.8643761 0.6211144 +0.7940252 0.8643761 0.6211144 +0.8123661 0.8643761 0.6211144 +0.8301795 0.8643761 0.6211144 +0.8475045 0.8643761 0.6211144 +0.8643761 0.8643761 0.6211144 +0.880825 0.8643761 0.6211144 +0.8968787 0.8643761 0.6211144 +0.9125621 0.8643761 0.6211144 +0.9278974 0.8643761 0.6211144 +0.9429048 0.8643761 0.6211144 +0.9576028 0.8643761 0.6211144 +0.9720079 0.8643761 0.6211144 +0.9861357 0.8643761 0.6211144 +1 0.8643761 0.6211144 +0 0.880825 0.6211144 +0.1939468 0.880825 0.6211144 +0.2773041 0.880825 0.6211144 +0.3384659 0.880825 0.6211144 +0.3885728 0.880825 0.6211144 +0.4317928 0.880825 0.6211144 +0.470214 0.880825 0.6211144 +0.5050551 0.880825 0.6211144 +0.5370987 0.880825 0.6211144 +0.5668815 0.880825 0.6211144 +0.5947903 0.880825 0.6211144 +0.6211144 0.880825 0.6211144 +0.6460766 0.880825 0.6211144 +0.6698526 0.880825 0.6211144 +0.6925839 0.880825 0.6211144 +0.7143866 0.880825 0.6211144 +0.7353569 0.880825 0.6211144 +0.7555758 0.880825 0.6211144 +0.7751122 0.880825 0.6211144 +0.7940252 0.880825 0.6211144 +0.8123661 0.880825 0.6211144 +0.8301795 0.880825 0.6211144 +0.8475045 0.880825 0.6211144 +0.8643761 0.880825 0.6211144 +0.880825 0.880825 0.6211144 +0.8968787 0.880825 0.6211144 +0.9125621 0.880825 0.6211144 +0.9278974 0.880825 0.6211144 +0.9429048 0.880825 0.6211144 +0.9576028 0.880825 0.6211144 +0.9720079 0.880825 0.6211144 +0.9861357 0.880825 0.6211144 +1 0.880825 0.6211144 +0 0.8968787 0.6211144 +0.1939468 0.8968787 0.6211144 +0.2773041 0.8968787 0.6211144 +0.3384659 0.8968787 0.6211144 +0.3885728 0.8968787 0.6211144 +0.4317928 0.8968787 0.6211144 +0.470214 0.8968787 0.6211144 +0.5050551 0.8968787 0.6211144 +0.5370987 0.8968787 0.6211144 +0.5668815 0.8968787 0.6211144 +0.5947903 0.8968787 0.6211144 +0.6211144 0.8968787 0.6211144 +0.6460766 0.8968787 0.6211144 +0.6698526 0.8968787 0.6211144 +0.6925839 0.8968787 0.6211144 +0.7143866 0.8968787 0.6211144 +0.7353569 0.8968787 0.6211144 +0.7555758 0.8968787 0.6211144 +0.7751122 0.8968787 0.6211144 +0.7940252 0.8968787 0.6211144 +0.8123661 0.8968787 0.6211144 +0.8301795 0.8968787 0.6211144 +0.8475045 0.8968787 0.6211144 +0.8643761 0.8968787 0.6211144 +0.880825 0.8968787 0.6211144 +0.8968787 0.8968787 0.6211144 +0.9125621 0.8968787 0.6211144 +0.9278974 0.8968787 0.6211144 +0.9429048 0.8968787 0.6211144 +0.9576028 0.8968787 0.6211144 +0.9720079 0.8968787 0.6211144 +0.9861357 0.8968787 0.6211144 +1 0.8968787 0.6211144 +0 0.9125621 0.6211144 +0.1939468 0.9125621 0.6211144 +0.2773041 0.9125621 0.6211144 +0.3384659 0.9125621 0.6211144 +0.3885728 0.9125621 0.6211144 +0.4317928 0.9125621 0.6211144 +0.470214 0.9125621 0.6211144 +0.5050551 0.9125621 0.6211144 +0.5370987 0.9125621 0.6211144 +0.5668815 0.9125621 0.6211144 +0.5947903 0.9125621 0.6211144 +0.6211144 0.9125621 0.6211144 +0.6460766 0.9125621 0.6211144 +0.6698526 0.9125621 0.6211144 +0.6925839 0.9125621 0.6211144 +0.7143866 0.9125621 0.6211144 +0.7353569 0.9125621 0.6211144 +0.7555758 0.9125621 0.6211144 +0.7751122 0.9125621 0.6211144 +0.7940252 0.9125621 0.6211144 +0.8123661 0.9125621 0.6211144 +0.8301795 0.9125621 0.6211144 +0.8475045 0.9125621 0.6211144 +0.8643761 0.9125621 0.6211144 +0.880825 0.9125621 0.6211144 +0.8968787 0.9125621 0.6211144 +0.9125621 0.9125621 0.6211144 +0.9278974 0.9125621 0.6211144 +0.9429048 0.9125621 0.6211144 +0.9576028 0.9125621 0.6211144 +0.9720079 0.9125621 0.6211144 +0.9861357 0.9125621 0.6211144 +1 0.9125621 0.6211144 +0 0.9278974 0.6211144 +0.1939468 0.9278974 0.6211144 +0.2773041 0.9278974 0.6211144 +0.3384659 0.9278974 0.6211144 +0.3885728 0.9278974 0.6211144 +0.4317928 0.9278974 0.6211144 +0.470214 0.9278974 0.6211144 +0.5050551 0.9278974 0.6211144 +0.5370987 0.9278974 0.6211144 +0.5668815 0.9278974 0.6211144 +0.5947903 0.9278974 0.6211144 +0.6211144 0.9278974 0.6211144 +0.6460766 0.9278974 0.6211144 +0.6698526 0.9278974 0.6211144 +0.6925839 0.9278974 0.6211144 +0.7143866 0.9278974 0.6211144 +0.7353569 0.9278974 0.6211144 +0.7555758 0.9278974 0.6211144 +0.7751122 0.9278974 0.6211144 +0.7940252 0.9278974 0.6211144 +0.8123661 0.9278974 0.6211144 +0.8301795 0.9278974 0.6211144 +0.8475045 0.9278974 0.6211144 +0.8643761 0.9278974 0.6211144 +0.880825 0.9278974 0.6211144 +0.8968787 0.9278974 0.6211144 +0.9125621 0.9278974 0.6211144 +0.9278974 0.9278974 0.6211144 +0.9429048 0.9278974 0.6211144 +0.9576028 0.9278974 0.6211144 +0.9720079 0.9278974 0.6211144 +0.9861357 0.9278974 0.6211144 +1 0.9278974 0.6211144 +0 0.9429048 0.6211144 +0.1939468 0.9429048 0.6211144 +0.2773041 0.9429048 0.6211144 +0.3384659 0.9429048 0.6211144 +0.3885728 0.9429048 0.6211144 +0.4317928 0.9429048 0.6211144 +0.470214 0.9429048 0.6211144 +0.5050551 0.9429048 0.6211144 +0.5370987 0.9429048 0.6211144 +0.5668815 0.9429048 0.6211144 +0.5947903 0.9429048 0.6211144 +0.6211144 0.9429048 0.6211144 +0.6460766 0.9429048 0.6211144 +0.6698526 0.9429048 0.6211144 +0.6925839 0.9429048 0.6211144 +0.7143866 0.9429048 0.6211144 +0.7353569 0.9429048 0.6211144 +0.7555758 0.9429048 0.6211144 +0.7751122 0.9429048 0.6211144 +0.7940252 0.9429048 0.6211144 +0.8123661 0.9429048 0.6211144 +0.8301795 0.9429048 0.6211144 +0.8475045 0.9429048 0.6211144 +0.8643761 0.9429048 0.6211144 +0.880825 0.9429048 0.6211144 +0.8968787 0.9429048 0.6211144 +0.9125621 0.9429048 0.6211144 +0.9278974 0.9429048 0.6211144 +0.9429048 0.9429048 0.6211144 +0.9576028 0.9429048 0.6211144 +0.9720079 0.9429048 0.6211144 +0.9861357 0.9429048 0.6211144 +1 0.9429048 0.6211144 +0 0.9576028 0.6211144 +0.1939468 0.9576028 0.6211144 +0.2773041 0.9576028 0.6211144 +0.3384659 0.9576028 0.6211144 +0.3885728 0.9576028 0.6211144 +0.4317928 0.9576028 0.6211144 +0.470214 0.9576028 0.6211144 +0.5050551 0.9576028 0.6211144 +0.5370987 0.9576028 0.6211144 +0.5668815 0.9576028 0.6211144 +0.5947903 0.9576028 0.6211144 +0.6211144 0.9576028 0.6211144 +0.6460766 0.9576028 0.6211144 +0.6698526 0.9576028 0.6211144 +0.6925839 0.9576028 0.6211144 +0.7143866 0.9576028 0.6211144 +0.7353569 0.9576028 0.6211144 +0.7555758 0.9576028 0.6211144 +0.7751122 0.9576028 0.6211144 +0.7940252 0.9576028 0.6211144 +0.8123661 0.9576028 0.6211144 +0.8301795 0.9576028 0.6211144 +0.8475045 0.9576028 0.6211144 +0.8643761 0.9576028 0.6211144 +0.880825 0.9576028 0.6211144 +0.8968787 0.9576028 0.6211144 +0.9125621 0.9576028 0.6211144 +0.9278974 0.9576028 0.6211144 +0.9429048 0.9576028 0.6211144 +0.9576028 0.9576028 0.6211144 +0.9720079 0.9576028 0.6211144 +0.9861357 0.9576028 0.6211144 +1 0.9576028 0.6211144 +0 0.9720079 0.6211144 +0.1939468 0.9720079 0.6211144 +0.2773041 0.9720079 0.6211144 +0.3384659 0.9720079 0.6211144 +0.3885728 0.9720079 0.6211144 +0.4317928 0.9720079 0.6211144 +0.470214 0.9720079 0.6211144 +0.5050551 0.9720079 0.6211144 +0.5370987 0.9720079 0.6211144 +0.5668815 0.9720079 0.6211144 +0.5947903 0.9720079 0.6211144 +0.6211144 0.9720079 0.6211144 +0.6460766 0.9720079 0.6211144 +0.6698526 0.9720079 0.6211144 +0.6925839 0.9720079 0.6211144 +0.7143866 0.9720079 0.6211144 +0.7353569 0.9720079 0.6211144 +0.7555758 0.9720079 0.6211144 +0.7751122 0.9720079 0.6211144 +0.7940252 0.9720079 0.6211144 +0.8123661 0.9720079 0.6211144 +0.8301795 0.9720079 0.6211144 +0.8475045 0.9720079 0.6211144 +0.8643761 0.9720079 0.6211144 +0.880825 0.9720079 0.6211144 +0.8968787 0.9720079 0.6211144 +0.9125621 0.9720079 0.6211144 +0.9278974 0.9720079 0.6211144 +0.9429048 0.9720079 0.6211144 +0.9576028 0.9720079 0.6211144 +0.9720079 0.9720079 0.6211144 +0.9861357 0.9720079 0.6211144 +1 0.9720079 0.6211144 +0 0.9861357 0.6211144 +0.1939468 0.9861357 0.6211144 +0.2773041 0.9861357 0.6211144 +0.3384659 0.9861357 0.6211144 +0.3885728 0.9861357 0.6211144 +0.4317928 0.9861357 0.6211144 +0.470214 0.9861357 0.6211144 +0.5050551 0.9861357 0.6211144 +0.5370987 0.9861357 0.6211144 +0.5668815 0.9861357 0.6211144 +0.5947903 0.9861357 0.6211144 +0.6211144 0.9861357 0.6211144 +0.6460766 0.9861357 0.6211144 +0.6698526 0.9861357 0.6211144 +0.6925839 0.9861357 0.6211144 +0.7143866 0.9861357 0.6211144 +0.7353569 0.9861357 0.6211144 +0.7555758 0.9861357 0.6211144 +0.7751122 0.9861357 0.6211144 +0.7940252 0.9861357 0.6211144 +0.8123661 0.9861357 0.6211144 +0.8301795 0.9861357 0.6211144 +0.8475045 0.9861357 0.6211144 +0.8643761 0.9861357 0.6211144 +0.880825 0.9861357 0.6211144 +0.8968787 0.9861357 0.6211144 +0.9125621 0.9861357 0.6211144 +0.9278974 0.9861357 0.6211144 +0.9429048 0.9861357 0.6211144 +0.9576028 0.9861357 0.6211144 +0.9720079 0.9861357 0.6211144 +0.9861357 0.9861357 0.6211144 +1 0.9861357 0.6211144 +0 1 0.6211144 +0.1939468 1 0.6211144 +0.2773041 1 0.6211144 +0.3384659 1 0.6211144 +0.3885728 1 0.6211144 +0.4317928 1 0.6211144 +0.470214 1 0.6211144 +0.5050551 1 0.6211144 +0.5370987 1 0.6211144 +0.5668815 1 0.6211144 +0.5947903 1 0.6211144 +0.6211144 1 0.6211144 +0.6460766 1 0.6211144 +0.6698526 1 0.6211144 +0.6925839 1 0.6211144 +0.7143866 1 0.6211144 +0.7353569 1 0.6211144 +0.7555758 1 0.6211144 +0.7751122 1 0.6211144 +0.7940252 1 0.6211144 +0.8123661 1 0.6211144 +0.8301795 1 0.6211144 +0.8475045 1 0.6211144 +0.8643761 1 0.6211144 +0.880825 1 0.6211144 +0.8968787 1 0.6211144 +0.9125621 1 0.6211144 +0.9278974 1 0.6211144 +0.9429048 1 0.6211144 +0.9576028 1 0.6211144 +0.9720079 1 0.6211144 +0.9861357 1 0.6211144 +1 1 0.6211144 +0 0 0.6460766 +0.1939468 0 0.6460766 +0.2773041 0 0.6460766 +0.3384659 0 0.6460766 +0.3885728 0 0.6460766 +0.4317928 0 0.6460766 +0.470214 0 0.6460766 +0.5050551 0 0.6460766 +0.5370987 0 0.6460766 +0.5668815 0 0.6460766 +0.5947903 0 0.6460766 +0.6211144 0 0.6460766 +0.6460766 0 0.6460766 +0.6698526 0 0.6460766 +0.6925839 0 0.6460766 +0.7143866 0 0.6460766 +0.7353569 0 0.6460766 +0.7555758 0 0.6460766 +0.7751122 0 0.6460766 +0.7940252 0 0.6460766 +0.8123661 0 0.6460766 +0.8301795 0 0.6460766 +0.8475045 0 0.6460766 +0.8643761 0 0.6460766 +0.880825 0 0.6460766 +0.8968787 0 0.6460766 +0.9125621 0 0.6460766 +0.9278974 0 0.6460766 +0.9429048 0 0.6460766 +0.9576028 0 0.6460766 +0.9720079 0 0.6460766 +0.9861357 0 0.6460766 +1 0 0.6460766 +0 0.1939468 0.6460766 +0.1939468 0.1939468 0.6460766 +0.2773041 0.1939468 0.6460766 +0.3384659 0.1939468 0.6460766 +0.3885728 0.1939468 0.6460766 +0.4317928 0.1939468 0.6460766 +0.470214 0.1939468 0.6460766 +0.5050551 0.1939468 0.6460766 +0.5370987 0.1939468 0.6460766 +0.5668815 0.1939468 0.6460766 +0.5947903 0.1939468 0.6460766 +0.6211144 0.1939468 0.6460766 +0.6460766 0.1939468 0.6460766 +0.6698526 0.1939468 0.6460766 +0.6925839 0.1939468 0.6460766 +0.7143866 0.1939468 0.6460766 +0.7353569 0.1939468 0.6460766 +0.7555758 0.1939468 0.6460766 +0.7751122 0.1939468 0.6460766 +0.7940252 0.1939468 0.6460766 +0.8123661 0.1939468 0.6460766 +0.8301795 0.1939468 0.6460766 +0.8475045 0.1939468 0.6460766 +0.8643761 0.1939468 0.6460766 +0.880825 0.1939468 0.6460766 +0.8968787 0.1939468 0.6460766 +0.9125621 0.1939468 0.6460766 +0.9278974 0.1939468 0.6460766 +0.9429048 0.1939468 0.6460766 +0.9576028 0.1939468 0.6460766 +0.9720079 0.1939468 0.6460766 +0.9861357 0.1939468 0.6460766 +1 0.1939468 0.6460766 +0 0.2773041 0.6460766 +0.1939468 0.2773041 0.6460766 +0.2773041 0.2773041 0.6460766 +0.3384659 0.2773041 0.6460766 +0.3885728 0.2773041 0.6460766 +0.4317928 0.2773041 0.6460766 +0.470214 0.2773041 0.6460766 +0.5050551 0.2773041 0.6460766 +0.5370987 0.2773041 0.6460766 +0.5668815 0.2773041 0.6460766 +0.5947903 0.2773041 0.6460766 +0.6211144 0.2773041 0.6460766 +0.6460766 0.2773041 0.6460766 +0.6698526 0.2773041 0.6460766 +0.6925839 0.2773041 0.6460766 +0.7143866 0.2773041 0.6460766 +0.7353569 0.2773041 0.6460766 +0.7555758 0.2773041 0.6460766 +0.7751122 0.2773041 0.6460766 +0.7940252 0.2773041 0.6460766 +0.8123661 0.2773041 0.6460766 +0.8301795 0.2773041 0.6460766 +0.8475045 0.2773041 0.6460766 +0.8643761 0.2773041 0.6460766 +0.880825 0.2773041 0.6460766 +0.8968787 0.2773041 0.6460766 +0.9125621 0.2773041 0.6460766 +0.9278974 0.2773041 0.6460766 +0.9429048 0.2773041 0.6460766 +0.9576028 0.2773041 0.6460766 +0.9720079 0.2773041 0.6460766 +0.9861357 0.2773041 0.6460766 +1 0.2773041 0.6460766 +0 0.3384659 0.6460766 +0.1939468 0.3384659 0.6460766 +0.2773041 0.3384659 0.6460766 +0.3384659 0.3384659 0.6460766 +0.3885728 0.3384659 0.6460766 +0.4317928 0.3384659 0.6460766 +0.470214 0.3384659 0.6460766 +0.5050551 0.3384659 0.6460766 +0.5370987 0.3384659 0.6460766 +0.5668815 0.3384659 0.6460766 +0.5947903 0.3384659 0.6460766 +0.6211144 0.3384659 0.6460766 +0.6460766 0.3384659 0.6460766 +0.6698526 0.3384659 0.6460766 +0.6925839 0.3384659 0.6460766 +0.7143866 0.3384659 0.6460766 +0.7353569 0.3384659 0.6460766 +0.7555758 0.3384659 0.6460766 +0.7751122 0.3384659 0.6460766 +0.7940252 0.3384659 0.6460766 +0.8123661 0.3384659 0.6460766 +0.8301795 0.3384659 0.6460766 +0.8475045 0.3384659 0.6460766 +0.8643761 0.3384659 0.6460766 +0.880825 0.3384659 0.6460766 +0.8968787 0.3384659 0.6460766 +0.9125621 0.3384659 0.6460766 +0.9278974 0.3384659 0.6460766 +0.9429048 0.3384659 0.6460766 +0.9576028 0.3384659 0.6460766 +0.9720079 0.3384659 0.6460766 +0.9861357 0.3384659 0.6460766 +1 0.3384659 0.6460766 +0 0.3885728 0.6460766 +0.1939468 0.3885728 0.6460766 +0.2773041 0.3885728 0.6460766 +0.3384659 0.3885728 0.6460766 +0.3885728 0.3885728 0.6460766 +0.4317928 0.3885728 0.6460766 +0.470214 0.3885728 0.6460766 +0.5050551 0.3885728 0.6460766 +0.5370987 0.3885728 0.6460766 +0.5668815 0.3885728 0.6460766 +0.5947903 0.3885728 0.6460766 +0.6211144 0.3885728 0.6460766 +0.6460766 0.3885728 0.6460766 +0.6698526 0.3885728 0.6460766 +0.6925839 0.3885728 0.6460766 +0.7143866 0.3885728 0.6460766 +0.7353569 0.3885728 0.6460766 +0.7555758 0.3885728 0.6460766 +0.7751122 0.3885728 0.6460766 +0.7940252 0.3885728 0.6460766 +0.8123661 0.3885728 0.6460766 +0.8301795 0.3885728 0.6460766 +0.8475045 0.3885728 0.6460766 +0.8643761 0.3885728 0.6460766 +0.880825 0.3885728 0.6460766 +0.8968787 0.3885728 0.6460766 +0.9125621 0.3885728 0.6460766 +0.9278974 0.3885728 0.6460766 +0.9429048 0.3885728 0.6460766 +0.9576028 0.3885728 0.6460766 +0.9720079 0.3885728 0.6460766 +0.9861357 0.3885728 0.6460766 +1 0.3885728 0.6460766 +0 0.4317928 0.6460766 +0.1939468 0.4317928 0.6460766 +0.2773041 0.4317928 0.6460766 +0.3384659 0.4317928 0.6460766 +0.3885728 0.4317928 0.6460766 +0.4317928 0.4317928 0.6460766 +0.470214 0.4317928 0.6460766 +0.5050551 0.4317928 0.6460766 +0.5370987 0.4317928 0.6460766 +0.5668815 0.4317928 0.6460766 +0.5947903 0.4317928 0.6460766 +0.6211144 0.4317928 0.6460766 +0.6460766 0.4317928 0.6460766 +0.6698526 0.4317928 0.6460766 +0.6925839 0.4317928 0.6460766 +0.7143866 0.4317928 0.6460766 +0.7353569 0.4317928 0.6460766 +0.7555758 0.4317928 0.6460766 +0.7751122 0.4317928 0.6460766 +0.7940252 0.4317928 0.6460766 +0.8123661 0.4317928 0.6460766 +0.8301795 0.4317928 0.6460766 +0.8475045 0.4317928 0.6460766 +0.8643761 0.4317928 0.6460766 +0.880825 0.4317928 0.6460766 +0.8968787 0.4317928 0.6460766 +0.9125621 0.4317928 0.6460766 +0.9278974 0.4317928 0.6460766 +0.9429048 0.4317928 0.6460766 +0.9576028 0.4317928 0.6460766 +0.9720079 0.4317928 0.6460766 +0.9861357 0.4317928 0.6460766 +1 0.4317928 0.6460766 +0 0.470214 0.6460766 +0.1939468 0.470214 0.6460766 +0.2773041 0.470214 0.6460766 +0.3384659 0.470214 0.6460766 +0.3885728 0.470214 0.6460766 +0.4317928 0.470214 0.6460766 +0.470214 0.470214 0.6460766 +0.5050551 0.470214 0.6460766 +0.5370987 0.470214 0.6460766 +0.5668815 0.470214 0.6460766 +0.5947903 0.470214 0.6460766 +0.6211144 0.470214 0.6460766 +0.6460766 0.470214 0.6460766 +0.6698526 0.470214 0.6460766 +0.6925839 0.470214 0.6460766 +0.7143866 0.470214 0.6460766 +0.7353569 0.470214 0.6460766 +0.7555758 0.470214 0.6460766 +0.7751122 0.470214 0.6460766 +0.7940252 0.470214 0.6460766 +0.8123661 0.470214 0.6460766 +0.8301795 0.470214 0.6460766 +0.8475045 0.470214 0.6460766 +0.8643761 0.470214 0.6460766 +0.880825 0.470214 0.6460766 +0.8968787 0.470214 0.6460766 +0.9125621 0.470214 0.6460766 +0.9278974 0.470214 0.6460766 +0.9429048 0.470214 0.6460766 +0.9576028 0.470214 0.6460766 +0.9720079 0.470214 0.6460766 +0.9861357 0.470214 0.6460766 +1 0.470214 0.6460766 +0 0.5050551 0.6460766 +0.1939468 0.5050551 0.6460766 +0.2773041 0.5050551 0.6460766 +0.3384659 0.5050551 0.6460766 +0.3885728 0.5050551 0.6460766 +0.4317928 0.5050551 0.6460766 +0.470214 0.5050551 0.6460766 +0.5050551 0.5050551 0.6460766 +0.5370987 0.5050551 0.6460766 +0.5668815 0.5050551 0.6460766 +0.5947903 0.5050551 0.6460766 +0.6211144 0.5050551 0.6460766 +0.6460766 0.5050551 0.6460766 +0.6698526 0.5050551 0.6460766 +0.6925839 0.5050551 0.6460766 +0.7143866 0.5050551 0.6460766 +0.7353569 0.5050551 0.6460766 +0.7555758 0.5050551 0.6460766 +0.7751122 0.5050551 0.6460766 +0.7940252 0.5050551 0.6460766 +0.8123661 0.5050551 0.6460766 +0.8301795 0.5050551 0.6460766 +0.8475045 0.5050551 0.6460766 +0.8643761 0.5050551 0.6460766 +0.880825 0.5050551 0.6460766 +0.8968787 0.5050551 0.6460766 +0.9125621 0.5050551 0.6460766 +0.9278974 0.5050551 0.6460766 +0.9429048 0.5050551 0.6460766 +0.9576028 0.5050551 0.6460766 +0.9720079 0.5050551 0.6460766 +0.9861357 0.5050551 0.6460766 +1 0.5050551 0.6460766 +0 0.5370987 0.6460766 +0.1939468 0.5370987 0.6460766 +0.2773041 0.5370987 0.6460766 +0.3384659 0.5370987 0.6460766 +0.3885728 0.5370987 0.6460766 +0.4317928 0.5370987 0.6460766 +0.470214 0.5370987 0.6460766 +0.5050551 0.5370987 0.6460766 +0.5370987 0.5370987 0.6460766 +0.5668815 0.5370987 0.6460766 +0.5947903 0.5370987 0.6460766 +0.6211144 0.5370987 0.6460766 +0.6460766 0.5370987 0.6460766 +0.6698526 0.5370987 0.6460766 +0.6925839 0.5370987 0.6460766 +0.7143866 0.5370987 0.6460766 +0.7353569 0.5370987 0.6460766 +0.7555758 0.5370987 0.6460766 +0.7751122 0.5370987 0.6460766 +0.7940252 0.5370987 0.6460766 +0.8123661 0.5370987 0.6460766 +0.8301795 0.5370987 0.6460766 +0.8475045 0.5370987 0.6460766 +0.8643761 0.5370987 0.6460766 +0.880825 0.5370987 0.6460766 +0.8968787 0.5370987 0.6460766 +0.9125621 0.5370987 0.6460766 +0.9278974 0.5370987 0.6460766 +0.9429048 0.5370987 0.6460766 +0.9576028 0.5370987 0.6460766 +0.9720079 0.5370987 0.6460766 +0.9861357 0.5370987 0.6460766 +1 0.5370987 0.6460766 +0 0.5668815 0.6460766 +0.1939468 0.5668815 0.6460766 +0.2773041 0.5668815 0.6460766 +0.3384659 0.5668815 0.6460766 +0.3885728 0.5668815 0.6460766 +0.4317928 0.5668815 0.6460766 +0.470214 0.5668815 0.6460766 +0.5050551 0.5668815 0.6460766 +0.5370987 0.5668815 0.6460766 +0.5668815 0.5668815 0.6460766 +0.5947903 0.5668815 0.6460766 +0.6211144 0.5668815 0.6460766 +0.6460766 0.5668815 0.6460766 +0.6698526 0.5668815 0.6460766 +0.6925839 0.5668815 0.6460766 +0.7143866 0.5668815 0.6460766 +0.7353569 0.5668815 0.6460766 +0.7555758 0.5668815 0.6460766 +0.7751122 0.5668815 0.6460766 +0.7940252 0.5668815 0.6460766 +0.8123661 0.5668815 0.6460766 +0.8301795 0.5668815 0.6460766 +0.8475045 0.5668815 0.6460766 +0.8643761 0.5668815 0.6460766 +0.880825 0.5668815 0.6460766 +0.8968787 0.5668815 0.6460766 +0.9125621 0.5668815 0.6460766 +0.9278974 0.5668815 0.6460766 +0.9429048 0.5668815 0.6460766 +0.9576028 0.5668815 0.6460766 +0.9720079 0.5668815 0.6460766 +0.9861357 0.5668815 0.6460766 +1 0.5668815 0.6460766 +0 0.5947903 0.6460766 +0.1939468 0.5947903 0.6460766 +0.2773041 0.5947903 0.6460766 +0.3384659 0.5947903 0.6460766 +0.3885728 0.5947903 0.6460766 +0.4317928 0.5947903 0.6460766 +0.470214 0.5947903 0.6460766 +0.5050551 0.5947903 0.6460766 +0.5370987 0.5947903 0.6460766 +0.5668815 0.5947903 0.6460766 +0.5947903 0.5947903 0.6460766 +0.6211144 0.5947903 0.6460766 +0.6460766 0.5947903 0.6460766 +0.6698526 0.5947903 0.6460766 +0.6925839 0.5947903 0.6460766 +0.7143866 0.5947903 0.6460766 +0.7353569 0.5947903 0.6460766 +0.7555758 0.5947903 0.6460766 +0.7751122 0.5947903 0.6460766 +0.7940252 0.5947903 0.6460766 +0.8123661 0.5947903 0.6460766 +0.8301795 0.5947903 0.6460766 +0.8475045 0.5947903 0.6460766 +0.8643761 0.5947903 0.6460766 +0.880825 0.5947903 0.6460766 +0.8968787 0.5947903 0.6460766 +0.9125621 0.5947903 0.6460766 +0.9278974 0.5947903 0.6460766 +0.9429048 0.5947903 0.6460766 +0.9576028 0.5947903 0.6460766 +0.9720079 0.5947903 0.6460766 +0.9861357 0.5947903 0.6460766 +1 0.5947903 0.6460766 +0 0.6211144 0.6460766 +0.1939468 0.6211144 0.6460766 +0.2773041 0.6211144 0.6460766 +0.3384659 0.6211144 0.6460766 +0.3885728 0.6211144 0.6460766 +0.4317928 0.6211144 0.6460766 +0.470214 0.6211144 0.6460766 +0.5050551 0.6211144 0.6460766 +0.5370987 0.6211144 0.6460766 +0.5668815 0.6211144 0.6460766 +0.5947903 0.6211144 0.6460766 +0.6211144 0.6211144 0.6460766 +0.6460766 0.6211144 0.6460766 +0.6698526 0.6211144 0.6460766 +0.6925839 0.6211144 0.6460766 +0.7143866 0.6211144 0.6460766 +0.7353569 0.6211144 0.6460766 +0.7555758 0.6211144 0.6460766 +0.7751122 0.6211144 0.6460766 +0.7940252 0.6211144 0.6460766 +0.8123661 0.6211144 0.6460766 +0.8301795 0.6211144 0.6460766 +0.8475045 0.6211144 0.6460766 +0.8643761 0.6211144 0.6460766 +0.880825 0.6211144 0.6460766 +0.8968787 0.6211144 0.6460766 +0.9125621 0.6211144 0.6460766 +0.9278974 0.6211144 0.6460766 +0.9429048 0.6211144 0.6460766 +0.9576028 0.6211144 0.6460766 +0.9720079 0.6211144 0.6460766 +0.9861357 0.6211144 0.6460766 +1 0.6211144 0.6460766 +0 0.6460766 0.6460766 +0.1939468 0.6460766 0.6460766 +0.2773041 0.6460766 0.6460766 +0.3384659 0.6460766 0.6460766 +0.3885728 0.6460766 0.6460766 +0.4317928 0.6460766 0.6460766 +0.470214 0.6460766 0.6460766 +0.5050551 0.6460766 0.6460766 +0.5370987 0.6460766 0.6460766 +0.5668815 0.6460766 0.6460766 +0.5947903 0.6460766 0.6460766 +0.6211144 0.6460766 0.6460766 +0.6460766 0.6460766 0.6460766 +0.6698526 0.6460766 0.6460766 +0.6925839 0.6460766 0.6460766 +0.7143866 0.6460766 0.6460766 +0.7353569 0.6460766 0.6460766 +0.7555758 0.6460766 0.6460766 +0.7751122 0.6460766 0.6460766 +0.7940252 0.6460766 0.6460766 +0.8123661 0.6460766 0.6460766 +0.8301795 0.6460766 0.6460766 +0.8475045 0.6460766 0.6460766 +0.8643761 0.6460766 0.6460766 +0.880825 0.6460766 0.6460766 +0.8968787 0.6460766 0.6460766 +0.9125621 0.6460766 0.6460766 +0.9278974 0.6460766 0.6460766 +0.9429048 0.6460766 0.6460766 +0.9576028 0.6460766 0.6460766 +0.9720079 0.6460766 0.6460766 +0.9861357 0.6460766 0.6460766 +1 0.6460766 0.6460766 +0 0.6698526 0.6460766 +0.1939468 0.6698526 0.6460766 +0.2773041 0.6698526 0.6460766 +0.3384659 0.6698526 0.6460766 +0.3885728 0.6698526 0.6460766 +0.4317928 0.6698526 0.6460766 +0.470214 0.6698526 0.6460766 +0.5050551 0.6698526 0.6460766 +0.5370987 0.6698526 0.6460766 +0.5668815 0.6698526 0.6460766 +0.5947903 0.6698526 0.6460766 +0.6211144 0.6698526 0.6460766 +0.6460766 0.6698526 0.6460766 +0.6698526 0.6698526 0.6460766 +0.6925839 0.6698526 0.6460766 +0.7143866 0.6698526 0.6460766 +0.7353569 0.6698526 0.6460766 +0.7555758 0.6698526 0.6460766 +0.7751122 0.6698526 0.6460766 +0.7940252 0.6698526 0.6460766 +0.8123661 0.6698526 0.6460766 +0.8301795 0.6698526 0.6460766 +0.8475045 0.6698526 0.6460766 +0.8643761 0.6698526 0.6460766 +0.880825 0.6698526 0.6460766 +0.8968787 0.6698526 0.6460766 +0.9125621 0.6698526 0.6460766 +0.9278974 0.6698526 0.6460766 +0.9429048 0.6698526 0.6460766 +0.9576028 0.6698526 0.6460766 +0.9720079 0.6698526 0.6460766 +0.9861357 0.6698526 0.6460766 +1 0.6698526 0.6460766 +0 0.6925839 0.6460766 +0.1939468 0.6925839 0.6460766 +0.2773041 0.6925839 0.6460766 +0.3384659 0.6925839 0.6460766 +0.3885728 0.6925839 0.6460766 +0.4317928 0.6925839 0.6460766 +0.470214 0.6925839 0.6460766 +0.5050551 0.6925839 0.6460766 +0.5370987 0.6925839 0.6460766 +0.5668815 0.6925839 0.6460766 +0.5947903 0.6925839 0.6460766 +0.6211144 0.6925839 0.6460766 +0.6460766 0.6925839 0.6460766 +0.6698526 0.6925839 0.6460766 +0.6925839 0.6925839 0.6460766 +0.7143866 0.6925839 0.6460766 +0.7353569 0.6925839 0.6460766 +0.7555758 0.6925839 0.6460766 +0.7751122 0.6925839 0.6460766 +0.7940252 0.6925839 0.6460766 +0.8123661 0.6925839 0.6460766 +0.8301795 0.6925839 0.6460766 +0.8475045 0.6925839 0.6460766 +0.8643761 0.6925839 0.6460766 +0.880825 0.6925839 0.6460766 +0.8968787 0.6925839 0.6460766 +0.9125621 0.6925839 0.6460766 +0.9278974 0.6925839 0.6460766 +0.9429048 0.6925839 0.6460766 +0.9576028 0.6925839 0.6460766 +0.9720079 0.6925839 0.6460766 +0.9861357 0.6925839 0.6460766 +1 0.6925839 0.6460766 +0 0.7143866 0.6460766 +0.1939468 0.7143866 0.6460766 +0.2773041 0.7143866 0.6460766 +0.3384659 0.7143866 0.6460766 +0.3885728 0.7143866 0.6460766 +0.4317928 0.7143866 0.6460766 +0.470214 0.7143866 0.6460766 +0.5050551 0.7143866 0.6460766 +0.5370987 0.7143866 0.6460766 +0.5668815 0.7143866 0.6460766 +0.5947903 0.7143866 0.6460766 +0.6211144 0.7143866 0.6460766 +0.6460766 0.7143866 0.6460766 +0.6698526 0.7143866 0.6460766 +0.6925839 0.7143866 0.6460766 +0.7143866 0.7143866 0.6460766 +0.7353569 0.7143866 0.6460766 +0.7555758 0.7143866 0.6460766 +0.7751122 0.7143866 0.6460766 +0.7940252 0.7143866 0.6460766 +0.8123661 0.7143866 0.6460766 +0.8301795 0.7143866 0.6460766 +0.8475045 0.7143866 0.6460766 +0.8643761 0.7143866 0.6460766 +0.880825 0.7143866 0.6460766 +0.8968787 0.7143866 0.6460766 +0.9125621 0.7143866 0.6460766 +0.9278974 0.7143866 0.6460766 +0.9429048 0.7143866 0.6460766 +0.9576028 0.7143866 0.6460766 +0.9720079 0.7143866 0.6460766 +0.9861357 0.7143866 0.6460766 +1 0.7143866 0.6460766 +0 0.7353569 0.6460766 +0.1939468 0.7353569 0.6460766 +0.2773041 0.7353569 0.6460766 +0.3384659 0.7353569 0.6460766 +0.3885728 0.7353569 0.6460766 +0.4317928 0.7353569 0.6460766 +0.470214 0.7353569 0.6460766 +0.5050551 0.7353569 0.6460766 +0.5370987 0.7353569 0.6460766 +0.5668815 0.7353569 0.6460766 +0.5947903 0.7353569 0.6460766 +0.6211144 0.7353569 0.6460766 +0.6460766 0.7353569 0.6460766 +0.6698526 0.7353569 0.6460766 +0.6925839 0.7353569 0.6460766 +0.7143866 0.7353569 0.6460766 +0.7353569 0.7353569 0.6460766 +0.7555758 0.7353569 0.6460766 +0.7751122 0.7353569 0.6460766 +0.7940252 0.7353569 0.6460766 +0.8123661 0.7353569 0.6460766 +0.8301795 0.7353569 0.6460766 +0.8475045 0.7353569 0.6460766 +0.8643761 0.7353569 0.6460766 +0.880825 0.7353569 0.6460766 +0.8968787 0.7353569 0.6460766 +0.9125621 0.7353569 0.6460766 +0.9278974 0.7353569 0.6460766 +0.9429048 0.7353569 0.6460766 +0.9576028 0.7353569 0.6460766 +0.9720079 0.7353569 0.6460766 +0.9861357 0.7353569 0.6460766 +1 0.7353569 0.6460766 +0 0.7555758 0.6460766 +0.1939468 0.7555758 0.6460766 +0.2773041 0.7555758 0.6460766 +0.3384659 0.7555758 0.6460766 +0.3885728 0.7555758 0.6460766 +0.4317928 0.7555758 0.6460766 +0.470214 0.7555758 0.6460766 +0.5050551 0.7555758 0.6460766 +0.5370987 0.7555758 0.6460766 +0.5668815 0.7555758 0.6460766 +0.5947903 0.7555758 0.6460766 +0.6211144 0.7555758 0.6460766 +0.6460766 0.7555758 0.6460766 +0.6698526 0.7555758 0.6460766 +0.6925839 0.7555758 0.6460766 +0.7143866 0.7555758 0.6460766 +0.7353569 0.7555758 0.6460766 +0.7555758 0.7555758 0.6460766 +0.7751122 0.7555758 0.6460766 +0.7940252 0.7555758 0.6460766 +0.8123661 0.7555758 0.6460766 +0.8301795 0.7555758 0.6460766 +0.8475045 0.7555758 0.6460766 +0.8643761 0.7555758 0.6460766 +0.880825 0.7555758 0.6460766 +0.8968787 0.7555758 0.6460766 +0.9125621 0.7555758 0.6460766 +0.9278974 0.7555758 0.6460766 +0.9429048 0.7555758 0.6460766 +0.9576028 0.7555758 0.6460766 +0.9720079 0.7555758 0.6460766 +0.9861357 0.7555758 0.6460766 +1 0.7555758 0.6460766 +0 0.7751122 0.6460766 +0.1939468 0.7751122 0.6460766 +0.2773041 0.7751122 0.6460766 +0.3384659 0.7751122 0.6460766 +0.3885728 0.7751122 0.6460766 +0.4317928 0.7751122 0.6460766 +0.470214 0.7751122 0.6460766 +0.5050551 0.7751122 0.6460766 +0.5370987 0.7751122 0.6460766 +0.5668815 0.7751122 0.6460766 +0.5947903 0.7751122 0.6460766 +0.6211144 0.7751122 0.6460766 +0.6460766 0.7751122 0.6460766 +0.6698526 0.7751122 0.6460766 +0.6925839 0.7751122 0.6460766 +0.7143866 0.7751122 0.6460766 +0.7353569 0.7751122 0.6460766 +0.7555758 0.7751122 0.6460766 +0.7751122 0.7751122 0.6460766 +0.7940252 0.7751122 0.6460766 +0.8123661 0.7751122 0.6460766 +0.8301795 0.7751122 0.6460766 +0.8475045 0.7751122 0.6460766 +0.8643761 0.7751122 0.6460766 +0.880825 0.7751122 0.6460766 +0.8968787 0.7751122 0.6460766 +0.9125621 0.7751122 0.6460766 +0.9278974 0.7751122 0.6460766 +0.9429048 0.7751122 0.6460766 +0.9576028 0.7751122 0.6460766 +0.9720079 0.7751122 0.6460766 +0.9861357 0.7751122 0.6460766 +1 0.7751122 0.6460766 +0 0.7940252 0.6460766 +0.1939468 0.7940252 0.6460766 +0.2773041 0.7940252 0.6460766 +0.3384659 0.7940252 0.6460766 +0.3885728 0.7940252 0.6460766 +0.4317928 0.7940252 0.6460766 +0.470214 0.7940252 0.6460766 +0.5050551 0.7940252 0.6460766 +0.5370987 0.7940252 0.6460766 +0.5668815 0.7940252 0.6460766 +0.5947903 0.7940252 0.6460766 +0.6211144 0.7940252 0.6460766 +0.6460766 0.7940252 0.6460766 +0.6698526 0.7940252 0.6460766 +0.6925839 0.7940252 0.6460766 +0.7143866 0.7940252 0.6460766 +0.7353569 0.7940252 0.6460766 +0.7555758 0.7940252 0.6460766 +0.7751122 0.7940252 0.6460766 +0.7940252 0.7940252 0.6460766 +0.8123661 0.7940252 0.6460766 +0.8301795 0.7940252 0.6460766 +0.8475045 0.7940252 0.6460766 +0.8643761 0.7940252 0.6460766 +0.880825 0.7940252 0.6460766 +0.8968787 0.7940252 0.6460766 +0.9125621 0.7940252 0.6460766 +0.9278974 0.7940252 0.6460766 +0.9429048 0.7940252 0.6460766 +0.9576028 0.7940252 0.6460766 +0.9720079 0.7940252 0.6460766 +0.9861357 0.7940252 0.6460766 +1 0.7940252 0.6460766 +0 0.8123661 0.6460766 +0.1939468 0.8123661 0.6460766 +0.2773041 0.8123661 0.6460766 +0.3384659 0.8123661 0.6460766 +0.3885728 0.8123661 0.6460766 +0.4317928 0.8123661 0.6460766 +0.470214 0.8123661 0.6460766 +0.5050551 0.8123661 0.6460766 +0.5370987 0.8123661 0.6460766 +0.5668815 0.8123661 0.6460766 +0.5947903 0.8123661 0.6460766 +0.6211144 0.8123661 0.6460766 +0.6460766 0.8123661 0.6460766 +0.6698526 0.8123661 0.6460766 +0.6925839 0.8123661 0.6460766 +0.7143866 0.8123661 0.6460766 +0.7353569 0.8123661 0.6460766 +0.7555758 0.8123661 0.6460766 +0.7751122 0.8123661 0.6460766 +0.7940252 0.8123661 0.6460766 +0.8123661 0.8123661 0.6460766 +0.8301795 0.8123661 0.6460766 +0.8475045 0.8123661 0.6460766 +0.8643761 0.8123661 0.6460766 +0.880825 0.8123661 0.6460766 +0.8968787 0.8123661 0.6460766 +0.9125621 0.8123661 0.6460766 +0.9278974 0.8123661 0.6460766 +0.9429048 0.8123661 0.6460766 +0.9576028 0.8123661 0.6460766 +0.9720079 0.8123661 0.6460766 +0.9861357 0.8123661 0.6460766 +1 0.8123661 0.6460766 +0 0.8301795 0.6460766 +0.1939468 0.8301795 0.6460766 +0.2773041 0.8301795 0.6460766 +0.3384659 0.8301795 0.6460766 +0.3885728 0.8301795 0.6460766 +0.4317928 0.8301795 0.6460766 +0.470214 0.8301795 0.6460766 +0.5050551 0.8301795 0.6460766 +0.5370987 0.8301795 0.6460766 +0.5668815 0.8301795 0.6460766 +0.5947903 0.8301795 0.6460766 +0.6211144 0.8301795 0.6460766 +0.6460766 0.8301795 0.6460766 +0.6698526 0.8301795 0.6460766 +0.6925839 0.8301795 0.6460766 +0.7143866 0.8301795 0.6460766 +0.7353569 0.8301795 0.6460766 +0.7555758 0.8301795 0.6460766 +0.7751122 0.8301795 0.6460766 +0.7940252 0.8301795 0.6460766 +0.8123661 0.8301795 0.6460766 +0.8301795 0.8301795 0.6460766 +0.8475045 0.8301795 0.6460766 +0.8643761 0.8301795 0.6460766 +0.880825 0.8301795 0.6460766 +0.8968787 0.8301795 0.6460766 +0.9125621 0.8301795 0.6460766 +0.9278974 0.8301795 0.6460766 +0.9429048 0.8301795 0.6460766 +0.9576028 0.8301795 0.6460766 +0.9720079 0.8301795 0.6460766 +0.9861357 0.8301795 0.6460766 +1 0.8301795 0.6460766 +0 0.8475045 0.6460766 +0.1939468 0.8475045 0.6460766 +0.2773041 0.8475045 0.6460766 +0.3384659 0.8475045 0.6460766 +0.3885728 0.8475045 0.6460766 +0.4317928 0.8475045 0.6460766 +0.470214 0.8475045 0.6460766 +0.5050551 0.8475045 0.6460766 +0.5370987 0.8475045 0.6460766 +0.5668815 0.8475045 0.6460766 +0.5947903 0.8475045 0.6460766 +0.6211144 0.8475045 0.6460766 +0.6460766 0.8475045 0.6460766 +0.6698526 0.8475045 0.6460766 +0.6925839 0.8475045 0.6460766 +0.7143866 0.8475045 0.6460766 +0.7353569 0.8475045 0.6460766 +0.7555758 0.8475045 0.6460766 +0.7751122 0.8475045 0.6460766 +0.7940252 0.8475045 0.6460766 +0.8123661 0.8475045 0.6460766 +0.8301795 0.8475045 0.6460766 +0.8475045 0.8475045 0.6460766 +0.8643761 0.8475045 0.6460766 +0.880825 0.8475045 0.6460766 +0.8968787 0.8475045 0.6460766 +0.9125621 0.8475045 0.6460766 +0.9278974 0.8475045 0.6460766 +0.9429048 0.8475045 0.6460766 +0.9576028 0.8475045 0.6460766 +0.9720079 0.8475045 0.6460766 +0.9861357 0.8475045 0.6460766 +1 0.8475045 0.6460766 +0 0.8643761 0.6460766 +0.1939468 0.8643761 0.6460766 +0.2773041 0.8643761 0.6460766 +0.3384659 0.8643761 0.6460766 +0.3885728 0.8643761 0.6460766 +0.4317928 0.8643761 0.6460766 +0.470214 0.8643761 0.6460766 +0.5050551 0.8643761 0.6460766 +0.5370987 0.8643761 0.6460766 +0.5668815 0.8643761 0.6460766 +0.5947903 0.8643761 0.6460766 +0.6211144 0.8643761 0.6460766 +0.6460766 0.8643761 0.6460766 +0.6698526 0.8643761 0.6460766 +0.6925839 0.8643761 0.6460766 +0.7143866 0.8643761 0.6460766 +0.7353569 0.8643761 0.6460766 +0.7555758 0.8643761 0.6460766 +0.7751122 0.8643761 0.6460766 +0.7940252 0.8643761 0.6460766 +0.8123661 0.8643761 0.6460766 +0.8301795 0.8643761 0.6460766 +0.8475045 0.8643761 0.6460766 +0.8643761 0.8643761 0.6460766 +0.880825 0.8643761 0.6460766 +0.8968787 0.8643761 0.6460766 +0.9125621 0.8643761 0.6460766 +0.9278974 0.8643761 0.6460766 +0.9429048 0.8643761 0.6460766 +0.9576028 0.8643761 0.6460766 +0.9720079 0.8643761 0.6460766 +0.9861357 0.8643761 0.6460766 +1 0.8643761 0.6460766 +0 0.880825 0.6460766 +0.1939468 0.880825 0.6460766 +0.2773041 0.880825 0.6460766 +0.3384659 0.880825 0.6460766 +0.3885728 0.880825 0.6460766 +0.4317928 0.880825 0.6460766 +0.470214 0.880825 0.6460766 +0.5050551 0.880825 0.6460766 +0.5370987 0.880825 0.6460766 +0.5668815 0.880825 0.6460766 +0.5947903 0.880825 0.6460766 +0.6211144 0.880825 0.6460766 +0.6460766 0.880825 0.6460766 +0.6698526 0.880825 0.6460766 +0.6925839 0.880825 0.6460766 +0.7143866 0.880825 0.6460766 +0.7353569 0.880825 0.6460766 +0.7555758 0.880825 0.6460766 +0.7751122 0.880825 0.6460766 +0.7940252 0.880825 0.6460766 +0.8123661 0.880825 0.6460766 +0.8301795 0.880825 0.6460766 +0.8475045 0.880825 0.6460766 +0.8643761 0.880825 0.6460766 +0.880825 0.880825 0.6460766 +0.8968787 0.880825 0.6460766 +0.9125621 0.880825 0.6460766 +0.9278974 0.880825 0.6460766 +0.9429048 0.880825 0.6460766 +0.9576028 0.880825 0.6460766 +0.9720079 0.880825 0.6460766 +0.9861357 0.880825 0.6460766 +1 0.880825 0.6460766 +0 0.8968787 0.6460766 +0.1939468 0.8968787 0.6460766 +0.2773041 0.8968787 0.6460766 +0.3384659 0.8968787 0.6460766 +0.3885728 0.8968787 0.6460766 +0.4317928 0.8968787 0.6460766 +0.470214 0.8968787 0.6460766 +0.5050551 0.8968787 0.6460766 +0.5370987 0.8968787 0.6460766 +0.5668815 0.8968787 0.6460766 +0.5947903 0.8968787 0.6460766 +0.6211144 0.8968787 0.6460766 +0.6460766 0.8968787 0.6460766 +0.6698526 0.8968787 0.6460766 +0.6925839 0.8968787 0.6460766 +0.7143866 0.8968787 0.6460766 +0.7353569 0.8968787 0.6460766 +0.7555758 0.8968787 0.6460766 +0.7751122 0.8968787 0.6460766 +0.7940252 0.8968787 0.6460766 +0.8123661 0.8968787 0.6460766 +0.8301795 0.8968787 0.6460766 +0.8475045 0.8968787 0.6460766 +0.8643761 0.8968787 0.6460766 +0.880825 0.8968787 0.6460766 +0.8968787 0.8968787 0.6460766 +0.9125621 0.8968787 0.6460766 +0.9278974 0.8968787 0.6460766 +0.9429048 0.8968787 0.6460766 +0.9576028 0.8968787 0.6460766 +0.9720079 0.8968787 0.6460766 +0.9861357 0.8968787 0.6460766 +1 0.8968787 0.6460766 +0 0.9125621 0.6460766 +0.1939468 0.9125621 0.6460766 +0.2773041 0.9125621 0.6460766 +0.3384659 0.9125621 0.6460766 +0.3885728 0.9125621 0.6460766 +0.4317928 0.9125621 0.6460766 +0.470214 0.9125621 0.6460766 +0.5050551 0.9125621 0.6460766 +0.5370987 0.9125621 0.6460766 +0.5668815 0.9125621 0.6460766 +0.5947903 0.9125621 0.6460766 +0.6211144 0.9125621 0.6460766 +0.6460766 0.9125621 0.6460766 +0.6698526 0.9125621 0.6460766 +0.6925839 0.9125621 0.6460766 +0.7143866 0.9125621 0.6460766 +0.7353569 0.9125621 0.6460766 +0.7555758 0.9125621 0.6460766 +0.7751122 0.9125621 0.6460766 +0.7940252 0.9125621 0.6460766 +0.8123661 0.9125621 0.6460766 +0.8301795 0.9125621 0.6460766 +0.8475045 0.9125621 0.6460766 +0.8643761 0.9125621 0.6460766 +0.880825 0.9125621 0.6460766 +0.8968787 0.9125621 0.6460766 +0.9125621 0.9125621 0.6460766 +0.9278974 0.9125621 0.6460766 +0.9429048 0.9125621 0.6460766 +0.9576028 0.9125621 0.6460766 +0.9720079 0.9125621 0.6460766 +0.9861357 0.9125621 0.6460766 +1 0.9125621 0.6460766 +0 0.9278974 0.6460766 +0.1939468 0.9278974 0.6460766 +0.2773041 0.9278974 0.6460766 +0.3384659 0.9278974 0.6460766 +0.3885728 0.9278974 0.6460766 +0.4317928 0.9278974 0.6460766 +0.470214 0.9278974 0.6460766 +0.5050551 0.9278974 0.6460766 +0.5370987 0.9278974 0.6460766 +0.5668815 0.9278974 0.6460766 +0.5947903 0.9278974 0.6460766 +0.6211144 0.9278974 0.6460766 +0.6460766 0.9278974 0.6460766 +0.6698526 0.9278974 0.6460766 +0.6925839 0.9278974 0.6460766 +0.7143866 0.9278974 0.6460766 +0.7353569 0.9278974 0.6460766 +0.7555758 0.9278974 0.6460766 +0.7751122 0.9278974 0.6460766 +0.7940252 0.9278974 0.6460766 +0.8123661 0.9278974 0.6460766 +0.8301795 0.9278974 0.6460766 +0.8475045 0.9278974 0.6460766 +0.8643761 0.9278974 0.6460766 +0.880825 0.9278974 0.6460766 +0.8968787 0.9278974 0.6460766 +0.9125621 0.9278974 0.6460766 +0.9278974 0.9278974 0.6460766 +0.9429048 0.9278974 0.6460766 +0.9576028 0.9278974 0.6460766 +0.9720079 0.9278974 0.6460766 +0.9861357 0.9278974 0.6460766 +1 0.9278974 0.6460766 +0 0.9429048 0.6460766 +0.1939468 0.9429048 0.6460766 +0.2773041 0.9429048 0.6460766 +0.3384659 0.9429048 0.6460766 +0.3885728 0.9429048 0.6460766 +0.4317928 0.9429048 0.6460766 +0.470214 0.9429048 0.6460766 +0.5050551 0.9429048 0.6460766 +0.5370987 0.9429048 0.6460766 +0.5668815 0.9429048 0.6460766 +0.5947903 0.9429048 0.6460766 +0.6211144 0.9429048 0.6460766 +0.6460766 0.9429048 0.6460766 +0.6698526 0.9429048 0.6460766 +0.6925839 0.9429048 0.6460766 +0.7143866 0.9429048 0.6460766 +0.7353569 0.9429048 0.6460766 +0.7555758 0.9429048 0.6460766 +0.7751122 0.9429048 0.6460766 +0.7940252 0.9429048 0.6460766 +0.8123661 0.9429048 0.6460766 +0.8301795 0.9429048 0.6460766 +0.8475045 0.9429048 0.6460766 +0.8643761 0.9429048 0.6460766 +0.880825 0.9429048 0.6460766 +0.8968787 0.9429048 0.6460766 +0.9125621 0.9429048 0.6460766 +0.9278974 0.9429048 0.6460766 +0.9429048 0.9429048 0.6460766 +0.9576028 0.9429048 0.6460766 +0.9720079 0.9429048 0.6460766 +0.9861357 0.9429048 0.6460766 +1 0.9429048 0.6460766 +0 0.9576028 0.6460766 +0.1939468 0.9576028 0.6460766 +0.2773041 0.9576028 0.6460766 +0.3384659 0.9576028 0.6460766 +0.3885728 0.9576028 0.6460766 +0.4317928 0.9576028 0.6460766 +0.470214 0.9576028 0.6460766 +0.5050551 0.9576028 0.6460766 +0.5370987 0.9576028 0.6460766 +0.5668815 0.9576028 0.6460766 +0.5947903 0.9576028 0.6460766 +0.6211144 0.9576028 0.6460766 +0.6460766 0.9576028 0.6460766 +0.6698526 0.9576028 0.6460766 +0.6925839 0.9576028 0.6460766 +0.7143866 0.9576028 0.6460766 +0.7353569 0.9576028 0.6460766 +0.7555758 0.9576028 0.6460766 +0.7751122 0.9576028 0.6460766 +0.7940252 0.9576028 0.6460766 +0.8123661 0.9576028 0.6460766 +0.8301795 0.9576028 0.6460766 +0.8475045 0.9576028 0.6460766 +0.8643761 0.9576028 0.6460766 +0.880825 0.9576028 0.6460766 +0.8968787 0.9576028 0.6460766 +0.9125621 0.9576028 0.6460766 +0.9278974 0.9576028 0.6460766 +0.9429048 0.9576028 0.6460766 +0.9576028 0.9576028 0.6460766 +0.9720079 0.9576028 0.6460766 +0.9861357 0.9576028 0.6460766 +1 0.9576028 0.6460766 +0 0.9720079 0.6460766 +0.1939468 0.9720079 0.6460766 +0.2773041 0.9720079 0.6460766 +0.3384659 0.9720079 0.6460766 +0.3885728 0.9720079 0.6460766 +0.4317928 0.9720079 0.6460766 +0.470214 0.9720079 0.6460766 +0.5050551 0.9720079 0.6460766 +0.5370987 0.9720079 0.6460766 +0.5668815 0.9720079 0.6460766 +0.5947903 0.9720079 0.6460766 +0.6211144 0.9720079 0.6460766 +0.6460766 0.9720079 0.6460766 +0.6698526 0.9720079 0.6460766 +0.6925839 0.9720079 0.6460766 +0.7143866 0.9720079 0.6460766 +0.7353569 0.9720079 0.6460766 +0.7555758 0.9720079 0.6460766 +0.7751122 0.9720079 0.6460766 +0.7940252 0.9720079 0.6460766 +0.8123661 0.9720079 0.6460766 +0.8301795 0.9720079 0.6460766 +0.8475045 0.9720079 0.6460766 +0.8643761 0.9720079 0.6460766 +0.880825 0.9720079 0.6460766 +0.8968787 0.9720079 0.6460766 +0.9125621 0.9720079 0.6460766 +0.9278974 0.9720079 0.6460766 +0.9429048 0.9720079 0.6460766 +0.9576028 0.9720079 0.6460766 +0.9720079 0.9720079 0.6460766 +0.9861357 0.9720079 0.6460766 +1 0.9720079 0.6460766 +0 0.9861357 0.6460766 +0.1939468 0.9861357 0.6460766 +0.2773041 0.9861357 0.6460766 +0.3384659 0.9861357 0.6460766 +0.3885728 0.9861357 0.6460766 +0.4317928 0.9861357 0.6460766 +0.470214 0.9861357 0.6460766 +0.5050551 0.9861357 0.6460766 +0.5370987 0.9861357 0.6460766 +0.5668815 0.9861357 0.6460766 +0.5947903 0.9861357 0.6460766 +0.6211144 0.9861357 0.6460766 +0.6460766 0.9861357 0.6460766 +0.6698526 0.9861357 0.6460766 +0.6925839 0.9861357 0.6460766 +0.7143866 0.9861357 0.6460766 +0.7353569 0.9861357 0.6460766 +0.7555758 0.9861357 0.6460766 +0.7751122 0.9861357 0.6460766 +0.7940252 0.9861357 0.6460766 +0.8123661 0.9861357 0.6460766 +0.8301795 0.9861357 0.6460766 +0.8475045 0.9861357 0.6460766 +0.8643761 0.9861357 0.6460766 +0.880825 0.9861357 0.6460766 +0.8968787 0.9861357 0.6460766 +0.9125621 0.9861357 0.6460766 +0.9278974 0.9861357 0.6460766 +0.9429048 0.9861357 0.6460766 +0.9576028 0.9861357 0.6460766 +0.9720079 0.9861357 0.6460766 +0.9861357 0.9861357 0.6460766 +1 0.9861357 0.6460766 +0 1 0.6460766 +0.1939468 1 0.6460766 +0.2773041 1 0.6460766 +0.3384659 1 0.6460766 +0.3885728 1 0.6460766 +0.4317928 1 0.6460766 +0.470214 1 0.6460766 +0.5050551 1 0.6460766 +0.5370987 1 0.6460766 +0.5668815 1 0.6460766 +0.5947903 1 0.6460766 +0.6211144 1 0.6460766 +0.6460766 1 0.6460766 +0.6698526 1 0.6460766 +0.6925839 1 0.6460766 +0.7143866 1 0.6460766 +0.7353569 1 0.6460766 +0.7555758 1 0.6460766 +0.7751122 1 0.6460766 +0.7940252 1 0.6460766 +0.8123661 1 0.6460766 +0.8301795 1 0.6460766 +0.8475045 1 0.6460766 +0.8643761 1 0.6460766 +0.880825 1 0.6460766 +0.8968787 1 0.6460766 +0.9125621 1 0.6460766 +0.9278974 1 0.6460766 +0.9429048 1 0.6460766 +0.9576028 1 0.6460766 +0.9720079 1 0.6460766 +0.9861357 1 0.6460766 +1 1 0.6460766 +0 0 0.6698526 +0.1939468 0 0.6698526 +0.2773041 0 0.6698526 +0.3384659 0 0.6698526 +0.3885728 0 0.6698526 +0.4317928 0 0.6698526 +0.470214 0 0.6698526 +0.5050551 0 0.6698526 +0.5370987 0 0.6698526 +0.5668815 0 0.6698526 +0.5947903 0 0.6698526 +0.6211144 0 0.6698526 +0.6460766 0 0.6698526 +0.6698526 0 0.6698526 +0.6925839 0 0.6698526 +0.7143866 0 0.6698526 +0.7353569 0 0.6698526 +0.7555758 0 0.6698526 +0.7751122 0 0.6698526 +0.7940252 0 0.6698526 +0.8123661 0 0.6698526 +0.8301795 0 0.6698526 +0.8475045 0 0.6698526 +0.8643761 0 0.6698526 +0.880825 0 0.6698526 +0.8968787 0 0.6698526 +0.9125621 0 0.6698526 +0.9278974 0 0.6698526 +0.9429048 0 0.6698526 +0.9576028 0 0.6698526 +0.9720079 0 0.6698526 +0.9861357 0 0.6698526 +1 0 0.6698526 +0 0.1939468 0.6698526 +0.1939468 0.1939468 0.6698526 +0.2773041 0.1939468 0.6698526 +0.3384659 0.1939468 0.6698526 +0.3885728 0.1939468 0.6698526 +0.4317928 0.1939468 0.6698526 +0.470214 0.1939468 0.6698526 +0.5050551 0.1939468 0.6698526 +0.5370987 0.1939468 0.6698526 +0.5668815 0.1939468 0.6698526 +0.5947903 0.1939468 0.6698526 +0.6211144 0.1939468 0.6698526 +0.6460766 0.1939468 0.6698526 +0.6698526 0.1939468 0.6698526 +0.6925839 0.1939468 0.6698526 +0.7143866 0.1939468 0.6698526 +0.7353569 0.1939468 0.6698526 +0.7555758 0.1939468 0.6698526 +0.7751122 0.1939468 0.6698526 +0.7940252 0.1939468 0.6698526 +0.8123661 0.1939468 0.6698526 +0.8301795 0.1939468 0.6698526 +0.8475045 0.1939468 0.6698526 +0.8643761 0.1939468 0.6698526 +0.880825 0.1939468 0.6698526 +0.8968787 0.1939468 0.6698526 +0.9125621 0.1939468 0.6698526 +0.9278974 0.1939468 0.6698526 +0.9429048 0.1939468 0.6698526 +0.9576028 0.1939468 0.6698526 +0.9720079 0.1939468 0.6698526 +0.9861357 0.1939468 0.6698526 +1 0.1939468 0.6698526 +0 0.2773041 0.6698526 +0.1939468 0.2773041 0.6698526 +0.2773041 0.2773041 0.6698526 +0.3384659 0.2773041 0.6698526 +0.3885728 0.2773041 0.6698526 +0.4317928 0.2773041 0.6698526 +0.470214 0.2773041 0.6698526 +0.5050551 0.2773041 0.6698526 +0.5370987 0.2773041 0.6698526 +0.5668815 0.2773041 0.6698526 +0.5947903 0.2773041 0.6698526 +0.6211144 0.2773041 0.6698526 +0.6460766 0.2773041 0.6698526 +0.6698526 0.2773041 0.6698526 +0.6925839 0.2773041 0.6698526 +0.7143866 0.2773041 0.6698526 +0.7353569 0.2773041 0.6698526 +0.7555758 0.2773041 0.6698526 +0.7751122 0.2773041 0.6698526 +0.7940252 0.2773041 0.6698526 +0.8123661 0.2773041 0.6698526 +0.8301795 0.2773041 0.6698526 +0.8475045 0.2773041 0.6698526 +0.8643761 0.2773041 0.6698526 +0.880825 0.2773041 0.6698526 +0.8968787 0.2773041 0.6698526 +0.9125621 0.2773041 0.6698526 +0.9278974 0.2773041 0.6698526 +0.9429048 0.2773041 0.6698526 +0.9576028 0.2773041 0.6698526 +0.9720079 0.2773041 0.6698526 +0.9861357 0.2773041 0.6698526 +1 0.2773041 0.6698526 +0 0.3384659 0.6698526 +0.1939468 0.3384659 0.6698526 +0.2773041 0.3384659 0.6698526 +0.3384659 0.3384659 0.6698526 +0.3885728 0.3384659 0.6698526 +0.4317928 0.3384659 0.6698526 +0.470214 0.3384659 0.6698526 +0.5050551 0.3384659 0.6698526 +0.5370987 0.3384659 0.6698526 +0.5668815 0.3384659 0.6698526 +0.5947903 0.3384659 0.6698526 +0.6211144 0.3384659 0.6698526 +0.6460766 0.3384659 0.6698526 +0.6698526 0.3384659 0.6698526 +0.6925839 0.3384659 0.6698526 +0.7143866 0.3384659 0.6698526 +0.7353569 0.3384659 0.6698526 +0.7555758 0.3384659 0.6698526 +0.7751122 0.3384659 0.6698526 +0.7940252 0.3384659 0.6698526 +0.8123661 0.3384659 0.6698526 +0.8301795 0.3384659 0.6698526 +0.8475045 0.3384659 0.6698526 +0.8643761 0.3384659 0.6698526 +0.880825 0.3384659 0.6698526 +0.8968787 0.3384659 0.6698526 +0.9125621 0.3384659 0.6698526 +0.9278974 0.3384659 0.6698526 +0.9429048 0.3384659 0.6698526 +0.9576028 0.3384659 0.6698526 +0.9720079 0.3384659 0.6698526 +0.9861357 0.3384659 0.6698526 +1 0.3384659 0.6698526 +0 0.3885728 0.6698526 +0.1939468 0.3885728 0.6698526 +0.2773041 0.3885728 0.6698526 +0.3384659 0.3885728 0.6698526 +0.3885728 0.3885728 0.6698526 +0.4317928 0.3885728 0.6698526 +0.470214 0.3885728 0.6698526 +0.5050551 0.3885728 0.6698526 +0.5370987 0.3885728 0.6698526 +0.5668815 0.3885728 0.6698526 +0.5947903 0.3885728 0.6698526 +0.6211144 0.3885728 0.6698526 +0.6460766 0.3885728 0.6698526 +0.6698526 0.3885728 0.6698526 +0.6925839 0.3885728 0.6698526 +0.7143866 0.3885728 0.6698526 +0.7353569 0.3885728 0.6698526 +0.7555758 0.3885728 0.6698526 +0.7751122 0.3885728 0.6698526 +0.7940252 0.3885728 0.6698526 +0.8123661 0.3885728 0.6698526 +0.8301795 0.3885728 0.6698526 +0.8475045 0.3885728 0.6698526 +0.8643761 0.3885728 0.6698526 +0.880825 0.3885728 0.6698526 +0.8968787 0.3885728 0.6698526 +0.9125621 0.3885728 0.6698526 +0.9278974 0.3885728 0.6698526 +0.9429048 0.3885728 0.6698526 +0.9576028 0.3885728 0.6698526 +0.9720079 0.3885728 0.6698526 +0.9861357 0.3885728 0.6698526 +1 0.3885728 0.6698526 +0 0.4317928 0.6698526 +0.1939468 0.4317928 0.6698526 +0.2773041 0.4317928 0.6698526 +0.3384659 0.4317928 0.6698526 +0.3885728 0.4317928 0.6698526 +0.4317928 0.4317928 0.6698526 +0.470214 0.4317928 0.6698526 +0.5050551 0.4317928 0.6698526 +0.5370987 0.4317928 0.6698526 +0.5668815 0.4317928 0.6698526 +0.5947903 0.4317928 0.6698526 +0.6211144 0.4317928 0.6698526 +0.6460766 0.4317928 0.6698526 +0.6698526 0.4317928 0.6698526 +0.6925839 0.4317928 0.6698526 +0.7143866 0.4317928 0.6698526 +0.7353569 0.4317928 0.6698526 +0.7555758 0.4317928 0.6698526 +0.7751122 0.4317928 0.6698526 +0.7940252 0.4317928 0.6698526 +0.8123661 0.4317928 0.6698526 +0.8301795 0.4317928 0.6698526 +0.8475045 0.4317928 0.6698526 +0.8643761 0.4317928 0.6698526 +0.880825 0.4317928 0.6698526 +0.8968787 0.4317928 0.6698526 +0.9125621 0.4317928 0.6698526 +0.9278974 0.4317928 0.6698526 +0.9429048 0.4317928 0.6698526 +0.9576028 0.4317928 0.6698526 +0.9720079 0.4317928 0.6698526 +0.9861357 0.4317928 0.6698526 +1 0.4317928 0.6698526 +0 0.470214 0.6698526 +0.1939468 0.470214 0.6698526 +0.2773041 0.470214 0.6698526 +0.3384659 0.470214 0.6698526 +0.3885728 0.470214 0.6698526 +0.4317928 0.470214 0.6698526 +0.470214 0.470214 0.6698526 +0.5050551 0.470214 0.6698526 +0.5370987 0.470214 0.6698526 +0.5668815 0.470214 0.6698526 +0.5947903 0.470214 0.6698526 +0.6211144 0.470214 0.6698526 +0.6460766 0.470214 0.6698526 +0.6698526 0.470214 0.6698526 +0.6925839 0.470214 0.6698526 +0.7143866 0.470214 0.6698526 +0.7353569 0.470214 0.6698526 +0.7555758 0.470214 0.6698526 +0.7751122 0.470214 0.6698526 +0.7940252 0.470214 0.6698526 +0.8123661 0.470214 0.6698526 +0.8301795 0.470214 0.6698526 +0.8475045 0.470214 0.6698526 +0.8643761 0.470214 0.6698526 +0.880825 0.470214 0.6698526 +0.8968787 0.470214 0.6698526 +0.9125621 0.470214 0.6698526 +0.9278974 0.470214 0.6698526 +0.9429048 0.470214 0.6698526 +0.9576028 0.470214 0.6698526 +0.9720079 0.470214 0.6698526 +0.9861357 0.470214 0.6698526 +1 0.470214 0.6698526 +0 0.5050551 0.6698526 +0.1939468 0.5050551 0.6698526 +0.2773041 0.5050551 0.6698526 +0.3384659 0.5050551 0.6698526 +0.3885728 0.5050551 0.6698526 +0.4317928 0.5050551 0.6698526 +0.470214 0.5050551 0.6698526 +0.5050551 0.5050551 0.6698526 +0.5370987 0.5050551 0.6698526 +0.5668815 0.5050551 0.6698526 +0.5947903 0.5050551 0.6698526 +0.6211144 0.5050551 0.6698526 +0.6460766 0.5050551 0.6698526 +0.6698526 0.5050551 0.6698526 +0.6925839 0.5050551 0.6698526 +0.7143866 0.5050551 0.6698526 +0.7353569 0.5050551 0.6698526 +0.7555758 0.5050551 0.6698526 +0.7751122 0.5050551 0.6698526 +0.7940252 0.5050551 0.6698526 +0.8123661 0.5050551 0.6698526 +0.8301795 0.5050551 0.6698526 +0.8475045 0.5050551 0.6698526 +0.8643761 0.5050551 0.6698526 +0.880825 0.5050551 0.6698526 +0.8968787 0.5050551 0.6698526 +0.9125621 0.5050551 0.6698526 +0.9278974 0.5050551 0.6698526 +0.9429048 0.5050551 0.6698526 +0.9576028 0.5050551 0.6698526 +0.9720079 0.5050551 0.6698526 +0.9861357 0.5050551 0.6698526 +1 0.5050551 0.6698526 +0 0.5370987 0.6698526 +0.1939468 0.5370987 0.6698526 +0.2773041 0.5370987 0.6698526 +0.3384659 0.5370987 0.6698526 +0.3885728 0.5370987 0.6698526 +0.4317928 0.5370987 0.6698526 +0.470214 0.5370987 0.6698526 +0.5050551 0.5370987 0.6698526 +0.5370987 0.5370987 0.6698526 +0.5668815 0.5370987 0.6698526 +0.5947903 0.5370987 0.6698526 +0.6211144 0.5370987 0.6698526 +0.6460766 0.5370987 0.6698526 +0.6698526 0.5370987 0.6698526 +0.6925839 0.5370987 0.6698526 +0.7143866 0.5370987 0.6698526 +0.7353569 0.5370987 0.6698526 +0.7555758 0.5370987 0.6698526 +0.7751122 0.5370987 0.6698526 +0.7940252 0.5370987 0.6698526 +0.8123661 0.5370987 0.6698526 +0.8301795 0.5370987 0.6698526 +0.8475045 0.5370987 0.6698526 +0.8643761 0.5370987 0.6698526 +0.880825 0.5370987 0.6698526 +0.8968787 0.5370987 0.6698526 +0.9125621 0.5370987 0.6698526 +0.9278974 0.5370987 0.6698526 +0.9429048 0.5370987 0.6698526 +0.9576028 0.5370987 0.6698526 +0.9720079 0.5370987 0.6698526 +0.9861357 0.5370987 0.6698526 +1 0.5370987 0.6698526 +0 0.5668815 0.6698526 +0.1939468 0.5668815 0.6698526 +0.2773041 0.5668815 0.6698526 +0.3384659 0.5668815 0.6698526 +0.3885728 0.5668815 0.6698526 +0.4317928 0.5668815 0.6698526 +0.470214 0.5668815 0.6698526 +0.5050551 0.5668815 0.6698526 +0.5370987 0.5668815 0.6698526 +0.5668815 0.5668815 0.6698526 +0.5947903 0.5668815 0.6698526 +0.6211144 0.5668815 0.6698526 +0.6460766 0.5668815 0.6698526 +0.6698526 0.5668815 0.6698526 +0.6925839 0.5668815 0.6698526 +0.7143866 0.5668815 0.6698526 +0.7353569 0.5668815 0.6698526 +0.7555758 0.5668815 0.6698526 +0.7751122 0.5668815 0.6698526 +0.7940252 0.5668815 0.6698526 +0.8123661 0.5668815 0.6698526 +0.8301795 0.5668815 0.6698526 +0.8475045 0.5668815 0.6698526 +0.8643761 0.5668815 0.6698526 +0.880825 0.5668815 0.6698526 +0.8968787 0.5668815 0.6698526 +0.9125621 0.5668815 0.6698526 +0.9278974 0.5668815 0.6698526 +0.9429048 0.5668815 0.6698526 +0.9576028 0.5668815 0.6698526 +0.9720079 0.5668815 0.6698526 +0.9861357 0.5668815 0.6698526 +1 0.5668815 0.6698526 +0 0.5947903 0.6698526 +0.1939468 0.5947903 0.6698526 +0.2773041 0.5947903 0.6698526 +0.3384659 0.5947903 0.6698526 +0.3885728 0.5947903 0.6698526 +0.4317928 0.5947903 0.6698526 +0.470214 0.5947903 0.6698526 +0.5050551 0.5947903 0.6698526 +0.5370987 0.5947903 0.6698526 +0.5668815 0.5947903 0.6698526 +0.5947903 0.5947903 0.6698526 +0.6211144 0.5947903 0.6698526 +0.6460766 0.5947903 0.6698526 +0.6698526 0.5947903 0.6698526 +0.6925839 0.5947903 0.6698526 +0.7143866 0.5947903 0.6698526 +0.7353569 0.5947903 0.6698526 +0.7555758 0.5947903 0.6698526 +0.7751122 0.5947903 0.6698526 +0.7940252 0.5947903 0.6698526 +0.8123661 0.5947903 0.6698526 +0.8301795 0.5947903 0.6698526 +0.8475045 0.5947903 0.6698526 +0.8643761 0.5947903 0.6698526 +0.880825 0.5947903 0.6698526 +0.8968787 0.5947903 0.6698526 +0.9125621 0.5947903 0.6698526 +0.9278974 0.5947903 0.6698526 +0.9429048 0.5947903 0.6698526 +0.9576028 0.5947903 0.6698526 +0.9720079 0.5947903 0.6698526 +0.9861357 0.5947903 0.6698526 +1 0.5947903 0.6698526 +0 0.6211144 0.6698526 +0.1939468 0.6211144 0.6698526 +0.2773041 0.6211144 0.6698526 +0.3384659 0.6211144 0.6698526 +0.3885728 0.6211144 0.6698526 +0.4317928 0.6211144 0.6698526 +0.470214 0.6211144 0.6698526 +0.5050551 0.6211144 0.6698526 +0.5370987 0.6211144 0.6698526 +0.5668815 0.6211144 0.6698526 +0.5947903 0.6211144 0.6698526 +0.6211144 0.6211144 0.6698526 +0.6460766 0.6211144 0.6698526 +0.6698526 0.6211144 0.6698526 +0.6925839 0.6211144 0.6698526 +0.7143866 0.6211144 0.6698526 +0.7353569 0.6211144 0.6698526 +0.7555758 0.6211144 0.6698526 +0.7751122 0.6211144 0.6698526 +0.7940252 0.6211144 0.6698526 +0.8123661 0.6211144 0.6698526 +0.8301795 0.6211144 0.6698526 +0.8475045 0.6211144 0.6698526 +0.8643761 0.6211144 0.6698526 +0.880825 0.6211144 0.6698526 +0.8968787 0.6211144 0.6698526 +0.9125621 0.6211144 0.6698526 +0.9278974 0.6211144 0.6698526 +0.9429048 0.6211144 0.6698526 +0.9576028 0.6211144 0.6698526 +0.9720079 0.6211144 0.6698526 +0.9861357 0.6211144 0.6698526 +1 0.6211144 0.6698526 +0 0.6460766 0.6698526 +0.1939468 0.6460766 0.6698526 +0.2773041 0.6460766 0.6698526 +0.3384659 0.6460766 0.6698526 +0.3885728 0.6460766 0.6698526 +0.4317928 0.6460766 0.6698526 +0.470214 0.6460766 0.6698526 +0.5050551 0.6460766 0.6698526 +0.5370987 0.6460766 0.6698526 +0.5668815 0.6460766 0.6698526 +0.5947903 0.6460766 0.6698526 +0.6211144 0.6460766 0.6698526 +0.6460766 0.6460766 0.6698526 +0.6698526 0.6460766 0.6698526 +0.6925839 0.6460766 0.6698526 +0.7143866 0.6460766 0.6698526 +0.7353569 0.6460766 0.6698526 +0.7555758 0.6460766 0.6698526 +0.7751122 0.6460766 0.6698526 +0.7940252 0.6460766 0.6698526 +0.8123661 0.6460766 0.6698526 +0.8301795 0.6460766 0.6698526 +0.8475045 0.6460766 0.6698526 +0.8643761 0.6460766 0.6698526 +0.880825 0.6460766 0.6698526 +0.8968787 0.6460766 0.6698526 +0.9125621 0.6460766 0.6698526 +0.9278974 0.6460766 0.6698526 +0.9429048 0.6460766 0.6698526 +0.9576028 0.6460766 0.6698526 +0.9720079 0.6460766 0.6698526 +0.9861357 0.6460766 0.6698526 +1 0.6460766 0.6698526 +0 0.6698526 0.6698526 +0.1939468 0.6698526 0.6698526 +0.2773041 0.6698526 0.6698526 +0.3384659 0.6698526 0.6698526 +0.3885728 0.6698526 0.6698526 +0.4317928 0.6698526 0.6698526 +0.470214 0.6698526 0.6698526 +0.5050551 0.6698526 0.6698526 +0.5370987 0.6698526 0.6698526 +0.5668815 0.6698526 0.6698526 +0.5947903 0.6698526 0.6698526 +0.6211144 0.6698526 0.6698526 +0.6460766 0.6698526 0.6698526 +0.6698526 0.6698526 0.6698526 +0.6925839 0.6698526 0.6698526 +0.7143866 0.6698526 0.6698526 +0.7353569 0.6698526 0.6698526 +0.7555758 0.6698526 0.6698526 +0.7751122 0.6698526 0.6698526 +0.7940252 0.6698526 0.6698526 +0.8123661 0.6698526 0.6698526 +0.8301795 0.6698526 0.6698526 +0.8475045 0.6698526 0.6698526 +0.8643761 0.6698526 0.6698526 +0.880825 0.6698526 0.6698526 +0.8968787 0.6698526 0.6698526 +0.9125621 0.6698526 0.6698526 +0.9278974 0.6698526 0.6698526 +0.9429048 0.6698526 0.6698526 +0.9576028 0.6698526 0.6698526 +0.9720079 0.6698526 0.6698526 +0.9861357 0.6698526 0.6698526 +1 0.6698526 0.6698526 +0 0.6925839 0.6698526 +0.1939468 0.6925839 0.6698526 +0.2773041 0.6925839 0.6698526 +0.3384659 0.6925839 0.6698526 +0.3885728 0.6925839 0.6698526 +0.4317928 0.6925839 0.6698526 +0.470214 0.6925839 0.6698526 +0.5050551 0.6925839 0.6698526 +0.5370987 0.6925839 0.6698526 +0.5668815 0.6925839 0.6698526 +0.5947903 0.6925839 0.6698526 +0.6211144 0.6925839 0.6698526 +0.6460766 0.6925839 0.6698526 +0.6698526 0.6925839 0.6698526 +0.6925839 0.6925839 0.6698526 +0.7143866 0.6925839 0.6698526 +0.7353569 0.6925839 0.6698526 +0.7555758 0.6925839 0.6698526 +0.7751122 0.6925839 0.6698526 +0.7940252 0.6925839 0.6698526 +0.8123661 0.6925839 0.6698526 +0.8301795 0.6925839 0.6698526 +0.8475045 0.6925839 0.6698526 +0.8643761 0.6925839 0.6698526 +0.880825 0.6925839 0.6698526 +0.8968787 0.6925839 0.6698526 +0.9125621 0.6925839 0.6698526 +0.9278974 0.6925839 0.6698526 +0.9429048 0.6925839 0.6698526 +0.9576028 0.6925839 0.6698526 +0.9720079 0.6925839 0.6698526 +0.9861357 0.6925839 0.6698526 +1 0.6925839 0.6698526 +0 0.7143866 0.6698526 +0.1939468 0.7143866 0.6698526 +0.2773041 0.7143866 0.6698526 +0.3384659 0.7143866 0.6698526 +0.3885728 0.7143866 0.6698526 +0.4317928 0.7143866 0.6698526 +0.470214 0.7143866 0.6698526 +0.5050551 0.7143866 0.6698526 +0.5370987 0.7143866 0.6698526 +0.5668815 0.7143866 0.6698526 +0.5947903 0.7143866 0.6698526 +0.6211144 0.7143866 0.6698526 +0.6460766 0.7143866 0.6698526 +0.6698526 0.7143866 0.6698526 +0.6925839 0.7143866 0.6698526 +0.7143866 0.7143866 0.6698526 +0.7353569 0.7143866 0.6698526 +0.7555758 0.7143866 0.6698526 +0.7751122 0.7143866 0.6698526 +0.7940252 0.7143866 0.6698526 +0.8123661 0.7143866 0.6698526 +0.8301795 0.7143866 0.6698526 +0.8475045 0.7143866 0.6698526 +0.8643761 0.7143866 0.6698526 +0.880825 0.7143866 0.6698526 +0.8968787 0.7143866 0.6698526 +0.9125621 0.7143866 0.6698526 +0.9278974 0.7143866 0.6698526 +0.9429048 0.7143866 0.6698526 +0.9576028 0.7143866 0.6698526 +0.9720079 0.7143866 0.6698526 +0.9861357 0.7143866 0.6698526 +1 0.7143866 0.6698526 +0 0.7353569 0.6698526 +0.1939468 0.7353569 0.6698526 +0.2773041 0.7353569 0.6698526 +0.3384659 0.7353569 0.6698526 +0.3885728 0.7353569 0.6698526 +0.4317928 0.7353569 0.6698526 +0.470214 0.7353569 0.6698526 +0.5050551 0.7353569 0.6698526 +0.5370987 0.7353569 0.6698526 +0.5668815 0.7353569 0.6698526 +0.5947903 0.7353569 0.6698526 +0.6211144 0.7353569 0.6698526 +0.6460766 0.7353569 0.6698526 +0.6698526 0.7353569 0.6698526 +0.6925839 0.7353569 0.6698526 +0.7143866 0.7353569 0.6698526 +0.7353569 0.7353569 0.6698526 +0.7555758 0.7353569 0.6698526 +0.7751122 0.7353569 0.6698526 +0.7940252 0.7353569 0.6698526 +0.8123661 0.7353569 0.6698526 +0.8301795 0.7353569 0.6698526 +0.8475045 0.7353569 0.6698526 +0.8643761 0.7353569 0.6698526 +0.880825 0.7353569 0.6698526 +0.8968787 0.7353569 0.6698526 +0.9125621 0.7353569 0.6698526 +0.9278974 0.7353569 0.6698526 +0.9429048 0.7353569 0.6698526 +0.9576028 0.7353569 0.6698526 +0.9720079 0.7353569 0.6698526 +0.9861357 0.7353569 0.6698526 +1 0.7353569 0.6698526 +0 0.7555758 0.6698526 +0.1939468 0.7555758 0.6698526 +0.2773041 0.7555758 0.6698526 +0.3384659 0.7555758 0.6698526 +0.3885728 0.7555758 0.6698526 +0.4317928 0.7555758 0.6698526 +0.470214 0.7555758 0.6698526 +0.5050551 0.7555758 0.6698526 +0.5370987 0.7555758 0.6698526 +0.5668815 0.7555758 0.6698526 +0.5947903 0.7555758 0.6698526 +0.6211144 0.7555758 0.6698526 +0.6460766 0.7555758 0.6698526 +0.6698526 0.7555758 0.6698526 +0.6925839 0.7555758 0.6698526 +0.7143866 0.7555758 0.6698526 +0.7353569 0.7555758 0.6698526 +0.7555758 0.7555758 0.6698526 +0.7751122 0.7555758 0.6698526 +0.7940252 0.7555758 0.6698526 +0.8123661 0.7555758 0.6698526 +0.8301795 0.7555758 0.6698526 +0.8475045 0.7555758 0.6698526 +0.8643761 0.7555758 0.6698526 +0.880825 0.7555758 0.6698526 +0.8968787 0.7555758 0.6698526 +0.9125621 0.7555758 0.6698526 +0.9278974 0.7555758 0.6698526 +0.9429048 0.7555758 0.6698526 +0.9576028 0.7555758 0.6698526 +0.9720079 0.7555758 0.6698526 +0.9861357 0.7555758 0.6698526 +1 0.7555758 0.6698526 +0 0.7751122 0.6698526 +0.1939468 0.7751122 0.6698526 +0.2773041 0.7751122 0.6698526 +0.3384659 0.7751122 0.6698526 +0.3885728 0.7751122 0.6698526 +0.4317928 0.7751122 0.6698526 +0.470214 0.7751122 0.6698526 +0.5050551 0.7751122 0.6698526 +0.5370987 0.7751122 0.6698526 +0.5668815 0.7751122 0.6698526 +0.5947903 0.7751122 0.6698526 +0.6211144 0.7751122 0.6698526 +0.6460766 0.7751122 0.6698526 +0.6698526 0.7751122 0.6698526 +0.6925839 0.7751122 0.6698526 +0.7143866 0.7751122 0.6698526 +0.7353569 0.7751122 0.6698526 +0.7555758 0.7751122 0.6698526 +0.7751122 0.7751122 0.6698526 +0.7940252 0.7751122 0.6698526 +0.8123661 0.7751122 0.6698526 +0.8301795 0.7751122 0.6698526 +0.8475045 0.7751122 0.6698526 +0.8643761 0.7751122 0.6698526 +0.880825 0.7751122 0.6698526 +0.8968787 0.7751122 0.6698526 +0.9125621 0.7751122 0.6698526 +0.9278974 0.7751122 0.6698526 +0.9429048 0.7751122 0.6698526 +0.9576028 0.7751122 0.6698526 +0.9720079 0.7751122 0.6698526 +0.9861357 0.7751122 0.6698526 +1 0.7751122 0.6698526 +0 0.7940252 0.6698526 +0.1939468 0.7940252 0.6698526 +0.2773041 0.7940252 0.6698526 +0.3384659 0.7940252 0.6698526 +0.3885728 0.7940252 0.6698526 +0.4317928 0.7940252 0.6698526 +0.470214 0.7940252 0.6698526 +0.5050551 0.7940252 0.6698526 +0.5370987 0.7940252 0.6698526 +0.5668815 0.7940252 0.6698526 +0.5947903 0.7940252 0.6698526 +0.6211144 0.7940252 0.6698526 +0.6460766 0.7940252 0.6698526 +0.6698526 0.7940252 0.6698526 +0.6925839 0.7940252 0.6698526 +0.7143866 0.7940252 0.6698526 +0.7353569 0.7940252 0.6698526 +0.7555758 0.7940252 0.6698526 +0.7751122 0.7940252 0.6698526 +0.7940252 0.7940252 0.6698526 +0.8123661 0.7940252 0.6698526 +0.8301795 0.7940252 0.6698526 +0.8475045 0.7940252 0.6698526 +0.8643761 0.7940252 0.6698526 +0.880825 0.7940252 0.6698526 +0.8968787 0.7940252 0.6698526 +0.9125621 0.7940252 0.6698526 +0.9278974 0.7940252 0.6698526 +0.9429048 0.7940252 0.6698526 +0.9576028 0.7940252 0.6698526 +0.9720079 0.7940252 0.6698526 +0.9861357 0.7940252 0.6698526 +1 0.7940252 0.6698526 +0 0.8123661 0.6698526 +0.1939468 0.8123661 0.6698526 +0.2773041 0.8123661 0.6698526 +0.3384659 0.8123661 0.6698526 +0.3885728 0.8123661 0.6698526 +0.4317928 0.8123661 0.6698526 +0.470214 0.8123661 0.6698526 +0.5050551 0.8123661 0.6698526 +0.5370987 0.8123661 0.6698526 +0.5668815 0.8123661 0.6698526 +0.5947903 0.8123661 0.6698526 +0.6211144 0.8123661 0.6698526 +0.6460766 0.8123661 0.6698526 +0.6698526 0.8123661 0.6698526 +0.6925839 0.8123661 0.6698526 +0.7143866 0.8123661 0.6698526 +0.7353569 0.8123661 0.6698526 +0.7555758 0.8123661 0.6698526 +0.7751122 0.8123661 0.6698526 +0.7940252 0.8123661 0.6698526 +0.8123661 0.8123661 0.6698526 +0.8301795 0.8123661 0.6698526 +0.8475045 0.8123661 0.6698526 +0.8643761 0.8123661 0.6698526 +0.880825 0.8123661 0.6698526 +0.8968787 0.8123661 0.6698526 +0.9125621 0.8123661 0.6698526 +0.9278974 0.8123661 0.6698526 +0.9429048 0.8123661 0.6698526 +0.9576028 0.8123661 0.6698526 +0.9720079 0.8123661 0.6698526 +0.9861357 0.8123661 0.6698526 +1 0.8123661 0.6698526 +0 0.8301795 0.6698526 +0.1939468 0.8301795 0.6698526 +0.2773041 0.8301795 0.6698526 +0.3384659 0.8301795 0.6698526 +0.3885728 0.8301795 0.6698526 +0.4317928 0.8301795 0.6698526 +0.470214 0.8301795 0.6698526 +0.5050551 0.8301795 0.6698526 +0.5370987 0.8301795 0.6698526 +0.5668815 0.8301795 0.6698526 +0.5947903 0.8301795 0.6698526 +0.6211144 0.8301795 0.6698526 +0.6460766 0.8301795 0.6698526 +0.6698526 0.8301795 0.6698526 +0.6925839 0.8301795 0.6698526 +0.7143866 0.8301795 0.6698526 +0.7353569 0.8301795 0.6698526 +0.7555758 0.8301795 0.6698526 +0.7751122 0.8301795 0.6698526 +0.7940252 0.8301795 0.6698526 +0.8123661 0.8301795 0.6698526 +0.8301795 0.8301795 0.6698526 +0.8475045 0.8301795 0.6698526 +0.8643761 0.8301795 0.6698526 +0.880825 0.8301795 0.6698526 +0.8968787 0.8301795 0.6698526 +0.9125621 0.8301795 0.6698526 +0.9278974 0.8301795 0.6698526 +0.9429048 0.8301795 0.6698526 +0.9576028 0.8301795 0.6698526 +0.9720079 0.8301795 0.6698526 +0.9861357 0.8301795 0.6698526 +1 0.8301795 0.6698526 +0 0.8475045 0.6698526 +0.1939468 0.8475045 0.6698526 +0.2773041 0.8475045 0.6698526 +0.3384659 0.8475045 0.6698526 +0.3885728 0.8475045 0.6698526 +0.4317928 0.8475045 0.6698526 +0.470214 0.8475045 0.6698526 +0.5050551 0.8475045 0.6698526 +0.5370987 0.8475045 0.6698526 +0.5668815 0.8475045 0.6698526 +0.5947903 0.8475045 0.6698526 +0.6211144 0.8475045 0.6698526 +0.6460766 0.8475045 0.6698526 +0.6698526 0.8475045 0.6698526 +0.6925839 0.8475045 0.6698526 +0.7143866 0.8475045 0.6698526 +0.7353569 0.8475045 0.6698526 +0.7555758 0.8475045 0.6698526 +0.7751122 0.8475045 0.6698526 +0.7940252 0.8475045 0.6698526 +0.8123661 0.8475045 0.6698526 +0.8301795 0.8475045 0.6698526 +0.8475045 0.8475045 0.6698526 +0.8643761 0.8475045 0.6698526 +0.880825 0.8475045 0.6698526 +0.8968787 0.8475045 0.6698526 +0.9125621 0.8475045 0.6698526 +0.9278974 0.8475045 0.6698526 +0.9429048 0.8475045 0.6698526 +0.9576028 0.8475045 0.6698526 +0.9720079 0.8475045 0.6698526 +0.9861357 0.8475045 0.6698526 +1 0.8475045 0.6698526 +0 0.8643761 0.6698526 +0.1939468 0.8643761 0.6698526 +0.2773041 0.8643761 0.6698526 +0.3384659 0.8643761 0.6698526 +0.3885728 0.8643761 0.6698526 +0.4317928 0.8643761 0.6698526 +0.470214 0.8643761 0.6698526 +0.5050551 0.8643761 0.6698526 +0.5370987 0.8643761 0.6698526 +0.5668815 0.8643761 0.6698526 +0.5947903 0.8643761 0.6698526 +0.6211144 0.8643761 0.6698526 +0.6460766 0.8643761 0.6698526 +0.6698526 0.8643761 0.6698526 +0.6925839 0.8643761 0.6698526 +0.7143866 0.8643761 0.6698526 +0.7353569 0.8643761 0.6698526 +0.7555758 0.8643761 0.6698526 +0.7751122 0.8643761 0.6698526 +0.7940252 0.8643761 0.6698526 +0.8123661 0.8643761 0.6698526 +0.8301795 0.8643761 0.6698526 +0.8475045 0.8643761 0.6698526 +0.8643761 0.8643761 0.6698526 +0.880825 0.8643761 0.6698526 +0.8968787 0.8643761 0.6698526 +0.9125621 0.8643761 0.6698526 +0.9278974 0.8643761 0.6698526 +0.9429048 0.8643761 0.6698526 +0.9576028 0.8643761 0.6698526 +0.9720079 0.8643761 0.6698526 +0.9861357 0.8643761 0.6698526 +1 0.8643761 0.6698526 +0 0.880825 0.6698526 +0.1939468 0.880825 0.6698526 +0.2773041 0.880825 0.6698526 +0.3384659 0.880825 0.6698526 +0.3885728 0.880825 0.6698526 +0.4317928 0.880825 0.6698526 +0.470214 0.880825 0.6698526 +0.5050551 0.880825 0.6698526 +0.5370987 0.880825 0.6698526 +0.5668815 0.880825 0.6698526 +0.5947903 0.880825 0.6698526 +0.6211144 0.880825 0.6698526 +0.6460766 0.880825 0.6698526 +0.6698526 0.880825 0.6698526 +0.6925839 0.880825 0.6698526 +0.7143866 0.880825 0.6698526 +0.7353569 0.880825 0.6698526 +0.7555758 0.880825 0.6698526 +0.7751122 0.880825 0.6698526 +0.7940252 0.880825 0.6698526 +0.8123661 0.880825 0.6698526 +0.8301795 0.880825 0.6698526 +0.8475045 0.880825 0.6698526 +0.8643761 0.880825 0.6698526 +0.880825 0.880825 0.6698526 +0.8968787 0.880825 0.6698526 +0.9125621 0.880825 0.6698526 +0.9278974 0.880825 0.6698526 +0.9429048 0.880825 0.6698526 +0.9576028 0.880825 0.6698526 +0.9720079 0.880825 0.6698526 +0.9861357 0.880825 0.6698526 +1 0.880825 0.6698526 +0 0.8968787 0.6698526 +0.1939468 0.8968787 0.6698526 +0.2773041 0.8968787 0.6698526 +0.3384659 0.8968787 0.6698526 +0.3885728 0.8968787 0.6698526 +0.4317928 0.8968787 0.6698526 +0.470214 0.8968787 0.6698526 +0.5050551 0.8968787 0.6698526 +0.5370987 0.8968787 0.6698526 +0.5668815 0.8968787 0.6698526 +0.5947903 0.8968787 0.6698526 +0.6211144 0.8968787 0.6698526 +0.6460766 0.8968787 0.6698526 +0.6698526 0.8968787 0.6698526 +0.6925839 0.8968787 0.6698526 +0.7143866 0.8968787 0.6698526 +0.7353569 0.8968787 0.6698526 +0.7555758 0.8968787 0.6698526 +0.7751122 0.8968787 0.6698526 +0.7940252 0.8968787 0.6698526 +0.8123661 0.8968787 0.6698526 +0.8301795 0.8968787 0.6698526 +0.8475045 0.8968787 0.6698526 +0.8643761 0.8968787 0.6698526 +0.880825 0.8968787 0.6698526 +0.8968787 0.8968787 0.6698526 +0.9125621 0.8968787 0.6698526 +0.9278974 0.8968787 0.6698526 +0.9429048 0.8968787 0.6698526 +0.9576028 0.8968787 0.6698526 +0.9720079 0.8968787 0.6698526 +0.9861357 0.8968787 0.6698526 +1 0.8968787 0.6698526 +0 0.9125621 0.6698526 +0.1939468 0.9125621 0.6698526 +0.2773041 0.9125621 0.6698526 +0.3384659 0.9125621 0.6698526 +0.3885728 0.9125621 0.6698526 +0.4317928 0.9125621 0.6698526 +0.470214 0.9125621 0.6698526 +0.5050551 0.9125621 0.6698526 +0.5370987 0.9125621 0.6698526 +0.5668815 0.9125621 0.6698526 +0.5947903 0.9125621 0.6698526 +0.6211144 0.9125621 0.6698526 +0.6460766 0.9125621 0.6698526 +0.6698526 0.9125621 0.6698526 +0.6925839 0.9125621 0.6698526 +0.7143866 0.9125621 0.6698526 +0.7353569 0.9125621 0.6698526 +0.7555758 0.9125621 0.6698526 +0.7751122 0.9125621 0.6698526 +0.7940252 0.9125621 0.6698526 +0.8123661 0.9125621 0.6698526 +0.8301795 0.9125621 0.6698526 +0.8475045 0.9125621 0.6698526 +0.8643761 0.9125621 0.6698526 +0.880825 0.9125621 0.6698526 +0.8968787 0.9125621 0.6698526 +0.9125621 0.9125621 0.6698526 +0.9278974 0.9125621 0.6698526 +0.9429048 0.9125621 0.6698526 +0.9576028 0.9125621 0.6698526 +0.9720079 0.9125621 0.6698526 +0.9861357 0.9125621 0.6698526 +1 0.9125621 0.6698526 +0 0.9278974 0.6698526 +0.1939468 0.9278974 0.6698526 +0.2773041 0.9278974 0.6698526 +0.3384659 0.9278974 0.6698526 +0.3885728 0.9278974 0.6698526 +0.4317928 0.9278974 0.6698526 +0.470214 0.9278974 0.6698526 +0.5050551 0.9278974 0.6698526 +0.5370987 0.9278974 0.6698526 +0.5668815 0.9278974 0.6698526 +0.5947903 0.9278974 0.6698526 +0.6211144 0.9278974 0.6698526 +0.6460766 0.9278974 0.6698526 +0.6698526 0.9278974 0.6698526 +0.6925839 0.9278974 0.6698526 +0.7143866 0.9278974 0.6698526 +0.7353569 0.9278974 0.6698526 +0.7555758 0.9278974 0.6698526 +0.7751122 0.9278974 0.6698526 +0.7940252 0.9278974 0.6698526 +0.8123661 0.9278974 0.6698526 +0.8301795 0.9278974 0.6698526 +0.8475045 0.9278974 0.6698526 +0.8643761 0.9278974 0.6698526 +0.880825 0.9278974 0.6698526 +0.8968787 0.9278974 0.6698526 +0.9125621 0.9278974 0.6698526 +0.9278974 0.9278974 0.6698526 +0.9429048 0.9278974 0.6698526 +0.9576028 0.9278974 0.6698526 +0.9720079 0.9278974 0.6698526 +0.9861357 0.9278974 0.6698526 +1 0.9278974 0.6698526 +0 0.9429048 0.6698526 +0.1939468 0.9429048 0.6698526 +0.2773041 0.9429048 0.6698526 +0.3384659 0.9429048 0.6698526 +0.3885728 0.9429048 0.6698526 +0.4317928 0.9429048 0.6698526 +0.470214 0.9429048 0.6698526 +0.5050551 0.9429048 0.6698526 +0.5370987 0.9429048 0.6698526 +0.5668815 0.9429048 0.6698526 +0.5947903 0.9429048 0.6698526 +0.6211144 0.9429048 0.6698526 +0.6460766 0.9429048 0.6698526 +0.6698526 0.9429048 0.6698526 +0.6925839 0.9429048 0.6698526 +0.7143866 0.9429048 0.6698526 +0.7353569 0.9429048 0.6698526 +0.7555758 0.9429048 0.6698526 +0.7751122 0.9429048 0.6698526 +0.7940252 0.9429048 0.6698526 +0.8123661 0.9429048 0.6698526 +0.8301795 0.9429048 0.6698526 +0.8475045 0.9429048 0.6698526 +0.8643761 0.9429048 0.6698526 +0.880825 0.9429048 0.6698526 +0.8968787 0.9429048 0.6698526 +0.9125621 0.9429048 0.6698526 +0.9278974 0.9429048 0.6698526 +0.9429048 0.9429048 0.6698526 +0.9576028 0.9429048 0.6698526 +0.9720079 0.9429048 0.6698526 +0.9861357 0.9429048 0.6698526 +1 0.9429048 0.6698526 +0 0.9576028 0.6698526 +0.1939468 0.9576028 0.6698526 +0.2773041 0.9576028 0.6698526 +0.3384659 0.9576028 0.6698526 +0.3885728 0.9576028 0.6698526 +0.4317928 0.9576028 0.6698526 +0.470214 0.9576028 0.6698526 +0.5050551 0.9576028 0.6698526 +0.5370987 0.9576028 0.6698526 +0.5668815 0.9576028 0.6698526 +0.5947903 0.9576028 0.6698526 +0.6211144 0.9576028 0.6698526 +0.6460766 0.9576028 0.6698526 +0.6698526 0.9576028 0.6698526 +0.6925839 0.9576028 0.6698526 +0.7143866 0.9576028 0.6698526 +0.7353569 0.9576028 0.6698526 +0.7555758 0.9576028 0.6698526 +0.7751122 0.9576028 0.6698526 +0.7940252 0.9576028 0.6698526 +0.8123661 0.9576028 0.6698526 +0.8301795 0.9576028 0.6698526 +0.8475045 0.9576028 0.6698526 +0.8643761 0.9576028 0.6698526 +0.880825 0.9576028 0.6698526 +0.8968787 0.9576028 0.6698526 +0.9125621 0.9576028 0.6698526 +0.9278974 0.9576028 0.6698526 +0.9429048 0.9576028 0.6698526 +0.9576028 0.9576028 0.6698526 +0.9720079 0.9576028 0.6698526 +0.9861357 0.9576028 0.6698526 +1 0.9576028 0.6698526 +0 0.9720079 0.6698526 +0.1939468 0.9720079 0.6698526 +0.2773041 0.9720079 0.6698526 +0.3384659 0.9720079 0.6698526 +0.3885728 0.9720079 0.6698526 +0.4317928 0.9720079 0.6698526 +0.470214 0.9720079 0.6698526 +0.5050551 0.9720079 0.6698526 +0.5370987 0.9720079 0.6698526 +0.5668815 0.9720079 0.6698526 +0.5947903 0.9720079 0.6698526 +0.6211144 0.9720079 0.6698526 +0.6460766 0.9720079 0.6698526 +0.6698526 0.9720079 0.6698526 +0.6925839 0.9720079 0.6698526 +0.7143866 0.9720079 0.6698526 +0.7353569 0.9720079 0.6698526 +0.7555758 0.9720079 0.6698526 +0.7751122 0.9720079 0.6698526 +0.7940252 0.9720079 0.6698526 +0.8123661 0.9720079 0.6698526 +0.8301795 0.9720079 0.6698526 +0.8475045 0.9720079 0.6698526 +0.8643761 0.9720079 0.6698526 +0.880825 0.9720079 0.6698526 +0.8968787 0.9720079 0.6698526 +0.9125621 0.9720079 0.6698526 +0.9278974 0.9720079 0.6698526 +0.9429048 0.9720079 0.6698526 +0.9576028 0.9720079 0.6698526 +0.9720079 0.9720079 0.6698526 +0.9861357 0.9720079 0.6698526 +1 0.9720079 0.6698526 +0 0.9861357 0.6698526 +0.1939468 0.9861357 0.6698526 +0.2773041 0.9861357 0.6698526 +0.3384659 0.9861357 0.6698526 +0.3885728 0.9861357 0.6698526 +0.4317928 0.9861357 0.6698526 +0.470214 0.9861357 0.6698526 +0.5050551 0.9861357 0.6698526 +0.5370987 0.9861357 0.6698526 +0.5668815 0.9861357 0.6698526 +0.5947903 0.9861357 0.6698526 +0.6211144 0.9861357 0.6698526 +0.6460766 0.9861357 0.6698526 +0.6698526 0.9861357 0.6698526 +0.6925839 0.9861357 0.6698526 +0.7143866 0.9861357 0.6698526 +0.7353569 0.9861357 0.6698526 +0.7555758 0.9861357 0.6698526 +0.7751122 0.9861357 0.6698526 +0.7940252 0.9861357 0.6698526 +0.8123661 0.9861357 0.6698526 +0.8301795 0.9861357 0.6698526 +0.8475045 0.9861357 0.6698526 +0.8643761 0.9861357 0.6698526 +0.880825 0.9861357 0.6698526 +0.8968787 0.9861357 0.6698526 +0.9125621 0.9861357 0.6698526 +0.9278974 0.9861357 0.6698526 +0.9429048 0.9861357 0.6698526 +0.9576028 0.9861357 0.6698526 +0.9720079 0.9861357 0.6698526 +0.9861357 0.9861357 0.6698526 +1 0.9861357 0.6698526 +0 1 0.6698526 +0.1939468 1 0.6698526 +0.2773041 1 0.6698526 +0.3384659 1 0.6698526 +0.3885728 1 0.6698526 +0.4317928 1 0.6698526 +0.470214 1 0.6698526 +0.5050551 1 0.6698526 +0.5370987 1 0.6698526 +0.5668815 1 0.6698526 +0.5947903 1 0.6698526 +0.6211144 1 0.6698526 +0.6460766 1 0.6698526 +0.6698526 1 0.6698526 +0.6925839 1 0.6698526 +0.7143866 1 0.6698526 +0.7353569 1 0.6698526 +0.7555758 1 0.6698526 +0.7751122 1 0.6698526 +0.7940252 1 0.6698526 +0.8123661 1 0.6698526 +0.8301795 1 0.6698526 +0.8475045 1 0.6698526 +0.8643761 1 0.6698526 +0.880825 1 0.6698526 +0.8968787 1 0.6698526 +0.9125621 1 0.6698526 +0.9278974 1 0.6698526 +0.9429048 1 0.6698526 +0.9576028 1 0.6698526 +0.9720079 1 0.6698526 +0.9861357 1 0.6698526 +1 1 0.6698526 +0 0 0.6925839 +0.1939468 0 0.6925839 +0.2773041 0 0.6925839 +0.3384659 0 0.6925839 +0.3885728 0 0.6925839 +0.4317928 0 0.6925839 +0.470214 0 0.6925839 +0.5050551 0 0.6925839 +0.5370987 0 0.6925839 +0.5668815 0 0.6925839 +0.5947903 0 0.6925839 +0.6211144 0 0.6925839 +0.6460766 0 0.6925839 +0.6698526 0 0.6925839 +0.6925839 0 0.6925839 +0.7143866 0 0.6925839 +0.7353569 0 0.6925839 +0.7555758 0 0.6925839 +0.7751122 0 0.6925839 +0.7940252 0 0.6925839 +0.8123661 0 0.6925839 +0.8301795 0 0.6925839 +0.8475045 0 0.6925839 +0.8643761 0 0.6925839 +0.880825 0 0.6925839 +0.8968787 0 0.6925839 +0.9125621 0 0.6925839 +0.9278974 0 0.6925839 +0.9429048 0 0.6925839 +0.9576028 0 0.6925839 +0.9720079 0 0.6925839 +0.9861357 0 0.6925839 +1 0 0.6925839 +0 0.1939468 0.6925839 +0.1939468 0.1939468 0.6925839 +0.2773041 0.1939468 0.6925839 +0.3384659 0.1939468 0.6925839 +0.3885728 0.1939468 0.6925839 +0.4317928 0.1939468 0.6925839 +0.470214 0.1939468 0.6925839 +0.5050551 0.1939468 0.6925839 +0.5370987 0.1939468 0.6925839 +0.5668815 0.1939468 0.6925839 +0.5947903 0.1939468 0.6925839 +0.6211144 0.1939468 0.6925839 +0.6460766 0.1939468 0.6925839 +0.6698526 0.1939468 0.6925839 +0.6925839 0.1939468 0.6925839 +0.7143866 0.1939468 0.6925839 +0.7353569 0.1939468 0.6925839 +0.7555758 0.1939468 0.6925839 +0.7751122 0.1939468 0.6925839 +0.7940252 0.1939468 0.6925839 +0.8123661 0.1939468 0.6925839 +0.8301795 0.1939468 0.6925839 +0.8475045 0.1939468 0.6925839 +0.8643761 0.1939468 0.6925839 +0.880825 0.1939468 0.6925839 +0.8968787 0.1939468 0.6925839 +0.9125621 0.1939468 0.6925839 +0.9278974 0.1939468 0.6925839 +0.9429048 0.1939468 0.6925839 +0.9576028 0.1939468 0.6925839 +0.9720079 0.1939468 0.6925839 +0.9861357 0.1939468 0.6925839 +1 0.1939468 0.6925839 +0 0.2773041 0.6925839 +0.1939468 0.2773041 0.6925839 +0.2773041 0.2773041 0.6925839 +0.3384659 0.2773041 0.6925839 +0.3885728 0.2773041 0.6925839 +0.4317928 0.2773041 0.6925839 +0.470214 0.2773041 0.6925839 +0.5050551 0.2773041 0.6925839 +0.5370987 0.2773041 0.6925839 +0.5668815 0.2773041 0.6925839 +0.5947903 0.2773041 0.6925839 +0.6211144 0.2773041 0.6925839 +0.6460766 0.2773041 0.6925839 +0.6698526 0.2773041 0.6925839 +0.6925839 0.2773041 0.6925839 +0.7143866 0.2773041 0.6925839 +0.7353569 0.2773041 0.6925839 +0.7555758 0.2773041 0.6925839 +0.7751122 0.2773041 0.6925839 +0.7940252 0.2773041 0.6925839 +0.8123661 0.2773041 0.6925839 +0.8301795 0.2773041 0.6925839 +0.8475045 0.2773041 0.6925839 +0.8643761 0.2773041 0.6925839 +0.880825 0.2773041 0.6925839 +0.8968787 0.2773041 0.6925839 +0.9125621 0.2773041 0.6925839 +0.9278974 0.2773041 0.6925839 +0.9429048 0.2773041 0.6925839 +0.9576028 0.2773041 0.6925839 +0.9720079 0.2773041 0.6925839 +0.9861357 0.2773041 0.6925839 +1 0.2773041 0.6925839 +0 0.3384659 0.6925839 +0.1939468 0.3384659 0.6925839 +0.2773041 0.3384659 0.6925839 +0.3384659 0.3384659 0.6925839 +0.3885728 0.3384659 0.6925839 +0.4317928 0.3384659 0.6925839 +0.470214 0.3384659 0.6925839 +0.5050551 0.3384659 0.6925839 +0.5370987 0.3384659 0.6925839 +0.5668815 0.3384659 0.6925839 +0.5947903 0.3384659 0.6925839 +0.6211144 0.3384659 0.6925839 +0.6460766 0.3384659 0.6925839 +0.6698526 0.3384659 0.6925839 +0.6925839 0.3384659 0.6925839 +0.7143866 0.3384659 0.6925839 +0.7353569 0.3384659 0.6925839 +0.7555758 0.3384659 0.6925839 +0.7751122 0.3384659 0.6925839 +0.7940252 0.3384659 0.6925839 +0.8123661 0.3384659 0.6925839 +0.8301795 0.3384659 0.6925839 +0.8475045 0.3384659 0.6925839 +0.8643761 0.3384659 0.6925839 +0.880825 0.3384659 0.6925839 +0.8968787 0.3384659 0.6925839 +0.9125621 0.3384659 0.6925839 +0.9278974 0.3384659 0.6925839 +0.9429048 0.3384659 0.6925839 +0.9576028 0.3384659 0.6925839 +0.9720079 0.3384659 0.6925839 +0.9861357 0.3384659 0.6925839 +1 0.3384659 0.6925839 +0 0.3885728 0.6925839 +0.1939468 0.3885728 0.6925839 +0.2773041 0.3885728 0.6925839 +0.3384659 0.3885728 0.6925839 +0.3885728 0.3885728 0.6925839 +0.4317928 0.3885728 0.6925839 +0.470214 0.3885728 0.6925839 +0.5050551 0.3885728 0.6925839 +0.5370987 0.3885728 0.6925839 +0.5668815 0.3885728 0.6925839 +0.5947903 0.3885728 0.6925839 +0.6211144 0.3885728 0.6925839 +0.6460766 0.3885728 0.6925839 +0.6698526 0.3885728 0.6925839 +0.6925839 0.3885728 0.6925839 +0.7143866 0.3885728 0.6925839 +0.7353569 0.3885728 0.6925839 +0.7555758 0.3885728 0.6925839 +0.7751122 0.3885728 0.6925839 +0.7940252 0.3885728 0.6925839 +0.8123661 0.3885728 0.6925839 +0.8301795 0.3885728 0.6925839 +0.8475045 0.3885728 0.6925839 +0.8643761 0.3885728 0.6925839 +0.880825 0.3885728 0.6925839 +0.8968787 0.3885728 0.6925839 +0.9125621 0.3885728 0.6925839 +0.9278974 0.3885728 0.6925839 +0.9429048 0.3885728 0.6925839 +0.9576028 0.3885728 0.6925839 +0.9720079 0.3885728 0.6925839 +0.9861357 0.3885728 0.6925839 +1 0.3885728 0.6925839 +0 0.4317928 0.6925839 +0.1939468 0.4317928 0.6925839 +0.2773041 0.4317928 0.6925839 +0.3384659 0.4317928 0.6925839 +0.3885728 0.4317928 0.6925839 +0.4317928 0.4317928 0.6925839 +0.470214 0.4317928 0.6925839 +0.5050551 0.4317928 0.6925839 +0.5370987 0.4317928 0.6925839 +0.5668815 0.4317928 0.6925839 +0.5947903 0.4317928 0.6925839 +0.6211144 0.4317928 0.6925839 +0.6460766 0.4317928 0.6925839 +0.6698526 0.4317928 0.6925839 +0.6925839 0.4317928 0.6925839 +0.7143866 0.4317928 0.6925839 +0.7353569 0.4317928 0.6925839 +0.7555758 0.4317928 0.6925839 +0.7751122 0.4317928 0.6925839 +0.7940252 0.4317928 0.6925839 +0.8123661 0.4317928 0.6925839 +0.8301795 0.4317928 0.6925839 +0.8475045 0.4317928 0.6925839 +0.8643761 0.4317928 0.6925839 +0.880825 0.4317928 0.6925839 +0.8968787 0.4317928 0.6925839 +0.9125621 0.4317928 0.6925839 +0.9278974 0.4317928 0.6925839 +0.9429048 0.4317928 0.6925839 +0.9576028 0.4317928 0.6925839 +0.9720079 0.4317928 0.6925839 +0.9861357 0.4317928 0.6925839 +1 0.4317928 0.6925839 +0 0.470214 0.6925839 +0.1939468 0.470214 0.6925839 +0.2773041 0.470214 0.6925839 +0.3384659 0.470214 0.6925839 +0.3885728 0.470214 0.6925839 +0.4317928 0.470214 0.6925839 +0.470214 0.470214 0.6925839 +0.5050551 0.470214 0.6925839 +0.5370987 0.470214 0.6925839 +0.5668815 0.470214 0.6925839 +0.5947903 0.470214 0.6925839 +0.6211144 0.470214 0.6925839 +0.6460766 0.470214 0.6925839 +0.6698526 0.470214 0.6925839 +0.6925839 0.470214 0.6925839 +0.7143866 0.470214 0.6925839 +0.7353569 0.470214 0.6925839 +0.7555758 0.470214 0.6925839 +0.7751122 0.470214 0.6925839 +0.7940252 0.470214 0.6925839 +0.8123661 0.470214 0.6925839 +0.8301795 0.470214 0.6925839 +0.8475045 0.470214 0.6925839 +0.8643761 0.470214 0.6925839 +0.880825 0.470214 0.6925839 +0.8968787 0.470214 0.6925839 +0.9125621 0.470214 0.6925839 +0.9278974 0.470214 0.6925839 +0.9429048 0.470214 0.6925839 +0.9576028 0.470214 0.6925839 +0.9720079 0.470214 0.6925839 +0.9861357 0.470214 0.6925839 +1 0.470214 0.6925839 +0 0.5050551 0.6925839 +0.1939468 0.5050551 0.6925839 +0.2773041 0.5050551 0.6925839 +0.3384659 0.5050551 0.6925839 +0.3885728 0.5050551 0.6925839 +0.4317928 0.5050551 0.6925839 +0.470214 0.5050551 0.6925839 +0.5050551 0.5050551 0.6925839 +0.5370987 0.5050551 0.6925839 +0.5668815 0.5050551 0.6925839 +0.5947903 0.5050551 0.6925839 +0.6211144 0.5050551 0.6925839 +0.6460766 0.5050551 0.6925839 +0.6698526 0.5050551 0.6925839 +0.6925839 0.5050551 0.6925839 +0.7143866 0.5050551 0.6925839 +0.7353569 0.5050551 0.6925839 +0.7555758 0.5050551 0.6925839 +0.7751122 0.5050551 0.6925839 +0.7940252 0.5050551 0.6925839 +0.8123661 0.5050551 0.6925839 +0.8301795 0.5050551 0.6925839 +0.8475045 0.5050551 0.6925839 +0.8643761 0.5050551 0.6925839 +0.880825 0.5050551 0.6925839 +0.8968787 0.5050551 0.6925839 +0.9125621 0.5050551 0.6925839 +0.9278974 0.5050551 0.6925839 +0.9429048 0.5050551 0.6925839 +0.9576028 0.5050551 0.6925839 +0.9720079 0.5050551 0.6925839 +0.9861357 0.5050551 0.6925839 +1 0.5050551 0.6925839 +0 0.5370987 0.6925839 +0.1939468 0.5370987 0.6925839 +0.2773041 0.5370987 0.6925839 +0.3384659 0.5370987 0.6925839 +0.3885728 0.5370987 0.6925839 +0.4317928 0.5370987 0.6925839 +0.470214 0.5370987 0.6925839 +0.5050551 0.5370987 0.6925839 +0.5370987 0.5370987 0.6925839 +0.5668815 0.5370987 0.6925839 +0.5947903 0.5370987 0.6925839 +0.6211144 0.5370987 0.6925839 +0.6460766 0.5370987 0.6925839 +0.6698526 0.5370987 0.6925839 +0.6925839 0.5370987 0.6925839 +0.7143866 0.5370987 0.6925839 +0.7353569 0.5370987 0.6925839 +0.7555758 0.5370987 0.6925839 +0.7751122 0.5370987 0.6925839 +0.7940252 0.5370987 0.6925839 +0.8123661 0.5370987 0.6925839 +0.8301795 0.5370987 0.6925839 +0.8475045 0.5370987 0.6925839 +0.8643761 0.5370987 0.6925839 +0.880825 0.5370987 0.6925839 +0.8968787 0.5370987 0.6925839 +0.9125621 0.5370987 0.6925839 +0.9278974 0.5370987 0.6925839 +0.9429048 0.5370987 0.6925839 +0.9576028 0.5370987 0.6925839 +0.9720079 0.5370987 0.6925839 +0.9861357 0.5370987 0.6925839 +1 0.5370987 0.6925839 +0 0.5668815 0.6925839 +0.1939468 0.5668815 0.6925839 +0.2773041 0.5668815 0.6925839 +0.3384659 0.5668815 0.6925839 +0.3885728 0.5668815 0.6925839 +0.4317928 0.5668815 0.6925839 +0.470214 0.5668815 0.6925839 +0.5050551 0.5668815 0.6925839 +0.5370987 0.5668815 0.6925839 +0.5668815 0.5668815 0.6925839 +0.5947903 0.5668815 0.6925839 +0.6211144 0.5668815 0.6925839 +0.6460766 0.5668815 0.6925839 +0.6698526 0.5668815 0.6925839 +0.6925839 0.5668815 0.6925839 +0.7143866 0.5668815 0.6925839 +0.7353569 0.5668815 0.6925839 +0.7555758 0.5668815 0.6925839 +0.7751122 0.5668815 0.6925839 +0.7940252 0.5668815 0.6925839 +0.8123661 0.5668815 0.6925839 +0.8301795 0.5668815 0.6925839 +0.8475045 0.5668815 0.6925839 +0.8643761 0.5668815 0.6925839 +0.880825 0.5668815 0.6925839 +0.8968787 0.5668815 0.6925839 +0.9125621 0.5668815 0.6925839 +0.9278974 0.5668815 0.6925839 +0.9429048 0.5668815 0.6925839 +0.9576028 0.5668815 0.6925839 +0.9720079 0.5668815 0.6925839 +0.9861357 0.5668815 0.6925839 +1 0.5668815 0.6925839 +0 0.5947903 0.6925839 +0.1939468 0.5947903 0.6925839 +0.2773041 0.5947903 0.6925839 +0.3384659 0.5947903 0.6925839 +0.3885728 0.5947903 0.6925839 +0.4317928 0.5947903 0.6925839 +0.470214 0.5947903 0.6925839 +0.5050551 0.5947903 0.6925839 +0.5370987 0.5947903 0.6925839 +0.5668815 0.5947903 0.6925839 +0.5947903 0.5947903 0.6925839 +0.6211144 0.5947903 0.6925839 +0.6460766 0.5947903 0.6925839 +0.6698526 0.5947903 0.6925839 +0.6925839 0.5947903 0.6925839 +0.7143866 0.5947903 0.6925839 +0.7353569 0.5947903 0.6925839 +0.7555758 0.5947903 0.6925839 +0.7751122 0.5947903 0.6925839 +0.7940252 0.5947903 0.6925839 +0.8123661 0.5947903 0.6925839 +0.8301795 0.5947903 0.6925839 +0.8475045 0.5947903 0.6925839 +0.8643761 0.5947903 0.6925839 +0.880825 0.5947903 0.6925839 +0.8968787 0.5947903 0.6925839 +0.9125621 0.5947903 0.6925839 +0.9278974 0.5947903 0.6925839 +0.9429048 0.5947903 0.6925839 +0.9576028 0.5947903 0.6925839 +0.9720079 0.5947903 0.6925839 +0.9861357 0.5947903 0.6925839 +1 0.5947903 0.6925839 +0 0.6211144 0.6925839 +0.1939468 0.6211144 0.6925839 +0.2773041 0.6211144 0.6925839 +0.3384659 0.6211144 0.6925839 +0.3885728 0.6211144 0.6925839 +0.4317928 0.6211144 0.6925839 +0.470214 0.6211144 0.6925839 +0.5050551 0.6211144 0.6925839 +0.5370987 0.6211144 0.6925839 +0.5668815 0.6211144 0.6925839 +0.5947903 0.6211144 0.6925839 +0.6211144 0.6211144 0.6925839 +0.6460766 0.6211144 0.6925839 +0.6698526 0.6211144 0.6925839 +0.6925839 0.6211144 0.6925839 +0.7143866 0.6211144 0.6925839 +0.7353569 0.6211144 0.6925839 +0.7555758 0.6211144 0.6925839 +0.7751122 0.6211144 0.6925839 +0.7940252 0.6211144 0.6925839 +0.8123661 0.6211144 0.6925839 +0.8301795 0.6211144 0.6925839 +0.8475045 0.6211144 0.6925839 +0.8643761 0.6211144 0.6925839 +0.880825 0.6211144 0.6925839 +0.8968787 0.6211144 0.6925839 +0.9125621 0.6211144 0.6925839 +0.9278974 0.6211144 0.6925839 +0.9429048 0.6211144 0.6925839 +0.9576028 0.6211144 0.6925839 +0.9720079 0.6211144 0.6925839 +0.9861357 0.6211144 0.6925839 +1 0.6211144 0.6925839 +0 0.6460766 0.6925839 +0.1939468 0.6460766 0.6925839 +0.2773041 0.6460766 0.6925839 +0.3384659 0.6460766 0.6925839 +0.3885728 0.6460766 0.6925839 +0.4317928 0.6460766 0.6925839 +0.470214 0.6460766 0.6925839 +0.5050551 0.6460766 0.6925839 +0.5370987 0.6460766 0.6925839 +0.5668815 0.6460766 0.6925839 +0.5947903 0.6460766 0.6925839 +0.6211144 0.6460766 0.6925839 +0.6460766 0.6460766 0.6925839 +0.6698526 0.6460766 0.6925839 +0.6925839 0.6460766 0.6925839 +0.7143866 0.6460766 0.6925839 +0.7353569 0.6460766 0.6925839 +0.7555758 0.6460766 0.6925839 +0.7751122 0.6460766 0.6925839 +0.7940252 0.6460766 0.6925839 +0.8123661 0.6460766 0.6925839 +0.8301795 0.6460766 0.6925839 +0.8475045 0.6460766 0.6925839 +0.8643761 0.6460766 0.6925839 +0.880825 0.6460766 0.6925839 +0.8968787 0.6460766 0.6925839 +0.9125621 0.6460766 0.6925839 +0.9278974 0.6460766 0.6925839 +0.9429048 0.6460766 0.6925839 +0.9576028 0.6460766 0.6925839 +0.9720079 0.6460766 0.6925839 +0.9861357 0.6460766 0.6925839 +1 0.6460766 0.6925839 +0 0.6698526 0.6925839 +0.1939468 0.6698526 0.6925839 +0.2773041 0.6698526 0.6925839 +0.3384659 0.6698526 0.6925839 +0.3885728 0.6698526 0.6925839 +0.4317928 0.6698526 0.6925839 +0.470214 0.6698526 0.6925839 +0.5050551 0.6698526 0.6925839 +0.5370987 0.6698526 0.6925839 +0.5668815 0.6698526 0.6925839 +0.5947903 0.6698526 0.6925839 +0.6211144 0.6698526 0.6925839 +0.6460766 0.6698526 0.6925839 +0.6698526 0.6698526 0.6925839 +0.6925839 0.6698526 0.6925839 +0.7143866 0.6698526 0.6925839 +0.7353569 0.6698526 0.6925839 +0.7555758 0.6698526 0.6925839 +0.7751122 0.6698526 0.6925839 +0.7940252 0.6698526 0.6925839 +0.8123661 0.6698526 0.6925839 +0.8301795 0.6698526 0.6925839 +0.8475045 0.6698526 0.6925839 +0.8643761 0.6698526 0.6925839 +0.880825 0.6698526 0.6925839 +0.8968787 0.6698526 0.6925839 +0.9125621 0.6698526 0.6925839 +0.9278974 0.6698526 0.6925839 +0.9429048 0.6698526 0.6925839 +0.9576028 0.6698526 0.6925839 +0.9720079 0.6698526 0.6925839 +0.9861357 0.6698526 0.6925839 +1 0.6698526 0.6925839 +0 0.6925839 0.6925839 +0.1939468 0.6925839 0.6925839 +0.2773041 0.6925839 0.6925839 +0.3384659 0.6925839 0.6925839 +0.3885728 0.6925839 0.6925839 +0.4317928 0.6925839 0.6925839 +0.470214 0.6925839 0.6925839 +0.5050551 0.6925839 0.6925839 +0.5370987 0.6925839 0.6925839 +0.5668815 0.6925839 0.6925839 +0.5947903 0.6925839 0.6925839 +0.6211144 0.6925839 0.6925839 +0.6460766 0.6925839 0.6925839 +0.6698526 0.6925839 0.6925839 +0.6925839 0.6925839 0.6925839 +0.7143866 0.6925839 0.6925839 +0.7353569 0.6925839 0.6925839 +0.7555758 0.6925839 0.6925839 +0.7751122 0.6925839 0.6925839 +0.7940252 0.6925839 0.6925839 +0.8123661 0.6925839 0.6925839 +0.8301795 0.6925839 0.6925839 +0.8475045 0.6925839 0.6925839 +0.8643761 0.6925839 0.6925839 +0.880825 0.6925839 0.6925839 +0.8968787 0.6925839 0.6925839 +0.9125621 0.6925839 0.6925839 +0.9278974 0.6925839 0.6925839 +0.9429048 0.6925839 0.6925839 +0.9576028 0.6925839 0.6925839 +0.9720079 0.6925839 0.6925839 +0.9861357 0.6925839 0.6925839 +1 0.6925839 0.6925839 +0 0.7143866 0.6925839 +0.1939468 0.7143866 0.6925839 +0.2773041 0.7143866 0.6925839 +0.3384659 0.7143866 0.6925839 +0.3885728 0.7143866 0.6925839 +0.4317928 0.7143866 0.6925839 +0.470214 0.7143866 0.6925839 +0.5050551 0.7143866 0.6925839 +0.5370987 0.7143866 0.6925839 +0.5668815 0.7143866 0.6925839 +0.5947903 0.7143866 0.6925839 +0.6211144 0.7143866 0.6925839 +0.6460766 0.7143866 0.6925839 +0.6698526 0.7143866 0.6925839 +0.6925839 0.7143866 0.6925839 +0.7143866 0.7143866 0.6925839 +0.7353569 0.7143866 0.6925839 +0.7555758 0.7143866 0.6925839 +0.7751122 0.7143866 0.6925839 +0.7940252 0.7143866 0.6925839 +0.8123661 0.7143866 0.6925839 +0.8301795 0.7143866 0.6925839 +0.8475045 0.7143866 0.6925839 +0.8643761 0.7143866 0.6925839 +0.880825 0.7143866 0.6925839 +0.8968787 0.7143866 0.6925839 +0.9125621 0.7143866 0.6925839 +0.9278974 0.7143866 0.6925839 +0.9429048 0.7143866 0.6925839 +0.9576028 0.7143866 0.6925839 +0.9720079 0.7143866 0.6925839 +0.9861357 0.7143866 0.6925839 +1 0.7143866 0.6925839 +0 0.7353569 0.6925839 +0.1939468 0.7353569 0.6925839 +0.2773041 0.7353569 0.6925839 +0.3384659 0.7353569 0.6925839 +0.3885728 0.7353569 0.6925839 +0.4317928 0.7353569 0.6925839 +0.470214 0.7353569 0.6925839 +0.5050551 0.7353569 0.6925839 +0.5370987 0.7353569 0.6925839 +0.5668815 0.7353569 0.6925839 +0.5947903 0.7353569 0.6925839 +0.6211144 0.7353569 0.6925839 +0.6460766 0.7353569 0.6925839 +0.6698526 0.7353569 0.6925839 +0.6925839 0.7353569 0.6925839 +0.7143866 0.7353569 0.6925839 +0.7353569 0.7353569 0.6925839 +0.7555758 0.7353569 0.6925839 +0.7751122 0.7353569 0.6925839 +0.7940252 0.7353569 0.6925839 +0.8123661 0.7353569 0.6925839 +0.8301795 0.7353569 0.6925839 +0.8475045 0.7353569 0.6925839 +0.8643761 0.7353569 0.6925839 +0.880825 0.7353569 0.6925839 +0.8968787 0.7353569 0.6925839 +0.9125621 0.7353569 0.6925839 +0.9278974 0.7353569 0.6925839 +0.9429048 0.7353569 0.6925839 +0.9576028 0.7353569 0.6925839 +0.9720079 0.7353569 0.6925839 +0.9861357 0.7353569 0.6925839 +1 0.7353569 0.6925839 +0 0.7555758 0.6925839 +0.1939468 0.7555758 0.6925839 +0.2773041 0.7555758 0.6925839 +0.3384659 0.7555758 0.6925839 +0.3885728 0.7555758 0.6925839 +0.4317928 0.7555758 0.6925839 +0.470214 0.7555758 0.6925839 +0.5050551 0.7555758 0.6925839 +0.5370987 0.7555758 0.6925839 +0.5668815 0.7555758 0.6925839 +0.5947903 0.7555758 0.6925839 +0.6211144 0.7555758 0.6925839 +0.6460766 0.7555758 0.6925839 +0.6698526 0.7555758 0.6925839 +0.6925839 0.7555758 0.6925839 +0.7143866 0.7555758 0.6925839 +0.7353569 0.7555758 0.6925839 +0.7555758 0.7555758 0.6925839 +0.7751122 0.7555758 0.6925839 +0.7940252 0.7555758 0.6925839 +0.8123661 0.7555758 0.6925839 +0.8301795 0.7555758 0.6925839 +0.8475045 0.7555758 0.6925839 +0.8643761 0.7555758 0.6925839 +0.880825 0.7555758 0.6925839 +0.8968787 0.7555758 0.6925839 +0.9125621 0.7555758 0.6925839 +0.9278974 0.7555758 0.6925839 +0.9429048 0.7555758 0.6925839 +0.9576028 0.7555758 0.6925839 +0.9720079 0.7555758 0.6925839 +0.9861357 0.7555758 0.6925839 +1 0.7555758 0.6925839 +0 0.7751122 0.6925839 +0.1939468 0.7751122 0.6925839 +0.2773041 0.7751122 0.6925839 +0.3384659 0.7751122 0.6925839 +0.3885728 0.7751122 0.6925839 +0.4317928 0.7751122 0.6925839 +0.470214 0.7751122 0.6925839 +0.5050551 0.7751122 0.6925839 +0.5370987 0.7751122 0.6925839 +0.5668815 0.7751122 0.6925839 +0.5947903 0.7751122 0.6925839 +0.6211144 0.7751122 0.6925839 +0.6460766 0.7751122 0.6925839 +0.6698526 0.7751122 0.6925839 +0.6925839 0.7751122 0.6925839 +0.7143866 0.7751122 0.6925839 +0.7353569 0.7751122 0.6925839 +0.7555758 0.7751122 0.6925839 +0.7751122 0.7751122 0.6925839 +0.7940252 0.7751122 0.6925839 +0.8123661 0.7751122 0.6925839 +0.8301795 0.7751122 0.6925839 +0.8475045 0.7751122 0.6925839 +0.8643761 0.7751122 0.6925839 +0.880825 0.7751122 0.6925839 +0.8968787 0.7751122 0.6925839 +0.9125621 0.7751122 0.6925839 +0.9278974 0.7751122 0.6925839 +0.9429048 0.7751122 0.6925839 +0.9576028 0.7751122 0.6925839 +0.9720079 0.7751122 0.6925839 +0.9861357 0.7751122 0.6925839 +1 0.7751122 0.6925839 +0 0.7940252 0.6925839 +0.1939468 0.7940252 0.6925839 +0.2773041 0.7940252 0.6925839 +0.3384659 0.7940252 0.6925839 +0.3885728 0.7940252 0.6925839 +0.4317928 0.7940252 0.6925839 +0.470214 0.7940252 0.6925839 +0.5050551 0.7940252 0.6925839 +0.5370987 0.7940252 0.6925839 +0.5668815 0.7940252 0.6925839 +0.5947903 0.7940252 0.6925839 +0.6211144 0.7940252 0.6925839 +0.6460766 0.7940252 0.6925839 +0.6698526 0.7940252 0.6925839 +0.6925839 0.7940252 0.6925839 +0.7143866 0.7940252 0.6925839 +0.7353569 0.7940252 0.6925839 +0.7555758 0.7940252 0.6925839 +0.7751122 0.7940252 0.6925839 +0.7940252 0.7940252 0.6925839 +0.8123661 0.7940252 0.6925839 +0.8301795 0.7940252 0.6925839 +0.8475045 0.7940252 0.6925839 +0.8643761 0.7940252 0.6925839 +0.880825 0.7940252 0.6925839 +0.8968787 0.7940252 0.6925839 +0.9125621 0.7940252 0.6925839 +0.9278974 0.7940252 0.6925839 +0.9429048 0.7940252 0.6925839 +0.9576028 0.7940252 0.6925839 +0.9720079 0.7940252 0.6925839 +0.9861357 0.7940252 0.6925839 +1 0.7940252 0.6925839 +0 0.8123661 0.6925839 +0.1939468 0.8123661 0.6925839 +0.2773041 0.8123661 0.6925839 +0.3384659 0.8123661 0.6925839 +0.3885728 0.8123661 0.6925839 +0.4317928 0.8123661 0.6925839 +0.470214 0.8123661 0.6925839 +0.5050551 0.8123661 0.6925839 +0.5370987 0.8123661 0.6925839 +0.5668815 0.8123661 0.6925839 +0.5947903 0.8123661 0.6925839 +0.6211144 0.8123661 0.6925839 +0.6460766 0.8123661 0.6925839 +0.6698526 0.8123661 0.6925839 +0.6925839 0.8123661 0.6925839 +0.7143866 0.8123661 0.6925839 +0.7353569 0.8123661 0.6925839 +0.7555758 0.8123661 0.6925839 +0.7751122 0.8123661 0.6925839 +0.7940252 0.8123661 0.6925839 +0.8123661 0.8123661 0.6925839 +0.8301795 0.8123661 0.6925839 +0.8475045 0.8123661 0.6925839 +0.8643761 0.8123661 0.6925839 +0.880825 0.8123661 0.6925839 +0.8968787 0.8123661 0.6925839 +0.9125621 0.8123661 0.6925839 +0.9278974 0.8123661 0.6925839 +0.9429048 0.8123661 0.6925839 +0.9576028 0.8123661 0.6925839 +0.9720079 0.8123661 0.6925839 +0.9861357 0.8123661 0.6925839 +1 0.8123661 0.6925839 +0 0.8301795 0.6925839 +0.1939468 0.8301795 0.6925839 +0.2773041 0.8301795 0.6925839 +0.3384659 0.8301795 0.6925839 +0.3885728 0.8301795 0.6925839 +0.4317928 0.8301795 0.6925839 +0.470214 0.8301795 0.6925839 +0.5050551 0.8301795 0.6925839 +0.5370987 0.8301795 0.6925839 +0.5668815 0.8301795 0.6925839 +0.5947903 0.8301795 0.6925839 +0.6211144 0.8301795 0.6925839 +0.6460766 0.8301795 0.6925839 +0.6698526 0.8301795 0.6925839 +0.6925839 0.8301795 0.6925839 +0.7143866 0.8301795 0.6925839 +0.7353569 0.8301795 0.6925839 +0.7555758 0.8301795 0.6925839 +0.7751122 0.8301795 0.6925839 +0.7940252 0.8301795 0.6925839 +0.8123661 0.8301795 0.6925839 +0.8301795 0.8301795 0.6925839 +0.8475045 0.8301795 0.6925839 +0.8643761 0.8301795 0.6925839 +0.880825 0.8301795 0.6925839 +0.8968787 0.8301795 0.6925839 +0.9125621 0.8301795 0.6925839 +0.9278974 0.8301795 0.6925839 +0.9429048 0.8301795 0.6925839 +0.9576028 0.8301795 0.6925839 +0.9720079 0.8301795 0.6925839 +0.9861357 0.8301795 0.6925839 +1 0.8301795 0.6925839 +0 0.8475045 0.6925839 +0.1939468 0.8475045 0.6925839 +0.2773041 0.8475045 0.6925839 +0.3384659 0.8475045 0.6925839 +0.3885728 0.8475045 0.6925839 +0.4317928 0.8475045 0.6925839 +0.470214 0.8475045 0.6925839 +0.5050551 0.8475045 0.6925839 +0.5370987 0.8475045 0.6925839 +0.5668815 0.8475045 0.6925839 +0.5947903 0.8475045 0.6925839 +0.6211144 0.8475045 0.6925839 +0.6460766 0.8475045 0.6925839 +0.6698526 0.8475045 0.6925839 +0.6925839 0.8475045 0.6925839 +0.7143866 0.8475045 0.6925839 +0.7353569 0.8475045 0.6925839 +0.7555758 0.8475045 0.6925839 +0.7751122 0.8475045 0.6925839 +0.7940252 0.8475045 0.6925839 +0.8123661 0.8475045 0.6925839 +0.8301795 0.8475045 0.6925839 +0.8475045 0.8475045 0.6925839 +0.8643761 0.8475045 0.6925839 +0.880825 0.8475045 0.6925839 +0.8968787 0.8475045 0.6925839 +0.9125621 0.8475045 0.6925839 +0.9278974 0.8475045 0.6925839 +0.9429048 0.8475045 0.6925839 +0.9576028 0.8475045 0.6925839 +0.9720079 0.8475045 0.6925839 +0.9861357 0.8475045 0.6925839 +1 0.8475045 0.6925839 +0 0.8643761 0.6925839 +0.1939468 0.8643761 0.6925839 +0.2773041 0.8643761 0.6925839 +0.3384659 0.8643761 0.6925839 +0.3885728 0.8643761 0.6925839 +0.4317928 0.8643761 0.6925839 +0.470214 0.8643761 0.6925839 +0.5050551 0.8643761 0.6925839 +0.5370987 0.8643761 0.6925839 +0.5668815 0.8643761 0.6925839 +0.5947903 0.8643761 0.6925839 +0.6211144 0.8643761 0.6925839 +0.6460766 0.8643761 0.6925839 +0.6698526 0.8643761 0.6925839 +0.6925839 0.8643761 0.6925839 +0.7143866 0.8643761 0.6925839 +0.7353569 0.8643761 0.6925839 +0.7555758 0.8643761 0.6925839 +0.7751122 0.8643761 0.6925839 +0.7940252 0.8643761 0.6925839 +0.8123661 0.8643761 0.6925839 +0.8301795 0.8643761 0.6925839 +0.8475045 0.8643761 0.6925839 +0.8643761 0.8643761 0.6925839 +0.880825 0.8643761 0.6925839 +0.8968787 0.8643761 0.6925839 +0.9125621 0.8643761 0.6925839 +0.9278974 0.8643761 0.6925839 +0.9429048 0.8643761 0.6925839 +0.9576028 0.8643761 0.6925839 +0.9720079 0.8643761 0.6925839 +0.9861357 0.8643761 0.6925839 +1 0.8643761 0.6925839 +0 0.880825 0.6925839 +0.1939468 0.880825 0.6925839 +0.2773041 0.880825 0.6925839 +0.3384659 0.880825 0.6925839 +0.3885728 0.880825 0.6925839 +0.4317928 0.880825 0.6925839 +0.470214 0.880825 0.6925839 +0.5050551 0.880825 0.6925839 +0.5370987 0.880825 0.6925839 +0.5668815 0.880825 0.6925839 +0.5947903 0.880825 0.6925839 +0.6211144 0.880825 0.6925839 +0.6460766 0.880825 0.6925839 +0.6698526 0.880825 0.6925839 +0.6925839 0.880825 0.6925839 +0.7143866 0.880825 0.6925839 +0.7353569 0.880825 0.6925839 +0.7555758 0.880825 0.6925839 +0.7751122 0.880825 0.6925839 +0.7940252 0.880825 0.6925839 +0.8123661 0.880825 0.6925839 +0.8301795 0.880825 0.6925839 +0.8475045 0.880825 0.6925839 +0.8643761 0.880825 0.6925839 +0.880825 0.880825 0.6925839 +0.8968787 0.880825 0.6925839 +0.9125621 0.880825 0.6925839 +0.9278974 0.880825 0.6925839 +0.9429048 0.880825 0.6925839 +0.9576028 0.880825 0.6925839 +0.9720079 0.880825 0.6925839 +0.9861357 0.880825 0.6925839 +1 0.880825 0.6925839 +0 0.8968787 0.6925839 +0.1939468 0.8968787 0.6925839 +0.2773041 0.8968787 0.6925839 +0.3384659 0.8968787 0.6925839 +0.3885728 0.8968787 0.6925839 +0.4317928 0.8968787 0.6925839 +0.470214 0.8968787 0.6925839 +0.5050551 0.8968787 0.6925839 +0.5370987 0.8968787 0.6925839 +0.5668815 0.8968787 0.6925839 +0.5947903 0.8968787 0.6925839 +0.6211144 0.8968787 0.6925839 +0.6460766 0.8968787 0.6925839 +0.6698526 0.8968787 0.6925839 +0.6925839 0.8968787 0.6925839 +0.7143866 0.8968787 0.6925839 +0.7353569 0.8968787 0.6925839 +0.7555758 0.8968787 0.6925839 +0.7751122 0.8968787 0.6925839 +0.7940252 0.8968787 0.6925839 +0.8123661 0.8968787 0.6925839 +0.8301795 0.8968787 0.6925839 +0.8475045 0.8968787 0.6925839 +0.8643761 0.8968787 0.6925839 +0.880825 0.8968787 0.6925839 +0.8968787 0.8968787 0.6925839 +0.9125621 0.8968787 0.6925839 +0.9278974 0.8968787 0.6925839 +0.9429048 0.8968787 0.6925839 +0.9576028 0.8968787 0.6925839 +0.9720079 0.8968787 0.6925839 +0.9861357 0.8968787 0.6925839 +1 0.8968787 0.6925839 +0 0.9125621 0.6925839 +0.1939468 0.9125621 0.6925839 +0.2773041 0.9125621 0.6925839 +0.3384659 0.9125621 0.6925839 +0.3885728 0.9125621 0.6925839 +0.4317928 0.9125621 0.6925839 +0.470214 0.9125621 0.6925839 +0.5050551 0.9125621 0.6925839 +0.5370987 0.9125621 0.6925839 +0.5668815 0.9125621 0.6925839 +0.5947903 0.9125621 0.6925839 +0.6211144 0.9125621 0.6925839 +0.6460766 0.9125621 0.6925839 +0.6698526 0.9125621 0.6925839 +0.6925839 0.9125621 0.6925839 +0.7143866 0.9125621 0.6925839 +0.7353569 0.9125621 0.6925839 +0.7555758 0.9125621 0.6925839 +0.7751122 0.9125621 0.6925839 +0.7940252 0.9125621 0.6925839 +0.8123661 0.9125621 0.6925839 +0.8301795 0.9125621 0.6925839 +0.8475045 0.9125621 0.6925839 +0.8643761 0.9125621 0.6925839 +0.880825 0.9125621 0.6925839 +0.8968787 0.9125621 0.6925839 +0.9125621 0.9125621 0.6925839 +0.9278974 0.9125621 0.6925839 +0.9429048 0.9125621 0.6925839 +0.9576028 0.9125621 0.6925839 +0.9720079 0.9125621 0.6925839 +0.9861357 0.9125621 0.6925839 +1 0.9125621 0.6925839 +0 0.9278974 0.6925839 +0.1939468 0.9278974 0.6925839 +0.2773041 0.9278974 0.6925839 +0.3384659 0.9278974 0.6925839 +0.3885728 0.9278974 0.6925839 +0.4317928 0.9278974 0.6925839 +0.470214 0.9278974 0.6925839 +0.5050551 0.9278974 0.6925839 +0.5370987 0.9278974 0.6925839 +0.5668815 0.9278974 0.6925839 +0.5947903 0.9278974 0.6925839 +0.6211144 0.9278974 0.6925839 +0.6460766 0.9278974 0.6925839 +0.6698526 0.9278974 0.6925839 +0.6925839 0.9278974 0.6925839 +0.7143866 0.9278974 0.6925839 +0.7353569 0.9278974 0.6925839 +0.7555758 0.9278974 0.6925839 +0.7751122 0.9278974 0.6925839 +0.7940252 0.9278974 0.6925839 +0.8123661 0.9278974 0.6925839 +0.8301795 0.9278974 0.6925839 +0.8475045 0.9278974 0.6925839 +0.8643761 0.9278974 0.6925839 +0.880825 0.9278974 0.6925839 +0.8968787 0.9278974 0.6925839 +0.9125621 0.9278974 0.6925839 +0.9278974 0.9278974 0.6925839 +0.9429048 0.9278974 0.6925839 +0.9576028 0.9278974 0.6925839 +0.9720079 0.9278974 0.6925839 +0.9861357 0.9278974 0.6925839 +1 0.9278974 0.6925839 +0 0.9429048 0.6925839 +0.1939468 0.9429048 0.6925839 +0.2773041 0.9429048 0.6925839 +0.3384659 0.9429048 0.6925839 +0.3885728 0.9429048 0.6925839 +0.4317928 0.9429048 0.6925839 +0.470214 0.9429048 0.6925839 +0.5050551 0.9429048 0.6925839 +0.5370987 0.9429048 0.6925839 +0.5668815 0.9429048 0.6925839 +0.5947903 0.9429048 0.6925839 +0.6211144 0.9429048 0.6925839 +0.6460766 0.9429048 0.6925839 +0.6698526 0.9429048 0.6925839 +0.6925839 0.9429048 0.6925839 +0.7143866 0.9429048 0.6925839 +0.7353569 0.9429048 0.6925839 +0.7555758 0.9429048 0.6925839 +0.7751122 0.9429048 0.6925839 +0.7940252 0.9429048 0.6925839 +0.8123661 0.9429048 0.6925839 +0.8301795 0.9429048 0.6925839 +0.8475045 0.9429048 0.6925839 +0.8643761 0.9429048 0.6925839 +0.880825 0.9429048 0.6925839 +0.8968787 0.9429048 0.6925839 +0.9125621 0.9429048 0.6925839 +0.9278974 0.9429048 0.6925839 +0.9429048 0.9429048 0.6925839 +0.9576028 0.9429048 0.6925839 +0.9720079 0.9429048 0.6925839 +0.9861357 0.9429048 0.6925839 +1 0.9429048 0.6925839 +0 0.9576028 0.6925839 +0.1939468 0.9576028 0.6925839 +0.2773041 0.9576028 0.6925839 +0.3384659 0.9576028 0.6925839 +0.3885728 0.9576028 0.6925839 +0.4317928 0.9576028 0.6925839 +0.470214 0.9576028 0.6925839 +0.5050551 0.9576028 0.6925839 +0.5370987 0.9576028 0.6925839 +0.5668815 0.9576028 0.6925839 +0.5947903 0.9576028 0.6925839 +0.6211144 0.9576028 0.6925839 +0.6460766 0.9576028 0.6925839 +0.6698526 0.9576028 0.6925839 +0.6925839 0.9576028 0.6925839 +0.7143866 0.9576028 0.6925839 +0.7353569 0.9576028 0.6925839 +0.7555758 0.9576028 0.6925839 +0.7751122 0.9576028 0.6925839 +0.7940252 0.9576028 0.6925839 +0.8123661 0.9576028 0.6925839 +0.8301795 0.9576028 0.6925839 +0.8475045 0.9576028 0.6925839 +0.8643761 0.9576028 0.6925839 +0.880825 0.9576028 0.6925839 +0.8968787 0.9576028 0.6925839 +0.9125621 0.9576028 0.6925839 +0.9278974 0.9576028 0.6925839 +0.9429048 0.9576028 0.6925839 +0.9576028 0.9576028 0.6925839 +0.9720079 0.9576028 0.6925839 +0.9861357 0.9576028 0.6925839 +1 0.9576028 0.6925839 +0 0.9720079 0.6925839 +0.1939468 0.9720079 0.6925839 +0.2773041 0.9720079 0.6925839 +0.3384659 0.9720079 0.6925839 +0.3885728 0.9720079 0.6925839 +0.4317928 0.9720079 0.6925839 +0.470214 0.9720079 0.6925839 +0.5050551 0.9720079 0.6925839 +0.5370987 0.9720079 0.6925839 +0.5668815 0.9720079 0.6925839 +0.5947903 0.9720079 0.6925839 +0.6211144 0.9720079 0.6925839 +0.6460766 0.9720079 0.6925839 +0.6698526 0.9720079 0.6925839 +0.6925839 0.9720079 0.6925839 +0.7143866 0.9720079 0.6925839 +0.7353569 0.9720079 0.6925839 +0.7555758 0.9720079 0.6925839 +0.7751122 0.9720079 0.6925839 +0.7940252 0.9720079 0.6925839 +0.8123661 0.9720079 0.6925839 +0.8301795 0.9720079 0.6925839 +0.8475045 0.9720079 0.6925839 +0.8643761 0.9720079 0.6925839 +0.880825 0.9720079 0.6925839 +0.8968787 0.9720079 0.6925839 +0.9125621 0.9720079 0.6925839 +0.9278974 0.9720079 0.6925839 +0.9429048 0.9720079 0.6925839 +0.9576028 0.9720079 0.6925839 +0.9720079 0.9720079 0.6925839 +0.9861357 0.9720079 0.6925839 +1 0.9720079 0.6925839 +0 0.9861357 0.6925839 +0.1939468 0.9861357 0.6925839 +0.2773041 0.9861357 0.6925839 +0.3384659 0.9861357 0.6925839 +0.3885728 0.9861357 0.6925839 +0.4317928 0.9861357 0.6925839 +0.470214 0.9861357 0.6925839 +0.5050551 0.9861357 0.6925839 +0.5370987 0.9861357 0.6925839 +0.5668815 0.9861357 0.6925839 +0.5947903 0.9861357 0.6925839 +0.6211144 0.9861357 0.6925839 +0.6460766 0.9861357 0.6925839 +0.6698526 0.9861357 0.6925839 +0.6925839 0.9861357 0.6925839 +0.7143866 0.9861357 0.6925839 +0.7353569 0.9861357 0.6925839 +0.7555758 0.9861357 0.6925839 +0.7751122 0.9861357 0.6925839 +0.7940252 0.9861357 0.6925839 +0.8123661 0.9861357 0.6925839 +0.8301795 0.9861357 0.6925839 +0.8475045 0.9861357 0.6925839 +0.8643761 0.9861357 0.6925839 +0.880825 0.9861357 0.6925839 +0.8968787 0.9861357 0.6925839 +0.9125621 0.9861357 0.6925839 +0.9278974 0.9861357 0.6925839 +0.9429048 0.9861357 0.6925839 +0.9576028 0.9861357 0.6925839 +0.9720079 0.9861357 0.6925839 +0.9861357 0.9861357 0.6925839 +1 0.9861357 0.6925839 +0 1 0.6925839 +0.1939468 1 0.6925839 +0.2773041 1 0.6925839 +0.3384659 1 0.6925839 +0.3885728 1 0.6925839 +0.4317928 1 0.6925839 +0.470214 1 0.6925839 +0.5050551 1 0.6925839 +0.5370987 1 0.6925839 +0.5668815 1 0.6925839 +0.5947903 1 0.6925839 +0.6211144 1 0.6925839 +0.6460766 1 0.6925839 +0.6698526 1 0.6925839 +0.6925839 1 0.6925839 +0.7143866 1 0.6925839 +0.7353569 1 0.6925839 +0.7555758 1 0.6925839 +0.7751122 1 0.6925839 +0.7940252 1 0.6925839 +0.8123661 1 0.6925839 +0.8301795 1 0.6925839 +0.8475045 1 0.6925839 +0.8643761 1 0.6925839 +0.880825 1 0.6925839 +0.8968787 1 0.6925839 +0.9125621 1 0.6925839 +0.9278974 1 0.6925839 +0.9429048 1 0.6925839 +0.9576028 1 0.6925839 +0.9720079 1 0.6925839 +0.9861357 1 0.6925839 +1 1 0.6925839 +0 0 0.7143866 +0.1939468 0 0.7143866 +0.2773041 0 0.7143866 +0.3384659 0 0.7143866 +0.3885728 0 0.7143866 +0.4317928 0 0.7143866 +0.470214 0 0.7143866 +0.5050551 0 0.7143866 +0.5370987 0 0.7143866 +0.5668815 0 0.7143866 +0.5947903 0 0.7143866 +0.6211144 0 0.7143866 +0.6460766 0 0.7143866 +0.6698526 0 0.7143866 +0.6925839 0 0.7143866 +0.7143866 0 0.7143866 +0.7353569 0 0.7143866 +0.7555758 0 0.7143866 +0.7751122 0 0.7143866 +0.7940252 0 0.7143866 +0.8123661 0 0.7143866 +0.8301795 0 0.7143866 +0.8475045 0 0.7143866 +0.8643761 0 0.7143866 +0.880825 0 0.7143866 +0.8968787 0 0.7143866 +0.9125621 0 0.7143866 +0.9278974 0 0.7143866 +0.9429048 0 0.7143866 +0.9576028 0 0.7143866 +0.9720079 0 0.7143866 +0.9861357 0 0.7143866 +1 0 0.7143866 +0 0.1939468 0.7143866 +0.1939468 0.1939468 0.7143866 +0.2773041 0.1939468 0.7143866 +0.3384659 0.1939468 0.7143866 +0.3885728 0.1939468 0.7143866 +0.4317928 0.1939468 0.7143866 +0.470214 0.1939468 0.7143866 +0.5050551 0.1939468 0.7143866 +0.5370987 0.1939468 0.7143866 +0.5668815 0.1939468 0.7143866 +0.5947903 0.1939468 0.7143866 +0.6211144 0.1939468 0.7143866 +0.6460766 0.1939468 0.7143866 +0.6698526 0.1939468 0.7143866 +0.6925839 0.1939468 0.7143866 +0.7143866 0.1939468 0.7143866 +0.7353569 0.1939468 0.7143866 +0.7555758 0.1939468 0.7143866 +0.7751122 0.1939468 0.7143866 +0.7940252 0.1939468 0.7143866 +0.8123661 0.1939468 0.7143866 +0.8301795 0.1939468 0.7143866 +0.8475045 0.1939468 0.7143866 +0.8643761 0.1939468 0.7143866 +0.880825 0.1939468 0.7143866 +0.8968787 0.1939468 0.7143866 +0.9125621 0.1939468 0.7143866 +0.9278974 0.1939468 0.7143866 +0.9429048 0.1939468 0.7143866 +0.9576028 0.1939468 0.7143866 +0.9720079 0.1939468 0.7143866 +0.9861357 0.1939468 0.7143866 +1 0.1939468 0.7143866 +0 0.2773041 0.7143866 +0.1939468 0.2773041 0.7143866 +0.2773041 0.2773041 0.7143866 +0.3384659 0.2773041 0.7143866 +0.3885728 0.2773041 0.7143866 +0.4317928 0.2773041 0.7143866 +0.470214 0.2773041 0.7143866 +0.5050551 0.2773041 0.7143866 +0.5370987 0.2773041 0.7143866 +0.5668815 0.2773041 0.7143866 +0.5947903 0.2773041 0.7143866 +0.6211144 0.2773041 0.7143866 +0.6460766 0.2773041 0.7143866 +0.6698526 0.2773041 0.7143866 +0.6925839 0.2773041 0.7143866 +0.7143866 0.2773041 0.7143866 +0.7353569 0.2773041 0.7143866 +0.7555758 0.2773041 0.7143866 +0.7751122 0.2773041 0.7143866 +0.7940252 0.2773041 0.7143866 +0.8123661 0.2773041 0.7143866 +0.8301795 0.2773041 0.7143866 +0.8475045 0.2773041 0.7143866 +0.8643761 0.2773041 0.7143866 +0.880825 0.2773041 0.7143866 +0.8968787 0.2773041 0.7143866 +0.9125621 0.2773041 0.7143866 +0.9278974 0.2773041 0.7143866 +0.9429048 0.2773041 0.7143866 +0.9576028 0.2773041 0.7143866 +0.9720079 0.2773041 0.7143866 +0.9861357 0.2773041 0.7143866 +1 0.2773041 0.7143866 +0 0.3384659 0.7143866 +0.1939468 0.3384659 0.7143866 +0.2773041 0.3384659 0.7143866 +0.3384659 0.3384659 0.7143866 +0.3885728 0.3384659 0.7143866 +0.4317928 0.3384659 0.7143866 +0.470214 0.3384659 0.7143866 +0.5050551 0.3384659 0.7143866 +0.5370987 0.3384659 0.7143866 +0.5668815 0.3384659 0.7143866 +0.5947903 0.3384659 0.7143866 +0.6211144 0.3384659 0.7143866 +0.6460766 0.3384659 0.7143866 +0.6698526 0.3384659 0.7143866 +0.6925839 0.3384659 0.7143866 +0.7143866 0.3384659 0.7143866 +0.7353569 0.3384659 0.7143866 +0.7555758 0.3384659 0.7143866 +0.7751122 0.3384659 0.7143866 +0.7940252 0.3384659 0.7143866 +0.8123661 0.3384659 0.7143866 +0.8301795 0.3384659 0.7143866 +0.8475045 0.3384659 0.7143866 +0.8643761 0.3384659 0.7143866 +0.880825 0.3384659 0.7143866 +0.8968787 0.3384659 0.7143866 +0.9125621 0.3384659 0.7143866 +0.9278974 0.3384659 0.7143866 +0.9429048 0.3384659 0.7143866 +0.9576028 0.3384659 0.7143866 +0.9720079 0.3384659 0.7143866 +0.9861357 0.3384659 0.7143866 +1 0.3384659 0.7143866 +0 0.3885728 0.7143866 +0.1939468 0.3885728 0.7143866 +0.2773041 0.3885728 0.7143866 +0.3384659 0.3885728 0.7143866 +0.3885728 0.3885728 0.7143866 +0.4317928 0.3885728 0.7143866 +0.470214 0.3885728 0.7143866 +0.5050551 0.3885728 0.7143866 +0.5370987 0.3885728 0.7143866 +0.5668815 0.3885728 0.7143866 +0.5947903 0.3885728 0.7143866 +0.6211144 0.3885728 0.7143866 +0.6460766 0.3885728 0.7143866 +0.6698526 0.3885728 0.7143866 +0.6925839 0.3885728 0.7143866 +0.7143866 0.3885728 0.7143866 +0.7353569 0.3885728 0.7143866 +0.7555758 0.3885728 0.7143866 +0.7751122 0.3885728 0.7143866 +0.7940252 0.3885728 0.7143866 +0.8123661 0.3885728 0.7143866 +0.8301795 0.3885728 0.7143866 +0.8475045 0.3885728 0.7143866 +0.8643761 0.3885728 0.7143866 +0.880825 0.3885728 0.7143866 +0.8968787 0.3885728 0.7143866 +0.9125621 0.3885728 0.7143866 +0.9278974 0.3885728 0.7143866 +0.9429048 0.3885728 0.7143866 +0.9576028 0.3885728 0.7143866 +0.9720079 0.3885728 0.7143866 +0.9861357 0.3885728 0.7143866 +1 0.3885728 0.7143866 +0 0.4317928 0.7143866 +0.1939468 0.4317928 0.7143866 +0.2773041 0.4317928 0.7143866 +0.3384659 0.4317928 0.7143866 +0.3885728 0.4317928 0.7143866 +0.4317928 0.4317928 0.7143866 +0.470214 0.4317928 0.7143866 +0.5050551 0.4317928 0.7143866 +0.5370987 0.4317928 0.7143866 +0.5668815 0.4317928 0.7143866 +0.5947903 0.4317928 0.7143866 +0.6211144 0.4317928 0.7143866 +0.6460766 0.4317928 0.7143866 +0.6698526 0.4317928 0.7143866 +0.6925839 0.4317928 0.7143866 +0.7143866 0.4317928 0.7143866 +0.7353569 0.4317928 0.7143866 +0.7555758 0.4317928 0.7143866 +0.7751122 0.4317928 0.7143866 +0.7940252 0.4317928 0.7143866 +0.8123661 0.4317928 0.7143866 +0.8301795 0.4317928 0.7143866 +0.8475045 0.4317928 0.7143866 +0.8643761 0.4317928 0.7143866 +0.880825 0.4317928 0.7143866 +0.8968787 0.4317928 0.7143866 +0.9125621 0.4317928 0.7143866 +0.9278974 0.4317928 0.7143866 +0.9429048 0.4317928 0.7143866 +0.9576028 0.4317928 0.7143866 +0.9720079 0.4317928 0.7143866 +0.9861357 0.4317928 0.7143866 +1 0.4317928 0.7143866 +0 0.470214 0.7143866 +0.1939468 0.470214 0.7143866 +0.2773041 0.470214 0.7143866 +0.3384659 0.470214 0.7143866 +0.3885728 0.470214 0.7143866 +0.4317928 0.470214 0.7143866 +0.470214 0.470214 0.7143866 +0.5050551 0.470214 0.7143866 +0.5370987 0.470214 0.7143866 +0.5668815 0.470214 0.7143866 +0.5947903 0.470214 0.7143866 +0.6211144 0.470214 0.7143866 +0.6460766 0.470214 0.7143866 +0.6698526 0.470214 0.7143866 +0.6925839 0.470214 0.7143866 +0.7143866 0.470214 0.7143866 +0.7353569 0.470214 0.7143866 +0.7555758 0.470214 0.7143866 +0.7751122 0.470214 0.7143866 +0.7940252 0.470214 0.7143866 +0.8123661 0.470214 0.7143866 +0.8301795 0.470214 0.7143866 +0.8475045 0.470214 0.7143866 +0.8643761 0.470214 0.7143866 +0.880825 0.470214 0.7143866 +0.8968787 0.470214 0.7143866 +0.9125621 0.470214 0.7143866 +0.9278974 0.470214 0.7143866 +0.9429048 0.470214 0.7143866 +0.9576028 0.470214 0.7143866 +0.9720079 0.470214 0.7143866 +0.9861357 0.470214 0.7143866 +1 0.470214 0.7143866 +0 0.5050551 0.7143866 +0.1939468 0.5050551 0.7143866 +0.2773041 0.5050551 0.7143866 +0.3384659 0.5050551 0.7143866 +0.3885728 0.5050551 0.7143866 +0.4317928 0.5050551 0.7143866 +0.470214 0.5050551 0.7143866 +0.5050551 0.5050551 0.7143866 +0.5370987 0.5050551 0.7143866 +0.5668815 0.5050551 0.7143866 +0.5947903 0.5050551 0.7143866 +0.6211144 0.5050551 0.7143866 +0.6460766 0.5050551 0.7143866 +0.6698526 0.5050551 0.7143866 +0.6925839 0.5050551 0.7143866 +0.7143866 0.5050551 0.7143866 +0.7353569 0.5050551 0.7143866 +0.7555758 0.5050551 0.7143866 +0.7751122 0.5050551 0.7143866 +0.7940252 0.5050551 0.7143866 +0.8123661 0.5050551 0.7143866 +0.8301795 0.5050551 0.7143866 +0.8475045 0.5050551 0.7143866 +0.8643761 0.5050551 0.7143866 +0.880825 0.5050551 0.7143866 +0.8968787 0.5050551 0.7143866 +0.9125621 0.5050551 0.7143866 +0.9278974 0.5050551 0.7143866 +0.9429048 0.5050551 0.7143866 +0.9576028 0.5050551 0.7143866 +0.9720079 0.5050551 0.7143866 +0.9861357 0.5050551 0.7143866 +1 0.5050551 0.7143866 +0 0.5370987 0.7143866 +0.1939468 0.5370987 0.7143866 +0.2773041 0.5370987 0.7143866 +0.3384659 0.5370987 0.7143866 +0.3885728 0.5370987 0.7143866 +0.4317928 0.5370987 0.7143866 +0.470214 0.5370987 0.7143866 +0.5050551 0.5370987 0.7143866 +0.5370987 0.5370987 0.7143866 +0.5668815 0.5370987 0.7143866 +0.5947903 0.5370987 0.7143866 +0.6211144 0.5370987 0.7143866 +0.6460766 0.5370987 0.7143866 +0.6698526 0.5370987 0.7143866 +0.6925839 0.5370987 0.7143866 +0.7143866 0.5370987 0.7143866 +0.7353569 0.5370987 0.7143866 +0.7555758 0.5370987 0.7143866 +0.7751122 0.5370987 0.7143866 +0.7940252 0.5370987 0.7143866 +0.8123661 0.5370987 0.7143866 +0.8301795 0.5370987 0.7143866 +0.8475045 0.5370987 0.7143866 +0.8643761 0.5370987 0.7143866 +0.880825 0.5370987 0.7143866 +0.8968787 0.5370987 0.7143866 +0.9125621 0.5370987 0.7143866 +0.9278974 0.5370987 0.7143866 +0.9429048 0.5370987 0.7143866 +0.9576028 0.5370987 0.7143866 +0.9720079 0.5370987 0.7143866 +0.9861357 0.5370987 0.7143866 +1 0.5370987 0.7143866 +0 0.5668815 0.7143866 +0.1939468 0.5668815 0.7143866 +0.2773041 0.5668815 0.7143866 +0.3384659 0.5668815 0.7143866 +0.3885728 0.5668815 0.7143866 +0.4317928 0.5668815 0.7143866 +0.470214 0.5668815 0.7143866 +0.5050551 0.5668815 0.7143866 +0.5370987 0.5668815 0.7143866 +0.5668815 0.5668815 0.7143866 +0.5947903 0.5668815 0.7143866 +0.6211144 0.5668815 0.7143866 +0.6460766 0.5668815 0.7143866 +0.6698526 0.5668815 0.7143866 +0.6925839 0.5668815 0.7143866 +0.7143866 0.5668815 0.7143866 +0.7353569 0.5668815 0.7143866 +0.7555758 0.5668815 0.7143866 +0.7751122 0.5668815 0.7143866 +0.7940252 0.5668815 0.7143866 +0.8123661 0.5668815 0.7143866 +0.8301795 0.5668815 0.7143866 +0.8475045 0.5668815 0.7143866 +0.8643761 0.5668815 0.7143866 +0.880825 0.5668815 0.7143866 +0.8968787 0.5668815 0.7143866 +0.9125621 0.5668815 0.7143866 +0.9278974 0.5668815 0.7143866 +0.9429048 0.5668815 0.7143866 +0.9576028 0.5668815 0.7143866 +0.9720079 0.5668815 0.7143866 +0.9861357 0.5668815 0.7143866 +1 0.5668815 0.7143866 +0 0.5947903 0.7143866 +0.1939468 0.5947903 0.7143866 +0.2773041 0.5947903 0.7143866 +0.3384659 0.5947903 0.7143866 +0.3885728 0.5947903 0.7143866 +0.4317928 0.5947903 0.7143866 +0.470214 0.5947903 0.7143866 +0.5050551 0.5947903 0.7143866 +0.5370987 0.5947903 0.7143866 +0.5668815 0.5947903 0.7143866 +0.5947903 0.5947903 0.7143866 +0.6211144 0.5947903 0.7143866 +0.6460766 0.5947903 0.7143866 +0.6698526 0.5947903 0.7143866 +0.6925839 0.5947903 0.7143866 +0.7143866 0.5947903 0.7143866 +0.7353569 0.5947903 0.7143866 +0.7555758 0.5947903 0.7143866 +0.7751122 0.5947903 0.7143866 +0.7940252 0.5947903 0.7143866 +0.8123661 0.5947903 0.7143866 +0.8301795 0.5947903 0.7143866 +0.8475045 0.5947903 0.7143866 +0.8643761 0.5947903 0.7143866 +0.880825 0.5947903 0.7143866 +0.8968787 0.5947903 0.7143866 +0.9125621 0.5947903 0.7143866 +0.9278974 0.5947903 0.7143866 +0.9429048 0.5947903 0.7143866 +0.9576028 0.5947903 0.7143866 +0.9720079 0.5947903 0.7143866 +0.9861357 0.5947903 0.7143866 +1 0.5947903 0.7143866 +0 0.6211144 0.7143866 +0.1939468 0.6211144 0.7143866 +0.2773041 0.6211144 0.7143866 +0.3384659 0.6211144 0.7143866 +0.3885728 0.6211144 0.7143866 +0.4317928 0.6211144 0.7143866 +0.470214 0.6211144 0.7143866 +0.5050551 0.6211144 0.7143866 +0.5370987 0.6211144 0.7143866 +0.5668815 0.6211144 0.7143866 +0.5947903 0.6211144 0.7143866 +0.6211144 0.6211144 0.7143866 +0.6460766 0.6211144 0.7143866 +0.6698526 0.6211144 0.7143866 +0.6925839 0.6211144 0.7143866 +0.7143866 0.6211144 0.7143866 +0.7353569 0.6211144 0.7143866 +0.7555758 0.6211144 0.7143866 +0.7751122 0.6211144 0.7143866 +0.7940252 0.6211144 0.7143866 +0.8123661 0.6211144 0.7143866 +0.8301795 0.6211144 0.7143866 +0.8475045 0.6211144 0.7143866 +0.8643761 0.6211144 0.7143866 +0.880825 0.6211144 0.7143866 +0.8968787 0.6211144 0.7143866 +0.9125621 0.6211144 0.7143866 +0.9278974 0.6211144 0.7143866 +0.9429048 0.6211144 0.7143866 +0.9576028 0.6211144 0.7143866 +0.9720079 0.6211144 0.7143866 +0.9861357 0.6211144 0.7143866 +1 0.6211144 0.7143866 +0 0.6460766 0.7143866 +0.1939468 0.6460766 0.7143866 +0.2773041 0.6460766 0.7143866 +0.3384659 0.6460766 0.7143866 +0.3885728 0.6460766 0.7143866 +0.4317928 0.6460766 0.7143866 +0.470214 0.6460766 0.7143866 +0.5050551 0.6460766 0.7143866 +0.5370987 0.6460766 0.7143866 +0.5668815 0.6460766 0.7143866 +0.5947903 0.6460766 0.7143866 +0.6211144 0.6460766 0.7143866 +0.6460766 0.6460766 0.7143866 +0.6698526 0.6460766 0.7143866 +0.6925839 0.6460766 0.7143866 +0.7143866 0.6460766 0.7143866 +0.7353569 0.6460766 0.7143866 +0.7555758 0.6460766 0.7143866 +0.7751122 0.6460766 0.7143866 +0.7940252 0.6460766 0.7143866 +0.8123661 0.6460766 0.7143866 +0.8301795 0.6460766 0.7143866 +0.8475045 0.6460766 0.7143866 +0.8643761 0.6460766 0.7143866 +0.880825 0.6460766 0.7143866 +0.8968787 0.6460766 0.7143866 +0.9125621 0.6460766 0.7143866 +0.9278974 0.6460766 0.7143866 +0.9429048 0.6460766 0.7143866 +0.9576028 0.6460766 0.7143866 +0.9720079 0.6460766 0.7143866 +0.9861357 0.6460766 0.7143866 +1 0.6460766 0.7143866 +0 0.6698526 0.7143866 +0.1939468 0.6698526 0.7143866 +0.2773041 0.6698526 0.7143866 +0.3384659 0.6698526 0.7143866 +0.3885728 0.6698526 0.7143866 +0.4317928 0.6698526 0.7143866 +0.470214 0.6698526 0.7143866 +0.5050551 0.6698526 0.7143866 +0.5370987 0.6698526 0.7143866 +0.5668815 0.6698526 0.7143866 +0.5947903 0.6698526 0.7143866 +0.6211144 0.6698526 0.7143866 +0.6460766 0.6698526 0.7143866 +0.6698526 0.6698526 0.7143866 +0.6925839 0.6698526 0.7143866 +0.7143866 0.6698526 0.7143866 +0.7353569 0.6698526 0.7143866 +0.7555758 0.6698526 0.7143866 +0.7751122 0.6698526 0.7143866 +0.7940252 0.6698526 0.7143866 +0.8123661 0.6698526 0.7143866 +0.8301795 0.6698526 0.7143866 +0.8475045 0.6698526 0.7143866 +0.8643761 0.6698526 0.7143866 +0.880825 0.6698526 0.7143866 +0.8968787 0.6698526 0.7143866 +0.9125621 0.6698526 0.7143866 +0.9278974 0.6698526 0.7143866 +0.9429048 0.6698526 0.7143866 +0.9576028 0.6698526 0.7143866 +0.9720079 0.6698526 0.7143866 +0.9861357 0.6698526 0.7143866 +1 0.6698526 0.7143866 +0 0.6925839 0.7143866 +0.1939468 0.6925839 0.7143866 +0.2773041 0.6925839 0.7143866 +0.3384659 0.6925839 0.7143866 +0.3885728 0.6925839 0.7143866 +0.4317928 0.6925839 0.7143866 +0.470214 0.6925839 0.7143866 +0.5050551 0.6925839 0.7143866 +0.5370987 0.6925839 0.7143866 +0.5668815 0.6925839 0.7143866 +0.5947903 0.6925839 0.7143866 +0.6211144 0.6925839 0.7143866 +0.6460766 0.6925839 0.7143866 +0.6698526 0.6925839 0.7143866 +0.6925839 0.6925839 0.7143866 +0.7143866 0.6925839 0.7143866 +0.7353569 0.6925839 0.7143866 +0.7555758 0.6925839 0.7143866 +0.7751122 0.6925839 0.7143866 +0.7940252 0.6925839 0.7143866 +0.8123661 0.6925839 0.7143866 +0.8301795 0.6925839 0.7143866 +0.8475045 0.6925839 0.7143866 +0.8643761 0.6925839 0.7143866 +0.880825 0.6925839 0.7143866 +0.8968787 0.6925839 0.7143866 +0.9125621 0.6925839 0.7143866 +0.9278974 0.6925839 0.7143866 +0.9429048 0.6925839 0.7143866 +0.9576028 0.6925839 0.7143866 +0.9720079 0.6925839 0.7143866 +0.9861357 0.6925839 0.7143866 +1 0.6925839 0.7143866 +0 0.7143866 0.7143866 +0.1939468 0.7143866 0.7143866 +0.2773041 0.7143866 0.7143866 +0.3384659 0.7143866 0.7143866 +0.3885728 0.7143866 0.7143866 +0.4317928 0.7143866 0.7143866 +0.470214 0.7143866 0.7143866 +0.5050551 0.7143866 0.7143866 +0.5370987 0.7143866 0.7143866 +0.5668815 0.7143866 0.7143866 +0.5947903 0.7143866 0.7143866 +0.6211144 0.7143866 0.7143866 +0.6460766 0.7143866 0.7143866 +0.6698526 0.7143866 0.7143866 +0.6925839 0.7143866 0.7143866 +0.7143866 0.7143866 0.7143866 +0.7353569 0.7143866 0.7143866 +0.7555758 0.7143866 0.7143866 +0.7751122 0.7143866 0.7143866 +0.7940252 0.7143866 0.7143866 +0.8123661 0.7143866 0.7143866 +0.8301795 0.7143866 0.7143866 +0.8475045 0.7143866 0.7143866 +0.8643761 0.7143866 0.7143866 +0.880825 0.7143866 0.7143866 +0.8968787 0.7143866 0.7143866 +0.9125621 0.7143866 0.7143866 +0.9278974 0.7143866 0.7143866 +0.9429048 0.7143866 0.7143866 +0.9576028 0.7143866 0.7143866 +0.9720079 0.7143866 0.7143866 +0.9861357 0.7143866 0.7143866 +1 0.7143866 0.7143866 +0 0.7353569 0.7143866 +0.1939468 0.7353569 0.7143866 +0.2773041 0.7353569 0.7143866 +0.3384659 0.7353569 0.7143866 +0.3885728 0.7353569 0.7143866 +0.4317928 0.7353569 0.7143866 +0.470214 0.7353569 0.7143866 +0.5050551 0.7353569 0.7143866 +0.5370987 0.7353569 0.7143866 +0.5668815 0.7353569 0.7143866 +0.5947903 0.7353569 0.7143866 +0.6211144 0.7353569 0.7143866 +0.6460766 0.7353569 0.7143866 +0.6698526 0.7353569 0.7143866 +0.6925839 0.7353569 0.7143866 +0.7143866 0.7353569 0.7143866 +0.7353569 0.7353569 0.7143866 +0.7555758 0.7353569 0.7143866 +0.7751122 0.7353569 0.7143866 +0.7940252 0.7353569 0.7143866 +0.8123661 0.7353569 0.7143866 +0.8301795 0.7353569 0.7143866 +0.8475045 0.7353569 0.7143866 +0.8643761 0.7353569 0.7143866 +0.880825 0.7353569 0.7143866 +0.8968787 0.7353569 0.7143866 +0.9125621 0.7353569 0.7143866 +0.9278974 0.7353569 0.7143866 +0.9429048 0.7353569 0.7143866 +0.9576028 0.7353569 0.7143866 +0.9720079 0.7353569 0.7143866 +0.9861357 0.7353569 0.7143866 +1 0.7353569 0.7143866 +0 0.7555758 0.7143866 +0.1939468 0.7555758 0.7143866 +0.2773041 0.7555758 0.7143866 +0.3384659 0.7555758 0.7143866 +0.3885728 0.7555758 0.7143866 +0.4317928 0.7555758 0.7143866 +0.470214 0.7555758 0.7143866 +0.5050551 0.7555758 0.7143866 +0.5370987 0.7555758 0.7143866 +0.5668815 0.7555758 0.7143866 +0.5947903 0.7555758 0.7143866 +0.6211144 0.7555758 0.7143866 +0.6460766 0.7555758 0.7143866 +0.6698526 0.7555758 0.7143866 +0.6925839 0.7555758 0.7143866 +0.7143866 0.7555758 0.7143866 +0.7353569 0.7555758 0.7143866 +0.7555758 0.7555758 0.7143866 +0.7751122 0.7555758 0.7143866 +0.7940252 0.7555758 0.7143866 +0.8123661 0.7555758 0.7143866 +0.8301795 0.7555758 0.7143866 +0.8475045 0.7555758 0.7143866 +0.8643761 0.7555758 0.7143866 +0.880825 0.7555758 0.7143866 +0.8968787 0.7555758 0.7143866 +0.9125621 0.7555758 0.7143866 +0.9278974 0.7555758 0.7143866 +0.9429048 0.7555758 0.7143866 +0.9576028 0.7555758 0.7143866 +0.9720079 0.7555758 0.7143866 +0.9861357 0.7555758 0.7143866 +1 0.7555758 0.7143866 +0 0.7751122 0.7143866 +0.1939468 0.7751122 0.7143866 +0.2773041 0.7751122 0.7143866 +0.3384659 0.7751122 0.7143866 +0.3885728 0.7751122 0.7143866 +0.4317928 0.7751122 0.7143866 +0.470214 0.7751122 0.7143866 +0.5050551 0.7751122 0.7143866 +0.5370987 0.7751122 0.7143866 +0.5668815 0.7751122 0.7143866 +0.5947903 0.7751122 0.7143866 +0.6211144 0.7751122 0.7143866 +0.6460766 0.7751122 0.7143866 +0.6698526 0.7751122 0.7143866 +0.6925839 0.7751122 0.7143866 +0.7143866 0.7751122 0.7143866 +0.7353569 0.7751122 0.7143866 +0.7555758 0.7751122 0.7143866 +0.7751122 0.7751122 0.7143866 +0.7940252 0.7751122 0.7143866 +0.8123661 0.7751122 0.7143866 +0.8301795 0.7751122 0.7143866 +0.8475045 0.7751122 0.7143866 +0.8643761 0.7751122 0.7143866 +0.880825 0.7751122 0.7143866 +0.8968787 0.7751122 0.7143866 +0.9125621 0.7751122 0.7143866 +0.9278974 0.7751122 0.7143866 +0.9429048 0.7751122 0.7143866 +0.9576028 0.7751122 0.7143866 +0.9720079 0.7751122 0.7143866 +0.9861357 0.7751122 0.7143866 +1 0.7751122 0.7143866 +0 0.7940252 0.7143866 +0.1939468 0.7940252 0.7143866 +0.2773041 0.7940252 0.7143866 +0.3384659 0.7940252 0.7143866 +0.3885728 0.7940252 0.7143866 +0.4317928 0.7940252 0.7143866 +0.470214 0.7940252 0.7143866 +0.5050551 0.7940252 0.7143866 +0.5370987 0.7940252 0.7143866 +0.5668815 0.7940252 0.7143866 +0.5947903 0.7940252 0.7143866 +0.6211144 0.7940252 0.7143866 +0.6460766 0.7940252 0.7143866 +0.6698526 0.7940252 0.7143866 +0.6925839 0.7940252 0.7143866 +0.7143866 0.7940252 0.7143866 +0.7353569 0.7940252 0.7143866 +0.7555758 0.7940252 0.7143866 +0.7751122 0.7940252 0.7143866 +0.7940252 0.7940252 0.7143866 +0.8123661 0.7940252 0.7143866 +0.8301795 0.7940252 0.7143866 +0.8475045 0.7940252 0.7143866 +0.8643761 0.7940252 0.7143866 +0.880825 0.7940252 0.7143866 +0.8968787 0.7940252 0.7143866 +0.9125621 0.7940252 0.7143866 +0.9278974 0.7940252 0.7143866 +0.9429048 0.7940252 0.7143866 +0.9576028 0.7940252 0.7143866 +0.9720079 0.7940252 0.7143866 +0.9861357 0.7940252 0.7143866 +1 0.7940252 0.7143866 +0 0.8123661 0.7143866 +0.1939468 0.8123661 0.7143866 +0.2773041 0.8123661 0.7143866 +0.3384659 0.8123661 0.7143866 +0.3885728 0.8123661 0.7143866 +0.4317928 0.8123661 0.7143866 +0.470214 0.8123661 0.7143866 +0.5050551 0.8123661 0.7143866 +0.5370987 0.8123661 0.7143866 +0.5668815 0.8123661 0.7143866 +0.5947903 0.8123661 0.7143866 +0.6211144 0.8123661 0.7143866 +0.6460766 0.8123661 0.7143866 +0.6698526 0.8123661 0.7143866 +0.6925839 0.8123661 0.7143866 +0.7143866 0.8123661 0.7143866 +0.7353569 0.8123661 0.7143866 +0.7555758 0.8123661 0.7143866 +0.7751122 0.8123661 0.7143866 +0.7940252 0.8123661 0.7143866 +0.8123661 0.8123661 0.7143866 +0.8301795 0.8123661 0.7143866 +0.8475045 0.8123661 0.7143866 +0.8643761 0.8123661 0.7143866 +0.880825 0.8123661 0.7143866 +0.8968787 0.8123661 0.7143866 +0.9125621 0.8123661 0.7143866 +0.9278974 0.8123661 0.7143866 +0.9429048 0.8123661 0.7143866 +0.9576028 0.8123661 0.7143866 +0.9720079 0.8123661 0.7143866 +0.9861357 0.8123661 0.7143866 +1 0.8123661 0.7143866 +0 0.8301795 0.7143866 +0.1939468 0.8301795 0.7143866 +0.2773041 0.8301795 0.7143866 +0.3384659 0.8301795 0.7143866 +0.3885728 0.8301795 0.7143866 +0.4317928 0.8301795 0.7143866 +0.470214 0.8301795 0.7143866 +0.5050551 0.8301795 0.7143866 +0.5370987 0.8301795 0.7143866 +0.5668815 0.8301795 0.7143866 +0.5947903 0.8301795 0.7143866 +0.6211144 0.8301795 0.7143866 +0.6460766 0.8301795 0.7143866 +0.6698526 0.8301795 0.7143866 +0.6925839 0.8301795 0.7143866 +0.7143866 0.8301795 0.7143866 +0.7353569 0.8301795 0.7143866 +0.7555758 0.8301795 0.7143866 +0.7751122 0.8301795 0.7143866 +0.7940252 0.8301795 0.7143866 +0.8123661 0.8301795 0.7143866 +0.8301795 0.8301795 0.7143866 +0.8475045 0.8301795 0.7143866 +0.8643761 0.8301795 0.7143866 +0.880825 0.8301795 0.7143866 +0.8968787 0.8301795 0.7143866 +0.9125621 0.8301795 0.7143866 +0.9278974 0.8301795 0.7143866 +0.9429048 0.8301795 0.7143866 +0.9576028 0.8301795 0.7143866 +0.9720079 0.8301795 0.7143866 +0.9861357 0.8301795 0.7143866 +1 0.8301795 0.7143866 +0 0.8475045 0.7143866 +0.1939468 0.8475045 0.7143866 +0.2773041 0.8475045 0.7143866 +0.3384659 0.8475045 0.7143866 +0.3885728 0.8475045 0.7143866 +0.4317928 0.8475045 0.7143866 +0.470214 0.8475045 0.7143866 +0.5050551 0.8475045 0.7143866 +0.5370987 0.8475045 0.7143866 +0.5668815 0.8475045 0.7143866 +0.5947903 0.8475045 0.7143866 +0.6211144 0.8475045 0.7143866 +0.6460766 0.8475045 0.7143866 +0.6698526 0.8475045 0.7143866 +0.6925839 0.8475045 0.7143866 +0.7143866 0.8475045 0.7143866 +0.7353569 0.8475045 0.7143866 +0.7555758 0.8475045 0.7143866 +0.7751122 0.8475045 0.7143866 +0.7940252 0.8475045 0.7143866 +0.8123661 0.8475045 0.7143866 +0.8301795 0.8475045 0.7143866 +0.8475045 0.8475045 0.7143866 +0.8643761 0.8475045 0.7143866 +0.880825 0.8475045 0.7143866 +0.8968787 0.8475045 0.7143866 +0.9125621 0.8475045 0.7143866 +0.9278974 0.8475045 0.7143866 +0.9429048 0.8475045 0.7143866 +0.9576028 0.8475045 0.7143866 +0.9720079 0.8475045 0.7143866 +0.9861357 0.8475045 0.7143866 +1 0.8475045 0.7143866 +0 0.8643761 0.7143866 +0.1939468 0.8643761 0.7143866 +0.2773041 0.8643761 0.7143866 +0.3384659 0.8643761 0.7143866 +0.3885728 0.8643761 0.7143866 +0.4317928 0.8643761 0.7143866 +0.470214 0.8643761 0.7143866 +0.5050551 0.8643761 0.7143866 +0.5370987 0.8643761 0.7143866 +0.5668815 0.8643761 0.7143866 +0.5947903 0.8643761 0.7143866 +0.6211144 0.8643761 0.7143866 +0.6460766 0.8643761 0.7143866 +0.6698526 0.8643761 0.7143866 +0.6925839 0.8643761 0.7143866 +0.7143866 0.8643761 0.7143866 +0.7353569 0.8643761 0.7143866 +0.7555758 0.8643761 0.7143866 +0.7751122 0.8643761 0.7143866 +0.7940252 0.8643761 0.7143866 +0.8123661 0.8643761 0.7143866 +0.8301795 0.8643761 0.7143866 +0.8475045 0.8643761 0.7143866 +0.8643761 0.8643761 0.7143866 +0.880825 0.8643761 0.7143866 +0.8968787 0.8643761 0.7143866 +0.9125621 0.8643761 0.7143866 +0.9278974 0.8643761 0.7143866 +0.9429048 0.8643761 0.7143866 +0.9576028 0.8643761 0.7143866 +0.9720079 0.8643761 0.7143866 +0.9861357 0.8643761 0.7143866 +1 0.8643761 0.7143866 +0 0.880825 0.7143866 +0.1939468 0.880825 0.7143866 +0.2773041 0.880825 0.7143866 +0.3384659 0.880825 0.7143866 +0.3885728 0.880825 0.7143866 +0.4317928 0.880825 0.7143866 +0.470214 0.880825 0.7143866 +0.5050551 0.880825 0.7143866 +0.5370987 0.880825 0.7143866 +0.5668815 0.880825 0.7143866 +0.5947903 0.880825 0.7143866 +0.6211144 0.880825 0.7143866 +0.6460766 0.880825 0.7143866 +0.6698526 0.880825 0.7143866 +0.6925839 0.880825 0.7143866 +0.7143866 0.880825 0.7143866 +0.7353569 0.880825 0.7143866 +0.7555758 0.880825 0.7143866 +0.7751122 0.880825 0.7143866 +0.7940252 0.880825 0.7143866 +0.8123661 0.880825 0.7143866 +0.8301795 0.880825 0.7143866 +0.8475045 0.880825 0.7143866 +0.8643761 0.880825 0.7143866 +0.880825 0.880825 0.7143866 +0.8968787 0.880825 0.7143866 +0.9125621 0.880825 0.7143866 +0.9278974 0.880825 0.7143866 +0.9429048 0.880825 0.7143866 +0.9576028 0.880825 0.7143866 +0.9720079 0.880825 0.7143866 +0.9861357 0.880825 0.7143866 +1 0.880825 0.7143866 +0 0.8968787 0.7143866 +0.1939468 0.8968787 0.7143866 +0.2773041 0.8968787 0.7143866 +0.3384659 0.8968787 0.7143866 +0.3885728 0.8968787 0.7143866 +0.4317928 0.8968787 0.7143866 +0.470214 0.8968787 0.7143866 +0.5050551 0.8968787 0.7143866 +0.5370987 0.8968787 0.7143866 +0.5668815 0.8968787 0.7143866 +0.5947903 0.8968787 0.7143866 +0.6211144 0.8968787 0.7143866 +0.6460766 0.8968787 0.7143866 +0.6698526 0.8968787 0.7143866 +0.6925839 0.8968787 0.7143866 +0.7143866 0.8968787 0.7143866 +0.7353569 0.8968787 0.7143866 +0.7555758 0.8968787 0.7143866 +0.7751122 0.8968787 0.7143866 +0.7940252 0.8968787 0.7143866 +0.8123661 0.8968787 0.7143866 +0.8301795 0.8968787 0.7143866 +0.8475045 0.8968787 0.7143866 +0.8643761 0.8968787 0.7143866 +0.880825 0.8968787 0.7143866 +0.8968787 0.8968787 0.7143866 +0.9125621 0.8968787 0.7143866 +0.9278974 0.8968787 0.7143866 +0.9429048 0.8968787 0.7143866 +0.9576028 0.8968787 0.7143866 +0.9720079 0.8968787 0.7143866 +0.9861357 0.8968787 0.7143866 +1 0.8968787 0.7143866 +0 0.9125621 0.7143866 +0.1939468 0.9125621 0.7143866 +0.2773041 0.9125621 0.7143866 +0.3384659 0.9125621 0.7143866 +0.3885728 0.9125621 0.7143866 +0.4317928 0.9125621 0.7143866 +0.470214 0.9125621 0.7143866 +0.5050551 0.9125621 0.7143866 +0.5370987 0.9125621 0.7143866 +0.5668815 0.9125621 0.7143866 +0.5947903 0.9125621 0.7143866 +0.6211144 0.9125621 0.7143866 +0.6460766 0.9125621 0.7143866 +0.6698526 0.9125621 0.7143866 +0.6925839 0.9125621 0.7143866 +0.7143866 0.9125621 0.7143866 +0.7353569 0.9125621 0.7143866 +0.7555758 0.9125621 0.7143866 +0.7751122 0.9125621 0.7143866 +0.7940252 0.9125621 0.7143866 +0.8123661 0.9125621 0.7143866 +0.8301795 0.9125621 0.7143866 +0.8475045 0.9125621 0.7143866 +0.8643761 0.9125621 0.7143866 +0.880825 0.9125621 0.7143866 +0.8968787 0.9125621 0.7143866 +0.9125621 0.9125621 0.7143866 +0.9278974 0.9125621 0.7143866 +0.9429048 0.9125621 0.7143866 +0.9576028 0.9125621 0.7143866 +0.9720079 0.9125621 0.7143866 +0.9861357 0.9125621 0.7143866 +1 0.9125621 0.7143866 +0 0.9278974 0.7143866 +0.1939468 0.9278974 0.7143866 +0.2773041 0.9278974 0.7143866 +0.3384659 0.9278974 0.7143866 +0.3885728 0.9278974 0.7143866 +0.4317928 0.9278974 0.7143866 +0.470214 0.9278974 0.7143866 +0.5050551 0.9278974 0.7143866 +0.5370987 0.9278974 0.7143866 +0.5668815 0.9278974 0.7143866 +0.5947903 0.9278974 0.7143866 +0.6211144 0.9278974 0.7143866 +0.6460766 0.9278974 0.7143866 +0.6698526 0.9278974 0.7143866 +0.6925839 0.9278974 0.7143866 +0.7143866 0.9278974 0.7143866 +0.7353569 0.9278974 0.7143866 +0.7555758 0.9278974 0.7143866 +0.7751122 0.9278974 0.7143866 +0.7940252 0.9278974 0.7143866 +0.8123661 0.9278974 0.7143866 +0.8301795 0.9278974 0.7143866 +0.8475045 0.9278974 0.7143866 +0.8643761 0.9278974 0.7143866 +0.880825 0.9278974 0.7143866 +0.8968787 0.9278974 0.7143866 +0.9125621 0.9278974 0.7143866 +0.9278974 0.9278974 0.7143866 +0.9429048 0.9278974 0.7143866 +0.9576028 0.9278974 0.7143866 +0.9720079 0.9278974 0.7143866 +0.9861357 0.9278974 0.7143866 +1 0.9278974 0.7143866 +0 0.9429048 0.7143866 +0.1939468 0.9429048 0.7143866 +0.2773041 0.9429048 0.7143866 +0.3384659 0.9429048 0.7143866 +0.3885728 0.9429048 0.7143866 +0.4317928 0.9429048 0.7143866 +0.470214 0.9429048 0.7143866 +0.5050551 0.9429048 0.7143866 +0.5370987 0.9429048 0.7143866 +0.5668815 0.9429048 0.7143866 +0.5947903 0.9429048 0.7143866 +0.6211144 0.9429048 0.7143866 +0.6460766 0.9429048 0.7143866 +0.6698526 0.9429048 0.7143866 +0.6925839 0.9429048 0.7143866 +0.7143866 0.9429048 0.7143866 +0.7353569 0.9429048 0.7143866 +0.7555758 0.9429048 0.7143866 +0.7751122 0.9429048 0.7143866 +0.7940252 0.9429048 0.7143866 +0.8123661 0.9429048 0.7143866 +0.8301795 0.9429048 0.7143866 +0.8475045 0.9429048 0.7143866 +0.8643761 0.9429048 0.7143866 +0.880825 0.9429048 0.7143866 +0.8968787 0.9429048 0.7143866 +0.9125621 0.9429048 0.7143866 +0.9278974 0.9429048 0.7143866 +0.9429048 0.9429048 0.7143866 +0.9576028 0.9429048 0.7143866 +0.9720079 0.9429048 0.7143866 +0.9861357 0.9429048 0.7143866 +1 0.9429048 0.7143866 +0 0.9576028 0.7143866 +0.1939468 0.9576028 0.7143866 +0.2773041 0.9576028 0.7143866 +0.3384659 0.9576028 0.7143866 +0.3885728 0.9576028 0.7143866 +0.4317928 0.9576028 0.7143866 +0.470214 0.9576028 0.7143866 +0.5050551 0.9576028 0.7143866 +0.5370987 0.9576028 0.7143866 +0.5668815 0.9576028 0.7143866 +0.5947903 0.9576028 0.7143866 +0.6211144 0.9576028 0.7143866 +0.6460766 0.9576028 0.7143866 +0.6698526 0.9576028 0.7143866 +0.6925839 0.9576028 0.7143866 +0.7143866 0.9576028 0.7143866 +0.7353569 0.9576028 0.7143866 +0.7555758 0.9576028 0.7143866 +0.7751122 0.9576028 0.7143866 +0.7940252 0.9576028 0.7143866 +0.8123661 0.9576028 0.7143866 +0.8301795 0.9576028 0.7143866 +0.8475045 0.9576028 0.7143866 +0.8643761 0.9576028 0.7143866 +0.880825 0.9576028 0.7143866 +0.8968787 0.9576028 0.7143866 +0.9125621 0.9576028 0.7143866 +0.9278974 0.9576028 0.7143866 +0.9429048 0.9576028 0.7143866 +0.9576028 0.9576028 0.7143866 +0.9720079 0.9576028 0.7143866 +0.9861357 0.9576028 0.7143866 +1 0.9576028 0.7143866 +0 0.9720079 0.7143866 +0.1939468 0.9720079 0.7143866 +0.2773041 0.9720079 0.7143866 +0.3384659 0.9720079 0.7143866 +0.3885728 0.9720079 0.7143866 +0.4317928 0.9720079 0.7143866 +0.470214 0.9720079 0.7143866 +0.5050551 0.9720079 0.7143866 +0.5370987 0.9720079 0.7143866 +0.5668815 0.9720079 0.7143866 +0.5947903 0.9720079 0.7143866 +0.6211144 0.9720079 0.7143866 +0.6460766 0.9720079 0.7143866 +0.6698526 0.9720079 0.7143866 +0.6925839 0.9720079 0.7143866 +0.7143866 0.9720079 0.7143866 +0.7353569 0.9720079 0.7143866 +0.7555758 0.9720079 0.7143866 +0.7751122 0.9720079 0.7143866 +0.7940252 0.9720079 0.7143866 +0.8123661 0.9720079 0.7143866 +0.8301795 0.9720079 0.7143866 +0.8475045 0.9720079 0.7143866 +0.8643761 0.9720079 0.7143866 +0.880825 0.9720079 0.7143866 +0.8968787 0.9720079 0.7143866 +0.9125621 0.9720079 0.7143866 +0.9278974 0.9720079 0.7143866 +0.9429048 0.9720079 0.7143866 +0.9576028 0.9720079 0.7143866 +0.9720079 0.9720079 0.7143866 +0.9861357 0.9720079 0.7143866 +1 0.9720079 0.7143866 +0 0.9861357 0.7143866 +0.1939468 0.9861357 0.7143866 +0.2773041 0.9861357 0.7143866 +0.3384659 0.9861357 0.7143866 +0.3885728 0.9861357 0.7143866 +0.4317928 0.9861357 0.7143866 +0.470214 0.9861357 0.7143866 +0.5050551 0.9861357 0.7143866 +0.5370987 0.9861357 0.7143866 +0.5668815 0.9861357 0.7143866 +0.5947903 0.9861357 0.7143866 +0.6211144 0.9861357 0.7143866 +0.6460766 0.9861357 0.7143866 +0.6698526 0.9861357 0.7143866 +0.6925839 0.9861357 0.7143866 +0.7143866 0.9861357 0.7143866 +0.7353569 0.9861357 0.7143866 +0.7555758 0.9861357 0.7143866 +0.7751122 0.9861357 0.7143866 +0.7940252 0.9861357 0.7143866 +0.8123661 0.9861357 0.7143866 +0.8301795 0.9861357 0.7143866 +0.8475045 0.9861357 0.7143866 +0.8643761 0.9861357 0.7143866 +0.880825 0.9861357 0.7143866 +0.8968787 0.9861357 0.7143866 +0.9125621 0.9861357 0.7143866 +0.9278974 0.9861357 0.7143866 +0.9429048 0.9861357 0.7143866 +0.9576028 0.9861357 0.7143866 +0.9720079 0.9861357 0.7143866 +0.9861357 0.9861357 0.7143866 +1 0.9861357 0.7143866 +0 1 0.7143866 +0.1939468 1 0.7143866 +0.2773041 1 0.7143866 +0.3384659 1 0.7143866 +0.3885728 1 0.7143866 +0.4317928 1 0.7143866 +0.470214 1 0.7143866 +0.5050551 1 0.7143866 +0.5370987 1 0.7143866 +0.5668815 1 0.7143866 +0.5947903 1 0.7143866 +0.6211144 1 0.7143866 +0.6460766 1 0.7143866 +0.6698526 1 0.7143866 +0.6925839 1 0.7143866 +0.7143866 1 0.7143866 +0.7353569 1 0.7143866 +0.7555758 1 0.7143866 +0.7751122 1 0.7143866 +0.7940252 1 0.7143866 +0.8123661 1 0.7143866 +0.8301795 1 0.7143866 +0.8475045 1 0.7143866 +0.8643761 1 0.7143866 +0.880825 1 0.7143866 +0.8968787 1 0.7143866 +0.9125621 1 0.7143866 +0.9278974 1 0.7143866 +0.9429048 1 0.7143866 +0.9576028 1 0.7143866 +0.9720079 1 0.7143866 +0.9861357 1 0.7143866 +1 1 0.7143866 +0 0 0.7353569 +0.1939468 0 0.7353569 +0.2773041 0 0.7353569 +0.3384659 0 0.7353569 +0.3885728 0 0.7353569 +0.4317928 0 0.7353569 +0.470214 0 0.7353569 +0.5050551 0 0.7353569 +0.5370987 0 0.7353569 +0.5668815 0 0.7353569 +0.5947903 0 0.7353569 +0.6211144 0 0.7353569 +0.6460766 0 0.7353569 +0.6698526 0 0.7353569 +0.6925839 0 0.7353569 +0.7143866 0 0.7353569 +0.7353569 0 0.7353569 +0.7555758 0 0.7353569 +0.7751122 0 0.7353569 +0.7940252 0 0.7353569 +0.8123661 0 0.7353569 +0.8301795 0 0.7353569 +0.8475045 0 0.7353569 +0.8643761 0 0.7353569 +0.880825 0 0.7353569 +0.8968787 0 0.7353569 +0.9125621 0 0.7353569 +0.9278974 0 0.7353569 +0.9429048 0 0.7353569 +0.9576028 0 0.7353569 +0.9720079 0 0.7353569 +0.9861357 0 0.7353569 +1 0 0.7353569 +0 0.1939468 0.7353569 +0.1939468 0.1939468 0.7353569 +0.2773041 0.1939468 0.7353569 +0.3384659 0.1939468 0.7353569 +0.3885728 0.1939468 0.7353569 +0.4317928 0.1939468 0.7353569 +0.470214 0.1939468 0.7353569 +0.5050551 0.1939468 0.7353569 +0.5370987 0.1939468 0.7353569 +0.5668815 0.1939468 0.7353569 +0.5947903 0.1939468 0.7353569 +0.6211144 0.1939468 0.7353569 +0.6460766 0.1939468 0.7353569 +0.6698526 0.1939468 0.7353569 +0.6925839 0.1939468 0.7353569 +0.7143866 0.1939468 0.7353569 +0.7353569 0.1939468 0.7353569 +0.7555758 0.1939468 0.7353569 +0.7751122 0.1939468 0.7353569 +0.7940252 0.1939468 0.7353569 +0.8123661 0.1939468 0.7353569 +0.8301795 0.1939468 0.7353569 +0.8475045 0.1939468 0.7353569 +0.8643761 0.1939468 0.7353569 +0.880825 0.1939468 0.7353569 +0.8968787 0.1939468 0.7353569 +0.9125621 0.1939468 0.7353569 +0.9278974 0.1939468 0.7353569 +0.9429048 0.1939468 0.7353569 +0.9576028 0.1939468 0.7353569 +0.9720079 0.1939468 0.7353569 +0.9861357 0.1939468 0.7353569 +1 0.1939468 0.7353569 +0 0.2773041 0.7353569 +0.1939468 0.2773041 0.7353569 +0.2773041 0.2773041 0.7353569 +0.3384659 0.2773041 0.7353569 +0.3885728 0.2773041 0.7353569 +0.4317928 0.2773041 0.7353569 +0.470214 0.2773041 0.7353569 +0.5050551 0.2773041 0.7353569 +0.5370987 0.2773041 0.7353569 +0.5668815 0.2773041 0.7353569 +0.5947903 0.2773041 0.7353569 +0.6211144 0.2773041 0.7353569 +0.6460766 0.2773041 0.7353569 +0.6698526 0.2773041 0.7353569 +0.6925839 0.2773041 0.7353569 +0.7143866 0.2773041 0.7353569 +0.7353569 0.2773041 0.7353569 +0.7555758 0.2773041 0.7353569 +0.7751122 0.2773041 0.7353569 +0.7940252 0.2773041 0.7353569 +0.8123661 0.2773041 0.7353569 +0.8301795 0.2773041 0.7353569 +0.8475045 0.2773041 0.7353569 +0.8643761 0.2773041 0.7353569 +0.880825 0.2773041 0.7353569 +0.8968787 0.2773041 0.7353569 +0.9125621 0.2773041 0.7353569 +0.9278974 0.2773041 0.7353569 +0.9429048 0.2773041 0.7353569 +0.9576028 0.2773041 0.7353569 +0.9720079 0.2773041 0.7353569 +0.9861357 0.2773041 0.7353569 +1 0.2773041 0.7353569 +0 0.3384659 0.7353569 +0.1939468 0.3384659 0.7353569 +0.2773041 0.3384659 0.7353569 +0.3384659 0.3384659 0.7353569 +0.3885728 0.3384659 0.7353569 +0.4317928 0.3384659 0.7353569 +0.470214 0.3384659 0.7353569 +0.5050551 0.3384659 0.7353569 +0.5370987 0.3384659 0.7353569 +0.5668815 0.3384659 0.7353569 +0.5947903 0.3384659 0.7353569 +0.6211144 0.3384659 0.7353569 +0.6460766 0.3384659 0.7353569 +0.6698526 0.3384659 0.7353569 +0.6925839 0.3384659 0.7353569 +0.7143866 0.3384659 0.7353569 +0.7353569 0.3384659 0.7353569 +0.7555758 0.3384659 0.7353569 +0.7751122 0.3384659 0.7353569 +0.7940252 0.3384659 0.7353569 +0.8123661 0.3384659 0.7353569 +0.8301795 0.3384659 0.7353569 +0.8475045 0.3384659 0.7353569 +0.8643761 0.3384659 0.7353569 +0.880825 0.3384659 0.7353569 +0.8968787 0.3384659 0.7353569 +0.9125621 0.3384659 0.7353569 +0.9278974 0.3384659 0.7353569 +0.9429048 0.3384659 0.7353569 +0.9576028 0.3384659 0.7353569 +0.9720079 0.3384659 0.7353569 +0.9861357 0.3384659 0.7353569 +1 0.3384659 0.7353569 +0 0.3885728 0.7353569 +0.1939468 0.3885728 0.7353569 +0.2773041 0.3885728 0.7353569 +0.3384659 0.3885728 0.7353569 +0.3885728 0.3885728 0.7353569 +0.4317928 0.3885728 0.7353569 +0.470214 0.3885728 0.7353569 +0.5050551 0.3885728 0.7353569 +0.5370987 0.3885728 0.7353569 +0.5668815 0.3885728 0.7353569 +0.5947903 0.3885728 0.7353569 +0.6211144 0.3885728 0.7353569 +0.6460766 0.3885728 0.7353569 +0.6698526 0.3885728 0.7353569 +0.6925839 0.3885728 0.7353569 +0.7143866 0.3885728 0.7353569 +0.7353569 0.3885728 0.7353569 +0.7555758 0.3885728 0.7353569 +0.7751122 0.3885728 0.7353569 +0.7940252 0.3885728 0.7353569 +0.8123661 0.3885728 0.7353569 +0.8301795 0.3885728 0.7353569 +0.8475045 0.3885728 0.7353569 +0.8643761 0.3885728 0.7353569 +0.880825 0.3885728 0.7353569 +0.8968787 0.3885728 0.7353569 +0.9125621 0.3885728 0.7353569 +0.9278974 0.3885728 0.7353569 +0.9429048 0.3885728 0.7353569 +0.9576028 0.3885728 0.7353569 +0.9720079 0.3885728 0.7353569 +0.9861357 0.3885728 0.7353569 +1 0.3885728 0.7353569 +0 0.4317928 0.7353569 +0.1939468 0.4317928 0.7353569 +0.2773041 0.4317928 0.7353569 +0.3384659 0.4317928 0.7353569 +0.3885728 0.4317928 0.7353569 +0.4317928 0.4317928 0.7353569 +0.470214 0.4317928 0.7353569 +0.5050551 0.4317928 0.7353569 +0.5370987 0.4317928 0.7353569 +0.5668815 0.4317928 0.7353569 +0.5947903 0.4317928 0.7353569 +0.6211144 0.4317928 0.7353569 +0.6460766 0.4317928 0.7353569 +0.6698526 0.4317928 0.7353569 +0.6925839 0.4317928 0.7353569 +0.7143866 0.4317928 0.7353569 +0.7353569 0.4317928 0.7353569 +0.7555758 0.4317928 0.7353569 +0.7751122 0.4317928 0.7353569 +0.7940252 0.4317928 0.7353569 +0.8123661 0.4317928 0.7353569 +0.8301795 0.4317928 0.7353569 +0.8475045 0.4317928 0.7353569 +0.8643761 0.4317928 0.7353569 +0.880825 0.4317928 0.7353569 +0.8968787 0.4317928 0.7353569 +0.9125621 0.4317928 0.7353569 +0.9278974 0.4317928 0.7353569 +0.9429048 0.4317928 0.7353569 +0.9576028 0.4317928 0.7353569 +0.9720079 0.4317928 0.7353569 +0.9861357 0.4317928 0.7353569 +1 0.4317928 0.7353569 +0 0.470214 0.7353569 +0.1939468 0.470214 0.7353569 +0.2773041 0.470214 0.7353569 +0.3384659 0.470214 0.7353569 +0.3885728 0.470214 0.7353569 +0.4317928 0.470214 0.7353569 +0.470214 0.470214 0.7353569 +0.5050551 0.470214 0.7353569 +0.5370987 0.470214 0.7353569 +0.5668815 0.470214 0.7353569 +0.5947903 0.470214 0.7353569 +0.6211144 0.470214 0.7353569 +0.6460766 0.470214 0.7353569 +0.6698526 0.470214 0.7353569 +0.6925839 0.470214 0.7353569 +0.7143866 0.470214 0.7353569 +0.7353569 0.470214 0.7353569 +0.7555758 0.470214 0.7353569 +0.7751122 0.470214 0.7353569 +0.7940252 0.470214 0.7353569 +0.8123661 0.470214 0.7353569 +0.8301795 0.470214 0.7353569 +0.8475045 0.470214 0.7353569 +0.8643761 0.470214 0.7353569 +0.880825 0.470214 0.7353569 +0.8968787 0.470214 0.7353569 +0.9125621 0.470214 0.7353569 +0.9278974 0.470214 0.7353569 +0.9429048 0.470214 0.7353569 +0.9576028 0.470214 0.7353569 +0.9720079 0.470214 0.7353569 +0.9861357 0.470214 0.7353569 +1 0.470214 0.7353569 +0 0.5050551 0.7353569 +0.1939468 0.5050551 0.7353569 +0.2773041 0.5050551 0.7353569 +0.3384659 0.5050551 0.7353569 +0.3885728 0.5050551 0.7353569 +0.4317928 0.5050551 0.7353569 +0.470214 0.5050551 0.7353569 +0.5050551 0.5050551 0.7353569 +0.5370987 0.5050551 0.7353569 +0.5668815 0.5050551 0.7353569 +0.5947903 0.5050551 0.7353569 +0.6211144 0.5050551 0.7353569 +0.6460766 0.5050551 0.7353569 +0.6698526 0.5050551 0.7353569 +0.6925839 0.5050551 0.7353569 +0.7143866 0.5050551 0.7353569 +0.7353569 0.5050551 0.7353569 +0.7555758 0.5050551 0.7353569 +0.7751122 0.5050551 0.7353569 +0.7940252 0.5050551 0.7353569 +0.8123661 0.5050551 0.7353569 +0.8301795 0.5050551 0.7353569 +0.8475045 0.5050551 0.7353569 +0.8643761 0.5050551 0.7353569 +0.880825 0.5050551 0.7353569 +0.8968787 0.5050551 0.7353569 +0.9125621 0.5050551 0.7353569 +0.9278974 0.5050551 0.7353569 +0.9429048 0.5050551 0.7353569 +0.9576028 0.5050551 0.7353569 +0.9720079 0.5050551 0.7353569 +0.9861357 0.5050551 0.7353569 +1 0.5050551 0.7353569 +0 0.5370987 0.7353569 +0.1939468 0.5370987 0.7353569 +0.2773041 0.5370987 0.7353569 +0.3384659 0.5370987 0.7353569 +0.3885728 0.5370987 0.7353569 +0.4317928 0.5370987 0.7353569 +0.470214 0.5370987 0.7353569 +0.5050551 0.5370987 0.7353569 +0.5370987 0.5370987 0.7353569 +0.5668815 0.5370987 0.7353569 +0.5947903 0.5370987 0.7353569 +0.6211144 0.5370987 0.7353569 +0.6460766 0.5370987 0.7353569 +0.6698526 0.5370987 0.7353569 +0.6925839 0.5370987 0.7353569 +0.7143866 0.5370987 0.7353569 +0.7353569 0.5370987 0.7353569 +0.7555758 0.5370987 0.7353569 +0.7751122 0.5370987 0.7353569 +0.7940252 0.5370987 0.7353569 +0.8123661 0.5370987 0.7353569 +0.8301795 0.5370987 0.7353569 +0.8475045 0.5370987 0.7353569 +0.8643761 0.5370987 0.7353569 +0.880825 0.5370987 0.7353569 +0.8968787 0.5370987 0.7353569 +0.9125621 0.5370987 0.7353569 +0.9278974 0.5370987 0.7353569 +0.9429048 0.5370987 0.7353569 +0.9576028 0.5370987 0.7353569 +0.9720079 0.5370987 0.7353569 +0.9861357 0.5370987 0.7353569 +1 0.5370987 0.7353569 +0 0.5668815 0.7353569 +0.1939468 0.5668815 0.7353569 +0.2773041 0.5668815 0.7353569 +0.3384659 0.5668815 0.7353569 +0.3885728 0.5668815 0.7353569 +0.4317928 0.5668815 0.7353569 +0.470214 0.5668815 0.7353569 +0.5050551 0.5668815 0.7353569 +0.5370987 0.5668815 0.7353569 +0.5668815 0.5668815 0.7353569 +0.5947903 0.5668815 0.7353569 +0.6211144 0.5668815 0.7353569 +0.6460766 0.5668815 0.7353569 +0.6698526 0.5668815 0.7353569 +0.6925839 0.5668815 0.7353569 +0.7143866 0.5668815 0.7353569 +0.7353569 0.5668815 0.7353569 +0.7555758 0.5668815 0.7353569 +0.7751122 0.5668815 0.7353569 +0.7940252 0.5668815 0.7353569 +0.8123661 0.5668815 0.7353569 +0.8301795 0.5668815 0.7353569 +0.8475045 0.5668815 0.7353569 +0.8643761 0.5668815 0.7353569 +0.880825 0.5668815 0.7353569 +0.8968787 0.5668815 0.7353569 +0.9125621 0.5668815 0.7353569 +0.9278974 0.5668815 0.7353569 +0.9429048 0.5668815 0.7353569 +0.9576028 0.5668815 0.7353569 +0.9720079 0.5668815 0.7353569 +0.9861357 0.5668815 0.7353569 +1 0.5668815 0.7353569 +0 0.5947903 0.7353569 +0.1939468 0.5947903 0.7353569 +0.2773041 0.5947903 0.7353569 +0.3384659 0.5947903 0.7353569 +0.3885728 0.5947903 0.7353569 +0.4317928 0.5947903 0.7353569 +0.470214 0.5947903 0.7353569 +0.5050551 0.5947903 0.7353569 +0.5370987 0.5947903 0.7353569 +0.5668815 0.5947903 0.7353569 +0.5947903 0.5947903 0.7353569 +0.6211144 0.5947903 0.7353569 +0.6460766 0.5947903 0.7353569 +0.6698526 0.5947903 0.7353569 +0.6925839 0.5947903 0.7353569 +0.7143866 0.5947903 0.7353569 +0.7353569 0.5947903 0.7353569 +0.7555758 0.5947903 0.7353569 +0.7751122 0.5947903 0.7353569 +0.7940252 0.5947903 0.7353569 +0.8123661 0.5947903 0.7353569 +0.8301795 0.5947903 0.7353569 +0.8475045 0.5947903 0.7353569 +0.8643761 0.5947903 0.7353569 +0.880825 0.5947903 0.7353569 +0.8968787 0.5947903 0.7353569 +0.9125621 0.5947903 0.7353569 +0.9278974 0.5947903 0.7353569 +0.9429048 0.5947903 0.7353569 +0.9576028 0.5947903 0.7353569 +0.9720079 0.5947903 0.7353569 +0.9861357 0.5947903 0.7353569 +1 0.5947903 0.7353569 +0 0.6211144 0.7353569 +0.1939468 0.6211144 0.7353569 +0.2773041 0.6211144 0.7353569 +0.3384659 0.6211144 0.7353569 +0.3885728 0.6211144 0.7353569 +0.4317928 0.6211144 0.7353569 +0.470214 0.6211144 0.7353569 +0.5050551 0.6211144 0.7353569 +0.5370987 0.6211144 0.7353569 +0.5668815 0.6211144 0.7353569 +0.5947903 0.6211144 0.7353569 +0.6211144 0.6211144 0.7353569 +0.6460766 0.6211144 0.7353569 +0.6698526 0.6211144 0.7353569 +0.6925839 0.6211144 0.7353569 +0.7143866 0.6211144 0.7353569 +0.7353569 0.6211144 0.7353569 +0.7555758 0.6211144 0.7353569 +0.7751122 0.6211144 0.7353569 +0.7940252 0.6211144 0.7353569 +0.8123661 0.6211144 0.7353569 +0.8301795 0.6211144 0.7353569 +0.8475045 0.6211144 0.7353569 +0.8643761 0.6211144 0.7353569 +0.880825 0.6211144 0.7353569 +0.8968787 0.6211144 0.7353569 +0.9125621 0.6211144 0.7353569 +0.9278974 0.6211144 0.7353569 +0.9429048 0.6211144 0.7353569 +0.9576028 0.6211144 0.7353569 +0.9720079 0.6211144 0.7353569 +0.9861357 0.6211144 0.7353569 +1 0.6211144 0.7353569 +0 0.6460766 0.7353569 +0.1939468 0.6460766 0.7353569 +0.2773041 0.6460766 0.7353569 +0.3384659 0.6460766 0.7353569 +0.3885728 0.6460766 0.7353569 +0.4317928 0.6460766 0.7353569 +0.470214 0.6460766 0.7353569 +0.5050551 0.6460766 0.7353569 +0.5370987 0.6460766 0.7353569 +0.5668815 0.6460766 0.7353569 +0.5947903 0.6460766 0.7353569 +0.6211144 0.6460766 0.7353569 +0.6460766 0.6460766 0.7353569 +0.6698526 0.6460766 0.7353569 +0.6925839 0.6460766 0.7353569 +0.7143866 0.6460766 0.7353569 +0.7353569 0.6460766 0.7353569 +0.7555758 0.6460766 0.7353569 +0.7751122 0.6460766 0.7353569 +0.7940252 0.6460766 0.7353569 +0.8123661 0.6460766 0.7353569 +0.8301795 0.6460766 0.7353569 +0.8475045 0.6460766 0.7353569 +0.8643761 0.6460766 0.7353569 +0.880825 0.6460766 0.7353569 +0.8968787 0.6460766 0.7353569 +0.9125621 0.6460766 0.7353569 +0.9278974 0.6460766 0.7353569 +0.9429048 0.6460766 0.7353569 +0.9576028 0.6460766 0.7353569 +0.9720079 0.6460766 0.7353569 +0.9861357 0.6460766 0.7353569 +1 0.6460766 0.7353569 +0 0.6698526 0.7353569 +0.1939468 0.6698526 0.7353569 +0.2773041 0.6698526 0.7353569 +0.3384659 0.6698526 0.7353569 +0.3885728 0.6698526 0.7353569 +0.4317928 0.6698526 0.7353569 +0.470214 0.6698526 0.7353569 +0.5050551 0.6698526 0.7353569 +0.5370987 0.6698526 0.7353569 +0.5668815 0.6698526 0.7353569 +0.5947903 0.6698526 0.7353569 +0.6211144 0.6698526 0.7353569 +0.6460766 0.6698526 0.7353569 +0.6698526 0.6698526 0.7353569 +0.6925839 0.6698526 0.7353569 +0.7143866 0.6698526 0.7353569 +0.7353569 0.6698526 0.7353569 +0.7555758 0.6698526 0.7353569 +0.7751122 0.6698526 0.7353569 +0.7940252 0.6698526 0.7353569 +0.8123661 0.6698526 0.7353569 +0.8301795 0.6698526 0.7353569 +0.8475045 0.6698526 0.7353569 +0.8643761 0.6698526 0.7353569 +0.880825 0.6698526 0.7353569 +0.8968787 0.6698526 0.7353569 +0.9125621 0.6698526 0.7353569 +0.9278974 0.6698526 0.7353569 +0.9429048 0.6698526 0.7353569 +0.9576028 0.6698526 0.7353569 +0.9720079 0.6698526 0.7353569 +0.9861357 0.6698526 0.7353569 +1 0.6698526 0.7353569 +0 0.6925839 0.7353569 +0.1939468 0.6925839 0.7353569 +0.2773041 0.6925839 0.7353569 +0.3384659 0.6925839 0.7353569 +0.3885728 0.6925839 0.7353569 +0.4317928 0.6925839 0.7353569 +0.470214 0.6925839 0.7353569 +0.5050551 0.6925839 0.7353569 +0.5370987 0.6925839 0.7353569 +0.5668815 0.6925839 0.7353569 +0.5947903 0.6925839 0.7353569 +0.6211144 0.6925839 0.7353569 +0.6460766 0.6925839 0.7353569 +0.6698526 0.6925839 0.7353569 +0.6925839 0.6925839 0.7353569 +0.7143866 0.6925839 0.7353569 +0.7353569 0.6925839 0.7353569 +0.7555758 0.6925839 0.7353569 +0.7751122 0.6925839 0.7353569 +0.7940252 0.6925839 0.7353569 +0.8123661 0.6925839 0.7353569 +0.8301795 0.6925839 0.7353569 +0.8475045 0.6925839 0.7353569 +0.8643761 0.6925839 0.7353569 +0.880825 0.6925839 0.7353569 +0.8968787 0.6925839 0.7353569 +0.9125621 0.6925839 0.7353569 +0.9278974 0.6925839 0.7353569 +0.9429048 0.6925839 0.7353569 +0.9576028 0.6925839 0.7353569 +0.9720079 0.6925839 0.7353569 +0.9861357 0.6925839 0.7353569 +1 0.6925839 0.7353569 +0 0.7143866 0.7353569 +0.1939468 0.7143866 0.7353569 +0.2773041 0.7143866 0.7353569 +0.3384659 0.7143866 0.7353569 +0.3885728 0.7143866 0.7353569 +0.4317928 0.7143866 0.7353569 +0.470214 0.7143866 0.7353569 +0.5050551 0.7143866 0.7353569 +0.5370987 0.7143866 0.7353569 +0.5668815 0.7143866 0.7353569 +0.5947903 0.7143866 0.7353569 +0.6211144 0.7143866 0.7353569 +0.6460766 0.7143866 0.7353569 +0.6698526 0.7143866 0.7353569 +0.6925839 0.7143866 0.7353569 +0.7143866 0.7143866 0.7353569 +0.7353569 0.7143866 0.7353569 +0.7555758 0.7143866 0.7353569 +0.7751122 0.7143866 0.7353569 +0.7940252 0.7143866 0.7353569 +0.8123661 0.7143866 0.7353569 +0.8301795 0.7143866 0.7353569 +0.8475045 0.7143866 0.7353569 +0.8643761 0.7143866 0.7353569 +0.880825 0.7143866 0.7353569 +0.8968787 0.7143866 0.7353569 +0.9125621 0.7143866 0.7353569 +0.9278974 0.7143866 0.7353569 +0.9429048 0.7143866 0.7353569 +0.9576028 0.7143866 0.7353569 +0.9720079 0.7143866 0.7353569 +0.9861357 0.7143866 0.7353569 +1 0.7143866 0.7353569 +0 0.7353569 0.7353569 +0.1939468 0.7353569 0.7353569 +0.2773041 0.7353569 0.7353569 +0.3384659 0.7353569 0.7353569 +0.3885728 0.7353569 0.7353569 +0.4317928 0.7353569 0.7353569 +0.470214 0.7353569 0.7353569 +0.5050551 0.7353569 0.7353569 +0.5370987 0.7353569 0.7353569 +0.5668815 0.7353569 0.7353569 +0.5947903 0.7353569 0.7353569 +0.6211144 0.7353569 0.7353569 +0.6460766 0.7353569 0.7353569 +0.6698526 0.7353569 0.7353569 +0.6925839 0.7353569 0.7353569 +0.7143866 0.7353569 0.7353569 +0.7353569 0.7353569 0.7353569 +0.7555758 0.7353569 0.7353569 +0.7751122 0.7353569 0.7353569 +0.7940252 0.7353569 0.7353569 +0.8123661 0.7353569 0.7353569 +0.8301795 0.7353569 0.7353569 +0.8475045 0.7353569 0.7353569 +0.8643761 0.7353569 0.7353569 +0.880825 0.7353569 0.7353569 +0.8968787 0.7353569 0.7353569 +0.9125621 0.7353569 0.7353569 +0.9278974 0.7353569 0.7353569 +0.9429048 0.7353569 0.7353569 +0.9576028 0.7353569 0.7353569 +0.9720079 0.7353569 0.7353569 +0.9861357 0.7353569 0.7353569 +1 0.7353569 0.7353569 +0 0.7555758 0.7353569 +0.1939468 0.7555758 0.7353569 +0.2773041 0.7555758 0.7353569 +0.3384659 0.7555758 0.7353569 +0.3885728 0.7555758 0.7353569 +0.4317928 0.7555758 0.7353569 +0.470214 0.7555758 0.7353569 +0.5050551 0.7555758 0.7353569 +0.5370987 0.7555758 0.7353569 +0.5668815 0.7555758 0.7353569 +0.5947903 0.7555758 0.7353569 +0.6211144 0.7555758 0.7353569 +0.6460766 0.7555758 0.7353569 +0.6698526 0.7555758 0.7353569 +0.6925839 0.7555758 0.7353569 +0.7143866 0.7555758 0.7353569 +0.7353569 0.7555758 0.7353569 +0.7555758 0.7555758 0.7353569 +0.7751122 0.7555758 0.7353569 +0.7940252 0.7555758 0.7353569 +0.8123661 0.7555758 0.7353569 +0.8301795 0.7555758 0.7353569 +0.8475045 0.7555758 0.7353569 +0.8643761 0.7555758 0.7353569 +0.880825 0.7555758 0.7353569 +0.8968787 0.7555758 0.7353569 +0.9125621 0.7555758 0.7353569 +0.9278974 0.7555758 0.7353569 +0.9429048 0.7555758 0.7353569 +0.9576028 0.7555758 0.7353569 +0.9720079 0.7555758 0.7353569 +0.9861357 0.7555758 0.7353569 +1 0.7555758 0.7353569 +0 0.7751122 0.7353569 +0.1939468 0.7751122 0.7353569 +0.2773041 0.7751122 0.7353569 +0.3384659 0.7751122 0.7353569 +0.3885728 0.7751122 0.7353569 +0.4317928 0.7751122 0.7353569 +0.470214 0.7751122 0.7353569 +0.5050551 0.7751122 0.7353569 +0.5370987 0.7751122 0.7353569 +0.5668815 0.7751122 0.7353569 +0.5947903 0.7751122 0.7353569 +0.6211144 0.7751122 0.7353569 +0.6460766 0.7751122 0.7353569 +0.6698526 0.7751122 0.7353569 +0.6925839 0.7751122 0.7353569 +0.7143866 0.7751122 0.7353569 +0.7353569 0.7751122 0.7353569 +0.7555758 0.7751122 0.7353569 +0.7751122 0.7751122 0.7353569 +0.7940252 0.7751122 0.7353569 +0.8123661 0.7751122 0.7353569 +0.8301795 0.7751122 0.7353569 +0.8475045 0.7751122 0.7353569 +0.8643761 0.7751122 0.7353569 +0.880825 0.7751122 0.7353569 +0.8968787 0.7751122 0.7353569 +0.9125621 0.7751122 0.7353569 +0.9278974 0.7751122 0.7353569 +0.9429048 0.7751122 0.7353569 +0.9576028 0.7751122 0.7353569 +0.9720079 0.7751122 0.7353569 +0.9861357 0.7751122 0.7353569 +1 0.7751122 0.7353569 +0 0.7940252 0.7353569 +0.1939468 0.7940252 0.7353569 +0.2773041 0.7940252 0.7353569 +0.3384659 0.7940252 0.7353569 +0.3885728 0.7940252 0.7353569 +0.4317928 0.7940252 0.7353569 +0.470214 0.7940252 0.7353569 +0.5050551 0.7940252 0.7353569 +0.5370987 0.7940252 0.7353569 +0.5668815 0.7940252 0.7353569 +0.5947903 0.7940252 0.7353569 +0.6211144 0.7940252 0.7353569 +0.6460766 0.7940252 0.7353569 +0.6698526 0.7940252 0.7353569 +0.6925839 0.7940252 0.7353569 +0.7143866 0.7940252 0.7353569 +0.7353569 0.7940252 0.7353569 +0.7555758 0.7940252 0.7353569 +0.7751122 0.7940252 0.7353569 +0.7940252 0.7940252 0.7353569 +0.8123661 0.7940252 0.7353569 +0.8301795 0.7940252 0.7353569 +0.8475045 0.7940252 0.7353569 +0.8643761 0.7940252 0.7353569 +0.880825 0.7940252 0.7353569 +0.8968787 0.7940252 0.7353569 +0.9125621 0.7940252 0.7353569 +0.9278974 0.7940252 0.7353569 +0.9429048 0.7940252 0.7353569 +0.9576028 0.7940252 0.7353569 +0.9720079 0.7940252 0.7353569 +0.9861357 0.7940252 0.7353569 +1 0.7940252 0.7353569 +0 0.8123661 0.7353569 +0.1939468 0.8123661 0.7353569 +0.2773041 0.8123661 0.7353569 +0.3384659 0.8123661 0.7353569 +0.3885728 0.8123661 0.7353569 +0.4317928 0.8123661 0.7353569 +0.470214 0.8123661 0.7353569 +0.5050551 0.8123661 0.7353569 +0.5370987 0.8123661 0.7353569 +0.5668815 0.8123661 0.7353569 +0.5947903 0.8123661 0.7353569 +0.6211144 0.8123661 0.7353569 +0.6460766 0.8123661 0.7353569 +0.6698526 0.8123661 0.7353569 +0.6925839 0.8123661 0.7353569 +0.7143866 0.8123661 0.7353569 +0.7353569 0.8123661 0.7353569 +0.7555758 0.8123661 0.7353569 +0.7751122 0.8123661 0.7353569 +0.7940252 0.8123661 0.7353569 +0.8123661 0.8123661 0.7353569 +0.8301795 0.8123661 0.7353569 +0.8475045 0.8123661 0.7353569 +0.8643761 0.8123661 0.7353569 +0.880825 0.8123661 0.7353569 +0.8968787 0.8123661 0.7353569 +0.9125621 0.8123661 0.7353569 +0.9278974 0.8123661 0.7353569 +0.9429048 0.8123661 0.7353569 +0.9576028 0.8123661 0.7353569 +0.9720079 0.8123661 0.7353569 +0.9861357 0.8123661 0.7353569 +1 0.8123661 0.7353569 +0 0.8301795 0.7353569 +0.1939468 0.8301795 0.7353569 +0.2773041 0.8301795 0.7353569 +0.3384659 0.8301795 0.7353569 +0.3885728 0.8301795 0.7353569 +0.4317928 0.8301795 0.7353569 +0.470214 0.8301795 0.7353569 +0.5050551 0.8301795 0.7353569 +0.5370987 0.8301795 0.7353569 +0.5668815 0.8301795 0.7353569 +0.5947903 0.8301795 0.7353569 +0.6211144 0.8301795 0.7353569 +0.6460766 0.8301795 0.7353569 +0.6698526 0.8301795 0.7353569 +0.6925839 0.8301795 0.7353569 +0.7143866 0.8301795 0.7353569 +0.7353569 0.8301795 0.7353569 +0.7555758 0.8301795 0.7353569 +0.7751122 0.8301795 0.7353569 +0.7940252 0.8301795 0.7353569 +0.8123661 0.8301795 0.7353569 +0.8301795 0.8301795 0.7353569 +0.8475045 0.8301795 0.7353569 +0.8643761 0.8301795 0.7353569 +0.880825 0.8301795 0.7353569 +0.8968787 0.8301795 0.7353569 +0.9125621 0.8301795 0.7353569 +0.9278974 0.8301795 0.7353569 +0.9429048 0.8301795 0.7353569 +0.9576028 0.8301795 0.7353569 +0.9720079 0.8301795 0.7353569 +0.9861357 0.8301795 0.7353569 +1 0.8301795 0.7353569 +0 0.8475045 0.7353569 +0.1939468 0.8475045 0.7353569 +0.2773041 0.8475045 0.7353569 +0.3384659 0.8475045 0.7353569 +0.3885728 0.8475045 0.7353569 +0.4317928 0.8475045 0.7353569 +0.470214 0.8475045 0.7353569 +0.5050551 0.8475045 0.7353569 +0.5370987 0.8475045 0.7353569 +0.5668815 0.8475045 0.7353569 +0.5947903 0.8475045 0.7353569 +0.6211144 0.8475045 0.7353569 +0.6460766 0.8475045 0.7353569 +0.6698526 0.8475045 0.7353569 +0.6925839 0.8475045 0.7353569 +0.7143866 0.8475045 0.7353569 +0.7353569 0.8475045 0.7353569 +0.7555758 0.8475045 0.7353569 +0.7751122 0.8475045 0.7353569 +0.7940252 0.8475045 0.7353569 +0.8123661 0.8475045 0.7353569 +0.8301795 0.8475045 0.7353569 +0.8475045 0.8475045 0.7353569 +0.8643761 0.8475045 0.7353569 +0.880825 0.8475045 0.7353569 +0.8968787 0.8475045 0.7353569 +0.9125621 0.8475045 0.7353569 +0.9278974 0.8475045 0.7353569 +0.9429048 0.8475045 0.7353569 +0.9576028 0.8475045 0.7353569 +0.9720079 0.8475045 0.7353569 +0.9861357 0.8475045 0.7353569 +1 0.8475045 0.7353569 +0 0.8643761 0.7353569 +0.1939468 0.8643761 0.7353569 +0.2773041 0.8643761 0.7353569 +0.3384659 0.8643761 0.7353569 +0.3885728 0.8643761 0.7353569 +0.4317928 0.8643761 0.7353569 +0.470214 0.8643761 0.7353569 +0.5050551 0.8643761 0.7353569 +0.5370987 0.8643761 0.7353569 +0.5668815 0.8643761 0.7353569 +0.5947903 0.8643761 0.7353569 +0.6211144 0.8643761 0.7353569 +0.6460766 0.8643761 0.7353569 +0.6698526 0.8643761 0.7353569 +0.6925839 0.8643761 0.7353569 +0.7143866 0.8643761 0.7353569 +0.7353569 0.8643761 0.7353569 +0.7555758 0.8643761 0.7353569 +0.7751122 0.8643761 0.7353569 +0.7940252 0.8643761 0.7353569 +0.8123661 0.8643761 0.7353569 +0.8301795 0.8643761 0.7353569 +0.8475045 0.8643761 0.7353569 +0.8643761 0.8643761 0.7353569 +0.880825 0.8643761 0.7353569 +0.8968787 0.8643761 0.7353569 +0.9125621 0.8643761 0.7353569 +0.9278974 0.8643761 0.7353569 +0.9429048 0.8643761 0.7353569 +0.9576028 0.8643761 0.7353569 +0.9720079 0.8643761 0.7353569 +0.9861357 0.8643761 0.7353569 +1 0.8643761 0.7353569 +0 0.880825 0.7353569 +0.1939468 0.880825 0.7353569 +0.2773041 0.880825 0.7353569 +0.3384659 0.880825 0.7353569 +0.3885728 0.880825 0.7353569 +0.4317928 0.880825 0.7353569 +0.470214 0.880825 0.7353569 +0.5050551 0.880825 0.7353569 +0.5370987 0.880825 0.7353569 +0.5668815 0.880825 0.7353569 +0.5947903 0.880825 0.7353569 +0.6211144 0.880825 0.7353569 +0.6460766 0.880825 0.7353569 +0.6698526 0.880825 0.7353569 +0.6925839 0.880825 0.7353569 +0.7143866 0.880825 0.7353569 +0.7353569 0.880825 0.7353569 +0.7555758 0.880825 0.7353569 +0.7751122 0.880825 0.7353569 +0.7940252 0.880825 0.7353569 +0.8123661 0.880825 0.7353569 +0.8301795 0.880825 0.7353569 +0.8475045 0.880825 0.7353569 +0.8643761 0.880825 0.7353569 +0.880825 0.880825 0.7353569 +0.8968787 0.880825 0.7353569 +0.9125621 0.880825 0.7353569 +0.9278974 0.880825 0.7353569 +0.9429048 0.880825 0.7353569 +0.9576028 0.880825 0.7353569 +0.9720079 0.880825 0.7353569 +0.9861357 0.880825 0.7353569 +1 0.880825 0.7353569 +0 0.8968787 0.7353569 +0.1939468 0.8968787 0.7353569 +0.2773041 0.8968787 0.7353569 +0.3384659 0.8968787 0.7353569 +0.3885728 0.8968787 0.7353569 +0.4317928 0.8968787 0.7353569 +0.470214 0.8968787 0.7353569 +0.5050551 0.8968787 0.7353569 +0.5370987 0.8968787 0.7353569 +0.5668815 0.8968787 0.7353569 +0.5947903 0.8968787 0.7353569 +0.6211144 0.8968787 0.7353569 +0.6460766 0.8968787 0.7353569 +0.6698526 0.8968787 0.7353569 +0.6925839 0.8968787 0.7353569 +0.7143866 0.8968787 0.7353569 +0.7353569 0.8968787 0.7353569 +0.7555758 0.8968787 0.7353569 +0.7751122 0.8968787 0.7353569 +0.7940252 0.8968787 0.7353569 +0.8123661 0.8968787 0.7353569 +0.8301795 0.8968787 0.7353569 +0.8475045 0.8968787 0.7353569 +0.8643761 0.8968787 0.7353569 +0.880825 0.8968787 0.7353569 +0.8968787 0.8968787 0.7353569 +0.9125621 0.8968787 0.7353569 +0.9278974 0.8968787 0.7353569 +0.9429048 0.8968787 0.7353569 +0.9576028 0.8968787 0.7353569 +0.9720079 0.8968787 0.7353569 +0.9861357 0.8968787 0.7353569 +1 0.8968787 0.7353569 +0 0.9125621 0.7353569 +0.1939468 0.9125621 0.7353569 +0.2773041 0.9125621 0.7353569 +0.3384659 0.9125621 0.7353569 +0.3885728 0.9125621 0.7353569 +0.4317928 0.9125621 0.7353569 +0.470214 0.9125621 0.7353569 +0.5050551 0.9125621 0.7353569 +0.5370987 0.9125621 0.7353569 +0.5668815 0.9125621 0.7353569 +0.5947903 0.9125621 0.7353569 +0.6211144 0.9125621 0.7353569 +0.6460766 0.9125621 0.7353569 +0.6698526 0.9125621 0.7353569 +0.6925839 0.9125621 0.7353569 +0.7143866 0.9125621 0.7353569 +0.7353569 0.9125621 0.7353569 +0.7555758 0.9125621 0.7353569 +0.7751122 0.9125621 0.7353569 +0.7940252 0.9125621 0.7353569 +0.8123661 0.9125621 0.7353569 +0.8301795 0.9125621 0.7353569 +0.8475045 0.9125621 0.7353569 +0.8643761 0.9125621 0.7353569 +0.880825 0.9125621 0.7353569 +0.8968787 0.9125621 0.7353569 +0.9125621 0.9125621 0.7353569 +0.9278974 0.9125621 0.7353569 +0.9429048 0.9125621 0.7353569 +0.9576028 0.9125621 0.7353569 +0.9720079 0.9125621 0.7353569 +0.9861357 0.9125621 0.7353569 +1 0.9125621 0.7353569 +0 0.9278974 0.7353569 +0.1939468 0.9278974 0.7353569 +0.2773041 0.9278974 0.7353569 +0.3384659 0.9278974 0.7353569 +0.3885728 0.9278974 0.7353569 +0.4317928 0.9278974 0.7353569 +0.470214 0.9278974 0.7353569 +0.5050551 0.9278974 0.7353569 +0.5370987 0.9278974 0.7353569 +0.5668815 0.9278974 0.7353569 +0.5947903 0.9278974 0.7353569 +0.6211144 0.9278974 0.7353569 +0.6460766 0.9278974 0.7353569 +0.6698526 0.9278974 0.7353569 +0.6925839 0.9278974 0.7353569 +0.7143866 0.9278974 0.7353569 +0.7353569 0.9278974 0.7353569 +0.7555758 0.9278974 0.7353569 +0.7751122 0.9278974 0.7353569 +0.7940252 0.9278974 0.7353569 +0.8123661 0.9278974 0.7353569 +0.8301795 0.9278974 0.7353569 +0.8475045 0.9278974 0.7353569 +0.8643761 0.9278974 0.7353569 +0.880825 0.9278974 0.7353569 +0.8968787 0.9278974 0.7353569 +0.9125621 0.9278974 0.7353569 +0.9278974 0.9278974 0.7353569 +0.9429048 0.9278974 0.7353569 +0.9576028 0.9278974 0.7353569 +0.9720079 0.9278974 0.7353569 +0.9861357 0.9278974 0.7353569 +1 0.9278974 0.7353569 +0 0.9429048 0.7353569 +0.1939468 0.9429048 0.7353569 +0.2773041 0.9429048 0.7353569 +0.3384659 0.9429048 0.7353569 +0.3885728 0.9429048 0.7353569 +0.4317928 0.9429048 0.7353569 +0.470214 0.9429048 0.7353569 +0.5050551 0.9429048 0.7353569 +0.5370987 0.9429048 0.7353569 +0.5668815 0.9429048 0.7353569 +0.5947903 0.9429048 0.7353569 +0.6211144 0.9429048 0.7353569 +0.6460766 0.9429048 0.7353569 +0.6698526 0.9429048 0.7353569 +0.6925839 0.9429048 0.7353569 +0.7143866 0.9429048 0.7353569 +0.7353569 0.9429048 0.7353569 +0.7555758 0.9429048 0.7353569 +0.7751122 0.9429048 0.7353569 +0.7940252 0.9429048 0.7353569 +0.8123661 0.9429048 0.7353569 +0.8301795 0.9429048 0.7353569 +0.8475045 0.9429048 0.7353569 +0.8643761 0.9429048 0.7353569 +0.880825 0.9429048 0.7353569 +0.8968787 0.9429048 0.7353569 +0.9125621 0.9429048 0.7353569 +0.9278974 0.9429048 0.7353569 +0.9429048 0.9429048 0.7353569 +0.9576028 0.9429048 0.7353569 +0.9720079 0.9429048 0.7353569 +0.9861357 0.9429048 0.7353569 +1 0.9429048 0.7353569 +0 0.9576028 0.7353569 +0.1939468 0.9576028 0.7353569 +0.2773041 0.9576028 0.7353569 +0.3384659 0.9576028 0.7353569 +0.3885728 0.9576028 0.7353569 +0.4317928 0.9576028 0.7353569 +0.470214 0.9576028 0.7353569 +0.5050551 0.9576028 0.7353569 +0.5370987 0.9576028 0.7353569 +0.5668815 0.9576028 0.7353569 +0.5947903 0.9576028 0.7353569 +0.6211144 0.9576028 0.7353569 +0.6460766 0.9576028 0.7353569 +0.6698526 0.9576028 0.7353569 +0.6925839 0.9576028 0.7353569 +0.7143866 0.9576028 0.7353569 +0.7353569 0.9576028 0.7353569 +0.7555758 0.9576028 0.7353569 +0.7751122 0.9576028 0.7353569 +0.7940252 0.9576028 0.7353569 +0.8123661 0.9576028 0.7353569 +0.8301795 0.9576028 0.7353569 +0.8475045 0.9576028 0.7353569 +0.8643761 0.9576028 0.7353569 +0.880825 0.9576028 0.7353569 +0.8968787 0.9576028 0.7353569 +0.9125621 0.9576028 0.7353569 +0.9278974 0.9576028 0.7353569 +0.9429048 0.9576028 0.7353569 +0.9576028 0.9576028 0.7353569 +0.9720079 0.9576028 0.7353569 +0.9861357 0.9576028 0.7353569 +1 0.9576028 0.7353569 +0 0.9720079 0.7353569 +0.1939468 0.9720079 0.7353569 +0.2773041 0.9720079 0.7353569 +0.3384659 0.9720079 0.7353569 +0.3885728 0.9720079 0.7353569 +0.4317928 0.9720079 0.7353569 +0.470214 0.9720079 0.7353569 +0.5050551 0.9720079 0.7353569 +0.5370987 0.9720079 0.7353569 +0.5668815 0.9720079 0.7353569 +0.5947903 0.9720079 0.7353569 +0.6211144 0.9720079 0.7353569 +0.6460766 0.9720079 0.7353569 +0.6698526 0.9720079 0.7353569 +0.6925839 0.9720079 0.7353569 +0.7143866 0.9720079 0.7353569 +0.7353569 0.9720079 0.7353569 +0.7555758 0.9720079 0.7353569 +0.7751122 0.9720079 0.7353569 +0.7940252 0.9720079 0.7353569 +0.8123661 0.9720079 0.7353569 +0.8301795 0.9720079 0.7353569 +0.8475045 0.9720079 0.7353569 +0.8643761 0.9720079 0.7353569 +0.880825 0.9720079 0.7353569 +0.8968787 0.9720079 0.7353569 +0.9125621 0.9720079 0.7353569 +0.9278974 0.9720079 0.7353569 +0.9429048 0.9720079 0.7353569 +0.9576028 0.9720079 0.7353569 +0.9720079 0.9720079 0.7353569 +0.9861357 0.9720079 0.7353569 +1 0.9720079 0.7353569 +0 0.9861357 0.7353569 +0.1939468 0.9861357 0.7353569 +0.2773041 0.9861357 0.7353569 +0.3384659 0.9861357 0.7353569 +0.3885728 0.9861357 0.7353569 +0.4317928 0.9861357 0.7353569 +0.470214 0.9861357 0.7353569 +0.5050551 0.9861357 0.7353569 +0.5370987 0.9861357 0.7353569 +0.5668815 0.9861357 0.7353569 +0.5947903 0.9861357 0.7353569 +0.6211144 0.9861357 0.7353569 +0.6460766 0.9861357 0.7353569 +0.6698526 0.9861357 0.7353569 +0.6925839 0.9861357 0.7353569 +0.7143866 0.9861357 0.7353569 +0.7353569 0.9861357 0.7353569 +0.7555758 0.9861357 0.7353569 +0.7751122 0.9861357 0.7353569 +0.7940252 0.9861357 0.7353569 +0.8123661 0.9861357 0.7353569 +0.8301795 0.9861357 0.7353569 +0.8475045 0.9861357 0.7353569 +0.8643761 0.9861357 0.7353569 +0.880825 0.9861357 0.7353569 +0.8968787 0.9861357 0.7353569 +0.9125621 0.9861357 0.7353569 +0.9278974 0.9861357 0.7353569 +0.9429048 0.9861357 0.7353569 +0.9576028 0.9861357 0.7353569 +0.9720079 0.9861357 0.7353569 +0.9861357 0.9861357 0.7353569 +1 0.9861357 0.7353569 +0 1 0.7353569 +0.1939468 1 0.7353569 +0.2773041 1 0.7353569 +0.3384659 1 0.7353569 +0.3885728 1 0.7353569 +0.4317928 1 0.7353569 +0.470214 1 0.7353569 +0.5050551 1 0.7353569 +0.5370987 1 0.7353569 +0.5668815 1 0.7353569 +0.5947903 1 0.7353569 +0.6211144 1 0.7353569 +0.6460766 1 0.7353569 +0.6698526 1 0.7353569 +0.6925839 1 0.7353569 +0.7143866 1 0.7353569 +0.7353569 1 0.7353569 +0.7555758 1 0.7353569 +0.7751122 1 0.7353569 +0.7940252 1 0.7353569 +0.8123661 1 0.7353569 +0.8301795 1 0.7353569 +0.8475045 1 0.7353569 +0.8643761 1 0.7353569 +0.880825 1 0.7353569 +0.8968787 1 0.7353569 +0.9125621 1 0.7353569 +0.9278974 1 0.7353569 +0.9429048 1 0.7353569 +0.9576028 1 0.7353569 +0.9720079 1 0.7353569 +0.9861357 1 0.7353569 +1 1 0.7353569 +0 0 0.7555758 +0.1939468 0 0.7555758 +0.2773041 0 0.7555758 +0.3384659 0 0.7555758 +0.3885728 0 0.7555758 +0.4317928 0 0.7555758 +0.470214 0 0.7555758 +0.5050551 0 0.7555758 +0.5370987 0 0.7555758 +0.5668815 0 0.7555758 +0.5947903 0 0.7555758 +0.6211144 0 0.7555758 +0.6460766 0 0.7555758 +0.6698526 0 0.7555758 +0.6925839 0 0.7555758 +0.7143866 0 0.7555758 +0.7353569 0 0.7555758 +0.7555758 0 0.7555758 +0.7751122 0 0.7555758 +0.7940252 0 0.7555758 +0.8123661 0 0.7555758 +0.8301795 0 0.7555758 +0.8475045 0 0.7555758 +0.8643761 0 0.7555758 +0.880825 0 0.7555758 +0.8968787 0 0.7555758 +0.9125621 0 0.7555758 +0.9278974 0 0.7555758 +0.9429048 0 0.7555758 +0.9576028 0 0.7555758 +0.9720079 0 0.7555758 +0.9861357 0 0.7555758 +1 0 0.7555758 +0 0.1939468 0.7555758 +0.1939468 0.1939468 0.7555758 +0.2773041 0.1939468 0.7555758 +0.3384659 0.1939468 0.7555758 +0.3885728 0.1939468 0.7555758 +0.4317928 0.1939468 0.7555758 +0.470214 0.1939468 0.7555758 +0.5050551 0.1939468 0.7555758 +0.5370987 0.1939468 0.7555758 +0.5668815 0.1939468 0.7555758 +0.5947903 0.1939468 0.7555758 +0.6211144 0.1939468 0.7555758 +0.6460766 0.1939468 0.7555758 +0.6698526 0.1939468 0.7555758 +0.6925839 0.1939468 0.7555758 +0.7143866 0.1939468 0.7555758 +0.7353569 0.1939468 0.7555758 +0.7555758 0.1939468 0.7555758 +0.7751122 0.1939468 0.7555758 +0.7940252 0.1939468 0.7555758 +0.8123661 0.1939468 0.7555758 +0.8301795 0.1939468 0.7555758 +0.8475045 0.1939468 0.7555758 +0.8643761 0.1939468 0.7555758 +0.880825 0.1939468 0.7555758 +0.8968787 0.1939468 0.7555758 +0.9125621 0.1939468 0.7555758 +0.9278974 0.1939468 0.7555758 +0.9429048 0.1939468 0.7555758 +0.9576028 0.1939468 0.7555758 +0.9720079 0.1939468 0.7555758 +0.9861357 0.1939468 0.7555758 +1 0.1939468 0.7555758 +0 0.2773041 0.7555758 +0.1939468 0.2773041 0.7555758 +0.2773041 0.2773041 0.7555758 +0.3384659 0.2773041 0.7555758 +0.3885728 0.2773041 0.7555758 +0.4317928 0.2773041 0.7555758 +0.470214 0.2773041 0.7555758 +0.5050551 0.2773041 0.7555758 +0.5370987 0.2773041 0.7555758 +0.5668815 0.2773041 0.7555758 +0.5947903 0.2773041 0.7555758 +0.6211144 0.2773041 0.7555758 +0.6460766 0.2773041 0.7555758 +0.6698526 0.2773041 0.7555758 +0.6925839 0.2773041 0.7555758 +0.7143866 0.2773041 0.7555758 +0.7353569 0.2773041 0.7555758 +0.7555758 0.2773041 0.7555758 +0.7751122 0.2773041 0.7555758 +0.7940252 0.2773041 0.7555758 +0.8123661 0.2773041 0.7555758 +0.8301795 0.2773041 0.7555758 +0.8475045 0.2773041 0.7555758 +0.8643761 0.2773041 0.7555758 +0.880825 0.2773041 0.7555758 +0.8968787 0.2773041 0.7555758 +0.9125621 0.2773041 0.7555758 +0.9278974 0.2773041 0.7555758 +0.9429048 0.2773041 0.7555758 +0.9576028 0.2773041 0.7555758 +0.9720079 0.2773041 0.7555758 +0.9861357 0.2773041 0.7555758 +1 0.2773041 0.7555758 +0 0.3384659 0.7555758 +0.1939468 0.3384659 0.7555758 +0.2773041 0.3384659 0.7555758 +0.3384659 0.3384659 0.7555758 +0.3885728 0.3384659 0.7555758 +0.4317928 0.3384659 0.7555758 +0.470214 0.3384659 0.7555758 +0.5050551 0.3384659 0.7555758 +0.5370987 0.3384659 0.7555758 +0.5668815 0.3384659 0.7555758 +0.5947903 0.3384659 0.7555758 +0.6211144 0.3384659 0.7555758 +0.6460766 0.3384659 0.7555758 +0.6698526 0.3384659 0.7555758 +0.6925839 0.3384659 0.7555758 +0.7143866 0.3384659 0.7555758 +0.7353569 0.3384659 0.7555758 +0.7555758 0.3384659 0.7555758 +0.7751122 0.3384659 0.7555758 +0.7940252 0.3384659 0.7555758 +0.8123661 0.3384659 0.7555758 +0.8301795 0.3384659 0.7555758 +0.8475045 0.3384659 0.7555758 +0.8643761 0.3384659 0.7555758 +0.880825 0.3384659 0.7555758 +0.8968787 0.3384659 0.7555758 +0.9125621 0.3384659 0.7555758 +0.9278974 0.3384659 0.7555758 +0.9429048 0.3384659 0.7555758 +0.9576028 0.3384659 0.7555758 +0.9720079 0.3384659 0.7555758 +0.9861357 0.3384659 0.7555758 +1 0.3384659 0.7555758 +0 0.3885728 0.7555758 +0.1939468 0.3885728 0.7555758 +0.2773041 0.3885728 0.7555758 +0.3384659 0.3885728 0.7555758 +0.3885728 0.3885728 0.7555758 +0.4317928 0.3885728 0.7555758 +0.470214 0.3885728 0.7555758 +0.5050551 0.3885728 0.7555758 +0.5370987 0.3885728 0.7555758 +0.5668815 0.3885728 0.7555758 +0.5947903 0.3885728 0.7555758 +0.6211144 0.3885728 0.7555758 +0.6460766 0.3885728 0.7555758 +0.6698526 0.3885728 0.7555758 +0.6925839 0.3885728 0.7555758 +0.7143866 0.3885728 0.7555758 +0.7353569 0.3885728 0.7555758 +0.7555758 0.3885728 0.7555758 +0.7751122 0.3885728 0.7555758 +0.7940252 0.3885728 0.7555758 +0.8123661 0.3885728 0.7555758 +0.8301795 0.3885728 0.7555758 +0.8475045 0.3885728 0.7555758 +0.8643761 0.3885728 0.7555758 +0.880825 0.3885728 0.7555758 +0.8968787 0.3885728 0.7555758 +0.9125621 0.3885728 0.7555758 +0.9278974 0.3885728 0.7555758 +0.9429048 0.3885728 0.7555758 +0.9576028 0.3885728 0.7555758 +0.9720079 0.3885728 0.7555758 +0.9861357 0.3885728 0.7555758 +1 0.3885728 0.7555758 +0 0.4317928 0.7555758 +0.1939468 0.4317928 0.7555758 +0.2773041 0.4317928 0.7555758 +0.3384659 0.4317928 0.7555758 +0.3885728 0.4317928 0.7555758 +0.4317928 0.4317928 0.7555758 +0.470214 0.4317928 0.7555758 +0.5050551 0.4317928 0.7555758 +0.5370987 0.4317928 0.7555758 +0.5668815 0.4317928 0.7555758 +0.5947903 0.4317928 0.7555758 +0.6211144 0.4317928 0.7555758 +0.6460766 0.4317928 0.7555758 +0.6698526 0.4317928 0.7555758 +0.6925839 0.4317928 0.7555758 +0.7143866 0.4317928 0.7555758 +0.7353569 0.4317928 0.7555758 +0.7555758 0.4317928 0.7555758 +0.7751122 0.4317928 0.7555758 +0.7940252 0.4317928 0.7555758 +0.8123661 0.4317928 0.7555758 +0.8301795 0.4317928 0.7555758 +0.8475045 0.4317928 0.7555758 +0.8643761 0.4317928 0.7555758 +0.880825 0.4317928 0.7555758 +0.8968787 0.4317928 0.7555758 +0.9125621 0.4317928 0.7555758 +0.9278974 0.4317928 0.7555758 +0.9429048 0.4317928 0.7555758 +0.9576028 0.4317928 0.7555758 +0.9720079 0.4317928 0.7555758 +0.9861357 0.4317928 0.7555758 +1 0.4317928 0.7555758 +0 0.470214 0.7555758 +0.1939468 0.470214 0.7555758 +0.2773041 0.470214 0.7555758 +0.3384659 0.470214 0.7555758 +0.3885728 0.470214 0.7555758 +0.4317928 0.470214 0.7555758 +0.470214 0.470214 0.7555758 +0.5050551 0.470214 0.7555758 +0.5370987 0.470214 0.7555758 +0.5668815 0.470214 0.7555758 +0.5947903 0.470214 0.7555758 +0.6211144 0.470214 0.7555758 +0.6460766 0.470214 0.7555758 +0.6698526 0.470214 0.7555758 +0.6925839 0.470214 0.7555758 +0.7143866 0.470214 0.7555758 +0.7353569 0.470214 0.7555758 +0.7555758 0.470214 0.7555758 +0.7751122 0.470214 0.7555758 +0.7940252 0.470214 0.7555758 +0.8123661 0.470214 0.7555758 +0.8301795 0.470214 0.7555758 +0.8475045 0.470214 0.7555758 +0.8643761 0.470214 0.7555758 +0.880825 0.470214 0.7555758 +0.8968787 0.470214 0.7555758 +0.9125621 0.470214 0.7555758 +0.9278974 0.470214 0.7555758 +0.9429048 0.470214 0.7555758 +0.9576028 0.470214 0.7555758 +0.9720079 0.470214 0.7555758 +0.9861357 0.470214 0.7555758 +1 0.470214 0.7555758 +0 0.5050551 0.7555758 +0.1939468 0.5050551 0.7555758 +0.2773041 0.5050551 0.7555758 +0.3384659 0.5050551 0.7555758 +0.3885728 0.5050551 0.7555758 +0.4317928 0.5050551 0.7555758 +0.470214 0.5050551 0.7555758 +0.5050551 0.5050551 0.7555758 +0.5370987 0.5050551 0.7555758 +0.5668815 0.5050551 0.7555758 +0.5947903 0.5050551 0.7555758 +0.6211144 0.5050551 0.7555758 +0.6460766 0.5050551 0.7555758 +0.6698526 0.5050551 0.7555758 +0.6925839 0.5050551 0.7555758 +0.7143866 0.5050551 0.7555758 +0.7353569 0.5050551 0.7555758 +0.7555758 0.5050551 0.7555758 +0.7751122 0.5050551 0.7555758 +0.7940252 0.5050551 0.7555758 +0.8123661 0.5050551 0.7555758 +0.8301795 0.5050551 0.7555758 +0.8475045 0.5050551 0.7555758 +0.8643761 0.5050551 0.7555758 +0.880825 0.5050551 0.7555758 +0.8968787 0.5050551 0.7555758 +0.9125621 0.5050551 0.7555758 +0.9278974 0.5050551 0.7555758 +0.9429048 0.5050551 0.7555758 +0.9576028 0.5050551 0.7555758 +0.9720079 0.5050551 0.7555758 +0.9861357 0.5050551 0.7555758 +1 0.5050551 0.7555758 +0 0.5370987 0.7555758 +0.1939468 0.5370987 0.7555758 +0.2773041 0.5370987 0.7555758 +0.3384659 0.5370987 0.7555758 +0.3885728 0.5370987 0.7555758 +0.4317928 0.5370987 0.7555758 +0.470214 0.5370987 0.7555758 +0.5050551 0.5370987 0.7555758 +0.5370987 0.5370987 0.7555758 +0.5668815 0.5370987 0.7555758 +0.5947903 0.5370987 0.7555758 +0.6211144 0.5370987 0.7555758 +0.6460766 0.5370987 0.7555758 +0.6698526 0.5370987 0.7555758 +0.6925839 0.5370987 0.7555758 +0.7143866 0.5370987 0.7555758 +0.7353569 0.5370987 0.7555758 +0.7555758 0.5370987 0.7555758 +0.7751122 0.5370987 0.7555758 +0.7940252 0.5370987 0.7555758 +0.8123661 0.5370987 0.7555758 +0.8301795 0.5370987 0.7555758 +0.8475045 0.5370987 0.7555758 +0.8643761 0.5370987 0.7555758 +0.880825 0.5370987 0.7555758 +0.8968787 0.5370987 0.7555758 +0.9125621 0.5370987 0.7555758 +0.9278974 0.5370987 0.7555758 +0.9429048 0.5370987 0.7555758 +0.9576028 0.5370987 0.7555758 +0.9720079 0.5370987 0.7555758 +0.9861357 0.5370987 0.7555758 +1 0.5370987 0.7555758 +0 0.5668815 0.7555758 +0.1939468 0.5668815 0.7555758 +0.2773041 0.5668815 0.7555758 +0.3384659 0.5668815 0.7555758 +0.3885728 0.5668815 0.7555758 +0.4317928 0.5668815 0.7555758 +0.470214 0.5668815 0.7555758 +0.5050551 0.5668815 0.7555758 +0.5370987 0.5668815 0.7555758 +0.5668815 0.5668815 0.7555758 +0.5947903 0.5668815 0.7555758 +0.6211144 0.5668815 0.7555758 +0.6460766 0.5668815 0.7555758 +0.6698526 0.5668815 0.7555758 +0.6925839 0.5668815 0.7555758 +0.7143866 0.5668815 0.7555758 +0.7353569 0.5668815 0.7555758 +0.7555758 0.5668815 0.7555758 +0.7751122 0.5668815 0.7555758 +0.7940252 0.5668815 0.7555758 +0.8123661 0.5668815 0.7555758 +0.8301795 0.5668815 0.7555758 +0.8475045 0.5668815 0.7555758 +0.8643761 0.5668815 0.7555758 +0.880825 0.5668815 0.7555758 +0.8968787 0.5668815 0.7555758 +0.9125621 0.5668815 0.7555758 +0.9278974 0.5668815 0.7555758 +0.9429048 0.5668815 0.7555758 +0.9576028 0.5668815 0.7555758 +0.9720079 0.5668815 0.7555758 +0.9861357 0.5668815 0.7555758 +1 0.5668815 0.7555758 +0 0.5947903 0.7555758 +0.1939468 0.5947903 0.7555758 +0.2773041 0.5947903 0.7555758 +0.3384659 0.5947903 0.7555758 +0.3885728 0.5947903 0.7555758 +0.4317928 0.5947903 0.7555758 +0.470214 0.5947903 0.7555758 +0.5050551 0.5947903 0.7555758 +0.5370987 0.5947903 0.7555758 +0.5668815 0.5947903 0.7555758 +0.5947903 0.5947903 0.7555758 +0.6211144 0.5947903 0.7555758 +0.6460766 0.5947903 0.7555758 +0.6698526 0.5947903 0.7555758 +0.6925839 0.5947903 0.7555758 +0.7143866 0.5947903 0.7555758 +0.7353569 0.5947903 0.7555758 +0.7555758 0.5947903 0.7555758 +0.7751122 0.5947903 0.7555758 +0.7940252 0.5947903 0.7555758 +0.8123661 0.5947903 0.7555758 +0.8301795 0.5947903 0.7555758 +0.8475045 0.5947903 0.7555758 +0.8643761 0.5947903 0.7555758 +0.880825 0.5947903 0.7555758 +0.8968787 0.5947903 0.7555758 +0.9125621 0.5947903 0.7555758 +0.9278974 0.5947903 0.7555758 +0.9429048 0.5947903 0.7555758 +0.9576028 0.5947903 0.7555758 +0.9720079 0.5947903 0.7555758 +0.9861357 0.5947903 0.7555758 +1 0.5947903 0.7555758 +0 0.6211144 0.7555758 +0.1939468 0.6211144 0.7555758 +0.2773041 0.6211144 0.7555758 +0.3384659 0.6211144 0.7555758 +0.3885728 0.6211144 0.7555758 +0.4317928 0.6211144 0.7555758 +0.470214 0.6211144 0.7555758 +0.5050551 0.6211144 0.7555758 +0.5370987 0.6211144 0.7555758 +0.5668815 0.6211144 0.7555758 +0.5947903 0.6211144 0.7555758 +0.6211144 0.6211144 0.7555758 +0.6460766 0.6211144 0.7555758 +0.6698526 0.6211144 0.7555758 +0.6925839 0.6211144 0.7555758 +0.7143866 0.6211144 0.7555758 +0.7353569 0.6211144 0.7555758 +0.7555758 0.6211144 0.7555758 +0.7751122 0.6211144 0.7555758 +0.7940252 0.6211144 0.7555758 +0.8123661 0.6211144 0.7555758 +0.8301795 0.6211144 0.7555758 +0.8475045 0.6211144 0.7555758 +0.8643761 0.6211144 0.7555758 +0.880825 0.6211144 0.7555758 +0.8968787 0.6211144 0.7555758 +0.9125621 0.6211144 0.7555758 +0.9278974 0.6211144 0.7555758 +0.9429048 0.6211144 0.7555758 +0.9576028 0.6211144 0.7555758 +0.9720079 0.6211144 0.7555758 +0.9861357 0.6211144 0.7555758 +1 0.6211144 0.7555758 +0 0.6460766 0.7555758 +0.1939468 0.6460766 0.7555758 +0.2773041 0.6460766 0.7555758 +0.3384659 0.6460766 0.7555758 +0.3885728 0.6460766 0.7555758 +0.4317928 0.6460766 0.7555758 +0.470214 0.6460766 0.7555758 +0.5050551 0.6460766 0.7555758 +0.5370987 0.6460766 0.7555758 +0.5668815 0.6460766 0.7555758 +0.5947903 0.6460766 0.7555758 +0.6211144 0.6460766 0.7555758 +0.6460766 0.6460766 0.7555758 +0.6698526 0.6460766 0.7555758 +0.6925839 0.6460766 0.7555758 +0.7143866 0.6460766 0.7555758 +0.7353569 0.6460766 0.7555758 +0.7555758 0.6460766 0.7555758 +0.7751122 0.6460766 0.7555758 +0.7940252 0.6460766 0.7555758 +0.8123661 0.6460766 0.7555758 +0.8301795 0.6460766 0.7555758 +0.8475045 0.6460766 0.7555758 +0.8643761 0.6460766 0.7555758 +0.880825 0.6460766 0.7555758 +0.8968787 0.6460766 0.7555758 +0.9125621 0.6460766 0.7555758 +0.9278974 0.6460766 0.7555758 +0.9429048 0.6460766 0.7555758 +0.9576028 0.6460766 0.7555758 +0.9720079 0.6460766 0.7555758 +0.9861357 0.6460766 0.7555758 +1 0.6460766 0.7555758 +0 0.6698526 0.7555758 +0.1939468 0.6698526 0.7555758 +0.2773041 0.6698526 0.7555758 +0.3384659 0.6698526 0.7555758 +0.3885728 0.6698526 0.7555758 +0.4317928 0.6698526 0.7555758 +0.470214 0.6698526 0.7555758 +0.5050551 0.6698526 0.7555758 +0.5370987 0.6698526 0.7555758 +0.5668815 0.6698526 0.7555758 +0.5947903 0.6698526 0.7555758 +0.6211144 0.6698526 0.7555758 +0.6460766 0.6698526 0.7555758 +0.6698526 0.6698526 0.7555758 +0.6925839 0.6698526 0.7555758 +0.7143866 0.6698526 0.7555758 +0.7353569 0.6698526 0.7555758 +0.7555758 0.6698526 0.7555758 +0.7751122 0.6698526 0.7555758 +0.7940252 0.6698526 0.7555758 +0.8123661 0.6698526 0.7555758 +0.8301795 0.6698526 0.7555758 +0.8475045 0.6698526 0.7555758 +0.8643761 0.6698526 0.7555758 +0.880825 0.6698526 0.7555758 +0.8968787 0.6698526 0.7555758 +0.9125621 0.6698526 0.7555758 +0.9278974 0.6698526 0.7555758 +0.9429048 0.6698526 0.7555758 +0.9576028 0.6698526 0.7555758 +0.9720079 0.6698526 0.7555758 +0.9861357 0.6698526 0.7555758 +1 0.6698526 0.7555758 +0 0.6925839 0.7555758 +0.1939468 0.6925839 0.7555758 +0.2773041 0.6925839 0.7555758 +0.3384659 0.6925839 0.7555758 +0.3885728 0.6925839 0.7555758 +0.4317928 0.6925839 0.7555758 +0.470214 0.6925839 0.7555758 +0.5050551 0.6925839 0.7555758 +0.5370987 0.6925839 0.7555758 +0.5668815 0.6925839 0.7555758 +0.5947903 0.6925839 0.7555758 +0.6211144 0.6925839 0.7555758 +0.6460766 0.6925839 0.7555758 +0.6698526 0.6925839 0.7555758 +0.6925839 0.6925839 0.7555758 +0.7143866 0.6925839 0.7555758 +0.7353569 0.6925839 0.7555758 +0.7555758 0.6925839 0.7555758 +0.7751122 0.6925839 0.7555758 +0.7940252 0.6925839 0.7555758 +0.8123661 0.6925839 0.7555758 +0.8301795 0.6925839 0.7555758 +0.8475045 0.6925839 0.7555758 +0.8643761 0.6925839 0.7555758 +0.880825 0.6925839 0.7555758 +0.8968787 0.6925839 0.7555758 +0.9125621 0.6925839 0.7555758 +0.9278974 0.6925839 0.7555758 +0.9429048 0.6925839 0.7555758 +0.9576028 0.6925839 0.7555758 +0.9720079 0.6925839 0.7555758 +0.9861357 0.6925839 0.7555758 +1 0.6925839 0.7555758 +0 0.7143866 0.7555758 +0.1939468 0.7143866 0.7555758 +0.2773041 0.7143866 0.7555758 +0.3384659 0.7143866 0.7555758 +0.3885728 0.7143866 0.7555758 +0.4317928 0.7143866 0.7555758 +0.470214 0.7143866 0.7555758 +0.5050551 0.7143866 0.7555758 +0.5370987 0.7143866 0.7555758 +0.5668815 0.7143866 0.7555758 +0.5947903 0.7143866 0.7555758 +0.6211144 0.7143866 0.7555758 +0.6460766 0.7143866 0.7555758 +0.6698526 0.7143866 0.7555758 +0.6925839 0.7143866 0.7555758 +0.7143866 0.7143866 0.7555758 +0.7353569 0.7143866 0.7555758 +0.7555758 0.7143866 0.7555758 +0.7751122 0.7143866 0.7555758 +0.7940252 0.7143866 0.7555758 +0.8123661 0.7143866 0.7555758 +0.8301795 0.7143866 0.7555758 +0.8475045 0.7143866 0.7555758 +0.8643761 0.7143866 0.7555758 +0.880825 0.7143866 0.7555758 +0.8968787 0.7143866 0.7555758 +0.9125621 0.7143866 0.7555758 +0.9278974 0.7143866 0.7555758 +0.9429048 0.7143866 0.7555758 +0.9576028 0.7143866 0.7555758 +0.9720079 0.7143866 0.7555758 +0.9861357 0.7143866 0.7555758 +1 0.7143866 0.7555758 +0 0.7353569 0.7555758 +0.1939468 0.7353569 0.7555758 +0.2773041 0.7353569 0.7555758 +0.3384659 0.7353569 0.7555758 +0.3885728 0.7353569 0.7555758 +0.4317928 0.7353569 0.7555758 +0.470214 0.7353569 0.7555758 +0.5050551 0.7353569 0.7555758 +0.5370987 0.7353569 0.7555758 +0.5668815 0.7353569 0.7555758 +0.5947903 0.7353569 0.7555758 +0.6211144 0.7353569 0.7555758 +0.6460766 0.7353569 0.7555758 +0.6698526 0.7353569 0.7555758 +0.6925839 0.7353569 0.7555758 +0.7143866 0.7353569 0.7555758 +0.7353569 0.7353569 0.7555758 +0.7555758 0.7353569 0.7555758 +0.7751122 0.7353569 0.7555758 +0.7940252 0.7353569 0.7555758 +0.8123661 0.7353569 0.7555758 +0.8301795 0.7353569 0.7555758 +0.8475045 0.7353569 0.7555758 +0.8643761 0.7353569 0.7555758 +0.880825 0.7353569 0.7555758 +0.8968787 0.7353569 0.7555758 +0.9125621 0.7353569 0.7555758 +0.9278974 0.7353569 0.7555758 +0.9429048 0.7353569 0.7555758 +0.9576028 0.7353569 0.7555758 +0.9720079 0.7353569 0.7555758 +0.9861357 0.7353569 0.7555758 +1 0.7353569 0.7555758 +0 0.7555758 0.7555758 +0.1939468 0.7555758 0.7555758 +0.2773041 0.7555758 0.7555758 +0.3384659 0.7555758 0.7555758 +0.3885728 0.7555758 0.7555758 +0.4317928 0.7555758 0.7555758 +0.470214 0.7555758 0.7555758 +0.5050551 0.7555758 0.7555758 +0.5370987 0.7555758 0.7555758 +0.5668815 0.7555758 0.7555758 +0.5947903 0.7555758 0.7555758 +0.6211144 0.7555758 0.7555758 +0.6460766 0.7555758 0.7555758 +0.6698526 0.7555758 0.7555758 +0.6925839 0.7555758 0.7555758 +0.7143866 0.7555758 0.7555758 +0.7353569 0.7555758 0.7555758 +0.7555758 0.7555758 0.7555758 +0.7751122 0.7555758 0.7555758 +0.7940252 0.7555758 0.7555758 +0.8123661 0.7555758 0.7555758 +0.8301795 0.7555758 0.7555758 +0.8475045 0.7555758 0.7555758 +0.8643761 0.7555758 0.7555758 +0.880825 0.7555758 0.7555758 +0.8968787 0.7555758 0.7555758 +0.9125621 0.7555758 0.7555758 +0.9278974 0.7555758 0.7555758 +0.9429048 0.7555758 0.7555758 +0.9576028 0.7555758 0.7555758 +0.9720079 0.7555758 0.7555758 +0.9861357 0.7555758 0.7555758 +1 0.7555758 0.7555758 +0 0.7751122 0.7555758 +0.1939468 0.7751122 0.7555758 +0.2773041 0.7751122 0.7555758 +0.3384659 0.7751122 0.7555758 +0.3885728 0.7751122 0.7555758 +0.4317928 0.7751122 0.7555758 +0.470214 0.7751122 0.7555758 +0.5050551 0.7751122 0.7555758 +0.5370987 0.7751122 0.7555758 +0.5668815 0.7751122 0.7555758 +0.5947903 0.7751122 0.7555758 +0.6211144 0.7751122 0.7555758 +0.6460766 0.7751122 0.7555758 +0.6698526 0.7751122 0.7555758 +0.6925839 0.7751122 0.7555758 +0.7143866 0.7751122 0.7555758 +0.7353569 0.7751122 0.7555758 +0.7555758 0.7751122 0.7555758 +0.7751122 0.7751122 0.7555758 +0.7940252 0.7751122 0.7555758 +0.8123661 0.7751122 0.7555758 +0.8301795 0.7751122 0.7555758 +0.8475045 0.7751122 0.7555758 +0.8643761 0.7751122 0.7555758 +0.880825 0.7751122 0.7555758 +0.8968787 0.7751122 0.7555758 +0.9125621 0.7751122 0.7555758 +0.9278974 0.7751122 0.7555758 +0.9429048 0.7751122 0.7555758 +0.9576028 0.7751122 0.7555758 +0.9720079 0.7751122 0.7555758 +0.9861357 0.7751122 0.7555758 +1 0.7751122 0.7555758 +0 0.7940252 0.7555758 +0.1939468 0.7940252 0.7555758 +0.2773041 0.7940252 0.7555758 +0.3384659 0.7940252 0.7555758 +0.3885728 0.7940252 0.7555758 +0.4317928 0.7940252 0.7555758 +0.470214 0.7940252 0.7555758 +0.5050551 0.7940252 0.7555758 +0.5370987 0.7940252 0.7555758 +0.5668815 0.7940252 0.7555758 +0.5947903 0.7940252 0.7555758 +0.6211144 0.7940252 0.7555758 +0.6460766 0.7940252 0.7555758 +0.6698526 0.7940252 0.7555758 +0.6925839 0.7940252 0.7555758 +0.7143866 0.7940252 0.7555758 +0.7353569 0.7940252 0.7555758 +0.7555758 0.7940252 0.7555758 +0.7751122 0.7940252 0.7555758 +0.7940252 0.7940252 0.7555758 +0.8123661 0.7940252 0.7555758 +0.8301795 0.7940252 0.7555758 +0.8475045 0.7940252 0.7555758 +0.8643761 0.7940252 0.7555758 +0.880825 0.7940252 0.7555758 +0.8968787 0.7940252 0.7555758 +0.9125621 0.7940252 0.7555758 +0.9278974 0.7940252 0.7555758 +0.9429048 0.7940252 0.7555758 +0.9576028 0.7940252 0.7555758 +0.9720079 0.7940252 0.7555758 +0.9861357 0.7940252 0.7555758 +1 0.7940252 0.7555758 +0 0.8123661 0.7555758 +0.1939468 0.8123661 0.7555758 +0.2773041 0.8123661 0.7555758 +0.3384659 0.8123661 0.7555758 +0.3885728 0.8123661 0.7555758 +0.4317928 0.8123661 0.7555758 +0.470214 0.8123661 0.7555758 +0.5050551 0.8123661 0.7555758 +0.5370987 0.8123661 0.7555758 +0.5668815 0.8123661 0.7555758 +0.5947903 0.8123661 0.7555758 +0.6211144 0.8123661 0.7555758 +0.6460766 0.8123661 0.7555758 +0.6698526 0.8123661 0.7555758 +0.6925839 0.8123661 0.7555758 +0.7143866 0.8123661 0.7555758 +0.7353569 0.8123661 0.7555758 +0.7555758 0.8123661 0.7555758 +0.7751122 0.8123661 0.7555758 +0.7940252 0.8123661 0.7555758 +0.8123661 0.8123661 0.7555758 +0.8301795 0.8123661 0.7555758 +0.8475045 0.8123661 0.7555758 +0.8643761 0.8123661 0.7555758 +0.880825 0.8123661 0.7555758 +0.8968787 0.8123661 0.7555758 +0.9125621 0.8123661 0.7555758 +0.9278974 0.8123661 0.7555758 +0.9429048 0.8123661 0.7555758 +0.9576028 0.8123661 0.7555758 +0.9720079 0.8123661 0.7555758 +0.9861357 0.8123661 0.7555758 +1 0.8123661 0.7555758 +0 0.8301795 0.7555758 +0.1939468 0.8301795 0.7555758 +0.2773041 0.8301795 0.7555758 +0.3384659 0.8301795 0.7555758 +0.3885728 0.8301795 0.7555758 +0.4317928 0.8301795 0.7555758 +0.470214 0.8301795 0.7555758 +0.5050551 0.8301795 0.7555758 +0.5370987 0.8301795 0.7555758 +0.5668815 0.8301795 0.7555758 +0.5947903 0.8301795 0.7555758 +0.6211144 0.8301795 0.7555758 +0.6460766 0.8301795 0.7555758 +0.6698526 0.8301795 0.7555758 +0.6925839 0.8301795 0.7555758 +0.7143866 0.8301795 0.7555758 +0.7353569 0.8301795 0.7555758 +0.7555758 0.8301795 0.7555758 +0.7751122 0.8301795 0.7555758 +0.7940252 0.8301795 0.7555758 +0.8123661 0.8301795 0.7555758 +0.8301795 0.8301795 0.7555758 +0.8475045 0.8301795 0.7555758 +0.8643761 0.8301795 0.7555758 +0.880825 0.8301795 0.7555758 +0.8968787 0.8301795 0.7555758 +0.9125621 0.8301795 0.7555758 +0.9278974 0.8301795 0.7555758 +0.9429048 0.8301795 0.7555758 +0.9576028 0.8301795 0.7555758 +0.9720079 0.8301795 0.7555758 +0.9861357 0.8301795 0.7555758 +1 0.8301795 0.7555758 +0 0.8475045 0.7555758 +0.1939468 0.8475045 0.7555758 +0.2773041 0.8475045 0.7555758 +0.3384659 0.8475045 0.7555758 +0.3885728 0.8475045 0.7555758 +0.4317928 0.8475045 0.7555758 +0.470214 0.8475045 0.7555758 +0.5050551 0.8475045 0.7555758 +0.5370987 0.8475045 0.7555758 +0.5668815 0.8475045 0.7555758 +0.5947903 0.8475045 0.7555758 +0.6211144 0.8475045 0.7555758 +0.6460766 0.8475045 0.7555758 +0.6698526 0.8475045 0.7555758 +0.6925839 0.8475045 0.7555758 +0.7143866 0.8475045 0.7555758 +0.7353569 0.8475045 0.7555758 +0.7555758 0.8475045 0.7555758 +0.7751122 0.8475045 0.7555758 +0.7940252 0.8475045 0.7555758 +0.8123661 0.8475045 0.7555758 +0.8301795 0.8475045 0.7555758 +0.8475045 0.8475045 0.7555758 +0.8643761 0.8475045 0.7555758 +0.880825 0.8475045 0.7555758 +0.8968787 0.8475045 0.7555758 +0.9125621 0.8475045 0.7555758 +0.9278974 0.8475045 0.7555758 +0.9429048 0.8475045 0.7555758 +0.9576028 0.8475045 0.7555758 +0.9720079 0.8475045 0.7555758 +0.9861357 0.8475045 0.7555758 +1 0.8475045 0.7555758 +0 0.8643761 0.7555758 +0.1939468 0.8643761 0.7555758 +0.2773041 0.8643761 0.7555758 +0.3384659 0.8643761 0.7555758 +0.3885728 0.8643761 0.7555758 +0.4317928 0.8643761 0.7555758 +0.470214 0.8643761 0.7555758 +0.5050551 0.8643761 0.7555758 +0.5370987 0.8643761 0.7555758 +0.5668815 0.8643761 0.7555758 +0.5947903 0.8643761 0.7555758 +0.6211144 0.8643761 0.7555758 +0.6460766 0.8643761 0.7555758 +0.6698526 0.8643761 0.7555758 +0.6925839 0.8643761 0.7555758 +0.7143866 0.8643761 0.7555758 +0.7353569 0.8643761 0.7555758 +0.7555758 0.8643761 0.7555758 +0.7751122 0.8643761 0.7555758 +0.7940252 0.8643761 0.7555758 +0.8123661 0.8643761 0.7555758 +0.8301795 0.8643761 0.7555758 +0.8475045 0.8643761 0.7555758 +0.8643761 0.8643761 0.7555758 +0.880825 0.8643761 0.7555758 +0.8968787 0.8643761 0.7555758 +0.9125621 0.8643761 0.7555758 +0.9278974 0.8643761 0.7555758 +0.9429048 0.8643761 0.7555758 +0.9576028 0.8643761 0.7555758 +0.9720079 0.8643761 0.7555758 +0.9861357 0.8643761 0.7555758 +1 0.8643761 0.7555758 +0 0.880825 0.7555758 +0.1939468 0.880825 0.7555758 +0.2773041 0.880825 0.7555758 +0.3384659 0.880825 0.7555758 +0.3885728 0.880825 0.7555758 +0.4317928 0.880825 0.7555758 +0.470214 0.880825 0.7555758 +0.5050551 0.880825 0.7555758 +0.5370987 0.880825 0.7555758 +0.5668815 0.880825 0.7555758 +0.5947903 0.880825 0.7555758 +0.6211144 0.880825 0.7555758 +0.6460766 0.880825 0.7555758 +0.6698526 0.880825 0.7555758 +0.6925839 0.880825 0.7555758 +0.7143866 0.880825 0.7555758 +0.7353569 0.880825 0.7555758 +0.7555758 0.880825 0.7555758 +0.7751122 0.880825 0.7555758 +0.7940252 0.880825 0.7555758 +0.8123661 0.880825 0.7555758 +0.8301795 0.880825 0.7555758 +0.8475045 0.880825 0.7555758 +0.8643761 0.880825 0.7555758 +0.880825 0.880825 0.7555758 +0.8968787 0.880825 0.7555758 +0.9125621 0.880825 0.7555758 +0.9278974 0.880825 0.7555758 +0.9429048 0.880825 0.7555758 +0.9576028 0.880825 0.7555758 +0.9720079 0.880825 0.7555758 +0.9861357 0.880825 0.7555758 +1 0.880825 0.7555758 +0 0.8968787 0.7555758 +0.1939468 0.8968787 0.7555758 +0.2773041 0.8968787 0.7555758 +0.3384659 0.8968787 0.7555758 +0.3885728 0.8968787 0.7555758 +0.4317928 0.8968787 0.7555758 +0.470214 0.8968787 0.7555758 +0.5050551 0.8968787 0.7555758 +0.5370987 0.8968787 0.7555758 +0.5668815 0.8968787 0.7555758 +0.5947903 0.8968787 0.7555758 +0.6211144 0.8968787 0.7555758 +0.6460766 0.8968787 0.7555758 +0.6698526 0.8968787 0.7555758 +0.6925839 0.8968787 0.7555758 +0.7143866 0.8968787 0.7555758 +0.7353569 0.8968787 0.7555758 +0.7555758 0.8968787 0.7555758 +0.7751122 0.8968787 0.7555758 +0.7940252 0.8968787 0.7555758 +0.8123661 0.8968787 0.7555758 +0.8301795 0.8968787 0.7555758 +0.8475045 0.8968787 0.7555758 +0.8643761 0.8968787 0.7555758 +0.880825 0.8968787 0.7555758 +0.8968787 0.8968787 0.7555758 +0.9125621 0.8968787 0.7555758 +0.9278974 0.8968787 0.7555758 +0.9429048 0.8968787 0.7555758 +0.9576028 0.8968787 0.7555758 +0.9720079 0.8968787 0.7555758 +0.9861357 0.8968787 0.7555758 +1 0.8968787 0.7555758 +0 0.9125621 0.7555758 +0.1939468 0.9125621 0.7555758 +0.2773041 0.9125621 0.7555758 +0.3384659 0.9125621 0.7555758 +0.3885728 0.9125621 0.7555758 +0.4317928 0.9125621 0.7555758 +0.470214 0.9125621 0.7555758 +0.5050551 0.9125621 0.7555758 +0.5370987 0.9125621 0.7555758 +0.5668815 0.9125621 0.7555758 +0.5947903 0.9125621 0.7555758 +0.6211144 0.9125621 0.7555758 +0.6460766 0.9125621 0.7555758 +0.6698526 0.9125621 0.7555758 +0.6925839 0.9125621 0.7555758 +0.7143866 0.9125621 0.7555758 +0.7353569 0.9125621 0.7555758 +0.7555758 0.9125621 0.7555758 +0.7751122 0.9125621 0.7555758 +0.7940252 0.9125621 0.7555758 +0.8123661 0.9125621 0.7555758 +0.8301795 0.9125621 0.7555758 +0.8475045 0.9125621 0.7555758 +0.8643761 0.9125621 0.7555758 +0.880825 0.9125621 0.7555758 +0.8968787 0.9125621 0.7555758 +0.9125621 0.9125621 0.7555758 +0.9278974 0.9125621 0.7555758 +0.9429048 0.9125621 0.7555758 +0.9576028 0.9125621 0.7555758 +0.9720079 0.9125621 0.7555758 +0.9861357 0.9125621 0.7555758 +1 0.9125621 0.7555758 +0 0.9278974 0.7555758 +0.1939468 0.9278974 0.7555758 +0.2773041 0.9278974 0.7555758 +0.3384659 0.9278974 0.7555758 +0.3885728 0.9278974 0.7555758 +0.4317928 0.9278974 0.7555758 +0.470214 0.9278974 0.7555758 +0.5050551 0.9278974 0.7555758 +0.5370987 0.9278974 0.7555758 +0.5668815 0.9278974 0.7555758 +0.5947903 0.9278974 0.7555758 +0.6211144 0.9278974 0.7555758 +0.6460766 0.9278974 0.7555758 +0.6698526 0.9278974 0.7555758 +0.6925839 0.9278974 0.7555758 +0.7143866 0.9278974 0.7555758 +0.7353569 0.9278974 0.7555758 +0.7555758 0.9278974 0.7555758 +0.7751122 0.9278974 0.7555758 +0.7940252 0.9278974 0.7555758 +0.8123661 0.9278974 0.7555758 +0.8301795 0.9278974 0.7555758 +0.8475045 0.9278974 0.7555758 +0.8643761 0.9278974 0.7555758 +0.880825 0.9278974 0.7555758 +0.8968787 0.9278974 0.7555758 +0.9125621 0.9278974 0.7555758 +0.9278974 0.9278974 0.7555758 +0.9429048 0.9278974 0.7555758 +0.9576028 0.9278974 0.7555758 +0.9720079 0.9278974 0.7555758 +0.9861357 0.9278974 0.7555758 +1 0.9278974 0.7555758 +0 0.9429048 0.7555758 +0.1939468 0.9429048 0.7555758 +0.2773041 0.9429048 0.7555758 +0.3384659 0.9429048 0.7555758 +0.3885728 0.9429048 0.7555758 +0.4317928 0.9429048 0.7555758 +0.470214 0.9429048 0.7555758 +0.5050551 0.9429048 0.7555758 +0.5370987 0.9429048 0.7555758 +0.5668815 0.9429048 0.7555758 +0.5947903 0.9429048 0.7555758 +0.6211144 0.9429048 0.7555758 +0.6460766 0.9429048 0.7555758 +0.6698526 0.9429048 0.7555758 +0.6925839 0.9429048 0.7555758 +0.7143866 0.9429048 0.7555758 +0.7353569 0.9429048 0.7555758 +0.7555758 0.9429048 0.7555758 +0.7751122 0.9429048 0.7555758 +0.7940252 0.9429048 0.7555758 +0.8123661 0.9429048 0.7555758 +0.8301795 0.9429048 0.7555758 +0.8475045 0.9429048 0.7555758 +0.8643761 0.9429048 0.7555758 +0.880825 0.9429048 0.7555758 +0.8968787 0.9429048 0.7555758 +0.9125621 0.9429048 0.7555758 +0.9278974 0.9429048 0.7555758 +0.9429048 0.9429048 0.7555758 +0.9576028 0.9429048 0.7555758 +0.9720079 0.9429048 0.7555758 +0.9861357 0.9429048 0.7555758 +1 0.9429048 0.7555758 +0 0.9576028 0.7555758 +0.1939468 0.9576028 0.7555758 +0.2773041 0.9576028 0.7555758 +0.3384659 0.9576028 0.7555758 +0.3885728 0.9576028 0.7555758 +0.4317928 0.9576028 0.7555758 +0.470214 0.9576028 0.7555758 +0.5050551 0.9576028 0.7555758 +0.5370987 0.9576028 0.7555758 +0.5668815 0.9576028 0.7555758 +0.5947903 0.9576028 0.7555758 +0.6211144 0.9576028 0.7555758 +0.6460766 0.9576028 0.7555758 +0.6698526 0.9576028 0.7555758 +0.6925839 0.9576028 0.7555758 +0.7143866 0.9576028 0.7555758 +0.7353569 0.9576028 0.7555758 +0.7555758 0.9576028 0.7555758 +0.7751122 0.9576028 0.7555758 +0.7940252 0.9576028 0.7555758 +0.8123661 0.9576028 0.7555758 +0.8301795 0.9576028 0.7555758 +0.8475045 0.9576028 0.7555758 +0.8643761 0.9576028 0.7555758 +0.880825 0.9576028 0.7555758 +0.8968787 0.9576028 0.7555758 +0.9125621 0.9576028 0.7555758 +0.9278974 0.9576028 0.7555758 +0.9429048 0.9576028 0.7555758 +0.9576028 0.9576028 0.7555758 +0.9720079 0.9576028 0.7555758 +0.9861357 0.9576028 0.7555758 +1 0.9576028 0.7555758 +0 0.9720079 0.7555758 +0.1939468 0.9720079 0.7555758 +0.2773041 0.9720079 0.7555758 +0.3384659 0.9720079 0.7555758 +0.3885728 0.9720079 0.7555758 +0.4317928 0.9720079 0.7555758 +0.470214 0.9720079 0.7555758 +0.5050551 0.9720079 0.7555758 +0.5370987 0.9720079 0.7555758 +0.5668815 0.9720079 0.7555758 +0.5947903 0.9720079 0.7555758 +0.6211144 0.9720079 0.7555758 +0.6460766 0.9720079 0.7555758 +0.6698526 0.9720079 0.7555758 +0.6925839 0.9720079 0.7555758 +0.7143866 0.9720079 0.7555758 +0.7353569 0.9720079 0.7555758 +0.7555758 0.9720079 0.7555758 +0.7751122 0.9720079 0.7555758 +0.7940252 0.9720079 0.7555758 +0.8123661 0.9720079 0.7555758 +0.8301795 0.9720079 0.7555758 +0.8475045 0.9720079 0.7555758 +0.8643761 0.9720079 0.7555758 +0.880825 0.9720079 0.7555758 +0.8968787 0.9720079 0.7555758 +0.9125621 0.9720079 0.7555758 +0.9278974 0.9720079 0.7555758 +0.9429048 0.9720079 0.7555758 +0.9576028 0.9720079 0.7555758 +0.9720079 0.9720079 0.7555758 +0.9861357 0.9720079 0.7555758 +1 0.9720079 0.7555758 +0 0.9861357 0.7555758 +0.1939468 0.9861357 0.7555758 +0.2773041 0.9861357 0.7555758 +0.3384659 0.9861357 0.7555758 +0.3885728 0.9861357 0.7555758 +0.4317928 0.9861357 0.7555758 +0.470214 0.9861357 0.7555758 +0.5050551 0.9861357 0.7555758 +0.5370987 0.9861357 0.7555758 +0.5668815 0.9861357 0.7555758 +0.5947903 0.9861357 0.7555758 +0.6211144 0.9861357 0.7555758 +0.6460766 0.9861357 0.7555758 +0.6698526 0.9861357 0.7555758 +0.6925839 0.9861357 0.7555758 +0.7143866 0.9861357 0.7555758 +0.7353569 0.9861357 0.7555758 +0.7555758 0.9861357 0.7555758 +0.7751122 0.9861357 0.7555758 +0.7940252 0.9861357 0.7555758 +0.8123661 0.9861357 0.7555758 +0.8301795 0.9861357 0.7555758 +0.8475045 0.9861357 0.7555758 +0.8643761 0.9861357 0.7555758 +0.880825 0.9861357 0.7555758 +0.8968787 0.9861357 0.7555758 +0.9125621 0.9861357 0.7555758 +0.9278974 0.9861357 0.7555758 +0.9429048 0.9861357 0.7555758 +0.9576028 0.9861357 0.7555758 +0.9720079 0.9861357 0.7555758 +0.9861357 0.9861357 0.7555758 +1 0.9861357 0.7555758 +0 1 0.7555758 +0.1939468 1 0.7555758 +0.2773041 1 0.7555758 +0.3384659 1 0.7555758 +0.3885728 1 0.7555758 +0.4317928 1 0.7555758 +0.470214 1 0.7555758 +0.5050551 1 0.7555758 +0.5370987 1 0.7555758 +0.5668815 1 0.7555758 +0.5947903 1 0.7555758 +0.6211144 1 0.7555758 +0.6460766 1 0.7555758 +0.6698526 1 0.7555758 +0.6925839 1 0.7555758 +0.7143866 1 0.7555758 +0.7353569 1 0.7555758 +0.7555758 1 0.7555758 +0.7751122 1 0.7555758 +0.7940252 1 0.7555758 +0.8123661 1 0.7555758 +0.8301795 1 0.7555758 +0.8475045 1 0.7555758 +0.8643761 1 0.7555758 +0.880825 1 0.7555758 +0.8968787 1 0.7555758 +0.9125621 1 0.7555758 +0.9278974 1 0.7555758 +0.9429048 1 0.7555758 +0.9576028 1 0.7555758 +0.9720079 1 0.7555758 +0.9861357 1 0.7555758 +1 1 0.7555758 +0 0 0.7751122 +0.1939468 0 0.7751122 +0.2773041 0 0.7751122 +0.3384659 0 0.7751122 +0.3885728 0 0.7751122 +0.4317928 0 0.7751122 +0.470214 0 0.7751122 +0.5050551 0 0.7751122 +0.5370987 0 0.7751122 +0.5668815 0 0.7751122 +0.5947903 0 0.7751122 +0.6211144 0 0.7751122 +0.6460766 0 0.7751122 +0.6698526 0 0.7751122 +0.6925839 0 0.7751122 +0.7143866 0 0.7751122 +0.7353569 0 0.7751122 +0.7555758 0 0.7751122 +0.7751122 0 0.7751122 +0.7940252 0 0.7751122 +0.8123661 0 0.7751122 +0.8301795 0 0.7751122 +0.8475045 0 0.7751122 +0.8643761 0 0.7751122 +0.880825 0 0.7751122 +0.8968787 0 0.7751122 +0.9125621 0 0.7751122 +0.9278974 0 0.7751122 +0.9429048 0 0.7751122 +0.9576028 0 0.7751122 +0.9720079 0 0.7751122 +0.9861357 0 0.7751122 +1 0 0.7751122 +0 0.1939468 0.7751122 +0.1939468 0.1939468 0.7751122 +0.2773041 0.1939468 0.7751122 +0.3384659 0.1939468 0.7751122 +0.3885728 0.1939468 0.7751122 +0.4317928 0.1939468 0.7751122 +0.470214 0.1939468 0.7751122 +0.5050551 0.1939468 0.7751122 +0.5370987 0.1939468 0.7751122 +0.5668815 0.1939468 0.7751122 +0.5947903 0.1939468 0.7751122 +0.6211144 0.1939468 0.7751122 +0.6460766 0.1939468 0.7751122 +0.6698526 0.1939468 0.7751122 +0.6925839 0.1939468 0.7751122 +0.7143866 0.1939468 0.7751122 +0.7353569 0.1939468 0.7751122 +0.7555758 0.1939468 0.7751122 +0.7751122 0.1939468 0.7751122 +0.7940252 0.1939468 0.7751122 +0.8123661 0.1939468 0.7751122 +0.8301795 0.1939468 0.7751122 +0.8475045 0.1939468 0.7751122 +0.8643761 0.1939468 0.7751122 +0.880825 0.1939468 0.7751122 +0.8968787 0.1939468 0.7751122 +0.9125621 0.1939468 0.7751122 +0.9278974 0.1939468 0.7751122 +0.9429048 0.1939468 0.7751122 +0.9576028 0.1939468 0.7751122 +0.9720079 0.1939468 0.7751122 +0.9861357 0.1939468 0.7751122 +1 0.1939468 0.7751122 +0 0.2773041 0.7751122 +0.1939468 0.2773041 0.7751122 +0.2773041 0.2773041 0.7751122 +0.3384659 0.2773041 0.7751122 +0.3885728 0.2773041 0.7751122 +0.4317928 0.2773041 0.7751122 +0.470214 0.2773041 0.7751122 +0.5050551 0.2773041 0.7751122 +0.5370987 0.2773041 0.7751122 +0.5668815 0.2773041 0.7751122 +0.5947903 0.2773041 0.7751122 +0.6211144 0.2773041 0.7751122 +0.6460766 0.2773041 0.7751122 +0.6698526 0.2773041 0.7751122 +0.6925839 0.2773041 0.7751122 +0.7143866 0.2773041 0.7751122 +0.7353569 0.2773041 0.7751122 +0.7555758 0.2773041 0.7751122 +0.7751122 0.2773041 0.7751122 +0.7940252 0.2773041 0.7751122 +0.8123661 0.2773041 0.7751122 +0.8301795 0.2773041 0.7751122 +0.8475045 0.2773041 0.7751122 +0.8643761 0.2773041 0.7751122 +0.880825 0.2773041 0.7751122 +0.8968787 0.2773041 0.7751122 +0.9125621 0.2773041 0.7751122 +0.9278974 0.2773041 0.7751122 +0.9429048 0.2773041 0.7751122 +0.9576028 0.2773041 0.7751122 +0.9720079 0.2773041 0.7751122 +0.9861357 0.2773041 0.7751122 +1 0.2773041 0.7751122 +0 0.3384659 0.7751122 +0.1939468 0.3384659 0.7751122 +0.2773041 0.3384659 0.7751122 +0.3384659 0.3384659 0.7751122 +0.3885728 0.3384659 0.7751122 +0.4317928 0.3384659 0.7751122 +0.470214 0.3384659 0.7751122 +0.5050551 0.3384659 0.7751122 +0.5370987 0.3384659 0.7751122 +0.5668815 0.3384659 0.7751122 +0.5947903 0.3384659 0.7751122 +0.6211144 0.3384659 0.7751122 +0.6460766 0.3384659 0.7751122 +0.6698526 0.3384659 0.7751122 +0.6925839 0.3384659 0.7751122 +0.7143866 0.3384659 0.7751122 +0.7353569 0.3384659 0.7751122 +0.7555758 0.3384659 0.7751122 +0.7751122 0.3384659 0.7751122 +0.7940252 0.3384659 0.7751122 +0.8123661 0.3384659 0.7751122 +0.8301795 0.3384659 0.7751122 +0.8475045 0.3384659 0.7751122 +0.8643761 0.3384659 0.7751122 +0.880825 0.3384659 0.7751122 +0.8968787 0.3384659 0.7751122 +0.9125621 0.3384659 0.7751122 +0.9278974 0.3384659 0.7751122 +0.9429048 0.3384659 0.7751122 +0.9576028 0.3384659 0.7751122 +0.9720079 0.3384659 0.7751122 +0.9861357 0.3384659 0.7751122 +1 0.3384659 0.7751122 +0 0.3885728 0.7751122 +0.1939468 0.3885728 0.7751122 +0.2773041 0.3885728 0.7751122 +0.3384659 0.3885728 0.7751122 +0.3885728 0.3885728 0.7751122 +0.4317928 0.3885728 0.7751122 +0.470214 0.3885728 0.7751122 +0.5050551 0.3885728 0.7751122 +0.5370987 0.3885728 0.7751122 +0.5668815 0.3885728 0.7751122 +0.5947903 0.3885728 0.7751122 +0.6211144 0.3885728 0.7751122 +0.6460766 0.3885728 0.7751122 +0.6698526 0.3885728 0.7751122 +0.6925839 0.3885728 0.7751122 +0.7143866 0.3885728 0.7751122 +0.7353569 0.3885728 0.7751122 +0.7555758 0.3885728 0.7751122 +0.7751122 0.3885728 0.7751122 +0.7940252 0.3885728 0.7751122 +0.8123661 0.3885728 0.7751122 +0.8301795 0.3885728 0.7751122 +0.8475045 0.3885728 0.7751122 +0.8643761 0.3885728 0.7751122 +0.880825 0.3885728 0.7751122 +0.8968787 0.3885728 0.7751122 +0.9125621 0.3885728 0.7751122 +0.9278974 0.3885728 0.7751122 +0.9429048 0.3885728 0.7751122 +0.9576028 0.3885728 0.7751122 +0.9720079 0.3885728 0.7751122 +0.9861357 0.3885728 0.7751122 +1 0.3885728 0.7751122 +0 0.4317928 0.7751122 +0.1939468 0.4317928 0.7751122 +0.2773041 0.4317928 0.7751122 +0.3384659 0.4317928 0.7751122 +0.3885728 0.4317928 0.7751122 +0.4317928 0.4317928 0.7751122 +0.470214 0.4317928 0.7751122 +0.5050551 0.4317928 0.7751122 +0.5370987 0.4317928 0.7751122 +0.5668815 0.4317928 0.7751122 +0.5947903 0.4317928 0.7751122 +0.6211144 0.4317928 0.7751122 +0.6460766 0.4317928 0.7751122 +0.6698526 0.4317928 0.7751122 +0.6925839 0.4317928 0.7751122 +0.7143866 0.4317928 0.7751122 +0.7353569 0.4317928 0.7751122 +0.7555758 0.4317928 0.7751122 +0.7751122 0.4317928 0.7751122 +0.7940252 0.4317928 0.7751122 +0.8123661 0.4317928 0.7751122 +0.8301795 0.4317928 0.7751122 +0.8475045 0.4317928 0.7751122 +0.8643761 0.4317928 0.7751122 +0.880825 0.4317928 0.7751122 +0.8968787 0.4317928 0.7751122 +0.9125621 0.4317928 0.7751122 +0.9278974 0.4317928 0.7751122 +0.9429048 0.4317928 0.7751122 +0.9576028 0.4317928 0.7751122 +0.9720079 0.4317928 0.7751122 +0.9861357 0.4317928 0.7751122 +1 0.4317928 0.7751122 +0 0.470214 0.7751122 +0.1939468 0.470214 0.7751122 +0.2773041 0.470214 0.7751122 +0.3384659 0.470214 0.7751122 +0.3885728 0.470214 0.7751122 +0.4317928 0.470214 0.7751122 +0.470214 0.470214 0.7751122 +0.5050551 0.470214 0.7751122 +0.5370987 0.470214 0.7751122 +0.5668815 0.470214 0.7751122 +0.5947903 0.470214 0.7751122 +0.6211144 0.470214 0.7751122 +0.6460766 0.470214 0.7751122 +0.6698526 0.470214 0.7751122 +0.6925839 0.470214 0.7751122 +0.7143866 0.470214 0.7751122 +0.7353569 0.470214 0.7751122 +0.7555758 0.470214 0.7751122 +0.7751122 0.470214 0.7751122 +0.7940252 0.470214 0.7751122 +0.8123661 0.470214 0.7751122 +0.8301795 0.470214 0.7751122 +0.8475045 0.470214 0.7751122 +0.8643761 0.470214 0.7751122 +0.880825 0.470214 0.7751122 +0.8968787 0.470214 0.7751122 +0.9125621 0.470214 0.7751122 +0.9278974 0.470214 0.7751122 +0.9429048 0.470214 0.7751122 +0.9576028 0.470214 0.7751122 +0.9720079 0.470214 0.7751122 +0.9861357 0.470214 0.7751122 +1 0.470214 0.7751122 +0 0.5050551 0.7751122 +0.1939468 0.5050551 0.7751122 +0.2773041 0.5050551 0.7751122 +0.3384659 0.5050551 0.7751122 +0.3885728 0.5050551 0.7751122 +0.4317928 0.5050551 0.7751122 +0.470214 0.5050551 0.7751122 +0.5050551 0.5050551 0.7751122 +0.5370987 0.5050551 0.7751122 +0.5668815 0.5050551 0.7751122 +0.5947903 0.5050551 0.7751122 +0.6211144 0.5050551 0.7751122 +0.6460766 0.5050551 0.7751122 +0.6698526 0.5050551 0.7751122 +0.6925839 0.5050551 0.7751122 +0.7143866 0.5050551 0.7751122 +0.7353569 0.5050551 0.7751122 +0.7555758 0.5050551 0.7751122 +0.7751122 0.5050551 0.7751122 +0.7940252 0.5050551 0.7751122 +0.8123661 0.5050551 0.7751122 +0.8301795 0.5050551 0.7751122 +0.8475045 0.5050551 0.7751122 +0.8643761 0.5050551 0.7751122 +0.880825 0.5050551 0.7751122 +0.8968787 0.5050551 0.7751122 +0.9125621 0.5050551 0.7751122 +0.9278974 0.5050551 0.7751122 +0.9429048 0.5050551 0.7751122 +0.9576028 0.5050551 0.7751122 +0.9720079 0.5050551 0.7751122 +0.9861357 0.5050551 0.7751122 +1 0.5050551 0.7751122 +0 0.5370987 0.7751122 +0.1939468 0.5370987 0.7751122 +0.2773041 0.5370987 0.7751122 +0.3384659 0.5370987 0.7751122 +0.3885728 0.5370987 0.7751122 +0.4317928 0.5370987 0.7751122 +0.470214 0.5370987 0.7751122 +0.5050551 0.5370987 0.7751122 +0.5370987 0.5370987 0.7751122 +0.5668815 0.5370987 0.7751122 +0.5947903 0.5370987 0.7751122 +0.6211144 0.5370987 0.7751122 +0.6460766 0.5370987 0.7751122 +0.6698526 0.5370987 0.7751122 +0.6925839 0.5370987 0.7751122 +0.7143866 0.5370987 0.7751122 +0.7353569 0.5370987 0.7751122 +0.7555758 0.5370987 0.7751122 +0.7751122 0.5370987 0.7751122 +0.7940252 0.5370987 0.7751122 +0.8123661 0.5370987 0.7751122 +0.8301795 0.5370987 0.7751122 +0.8475045 0.5370987 0.7751122 +0.8643761 0.5370987 0.7751122 +0.880825 0.5370987 0.7751122 +0.8968787 0.5370987 0.7751122 +0.9125621 0.5370987 0.7751122 +0.9278974 0.5370987 0.7751122 +0.9429048 0.5370987 0.7751122 +0.9576028 0.5370987 0.7751122 +0.9720079 0.5370987 0.7751122 +0.9861357 0.5370987 0.7751122 +1 0.5370987 0.7751122 +0 0.5668815 0.7751122 +0.1939468 0.5668815 0.7751122 +0.2773041 0.5668815 0.7751122 +0.3384659 0.5668815 0.7751122 +0.3885728 0.5668815 0.7751122 +0.4317928 0.5668815 0.7751122 +0.470214 0.5668815 0.7751122 +0.5050551 0.5668815 0.7751122 +0.5370987 0.5668815 0.7751122 +0.5668815 0.5668815 0.7751122 +0.5947903 0.5668815 0.7751122 +0.6211144 0.5668815 0.7751122 +0.6460766 0.5668815 0.7751122 +0.6698526 0.5668815 0.7751122 +0.6925839 0.5668815 0.7751122 +0.7143866 0.5668815 0.7751122 +0.7353569 0.5668815 0.7751122 +0.7555758 0.5668815 0.7751122 +0.7751122 0.5668815 0.7751122 +0.7940252 0.5668815 0.7751122 +0.8123661 0.5668815 0.7751122 +0.8301795 0.5668815 0.7751122 +0.8475045 0.5668815 0.7751122 +0.8643761 0.5668815 0.7751122 +0.880825 0.5668815 0.7751122 +0.8968787 0.5668815 0.7751122 +0.9125621 0.5668815 0.7751122 +0.9278974 0.5668815 0.7751122 +0.9429048 0.5668815 0.7751122 +0.9576028 0.5668815 0.7751122 +0.9720079 0.5668815 0.7751122 +0.9861357 0.5668815 0.7751122 +1 0.5668815 0.7751122 +0 0.5947903 0.7751122 +0.1939468 0.5947903 0.7751122 +0.2773041 0.5947903 0.7751122 +0.3384659 0.5947903 0.7751122 +0.3885728 0.5947903 0.7751122 +0.4317928 0.5947903 0.7751122 +0.470214 0.5947903 0.7751122 +0.5050551 0.5947903 0.7751122 +0.5370987 0.5947903 0.7751122 +0.5668815 0.5947903 0.7751122 +0.5947903 0.5947903 0.7751122 +0.6211144 0.5947903 0.7751122 +0.6460766 0.5947903 0.7751122 +0.6698526 0.5947903 0.7751122 +0.6925839 0.5947903 0.7751122 +0.7143866 0.5947903 0.7751122 +0.7353569 0.5947903 0.7751122 +0.7555758 0.5947903 0.7751122 +0.7751122 0.5947903 0.7751122 +0.7940252 0.5947903 0.7751122 +0.8123661 0.5947903 0.7751122 +0.8301795 0.5947903 0.7751122 +0.8475045 0.5947903 0.7751122 +0.8643761 0.5947903 0.7751122 +0.880825 0.5947903 0.7751122 +0.8968787 0.5947903 0.7751122 +0.9125621 0.5947903 0.7751122 +0.9278974 0.5947903 0.7751122 +0.9429048 0.5947903 0.7751122 +0.9576028 0.5947903 0.7751122 +0.9720079 0.5947903 0.7751122 +0.9861357 0.5947903 0.7751122 +1 0.5947903 0.7751122 +0 0.6211144 0.7751122 +0.1939468 0.6211144 0.7751122 +0.2773041 0.6211144 0.7751122 +0.3384659 0.6211144 0.7751122 +0.3885728 0.6211144 0.7751122 +0.4317928 0.6211144 0.7751122 +0.470214 0.6211144 0.7751122 +0.5050551 0.6211144 0.7751122 +0.5370987 0.6211144 0.7751122 +0.5668815 0.6211144 0.7751122 +0.5947903 0.6211144 0.7751122 +0.6211144 0.6211144 0.7751122 +0.6460766 0.6211144 0.7751122 +0.6698526 0.6211144 0.7751122 +0.6925839 0.6211144 0.7751122 +0.7143866 0.6211144 0.7751122 +0.7353569 0.6211144 0.7751122 +0.7555758 0.6211144 0.7751122 +0.7751122 0.6211144 0.7751122 +0.7940252 0.6211144 0.7751122 +0.8123661 0.6211144 0.7751122 +0.8301795 0.6211144 0.7751122 +0.8475045 0.6211144 0.7751122 +0.8643761 0.6211144 0.7751122 +0.880825 0.6211144 0.7751122 +0.8968787 0.6211144 0.7751122 +0.9125621 0.6211144 0.7751122 +0.9278974 0.6211144 0.7751122 +0.9429048 0.6211144 0.7751122 +0.9576028 0.6211144 0.7751122 +0.9720079 0.6211144 0.7751122 +0.9861357 0.6211144 0.7751122 +1 0.6211144 0.7751122 +0 0.6460766 0.7751122 +0.1939468 0.6460766 0.7751122 +0.2773041 0.6460766 0.7751122 +0.3384659 0.6460766 0.7751122 +0.3885728 0.6460766 0.7751122 +0.4317928 0.6460766 0.7751122 +0.470214 0.6460766 0.7751122 +0.5050551 0.6460766 0.7751122 +0.5370987 0.6460766 0.7751122 +0.5668815 0.6460766 0.7751122 +0.5947903 0.6460766 0.7751122 +0.6211144 0.6460766 0.7751122 +0.6460766 0.6460766 0.7751122 +0.6698526 0.6460766 0.7751122 +0.6925839 0.6460766 0.7751122 +0.7143866 0.6460766 0.7751122 +0.7353569 0.6460766 0.7751122 +0.7555758 0.6460766 0.7751122 +0.7751122 0.6460766 0.7751122 +0.7940252 0.6460766 0.7751122 +0.8123661 0.6460766 0.7751122 +0.8301795 0.6460766 0.7751122 +0.8475045 0.6460766 0.7751122 +0.8643761 0.6460766 0.7751122 +0.880825 0.6460766 0.7751122 +0.8968787 0.6460766 0.7751122 +0.9125621 0.6460766 0.7751122 +0.9278974 0.6460766 0.7751122 +0.9429048 0.6460766 0.7751122 +0.9576028 0.6460766 0.7751122 +0.9720079 0.6460766 0.7751122 +0.9861357 0.6460766 0.7751122 +1 0.6460766 0.7751122 +0 0.6698526 0.7751122 +0.1939468 0.6698526 0.7751122 +0.2773041 0.6698526 0.7751122 +0.3384659 0.6698526 0.7751122 +0.3885728 0.6698526 0.7751122 +0.4317928 0.6698526 0.7751122 +0.470214 0.6698526 0.7751122 +0.5050551 0.6698526 0.7751122 +0.5370987 0.6698526 0.7751122 +0.5668815 0.6698526 0.7751122 +0.5947903 0.6698526 0.7751122 +0.6211144 0.6698526 0.7751122 +0.6460766 0.6698526 0.7751122 +0.6698526 0.6698526 0.7751122 +0.6925839 0.6698526 0.7751122 +0.7143866 0.6698526 0.7751122 +0.7353569 0.6698526 0.7751122 +0.7555758 0.6698526 0.7751122 +0.7751122 0.6698526 0.7751122 +0.7940252 0.6698526 0.7751122 +0.8123661 0.6698526 0.7751122 +0.8301795 0.6698526 0.7751122 +0.8475045 0.6698526 0.7751122 +0.8643761 0.6698526 0.7751122 +0.880825 0.6698526 0.7751122 +0.8968787 0.6698526 0.7751122 +0.9125621 0.6698526 0.7751122 +0.9278974 0.6698526 0.7751122 +0.9429048 0.6698526 0.7751122 +0.9576028 0.6698526 0.7751122 +0.9720079 0.6698526 0.7751122 +0.9861357 0.6698526 0.7751122 +1 0.6698526 0.7751122 +0 0.6925839 0.7751122 +0.1939468 0.6925839 0.7751122 +0.2773041 0.6925839 0.7751122 +0.3384659 0.6925839 0.7751122 +0.3885728 0.6925839 0.7751122 +0.4317928 0.6925839 0.7751122 +0.470214 0.6925839 0.7751122 +0.5050551 0.6925839 0.7751122 +0.5370987 0.6925839 0.7751122 +0.5668815 0.6925839 0.7751122 +0.5947903 0.6925839 0.7751122 +0.6211144 0.6925839 0.7751122 +0.6460766 0.6925839 0.7751122 +0.6698526 0.6925839 0.7751122 +0.6925839 0.6925839 0.7751122 +0.7143866 0.6925839 0.7751122 +0.7353569 0.6925839 0.7751122 +0.7555758 0.6925839 0.7751122 +0.7751122 0.6925839 0.7751122 +0.7940252 0.6925839 0.7751122 +0.8123661 0.6925839 0.7751122 +0.8301795 0.6925839 0.7751122 +0.8475045 0.6925839 0.7751122 +0.8643761 0.6925839 0.7751122 +0.880825 0.6925839 0.7751122 +0.8968787 0.6925839 0.7751122 +0.9125621 0.6925839 0.7751122 +0.9278974 0.6925839 0.7751122 +0.9429048 0.6925839 0.7751122 +0.9576028 0.6925839 0.7751122 +0.9720079 0.6925839 0.7751122 +0.9861357 0.6925839 0.7751122 +1 0.6925839 0.7751122 +0 0.7143866 0.7751122 +0.1939468 0.7143866 0.7751122 +0.2773041 0.7143866 0.7751122 +0.3384659 0.7143866 0.7751122 +0.3885728 0.7143866 0.7751122 +0.4317928 0.7143866 0.7751122 +0.470214 0.7143866 0.7751122 +0.5050551 0.7143866 0.7751122 +0.5370987 0.7143866 0.7751122 +0.5668815 0.7143866 0.7751122 +0.5947903 0.7143866 0.7751122 +0.6211144 0.7143866 0.7751122 +0.6460766 0.7143866 0.7751122 +0.6698526 0.7143866 0.7751122 +0.6925839 0.7143866 0.7751122 +0.7143866 0.7143866 0.7751122 +0.7353569 0.7143866 0.7751122 +0.7555758 0.7143866 0.7751122 +0.7751122 0.7143866 0.7751122 +0.7940252 0.7143866 0.7751122 +0.8123661 0.7143866 0.7751122 +0.8301795 0.7143866 0.7751122 +0.8475045 0.7143866 0.7751122 +0.8643761 0.7143866 0.7751122 +0.880825 0.7143866 0.7751122 +0.8968787 0.7143866 0.7751122 +0.9125621 0.7143866 0.7751122 +0.9278974 0.7143866 0.7751122 +0.9429048 0.7143866 0.7751122 +0.9576028 0.7143866 0.7751122 +0.9720079 0.7143866 0.7751122 +0.9861357 0.7143866 0.7751122 +1 0.7143866 0.7751122 +0 0.7353569 0.7751122 +0.1939468 0.7353569 0.7751122 +0.2773041 0.7353569 0.7751122 +0.3384659 0.7353569 0.7751122 +0.3885728 0.7353569 0.7751122 +0.4317928 0.7353569 0.7751122 +0.470214 0.7353569 0.7751122 +0.5050551 0.7353569 0.7751122 +0.5370987 0.7353569 0.7751122 +0.5668815 0.7353569 0.7751122 +0.5947903 0.7353569 0.7751122 +0.6211144 0.7353569 0.7751122 +0.6460766 0.7353569 0.7751122 +0.6698526 0.7353569 0.7751122 +0.6925839 0.7353569 0.7751122 +0.7143866 0.7353569 0.7751122 +0.7353569 0.7353569 0.7751122 +0.7555758 0.7353569 0.7751122 +0.7751122 0.7353569 0.7751122 +0.7940252 0.7353569 0.7751122 +0.8123661 0.7353569 0.7751122 +0.8301795 0.7353569 0.7751122 +0.8475045 0.7353569 0.7751122 +0.8643761 0.7353569 0.7751122 +0.880825 0.7353569 0.7751122 +0.8968787 0.7353569 0.7751122 +0.9125621 0.7353569 0.7751122 +0.9278974 0.7353569 0.7751122 +0.9429048 0.7353569 0.7751122 +0.9576028 0.7353569 0.7751122 +0.9720079 0.7353569 0.7751122 +0.9861357 0.7353569 0.7751122 +1 0.7353569 0.7751122 +0 0.7555758 0.7751122 +0.1939468 0.7555758 0.7751122 +0.2773041 0.7555758 0.7751122 +0.3384659 0.7555758 0.7751122 +0.3885728 0.7555758 0.7751122 +0.4317928 0.7555758 0.7751122 +0.470214 0.7555758 0.7751122 +0.5050551 0.7555758 0.7751122 +0.5370987 0.7555758 0.7751122 +0.5668815 0.7555758 0.7751122 +0.5947903 0.7555758 0.7751122 +0.6211144 0.7555758 0.7751122 +0.6460766 0.7555758 0.7751122 +0.6698526 0.7555758 0.7751122 +0.6925839 0.7555758 0.7751122 +0.7143866 0.7555758 0.7751122 +0.7353569 0.7555758 0.7751122 +0.7555758 0.7555758 0.7751122 +0.7751122 0.7555758 0.7751122 +0.7940252 0.7555758 0.7751122 +0.8123661 0.7555758 0.7751122 +0.8301795 0.7555758 0.7751122 +0.8475045 0.7555758 0.7751122 +0.8643761 0.7555758 0.7751122 +0.880825 0.7555758 0.7751122 +0.8968787 0.7555758 0.7751122 +0.9125621 0.7555758 0.7751122 +0.9278974 0.7555758 0.7751122 +0.9429048 0.7555758 0.7751122 +0.9576028 0.7555758 0.7751122 +0.9720079 0.7555758 0.7751122 +0.9861357 0.7555758 0.7751122 +1 0.7555758 0.7751122 +0 0.7751122 0.7751122 +0.1939468 0.7751122 0.7751122 +0.2773041 0.7751122 0.7751122 +0.3384659 0.7751122 0.7751122 +0.3885728 0.7751122 0.7751122 +0.4317928 0.7751122 0.7751122 +0.470214 0.7751122 0.7751122 +0.5050551 0.7751122 0.7751122 +0.5370987 0.7751122 0.7751122 +0.5668815 0.7751122 0.7751122 +0.5947903 0.7751122 0.7751122 +0.6211144 0.7751122 0.7751122 +0.6460766 0.7751122 0.7751122 +0.6698526 0.7751122 0.7751122 +0.6925839 0.7751122 0.7751122 +0.7143866 0.7751122 0.7751122 +0.7353569 0.7751122 0.7751122 +0.7555758 0.7751122 0.7751122 +0.7751122 0.7751122 0.7751122 +0.7940252 0.7751122 0.7751122 +0.8123661 0.7751122 0.7751122 +0.8301795 0.7751122 0.7751122 +0.8475045 0.7751122 0.7751122 +0.8643761 0.7751122 0.7751122 +0.880825 0.7751122 0.7751122 +0.8968787 0.7751122 0.7751122 +0.9125621 0.7751122 0.7751122 +0.9278974 0.7751122 0.7751122 +0.9429048 0.7751122 0.7751122 +0.9576028 0.7751122 0.7751122 +0.9720079 0.7751122 0.7751122 +0.9861357 0.7751122 0.7751122 +1 0.7751122 0.7751122 +0 0.7940252 0.7751122 +0.1939468 0.7940252 0.7751122 +0.2773041 0.7940252 0.7751122 +0.3384659 0.7940252 0.7751122 +0.3885728 0.7940252 0.7751122 +0.4317928 0.7940252 0.7751122 +0.470214 0.7940252 0.7751122 +0.5050551 0.7940252 0.7751122 +0.5370987 0.7940252 0.7751122 +0.5668815 0.7940252 0.7751122 +0.5947903 0.7940252 0.7751122 +0.6211144 0.7940252 0.7751122 +0.6460766 0.7940252 0.7751122 +0.6698526 0.7940252 0.7751122 +0.6925839 0.7940252 0.7751122 +0.7143866 0.7940252 0.7751122 +0.7353569 0.7940252 0.7751122 +0.7555758 0.7940252 0.7751122 +0.7751122 0.7940252 0.7751122 +0.7940252 0.7940252 0.7751122 +0.8123661 0.7940252 0.7751122 +0.8301795 0.7940252 0.7751122 +0.8475045 0.7940252 0.7751122 +0.8643761 0.7940252 0.7751122 +0.880825 0.7940252 0.7751122 +0.8968787 0.7940252 0.7751122 +0.9125621 0.7940252 0.7751122 +0.9278974 0.7940252 0.7751122 +0.9429048 0.7940252 0.7751122 +0.9576028 0.7940252 0.7751122 +0.9720079 0.7940252 0.7751122 +0.9861357 0.7940252 0.7751122 +1 0.7940252 0.7751122 +0 0.8123661 0.7751122 +0.1939468 0.8123661 0.7751122 +0.2773041 0.8123661 0.7751122 +0.3384659 0.8123661 0.7751122 +0.3885728 0.8123661 0.7751122 +0.4317928 0.8123661 0.7751122 +0.470214 0.8123661 0.7751122 +0.5050551 0.8123661 0.7751122 +0.5370987 0.8123661 0.7751122 +0.5668815 0.8123661 0.7751122 +0.5947903 0.8123661 0.7751122 +0.6211144 0.8123661 0.7751122 +0.6460766 0.8123661 0.7751122 +0.6698526 0.8123661 0.7751122 +0.6925839 0.8123661 0.7751122 +0.7143866 0.8123661 0.7751122 +0.7353569 0.8123661 0.7751122 +0.7555758 0.8123661 0.7751122 +0.7751122 0.8123661 0.7751122 +0.7940252 0.8123661 0.7751122 +0.8123661 0.8123661 0.7751122 +0.8301795 0.8123661 0.7751122 +0.8475045 0.8123661 0.7751122 +0.8643761 0.8123661 0.7751122 +0.880825 0.8123661 0.7751122 +0.8968787 0.8123661 0.7751122 +0.9125621 0.8123661 0.7751122 +0.9278974 0.8123661 0.7751122 +0.9429048 0.8123661 0.7751122 +0.9576028 0.8123661 0.7751122 +0.9720079 0.8123661 0.7751122 +0.9861357 0.8123661 0.7751122 +1 0.8123661 0.7751122 +0 0.8301795 0.7751122 +0.1939468 0.8301795 0.7751122 +0.2773041 0.8301795 0.7751122 +0.3384659 0.8301795 0.7751122 +0.3885728 0.8301795 0.7751122 +0.4317928 0.8301795 0.7751122 +0.470214 0.8301795 0.7751122 +0.5050551 0.8301795 0.7751122 +0.5370987 0.8301795 0.7751122 +0.5668815 0.8301795 0.7751122 +0.5947903 0.8301795 0.7751122 +0.6211144 0.8301795 0.7751122 +0.6460766 0.8301795 0.7751122 +0.6698526 0.8301795 0.7751122 +0.6925839 0.8301795 0.7751122 +0.7143866 0.8301795 0.7751122 +0.7353569 0.8301795 0.7751122 +0.7555758 0.8301795 0.7751122 +0.7751122 0.8301795 0.7751122 +0.7940252 0.8301795 0.7751122 +0.8123661 0.8301795 0.7751122 +0.8301795 0.8301795 0.7751122 +0.8475045 0.8301795 0.7751122 +0.8643761 0.8301795 0.7751122 +0.880825 0.8301795 0.7751122 +0.8968787 0.8301795 0.7751122 +0.9125621 0.8301795 0.7751122 +0.9278974 0.8301795 0.7751122 +0.9429048 0.8301795 0.7751122 +0.9576028 0.8301795 0.7751122 +0.9720079 0.8301795 0.7751122 +0.9861357 0.8301795 0.7751122 +1 0.8301795 0.7751122 +0 0.8475045 0.7751122 +0.1939468 0.8475045 0.7751122 +0.2773041 0.8475045 0.7751122 +0.3384659 0.8475045 0.7751122 +0.3885728 0.8475045 0.7751122 +0.4317928 0.8475045 0.7751122 +0.470214 0.8475045 0.7751122 +0.5050551 0.8475045 0.7751122 +0.5370987 0.8475045 0.7751122 +0.5668815 0.8475045 0.7751122 +0.5947903 0.8475045 0.7751122 +0.6211144 0.8475045 0.7751122 +0.6460766 0.8475045 0.7751122 +0.6698526 0.8475045 0.7751122 +0.6925839 0.8475045 0.7751122 +0.7143866 0.8475045 0.7751122 +0.7353569 0.8475045 0.7751122 +0.7555758 0.8475045 0.7751122 +0.7751122 0.8475045 0.7751122 +0.7940252 0.8475045 0.7751122 +0.8123661 0.8475045 0.7751122 +0.8301795 0.8475045 0.7751122 +0.8475045 0.8475045 0.7751122 +0.8643761 0.8475045 0.7751122 +0.880825 0.8475045 0.7751122 +0.8968787 0.8475045 0.7751122 +0.9125621 0.8475045 0.7751122 +0.9278974 0.8475045 0.7751122 +0.9429048 0.8475045 0.7751122 +0.9576028 0.8475045 0.7751122 +0.9720079 0.8475045 0.7751122 +0.9861357 0.8475045 0.7751122 +1 0.8475045 0.7751122 +0 0.8643761 0.7751122 +0.1939468 0.8643761 0.7751122 +0.2773041 0.8643761 0.7751122 +0.3384659 0.8643761 0.7751122 +0.3885728 0.8643761 0.7751122 +0.4317928 0.8643761 0.7751122 +0.470214 0.8643761 0.7751122 +0.5050551 0.8643761 0.7751122 +0.5370987 0.8643761 0.7751122 +0.5668815 0.8643761 0.7751122 +0.5947903 0.8643761 0.7751122 +0.6211144 0.8643761 0.7751122 +0.6460766 0.8643761 0.7751122 +0.6698526 0.8643761 0.7751122 +0.6925839 0.8643761 0.7751122 +0.7143866 0.8643761 0.7751122 +0.7353569 0.8643761 0.7751122 +0.7555758 0.8643761 0.7751122 +0.7751122 0.8643761 0.7751122 +0.7940252 0.8643761 0.7751122 +0.8123661 0.8643761 0.7751122 +0.8301795 0.8643761 0.7751122 +0.8475045 0.8643761 0.7751122 +0.8643761 0.8643761 0.7751122 +0.880825 0.8643761 0.7751122 +0.8968787 0.8643761 0.7751122 +0.9125621 0.8643761 0.7751122 +0.9278974 0.8643761 0.7751122 +0.9429048 0.8643761 0.7751122 +0.9576028 0.8643761 0.7751122 +0.9720079 0.8643761 0.7751122 +0.9861357 0.8643761 0.7751122 +1 0.8643761 0.7751122 +0 0.880825 0.7751122 +0.1939468 0.880825 0.7751122 +0.2773041 0.880825 0.7751122 +0.3384659 0.880825 0.7751122 +0.3885728 0.880825 0.7751122 +0.4317928 0.880825 0.7751122 +0.470214 0.880825 0.7751122 +0.5050551 0.880825 0.7751122 +0.5370987 0.880825 0.7751122 +0.5668815 0.880825 0.7751122 +0.5947903 0.880825 0.7751122 +0.6211144 0.880825 0.7751122 +0.6460766 0.880825 0.7751122 +0.6698526 0.880825 0.7751122 +0.6925839 0.880825 0.7751122 +0.7143866 0.880825 0.7751122 +0.7353569 0.880825 0.7751122 +0.7555758 0.880825 0.7751122 +0.7751122 0.880825 0.7751122 +0.7940252 0.880825 0.7751122 +0.8123661 0.880825 0.7751122 +0.8301795 0.880825 0.7751122 +0.8475045 0.880825 0.7751122 +0.8643761 0.880825 0.7751122 +0.880825 0.880825 0.7751122 +0.8968787 0.880825 0.7751122 +0.9125621 0.880825 0.7751122 +0.9278974 0.880825 0.7751122 +0.9429048 0.880825 0.7751122 +0.9576028 0.880825 0.7751122 +0.9720079 0.880825 0.7751122 +0.9861357 0.880825 0.7751122 +1 0.880825 0.7751122 +0 0.8968787 0.7751122 +0.1939468 0.8968787 0.7751122 +0.2773041 0.8968787 0.7751122 +0.3384659 0.8968787 0.7751122 +0.3885728 0.8968787 0.7751122 +0.4317928 0.8968787 0.7751122 +0.470214 0.8968787 0.7751122 +0.5050551 0.8968787 0.7751122 +0.5370987 0.8968787 0.7751122 +0.5668815 0.8968787 0.7751122 +0.5947903 0.8968787 0.7751122 +0.6211144 0.8968787 0.7751122 +0.6460766 0.8968787 0.7751122 +0.6698526 0.8968787 0.7751122 +0.6925839 0.8968787 0.7751122 +0.7143866 0.8968787 0.7751122 +0.7353569 0.8968787 0.7751122 +0.7555758 0.8968787 0.7751122 +0.7751122 0.8968787 0.7751122 +0.7940252 0.8968787 0.7751122 +0.8123661 0.8968787 0.7751122 +0.8301795 0.8968787 0.7751122 +0.8475045 0.8968787 0.7751122 +0.8643761 0.8968787 0.7751122 +0.880825 0.8968787 0.7751122 +0.8968787 0.8968787 0.7751122 +0.9125621 0.8968787 0.7751122 +0.9278974 0.8968787 0.7751122 +0.9429048 0.8968787 0.7751122 +0.9576028 0.8968787 0.7751122 +0.9720079 0.8968787 0.7751122 +0.9861357 0.8968787 0.7751122 +1 0.8968787 0.7751122 +0 0.9125621 0.7751122 +0.1939468 0.9125621 0.7751122 +0.2773041 0.9125621 0.7751122 +0.3384659 0.9125621 0.7751122 +0.3885728 0.9125621 0.7751122 +0.4317928 0.9125621 0.7751122 +0.470214 0.9125621 0.7751122 +0.5050551 0.9125621 0.7751122 +0.5370987 0.9125621 0.7751122 +0.5668815 0.9125621 0.7751122 +0.5947903 0.9125621 0.7751122 +0.6211144 0.9125621 0.7751122 +0.6460766 0.9125621 0.7751122 +0.6698526 0.9125621 0.7751122 +0.6925839 0.9125621 0.7751122 +0.7143866 0.9125621 0.7751122 +0.7353569 0.9125621 0.7751122 +0.7555758 0.9125621 0.7751122 +0.7751122 0.9125621 0.7751122 +0.7940252 0.9125621 0.7751122 +0.8123661 0.9125621 0.7751122 +0.8301795 0.9125621 0.7751122 +0.8475045 0.9125621 0.7751122 +0.8643761 0.9125621 0.7751122 +0.880825 0.9125621 0.7751122 +0.8968787 0.9125621 0.7751122 +0.9125621 0.9125621 0.7751122 +0.9278974 0.9125621 0.7751122 +0.9429048 0.9125621 0.7751122 +0.9576028 0.9125621 0.7751122 +0.9720079 0.9125621 0.7751122 +0.9861357 0.9125621 0.7751122 +1 0.9125621 0.7751122 +0 0.9278974 0.7751122 +0.1939468 0.9278974 0.7751122 +0.2773041 0.9278974 0.7751122 +0.3384659 0.9278974 0.7751122 +0.3885728 0.9278974 0.7751122 +0.4317928 0.9278974 0.7751122 +0.470214 0.9278974 0.7751122 +0.5050551 0.9278974 0.7751122 +0.5370987 0.9278974 0.7751122 +0.5668815 0.9278974 0.7751122 +0.5947903 0.9278974 0.7751122 +0.6211144 0.9278974 0.7751122 +0.6460766 0.9278974 0.7751122 +0.6698526 0.9278974 0.7751122 +0.6925839 0.9278974 0.7751122 +0.7143866 0.9278974 0.7751122 +0.7353569 0.9278974 0.7751122 +0.7555758 0.9278974 0.7751122 +0.7751122 0.9278974 0.7751122 +0.7940252 0.9278974 0.7751122 +0.8123661 0.9278974 0.7751122 +0.8301795 0.9278974 0.7751122 +0.8475045 0.9278974 0.7751122 +0.8643761 0.9278974 0.7751122 +0.880825 0.9278974 0.7751122 +0.8968787 0.9278974 0.7751122 +0.9125621 0.9278974 0.7751122 +0.9278974 0.9278974 0.7751122 +0.9429048 0.9278974 0.7751122 +0.9576028 0.9278974 0.7751122 +0.9720079 0.9278974 0.7751122 +0.9861357 0.9278974 0.7751122 +1 0.9278974 0.7751122 +0 0.9429048 0.7751122 +0.1939468 0.9429048 0.7751122 +0.2773041 0.9429048 0.7751122 +0.3384659 0.9429048 0.7751122 +0.3885728 0.9429048 0.7751122 +0.4317928 0.9429048 0.7751122 +0.470214 0.9429048 0.7751122 +0.5050551 0.9429048 0.7751122 +0.5370987 0.9429048 0.7751122 +0.5668815 0.9429048 0.7751122 +0.5947903 0.9429048 0.7751122 +0.6211144 0.9429048 0.7751122 +0.6460766 0.9429048 0.7751122 +0.6698526 0.9429048 0.7751122 +0.6925839 0.9429048 0.7751122 +0.7143866 0.9429048 0.7751122 +0.7353569 0.9429048 0.7751122 +0.7555758 0.9429048 0.7751122 +0.7751122 0.9429048 0.7751122 +0.7940252 0.9429048 0.7751122 +0.8123661 0.9429048 0.7751122 +0.8301795 0.9429048 0.7751122 +0.8475045 0.9429048 0.7751122 +0.8643761 0.9429048 0.7751122 +0.880825 0.9429048 0.7751122 +0.8968787 0.9429048 0.7751122 +0.9125621 0.9429048 0.7751122 +0.9278974 0.9429048 0.7751122 +0.9429048 0.9429048 0.7751122 +0.9576028 0.9429048 0.7751122 +0.9720079 0.9429048 0.7751122 +0.9861357 0.9429048 0.7751122 +1 0.9429048 0.7751122 +0 0.9576028 0.7751122 +0.1939468 0.9576028 0.7751122 +0.2773041 0.9576028 0.7751122 +0.3384659 0.9576028 0.7751122 +0.3885728 0.9576028 0.7751122 +0.4317928 0.9576028 0.7751122 +0.470214 0.9576028 0.7751122 +0.5050551 0.9576028 0.7751122 +0.5370987 0.9576028 0.7751122 +0.5668815 0.9576028 0.7751122 +0.5947903 0.9576028 0.7751122 +0.6211144 0.9576028 0.7751122 +0.6460766 0.9576028 0.7751122 +0.6698526 0.9576028 0.7751122 +0.6925839 0.9576028 0.7751122 +0.7143866 0.9576028 0.7751122 +0.7353569 0.9576028 0.7751122 +0.7555758 0.9576028 0.7751122 +0.7751122 0.9576028 0.7751122 +0.7940252 0.9576028 0.7751122 +0.8123661 0.9576028 0.7751122 +0.8301795 0.9576028 0.7751122 +0.8475045 0.9576028 0.7751122 +0.8643761 0.9576028 0.7751122 +0.880825 0.9576028 0.7751122 +0.8968787 0.9576028 0.7751122 +0.9125621 0.9576028 0.7751122 +0.9278974 0.9576028 0.7751122 +0.9429048 0.9576028 0.7751122 +0.9576028 0.9576028 0.7751122 +0.9720079 0.9576028 0.7751122 +0.9861357 0.9576028 0.7751122 +1 0.9576028 0.7751122 +0 0.9720079 0.7751122 +0.1939468 0.9720079 0.7751122 +0.2773041 0.9720079 0.7751122 +0.3384659 0.9720079 0.7751122 +0.3885728 0.9720079 0.7751122 +0.4317928 0.9720079 0.7751122 +0.470214 0.9720079 0.7751122 +0.5050551 0.9720079 0.7751122 +0.5370987 0.9720079 0.7751122 +0.5668815 0.9720079 0.7751122 +0.5947903 0.9720079 0.7751122 +0.6211144 0.9720079 0.7751122 +0.6460766 0.9720079 0.7751122 +0.6698526 0.9720079 0.7751122 +0.6925839 0.9720079 0.7751122 +0.7143866 0.9720079 0.7751122 +0.7353569 0.9720079 0.7751122 +0.7555758 0.9720079 0.7751122 +0.7751122 0.9720079 0.7751122 +0.7940252 0.9720079 0.7751122 +0.8123661 0.9720079 0.7751122 +0.8301795 0.9720079 0.7751122 +0.8475045 0.9720079 0.7751122 +0.8643761 0.9720079 0.7751122 +0.880825 0.9720079 0.7751122 +0.8968787 0.9720079 0.7751122 +0.9125621 0.9720079 0.7751122 +0.9278974 0.9720079 0.7751122 +0.9429048 0.9720079 0.7751122 +0.9576028 0.9720079 0.7751122 +0.9720079 0.9720079 0.7751122 +0.9861357 0.9720079 0.7751122 +1 0.9720079 0.7751122 +0 0.9861357 0.7751122 +0.1939468 0.9861357 0.7751122 +0.2773041 0.9861357 0.7751122 +0.3384659 0.9861357 0.7751122 +0.3885728 0.9861357 0.7751122 +0.4317928 0.9861357 0.7751122 +0.470214 0.9861357 0.7751122 +0.5050551 0.9861357 0.7751122 +0.5370987 0.9861357 0.7751122 +0.5668815 0.9861357 0.7751122 +0.5947903 0.9861357 0.7751122 +0.6211144 0.9861357 0.7751122 +0.6460766 0.9861357 0.7751122 +0.6698526 0.9861357 0.7751122 +0.6925839 0.9861357 0.7751122 +0.7143866 0.9861357 0.7751122 +0.7353569 0.9861357 0.7751122 +0.7555758 0.9861357 0.7751122 +0.7751122 0.9861357 0.7751122 +0.7940252 0.9861357 0.7751122 +0.8123661 0.9861357 0.7751122 +0.8301795 0.9861357 0.7751122 +0.8475045 0.9861357 0.7751122 +0.8643761 0.9861357 0.7751122 +0.880825 0.9861357 0.7751122 +0.8968787 0.9861357 0.7751122 +0.9125621 0.9861357 0.7751122 +0.9278974 0.9861357 0.7751122 +0.9429048 0.9861357 0.7751122 +0.9576028 0.9861357 0.7751122 +0.9720079 0.9861357 0.7751122 +0.9861357 0.9861357 0.7751122 +1 0.9861357 0.7751122 +0 1 0.7751122 +0.1939468 1 0.7751122 +0.2773041 1 0.7751122 +0.3384659 1 0.7751122 +0.3885728 1 0.7751122 +0.4317928 1 0.7751122 +0.470214 1 0.7751122 +0.5050551 1 0.7751122 +0.5370987 1 0.7751122 +0.5668815 1 0.7751122 +0.5947903 1 0.7751122 +0.6211144 1 0.7751122 +0.6460766 1 0.7751122 +0.6698526 1 0.7751122 +0.6925839 1 0.7751122 +0.7143866 1 0.7751122 +0.7353569 1 0.7751122 +0.7555758 1 0.7751122 +0.7751122 1 0.7751122 +0.7940252 1 0.7751122 +0.8123661 1 0.7751122 +0.8301795 1 0.7751122 +0.8475045 1 0.7751122 +0.8643761 1 0.7751122 +0.880825 1 0.7751122 +0.8968787 1 0.7751122 +0.9125621 1 0.7751122 +0.9278974 1 0.7751122 +0.9429048 1 0.7751122 +0.9576028 1 0.7751122 +0.9720079 1 0.7751122 +0.9861357 1 0.7751122 +1 1 0.7751122 +0 0 0.7940252 +0.1939468 0 0.7940252 +0.2773041 0 0.7940252 +0.3384659 0 0.7940252 +0.3885728 0 0.7940252 +0.4317928 0 0.7940252 +0.470214 0 0.7940252 +0.5050551 0 0.7940252 +0.5370987 0 0.7940252 +0.5668815 0 0.7940252 +0.5947903 0 0.7940252 +0.6211144 0 0.7940252 +0.6460766 0 0.7940252 +0.6698526 0 0.7940252 +0.6925839 0 0.7940252 +0.7143866 0 0.7940252 +0.7353569 0 0.7940252 +0.7555758 0 0.7940252 +0.7751122 0 0.7940252 +0.7940252 0 0.7940252 +0.8123661 0 0.7940252 +0.8301795 0 0.7940252 +0.8475045 0 0.7940252 +0.8643761 0 0.7940252 +0.880825 0 0.7940252 +0.8968787 0 0.7940252 +0.9125621 0 0.7940252 +0.9278974 0 0.7940252 +0.9429048 0 0.7940252 +0.9576028 0 0.7940252 +0.9720079 0 0.7940252 +0.9861357 0 0.7940252 +1 0 0.7940252 +0 0.1939468 0.7940252 +0.1939468 0.1939468 0.7940252 +0.2773041 0.1939468 0.7940252 +0.3384659 0.1939468 0.7940252 +0.3885728 0.1939468 0.7940252 +0.4317928 0.1939468 0.7940252 +0.470214 0.1939468 0.7940252 +0.5050551 0.1939468 0.7940252 +0.5370987 0.1939468 0.7940252 +0.5668815 0.1939468 0.7940252 +0.5947903 0.1939468 0.7940252 +0.6211144 0.1939468 0.7940252 +0.6460766 0.1939468 0.7940252 +0.6698526 0.1939468 0.7940252 +0.6925839 0.1939468 0.7940252 +0.7143866 0.1939468 0.7940252 +0.7353569 0.1939468 0.7940252 +0.7555758 0.1939468 0.7940252 +0.7751122 0.1939468 0.7940252 +0.7940252 0.1939468 0.7940252 +0.8123661 0.1939468 0.7940252 +0.8301795 0.1939468 0.7940252 +0.8475045 0.1939468 0.7940252 +0.8643761 0.1939468 0.7940252 +0.880825 0.1939468 0.7940252 +0.8968787 0.1939468 0.7940252 +0.9125621 0.1939468 0.7940252 +0.9278974 0.1939468 0.7940252 +0.9429048 0.1939468 0.7940252 +0.9576028 0.1939468 0.7940252 +0.9720079 0.1939468 0.7940252 +0.9861357 0.1939468 0.7940252 +1 0.1939468 0.7940252 +0 0.2773041 0.7940252 +0.1939468 0.2773041 0.7940252 +0.2773041 0.2773041 0.7940252 +0.3384659 0.2773041 0.7940252 +0.3885728 0.2773041 0.7940252 +0.4317928 0.2773041 0.7940252 +0.470214 0.2773041 0.7940252 +0.5050551 0.2773041 0.7940252 +0.5370987 0.2773041 0.7940252 +0.5668815 0.2773041 0.7940252 +0.5947903 0.2773041 0.7940252 +0.6211144 0.2773041 0.7940252 +0.6460766 0.2773041 0.7940252 +0.6698526 0.2773041 0.7940252 +0.6925839 0.2773041 0.7940252 +0.7143866 0.2773041 0.7940252 +0.7353569 0.2773041 0.7940252 +0.7555758 0.2773041 0.7940252 +0.7751122 0.2773041 0.7940252 +0.7940252 0.2773041 0.7940252 +0.8123661 0.2773041 0.7940252 +0.8301795 0.2773041 0.7940252 +0.8475045 0.2773041 0.7940252 +0.8643761 0.2773041 0.7940252 +0.880825 0.2773041 0.7940252 +0.8968787 0.2773041 0.7940252 +0.9125621 0.2773041 0.7940252 +0.9278974 0.2773041 0.7940252 +0.9429048 0.2773041 0.7940252 +0.9576028 0.2773041 0.7940252 +0.9720079 0.2773041 0.7940252 +0.9861357 0.2773041 0.7940252 +1 0.2773041 0.7940252 +0 0.3384659 0.7940252 +0.1939468 0.3384659 0.7940252 +0.2773041 0.3384659 0.7940252 +0.3384659 0.3384659 0.7940252 +0.3885728 0.3384659 0.7940252 +0.4317928 0.3384659 0.7940252 +0.470214 0.3384659 0.7940252 +0.5050551 0.3384659 0.7940252 +0.5370987 0.3384659 0.7940252 +0.5668815 0.3384659 0.7940252 +0.5947903 0.3384659 0.7940252 +0.6211144 0.3384659 0.7940252 +0.6460766 0.3384659 0.7940252 +0.6698526 0.3384659 0.7940252 +0.6925839 0.3384659 0.7940252 +0.7143866 0.3384659 0.7940252 +0.7353569 0.3384659 0.7940252 +0.7555758 0.3384659 0.7940252 +0.7751122 0.3384659 0.7940252 +0.7940252 0.3384659 0.7940252 +0.8123661 0.3384659 0.7940252 +0.8301795 0.3384659 0.7940252 +0.8475045 0.3384659 0.7940252 +0.8643761 0.3384659 0.7940252 +0.880825 0.3384659 0.7940252 +0.8968787 0.3384659 0.7940252 +0.9125621 0.3384659 0.7940252 +0.9278974 0.3384659 0.7940252 +0.9429048 0.3384659 0.7940252 +0.9576028 0.3384659 0.7940252 +0.9720079 0.3384659 0.7940252 +0.9861357 0.3384659 0.7940252 +1 0.3384659 0.7940252 +0 0.3885728 0.7940252 +0.1939468 0.3885728 0.7940252 +0.2773041 0.3885728 0.7940252 +0.3384659 0.3885728 0.7940252 +0.3885728 0.3885728 0.7940252 +0.4317928 0.3885728 0.7940252 +0.470214 0.3885728 0.7940252 +0.5050551 0.3885728 0.7940252 +0.5370987 0.3885728 0.7940252 +0.5668815 0.3885728 0.7940252 +0.5947903 0.3885728 0.7940252 +0.6211144 0.3885728 0.7940252 +0.6460766 0.3885728 0.7940252 +0.6698526 0.3885728 0.7940252 +0.6925839 0.3885728 0.7940252 +0.7143866 0.3885728 0.7940252 +0.7353569 0.3885728 0.7940252 +0.7555758 0.3885728 0.7940252 +0.7751122 0.3885728 0.7940252 +0.7940252 0.3885728 0.7940252 +0.8123661 0.3885728 0.7940252 +0.8301795 0.3885728 0.7940252 +0.8475045 0.3885728 0.7940252 +0.8643761 0.3885728 0.7940252 +0.880825 0.3885728 0.7940252 +0.8968787 0.3885728 0.7940252 +0.9125621 0.3885728 0.7940252 +0.9278974 0.3885728 0.7940252 +0.9429048 0.3885728 0.7940252 +0.9576028 0.3885728 0.7940252 +0.9720079 0.3885728 0.7940252 +0.9861357 0.3885728 0.7940252 +1 0.3885728 0.7940252 +0 0.4317928 0.7940252 +0.1939468 0.4317928 0.7940252 +0.2773041 0.4317928 0.7940252 +0.3384659 0.4317928 0.7940252 +0.3885728 0.4317928 0.7940252 +0.4317928 0.4317928 0.7940252 +0.470214 0.4317928 0.7940252 +0.5050551 0.4317928 0.7940252 +0.5370987 0.4317928 0.7940252 +0.5668815 0.4317928 0.7940252 +0.5947903 0.4317928 0.7940252 +0.6211144 0.4317928 0.7940252 +0.6460766 0.4317928 0.7940252 +0.6698526 0.4317928 0.7940252 +0.6925839 0.4317928 0.7940252 +0.7143866 0.4317928 0.7940252 +0.7353569 0.4317928 0.7940252 +0.7555758 0.4317928 0.7940252 +0.7751122 0.4317928 0.7940252 +0.7940252 0.4317928 0.7940252 +0.8123661 0.4317928 0.7940252 +0.8301795 0.4317928 0.7940252 +0.8475045 0.4317928 0.7940252 +0.8643761 0.4317928 0.7940252 +0.880825 0.4317928 0.7940252 +0.8968787 0.4317928 0.7940252 +0.9125621 0.4317928 0.7940252 +0.9278974 0.4317928 0.7940252 +0.9429048 0.4317928 0.7940252 +0.9576028 0.4317928 0.7940252 +0.9720079 0.4317928 0.7940252 +0.9861357 0.4317928 0.7940252 +1 0.4317928 0.7940252 +0 0.470214 0.7940252 +0.1939468 0.470214 0.7940252 +0.2773041 0.470214 0.7940252 +0.3384659 0.470214 0.7940252 +0.3885728 0.470214 0.7940252 +0.4317928 0.470214 0.7940252 +0.470214 0.470214 0.7940252 +0.5050551 0.470214 0.7940252 +0.5370987 0.470214 0.7940252 +0.5668815 0.470214 0.7940252 +0.5947903 0.470214 0.7940252 +0.6211144 0.470214 0.7940252 +0.6460766 0.470214 0.7940252 +0.6698526 0.470214 0.7940252 +0.6925839 0.470214 0.7940252 +0.7143866 0.470214 0.7940252 +0.7353569 0.470214 0.7940252 +0.7555758 0.470214 0.7940252 +0.7751122 0.470214 0.7940252 +0.7940252 0.470214 0.7940252 +0.8123661 0.470214 0.7940252 +0.8301795 0.470214 0.7940252 +0.8475045 0.470214 0.7940252 +0.8643761 0.470214 0.7940252 +0.880825 0.470214 0.7940252 +0.8968787 0.470214 0.7940252 +0.9125621 0.470214 0.7940252 +0.9278974 0.470214 0.7940252 +0.9429048 0.470214 0.7940252 +0.9576028 0.470214 0.7940252 +0.9720079 0.470214 0.7940252 +0.9861357 0.470214 0.7940252 +1 0.470214 0.7940252 +0 0.5050551 0.7940252 +0.1939468 0.5050551 0.7940252 +0.2773041 0.5050551 0.7940252 +0.3384659 0.5050551 0.7940252 +0.3885728 0.5050551 0.7940252 +0.4317928 0.5050551 0.7940252 +0.470214 0.5050551 0.7940252 +0.5050551 0.5050551 0.7940252 +0.5370987 0.5050551 0.7940252 +0.5668815 0.5050551 0.7940252 +0.5947903 0.5050551 0.7940252 +0.6211144 0.5050551 0.7940252 +0.6460766 0.5050551 0.7940252 +0.6698526 0.5050551 0.7940252 +0.6925839 0.5050551 0.7940252 +0.7143866 0.5050551 0.7940252 +0.7353569 0.5050551 0.7940252 +0.7555758 0.5050551 0.7940252 +0.7751122 0.5050551 0.7940252 +0.7940252 0.5050551 0.7940252 +0.8123661 0.5050551 0.7940252 +0.8301795 0.5050551 0.7940252 +0.8475045 0.5050551 0.7940252 +0.8643761 0.5050551 0.7940252 +0.880825 0.5050551 0.7940252 +0.8968787 0.5050551 0.7940252 +0.9125621 0.5050551 0.7940252 +0.9278974 0.5050551 0.7940252 +0.9429048 0.5050551 0.7940252 +0.9576028 0.5050551 0.7940252 +0.9720079 0.5050551 0.7940252 +0.9861357 0.5050551 0.7940252 +1 0.5050551 0.7940252 +0 0.5370987 0.7940252 +0.1939468 0.5370987 0.7940252 +0.2773041 0.5370987 0.7940252 +0.3384659 0.5370987 0.7940252 +0.3885728 0.5370987 0.7940252 +0.4317928 0.5370987 0.7940252 +0.470214 0.5370987 0.7940252 +0.5050551 0.5370987 0.7940252 +0.5370987 0.5370987 0.7940252 +0.5668815 0.5370987 0.7940252 +0.5947903 0.5370987 0.7940252 +0.6211144 0.5370987 0.7940252 +0.6460766 0.5370987 0.7940252 +0.6698526 0.5370987 0.7940252 +0.6925839 0.5370987 0.7940252 +0.7143866 0.5370987 0.7940252 +0.7353569 0.5370987 0.7940252 +0.7555758 0.5370987 0.7940252 +0.7751122 0.5370987 0.7940252 +0.7940252 0.5370987 0.7940252 +0.8123661 0.5370987 0.7940252 +0.8301795 0.5370987 0.7940252 +0.8475045 0.5370987 0.7940252 +0.8643761 0.5370987 0.7940252 +0.880825 0.5370987 0.7940252 +0.8968787 0.5370987 0.7940252 +0.9125621 0.5370987 0.7940252 +0.9278974 0.5370987 0.7940252 +0.9429048 0.5370987 0.7940252 +0.9576028 0.5370987 0.7940252 +0.9720079 0.5370987 0.7940252 +0.9861357 0.5370987 0.7940252 +1 0.5370987 0.7940252 +0 0.5668815 0.7940252 +0.1939468 0.5668815 0.7940252 +0.2773041 0.5668815 0.7940252 +0.3384659 0.5668815 0.7940252 +0.3885728 0.5668815 0.7940252 +0.4317928 0.5668815 0.7940252 +0.470214 0.5668815 0.7940252 +0.5050551 0.5668815 0.7940252 +0.5370987 0.5668815 0.7940252 +0.5668815 0.5668815 0.7940252 +0.5947903 0.5668815 0.7940252 +0.6211144 0.5668815 0.7940252 +0.6460766 0.5668815 0.7940252 +0.6698526 0.5668815 0.7940252 +0.6925839 0.5668815 0.7940252 +0.7143866 0.5668815 0.7940252 +0.7353569 0.5668815 0.7940252 +0.7555758 0.5668815 0.7940252 +0.7751122 0.5668815 0.7940252 +0.7940252 0.5668815 0.7940252 +0.8123661 0.5668815 0.7940252 +0.8301795 0.5668815 0.7940252 +0.8475045 0.5668815 0.7940252 +0.8643761 0.5668815 0.7940252 +0.880825 0.5668815 0.7940252 +0.8968787 0.5668815 0.7940252 +0.9125621 0.5668815 0.7940252 +0.9278974 0.5668815 0.7940252 +0.9429048 0.5668815 0.7940252 +0.9576028 0.5668815 0.7940252 +0.9720079 0.5668815 0.7940252 +0.9861357 0.5668815 0.7940252 +1 0.5668815 0.7940252 +0 0.5947903 0.7940252 +0.1939468 0.5947903 0.7940252 +0.2773041 0.5947903 0.7940252 +0.3384659 0.5947903 0.7940252 +0.3885728 0.5947903 0.7940252 +0.4317928 0.5947903 0.7940252 +0.470214 0.5947903 0.7940252 +0.5050551 0.5947903 0.7940252 +0.5370987 0.5947903 0.7940252 +0.5668815 0.5947903 0.7940252 +0.5947903 0.5947903 0.7940252 +0.6211144 0.5947903 0.7940252 +0.6460766 0.5947903 0.7940252 +0.6698526 0.5947903 0.7940252 +0.6925839 0.5947903 0.7940252 +0.7143866 0.5947903 0.7940252 +0.7353569 0.5947903 0.7940252 +0.7555758 0.5947903 0.7940252 +0.7751122 0.5947903 0.7940252 +0.7940252 0.5947903 0.7940252 +0.8123661 0.5947903 0.7940252 +0.8301795 0.5947903 0.7940252 +0.8475045 0.5947903 0.7940252 +0.8643761 0.5947903 0.7940252 +0.880825 0.5947903 0.7940252 +0.8968787 0.5947903 0.7940252 +0.9125621 0.5947903 0.7940252 +0.9278974 0.5947903 0.7940252 +0.9429048 0.5947903 0.7940252 +0.9576028 0.5947903 0.7940252 +0.9720079 0.5947903 0.7940252 +0.9861357 0.5947903 0.7940252 +1 0.5947903 0.7940252 +0 0.6211144 0.7940252 +0.1939468 0.6211144 0.7940252 +0.2773041 0.6211144 0.7940252 +0.3384659 0.6211144 0.7940252 +0.3885728 0.6211144 0.7940252 +0.4317928 0.6211144 0.7940252 +0.470214 0.6211144 0.7940252 +0.5050551 0.6211144 0.7940252 +0.5370987 0.6211144 0.7940252 +0.5668815 0.6211144 0.7940252 +0.5947903 0.6211144 0.7940252 +0.6211144 0.6211144 0.7940252 +0.6460766 0.6211144 0.7940252 +0.6698526 0.6211144 0.7940252 +0.6925839 0.6211144 0.7940252 +0.7143866 0.6211144 0.7940252 +0.7353569 0.6211144 0.7940252 +0.7555758 0.6211144 0.7940252 +0.7751122 0.6211144 0.7940252 +0.7940252 0.6211144 0.7940252 +0.8123661 0.6211144 0.7940252 +0.8301795 0.6211144 0.7940252 +0.8475045 0.6211144 0.7940252 +0.8643761 0.6211144 0.7940252 +0.880825 0.6211144 0.7940252 +0.8968787 0.6211144 0.7940252 +0.9125621 0.6211144 0.7940252 +0.9278974 0.6211144 0.7940252 +0.9429048 0.6211144 0.7940252 +0.9576028 0.6211144 0.7940252 +0.9720079 0.6211144 0.7940252 +0.9861357 0.6211144 0.7940252 +1 0.6211144 0.7940252 +0 0.6460766 0.7940252 +0.1939468 0.6460766 0.7940252 +0.2773041 0.6460766 0.7940252 +0.3384659 0.6460766 0.7940252 +0.3885728 0.6460766 0.7940252 +0.4317928 0.6460766 0.7940252 +0.470214 0.6460766 0.7940252 +0.5050551 0.6460766 0.7940252 +0.5370987 0.6460766 0.7940252 +0.5668815 0.6460766 0.7940252 +0.5947903 0.6460766 0.7940252 +0.6211144 0.6460766 0.7940252 +0.6460766 0.6460766 0.7940252 +0.6698526 0.6460766 0.7940252 +0.6925839 0.6460766 0.7940252 +0.7143866 0.6460766 0.7940252 +0.7353569 0.6460766 0.7940252 +0.7555758 0.6460766 0.7940252 +0.7751122 0.6460766 0.7940252 +0.7940252 0.6460766 0.7940252 +0.8123661 0.6460766 0.7940252 +0.8301795 0.6460766 0.7940252 +0.8475045 0.6460766 0.7940252 +0.8643761 0.6460766 0.7940252 +0.880825 0.6460766 0.7940252 +0.8968787 0.6460766 0.7940252 +0.9125621 0.6460766 0.7940252 +0.9278974 0.6460766 0.7940252 +0.9429048 0.6460766 0.7940252 +0.9576028 0.6460766 0.7940252 +0.9720079 0.6460766 0.7940252 +0.9861357 0.6460766 0.7940252 +1 0.6460766 0.7940252 +0 0.6698526 0.7940252 +0.1939468 0.6698526 0.7940252 +0.2773041 0.6698526 0.7940252 +0.3384659 0.6698526 0.7940252 +0.3885728 0.6698526 0.7940252 +0.4317928 0.6698526 0.7940252 +0.470214 0.6698526 0.7940252 +0.5050551 0.6698526 0.7940252 +0.5370987 0.6698526 0.7940252 +0.5668815 0.6698526 0.7940252 +0.5947903 0.6698526 0.7940252 +0.6211144 0.6698526 0.7940252 +0.6460766 0.6698526 0.7940252 +0.6698526 0.6698526 0.7940252 +0.6925839 0.6698526 0.7940252 +0.7143866 0.6698526 0.7940252 +0.7353569 0.6698526 0.7940252 +0.7555758 0.6698526 0.7940252 +0.7751122 0.6698526 0.7940252 +0.7940252 0.6698526 0.7940252 +0.8123661 0.6698526 0.7940252 +0.8301795 0.6698526 0.7940252 +0.8475045 0.6698526 0.7940252 +0.8643761 0.6698526 0.7940252 +0.880825 0.6698526 0.7940252 +0.8968787 0.6698526 0.7940252 +0.9125621 0.6698526 0.7940252 +0.9278974 0.6698526 0.7940252 +0.9429048 0.6698526 0.7940252 +0.9576028 0.6698526 0.7940252 +0.9720079 0.6698526 0.7940252 +0.9861357 0.6698526 0.7940252 +1 0.6698526 0.7940252 +0 0.6925839 0.7940252 +0.1939468 0.6925839 0.7940252 +0.2773041 0.6925839 0.7940252 +0.3384659 0.6925839 0.7940252 +0.3885728 0.6925839 0.7940252 +0.4317928 0.6925839 0.7940252 +0.470214 0.6925839 0.7940252 +0.5050551 0.6925839 0.7940252 +0.5370987 0.6925839 0.7940252 +0.5668815 0.6925839 0.7940252 +0.5947903 0.6925839 0.7940252 +0.6211144 0.6925839 0.7940252 +0.6460766 0.6925839 0.7940252 +0.6698526 0.6925839 0.7940252 +0.6925839 0.6925839 0.7940252 +0.7143866 0.6925839 0.7940252 +0.7353569 0.6925839 0.7940252 +0.7555758 0.6925839 0.7940252 +0.7751122 0.6925839 0.7940252 +0.7940252 0.6925839 0.7940252 +0.8123661 0.6925839 0.7940252 +0.8301795 0.6925839 0.7940252 +0.8475045 0.6925839 0.7940252 +0.8643761 0.6925839 0.7940252 +0.880825 0.6925839 0.7940252 +0.8968787 0.6925839 0.7940252 +0.9125621 0.6925839 0.7940252 +0.9278974 0.6925839 0.7940252 +0.9429048 0.6925839 0.7940252 +0.9576028 0.6925839 0.7940252 +0.9720079 0.6925839 0.7940252 +0.9861357 0.6925839 0.7940252 +1 0.6925839 0.7940252 +0 0.7143866 0.7940252 +0.1939468 0.7143866 0.7940252 +0.2773041 0.7143866 0.7940252 +0.3384659 0.7143866 0.7940252 +0.3885728 0.7143866 0.7940252 +0.4317928 0.7143866 0.7940252 +0.470214 0.7143866 0.7940252 +0.5050551 0.7143866 0.7940252 +0.5370987 0.7143866 0.7940252 +0.5668815 0.7143866 0.7940252 +0.5947903 0.7143866 0.7940252 +0.6211144 0.7143866 0.7940252 +0.6460766 0.7143866 0.7940252 +0.6698526 0.7143866 0.7940252 +0.6925839 0.7143866 0.7940252 +0.7143866 0.7143866 0.7940252 +0.7353569 0.7143866 0.7940252 +0.7555758 0.7143866 0.7940252 +0.7751122 0.7143866 0.7940252 +0.7940252 0.7143866 0.7940252 +0.8123661 0.7143866 0.7940252 +0.8301795 0.7143866 0.7940252 +0.8475045 0.7143866 0.7940252 +0.8643761 0.7143866 0.7940252 +0.880825 0.7143866 0.7940252 +0.8968787 0.7143866 0.7940252 +0.9125621 0.7143866 0.7940252 +0.9278974 0.7143866 0.7940252 +0.9429048 0.7143866 0.7940252 +0.9576028 0.7143866 0.7940252 +0.9720079 0.7143866 0.7940252 +0.9861357 0.7143866 0.7940252 +1 0.7143866 0.7940252 +0 0.7353569 0.7940252 +0.1939468 0.7353569 0.7940252 +0.2773041 0.7353569 0.7940252 +0.3384659 0.7353569 0.7940252 +0.3885728 0.7353569 0.7940252 +0.4317928 0.7353569 0.7940252 +0.470214 0.7353569 0.7940252 +0.5050551 0.7353569 0.7940252 +0.5370987 0.7353569 0.7940252 +0.5668815 0.7353569 0.7940252 +0.5947903 0.7353569 0.7940252 +0.6211144 0.7353569 0.7940252 +0.6460766 0.7353569 0.7940252 +0.6698526 0.7353569 0.7940252 +0.6925839 0.7353569 0.7940252 +0.7143866 0.7353569 0.7940252 +0.7353569 0.7353569 0.7940252 +0.7555758 0.7353569 0.7940252 +0.7751122 0.7353569 0.7940252 +0.7940252 0.7353569 0.7940252 +0.8123661 0.7353569 0.7940252 +0.8301795 0.7353569 0.7940252 +0.8475045 0.7353569 0.7940252 +0.8643761 0.7353569 0.7940252 +0.880825 0.7353569 0.7940252 +0.8968787 0.7353569 0.7940252 +0.9125621 0.7353569 0.7940252 +0.9278974 0.7353569 0.7940252 +0.9429048 0.7353569 0.7940252 +0.9576028 0.7353569 0.7940252 +0.9720079 0.7353569 0.7940252 +0.9861357 0.7353569 0.7940252 +1 0.7353569 0.7940252 +0 0.7555758 0.7940252 +0.1939468 0.7555758 0.7940252 +0.2773041 0.7555758 0.7940252 +0.3384659 0.7555758 0.7940252 +0.3885728 0.7555758 0.7940252 +0.4317928 0.7555758 0.7940252 +0.470214 0.7555758 0.7940252 +0.5050551 0.7555758 0.7940252 +0.5370987 0.7555758 0.7940252 +0.5668815 0.7555758 0.7940252 +0.5947903 0.7555758 0.7940252 +0.6211144 0.7555758 0.7940252 +0.6460766 0.7555758 0.7940252 +0.6698526 0.7555758 0.7940252 +0.6925839 0.7555758 0.7940252 +0.7143866 0.7555758 0.7940252 +0.7353569 0.7555758 0.7940252 +0.7555758 0.7555758 0.7940252 +0.7751122 0.7555758 0.7940252 +0.7940252 0.7555758 0.7940252 +0.8123661 0.7555758 0.7940252 +0.8301795 0.7555758 0.7940252 +0.8475045 0.7555758 0.7940252 +0.8643761 0.7555758 0.7940252 +0.880825 0.7555758 0.7940252 +0.8968787 0.7555758 0.7940252 +0.9125621 0.7555758 0.7940252 +0.9278974 0.7555758 0.7940252 +0.9429048 0.7555758 0.7940252 +0.9576028 0.7555758 0.7940252 +0.9720079 0.7555758 0.7940252 +0.9861357 0.7555758 0.7940252 +1 0.7555758 0.7940252 +0 0.7751122 0.7940252 +0.1939468 0.7751122 0.7940252 +0.2773041 0.7751122 0.7940252 +0.3384659 0.7751122 0.7940252 +0.3885728 0.7751122 0.7940252 +0.4317928 0.7751122 0.7940252 +0.470214 0.7751122 0.7940252 +0.5050551 0.7751122 0.7940252 +0.5370987 0.7751122 0.7940252 +0.5668815 0.7751122 0.7940252 +0.5947903 0.7751122 0.7940252 +0.6211144 0.7751122 0.7940252 +0.6460766 0.7751122 0.7940252 +0.6698526 0.7751122 0.7940252 +0.6925839 0.7751122 0.7940252 +0.7143866 0.7751122 0.7940252 +0.7353569 0.7751122 0.7940252 +0.7555758 0.7751122 0.7940252 +0.7751122 0.7751122 0.7940252 +0.7940252 0.7751122 0.7940252 +0.8123661 0.7751122 0.7940252 +0.8301795 0.7751122 0.7940252 +0.8475045 0.7751122 0.7940252 +0.8643761 0.7751122 0.7940252 +0.880825 0.7751122 0.7940252 +0.8968787 0.7751122 0.7940252 +0.9125621 0.7751122 0.7940252 +0.9278974 0.7751122 0.7940252 +0.9429048 0.7751122 0.7940252 +0.9576028 0.7751122 0.7940252 +0.9720079 0.7751122 0.7940252 +0.9861357 0.7751122 0.7940252 +1 0.7751122 0.7940252 +0 0.7940252 0.7940252 +0.1939468 0.7940252 0.7940252 +0.2773041 0.7940252 0.7940252 +0.3384659 0.7940252 0.7940252 +0.3885728 0.7940252 0.7940252 +0.4317928 0.7940252 0.7940252 +0.470214 0.7940252 0.7940252 +0.5050551 0.7940252 0.7940252 +0.5370987 0.7940252 0.7940252 +0.5668815 0.7940252 0.7940252 +0.5947903 0.7940252 0.7940252 +0.6211144 0.7940252 0.7940252 +0.6460766 0.7940252 0.7940252 +0.6698526 0.7940252 0.7940252 +0.6925839 0.7940252 0.7940252 +0.7143866 0.7940252 0.7940252 +0.7353569 0.7940252 0.7940252 +0.7555758 0.7940252 0.7940252 +0.7751122 0.7940252 0.7940252 +0.7940252 0.7940252 0.7940252 +0.8123661 0.7940252 0.7940252 +0.8301795 0.7940252 0.7940252 +0.8475045 0.7940252 0.7940252 +0.8643761 0.7940252 0.7940252 +0.880825 0.7940252 0.7940252 +0.8968787 0.7940252 0.7940252 +0.9125621 0.7940252 0.7940252 +0.9278974 0.7940252 0.7940252 +0.9429048 0.7940252 0.7940252 +0.9576028 0.7940252 0.7940252 +0.9720079 0.7940252 0.7940252 +0.9861357 0.7940252 0.7940252 +1 0.7940252 0.7940252 +0 0.8123661 0.7940252 +0.1939468 0.8123661 0.7940252 +0.2773041 0.8123661 0.7940252 +0.3384659 0.8123661 0.7940252 +0.3885728 0.8123661 0.7940252 +0.4317928 0.8123661 0.7940252 +0.470214 0.8123661 0.7940252 +0.5050551 0.8123661 0.7940252 +0.5370987 0.8123661 0.7940252 +0.5668815 0.8123661 0.7940252 +0.5947903 0.8123661 0.7940252 +0.6211144 0.8123661 0.7940252 +0.6460766 0.8123661 0.7940252 +0.6698526 0.8123661 0.7940252 +0.6925839 0.8123661 0.7940252 +0.7143866 0.8123661 0.7940252 +0.7353569 0.8123661 0.7940252 +0.7555758 0.8123661 0.7940252 +0.7751122 0.8123661 0.7940252 +0.7940252 0.8123661 0.7940252 +0.8123661 0.8123661 0.7940252 +0.8301795 0.8123661 0.7940252 +0.8475045 0.8123661 0.7940252 +0.8643761 0.8123661 0.7940252 +0.880825 0.8123661 0.7940252 +0.8968787 0.8123661 0.7940252 +0.9125621 0.8123661 0.7940252 +0.9278974 0.8123661 0.7940252 +0.9429048 0.8123661 0.7940252 +0.9576028 0.8123661 0.7940252 +0.9720079 0.8123661 0.7940252 +0.9861357 0.8123661 0.7940252 +1 0.8123661 0.7940252 +0 0.8301795 0.7940252 +0.1939468 0.8301795 0.7940252 +0.2773041 0.8301795 0.7940252 +0.3384659 0.8301795 0.7940252 +0.3885728 0.8301795 0.7940252 +0.4317928 0.8301795 0.7940252 +0.470214 0.8301795 0.7940252 +0.5050551 0.8301795 0.7940252 +0.5370987 0.8301795 0.7940252 +0.5668815 0.8301795 0.7940252 +0.5947903 0.8301795 0.7940252 +0.6211144 0.8301795 0.7940252 +0.6460766 0.8301795 0.7940252 +0.6698526 0.8301795 0.7940252 +0.6925839 0.8301795 0.7940252 +0.7143866 0.8301795 0.7940252 +0.7353569 0.8301795 0.7940252 +0.7555758 0.8301795 0.7940252 +0.7751122 0.8301795 0.7940252 +0.7940252 0.8301795 0.7940252 +0.8123661 0.8301795 0.7940252 +0.8301795 0.8301795 0.7940252 +0.8475045 0.8301795 0.7940252 +0.8643761 0.8301795 0.7940252 +0.880825 0.8301795 0.7940252 +0.8968787 0.8301795 0.7940252 +0.9125621 0.8301795 0.7940252 +0.9278974 0.8301795 0.7940252 +0.9429048 0.8301795 0.7940252 +0.9576028 0.8301795 0.7940252 +0.9720079 0.8301795 0.7940252 +0.9861357 0.8301795 0.7940252 +1 0.8301795 0.7940252 +0 0.8475045 0.7940252 +0.1939468 0.8475045 0.7940252 +0.2773041 0.8475045 0.7940252 +0.3384659 0.8475045 0.7940252 +0.3885728 0.8475045 0.7940252 +0.4317928 0.8475045 0.7940252 +0.470214 0.8475045 0.7940252 +0.5050551 0.8475045 0.7940252 +0.5370987 0.8475045 0.7940252 +0.5668815 0.8475045 0.7940252 +0.5947903 0.8475045 0.7940252 +0.6211144 0.8475045 0.7940252 +0.6460766 0.8475045 0.7940252 +0.6698526 0.8475045 0.7940252 +0.6925839 0.8475045 0.7940252 +0.7143866 0.8475045 0.7940252 +0.7353569 0.8475045 0.7940252 +0.7555758 0.8475045 0.7940252 +0.7751122 0.8475045 0.7940252 +0.7940252 0.8475045 0.7940252 +0.8123661 0.8475045 0.7940252 +0.8301795 0.8475045 0.7940252 +0.8475045 0.8475045 0.7940252 +0.8643761 0.8475045 0.7940252 +0.880825 0.8475045 0.7940252 +0.8968787 0.8475045 0.7940252 +0.9125621 0.8475045 0.7940252 +0.9278974 0.8475045 0.7940252 +0.9429048 0.8475045 0.7940252 +0.9576028 0.8475045 0.7940252 +0.9720079 0.8475045 0.7940252 +0.9861357 0.8475045 0.7940252 +1 0.8475045 0.7940252 +0 0.8643761 0.7940252 +0.1939468 0.8643761 0.7940252 +0.2773041 0.8643761 0.7940252 +0.3384659 0.8643761 0.7940252 +0.3885728 0.8643761 0.7940252 +0.4317928 0.8643761 0.7940252 +0.470214 0.8643761 0.7940252 +0.5050551 0.8643761 0.7940252 +0.5370987 0.8643761 0.7940252 +0.5668815 0.8643761 0.7940252 +0.5947903 0.8643761 0.7940252 +0.6211144 0.8643761 0.7940252 +0.6460766 0.8643761 0.7940252 +0.6698526 0.8643761 0.7940252 +0.6925839 0.8643761 0.7940252 +0.7143866 0.8643761 0.7940252 +0.7353569 0.8643761 0.7940252 +0.7555758 0.8643761 0.7940252 +0.7751122 0.8643761 0.7940252 +0.7940252 0.8643761 0.7940252 +0.8123661 0.8643761 0.7940252 +0.8301795 0.8643761 0.7940252 +0.8475045 0.8643761 0.7940252 +0.8643761 0.8643761 0.7940252 +0.880825 0.8643761 0.7940252 +0.8968787 0.8643761 0.7940252 +0.9125621 0.8643761 0.7940252 +0.9278974 0.8643761 0.7940252 +0.9429048 0.8643761 0.7940252 +0.9576028 0.8643761 0.7940252 +0.9720079 0.8643761 0.7940252 +0.9861357 0.8643761 0.7940252 +1 0.8643761 0.7940252 +0 0.880825 0.7940252 +0.1939468 0.880825 0.7940252 +0.2773041 0.880825 0.7940252 +0.3384659 0.880825 0.7940252 +0.3885728 0.880825 0.7940252 +0.4317928 0.880825 0.7940252 +0.470214 0.880825 0.7940252 +0.5050551 0.880825 0.7940252 +0.5370987 0.880825 0.7940252 +0.5668815 0.880825 0.7940252 +0.5947903 0.880825 0.7940252 +0.6211144 0.880825 0.7940252 +0.6460766 0.880825 0.7940252 +0.6698526 0.880825 0.7940252 +0.6925839 0.880825 0.7940252 +0.7143866 0.880825 0.7940252 +0.7353569 0.880825 0.7940252 +0.7555758 0.880825 0.7940252 +0.7751122 0.880825 0.7940252 +0.7940252 0.880825 0.7940252 +0.8123661 0.880825 0.7940252 +0.8301795 0.880825 0.7940252 +0.8475045 0.880825 0.7940252 +0.8643761 0.880825 0.7940252 +0.880825 0.880825 0.7940252 +0.8968787 0.880825 0.7940252 +0.9125621 0.880825 0.7940252 +0.9278974 0.880825 0.7940252 +0.9429048 0.880825 0.7940252 +0.9576028 0.880825 0.7940252 +0.9720079 0.880825 0.7940252 +0.9861357 0.880825 0.7940252 +1 0.880825 0.7940252 +0 0.8968787 0.7940252 +0.1939468 0.8968787 0.7940252 +0.2773041 0.8968787 0.7940252 +0.3384659 0.8968787 0.7940252 +0.3885728 0.8968787 0.7940252 +0.4317928 0.8968787 0.7940252 +0.470214 0.8968787 0.7940252 +0.5050551 0.8968787 0.7940252 +0.5370987 0.8968787 0.7940252 +0.5668815 0.8968787 0.7940252 +0.5947903 0.8968787 0.7940252 +0.6211144 0.8968787 0.7940252 +0.6460766 0.8968787 0.7940252 +0.6698526 0.8968787 0.7940252 +0.6925839 0.8968787 0.7940252 +0.7143866 0.8968787 0.7940252 +0.7353569 0.8968787 0.7940252 +0.7555758 0.8968787 0.7940252 +0.7751122 0.8968787 0.7940252 +0.7940252 0.8968787 0.7940252 +0.8123661 0.8968787 0.7940252 +0.8301795 0.8968787 0.7940252 +0.8475045 0.8968787 0.7940252 +0.8643761 0.8968787 0.7940252 +0.880825 0.8968787 0.7940252 +0.8968787 0.8968787 0.7940252 +0.9125621 0.8968787 0.7940252 +0.9278974 0.8968787 0.7940252 +0.9429048 0.8968787 0.7940252 +0.9576028 0.8968787 0.7940252 +0.9720079 0.8968787 0.7940252 +0.9861357 0.8968787 0.7940252 +1 0.8968787 0.7940252 +0 0.9125621 0.7940252 +0.1939468 0.9125621 0.7940252 +0.2773041 0.9125621 0.7940252 +0.3384659 0.9125621 0.7940252 +0.3885728 0.9125621 0.7940252 +0.4317928 0.9125621 0.7940252 +0.470214 0.9125621 0.7940252 +0.5050551 0.9125621 0.7940252 +0.5370987 0.9125621 0.7940252 +0.5668815 0.9125621 0.7940252 +0.5947903 0.9125621 0.7940252 +0.6211144 0.9125621 0.7940252 +0.6460766 0.9125621 0.7940252 +0.6698526 0.9125621 0.7940252 +0.6925839 0.9125621 0.7940252 +0.7143866 0.9125621 0.7940252 +0.7353569 0.9125621 0.7940252 +0.7555758 0.9125621 0.7940252 +0.7751122 0.9125621 0.7940252 +0.7940252 0.9125621 0.7940252 +0.8123661 0.9125621 0.7940252 +0.8301795 0.9125621 0.7940252 +0.8475045 0.9125621 0.7940252 +0.8643761 0.9125621 0.7940252 +0.880825 0.9125621 0.7940252 +0.8968787 0.9125621 0.7940252 +0.9125621 0.9125621 0.7940252 +0.9278974 0.9125621 0.7940252 +0.9429048 0.9125621 0.7940252 +0.9576028 0.9125621 0.7940252 +0.9720079 0.9125621 0.7940252 +0.9861357 0.9125621 0.7940252 +1 0.9125621 0.7940252 +0 0.9278974 0.7940252 +0.1939468 0.9278974 0.7940252 +0.2773041 0.9278974 0.7940252 +0.3384659 0.9278974 0.7940252 +0.3885728 0.9278974 0.7940252 +0.4317928 0.9278974 0.7940252 +0.470214 0.9278974 0.7940252 +0.5050551 0.9278974 0.7940252 +0.5370987 0.9278974 0.7940252 +0.5668815 0.9278974 0.7940252 +0.5947903 0.9278974 0.7940252 +0.6211144 0.9278974 0.7940252 +0.6460766 0.9278974 0.7940252 +0.6698526 0.9278974 0.7940252 +0.6925839 0.9278974 0.7940252 +0.7143866 0.9278974 0.7940252 +0.7353569 0.9278974 0.7940252 +0.7555758 0.9278974 0.7940252 +0.7751122 0.9278974 0.7940252 +0.7940252 0.9278974 0.7940252 +0.8123661 0.9278974 0.7940252 +0.8301795 0.9278974 0.7940252 +0.8475045 0.9278974 0.7940252 +0.8643761 0.9278974 0.7940252 +0.880825 0.9278974 0.7940252 +0.8968787 0.9278974 0.7940252 +0.9125621 0.9278974 0.7940252 +0.9278974 0.9278974 0.7940252 +0.9429048 0.9278974 0.7940252 +0.9576028 0.9278974 0.7940252 +0.9720079 0.9278974 0.7940252 +0.9861357 0.9278974 0.7940252 +1 0.9278974 0.7940252 +0 0.9429048 0.7940252 +0.1939468 0.9429048 0.7940252 +0.2773041 0.9429048 0.7940252 +0.3384659 0.9429048 0.7940252 +0.3885728 0.9429048 0.7940252 +0.4317928 0.9429048 0.7940252 +0.470214 0.9429048 0.7940252 +0.5050551 0.9429048 0.7940252 +0.5370987 0.9429048 0.7940252 +0.5668815 0.9429048 0.7940252 +0.5947903 0.9429048 0.7940252 +0.6211144 0.9429048 0.7940252 +0.6460766 0.9429048 0.7940252 +0.6698526 0.9429048 0.7940252 +0.6925839 0.9429048 0.7940252 +0.7143866 0.9429048 0.7940252 +0.7353569 0.9429048 0.7940252 +0.7555758 0.9429048 0.7940252 +0.7751122 0.9429048 0.7940252 +0.7940252 0.9429048 0.7940252 +0.8123661 0.9429048 0.7940252 +0.8301795 0.9429048 0.7940252 +0.8475045 0.9429048 0.7940252 +0.8643761 0.9429048 0.7940252 +0.880825 0.9429048 0.7940252 +0.8968787 0.9429048 0.7940252 +0.9125621 0.9429048 0.7940252 +0.9278974 0.9429048 0.7940252 +0.9429048 0.9429048 0.7940252 +0.9576028 0.9429048 0.7940252 +0.9720079 0.9429048 0.7940252 +0.9861357 0.9429048 0.7940252 +1 0.9429048 0.7940252 +0 0.9576028 0.7940252 +0.1939468 0.9576028 0.7940252 +0.2773041 0.9576028 0.7940252 +0.3384659 0.9576028 0.7940252 +0.3885728 0.9576028 0.7940252 +0.4317928 0.9576028 0.7940252 +0.470214 0.9576028 0.7940252 +0.5050551 0.9576028 0.7940252 +0.5370987 0.9576028 0.7940252 +0.5668815 0.9576028 0.7940252 +0.5947903 0.9576028 0.7940252 +0.6211144 0.9576028 0.7940252 +0.6460766 0.9576028 0.7940252 +0.6698526 0.9576028 0.7940252 +0.6925839 0.9576028 0.7940252 +0.7143866 0.9576028 0.7940252 +0.7353569 0.9576028 0.7940252 +0.7555758 0.9576028 0.7940252 +0.7751122 0.9576028 0.7940252 +0.7940252 0.9576028 0.7940252 +0.8123661 0.9576028 0.7940252 +0.8301795 0.9576028 0.7940252 +0.8475045 0.9576028 0.7940252 +0.8643761 0.9576028 0.7940252 +0.880825 0.9576028 0.7940252 +0.8968787 0.9576028 0.7940252 +0.9125621 0.9576028 0.7940252 +0.9278974 0.9576028 0.7940252 +0.9429048 0.9576028 0.7940252 +0.9576028 0.9576028 0.7940252 +0.9720079 0.9576028 0.7940252 +0.9861357 0.9576028 0.7940252 +1 0.9576028 0.7940252 +0 0.9720079 0.7940252 +0.1939468 0.9720079 0.7940252 +0.2773041 0.9720079 0.7940252 +0.3384659 0.9720079 0.7940252 +0.3885728 0.9720079 0.7940252 +0.4317928 0.9720079 0.7940252 +0.470214 0.9720079 0.7940252 +0.5050551 0.9720079 0.7940252 +0.5370987 0.9720079 0.7940252 +0.5668815 0.9720079 0.7940252 +0.5947903 0.9720079 0.7940252 +0.6211144 0.9720079 0.7940252 +0.6460766 0.9720079 0.7940252 +0.6698526 0.9720079 0.7940252 +0.6925839 0.9720079 0.7940252 +0.7143866 0.9720079 0.7940252 +0.7353569 0.9720079 0.7940252 +0.7555758 0.9720079 0.7940252 +0.7751122 0.9720079 0.7940252 +0.7940252 0.9720079 0.7940252 +0.8123661 0.9720079 0.7940252 +0.8301795 0.9720079 0.7940252 +0.8475045 0.9720079 0.7940252 +0.8643761 0.9720079 0.7940252 +0.880825 0.9720079 0.7940252 +0.8968787 0.9720079 0.7940252 +0.9125621 0.9720079 0.7940252 +0.9278974 0.9720079 0.7940252 +0.9429048 0.9720079 0.7940252 +0.9576028 0.9720079 0.7940252 +0.9720079 0.9720079 0.7940252 +0.9861357 0.9720079 0.7940252 +1 0.9720079 0.7940252 +0 0.9861357 0.7940252 +0.1939468 0.9861357 0.7940252 +0.2773041 0.9861357 0.7940252 +0.3384659 0.9861357 0.7940252 +0.3885728 0.9861357 0.7940252 +0.4317928 0.9861357 0.7940252 +0.470214 0.9861357 0.7940252 +0.5050551 0.9861357 0.7940252 +0.5370987 0.9861357 0.7940252 +0.5668815 0.9861357 0.7940252 +0.5947903 0.9861357 0.7940252 +0.6211144 0.9861357 0.7940252 +0.6460766 0.9861357 0.7940252 +0.6698526 0.9861357 0.7940252 +0.6925839 0.9861357 0.7940252 +0.7143866 0.9861357 0.7940252 +0.7353569 0.9861357 0.7940252 +0.7555758 0.9861357 0.7940252 +0.7751122 0.9861357 0.7940252 +0.7940252 0.9861357 0.7940252 +0.8123661 0.9861357 0.7940252 +0.8301795 0.9861357 0.7940252 +0.8475045 0.9861357 0.7940252 +0.8643761 0.9861357 0.7940252 +0.880825 0.9861357 0.7940252 +0.8968787 0.9861357 0.7940252 +0.9125621 0.9861357 0.7940252 +0.9278974 0.9861357 0.7940252 +0.9429048 0.9861357 0.7940252 +0.9576028 0.9861357 0.7940252 +0.9720079 0.9861357 0.7940252 +0.9861357 0.9861357 0.7940252 +1 0.9861357 0.7940252 +0 1 0.7940252 +0.1939468 1 0.7940252 +0.2773041 1 0.7940252 +0.3384659 1 0.7940252 +0.3885728 1 0.7940252 +0.4317928 1 0.7940252 +0.470214 1 0.7940252 +0.5050551 1 0.7940252 +0.5370987 1 0.7940252 +0.5668815 1 0.7940252 +0.5947903 1 0.7940252 +0.6211144 1 0.7940252 +0.6460766 1 0.7940252 +0.6698526 1 0.7940252 +0.6925839 1 0.7940252 +0.7143866 1 0.7940252 +0.7353569 1 0.7940252 +0.7555758 1 0.7940252 +0.7751122 1 0.7940252 +0.7940252 1 0.7940252 +0.8123661 1 0.7940252 +0.8301795 1 0.7940252 +0.8475045 1 0.7940252 +0.8643761 1 0.7940252 +0.880825 1 0.7940252 +0.8968787 1 0.7940252 +0.9125621 1 0.7940252 +0.9278974 1 0.7940252 +0.9429048 1 0.7940252 +0.9576028 1 0.7940252 +0.9720079 1 0.7940252 +0.9861357 1 0.7940252 +1 1 0.7940252 +0 0 0.8123661 +0.1939468 0 0.8123661 +0.2773041 0 0.8123661 +0.3384659 0 0.8123661 +0.3885728 0 0.8123661 +0.4317928 0 0.8123661 +0.470214 0 0.8123661 +0.5050551 0 0.8123661 +0.5370987 0 0.8123661 +0.5668815 0 0.8123661 +0.5947903 0 0.8123661 +0.6211144 0 0.8123661 +0.6460766 0 0.8123661 +0.6698526 0 0.8123661 +0.6925839 0 0.8123661 +0.7143866 0 0.8123661 +0.7353569 0 0.8123661 +0.7555758 0 0.8123661 +0.7751122 0 0.8123661 +0.7940252 0 0.8123661 +0.8123661 0 0.8123661 +0.8301795 0 0.8123661 +0.8475045 0 0.8123661 +0.8643761 0 0.8123661 +0.880825 0 0.8123661 +0.8968787 0 0.8123661 +0.9125621 0 0.8123661 +0.9278974 0 0.8123661 +0.9429048 0 0.8123661 +0.9576028 0 0.8123661 +0.9720079 0 0.8123661 +0.9861357 0 0.8123661 +1 0 0.8123661 +0 0.1939468 0.8123661 +0.1939468 0.1939468 0.8123661 +0.2773041 0.1939468 0.8123661 +0.3384659 0.1939468 0.8123661 +0.3885728 0.1939468 0.8123661 +0.4317928 0.1939468 0.8123661 +0.470214 0.1939468 0.8123661 +0.5050551 0.1939468 0.8123661 +0.5370987 0.1939468 0.8123661 +0.5668815 0.1939468 0.8123661 +0.5947903 0.1939468 0.8123661 +0.6211144 0.1939468 0.8123661 +0.6460766 0.1939468 0.8123661 +0.6698526 0.1939468 0.8123661 +0.6925839 0.1939468 0.8123661 +0.7143866 0.1939468 0.8123661 +0.7353569 0.1939468 0.8123661 +0.7555758 0.1939468 0.8123661 +0.7751122 0.1939468 0.8123661 +0.7940252 0.1939468 0.8123661 +0.8123661 0.1939468 0.8123661 +0.8301795 0.1939468 0.8123661 +0.8475045 0.1939468 0.8123661 +0.8643761 0.1939468 0.8123661 +0.880825 0.1939468 0.8123661 +0.8968787 0.1939468 0.8123661 +0.9125621 0.1939468 0.8123661 +0.9278974 0.1939468 0.8123661 +0.9429048 0.1939468 0.8123661 +0.9576028 0.1939468 0.8123661 +0.9720079 0.1939468 0.8123661 +0.9861357 0.1939468 0.8123661 +1 0.1939468 0.8123661 +0 0.2773041 0.8123661 +0.1939468 0.2773041 0.8123661 +0.2773041 0.2773041 0.8123661 +0.3384659 0.2773041 0.8123661 +0.3885728 0.2773041 0.8123661 +0.4317928 0.2773041 0.8123661 +0.470214 0.2773041 0.8123661 +0.5050551 0.2773041 0.8123661 +0.5370987 0.2773041 0.8123661 +0.5668815 0.2773041 0.8123661 +0.5947903 0.2773041 0.8123661 +0.6211144 0.2773041 0.8123661 +0.6460766 0.2773041 0.8123661 +0.6698526 0.2773041 0.8123661 +0.6925839 0.2773041 0.8123661 +0.7143866 0.2773041 0.8123661 +0.7353569 0.2773041 0.8123661 +0.7555758 0.2773041 0.8123661 +0.7751122 0.2773041 0.8123661 +0.7940252 0.2773041 0.8123661 +0.8123661 0.2773041 0.8123661 +0.8301795 0.2773041 0.8123661 +0.8475045 0.2773041 0.8123661 +0.8643761 0.2773041 0.8123661 +0.880825 0.2773041 0.8123661 +0.8968787 0.2773041 0.8123661 +0.9125621 0.2773041 0.8123661 +0.9278974 0.2773041 0.8123661 +0.9429048 0.2773041 0.8123661 +0.9576028 0.2773041 0.8123661 +0.9720079 0.2773041 0.8123661 +0.9861357 0.2773041 0.8123661 +1 0.2773041 0.8123661 +0 0.3384659 0.8123661 +0.1939468 0.3384659 0.8123661 +0.2773041 0.3384659 0.8123661 +0.3384659 0.3384659 0.8123661 +0.3885728 0.3384659 0.8123661 +0.4317928 0.3384659 0.8123661 +0.470214 0.3384659 0.8123661 +0.5050551 0.3384659 0.8123661 +0.5370987 0.3384659 0.8123661 +0.5668815 0.3384659 0.8123661 +0.5947903 0.3384659 0.8123661 +0.6211144 0.3384659 0.8123661 +0.6460766 0.3384659 0.8123661 +0.6698526 0.3384659 0.8123661 +0.6925839 0.3384659 0.8123661 +0.7143866 0.3384659 0.8123661 +0.7353569 0.3384659 0.8123661 +0.7555758 0.3384659 0.8123661 +0.7751122 0.3384659 0.8123661 +0.7940252 0.3384659 0.8123661 +0.8123661 0.3384659 0.8123661 +0.8301795 0.3384659 0.8123661 +0.8475045 0.3384659 0.8123661 +0.8643761 0.3384659 0.8123661 +0.880825 0.3384659 0.8123661 +0.8968787 0.3384659 0.8123661 +0.9125621 0.3384659 0.8123661 +0.9278974 0.3384659 0.8123661 +0.9429048 0.3384659 0.8123661 +0.9576028 0.3384659 0.8123661 +0.9720079 0.3384659 0.8123661 +0.9861357 0.3384659 0.8123661 +1 0.3384659 0.8123661 +0 0.3885728 0.8123661 +0.1939468 0.3885728 0.8123661 +0.2773041 0.3885728 0.8123661 +0.3384659 0.3885728 0.8123661 +0.3885728 0.3885728 0.8123661 +0.4317928 0.3885728 0.8123661 +0.470214 0.3885728 0.8123661 +0.5050551 0.3885728 0.8123661 +0.5370987 0.3885728 0.8123661 +0.5668815 0.3885728 0.8123661 +0.5947903 0.3885728 0.8123661 +0.6211144 0.3885728 0.8123661 +0.6460766 0.3885728 0.8123661 +0.6698526 0.3885728 0.8123661 +0.6925839 0.3885728 0.8123661 +0.7143866 0.3885728 0.8123661 +0.7353569 0.3885728 0.8123661 +0.7555758 0.3885728 0.8123661 +0.7751122 0.3885728 0.8123661 +0.7940252 0.3885728 0.8123661 +0.8123661 0.3885728 0.8123661 +0.8301795 0.3885728 0.8123661 +0.8475045 0.3885728 0.8123661 +0.8643761 0.3885728 0.8123661 +0.880825 0.3885728 0.8123661 +0.8968787 0.3885728 0.8123661 +0.9125621 0.3885728 0.8123661 +0.9278974 0.3885728 0.8123661 +0.9429048 0.3885728 0.8123661 +0.9576028 0.3885728 0.8123661 +0.9720079 0.3885728 0.8123661 +0.9861357 0.3885728 0.8123661 +1 0.3885728 0.8123661 +0 0.4317928 0.8123661 +0.1939468 0.4317928 0.8123661 +0.2773041 0.4317928 0.8123661 +0.3384659 0.4317928 0.8123661 +0.3885728 0.4317928 0.8123661 +0.4317928 0.4317928 0.8123661 +0.470214 0.4317928 0.8123661 +0.5050551 0.4317928 0.8123661 +0.5370987 0.4317928 0.8123661 +0.5668815 0.4317928 0.8123661 +0.5947903 0.4317928 0.8123661 +0.6211144 0.4317928 0.8123661 +0.6460766 0.4317928 0.8123661 +0.6698526 0.4317928 0.8123661 +0.6925839 0.4317928 0.8123661 +0.7143866 0.4317928 0.8123661 +0.7353569 0.4317928 0.8123661 +0.7555758 0.4317928 0.8123661 +0.7751122 0.4317928 0.8123661 +0.7940252 0.4317928 0.8123661 +0.8123661 0.4317928 0.8123661 +0.8301795 0.4317928 0.8123661 +0.8475045 0.4317928 0.8123661 +0.8643761 0.4317928 0.8123661 +0.880825 0.4317928 0.8123661 +0.8968787 0.4317928 0.8123661 +0.9125621 0.4317928 0.8123661 +0.9278974 0.4317928 0.8123661 +0.9429048 0.4317928 0.8123661 +0.9576028 0.4317928 0.8123661 +0.9720079 0.4317928 0.8123661 +0.9861357 0.4317928 0.8123661 +1 0.4317928 0.8123661 +0 0.470214 0.8123661 +0.1939468 0.470214 0.8123661 +0.2773041 0.470214 0.8123661 +0.3384659 0.470214 0.8123661 +0.3885728 0.470214 0.8123661 +0.4317928 0.470214 0.8123661 +0.470214 0.470214 0.8123661 +0.5050551 0.470214 0.8123661 +0.5370987 0.470214 0.8123661 +0.5668815 0.470214 0.8123661 +0.5947903 0.470214 0.8123661 +0.6211144 0.470214 0.8123661 +0.6460766 0.470214 0.8123661 +0.6698526 0.470214 0.8123661 +0.6925839 0.470214 0.8123661 +0.7143866 0.470214 0.8123661 +0.7353569 0.470214 0.8123661 +0.7555758 0.470214 0.8123661 +0.7751122 0.470214 0.8123661 +0.7940252 0.470214 0.8123661 +0.8123661 0.470214 0.8123661 +0.8301795 0.470214 0.8123661 +0.8475045 0.470214 0.8123661 +0.8643761 0.470214 0.8123661 +0.880825 0.470214 0.8123661 +0.8968787 0.470214 0.8123661 +0.9125621 0.470214 0.8123661 +0.9278974 0.470214 0.8123661 +0.9429048 0.470214 0.8123661 +0.9576028 0.470214 0.8123661 +0.9720079 0.470214 0.8123661 +0.9861357 0.470214 0.8123661 +1 0.470214 0.8123661 +0 0.5050551 0.8123661 +0.1939468 0.5050551 0.8123661 +0.2773041 0.5050551 0.8123661 +0.3384659 0.5050551 0.8123661 +0.3885728 0.5050551 0.8123661 +0.4317928 0.5050551 0.8123661 +0.470214 0.5050551 0.8123661 +0.5050551 0.5050551 0.8123661 +0.5370987 0.5050551 0.8123661 +0.5668815 0.5050551 0.8123661 +0.5947903 0.5050551 0.8123661 +0.6211144 0.5050551 0.8123661 +0.6460766 0.5050551 0.8123661 +0.6698526 0.5050551 0.8123661 +0.6925839 0.5050551 0.8123661 +0.7143866 0.5050551 0.8123661 +0.7353569 0.5050551 0.8123661 +0.7555758 0.5050551 0.8123661 +0.7751122 0.5050551 0.8123661 +0.7940252 0.5050551 0.8123661 +0.8123661 0.5050551 0.8123661 +0.8301795 0.5050551 0.8123661 +0.8475045 0.5050551 0.8123661 +0.8643761 0.5050551 0.8123661 +0.880825 0.5050551 0.8123661 +0.8968787 0.5050551 0.8123661 +0.9125621 0.5050551 0.8123661 +0.9278974 0.5050551 0.8123661 +0.9429048 0.5050551 0.8123661 +0.9576028 0.5050551 0.8123661 +0.9720079 0.5050551 0.8123661 +0.9861357 0.5050551 0.8123661 +1 0.5050551 0.8123661 +0 0.5370987 0.8123661 +0.1939468 0.5370987 0.8123661 +0.2773041 0.5370987 0.8123661 +0.3384659 0.5370987 0.8123661 +0.3885728 0.5370987 0.8123661 +0.4317928 0.5370987 0.8123661 +0.470214 0.5370987 0.8123661 +0.5050551 0.5370987 0.8123661 +0.5370987 0.5370987 0.8123661 +0.5668815 0.5370987 0.8123661 +0.5947903 0.5370987 0.8123661 +0.6211144 0.5370987 0.8123661 +0.6460766 0.5370987 0.8123661 +0.6698526 0.5370987 0.8123661 +0.6925839 0.5370987 0.8123661 +0.7143866 0.5370987 0.8123661 +0.7353569 0.5370987 0.8123661 +0.7555758 0.5370987 0.8123661 +0.7751122 0.5370987 0.8123661 +0.7940252 0.5370987 0.8123661 +0.8123661 0.5370987 0.8123661 +0.8301795 0.5370987 0.8123661 +0.8475045 0.5370987 0.8123661 +0.8643761 0.5370987 0.8123661 +0.880825 0.5370987 0.8123661 +0.8968787 0.5370987 0.8123661 +0.9125621 0.5370987 0.8123661 +0.9278974 0.5370987 0.8123661 +0.9429048 0.5370987 0.8123661 +0.9576028 0.5370987 0.8123661 +0.9720079 0.5370987 0.8123661 +0.9861357 0.5370987 0.8123661 +1 0.5370987 0.8123661 +0 0.5668815 0.8123661 +0.1939468 0.5668815 0.8123661 +0.2773041 0.5668815 0.8123661 +0.3384659 0.5668815 0.8123661 +0.3885728 0.5668815 0.8123661 +0.4317928 0.5668815 0.8123661 +0.470214 0.5668815 0.8123661 +0.5050551 0.5668815 0.8123661 +0.5370987 0.5668815 0.8123661 +0.5668815 0.5668815 0.8123661 +0.5947903 0.5668815 0.8123661 +0.6211144 0.5668815 0.8123661 +0.6460766 0.5668815 0.8123661 +0.6698526 0.5668815 0.8123661 +0.6925839 0.5668815 0.8123661 +0.7143866 0.5668815 0.8123661 +0.7353569 0.5668815 0.8123661 +0.7555758 0.5668815 0.8123661 +0.7751122 0.5668815 0.8123661 +0.7940252 0.5668815 0.8123661 +0.8123661 0.5668815 0.8123661 +0.8301795 0.5668815 0.8123661 +0.8475045 0.5668815 0.8123661 +0.8643761 0.5668815 0.8123661 +0.880825 0.5668815 0.8123661 +0.8968787 0.5668815 0.8123661 +0.9125621 0.5668815 0.8123661 +0.9278974 0.5668815 0.8123661 +0.9429048 0.5668815 0.8123661 +0.9576028 0.5668815 0.8123661 +0.9720079 0.5668815 0.8123661 +0.9861357 0.5668815 0.8123661 +1 0.5668815 0.8123661 +0 0.5947903 0.8123661 +0.1939468 0.5947903 0.8123661 +0.2773041 0.5947903 0.8123661 +0.3384659 0.5947903 0.8123661 +0.3885728 0.5947903 0.8123661 +0.4317928 0.5947903 0.8123661 +0.470214 0.5947903 0.8123661 +0.5050551 0.5947903 0.8123661 +0.5370987 0.5947903 0.8123661 +0.5668815 0.5947903 0.8123661 +0.5947903 0.5947903 0.8123661 +0.6211144 0.5947903 0.8123661 +0.6460766 0.5947903 0.8123661 +0.6698526 0.5947903 0.8123661 +0.6925839 0.5947903 0.8123661 +0.7143866 0.5947903 0.8123661 +0.7353569 0.5947903 0.8123661 +0.7555758 0.5947903 0.8123661 +0.7751122 0.5947903 0.8123661 +0.7940252 0.5947903 0.8123661 +0.8123661 0.5947903 0.8123661 +0.8301795 0.5947903 0.8123661 +0.8475045 0.5947903 0.8123661 +0.8643761 0.5947903 0.8123661 +0.880825 0.5947903 0.8123661 +0.8968787 0.5947903 0.8123661 +0.9125621 0.5947903 0.8123661 +0.9278974 0.5947903 0.8123661 +0.9429048 0.5947903 0.8123661 +0.9576028 0.5947903 0.8123661 +0.9720079 0.5947903 0.8123661 +0.9861357 0.5947903 0.8123661 +1 0.5947903 0.8123661 +0 0.6211144 0.8123661 +0.1939468 0.6211144 0.8123661 +0.2773041 0.6211144 0.8123661 +0.3384659 0.6211144 0.8123661 +0.3885728 0.6211144 0.8123661 +0.4317928 0.6211144 0.8123661 +0.470214 0.6211144 0.8123661 +0.5050551 0.6211144 0.8123661 +0.5370987 0.6211144 0.8123661 +0.5668815 0.6211144 0.8123661 +0.5947903 0.6211144 0.8123661 +0.6211144 0.6211144 0.8123661 +0.6460766 0.6211144 0.8123661 +0.6698526 0.6211144 0.8123661 +0.6925839 0.6211144 0.8123661 +0.7143866 0.6211144 0.8123661 +0.7353569 0.6211144 0.8123661 +0.7555758 0.6211144 0.8123661 +0.7751122 0.6211144 0.8123661 +0.7940252 0.6211144 0.8123661 +0.8123661 0.6211144 0.8123661 +0.8301795 0.6211144 0.8123661 +0.8475045 0.6211144 0.8123661 +0.8643761 0.6211144 0.8123661 +0.880825 0.6211144 0.8123661 +0.8968787 0.6211144 0.8123661 +0.9125621 0.6211144 0.8123661 +0.9278974 0.6211144 0.8123661 +0.9429048 0.6211144 0.8123661 +0.9576028 0.6211144 0.8123661 +0.9720079 0.6211144 0.8123661 +0.9861357 0.6211144 0.8123661 +1 0.6211144 0.8123661 +0 0.6460766 0.8123661 +0.1939468 0.6460766 0.8123661 +0.2773041 0.6460766 0.8123661 +0.3384659 0.6460766 0.8123661 +0.3885728 0.6460766 0.8123661 +0.4317928 0.6460766 0.8123661 +0.470214 0.6460766 0.8123661 +0.5050551 0.6460766 0.8123661 +0.5370987 0.6460766 0.8123661 +0.5668815 0.6460766 0.8123661 +0.5947903 0.6460766 0.8123661 +0.6211144 0.6460766 0.8123661 +0.6460766 0.6460766 0.8123661 +0.6698526 0.6460766 0.8123661 +0.6925839 0.6460766 0.8123661 +0.7143866 0.6460766 0.8123661 +0.7353569 0.6460766 0.8123661 +0.7555758 0.6460766 0.8123661 +0.7751122 0.6460766 0.8123661 +0.7940252 0.6460766 0.8123661 +0.8123661 0.6460766 0.8123661 +0.8301795 0.6460766 0.8123661 +0.8475045 0.6460766 0.8123661 +0.8643761 0.6460766 0.8123661 +0.880825 0.6460766 0.8123661 +0.8968787 0.6460766 0.8123661 +0.9125621 0.6460766 0.8123661 +0.9278974 0.6460766 0.8123661 +0.9429048 0.6460766 0.8123661 +0.9576028 0.6460766 0.8123661 +0.9720079 0.6460766 0.8123661 +0.9861357 0.6460766 0.8123661 +1 0.6460766 0.8123661 +0 0.6698526 0.8123661 +0.1939468 0.6698526 0.8123661 +0.2773041 0.6698526 0.8123661 +0.3384659 0.6698526 0.8123661 +0.3885728 0.6698526 0.8123661 +0.4317928 0.6698526 0.8123661 +0.470214 0.6698526 0.8123661 +0.5050551 0.6698526 0.8123661 +0.5370987 0.6698526 0.8123661 +0.5668815 0.6698526 0.8123661 +0.5947903 0.6698526 0.8123661 +0.6211144 0.6698526 0.8123661 +0.6460766 0.6698526 0.8123661 +0.6698526 0.6698526 0.8123661 +0.6925839 0.6698526 0.8123661 +0.7143866 0.6698526 0.8123661 +0.7353569 0.6698526 0.8123661 +0.7555758 0.6698526 0.8123661 +0.7751122 0.6698526 0.8123661 +0.7940252 0.6698526 0.8123661 +0.8123661 0.6698526 0.8123661 +0.8301795 0.6698526 0.8123661 +0.8475045 0.6698526 0.8123661 +0.8643761 0.6698526 0.8123661 +0.880825 0.6698526 0.8123661 +0.8968787 0.6698526 0.8123661 +0.9125621 0.6698526 0.8123661 +0.9278974 0.6698526 0.8123661 +0.9429048 0.6698526 0.8123661 +0.9576028 0.6698526 0.8123661 +0.9720079 0.6698526 0.8123661 +0.9861357 0.6698526 0.8123661 +1 0.6698526 0.8123661 +0 0.6925839 0.8123661 +0.1939468 0.6925839 0.8123661 +0.2773041 0.6925839 0.8123661 +0.3384659 0.6925839 0.8123661 +0.3885728 0.6925839 0.8123661 +0.4317928 0.6925839 0.8123661 +0.470214 0.6925839 0.8123661 +0.5050551 0.6925839 0.8123661 +0.5370987 0.6925839 0.8123661 +0.5668815 0.6925839 0.8123661 +0.5947903 0.6925839 0.8123661 +0.6211144 0.6925839 0.8123661 +0.6460766 0.6925839 0.8123661 +0.6698526 0.6925839 0.8123661 +0.6925839 0.6925839 0.8123661 +0.7143866 0.6925839 0.8123661 +0.7353569 0.6925839 0.8123661 +0.7555758 0.6925839 0.8123661 +0.7751122 0.6925839 0.8123661 +0.7940252 0.6925839 0.8123661 +0.8123661 0.6925839 0.8123661 +0.8301795 0.6925839 0.8123661 +0.8475045 0.6925839 0.8123661 +0.8643761 0.6925839 0.8123661 +0.880825 0.6925839 0.8123661 +0.8968787 0.6925839 0.8123661 +0.9125621 0.6925839 0.8123661 +0.9278974 0.6925839 0.8123661 +0.9429048 0.6925839 0.8123661 +0.9576028 0.6925839 0.8123661 +0.9720079 0.6925839 0.8123661 +0.9861357 0.6925839 0.8123661 +1 0.6925839 0.8123661 +0 0.7143866 0.8123661 +0.1939468 0.7143866 0.8123661 +0.2773041 0.7143866 0.8123661 +0.3384659 0.7143866 0.8123661 +0.3885728 0.7143866 0.8123661 +0.4317928 0.7143866 0.8123661 +0.470214 0.7143866 0.8123661 +0.5050551 0.7143866 0.8123661 +0.5370987 0.7143866 0.8123661 +0.5668815 0.7143866 0.8123661 +0.5947903 0.7143866 0.8123661 +0.6211144 0.7143866 0.8123661 +0.6460766 0.7143866 0.8123661 +0.6698526 0.7143866 0.8123661 +0.6925839 0.7143866 0.8123661 +0.7143866 0.7143866 0.8123661 +0.7353569 0.7143866 0.8123661 +0.7555758 0.7143866 0.8123661 +0.7751122 0.7143866 0.8123661 +0.7940252 0.7143866 0.8123661 +0.8123661 0.7143866 0.8123661 +0.8301795 0.7143866 0.8123661 +0.8475045 0.7143866 0.8123661 +0.8643761 0.7143866 0.8123661 +0.880825 0.7143866 0.8123661 +0.8968787 0.7143866 0.8123661 +0.9125621 0.7143866 0.8123661 +0.9278974 0.7143866 0.8123661 +0.9429048 0.7143866 0.8123661 +0.9576028 0.7143866 0.8123661 +0.9720079 0.7143866 0.8123661 +0.9861357 0.7143866 0.8123661 +1 0.7143866 0.8123661 +0 0.7353569 0.8123661 +0.1939468 0.7353569 0.8123661 +0.2773041 0.7353569 0.8123661 +0.3384659 0.7353569 0.8123661 +0.3885728 0.7353569 0.8123661 +0.4317928 0.7353569 0.8123661 +0.470214 0.7353569 0.8123661 +0.5050551 0.7353569 0.8123661 +0.5370987 0.7353569 0.8123661 +0.5668815 0.7353569 0.8123661 +0.5947903 0.7353569 0.8123661 +0.6211144 0.7353569 0.8123661 +0.6460766 0.7353569 0.8123661 +0.6698526 0.7353569 0.8123661 +0.6925839 0.7353569 0.8123661 +0.7143866 0.7353569 0.8123661 +0.7353569 0.7353569 0.8123661 +0.7555758 0.7353569 0.8123661 +0.7751122 0.7353569 0.8123661 +0.7940252 0.7353569 0.8123661 +0.8123661 0.7353569 0.8123661 +0.8301795 0.7353569 0.8123661 +0.8475045 0.7353569 0.8123661 +0.8643761 0.7353569 0.8123661 +0.880825 0.7353569 0.8123661 +0.8968787 0.7353569 0.8123661 +0.9125621 0.7353569 0.8123661 +0.9278974 0.7353569 0.8123661 +0.9429048 0.7353569 0.8123661 +0.9576028 0.7353569 0.8123661 +0.9720079 0.7353569 0.8123661 +0.9861357 0.7353569 0.8123661 +1 0.7353569 0.8123661 +0 0.7555758 0.8123661 +0.1939468 0.7555758 0.8123661 +0.2773041 0.7555758 0.8123661 +0.3384659 0.7555758 0.8123661 +0.3885728 0.7555758 0.8123661 +0.4317928 0.7555758 0.8123661 +0.470214 0.7555758 0.8123661 +0.5050551 0.7555758 0.8123661 +0.5370987 0.7555758 0.8123661 +0.5668815 0.7555758 0.8123661 +0.5947903 0.7555758 0.8123661 +0.6211144 0.7555758 0.8123661 +0.6460766 0.7555758 0.8123661 +0.6698526 0.7555758 0.8123661 +0.6925839 0.7555758 0.8123661 +0.7143866 0.7555758 0.8123661 +0.7353569 0.7555758 0.8123661 +0.7555758 0.7555758 0.8123661 +0.7751122 0.7555758 0.8123661 +0.7940252 0.7555758 0.8123661 +0.8123661 0.7555758 0.8123661 +0.8301795 0.7555758 0.8123661 +0.8475045 0.7555758 0.8123661 +0.8643761 0.7555758 0.8123661 +0.880825 0.7555758 0.8123661 +0.8968787 0.7555758 0.8123661 +0.9125621 0.7555758 0.8123661 +0.9278974 0.7555758 0.8123661 +0.9429048 0.7555758 0.8123661 +0.9576028 0.7555758 0.8123661 +0.9720079 0.7555758 0.8123661 +0.9861357 0.7555758 0.8123661 +1 0.7555758 0.8123661 +0 0.7751122 0.8123661 +0.1939468 0.7751122 0.8123661 +0.2773041 0.7751122 0.8123661 +0.3384659 0.7751122 0.8123661 +0.3885728 0.7751122 0.8123661 +0.4317928 0.7751122 0.8123661 +0.470214 0.7751122 0.8123661 +0.5050551 0.7751122 0.8123661 +0.5370987 0.7751122 0.8123661 +0.5668815 0.7751122 0.8123661 +0.5947903 0.7751122 0.8123661 +0.6211144 0.7751122 0.8123661 +0.6460766 0.7751122 0.8123661 +0.6698526 0.7751122 0.8123661 +0.6925839 0.7751122 0.8123661 +0.7143866 0.7751122 0.8123661 +0.7353569 0.7751122 0.8123661 +0.7555758 0.7751122 0.8123661 +0.7751122 0.7751122 0.8123661 +0.7940252 0.7751122 0.8123661 +0.8123661 0.7751122 0.8123661 +0.8301795 0.7751122 0.8123661 +0.8475045 0.7751122 0.8123661 +0.8643761 0.7751122 0.8123661 +0.880825 0.7751122 0.8123661 +0.8968787 0.7751122 0.8123661 +0.9125621 0.7751122 0.8123661 +0.9278974 0.7751122 0.8123661 +0.9429048 0.7751122 0.8123661 +0.9576028 0.7751122 0.8123661 +0.9720079 0.7751122 0.8123661 +0.9861357 0.7751122 0.8123661 +1 0.7751122 0.8123661 +0 0.7940252 0.8123661 +0.1939468 0.7940252 0.8123661 +0.2773041 0.7940252 0.8123661 +0.3384659 0.7940252 0.8123661 +0.3885728 0.7940252 0.8123661 +0.4317928 0.7940252 0.8123661 +0.470214 0.7940252 0.8123661 +0.5050551 0.7940252 0.8123661 +0.5370987 0.7940252 0.8123661 +0.5668815 0.7940252 0.8123661 +0.5947903 0.7940252 0.8123661 +0.6211144 0.7940252 0.8123661 +0.6460766 0.7940252 0.8123661 +0.6698526 0.7940252 0.8123661 +0.6925839 0.7940252 0.8123661 +0.7143866 0.7940252 0.8123661 +0.7353569 0.7940252 0.8123661 +0.7555758 0.7940252 0.8123661 +0.7751122 0.7940252 0.8123661 +0.7940252 0.7940252 0.8123661 +0.8123661 0.7940252 0.8123661 +0.8301795 0.7940252 0.8123661 +0.8475045 0.7940252 0.8123661 +0.8643761 0.7940252 0.8123661 +0.880825 0.7940252 0.8123661 +0.8968787 0.7940252 0.8123661 +0.9125621 0.7940252 0.8123661 +0.9278974 0.7940252 0.8123661 +0.9429048 0.7940252 0.8123661 +0.9576028 0.7940252 0.8123661 +0.9720079 0.7940252 0.8123661 +0.9861357 0.7940252 0.8123661 +1 0.7940252 0.8123661 +0 0.8123661 0.8123661 +0.1939468 0.8123661 0.8123661 +0.2773041 0.8123661 0.8123661 +0.3384659 0.8123661 0.8123661 +0.3885728 0.8123661 0.8123661 +0.4317928 0.8123661 0.8123661 +0.470214 0.8123661 0.8123661 +0.5050551 0.8123661 0.8123661 +0.5370987 0.8123661 0.8123661 +0.5668815 0.8123661 0.8123661 +0.5947903 0.8123661 0.8123661 +0.6211144 0.8123661 0.8123661 +0.6460766 0.8123661 0.8123661 +0.6698526 0.8123661 0.8123661 +0.6925839 0.8123661 0.8123661 +0.7143866 0.8123661 0.8123661 +0.7353569 0.8123661 0.8123661 +0.7555758 0.8123661 0.8123661 +0.7751122 0.8123661 0.8123661 +0.7940252 0.8123661 0.8123661 +0.8123661 0.8123661 0.8123661 +0.8301795 0.8123661 0.8123661 +0.8475045 0.8123661 0.8123661 +0.8643761 0.8123661 0.8123661 +0.880825 0.8123661 0.8123661 +0.8968787 0.8123661 0.8123661 +0.9125621 0.8123661 0.8123661 +0.9278974 0.8123661 0.8123661 +0.9429048 0.8123661 0.8123661 +0.9576028 0.8123661 0.8123661 +0.9720079 0.8123661 0.8123661 +0.9861357 0.8123661 0.8123661 +1 0.8123661 0.8123661 +0 0.8301795 0.8123661 +0.1939468 0.8301795 0.8123661 +0.2773041 0.8301795 0.8123661 +0.3384659 0.8301795 0.8123661 +0.3885728 0.8301795 0.8123661 +0.4317928 0.8301795 0.8123661 +0.470214 0.8301795 0.8123661 +0.5050551 0.8301795 0.8123661 +0.5370987 0.8301795 0.8123661 +0.5668815 0.8301795 0.8123661 +0.5947903 0.8301795 0.8123661 +0.6211144 0.8301795 0.8123661 +0.6460766 0.8301795 0.8123661 +0.6698526 0.8301795 0.8123661 +0.6925839 0.8301795 0.8123661 +0.7143866 0.8301795 0.8123661 +0.7353569 0.8301795 0.8123661 +0.7555758 0.8301795 0.8123661 +0.7751122 0.8301795 0.8123661 +0.7940252 0.8301795 0.8123661 +0.8123661 0.8301795 0.8123661 +0.8301795 0.8301795 0.8123661 +0.8475045 0.8301795 0.8123661 +0.8643761 0.8301795 0.8123661 +0.880825 0.8301795 0.8123661 +0.8968787 0.8301795 0.8123661 +0.9125621 0.8301795 0.8123661 +0.9278974 0.8301795 0.8123661 +0.9429048 0.8301795 0.8123661 +0.9576028 0.8301795 0.8123661 +0.9720079 0.8301795 0.8123661 +0.9861357 0.8301795 0.8123661 +1 0.8301795 0.8123661 +0 0.8475045 0.8123661 +0.1939468 0.8475045 0.8123661 +0.2773041 0.8475045 0.8123661 +0.3384659 0.8475045 0.8123661 +0.3885728 0.8475045 0.8123661 +0.4317928 0.8475045 0.8123661 +0.470214 0.8475045 0.8123661 +0.5050551 0.8475045 0.8123661 +0.5370987 0.8475045 0.8123661 +0.5668815 0.8475045 0.8123661 +0.5947903 0.8475045 0.8123661 +0.6211144 0.8475045 0.8123661 +0.6460766 0.8475045 0.8123661 +0.6698526 0.8475045 0.8123661 +0.6925839 0.8475045 0.8123661 +0.7143866 0.8475045 0.8123661 +0.7353569 0.8475045 0.8123661 +0.7555758 0.8475045 0.8123661 +0.7751122 0.8475045 0.8123661 +0.7940252 0.8475045 0.8123661 +0.8123661 0.8475045 0.8123661 +0.8301795 0.8475045 0.8123661 +0.8475045 0.8475045 0.8123661 +0.8643761 0.8475045 0.8123661 +0.880825 0.8475045 0.8123661 +0.8968787 0.8475045 0.8123661 +0.9125621 0.8475045 0.8123661 +0.9278974 0.8475045 0.8123661 +0.9429048 0.8475045 0.8123661 +0.9576028 0.8475045 0.8123661 +0.9720079 0.8475045 0.8123661 +0.9861357 0.8475045 0.8123661 +1 0.8475045 0.8123661 +0 0.8643761 0.8123661 +0.1939468 0.8643761 0.8123661 +0.2773041 0.8643761 0.8123661 +0.3384659 0.8643761 0.8123661 +0.3885728 0.8643761 0.8123661 +0.4317928 0.8643761 0.8123661 +0.470214 0.8643761 0.8123661 +0.5050551 0.8643761 0.8123661 +0.5370987 0.8643761 0.8123661 +0.5668815 0.8643761 0.8123661 +0.5947903 0.8643761 0.8123661 +0.6211144 0.8643761 0.8123661 +0.6460766 0.8643761 0.8123661 +0.6698526 0.8643761 0.8123661 +0.6925839 0.8643761 0.8123661 +0.7143866 0.8643761 0.8123661 +0.7353569 0.8643761 0.8123661 +0.7555758 0.8643761 0.8123661 +0.7751122 0.8643761 0.8123661 +0.7940252 0.8643761 0.8123661 +0.8123661 0.8643761 0.8123661 +0.8301795 0.8643761 0.8123661 +0.8475045 0.8643761 0.8123661 +0.8643761 0.8643761 0.8123661 +0.880825 0.8643761 0.8123661 +0.8968787 0.8643761 0.8123661 +0.9125621 0.8643761 0.8123661 +0.9278974 0.8643761 0.8123661 +0.9429048 0.8643761 0.8123661 +0.9576028 0.8643761 0.8123661 +0.9720079 0.8643761 0.8123661 +0.9861357 0.8643761 0.8123661 +1 0.8643761 0.8123661 +0 0.880825 0.8123661 +0.1939468 0.880825 0.8123661 +0.2773041 0.880825 0.8123661 +0.3384659 0.880825 0.8123661 +0.3885728 0.880825 0.8123661 +0.4317928 0.880825 0.8123661 +0.470214 0.880825 0.8123661 +0.5050551 0.880825 0.8123661 +0.5370987 0.880825 0.8123661 +0.5668815 0.880825 0.8123661 +0.5947903 0.880825 0.8123661 +0.6211144 0.880825 0.8123661 +0.6460766 0.880825 0.8123661 +0.6698526 0.880825 0.8123661 +0.6925839 0.880825 0.8123661 +0.7143866 0.880825 0.8123661 +0.7353569 0.880825 0.8123661 +0.7555758 0.880825 0.8123661 +0.7751122 0.880825 0.8123661 +0.7940252 0.880825 0.8123661 +0.8123661 0.880825 0.8123661 +0.8301795 0.880825 0.8123661 +0.8475045 0.880825 0.8123661 +0.8643761 0.880825 0.8123661 +0.880825 0.880825 0.8123661 +0.8968787 0.880825 0.8123661 +0.9125621 0.880825 0.8123661 +0.9278974 0.880825 0.8123661 +0.9429048 0.880825 0.8123661 +0.9576028 0.880825 0.8123661 +0.9720079 0.880825 0.8123661 +0.9861357 0.880825 0.8123661 +1 0.880825 0.8123661 +0 0.8968787 0.8123661 +0.1939468 0.8968787 0.8123661 +0.2773041 0.8968787 0.8123661 +0.3384659 0.8968787 0.8123661 +0.3885728 0.8968787 0.8123661 +0.4317928 0.8968787 0.8123661 +0.470214 0.8968787 0.8123661 +0.5050551 0.8968787 0.8123661 +0.5370987 0.8968787 0.8123661 +0.5668815 0.8968787 0.8123661 +0.5947903 0.8968787 0.8123661 +0.6211144 0.8968787 0.8123661 +0.6460766 0.8968787 0.8123661 +0.6698526 0.8968787 0.8123661 +0.6925839 0.8968787 0.8123661 +0.7143866 0.8968787 0.8123661 +0.7353569 0.8968787 0.8123661 +0.7555758 0.8968787 0.8123661 +0.7751122 0.8968787 0.8123661 +0.7940252 0.8968787 0.8123661 +0.8123661 0.8968787 0.8123661 +0.8301795 0.8968787 0.8123661 +0.8475045 0.8968787 0.8123661 +0.8643761 0.8968787 0.8123661 +0.880825 0.8968787 0.8123661 +0.8968787 0.8968787 0.8123661 +0.9125621 0.8968787 0.8123661 +0.9278974 0.8968787 0.8123661 +0.9429048 0.8968787 0.8123661 +0.9576028 0.8968787 0.8123661 +0.9720079 0.8968787 0.8123661 +0.9861357 0.8968787 0.8123661 +1 0.8968787 0.8123661 +0 0.9125621 0.8123661 +0.1939468 0.9125621 0.8123661 +0.2773041 0.9125621 0.8123661 +0.3384659 0.9125621 0.8123661 +0.3885728 0.9125621 0.8123661 +0.4317928 0.9125621 0.8123661 +0.470214 0.9125621 0.8123661 +0.5050551 0.9125621 0.8123661 +0.5370987 0.9125621 0.8123661 +0.5668815 0.9125621 0.8123661 +0.5947903 0.9125621 0.8123661 +0.6211144 0.9125621 0.8123661 +0.6460766 0.9125621 0.8123661 +0.6698526 0.9125621 0.8123661 +0.6925839 0.9125621 0.8123661 +0.7143866 0.9125621 0.8123661 +0.7353569 0.9125621 0.8123661 +0.7555758 0.9125621 0.8123661 +0.7751122 0.9125621 0.8123661 +0.7940252 0.9125621 0.8123661 +0.8123661 0.9125621 0.8123661 +0.8301795 0.9125621 0.8123661 +0.8475045 0.9125621 0.8123661 +0.8643761 0.9125621 0.8123661 +0.880825 0.9125621 0.8123661 +0.8968787 0.9125621 0.8123661 +0.9125621 0.9125621 0.8123661 +0.9278974 0.9125621 0.8123661 +0.9429048 0.9125621 0.8123661 +0.9576028 0.9125621 0.8123661 +0.9720079 0.9125621 0.8123661 +0.9861357 0.9125621 0.8123661 +1 0.9125621 0.8123661 +0 0.9278974 0.8123661 +0.1939468 0.9278974 0.8123661 +0.2773041 0.9278974 0.8123661 +0.3384659 0.9278974 0.8123661 +0.3885728 0.9278974 0.8123661 +0.4317928 0.9278974 0.8123661 +0.470214 0.9278974 0.8123661 +0.5050551 0.9278974 0.8123661 +0.5370987 0.9278974 0.8123661 +0.5668815 0.9278974 0.8123661 +0.5947903 0.9278974 0.8123661 +0.6211144 0.9278974 0.8123661 +0.6460766 0.9278974 0.8123661 +0.6698526 0.9278974 0.8123661 +0.6925839 0.9278974 0.8123661 +0.7143866 0.9278974 0.8123661 +0.7353569 0.9278974 0.8123661 +0.7555758 0.9278974 0.8123661 +0.7751122 0.9278974 0.8123661 +0.7940252 0.9278974 0.8123661 +0.8123661 0.9278974 0.8123661 +0.8301795 0.9278974 0.8123661 +0.8475045 0.9278974 0.8123661 +0.8643761 0.9278974 0.8123661 +0.880825 0.9278974 0.8123661 +0.8968787 0.9278974 0.8123661 +0.9125621 0.9278974 0.8123661 +0.9278974 0.9278974 0.8123661 +0.9429048 0.9278974 0.8123661 +0.9576028 0.9278974 0.8123661 +0.9720079 0.9278974 0.8123661 +0.9861357 0.9278974 0.8123661 +1 0.9278974 0.8123661 +0 0.9429048 0.8123661 +0.1939468 0.9429048 0.8123661 +0.2773041 0.9429048 0.8123661 +0.3384659 0.9429048 0.8123661 +0.3885728 0.9429048 0.8123661 +0.4317928 0.9429048 0.8123661 +0.470214 0.9429048 0.8123661 +0.5050551 0.9429048 0.8123661 +0.5370987 0.9429048 0.8123661 +0.5668815 0.9429048 0.8123661 +0.5947903 0.9429048 0.8123661 +0.6211144 0.9429048 0.8123661 +0.6460766 0.9429048 0.8123661 +0.6698526 0.9429048 0.8123661 +0.6925839 0.9429048 0.8123661 +0.7143866 0.9429048 0.8123661 +0.7353569 0.9429048 0.8123661 +0.7555758 0.9429048 0.8123661 +0.7751122 0.9429048 0.8123661 +0.7940252 0.9429048 0.8123661 +0.8123661 0.9429048 0.8123661 +0.8301795 0.9429048 0.8123661 +0.8475045 0.9429048 0.8123661 +0.8643761 0.9429048 0.8123661 +0.880825 0.9429048 0.8123661 +0.8968787 0.9429048 0.8123661 +0.9125621 0.9429048 0.8123661 +0.9278974 0.9429048 0.8123661 +0.9429048 0.9429048 0.8123661 +0.9576028 0.9429048 0.8123661 +0.9720079 0.9429048 0.8123661 +0.9861357 0.9429048 0.8123661 +1 0.9429048 0.8123661 +0 0.9576028 0.8123661 +0.1939468 0.9576028 0.8123661 +0.2773041 0.9576028 0.8123661 +0.3384659 0.9576028 0.8123661 +0.3885728 0.9576028 0.8123661 +0.4317928 0.9576028 0.8123661 +0.470214 0.9576028 0.8123661 +0.5050551 0.9576028 0.8123661 +0.5370987 0.9576028 0.8123661 +0.5668815 0.9576028 0.8123661 +0.5947903 0.9576028 0.8123661 +0.6211144 0.9576028 0.8123661 +0.6460766 0.9576028 0.8123661 +0.6698526 0.9576028 0.8123661 +0.6925839 0.9576028 0.8123661 +0.7143866 0.9576028 0.8123661 +0.7353569 0.9576028 0.8123661 +0.7555758 0.9576028 0.8123661 +0.7751122 0.9576028 0.8123661 +0.7940252 0.9576028 0.8123661 +0.8123661 0.9576028 0.8123661 +0.8301795 0.9576028 0.8123661 +0.8475045 0.9576028 0.8123661 +0.8643761 0.9576028 0.8123661 +0.880825 0.9576028 0.8123661 +0.8968787 0.9576028 0.8123661 +0.9125621 0.9576028 0.8123661 +0.9278974 0.9576028 0.8123661 +0.9429048 0.9576028 0.8123661 +0.9576028 0.9576028 0.8123661 +0.9720079 0.9576028 0.8123661 +0.9861357 0.9576028 0.8123661 +1 0.9576028 0.8123661 +0 0.9720079 0.8123661 +0.1939468 0.9720079 0.8123661 +0.2773041 0.9720079 0.8123661 +0.3384659 0.9720079 0.8123661 +0.3885728 0.9720079 0.8123661 +0.4317928 0.9720079 0.8123661 +0.470214 0.9720079 0.8123661 +0.5050551 0.9720079 0.8123661 +0.5370987 0.9720079 0.8123661 +0.5668815 0.9720079 0.8123661 +0.5947903 0.9720079 0.8123661 +0.6211144 0.9720079 0.8123661 +0.6460766 0.9720079 0.8123661 +0.6698526 0.9720079 0.8123661 +0.6925839 0.9720079 0.8123661 +0.7143866 0.9720079 0.8123661 +0.7353569 0.9720079 0.8123661 +0.7555758 0.9720079 0.8123661 +0.7751122 0.9720079 0.8123661 +0.7940252 0.9720079 0.8123661 +0.8123661 0.9720079 0.8123661 +0.8301795 0.9720079 0.8123661 +0.8475045 0.9720079 0.8123661 +0.8643761 0.9720079 0.8123661 +0.880825 0.9720079 0.8123661 +0.8968787 0.9720079 0.8123661 +0.9125621 0.9720079 0.8123661 +0.9278974 0.9720079 0.8123661 +0.9429048 0.9720079 0.8123661 +0.9576028 0.9720079 0.8123661 +0.9720079 0.9720079 0.8123661 +0.9861357 0.9720079 0.8123661 +1 0.9720079 0.8123661 +0 0.9861357 0.8123661 +0.1939468 0.9861357 0.8123661 +0.2773041 0.9861357 0.8123661 +0.3384659 0.9861357 0.8123661 +0.3885728 0.9861357 0.8123661 +0.4317928 0.9861357 0.8123661 +0.470214 0.9861357 0.8123661 +0.5050551 0.9861357 0.8123661 +0.5370987 0.9861357 0.8123661 +0.5668815 0.9861357 0.8123661 +0.5947903 0.9861357 0.8123661 +0.6211144 0.9861357 0.8123661 +0.6460766 0.9861357 0.8123661 +0.6698526 0.9861357 0.8123661 +0.6925839 0.9861357 0.8123661 +0.7143866 0.9861357 0.8123661 +0.7353569 0.9861357 0.8123661 +0.7555758 0.9861357 0.8123661 +0.7751122 0.9861357 0.8123661 +0.7940252 0.9861357 0.8123661 +0.8123661 0.9861357 0.8123661 +0.8301795 0.9861357 0.8123661 +0.8475045 0.9861357 0.8123661 +0.8643761 0.9861357 0.8123661 +0.880825 0.9861357 0.8123661 +0.8968787 0.9861357 0.8123661 +0.9125621 0.9861357 0.8123661 +0.9278974 0.9861357 0.8123661 +0.9429048 0.9861357 0.8123661 +0.9576028 0.9861357 0.8123661 +0.9720079 0.9861357 0.8123661 +0.9861357 0.9861357 0.8123661 +1 0.9861357 0.8123661 +0 1 0.8123661 +0.1939468 1 0.8123661 +0.2773041 1 0.8123661 +0.3384659 1 0.8123661 +0.3885728 1 0.8123661 +0.4317928 1 0.8123661 +0.470214 1 0.8123661 +0.5050551 1 0.8123661 +0.5370987 1 0.8123661 +0.5668815 1 0.8123661 +0.5947903 1 0.8123661 +0.6211144 1 0.8123661 +0.6460766 1 0.8123661 +0.6698526 1 0.8123661 +0.6925839 1 0.8123661 +0.7143866 1 0.8123661 +0.7353569 1 0.8123661 +0.7555758 1 0.8123661 +0.7751122 1 0.8123661 +0.7940252 1 0.8123661 +0.8123661 1 0.8123661 +0.8301795 1 0.8123661 +0.8475045 1 0.8123661 +0.8643761 1 0.8123661 +0.880825 1 0.8123661 +0.8968787 1 0.8123661 +0.9125621 1 0.8123661 +0.9278974 1 0.8123661 +0.9429048 1 0.8123661 +0.9576028 1 0.8123661 +0.9720079 1 0.8123661 +0.9861357 1 0.8123661 +1 1 0.8123661 +0 0 0.8301795 +0.1939468 0 0.8301795 +0.2773041 0 0.8301795 +0.3384659 0 0.8301795 +0.3885728 0 0.8301795 +0.4317928 0 0.8301795 +0.470214 0 0.8301795 +0.5050551 0 0.8301795 +0.5370987 0 0.8301795 +0.5668815 0 0.8301795 +0.5947903 0 0.8301795 +0.6211144 0 0.8301795 +0.6460766 0 0.8301795 +0.6698526 0 0.8301795 +0.6925839 0 0.8301795 +0.7143866 0 0.8301795 +0.7353569 0 0.8301795 +0.7555758 0 0.8301795 +0.7751122 0 0.8301795 +0.7940252 0 0.8301795 +0.8123661 0 0.8301795 +0.8301795 0 0.8301795 +0.8475045 0 0.8301795 +0.8643761 0 0.8301795 +0.880825 0 0.8301795 +0.8968787 0 0.8301795 +0.9125621 0 0.8301795 +0.9278974 0 0.8301795 +0.9429048 0 0.8301795 +0.9576028 0 0.8301795 +0.9720079 0 0.8301795 +0.9861357 0 0.8301795 +1 0 0.8301795 +0 0.1939468 0.8301795 +0.1939468 0.1939468 0.8301795 +0.2773041 0.1939468 0.8301795 +0.3384659 0.1939468 0.8301795 +0.3885728 0.1939468 0.8301795 +0.4317928 0.1939468 0.8301795 +0.470214 0.1939468 0.8301795 +0.5050551 0.1939468 0.8301795 +0.5370987 0.1939468 0.8301795 +0.5668815 0.1939468 0.8301795 +0.5947903 0.1939468 0.8301795 +0.6211144 0.1939468 0.8301795 +0.6460766 0.1939468 0.8301795 +0.6698526 0.1939468 0.8301795 +0.6925839 0.1939468 0.8301795 +0.7143866 0.1939468 0.8301795 +0.7353569 0.1939468 0.8301795 +0.7555758 0.1939468 0.8301795 +0.7751122 0.1939468 0.8301795 +0.7940252 0.1939468 0.8301795 +0.8123661 0.1939468 0.8301795 +0.8301795 0.1939468 0.8301795 +0.8475045 0.1939468 0.8301795 +0.8643761 0.1939468 0.8301795 +0.880825 0.1939468 0.8301795 +0.8968787 0.1939468 0.8301795 +0.9125621 0.1939468 0.8301795 +0.9278974 0.1939468 0.8301795 +0.9429048 0.1939468 0.8301795 +0.9576028 0.1939468 0.8301795 +0.9720079 0.1939468 0.8301795 +0.9861357 0.1939468 0.8301795 +1 0.1939468 0.8301795 +0 0.2773041 0.8301795 +0.1939468 0.2773041 0.8301795 +0.2773041 0.2773041 0.8301795 +0.3384659 0.2773041 0.8301795 +0.3885728 0.2773041 0.8301795 +0.4317928 0.2773041 0.8301795 +0.470214 0.2773041 0.8301795 +0.5050551 0.2773041 0.8301795 +0.5370987 0.2773041 0.8301795 +0.5668815 0.2773041 0.8301795 +0.5947903 0.2773041 0.8301795 +0.6211144 0.2773041 0.8301795 +0.6460766 0.2773041 0.8301795 +0.6698526 0.2773041 0.8301795 +0.6925839 0.2773041 0.8301795 +0.7143866 0.2773041 0.8301795 +0.7353569 0.2773041 0.8301795 +0.7555758 0.2773041 0.8301795 +0.7751122 0.2773041 0.8301795 +0.7940252 0.2773041 0.8301795 +0.8123661 0.2773041 0.8301795 +0.8301795 0.2773041 0.8301795 +0.8475045 0.2773041 0.8301795 +0.8643761 0.2773041 0.8301795 +0.880825 0.2773041 0.8301795 +0.8968787 0.2773041 0.8301795 +0.9125621 0.2773041 0.8301795 +0.9278974 0.2773041 0.8301795 +0.9429048 0.2773041 0.8301795 +0.9576028 0.2773041 0.8301795 +0.9720079 0.2773041 0.8301795 +0.9861357 0.2773041 0.8301795 +1 0.2773041 0.8301795 +0 0.3384659 0.8301795 +0.1939468 0.3384659 0.8301795 +0.2773041 0.3384659 0.8301795 +0.3384659 0.3384659 0.8301795 +0.3885728 0.3384659 0.8301795 +0.4317928 0.3384659 0.8301795 +0.470214 0.3384659 0.8301795 +0.5050551 0.3384659 0.8301795 +0.5370987 0.3384659 0.8301795 +0.5668815 0.3384659 0.8301795 +0.5947903 0.3384659 0.8301795 +0.6211144 0.3384659 0.8301795 +0.6460766 0.3384659 0.8301795 +0.6698526 0.3384659 0.8301795 +0.6925839 0.3384659 0.8301795 +0.7143866 0.3384659 0.8301795 +0.7353569 0.3384659 0.8301795 +0.7555758 0.3384659 0.8301795 +0.7751122 0.3384659 0.8301795 +0.7940252 0.3384659 0.8301795 +0.8123661 0.3384659 0.8301795 +0.8301795 0.3384659 0.8301795 +0.8475045 0.3384659 0.8301795 +0.8643761 0.3384659 0.8301795 +0.880825 0.3384659 0.8301795 +0.8968787 0.3384659 0.8301795 +0.9125621 0.3384659 0.8301795 +0.9278974 0.3384659 0.8301795 +0.9429048 0.3384659 0.8301795 +0.9576028 0.3384659 0.8301795 +0.9720079 0.3384659 0.8301795 +0.9861357 0.3384659 0.8301795 +1 0.3384659 0.8301795 +0 0.3885728 0.8301795 +0.1939468 0.3885728 0.8301795 +0.2773041 0.3885728 0.8301795 +0.3384659 0.3885728 0.8301795 +0.3885728 0.3885728 0.8301795 +0.4317928 0.3885728 0.8301795 +0.470214 0.3885728 0.8301795 +0.5050551 0.3885728 0.8301795 +0.5370987 0.3885728 0.8301795 +0.5668815 0.3885728 0.8301795 +0.5947903 0.3885728 0.8301795 +0.6211144 0.3885728 0.8301795 +0.6460766 0.3885728 0.8301795 +0.6698526 0.3885728 0.8301795 +0.6925839 0.3885728 0.8301795 +0.7143866 0.3885728 0.8301795 +0.7353569 0.3885728 0.8301795 +0.7555758 0.3885728 0.8301795 +0.7751122 0.3885728 0.8301795 +0.7940252 0.3885728 0.8301795 +0.8123661 0.3885728 0.8301795 +0.8301795 0.3885728 0.8301795 +0.8475045 0.3885728 0.8301795 +0.8643761 0.3885728 0.8301795 +0.880825 0.3885728 0.8301795 +0.8968787 0.3885728 0.8301795 +0.9125621 0.3885728 0.8301795 +0.9278974 0.3885728 0.8301795 +0.9429048 0.3885728 0.8301795 +0.9576028 0.3885728 0.8301795 +0.9720079 0.3885728 0.8301795 +0.9861357 0.3885728 0.8301795 +1 0.3885728 0.8301795 +0 0.4317928 0.8301795 +0.1939468 0.4317928 0.8301795 +0.2773041 0.4317928 0.8301795 +0.3384659 0.4317928 0.8301795 +0.3885728 0.4317928 0.8301795 +0.4317928 0.4317928 0.8301795 +0.470214 0.4317928 0.8301795 +0.5050551 0.4317928 0.8301795 +0.5370987 0.4317928 0.8301795 +0.5668815 0.4317928 0.8301795 +0.5947903 0.4317928 0.8301795 +0.6211144 0.4317928 0.8301795 +0.6460766 0.4317928 0.8301795 +0.6698526 0.4317928 0.8301795 +0.6925839 0.4317928 0.8301795 +0.7143866 0.4317928 0.8301795 +0.7353569 0.4317928 0.8301795 +0.7555758 0.4317928 0.8301795 +0.7751122 0.4317928 0.8301795 +0.7940252 0.4317928 0.8301795 +0.8123661 0.4317928 0.8301795 +0.8301795 0.4317928 0.8301795 +0.8475045 0.4317928 0.8301795 +0.8643761 0.4317928 0.8301795 +0.880825 0.4317928 0.8301795 +0.8968787 0.4317928 0.8301795 +0.9125621 0.4317928 0.8301795 +0.9278974 0.4317928 0.8301795 +0.9429048 0.4317928 0.8301795 +0.9576028 0.4317928 0.8301795 +0.9720079 0.4317928 0.8301795 +0.9861357 0.4317928 0.8301795 +1 0.4317928 0.8301795 +0 0.470214 0.8301795 +0.1939468 0.470214 0.8301795 +0.2773041 0.470214 0.8301795 +0.3384659 0.470214 0.8301795 +0.3885728 0.470214 0.8301795 +0.4317928 0.470214 0.8301795 +0.470214 0.470214 0.8301795 +0.5050551 0.470214 0.8301795 +0.5370987 0.470214 0.8301795 +0.5668815 0.470214 0.8301795 +0.5947903 0.470214 0.8301795 +0.6211144 0.470214 0.8301795 +0.6460766 0.470214 0.8301795 +0.6698526 0.470214 0.8301795 +0.6925839 0.470214 0.8301795 +0.7143866 0.470214 0.8301795 +0.7353569 0.470214 0.8301795 +0.7555758 0.470214 0.8301795 +0.7751122 0.470214 0.8301795 +0.7940252 0.470214 0.8301795 +0.8123661 0.470214 0.8301795 +0.8301795 0.470214 0.8301795 +0.8475045 0.470214 0.8301795 +0.8643761 0.470214 0.8301795 +0.880825 0.470214 0.8301795 +0.8968787 0.470214 0.8301795 +0.9125621 0.470214 0.8301795 +0.9278974 0.470214 0.8301795 +0.9429048 0.470214 0.8301795 +0.9576028 0.470214 0.8301795 +0.9720079 0.470214 0.8301795 +0.9861357 0.470214 0.8301795 +1 0.470214 0.8301795 +0 0.5050551 0.8301795 +0.1939468 0.5050551 0.8301795 +0.2773041 0.5050551 0.8301795 +0.3384659 0.5050551 0.8301795 +0.3885728 0.5050551 0.8301795 +0.4317928 0.5050551 0.8301795 +0.470214 0.5050551 0.8301795 +0.5050551 0.5050551 0.8301795 +0.5370987 0.5050551 0.8301795 +0.5668815 0.5050551 0.8301795 +0.5947903 0.5050551 0.8301795 +0.6211144 0.5050551 0.8301795 +0.6460766 0.5050551 0.8301795 +0.6698526 0.5050551 0.8301795 +0.6925839 0.5050551 0.8301795 +0.7143866 0.5050551 0.8301795 +0.7353569 0.5050551 0.8301795 +0.7555758 0.5050551 0.8301795 +0.7751122 0.5050551 0.8301795 +0.7940252 0.5050551 0.8301795 +0.8123661 0.5050551 0.8301795 +0.8301795 0.5050551 0.8301795 +0.8475045 0.5050551 0.8301795 +0.8643761 0.5050551 0.8301795 +0.880825 0.5050551 0.8301795 +0.8968787 0.5050551 0.8301795 +0.9125621 0.5050551 0.8301795 +0.9278974 0.5050551 0.8301795 +0.9429048 0.5050551 0.8301795 +0.9576028 0.5050551 0.8301795 +0.9720079 0.5050551 0.8301795 +0.9861357 0.5050551 0.8301795 +1 0.5050551 0.8301795 +0 0.5370987 0.8301795 +0.1939468 0.5370987 0.8301795 +0.2773041 0.5370987 0.8301795 +0.3384659 0.5370987 0.8301795 +0.3885728 0.5370987 0.8301795 +0.4317928 0.5370987 0.8301795 +0.470214 0.5370987 0.8301795 +0.5050551 0.5370987 0.8301795 +0.5370987 0.5370987 0.8301795 +0.5668815 0.5370987 0.8301795 +0.5947903 0.5370987 0.8301795 +0.6211144 0.5370987 0.8301795 +0.6460766 0.5370987 0.8301795 +0.6698526 0.5370987 0.8301795 +0.6925839 0.5370987 0.8301795 +0.7143866 0.5370987 0.8301795 +0.7353569 0.5370987 0.8301795 +0.7555758 0.5370987 0.8301795 +0.7751122 0.5370987 0.8301795 +0.7940252 0.5370987 0.8301795 +0.8123661 0.5370987 0.8301795 +0.8301795 0.5370987 0.8301795 +0.8475045 0.5370987 0.8301795 +0.8643761 0.5370987 0.8301795 +0.880825 0.5370987 0.8301795 +0.8968787 0.5370987 0.8301795 +0.9125621 0.5370987 0.8301795 +0.9278974 0.5370987 0.8301795 +0.9429048 0.5370987 0.8301795 +0.9576028 0.5370987 0.8301795 +0.9720079 0.5370987 0.8301795 +0.9861357 0.5370987 0.8301795 +1 0.5370987 0.8301795 +0 0.5668815 0.8301795 +0.1939468 0.5668815 0.8301795 +0.2773041 0.5668815 0.8301795 +0.3384659 0.5668815 0.8301795 +0.3885728 0.5668815 0.8301795 +0.4317928 0.5668815 0.8301795 +0.470214 0.5668815 0.8301795 +0.5050551 0.5668815 0.8301795 +0.5370987 0.5668815 0.8301795 +0.5668815 0.5668815 0.8301795 +0.5947903 0.5668815 0.8301795 +0.6211144 0.5668815 0.8301795 +0.6460766 0.5668815 0.8301795 +0.6698526 0.5668815 0.8301795 +0.6925839 0.5668815 0.8301795 +0.7143866 0.5668815 0.8301795 +0.7353569 0.5668815 0.8301795 +0.7555758 0.5668815 0.8301795 +0.7751122 0.5668815 0.8301795 +0.7940252 0.5668815 0.8301795 +0.8123661 0.5668815 0.8301795 +0.8301795 0.5668815 0.8301795 +0.8475045 0.5668815 0.8301795 +0.8643761 0.5668815 0.8301795 +0.880825 0.5668815 0.8301795 +0.8968787 0.5668815 0.8301795 +0.9125621 0.5668815 0.8301795 +0.9278974 0.5668815 0.8301795 +0.9429048 0.5668815 0.8301795 +0.9576028 0.5668815 0.8301795 +0.9720079 0.5668815 0.8301795 +0.9861357 0.5668815 0.8301795 +1 0.5668815 0.8301795 +0 0.5947903 0.8301795 +0.1939468 0.5947903 0.8301795 +0.2773041 0.5947903 0.8301795 +0.3384659 0.5947903 0.8301795 +0.3885728 0.5947903 0.8301795 +0.4317928 0.5947903 0.8301795 +0.470214 0.5947903 0.8301795 +0.5050551 0.5947903 0.8301795 +0.5370987 0.5947903 0.8301795 +0.5668815 0.5947903 0.8301795 +0.5947903 0.5947903 0.8301795 +0.6211144 0.5947903 0.8301795 +0.6460766 0.5947903 0.8301795 +0.6698526 0.5947903 0.8301795 +0.6925839 0.5947903 0.8301795 +0.7143866 0.5947903 0.8301795 +0.7353569 0.5947903 0.8301795 +0.7555758 0.5947903 0.8301795 +0.7751122 0.5947903 0.8301795 +0.7940252 0.5947903 0.8301795 +0.8123661 0.5947903 0.8301795 +0.8301795 0.5947903 0.8301795 +0.8475045 0.5947903 0.8301795 +0.8643761 0.5947903 0.8301795 +0.880825 0.5947903 0.8301795 +0.8968787 0.5947903 0.8301795 +0.9125621 0.5947903 0.8301795 +0.9278974 0.5947903 0.8301795 +0.9429048 0.5947903 0.8301795 +0.9576028 0.5947903 0.8301795 +0.9720079 0.5947903 0.8301795 +0.9861357 0.5947903 0.8301795 +1 0.5947903 0.8301795 +0 0.6211144 0.8301795 +0.1939468 0.6211144 0.8301795 +0.2773041 0.6211144 0.8301795 +0.3384659 0.6211144 0.8301795 +0.3885728 0.6211144 0.8301795 +0.4317928 0.6211144 0.8301795 +0.470214 0.6211144 0.8301795 +0.5050551 0.6211144 0.8301795 +0.5370987 0.6211144 0.8301795 +0.5668815 0.6211144 0.8301795 +0.5947903 0.6211144 0.8301795 +0.6211144 0.6211144 0.8301795 +0.6460766 0.6211144 0.8301795 +0.6698526 0.6211144 0.8301795 +0.6925839 0.6211144 0.8301795 +0.7143866 0.6211144 0.8301795 +0.7353569 0.6211144 0.8301795 +0.7555758 0.6211144 0.8301795 +0.7751122 0.6211144 0.8301795 +0.7940252 0.6211144 0.8301795 +0.8123661 0.6211144 0.8301795 +0.8301795 0.6211144 0.8301795 +0.8475045 0.6211144 0.8301795 +0.8643761 0.6211144 0.8301795 +0.880825 0.6211144 0.8301795 +0.8968787 0.6211144 0.8301795 +0.9125621 0.6211144 0.8301795 +0.9278974 0.6211144 0.8301795 +0.9429048 0.6211144 0.8301795 +0.9576028 0.6211144 0.8301795 +0.9720079 0.6211144 0.8301795 +0.9861357 0.6211144 0.8301795 +1 0.6211144 0.8301795 +0 0.6460766 0.8301795 +0.1939468 0.6460766 0.8301795 +0.2773041 0.6460766 0.8301795 +0.3384659 0.6460766 0.8301795 +0.3885728 0.6460766 0.8301795 +0.4317928 0.6460766 0.8301795 +0.470214 0.6460766 0.8301795 +0.5050551 0.6460766 0.8301795 +0.5370987 0.6460766 0.8301795 +0.5668815 0.6460766 0.8301795 +0.5947903 0.6460766 0.8301795 +0.6211144 0.6460766 0.8301795 +0.6460766 0.6460766 0.8301795 +0.6698526 0.6460766 0.8301795 +0.6925839 0.6460766 0.8301795 +0.7143866 0.6460766 0.8301795 +0.7353569 0.6460766 0.8301795 +0.7555758 0.6460766 0.8301795 +0.7751122 0.6460766 0.8301795 +0.7940252 0.6460766 0.8301795 +0.8123661 0.6460766 0.8301795 +0.8301795 0.6460766 0.8301795 +0.8475045 0.6460766 0.8301795 +0.8643761 0.6460766 0.8301795 +0.880825 0.6460766 0.8301795 +0.8968787 0.6460766 0.8301795 +0.9125621 0.6460766 0.8301795 +0.9278974 0.6460766 0.8301795 +0.9429048 0.6460766 0.8301795 +0.9576028 0.6460766 0.8301795 +0.9720079 0.6460766 0.8301795 +0.9861357 0.6460766 0.8301795 +1 0.6460766 0.8301795 +0 0.6698526 0.8301795 +0.1939468 0.6698526 0.8301795 +0.2773041 0.6698526 0.8301795 +0.3384659 0.6698526 0.8301795 +0.3885728 0.6698526 0.8301795 +0.4317928 0.6698526 0.8301795 +0.470214 0.6698526 0.8301795 +0.5050551 0.6698526 0.8301795 +0.5370987 0.6698526 0.8301795 +0.5668815 0.6698526 0.8301795 +0.5947903 0.6698526 0.8301795 +0.6211144 0.6698526 0.8301795 +0.6460766 0.6698526 0.8301795 +0.6698526 0.6698526 0.8301795 +0.6925839 0.6698526 0.8301795 +0.7143866 0.6698526 0.8301795 +0.7353569 0.6698526 0.8301795 +0.7555758 0.6698526 0.8301795 +0.7751122 0.6698526 0.8301795 +0.7940252 0.6698526 0.8301795 +0.8123661 0.6698526 0.8301795 +0.8301795 0.6698526 0.8301795 +0.8475045 0.6698526 0.8301795 +0.8643761 0.6698526 0.8301795 +0.880825 0.6698526 0.8301795 +0.8968787 0.6698526 0.8301795 +0.9125621 0.6698526 0.8301795 +0.9278974 0.6698526 0.8301795 +0.9429048 0.6698526 0.8301795 +0.9576028 0.6698526 0.8301795 +0.9720079 0.6698526 0.8301795 +0.9861357 0.6698526 0.8301795 +1 0.6698526 0.8301795 +0 0.6925839 0.8301795 +0.1939468 0.6925839 0.8301795 +0.2773041 0.6925839 0.8301795 +0.3384659 0.6925839 0.8301795 +0.3885728 0.6925839 0.8301795 +0.4317928 0.6925839 0.8301795 +0.470214 0.6925839 0.8301795 +0.5050551 0.6925839 0.8301795 +0.5370987 0.6925839 0.8301795 +0.5668815 0.6925839 0.8301795 +0.5947903 0.6925839 0.8301795 +0.6211144 0.6925839 0.8301795 +0.6460766 0.6925839 0.8301795 +0.6698526 0.6925839 0.8301795 +0.6925839 0.6925839 0.8301795 +0.7143866 0.6925839 0.8301795 +0.7353569 0.6925839 0.8301795 +0.7555758 0.6925839 0.8301795 +0.7751122 0.6925839 0.8301795 +0.7940252 0.6925839 0.8301795 +0.8123661 0.6925839 0.8301795 +0.8301795 0.6925839 0.8301795 +0.8475045 0.6925839 0.8301795 +0.8643761 0.6925839 0.8301795 +0.880825 0.6925839 0.8301795 +0.8968787 0.6925839 0.8301795 +0.9125621 0.6925839 0.8301795 +0.9278974 0.6925839 0.8301795 +0.9429048 0.6925839 0.8301795 +0.9576028 0.6925839 0.8301795 +0.9720079 0.6925839 0.8301795 +0.9861357 0.6925839 0.8301795 +1 0.6925839 0.8301795 +0 0.7143866 0.8301795 +0.1939468 0.7143866 0.8301795 +0.2773041 0.7143866 0.8301795 +0.3384659 0.7143866 0.8301795 +0.3885728 0.7143866 0.8301795 +0.4317928 0.7143866 0.8301795 +0.470214 0.7143866 0.8301795 +0.5050551 0.7143866 0.8301795 +0.5370987 0.7143866 0.8301795 +0.5668815 0.7143866 0.8301795 +0.5947903 0.7143866 0.8301795 +0.6211144 0.7143866 0.8301795 +0.6460766 0.7143866 0.8301795 +0.6698526 0.7143866 0.8301795 +0.6925839 0.7143866 0.8301795 +0.7143866 0.7143866 0.8301795 +0.7353569 0.7143866 0.8301795 +0.7555758 0.7143866 0.8301795 +0.7751122 0.7143866 0.8301795 +0.7940252 0.7143866 0.8301795 +0.8123661 0.7143866 0.8301795 +0.8301795 0.7143866 0.8301795 +0.8475045 0.7143866 0.8301795 +0.8643761 0.7143866 0.8301795 +0.880825 0.7143866 0.8301795 +0.8968787 0.7143866 0.8301795 +0.9125621 0.7143866 0.8301795 +0.9278974 0.7143866 0.8301795 +0.9429048 0.7143866 0.8301795 +0.9576028 0.7143866 0.8301795 +0.9720079 0.7143866 0.8301795 +0.9861357 0.7143866 0.8301795 +1 0.7143866 0.8301795 +0 0.7353569 0.8301795 +0.1939468 0.7353569 0.8301795 +0.2773041 0.7353569 0.8301795 +0.3384659 0.7353569 0.8301795 +0.3885728 0.7353569 0.8301795 +0.4317928 0.7353569 0.8301795 +0.470214 0.7353569 0.8301795 +0.5050551 0.7353569 0.8301795 +0.5370987 0.7353569 0.8301795 +0.5668815 0.7353569 0.8301795 +0.5947903 0.7353569 0.8301795 +0.6211144 0.7353569 0.8301795 +0.6460766 0.7353569 0.8301795 +0.6698526 0.7353569 0.8301795 +0.6925839 0.7353569 0.8301795 +0.7143866 0.7353569 0.8301795 +0.7353569 0.7353569 0.8301795 +0.7555758 0.7353569 0.8301795 +0.7751122 0.7353569 0.8301795 +0.7940252 0.7353569 0.8301795 +0.8123661 0.7353569 0.8301795 +0.8301795 0.7353569 0.8301795 +0.8475045 0.7353569 0.8301795 +0.8643761 0.7353569 0.8301795 +0.880825 0.7353569 0.8301795 +0.8968787 0.7353569 0.8301795 +0.9125621 0.7353569 0.8301795 +0.9278974 0.7353569 0.8301795 +0.9429048 0.7353569 0.8301795 +0.9576028 0.7353569 0.8301795 +0.9720079 0.7353569 0.8301795 +0.9861357 0.7353569 0.8301795 +1 0.7353569 0.8301795 +0 0.7555758 0.8301795 +0.1939468 0.7555758 0.8301795 +0.2773041 0.7555758 0.8301795 +0.3384659 0.7555758 0.8301795 +0.3885728 0.7555758 0.8301795 +0.4317928 0.7555758 0.8301795 +0.470214 0.7555758 0.8301795 +0.5050551 0.7555758 0.8301795 +0.5370987 0.7555758 0.8301795 +0.5668815 0.7555758 0.8301795 +0.5947903 0.7555758 0.8301795 +0.6211144 0.7555758 0.8301795 +0.6460766 0.7555758 0.8301795 +0.6698526 0.7555758 0.8301795 +0.6925839 0.7555758 0.8301795 +0.7143866 0.7555758 0.8301795 +0.7353569 0.7555758 0.8301795 +0.7555758 0.7555758 0.8301795 +0.7751122 0.7555758 0.8301795 +0.7940252 0.7555758 0.8301795 +0.8123661 0.7555758 0.8301795 +0.8301795 0.7555758 0.8301795 +0.8475045 0.7555758 0.8301795 +0.8643761 0.7555758 0.8301795 +0.880825 0.7555758 0.8301795 +0.8968787 0.7555758 0.8301795 +0.9125621 0.7555758 0.8301795 +0.9278974 0.7555758 0.8301795 +0.9429048 0.7555758 0.8301795 +0.9576028 0.7555758 0.8301795 +0.9720079 0.7555758 0.8301795 +0.9861357 0.7555758 0.8301795 +1 0.7555758 0.8301795 +0 0.7751122 0.8301795 +0.1939468 0.7751122 0.8301795 +0.2773041 0.7751122 0.8301795 +0.3384659 0.7751122 0.8301795 +0.3885728 0.7751122 0.8301795 +0.4317928 0.7751122 0.8301795 +0.470214 0.7751122 0.8301795 +0.5050551 0.7751122 0.8301795 +0.5370987 0.7751122 0.8301795 +0.5668815 0.7751122 0.8301795 +0.5947903 0.7751122 0.8301795 +0.6211144 0.7751122 0.8301795 +0.6460766 0.7751122 0.8301795 +0.6698526 0.7751122 0.8301795 +0.6925839 0.7751122 0.8301795 +0.7143866 0.7751122 0.8301795 +0.7353569 0.7751122 0.8301795 +0.7555758 0.7751122 0.8301795 +0.7751122 0.7751122 0.8301795 +0.7940252 0.7751122 0.8301795 +0.8123661 0.7751122 0.8301795 +0.8301795 0.7751122 0.8301795 +0.8475045 0.7751122 0.8301795 +0.8643761 0.7751122 0.8301795 +0.880825 0.7751122 0.8301795 +0.8968787 0.7751122 0.8301795 +0.9125621 0.7751122 0.8301795 +0.9278974 0.7751122 0.8301795 +0.9429048 0.7751122 0.8301795 +0.9576028 0.7751122 0.8301795 +0.9720079 0.7751122 0.8301795 +0.9861357 0.7751122 0.8301795 +1 0.7751122 0.8301795 +0 0.7940252 0.8301795 +0.1939468 0.7940252 0.8301795 +0.2773041 0.7940252 0.8301795 +0.3384659 0.7940252 0.8301795 +0.3885728 0.7940252 0.8301795 +0.4317928 0.7940252 0.8301795 +0.470214 0.7940252 0.8301795 +0.5050551 0.7940252 0.8301795 +0.5370987 0.7940252 0.8301795 +0.5668815 0.7940252 0.8301795 +0.5947903 0.7940252 0.8301795 +0.6211144 0.7940252 0.8301795 +0.6460766 0.7940252 0.8301795 +0.6698526 0.7940252 0.8301795 +0.6925839 0.7940252 0.8301795 +0.7143866 0.7940252 0.8301795 +0.7353569 0.7940252 0.8301795 +0.7555758 0.7940252 0.8301795 +0.7751122 0.7940252 0.8301795 +0.7940252 0.7940252 0.8301795 +0.8123661 0.7940252 0.8301795 +0.8301795 0.7940252 0.8301795 +0.8475045 0.7940252 0.8301795 +0.8643761 0.7940252 0.8301795 +0.880825 0.7940252 0.8301795 +0.8968787 0.7940252 0.8301795 +0.9125621 0.7940252 0.8301795 +0.9278974 0.7940252 0.8301795 +0.9429048 0.7940252 0.8301795 +0.9576028 0.7940252 0.8301795 +0.9720079 0.7940252 0.8301795 +0.9861357 0.7940252 0.8301795 +1 0.7940252 0.8301795 +0 0.8123661 0.8301795 +0.1939468 0.8123661 0.8301795 +0.2773041 0.8123661 0.8301795 +0.3384659 0.8123661 0.8301795 +0.3885728 0.8123661 0.8301795 +0.4317928 0.8123661 0.8301795 +0.470214 0.8123661 0.8301795 +0.5050551 0.8123661 0.8301795 +0.5370987 0.8123661 0.8301795 +0.5668815 0.8123661 0.8301795 +0.5947903 0.8123661 0.8301795 +0.6211144 0.8123661 0.8301795 +0.6460766 0.8123661 0.8301795 +0.6698526 0.8123661 0.8301795 +0.6925839 0.8123661 0.8301795 +0.7143866 0.8123661 0.8301795 +0.7353569 0.8123661 0.8301795 +0.7555758 0.8123661 0.8301795 +0.7751122 0.8123661 0.8301795 +0.7940252 0.8123661 0.8301795 +0.8123661 0.8123661 0.8301795 +0.8301795 0.8123661 0.8301795 +0.8475045 0.8123661 0.8301795 +0.8643761 0.8123661 0.8301795 +0.880825 0.8123661 0.8301795 +0.8968787 0.8123661 0.8301795 +0.9125621 0.8123661 0.8301795 +0.9278974 0.8123661 0.8301795 +0.9429048 0.8123661 0.8301795 +0.9576028 0.8123661 0.8301795 +0.9720079 0.8123661 0.8301795 +0.9861357 0.8123661 0.8301795 +1 0.8123661 0.8301795 +0 0.8301795 0.8301795 +0.1939468 0.8301795 0.8301795 +0.2773041 0.8301795 0.8301795 +0.3384659 0.8301795 0.8301795 +0.3885728 0.8301795 0.8301795 +0.4317928 0.8301795 0.8301795 +0.470214 0.8301795 0.8301795 +0.5050551 0.8301795 0.8301795 +0.5370987 0.8301795 0.8301795 +0.5668815 0.8301795 0.8301795 +0.5947903 0.8301795 0.8301795 +0.6211144 0.8301795 0.8301795 +0.6460766 0.8301795 0.8301795 +0.6698526 0.8301795 0.8301795 +0.6925839 0.8301795 0.8301795 +0.7143866 0.8301795 0.8301795 +0.7353569 0.8301795 0.8301795 +0.7555758 0.8301795 0.8301795 +0.7751122 0.8301795 0.8301795 +0.7940252 0.8301795 0.8301795 +0.8123661 0.8301795 0.8301795 +0.8301795 0.8301795 0.8301795 +0.8475045 0.8301795 0.8301795 +0.8643761 0.8301795 0.8301795 +0.880825 0.8301795 0.8301795 +0.8968787 0.8301795 0.8301795 +0.9125621 0.8301795 0.8301795 +0.9278974 0.8301795 0.8301795 +0.9429048 0.8301795 0.8301795 +0.9576028 0.8301795 0.8301795 +0.9720079 0.8301795 0.8301795 +0.9861357 0.8301795 0.8301795 +1 0.8301795 0.8301795 +0 0.8475045 0.8301795 +0.1939468 0.8475045 0.8301795 +0.2773041 0.8475045 0.8301795 +0.3384659 0.8475045 0.8301795 +0.3885728 0.8475045 0.8301795 +0.4317928 0.8475045 0.8301795 +0.470214 0.8475045 0.8301795 +0.5050551 0.8475045 0.8301795 +0.5370987 0.8475045 0.8301795 +0.5668815 0.8475045 0.8301795 +0.5947903 0.8475045 0.8301795 +0.6211144 0.8475045 0.8301795 +0.6460766 0.8475045 0.8301795 +0.6698526 0.8475045 0.8301795 +0.6925839 0.8475045 0.8301795 +0.7143866 0.8475045 0.8301795 +0.7353569 0.8475045 0.8301795 +0.7555758 0.8475045 0.8301795 +0.7751122 0.8475045 0.8301795 +0.7940252 0.8475045 0.8301795 +0.8123661 0.8475045 0.8301795 +0.8301795 0.8475045 0.8301795 +0.8475045 0.8475045 0.8301795 +0.8643761 0.8475045 0.8301795 +0.880825 0.8475045 0.8301795 +0.8968787 0.8475045 0.8301795 +0.9125621 0.8475045 0.8301795 +0.9278974 0.8475045 0.8301795 +0.9429048 0.8475045 0.8301795 +0.9576028 0.8475045 0.8301795 +0.9720079 0.8475045 0.8301795 +0.9861357 0.8475045 0.8301795 +1 0.8475045 0.8301795 +0 0.8643761 0.8301795 +0.1939468 0.8643761 0.8301795 +0.2773041 0.8643761 0.8301795 +0.3384659 0.8643761 0.8301795 +0.3885728 0.8643761 0.8301795 +0.4317928 0.8643761 0.8301795 +0.470214 0.8643761 0.8301795 +0.5050551 0.8643761 0.8301795 +0.5370987 0.8643761 0.8301795 +0.5668815 0.8643761 0.8301795 +0.5947903 0.8643761 0.8301795 +0.6211144 0.8643761 0.8301795 +0.6460766 0.8643761 0.8301795 +0.6698526 0.8643761 0.8301795 +0.6925839 0.8643761 0.8301795 +0.7143866 0.8643761 0.8301795 +0.7353569 0.8643761 0.8301795 +0.7555758 0.8643761 0.8301795 +0.7751122 0.8643761 0.8301795 +0.7940252 0.8643761 0.8301795 +0.8123661 0.8643761 0.8301795 +0.8301795 0.8643761 0.8301795 +0.8475045 0.8643761 0.8301795 +0.8643761 0.8643761 0.8301795 +0.880825 0.8643761 0.8301795 +0.8968787 0.8643761 0.8301795 +0.9125621 0.8643761 0.8301795 +0.9278974 0.8643761 0.8301795 +0.9429048 0.8643761 0.8301795 +0.9576028 0.8643761 0.8301795 +0.9720079 0.8643761 0.8301795 +0.9861357 0.8643761 0.8301795 +1 0.8643761 0.8301795 +0 0.880825 0.8301795 +0.1939468 0.880825 0.8301795 +0.2773041 0.880825 0.8301795 +0.3384659 0.880825 0.8301795 +0.3885728 0.880825 0.8301795 +0.4317928 0.880825 0.8301795 +0.470214 0.880825 0.8301795 +0.5050551 0.880825 0.8301795 +0.5370987 0.880825 0.8301795 +0.5668815 0.880825 0.8301795 +0.5947903 0.880825 0.8301795 +0.6211144 0.880825 0.8301795 +0.6460766 0.880825 0.8301795 +0.6698526 0.880825 0.8301795 +0.6925839 0.880825 0.8301795 +0.7143866 0.880825 0.8301795 +0.7353569 0.880825 0.8301795 +0.7555758 0.880825 0.8301795 +0.7751122 0.880825 0.8301795 +0.7940252 0.880825 0.8301795 +0.8123661 0.880825 0.8301795 +0.8301795 0.880825 0.8301795 +0.8475045 0.880825 0.8301795 +0.8643761 0.880825 0.8301795 +0.880825 0.880825 0.8301795 +0.8968787 0.880825 0.8301795 +0.9125621 0.880825 0.8301795 +0.9278974 0.880825 0.8301795 +0.9429048 0.880825 0.8301795 +0.9576028 0.880825 0.8301795 +0.9720079 0.880825 0.8301795 +0.9861357 0.880825 0.8301795 +1 0.880825 0.8301795 +0 0.8968787 0.8301795 +0.1939468 0.8968787 0.8301795 +0.2773041 0.8968787 0.8301795 +0.3384659 0.8968787 0.8301795 +0.3885728 0.8968787 0.8301795 +0.4317928 0.8968787 0.8301795 +0.470214 0.8968787 0.8301795 +0.5050551 0.8968787 0.8301795 +0.5370987 0.8968787 0.8301795 +0.5668815 0.8968787 0.8301795 +0.5947903 0.8968787 0.8301795 +0.6211144 0.8968787 0.8301795 +0.6460766 0.8968787 0.8301795 +0.6698526 0.8968787 0.8301795 +0.6925839 0.8968787 0.8301795 +0.7143866 0.8968787 0.8301795 +0.7353569 0.8968787 0.8301795 +0.7555758 0.8968787 0.8301795 +0.7751122 0.8968787 0.8301795 +0.7940252 0.8968787 0.8301795 +0.8123661 0.8968787 0.8301795 +0.8301795 0.8968787 0.8301795 +0.8475045 0.8968787 0.8301795 +0.8643761 0.8968787 0.8301795 +0.880825 0.8968787 0.8301795 +0.8968787 0.8968787 0.8301795 +0.9125621 0.8968787 0.8301795 +0.9278974 0.8968787 0.8301795 +0.9429048 0.8968787 0.8301795 +0.9576028 0.8968787 0.8301795 +0.9720079 0.8968787 0.8301795 +0.9861357 0.8968787 0.8301795 +1 0.8968787 0.8301795 +0 0.9125621 0.8301795 +0.1939468 0.9125621 0.8301795 +0.2773041 0.9125621 0.8301795 +0.3384659 0.9125621 0.8301795 +0.3885728 0.9125621 0.8301795 +0.4317928 0.9125621 0.8301795 +0.470214 0.9125621 0.8301795 +0.5050551 0.9125621 0.8301795 +0.5370987 0.9125621 0.8301795 +0.5668815 0.9125621 0.8301795 +0.5947903 0.9125621 0.8301795 +0.6211144 0.9125621 0.8301795 +0.6460766 0.9125621 0.8301795 +0.6698526 0.9125621 0.8301795 +0.6925839 0.9125621 0.8301795 +0.7143866 0.9125621 0.8301795 +0.7353569 0.9125621 0.8301795 +0.7555758 0.9125621 0.8301795 +0.7751122 0.9125621 0.8301795 +0.7940252 0.9125621 0.8301795 +0.8123661 0.9125621 0.8301795 +0.8301795 0.9125621 0.8301795 +0.8475045 0.9125621 0.8301795 +0.8643761 0.9125621 0.8301795 +0.880825 0.9125621 0.8301795 +0.8968787 0.9125621 0.8301795 +0.9125621 0.9125621 0.8301795 +0.9278974 0.9125621 0.8301795 +0.9429048 0.9125621 0.8301795 +0.9576028 0.9125621 0.8301795 +0.9720079 0.9125621 0.8301795 +0.9861357 0.9125621 0.8301795 +1 0.9125621 0.8301795 +0 0.9278974 0.8301795 +0.1939468 0.9278974 0.8301795 +0.2773041 0.9278974 0.8301795 +0.3384659 0.9278974 0.8301795 +0.3885728 0.9278974 0.8301795 +0.4317928 0.9278974 0.8301795 +0.470214 0.9278974 0.8301795 +0.5050551 0.9278974 0.8301795 +0.5370987 0.9278974 0.8301795 +0.5668815 0.9278974 0.8301795 +0.5947903 0.9278974 0.8301795 +0.6211144 0.9278974 0.8301795 +0.6460766 0.9278974 0.8301795 +0.6698526 0.9278974 0.8301795 +0.6925839 0.9278974 0.8301795 +0.7143866 0.9278974 0.8301795 +0.7353569 0.9278974 0.8301795 +0.7555758 0.9278974 0.8301795 +0.7751122 0.9278974 0.8301795 +0.7940252 0.9278974 0.8301795 +0.8123661 0.9278974 0.8301795 +0.8301795 0.9278974 0.8301795 +0.8475045 0.9278974 0.8301795 +0.8643761 0.9278974 0.8301795 +0.880825 0.9278974 0.8301795 +0.8968787 0.9278974 0.8301795 +0.9125621 0.9278974 0.8301795 +0.9278974 0.9278974 0.8301795 +0.9429048 0.9278974 0.8301795 +0.9576028 0.9278974 0.8301795 +0.9720079 0.9278974 0.8301795 +0.9861357 0.9278974 0.8301795 +1 0.9278974 0.8301795 +0 0.9429048 0.8301795 +0.1939468 0.9429048 0.8301795 +0.2773041 0.9429048 0.8301795 +0.3384659 0.9429048 0.8301795 +0.3885728 0.9429048 0.8301795 +0.4317928 0.9429048 0.8301795 +0.470214 0.9429048 0.8301795 +0.5050551 0.9429048 0.8301795 +0.5370987 0.9429048 0.8301795 +0.5668815 0.9429048 0.8301795 +0.5947903 0.9429048 0.8301795 +0.6211144 0.9429048 0.8301795 +0.6460766 0.9429048 0.8301795 +0.6698526 0.9429048 0.8301795 +0.6925839 0.9429048 0.8301795 +0.7143866 0.9429048 0.8301795 +0.7353569 0.9429048 0.8301795 +0.7555758 0.9429048 0.8301795 +0.7751122 0.9429048 0.8301795 +0.7940252 0.9429048 0.8301795 +0.8123661 0.9429048 0.8301795 +0.8301795 0.9429048 0.8301795 +0.8475045 0.9429048 0.8301795 +0.8643761 0.9429048 0.8301795 +0.880825 0.9429048 0.8301795 +0.8968787 0.9429048 0.8301795 +0.9125621 0.9429048 0.8301795 +0.9278974 0.9429048 0.8301795 +0.9429048 0.9429048 0.8301795 +0.9576028 0.9429048 0.8301795 +0.9720079 0.9429048 0.8301795 +0.9861357 0.9429048 0.8301795 +1 0.9429048 0.8301795 +0 0.9576028 0.8301795 +0.1939468 0.9576028 0.8301795 +0.2773041 0.9576028 0.8301795 +0.3384659 0.9576028 0.8301795 +0.3885728 0.9576028 0.8301795 +0.4317928 0.9576028 0.8301795 +0.470214 0.9576028 0.8301795 +0.5050551 0.9576028 0.8301795 +0.5370987 0.9576028 0.8301795 +0.5668815 0.9576028 0.8301795 +0.5947903 0.9576028 0.8301795 +0.6211144 0.9576028 0.8301795 +0.6460766 0.9576028 0.8301795 +0.6698526 0.9576028 0.8301795 +0.6925839 0.9576028 0.8301795 +0.7143866 0.9576028 0.8301795 +0.7353569 0.9576028 0.8301795 +0.7555758 0.9576028 0.8301795 +0.7751122 0.9576028 0.8301795 +0.7940252 0.9576028 0.8301795 +0.8123661 0.9576028 0.8301795 +0.8301795 0.9576028 0.8301795 +0.8475045 0.9576028 0.8301795 +0.8643761 0.9576028 0.8301795 +0.880825 0.9576028 0.8301795 +0.8968787 0.9576028 0.8301795 +0.9125621 0.9576028 0.8301795 +0.9278974 0.9576028 0.8301795 +0.9429048 0.9576028 0.8301795 +0.9576028 0.9576028 0.8301795 +0.9720079 0.9576028 0.8301795 +0.9861357 0.9576028 0.8301795 +1 0.9576028 0.8301795 +0 0.9720079 0.8301795 +0.1939468 0.9720079 0.8301795 +0.2773041 0.9720079 0.8301795 +0.3384659 0.9720079 0.8301795 +0.3885728 0.9720079 0.8301795 +0.4317928 0.9720079 0.8301795 +0.470214 0.9720079 0.8301795 +0.5050551 0.9720079 0.8301795 +0.5370987 0.9720079 0.8301795 +0.5668815 0.9720079 0.8301795 +0.5947903 0.9720079 0.8301795 +0.6211144 0.9720079 0.8301795 +0.6460766 0.9720079 0.8301795 +0.6698526 0.9720079 0.8301795 +0.6925839 0.9720079 0.8301795 +0.7143866 0.9720079 0.8301795 +0.7353569 0.9720079 0.8301795 +0.7555758 0.9720079 0.8301795 +0.7751122 0.9720079 0.8301795 +0.7940252 0.9720079 0.8301795 +0.8123661 0.9720079 0.8301795 +0.8301795 0.9720079 0.8301795 +0.8475045 0.9720079 0.8301795 +0.8643761 0.9720079 0.8301795 +0.880825 0.9720079 0.8301795 +0.8968787 0.9720079 0.8301795 +0.9125621 0.9720079 0.8301795 +0.9278974 0.9720079 0.8301795 +0.9429048 0.9720079 0.8301795 +0.9576028 0.9720079 0.8301795 +0.9720079 0.9720079 0.8301795 +0.9861357 0.9720079 0.8301795 +1 0.9720079 0.8301795 +0 0.9861357 0.8301795 +0.1939468 0.9861357 0.8301795 +0.2773041 0.9861357 0.8301795 +0.3384659 0.9861357 0.8301795 +0.3885728 0.9861357 0.8301795 +0.4317928 0.9861357 0.8301795 +0.470214 0.9861357 0.8301795 +0.5050551 0.9861357 0.8301795 +0.5370987 0.9861357 0.8301795 +0.5668815 0.9861357 0.8301795 +0.5947903 0.9861357 0.8301795 +0.6211144 0.9861357 0.8301795 +0.6460766 0.9861357 0.8301795 +0.6698526 0.9861357 0.8301795 +0.6925839 0.9861357 0.8301795 +0.7143866 0.9861357 0.8301795 +0.7353569 0.9861357 0.8301795 +0.7555758 0.9861357 0.8301795 +0.7751122 0.9861357 0.8301795 +0.7940252 0.9861357 0.8301795 +0.8123661 0.9861357 0.8301795 +0.8301795 0.9861357 0.8301795 +0.8475045 0.9861357 0.8301795 +0.8643761 0.9861357 0.8301795 +0.880825 0.9861357 0.8301795 +0.8968787 0.9861357 0.8301795 +0.9125621 0.9861357 0.8301795 +0.9278974 0.9861357 0.8301795 +0.9429048 0.9861357 0.8301795 +0.9576028 0.9861357 0.8301795 +0.9720079 0.9861357 0.8301795 +0.9861357 0.9861357 0.8301795 +1 0.9861357 0.8301795 +0 1 0.8301795 +0.1939468 1 0.8301795 +0.2773041 1 0.8301795 +0.3384659 1 0.8301795 +0.3885728 1 0.8301795 +0.4317928 1 0.8301795 +0.470214 1 0.8301795 +0.5050551 1 0.8301795 +0.5370987 1 0.8301795 +0.5668815 1 0.8301795 +0.5947903 1 0.8301795 +0.6211144 1 0.8301795 +0.6460766 1 0.8301795 +0.6698526 1 0.8301795 +0.6925839 1 0.8301795 +0.7143866 1 0.8301795 +0.7353569 1 0.8301795 +0.7555758 1 0.8301795 +0.7751122 1 0.8301795 +0.7940252 1 0.8301795 +0.8123661 1 0.8301795 +0.8301795 1 0.8301795 +0.8475045 1 0.8301795 +0.8643761 1 0.8301795 +0.880825 1 0.8301795 +0.8968787 1 0.8301795 +0.9125621 1 0.8301795 +0.9278974 1 0.8301795 +0.9429048 1 0.8301795 +0.9576028 1 0.8301795 +0.9720079 1 0.8301795 +0.9861357 1 0.8301795 +1 1 0.8301795 +0 0 0.8475045 +0.1939468 0 0.8475045 +0.2773041 0 0.8475045 +0.3384659 0 0.8475045 +0.3885728 0 0.8475045 +0.4317928 0 0.8475045 +0.470214 0 0.8475045 +0.5050551 0 0.8475045 +0.5370987 0 0.8475045 +0.5668815 0 0.8475045 +0.5947903 0 0.8475045 +0.6211144 0 0.8475045 +0.6460766 0 0.8475045 +0.6698526 0 0.8475045 +0.6925839 0 0.8475045 +0.7143866 0 0.8475045 +0.7353569 0 0.8475045 +0.7555758 0 0.8475045 +0.7751122 0 0.8475045 +0.7940252 0 0.8475045 +0.8123661 0 0.8475045 +0.8301795 0 0.8475045 +0.8475045 0 0.8475045 +0.8643761 0 0.8475045 +0.880825 0 0.8475045 +0.8968787 0 0.8475045 +0.9125621 0 0.8475045 +0.9278974 0 0.8475045 +0.9429048 0 0.8475045 +0.9576028 0 0.8475045 +0.9720079 0 0.8475045 +0.9861357 0 0.8475045 +1 0 0.8475045 +0 0.1939468 0.8475045 +0.1939468 0.1939468 0.8475045 +0.2773041 0.1939468 0.8475045 +0.3384659 0.1939468 0.8475045 +0.3885728 0.1939468 0.8475045 +0.4317928 0.1939468 0.8475045 +0.470214 0.1939468 0.8475045 +0.5050551 0.1939468 0.8475045 +0.5370987 0.1939468 0.8475045 +0.5668815 0.1939468 0.8475045 +0.5947903 0.1939468 0.8475045 +0.6211144 0.1939468 0.8475045 +0.6460766 0.1939468 0.8475045 +0.6698526 0.1939468 0.8475045 +0.6925839 0.1939468 0.8475045 +0.7143866 0.1939468 0.8475045 +0.7353569 0.1939468 0.8475045 +0.7555758 0.1939468 0.8475045 +0.7751122 0.1939468 0.8475045 +0.7940252 0.1939468 0.8475045 +0.8123661 0.1939468 0.8475045 +0.8301795 0.1939468 0.8475045 +0.8475045 0.1939468 0.8475045 +0.8643761 0.1939468 0.8475045 +0.880825 0.1939468 0.8475045 +0.8968787 0.1939468 0.8475045 +0.9125621 0.1939468 0.8475045 +0.9278974 0.1939468 0.8475045 +0.9429048 0.1939468 0.8475045 +0.9576028 0.1939468 0.8475045 +0.9720079 0.1939468 0.8475045 +0.9861357 0.1939468 0.8475045 +1 0.1939468 0.8475045 +0 0.2773041 0.8475045 +0.1939468 0.2773041 0.8475045 +0.2773041 0.2773041 0.8475045 +0.3384659 0.2773041 0.8475045 +0.3885728 0.2773041 0.8475045 +0.4317928 0.2773041 0.8475045 +0.470214 0.2773041 0.8475045 +0.5050551 0.2773041 0.8475045 +0.5370987 0.2773041 0.8475045 +0.5668815 0.2773041 0.8475045 +0.5947903 0.2773041 0.8475045 +0.6211144 0.2773041 0.8475045 +0.6460766 0.2773041 0.8475045 +0.6698526 0.2773041 0.8475045 +0.6925839 0.2773041 0.8475045 +0.7143866 0.2773041 0.8475045 +0.7353569 0.2773041 0.8475045 +0.7555758 0.2773041 0.8475045 +0.7751122 0.2773041 0.8475045 +0.7940252 0.2773041 0.8475045 +0.8123661 0.2773041 0.8475045 +0.8301795 0.2773041 0.8475045 +0.8475045 0.2773041 0.8475045 +0.8643761 0.2773041 0.8475045 +0.880825 0.2773041 0.8475045 +0.8968787 0.2773041 0.8475045 +0.9125621 0.2773041 0.8475045 +0.9278974 0.2773041 0.8475045 +0.9429048 0.2773041 0.8475045 +0.9576028 0.2773041 0.8475045 +0.9720079 0.2773041 0.8475045 +0.9861357 0.2773041 0.8475045 +1 0.2773041 0.8475045 +0 0.3384659 0.8475045 +0.1939468 0.3384659 0.8475045 +0.2773041 0.3384659 0.8475045 +0.3384659 0.3384659 0.8475045 +0.3885728 0.3384659 0.8475045 +0.4317928 0.3384659 0.8475045 +0.470214 0.3384659 0.8475045 +0.5050551 0.3384659 0.8475045 +0.5370987 0.3384659 0.8475045 +0.5668815 0.3384659 0.8475045 +0.5947903 0.3384659 0.8475045 +0.6211144 0.3384659 0.8475045 +0.6460766 0.3384659 0.8475045 +0.6698526 0.3384659 0.8475045 +0.6925839 0.3384659 0.8475045 +0.7143866 0.3384659 0.8475045 +0.7353569 0.3384659 0.8475045 +0.7555758 0.3384659 0.8475045 +0.7751122 0.3384659 0.8475045 +0.7940252 0.3384659 0.8475045 +0.8123661 0.3384659 0.8475045 +0.8301795 0.3384659 0.8475045 +0.8475045 0.3384659 0.8475045 +0.8643761 0.3384659 0.8475045 +0.880825 0.3384659 0.8475045 +0.8968787 0.3384659 0.8475045 +0.9125621 0.3384659 0.8475045 +0.9278974 0.3384659 0.8475045 +0.9429048 0.3384659 0.8475045 +0.9576028 0.3384659 0.8475045 +0.9720079 0.3384659 0.8475045 +0.9861357 0.3384659 0.8475045 +1 0.3384659 0.8475045 +0 0.3885728 0.8475045 +0.1939468 0.3885728 0.8475045 +0.2773041 0.3885728 0.8475045 +0.3384659 0.3885728 0.8475045 +0.3885728 0.3885728 0.8475045 +0.4317928 0.3885728 0.8475045 +0.470214 0.3885728 0.8475045 +0.5050551 0.3885728 0.8475045 +0.5370987 0.3885728 0.8475045 +0.5668815 0.3885728 0.8475045 +0.5947903 0.3885728 0.8475045 +0.6211144 0.3885728 0.8475045 +0.6460766 0.3885728 0.8475045 +0.6698526 0.3885728 0.8475045 +0.6925839 0.3885728 0.8475045 +0.7143866 0.3885728 0.8475045 +0.7353569 0.3885728 0.8475045 +0.7555758 0.3885728 0.8475045 +0.7751122 0.3885728 0.8475045 +0.7940252 0.3885728 0.8475045 +0.8123661 0.3885728 0.8475045 +0.8301795 0.3885728 0.8475045 +0.8475045 0.3885728 0.8475045 +0.8643761 0.3885728 0.8475045 +0.880825 0.3885728 0.8475045 +0.8968787 0.3885728 0.8475045 +0.9125621 0.3885728 0.8475045 +0.9278974 0.3885728 0.8475045 +0.9429048 0.3885728 0.8475045 +0.9576028 0.3885728 0.8475045 +0.9720079 0.3885728 0.8475045 +0.9861357 0.3885728 0.8475045 +1 0.3885728 0.8475045 +0 0.4317928 0.8475045 +0.1939468 0.4317928 0.8475045 +0.2773041 0.4317928 0.8475045 +0.3384659 0.4317928 0.8475045 +0.3885728 0.4317928 0.8475045 +0.4317928 0.4317928 0.8475045 +0.470214 0.4317928 0.8475045 +0.5050551 0.4317928 0.8475045 +0.5370987 0.4317928 0.8475045 +0.5668815 0.4317928 0.8475045 +0.5947903 0.4317928 0.8475045 +0.6211144 0.4317928 0.8475045 +0.6460766 0.4317928 0.8475045 +0.6698526 0.4317928 0.8475045 +0.6925839 0.4317928 0.8475045 +0.7143866 0.4317928 0.8475045 +0.7353569 0.4317928 0.8475045 +0.7555758 0.4317928 0.8475045 +0.7751122 0.4317928 0.8475045 +0.7940252 0.4317928 0.8475045 +0.8123661 0.4317928 0.8475045 +0.8301795 0.4317928 0.8475045 +0.8475045 0.4317928 0.8475045 +0.8643761 0.4317928 0.8475045 +0.880825 0.4317928 0.8475045 +0.8968787 0.4317928 0.8475045 +0.9125621 0.4317928 0.8475045 +0.9278974 0.4317928 0.8475045 +0.9429048 0.4317928 0.8475045 +0.9576028 0.4317928 0.8475045 +0.9720079 0.4317928 0.8475045 +0.9861357 0.4317928 0.8475045 +1 0.4317928 0.8475045 +0 0.470214 0.8475045 +0.1939468 0.470214 0.8475045 +0.2773041 0.470214 0.8475045 +0.3384659 0.470214 0.8475045 +0.3885728 0.470214 0.8475045 +0.4317928 0.470214 0.8475045 +0.470214 0.470214 0.8475045 +0.5050551 0.470214 0.8475045 +0.5370987 0.470214 0.8475045 +0.5668815 0.470214 0.8475045 +0.5947903 0.470214 0.8475045 +0.6211144 0.470214 0.8475045 +0.6460766 0.470214 0.8475045 +0.6698526 0.470214 0.8475045 +0.6925839 0.470214 0.8475045 +0.7143866 0.470214 0.8475045 +0.7353569 0.470214 0.8475045 +0.7555758 0.470214 0.8475045 +0.7751122 0.470214 0.8475045 +0.7940252 0.470214 0.8475045 +0.8123661 0.470214 0.8475045 +0.8301795 0.470214 0.8475045 +0.8475045 0.470214 0.8475045 +0.8643761 0.470214 0.8475045 +0.880825 0.470214 0.8475045 +0.8968787 0.470214 0.8475045 +0.9125621 0.470214 0.8475045 +0.9278974 0.470214 0.8475045 +0.9429048 0.470214 0.8475045 +0.9576028 0.470214 0.8475045 +0.9720079 0.470214 0.8475045 +0.9861357 0.470214 0.8475045 +1 0.470214 0.8475045 +0 0.5050551 0.8475045 +0.1939468 0.5050551 0.8475045 +0.2773041 0.5050551 0.8475045 +0.3384659 0.5050551 0.8475045 +0.3885728 0.5050551 0.8475045 +0.4317928 0.5050551 0.8475045 +0.470214 0.5050551 0.8475045 +0.5050551 0.5050551 0.8475045 +0.5370987 0.5050551 0.8475045 +0.5668815 0.5050551 0.8475045 +0.5947903 0.5050551 0.8475045 +0.6211144 0.5050551 0.8475045 +0.6460766 0.5050551 0.8475045 +0.6698526 0.5050551 0.8475045 +0.6925839 0.5050551 0.8475045 +0.7143866 0.5050551 0.8475045 +0.7353569 0.5050551 0.8475045 +0.7555758 0.5050551 0.8475045 +0.7751122 0.5050551 0.8475045 +0.7940252 0.5050551 0.8475045 +0.8123661 0.5050551 0.8475045 +0.8301795 0.5050551 0.8475045 +0.8475045 0.5050551 0.8475045 +0.8643761 0.5050551 0.8475045 +0.880825 0.5050551 0.8475045 +0.8968787 0.5050551 0.8475045 +0.9125621 0.5050551 0.8475045 +0.9278974 0.5050551 0.8475045 +0.9429048 0.5050551 0.8475045 +0.9576028 0.5050551 0.8475045 +0.9720079 0.5050551 0.8475045 +0.9861357 0.5050551 0.8475045 +1 0.5050551 0.8475045 +0 0.5370987 0.8475045 +0.1939468 0.5370987 0.8475045 +0.2773041 0.5370987 0.8475045 +0.3384659 0.5370987 0.8475045 +0.3885728 0.5370987 0.8475045 +0.4317928 0.5370987 0.8475045 +0.470214 0.5370987 0.8475045 +0.5050551 0.5370987 0.8475045 +0.5370987 0.5370987 0.8475045 +0.5668815 0.5370987 0.8475045 +0.5947903 0.5370987 0.8475045 +0.6211144 0.5370987 0.8475045 +0.6460766 0.5370987 0.8475045 +0.6698526 0.5370987 0.8475045 +0.6925839 0.5370987 0.8475045 +0.7143866 0.5370987 0.8475045 +0.7353569 0.5370987 0.8475045 +0.7555758 0.5370987 0.8475045 +0.7751122 0.5370987 0.8475045 +0.7940252 0.5370987 0.8475045 +0.8123661 0.5370987 0.8475045 +0.8301795 0.5370987 0.8475045 +0.8475045 0.5370987 0.8475045 +0.8643761 0.5370987 0.8475045 +0.880825 0.5370987 0.8475045 +0.8968787 0.5370987 0.8475045 +0.9125621 0.5370987 0.8475045 +0.9278974 0.5370987 0.8475045 +0.9429048 0.5370987 0.8475045 +0.9576028 0.5370987 0.8475045 +0.9720079 0.5370987 0.8475045 +0.9861357 0.5370987 0.8475045 +1 0.5370987 0.8475045 +0 0.5668815 0.8475045 +0.1939468 0.5668815 0.8475045 +0.2773041 0.5668815 0.8475045 +0.3384659 0.5668815 0.8475045 +0.3885728 0.5668815 0.8475045 +0.4317928 0.5668815 0.8475045 +0.470214 0.5668815 0.8475045 +0.5050551 0.5668815 0.8475045 +0.5370987 0.5668815 0.8475045 +0.5668815 0.5668815 0.8475045 +0.5947903 0.5668815 0.8475045 +0.6211144 0.5668815 0.8475045 +0.6460766 0.5668815 0.8475045 +0.6698526 0.5668815 0.8475045 +0.6925839 0.5668815 0.8475045 +0.7143866 0.5668815 0.8475045 +0.7353569 0.5668815 0.8475045 +0.7555758 0.5668815 0.8475045 +0.7751122 0.5668815 0.8475045 +0.7940252 0.5668815 0.8475045 +0.8123661 0.5668815 0.8475045 +0.8301795 0.5668815 0.8475045 +0.8475045 0.5668815 0.8475045 +0.8643761 0.5668815 0.8475045 +0.880825 0.5668815 0.8475045 +0.8968787 0.5668815 0.8475045 +0.9125621 0.5668815 0.8475045 +0.9278974 0.5668815 0.8475045 +0.9429048 0.5668815 0.8475045 +0.9576028 0.5668815 0.8475045 +0.9720079 0.5668815 0.8475045 +0.9861357 0.5668815 0.8475045 +1 0.5668815 0.8475045 +0 0.5947903 0.8475045 +0.1939468 0.5947903 0.8475045 +0.2773041 0.5947903 0.8475045 +0.3384659 0.5947903 0.8475045 +0.3885728 0.5947903 0.8475045 +0.4317928 0.5947903 0.8475045 +0.470214 0.5947903 0.8475045 +0.5050551 0.5947903 0.8475045 +0.5370987 0.5947903 0.8475045 +0.5668815 0.5947903 0.8475045 +0.5947903 0.5947903 0.8475045 +0.6211144 0.5947903 0.8475045 +0.6460766 0.5947903 0.8475045 +0.6698526 0.5947903 0.8475045 +0.6925839 0.5947903 0.8475045 +0.7143866 0.5947903 0.8475045 +0.7353569 0.5947903 0.8475045 +0.7555758 0.5947903 0.8475045 +0.7751122 0.5947903 0.8475045 +0.7940252 0.5947903 0.8475045 +0.8123661 0.5947903 0.8475045 +0.8301795 0.5947903 0.8475045 +0.8475045 0.5947903 0.8475045 +0.8643761 0.5947903 0.8475045 +0.880825 0.5947903 0.8475045 +0.8968787 0.5947903 0.8475045 +0.9125621 0.5947903 0.8475045 +0.9278974 0.5947903 0.8475045 +0.9429048 0.5947903 0.8475045 +0.9576028 0.5947903 0.8475045 +0.9720079 0.5947903 0.8475045 +0.9861357 0.5947903 0.8475045 +1 0.5947903 0.8475045 +0 0.6211144 0.8475045 +0.1939468 0.6211144 0.8475045 +0.2773041 0.6211144 0.8475045 +0.3384659 0.6211144 0.8475045 +0.3885728 0.6211144 0.8475045 +0.4317928 0.6211144 0.8475045 +0.470214 0.6211144 0.8475045 +0.5050551 0.6211144 0.8475045 +0.5370987 0.6211144 0.8475045 +0.5668815 0.6211144 0.8475045 +0.5947903 0.6211144 0.8475045 +0.6211144 0.6211144 0.8475045 +0.6460766 0.6211144 0.8475045 +0.6698526 0.6211144 0.8475045 +0.6925839 0.6211144 0.8475045 +0.7143866 0.6211144 0.8475045 +0.7353569 0.6211144 0.8475045 +0.7555758 0.6211144 0.8475045 +0.7751122 0.6211144 0.8475045 +0.7940252 0.6211144 0.8475045 +0.8123661 0.6211144 0.8475045 +0.8301795 0.6211144 0.8475045 +0.8475045 0.6211144 0.8475045 +0.8643761 0.6211144 0.8475045 +0.880825 0.6211144 0.8475045 +0.8968787 0.6211144 0.8475045 +0.9125621 0.6211144 0.8475045 +0.9278974 0.6211144 0.8475045 +0.9429048 0.6211144 0.8475045 +0.9576028 0.6211144 0.8475045 +0.9720079 0.6211144 0.8475045 +0.9861357 0.6211144 0.8475045 +1 0.6211144 0.8475045 +0 0.6460766 0.8475045 +0.1939468 0.6460766 0.8475045 +0.2773041 0.6460766 0.8475045 +0.3384659 0.6460766 0.8475045 +0.3885728 0.6460766 0.8475045 +0.4317928 0.6460766 0.8475045 +0.470214 0.6460766 0.8475045 +0.5050551 0.6460766 0.8475045 +0.5370987 0.6460766 0.8475045 +0.5668815 0.6460766 0.8475045 +0.5947903 0.6460766 0.8475045 +0.6211144 0.6460766 0.8475045 +0.6460766 0.6460766 0.8475045 +0.6698526 0.6460766 0.8475045 +0.6925839 0.6460766 0.8475045 +0.7143866 0.6460766 0.8475045 +0.7353569 0.6460766 0.8475045 +0.7555758 0.6460766 0.8475045 +0.7751122 0.6460766 0.8475045 +0.7940252 0.6460766 0.8475045 +0.8123661 0.6460766 0.8475045 +0.8301795 0.6460766 0.8475045 +0.8475045 0.6460766 0.8475045 +0.8643761 0.6460766 0.8475045 +0.880825 0.6460766 0.8475045 +0.8968787 0.6460766 0.8475045 +0.9125621 0.6460766 0.8475045 +0.9278974 0.6460766 0.8475045 +0.9429048 0.6460766 0.8475045 +0.9576028 0.6460766 0.8475045 +0.9720079 0.6460766 0.8475045 +0.9861357 0.6460766 0.8475045 +1 0.6460766 0.8475045 +0 0.6698526 0.8475045 +0.1939468 0.6698526 0.8475045 +0.2773041 0.6698526 0.8475045 +0.3384659 0.6698526 0.8475045 +0.3885728 0.6698526 0.8475045 +0.4317928 0.6698526 0.8475045 +0.470214 0.6698526 0.8475045 +0.5050551 0.6698526 0.8475045 +0.5370987 0.6698526 0.8475045 +0.5668815 0.6698526 0.8475045 +0.5947903 0.6698526 0.8475045 +0.6211144 0.6698526 0.8475045 +0.6460766 0.6698526 0.8475045 +0.6698526 0.6698526 0.8475045 +0.6925839 0.6698526 0.8475045 +0.7143866 0.6698526 0.8475045 +0.7353569 0.6698526 0.8475045 +0.7555758 0.6698526 0.8475045 +0.7751122 0.6698526 0.8475045 +0.7940252 0.6698526 0.8475045 +0.8123661 0.6698526 0.8475045 +0.8301795 0.6698526 0.8475045 +0.8475045 0.6698526 0.8475045 +0.8643761 0.6698526 0.8475045 +0.880825 0.6698526 0.8475045 +0.8968787 0.6698526 0.8475045 +0.9125621 0.6698526 0.8475045 +0.9278974 0.6698526 0.8475045 +0.9429048 0.6698526 0.8475045 +0.9576028 0.6698526 0.8475045 +0.9720079 0.6698526 0.8475045 +0.9861357 0.6698526 0.8475045 +1 0.6698526 0.8475045 +0 0.6925839 0.8475045 +0.1939468 0.6925839 0.8475045 +0.2773041 0.6925839 0.8475045 +0.3384659 0.6925839 0.8475045 +0.3885728 0.6925839 0.8475045 +0.4317928 0.6925839 0.8475045 +0.470214 0.6925839 0.8475045 +0.5050551 0.6925839 0.8475045 +0.5370987 0.6925839 0.8475045 +0.5668815 0.6925839 0.8475045 +0.5947903 0.6925839 0.8475045 +0.6211144 0.6925839 0.8475045 +0.6460766 0.6925839 0.8475045 +0.6698526 0.6925839 0.8475045 +0.6925839 0.6925839 0.8475045 +0.7143866 0.6925839 0.8475045 +0.7353569 0.6925839 0.8475045 +0.7555758 0.6925839 0.8475045 +0.7751122 0.6925839 0.8475045 +0.7940252 0.6925839 0.8475045 +0.8123661 0.6925839 0.8475045 +0.8301795 0.6925839 0.8475045 +0.8475045 0.6925839 0.8475045 +0.8643761 0.6925839 0.8475045 +0.880825 0.6925839 0.8475045 +0.8968787 0.6925839 0.8475045 +0.9125621 0.6925839 0.8475045 +0.9278974 0.6925839 0.8475045 +0.9429048 0.6925839 0.8475045 +0.9576028 0.6925839 0.8475045 +0.9720079 0.6925839 0.8475045 +0.9861357 0.6925839 0.8475045 +1 0.6925839 0.8475045 +0 0.7143866 0.8475045 +0.1939468 0.7143866 0.8475045 +0.2773041 0.7143866 0.8475045 +0.3384659 0.7143866 0.8475045 +0.3885728 0.7143866 0.8475045 +0.4317928 0.7143866 0.8475045 +0.470214 0.7143866 0.8475045 +0.5050551 0.7143866 0.8475045 +0.5370987 0.7143866 0.8475045 +0.5668815 0.7143866 0.8475045 +0.5947903 0.7143866 0.8475045 +0.6211144 0.7143866 0.8475045 +0.6460766 0.7143866 0.8475045 +0.6698526 0.7143866 0.8475045 +0.6925839 0.7143866 0.8475045 +0.7143866 0.7143866 0.8475045 +0.7353569 0.7143866 0.8475045 +0.7555758 0.7143866 0.8475045 +0.7751122 0.7143866 0.8475045 +0.7940252 0.7143866 0.8475045 +0.8123661 0.7143866 0.8475045 +0.8301795 0.7143866 0.8475045 +0.8475045 0.7143866 0.8475045 +0.8643761 0.7143866 0.8475045 +0.880825 0.7143866 0.8475045 +0.8968787 0.7143866 0.8475045 +0.9125621 0.7143866 0.8475045 +0.9278974 0.7143866 0.8475045 +0.9429048 0.7143866 0.8475045 +0.9576028 0.7143866 0.8475045 +0.9720079 0.7143866 0.8475045 +0.9861357 0.7143866 0.8475045 +1 0.7143866 0.8475045 +0 0.7353569 0.8475045 +0.1939468 0.7353569 0.8475045 +0.2773041 0.7353569 0.8475045 +0.3384659 0.7353569 0.8475045 +0.3885728 0.7353569 0.8475045 +0.4317928 0.7353569 0.8475045 +0.470214 0.7353569 0.8475045 +0.5050551 0.7353569 0.8475045 +0.5370987 0.7353569 0.8475045 +0.5668815 0.7353569 0.8475045 +0.5947903 0.7353569 0.8475045 +0.6211144 0.7353569 0.8475045 +0.6460766 0.7353569 0.8475045 +0.6698526 0.7353569 0.8475045 +0.6925839 0.7353569 0.8475045 +0.7143866 0.7353569 0.8475045 +0.7353569 0.7353569 0.8475045 +0.7555758 0.7353569 0.8475045 +0.7751122 0.7353569 0.8475045 +0.7940252 0.7353569 0.8475045 +0.8123661 0.7353569 0.8475045 +0.8301795 0.7353569 0.8475045 +0.8475045 0.7353569 0.8475045 +0.8643761 0.7353569 0.8475045 +0.880825 0.7353569 0.8475045 +0.8968787 0.7353569 0.8475045 +0.9125621 0.7353569 0.8475045 +0.9278974 0.7353569 0.8475045 +0.9429048 0.7353569 0.8475045 +0.9576028 0.7353569 0.8475045 +0.9720079 0.7353569 0.8475045 +0.9861357 0.7353569 0.8475045 +1 0.7353569 0.8475045 +0 0.7555758 0.8475045 +0.1939468 0.7555758 0.8475045 +0.2773041 0.7555758 0.8475045 +0.3384659 0.7555758 0.8475045 +0.3885728 0.7555758 0.8475045 +0.4317928 0.7555758 0.8475045 +0.470214 0.7555758 0.8475045 +0.5050551 0.7555758 0.8475045 +0.5370987 0.7555758 0.8475045 +0.5668815 0.7555758 0.8475045 +0.5947903 0.7555758 0.8475045 +0.6211144 0.7555758 0.8475045 +0.6460766 0.7555758 0.8475045 +0.6698526 0.7555758 0.8475045 +0.6925839 0.7555758 0.8475045 +0.7143866 0.7555758 0.8475045 +0.7353569 0.7555758 0.8475045 +0.7555758 0.7555758 0.8475045 +0.7751122 0.7555758 0.8475045 +0.7940252 0.7555758 0.8475045 +0.8123661 0.7555758 0.8475045 +0.8301795 0.7555758 0.8475045 +0.8475045 0.7555758 0.8475045 +0.8643761 0.7555758 0.8475045 +0.880825 0.7555758 0.8475045 +0.8968787 0.7555758 0.8475045 +0.9125621 0.7555758 0.8475045 +0.9278974 0.7555758 0.8475045 +0.9429048 0.7555758 0.8475045 +0.9576028 0.7555758 0.8475045 +0.9720079 0.7555758 0.8475045 +0.9861357 0.7555758 0.8475045 +1 0.7555758 0.8475045 +0 0.7751122 0.8475045 +0.1939468 0.7751122 0.8475045 +0.2773041 0.7751122 0.8475045 +0.3384659 0.7751122 0.8475045 +0.3885728 0.7751122 0.8475045 +0.4317928 0.7751122 0.8475045 +0.470214 0.7751122 0.8475045 +0.5050551 0.7751122 0.8475045 +0.5370987 0.7751122 0.8475045 +0.5668815 0.7751122 0.8475045 +0.5947903 0.7751122 0.8475045 +0.6211144 0.7751122 0.8475045 +0.6460766 0.7751122 0.8475045 +0.6698526 0.7751122 0.8475045 +0.6925839 0.7751122 0.8475045 +0.7143866 0.7751122 0.8475045 +0.7353569 0.7751122 0.8475045 +0.7555758 0.7751122 0.8475045 +0.7751122 0.7751122 0.8475045 +0.7940252 0.7751122 0.8475045 +0.8123661 0.7751122 0.8475045 +0.8301795 0.7751122 0.8475045 +0.8475045 0.7751122 0.8475045 +0.8643761 0.7751122 0.8475045 +0.880825 0.7751122 0.8475045 +0.8968787 0.7751122 0.8475045 +0.9125621 0.7751122 0.8475045 +0.9278974 0.7751122 0.8475045 +0.9429048 0.7751122 0.8475045 +0.9576028 0.7751122 0.8475045 +0.9720079 0.7751122 0.8475045 +0.9861357 0.7751122 0.8475045 +1 0.7751122 0.8475045 +0 0.7940252 0.8475045 +0.1939468 0.7940252 0.8475045 +0.2773041 0.7940252 0.8475045 +0.3384659 0.7940252 0.8475045 +0.3885728 0.7940252 0.8475045 +0.4317928 0.7940252 0.8475045 +0.470214 0.7940252 0.8475045 +0.5050551 0.7940252 0.8475045 +0.5370987 0.7940252 0.8475045 +0.5668815 0.7940252 0.8475045 +0.5947903 0.7940252 0.8475045 +0.6211144 0.7940252 0.8475045 +0.6460766 0.7940252 0.8475045 +0.6698526 0.7940252 0.8475045 +0.6925839 0.7940252 0.8475045 +0.7143866 0.7940252 0.8475045 +0.7353569 0.7940252 0.8475045 +0.7555758 0.7940252 0.8475045 +0.7751122 0.7940252 0.8475045 +0.7940252 0.7940252 0.8475045 +0.8123661 0.7940252 0.8475045 +0.8301795 0.7940252 0.8475045 +0.8475045 0.7940252 0.8475045 +0.8643761 0.7940252 0.8475045 +0.880825 0.7940252 0.8475045 +0.8968787 0.7940252 0.8475045 +0.9125621 0.7940252 0.8475045 +0.9278974 0.7940252 0.8475045 +0.9429048 0.7940252 0.8475045 +0.9576028 0.7940252 0.8475045 +0.9720079 0.7940252 0.8475045 +0.9861357 0.7940252 0.8475045 +1 0.7940252 0.8475045 +0 0.8123661 0.8475045 +0.1939468 0.8123661 0.8475045 +0.2773041 0.8123661 0.8475045 +0.3384659 0.8123661 0.8475045 +0.3885728 0.8123661 0.8475045 +0.4317928 0.8123661 0.8475045 +0.470214 0.8123661 0.8475045 +0.5050551 0.8123661 0.8475045 +0.5370987 0.8123661 0.8475045 +0.5668815 0.8123661 0.8475045 +0.5947903 0.8123661 0.8475045 +0.6211144 0.8123661 0.8475045 +0.6460766 0.8123661 0.8475045 +0.6698526 0.8123661 0.8475045 +0.6925839 0.8123661 0.8475045 +0.7143866 0.8123661 0.8475045 +0.7353569 0.8123661 0.8475045 +0.7555758 0.8123661 0.8475045 +0.7751122 0.8123661 0.8475045 +0.7940252 0.8123661 0.8475045 +0.8123661 0.8123661 0.8475045 +0.8301795 0.8123661 0.8475045 +0.8475045 0.8123661 0.8475045 +0.8643761 0.8123661 0.8475045 +0.880825 0.8123661 0.8475045 +0.8968787 0.8123661 0.8475045 +0.9125621 0.8123661 0.8475045 +0.9278974 0.8123661 0.8475045 +0.9429048 0.8123661 0.8475045 +0.9576028 0.8123661 0.8475045 +0.9720079 0.8123661 0.8475045 +0.9861357 0.8123661 0.8475045 +1 0.8123661 0.8475045 +0 0.8301795 0.8475045 +0.1939468 0.8301795 0.8475045 +0.2773041 0.8301795 0.8475045 +0.3384659 0.8301795 0.8475045 +0.3885728 0.8301795 0.8475045 +0.4317928 0.8301795 0.8475045 +0.470214 0.8301795 0.8475045 +0.5050551 0.8301795 0.8475045 +0.5370987 0.8301795 0.8475045 +0.5668815 0.8301795 0.8475045 +0.5947903 0.8301795 0.8475045 +0.6211144 0.8301795 0.8475045 +0.6460766 0.8301795 0.8475045 +0.6698526 0.8301795 0.8475045 +0.6925839 0.8301795 0.8475045 +0.7143866 0.8301795 0.8475045 +0.7353569 0.8301795 0.8475045 +0.7555758 0.8301795 0.8475045 +0.7751122 0.8301795 0.8475045 +0.7940252 0.8301795 0.8475045 +0.8123661 0.8301795 0.8475045 +0.8301795 0.8301795 0.8475045 +0.8475045 0.8301795 0.8475045 +0.8643761 0.8301795 0.8475045 +0.880825 0.8301795 0.8475045 +0.8968787 0.8301795 0.8475045 +0.9125621 0.8301795 0.8475045 +0.9278974 0.8301795 0.8475045 +0.9429048 0.8301795 0.8475045 +0.9576028 0.8301795 0.8475045 +0.9720079 0.8301795 0.8475045 +0.9861357 0.8301795 0.8475045 +1 0.8301795 0.8475045 +0 0.8475045 0.8475045 +0.1939468 0.8475045 0.8475045 +0.2773041 0.8475045 0.8475045 +0.3384659 0.8475045 0.8475045 +0.3885728 0.8475045 0.8475045 +0.4317928 0.8475045 0.8475045 +0.470214 0.8475045 0.8475045 +0.5050551 0.8475045 0.8475045 +0.5370987 0.8475045 0.8475045 +0.5668815 0.8475045 0.8475045 +0.5947903 0.8475045 0.8475045 +0.6211144 0.8475045 0.8475045 +0.6460766 0.8475045 0.8475045 +0.6698526 0.8475045 0.8475045 +0.6925839 0.8475045 0.8475045 +0.7143866 0.8475045 0.8475045 +0.7353569 0.8475045 0.8475045 +0.7555758 0.8475045 0.8475045 +0.7751122 0.8475045 0.8475045 +0.7940252 0.8475045 0.8475045 +0.8123661 0.8475045 0.8475045 +0.8301795 0.8475045 0.8475045 +0.8475045 0.8475045 0.8475045 +0.8643761 0.8475045 0.8475045 +0.880825 0.8475045 0.8475045 +0.8968787 0.8475045 0.8475045 +0.9125621 0.8475045 0.8475045 +0.9278974 0.8475045 0.8475045 +0.9429048 0.8475045 0.8475045 +0.9576028 0.8475045 0.8475045 +0.9720079 0.8475045 0.8475045 +0.9861357 0.8475045 0.8475045 +1 0.8475045 0.8475045 +0 0.8643761 0.8475045 +0.1939468 0.8643761 0.8475045 +0.2773041 0.8643761 0.8475045 +0.3384659 0.8643761 0.8475045 +0.3885728 0.8643761 0.8475045 +0.4317928 0.8643761 0.8475045 +0.470214 0.8643761 0.8475045 +0.5050551 0.8643761 0.8475045 +0.5370987 0.8643761 0.8475045 +0.5668815 0.8643761 0.8475045 +0.5947903 0.8643761 0.8475045 +0.6211144 0.8643761 0.8475045 +0.6460766 0.8643761 0.8475045 +0.6698526 0.8643761 0.8475045 +0.6925839 0.8643761 0.8475045 +0.7143866 0.8643761 0.8475045 +0.7353569 0.8643761 0.8475045 +0.7555758 0.8643761 0.8475045 +0.7751122 0.8643761 0.8475045 +0.7940252 0.8643761 0.8475045 +0.8123661 0.8643761 0.8475045 +0.8301795 0.8643761 0.8475045 +0.8475045 0.8643761 0.8475045 +0.8643761 0.8643761 0.8475045 +0.880825 0.8643761 0.8475045 +0.8968787 0.8643761 0.8475045 +0.9125621 0.8643761 0.8475045 +0.9278974 0.8643761 0.8475045 +0.9429048 0.8643761 0.8475045 +0.9576028 0.8643761 0.8475045 +0.9720079 0.8643761 0.8475045 +0.9861357 0.8643761 0.8475045 +1 0.8643761 0.8475045 +0 0.880825 0.8475045 +0.1939468 0.880825 0.8475045 +0.2773041 0.880825 0.8475045 +0.3384659 0.880825 0.8475045 +0.3885728 0.880825 0.8475045 +0.4317928 0.880825 0.8475045 +0.470214 0.880825 0.8475045 +0.5050551 0.880825 0.8475045 +0.5370987 0.880825 0.8475045 +0.5668815 0.880825 0.8475045 +0.5947903 0.880825 0.8475045 +0.6211144 0.880825 0.8475045 +0.6460766 0.880825 0.8475045 +0.6698526 0.880825 0.8475045 +0.6925839 0.880825 0.8475045 +0.7143866 0.880825 0.8475045 +0.7353569 0.880825 0.8475045 +0.7555758 0.880825 0.8475045 +0.7751122 0.880825 0.8475045 +0.7940252 0.880825 0.8475045 +0.8123661 0.880825 0.8475045 +0.8301795 0.880825 0.8475045 +0.8475045 0.880825 0.8475045 +0.8643761 0.880825 0.8475045 +0.880825 0.880825 0.8475045 +0.8968787 0.880825 0.8475045 +0.9125621 0.880825 0.8475045 +0.9278974 0.880825 0.8475045 +0.9429048 0.880825 0.8475045 +0.9576028 0.880825 0.8475045 +0.9720079 0.880825 0.8475045 +0.9861357 0.880825 0.8475045 +1 0.880825 0.8475045 +0 0.8968787 0.8475045 +0.1939468 0.8968787 0.8475045 +0.2773041 0.8968787 0.8475045 +0.3384659 0.8968787 0.8475045 +0.3885728 0.8968787 0.8475045 +0.4317928 0.8968787 0.8475045 +0.470214 0.8968787 0.8475045 +0.5050551 0.8968787 0.8475045 +0.5370987 0.8968787 0.8475045 +0.5668815 0.8968787 0.8475045 +0.5947903 0.8968787 0.8475045 +0.6211144 0.8968787 0.8475045 +0.6460766 0.8968787 0.8475045 +0.6698526 0.8968787 0.8475045 +0.6925839 0.8968787 0.8475045 +0.7143866 0.8968787 0.8475045 +0.7353569 0.8968787 0.8475045 +0.7555758 0.8968787 0.8475045 +0.7751122 0.8968787 0.8475045 +0.7940252 0.8968787 0.8475045 +0.8123661 0.8968787 0.8475045 +0.8301795 0.8968787 0.8475045 +0.8475045 0.8968787 0.8475045 +0.8643761 0.8968787 0.8475045 +0.880825 0.8968787 0.8475045 +0.8968787 0.8968787 0.8475045 +0.9125621 0.8968787 0.8475045 +0.9278974 0.8968787 0.8475045 +0.9429048 0.8968787 0.8475045 +0.9576028 0.8968787 0.8475045 +0.9720079 0.8968787 0.8475045 +0.9861357 0.8968787 0.8475045 +1 0.8968787 0.8475045 +0 0.9125621 0.8475045 +0.1939468 0.9125621 0.8475045 +0.2773041 0.9125621 0.8475045 +0.3384659 0.9125621 0.8475045 +0.3885728 0.9125621 0.8475045 +0.4317928 0.9125621 0.8475045 +0.470214 0.9125621 0.8475045 +0.5050551 0.9125621 0.8475045 +0.5370987 0.9125621 0.8475045 +0.5668815 0.9125621 0.8475045 +0.5947903 0.9125621 0.8475045 +0.6211144 0.9125621 0.8475045 +0.6460766 0.9125621 0.8475045 +0.6698526 0.9125621 0.8475045 +0.6925839 0.9125621 0.8475045 +0.7143866 0.9125621 0.8475045 +0.7353569 0.9125621 0.8475045 +0.7555758 0.9125621 0.8475045 +0.7751122 0.9125621 0.8475045 +0.7940252 0.9125621 0.8475045 +0.8123661 0.9125621 0.8475045 +0.8301795 0.9125621 0.8475045 +0.8475045 0.9125621 0.8475045 +0.8643761 0.9125621 0.8475045 +0.880825 0.9125621 0.8475045 +0.8968787 0.9125621 0.8475045 +0.9125621 0.9125621 0.8475045 +0.9278974 0.9125621 0.8475045 +0.9429048 0.9125621 0.8475045 +0.9576028 0.9125621 0.8475045 +0.9720079 0.9125621 0.8475045 +0.9861357 0.9125621 0.8475045 +1 0.9125621 0.8475045 +0 0.9278974 0.8475045 +0.1939468 0.9278974 0.8475045 +0.2773041 0.9278974 0.8475045 +0.3384659 0.9278974 0.8475045 +0.3885728 0.9278974 0.8475045 +0.4317928 0.9278974 0.8475045 +0.470214 0.9278974 0.8475045 +0.5050551 0.9278974 0.8475045 +0.5370987 0.9278974 0.8475045 +0.5668815 0.9278974 0.8475045 +0.5947903 0.9278974 0.8475045 +0.6211144 0.9278974 0.8475045 +0.6460766 0.9278974 0.8475045 +0.6698526 0.9278974 0.8475045 +0.6925839 0.9278974 0.8475045 +0.7143866 0.9278974 0.8475045 +0.7353569 0.9278974 0.8475045 +0.7555758 0.9278974 0.8475045 +0.7751122 0.9278974 0.8475045 +0.7940252 0.9278974 0.8475045 +0.8123661 0.9278974 0.8475045 +0.8301795 0.9278974 0.8475045 +0.8475045 0.9278974 0.8475045 +0.8643761 0.9278974 0.8475045 +0.880825 0.9278974 0.8475045 +0.8968787 0.9278974 0.8475045 +0.9125621 0.9278974 0.8475045 +0.9278974 0.9278974 0.8475045 +0.9429048 0.9278974 0.8475045 +0.9576028 0.9278974 0.8475045 +0.9720079 0.9278974 0.8475045 +0.9861357 0.9278974 0.8475045 +1 0.9278974 0.8475045 +0 0.9429048 0.8475045 +0.1939468 0.9429048 0.8475045 +0.2773041 0.9429048 0.8475045 +0.3384659 0.9429048 0.8475045 +0.3885728 0.9429048 0.8475045 +0.4317928 0.9429048 0.8475045 +0.470214 0.9429048 0.8475045 +0.5050551 0.9429048 0.8475045 +0.5370987 0.9429048 0.8475045 +0.5668815 0.9429048 0.8475045 +0.5947903 0.9429048 0.8475045 +0.6211144 0.9429048 0.8475045 +0.6460766 0.9429048 0.8475045 +0.6698526 0.9429048 0.8475045 +0.6925839 0.9429048 0.8475045 +0.7143866 0.9429048 0.8475045 +0.7353569 0.9429048 0.8475045 +0.7555758 0.9429048 0.8475045 +0.7751122 0.9429048 0.8475045 +0.7940252 0.9429048 0.8475045 +0.8123661 0.9429048 0.8475045 +0.8301795 0.9429048 0.8475045 +0.8475045 0.9429048 0.8475045 +0.8643761 0.9429048 0.8475045 +0.880825 0.9429048 0.8475045 +0.8968787 0.9429048 0.8475045 +0.9125621 0.9429048 0.8475045 +0.9278974 0.9429048 0.8475045 +0.9429048 0.9429048 0.8475045 +0.9576028 0.9429048 0.8475045 +0.9720079 0.9429048 0.8475045 +0.9861357 0.9429048 0.8475045 +1 0.9429048 0.8475045 +0 0.9576028 0.8475045 +0.1939468 0.9576028 0.8475045 +0.2773041 0.9576028 0.8475045 +0.3384659 0.9576028 0.8475045 +0.3885728 0.9576028 0.8475045 +0.4317928 0.9576028 0.8475045 +0.470214 0.9576028 0.8475045 +0.5050551 0.9576028 0.8475045 +0.5370987 0.9576028 0.8475045 +0.5668815 0.9576028 0.8475045 +0.5947903 0.9576028 0.8475045 +0.6211144 0.9576028 0.8475045 +0.6460766 0.9576028 0.8475045 +0.6698526 0.9576028 0.8475045 +0.6925839 0.9576028 0.8475045 +0.7143866 0.9576028 0.8475045 +0.7353569 0.9576028 0.8475045 +0.7555758 0.9576028 0.8475045 +0.7751122 0.9576028 0.8475045 +0.7940252 0.9576028 0.8475045 +0.8123661 0.9576028 0.8475045 +0.8301795 0.9576028 0.8475045 +0.8475045 0.9576028 0.8475045 +0.8643761 0.9576028 0.8475045 +0.880825 0.9576028 0.8475045 +0.8968787 0.9576028 0.8475045 +0.9125621 0.9576028 0.8475045 +0.9278974 0.9576028 0.8475045 +0.9429048 0.9576028 0.8475045 +0.9576028 0.9576028 0.8475045 +0.9720079 0.9576028 0.8475045 +0.9861357 0.9576028 0.8475045 +1 0.9576028 0.8475045 +0 0.9720079 0.8475045 +0.1939468 0.9720079 0.8475045 +0.2773041 0.9720079 0.8475045 +0.3384659 0.9720079 0.8475045 +0.3885728 0.9720079 0.8475045 +0.4317928 0.9720079 0.8475045 +0.470214 0.9720079 0.8475045 +0.5050551 0.9720079 0.8475045 +0.5370987 0.9720079 0.8475045 +0.5668815 0.9720079 0.8475045 +0.5947903 0.9720079 0.8475045 +0.6211144 0.9720079 0.8475045 +0.6460766 0.9720079 0.8475045 +0.6698526 0.9720079 0.8475045 +0.6925839 0.9720079 0.8475045 +0.7143866 0.9720079 0.8475045 +0.7353569 0.9720079 0.8475045 +0.7555758 0.9720079 0.8475045 +0.7751122 0.9720079 0.8475045 +0.7940252 0.9720079 0.8475045 +0.8123661 0.9720079 0.8475045 +0.8301795 0.9720079 0.8475045 +0.8475045 0.9720079 0.8475045 +0.8643761 0.9720079 0.8475045 +0.880825 0.9720079 0.8475045 +0.8968787 0.9720079 0.8475045 +0.9125621 0.9720079 0.8475045 +0.9278974 0.9720079 0.8475045 +0.9429048 0.9720079 0.8475045 +0.9576028 0.9720079 0.8475045 +0.9720079 0.9720079 0.8475045 +0.9861357 0.9720079 0.8475045 +1 0.9720079 0.8475045 +0 0.9861357 0.8475045 +0.1939468 0.9861357 0.8475045 +0.2773041 0.9861357 0.8475045 +0.3384659 0.9861357 0.8475045 +0.3885728 0.9861357 0.8475045 +0.4317928 0.9861357 0.8475045 +0.470214 0.9861357 0.8475045 +0.5050551 0.9861357 0.8475045 +0.5370987 0.9861357 0.8475045 +0.5668815 0.9861357 0.8475045 +0.5947903 0.9861357 0.8475045 +0.6211144 0.9861357 0.8475045 +0.6460766 0.9861357 0.8475045 +0.6698526 0.9861357 0.8475045 +0.6925839 0.9861357 0.8475045 +0.7143866 0.9861357 0.8475045 +0.7353569 0.9861357 0.8475045 +0.7555758 0.9861357 0.8475045 +0.7751122 0.9861357 0.8475045 +0.7940252 0.9861357 0.8475045 +0.8123661 0.9861357 0.8475045 +0.8301795 0.9861357 0.8475045 +0.8475045 0.9861357 0.8475045 +0.8643761 0.9861357 0.8475045 +0.880825 0.9861357 0.8475045 +0.8968787 0.9861357 0.8475045 +0.9125621 0.9861357 0.8475045 +0.9278974 0.9861357 0.8475045 +0.9429048 0.9861357 0.8475045 +0.9576028 0.9861357 0.8475045 +0.9720079 0.9861357 0.8475045 +0.9861357 0.9861357 0.8475045 +1 0.9861357 0.8475045 +0 1 0.8475045 +0.1939468 1 0.8475045 +0.2773041 1 0.8475045 +0.3384659 1 0.8475045 +0.3885728 1 0.8475045 +0.4317928 1 0.8475045 +0.470214 1 0.8475045 +0.5050551 1 0.8475045 +0.5370987 1 0.8475045 +0.5668815 1 0.8475045 +0.5947903 1 0.8475045 +0.6211144 1 0.8475045 +0.6460766 1 0.8475045 +0.6698526 1 0.8475045 +0.6925839 1 0.8475045 +0.7143866 1 0.8475045 +0.7353569 1 0.8475045 +0.7555758 1 0.8475045 +0.7751122 1 0.8475045 +0.7940252 1 0.8475045 +0.8123661 1 0.8475045 +0.8301795 1 0.8475045 +0.8475045 1 0.8475045 +0.8643761 1 0.8475045 +0.880825 1 0.8475045 +0.8968787 1 0.8475045 +0.9125621 1 0.8475045 +0.9278974 1 0.8475045 +0.9429048 1 0.8475045 +0.9576028 1 0.8475045 +0.9720079 1 0.8475045 +0.9861357 1 0.8475045 +1 1 0.8475045 +0 0 0.8643761 +0.1939468 0 0.8643761 +0.2773041 0 0.8643761 +0.3384659 0 0.8643761 +0.3885728 0 0.8643761 +0.4317928 0 0.8643761 +0.470214 0 0.8643761 +0.5050551 0 0.8643761 +0.5370987 0 0.8643761 +0.5668815 0 0.8643761 +0.5947903 0 0.8643761 +0.6211144 0 0.8643761 +0.6460766 0 0.8643761 +0.6698526 0 0.8643761 +0.6925839 0 0.8643761 +0.7143866 0 0.8643761 +0.7353569 0 0.8643761 +0.7555758 0 0.8643761 +0.7751122 0 0.8643761 +0.7940252 0 0.8643761 +0.8123661 0 0.8643761 +0.8301795 0 0.8643761 +0.8475045 0 0.8643761 +0.8643761 0 0.8643761 +0.880825 0 0.8643761 +0.8968787 0 0.8643761 +0.9125621 0 0.8643761 +0.9278974 0 0.8643761 +0.9429048 0 0.8643761 +0.9576028 0 0.8643761 +0.9720079 0 0.8643761 +0.9861357 0 0.8643761 +1 0 0.8643761 +0 0.1939468 0.8643761 +0.1939468 0.1939468 0.8643761 +0.2773041 0.1939468 0.8643761 +0.3384659 0.1939468 0.8643761 +0.3885728 0.1939468 0.8643761 +0.4317928 0.1939468 0.8643761 +0.470214 0.1939468 0.8643761 +0.5050551 0.1939468 0.8643761 +0.5370987 0.1939468 0.8643761 +0.5668815 0.1939468 0.8643761 +0.5947903 0.1939468 0.8643761 +0.6211144 0.1939468 0.8643761 +0.6460766 0.1939468 0.8643761 +0.6698526 0.1939468 0.8643761 +0.6925839 0.1939468 0.8643761 +0.7143866 0.1939468 0.8643761 +0.7353569 0.1939468 0.8643761 +0.7555758 0.1939468 0.8643761 +0.7751122 0.1939468 0.8643761 +0.7940252 0.1939468 0.8643761 +0.8123661 0.1939468 0.8643761 +0.8301795 0.1939468 0.8643761 +0.8475045 0.1939468 0.8643761 +0.8643761 0.1939468 0.8643761 +0.880825 0.1939468 0.8643761 +0.8968787 0.1939468 0.8643761 +0.9125621 0.1939468 0.8643761 +0.9278974 0.1939468 0.8643761 +0.9429048 0.1939468 0.8643761 +0.9576028 0.1939468 0.8643761 +0.9720079 0.1939468 0.8643761 +0.9861357 0.1939468 0.8643761 +1 0.1939468 0.8643761 +0 0.2773041 0.8643761 +0.1939468 0.2773041 0.8643761 +0.2773041 0.2773041 0.8643761 +0.3384659 0.2773041 0.8643761 +0.3885728 0.2773041 0.8643761 +0.4317928 0.2773041 0.8643761 +0.470214 0.2773041 0.8643761 +0.5050551 0.2773041 0.8643761 +0.5370987 0.2773041 0.8643761 +0.5668815 0.2773041 0.8643761 +0.5947903 0.2773041 0.8643761 +0.6211144 0.2773041 0.8643761 +0.6460766 0.2773041 0.8643761 +0.6698526 0.2773041 0.8643761 +0.6925839 0.2773041 0.8643761 +0.7143866 0.2773041 0.8643761 +0.7353569 0.2773041 0.8643761 +0.7555758 0.2773041 0.8643761 +0.7751122 0.2773041 0.8643761 +0.7940252 0.2773041 0.8643761 +0.8123661 0.2773041 0.8643761 +0.8301795 0.2773041 0.8643761 +0.8475045 0.2773041 0.8643761 +0.8643761 0.2773041 0.8643761 +0.880825 0.2773041 0.8643761 +0.8968787 0.2773041 0.8643761 +0.9125621 0.2773041 0.8643761 +0.9278974 0.2773041 0.8643761 +0.9429048 0.2773041 0.8643761 +0.9576028 0.2773041 0.8643761 +0.9720079 0.2773041 0.8643761 +0.9861357 0.2773041 0.8643761 +1 0.2773041 0.8643761 +0 0.3384659 0.8643761 +0.1939468 0.3384659 0.8643761 +0.2773041 0.3384659 0.8643761 +0.3384659 0.3384659 0.8643761 +0.3885728 0.3384659 0.8643761 +0.4317928 0.3384659 0.8643761 +0.470214 0.3384659 0.8643761 +0.5050551 0.3384659 0.8643761 +0.5370987 0.3384659 0.8643761 +0.5668815 0.3384659 0.8643761 +0.5947903 0.3384659 0.8643761 +0.6211144 0.3384659 0.8643761 +0.6460766 0.3384659 0.8643761 +0.6698526 0.3384659 0.8643761 +0.6925839 0.3384659 0.8643761 +0.7143866 0.3384659 0.8643761 +0.7353569 0.3384659 0.8643761 +0.7555758 0.3384659 0.8643761 +0.7751122 0.3384659 0.8643761 +0.7940252 0.3384659 0.8643761 +0.8123661 0.3384659 0.8643761 +0.8301795 0.3384659 0.8643761 +0.8475045 0.3384659 0.8643761 +0.8643761 0.3384659 0.8643761 +0.880825 0.3384659 0.8643761 +0.8968787 0.3384659 0.8643761 +0.9125621 0.3384659 0.8643761 +0.9278974 0.3384659 0.8643761 +0.9429048 0.3384659 0.8643761 +0.9576028 0.3384659 0.8643761 +0.9720079 0.3384659 0.8643761 +0.9861357 0.3384659 0.8643761 +1 0.3384659 0.8643761 +0 0.3885728 0.8643761 +0.1939468 0.3885728 0.8643761 +0.2773041 0.3885728 0.8643761 +0.3384659 0.3885728 0.8643761 +0.3885728 0.3885728 0.8643761 +0.4317928 0.3885728 0.8643761 +0.470214 0.3885728 0.8643761 +0.5050551 0.3885728 0.8643761 +0.5370987 0.3885728 0.8643761 +0.5668815 0.3885728 0.8643761 +0.5947903 0.3885728 0.8643761 +0.6211144 0.3885728 0.8643761 +0.6460766 0.3885728 0.8643761 +0.6698526 0.3885728 0.8643761 +0.6925839 0.3885728 0.8643761 +0.7143866 0.3885728 0.8643761 +0.7353569 0.3885728 0.8643761 +0.7555758 0.3885728 0.8643761 +0.7751122 0.3885728 0.8643761 +0.7940252 0.3885728 0.8643761 +0.8123661 0.3885728 0.8643761 +0.8301795 0.3885728 0.8643761 +0.8475045 0.3885728 0.8643761 +0.8643761 0.3885728 0.8643761 +0.880825 0.3885728 0.8643761 +0.8968787 0.3885728 0.8643761 +0.9125621 0.3885728 0.8643761 +0.9278974 0.3885728 0.8643761 +0.9429048 0.3885728 0.8643761 +0.9576028 0.3885728 0.8643761 +0.9720079 0.3885728 0.8643761 +0.9861357 0.3885728 0.8643761 +1 0.3885728 0.8643761 +0 0.4317928 0.8643761 +0.1939468 0.4317928 0.8643761 +0.2773041 0.4317928 0.8643761 +0.3384659 0.4317928 0.8643761 +0.3885728 0.4317928 0.8643761 +0.4317928 0.4317928 0.8643761 +0.470214 0.4317928 0.8643761 +0.5050551 0.4317928 0.8643761 +0.5370987 0.4317928 0.8643761 +0.5668815 0.4317928 0.8643761 +0.5947903 0.4317928 0.8643761 +0.6211144 0.4317928 0.8643761 +0.6460766 0.4317928 0.8643761 +0.6698526 0.4317928 0.8643761 +0.6925839 0.4317928 0.8643761 +0.7143866 0.4317928 0.8643761 +0.7353569 0.4317928 0.8643761 +0.7555758 0.4317928 0.8643761 +0.7751122 0.4317928 0.8643761 +0.7940252 0.4317928 0.8643761 +0.8123661 0.4317928 0.8643761 +0.8301795 0.4317928 0.8643761 +0.8475045 0.4317928 0.8643761 +0.8643761 0.4317928 0.8643761 +0.880825 0.4317928 0.8643761 +0.8968787 0.4317928 0.8643761 +0.9125621 0.4317928 0.8643761 +0.9278974 0.4317928 0.8643761 +0.9429048 0.4317928 0.8643761 +0.9576028 0.4317928 0.8643761 +0.9720079 0.4317928 0.8643761 +0.9861357 0.4317928 0.8643761 +1 0.4317928 0.8643761 +0 0.470214 0.8643761 +0.1939468 0.470214 0.8643761 +0.2773041 0.470214 0.8643761 +0.3384659 0.470214 0.8643761 +0.3885728 0.470214 0.8643761 +0.4317928 0.470214 0.8643761 +0.470214 0.470214 0.8643761 +0.5050551 0.470214 0.8643761 +0.5370987 0.470214 0.8643761 +0.5668815 0.470214 0.8643761 +0.5947903 0.470214 0.8643761 +0.6211144 0.470214 0.8643761 +0.6460766 0.470214 0.8643761 +0.6698526 0.470214 0.8643761 +0.6925839 0.470214 0.8643761 +0.7143866 0.470214 0.8643761 +0.7353569 0.470214 0.8643761 +0.7555758 0.470214 0.8643761 +0.7751122 0.470214 0.8643761 +0.7940252 0.470214 0.8643761 +0.8123661 0.470214 0.8643761 +0.8301795 0.470214 0.8643761 +0.8475045 0.470214 0.8643761 +0.8643761 0.470214 0.8643761 +0.880825 0.470214 0.8643761 +0.8968787 0.470214 0.8643761 +0.9125621 0.470214 0.8643761 +0.9278974 0.470214 0.8643761 +0.9429048 0.470214 0.8643761 +0.9576028 0.470214 0.8643761 +0.9720079 0.470214 0.8643761 +0.9861357 0.470214 0.8643761 +1 0.470214 0.8643761 +0 0.5050551 0.8643761 +0.1939468 0.5050551 0.8643761 +0.2773041 0.5050551 0.8643761 +0.3384659 0.5050551 0.8643761 +0.3885728 0.5050551 0.8643761 +0.4317928 0.5050551 0.8643761 +0.470214 0.5050551 0.8643761 +0.5050551 0.5050551 0.8643761 +0.5370987 0.5050551 0.8643761 +0.5668815 0.5050551 0.8643761 +0.5947903 0.5050551 0.8643761 +0.6211144 0.5050551 0.8643761 +0.6460766 0.5050551 0.8643761 +0.6698526 0.5050551 0.8643761 +0.6925839 0.5050551 0.8643761 +0.7143866 0.5050551 0.8643761 +0.7353569 0.5050551 0.8643761 +0.7555758 0.5050551 0.8643761 +0.7751122 0.5050551 0.8643761 +0.7940252 0.5050551 0.8643761 +0.8123661 0.5050551 0.8643761 +0.8301795 0.5050551 0.8643761 +0.8475045 0.5050551 0.8643761 +0.8643761 0.5050551 0.8643761 +0.880825 0.5050551 0.8643761 +0.8968787 0.5050551 0.8643761 +0.9125621 0.5050551 0.8643761 +0.9278974 0.5050551 0.8643761 +0.9429048 0.5050551 0.8643761 +0.9576028 0.5050551 0.8643761 +0.9720079 0.5050551 0.8643761 +0.9861357 0.5050551 0.8643761 +1 0.5050551 0.8643761 +0 0.5370987 0.8643761 +0.1939468 0.5370987 0.8643761 +0.2773041 0.5370987 0.8643761 +0.3384659 0.5370987 0.8643761 +0.3885728 0.5370987 0.8643761 +0.4317928 0.5370987 0.8643761 +0.470214 0.5370987 0.8643761 +0.5050551 0.5370987 0.8643761 +0.5370987 0.5370987 0.8643761 +0.5668815 0.5370987 0.8643761 +0.5947903 0.5370987 0.8643761 +0.6211144 0.5370987 0.8643761 +0.6460766 0.5370987 0.8643761 +0.6698526 0.5370987 0.8643761 +0.6925839 0.5370987 0.8643761 +0.7143866 0.5370987 0.8643761 +0.7353569 0.5370987 0.8643761 +0.7555758 0.5370987 0.8643761 +0.7751122 0.5370987 0.8643761 +0.7940252 0.5370987 0.8643761 +0.8123661 0.5370987 0.8643761 +0.8301795 0.5370987 0.8643761 +0.8475045 0.5370987 0.8643761 +0.8643761 0.5370987 0.8643761 +0.880825 0.5370987 0.8643761 +0.8968787 0.5370987 0.8643761 +0.9125621 0.5370987 0.8643761 +0.9278974 0.5370987 0.8643761 +0.9429048 0.5370987 0.8643761 +0.9576028 0.5370987 0.8643761 +0.9720079 0.5370987 0.8643761 +0.9861357 0.5370987 0.8643761 +1 0.5370987 0.8643761 +0 0.5668815 0.8643761 +0.1939468 0.5668815 0.8643761 +0.2773041 0.5668815 0.8643761 +0.3384659 0.5668815 0.8643761 +0.3885728 0.5668815 0.8643761 +0.4317928 0.5668815 0.8643761 +0.470214 0.5668815 0.8643761 +0.5050551 0.5668815 0.8643761 +0.5370987 0.5668815 0.8643761 +0.5668815 0.5668815 0.8643761 +0.5947903 0.5668815 0.8643761 +0.6211144 0.5668815 0.8643761 +0.6460766 0.5668815 0.8643761 +0.6698526 0.5668815 0.8643761 +0.6925839 0.5668815 0.8643761 +0.7143866 0.5668815 0.8643761 +0.7353569 0.5668815 0.8643761 +0.7555758 0.5668815 0.8643761 +0.7751122 0.5668815 0.8643761 +0.7940252 0.5668815 0.8643761 +0.8123661 0.5668815 0.8643761 +0.8301795 0.5668815 0.8643761 +0.8475045 0.5668815 0.8643761 +0.8643761 0.5668815 0.8643761 +0.880825 0.5668815 0.8643761 +0.8968787 0.5668815 0.8643761 +0.9125621 0.5668815 0.8643761 +0.9278974 0.5668815 0.8643761 +0.9429048 0.5668815 0.8643761 +0.9576028 0.5668815 0.8643761 +0.9720079 0.5668815 0.8643761 +0.9861357 0.5668815 0.8643761 +1 0.5668815 0.8643761 +0 0.5947903 0.8643761 +0.1939468 0.5947903 0.8643761 +0.2773041 0.5947903 0.8643761 +0.3384659 0.5947903 0.8643761 +0.3885728 0.5947903 0.8643761 +0.4317928 0.5947903 0.8643761 +0.470214 0.5947903 0.8643761 +0.5050551 0.5947903 0.8643761 +0.5370987 0.5947903 0.8643761 +0.5668815 0.5947903 0.8643761 +0.5947903 0.5947903 0.8643761 +0.6211144 0.5947903 0.8643761 +0.6460766 0.5947903 0.8643761 +0.6698526 0.5947903 0.8643761 +0.6925839 0.5947903 0.8643761 +0.7143866 0.5947903 0.8643761 +0.7353569 0.5947903 0.8643761 +0.7555758 0.5947903 0.8643761 +0.7751122 0.5947903 0.8643761 +0.7940252 0.5947903 0.8643761 +0.8123661 0.5947903 0.8643761 +0.8301795 0.5947903 0.8643761 +0.8475045 0.5947903 0.8643761 +0.8643761 0.5947903 0.8643761 +0.880825 0.5947903 0.8643761 +0.8968787 0.5947903 0.8643761 +0.9125621 0.5947903 0.8643761 +0.9278974 0.5947903 0.8643761 +0.9429048 0.5947903 0.8643761 +0.9576028 0.5947903 0.8643761 +0.9720079 0.5947903 0.8643761 +0.9861357 0.5947903 0.8643761 +1 0.5947903 0.8643761 +0 0.6211144 0.8643761 +0.1939468 0.6211144 0.8643761 +0.2773041 0.6211144 0.8643761 +0.3384659 0.6211144 0.8643761 +0.3885728 0.6211144 0.8643761 +0.4317928 0.6211144 0.8643761 +0.470214 0.6211144 0.8643761 +0.5050551 0.6211144 0.8643761 +0.5370987 0.6211144 0.8643761 +0.5668815 0.6211144 0.8643761 +0.5947903 0.6211144 0.8643761 +0.6211144 0.6211144 0.8643761 +0.6460766 0.6211144 0.8643761 +0.6698526 0.6211144 0.8643761 +0.6925839 0.6211144 0.8643761 +0.7143866 0.6211144 0.8643761 +0.7353569 0.6211144 0.8643761 +0.7555758 0.6211144 0.8643761 +0.7751122 0.6211144 0.8643761 +0.7940252 0.6211144 0.8643761 +0.8123661 0.6211144 0.8643761 +0.8301795 0.6211144 0.8643761 +0.8475045 0.6211144 0.8643761 +0.8643761 0.6211144 0.8643761 +0.880825 0.6211144 0.8643761 +0.8968787 0.6211144 0.8643761 +0.9125621 0.6211144 0.8643761 +0.9278974 0.6211144 0.8643761 +0.9429048 0.6211144 0.8643761 +0.9576028 0.6211144 0.8643761 +0.9720079 0.6211144 0.8643761 +0.9861357 0.6211144 0.8643761 +1 0.6211144 0.8643761 +0 0.6460766 0.8643761 +0.1939468 0.6460766 0.8643761 +0.2773041 0.6460766 0.8643761 +0.3384659 0.6460766 0.8643761 +0.3885728 0.6460766 0.8643761 +0.4317928 0.6460766 0.8643761 +0.470214 0.6460766 0.8643761 +0.5050551 0.6460766 0.8643761 +0.5370987 0.6460766 0.8643761 +0.5668815 0.6460766 0.8643761 +0.5947903 0.6460766 0.8643761 +0.6211144 0.6460766 0.8643761 +0.6460766 0.6460766 0.8643761 +0.6698526 0.6460766 0.8643761 +0.6925839 0.6460766 0.8643761 +0.7143866 0.6460766 0.8643761 +0.7353569 0.6460766 0.8643761 +0.7555758 0.6460766 0.8643761 +0.7751122 0.6460766 0.8643761 +0.7940252 0.6460766 0.8643761 +0.8123661 0.6460766 0.8643761 +0.8301795 0.6460766 0.8643761 +0.8475045 0.6460766 0.8643761 +0.8643761 0.6460766 0.8643761 +0.880825 0.6460766 0.8643761 +0.8968787 0.6460766 0.8643761 +0.9125621 0.6460766 0.8643761 +0.9278974 0.6460766 0.8643761 +0.9429048 0.6460766 0.8643761 +0.9576028 0.6460766 0.8643761 +0.9720079 0.6460766 0.8643761 +0.9861357 0.6460766 0.8643761 +1 0.6460766 0.8643761 +0 0.6698526 0.8643761 +0.1939468 0.6698526 0.8643761 +0.2773041 0.6698526 0.8643761 +0.3384659 0.6698526 0.8643761 +0.3885728 0.6698526 0.8643761 +0.4317928 0.6698526 0.8643761 +0.470214 0.6698526 0.8643761 +0.5050551 0.6698526 0.8643761 +0.5370987 0.6698526 0.8643761 +0.5668815 0.6698526 0.8643761 +0.5947903 0.6698526 0.8643761 +0.6211144 0.6698526 0.8643761 +0.6460766 0.6698526 0.8643761 +0.6698526 0.6698526 0.8643761 +0.6925839 0.6698526 0.8643761 +0.7143866 0.6698526 0.8643761 +0.7353569 0.6698526 0.8643761 +0.7555758 0.6698526 0.8643761 +0.7751122 0.6698526 0.8643761 +0.7940252 0.6698526 0.8643761 +0.8123661 0.6698526 0.8643761 +0.8301795 0.6698526 0.8643761 +0.8475045 0.6698526 0.8643761 +0.8643761 0.6698526 0.8643761 +0.880825 0.6698526 0.8643761 +0.8968787 0.6698526 0.8643761 +0.9125621 0.6698526 0.8643761 +0.9278974 0.6698526 0.8643761 +0.9429048 0.6698526 0.8643761 +0.9576028 0.6698526 0.8643761 +0.9720079 0.6698526 0.8643761 +0.9861357 0.6698526 0.8643761 +1 0.6698526 0.8643761 +0 0.6925839 0.8643761 +0.1939468 0.6925839 0.8643761 +0.2773041 0.6925839 0.8643761 +0.3384659 0.6925839 0.8643761 +0.3885728 0.6925839 0.8643761 +0.4317928 0.6925839 0.8643761 +0.470214 0.6925839 0.8643761 +0.5050551 0.6925839 0.8643761 +0.5370987 0.6925839 0.8643761 +0.5668815 0.6925839 0.8643761 +0.5947903 0.6925839 0.8643761 +0.6211144 0.6925839 0.8643761 +0.6460766 0.6925839 0.8643761 +0.6698526 0.6925839 0.8643761 +0.6925839 0.6925839 0.8643761 +0.7143866 0.6925839 0.8643761 +0.7353569 0.6925839 0.8643761 +0.7555758 0.6925839 0.8643761 +0.7751122 0.6925839 0.8643761 +0.7940252 0.6925839 0.8643761 +0.8123661 0.6925839 0.8643761 +0.8301795 0.6925839 0.8643761 +0.8475045 0.6925839 0.8643761 +0.8643761 0.6925839 0.8643761 +0.880825 0.6925839 0.8643761 +0.8968787 0.6925839 0.8643761 +0.9125621 0.6925839 0.8643761 +0.9278974 0.6925839 0.8643761 +0.9429048 0.6925839 0.8643761 +0.9576028 0.6925839 0.8643761 +0.9720079 0.6925839 0.8643761 +0.9861357 0.6925839 0.8643761 +1 0.6925839 0.8643761 +0 0.7143866 0.8643761 +0.1939468 0.7143866 0.8643761 +0.2773041 0.7143866 0.8643761 +0.3384659 0.7143866 0.8643761 +0.3885728 0.7143866 0.8643761 +0.4317928 0.7143866 0.8643761 +0.470214 0.7143866 0.8643761 +0.5050551 0.7143866 0.8643761 +0.5370987 0.7143866 0.8643761 +0.5668815 0.7143866 0.8643761 +0.5947903 0.7143866 0.8643761 +0.6211144 0.7143866 0.8643761 +0.6460766 0.7143866 0.8643761 +0.6698526 0.7143866 0.8643761 +0.6925839 0.7143866 0.8643761 +0.7143866 0.7143866 0.8643761 +0.7353569 0.7143866 0.8643761 +0.7555758 0.7143866 0.8643761 +0.7751122 0.7143866 0.8643761 +0.7940252 0.7143866 0.8643761 +0.8123661 0.7143866 0.8643761 +0.8301795 0.7143866 0.8643761 +0.8475045 0.7143866 0.8643761 +0.8643761 0.7143866 0.8643761 +0.880825 0.7143866 0.8643761 +0.8968787 0.7143866 0.8643761 +0.9125621 0.7143866 0.8643761 +0.9278974 0.7143866 0.8643761 +0.9429048 0.7143866 0.8643761 +0.9576028 0.7143866 0.8643761 +0.9720079 0.7143866 0.8643761 +0.9861357 0.7143866 0.8643761 +1 0.7143866 0.8643761 +0 0.7353569 0.8643761 +0.1939468 0.7353569 0.8643761 +0.2773041 0.7353569 0.8643761 +0.3384659 0.7353569 0.8643761 +0.3885728 0.7353569 0.8643761 +0.4317928 0.7353569 0.8643761 +0.470214 0.7353569 0.8643761 +0.5050551 0.7353569 0.8643761 +0.5370987 0.7353569 0.8643761 +0.5668815 0.7353569 0.8643761 +0.5947903 0.7353569 0.8643761 +0.6211144 0.7353569 0.8643761 +0.6460766 0.7353569 0.8643761 +0.6698526 0.7353569 0.8643761 +0.6925839 0.7353569 0.8643761 +0.7143866 0.7353569 0.8643761 +0.7353569 0.7353569 0.8643761 +0.7555758 0.7353569 0.8643761 +0.7751122 0.7353569 0.8643761 +0.7940252 0.7353569 0.8643761 +0.8123661 0.7353569 0.8643761 +0.8301795 0.7353569 0.8643761 +0.8475045 0.7353569 0.8643761 +0.8643761 0.7353569 0.8643761 +0.880825 0.7353569 0.8643761 +0.8968787 0.7353569 0.8643761 +0.9125621 0.7353569 0.8643761 +0.9278974 0.7353569 0.8643761 +0.9429048 0.7353569 0.8643761 +0.9576028 0.7353569 0.8643761 +0.9720079 0.7353569 0.8643761 +0.9861357 0.7353569 0.8643761 +1 0.7353569 0.8643761 +0 0.7555758 0.8643761 +0.1939468 0.7555758 0.8643761 +0.2773041 0.7555758 0.8643761 +0.3384659 0.7555758 0.8643761 +0.3885728 0.7555758 0.8643761 +0.4317928 0.7555758 0.8643761 +0.470214 0.7555758 0.8643761 +0.5050551 0.7555758 0.8643761 +0.5370987 0.7555758 0.8643761 +0.5668815 0.7555758 0.8643761 +0.5947903 0.7555758 0.8643761 +0.6211144 0.7555758 0.8643761 +0.6460766 0.7555758 0.8643761 +0.6698526 0.7555758 0.8643761 +0.6925839 0.7555758 0.8643761 +0.7143866 0.7555758 0.8643761 +0.7353569 0.7555758 0.8643761 +0.7555758 0.7555758 0.8643761 +0.7751122 0.7555758 0.8643761 +0.7940252 0.7555758 0.8643761 +0.8123661 0.7555758 0.8643761 +0.8301795 0.7555758 0.8643761 +0.8475045 0.7555758 0.8643761 +0.8643761 0.7555758 0.8643761 +0.880825 0.7555758 0.8643761 +0.8968787 0.7555758 0.8643761 +0.9125621 0.7555758 0.8643761 +0.9278974 0.7555758 0.8643761 +0.9429048 0.7555758 0.8643761 +0.9576028 0.7555758 0.8643761 +0.9720079 0.7555758 0.8643761 +0.9861357 0.7555758 0.8643761 +1 0.7555758 0.8643761 +0 0.7751122 0.8643761 +0.1939468 0.7751122 0.8643761 +0.2773041 0.7751122 0.8643761 +0.3384659 0.7751122 0.8643761 +0.3885728 0.7751122 0.8643761 +0.4317928 0.7751122 0.8643761 +0.470214 0.7751122 0.8643761 +0.5050551 0.7751122 0.8643761 +0.5370987 0.7751122 0.8643761 +0.5668815 0.7751122 0.8643761 +0.5947903 0.7751122 0.8643761 +0.6211144 0.7751122 0.8643761 +0.6460766 0.7751122 0.8643761 +0.6698526 0.7751122 0.8643761 +0.6925839 0.7751122 0.8643761 +0.7143866 0.7751122 0.8643761 +0.7353569 0.7751122 0.8643761 +0.7555758 0.7751122 0.8643761 +0.7751122 0.7751122 0.8643761 +0.7940252 0.7751122 0.8643761 +0.8123661 0.7751122 0.8643761 +0.8301795 0.7751122 0.8643761 +0.8475045 0.7751122 0.8643761 +0.8643761 0.7751122 0.8643761 +0.880825 0.7751122 0.8643761 +0.8968787 0.7751122 0.8643761 +0.9125621 0.7751122 0.8643761 +0.9278974 0.7751122 0.8643761 +0.9429048 0.7751122 0.8643761 +0.9576028 0.7751122 0.8643761 +0.9720079 0.7751122 0.8643761 +0.9861357 0.7751122 0.8643761 +1 0.7751122 0.8643761 +0 0.7940252 0.8643761 +0.1939468 0.7940252 0.8643761 +0.2773041 0.7940252 0.8643761 +0.3384659 0.7940252 0.8643761 +0.3885728 0.7940252 0.8643761 +0.4317928 0.7940252 0.8643761 +0.470214 0.7940252 0.8643761 +0.5050551 0.7940252 0.8643761 +0.5370987 0.7940252 0.8643761 +0.5668815 0.7940252 0.8643761 +0.5947903 0.7940252 0.8643761 +0.6211144 0.7940252 0.8643761 +0.6460766 0.7940252 0.8643761 +0.6698526 0.7940252 0.8643761 +0.6925839 0.7940252 0.8643761 +0.7143866 0.7940252 0.8643761 +0.7353569 0.7940252 0.8643761 +0.7555758 0.7940252 0.8643761 +0.7751122 0.7940252 0.8643761 +0.7940252 0.7940252 0.8643761 +0.8123661 0.7940252 0.8643761 +0.8301795 0.7940252 0.8643761 +0.8475045 0.7940252 0.8643761 +0.8643761 0.7940252 0.8643761 +0.880825 0.7940252 0.8643761 +0.8968787 0.7940252 0.8643761 +0.9125621 0.7940252 0.8643761 +0.9278974 0.7940252 0.8643761 +0.9429048 0.7940252 0.8643761 +0.9576028 0.7940252 0.8643761 +0.9720079 0.7940252 0.8643761 +0.9861357 0.7940252 0.8643761 +1 0.7940252 0.8643761 +0 0.8123661 0.8643761 +0.1939468 0.8123661 0.8643761 +0.2773041 0.8123661 0.8643761 +0.3384659 0.8123661 0.8643761 +0.3885728 0.8123661 0.8643761 +0.4317928 0.8123661 0.8643761 +0.470214 0.8123661 0.8643761 +0.5050551 0.8123661 0.8643761 +0.5370987 0.8123661 0.8643761 +0.5668815 0.8123661 0.8643761 +0.5947903 0.8123661 0.8643761 +0.6211144 0.8123661 0.8643761 +0.6460766 0.8123661 0.8643761 +0.6698526 0.8123661 0.8643761 +0.6925839 0.8123661 0.8643761 +0.7143866 0.8123661 0.8643761 +0.7353569 0.8123661 0.8643761 +0.7555758 0.8123661 0.8643761 +0.7751122 0.8123661 0.8643761 +0.7940252 0.8123661 0.8643761 +0.8123661 0.8123661 0.8643761 +0.8301795 0.8123661 0.8643761 +0.8475045 0.8123661 0.8643761 +0.8643761 0.8123661 0.8643761 +0.880825 0.8123661 0.8643761 +0.8968787 0.8123661 0.8643761 +0.9125621 0.8123661 0.8643761 +0.9278974 0.8123661 0.8643761 +0.9429048 0.8123661 0.8643761 +0.9576028 0.8123661 0.8643761 +0.9720079 0.8123661 0.8643761 +0.9861357 0.8123661 0.8643761 +1 0.8123661 0.8643761 +0 0.8301795 0.8643761 +0.1939468 0.8301795 0.8643761 +0.2773041 0.8301795 0.8643761 +0.3384659 0.8301795 0.8643761 +0.3885728 0.8301795 0.8643761 +0.4317928 0.8301795 0.8643761 +0.470214 0.8301795 0.8643761 +0.5050551 0.8301795 0.8643761 +0.5370987 0.8301795 0.8643761 +0.5668815 0.8301795 0.8643761 +0.5947903 0.8301795 0.8643761 +0.6211144 0.8301795 0.8643761 +0.6460766 0.8301795 0.8643761 +0.6698526 0.8301795 0.8643761 +0.6925839 0.8301795 0.8643761 +0.7143866 0.8301795 0.8643761 +0.7353569 0.8301795 0.8643761 +0.7555758 0.8301795 0.8643761 +0.7751122 0.8301795 0.8643761 +0.7940252 0.8301795 0.8643761 +0.8123661 0.8301795 0.8643761 +0.8301795 0.8301795 0.8643761 +0.8475045 0.8301795 0.8643761 +0.8643761 0.8301795 0.8643761 +0.880825 0.8301795 0.8643761 +0.8968787 0.8301795 0.8643761 +0.9125621 0.8301795 0.8643761 +0.9278974 0.8301795 0.8643761 +0.9429048 0.8301795 0.8643761 +0.9576028 0.8301795 0.8643761 +0.9720079 0.8301795 0.8643761 +0.9861357 0.8301795 0.8643761 +1 0.8301795 0.8643761 +0 0.8475045 0.8643761 +0.1939468 0.8475045 0.8643761 +0.2773041 0.8475045 0.8643761 +0.3384659 0.8475045 0.8643761 +0.3885728 0.8475045 0.8643761 +0.4317928 0.8475045 0.8643761 +0.470214 0.8475045 0.8643761 +0.5050551 0.8475045 0.8643761 +0.5370987 0.8475045 0.8643761 +0.5668815 0.8475045 0.8643761 +0.5947903 0.8475045 0.8643761 +0.6211144 0.8475045 0.8643761 +0.6460766 0.8475045 0.8643761 +0.6698526 0.8475045 0.8643761 +0.6925839 0.8475045 0.8643761 +0.7143866 0.8475045 0.8643761 +0.7353569 0.8475045 0.8643761 +0.7555758 0.8475045 0.8643761 +0.7751122 0.8475045 0.8643761 +0.7940252 0.8475045 0.8643761 +0.8123661 0.8475045 0.8643761 +0.8301795 0.8475045 0.8643761 +0.8475045 0.8475045 0.8643761 +0.8643761 0.8475045 0.8643761 +0.880825 0.8475045 0.8643761 +0.8968787 0.8475045 0.8643761 +0.9125621 0.8475045 0.8643761 +0.9278974 0.8475045 0.8643761 +0.9429048 0.8475045 0.8643761 +0.9576028 0.8475045 0.8643761 +0.9720079 0.8475045 0.8643761 +0.9861357 0.8475045 0.8643761 +1 0.8475045 0.8643761 +0 0.8643761 0.8643761 +0.1939468 0.8643761 0.8643761 +0.2773041 0.8643761 0.8643761 +0.3384659 0.8643761 0.8643761 +0.3885728 0.8643761 0.8643761 +0.4317928 0.8643761 0.8643761 +0.470214 0.8643761 0.8643761 +0.5050551 0.8643761 0.8643761 +0.5370987 0.8643761 0.8643761 +0.5668815 0.8643761 0.8643761 +0.5947903 0.8643761 0.8643761 +0.6211144 0.8643761 0.8643761 +0.6460766 0.8643761 0.8643761 +0.6698526 0.8643761 0.8643761 +0.6925839 0.8643761 0.8643761 +0.7143866 0.8643761 0.8643761 +0.7353569 0.8643761 0.8643761 +0.7555758 0.8643761 0.8643761 +0.7751122 0.8643761 0.8643761 +0.7940252 0.8643761 0.8643761 +0.8123661 0.8643761 0.8643761 +0.8301795 0.8643761 0.8643761 +0.8475045 0.8643761 0.8643761 +0.8643761 0.8643761 0.8643761 +0.880825 0.8643761 0.8643761 +0.8968787 0.8643761 0.8643761 +0.9125621 0.8643761 0.8643761 +0.9278974 0.8643761 0.8643761 +0.9429048 0.8643761 0.8643761 +0.9576028 0.8643761 0.8643761 +0.9720079 0.8643761 0.8643761 +0.9861357 0.8643761 0.8643761 +1 0.8643761 0.8643761 +0 0.880825 0.8643761 +0.1939468 0.880825 0.8643761 +0.2773041 0.880825 0.8643761 +0.3384659 0.880825 0.8643761 +0.3885728 0.880825 0.8643761 +0.4317928 0.880825 0.8643761 +0.470214 0.880825 0.8643761 +0.5050551 0.880825 0.8643761 +0.5370987 0.880825 0.8643761 +0.5668815 0.880825 0.8643761 +0.5947903 0.880825 0.8643761 +0.6211144 0.880825 0.8643761 +0.6460766 0.880825 0.8643761 +0.6698526 0.880825 0.8643761 +0.6925839 0.880825 0.8643761 +0.7143866 0.880825 0.8643761 +0.7353569 0.880825 0.8643761 +0.7555758 0.880825 0.8643761 +0.7751122 0.880825 0.8643761 +0.7940252 0.880825 0.8643761 +0.8123661 0.880825 0.8643761 +0.8301795 0.880825 0.8643761 +0.8475045 0.880825 0.8643761 +0.8643761 0.880825 0.8643761 +0.880825 0.880825 0.8643761 +0.8968787 0.880825 0.8643761 +0.9125621 0.880825 0.8643761 +0.9278974 0.880825 0.8643761 +0.9429048 0.880825 0.8643761 +0.9576028 0.880825 0.8643761 +0.9720079 0.880825 0.8643761 +0.9861357 0.880825 0.8643761 +1 0.880825 0.8643761 +0 0.8968787 0.8643761 +0.1939468 0.8968787 0.8643761 +0.2773041 0.8968787 0.8643761 +0.3384659 0.8968787 0.8643761 +0.3885728 0.8968787 0.8643761 +0.4317928 0.8968787 0.8643761 +0.470214 0.8968787 0.8643761 +0.5050551 0.8968787 0.8643761 +0.5370987 0.8968787 0.8643761 +0.5668815 0.8968787 0.8643761 +0.5947903 0.8968787 0.8643761 +0.6211144 0.8968787 0.8643761 +0.6460766 0.8968787 0.8643761 +0.6698526 0.8968787 0.8643761 +0.6925839 0.8968787 0.8643761 +0.7143866 0.8968787 0.8643761 +0.7353569 0.8968787 0.8643761 +0.7555758 0.8968787 0.8643761 +0.7751122 0.8968787 0.8643761 +0.7940252 0.8968787 0.8643761 +0.8123661 0.8968787 0.8643761 +0.8301795 0.8968787 0.8643761 +0.8475045 0.8968787 0.8643761 +0.8643761 0.8968787 0.8643761 +0.880825 0.8968787 0.8643761 +0.8968787 0.8968787 0.8643761 +0.9125621 0.8968787 0.8643761 +0.9278974 0.8968787 0.8643761 +0.9429048 0.8968787 0.8643761 +0.9576028 0.8968787 0.8643761 +0.9720079 0.8968787 0.8643761 +0.9861357 0.8968787 0.8643761 +1 0.8968787 0.8643761 +0 0.9125621 0.8643761 +0.1939468 0.9125621 0.8643761 +0.2773041 0.9125621 0.8643761 +0.3384659 0.9125621 0.8643761 +0.3885728 0.9125621 0.8643761 +0.4317928 0.9125621 0.8643761 +0.470214 0.9125621 0.8643761 +0.5050551 0.9125621 0.8643761 +0.5370987 0.9125621 0.8643761 +0.5668815 0.9125621 0.8643761 +0.5947903 0.9125621 0.8643761 +0.6211144 0.9125621 0.8643761 +0.6460766 0.9125621 0.8643761 +0.6698526 0.9125621 0.8643761 +0.6925839 0.9125621 0.8643761 +0.7143866 0.9125621 0.8643761 +0.7353569 0.9125621 0.8643761 +0.7555758 0.9125621 0.8643761 +0.7751122 0.9125621 0.8643761 +0.7940252 0.9125621 0.8643761 +0.8123661 0.9125621 0.8643761 +0.8301795 0.9125621 0.8643761 +0.8475045 0.9125621 0.8643761 +0.8643761 0.9125621 0.8643761 +0.880825 0.9125621 0.8643761 +0.8968787 0.9125621 0.8643761 +0.9125621 0.9125621 0.8643761 +0.9278974 0.9125621 0.8643761 +0.9429048 0.9125621 0.8643761 +0.9576028 0.9125621 0.8643761 +0.9720079 0.9125621 0.8643761 +0.9861357 0.9125621 0.8643761 +1 0.9125621 0.8643761 +0 0.9278974 0.8643761 +0.1939468 0.9278974 0.8643761 +0.2773041 0.9278974 0.8643761 +0.3384659 0.9278974 0.8643761 +0.3885728 0.9278974 0.8643761 +0.4317928 0.9278974 0.8643761 +0.470214 0.9278974 0.8643761 +0.5050551 0.9278974 0.8643761 +0.5370987 0.9278974 0.8643761 +0.5668815 0.9278974 0.8643761 +0.5947903 0.9278974 0.8643761 +0.6211144 0.9278974 0.8643761 +0.6460766 0.9278974 0.8643761 +0.6698526 0.9278974 0.8643761 +0.6925839 0.9278974 0.8643761 +0.7143866 0.9278974 0.8643761 +0.7353569 0.9278974 0.8643761 +0.7555758 0.9278974 0.8643761 +0.7751122 0.9278974 0.8643761 +0.7940252 0.9278974 0.8643761 +0.8123661 0.9278974 0.8643761 +0.8301795 0.9278974 0.8643761 +0.8475045 0.9278974 0.8643761 +0.8643761 0.9278974 0.8643761 +0.880825 0.9278974 0.8643761 +0.8968787 0.9278974 0.8643761 +0.9125621 0.9278974 0.8643761 +0.9278974 0.9278974 0.8643761 +0.9429048 0.9278974 0.8643761 +0.9576028 0.9278974 0.8643761 +0.9720079 0.9278974 0.8643761 +0.9861357 0.9278974 0.8643761 +1 0.9278974 0.8643761 +0 0.9429048 0.8643761 +0.1939468 0.9429048 0.8643761 +0.2773041 0.9429048 0.8643761 +0.3384659 0.9429048 0.8643761 +0.3885728 0.9429048 0.8643761 +0.4317928 0.9429048 0.8643761 +0.470214 0.9429048 0.8643761 +0.5050551 0.9429048 0.8643761 +0.5370987 0.9429048 0.8643761 +0.5668815 0.9429048 0.8643761 +0.5947903 0.9429048 0.8643761 +0.6211144 0.9429048 0.8643761 +0.6460766 0.9429048 0.8643761 +0.6698526 0.9429048 0.8643761 +0.6925839 0.9429048 0.8643761 +0.7143866 0.9429048 0.8643761 +0.7353569 0.9429048 0.8643761 +0.7555758 0.9429048 0.8643761 +0.7751122 0.9429048 0.8643761 +0.7940252 0.9429048 0.8643761 +0.8123661 0.9429048 0.8643761 +0.8301795 0.9429048 0.8643761 +0.8475045 0.9429048 0.8643761 +0.8643761 0.9429048 0.8643761 +0.880825 0.9429048 0.8643761 +0.8968787 0.9429048 0.8643761 +0.9125621 0.9429048 0.8643761 +0.9278974 0.9429048 0.8643761 +0.9429048 0.9429048 0.8643761 +0.9576028 0.9429048 0.8643761 +0.9720079 0.9429048 0.8643761 +0.9861357 0.9429048 0.8643761 +1 0.9429048 0.8643761 +0 0.9576028 0.8643761 +0.1939468 0.9576028 0.8643761 +0.2773041 0.9576028 0.8643761 +0.3384659 0.9576028 0.8643761 +0.3885728 0.9576028 0.8643761 +0.4317928 0.9576028 0.8643761 +0.470214 0.9576028 0.8643761 +0.5050551 0.9576028 0.8643761 +0.5370987 0.9576028 0.8643761 +0.5668815 0.9576028 0.8643761 +0.5947903 0.9576028 0.8643761 +0.6211144 0.9576028 0.8643761 +0.6460766 0.9576028 0.8643761 +0.6698526 0.9576028 0.8643761 +0.6925839 0.9576028 0.8643761 +0.7143866 0.9576028 0.8643761 +0.7353569 0.9576028 0.8643761 +0.7555758 0.9576028 0.8643761 +0.7751122 0.9576028 0.8643761 +0.7940252 0.9576028 0.8643761 +0.8123661 0.9576028 0.8643761 +0.8301795 0.9576028 0.8643761 +0.8475045 0.9576028 0.8643761 +0.8643761 0.9576028 0.8643761 +0.880825 0.9576028 0.8643761 +0.8968787 0.9576028 0.8643761 +0.9125621 0.9576028 0.8643761 +0.9278974 0.9576028 0.8643761 +0.9429048 0.9576028 0.8643761 +0.9576028 0.9576028 0.8643761 +0.9720079 0.9576028 0.8643761 +0.9861357 0.9576028 0.8643761 +1 0.9576028 0.8643761 +0 0.9720079 0.8643761 +0.1939468 0.9720079 0.8643761 +0.2773041 0.9720079 0.8643761 +0.3384659 0.9720079 0.8643761 +0.3885728 0.9720079 0.8643761 +0.4317928 0.9720079 0.8643761 +0.470214 0.9720079 0.8643761 +0.5050551 0.9720079 0.8643761 +0.5370987 0.9720079 0.8643761 +0.5668815 0.9720079 0.8643761 +0.5947903 0.9720079 0.8643761 +0.6211144 0.9720079 0.8643761 +0.6460766 0.9720079 0.8643761 +0.6698526 0.9720079 0.8643761 +0.6925839 0.9720079 0.8643761 +0.7143866 0.9720079 0.8643761 +0.7353569 0.9720079 0.8643761 +0.7555758 0.9720079 0.8643761 +0.7751122 0.9720079 0.8643761 +0.7940252 0.9720079 0.8643761 +0.8123661 0.9720079 0.8643761 +0.8301795 0.9720079 0.8643761 +0.8475045 0.9720079 0.8643761 +0.8643761 0.9720079 0.8643761 +0.880825 0.9720079 0.8643761 +0.8968787 0.9720079 0.8643761 +0.9125621 0.9720079 0.8643761 +0.9278974 0.9720079 0.8643761 +0.9429048 0.9720079 0.8643761 +0.9576028 0.9720079 0.8643761 +0.9720079 0.9720079 0.8643761 +0.9861357 0.9720079 0.8643761 +1 0.9720079 0.8643761 +0 0.9861357 0.8643761 +0.1939468 0.9861357 0.8643761 +0.2773041 0.9861357 0.8643761 +0.3384659 0.9861357 0.8643761 +0.3885728 0.9861357 0.8643761 +0.4317928 0.9861357 0.8643761 +0.470214 0.9861357 0.8643761 +0.5050551 0.9861357 0.8643761 +0.5370987 0.9861357 0.8643761 +0.5668815 0.9861357 0.8643761 +0.5947903 0.9861357 0.8643761 +0.6211144 0.9861357 0.8643761 +0.6460766 0.9861357 0.8643761 +0.6698526 0.9861357 0.8643761 +0.6925839 0.9861357 0.8643761 +0.7143866 0.9861357 0.8643761 +0.7353569 0.9861357 0.8643761 +0.7555758 0.9861357 0.8643761 +0.7751122 0.9861357 0.8643761 +0.7940252 0.9861357 0.8643761 +0.8123661 0.9861357 0.8643761 +0.8301795 0.9861357 0.8643761 +0.8475045 0.9861357 0.8643761 +0.8643761 0.9861357 0.8643761 +0.880825 0.9861357 0.8643761 +0.8968787 0.9861357 0.8643761 +0.9125621 0.9861357 0.8643761 +0.9278974 0.9861357 0.8643761 +0.9429048 0.9861357 0.8643761 +0.9576028 0.9861357 0.8643761 +0.9720079 0.9861357 0.8643761 +0.9861357 0.9861357 0.8643761 +1 0.9861357 0.8643761 +0 1 0.8643761 +0.1939468 1 0.8643761 +0.2773041 1 0.8643761 +0.3384659 1 0.8643761 +0.3885728 1 0.8643761 +0.4317928 1 0.8643761 +0.470214 1 0.8643761 +0.5050551 1 0.8643761 +0.5370987 1 0.8643761 +0.5668815 1 0.8643761 +0.5947903 1 0.8643761 +0.6211144 1 0.8643761 +0.6460766 1 0.8643761 +0.6698526 1 0.8643761 +0.6925839 1 0.8643761 +0.7143866 1 0.8643761 +0.7353569 1 0.8643761 +0.7555758 1 0.8643761 +0.7751122 1 0.8643761 +0.7940252 1 0.8643761 +0.8123661 1 0.8643761 +0.8301795 1 0.8643761 +0.8475045 1 0.8643761 +0.8643761 1 0.8643761 +0.880825 1 0.8643761 +0.8968787 1 0.8643761 +0.9125621 1 0.8643761 +0.9278974 1 0.8643761 +0.9429048 1 0.8643761 +0.9576028 1 0.8643761 +0.9720079 1 0.8643761 +0.9861357 1 0.8643761 +1 1 0.8643761 +0 0 0.880825 +0.1939468 0 0.880825 +0.2773041 0 0.880825 +0.3384659 0 0.880825 +0.3885728 0 0.880825 +0.4317928 0 0.880825 +0.470214 0 0.880825 +0.5050551 0 0.880825 +0.5370987 0 0.880825 +0.5668815 0 0.880825 +0.5947903 0 0.880825 +0.6211144 0 0.880825 +0.6460766 0 0.880825 +0.6698526 0 0.880825 +0.6925839 0 0.880825 +0.7143866 0 0.880825 +0.7353569 0 0.880825 +0.7555758 0 0.880825 +0.7751122 0 0.880825 +0.7940252 0 0.880825 +0.8123661 0 0.880825 +0.8301795 0 0.880825 +0.8475045 0 0.880825 +0.8643761 0 0.880825 +0.880825 0 0.880825 +0.8968787 0 0.880825 +0.9125621 0 0.880825 +0.9278974 0 0.880825 +0.9429048 0 0.880825 +0.9576028 0 0.880825 +0.9720079 0 0.880825 +0.9861357 0 0.880825 +1 0 0.880825 +0 0.1939468 0.880825 +0.1939468 0.1939468 0.880825 +0.2773041 0.1939468 0.880825 +0.3384659 0.1939468 0.880825 +0.3885728 0.1939468 0.880825 +0.4317928 0.1939468 0.880825 +0.470214 0.1939468 0.880825 +0.5050551 0.1939468 0.880825 +0.5370987 0.1939468 0.880825 +0.5668815 0.1939468 0.880825 +0.5947903 0.1939468 0.880825 +0.6211144 0.1939468 0.880825 +0.6460766 0.1939468 0.880825 +0.6698526 0.1939468 0.880825 +0.6925839 0.1939468 0.880825 +0.7143866 0.1939468 0.880825 +0.7353569 0.1939468 0.880825 +0.7555758 0.1939468 0.880825 +0.7751122 0.1939468 0.880825 +0.7940252 0.1939468 0.880825 +0.8123661 0.1939468 0.880825 +0.8301795 0.1939468 0.880825 +0.8475045 0.1939468 0.880825 +0.8643761 0.1939468 0.880825 +0.880825 0.1939468 0.880825 +0.8968787 0.1939468 0.880825 +0.9125621 0.1939468 0.880825 +0.9278974 0.1939468 0.880825 +0.9429048 0.1939468 0.880825 +0.9576028 0.1939468 0.880825 +0.9720079 0.1939468 0.880825 +0.9861357 0.1939468 0.880825 +1 0.1939468 0.880825 +0 0.2773041 0.880825 +0.1939468 0.2773041 0.880825 +0.2773041 0.2773041 0.880825 +0.3384659 0.2773041 0.880825 +0.3885728 0.2773041 0.880825 +0.4317928 0.2773041 0.880825 +0.470214 0.2773041 0.880825 +0.5050551 0.2773041 0.880825 +0.5370987 0.2773041 0.880825 +0.5668815 0.2773041 0.880825 +0.5947903 0.2773041 0.880825 +0.6211144 0.2773041 0.880825 +0.6460766 0.2773041 0.880825 +0.6698526 0.2773041 0.880825 +0.6925839 0.2773041 0.880825 +0.7143866 0.2773041 0.880825 +0.7353569 0.2773041 0.880825 +0.7555758 0.2773041 0.880825 +0.7751122 0.2773041 0.880825 +0.7940252 0.2773041 0.880825 +0.8123661 0.2773041 0.880825 +0.8301795 0.2773041 0.880825 +0.8475045 0.2773041 0.880825 +0.8643761 0.2773041 0.880825 +0.880825 0.2773041 0.880825 +0.8968787 0.2773041 0.880825 +0.9125621 0.2773041 0.880825 +0.9278974 0.2773041 0.880825 +0.9429048 0.2773041 0.880825 +0.9576028 0.2773041 0.880825 +0.9720079 0.2773041 0.880825 +0.9861357 0.2773041 0.880825 +1 0.2773041 0.880825 +0 0.3384659 0.880825 +0.1939468 0.3384659 0.880825 +0.2773041 0.3384659 0.880825 +0.3384659 0.3384659 0.880825 +0.3885728 0.3384659 0.880825 +0.4317928 0.3384659 0.880825 +0.470214 0.3384659 0.880825 +0.5050551 0.3384659 0.880825 +0.5370987 0.3384659 0.880825 +0.5668815 0.3384659 0.880825 +0.5947903 0.3384659 0.880825 +0.6211144 0.3384659 0.880825 +0.6460766 0.3384659 0.880825 +0.6698526 0.3384659 0.880825 +0.6925839 0.3384659 0.880825 +0.7143866 0.3384659 0.880825 +0.7353569 0.3384659 0.880825 +0.7555758 0.3384659 0.880825 +0.7751122 0.3384659 0.880825 +0.7940252 0.3384659 0.880825 +0.8123661 0.3384659 0.880825 +0.8301795 0.3384659 0.880825 +0.8475045 0.3384659 0.880825 +0.8643761 0.3384659 0.880825 +0.880825 0.3384659 0.880825 +0.8968787 0.3384659 0.880825 +0.9125621 0.3384659 0.880825 +0.9278974 0.3384659 0.880825 +0.9429048 0.3384659 0.880825 +0.9576028 0.3384659 0.880825 +0.9720079 0.3384659 0.880825 +0.9861357 0.3384659 0.880825 +1 0.3384659 0.880825 +0 0.3885728 0.880825 +0.1939468 0.3885728 0.880825 +0.2773041 0.3885728 0.880825 +0.3384659 0.3885728 0.880825 +0.3885728 0.3885728 0.880825 +0.4317928 0.3885728 0.880825 +0.470214 0.3885728 0.880825 +0.5050551 0.3885728 0.880825 +0.5370987 0.3885728 0.880825 +0.5668815 0.3885728 0.880825 +0.5947903 0.3885728 0.880825 +0.6211144 0.3885728 0.880825 +0.6460766 0.3885728 0.880825 +0.6698526 0.3885728 0.880825 +0.6925839 0.3885728 0.880825 +0.7143866 0.3885728 0.880825 +0.7353569 0.3885728 0.880825 +0.7555758 0.3885728 0.880825 +0.7751122 0.3885728 0.880825 +0.7940252 0.3885728 0.880825 +0.8123661 0.3885728 0.880825 +0.8301795 0.3885728 0.880825 +0.8475045 0.3885728 0.880825 +0.8643761 0.3885728 0.880825 +0.880825 0.3885728 0.880825 +0.8968787 0.3885728 0.880825 +0.9125621 0.3885728 0.880825 +0.9278974 0.3885728 0.880825 +0.9429048 0.3885728 0.880825 +0.9576028 0.3885728 0.880825 +0.9720079 0.3885728 0.880825 +0.9861357 0.3885728 0.880825 +1 0.3885728 0.880825 +0 0.4317928 0.880825 +0.1939468 0.4317928 0.880825 +0.2773041 0.4317928 0.880825 +0.3384659 0.4317928 0.880825 +0.3885728 0.4317928 0.880825 +0.4317928 0.4317928 0.880825 +0.470214 0.4317928 0.880825 +0.5050551 0.4317928 0.880825 +0.5370987 0.4317928 0.880825 +0.5668815 0.4317928 0.880825 +0.5947903 0.4317928 0.880825 +0.6211144 0.4317928 0.880825 +0.6460766 0.4317928 0.880825 +0.6698526 0.4317928 0.880825 +0.6925839 0.4317928 0.880825 +0.7143866 0.4317928 0.880825 +0.7353569 0.4317928 0.880825 +0.7555758 0.4317928 0.880825 +0.7751122 0.4317928 0.880825 +0.7940252 0.4317928 0.880825 +0.8123661 0.4317928 0.880825 +0.8301795 0.4317928 0.880825 +0.8475045 0.4317928 0.880825 +0.8643761 0.4317928 0.880825 +0.880825 0.4317928 0.880825 +0.8968787 0.4317928 0.880825 +0.9125621 0.4317928 0.880825 +0.9278974 0.4317928 0.880825 +0.9429048 0.4317928 0.880825 +0.9576028 0.4317928 0.880825 +0.9720079 0.4317928 0.880825 +0.9861357 0.4317928 0.880825 +1 0.4317928 0.880825 +0 0.470214 0.880825 +0.1939468 0.470214 0.880825 +0.2773041 0.470214 0.880825 +0.3384659 0.470214 0.880825 +0.3885728 0.470214 0.880825 +0.4317928 0.470214 0.880825 +0.470214 0.470214 0.880825 +0.5050551 0.470214 0.880825 +0.5370987 0.470214 0.880825 +0.5668815 0.470214 0.880825 +0.5947903 0.470214 0.880825 +0.6211144 0.470214 0.880825 +0.6460766 0.470214 0.880825 +0.6698526 0.470214 0.880825 +0.6925839 0.470214 0.880825 +0.7143866 0.470214 0.880825 +0.7353569 0.470214 0.880825 +0.7555758 0.470214 0.880825 +0.7751122 0.470214 0.880825 +0.7940252 0.470214 0.880825 +0.8123661 0.470214 0.880825 +0.8301795 0.470214 0.880825 +0.8475045 0.470214 0.880825 +0.8643761 0.470214 0.880825 +0.880825 0.470214 0.880825 +0.8968787 0.470214 0.880825 +0.9125621 0.470214 0.880825 +0.9278974 0.470214 0.880825 +0.9429048 0.470214 0.880825 +0.9576028 0.470214 0.880825 +0.9720079 0.470214 0.880825 +0.9861357 0.470214 0.880825 +1 0.470214 0.880825 +0 0.5050551 0.880825 +0.1939468 0.5050551 0.880825 +0.2773041 0.5050551 0.880825 +0.3384659 0.5050551 0.880825 +0.3885728 0.5050551 0.880825 +0.4317928 0.5050551 0.880825 +0.470214 0.5050551 0.880825 +0.5050551 0.5050551 0.880825 +0.5370987 0.5050551 0.880825 +0.5668815 0.5050551 0.880825 +0.5947903 0.5050551 0.880825 +0.6211144 0.5050551 0.880825 +0.6460766 0.5050551 0.880825 +0.6698526 0.5050551 0.880825 +0.6925839 0.5050551 0.880825 +0.7143866 0.5050551 0.880825 +0.7353569 0.5050551 0.880825 +0.7555758 0.5050551 0.880825 +0.7751122 0.5050551 0.880825 +0.7940252 0.5050551 0.880825 +0.8123661 0.5050551 0.880825 +0.8301795 0.5050551 0.880825 +0.8475045 0.5050551 0.880825 +0.8643761 0.5050551 0.880825 +0.880825 0.5050551 0.880825 +0.8968787 0.5050551 0.880825 +0.9125621 0.5050551 0.880825 +0.9278974 0.5050551 0.880825 +0.9429048 0.5050551 0.880825 +0.9576028 0.5050551 0.880825 +0.9720079 0.5050551 0.880825 +0.9861357 0.5050551 0.880825 +1 0.5050551 0.880825 +0 0.5370987 0.880825 +0.1939468 0.5370987 0.880825 +0.2773041 0.5370987 0.880825 +0.3384659 0.5370987 0.880825 +0.3885728 0.5370987 0.880825 +0.4317928 0.5370987 0.880825 +0.470214 0.5370987 0.880825 +0.5050551 0.5370987 0.880825 +0.5370987 0.5370987 0.880825 +0.5668815 0.5370987 0.880825 +0.5947903 0.5370987 0.880825 +0.6211144 0.5370987 0.880825 +0.6460766 0.5370987 0.880825 +0.6698526 0.5370987 0.880825 +0.6925839 0.5370987 0.880825 +0.7143866 0.5370987 0.880825 +0.7353569 0.5370987 0.880825 +0.7555758 0.5370987 0.880825 +0.7751122 0.5370987 0.880825 +0.7940252 0.5370987 0.880825 +0.8123661 0.5370987 0.880825 +0.8301795 0.5370987 0.880825 +0.8475045 0.5370987 0.880825 +0.8643761 0.5370987 0.880825 +0.880825 0.5370987 0.880825 +0.8968787 0.5370987 0.880825 +0.9125621 0.5370987 0.880825 +0.9278974 0.5370987 0.880825 +0.9429048 0.5370987 0.880825 +0.9576028 0.5370987 0.880825 +0.9720079 0.5370987 0.880825 +0.9861357 0.5370987 0.880825 +1 0.5370987 0.880825 +0 0.5668815 0.880825 +0.1939468 0.5668815 0.880825 +0.2773041 0.5668815 0.880825 +0.3384659 0.5668815 0.880825 +0.3885728 0.5668815 0.880825 +0.4317928 0.5668815 0.880825 +0.470214 0.5668815 0.880825 +0.5050551 0.5668815 0.880825 +0.5370987 0.5668815 0.880825 +0.5668815 0.5668815 0.880825 +0.5947903 0.5668815 0.880825 +0.6211144 0.5668815 0.880825 +0.6460766 0.5668815 0.880825 +0.6698526 0.5668815 0.880825 +0.6925839 0.5668815 0.880825 +0.7143866 0.5668815 0.880825 +0.7353569 0.5668815 0.880825 +0.7555758 0.5668815 0.880825 +0.7751122 0.5668815 0.880825 +0.7940252 0.5668815 0.880825 +0.8123661 0.5668815 0.880825 +0.8301795 0.5668815 0.880825 +0.8475045 0.5668815 0.880825 +0.8643761 0.5668815 0.880825 +0.880825 0.5668815 0.880825 +0.8968787 0.5668815 0.880825 +0.9125621 0.5668815 0.880825 +0.9278974 0.5668815 0.880825 +0.9429048 0.5668815 0.880825 +0.9576028 0.5668815 0.880825 +0.9720079 0.5668815 0.880825 +0.9861357 0.5668815 0.880825 +1 0.5668815 0.880825 +0 0.5947903 0.880825 +0.1939468 0.5947903 0.880825 +0.2773041 0.5947903 0.880825 +0.3384659 0.5947903 0.880825 +0.3885728 0.5947903 0.880825 +0.4317928 0.5947903 0.880825 +0.470214 0.5947903 0.880825 +0.5050551 0.5947903 0.880825 +0.5370987 0.5947903 0.880825 +0.5668815 0.5947903 0.880825 +0.5947903 0.5947903 0.880825 +0.6211144 0.5947903 0.880825 +0.6460766 0.5947903 0.880825 +0.6698526 0.5947903 0.880825 +0.6925839 0.5947903 0.880825 +0.7143866 0.5947903 0.880825 +0.7353569 0.5947903 0.880825 +0.7555758 0.5947903 0.880825 +0.7751122 0.5947903 0.880825 +0.7940252 0.5947903 0.880825 +0.8123661 0.5947903 0.880825 +0.8301795 0.5947903 0.880825 +0.8475045 0.5947903 0.880825 +0.8643761 0.5947903 0.880825 +0.880825 0.5947903 0.880825 +0.8968787 0.5947903 0.880825 +0.9125621 0.5947903 0.880825 +0.9278974 0.5947903 0.880825 +0.9429048 0.5947903 0.880825 +0.9576028 0.5947903 0.880825 +0.9720079 0.5947903 0.880825 +0.9861357 0.5947903 0.880825 +1 0.5947903 0.880825 +0 0.6211144 0.880825 +0.1939468 0.6211144 0.880825 +0.2773041 0.6211144 0.880825 +0.3384659 0.6211144 0.880825 +0.3885728 0.6211144 0.880825 +0.4317928 0.6211144 0.880825 +0.470214 0.6211144 0.880825 +0.5050551 0.6211144 0.880825 +0.5370987 0.6211144 0.880825 +0.5668815 0.6211144 0.880825 +0.5947903 0.6211144 0.880825 +0.6211144 0.6211144 0.880825 +0.6460766 0.6211144 0.880825 +0.6698526 0.6211144 0.880825 +0.6925839 0.6211144 0.880825 +0.7143866 0.6211144 0.880825 +0.7353569 0.6211144 0.880825 +0.7555758 0.6211144 0.880825 +0.7751122 0.6211144 0.880825 +0.7940252 0.6211144 0.880825 +0.8123661 0.6211144 0.880825 +0.8301795 0.6211144 0.880825 +0.8475045 0.6211144 0.880825 +0.8643761 0.6211144 0.880825 +0.880825 0.6211144 0.880825 +0.8968787 0.6211144 0.880825 +0.9125621 0.6211144 0.880825 +0.9278974 0.6211144 0.880825 +0.9429048 0.6211144 0.880825 +0.9576028 0.6211144 0.880825 +0.9720079 0.6211144 0.880825 +0.9861357 0.6211144 0.880825 +1 0.6211144 0.880825 +0 0.6460766 0.880825 +0.1939468 0.6460766 0.880825 +0.2773041 0.6460766 0.880825 +0.3384659 0.6460766 0.880825 +0.3885728 0.6460766 0.880825 +0.4317928 0.6460766 0.880825 +0.470214 0.6460766 0.880825 +0.5050551 0.6460766 0.880825 +0.5370987 0.6460766 0.880825 +0.5668815 0.6460766 0.880825 +0.5947903 0.6460766 0.880825 +0.6211144 0.6460766 0.880825 +0.6460766 0.6460766 0.880825 +0.6698526 0.6460766 0.880825 +0.6925839 0.6460766 0.880825 +0.7143866 0.6460766 0.880825 +0.7353569 0.6460766 0.880825 +0.7555758 0.6460766 0.880825 +0.7751122 0.6460766 0.880825 +0.7940252 0.6460766 0.880825 +0.8123661 0.6460766 0.880825 +0.8301795 0.6460766 0.880825 +0.8475045 0.6460766 0.880825 +0.8643761 0.6460766 0.880825 +0.880825 0.6460766 0.880825 +0.8968787 0.6460766 0.880825 +0.9125621 0.6460766 0.880825 +0.9278974 0.6460766 0.880825 +0.9429048 0.6460766 0.880825 +0.9576028 0.6460766 0.880825 +0.9720079 0.6460766 0.880825 +0.9861357 0.6460766 0.880825 +1 0.6460766 0.880825 +0 0.6698526 0.880825 +0.1939468 0.6698526 0.880825 +0.2773041 0.6698526 0.880825 +0.3384659 0.6698526 0.880825 +0.3885728 0.6698526 0.880825 +0.4317928 0.6698526 0.880825 +0.470214 0.6698526 0.880825 +0.5050551 0.6698526 0.880825 +0.5370987 0.6698526 0.880825 +0.5668815 0.6698526 0.880825 +0.5947903 0.6698526 0.880825 +0.6211144 0.6698526 0.880825 +0.6460766 0.6698526 0.880825 +0.6698526 0.6698526 0.880825 +0.6925839 0.6698526 0.880825 +0.7143866 0.6698526 0.880825 +0.7353569 0.6698526 0.880825 +0.7555758 0.6698526 0.880825 +0.7751122 0.6698526 0.880825 +0.7940252 0.6698526 0.880825 +0.8123661 0.6698526 0.880825 +0.8301795 0.6698526 0.880825 +0.8475045 0.6698526 0.880825 +0.8643761 0.6698526 0.880825 +0.880825 0.6698526 0.880825 +0.8968787 0.6698526 0.880825 +0.9125621 0.6698526 0.880825 +0.9278974 0.6698526 0.880825 +0.9429048 0.6698526 0.880825 +0.9576028 0.6698526 0.880825 +0.9720079 0.6698526 0.880825 +0.9861357 0.6698526 0.880825 +1 0.6698526 0.880825 +0 0.6925839 0.880825 +0.1939468 0.6925839 0.880825 +0.2773041 0.6925839 0.880825 +0.3384659 0.6925839 0.880825 +0.3885728 0.6925839 0.880825 +0.4317928 0.6925839 0.880825 +0.470214 0.6925839 0.880825 +0.5050551 0.6925839 0.880825 +0.5370987 0.6925839 0.880825 +0.5668815 0.6925839 0.880825 +0.5947903 0.6925839 0.880825 +0.6211144 0.6925839 0.880825 +0.6460766 0.6925839 0.880825 +0.6698526 0.6925839 0.880825 +0.6925839 0.6925839 0.880825 +0.7143866 0.6925839 0.880825 +0.7353569 0.6925839 0.880825 +0.7555758 0.6925839 0.880825 +0.7751122 0.6925839 0.880825 +0.7940252 0.6925839 0.880825 +0.8123661 0.6925839 0.880825 +0.8301795 0.6925839 0.880825 +0.8475045 0.6925839 0.880825 +0.8643761 0.6925839 0.880825 +0.880825 0.6925839 0.880825 +0.8968787 0.6925839 0.880825 +0.9125621 0.6925839 0.880825 +0.9278974 0.6925839 0.880825 +0.9429048 0.6925839 0.880825 +0.9576028 0.6925839 0.880825 +0.9720079 0.6925839 0.880825 +0.9861357 0.6925839 0.880825 +1 0.6925839 0.880825 +0 0.7143866 0.880825 +0.1939468 0.7143866 0.880825 +0.2773041 0.7143866 0.880825 +0.3384659 0.7143866 0.880825 +0.3885728 0.7143866 0.880825 +0.4317928 0.7143866 0.880825 +0.470214 0.7143866 0.880825 +0.5050551 0.7143866 0.880825 +0.5370987 0.7143866 0.880825 +0.5668815 0.7143866 0.880825 +0.5947903 0.7143866 0.880825 +0.6211144 0.7143866 0.880825 +0.6460766 0.7143866 0.880825 +0.6698526 0.7143866 0.880825 +0.6925839 0.7143866 0.880825 +0.7143866 0.7143866 0.880825 +0.7353569 0.7143866 0.880825 +0.7555758 0.7143866 0.880825 +0.7751122 0.7143866 0.880825 +0.7940252 0.7143866 0.880825 +0.8123661 0.7143866 0.880825 +0.8301795 0.7143866 0.880825 +0.8475045 0.7143866 0.880825 +0.8643761 0.7143866 0.880825 +0.880825 0.7143866 0.880825 +0.8968787 0.7143866 0.880825 +0.9125621 0.7143866 0.880825 +0.9278974 0.7143866 0.880825 +0.9429048 0.7143866 0.880825 +0.9576028 0.7143866 0.880825 +0.9720079 0.7143866 0.880825 +0.9861357 0.7143866 0.880825 +1 0.7143866 0.880825 +0 0.7353569 0.880825 +0.1939468 0.7353569 0.880825 +0.2773041 0.7353569 0.880825 +0.3384659 0.7353569 0.880825 +0.3885728 0.7353569 0.880825 +0.4317928 0.7353569 0.880825 +0.470214 0.7353569 0.880825 +0.5050551 0.7353569 0.880825 +0.5370987 0.7353569 0.880825 +0.5668815 0.7353569 0.880825 +0.5947903 0.7353569 0.880825 +0.6211144 0.7353569 0.880825 +0.6460766 0.7353569 0.880825 +0.6698526 0.7353569 0.880825 +0.6925839 0.7353569 0.880825 +0.7143866 0.7353569 0.880825 +0.7353569 0.7353569 0.880825 +0.7555758 0.7353569 0.880825 +0.7751122 0.7353569 0.880825 +0.7940252 0.7353569 0.880825 +0.8123661 0.7353569 0.880825 +0.8301795 0.7353569 0.880825 +0.8475045 0.7353569 0.880825 +0.8643761 0.7353569 0.880825 +0.880825 0.7353569 0.880825 +0.8968787 0.7353569 0.880825 +0.9125621 0.7353569 0.880825 +0.9278974 0.7353569 0.880825 +0.9429048 0.7353569 0.880825 +0.9576028 0.7353569 0.880825 +0.9720079 0.7353569 0.880825 +0.9861357 0.7353569 0.880825 +1 0.7353569 0.880825 +0 0.7555758 0.880825 +0.1939468 0.7555758 0.880825 +0.2773041 0.7555758 0.880825 +0.3384659 0.7555758 0.880825 +0.3885728 0.7555758 0.880825 +0.4317928 0.7555758 0.880825 +0.470214 0.7555758 0.880825 +0.5050551 0.7555758 0.880825 +0.5370987 0.7555758 0.880825 +0.5668815 0.7555758 0.880825 +0.5947903 0.7555758 0.880825 +0.6211144 0.7555758 0.880825 +0.6460766 0.7555758 0.880825 +0.6698526 0.7555758 0.880825 +0.6925839 0.7555758 0.880825 +0.7143866 0.7555758 0.880825 +0.7353569 0.7555758 0.880825 +0.7555758 0.7555758 0.880825 +0.7751122 0.7555758 0.880825 +0.7940252 0.7555758 0.880825 +0.8123661 0.7555758 0.880825 +0.8301795 0.7555758 0.880825 +0.8475045 0.7555758 0.880825 +0.8643761 0.7555758 0.880825 +0.880825 0.7555758 0.880825 +0.8968787 0.7555758 0.880825 +0.9125621 0.7555758 0.880825 +0.9278974 0.7555758 0.880825 +0.9429048 0.7555758 0.880825 +0.9576028 0.7555758 0.880825 +0.9720079 0.7555758 0.880825 +0.9861357 0.7555758 0.880825 +1 0.7555758 0.880825 +0 0.7751122 0.880825 +0.1939468 0.7751122 0.880825 +0.2773041 0.7751122 0.880825 +0.3384659 0.7751122 0.880825 +0.3885728 0.7751122 0.880825 +0.4317928 0.7751122 0.880825 +0.470214 0.7751122 0.880825 +0.5050551 0.7751122 0.880825 +0.5370987 0.7751122 0.880825 +0.5668815 0.7751122 0.880825 +0.5947903 0.7751122 0.880825 +0.6211144 0.7751122 0.880825 +0.6460766 0.7751122 0.880825 +0.6698526 0.7751122 0.880825 +0.6925839 0.7751122 0.880825 +0.7143866 0.7751122 0.880825 +0.7353569 0.7751122 0.880825 +0.7555758 0.7751122 0.880825 +0.7751122 0.7751122 0.880825 +0.7940252 0.7751122 0.880825 +0.8123661 0.7751122 0.880825 +0.8301795 0.7751122 0.880825 +0.8475045 0.7751122 0.880825 +0.8643761 0.7751122 0.880825 +0.880825 0.7751122 0.880825 +0.8968787 0.7751122 0.880825 +0.9125621 0.7751122 0.880825 +0.9278974 0.7751122 0.880825 +0.9429048 0.7751122 0.880825 +0.9576028 0.7751122 0.880825 +0.9720079 0.7751122 0.880825 +0.9861357 0.7751122 0.880825 +1 0.7751122 0.880825 +0 0.7940252 0.880825 +0.1939468 0.7940252 0.880825 +0.2773041 0.7940252 0.880825 +0.3384659 0.7940252 0.880825 +0.3885728 0.7940252 0.880825 +0.4317928 0.7940252 0.880825 +0.470214 0.7940252 0.880825 +0.5050551 0.7940252 0.880825 +0.5370987 0.7940252 0.880825 +0.5668815 0.7940252 0.880825 +0.5947903 0.7940252 0.880825 +0.6211144 0.7940252 0.880825 +0.6460766 0.7940252 0.880825 +0.6698526 0.7940252 0.880825 +0.6925839 0.7940252 0.880825 +0.7143866 0.7940252 0.880825 +0.7353569 0.7940252 0.880825 +0.7555758 0.7940252 0.880825 +0.7751122 0.7940252 0.880825 +0.7940252 0.7940252 0.880825 +0.8123661 0.7940252 0.880825 +0.8301795 0.7940252 0.880825 +0.8475045 0.7940252 0.880825 +0.8643761 0.7940252 0.880825 +0.880825 0.7940252 0.880825 +0.8968787 0.7940252 0.880825 +0.9125621 0.7940252 0.880825 +0.9278974 0.7940252 0.880825 +0.9429048 0.7940252 0.880825 +0.9576028 0.7940252 0.880825 +0.9720079 0.7940252 0.880825 +0.9861357 0.7940252 0.880825 +1 0.7940252 0.880825 +0 0.8123661 0.880825 +0.1939468 0.8123661 0.880825 +0.2773041 0.8123661 0.880825 +0.3384659 0.8123661 0.880825 +0.3885728 0.8123661 0.880825 +0.4317928 0.8123661 0.880825 +0.470214 0.8123661 0.880825 +0.5050551 0.8123661 0.880825 +0.5370987 0.8123661 0.880825 +0.5668815 0.8123661 0.880825 +0.5947903 0.8123661 0.880825 +0.6211144 0.8123661 0.880825 +0.6460766 0.8123661 0.880825 +0.6698526 0.8123661 0.880825 +0.6925839 0.8123661 0.880825 +0.7143866 0.8123661 0.880825 +0.7353569 0.8123661 0.880825 +0.7555758 0.8123661 0.880825 +0.7751122 0.8123661 0.880825 +0.7940252 0.8123661 0.880825 +0.8123661 0.8123661 0.880825 +0.8301795 0.8123661 0.880825 +0.8475045 0.8123661 0.880825 +0.8643761 0.8123661 0.880825 +0.880825 0.8123661 0.880825 +0.8968787 0.8123661 0.880825 +0.9125621 0.8123661 0.880825 +0.9278974 0.8123661 0.880825 +0.9429048 0.8123661 0.880825 +0.9576028 0.8123661 0.880825 +0.9720079 0.8123661 0.880825 +0.9861357 0.8123661 0.880825 +1 0.8123661 0.880825 +0 0.8301795 0.880825 +0.1939468 0.8301795 0.880825 +0.2773041 0.8301795 0.880825 +0.3384659 0.8301795 0.880825 +0.3885728 0.8301795 0.880825 +0.4317928 0.8301795 0.880825 +0.470214 0.8301795 0.880825 +0.5050551 0.8301795 0.880825 +0.5370987 0.8301795 0.880825 +0.5668815 0.8301795 0.880825 +0.5947903 0.8301795 0.880825 +0.6211144 0.8301795 0.880825 +0.6460766 0.8301795 0.880825 +0.6698526 0.8301795 0.880825 +0.6925839 0.8301795 0.880825 +0.7143866 0.8301795 0.880825 +0.7353569 0.8301795 0.880825 +0.7555758 0.8301795 0.880825 +0.7751122 0.8301795 0.880825 +0.7940252 0.8301795 0.880825 +0.8123661 0.8301795 0.880825 +0.8301795 0.8301795 0.880825 +0.8475045 0.8301795 0.880825 +0.8643761 0.8301795 0.880825 +0.880825 0.8301795 0.880825 +0.8968787 0.8301795 0.880825 +0.9125621 0.8301795 0.880825 +0.9278974 0.8301795 0.880825 +0.9429048 0.8301795 0.880825 +0.9576028 0.8301795 0.880825 +0.9720079 0.8301795 0.880825 +0.9861357 0.8301795 0.880825 +1 0.8301795 0.880825 +0 0.8475045 0.880825 +0.1939468 0.8475045 0.880825 +0.2773041 0.8475045 0.880825 +0.3384659 0.8475045 0.880825 +0.3885728 0.8475045 0.880825 +0.4317928 0.8475045 0.880825 +0.470214 0.8475045 0.880825 +0.5050551 0.8475045 0.880825 +0.5370987 0.8475045 0.880825 +0.5668815 0.8475045 0.880825 +0.5947903 0.8475045 0.880825 +0.6211144 0.8475045 0.880825 +0.6460766 0.8475045 0.880825 +0.6698526 0.8475045 0.880825 +0.6925839 0.8475045 0.880825 +0.7143866 0.8475045 0.880825 +0.7353569 0.8475045 0.880825 +0.7555758 0.8475045 0.880825 +0.7751122 0.8475045 0.880825 +0.7940252 0.8475045 0.880825 +0.8123661 0.8475045 0.880825 +0.8301795 0.8475045 0.880825 +0.8475045 0.8475045 0.880825 +0.8643761 0.8475045 0.880825 +0.880825 0.8475045 0.880825 +0.8968787 0.8475045 0.880825 +0.9125621 0.8475045 0.880825 +0.9278974 0.8475045 0.880825 +0.9429048 0.8475045 0.880825 +0.9576028 0.8475045 0.880825 +0.9720079 0.8475045 0.880825 +0.9861357 0.8475045 0.880825 +1 0.8475045 0.880825 +0 0.8643761 0.880825 +0.1939468 0.8643761 0.880825 +0.2773041 0.8643761 0.880825 +0.3384659 0.8643761 0.880825 +0.3885728 0.8643761 0.880825 +0.4317928 0.8643761 0.880825 +0.470214 0.8643761 0.880825 +0.5050551 0.8643761 0.880825 +0.5370987 0.8643761 0.880825 +0.5668815 0.8643761 0.880825 +0.5947903 0.8643761 0.880825 +0.6211144 0.8643761 0.880825 +0.6460766 0.8643761 0.880825 +0.6698526 0.8643761 0.880825 +0.6925839 0.8643761 0.880825 +0.7143866 0.8643761 0.880825 +0.7353569 0.8643761 0.880825 +0.7555758 0.8643761 0.880825 +0.7751122 0.8643761 0.880825 +0.7940252 0.8643761 0.880825 +0.8123661 0.8643761 0.880825 +0.8301795 0.8643761 0.880825 +0.8475045 0.8643761 0.880825 +0.8643761 0.8643761 0.880825 +0.880825 0.8643761 0.880825 +0.8968787 0.8643761 0.880825 +0.9125621 0.8643761 0.880825 +0.9278974 0.8643761 0.880825 +0.9429048 0.8643761 0.880825 +0.9576028 0.8643761 0.880825 +0.9720079 0.8643761 0.880825 +0.9861357 0.8643761 0.880825 +1 0.8643761 0.880825 +0 0.880825 0.880825 +0.1939468 0.880825 0.880825 +0.2773041 0.880825 0.880825 +0.3384659 0.880825 0.880825 +0.3885728 0.880825 0.880825 +0.4317928 0.880825 0.880825 +0.470214 0.880825 0.880825 +0.5050551 0.880825 0.880825 +0.5370987 0.880825 0.880825 +0.5668815 0.880825 0.880825 +0.5947903 0.880825 0.880825 +0.6211144 0.880825 0.880825 +0.6460766 0.880825 0.880825 +0.6698526 0.880825 0.880825 +0.6925839 0.880825 0.880825 +0.7143866 0.880825 0.880825 +0.7353569 0.880825 0.880825 +0.7555758 0.880825 0.880825 +0.7751122 0.880825 0.880825 +0.7940252 0.880825 0.880825 +0.8123661 0.880825 0.880825 +0.8301795 0.880825 0.880825 +0.8475045 0.880825 0.880825 +0.8643761 0.880825 0.880825 +0.880825 0.880825 0.880825 +0.8968787 0.880825 0.880825 +0.9125621 0.880825 0.880825 +0.9278974 0.880825 0.880825 +0.9429048 0.880825 0.880825 +0.9576028 0.880825 0.880825 +0.9720079 0.880825 0.880825 +0.9861357 0.880825 0.880825 +1 0.880825 0.880825 +0 0.8968787 0.880825 +0.1939468 0.8968787 0.880825 +0.2773041 0.8968787 0.880825 +0.3384659 0.8968787 0.880825 +0.3885728 0.8968787 0.880825 +0.4317928 0.8968787 0.880825 +0.470214 0.8968787 0.880825 +0.5050551 0.8968787 0.880825 +0.5370987 0.8968787 0.880825 +0.5668815 0.8968787 0.880825 +0.5947903 0.8968787 0.880825 +0.6211144 0.8968787 0.880825 +0.6460766 0.8968787 0.880825 +0.6698526 0.8968787 0.880825 +0.6925839 0.8968787 0.880825 +0.7143866 0.8968787 0.880825 +0.7353569 0.8968787 0.880825 +0.7555758 0.8968787 0.880825 +0.7751122 0.8968787 0.880825 +0.7940252 0.8968787 0.880825 +0.8123661 0.8968787 0.880825 +0.8301795 0.8968787 0.880825 +0.8475045 0.8968787 0.880825 +0.8643761 0.8968787 0.880825 +0.880825 0.8968787 0.880825 +0.8968787 0.8968787 0.880825 +0.9125621 0.8968787 0.880825 +0.9278974 0.8968787 0.880825 +0.9429048 0.8968787 0.880825 +0.9576028 0.8968787 0.880825 +0.9720079 0.8968787 0.880825 +0.9861357 0.8968787 0.880825 +1 0.8968787 0.880825 +0 0.9125621 0.880825 +0.1939468 0.9125621 0.880825 +0.2773041 0.9125621 0.880825 +0.3384659 0.9125621 0.880825 +0.3885728 0.9125621 0.880825 +0.4317928 0.9125621 0.880825 +0.470214 0.9125621 0.880825 +0.5050551 0.9125621 0.880825 +0.5370987 0.9125621 0.880825 +0.5668815 0.9125621 0.880825 +0.5947903 0.9125621 0.880825 +0.6211144 0.9125621 0.880825 +0.6460766 0.9125621 0.880825 +0.6698526 0.9125621 0.880825 +0.6925839 0.9125621 0.880825 +0.7143866 0.9125621 0.880825 +0.7353569 0.9125621 0.880825 +0.7555758 0.9125621 0.880825 +0.7751122 0.9125621 0.880825 +0.7940252 0.9125621 0.880825 +0.8123661 0.9125621 0.880825 +0.8301795 0.9125621 0.880825 +0.8475045 0.9125621 0.880825 +0.8643761 0.9125621 0.880825 +0.880825 0.9125621 0.880825 +0.8968787 0.9125621 0.880825 +0.9125621 0.9125621 0.880825 +0.9278974 0.9125621 0.880825 +0.9429048 0.9125621 0.880825 +0.9576028 0.9125621 0.880825 +0.9720079 0.9125621 0.880825 +0.9861357 0.9125621 0.880825 +1 0.9125621 0.880825 +0 0.9278974 0.880825 +0.1939468 0.9278974 0.880825 +0.2773041 0.9278974 0.880825 +0.3384659 0.9278974 0.880825 +0.3885728 0.9278974 0.880825 +0.4317928 0.9278974 0.880825 +0.470214 0.9278974 0.880825 +0.5050551 0.9278974 0.880825 +0.5370987 0.9278974 0.880825 +0.5668815 0.9278974 0.880825 +0.5947903 0.9278974 0.880825 +0.6211144 0.9278974 0.880825 +0.6460766 0.9278974 0.880825 +0.6698526 0.9278974 0.880825 +0.6925839 0.9278974 0.880825 +0.7143866 0.9278974 0.880825 +0.7353569 0.9278974 0.880825 +0.7555758 0.9278974 0.880825 +0.7751122 0.9278974 0.880825 +0.7940252 0.9278974 0.880825 +0.8123661 0.9278974 0.880825 +0.8301795 0.9278974 0.880825 +0.8475045 0.9278974 0.880825 +0.8643761 0.9278974 0.880825 +0.880825 0.9278974 0.880825 +0.8968787 0.9278974 0.880825 +0.9125621 0.9278974 0.880825 +0.9278974 0.9278974 0.880825 +0.9429048 0.9278974 0.880825 +0.9576028 0.9278974 0.880825 +0.9720079 0.9278974 0.880825 +0.9861357 0.9278974 0.880825 +1 0.9278974 0.880825 +0 0.9429048 0.880825 +0.1939468 0.9429048 0.880825 +0.2773041 0.9429048 0.880825 +0.3384659 0.9429048 0.880825 +0.3885728 0.9429048 0.880825 +0.4317928 0.9429048 0.880825 +0.470214 0.9429048 0.880825 +0.5050551 0.9429048 0.880825 +0.5370987 0.9429048 0.880825 +0.5668815 0.9429048 0.880825 +0.5947903 0.9429048 0.880825 +0.6211144 0.9429048 0.880825 +0.6460766 0.9429048 0.880825 +0.6698526 0.9429048 0.880825 +0.6925839 0.9429048 0.880825 +0.7143866 0.9429048 0.880825 +0.7353569 0.9429048 0.880825 +0.7555758 0.9429048 0.880825 +0.7751122 0.9429048 0.880825 +0.7940252 0.9429048 0.880825 +0.8123661 0.9429048 0.880825 +0.8301795 0.9429048 0.880825 +0.8475045 0.9429048 0.880825 +0.8643761 0.9429048 0.880825 +0.880825 0.9429048 0.880825 +0.8968787 0.9429048 0.880825 +0.9125621 0.9429048 0.880825 +0.9278974 0.9429048 0.880825 +0.9429048 0.9429048 0.880825 +0.9576028 0.9429048 0.880825 +0.9720079 0.9429048 0.880825 +0.9861357 0.9429048 0.880825 +1 0.9429048 0.880825 +0 0.9576028 0.880825 +0.1939468 0.9576028 0.880825 +0.2773041 0.9576028 0.880825 +0.3384659 0.9576028 0.880825 +0.3885728 0.9576028 0.880825 +0.4317928 0.9576028 0.880825 +0.470214 0.9576028 0.880825 +0.5050551 0.9576028 0.880825 +0.5370987 0.9576028 0.880825 +0.5668815 0.9576028 0.880825 +0.5947903 0.9576028 0.880825 +0.6211144 0.9576028 0.880825 +0.6460766 0.9576028 0.880825 +0.6698526 0.9576028 0.880825 +0.6925839 0.9576028 0.880825 +0.7143866 0.9576028 0.880825 +0.7353569 0.9576028 0.880825 +0.7555758 0.9576028 0.880825 +0.7751122 0.9576028 0.880825 +0.7940252 0.9576028 0.880825 +0.8123661 0.9576028 0.880825 +0.8301795 0.9576028 0.880825 +0.8475045 0.9576028 0.880825 +0.8643761 0.9576028 0.880825 +0.880825 0.9576028 0.880825 +0.8968787 0.9576028 0.880825 +0.9125621 0.9576028 0.880825 +0.9278974 0.9576028 0.880825 +0.9429048 0.9576028 0.880825 +0.9576028 0.9576028 0.880825 +0.9720079 0.9576028 0.880825 +0.9861357 0.9576028 0.880825 +1 0.9576028 0.880825 +0 0.9720079 0.880825 +0.1939468 0.9720079 0.880825 +0.2773041 0.9720079 0.880825 +0.3384659 0.9720079 0.880825 +0.3885728 0.9720079 0.880825 +0.4317928 0.9720079 0.880825 +0.470214 0.9720079 0.880825 +0.5050551 0.9720079 0.880825 +0.5370987 0.9720079 0.880825 +0.5668815 0.9720079 0.880825 +0.5947903 0.9720079 0.880825 +0.6211144 0.9720079 0.880825 +0.6460766 0.9720079 0.880825 +0.6698526 0.9720079 0.880825 +0.6925839 0.9720079 0.880825 +0.7143866 0.9720079 0.880825 +0.7353569 0.9720079 0.880825 +0.7555758 0.9720079 0.880825 +0.7751122 0.9720079 0.880825 +0.7940252 0.9720079 0.880825 +0.8123661 0.9720079 0.880825 +0.8301795 0.9720079 0.880825 +0.8475045 0.9720079 0.880825 +0.8643761 0.9720079 0.880825 +0.880825 0.9720079 0.880825 +0.8968787 0.9720079 0.880825 +0.9125621 0.9720079 0.880825 +0.9278974 0.9720079 0.880825 +0.9429048 0.9720079 0.880825 +0.9576028 0.9720079 0.880825 +0.9720079 0.9720079 0.880825 +0.9861357 0.9720079 0.880825 +1 0.9720079 0.880825 +0 0.9861357 0.880825 +0.1939468 0.9861357 0.880825 +0.2773041 0.9861357 0.880825 +0.3384659 0.9861357 0.880825 +0.3885728 0.9861357 0.880825 +0.4317928 0.9861357 0.880825 +0.470214 0.9861357 0.880825 +0.5050551 0.9861357 0.880825 +0.5370987 0.9861357 0.880825 +0.5668815 0.9861357 0.880825 +0.5947903 0.9861357 0.880825 +0.6211144 0.9861357 0.880825 +0.6460766 0.9861357 0.880825 +0.6698526 0.9861357 0.880825 +0.6925839 0.9861357 0.880825 +0.7143866 0.9861357 0.880825 +0.7353569 0.9861357 0.880825 +0.7555758 0.9861357 0.880825 +0.7751122 0.9861357 0.880825 +0.7940252 0.9861357 0.880825 +0.8123661 0.9861357 0.880825 +0.8301795 0.9861357 0.880825 +0.8475045 0.9861357 0.880825 +0.8643761 0.9861357 0.880825 +0.880825 0.9861357 0.880825 +0.8968787 0.9861357 0.880825 +0.9125621 0.9861357 0.880825 +0.9278974 0.9861357 0.880825 +0.9429048 0.9861357 0.880825 +0.9576028 0.9861357 0.880825 +0.9720079 0.9861357 0.880825 +0.9861357 0.9861357 0.880825 +1 0.9861357 0.880825 +0 1 0.880825 +0.1939468 1 0.880825 +0.2773041 1 0.880825 +0.3384659 1 0.880825 +0.3885728 1 0.880825 +0.4317928 1 0.880825 +0.470214 1 0.880825 +0.5050551 1 0.880825 +0.5370987 1 0.880825 +0.5668815 1 0.880825 +0.5947903 1 0.880825 +0.6211144 1 0.880825 +0.6460766 1 0.880825 +0.6698526 1 0.880825 +0.6925839 1 0.880825 +0.7143866 1 0.880825 +0.7353569 1 0.880825 +0.7555758 1 0.880825 +0.7751122 1 0.880825 +0.7940252 1 0.880825 +0.8123661 1 0.880825 +0.8301795 1 0.880825 +0.8475045 1 0.880825 +0.8643761 1 0.880825 +0.880825 1 0.880825 +0.8968787 1 0.880825 +0.9125621 1 0.880825 +0.9278974 1 0.880825 +0.9429048 1 0.880825 +0.9576028 1 0.880825 +0.9720079 1 0.880825 +0.9861357 1 0.880825 +1 1 0.880825 +0 0 0.8968787 +0.1939468 0 0.8968787 +0.2773041 0 0.8968787 +0.3384659 0 0.8968787 +0.3885728 0 0.8968787 +0.4317928 0 0.8968787 +0.470214 0 0.8968787 +0.5050551 0 0.8968787 +0.5370987 0 0.8968787 +0.5668815 0 0.8968787 +0.5947903 0 0.8968787 +0.6211144 0 0.8968787 +0.6460766 0 0.8968787 +0.6698526 0 0.8968787 +0.6925839 0 0.8968787 +0.7143866 0 0.8968787 +0.7353569 0 0.8968787 +0.7555758 0 0.8968787 +0.7751122 0 0.8968787 +0.7940252 0 0.8968787 +0.8123661 0 0.8968787 +0.8301795 0 0.8968787 +0.8475045 0 0.8968787 +0.8643761 0 0.8968787 +0.880825 0 0.8968787 +0.8968787 0 0.8968787 +0.9125621 0 0.8968787 +0.9278974 0 0.8968787 +0.9429048 0 0.8968787 +0.9576028 0 0.8968787 +0.9720079 0 0.8968787 +0.9861357 0 0.8968787 +1 0 0.8968787 +0 0.1939468 0.8968787 +0.1939468 0.1939468 0.8968787 +0.2773041 0.1939468 0.8968787 +0.3384659 0.1939468 0.8968787 +0.3885728 0.1939468 0.8968787 +0.4317928 0.1939468 0.8968787 +0.470214 0.1939468 0.8968787 +0.5050551 0.1939468 0.8968787 +0.5370987 0.1939468 0.8968787 +0.5668815 0.1939468 0.8968787 +0.5947903 0.1939468 0.8968787 +0.6211144 0.1939468 0.8968787 +0.6460766 0.1939468 0.8968787 +0.6698526 0.1939468 0.8968787 +0.6925839 0.1939468 0.8968787 +0.7143866 0.1939468 0.8968787 +0.7353569 0.1939468 0.8968787 +0.7555758 0.1939468 0.8968787 +0.7751122 0.1939468 0.8968787 +0.7940252 0.1939468 0.8968787 +0.8123661 0.1939468 0.8968787 +0.8301795 0.1939468 0.8968787 +0.8475045 0.1939468 0.8968787 +0.8643761 0.1939468 0.8968787 +0.880825 0.1939468 0.8968787 +0.8968787 0.1939468 0.8968787 +0.9125621 0.1939468 0.8968787 +0.9278974 0.1939468 0.8968787 +0.9429048 0.1939468 0.8968787 +0.9576028 0.1939468 0.8968787 +0.9720079 0.1939468 0.8968787 +0.9861357 0.1939468 0.8968787 +1 0.1939468 0.8968787 +0 0.2773041 0.8968787 +0.1939468 0.2773041 0.8968787 +0.2773041 0.2773041 0.8968787 +0.3384659 0.2773041 0.8968787 +0.3885728 0.2773041 0.8968787 +0.4317928 0.2773041 0.8968787 +0.470214 0.2773041 0.8968787 +0.5050551 0.2773041 0.8968787 +0.5370987 0.2773041 0.8968787 +0.5668815 0.2773041 0.8968787 +0.5947903 0.2773041 0.8968787 +0.6211144 0.2773041 0.8968787 +0.6460766 0.2773041 0.8968787 +0.6698526 0.2773041 0.8968787 +0.6925839 0.2773041 0.8968787 +0.7143866 0.2773041 0.8968787 +0.7353569 0.2773041 0.8968787 +0.7555758 0.2773041 0.8968787 +0.7751122 0.2773041 0.8968787 +0.7940252 0.2773041 0.8968787 +0.8123661 0.2773041 0.8968787 +0.8301795 0.2773041 0.8968787 +0.8475045 0.2773041 0.8968787 +0.8643761 0.2773041 0.8968787 +0.880825 0.2773041 0.8968787 +0.8968787 0.2773041 0.8968787 +0.9125621 0.2773041 0.8968787 +0.9278974 0.2773041 0.8968787 +0.9429048 0.2773041 0.8968787 +0.9576028 0.2773041 0.8968787 +0.9720079 0.2773041 0.8968787 +0.9861357 0.2773041 0.8968787 +1 0.2773041 0.8968787 +0 0.3384659 0.8968787 +0.1939468 0.3384659 0.8968787 +0.2773041 0.3384659 0.8968787 +0.3384659 0.3384659 0.8968787 +0.3885728 0.3384659 0.8968787 +0.4317928 0.3384659 0.8968787 +0.470214 0.3384659 0.8968787 +0.5050551 0.3384659 0.8968787 +0.5370987 0.3384659 0.8968787 +0.5668815 0.3384659 0.8968787 +0.5947903 0.3384659 0.8968787 +0.6211144 0.3384659 0.8968787 +0.6460766 0.3384659 0.8968787 +0.6698526 0.3384659 0.8968787 +0.6925839 0.3384659 0.8968787 +0.7143866 0.3384659 0.8968787 +0.7353569 0.3384659 0.8968787 +0.7555758 0.3384659 0.8968787 +0.7751122 0.3384659 0.8968787 +0.7940252 0.3384659 0.8968787 +0.8123661 0.3384659 0.8968787 +0.8301795 0.3384659 0.8968787 +0.8475045 0.3384659 0.8968787 +0.8643761 0.3384659 0.8968787 +0.880825 0.3384659 0.8968787 +0.8968787 0.3384659 0.8968787 +0.9125621 0.3384659 0.8968787 +0.9278974 0.3384659 0.8968787 +0.9429048 0.3384659 0.8968787 +0.9576028 0.3384659 0.8968787 +0.9720079 0.3384659 0.8968787 +0.9861357 0.3384659 0.8968787 +1 0.3384659 0.8968787 +0 0.3885728 0.8968787 +0.1939468 0.3885728 0.8968787 +0.2773041 0.3885728 0.8968787 +0.3384659 0.3885728 0.8968787 +0.3885728 0.3885728 0.8968787 +0.4317928 0.3885728 0.8968787 +0.470214 0.3885728 0.8968787 +0.5050551 0.3885728 0.8968787 +0.5370987 0.3885728 0.8968787 +0.5668815 0.3885728 0.8968787 +0.5947903 0.3885728 0.8968787 +0.6211144 0.3885728 0.8968787 +0.6460766 0.3885728 0.8968787 +0.6698526 0.3885728 0.8968787 +0.6925839 0.3885728 0.8968787 +0.7143866 0.3885728 0.8968787 +0.7353569 0.3885728 0.8968787 +0.7555758 0.3885728 0.8968787 +0.7751122 0.3885728 0.8968787 +0.7940252 0.3885728 0.8968787 +0.8123661 0.3885728 0.8968787 +0.8301795 0.3885728 0.8968787 +0.8475045 0.3885728 0.8968787 +0.8643761 0.3885728 0.8968787 +0.880825 0.3885728 0.8968787 +0.8968787 0.3885728 0.8968787 +0.9125621 0.3885728 0.8968787 +0.9278974 0.3885728 0.8968787 +0.9429048 0.3885728 0.8968787 +0.9576028 0.3885728 0.8968787 +0.9720079 0.3885728 0.8968787 +0.9861357 0.3885728 0.8968787 +1 0.3885728 0.8968787 +0 0.4317928 0.8968787 +0.1939468 0.4317928 0.8968787 +0.2773041 0.4317928 0.8968787 +0.3384659 0.4317928 0.8968787 +0.3885728 0.4317928 0.8968787 +0.4317928 0.4317928 0.8968787 +0.470214 0.4317928 0.8968787 +0.5050551 0.4317928 0.8968787 +0.5370987 0.4317928 0.8968787 +0.5668815 0.4317928 0.8968787 +0.5947903 0.4317928 0.8968787 +0.6211144 0.4317928 0.8968787 +0.6460766 0.4317928 0.8968787 +0.6698526 0.4317928 0.8968787 +0.6925839 0.4317928 0.8968787 +0.7143866 0.4317928 0.8968787 +0.7353569 0.4317928 0.8968787 +0.7555758 0.4317928 0.8968787 +0.7751122 0.4317928 0.8968787 +0.7940252 0.4317928 0.8968787 +0.8123661 0.4317928 0.8968787 +0.8301795 0.4317928 0.8968787 +0.8475045 0.4317928 0.8968787 +0.8643761 0.4317928 0.8968787 +0.880825 0.4317928 0.8968787 +0.8968787 0.4317928 0.8968787 +0.9125621 0.4317928 0.8968787 +0.9278974 0.4317928 0.8968787 +0.9429048 0.4317928 0.8968787 +0.9576028 0.4317928 0.8968787 +0.9720079 0.4317928 0.8968787 +0.9861357 0.4317928 0.8968787 +1 0.4317928 0.8968787 +0 0.470214 0.8968787 +0.1939468 0.470214 0.8968787 +0.2773041 0.470214 0.8968787 +0.3384659 0.470214 0.8968787 +0.3885728 0.470214 0.8968787 +0.4317928 0.470214 0.8968787 +0.470214 0.470214 0.8968787 +0.5050551 0.470214 0.8968787 +0.5370987 0.470214 0.8968787 +0.5668815 0.470214 0.8968787 +0.5947903 0.470214 0.8968787 +0.6211144 0.470214 0.8968787 +0.6460766 0.470214 0.8968787 +0.6698526 0.470214 0.8968787 +0.6925839 0.470214 0.8968787 +0.7143866 0.470214 0.8968787 +0.7353569 0.470214 0.8968787 +0.7555758 0.470214 0.8968787 +0.7751122 0.470214 0.8968787 +0.7940252 0.470214 0.8968787 +0.8123661 0.470214 0.8968787 +0.8301795 0.470214 0.8968787 +0.8475045 0.470214 0.8968787 +0.8643761 0.470214 0.8968787 +0.880825 0.470214 0.8968787 +0.8968787 0.470214 0.8968787 +0.9125621 0.470214 0.8968787 +0.9278974 0.470214 0.8968787 +0.9429048 0.470214 0.8968787 +0.9576028 0.470214 0.8968787 +0.9720079 0.470214 0.8968787 +0.9861357 0.470214 0.8968787 +1 0.470214 0.8968787 +0 0.5050551 0.8968787 +0.1939468 0.5050551 0.8968787 +0.2773041 0.5050551 0.8968787 +0.3384659 0.5050551 0.8968787 +0.3885728 0.5050551 0.8968787 +0.4317928 0.5050551 0.8968787 +0.470214 0.5050551 0.8968787 +0.5050551 0.5050551 0.8968787 +0.5370987 0.5050551 0.8968787 +0.5668815 0.5050551 0.8968787 +0.5947903 0.5050551 0.8968787 +0.6211144 0.5050551 0.8968787 +0.6460766 0.5050551 0.8968787 +0.6698526 0.5050551 0.8968787 +0.6925839 0.5050551 0.8968787 +0.7143866 0.5050551 0.8968787 +0.7353569 0.5050551 0.8968787 +0.7555758 0.5050551 0.8968787 +0.7751122 0.5050551 0.8968787 +0.7940252 0.5050551 0.8968787 +0.8123661 0.5050551 0.8968787 +0.8301795 0.5050551 0.8968787 +0.8475045 0.5050551 0.8968787 +0.8643761 0.5050551 0.8968787 +0.880825 0.5050551 0.8968787 +0.8968787 0.5050551 0.8968787 +0.9125621 0.5050551 0.8968787 +0.9278974 0.5050551 0.8968787 +0.9429048 0.5050551 0.8968787 +0.9576028 0.5050551 0.8968787 +0.9720079 0.5050551 0.8968787 +0.9861357 0.5050551 0.8968787 +1 0.5050551 0.8968787 +0 0.5370987 0.8968787 +0.1939468 0.5370987 0.8968787 +0.2773041 0.5370987 0.8968787 +0.3384659 0.5370987 0.8968787 +0.3885728 0.5370987 0.8968787 +0.4317928 0.5370987 0.8968787 +0.470214 0.5370987 0.8968787 +0.5050551 0.5370987 0.8968787 +0.5370987 0.5370987 0.8968787 +0.5668815 0.5370987 0.8968787 +0.5947903 0.5370987 0.8968787 +0.6211144 0.5370987 0.8968787 +0.6460766 0.5370987 0.8968787 +0.6698526 0.5370987 0.8968787 +0.6925839 0.5370987 0.8968787 +0.7143866 0.5370987 0.8968787 +0.7353569 0.5370987 0.8968787 +0.7555758 0.5370987 0.8968787 +0.7751122 0.5370987 0.8968787 +0.7940252 0.5370987 0.8968787 +0.8123661 0.5370987 0.8968787 +0.8301795 0.5370987 0.8968787 +0.8475045 0.5370987 0.8968787 +0.8643761 0.5370987 0.8968787 +0.880825 0.5370987 0.8968787 +0.8968787 0.5370987 0.8968787 +0.9125621 0.5370987 0.8968787 +0.9278974 0.5370987 0.8968787 +0.9429048 0.5370987 0.8968787 +0.9576028 0.5370987 0.8968787 +0.9720079 0.5370987 0.8968787 +0.9861357 0.5370987 0.8968787 +1 0.5370987 0.8968787 +0 0.5668815 0.8968787 +0.1939468 0.5668815 0.8968787 +0.2773041 0.5668815 0.8968787 +0.3384659 0.5668815 0.8968787 +0.3885728 0.5668815 0.8968787 +0.4317928 0.5668815 0.8968787 +0.470214 0.5668815 0.8968787 +0.5050551 0.5668815 0.8968787 +0.5370987 0.5668815 0.8968787 +0.5668815 0.5668815 0.8968787 +0.5947903 0.5668815 0.8968787 +0.6211144 0.5668815 0.8968787 +0.6460766 0.5668815 0.8968787 +0.6698526 0.5668815 0.8968787 +0.6925839 0.5668815 0.8968787 +0.7143866 0.5668815 0.8968787 +0.7353569 0.5668815 0.8968787 +0.7555758 0.5668815 0.8968787 +0.7751122 0.5668815 0.8968787 +0.7940252 0.5668815 0.8968787 +0.8123661 0.5668815 0.8968787 +0.8301795 0.5668815 0.8968787 +0.8475045 0.5668815 0.8968787 +0.8643761 0.5668815 0.8968787 +0.880825 0.5668815 0.8968787 +0.8968787 0.5668815 0.8968787 +0.9125621 0.5668815 0.8968787 +0.9278974 0.5668815 0.8968787 +0.9429048 0.5668815 0.8968787 +0.9576028 0.5668815 0.8968787 +0.9720079 0.5668815 0.8968787 +0.9861357 0.5668815 0.8968787 +1 0.5668815 0.8968787 +0 0.5947903 0.8968787 +0.1939468 0.5947903 0.8968787 +0.2773041 0.5947903 0.8968787 +0.3384659 0.5947903 0.8968787 +0.3885728 0.5947903 0.8968787 +0.4317928 0.5947903 0.8968787 +0.470214 0.5947903 0.8968787 +0.5050551 0.5947903 0.8968787 +0.5370987 0.5947903 0.8968787 +0.5668815 0.5947903 0.8968787 +0.5947903 0.5947903 0.8968787 +0.6211144 0.5947903 0.8968787 +0.6460766 0.5947903 0.8968787 +0.6698526 0.5947903 0.8968787 +0.6925839 0.5947903 0.8968787 +0.7143866 0.5947903 0.8968787 +0.7353569 0.5947903 0.8968787 +0.7555758 0.5947903 0.8968787 +0.7751122 0.5947903 0.8968787 +0.7940252 0.5947903 0.8968787 +0.8123661 0.5947903 0.8968787 +0.8301795 0.5947903 0.8968787 +0.8475045 0.5947903 0.8968787 +0.8643761 0.5947903 0.8968787 +0.880825 0.5947903 0.8968787 +0.8968787 0.5947903 0.8968787 +0.9125621 0.5947903 0.8968787 +0.9278974 0.5947903 0.8968787 +0.9429048 0.5947903 0.8968787 +0.9576028 0.5947903 0.8968787 +0.9720079 0.5947903 0.8968787 +0.9861357 0.5947903 0.8968787 +1 0.5947903 0.8968787 +0 0.6211144 0.8968787 +0.1939468 0.6211144 0.8968787 +0.2773041 0.6211144 0.8968787 +0.3384659 0.6211144 0.8968787 +0.3885728 0.6211144 0.8968787 +0.4317928 0.6211144 0.8968787 +0.470214 0.6211144 0.8968787 +0.5050551 0.6211144 0.8968787 +0.5370987 0.6211144 0.8968787 +0.5668815 0.6211144 0.8968787 +0.5947903 0.6211144 0.8968787 +0.6211144 0.6211144 0.8968787 +0.6460766 0.6211144 0.8968787 +0.6698526 0.6211144 0.8968787 +0.6925839 0.6211144 0.8968787 +0.7143866 0.6211144 0.8968787 +0.7353569 0.6211144 0.8968787 +0.7555758 0.6211144 0.8968787 +0.7751122 0.6211144 0.8968787 +0.7940252 0.6211144 0.8968787 +0.8123661 0.6211144 0.8968787 +0.8301795 0.6211144 0.8968787 +0.8475045 0.6211144 0.8968787 +0.8643761 0.6211144 0.8968787 +0.880825 0.6211144 0.8968787 +0.8968787 0.6211144 0.8968787 +0.9125621 0.6211144 0.8968787 +0.9278974 0.6211144 0.8968787 +0.9429048 0.6211144 0.8968787 +0.9576028 0.6211144 0.8968787 +0.9720079 0.6211144 0.8968787 +0.9861357 0.6211144 0.8968787 +1 0.6211144 0.8968787 +0 0.6460766 0.8968787 +0.1939468 0.6460766 0.8968787 +0.2773041 0.6460766 0.8968787 +0.3384659 0.6460766 0.8968787 +0.3885728 0.6460766 0.8968787 +0.4317928 0.6460766 0.8968787 +0.470214 0.6460766 0.8968787 +0.5050551 0.6460766 0.8968787 +0.5370987 0.6460766 0.8968787 +0.5668815 0.6460766 0.8968787 +0.5947903 0.6460766 0.8968787 +0.6211144 0.6460766 0.8968787 +0.6460766 0.6460766 0.8968787 +0.6698526 0.6460766 0.8968787 +0.6925839 0.6460766 0.8968787 +0.7143866 0.6460766 0.8968787 +0.7353569 0.6460766 0.8968787 +0.7555758 0.6460766 0.8968787 +0.7751122 0.6460766 0.8968787 +0.7940252 0.6460766 0.8968787 +0.8123661 0.6460766 0.8968787 +0.8301795 0.6460766 0.8968787 +0.8475045 0.6460766 0.8968787 +0.8643761 0.6460766 0.8968787 +0.880825 0.6460766 0.8968787 +0.8968787 0.6460766 0.8968787 +0.9125621 0.6460766 0.8968787 +0.9278974 0.6460766 0.8968787 +0.9429048 0.6460766 0.8968787 +0.9576028 0.6460766 0.8968787 +0.9720079 0.6460766 0.8968787 +0.9861357 0.6460766 0.8968787 +1 0.6460766 0.8968787 +0 0.6698526 0.8968787 +0.1939468 0.6698526 0.8968787 +0.2773041 0.6698526 0.8968787 +0.3384659 0.6698526 0.8968787 +0.3885728 0.6698526 0.8968787 +0.4317928 0.6698526 0.8968787 +0.470214 0.6698526 0.8968787 +0.5050551 0.6698526 0.8968787 +0.5370987 0.6698526 0.8968787 +0.5668815 0.6698526 0.8968787 +0.5947903 0.6698526 0.8968787 +0.6211144 0.6698526 0.8968787 +0.6460766 0.6698526 0.8968787 +0.6698526 0.6698526 0.8968787 +0.6925839 0.6698526 0.8968787 +0.7143866 0.6698526 0.8968787 +0.7353569 0.6698526 0.8968787 +0.7555758 0.6698526 0.8968787 +0.7751122 0.6698526 0.8968787 +0.7940252 0.6698526 0.8968787 +0.8123661 0.6698526 0.8968787 +0.8301795 0.6698526 0.8968787 +0.8475045 0.6698526 0.8968787 +0.8643761 0.6698526 0.8968787 +0.880825 0.6698526 0.8968787 +0.8968787 0.6698526 0.8968787 +0.9125621 0.6698526 0.8968787 +0.9278974 0.6698526 0.8968787 +0.9429048 0.6698526 0.8968787 +0.9576028 0.6698526 0.8968787 +0.9720079 0.6698526 0.8968787 +0.9861357 0.6698526 0.8968787 +1 0.6698526 0.8968787 +0 0.6925839 0.8968787 +0.1939468 0.6925839 0.8968787 +0.2773041 0.6925839 0.8968787 +0.3384659 0.6925839 0.8968787 +0.3885728 0.6925839 0.8968787 +0.4317928 0.6925839 0.8968787 +0.470214 0.6925839 0.8968787 +0.5050551 0.6925839 0.8968787 +0.5370987 0.6925839 0.8968787 +0.5668815 0.6925839 0.8968787 +0.5947903 0.6925839 0.8968787 +0.6211144 0.6925839 0.8968787 +0.6460766 0.6925839 0.8968787 +0.6698526 0.6925839 0.8968787 +0.6925839 0.6925839 0.8968787 +0.7143866 0.6925839 0.8968787 +0.7353569 0.6925839 0.8968787 +0.7555758 0.6925839 0.8968787 +0.7751122 0.6925839 0.8968787 +0.7940252 0.6925839 0.8968787 +0.8123661 0.6925839 0.8968787 +0.8301795 0.6925839 0.8968787 +0.8475045 0.6925839 0.8968787 +0.8643761 0.6925839 0.8968787 +0.880825 0.6925839 0.8968787 +0.8968787 0.6925839 0.8968787 +0.9125621 0.6925839 0.8968787 +0.9278974 0.6925839 0.8968787 +0.9429048 0.6925839 0.8968787 +0.9576028 0.6925839 0.8968787 +0.9720079 0.6925839 0.8968787 +0.9861357 0.6925839 0.8968787 +1 0.6925839 0.8968787 +0 0.7143866 0.8968787 +0.1939468 0.7143866 0.8968787 +0.2773041 0.7143866 0.8968787 +0.3384659 0.7143866 0.8968787 +0.3885728 0.7143866 0.8968787 +0.4317928 0.7143866 0.8968787 +0.470214 0.7143866 0.8968787 +0.5050551 0.7143866 0.8968787 +0.5370987 0.7143866 0.8968787 +0.5668815 0.7143866 0.8968787 +0.5947903 0.7143866 0.8968787 +0.6211144 0.7143866 0.8968787 +0.6460766 0.7143866 0.8968787 +0.6698526 0.7143866 0.8968787 +0.6925839 0.7143866 0.8968787 +0.7143866 0.7143866 0.8968787 +0.7353569 0.7143866 0.8968787 +0.7555758 0.7143866 0.8968787 +0.7751122 0.7143866 0.8968787 +0.7940252 0.7143866 0.8968787 +0.8123661 0.7143866 0.8968787 +0.8301795 0.7143866 0.8968787 +0.8475045 0.7143866 0.8968787 +0.8643761 0.7143866 0.8968787 +0.880825 0.7143866 0.8968787 +0.8968787 0.7143866 0.8968787 +0.9125621 0.7143866 0.8968787 +0.9278974 0.7143866 0.8968787 +0.9429048 0.7143866 0.8968787 +0.9576028 0.7143866 0.8968787 +0.9720079 0.7143866 0.8968787 +0.9861357 0.7143866 0.8968787 +1 0.7143866 0.8968787 +0 0.7353569 0.8968787 +0.1939468 0.7353569 0.8968787 +0.2773041 0.7353569 0.8968787 +0.3384659 0.7353569 0.8968787 +0.3885728 0.7353569 0.8968787 +0.4317928 0.7353569 0.8968787 +0.470214 0.7353569 0.8968787 +0.5050551 0.7353569 0.8968787 +0.5370987 0.7353569 0.8968787 +0.5668815 0.7353569 0.8968787 +0.5947903 0.7353569 0.8968787 +0.6211144 0.7353569 0.8968787 +0.6460766 0.7353569 0.8968787 +0.6698526 0.7353569 0.8968787 +0.6925839 0.7353569 0.8968787 +0.7143866 0.7353569 0.8968787 +0.7353569 0.7353569 0.8968787 +0.7555758 0.7353569 0.8968787 +0.7751122 0.7353569 0.8968787 +0.7940252 0.7353569 0.8968787 +0.8123661 0.7353569 0.8968787 +0.8301795 0.7353569 0.8968787 +0.8475045 0.7353569 0.8968787 +0.8643761 0.7353569 0.8968787 +0.880825 0.7353569 0.8968787 +0.8968787 0.7353569 0.8968787 +0.9125621 0.7353569 0.8968787 +0.9278974 0.7353569 0.8968787 +0.9429048 0.7353569 0.8968787 +0.9576028 0.7353569 0.8968787 +0.9720079 0.7353569 0.8968787 +0.9861357 0.7353569 0.8968787 +1 0.7353569 0.8968787 +0 0.7555758 0.8968787 +0.1939468 0.7555758 0.8968787 +0.2773041 0.7555758 0.8968787 +0.3384659 0.7555758 0.8968787 +0.3885728 0.7555758 0.8968787 +0.4317928 0.7555758 0.8968787 +0.470214 0.7555758 0.8968787 +0.5050551 0.7555758 0.8968787 +0.5370987 0.7555758 0.8968787 +0.5668815 0.7555758 0.8968787 +0.5947903 0.7555758 0.8968787 +0.6211144 0.7555758 0.8968787 +0.6460766 0.7555758 0.8968787 +0.6698526 0.7555758 0.8968787 +0.6925839 0.7555758 0.8968787 +0.7143866 0.7555758 0.8968787 +0.7353569 0.7555758 0.8968787 +0.7555758 0.7555758 0.8968787 +0.7751122 0.7555758 0.8968787 +0.7940252 0.7555758 0.8968787 +0.8123661 0.7555758 0.8968787 +0.8301795 0.7555758 0.8968787 +0.8475045 0.7555758 0.8968787 +0.8643761 0.7555758 0.8968787 +0.880825 0.7555758 0.8968787 +0.8968787 0.7555758 0.8968787 +0.9125621 0.7555758 0.8968787 +0.9278974 0.7555758 0.8968787 +0.9429048 0.7555758 0.8968787 +0.9576028 0.7555758 0.8968787 +0.9720079 0.7555758 0.8968787 +0.9861357 0.7555758 0.8968787 +1 0.7555758 0.8968787 +0 0.7751122 0.8968787 +0.1939468 0.7751122 0.8968787 +0.2773041 0.7751122 0.8968787 +0.3384659 0.7751122 0.8968787 +0.3885728 0.7751122 0.8968787 +0.4317928 0.7751122 0.8968787 +0.470214 0.7751122 0.8968787 +0.5050551 0.7751122 0.8968787 +0.5370987 0.7751122 0.8968787 +0.5668815 0.7751122 0.8968787 +0.5947903 0.7751122 0.8968787 +0.6211144 0.7751122 0.8968787 +0.6460766 0.7751122 0.8968787 +0.6698526 0.7751122 0.8968787 +0.6925839 0.7751122 0.8968787 +0.7143866 0.7751122 0.8968787 +0.7353569 0.7751122 0.8968787 +0.7555758 0.7751122 0.8968787 +0.7751122 0.7751122 0.8968787 +0.7940252 0.7751122 0.8968787 +0.8123661 0.7751122 0.8968787 +0.8301795 0.7751122 0.8968787 +0.8475045 0.7751122 0.8968787 +0.8643761 0.7751122 0.8968787 +0.880825 0.7751122 0.8968787 +0.8968787 0.7751122 0.8968787 +0.9125621 0.7751122 0.8968787 +0.9278974 0.7751122 0.8968787 +0.9429048 0.7751122 0.8968787 +0.9576028 0.7751122 0.8968787 +0.9720079 0.7751122 0.8968787 +0.9861357 0.7751122 0.8968787 +1 0.7751122 0.8968787 +0 0.7940252 0.8968787 +0.1939468 0.7940252 0.8968787 +0.2773041 0.7940252 0.8968787 +0.3384659 0.7940252 0.8968787 +0.3885728 0.7940252 0.8968787 +0.4317928 0.7940252 0.8968787 +0.470214 0.7940252 0.8968787 +0.5050551 0.7940252 0.8968787 +0.5370987 0.7940252 0.8968787 +0.5668815 0.7940252 0.8968787 +0.5947903 0.7940252 0.8968787 +0.6211144 0.7940252 0.8968787 +0.6460766 0.7940252 0.8968787 +0.6698526 0.7940252 0.8968787 +0.6925839 0.7940252 0.8968787 +0.7143866 0.7940252 0.8968787 +0.7353569 0.7940252 0.8968787 +0.7555758 0.7940252 0.8968787 +0.7751122 0.7940252 0.8968787 +0.7940252 0.7940252 0.8968787 +0.8123661 0.7940252 0.8968787 +0.8301795 0.7940252 0.8968787 +0.8475045 0.7940252 0.8968787 +0.8643761 0.7940252 0.8968787 +0.880825 0.7940252 0.8968787 +0.8968787 0.7940252 0.8968787 +0.9125621 0.7940252 0.8968787 +0.9278974 0.7940252 0.8968787 +0.9429048 0.7940252 0.8968787 +0.9576028 0.7940252 0.8968787 +0.9720079 0.7940252 0.8968787 +0.9861357 0.7940252 0.8968787 +1 0.7940252 0.8968787 +0 0.8123661 0.8968787 +0.1939468 0.8123661 0.8968787 +0.2773041 0.8123661 0.8968787 +0.3384659 0.8123661 0.8968787 +0.3885728 0.8123661 0.8968787 +0.4317928 0.8123661 0.8968787 +0.470214 0.8123661 0.8968787 +0.5050551 0.8123661 0.8968787 +0.5370987 0.8123661 0.8968787 +0.5668815 0.8123661 0.8968787 +0.5947903 0.8123661 0.8968787 +0.6211144 0.8123661 0.8968787 +0.6460766 0.8123661 0.8968787 +0.6698526 0.8123661 0.8968787 +0.6925839 0.8123661 0.8968787 +0.7143866 0.8123661 0.8968787 +0.7353569 0.8123661 0.8968787 +0.7555758 0.8123661 0.8968787 +0.7751122 0.8123661 0.8968787 +0.7940252 0.8123661 0.8968787 +0.8123661 0.8123661 0.8968787 +0.8301795 0.8123661 0.8968787 +0.8475045 0.8123661 0.8968787 +0.8643761 0.8123661 0.8968787 +0.880825 0.8123661 0.8968787 +0.8968787 0.8123661 0.8968787 +0.9125621 0.8123661 0.8968787 +0.9278974 0.8123661 0.8968787 +0.9429048 0.8123661 0.8968787 +0.9576028 0.8123661 0.8968787 +0.9720079 0.8123661 0.8968787 +0.9861357 0.8123661 0.8968787 +1 0.8123661 0.8968787 +0 0.8301795 0.8968787 +0.1939468 0.8301795 0.8968787 +0.2773041 0.8301795 0.8968787 +0.3384659 0.8301795 0.8968787 +0.3885728 0.8301795 0.8968787 +0.4317928 0.8301795 0.8968787 +0.470214 0.8301795 0.8968787 +0.5050551 0.8301795 0.8968787 +0.5370987 0.8301795 0.8968787 +0.5668815 0.8301795 0.8968787 +0.5947903 0.8301795 0.8968787 +0.6211144 0.8301795 0.8968787 +0.6460766 0.8301795 0.8968787 +0.6698526 0.8301795 0.8968787 +0.6925839 0.8301795 0.8968787 +0.7143866 0.8301795 0.8968787 +0.7353569 0.8301795 0.8968787 +0.7555758 0.8301795 0.8968787 +0.7751122 0.8301795 0.8968787 +0.7940252 0.8301795 0.8968787 +0.8123661 0.8301795 0.8968787 +0.8301795 0.8301795 0.8968787 +0.8475045 0.8301795 0.8968787 +0.8643761 0.8301795 0.8968787 +0.880825 0.8301795 0.8968787 +0.8968787 0.8301795 0.8968787 +0.9125621 0.8301795 0.8968787 +0.9278974 0.8301795 0.8968787 +0.9429048 0.8301795 0.8968787 +0.9576028 0.8301795 0.8968787 +0.9720079 0.8301795 0.8968787 +0.9861357 0.8301795 0.8968787 +1 0.8301795 0.8968787 +0 0.8475045 0.8968787 +0.1939468 0.8475045 0.8968787 +0.2773041 0.8475045 0.8968787 +0.3384659 0.8475045 0.8968787 +0.3885728 0.8475045 0.8968787 +0.4317928 0.8475045 0.8968787 +0.470214 0.8475045 0.8968787 +0.5050551 0.8475045 0.8968787 +0.5370987 0.8475045 0.8968787 +0.5668815 0.8475045 0.8968787 +0.5947903 0.8475045 0.8968787 +0.6211144 0.8475045 0.8968787 +0.6460766 0.8475045 0.8968787 +0.6698526 0.8475045 0.8968787 +0.6925839 0.8475045 0.8968787 +0.7143866 0.8475045 0.8968787 +0.7353569 0.8475045 0.8968787 +0.7555758 0.8475045 0.8968787 +0.7751122 0.8475045 0.8968787 +0.7940252 0.8475045 0.8968787 +0.8123661 0.8475045 0.8968787 +0.8301795 0.8475045 0.8968787 +0.8475045 0.8475045 0.8968787 +0.8643761 0.8475045 0.8968787 +0.880825 0.8475045 0.8968787 +0.8968787 0.8475045 0.8968787 +0.9125621 0.8475045 0.8968787 +0.9278974 0.8475045 0.8968787 +0.9429048 0.8475045 0.8968787 +0.9576028 0.8475045 0.8968787 +0.9720079 0.8475045 0.8968787 +0.9861357 0.8475045 0.8968787 +1 0.8475045 0.8968787 +0 0.8643761 0.8968787 +0.1939468 0.8643761 0.8968787 +0.2773041 0.8643761 0.8968787 +0.3384659 0.8643761 0.8968787 +0.3885728 0.8643761 0.8968787 +0.4317928 0.8643761 0.8968787 +0.470214 0.8643761 0.8968787 +0.5050551 0.8643761 0.8968787 +0.5370987 0.8643761 0.8968787 +0.5668815 0.8643761 0.8968787 +0.5947903 0.8643761 0.8968787 +0.6211144 0.8643761 0.8968787 +0.6460766 0.8643761 0.8968787 +0.6698526 0.8643761 0.8968787 +0.6925839 0.8643761 0.8968787 +0.7143866 0.8643761 0.8968787 +0.7353569 0.8643761 0.8968787 +0.7555758 0.8643761 0.8968787 +0.7751122 0.8643761 0.8968787 +0.7940252 0.8643761 0.8968787 +0.8123661 0.8643761 0.8968787 +0.8301795 0.8643761 0.8968787 +0.8475045 0.8643761 0.8968787 +0.8643761 0.8643761 0.8968787 +0.880825 0.8643761 0.8968787 +0.8968787 0.8643761 0.8968787 +0.9125621 0.8643761 0.8968787 +0.9278974 0.8643761 0.8968787 +0.9429048 0.8643761 0.8968787 +0.9576028 0.8643761 0.8968787 +0.9720079 0.8643761 0.8968787 +0.9861357 0.8643761 0.8968787 +1 0.8643761 0.8968787 +0 0.880825 0.8968787 +0.1939468 0.880825 0.8968787 +0.2773041 0.880825 0.8968787 +0.3384659 0.880825 0.8968787 +0.3885728 0.880825 0.8968787 +0.4317928 0.880825 0.8968787 +0.470214 0.880825 0.8968787 +0.5050551 0.880825 0.8968787 +0.5370987 0.880825 0.8968787 +0.5668815 0.880825 0.8968787 +0.5947903 0.880825 0.8968787 +0.6211144 0.880825 0.8968787 +0.6460766 0.880825 0.8968787 +0.6698526 0.880825 0.8968787 +0.6925839 0.880825 0.8968787 +0.7143866 0.880825 0.8968787 +0.7353569 0.880825 0.8968787 +0.7555758 0.880825 0.8968787 +0.7751122 0.880825 0.8968787 +0.7940252 0.880825 0.8968787 +0.8123661 0.880825 0.8968787 +0.8301795 0.880825 0.8968787 +0.8475045 0.880825 0.8968787 +0.8643761 0.880825 0.8968787 +0.880825 0.880825 0.8968787 +0.8968787 0.880825 0.8968787 +0.9125621 0.880825 0.8968787 +0.9278974 0.880825 0.8968787 +0.9429048 0.880825 0.8968787 +0.9576028 0.880825 0.8968787 +0.9720079 0.880825 0.8968787 +0.9861357 0.880825 0.8968787 +1 0.880825 0.8968787 +0 0.8968787 0.8968787 +0.1939468 0.8968787 0.8968787 +0.2773041 0.8968787 0.8968787 +0.3384659 0.8968787 0.8968787 +0.3885728 0.8968787 0.8968787 +0.4317928 0.8968787 0.8968787 +0.470214 0.8968787 0.8968787 +0.5050551 0.8968787 0.8968787 +0.5370987 0.8968787 0.8968787 +0.5668815 0.8968787 0.8968787 +0.5947903 0.8968787 0.8968787 +0.6211144 0.8968787 0.8968787 +0.6460766 0.8968787 0.8968787 +0.6698526 0.8968787 0.8968787 +0.6925839 0.8968787 0.8968787 +0.7143866 0.8968787 0.8968787 +0.7353569 0.8968787 0.8968787 +0.7555758 0.8968787 0.8968787 +0.7751122 0.8968787 0.8968787 +0.7940252 0.8968787 0.8968787 +0.8123661 0.8968787 0.8968787 +0.8301795 0.8968787 0.8968787 +0.8475045 0.8968787 0.8968787 +0.8643761 0.8968787 0.8968787 +0.880825 0.8968787 0.8968787 +0.8968787 0.8968787 0.8968787 +0.9125621 0.8968787 0.8968787 +0.9278974 0.8968787 0.8968787 +0.9429048 0.8968787 0.8968787 +0.9576028 0.8968787 0.8968787 +0.9720079 0.8968787 0.8968787 +0.9861357 0.8968787 0.8968787 +1 0.8968787 0.8968787 +0 0.9125621 0.8968787 +0.1939468 0.9125621 0.8968787 +0.2773041 0.9125621 0.8968787 +0.3384659 0.9125621 0.8968787 +0.3885728 0.9125621 0.8968787 +0.4317928 0.9125621 0.8968787 +0.470214 0.9125621 0.8968787 +0.5050551 0.9125621 0.8968787 +0.5370987 0.9125621 0.8968787 +0.5668815 0.9125621 0.8968787 +0.5947903 0.9125621 0.8968787 +0.6211144 0.9125621 0.8968787 +0.6460766 0.9125621 0.8968787 +0.6698526 0.9125621 0.8968787 +0.6925839 0.9125621 0.8968787 +0.7143866 0.9125621 0.8968787 +0.7353569 0.9125621 0.8968787 +0.7555758 0.9125621 0.8968787 +0.7751122 0.9125621 0.8968787 +0.7940252 0.9125621 0.8968787 +0.8123661 0.9125621 0.8968787 +0.8301795 0.9125621 0.8968787 +0.8475045 0.9125621 0.8968787 +0.8643761 0.9125621 0.8968787 +0.880825 0.9125621 0.8968787 +0.8968787 0.9125621 0.8968787 +0.9125621 0.9125621 0.8968787 +0.9278974 0.9125621 0.8968787 +0.9429048 0.9125621 0.8968787 +0.9576028 0.9125621 0.8968787 +0.9720079 0.9125621 0.8968787 +0.9861357 0.9125621 0.8968787 +1 0.9125621 0.8968787 +0 0.9278974 0.8968787 +0.1939468 0.9278974 0.8968787 +0.2773041 0.9278974 0.8968787 +0.3384659 0.9278974 0.8968787 +0.3885728 0.9278974 0.8968787 +0.4317928 0.9278974 0.8968787 +0.470214 0.9278974 0.8968787 +0.5050551 0.9278974 0.8968787 +0.5370987 0.9278974 0.8968787 +0.5668815 0.9278974 0.8968787 +0.5947903 0.9278974 0.8968787 +0.6211144 0.9278974 0.8968787 +0.6460766 0.9278974 0.8968787 +0.6698526 0.9278974 0.8968787 +0.6925839 0.9278974 0.8968787 +0.7143866 0.9278974 0.8968787 +0.7353569 0.9278974 0.8968787 +0.7555758 0.9278974 0.8968787 +0.7751122 0.9278974 0.8968787 +0.7940252 0.9278974 0.8968787 +0.8123661 0.9278974 0.8968787 +0.8301795 0.9278974 0.8968787 +0.8475045 0.9278974 0.8968787 +0.8643761 0.9278974 0.8968787 +0.880825 0.9278974 0.8968787 +0.8968787 0.9278974 0.8968787 +0.9125621 0.9278974 0.8968787 +0.9278974 0.9278974 0.8968787 +0.9429048 0.9278974 0.8968787 +0.9576028 0.9278974 0.8968787 +0.9720079 0.9278974 0.8968787 +0.9861357 0.9278974 0.8968787 +1 0.9278974 0.8968787 +0 0.9429048 0.8968787 +0.1939468 0.9429048 0.8968787 +0.2773041 0.9429048 0.8968787 +0.3384659 0.9429048 0.8968787 +0.3885728 0.9429048 0.8968787 +0.4317928 0.9429048 0.8968787 +0.470214 0.9429048 0.8968787 +0.5050551 0.9429048 0.8968787 +0.5370987 0.9429048 0.8968787 +0.5668815 0.9429048 0.8968787 +0.5947903 0.9429048 0.8968787 +0.6211144 0.9429048 0.8968787 +0.6460766 0.9429048 0.8968787 +0.6698526 0.9429048 0.8968787 +0.6925839 0.9429048 0.8968787 +0.7143866 0.9429048 0.8968787 +0.7353569 0.9429048 0.8968787 +0.7555758 0.9429048 0.8968787 +0.7751122 0.9429048 0.8968787 +0.7940252 0.9429048 0.8968787 +0.8123661 0.9429048 0.8968787 +0.8301795 0.9429048 0.8968787 +0.8475045 0.9429048 0.8968787 +0.8643761 0.9429048 0.8968787 +0.880825 0.9429048 0.8968787 +0.8968787 0.9429048 0.8968787 +0.9125621 0.9429048 0.8968787 +0.9278974 0.9429048 0.8968787 +0.9429048 0.9429048 0.8968787 +0.9576028 0.9429048 0.8968787 +0.9720079 0.9429048 0.8968787 +0.9861357 0.9429048 0.8968787 +1 0.9429048 0.8968787 +0 0.9576028 0.8968787 +0.1939468 0.9576028 0.8968787 +0.2773041 0.9576028 0.8968787 +0.3384659 0.9576028 0.8968787 +0.3885728 0.9576028 0.8968787 +0.4317928 0.9576028 0.8968787 +0.470214 0.9576028 0.8968787 +0.5050551 0.9576028 0.8968787 +0.5370987 0.9576028 0.8968787 +0.5668815 0.9576028 0.8968787 +0.5947903 0.9576028 0.8968787 +0.6211144 0.9576028 0.8968787 +0.6460766 0.9576028 0.8968787 +0.6698526 0.9576028 0.8968787 +0.6925839 0.9576028 0.8968787 +0.7143866 0.9576028 0.8968787 +0.7353569 0.9576028 0.8968787 +0.7555758 0.9576028 0.8968787 +0.7751122 0.9576028 0.8968787 +0.7940252 0.9576028 0.8968787 +0.8123661 0.9576028 0.8968787 +0.8301795 0.9576028 0.8968787 +0.8475045 0.9576028 0.8968787 +0.8643761 0.9576028 0.8968787 +0.880825 0.9576028 0.8968787 +0.8968787 0.9576028 0.8968787 +0.9125621 0.9576028 0.8968787 +0.9278974 0.9576028 0.8968787 +0.9429048 0.9576028 0.8968787 +0.9576028 0.9576028 0.8968787 +0.9720079 0.9576028 0.8968787 +0.9861357 0.9576028 0.8968787 +1 0.9576028 0.8968787 +0 0.9720079 0.8968787 +0.1939468 0.9720079 0.8968787 +0.2773041 0.9720079 0.8968787 +0.3384659 0.9720079 0.8968787 +0.3885728 0.9720079 0.8968787 +0.4317928 0.9720079 0.8968787 +0.470214 0.9720079 0.8968787 +0.5050551 0.9720079 0.8968787 +0.5370987 0.9720079 0.8968787 +0.5668815 0.9720079 0.8968787 +0.5947903 0.9720079 0.8968787 +0.6211144 0.9720079 0.8968787 +0.6460766 0.9720079 0.8968787 +0.6698526 0.9720079 0.8968787 +0.6925839 0.9720079 0.8968787 +0.7143866 0.9720079 0.8968787 +0.7353569 0.9720079 0.8968787 +0.7555758 0.9720079 0.8968787 +0.7751122 0.9720079 0.8968787 +0.7940252 0.9720079 0.8968787 +0.8123661 0.9720079 0.8968787 +0.8301795 0.9720079 0.8968787 +0.8475045 0.9720079 0.8968787 +0.8643761 0.9720079 0.8968787 +0.880825 0.9720079 0.8968787 +0.8968787 0.9720079 0.8968787 +0.9125621 0.9720079 0.8968787 +0.9278974 0.9720079 0.8968787 +0.9429048 0.9720079 0.8968787 +0.9576028 0.9720079 0.8968787 +0.9720079 0.9720079 0.8968787 +0.9861357 0.9720079 0.8968787 +1 0.9720079 0.8968787 +0 0.9861357 0.8968787 +0.1939468 0.9861357 0.8968787 +0.2773041 0.9861357 0.8968787 +0.3384659 0.9861357 0.8968787 +0.3885728 0.9861357 0.8968787 +0.4317928 0.9861357 0.8968787 +0.470214 0.9861357 0.8968787 +0.5050551 0.9861357 0.8968787 +0.5370987 0.9861357 0.8968787 +0.5668815 0.9861357 0.8968787 +0.5947903 0.9861357 0.8968787 +0.6211144 0.9861357 0.8968787 +0.6460766 0.9861357 0.8968787 +0.6698526 0.9861357 0.8968787 +0.6925839 0.9861357 0.8968787 +0.7143866 0.9861357 0.8968787 +0.7353569 0.9861357 0.8968787 +0.7555758 0.9861357 0.8968787 +0.7751122 0.9861357 0.8968787 +0.7940252 0.9861357 0.8968787 +0.8123661 0.9861357 0.8968787 +0.8301795 0.9861357 0.8968787 +0.8475045 0.9861357 0.8968787 +0.8643761 0.9861357 0.8968787 +0.880825 0.9861357 0.8968787 +0.8968787 0.9861357 0.8968787 +0.9125621 0.9861357 0.8968787 +0.9278974 0.9861357 0.8968787 +0.9429048 0.9861357 0.8968787 +0.9576028 0.9861357 0.8968787 +0.9720079 0.9861357 0.8968787 +0.9861357 0.9861357 0.8968787 +1 0.9861357 0.8968787 +0 1 0.8968787 +0.1939468 1 0.8968787 +0.2773041 1 0.8968787 +0.3384659 1 0.8968787 +0.3885728 1 0.8968787 +0.4317928 1 0.8968787 +0.470214 1 0.8968787 +0.5050551 1 0.8968787 +0.5370987 1 0.8968787 +0.5668815 1 0.8968787 +0.5947903 1 0.8968787 +0.6211144 1 0.8968787 +0.6460766 1 0.8968787 +0.6698526 1 0.8968787 +0.6925839 1 0.8968787 +0.7143866 1 0.8968787 +0.7353569 1 0.8968787 +0.7555758 1 0.8968787 +0.7751122 1 0.8968787 +0.7940252 1 0.8968787 +0.8123661 1 0.8968787 +0.8301795 1 0.8968787 +0.8475045 1 0.8968787 +0.8643761 1 0.8968787 +0.880825 1 0.8968787 +0.8968787 1 0.8968787 +0.9125621 1 0.8968787 +0.9278974 1 0.8968787 +0.9429048 1 0.8968787 +0.9576028 1 0.8968787 +0.9720079 1 0.8968787 +0.9861357 1 0.8968787 +1 1 0.8968787 +0 0 0.9125621 +0.1939468 0 0.9125621 +0.2773041 0 0.9125621 +0.3384659 0 0.9125621 +0.3885728 0 0.9125621 +0.4317928 0 0.9125621 +0.470214 0 0.9125621 +0.5050551 0 0.9125621 +0.5370987 0 0.9125621 +0.5668815 0 0.9125621 +0.5947903 0 0.9125621 +0.6211144 0 0.9125621 +0.6460766 0 0.9125621 +0.6698526 0 0.9125621 +0.6925839 0 0.9125621 +0.7143866 0 0.9125621 +0.7353569 0 0.9125621 +0.7555758 0 0.9125621 +0.7751122 0 0.9125621 +0.7940252 0 0.9125621 +0.8123661 0 0.9125621 +0.8301795 0 0.9125621 +0.8475045 0 0.9125621 +0.8643761 0 0.9125621 +0.880825 0 0.9125621 +0.8968787 0 0.9125621 +0.9125621 0 0.9125621 +0.9278974 0 0.9125621 +0.9429048 0 0.9125621 +0.9576028 0 0.9125621 +0.9720079 0 0.9125621 +0.9861357 0 0.9125621 +1 0 0.9125621 +0 0.1939468 0.9125621 +0.1939468 0.1939468 0.9125621 +0.2773041 0.1939468 0.9125621 +0.3384659 0.1939468 0.9125621 +0.3885728 0.1939468 0.9125621 +0.4317928 0.1939468 0.9125621 +0.470214 0.1939468 0.9125621 +0.5050551 0.1939468 0.9125621 +0.5370987 0.1939468 0.9125621 +0.5668815 0.1939468 0.9125621 +0.5947903 0.1939468 0.9125621 +0.6211144 0.1939468 0.9125621 +0.6460766 0.1939468 0.9125621 +0.6698526 0.1939468 0.9125621 +0.6925839 0.1939468 0.9125621 +0.7143866 0.1939468 0.9125621 +0.7353569 0.1939468 0.9125621 +0.7555758 0.1939468 0.9125621 +0.7751122 0.1939468 0.9125621 +0.7940252 0.1939468 0.9125621 +0.8123661 0.1939468 0.9125621 +0.8301795 0.1939468 0.9125621 +0.8475045 0.1939468 0.9125621 +0.8643761 0.1939468 0.9125621 +0.880825 0.1939468 0.9125621 +0.8968787 0.1939468 0.9125621 +0.9125621 0.1939468 0.9125621 +0.9278974 0.1939468 0.9125621 +0.9429048 0.1939468 0.9125621 +0.9576028 0.1939468 0.9125621 +0.9720079 0.1939468 0.9125621 +0.9861357 0.1939468 0.9125621 +1 0.1939468 0.9125621 +0 0.2773041 0.9125621 +0.1939468 0.2773041 0.9125621 +0.2773041 0.2773041 0.9125621 +0.3384659 0.2773041 0.9125621 +0.3885728 0.2773041 0.9125621 +0.4317928 0.2773041 0.9125621 +0.470214 0.2773041 0.9125621 +0.5050551 0.2773041 0.9125621 +0.5370987 0.2773041 0.9125621 +0.5668815 0.2773041 0.9125621 +0.5947903 0.2773041 0.9125621 +0.6211144 0.2773041 0.9125621 +0.6460766 0.2773041 0.9125621 +0.6698526 0.2773041 0.9125621 +0.6925839 0.2773041 0.9125621 +0.7143866 0.2773041 0.9125621 +0.7353569 0.2773041 0.9125621 +0.7555758 0.2773041 0.9125621 +0.7751122 0.2773041 0.9125621 +0.7940252 0.2773041 0.9125621 +0.8123661 0.2773041 0.9125621 +0.8301795 0.2773041 0.9125621 +0.8475045 0.2773041 0.9125621 +0.8643761 0.2773041 0.9125621 +0.880825 0.2773041 0.9125621 +0.8968787 0.2773041 0.9125621 +0.9125621 0.2773041 0.9125621 +0.9278974 0.2773041 0.9125621 +0.9429048 0.2773041 0.9125621 +0.9576028 0.2773041 0.9125621 +0.9720079 0.2773041 0.9125621 +0.9861357 0.2773041 0.9125621 +1 0.2773041 0.9125621 +0 0.3384659 0.9125621 +0.1939468 0.3384659 0.9125621 +0.2773041 0.3384659 0.9125621 +0.3384659 0.3384659 0.9125621 +0.3885728 0.3384659 0.9125621 +0.4317928 0.3384659 0.9125621 +0.470214 0.3384659 0.9125621 +0.5050551 0.3384659 0.9125621 +0.5370987 0.3384659 0.9125621 +0.5668815 0.3384659 0.9125621 +0.5947903 0.3384659 0.9125621 +0.6211144 0.3384659 0.9125621 +0.6460766 0.3384659 0.9125621 +0.6698526 0.3384659 0.9125621 +0.6925839 0.3384659 0.9125621 +0.7143866 0.3384659 0.9125621 +0.7353569 0.3384659 0.9125621 +0.7555758 0.3384659 0.9125621 +0.7751122 0.3384659 0.9125621 +0.7940252 0.3384659 0.9125621 +0.8123661 0.3384659 0.9125621 +0.8301795 0.3384659 0.9125621 +0.8475045 0.3384659 0.9125621 +0.8643761 0.3384659 0.9125621 +0.880825 0.3384659 0.9125621 +0.8968787 0.3384659 0.9125621 +0.9125621 0.3384659 0.9125621 +0.9278974 0.3384659 0.9125621 +0.9429048 0.3384659 0.9125621 +0.9576028 0.3384659 0.9125621 +0.9720079 0.3384659 0.9125621 +0.9861357 0.3384659 0.9125621 +1 0.3384659 0.9125621 +0 0.3885728 0.9125621 +0.1939468 0.3885728 0.9125621 +0.2773041 0.3885728 0.9125621 +0.3384659 0.3885728 0.9125621 +0.3885728 0.3885728 0.9125621 +0.4317928 0.3885728 0.9125621 +0.470214 0.3885728 0.9125621 +0.5050551 0.3885728 0.9125621 +0.5370987 0.3885728 0.9125621 +0.5668815 0.3885728 0.9125621 +0.5947903 0.3885728 0.9125621 +0.6211144 0.3885728 0.9125621 +0.6460766 0.3885728 0.9125621 +0.6698526 0.3885728 0.9125621 +0.6925839 0.3885728 0.9125621 +0.7143866 0.3885728 0.9125621 +0.7353569 0.3885728 0.9125621 +0.7555758 0.3885728 0.9125621 +0.7751122 0.3885728 0.9125621 +0.7940252 0.3885728 0.9125621 +0.8123661 0.3885728 0.9125621 +0.8301795 0.3885728 0.9125621 +0.8475045 0.3885728 0.9125621 +0.8643761 0.3885728 0.9125621 +0.880825 0.3885728 0.9125621 +0.8968787 0.3885728 0.9125621 +0.9125621 0.3885728 0.9125621 +0.9278974 0.3885728 0.9125621 +0.9429048 0.3885728 0.9125621 +0.9576028 0.3885728 0.9125621 +0.9720079 0.3885728 0.9125621 +0.9861357 0.3885728 0.9125621 +1 0.3885728 0.9125621 +0 0.4317928 0.9125621 +0.1939468 0.4317928 0.9125621 +0.2773041 0.4317928 0.9125621 +0.3384659 0.4317928 0.9125621 +0.3885728 0.4317928 0.9125621 +0.4317928 0.4317928 0.9125621 +0.470214 0.4317928 0.9125621 +0.5050551 0.4317928 0.9125621 +0.5370987 0.4317928 0.9125621 +0.5668815 0.4317928 0.9125621 +0.5947903 0.4317928 0.9125621 +0.6211144 0.4317928 0.9125621 +0.6460766 0.4317928 0.9125621 +0.6698526 0.4317928 0.9125621 +0.6925839 0.4317928 0.9125621 +0.7143866 0.4317928 0.9125621 +0.7353569 0.4317928 0.9125621 +0.7555758 0.4317928 0.9125621 +0.7751122 0.4317928 0.9125621 +0.7940252 0.4317928 0.9125621 +0.8123661 0.4317928 0.9125621 +0.8301795 0.4317928 0.9125621 +0.8475045 0.4317928 0.9125621 +0.8643761 0.4317928 0.9125621 +0.880825 0.4317928 0.9125621 +0.8968787 0.4317928 0.9125621 +0.9125621 0.4317928 0.9125621 +0.9278974 0.4317928 0.9125621 +0.9429048 0.4317928 0.9125621 +0.9576028 0.4317928 0.9125621 +0.9720079 0.4317928 0.9125621 +0.9861357 0.4317928 0.9125621 +1 0.4317928 0.9125621 +0 0.470214 0.9125621 +0.1939468 0.470214 0.9125621 +0.2773041 0.470214 0.9125621 +0.3384659 0.470214 0.9125621 +0.3885728 0.470214 0.9125621 +0.4317928 0.470214 0.9125621 +0.470214 0.470214 0.9125621 +0.5050551 0.470214 0.9125621 +0.5370987 0.470214 0.9125621 +0.5668815 0.470214 0.9125621 +0.5947903 0.470214 0.9125621 +0.6211144 0.470214 0.9125621 +0.6460766 0.470214 0.9125621 +0.6698526 0.470214 0.9125621 +0.6925839 0.470214 0.9125621 +0.7143866 0.470214 0.9125621 +0.7353569 0.470214 0.9125621 +0.7555758 0.470214 0.9125621 +0.7751122 0.470214 0.9125621 +0.7940252 0.470214 0.9125621 +0.8123661 0.470214 0.9125621 +0.8301795 0.470214 0.9125621 +0.8475045 0.470214 0.9125621 +0.8643761 0.470214 0.9125621 +0.880825 0.470214 0.9125621 +0.8968787 0.470214 0.9125621 +0.9125621 0.470214 0.9125621 +0.9278974 0.470214 0.9125621 +0.9429048 0.470214 0.9125621 +0.9576028 0.470214 0.9125621 +0.9720079 0.470214 0.9125621 +0.9861357 0.470214 0.9125621 +1 0.470214 0.9125621 +0 0.5050551 0.9125621 +0.1939468 0.5050551 0.9125621 +0.2773041 0.5050551 0.9125621 +0.3384659 0.5050551 0.9125621 +0.3885728 0.5050551 0.9125621 +0.4317928 0.5050551 0.9125621 +0.470214 0.5050551 0.9125621 +0.5050551 0.5050551 0.9125621 +0.5370987 0.5050551 0.9125621 +0.5668815 0.5050551 0.9125621 +0.5947903 0.5050551 0.9125621 +0.6211144 0.5050551 0.9125621 +0.6460766 0.5050551 0.9125621 +0.6698526 0.5050551 0.9125621 +0.6925839 0.5050551 0.9125621 +0.7143866 0.5050551 0.9125621 +0.7353569 0.5050551 0.9125621 +0.7555758 0.5050551 0.9125621 +0.7751122 0.5050551 0.9125621 +0.7940252 0.5050551 0.9125621 +0.8123661 0.5050551 0.9125621 +0.8301795 0.5050551 0.9125621 +0.8475045 0.5050551 0.9125621 +0.8643761 0.5050551 0.9125621 +0.880825 0.5050551 0.9125621 +0.8968787 0.5050551 0.9125621 +0.9125621 0.5050551 0.9125621 +0.9278974 0.5050551 0.9125621 +0.9429048 0.5050551 0.9125621 +0.9576028 0.5050551 0.9125621 +0.9720079 0.5050551 0.9125621 +0.9861357 0.5050551 0.9125621 +1 0.5050551 0.9125621 +0 0.5370987 0.9125621 +0.1939468 0.5370987 0.9125621 +0.2773041 0.5370987 0.9125621 +0.3384659 0.5370987 0.9125621 +0.3885728 0.5370987 0.9125621 +0.4317928 0.5370987 0.9125621 +0.470214 0.5370987 0.9125621 +0.5050551 0.5370987 0.9125621 +0.5370987 0.5370987 0.9125621 +0.5668815 0.5370987 0.9125621 +0.5947903 0.5370987 0.9125621 +0.6211144 0.5370987 0.9125621 +0.6460766 0.5370987 0.9125621 +0.6698526 0.5370987 0.9125621 +0.6925839 0.5370987 0.9125621 +0.7143866 0.5370987 0.9125621 +0.7353569 0.5370987 0.9125621 +0.7555758 0.5370987 0.9125621 +0.7751122 0.5370987 0.9125621 +0.7940252 0.5370987 0.9125621 +0.8123661 0.5370987 0.9125621 +0.8301795 0.5370987 0.9125621 +0.8475045 0.5370987 0.9125621 +0.8643761 0.5370987 0.9125621 +0.880825 0.5370987 0.9125621 +0.8968787 0.5370987 0.9125621 +0.9125621 0.5370987 0.9125621 +0.9278974 0.5370987 0.9125621 +0.9429048 0.5370987 0.9125621 +0.9576028 0.5370987 0.9125621 +0.9720079 0.5370987 0.9125621 +0.9861357 0.5370987 0.9125621 +1 0.5370987 0.9125621 +0 0.5668815 0.9125621 +0.1939468 0.5668815 0.9125621 +0.2773041 0.5668815 0.9125621 +0.3384659 0.5668815 0.9125621 +0.3885728 0.5668815 0.9125621 +0.4317928 0.5668815 0.9125621 +0.470214 0.5668815 0.9125621 +0.5050551 0.5668815 0.9125621 +0.5370987 0.5668815 0.9125621 +0.5668815 0.5668815 0.9125621 +0.5947903 0.5668815 0.9125621 +0.6211144 0.5668815 0.9125621 +0.6460766 0.5668815 0.9125621 +0.6698526 0.5668815 0.9125621 +0.6925839 0.5668815 0.9125621 +0.7143866 0.5668815 0.9125621 +0.7353569 0.5668815 0.9125621 +0.7555758 0.5668815 0.9125621 +0.7751122 0.5668815 0.9125621 +0.7940252 0.5668815 0.9125621 +0.8123661 0.5668815 0.9125621 +0.8301795 0.5668815 0.9125621 +0.8475045 0.5668815 0.9125621 +0.8643761 0.5668815 0.9125621 +0.880825 0.5668815 0.9125621 +0.8968787 0.5668815 0.9125621 +0.9125621 0.5668815 0.9125621 +0.9278974 0.5668815 0.9125621 +0.9429048 0.5668815 0.9125621 +0.9576028 0.5668815 0.9125621 +0.9720079 0.5668815 0.9125621 +0.9861357 0.5668815 0.9125621 +1 0.5668815 0.9125621 +0 0.5947903 0.9125621 +0.1939468 0.5947903 0.9125621 +0.2773041 0.5947903 0.9125621 +0.3384659 0.5947903 0.9125621 +0.3885728 0.5947903 0.9125621 +0.4317928 0.5947903 0.9125621 +0.470214 0.5947903 0.9125621 +0.5050551 0.5947903 0.9125621 +0.5370987 0.5947903 0.9125621 +0.5668815 0.5947903 0.9125621 +0.5947903 0.5947903 0.9125621 +0.6211144 0.5947903 0.9125621 +0.6460766 0.5947903 0.9125621 +0.6698526 0.5947903 0.9125621 +0.6925839 0.5947903 0.9125621 +0.7143866 0.5947903 0.9125621 +0.7353569 0.5947903 0.9125621 +0.7555758 0.5947903 0.9125621 +0.7751122 0.5947903 0.9125621 +0.7940252 0.5947903 0.9125621 +0.8123661 0.5947903 0.9125621 +0.8301795 0.5947903 0.9125621 +0.8475045 0.5947903 0.9125621 +0.8643761 0.5947903 0.9125621 +0.880825 0.5947903 0.9125621 +0.8968787 0.5947903 0.9125621 +0.9125621 0.5947903 0.9125621 +0.9278974 0.5947903 0.9125621 +0.9429048 0.5947903 0.9125621 +0.9576028 0.5947903 0.9125621 +0.9720079 0.5947903 0.9125621 +0.9861357 0.5947903 0.9125621 +1 0.5947903 0.9125621 +0 0.6211144 0.9125621 +0.1939468 0.6211144 0.9125621 +0.2773041 0.6211144 0.9125621 +0.3384659 0.6211144 0.9125621 +0.3885728 0.6211144 0.9125621 +0.4317928 0.6211144 0.9125621 +0.470214 0.6211144 0.9125621 +0.5050551 0.6211144 0.9125621 +0.5370987 0.6211144 0.9125621 +0.5668815 0.6211144 0.9125621 +0.5947903 0.6211144 0.9125621 +0.6211144 0.6211144 0.9125621 +0.6460766 0.6211144 0.9125621 +0.6698526 0.6211144 0.9125621 +0.6925839 0.6211144 0.9125621 +0.7143866 0.6211144 0.9125621 +0.7353569 0.6211144 0.9125621 +0.7555758 0.6211144 0.9125621 +0.7751122 0.6211144 0.9125621 +0.7940252 0.6211144 0.9125621 +0.8123661 0.6211144 0.9125621 +0.8301795 0.6211144 0.9125621 +0.8475045 0.6211144 0.9125621 +0.8643761 0.6211144 0.9125621 +0.880825 0.6211144 0.9125621 +0.8968787 0.6211144 0.9125621 +0.9125621 0.6211144 0.9125621 +0.9278974 0.6211144 0.9125621 +0.9429048 0.6211144 0.9125621 +0.9576028 0.6211144 0.9125621 +0.9720079 0.6211144 0.9125621 +0.9861357 0.6211144 0.9125621 +1 0.6211144 0.9125621 +0 0.6460766 0.9125621 +0.1939468 0.6460766 0.9125621 +0.2773041 0.6460766 0.9125621 +0.3384659 0.6460766 0.9125621 +0.3885728 0.6460766 0.9125621 +0.4317928 0.6460766 0.9125621 +0.470214 0.6460766 0.9125621 +0.5050551 0.6460766 0.9125621 +0.5370987 0.6460766 0.9125621 +0.5668815 0.6460766 0.9125621 +0.5947903 0.6460766 0.9125621 +0.6211144 0.6460766 0.9125621 +0.6460766 0.6460766 0.9125621 +0.6698526 0.6460766 0.9125621 +0.6925839 0.6460766 0.9125621 +0.7143866 0.6460766 0.9125621 +0.7353569 0.6460766 0.9125621 +0.7555758 0.6460766 0.9125621 +0.7751122 0.6460766 0.9125621 +0.7940252 0.6460766 0.9125621 +0.8123661 0.6460766 0.9125621 +0.8301795 0.6460766 0.9125621 +0.8475045 0.6460766 0.9125621 +0.8643761 0.6460766 0.9125621 +0.880825 0.6460766 0.9125621 +0.8968787 0.6460766 0.9125621 +0.9125621 0.6460766 0.9125621 +0.9278974 0.6460766 0.9125621 +0.9429048 0.6460766 0.9125621 +0.9576028 0.6460766 0.9125621 +0.9720079 0.6460766 0.9125621 +0.9861357 0.6460766 0.9125621 +1 0.6460766 0.9125621 +0 0.6698526 0.9125621 +0.1939468 0.6698526 0.9125621 +0.2773041 0.6698526 0.9125621 +0.3384659 0.6698526 0.9125621 +0.3885728 0.6698526 0.9125621 +0.4317928 0.6698526 0.9125621 +0.470214 0.6698526 0.9125621 +0.5050551 0.6698526 0.9125621 +0.5370987 0.6698526 0.9125621 +0.5668815 0.6698526 0.9125621 +0.5947903 0.6698526 0.9125621 +0.6211144 0.6698526 0.9125621 +0.6460766 0.6698526 0.9125621 +0.6698526 0.6698526 0.9125621 +0.6925839 0.6698526 0.9125621 +0.7143866 0.6698526 0.9125621 +0.7353569 0.6698526 0.9125621 +0.7555758 0.6698526 0.9125621 +0.7751122 0.6698526 0.9125621 +0.7940252 0.6698526 0.9125621 +0.8123661 0.6698526 0.9125621 +0.8301795 0.6698526 0.9125621 +0.8475045 0.6698526 0.9125621 +0.8643761 0.6698526 0.9125621 +0.880825 0.6698526 0.9125621 +0.8968787 0.6698526 0.9125621 +0.9125621 0.6698526 0.9125621 +0.9278974 0.6698526 0.9125621 +0.9429048 0.6698526 0.9125621 +0.9576028 0.6698526 0.9125621 +0.9720079 0.6698526 0.9125621 +0.9861357 0.6698526 0.9125621 +1 0.6698526 0.9125621 +0 0.6925839 0.9125621 +0.1939468 0.6925839 0.9125621 +0.2773041 0.6925839 0.9125621 +0.3384659 0.6925839 0.9125621 +0.3885728 0.6925839 0.9125621 +0.4317928 0.6925839 0.9125621 +0.470214 0.6925839 0.9125621 +0.5050551 0.6925839 0.9125621 +0.5370987 0.6925839 0.9125621 +0.5668815 0.6925839 0.9125621 +0.5947903 0.6925839 0.9125621 +0.6211144 0.6925839 0.9125621 +0.6460766 0.6925839 0.9125621 +0.6698526 0.6925839 0.9125621 +0.6925839 0.6925839 0.9125621 +0.7143866 0.6925839 0.9125621 +0.7353569 0.6925839 0.9125621 +0.7555758 0.6925839 0.9125621 +0.7751122 0.6925839 0.9125621 +0.7940252 0.6925839 0.9125621 +0.8123661 0.6925839 0.9125621 +0.8301795 0.6925839 0.9125621 +0.8475045 0.6925839 0.9125621 +0.8643761 0.6925839 0.9125621 +0.880825 0.6925839 0.9125621 +0.8968787 0.6925839 0.9125621 +0.9125621 0.6925839 0.9125621 +0.9278974 0.6925839 0.9125621 +0.9429048 0.6925839 0.9125621 +0.9576028 0.6925839 0.9125621 +0.9720079 0.6925839 0.9125621 +0.9861357 0.6925839 0.9125621 +1 0.6925839 0.9125621 +0 0.7143866 0.9125621 +0.1939468 0.7143866 0.9125621 +0.2773041 0.7143866 0.9125621 +0.3384659 0.7143866 0.9125621 +0.3885728 0.7143866 0.9125621 +0.4317928 0.7143866 0.9125621 +0.470214 0.7143866 0.9125621 +0.5050551 0.7143866 0.9125621 +0.5370987 0.7143866 0.9125621 +0.5668815 0.7143866 0.9125621 +0.5947903 0.7143866 0.9125621 +0.6211144 0.7143866 0.9125621 +0.6460766 0.7143866 0.9125621 +0.6698526 0.7143866 0.9125621 +0.6925839 0.7143866 0.9125621 +0.7143866 0.7143866 0.9125621 +0.7353569 0.7143866 0.9125621 +0.7555758 0.7143866 0.9125621 +0.7751122 0.7143866 0.9125621 +0.7940252 0.7143866 0.9125621 +0.8123661 0.7143866 0.9125621 +0.8301795 0.7143866 0.9125621 +0.8475045 0.7143866 0.9125621 +0.8643761 0.7143866 0.9125621 +0.880825 0.7143866 0.9125621 +0.8968787 0.7143866 0.9125621 +0.9125621 0.7143866 0.9125621 +0.9278974 0.7143866 0.9125621 +0.9429048 0.7143866 0.9125621 +0.9576028 0.7143866 0.9125621 +0.9720079 0.7143866 0.9125621 +0.9861357 0.7143866 0.9125621 +1 0.7143866 0.9125621 +0 0.7353569 0.9125621 +0.1939468 0.7353569 0.9125621 +0.2773041 0.7353569 0.9125621 +0.3384659 0.7353569 0.9125621 +0.3885728 0.7353569 0.9125621 +0.4317928 0.7353569 0.9125621 +0.470214 0.7353569 0.9125621 +0.5050551 0.7353569 0.9125621 +0.5370987 0.7353569 0.9125621 +0.5668815 0.7353569 0.9125621 +0.5947903 0.7353569 0.9125621 +0.6211144 0.7353569 0.9125621 +0.6460766 0.7353569 0.9125621 +0.6698526 0.7353569 0.9125621 +0.6925839 0.7353569 0.9125621 +0.7143866 0.7353569 0.9125621 +0.7353569 0.7353569 0.9125621 +0.7555758 0.7353569 0.9125621 +0.7751122 0.7353569 0.9125621 +0.7940252 0.7353569 0.9125621 +0.8123661 0.7353569 0.9125621 +0.8301795 0.7353569 0.9125621 +0.8475045 0.7353569 0.9125621 +0.8643761 0.7353569 0.9125621 +0.880825 0.7353569 0.9125621 +0.8968787 0.7353569 0.9125621 +0.9125621 0.7353569 0.9125621 +0.9278974 0.7353569 0.9125621 +0.9429048 0.7353569 0.9125621 +0.9576028 0.7353569 0.9125621 +0.9720079 0.7353569 0.9125621 +0.9861357 0.7353569 0.9125621 +1 0.7353569 0.9125621 +0 0.7555758 0.9125621 +0.1939468 0.7555758 0.9125621 +0.2773041 0.7555758 0.9125621 +0.3384659 0.7555758 0.9125621 +0.3885728 0.7555758 0.9125621 +0.4317928 0.7555758 0.9125621 +0.470214 0.7555758 0.9125621 +0.5050551 0.7555758 0.9125621 +0.5370987 0.7555758 0.9125621 +0.5668815 0.7555758 0.9125621 +0.5947903 0.7555758 0.9125621 +0.6211144 0.7555758 0.9125621 +0.6460766 0.7555758 0.9125621 +0.6698526 0.7555758 0.9125621 +0.6925839 0.7555758 0.9125621 +0.7143866 0.7555758 0.9125621 +0.7353569 0.7555758 0.9125621 +0.7555758 0.7555758 0.9125621 +0.7751122 0.7555758 0.9125621 +0.7940252 0.7555758 0.9125621 +0.8123661 0.7555758 0.9125621 +0.8301795 0.7555758 0.9125621 +0.8475045 0.7555758 0.9125621 +0.8643761 0.7555758 0.9125621 +0.880825 0.7555758 0.9125621 +0.8968787 0.7555758 0.9125621 +0.9125621 0.7555758 0.9125621 +0.9278974 0.7555758 0.9125621 +0.9429048 0.7555758 0.9125621 +0.9576028 0.7555758 0.9125621 +0.9720079 0.7555758 0.9125621 +0.9861357 0.7555758 0.9125621 +1 0.7555758 0.9125621 +0 0.7751122 0.9125621 +0.1939468 0.7751122 0.9125621 +0.2773041 0.7751122 0.9125621 +0.3384659 0.7751122 0.9125621 +0.3885728 0.7751122 0.9125621 +0.4317928 0.7751122 0.9125621 +0.470214 0.7751122 0.9125621 +0.5050551 0.7751122 0.9125621 +0.5370987 0.7751122 0.9125621 +0.5668815 0.7751122 0.9125621 +0.5947903 0.7751122 0.9125621 +0.6211144 0.7751122 0.9125621 +0.6460766 0.7751122 0.9125621 +0.6698526 0.7751122 0.9125621 +0.6925839 0.7751122 0.9125621 +0.7143866 0.7751122 0.9125621 +0.7353569 0.7751122 0.9125621 +0.7555758 0.7751122 0.9125621 +0.7751122 0.7751122 0.9125621 +0.7940252 0.7751122 0.9125621 +0.8123661 0.7751122 0.9125621 +0.8301795 0.7751122 0.9125621 +0.8475045 0.7751122 0.9125621 +0.8643761 0.7751122 0.9125621 +0.880825 0.7751122 0.9125621 +0.8968787 0.7751122 0.9125621 +0.9125621 0.7751122 0.9125621 +0.9278974 0.7751122 0.9125621 +0.9429048 0.7751122 0.9125621 +0.9576028 0.7751122 0.9125621 +0.9720079 0.7751122 0.9125621 +0.9861357 0.7751122 0.9125621 +1 0.7751122 0.9125621 +0 0.7940252 0.9125621 +0.1939468 0.7940252 0.9125621 +0.2773041 0.7940252 0.9125621 +0.3384659 0.7940252 0.9125621 +0.3885728 0.7940252 0.9125621 +0.4317928 0.7940252 0.9125621 +0.470214 0.7940252 0.9125621 +0.5050551 0.7940252 0.9125621 +0.5370987 0.7940252 0.9125621 +0.5668815 0.7940252 0.9125621 +0.5947903 0.7940252 0.9125621 +0.6211144 0.7940252 0.9125621 +0.6460766 0.7940252 0.9125621 +0.6698526 0.7940252 0.9125621 +0.6925839 0.7940252 0.9125621 +0.7143866 0.7940252 0.9125621 +0.7353569 0.7940252 0.9125621 +0.7555758 0.7940252 0.9125621 +0.7751122 0.7940252 0.9125621 +0.7940252 0.7940252 0.9125621 +0.8123661 0.7940252 0.9125621 +0.8301795 0.7940252 0.9125621 +0.8475045 0.7940252 0.9125621 +0.8643761 0.7940252 0.9125621 +0.880825 0.7940252 0.9125621 +0.8968787 0.7940252 0.9125621 +0.9125621 0.7940252 0.9125621 +0.9278974 0.7940252 0.9125621 +0.9429048 0.7940252 0.9125621 +0.9576028 0.7940252 0.9125621 +0.9720079 0.7940252 0.9125621 +0.9861357 0.7940252 0.9125621 +1 0.7940252 0.9125621 +0 0.8123661 0.9125621 +0.1939468 0.8123661 0.9125621 +0.2773041 0.8123661 0.9125621 +0.3384659 0.8123661 0.9125621 +0.3885728 0.8123661 0.9125621 +0.4317928 0.8123661 0.9125621 +0.470214 0.8123661 0.9125621 +0.5050551 0.8123661 0.9125621 +0.5370987 0.8123661 0.9125621 +0.5668815 0.8123661 0.9125621 +0.5947903 0.8123661 0.9125621 +0.6211144 0.8123661 0.9125621 +0.6460766 0.8123661 0.9125621 +0.6698526 0.8123661 0.9125621 +0.6925839 0.8123661 0.9125621 +0.7143866 0.8123661 0.9125621 +0.7353569 0.8123661 0.9125621 +0.7555758 0.8123661 0.9125621 +0.7751122 0.8123661 0.9125621 +0.7940252 0.8123661 0.9125621 +0.8123661 0.8123661 0.9125621 +0.8301795 0.8123661 0.9125621 +0.8475045 0.8123661 0.9125621 +0.8643761 0.8123661 0.9125621 +0.880825 0.8123661 0.9125621 +0.8968787 0.8123661 0.9125621 +0.9125621 0.8123661 0.9125621 +0.9278974 0.8123661 0.9125621 +0.9429048 0.8123661 0.9125621 +0.9576028 0.8123661 0.9125621 +0.9720079 0.8123661 0.9125621 +0.9861357 0.8123661 0.9125621 +1 0.8123661 0.9125621 +0 0.8301795 0.9125621 +0.1939468 0.8301795 0.9125621 +0.2773041 0.8301795 0.9125621 +0.3384659 0.8301795 0.9125621 +0.3885728 0.8301795 0.9125621 +0.4317928 0.8301795 0.9125621 +0.470214 0.8301795 0.9125621 +0.5050551 0.8301795 0.9125621 +0.5370987 0.8301795 0.9125621 +0.5668815 0.8301795 0.9125621 +0.5947903 0.8301795 0.9125621 +0.6211144 0.8301795 0.9125621 +0.6460766 0.8301795 0.9125621 +0.6698526 0.8301795 0.9125621 +0.6925839 0.8301795 0.9125621 +0.7143866 0.8301795 0.9125621 +0.7353569 0.8301795 0.9125621 +0.7555758 0.8301795 0.9125621 +0.7751122 0.8301795 0.9125621 +0.7940252 0.8301795 0.9125621 +0.8123661 0.8301795 0.9125621 +0.8301795 0.8301795 0.9125621 +0.8475045 0.8301795 0.9125621 +0.8643761 0.8301795 0.9125621 +0.880825 0.8301795 0.9125621 +0.8968787 0.8301795 0.9125621 +0.9125621 0.8301795 0.9125621 +0.9278974 0.8301795 0.9125621 +0.9429048 0.8301795 0.9125621 +0.9576028 0.8301795 0.9125621 +0.9720079 0.8301795 0.9125621 +0.9861357 0.8301795 0.9125621 +1 0.8301795 0.9125621 +0 0.8475045 0.9125621 +0.1939468 0.8475045 0.9125621 +0.2773041 0.8475045 0.9125621 +0.3384659 0.8475045 0.9125621 +0.3885728 0.8475045 0.9125621 +0.4317928 0.8475045 0.9125621 +0.470214 0.8475045 0.9125621 +0.5050551 0.8475045 0.9125621 +0.5370987 0.8475045 0.9125621 +0.5668815 0.8475045 0.9125621 +0.5947903 0.8475045 0.9125621 +0.6211144 0.8475045 0.9125621 +0.6460766 0.8475045 0.9125621 +0.6698526 0.8475045 0.9125621 +0.6925839 0.8475045 0.9125621 +0.7143866 0.8475045 0.9125621 +0.7353569 0.8475045 0.9125621 +0.7555758 0.8475045 0.9125621 +0.7751122 0.8475045 0.9125621 +0.7940252 0.8475045 0.9125621 +0.8123661 0.8475045 0.9125621 +0.8301795 0.8475045 0.9125621 +0.8475045 0.8475045 0.9125621 +0.8643761 0.8475045 0.9125621 +0.880825 0.8475045 0.9125621 +0.8968787 0.8475045 0.9125621 +0.9125621 0.8475045 0.9125621 +0.9278974 0.8475045 0.9125621 +0.9429048 0.8475045 0.9125621 +0.9576028 0.8475045 0.9125621 +0.9720079 0.8475045 0.9125621 +0.9861357 0.8475045 0.9125621 +1 0.8475045 0.9125621 +0 0.8643761 0.9125621 +0.1939468 0.8643761 0.9125621 +0.2773041 0.8643761 0.9125621 +0.3384659 0.8643761 0.9125621 +0.3885728 0.8643761 0.9125621 +0.4317928 0.8643761 0.9125621 +0.470214 0.8643761 0.9125621 +0.5050551 0.8643761 0.9125621 +0.5370987 0.8643761 0.9125621 +0.5668815 0.8643761 0.9125621 +0.5947903 0.8643761 0.9125621 +0.6211144 0.8643761 0.9125621 +0.6460766 0.8643761 0.9125621 +0.6698526 0.8643761 0.9125621 +0.6925839 0.8643761 0.9125621 +0.7143866 0.8643761 0.9125621 +0.7353569 0.8643761 0.9125621 +0.7555758 0.8643761 0.9125621 +0.7751122 0.8643761 0.9125621 +0.7940252 0.8643761 0.9125621 +0.8123661 0.8643761 0.9125621 +0.8301795 0.8643761 0.9125621 +0.8475045 0.8643761 0.9125621 +0.8643761 0.8643761 0.9125621 +0.880825 0.8643761 0.9125621 +0.8968787 0.8643761 0.9125621 +0.9125621 0.8643761 0.9125621 +0.9278974 0.8643761 0.9125621 +0.9429048 0.8643761 0.9125621 +0.9576028 0.8643761 0.9125621 +0.9720079 0.8643761 0.9125621 +0.9861357 0.8643761 0.9125621 +1 0.8643761 0.9125621 +0 0.880825 0.9125621 +0.1939468 0.880825 0.9125621 +0.2773041 0.880825 0.9125621 +0.3384659 0.880825 0.9125621 +0.3885728 0.880825 0.9125621 +0.4317928 0.880825 0.9125621 +0.470214 0.880825 0.9125621 +0.5050551 0.880825 0.9125621 +0.5370987 0.880825 0.9125621 +0.5668815 0.880825 0.9125621 +0.5947903 0.880825 0.9125621 +0.6211144 0.880825 0.9125621 +0.6460766 0.880825 0.9125621 +0.6698526 0.880825 0.9125621 +0.6925839 0.880825 0.9125621 +0.7143866 0.880825 0.9125621 +0.7353569 0.880825 0.9125621 +0.7555758 0.880825 0.9125621 +0.7751122 0.880825 0.9125621 +0.7940252 0.880825 0.9125621 +0.8123661 0.880825 0.9125621 +0.8301795 0.880825 0.9125621 +0.8475045 0.880825 0.9125621 +0.8643761 0.880825 0.9125621 +0.880825 0.880825 0.9125621 +0.8968787 0.880825 0.9125621 +0.9125621 0.880825 0.9125621 +0.9278974 0.880825 0.9125621 +0.9429048 0.880825 0.9125621 +0.9576028 0.880825 0.9125621 +0.9720079 0.880825 0.9125621 +0.9861357 0.880825 0.9125621 +1 0.880825 0.9125621 +0 0.8968787 0.9125621 +0.1939468 0.8968787 0.9125621 +0.2773041 0.8968787 0.9125621 +0.3384659 0.8968787 0.9125621 +0.3885728 0.8968787 0.9125621 +0.4317928 0.8968787 0.9125621 +0.470214 0.8968787 0.9125621 +0.5050551 0.8968787 0.9125621 +0.5370987 0.8968787 0.9125621 +0.5668815 0.8968787 0.9125621 +0.5947903 0.8968787 0.9125621 +0.6211144 0.8968787 0.9125621 +0.6460766 0.8968787 0.9125621 +0.6698526 0.8968787 0.9125621 +0.6925839 0.8968787 0.9125621 +0.7143866 0.8968787 0.9125621 +0.7353569 0.8968787 0.9125621 +0.7555758 0.8968787 0.9125621 +0.7751122 0.8968787 0.9125621 +0.7940252 0.8968787 0.9125621 +0.8123661 0.8968787 0.9125621 +0.8301795 0.8968787 0.9125621 +0.8475045 0.8968787 0.9125621 +0.8643761 0.8968787 0.9125621 +0.880825 0.8968787 0.9125621 +0.8968787 0.8968787 0.9125621 +0.9125621 0.8968787 0.9125621 +0.9278974 0.8968787 0.9125621 +0.9429048 0.8968787 0.9125621 +0.9576028 0.8968787 0.9125621 +0.9720079 0.8968787 0.9125621 +0.9861357 0.8968787 0.9125621 +1 0.8968787 0.9125621 +0 0.9125621 0.9125621 +0.1939468 0.9125621 0.9125621 +0.2773041 0.9125621 0.9125621 +0.3384659 0.9125621 0.9125621 +0.3885728 0.9125621 0.9125621 +0.4317928 0.9125621 0.9125621 +0.470214 0.9125621 0.9125621 +0.5050551 0.9125621 0.9125621 +0.5370987 0.9125621 0.9125621 +0.5668815 0.9125621 0.9125621 +0.5947903 0.9125621 0.9125621 +0.6211144 0.9125621 0.9125621 +0.6460766 0.9125621 0.9125621 +0.6698526 0.9125621 0.9125621 +0.6925839 0.9125621 0.9125621 +0.7143866 0.9125621 0.9125621 +0.7353569 0.9125621 0.9125621 +0.7555758 0.9125621 0.9125621 +0.7751122 0.9125621 0.9125621 +0.7940252 0.9125621 0.9125621 +0.8123661 0.9125621 0.9125621 +0.8301795 0.9125621 0.9125621 +0.8475045 0.9125621 0.9125621 +0.8643761 0.9125621 0.9125621 +0.880825 0.9125621 0.9125621 +0.8968787 0.9125621 0.9125621 +0.9125621 0.9125621 0.9125621 +0.9278974 0.9125621 0.9125621 +0.9429048 0.9125621 0.9125621 +0.9576028 0.9125621 0.9125621 +0.9720079 0.9125621 0.9125621 +0.9861357 0.9125621 0.9125621 +1 0.9125621 0.9125621 +0 0.9278974 0.9125621 +0.1939468 0.9278974 0.9125621 +0.2773041 0.9278974 0.9125621 +0.3384659 0.9278974 0.9125621 +0.3885728 0.9278974 0.9125621 +0.4317928 0.9278974 0.9125621 +0.470214 0.9278974 0.9125621 +0.5050551 0.9278974 0.9125621 +0.5370987 0.9278974 0.9125621 +0.5668815 0.9278974 0.9125621 +0.5947903 0.9278974 0.9125621 +0.6211144 0.9278974 0.9125621 +0.6460766 0.9278974 0.9125621 +0.6698526 0.9278974 0.9125621 +0.6925839 0.9278974 0.9125621 +0.7143866 0.9278974 0.9125621 +0.7353569 0.9278974 0.9125621 +0.7555758 0.9278974 0.9125621 +0.7751122 0.9278974 0.9125621 +0.7940252 0.9278974 0.9125621 +0.8123661 0.9278974 0.9125621 +0.8301795 0.9278974 0.9125621 +0.8475045 0.9278974 0.9125621 +0.8643761 0.9278974 0.9125621 +0.880825 0.9278974 0.9125621 +0.8968787 0.9278974 0.9125621 +0.9125621 0.9278974 0.9125621 +0.9278974 0.9278974 0.9125621 +0.9429048 0.9278974 0.9125621 +0.9576028 0.9278974 0.9125621 +0.9720079 0.9278974 0.9125621 +0.9861357 0.9278974 0.9125621 +1 0.9278974 0.9125621 +0 0.9429048 0.9125621 +0.1939468 0.9429048 0.9125621 +0.2773041 0.9429048 0.9125621 +0.3384659 0.9429048 0.9125621 +0.3885728 0.9429048 0.9125621 +0.4317928 0.9429048 0.9125621 +0.470214 0.9429048 0.9125621 +0.5050551 0.9429048 0.9125621 +0.5370987 0.9429048 0.9125621 +0.5668815 0.9429048 0.9125621 +0.5947903 0.9429048 0.9125621 +0.6211144 0.9429048 0.9125621 +0.6460766 0.9429048 0.9125621 +0.6698526 0.9429048 0.9125621 +0.6925839 0.9429048 0.9125621 +0.7143866 0.9429048 0.9125621 +0.7353569 0.9429048 0.9125621 +0.7555758 0.9429048 0.9125621 +0.7751122 0.9429048 0.9125621 +0.7940252 0.9429048 0.9125621 +0.8123661 0.9429048 0.9125621 +0.8301795 0.9429048 0.9125621 +0.8475045 0.9429048 0.9125621 +0.8643761 0.9429048 0.9125621 +0.880825 0.9429048 0.9125621 +0.8968787 0.9429048 0.9125621 +0.9125621 0.9429048 0.9125621 +0.9278974 0.9429048 0.9125621 +0.9429048 0.9429048 0.9125621 +0.9576028 0.9429048 0.9125621 +0.9720079 0.9429048 0.9125621 +0.9861357 0.9429048 0.9125621 +1 0.9429048 0.9125621 +0 0.9576028 0.9125621 +0.1939468 0.9576028 0.9125621 +0.2773041 0.9576028 0.9125621 +0.3384659 0.9576028 0.9125621 +0.3885728 0.9576028 0.9125621 +0.4317928 0.9576028 0.9125621 +0.470214 0.9576028 0.9125621 +0.5050551 0.9576028 0.9125621 +0.5370987 0.9576028 0.9125621 +0.5668815 0.9576028 0.9125621 +0.5947903 0.9576028 0.9125621 +0.6211144 0.9576028 0.9125621 +0.6460766 0.9576028 0.9125621 +0.6698526 0.9576028 0.9125621 +0.6925839 0.9576028 0.9125621 +0.7143866 0.9576028 0.9125621 +0.7353569 0.9576028 0.9125621 +0.7555758 0.9576028 0.9125621 +0.7751122 0.9576028 0.9125621 +0.7940252 0.9576028 0.9125621 +0.8123661 0.9576028 0.9125621 +0.8301795 0.9576028 0.9125621 +0.8475045 0.9576028 0.9125621 +0.8643761 0.9576028 0.9125621 +0.880825 0.9576028 0.9125621 +0.8968787 0.9576028 0.9125621 +0.9125621 0.9576028 0.9125621 +0.9278974 0.9576028 0.9125621 +0.9429048 0.9576028 0.9125621 +0.9576028 0.9576028 0.9125621 +0.9720079 0.9576028 0.9125621 +0.9861357 0.9576028 0.9125621 +1 0.9576028 0.9125621 +0 0.9720079 0.9125621 +0.1939468 0.9720079 0.9125621 +0.2773041 0.9720079 0.9125621 +0.3384659 0.9720079 0.9125621 +0.3885728 0.9720079 0.9125621 +0.4317928 0.9720079 0.9125621 +0.470214 0.9720079 0.9125621 +0.5050551 0.9720079 0.9125621 +0.5370987 0.9720079 0.9125621 +0.5668815 0.9720079 0.9125621 +0.5947903 0.9720079 0.9125621 +0.6211144 0.9720079 0.9125621 +0.6460766 0.9720079 0.9125621 +0.6698526 0.9720079 0.9125621 +0.6925839 0.9720079 0.9125621 +0.7143866 0.9720079 0.9125621 +0.7353569 0.9720079 0.9125621 +0.7555758 0.9720079 0.9125621 +0.7751122 0.9720079 0.9125621 +0.7940252 0.9720079 0.9125621 +0.8123661 0.9720079 0.9125621 +0.8301795 0.9720079 0.9125621 +0.8475045 0.9720079 0.9125621 +0.8643761 0.9720079 0.9125621 +0.880825 0.9720079 0.9125621 +0.8968787 0.9720079 0.9125621 +0.9125621 0.9720079 0.9125621 +0.9278974 0.9720079 0.9125621 +0.9429048 0.9720079 0.9125621 +0.9576028 0.9720079 0.9125621 +0.9720079 0.9720079 0.9125621 +0.9861357 0.9720079 0.9125621 +1 0.9720079 0.9125621 +0 0.9861357 0.9125621 +0.1939468 0.9861357 0.9125621 +0.2773041 0.9861357 0.9125621 +0.3384659 0.9861357 0.9125621 +0.3885728 0.9861357 0.9125621 +0.4317928 0.9861357 0.9125621 +0.470214 0.9861357 0.9125621 +0.5050551 0.9861357 0.9125621 +0.5370987 0.9861357 0.9125621 +0.5668815 0.9861357 0.9125621 +0.5947903 0.9861357 0.9125621 +0.6211144 0.9861357 0.9125621 +0.6460766 0.9861357 0.9125621 +0.6698526 0.9861357 0.9125621 +0.6925839 0.9861357 0.9125621 +0.7143866 0.9861357 0.9125621 +0.7353569 0.9861357 0.9125621 +0.7555758 0.9861357 0.9125621 +0.7751122 0.9861357 0.9125621 +0.7940252 0.9861357 0.9125621 +0.8123661 0.9861357 0.9125621 +0.8301795 0.9861357 0.9125621 +0.8475045 0.9861357 0.9125621 +0.8643761 0.9861357 0.9125621 +0.880825 0.9861357 0.9125621 +0.8968787 0.9861357 0.9125621 +0.9125621 0.9861357 0.9125621 +0.9278974 0.9861357 0.9125621 +0.9429048 0.9861357 0.9125621 +0.9576028 0.9861357 0.9125621 +0.9720079 0.9861357 0.9125621 +0.9861357 0.9861357 0.9125621 +1 0.9861357 0.9125621 +0 1 0.9125621 +0.1939468 1 0.9125621 +0.2773041 1 0.9125621 +0.3384659 1 0.9125621 +0.3885728 1 0.9125621 +0.4317928 1 0.9125621 +0.470214 1 0.9125621 +0.5050551 1 0.9125621 +0.5370987 1 0.9125621 +0.5668815 1 0.9125621 +0.5947903 1 0.9125621 +0.6211144 1 0.9125621 +0.6460766 1 0.9125621 +0.6698526 1 0.9125621 +0.6925839 1 0.9125621 +0.7143866 1 0.9125621 +0.7353569 1 0.9125621 +0.7555758 1 0.9125621 +0.7751122 1 0.9125621 +0.7940252 1 0.9125621 +0.8123661 1 0.9125621 +0.8301795 1 0.9125621 +0.8475045 1 0.9125621 +0.8643761 1 0.9125621 +0.880825 1 0.9125621 +0.8968787 1 0.9125621 +0.9125621 1 0.9125621 +0.9278974 1 0.9125621 +0.9429048 1 0.9125621 +0.9576028 1 0.9125621 +0.9720079 1 0.9125621 +0.9861357 1 0.9125621 +1 1 0.9125621 +0 0 0.9278974 +0.1939468 0 0.9278974 +0.2773041 0 0.9278974 +0.3384659 0 0.9278974 +0.3885728 0 0.9278974 +0.4317928 0 0.9278974 +0.470214 0 0.9278974 +0.5050551 0 0.9278974 +0.5370987 0 0.9278974 +0.5668815 0 0.9278974 +0.5947903 0 0.9278974 +0.6211144 0 0.9278974 +0.6460766 0 0.9278974 +0.6698526 0 0.9278974 +0.6925839 0 0.9278974 +0.7143866 0 0.9278974 +0.7353569 0 0.9278974 +0.7555758 0 0.9278974 +0.7751122 0 0.9278974 +0.7940252 0 0.9278974 +0.8123661 0 0.9278974 +0.8301795 0 0.9278974 +0.8475045 0 0.9278974 +0.8643761 0 0.9278974 +0.880825 0 0.9278974 +0.8968787 0 0.9278974 +0.9125621 0 0.9278974 +0.9278974 0 0.9278974 +0.9429048 0 0.9278974 +0.9576028 0 0.9278974 +0.9720079 0 0.9278974 +0.9861357 0 0.9278974 +1 0 0.9278974 +0 0.1939468 0.9278974 +0.1939468 0.1939468 0.9278974 +0.2773041 0.1939468 0.9278974 +0.3384659 0.1939468 0.9278974 +0.3885728 0.1939468 0.9278974 +0.4317928 0.1939468 0.9278974 +0.470214 0.1939468 0.9278974 +0.5050551 0.1939468 0.9278974 +0.5370987 0.1939468 0.9278974 +0.5668815 0.1939468 0.9278974 +0.5947903 0.1939468 0.9278974 +0.6211144 0.1939468 0.9278974 +0.6460766 0.1939468 0.9278974 +0.6698526 0.1939468 0.9278974 +0.6925839 0.1939468 0.9278974 +0.7143866 0.1939468 0.9278974 +0.7353569 0.1939468 0.9278974 +0.7555758 0.1939468 0.9278974 +0.7751122 0.1939468 0.9278974 +0.7940252 0.1939468 0.9278974 +0.8123661 0.1939468 0.9278974 +0.8301795 0.1939468 0.9278974 +0.8475045 0.1939468 0.9278974 +0.8643761 0.1939468 0.9278974 +0.880825 0.1939468 0.9278974 +0.8968787 0.1939468 0.9278974 +0.9125621 0.1939468 0.9278974 +0.9278974 0.1939468 0.9278974 +0.9429048 0.1939468 0.9278974 +0.9576028 0.1939468 0.9278974 +0.9720079 0.1939468 0.9278974 +0.9861357 0.1939468 0.9278974 +1 0.1939468 0.9278974 +0 0.2773041 0.9278974 +0.1939468 0.2773041 0.9278974 +0.2773041 0.2773041 0.9278974 +0.3384659 0.2773041 0.9278974 +0.3885728 0.2773041 0.9278974 +0.4317928 0.2773041 0.9278974 +0.470214 0.2773041 0.9278974 +0.5050551 0.2773041 0.9278974 +0.5370987 0.2773041 0.9278974 +0.5668815 0.2773041 0.9278974 +0.5947903 0.2773041 0.9278974 +0.6211144 0.2773041 0.9278974 +0.6460766 0.2773041 0.9278974 +0.6698526 0.2773041 0.9278974 +0.6925839 0.2773041 0.9278974 +0.7143866 0.2773041 0.9278974 +0.7353569 0.2773041 0.9278974 +0.7555758 0.2773041 0.9278974 +0.7751122 0.2773041 0.9278974 +0.7940252 0.2773041 0.9278974 +0.8123661 0.2773041 0.9278974 +0.8301795 0.2773041 0.9278974 +0.8475045 0.2773041 0.9278974 +0.8643761 0.2773041 0.9278974 +0.880825 0.2773041 0.9278974 +0.8968787 0.2773041 0.9278974 +0.9125621 0.2773041 0.9278974 +0.9278974 0.2773041 0.9278974 +0.9429048 0.2773041 0.9278974 +0.9576028 0.2773041 0.9278974 +0.9720079 0.2773041 0.9278974 +0.9861357 0.2773041 0.9278974 +1 0.2773041 0.9278974 +0 0.3384659 0.9278974 +0.1939468 0.3384659 0.9278974 +0.2773041 0.3384659 0.9278974 +0.3384659 0.3384659 0.9278974 +0.3885728 0.3384659 0.9278974 +0.4317928 0.3384659 0.9278974 +0.470214 0.3384659 0.9278974 +0.5050551 0.3384659 0.9278974 +0.5370987 0.3384659 0.9278974 +0.5668815 0.3384659 0.9278974 +0.5947903 0.3384659 0.9278974 +0.6211144 0.3384659 0.9278974 +0.6460766 0.3384659 0.9278974 +0.6698526 0.3384659 0.9278974 +0.6925839 0.3384659 0.9278974 +0.7143866 0.3384659 0.9278974 +0.7353569 0.3384659 0.9278974 +0.7555758 0.3384659 0.9278974 +0.7751122 0.3384659 0.9278974 +0.7940252 0.3384659 0.9278974 +0.8123661 0.3384659 0.9278974 +0.8301795 0.3384659 0.9278974 +0.8475045 0.3384659 0.9278974 +0.8643761 0.3384659 0.9278974 +0.880825 0.3384659 0.9278974 +0.8968787 0.3384659 0.9278974 +0.9125621 0.3384659 0.9278974 +0.9278974 0.3384659 0.9278974 +0.9429048 0.3384659 0.9278974 +0.9576028 0.3384659 0.9278974 +0.9720079 0.3384659 0.9278974 +0.9861357 0.3384659 0.9278974 +1 0.3384659 0.9278974 +0 0.3885728 0.9278974 +0.1939468 0.3885728 0.9278974 +0.2773041 0.3885728 0.9278974 +0.3384659 0.3885728 0.9278974 +0.3885728 0.3885728 0.9278974 +0.4317928 0.3885728 0.9278974 +0.470214 0.3885728 0.9278974 +0.5050551 0.3885728 0.9278974 +0.5370987 0.3885728 0.9278974 +0.5668815 0.3885728 0.9278974 +0.5947903 0.3885728 0.9278974 +0.6211144 0.3885728 0.9278974 +0.6460766 0.3885728 0.9278974 +0.6698526 0.3885728 0.9278974 +0.6925839 0.3885728 0.9278974 +0.7143866 0.3885728 0.9278974 +0.7353569 0.3885728 0.9278974 +0.7555758 0.3885728 0.9278974 +0.7751122 0.3885728 0.9278974 +0.7940252 0.3885728 0.9278974 +0.8123661 0.3885728 0.9278974 +0.8301795 0.3885728 0.9278974 +0.8475045 0.3885728 0.9278974 +0.8643761 0.3885728 0.9278974 +0.880825 0.3885728 0.9278974 +0.8968787 0.3885728 0.9278974 +0.9125621 0.3885728 0.9278974 +0.9278974 0.3885728 0.9278974 +0.9429048 0.3885728 0.9278974 +0.9576028 0.3885728 0.9278974 +0.9720079 0.3885728 0.9278974 +0.9861357 0.3885728 0.9278974 +1 0.3885728 0.9278974 +0 0.4317928 0.9278974 +0.1939468 0.4317928 0.9278974 +0.2773041 0.4317928 0.9278974 +0.3384659 0.4317928 0.9278974 +0.3885728 0.4317928 0.9278974 +0.4317928 0.4317928 0.9278974 +0.470214 0.4317928 0.9278974 +0.5050551 0.4317928 0.9278974 +0.5370987 0.4317928 0.9278974 +0.5668815 0.4317928 0.9278974 +0.5947903 0.4317928 0.9278974 +0.6211144 0.4317928 0.9278974 +0.6460766 0.4317928 0.9278974 +0.6698526 0.4317928 0.9278974 +0.6925839 0.4317928 0.9278974 +0.7143866 0.4317928 0.9278974 +0.7353569 0.4317928 0.9278974 +0.7555758 0.4317928 0.9278974 +0.7751122 0.4317928 0.9278974 +0.7940252 0.4317928 0.9278974 +0.8123661 0.4317928 0.9278974 +0.8301795 0.4317928 0.9278974 +0.8475045 0.4317928 0.9278974 +0.8643761 0.4317928 0.9278974 +0.880825 0.4317928 0.9278974 +0.8968787 0.4317928 0.9278974 +0.9125621 0.4317928 0.9278974 +0.9278974 0.4317928 0.9278974 +0.9429048 0.4317928 0.9278974 +0.9576028 0.4317928 0.9278974 +0.9720079 0.4317928 0.9278974 +0.9861357 0.4317928 0.9278974 +1 0.4317928 0.9278974 +0 0.470214 0.9278974 +0.1939468 0.470214 0.9278974 +0.2773041 0.470214 0.9278974 +0.3384659 0.470214 0.9278974 +0.3885728 0.470214 0.9278974 +0.4317928 0.470214 0.9278974 +0.470214 0.470214 0.9278974 +0.5050551 0.470214 0.9278974 +0.5370987 0.470214 0.9278974 +0.5668815 0.470214 0.9278974 +0.5947903 0.470214 0.9278974 +0.6211144 0.470214 0.9278974 +0.6460766 0.470214 0.9278974 +0.6698526 0.470214 0.9278974 +0.6925839 0.470214 0.9278974 +0.7143866 0.470214 0.9278974 +0.7353569 0.470214 0.9278974 +0.7555758 0.470214 0.9278974 +0.7751122 0.470214 0.9278974 +0.7940252 0.470214 0.9278974 +0.8123661 0.470214 0.9278974 +0.8301795 0.470214 0.9278974 +0.8475045 0.470214 0.9278974 +0.8643761 0.470214 0.9278974 +0.880825 0.470214 0.9278974 +0.8968787 0.470214 0.9278974 +0.9125621 0.470214 0.9278974 +0.9278974 0.470214 0.9278974 +0.9429048 0.470214 0.9278974 +0.9576028 0.470214 0.9278974 +0.9720079 0.470214 0.9278974 +0.9861357 0.470214 0.9278974 +1 0.470214 0.9278974 +0 0.5050551 0.9278974 +0.1939468 0.5050551 0.9278974 +0.2773041 0.5050551 0.9278974 +0.3384659 0.5050551 0.9278974 +0.3885728 0.5050551 0.9278974 +0.4317928 0.5050551 0.9278974 +0.470214 0.5050551 0.9278974 +0.5050551 0.5050551 0.9278974 +0.5370987 0.5050551 0.9278974 +0.5668815 0.5050551 0.9278974 +0.5947903 0.5050551 0.9278974 +0.6211144 0.5050551 0.9278974 +0.6460766 0.5050551 0.9278974 +0.6698526 0.5050551 0.9278974 +0.6925839 0.5050551 0.9278974 +0.7143866 0.5050551 0.9278974 +0.7353569 0.5050551 0.9278974 +0.7555758 0.5050551 0.9278974 +0.7751122 0.5050551 0.9278974 +0.7940252 0.5050551 0.9278974 +0.8123661 0.5050551 0.9278974 +0.8301795 0.5050551 0.9278974 +0.8475045 0.5050551 0.9278974 +0.8643761 0.5050551 0.9278974 +0.880825 0.5050551 0.9278974 +0.8968787 0.5050551 0.9278974 +0.9125621 0.5050551 0.9278974 +0.9278974 0.5050551 0.9278974 +0.9429048 0.5050551 0.9278974 +0.9576028 0.5050551 0.9278974 +0.9720079 0.5050551 0.9278974 +0.9861357 0.5050551 0.9278974 +1 0.5050551 0.9278974 +0 0.5370987 0.9278974 +0.1939468 0.5370987 0.9278974 +0.2773041 0.5370987 0.9278974 +0.3384659 0.5370987 0.9278974 +0.3885728 0.5370987 0.9278974 +0.4317928 0.5370987 0.9278974 +0.470214 0.5370987 0.9278974 +0.5050551 0.5370987 0.9278974 +0.5370987 0.5370987 0.9278974 +0.5668815 0.5370987 0.9278974 +0.5947903 0.5370987 0.9278974 +0.6211144 0.5370987 0.9278974 +0.6460766 0.5370987 0.9278974 +0.6698526 0.5370987 0.9278974 +0.6925839 0.5370987 0.9278974 +0.7143866 0.5370987 0.9278974 +0.7353569 0.5370987 0.9278974 +0.7555758 0.5370987 0.9278974 +0.7751122 0.5370987 0.9278974 +0.7940252 0.5370987 0.9278974 +0.8123661 0.5370987 0.9278974 +0.8301795 0.5370987 0.9278974 +0.8475045 0.5370987 0.9278974 +0.8643761 0.5370987 0.9278974 +0.880825 0.5370987 0.9278974 +0.8968787 0.5370987 0.9278974 +0.9125621 0.5370987 0.9278974 +0.9278974 0.5370987 0.9278974 +0.9429048 0.5370987 0.9278974 +0.9576028 0.5370987 0.9278974 +0.9720079 0.5370987 0.9278974 +0.9861357 0.5370987 0.9278974 +1 0.5370987 0.9278974 +0 0.5668815 0.9278974 +0.1939468 0.5668815 0.9278974 +0.2773041 0.5668815 0.9278974 +0.3384659 0.5668815 0.9278974 +0.3885728 0.5668815 0.9278974 +0.4317928 0.5668815 0.9278974 +0.470214 0.5668815 0.9278974 +0.5050551 0.5668815 0.9278974 +0.5370987 0.5668815 0.9278974 +0.5668815 0.5668815 0.9278974 +0.5947903 0.5668815 0.9278974 +0.6211144 0.5668815 0.9278974 +0.6460766 0.5668815 0.9278974 +0.6698526 0.5668815 0.9278974 +0.6925839 0.5668815 0.9278974 +0.7143866 0.5668815 0.9278974 +0.7353569 0.5668815 0.9278974 +0.7555758 0.5668815 0.9278974 +0.7751122 0.5668815 0.9278974 +0.7940252 0.5668815 0.9278974 +0.8123661 0.5668815 0.9278974 +0.8301795 0.5668815 0.9278974 +0.8475045 0.5668815 0.9278974 +0.8643761 0.5668815 0.9278974 +0.880825 0.5668815 0.9278974 +0.8968787 0.5668815 0.9278974 +0.9125621 0.5668815 0.9278974 +0.9278974 0.5668815 0.9278974 +0.9429048 0.5668815 0.9278974 +0.9576028 0.5668815 0.9278974 +0.9720079 0.5668815 0.9278974 +0.9861357 0.5668815 0.9278974 +1 0.5668815 0.9278974 +0 0.5947903 0.9278974 +0.1939468 0.5947903 0.9278974 +0.2773041 0.5947903 0.9278974 +0.3384659 0.5947903 0.9278974 +0.3885728 0.5947903 0.9278974 +0.4317928 0.5947903 0.9278974 +0.470214 0.5947903 0.9278974 +0.5050551 0.5947903 0.9278974 +0.5370987 0.5947903 0.9278974 +0.5668815 0.5947903 0.9278974 +0.5947903 0.5947903 0.9278974 +0.6211144 0.5947903 0.9278974 +0.6460766 0.5947903 0.9278974 +0.6698526 0.5947903 0.9278974 +0.6925839 0.5947903 0.9278974 +0.7143866 0.5947903 0.9278974 +0.7353569 0.5947903 0.9278974 +0.7555758 0.5947903 0.9278974 +0.7751122 0.5947903 0.9278974 +0.7940252 0.5947903 0.9278974 +0.8123661 0.5947903 0.9278974 +0.8301795 0.5947903 0.9278974 +0.8475045 0.5947903 0.9278974 +0.8643761 0.5947903 0.9278974 +0.880825 0.5947903 0.9278974 +0.8968787 0.5947903 0.9278974 +0.9125621 0.5947903 0.9278974 +0.9278974 0.5947903 0.9278974 +0.9429048 0.5947903 0.9278974 +0.9576028 0.5947903 0.9278974 +0.9720079 0.5947903 0.9278974 +0.9861357 0.5947903 0.9278974 +1 0.5947903 0.9278974 +0 0.6211144 0.9278974 +0.1939468 0.6211144 0.9278974 +0.2773041 0.6211144 0.9278974 +0.3384659 0.6211144 0.9278974 +0.3885728 0.6211144 0.9278974 +0.4317928 0.6211144 0.9278974 +0.470214 0.6211144 0.9278974 +0.5050551 0.6211144 0.9278974 +0.5370987 0.6211144 0.9278974 +0.5668815 0.6211144 0.9278974 +0.5947903 0.6211144 0.9278974 +0.6211144 0.6211144 0.9278974 +0.6460766 0.6211144 0.9278974 +0.6698526 0.6211144 0.9278974 +0.6925839 0.6211144 0.9278974 +0.7143866 0.6211144 0.9278974 +0.7353569 0.6211144 0.9278974 +0.7555758 0.6211144 0.9278974 +0.7751122 0.6211144 0.9278974 +0.7940252 0.6211144 0.9278974 +0.8123661 0.6211144 0.9278974 +0.8301795 0.6211144 0.9278974 +0.8475045 0.6211144 0.9278974 +0.8643761 0.6211144 0.9278974 +0.880825 0.6211144 0.9278974 +0.8968787 0.6211144 0.9278974 +0.9125621 0.6211144 0.9278974 +0.9278974 0.6211144 0.9278974 +0.9429048 0.6211144 0.9278974 +0.9576028 0.6211144 0.9278974 +0.9720079 0.6211144 0.9278974 +0.9861357 0.6211144 0.9278974 +1 0.6211144 0.9278974 +0 0.6460766 0.9278974 +0.1939468 0.6460766 0.9278974 +0.2773041 0.6460766 0.9278974 +0.3384659 0.6460766 0.9278974 +0.3885728 0.6460766 0.9278974 +0.4317928 0.6460766 0.9278974 +0.470214 0.6460766 0.9278974 +0.5050551 0.6460766 0.9278974 +0.5370987 0.6460766 0.9278974 +0.5668815 0.6460766 0.9278974 +0.5947903 0.6460766 0.9278974 +0.6211144 0.6460766 0.9278974 +0.6460766 0.6460766 0.9278974 +0.6698526 0.6460766 0.9278974 +0.6925839 0.6460766 0.9278974 +0.7143866 0.6460766 0.9278974 +0.7353569 0.6460766 0.9278974 +0.7555758 0.6460766 0.9278974 +0.7751122 0.6460766 0.9278974 +0.7940252 0.6460766 0.9278974 +0.8123661 0.6460766 0.9278974 +0.8301795 0.6460766 0.9278974 +0.8475045 0.6460766 0.9278974 +0.8643761 0.6460766 0.9278974 +0.880825 0.6460766 0.9278974 +0.8968787 0.6460766 0.9278974 +0.9125621 0.6460766 0.9278974 +0.9278974 0.6460766 0.9278974 +0.9429048 0.6460766 0.9278974 +0.9576028 0.6460766 0.9278974 +0.9720079 0.6460766 0.9278974 +0.9861357 0.6460766 0.9278974 +1 0.6460766 0.9278974 +0 0.6698526 0.9278974 +0.1939468 0.6698526 0.9278974 +0.2773041 0.6698526 0.9278974 +0.3384659 0.6698526 0.9278974 +0.3885728 0.6698526 0.9278974 +0.4317928 0.6698526 0.9278974 +0.470214 0.6698526 0.9278974 +0.5050551 0.6698526 0.9278974 +0.5370987 0.6698526 0.9278974 +0.5668815 0.6698526 0.9278974 +0.5947903 0.6698526 0.9278974 +0.6211144 0.6698526 0.9278974 +0.6460766 0.6698526 0.9278974 +0.6698526 0.6698526 0.9278974 +0.6925839 0.6698526 0.9278974 +0.7143866 0.6698526 0.9278974 +0.7353569 0.6698526 0.9278974 +0.7555758 0.6698526 0.9278974 +0.7751122 0.6698526 0.9278974 +0.7940252 0.6698526 0.9278974 +0.8123661 0.6698526 0.9278974 +0.8301795 0.6698526 0.9278974 +0.8475045 0.6698526 0.9278974 +0.8643761 0.6698526 0.9278974 +0.880825 0.6698526 0.9278974 +0.8968787 0.6698526 0.9278974 +0.9125621 0.6698526 0.9278974 +0.9278974 0.6698526 0.9278974 +0.9429048 0.6698526 0.9278974 +0.9576028 0.6698526 0.9278974 +0.9720079 0.6698526 0.9278974 +0.9861357 0.6698526 0.9278974 +1 0.6698526 0.9278974 +0 0.6925839 0.9278974 +0.1939468 0.6925839 0.9278974 +0.2773041 0.6925839 0.9278974 +0.3384659 0.6925839 0.9278974 +0.3885728 0.6925839 0.9278974 +0.4317928 0.6925839 0.9278974 +0.470214 0.6925839 0.9278974 +0.5050551 0.6925839 0.9278974 +0.5370987 0.6925839 0.9278974 +0.5668815 0.6925839 0.9278974 +0.5947903 0.6925839 0.9278974 +0.6211144 0.6925839 0.9278974 +0.6460766 0.6925839 0.9278974 +0.6698526 0.6925839 0.9278974 +0.6925839 0.6925839 0.9278974 +0.7143866 0.6925839 0.9278974 +0.7353569 0.6925839 0.9278974 +0.7555758 0.6925839 0.9278974 +0.7751122 0.6925839 0.9278974 +0.7940252 0.6925839 0.9278974 +0.8123661 0.6925839 0.9278974 +0.8301795 0.6925839 0.9278974 +0.8475045 0.6925839 0.9278974 +0.8643761 0.6925839 0.9278974 +0.880825 0.6925839 0.9278974 +0.8968787 0.6925839 0.9278974 +0.9125621 0.6925839 0.9278974 +0.9278974 0.6925839 0.9278974 +0.9429048 0.6925839 0.9278974 +0.9576028 0.6925839 0.9278974 +0.9720079 0.6925839 0.9278974 +0.9861357 0.6925839 0.9278974 +1 0.6925839 0.9278974 +0 0.7143866 0.9278974 +0.1939468 0.7143866 0.9278974 +0.2773041 0.7143866 0.9278974 +0.3384659 0.7143866 0.9278974 +0.3885728 0.7143866 0.9278974 +0.4317928 0.7143866 0.9278974 +0.470214 0.7143866 0.9278974 +0.5050551 0.7143866 0.9278974 +0.5370987 0.7143866 0.9278974 +0.5668815 0.7143866 0.9278974 +0.5947903 0.7143866 0.9278974 +0.6211144 0.7143866 0.9278974 +0.6460766 0.7143866 0.9278974 +0.6698526 0.7143866 0.9278974 +0.6925839 0.7143866 0.9278974 +0.7143866 0.7143866 0.9278974 +0.7353569 0.7143866 0.9278974 +0.7555758 0.7143866 0.9278974 +0.7751122 0.7143866 0.9278974 +0.7940252 0.7143866 0.9278974 +0.8123661 0.7143866 0.9278974 +0.8301795 0.7143866 0.9278974 +0.8475045 0.7143866 0.9278974 +0.8643761 0.7143866 0.9278974 +0.880825 0.7143866 0.9278974 +0.8968787 0.7143866 0.9278974 +0.9125621 0.7143866 0.9278974 +0.9278974 0.7143866 0.9278974 +0.9429048 0.7143866 0.9278974 +0.9576028 0.7143866 0.9278974 +0.9720079 0.7143866 0.9278974 +0.9861357 0.7143866 0.9278974 +1 0.7143866 0.9278974 +0 0.7353569 0.9278974 +0.1939468 0.7353569 0.9278974 +0.2773041 0.7353569 0.9278974 +0.3384659 0.7353569 0.9278974 +0.3885728 0.7353569 0.9278974 +0.4317928 0.7353569 0.9278974 +0.470214 0.7353569 0.9278974 +0.5050551 0.7353569 0.9278974 +0.5370987 0.7353569 0.9278974 +0.5668815 0.7353569 0.9278974 +0.5947903 0.7353569 0.9278974 +0.6211144 0.7353569 0.9278974 +0.6460766 0.7353569 0.9278974 +0.6698526 0.7353569 0.9278974 +0.6925839 0.7353569 0.9278974 +0.7143866 0.7353569 0.9278974 +0.7353569 0.7353569 0.9278974 +0.7555758 0.7353569 0.9278974 +0.7751122 0.7353569 0.9278974 +0.7940252 0.7353569 0.9278974 +0.8123661 0.7353569 0.9278974 +0.8301795 0.7353569 0.9278974 +0.8475045 0.7353569 0.9278974 +0.8643761 0.7353569 0.9278974 +0.880825 0.7353569 0.9278974 +0.8968787 0.7353569 0.9278974 +0.9125621 0.7353569 0.9278974 +0.9278974 0.7353569 0.9278974 +0.9429048 0.7353569 0.9278974 +0.9576028 0.7353569 0.9278974 +0.9720079 0.7353569 0.9278974 +0.9861357 0.7353569 0.9278974 +1 0.7353569 0.9278974 +0 0.7555758 0.9278974 +0.1939468 0.7555758 0.9278974 +0.2773041 0.7555758 0.9278974 +0.3384659 0.7555758 0.9278974 +0.3885728 0.7555758 0.9278974 +0.4317928 0.7555758 0.9278974 +0.470214 0.7555758 0.9278974 +0.5050551 0.7555758 0.9278974 +0.5370987 0.7555758 0.9278974 +0.5668815 0.7555758 0.9278974 +0.5947903 0.7555758 0.9278974 +0.6211144 0.7555758 0.9278974 +0.6460766 0.7555758 0.9278974 +0.6698526 0.7555758 0.9278974 +0.6925839 0.7555758 0.9278974 +0.7143866 0.7555758 0.9278974 +0.7353569 0.7555758 0.9278974 +0.7555758 0.7555758 0.9278974 +0.7751122 0.7555758 0.9278974 +0.7940252 0.7555758 0.9278974 +0.8123661 0.7555758 0.9278974 +0.8301795 0.7555758 0.9278974 +0.8475045 0.7555758 0.9278974 +0.8643761 0.7555758 0.9278974 +0.880825 0.7555758 0.9278974 +0.8968787 0.7555758 0.9278974 +0.9125621 0.7555758 0.9278974 +0.9278974 0.7555758 0.9278974 +0.9429048 0.7555758 0.9278974 +0.9576028 0.7555758 0.9278974 +0.9720079 0.7555758 0.9278974 +0.9861357 0.7555758 0.9278974 +1 0.7555758 0.9278974 +0 0.7751122 0.9278974 +0.1939468 0.7751122 0.9278974 +0.2773041 0.7751122 0.9278974 +0.3384659 0.7751122 0.9278974 +0.3885728 0.7751122 0.9278974 +0.4317928 0.7751122 0.9278974 +0.470214 0.7751122 0.9278974 +0.5050551 0.7751122 0.9278974 +0.5370987 0.7751122 0.9278974 +0.5668815 0.7751122 0.9278974 +0.5947903 0.7751122 0.9278974 +0.6211144 0.7751122 0.9278974 +0.6460766 0.7751122 0.9278974 +0.6698526 0.7751122 0.9278974 +0.6925839 0.7751122 0.9278974 +0.7143866 0.7751122 0.9278974 +0.7353569 0.7751122 0.9278974 +0.7555758 0.7751122 0.9278974 +0.7751122 0.7751122 0.9278974 +0.7940252 0.7751122 0.9278974 +0.8123661 0.7751122 0.9278974 +0.8301795 0.7751122 0.9278974 +0.8475045 0.7751122 0.9278974 +0.8643761 0.7751122 0.9278974 +0.880825 0.7751122 0.9278974 +0.8968787 0.7751122 0.9278974 +0.9125621 0.7751122 0.9278974 +0.9278974 0.7751122 0.9278974 +0.9429048 0.7751122 0.9278974 +0.9576028 0.7751122 0.9278974 +0.9720079 0.7751122 0.9278974 +0.9861357 0.7751122 0.9278974 +1 0.7751122 0.9278974 +0 0.7940252 0.9278974 +0.1939468 0.7940252 0.9278974 +0.2773041 0.7940252 0.9278974 +0.3384659 0.7940252 0.9278974 +0.3885728 0.7940252 0.9278974 +0.4317928 0.7940252 0.9278974 +0.470214 0.7940252 0.9278974 +0.5050551 0.7940252 0.9278974 +0.5370987 0.7940252 0.9278974 +0.5668815 0.7940252 0.9278974 +0.5947903 0.7940252 0.9278974 +0.6211144 0.7940252 0.9278974 +0.6460766 0.7940252 0.9278974 +0.6698526 0.7940252 0.9278974 +0.6925839 0.7940252 0.9278974 +0.7143866 0.7940252 0.9278974 +0.7353569 0.7940252 0.9278974 +0.7555758 0.7940252 0.9278974 +0.7751122 0.7940252 0.9278974 +0.7940252 0.7940252 0.9278974 +0.8123661 0.7940252 0.9278974 +0.8301795 0.7940252 0.9278974 +0.8475045 0.7940252 0.9278974 +0.8643761 0.7940252 0.9278974 +0.880825 0.7940252 0.9278974 +0.8968787 0.7940252 0.9278974 +0.9125621 0.7940252 0.9278974 +0.9278974 0.7940252 0.9278974 +0.9429048 0.7940252 0.9278974 +0.9576028 0.7940252 0.9278974 +0.9720079 0.7940252 0.9278974 +0.9861357 0.7940252 0.9278974 +1 0.7940252 0.9278974 +0 0.8123661 0.9278974 +0.1939468 0.8123661 0.9278974 +0.2773041 0.8123661 0.9278974 +0.3384659 0.8123661 0.9278974 +0.3885728 0.8123661 0.9278974 +0.4317928 0.8123661 0.9278974 +0.470214 0.8123661 0.9278974 +0.5050551 0.8123661 0.9278974 +0.5370987 0.8123661 0.9278974 +0.5668815 0.8123661 0.9278974 +0.5947903 0.8123661 0.9278974 +0.6211144 0.8123661 0.9278974 +0.6460766 0.8123661 0.9278974 +0.6698526 0.8123661 0.9278974 +0.6925839 0.8123661 0.9278974 +0.7143866 0.8123661 0.9278974 +0.7353569 0.8123661 0.9278974 +0.7555758 0.8123661 0.9278974 +0.7751122 0.8123661 0.9278974 +0.7940252 0.8123661 0.9278974 +0.8123661 0.8123661 0.9278974 +0.8301795 0.8123661 0.9278974 +0.8475045 0.8123661 0.9278974 +0.8643761 0.8123661 0.9278974 +0.880825 0.8123661 0.9278974 +0.8968787 0.8123661 0.9278974 +0.9125621 0.8123661 0.9278974 +0.9278974 0.8123661 0.9278974 +0.9429048 0.8123661 0.9278974 +0.9576028 0.8123661 0.9278974 +0.9720079 0.8123661 0.9278974 +0.9861357 0.8123661 0.9278974 +1 0.8123661 0.9278974 +0 0.8301795 0.9278974 +0.1939468 0.8301795 0.9278974 +0.2773041 0.8301795 0.9278974 +0.3384659 0.8301795 0.9278974 +0.3885728 0.8301795 0.9278974 +0.4317928 0.8301795 0.9278974 +0.470214 0.8301795 0.9278974 +0.5050551 0.8301795 0.9278974 +0.5370987 0.8301795 0.9278974 +0.5668815 0.8301795 0.9278974 +0.5947903 0.8301795 0.9278974 +0.6211144 0.8301795 0.9278974 +0.6460766 0.8301795 0.9278974 +0.6698526 0.8301795 0.9278974 +0.6925839 0.8301795 0.9278974 +0.7143866 0.8301795 0.9278974 +0.7353569 0.8301795 0.9278974 +0.7555758 0.8301795 0.9278974 +0.7751122 0.8301795 0.9278974 +0.7940252 0.8301795 0.9278974 +0.8123661 0.8301795 0.9278974 +0.8301795 0.8301795 0.9278974 +0.8475045 0.8301795 0.9278974 +0.8643761 0.8301795 0.9278974 +0.880825 0.8301795 0.9278974 +0.8968787 0.8301795 0.9278974 +0.9125621 0.8301795 0.9278974 +0.9278974 0.8301795 0.9278974 +0.9429048 0.8301795 0.9278974 +0.9576028 0.8301795 0.9278974 +0.9720079 0.8301795 0.9278974 +0.9861357 0.8301795 0.9278974 +1 0.8301795 0.9278974 +0 0.8475045 0.9278974 +0.1939468 0.8475045 0.9278974 +0.2773041 0.8475045 0.9278974 +0.3384659 0.8475045 0.9278974 +0.3885728 0.8475045 0.9278974 +0.4317928 0.8475045 0.9278974 +0.470214 0.8475045 0.9278974 +0.5050551 0.8475045 0.9278974 +0.5370987 0.8475045 0.9278974 +0.5668815 0.8475045 0.9278974 +0.5947903 0.8475045 0.9278974 +0.6211144 0.8475045 0.9278974 +0.6460766 0.8475045 0.9278974 +0.6698526 0.8475045 0.9278974 +0.6925839 0.8475045 0.9278974 +0.7143866 0.8475045 0.9278974 +0.7353569 0.8475045 0.9278974 +0.7555758 0.8475045 0.9278974 +0.7751122 0.8475045 0.9278974 +0.7940252 0.8475045 0.9278974 +0.8123661 0.8475045 0.9278974 +0.8301795 0.8475045 0.9278974 +0.8475045 0.8475045 0.9278974 +0.8643761 0.8475045 0.9278974 +0.880825 0.8475045 0.9278974 +0.8968787 0.8475045 0.9278974 +0.9125621 0.8475045 0.9278974 +0.9278974 0.8475045 0.9278974 +0.9429048 0.8475045 0.9278974 +0.9576028 0.8475045 0.9278974 +0.9720079 0.8475045 0.9278974 +0.9861357 0.8475045 0.9278974 +1 0.8475045 0.9278974 +0 0.8643761 0.9278974 +0.1939468 0.8643761 0.9278974 +0.2773041 0.8643761 0.9278974 +0.3384659 0.8643761 0.9278974 +0.3885728 0.8643761 0.9278974 +0.4317928 0.8643761 0.9278974 +0.470214 0.8643761 0.9278974 +0.5050551 0.8643761 0.9278974 +0.5370987 0.8643761 0.9278974 +0.5668815 0.8643761 0.9278974 +0.5947903 0.8643761 0.9278974 +0.6211144 0.8643761 0.9278974 +0.6460766 0.8643761 0.9278974 +0.6698526 0.8643761 0.9278974 +0.6925839 0.8643761 0.9278974 +0.7143866 0.8643761 0.9278974 +0.7353569 0.8643761 0.9278974 +0.7555758 0.8643761 0.9278974 +0.7751122 0.8643761 0.9278974 +0.7940252 0.8643761 0.9278974 +0.8123661 0.8643761 0.9278974 +0.8301795 0.8643761 0.9278974 +0.8475045 0.8643761 0.9278974 +0.8643761 0.8643761 0.9278974 +0.880825 0.8643761 0.9278974 +0.8968787 0.8643761 0.9278974 +0.9125621 0.8643761 0.9278974 +0.9278974 0.8643761 0.9278974 +0.9429048 0.8643761 0.9278974 +0.9576028 0.8643761 0.9278974 +0.9720079 0.8643761 0.9278974 +0.9861357 0.8643761 0.9278974 +1 0.8643761 0.9278974 +0 0.880825 0.9278974 +0.1939468 0.880825 0.9278974 +0.2773041 0.880825 0.9278974 +0.3384659 0.880825 0.9278974 +0.3885728 0.880825 0.9278974 +0.4317928 0.880825 0.9278974 +0.470214 0.880825 0.9278974 +0.5050551 0.880825 0.9278974 +0.5370987 0.880825 0.9278974 +0.5668815 0.880825 0.9278974 +0.5947903 0.880825 0.9278974 +0.6211144 0.880825 0.9278974 +0.6460766 0.880825 0.9278974 +0.6698526 0.880825 0.9278974 +0.6925839 0.880825 0.9278974 +0.7143866 0.880825 0.9278974 +0.7353569 0.880825 0.9278974 +0.7555758 0.880825 0.9278974 +0.7751122 0.880825 0.9278974 +0.7940252 0.880825 0.9278974 +0.8123661 0.880825 0.9278974 +0.8301795 0.880825 0.9278974 +0.8475045 0.880825 0.9278974 +0.8643761 0.880825 0.9278974 +0.880825 0.880825 0.9278974 +0.8968787 0.880825 0.9278974 +0.9125621 0.880825 0.9278974 +0.9278974 0.880825 0.9278974 +0.9429048 0.880825 0.9278974 +0.9576028 0.880825 0.9278974 +0.9720079 0.880825 0.9278974 +0.9861357 0.880825 0.9278974 +1 0.880825 0.9278974 +0 0.8968787 0.9278974 +0.1939468 0.8968787 0.9278974 +0.2773041 0.8968787 0.9278974 +0.3384659 0.8968787 0.9278974 +0.3885728 0.8968787 0.9278974 +0.4317928 0.8968787 0.9278974 +0.470214 0.8968787 0.9278974 +0.5050551 0.8968787 0.9278974 +0.5370987 0.8968787 0.9278974 +0.5668815 0.8968787 0.9278974 +0.5947903 0.8968787 0.9278974 +0.6211144 0.8968787 0.9278974 +0.6460766 0.8968787 0.9278974 +0.6698526 0.8968787 0.9278974 +0.6925839 0.8968787 0.9278974 +0.7143866 0.8968787 0.9278974 +0.7353569 0.8968787 0.9278974 +0.7555758 0.8968787 0.9278974 +0.7751122 0.8968787 0.9278974 +0.7940252 0.8968787 0.9278974 +0.8123661 0.8968787 0.9278974 +0.8301795 0.8968787 0.9278974 +0.8475045 0.8968787 0.9278974 +0.8643761 0.8968787 0.9278974 +0.880825 0.8968787 0.9278974 +0.8968787 0.8968787 0.9278974 +0.9125621 0.8968787 0.9278974 +0.9278974 0.8968787 0.9278974 +0.9429048 0.8968787 0.9278974 +0.9576028 0.8968787 0.9278974 +0.9720079 0.8968787 0.9278974 +0.9861357 0.8968787 0.9278974 +1 0.8968787 0.9278974 +0 0.9125621 0.9278974 +0.1939468 0.9125621 0.9278974 +0.2773041 0.9125621 0.9278974 +0.3384659 0.9125621 0.9278974 +0.3885728 0.9125621 0.9278974 +0.4317928 0.9125621 0.9278974 +0.470214 0.9125621 0.9278974 +0.5050551 0.9125621 0.9278974 +0.5370987 0.9125621 0.9278974 +0.5668815 0.9125621 0.9278974 +0.5947903 0.9125621 0.9278974 +0.6211144 0.9125621 0.9278974 +0.6460766 0.9125621 0.9278974 +0.6698526 0.9125621 0.9278974 +0.6925839 0.9125621 0.9278974 +0.7143866 0.9125621 0.9278974 +0.7353569 0.9125621 0.9278974 +0.7555758 0.9125621 0.9278974 +0.7751122 0.9125621 0.9278974 +0.7940252 0.9125621 0.9278974 +0.8123661 0.9125621 0.9278974 +0.8301795 0.9125621 0.9278974 +0.8475045 0.9125621 0.9278974 +0.8643761 0.9125621 0.9278974 +0.880825 0.9125621 0.9278974 +0.8968787 0.9125621 0.9278974 +0.9125621 0.9125621 0.9278974 +0.9278974 0.9125621 0.9278974 +0.9429048 0.9125621 0.9278974 +0.9576028 0.9125621 0.9278974 +0.9720079 0.9125621 0.9278974 +0.9861357 0.9125621 0.9278974 +1 0.9125621 0.9278974 +0 0.9278974 0.9278974 +0.1939468 0.9278974 0.9278974 +0.2773041 0.9278974 0.9278974 +0.3384659 0.9278974 0.9278974 +0.3885728 0.9278974 0.9278974 +0.4317928 0.9278974 0.9278974 +0.470214 0.9278974 0.9278974 +0.5050551 0.9278974 0.9278974 +0.5370987 0.9278974 0.9278974 +0.5668815 0.9278974 0.9278974 +0.5947903 0.9278974 0.9278974 +0.6211144 0.9278974 0.9278974 +0.6460766 0.9278974 0.9278974 +0.6698526 0.9278974 0.9278974 +0.6925839 0.9278974 0.9278974 +0.7143866 0.9278974 0.9278974 +0.7353569 0.9278974 0.9278974 +0.7555758 0.9278974 0.9278974 +0.7751122 0.9278974 0.9278974 +0.7940252 0.9278974 0.9278974 +0.8123661 0.9278974 0.9278974 +0.8301795 0.9278974 0.9278974 +0.8475045 0.9278974 0.9278974 +0.8643761 0.9278974 0.9278974 +0.880825 0.9278974 0.9278974 +0.8968787 0.9278974 0.9278974 +0.9125621 0.9278974 0.9278974 +0.9278974 0.9278974 0.9278974 +0.9429048 0.9278974 0.9278974 +0.9576028 0.9278974 0.9278974 +0.9720079 0.9278974 0.9278974 +0.9861357 0.9278974 0.9278974 +1 0.9278974 0.9278974 +0 0.9429048 0.9278974 +0.1939468 0.9429048 0.9278974 +0.2773041 0.9429048 0.9278974 +0.3384659 0.9429048 0.9278974 +0.3885728 0.9429048 0.9278974 +0.4317928 0.9429048 0.9278974 +0.470214 0.9429048 0.9278974 +0.5050551 0.9429048 0.9278974 +0.5370987 0.9429048 0.9278974 +0.5668815 0.9429048 0.9278974 +0.5947903 0.9429048 0.9278974 +0.6211144 0.9429048 0.9278974 +0.6460766 0.9429048 0.9278974 +0.6698526 0.9429048 0.9278974 +0.6925839 0.9429048 0.9278974 +0.7143866 0.9429048 0.9278974 +0.7353569 0.9429048 0.9278974 +0.7555758 0.9429048 0.9278974 +0.7751122 0.9429048 0.9278974 +0.7940252 0.9429048 0.9278974 +0.8123661 0.9429048 0.9278974 +0.8301795 0.9429048 0.9278974 +0.8475045 0.9429048 0.9278974 +0.8643761 0.9429048 0.9278974 +0.880825 0.9429048 0.9278974 +0.8968787 0.9429048 0.9278974 +0.9125621 0.9429048 0.9278974 +0.9278974 0.9429048 0.9278974 +0.9429048 0.9429048 0.9278974 +0.9576028 0.9429048 0.9278974 +0.9720079 0.9429048 0.9278974 +0.9861357 0.9429048 0.9278974 +1 0.9429048 0.9278974 +0 0.9576028 0.9278974 +0.1939468 0.9576028 0.9278974 +0.2773041 0.9576028 0.9278974 +0.3384659 0.9576028 0.9278974 +0.3885728 0.9576028 0.9278974 +0.4317928 0.9576028 0.9278974 +0.470214 0.9576028 0.9278974 +0.5050551 0.9576028 0.9278974 +0.5370987 0.9576028 0.9278974 +0.5668815 0.9576028 0.9278974 +0.5947903 0.9576028 0.9278974 +0.6211144 0.9576028 0.9278974 +0.6460766 0.9576028 0.9278974 +0.6698526 0.9576028 0.9278974 +0.6925839 0.9576028 0.9278974 +0.7143866 0.9576028 0.9278974 +0.7353569 0.9576028 0.9278974 +0.7555758 0.9576028 0.9278974 +0.7751122 0.9576028 0.9278974 +0.7940252 0.9576028 0.9278974 +0.8123661 0.9576028 0.9278974 +0.8301795 0.9576028 0.9278974 +0.8475045 0.9576028 0.9278974 +0.8643761 0.9576028 0.9278974 +0.880825 0.9576028 0.9278974 +0.8968787 0.9576028 0.9278974 +0.9125621 0.9576028 0.9278974 +0.9278974 0.9576028 0.9278974 +0.9429048 0.9576028 0.9278974 +0.9576028 0.9576028 0.9278974 +0.9720079 0.9576028 0.9278974 +0.9861357 0.9576028 0.9278974 +1 0.9576028 0.9278974 +0 0.9720079 0.9278974 +0.1939468 0.9720079 0.9278974 +0.2773041 0.9720079 0.9278974 +0.3384659 0.9720079 0.9278974 +0.3885728 0.9720079 0.9278974 +0.4317928 0.9720079 0.9278974 +0.470214 0.9720079 0.9278974 +0.5050551 0.9720079 0.9278974 +0.5370987 0.9720079 0.9278974 +0.5668815 0.9720079 0.9278974 +0.5947903 0.9720079 0.9278974 +0.6211144 0.9720079 0.9278974 +0.6460766 0.9720079 0.9278974 +0.6698526 0.9720079 0.9278974 +0.6925839 0.9720079 0.9278974 +0.7143866 0.9720079 0.9278974 +0.7353569 0.9720079 0.9278974 +0.7555758 0.9720079 0.9278974 +0.7751122 0.9720079 0.9278974 +0.7940252 0.9720079 0.9278974 +0.8123661 0.9720079 0.9278974 +0.8301795 0.9720079 0.9278974 +0.8475045 0.9720079 0.9278974 +0.8643761 0.9720079 0.9278974 +0.880825 0.9720079 0.9278974 +0.8968787 0.9720079 0.9278974 +0.9125621 0.9720079 0.9278974 +0.9278974 0.9720079 0.9278974 +0.9429048 0.9720079 0.9278974 +0.9576028 0.9720079 0.9278974 +0.9720079 0.9720079 0.9278974 +0.9861357 0.9720079 0.9278974 +1 0.9720079 0.9278974 +0 0.9861357 0.9278974 +0.1939468 0.9861357 0.9278974 +0.2773041 0.9861357 0.9278974 +0.3384659 0.9861357 0.9278974 +0.3885728 0.9861357 0.9278974 +0.4317928 0.9861357 0.9278974 +0.470214 0.9861357 0.9278974 +0.5050551 0.9861357 0.9278974 +0.5370987 0.9861357 0.9278974 +0.5668815 0.9861357 0.9278974 +0.5947903 0.9861357 0.9278974 +0.6211144 0.9861357 0.9278974 +0.6460766 0.9861357 0.9278974 +0.6698526 0.9861357 0.9278974 +0.6925839 0.9861357 0.9278974 +0.7143866 0.9861357 0.9278974 +0.7353569 0.9861357 0.9278974 +0.7555758 0.9861357 0.9278974 +0.7751122 0.9861357 0.9278974 +0.7940252 0.9861357 0.9278974 +0.8123661 0.9861357 0.9278974 +0.8301795 0.9861357 0.9278974 +0.8475045 0.9861357 0.9278974 +0.8643761 0.9861357 0.9278974 +0.880825 0.9861357 0.9278974 +0.8968787 0.9861357 0.9278974 +0.9125621 0.9861357 0.9278974 +0.9278974 0.9861357 0.9278974 +0.9429048 0.9861357 0.9278974 +0.9576028 0.9861357 0.9278974 +0.9720079 0.9861357 0.9278974 +0.9861357 0.9861357 0.9278974 +1 0.9861357 0.9278974 +0 1 0.9278974 +0.1939468 1 0.9278974 +0.2773041 1 0.9278974 +0.3384659 1 0.9278974 +0.3885728 1 0.9278974 +0.4317928 1 0.9278974 +0.470214 1 0.9278974 +0.5050551 1 0.9278974 +0.5370987 1 0.9278974 +0.5668815 1 0.9278974 +0.5947903 1 0.9278974 +0.6211144 1 0.9278974 +0.6460766 1 0.9278974 +0.6698526 1 0.9278974 +0.6925839 1 0.9278974 +0.7143866 1 0.9278974 +0.7353569 1 0.9278974 +0.7555758 1 0.9278974 +0.7751122 1 0.9278974 +0.7940252 1 0.9278974 +0.8123661 1 0.9278974 +0.8301795 1 0.9278974 +0.8475045 1 0.9278974 +0.8643761 1 0.9278974 +0.880825 1 0.9278974 +0.8968787 1 0.9278974 +0.9125621 1 0.9278974 +0.9278974 1 0.9278974 +0.9429048 1 0.9278974 +0.9576028 1 0.9278974 +0.9720079 1 0.9278974 +0.9861357 1 0.9278974 +1 1 0.9278974 +0 0 0.9429048 +0.1939468 0 0.9429048 +0.2773041 0 0.9429048 +0.3384659 0 0.9429048 +0.3885728 0 0.9429048 +0.4317928 0 0.9429048 +0.470214 0 0.9429048 +0.5050551 0 0.9429048 +0.5370987 0 0.9429048 +0.5668815 0 0.9429048 +0.5947903 0 0.9429048 +0.6211144 0 0.9429048 +0.6460766 0 0.9429048 +0.6698526 0 0.9429048 +0.6925839 0 0.9429048 +0.7143866 0 0.9429048 +0.7353569 0 0.9429048 +0.7555758 0 0.9429048 +0.7751122 0 0.9429048 +0.7940252 0 0.9429048 +0.8123661 0 0.9429048 +0.8301795 0 0.9429048 +0.8475045 0 0.9429048 +0.8643761 0 0.9429048 +0.880825 0 0.9429048 +0.8968787 0 0.9429048 +0.9125621 0 0.9429048 +0.9278974 0 0.9429048 +0.9429048 0 0.9429048 +0.9576028 0 0.9429048 +0.9720079 0 0.9429048 +0.9861357 0 0.9429048 +1 0 0.9429048 +0 0.1939468 0.9429048 +0.1939468 0.1939468 0.9429048 +0.2773041 0.1939468 0.9429048 +0.3384659 0.1939468 0.9429048 +0.3885728 0.1939468 0.9429048 +0.4317928 0.1939468 0.9429048 +0.470214 0.1939468 0.9429048 +0.5050551 0.1939468 0.9429048 +0.5370987 0.1939468 0.9429048 +0.5668815 0.1939468 0.9429048 +0.5947903 0.1939468 0.9429048 +0.6211144 0.1939468 0.9429048 +0.6460766 0.1939468 0.9429048 +0.6698526 0.1939468 0.9429048 +0.6925839 0.1939468 0.9429048 +0.7143866 0.1939468 0.9429048 +0.7353569 0.1939468 0.9429048 +0.7555758 0.1939468 0.9429048 +0.7751122 0.1939468 0.9429048 +0.7940252 0.1939468 0.9429048 +0.8123661 0.1939468 0.9429048 +0.8301795 0.1939468 0.9429048 +0.8475045 0.1939468 0.9429048 +0.8643761 0.1939468 0.9429048 +0.880825 0.1939468 0.9429048 +0.8968787 0.1939468 0.9429048 +0.9125621 0.1939468 0.9429048 +0.9278974 0.1939468 0.9429048 +0.9429048 0.1939468 0.9429048 +0.9576028 0.1939468 0.9429048 +0.9720079 0.1939468 0.9429048 +0.9861357 0.1939468 0.9429048 +1 0.1939468 0.9429048 +0 0.2773041 0.9429048 +0.1939468 0.2773041 0.9429048 +0.2773041 0.2773041 0.9429048 +0.3384659 0.2773041 0.9429048 +0.3885728 0.2773041 0.9429048 +0.4317928 0.2773041 0.9429048 +0.470214 0.2773041 0.9429048 +0.5050551 0.2773041 0.9429048 +0.5370987 0.2773041 0.9429048 +0.5668815 0.2773041 0.9429048 +0.5947903 0.2773041 0.9429048 +0.6211144 0.2773041 0.9429048 +0.6460766 0.2773041 0.9429048 +0.6698526 0.2773041 0.9429048 +0.6925839 0.2773041 0.9429048 +0.7143866 0.2773041 0.9429048 +0.7353569 0.2773041 0.9429048 +0.7555758 0.2773041 0.9429048 +0.7751122 0.2773041 0.9429048 +0.7940252 0.2773041 0.9429048 +0.8123661 0.2773041 0.9429048 +0.8301795 0.2773041 0.9429048 +0.8475045 0.2773041 0.9429048 +0.8643761 0.2773041 0.9429048 +0.880825 0.2773041 0.9429048 +0.8968787 0.2773041 0.9429048 +0.9125621 0.2773041 0.9429048 +0.9278974 0.2773041 0.9429048 +0.9429048 0.2773041 0.9429048 +0.9576028 0.2773041 0.9429048 +0.9720079 0.2773041 0.9429048 +0.9861357 0.2773041 0.9429048 +1 0.2773041 0.9429048 +0 0.3384659 0.9429048 +0.1939468 0.3384659 0.9429048 +0.2773041 0.3384659 0.9429048 +0.3384659 0.3384659 0.9429048 +0.3885728 0.3384659 0.9429048 +0.4317928 0.3384659 0.9429048 +0.470214 0.3384659 0.9429048 +0.5050551 0.3384659 0.9429048 +0.5370987 0.3384659 0.9429048 +0.5668815 0.3384659 0.9429048 +0.5947903 0.3384659 0.9429048 +0.6211144 0.3384659 0.9429048 +0.6460766 0.3384659 0.9429048 +0.6698526 0.3384659 0.9429048 +0.6925839 0.3384659 0.9429048 +0.7143866 0.3384659 0.9429048 +0.7353569 0.3384659 0.9429048 +0.7555758 0.3384659 0.9429048 +0.7751122 0.3384659 0.9429048 +0.7940252 0.3384659 0.9429048 +0.8123661 0.3384659 0.9429048 +0.8301795 0.3384659 0.9429048 +0.8475045 0.3384659 0.9429048 +0.8643761 0.3384659 0.9429048 +0.880825 0.3384659 0.9429048 +0.8968787 0.3384659 0.9429048 +0.9125621 0.3384659 0.9429048 +0.9278974 0.3384659 0.9429048 +0.9429048 0.3384659 0.9429048 +0.9576028 0.3384659 0.9429048 +0.9720079 0.3384659 0.9429048 +0.9861357 0.3384659 0.9429048 +1 0.3384659 0.9429048 +0 0.3885728 0.9429048 +0.1939468 0.3885728 0.9429048 +0.2773041 0.3885728 0.9429048 +0.3384659 0.3885728 0.9429048 +0.3885728 0.3885728 0.9429048 +0.4317928 0.3885728 0.9429048 +0.470214 0.3885728 0.9429048 +0.5050551 0.3885728 0.9429048 +0.5370987 0.3885728 0.9429048 +0.5668815 0.3885728 0.9429048 +0.5947903 0.3885728 0.9429048 +0.6211144 0.3885728 0.9429048 +0.6460766 0.3885728 0.9429048 +0.6698526 0.3885728 0.9429048 +0.6925839 0.3885728 0.9429048 +0.7143866 0.3885728 0.9429048 +0.7353569 0.3885728 0.9429048 +0.7555758 0.3885728 0.9429048 +0.7751122 0.3885728 0.9429048 +0.7940252 0.3885728 0.9429048 +0.8123661 0.3885728 0.9429048 +0.8301795 0.3885728 0.9429048 +0.8475045 0.3885728 0.9429048 +0.8643761 0.3885728 0.9429048 +0.880825 0.3885728 0.9429048 +0.8968787 0.3885728 0.9429048 +0.9125621 0.3885728 0.9429048 +0.9278974 0.3885728 0.9429048 +0.9429048 0.3885728 0.9429048 +0.9576028 0.3885728 0.9429048 +0.9720079 0.3885728 0.9429048 +0.9861357 0.3885728 0.9429048 +1 0.3885728 0.9429048 +0 0.4317928 0.9429048 +0.1939468 0.4317928 0.9429048 +0.2773041 0.4317928 0.9429048 +0.3384659 0.4317928 0.9429048 +0.3885728 0.4317928 0.9429048 +0.4317928 0.4317928 0.9429048 +0.470214 0.4317928 0.9429048 +0.5050551 0.4317928 0.9429048 +0.5370987 0.4317928 0.9429048 +0.5668815 0.4317928 0.9429048 +0.5947903 0.4317928 0.9429048 +0.6211144 0.4317928 0.9429048 +0.6460766 0.4317928 0.9429048 +0.6698526 0.4317928 0.9429048 +0.6925839 0.4317928 0.9429048 +0.7143866 0.4317928 0.9429048 +0.7353569 0.4317928 0.9429048 +0.7555758 0.4317928 0.9429048 +0.7751122 0.4317928 0.9429048 +0.7940252 0.4317928 0.9429048 +0.8123661 0.4317928 0.9429048 +0.8301795 0.4317928 0.9429048 +0.8475045 0.4317928 0.9429048 +0.8643761 0.4317928 0.9429048 +0.880825 0.4317928 0.9429048 +0.8968787 0.4317928 0.9429048 +0.9125621 0.4317928 0.9429048 +0.9278974 0.4317928 0.9429048 +0.9429048 0.4317928 0.9429048 +0.9576028 0.4317928 0.9429048 +0.9720079 0.4317928 0.9429048 +0.9861357 0.4317928 0.9429048 +1 0.4317928 0.9429048 +0 0.470214 0.9429048 +0.1939468 0.470214 0.9429048 +0.2773041 0.470214 0.9429048 +0.3384659 0.470214 0.9429048 +0.3885728 0.470214 0.9429048 +0.4317928 0.470214 0.9429048 +0.470214 0.470214 0.9429048 +0.5050551 0.470214 0.9429048 +0.5370987 0.470214 0.9429048 +0.5668815 0.470214 0.9429048 +0.5947903 0.470214 0.9429048 +0.6211144 0.470214 0.9429048 +0.6460766 0.470214 0.9429048 +0.6698526 0.470214 0.9429048 +0.6925839 0.470214 0.9429048 +0.7143866 0.470214 0.9429048 +0.7353569 0.470214 0.9429048 +0.7555758 0.470214 0.9429048 +0.7751122 0.470214 0.9429048 +0.7940252 0.470214 0.9429048 +0.8123661 0.470214 0.9429048 +0.8301795 0.470214 0.9429048 +0.8475045 0.470214 0.9429048 +0.8643761 0.470214 0.9429048 +0.880825 0.470214 0.9429048 +0.8968787 0.470214 0.9429048 +0.9125621 0.470214 0.9429048 +0.9278974 0.470214 0.9429048 +0.9429048 0.470214 0.9429048 +0.9576028 0.470214 0.9429048 +0.9720079 0.470214 0.9429048 +0.9861357 0.470214 0.9429048 +1 0.470214 0.9429048 +0 0.5050551 0.9429048 +0.1939468 0.5050551 0.9429048 +0.2773041 0.5050551 0.9429048 +0.3384659 0.5050551 0.9429048 +0.3885728 0.5050551 0.9429048 +0.4317928 0.5050551 0.9429048 +0.470214 0.5050551 0.9429048 +0.5050551 0.5050551 0.9429048 +0.5370987 0.5050551 0.9429048 +0.5668815 0.5050551 0.9429048 +0.5947903 0.5050551 0.9429048 +0.6211144 0.5050551 0.9429048 +0.6460766 0.5050551 0.9429048 +0.6698526 0.5050551 0.9429048 +0.6925839 0.5050551 0.9429048 +0.7143866 0.5050551 0.9429048 +0.7353569 0.5050551 0.9429048 +0.7555758 0.5050551 0.9429048 +0.7751122 0.5050551 0.9429048 +0.7940252 0.5050551 0.9429048 +0.8123661 0.5050551 0.9429048 +0.8301795 0.5050551 0.9429048 +0.8475045 0.5050551 0.9429048 +0.8643761 0.5050551 0.9429048 +0.880825 0.5050551 0.9429048 +0.8968787 0.5050551 0.9429048 +0.9125621 0.5050551 0.9429048 +0.9278974 0.5050551 0.9429048 +0.9429048 0.5050551 0.9429048 +0.9576028 0.5050551 0.9429048 +0.9720079 0.5050551 0.9429048 +0.9861357 0.5050551 0.9429048 +1 0.5050551 0.9429048 +0 0.5370987 0.9429048 +0.1939468 0.5370987 0.9429048 +0.2773041 0.5370987 0.9429048 +0.3384659 0.5370987 0.9429048 +0.3885728 0.5370987 0.9429048 +0.4317928 0.5370987 0.9429048 +0.470214 0.5370987 0.9429048 +0.5050551 0.5370987 0.9429048 +0.5370987 0.5370987 0.9429048 +0.5668815 0.5370987 0.9429048 +0.5947903 0.5370987 0.9429048 +0.6211144 0.5370987 0.9429048 +0.6460766 0.5370987 0.9429048 +0.6698526 0.5370987 0.9429048 +0.6925839 0.5370987 0.9429048 +0.7143866 0.5370987 0.9429048 +0.7353569 0.5370987 0.9429048 +0.7555758 0.5370987 0.9429048 +0.7751122 0.5370987 0.9429048 +0.7940252 0.5370987 0.9429048 +0.8123661 0.5370987 0.9429048 +0.8301795 0.5370987 0.9429048 +0.8475045 0.5370987 0.9429048 +0.8643761 0.5370987 0.9429048 +0.880825 0.5370987 0.9429048 +0.8968787 0.5370987 0.9429048 +0.9125621 0.5370987 0.9429048 +0.9278974 0.5370987 0.9429048 +0.9429048 0.5370987 0.9429048 +0.9576028 0.5370987 0.9429048 +0.9720079 0.5370987 0.9429048 +0.9861357 0.5370987 0.9429048 +1 0.5370987 0.9429048 +0 0.5668815 0.9429048 +0.1939468 0.5668815 0.9429048 +0.2773041 0.5668815 0.9429048 +0.3384659 0.5668815 0.9429048 +0.3885728 0.5668815 0.9429048 +0.4317928 0.5668815 0.9429048 +0.470214 0.5668815 0.9429048 +0.5050551 0.5668815 0.9429048 +0.5370987 0.5668815 0.9429048 +0.5668815 0.5668815 0.9429048 +0.5947903 0.5668815 0.9429048 +0.6211144 0.5668815 0.9429048 +0.6460766 0.5668815 0.9429048 +0.6698526 0.5668815 0.9429048 +0.6925839 0.5668815 0.9429048 +0.7143866 0.5668815 0.9429048 +0.7353569 0.5668815 0.9429048 +0.7555758 0.5668815 0.9429048 +0.7751122 0.5668815 0.9429048 +0.7940252 0.5668815 0.9429048 +0.8123661 0.5668815 0.9429048 +0.8301795 0.5668815 0.9429048 +0.8475045 0.5668815 0.9429048 +0.8643761 0.5668815 0.9429048 +0.880825 0.5668815 0.9429048 +0.8968787 0.5668815 0.9429048 +0.9125621 0.5668815 0.9429048 +0.9278974 0.5668815 0.9429048 +0.9429048 0.5668815 0.9429048 +0.9576028 0.5668815 0.9429048 +0.9720079 0.5668815 0.9429048 +0.9861357 0.5668815 0.9429048 +1 0.5668815 0.9429048 +0 0.5947903 0.9429048 +0.1939468 0.5947903 0.9429048 +0.2773041 0.5947903 0.9429048 +0.3384659 0.5947903 0.9429048 +0.3885728 0.5947903 0.9429048 +0.4317928 0.5947903 0.9429048 +0.470214 0.5947903 0.9429048 +0.5050551 0.5947903 0.9429048 +0.5370987 0.5947903 0.9429048 +0.5668815 0.5947903 0.9429048 +0.5947903 0.5947903 0.9429048 +0.6211144 0.5947903 0.9429048 +0.6460766 0.5947903 0.9429048 +0.6698526 0.5947903 0.9429048 +0.6925839 0.5947903 0.9429048 +0.7143866 0.5947903 0.9429048 +0.7353569 0.5947903 0.9429048 +0.7555758 0.5947903 0.9429048 +0.7751122 0.5947903 0.9429048 +0.7940252 0.5947903 0.9429048 +0.8123661 0.5947903 0.9429048 +0.8301795 0.5947903 0.9429048 +0.8475045 0.5947903 0.9429048 +0.8643761 0.5947903 0.9429048 +0.880825 0.5947903 0.9429048 +0.8968787 0.5947903 0.9429048 +0.9125621 0.5947903 0.9429048 +0.9278974 0.5947903 0.9429048 +0.9429048 0.5947903 0.9429048 +0.9576028 0.5947903 0.9429048 +0.9720079 0.5947903 0.9429048 +0.9861357 0.5947903 0.9429048 +1 0.5947903 0.9429048 +0 0.6211144 0.9429048 +0.1939468 0.6211144 0.9429048 +0.2773041 0.6211144 0.9429048 +0.3384659 0.6211144 0.9429048 +0.3885728 0.6211144 0.9429048 +0.4317928 0.6211144 0.9429048 +0.470214 0.6211144 0.9429048 +0.5050551 0.6211144 0.9429048 +0.5370987 0.6211144 0.9429048 +0.5668815 0.6211144 0.9429048 +0.5947903 0.6211144 0.9429048 +0.6211144 0.6211144 0.9429048 +0.6460766 0.6211144 0.9429048 +0.6698526 0.6211144 0.9429048 +0.6925839 0.6211144 0.9429048 +0.7143866 0.6211144 0.9429048 +0.7353569 0.6211144 0.9429048 +0.7555758 0.6211144 0.9429048 +0.7751122 0.6211144 0.9429048 +0.7940252 0.6211144 0.9429048 +0.8123661 0.6211144 0.9429048 +0.8301795 0.6211144 0.9429048 +0.8475045 0.6211144 0.9429048 +0.8643761 0.6211144 0.9429048 +0.880825 0.6211144 0.9429048 +0.8968787 0.6211144 0.9429048 +0.9125621 0.6211144 0.9429048 +0.9278974 0.6211144 0.9429048 +0.9429048 0.6211144 0.9429048 +0.9576028 0.6211144 0.9429048 +0.9720079 0.6211144 0.9429048 +0.9861357 0.6211144 0.9429048 +1 0.6211144 0.9429048 +0 0.6460766 0.9429048 +0.1939468 0.6460766 0.9429048 +0.2773041 0.6460766 0.9429048 +0.3384659 0.6460766 0.9429048 +0.3885728 0.6460766 0.9429048 +0.4317928 0.6460766 0.9429048 +0.470214 0.6460766 0.9429048 +0.5050551 0.6460766 0.9429048 +0.5370987 0.6460766 0.9429048 +0.5668815 0.6460766 0.9429048 +0.5947903 0.6460766 0.9429048 +0.6211144 0.6460766 0.9429048 +0.6460766 0.6460766 0.9429048 +0.6698526 0.6460766 0.9429048 +0.6925839 0.6460766 0.9429048 +0.7143866 0.6460766 0.9429048 +0.7353569 0.6460766 0.9429048 +0.7555758 0.6460766 0.9429048 +0.7751122 0.6460766 0.9429048 +0.7940252 0.6460766 0.9429048 +0.8123661 0.6460766 0.9429048 +0.8301795 0.6460766 0.9429048 +0.8475045 0.6460766 0.9429048 +0.8643761 0.6460766 0.9429048 +0.880825 0.6460766 0.9429048 +0.8968787 0.6460766 0.9429048 +0.9125621 0.6460766 0.9429048 +0.9278974 0.6460766 0.9429048 +0.9429048 0.6460766 0.9429048 +0.9576028 0.6460766 0.9429048 +0.9720079 0.6460766 0.9429048 +0.9861357 0.6460766 0.9429048 +1 0.6460766 0.9429048 +0 0.6698526 0.9429048 +0.1939468 0.6698526 0.9429048 +0.2773041 0.6698526 0.9429048 +0.3384659 0.6698526 0.9429048 +0.3885728 0.6698526 0.9429048 +0.4317928 0.6698526 0.9429048 +0.470214 0.6698526 0.9429048 +0.5050551 0.6698526 0.9429048 +0.5370987 0.6698526 0.9429048 +0.5668815 0.6698526 0.9429048 +0.5947903 0.6698526 0.9429048 +0.6211144 0.6698526 0.9429048 +0.6460766 0.6698526 0.9429048 +0.6698526 0.6698526 0.9429048 +0.6925839 0.6698526 0.9429048 +0.7143866 0.6698526 0.9429048 +0.7353569 0.6698526 0.9429048 +0.7555758 0.6698526 0.9429048 +0.7751122 0.6698526 0.9429048 +0.7940252 0.6698526 0.9429048 +0.8123661 0.6698526 0.9429048 +0.8301795 0.6698526 0.9429048 +0.8475045 0.6698526 0.9429048 +0.8643761 0.6698526 0.9429048 +0.880825 0.6698526 0.9429048 +0.8968787 0.6698526 0.9429048 +0.9125621 0.6698526 0.9429048 +0.9278974 0.6698526 0.9429048 +0.9429048 0.6698526 0.9429048 +0.9576028 0.6698526 0.9429048 +0.9720079 0.6698526 0.9429048 +0.9861357 0.6698526 0.9429048 +1 0.6698526 0.9429048 +0 0.6925839 0.9429048 +0.1939468 0.6925839 0.9429048 +0.2773041 0.6925839 0.9429048 +0.3384659 0.6925839 0.9429048 +0.3885728 0.6925839 0.9429048 +0.4317928 0.6925839 0.9429048 +0.470214 0.6925839 0.9429048 +0.5050551 0.6925839 0.9429048 +0.5370987 0.6925839 0.9429048 +0.5668815 0.6925839 0.9429048 +0.5947903 0.6925839 0.9429048 +0.6211144 0.6925839 0.9429048 +0.6460766 0.6925839 0.9429048 +0.6698526 0.6925839 0.9429048 +0.6925839 0.6925839 0.9429048 +0.7143866 0.6925839 0.9429048 +0.7353569 0.6925839 0.9429048 +0.7555758 0.6925839 0.9429048 +0.7751122 0.6925839 0.9429048 +0.7940252 0.6925839 0.9429048 +0.8123661 0.6925839 0.9429048 +0.8301795 0.6925839 0.9429048 +0.8475045 0.6925839 0.9429048 +0.8643761 0.6925839 0.9429048 +0.880825 0.6925839 0.9429048 +0.8968787 0.6925839 0.9429048 +0.9125621 0.6925839 0.9429048 +0.9278974 0.6925839 0.9429048 +0.9429048 0.6925839 0.9429048 +0.9576028 0.6925839 0.9429048 +0.9720079 0.6925839 0.9429048 +0.9861357 0.6925839 0.9429048 +1 0.6925839 0.9429048 +0 0.7143866 0.9429048 +0.1939468 0.7143866 0.9429048 +0.2773041 0.7143866 0.9429048 +0.3384659 0.7143866 0.9429048 +0.3885728 0.7143866 0.9429048 +0.4317928 0.7143866 0.9429048 +0.470214 0.7143866 0.9429048 +0.5050551 0.7143866 0.9429048 +0.5370987 0.7143866 0.9429048 +0.5668815 0.7143866 0.9429048 +0.5947903 0.7143866 0.9429048 +0.6211144 0.7143866 0.9429048 +0.6460766 0.7143866 0.9429048 +0.6698526 0.7143866 0.9429048 +0.6925839 0.7143866 0.9429048 +0.7143866 0.7143866 0.9429048 +0.7353569 0.7143866 0.9429048 +0.7555758 0.7143866 0.9429048 +0.7751122 0.7143866 0.9429048 +0.7940252 0.7143866 0.9429048 +0.8123661 0.7143866 0.9429048 +0.8301795 0.7143866 0.9429048 +0.8475045 0.7143866 0.9429048 +0.8643761 0.7143866 0.9429048 +0.880825 0.7143866 0.9429048 +0.8968787 0.7143866 0.9429048 +0.9125621 0.7143866 0.9429048 +0.9278974 0.7143866 0.9429048 +0.9429048 0.7143866 0.9429048 +0.9576028 0.7143866 0.9429048 +0.9720079 0.7143866 0.9429048 +0.9861357 0.7143866 0.9429048 +1 0.7143866 0.9429048 +0 0.7353569 0.9429048 +0.1939468 0.7353569 0.9429048 +0.2773041 0.7353569 0.9429048 +0.3384659 0.7353569 0.9429048 +0.3885728 0.7353569 0.9429048 +0.4317928 0.7353569 0.9429048 +0.470214 0.7353569 0.9429048 +0.5050551 0.7353569 0.9429048 +0.5370987 0.7353569 0.9429048 +0.5668815 0.7353569 0.9429048 +0.5947903 0.7353569 0.9429048 +0.6211144 0.7353569 0.9429048 +0.6460766 0.7353569 0.9429048 +0.6698526 0.7353569 0.9429048 +0.6925839 0.7353569 0.9429048 +0.7143866 0.7353569 0.9429048 +0.7353569 0.7353569 0.9429048 +0.7555758 0.7353569 0.9429048 +0.7751122 0.7353569 0.9429048 +0.7940252 0.7353569 0.9429048 +0.8123661 0.7353569 0.9429048 +0.8301795 0.7353569 0.9429048 +0.8475045 0.7353569 0.9429048 +0.8643761 0.7353569 0.9429048 +0.880825 0.7353569 0.9429048 +0.8968787 0.7353569 0.9429048 +0.9125621 0.7353569 0.9429048 +0.9278974 0.7353569 0.9429048 +0.9429048 0.7353569 0.9429048 +0.9576028 0.7353569 0.9429048 +0.9720079 0.7353569 0.9429048 +0.9861357 0.7353569 0.9429048 +1 0.7353569 0.9429048 +0 0.7555758 0.9429048 +0.1939468 0.7555758 0.9429048 +0.2773041 0.7555758 0.9429048 +0.3384659 0.7555758 0.9429048 +0.3885728 0.7555758 0.9429048 +0.4317928 0.7555758 0.9429048 +0.470214 0.7555758 0.9429048 +0.5050551 0.7555758 0.9429048 +0.5370987 0.7555758 0.9429048 +0.5668815 0.7555758 0.9429048 +0.5947903 0.7555758 0.9429048 +0.6211144 0.7555758 0.9429048 +0.6460766 0.7555758 0.9429048 +0.6698526 0.7555758 0.9429048 +0.6925839 0.7555758 0.9429048 +0.7143866 0.7555758 0.9429048 +0.7353569 0.7555758 0.9429048 +0.7555758 0.7555758 0.9429048 +0.7751122 0.7555758 0.9429048 +0.7940252 0.7555758 0.9429048 +0.8123661 0.7555758 0.9429048 +0.8301795 0.7555758 0.9429048 +0.8475045 0.7555758 0.9429048 +0.8643761 0.7555758 0.9429048 +0.880825 0.7555758 0.9429048 +0.8968787 0.7555758 0.9429048 +0.9125621 0.7555758 0.9429048 +0.9278974 0.7555758 0.9429048 +0.9429048 0.7555758 0.9429048 +0.9576028 0.7555758 0.9429048 +0.9720079 0.7555758 0.9429048 +0.9861357 0.7555758 0.9429048 +1 0.7555758 0.9429048 +0 0.7751122 0.9429048 +0.1939468 0.7751122 0.9429048 +0.2773041 0.7751122 0.9429048 +0.3384659 0.7751122 0.9429048 +0.3885728 0.7751122 0.9429048 +0.4317928 0.7751122 0.9429048 +0.470214 0.7751122 0.9429048 +0.5050551 0.7751122 0.9429048 +0.5370987 0.7751122 0.9429048 +0.5668815 0.7751122 0.9429048 +0.5947903 0.7751122 0.9429048 +0.6211144 0.7751122 0.9429048 +0.6460766 0.7751122 0.9429048 +0.6698526 0.7751122 0.9429048 +0.6925839 0.7751122 0.9429048 +0.7143866 0.7751122 0.9429048 +0.7353569 0.7751122 0.9429048 +0.7555758 0.7751122 0.9429048 +0.7751122 0.7751122 0.9429048 +0.7940252 0.7751122 0.9429048 +0.8123661 0.7751122 0.9429048 +0.8301795 0.7751122 0.9429048 +0.8475045 0.7751122 0.9429048 +0.8643761 0.7751122 0.9429048 +0.880825 0.7751122 0.9429048 +0.8968787 0.7751122 0.9429048 +0.9125621 0.7751122 0.9429048 +0.9278974 0.7751122 0.9429048 +0.9429048 0.7751122 0.9429048 +0.9576028 0.7751122 0.9429048 +0.9720079 0.7751122 0.9429048 +0.9861357 0.7751122 0.9429048 +1 0.7751122 0.9429048 +0 0.7940252 0.9429048 +0.1939468 0.7940252 0.9429048 +0.2773041 0.7940252 0.9429048 +0.3384659 0.7940252 0.9429048 +0.3885728 0.7940252 0.9429048 +0.4317928 0.7940252 0.9429048 +0.470214 0.7940252 0.9429048 +0.5050551 0.7940252 0.9429048 +0.5370987 0.7940252 0.9429048 +0.5668815 0.7940252 0.9429048 +0.5947903 0.7940252 0.9429048 +0.6211144 0.7940252 0.9429048 +0.6460766 0.7940252 0.9429048 +0.6698526 0.7940252 0.9429048 +0.6925839 0.7940252 0.9429048 +0.7143866 0.7940252 0.9429048 +0.7353569 0.7940252 0.9429048 +0.7555758 0.7940252 0.9429048 +0.7751122 0.7940252 0.9429048 +0.7940252 0.7940252 0.9429048 +0.8123661 0.7940252 0.9429048 +0.8301795 0.7940252 0.9429048 +0.8475045 0.7940252 0.9429048 +0.8643761 0.7940252 0.9429048 +0.880825 0.7940252 0.9429048 +0.8968787 0.7940252 0.9429048 +0.9125621 0.7940252 0.9429048 +0.9278974 0.7940252 0.9429048 +0.9429048 0.7940252 0.9429048 +0.9576028 0.7940252 0.9429048 +0.9720079 0.7940252 0.9429048 +0.9861357 0.7940252 0.9429048 +1 0.7940252 0.9429048 +0 0.8123661 0.9429048 +0.1939468 0.8123661 0.9429048 +0.2773041 0.8123661 0.9429048 +0.3384659 0.8123661 0.9429048 +0.3885728 0.8123661 0.9429048 +0.4317928 0.8123661 0.9429048 +0.470214 0.8123661 0.9429048 +0.5050551 0.8123661 0.9429048 +0.5370987 0.8123661 0.9429048 +0.5668815 0.8123661 0.9429048 +0.5947903 0.8123661 0.9429048 +0.6211144 0.8123661 0.9429048 +0.6460766 0.8123661 0.9429048 +0.6698526 0.8123661 0.9429048 +0.6925839 0.8123661 0.9429048 +0.7143866 0.8123661 0.9429048 +0.7353569 0.8123661 0.9429048 +0.7555758 0.8123661 0.9429048 +0.7751122 0.8123661 0.9429048 +0.7940252 0.8123661 0.9429048 +0.8123661 0.8123661 0.9429048 +0.8301795 0.8123661 0.9429048 +0.8475045 0.8123661 0.9429048 +0.8643761 0.8123661 0.9429048 +0.880825 0.8123661 0.9429048 +0.8968787 0.8123661 0.9429048 +0.9125621 0.8123661 0.9429048 +0.9278974 0.8123661 0.9429048 +0.9429048 0.8123661 0.9429048 +0.9576028 0.8123661 0.9429048 +0.9720079 0.8123661 0.9429048 +0.9861357 0.8123661 0.9429048 +1 0.8123661 0.9429048 +0 0.8301795 0.9429048 +0.1939468 0.8301795 0.9429048 +0.2773041 0.8301795 0.9429048 +0.3384659 0.8301795 0.9429048 +0.3885728 0.8301795 0.9429048 +0.4317928 0.8301795 0.9429048 +0.470214 0.8301795 0.9429048 +0.5050551 0.8301795 0.9429048 +0.5370987 0.8301795 0.9429048 +0.5668815 0.8301795 0.9429048 +0.5947903 0.8301795 0.9429048 +0.6211144 0.8301795 0.9429048 +0.6460766 0.8301795 0.9429048 +0.6698526 0.8301795 0.9429048 +0.6925839 0.8301795 0.9429048 +0.7143866 0.8301795 0.9429048 +0.7353569 0.8301795 0.9429048 +0.7555758 0.8301795 0.9429048 +0.7751122 0.8301795 0.9429048 +0.7940252 0.8301795 0.9429048 +0.8123661 0.8301795 0.9429048 +0.8301795 0.8301795 0.9429048 +0.8475045 0.8301795 0.9429048 +0.8643761 0.8301795 0.9429048 +0.880825 0.8301795 0.9429048 +0.8968787 0.8301795 0.9429048 +0.9125621 0.8301795 0.9429048 +0.9278974 0.8301795 0.9429048 +0.9429048 0.8301795 0.9429048 +0.9576028 0.8301795 0.9429048 +0.9720079 0.8301795 0.9429048 +0.9861357 0.8301795 0.9429048 +1 0.8301795 0.9429048 +0 0.8475045 0.9429048 +0.1939468 0.8475045 0.9429048 +0.2773041 0.8475045 0.9429048 +0.3384659 0.8475045 0.9429048 +0.3885728 0.8475045 0.9429048 +0.4317928 0.8475045 0.9429048 +0.470214 0.8475045 0.9429048 +0.5050551 0.8475045 0.9429048 +0.5370987 0.8475045 0.9429048 +0.5668815 0.8475045 0.9429048 +0.5947903 0.8475045 0.9429048 +0.6211144 0.8475045 0.9429048 +0.6460766 0.8475045 0.9429048 +0.6698526 0.8475045 0.9429048 +0.6925839 0.8475045 0.9429048 +0.7143866 0.8475045 0.9429048 +0.7353569 0.8475045 0.9429048 +0.7555758 0.8475045 0.9429048 +0.7751122 0.8475045 0.9429048 +0.7940252 0.8475045 0.9429048 +0.8123661 0.8475045 0.9429048 +0.8301795 0.8475045 0.9429048 +0.8475045 0.8475045 0.9429048 +0.8643761 0.8475045 0.9429048 +0.880825 0.8475045 0.9429048 +0.8968787 0.8475045 0.9429048 +0.9125621 0.8475045 0.9429048 +0.9278974 0.8475045 0.9429048 +0.9429048 0.8475045 0.9429048 +0.9576028 0.8475045 0.9429048 +0.9720079 0.8475045 0.9429048 +0.9861357 0.8475045 0.9429048 +1 0.8475045 0.9429048 +0 0.8643761 0.9429048 +0.1939468 0.8643761 0.9429048 +0.2773041 0.8643761 0.9429048 +0.3384659 0.8643761 0.9429048 +0.3885728 0.8643761 0.9429048 +0.4317928 0.8643761 0.9429048 +0.470214 0.8643761 0.9429048 +0.5050551 0.8643761 0.9429048 +0.5370987 0.8643761 0.9429048 +0.5668815 0.8643761 0.9429048 +0.5947903 0.8643761 0.9429048 +0.6211144 0.8643761 0.9429048 +0.6460766 0.8643761 0.9429048 +0.6698526 0.8643761 0.9429048 +0.6925839 0.8643761 0.9429048 +0.7143866 0.8643761 0.9429048 +0.7353569 0.8643761 0.9429048 +0.7555758 0.8643761 0.9429048 +0.7751122 0.8643761 0.9429048 +0.7940252 0.8643761 0.9429048 +0.8123661 0.8643761 0.9429048 +0.8301795 0.8643761 0.9429048 +0.8475045 0.8643761 0.9429048 +0.8643761 0.8643761 0.9429048 +0.880825 0.8643761 0.9429048 +0.8968787 0.8643761 0.9429048 +0.9125621 0.8643761 0.9429048 +0.9278974 0.8643761 0.9429048 +0.9429048 0.8643761 0.9429048 +0.9576028 0.8643761 0.9429048 +0.9720079 0.8643761 0.9429048 +0.9861357 0.8643761 0.9429048 +1 0.8643761 0.9429048 +0 0.880825 0.9429048 +0.1939468 0.880825 0.9429048 +0.2773041 0.880825 0.9429048 +0.3384659 0.880825 0.9429048 +0.3885728 0.880825 0.9429048 +0.4317928 0.880825 0.9429048 +0.470214 0.880825 0.9429048 +0.5050551 0.880825 0.9429048 +0.5370987 0.880825 0.9429048 +0.5668815 0.880825 0.9429048 +0.5947903 0.880825 0.9429048 +0.6211144 0.880825 0.9429048 +0.6460766 0.880825 0.9429048 +0.6698526 0.880825 0.9429048 +0.6925839 0.880825 0.9429048 +0.7143866 0.880825 0.9429048 +0.7353569 0.880825 0.9429048 +0.7555758 0.880825 0.9429048 +0.7751122 0.880825 0.9429048 +0.7940252 0.880825 0.9429048 +0.8123661 0.880825 0.9429048 +0.8301795 0.880825 0.9429048 +0.8475045 0.880825 0.9429048 +0.8643761 0.880825 0.9429048 +0.880825 0.880825 0.9429048 +0.8968787 0.880825 0.9429048 +0.9125621 0.880825 0.9429048 +0.9278974 0.880825 0.9429048 +0.9429048 0.880825 0.9429048 +0.9576028 0.880825 0.9429048 +0.9720079 0.880825 0.9429048 +0.9861357 0.880825 0.9429048 +1 0.880825 0.9429048 +0 0.8968787 0.9429048 +0.1939468 0.8968787 0.9429048 +0.2773041 0.8968787 0.9429048 +0.3384659 0.8968787 0.9429048 +0.3885728 0.8968787 0.9429048 +0.4317928 0.8968787 0.9429048 +0.470214 0.8968787 0.9429048 +0.5050551 0.8968787 0.9429048 +0.5370987 0.8968787 0.9429048 +0.5668815 0.8968787 0.9429048 +0.5947903 0.8968787 0.9429048 +0.6211144 0.8968787 0.9429048 +0.6460766 0.8968787 0.9429048 +0.6698526 0.8968787 0.9429048 +0.6925839 0.8968787 0.9429048 +0.7143866 0.8968787 0.9429048 +0.7353569 0.8968787 0.9429048 +0.7555758 0.8968787 0.9429048 +0.7751122 0.8968787 0.9429048 +0.7940252 0.8968787 0.9429048 +0.8123661 0.8968787 0.9429048 +0.8301795 0.8968787 0.9429048 +0.8475045 0.8968787 0.9429048 +0.8643761 0.8968787 0.9429048 +0.880825 0.8968787 0.9429048 +0.8968787 0.8968787 0.9429048 +0.9125621 0.8968787 0.9429048 +0.9278974 0.8968787 0.9429048 +0.9429048 0.8968787 0.9429048 +0.9576028 0.8968787 0.9429048 +0.9720079 0.8968787 0.9429048 +0.9861357 0.8968787 0.9429048 +1 0.8968787 0.9429048 +0 0.9125621 0.9429048 +0.1939468 0.9125621 0.9429048 +0.2773041 0.9125621 0.9429048 +0.3384659 0.9125621 0.9429048 +0.3885728 0.9125621 0.9429048 +0.4317928 0.9125621 0.9429048 +0.470214 0.9125621 0.9429048 +0.5050551 0.9125621 0.9429048 +0.5370987 0.9125621 0.9429048 +0.5668815 0.9125621 0.9429048 +0.5947903 0.9125621 0.9429048 +0.6211144 0.9125621 0.9429048 +0.6460766 0.9125621 0.9429048 +0.6698526 0.9125621 0.9429048 +0.6925839 0.9125621 0.9429048 +0.7143866 0.9125621 0.9429048 +0.7353569 0.9125621 0.9429048 +0.7555758 0.9125621 0.9429048 +0.7751122 0.9125621 0.9429048 +0.7940252 0.9125621 0.9429048 +0.8123661 0.9125621 0.9429048 +0.8301795 0.9125621 0.9429048 +0.8475045 0.9125621 0.9429048 +0.8643761 0.9125621 0.9429048 +0.880825 0.9125621 0.9429048 +0.8968787 0.9125621 0.9429048 +0.9125621 0.9125621 0.9429048 +0.9278974 0.9125621 0.9429048 +0.9429048 0.9125621 0.9429048 +0.9576028 0.9125621 0.9429048 +0.9720079 0.9125621 0.9429048 +0.9861357 0.9125621 0.9429048 +1 0.9125621 0.9429048 +0 0.9278974 0.9429048 +0.1939468 0.9278974 0.9429048 +0.2773041 0.9278974 0.9429048 +0.3384659 0.9278974 0.9429048 +0.3885728 0.9278974 0.9429048 +0.4317928 0.9278974 0.9429048 +0.470214 0.9278974 0.9429048 +0.5050551 0.9278974 0.9429048 +0.5370987 0.9278974 0.9429048 +0.5668815 0.9278974 0.9429048 +0.5947903 0.9278974 0.9429048 +0.6211144 0.9278974 0.9429048 +0.6460766 0.9278974 0.9429048 +0.6698526 0.9278974 0.9429048 +0.6925839 0.9278974 0.9429048 +0.7143866 0.9278974 0.9429048 +0.7353569 0.9278974 0.9429048 +0.7555758 0.9278974 0.9429048 +0.7751122 0.9278974 0.9429048 +0.7940252 0.9278974 0.9429048 +0.8123661 0.9278974 0.9429048 +0.8301795 0.9278974 0.9429048 +0.8475045 0.9278974 0.9429048 +0.8643761 0.9278974 0.9429048 +0.880825 0.9278974 0.9429048 +0.8968787 0.9278974 0.9429048 +0.9125621 0.9278974 0.9429048 +0.9278974 0.9278974 0.9429048 +0.9429048 0.9278974 0.9429048 +0.9576028 0.9278974 0.9429048 +0.9720079 0.9278974 0.9429048 +0.9861357 0.9278974 0.9429048 +1 0.9278974 0.9429048 +0 0.9429048 0.9429048 +0.1939468 0.9429048 0.9429048 +0.2773041 0.9429048 0.9429048 +0.3384659 0.9429048 0.9429048 +0.3885728 0.9429048 0.9429048 +0.4317928 0.9429048 0.9429048 +0.470214 0.9429048 0.9429048 +0.5050551 0.9429048 0.9429048 +0.5370987 0.9429048 0.9429048 +0.5668815 0.9429048 0.9429048 +0.5947903 0.9429048 0.9429048 +0.6211144 0.9429048 0.9429048 +0.6460766 0.9429048 0.9429048 +0.6698526 0.9429048 0.9429048 +0.6925839 0.9429048 0.9429048 +0.7143866 0.9429048 0.9429048 +0.7353569 0.9429048 0.9429048 +0.7555758 0.9429048 0.9429048 +0.7751122 0.9429048 0.9429048 +0.7940252 0.9429048 0.9429048 +0.8123661 0.9429048 0.9429048 +0.8301795 0.9429048 0.9429048 +0.8475045 0.9429048 0.9429048 +0.8643761 0.9429048 0.9429048 +0.880825 0.9429048 0.9429048 +0.8968787 0.9429048 0.9429048 +0.9125621 0.9429048 0.9429048 +0.9278974 0.9429048 0.9429048 +0.9429048 0.9429048 0.9429048 +0.9576028 0.9429048 0.9429048 +0.9720079 0.9429048 0.9429048 +0.9861357 0.9429048 0.9429048 +1 0.9429048 0.9429048 +0 0.9576028 0.9429048 +0.1939468 0.9576028 0.9429048 +0.2773041 0.9576028 0.9429048 +0.3384659 0.9576028 0.9429048 +0.3885728 0.9576028 0.9429048 +0.4317928 0.9576028 0.9429048 +0.470214 0.9576028 0.9429048 +0.5050551 0.9576028 0.9429048 +0.5370987 0.9576028 0.9429048 +0.5668815 0.9576028 0.9429048 +0.5947903 0.9576028 0.9429048 +0.6211144 0.9576028 0.9429048 +0.6460766 0.9576028 0.9429048 +0.6698526 0.9576028 0.9429048 +0.6925839 0.9576028 0.9429048 +0.7143866 0.9576028 0.9429048 +0.7353569 0.9576028 0.9429048 +0.7555758 0.9576028 0.9429048 +0.7751122 0.9576028 0.9429048 +0.7940252 0.9576028 0.9429048 +0.8123661 0.9576028 0.9429048 +0.8301795 0.9576028 0.9429048 +0.8475045 0.9576028 0.9429048 +0.8643761 0.9576028 0.9429048 +0.880825 0.9576028 0.9429048 +0.8968787 0.9576028 0.9429048 +0.9125621 0.9576028 0.9429048 +0.9278974 0.9576028 0.9429048 +0.9429048 0.9576028 0.9429048 +0.9576028 0.9576028 0.9429048 +0.9720079 0.9576028 0.9429048 +0.9861357 0.9576028 0.9429048 +1 0.9576028 0.9429048 +0 0.9720079 0.9429048 +0.1939468 0.9720079 0.9429048 +0.2773041 0.9720079 0.9429048 +0.3384659 0.9720079 0.9429048 +0.3885728 0.9720079 0.9429048 +0.4317928 0.9720079 0.9429048 +0.470214 0.9720079 0.9429048 +0.5050551 0.9720079 0.9429048 +0.5370987 0.9720079 0.9429048 +0.5668815 0.9720079 0.9429048 +0.5947903 0.9720079 0.9429048 +0.6211144 0.9720079 0.9429048 +0.6460766 0.9720079 0.9429048 +0.6698526 0.9720079 0.9429048 +0.6925839 0.9720079 0.9429048 +0.7143866 0.9720079 0.9429048 +0.7353569 0.9720079 0.9429048 +0.7555758 0.9720079 0.9429048 +0.7751122 0.9720079 0.9429048 +0.7940252 0.9720079 0.9429048 +0.8123661 0.9720079 0.9429048 +0.8301795 0.9720079 0.9429048 +0.8475045 0.9720079 0.9429048 +0.8643761 0.9720079 0.9429048 +0.880825 0.9720079 0.9429048 +0.8968787 0.9720079 0.9429048 +0.9125621 0.9720079 0.9429048 +0.9278974 0.9720079 0.9429048 +0.9429048 0.9720079 0.9429048 +0.9576028 0.9720079 0.9429048 +0.9720079 0.9720079 0.9429048 +0.9861357 0.9720079 0.9429048 +1 0.9720079 0.9429048 +0 0.9861357 0.9429048 +0.1939468 0.9861357 0.9429048 +0.2773041 0.9861357 0.9429048 +0.3384659 0.9861357 0.9429048 +0.3885728 0.9861357 0.9429048 +0.4317928 0.9861357 0.9429048 +0.470214 0.9861357 0.9429048 +0.5050551 0.9861357 0.9429048 +0.5370987 0.9861357 0.9429048 +0.5668815 0.9861357 0.9429048 +0.5947903 0.9861357 0.9429048 +0.6211144 0.9861357 0.9429048 +0.6460766 0.9861357 0.9429048 +0.6698526 0.9861357 0.9429048 +0.6925839 0.9861357 0.9429048 +0.7143866 0.9861357 0.9429048 +0.7353569 0.9861357 0.9429048 +0.7555758 0.9861357 0.9429048 +0.7751122 0.9861357 0.9429048 +0.7940252 0.9861357 0.9429048 +0.8123661 0.9861357 0.9429048 +0.8301795 0.9861357 0.9429048 +0.8475045 0.9861357 0.9429048 +0.8643761 0.9861357 0.9429048 +0.880825 0.9861357 0.9429048 +0.8968787 0.9861357 0.9429048 +0.9125621 0.9861357 0.9429048 +0.9278974 0.9861357 0.9429048 +0.9429048 0.9861357 0.9429048 +0.9576028 0.9861357 0.9429048 +0.9720079 0.9861357 0.9429048 +0.9861357 0.9861357 0.9429048 +1 0.9861357 0.9429048 +0 1 0.9429048 +0.1939468 1 0.9429048 +0.2773041 1 0.9429048 +0.3384659 1 0.9429048 +0.3885728 1 0.9429048 +0.4317928 1 0.9429048 +0.470214 1 0.9429048 +0.5050551 1 0.9429048 +0.5370987 1 0.9429048 +0.5668815 1 0.9429048 +0.5947903 1 0.9429048 +0.6211144 1 0.9429048 +0.6460766 1 0.9429048 +0.6698526 1 0.9429048 +0.6925839 1 0.9429048 +0.7143866 1 0.9429048 +0.7353569 1 0.9429048 +0.7555758 1 0.9429048 +0.7751122 1 0.9429048 +0.7940252 1 0.9429048 +0.8123661 1 0.9429048 +0.8301795 1 0.9429048 +0.8475045 1 0.9429048 +0.8643761 1 0.9429048 +0.880825 1 0.9429048 +0.8968787 1 0.9429048 +0.9125621 1 0.9429048 +0.9278974 1 0.9429048 +0.9429048 1 0.9429048 +0.9576028 1 0.9429048 +0.9720079 1 0.9429048 +0.9861357 1 0.9429048 +1 1 0.9429048 +0 0 0.9576028 +0.1939468 0 0.9576028 +0.2773041 0 0.9576028 +0.3384659 0 0.9576028 +0.3885728 0 0.9576028 +0.4317928 0 0.9576028 +0.470214 0 0.9576028 +0.5050551 0 0.9576028 +0.5370987 0 0.9576028 +0.5668815 0 0.9576028 +0.5947903 0 0.9576028 +0.6211144 0 0.9576028 +0.6460766 0 0.9576028 +0.6698526 0 0.9576028 +0.6925839 0 0.9576028 +0.7143866 0 0.9576028 +0.7353569 0 0.9576028 +0.7555758 0 0.9576028 +0.7751122 0 0.9576028 +0.7940252 0 0.9576028 +0.8123661 0 0.9576028 +0.8301795 0 0.9576028 +0.8475045 0 0.9576028 +0.8643761 0 0.9576028 +0.880825 0 0.9576028 +0.8968787 0 0.9576028 +0.9125621 0 0.9576028 +0.9278974 0 0.9576028 +0.9429048 0 0.9576028 +0.9576028 0 0.9576028 +0.9720079 0 0.9576028 +0.9861357 0 0.9576028 +1 0 0.9576028 +0 0.1939468 0.9576028 +0.1939468 0.1939468 0.9576028 +0.2773041 0.1939468 0.9576028 +0.3384659 0.1939468 0.9576028 +0.3885728 0.1939468 0.9576028 +0.4317928 0.1939468 0.9576028 +0.470214 0.1939468 0.9576028 +0.5050551 0.1939468 0.9576028 +0.5370987 0.1939468 0.9576028 +0.5668815 0.1939468 0.9576028 +0.5947903 0.1939468 0.9576028 +0.6211144 0.1939468 0.9576028 +0.6460766 0.1939468 0.9576028 +0.6698526 0.1939468 0.9576028 +0.6925839 0.1939468 0.9576028 +0.7143866 0.1939468 0.9576028 +0.7353569 0.1939468 0.9576028 +0.7555758 0.1939468 0.9576028 +0.7751122 0.1939468 0.9576028 +0.7940252 0.1939468 0.9576028 +0.8123661 0.1939468 0.9576028 +0.8301795 0.1939468 0.9576028 +0.8475045 0.1939468 0.9576028 +0.8643761 0.1939468 0.9576028 +0.880825 0.1939468 0.9576028 +0.8968787 0.1939468 0.9576028 +0.9125621 0.1939468 0.9576028 +0.9278974 0.1939468 0.9576028 +0.9429048 0.1939468 0.9576028 +0.9576028 0.1939468 0.9576028 +0.9720079 0.1939468 0.9576028 +0.9861357 0.1939468 0.9576028 +1 0.1939468 0.9576028 +0 0.2773041 0.9576028 +0.1939468 0.2773041 0.9576028 +0.2773041 0.2773041 0.9576028 +0.3384659 0.2773041 0.9576028 +0.3885728 0.2773041 0.9576028 +0.4317928 0.2773041 0.9576028 +0.470214 0.2773041 0.9576028 +0.5050551 0.2773041 0.9576028 +0.5370987 0.2773041 0.9576028 +0.5668815 0.2773041 0.9576028 +0.5947903 0.2773041 0.9576028 +0.6211144 0.2773041 0.9576028 +0.6460766 0.2773041 0.9576028 +0.6698526 0.2773041 0.9576028 +0.6925839 0.2773041 0.9576028 +0.7143866 0.2773041 0.9576028 +0.7353569 0.2773041 0.9576028 +0.7555758 0.2773041 0.9576028 +0.7751122 0.2773041 0.9576028 +0.7940252 0.2773041 0.9576028 +0.8123661 0.2773041 0.9576028 +0.8301795 0.2773041 0.9576028 +0.8475045 0.2773041 0.9576028 +0.8643761 0.2773041 0.9576028 +0.880825 0.2773041 0.9576028 +0.8968787 0.2773041 0.9576028 +0.9125621 0.2773041 0.9576028 +0.9278974 0.2773041 0.9576028 +0.9429048 0.2773041 0.9576028 +0.9576028 0.2773041 0.9576028 +0.9720079 0.2773041 0.9576028 +0.9861357 0.2773041 0.9576028 +1 0.2773041 0.9576028 +0 0.3384659 0.9576028 +0.1939468 0.3384659 0.9576028 +0.2773041 0.3384659 0.9576028 +0.3384659 0.3384659 0.9576028 +0.3885728 0.3384659 0.9576028 +0.4317928 0.3384659 0.9576028 +0.470214 0.3384659 0.9576028 +0.5050551 0.3384659 0.9576028 +0.5370987 0.3384659 0.9576028 +0.5668815 0.3384659 0.9576028 +0.5947903 0.3384659 0.9576028 +0.6211144 0.3384659 0.9576028 +0.6460766 0.3384659 0.9576028 +0.6698526 0.3384659 0.9576028 +0.6925839 0.3384659 0.9576028 +0.7143866 0.3384659 0.9576028 +0.7353569 0.3384659 0.9576028 +0.7555758 0.3384659 0.9576028 +0.7751122 0.3384659 0.9576028 +0.7940252 0.3384659 0.9576028 +0.8123661 0.3384659 0.9576028 +0.8301795 0.3384659 0.9576028 +0.8475045 0.3384659 0.9576028 +0.8643761 0.3384659 0.9576028 +0.880825 0.3384659 0.9576028 +0.8968787 0.3384659 0.9576028 +0.9125621 0.3384659 0.9576028 +0.9278974 0.3384659 0.9576028 +0.9429048 0.3384659 0.9576028 +0.9576028 0.3384659 0.9576028 +0.9720079 0.3384659 0.9576028 +0.9861357 0.3384659 0.9576028 +1 0.3384659 0.9576028 +0 0.3885728 0.9576028 +0.1939468 0.3885728 0.9576028 +0.2773041 0.3885728 0.9576028 +0.3384659 0.3885728 0.9576028 +0.3885728 0.3885728 0.9576028 +0.4317928 0.3885728 0.9576028 +0.470214 0.3885728 0.9576028 +0.5050551 0.3885728 0.9576028 +0.5370987 0.3885728 0.9576028 +0.5668815 0.3885728 0.9576028 +0.5947903 0.3885728 0.9576028 +0.6211144 0.3885728 0.9576028 +0.6460766 0.3885728 0.9576028 +0.6698526 0.3885728 0.9576028 +0.6925839 0.3885728 0.9576028 +0.7143866 0.3885728 0.9576028 +0.7353569 0.3885728 0.9576028 +0.7555758 0.3885728 0.9576028 +0.7751122 0.3885728 0.9576028 +0.7940252 0.3885728 0.9576028 +0.8123661 0.3885728 0.9576028 +0.8301795 0.3885728 0.9576028 +0.8475045 0.3885728 0.9576028 +0.8643761 0.3885728 0.9576028 +0.880825 0.3885728 0.9576028 +0.8968787 0.3885728 0.9576028 +0.9125621 0.3885728 0.9576028 +0.9278974 0.3885728 0.9576028 +0.9429048 0.3885728 0.9576028 +0.9576028 0.3885728 0.9576028 +0.9720079 0.3885728 0.9576028 +0.9861357 0.3885728 0.9576028 +1 0.3885728 0.9576028 +0 0.4317928 0.9576028 +0.1939468 0.4317928 0.9576028 +0.2773041 0.4317928 0.9576028 +0.3384659 0.4317928 0.9576028 +0.3885728 0.4317928 0.9576028 +0.4317928 0.4317928 0.9576028 +0.470214 0.4317928 0.9576028 +0.5050551 0.4317928 0.9576028 +0.5370987 0.4317928 0.9576028 +0.5668815 0.4317928 0.9576028 +0.5947903 0.4317928 0.9576028 +0.6211144 0.4317928 0.9576028 +0.6460766 0.4317928 0.9576028 +0.6698526 0.4317928 0.9576028 +0.6925839 0.4317928 0.9576028 +0.7143866 0.4317928 0.9576028 +0.7353569 0.4317928 0.9576028 +0.7555758 0.4317928 0.9576028 +0.7751122 0.4317928 0.9576028 +0.7940252 0.4317928 0.9576028 +0.8123661 0.4317928 0.9576028 +0.8301795 0.4317928 0.9576028 +0.8475045 0.4317928 0.9576028 +0.8643761 0.4317928 0.9576028 +0.880825 0.4317928 0.9576028 +0.8968787 0.4317928 0.9576028 +0.9125621 0.4317928 0.9576028 +0.9278974 0.4317928 0.9576028 +0.9429048 0.4317928 0.9576028 +0.9576028 0.4317928 0.9576028 +0.9720079 0.4317928 0.9576028 +0.9861357 0.4317928 0.9576028 +1 0.4317928 0.9576028 +0 0.470214 0.9576028 +0.1939468 0.470214 0.9576028 +0.2773041 0.470214 0.9576028 +0.3384659 0.470214 0.9576028 +0.3885728 0.470214 0.9576028 +0.4317928 0.470214 0.9576028 +0.470214 0.470214 0.9576028 +0.5050551 0.470214 0.9576028 +0.5370987 0.470214 0.9576028 +0.5668815 0.470214 0.9576028 +0.5947903 0.470214 0.9576028 +0.6211144 0.470214 0.9576028 +0.6460766 0.470214 0.9576028 +0.6698526 0.470214 0.9576028 +0.6925839 0.470214 0.9576028 +0.7143866 0.470214 0.9576028 +0.7353569 0.470214 0.9576028 +0.7555758 0.470214 0.9576028 +0.7751122 0.470214 0.9576028 +0.7940252 0.470214 0.9576028 +0.8123661 0.470214 0.9576028 +0.8301795 0.470214 0.9576028 +0.8475045 0.470214 0.9576028 +0.8643761 0.470214 0.9576028 +0.880825 0.470214 0.9576028 +0.8968787 0.470214 0.9576028 +0.9125621 0.470214 0.9576028 +0.9278974 0.470214 0.9576028 +0.9429048 0.470214 0.9576028 +0.9576028 0.470214 0.9576028 +0.9720079 0.470214 0.9576028 +0.9861357 0.470214 0.9576028 +1 0.470214 0.9576028 +0 0.5050551 0.9576028 +0.1939468 0.5050551 0.9576028 +0.2773041 0.5050551 0.9576028 +0.3384659 0.5050551 0.9576028 +0.3885728 0.5050551 0.9576028 +0.4317928 0.5050551 0.9576028 +0.470214 0.5050551 0.9576028 +0.5050551 0.5050551 0.9576028 +0.5370987 0.5050551 0.9576028 +0.5668815 0.5050551 0.9576028 +0.5947903 0.5050551 0.9576028 +0.6211144 0.5050551 0.9576028 +0.6460766 0.5050551 0.9576028 +0.6698526 0.5050551 0.9576028 +0.6925839 0.5050551 0.9576028 +0.7143866 0.5050551 0.9576028 +0.7353569 0.5050551 0.9576028 +0.7555758 0.5050551 0.9576028 +0.7751122 0.5050551 0.9576028 +0.7940252 0.5050551 0.9576028 +0.8123661 0.5050551 0.9576028 +0.8301795 0.5050551 0.9576028 +0.8475045 0.5050551 0.9576028 +0.8643761 0.5050551 0.9576028 +0.880825 0.5050551 0.9576028 +0.8968787 0.5050551 0.9576028 +0.9125621 0.5050551 0.9576028 +0.9278974 0.5050551 0.9576028 +0.9429048 0.5050551 0.9576028 +0.9576028 0.5050551 0.9576028 +0.9720079 0.5050551 0.9576028 +0.9861357 0.5050551 0.9576028 +1 0.5050551 0.9576028 +0 0.5370987 0.9576028 +0.1939468 0.5370987 0.9576028 +0.2773041 0.5370987 0.9576028 +0.3384659 0.5370987 0.9576028 +0.3885728 0.5370987 0.9576028 +0.4317928 0.5370987 0.9576028 +0.470214 0.5370987 0.9576028 +0.5050551 0.5370987 0.9576028 +0.5370987 0.5370987 0.9576028 +0.5668815 0.5370987 0.9576028 +0.5947903 0.5370987 0.9576028 +0.6211144 0.5370987 0.9576028 +0.6460766 0.5370987 0.9576028 +0.6698526 0.5370987 0.9576028 +0.6925839 0.5370987 0.9576028 +0.7143866 0.5370987 0.9576028 +0.7353569 0.5370987 0.9576028 +0.7555758 0.5370987 0.9576028 +0.7751122 0.5370987 0.9576028 +0.7940252 0.5370987 0.9576028 +0.8123661 0.5370987 0.9576028 +0.8301795 0.5370987 0.9576028 +0.8475045 0.5370987 0.9576028 +0.8643761 0.5370987 0.9576028 +0.880825 0.5370987 0.9576028 +0.8968787 0.5370987 0.9576028 +0.9125621 0.5370987 0.9576028 +0.9278974 0.5370987 0.9576028 +0.9429048 0.5370987 0.9576028 +0.9576028 0.5370987 0.9576028 +0.9720079 0.5370987 0.9576028 +0.9861357 0.5370987 0.9576028 +1 0.5370987 0.9576028 +0 0.5668815 0.9576028 +0.1939468 0.5668815 0.9576028 +0.2773041 0.5668815 0.9576028 +0.3384659 0.5668815 0.9576028 +0.3885728 0.5668815 0.9576028 +0.4317928 0.5668815 0.9576028 +0.470214 0.5668815 0.9576028 +0.5050551 0.5668815 0.9576028 +0.5370987 0.5668815 0.9576028 +0.5668815 0.5668815 0.9576028 +0.5947903 0.5668815 0.9576028 +0.6211144 0.5668815 0.9576028 +0.6460766 0.5668815 0.9576028 +0.6698526 0.5668815 0.9576028 +0.6925839 0.5668815 0.9576028 +0.7143866 0.5668815 0.9576028 +0.7353569 0.5668815 0.9576028 +0.7555758 0.5668815 0.9576028 +0.7751122 0.5668815 0.9576028 +0.7940252 0.5668815 0.9576028 +0.8123661 0.5668815 0.9576028 +0.8301795 0.5668815 0.9576028 +0.8475045 0.5668815 0.9576028 +0.8643761 0.5668815 0.9576028 +0.880825 0.5668815 0.9576028 +0.8968787 0.5668815 0.9576028 +0.9125621 0.5668815 0.9576028 +0.9278974 0.5668815 0.9576028 +0.9429048 0.5668815 0.9576028 +0.9576028 0.5668815 0.9576028 +0.9720079 0.5668815 0.9576028 +0.9861357 0.5668815 0.9576028 +1 0.5668815 0.9576028 +0 0.5947903 0.9576028 +0.1939468 0.5947903 0.9576028 +0.2773041 0.5947903 0.9576028 +0.3384659 0.5947903 0.9576028 +0.3885728 0.5947903 0.9576028 +0.4317928 0.5947903 0.9576028 +0.470214 0.5947903 0.9576028 +0.5050551 0.5947903 0.9576028 +0.5370987 0.5947903 0.9576028 +0.5668815 0.5947903 0.9576028 +0.5947903 0.5947903 0.9576028 +0.6211144 0.5947903 0.9576028 +0.6460766 0.5947903 0.9576028 +0.6698526 0.5947903 0.9576028 +0.6925839 0.5947903 0.9576028 +0.7143866 0.5947903 0.9576028 +0.7353569 0.5947903 0.9576028 +0.7555758 0.5947903 0.9576028 +0.7751122 0.5947903 0.9576028 +0.7940252 0.5947903 0.9576028 +0.8123661 0.5947903 0.9576028 +0.8301795 0.5947903 0.9576028 +0.8475045 0.5947903 0.9576028 +0.8643761 0.5947903 0.9576028 +0.880825 0.5947903 0.9576028 +0.8968787 0.5947903 0.9576028 +0.9125621 0.5947903 0.9576028 +0.9278974 0.5947903 0.9576028 +0.9429048 0.5947903 0.9576028 +0.9576028 0.5947903 0.9576028 +0.9720079 0.5947903 0.9576028 +0.9861357 0.5947903 0.9576028 +1 0.5947903 0.9576028 +0 0.6211144 0.9576028 +0.1939468 0.6211144 0.9576028 +0.2773041 0.6211144 0.9576028 +0.3384659 0.6211144 0.9576028 +0.3885728 0.6211144 0.9576028 +0.4317928 0.6211144 0.9576028 +0.470214 0.6211144 0.9576028 +0.5050551 0.6211144 0.9576028 +0.5370987 0.6211144 0.9576028 +0.5668815 0.6211144 0.9576028 +0.5947903 0.6211144 0.9576028 +0.6211144 0.6211144 0.9576028 +0.6460766 0.6211144 0.9576028 +0.6698526 0.6211144 0.9576028 +0.6925839 0.6211144 0.9576028 +0.7143866 0.6211144 0.9576028 +0.7353569 0.6211144 0.9576028 +0.7555758 0.6211144 0.9576028 +0.7751122 0.6211144 0.9576028 +0.7940252 0.6211144 0.9576028 +0.8123661 0.6211144 0.9576028 +0.8301795 0.6211144 0.9576028 +0.8475045 0.6211144 0.9576028 +0.8643761 0.6211144 0.9576028 +0.880825 0.6211144 0.9576028 +0.8968787 0.6211144 0.9576028 +0.9125621 0.6211144 0.9576028 +0.9278974 0.6211144 0.9576028 +0.9429048 0.6211144 0.9576028 +0.9576028 0.6211144 0.9576028 +0.9720079 0.6211144 0.9576028 +0.9861357 0.6211144 0.9576028 +1 0.6211144 0.9576028 +0 0.6460766 0.9576028 +0.1939468 0.6460766 0.9576028 +0.2773041 0.6460766 0.9576028 +0.3384659 0.6460766 0.9576028 +0.3885728 0.6460766 0.9576028 +0.4317928 0.6460766 0.9576028 +0.470214 0.6460766 0.9576028 +0.5050551 0.6460766 0.9576028 +0.5370987 0.6460766 0.9576028 +0.5668815 0.6460766 0.9576028 +0.5947903 0.6460766 0.9576028 +0.6211144 0.6460766 0.9576028 +0.6460766 0.6460766 0.9576028 +0.6698526 0.6460766 0.9576028 +0.6925839 0.6460766 0.9576028 +0.7143866 0.6460766 0.9576028 +0.7353569 0.6460766 0.9576028 +0.7555758 0.6460766 0.9576028 +0.7751122 0.6460766 0.9576028 +0.7940252 0.6460766 0.9576028 +0.8123661 0.6460766 0.9576028 +0.8301795 0.6460766 0.9576028 +0.8475045 0.6460766 0.9576028 +0.8643761 0.6460766 0.9576028 +0.880825 0.6460766 0.9576028 +0.8968787 0.6460766 0.9576028 +0.9125621 0.6460766 0.9576028 +0.9278974 0.6460766 0.9576028 +0.9429048 0.6460766 0.9576028 +0.9576028 0.6460766 0.9576028 +0.9720079 0.6460766 0.9576028 +0.9861357 0.6460766 0.9576028 +1 0.6460766 0.9576028 +0 0.6698526 0.9576028 +0.1939468 0.6698526 0.9576028 +0.2773041 0.6698526 0.9576028 +0.3384659 0.6698526 0.9576028 +0.3885728 0.6698526 0.9576028 +0.4317928 0.6698526 0.9576028 +0.470214 0.6698526 0.9576028 +0.5050551 0.6698526 0.9576028 +0.5370987 0.6698526 0.9576028 +0.5668815 0.6698526 0.9576028 +0.5947903 0.6698526 0.9576028 +0.6211144 0.6698526 0.9576028 +0.6460766 0.6698526 0.9576028 +0.6698526 0.6698526 0.9576028 +0.6925839 0.6698526 0.9576028 +0.7143866 0.6698526 0.9576028 +0.7353569 0.6698526 0.9576028 +0.7555758 0.6698526 0.9576028 +0.7751122 0.6698526 0.9576028 +0.7940252 0.6698526 0.9576028 +0.8123661 0.6698526 0.9576028 +0.8301795 0.6698526 0.9576028 +0.8475045 0.6698526 0.9576028 +0.8643761 0.6698526 0.9576028 +0.880825 0.6698526 0.9576028 +0.8968787 0.6698526 0.9576028 +0.9125621 0.6698526 0.9576028 +0.9278974 0.6698526 0.9576028 +0.9429048 0.6698526 0.9576028 +0.9576028 0.6698526 0.9576028 +0.9720079 0.6698526 0.9576028 +0.9861357 0.6698526 0.9576028 +1 0.6698526 0.9576028 +0 0.6925839 0.9576028 +0.1939468 0.6925839 0.9576028 +0.2773041 0.6925839 0.9576028 +0.3384659 0.6925839 0.9576028 +0.3885728 0.6925839 0.9576028 +0.4317928 0.6925839 0.9576028 +0.470214 0.6925839 0.9576028 +0.5050551 0.6925839 0.9576028 +0.5370987 0.6925839 0.9576028 +0.5668815 0.6925839 0.9576028 +0.5947903 0.6925839 0.9576028 +0.6211144 0.6925839 0.9576028 +0.6460766 0.6925839 0.9576028 +0.6698526 0.6925839 0.9576028 +0.6925839 0.6925839 0.9576028 +0.7143866 0.6925839 0.9576028 +0.7353569 0.6925839 0.9576028 +0.7555758 0.6925839 0.9576028 +0.7751122 0.6925839 0.9576028 +0.7940252 0.6925839 0.9576028 +0.8123661 0.6925839 0.9576028 +0.8301795 0.6925839 0.9576028 +0.8475045 0.6925839 0.9576028 +0.8643761 0.6925839 0.9576028 +0.880825 0.6925839 0.9576028 +0.8968787 0.6925839 0.9576028 +0.9125621 0.6925839 0.9576028 +0.9278974 0.6925839 0.9576028 +0.9429048 0.6925839 0.9576028 +0.9576028 0.6925839 0.9576028 +0.9720079 0.6925839 0.9576028 +0.9861357 0.6925839 0.9576028 +1 0.6925839 0.9576028 +0 0.7143866 0.9576028 +0.1939468 0.7143866 0.9576028 +0.2773041 0.7143866 0.9576028 +0.3384659 0.7143866 0.9576028 +0.3885728 0.7143866 0.9576028 +0.4317928 0.7143866 0.9576028 +0.470214 0.7143866 0.9576028 +0.5050551 0.7143866 0.9576028 +0.5370987 0.7143866 0.9576028 +0.5668815 0.7143866 0.9576028 +0.5947903 0.7143866 0.9576028 +0.6211144 0.7143866 0.9576028 +0.6460766 0.7143866 0.9576028 +0.6698526 0.7143866 0.9576028 +0.6925839 0.7143866 0.9576028 +0.7143866 0.7143866 0.9576028 +0.7353569 0.7143866 0.9576028 +0.7555758 0.7143866 0.9576028 +0.7751122 0.7143866 0.9576028 +0.7940252 0.7143866 0.9576028 +0.8123661 0.7143866 0.9576028 +0.8301795 0.7143866 0.9576028 +0.8475045 0.7143866 0.9576028 +0.8643761 0.7143866 0.9576028 +0.880825 0.7143866 0.9576028 +0.8968787 0.7143866 0.9576028 +0.9125621 0.7143866 0.9576028 +0.9278974 0.7143866 0.9576028 +0.9429048 0.7143866 0.9576028 +0.9576028 0.7143866 0.9576028 +0.9720079 0.7143866 0.9576028 +0.9861357 0.7143866 0.9576028 +1 0.7143866 0.9576028 +0 0.7353569 0.9576028 +0.1939468 0.7353569 0.9576028 +0.2773041 0.7353569 0.9576028 +0.3384659 0.7353569 0.9576028 +0.3885728 0.7353569 0.9576028 +0.4317928 0.7353569 0.9576028 +0.470214 0.7353569 0.9576028 +0.5050551 0.7353569 0.9576028 +0.5370987 0.7353569 0.9576028 +0.5668815 0.7353569 0.9576028 +0.5947903 0.7353569 0.9576028 +0.6211144 0.7353569 0.9576028 +0.6460766 0.7353569 0.9576028 +0.6698526 0.7353569 0.9576028 +0.6925839 0.7353569 0.9576028 +0.7143866 0.7353569 0.9576028 +0.7353569 0.7353569 0.9576028 +0.7555758 0.7353569 0.9576028 +0.7751122 0.7353569 0.9576028 +0.7940252 0.7353569 0.9576028 +0.8123661 0.7353569 0.9576028 +0.8301795 0.7353569 0.9576028 +0.8475045 0.7353569 0.9576028 +0.8643761 0.7353569 0.9576028 +0.880825 0.7353569 0.9576028 +0.8968787 0.7353569 0.9576028 +0.9125621 0.7353569 0.9576028 +0.9278974 0.7353569 0.9576028 +0.9429048 0.7353569 0.9576028 +0.9576028 0.7353569 0.9576028 +0.9720079 0.7353569 0.9576028 +0.9861357 0.7353569 0.9576028 +1 0.7353569 0.9576028 +0 0.7555758 0.9576028 +0.1939468 0.7555758 0.9576028 +0.2773041 0.7555758 0.9576028 +0.3384659 0.7555758 0.9576028 +0.3885728 0.7555758 0.9576028 +0.4317928 0.7555758 0.9576028 +0.470214 0.7555758 0.9576028 +0.5050551 0.7555758 0.9576028 +0.5370987 0.7555758 0.9576028 +0.5668815 0.7555758 0.9576028 +0.5947903 0.7555758 0.9576028 +0.6211144 0.7555758 0.9576028 +0.6460766 0.7555758 0.9576028 +0.6698526 0.7555758 0.9576028 +0.6925839 0.7555758 0.9576028 +0.7143866 0.7555758 0.9576028 +0.7353569 0.7555758 0.9576028 +0.7555758 0.7555758 0.9576028 +0.7751122 0.7555758 0.9576028 +0.7940252 0.7555758 0.9576028 +0.8123661 0.7555758 0.9576028 +0.8301795 0.7555758 0.9576028 +0.8475045 0.7555758 0.9576028 +0.8643761 0.7555758 0.9576028 +0.880825 0.7555758 0.9576028 +0.8968787 0.7555758 0.9576028 +0.9125621 0.7555758 0.9576028 +0.9278974 0.7555758 0.9576028 +0.9429048 0.7555758 0.9576028 +0.9576028 0.7555758 0.9576028 +0.9720079 0.7555758 0.9576028 +0.9861357 0.7555758 0.9576028 +1 0.7555758 0.9576028 +0 0.7751122 0.9576028 +0.1939468 0.7751122 0.9576028 +0.2773041 0.7751122 0.9576028 +0.3384659 0.7751122 0.9576028 +0.3885728 0.7751122 0.9576028 +0.4317928 0.7751122 0.9576028 +0.470214 0.7751122 0.9576028 +0.5050551 0.7751122 0.9576028 +0.5370987 0.7751122 0.9576028 +0.5668815 0.7751122 0.9576028 +0.5947903 0.7751122 0.9576028 +0.6211144 0.7751122 0.9576028 +0.6460766 0.7751122 0.9576028 +0.6698526 0.7751122 0.9576028 +0.6925839 0.7751122 0.9576028 +0.7143866 0.7751122 0.9576028 +0.7353569 0.7751122 0.9576028 +0.7555758 0.7751122 0.9576028 +0.7751122 0.7751122 0.9576028 +0.7940252 0.7751122 0.9576028 +0.8123661 0.7751122 0.9576028 +0.8301795 0.7751122 0.9576028 +0.8475045 0.7751122 0.9576028 +0.8643761 0.7751122 0.9576028 +0.880825 0.7751122 0.9576028 +0.8968787 0.7751122 0.9576028 +0.9125621 0.7751122 0.9576028 +0.9278974 0.7751122 0.9576028 +0.9429048 0.7751122 0.9576028 +0.9576028 0.7751122 0.9576028 +0.9720079 0.7751122 0.9576028 +0.9861357 0.7751122 0.9576028 +1 0.7751122 0.9576028 +0 0.7940252 0.9576028 +0.1939468 0.7940252 0.9576028 +0.2773041 0.7940252 0.9576028 +0.3384659 0.7940252 0.9576028 +0.3885728 0.7940252 0.9576028 +0.4317928 0.7940252 0.9576028 +0.470214 0.7940252 0.9576028 +0.5050551 0.7940252 0.9576028 +0.5370987 0.7940252 0.9576028 +0.5668815 0.7940252 0.9576028 +0.5947903 0.7940252 0.9576028 +0.6211144 0.7940252 0.9576028 +0.6460766 0.7940252 0.9576028 +0.6698526 0.7940252 0.9576028 +0.6925839 0.7940252 0.9576028 +0.7143866 0.7940252 0.9576028 +0.7353569 0.7940252 0.9576028 +0.7555758 0.7940252 0.9576028 +0.7751122 0.7940252 0.9576028 +0.7940252 0.7940252 0.9576028 +0.8123661 0.7940252 0.9576028 +0.8301795 0.7940252 0.9576028 +0.8475045 0.7940252 0.9576028 +0.8643761 0.7940252 0.9576028 +0.880825 0.7940252 0.9576028 +0.8968787 0.7940252 0.9576028 +0.9125621 0.7940252 0.9576028 +0.9278974 0.7940252 0.9576028 +0.9429048 0.7940252 0.9576028 +0.9576028 0.7940252 0.9576028 +0.9720079 0.7940252 0.9576028 +0.9861357 0.7940252 0.9576028 +1 0.7940252 0.9576028 +0 0.8123661 0.9576028 +0.1939468 0.8123661 0.9576028 +0.2773041 0.8123661 0.9576028 +0.3384659 0.8123661 0.9576028 +0.3885728 0.8123661 0.9576028 +0.4317928 0.8123661 0.9576028 +0.470214 0.8123661 0.9576028 +0.5050551 0.8123661 0.9576028 +0.5370987 0.8123661 0.9576028 +0.5668815 0.8123661 0.9576028 +0.5947903 0.8123661 0.9576028 +0.6211144 0.8123661 0.9576028 +0.6460766 0.8123661 0.9576028 +0.6698526 0.8123661 0.9576028 +0.6925839 0.8123661 0.9576028 +0.7143866 0.8123661 0.9576028 +0.7353569 0.8123661 0.9576028 +0.7555758 0.8123661 0.9576028 +0.7751122 0.8123661 0.9576028 +0.7940252 0.8123661 0.9576028 +0.8123661 0.8123661 0.9576028 +0.8301795 0.8123661 0.9576028 +0.8475045 0.8123661 0.9576028 +0.8643761 0.8123661 0.9576028 +0.880825 0.8123661 0.9576028 +0.8968787 0.8123661 0.9576028 +0.9125621 0.8123661 0.9576028 +0.9278974 0.8123661 0.9576028 +0.9429048 0.8123661 0.9576028 +0.9576028 0.8123661 0.9576028 +0.9720079 0.8123661 0.9576028 +0.9861357 0.8123661 0.9576028 +1 0.8123661 0.9576028 +0 0.8301795 0.9576028 +0.1939468 0.8301795 0.9576028 +0.2773041 0.8301795 0.9576028 +0.3384659 0.8301795 0.9576028 +0.3885728 0.8301795 0.9576028 +0.4317928 0.8301795 0.9576028 +0.470214 0.8301795 0.9576028 +0.5050551 0.8301795 0.9576028 +0.5370987 0.8301795 0.9576028 +0.5668815 0.8301795 0.9576028 +0.5947903 0.8301795 0.9576028 +0.6211144 0.8301795 0.9576028 +0.6460766 0.8301795 0.9576028 +0.6698526 0.8301795 0.9576028 +0.6925839 0.8301795 0.9576028 +0.7143866 0.8301795 0.9576028 +0.7353569 0.8301795 0.9576028 +0.7555758 0.8301795 0.9576028 +0.7751122 0.8301795 0.9576028 +0.7940252 0.8301795 0.9576028 +0.8123661 0.8301795 0.9576028 +0.8301795 0.8301795 0.9576028 +0.8475045 0.8301795 0.9576028 +0.8643761 0.8301795 0.9576028 +0.880825 0.8301795 0.9576028 +0.8968787 0.8301795 0.9576028 +0.9125621 0.8301795 0.9576028 +0.9278974 0.8301795 0.9576028 +0.9429048 0.8301795 0.9576028 +0.9576028 0.8301795 0.9576028 +0.9720079 0.8301795 0.9576028 +0.9861357 0.8301795 0.9576028 +1 0.8301795 0.9576028 +0 0.8475045 0.9576028 +0.1939468 0.8475045 0.9576028 +0.2773041 0.8475045 0.9576028 +0.3384659 0.8475045 0.9576028 +0.3885728 0.8475045 0.9576028 +0.4317928 0.8475045 0.9576028 +0.470214 0.8475045 0.9576028 +0.5050551 0.8475045 0.9576028 +0.5370987 0.8475045 0.9576028 +0.5668815 0.8475045 0.9576028 +0.5947903 0.8475045 0.9576028 +0.6211144 0.8475045 0.9576028 +0.6460766 0.8475045 0.9576028 +0.6698526 0.8475045 0.9576028 +0.6925839 0.8475045 0.9576028 +0.7143866 0.8475045 0.9576028 +0.7353569 0.8475045 0.9576028 +0.7555758 0.8475045 0.9576028 +0.7751122 0.8475045 0.9576028 +0.7940252 0.8475045 0.9576028 +0.8123661 0.8475045 0.9576028 +0.8301795 0.8475045 0.9576028 +0.8475045 0.8475045 0.9576028 +0.8643761 0.8475045 0.9576028 +0.880825 0.8475045 0.9576028 +0.8968787 0.8475045 0.9576028 +0.9125621 0.8475045 0.9576028 +0.9278974 0.8475045 0.9576028 +0.9429048 0.8475045 0.9576028 +0.9576028 0.8475045 0.9576028 +0.9720079 0.8475045 0.9576028 +0.9861357 0.8475045 0.9576028 +1 0.8475045 0.9576028 +0 0.8643761 0.9576028 +0.1939468 0.8643761 0.9576028 +0.2773041 0.8643761 0.9576028 +0.3384659 0.8643761 0.9576028 +0.3885728 0.8643761 0.9576028 +0.4317928 0.8643761 0.9576028 +0.470214 0.8643761 0.9576028 +0.5050551 0.8643761 0.9576028 +0.5370987 0.8643761 0.9576028 +0.5668815 0.8643761 0.9576028 +0.5947903 0.8643761 0.9576028 +0.6211144 0.8643761 0.9576028 +0.6460766 0.8643761 0.9576028 +0.6698526 0.8643761 0.9576028 +0.6925839 0.8643761 0.9576028 +0.7143866 0.8643761 0.9576028 +0.7353569 0.8643761 0.9576028 +0.7555758 0.8643761 0.9576028 +0.7751122 0.8643761 0.9576028 +0.7940252 0.8643761 0.9576028 +0.8123661 0.8643761 0.9576028 +0.8301795 0.8643761 0.9576028 +0.8475045 0.8643761 0.9576028 +0.8643761 0.8643761 0.9576028 +0.880825 0.8643761 0.9576028 +0.8968787 0.8643761 0.9576028 +0.9125621 0.8643761 0.9576028 +0.9278974 0.8643761 0.9576028 +0.9429048 0.8643761 0.9576028 +0.9576028 0.8643761 0.9576028 +0.9720079 0.8643761 0.9576028 +0.9861357 0.8643761 0.9576028 +1 0.8643761 0.9576028 +0 0.880825 0.9576028 +0.1939468 0.880825 0.9576028 +0.2773041 0.880825 0.9576028 +0.3384659 0.880825 0.9576028 +0.3885728 0.880825 0.9576028 +0.4317928 0.880825 0.9576028 +0.470214 0.880825 0.9576028 +0.5050551 0.880825 0.9576028 +0.5370987 0.880825 0.9576028 +0.5668815 0.880825 0.9576028 +0.5947903 0.880825 0.9576028 +0.6211144 0.880825 0.9576028 +0.6460766 0.880825 0.9576028 +0.6698526 0.880825 0.9576028 +0.6925839 0.880825 0.9576028 +0.7143866 0.880825 0.9576028 +0.7353569 0.880825 0.9576028 +0.7555758 0.880825 0.9576028 +0.7751122 0.880825 0.9576028 +0.7940252 0.880825 0.9576028 +0.8123661 0.880825 0.9576028 +0.8301795 0.880825 0.9576028 +0.8475045 0.880825 0.9576028 +0.8643761 0.880825 0.9576028 +0.880825 0.880825 0.9576028 +0.8968787 0.880825 0.9576028 +0.9125621 0.880825 0.9576028 +0.9278974 0.880825 0.9576028 +0.9429048 0.880825 0.9576028 +0.9576028 0.880825 0.9576028 +0.9720079 0.880825 0.9576028 +0.9861357 0.880825 0.9576028 +1 0.880825 0.9576028 +0 0.8968787 0.9576028 +0.1939468 0.8968787 0.9576028 +0.2773041 0.8968787 0.9576028 +0.3384659 0.8968787 0.9576028 +0.3885728 0.8968787 0.9576028 +0.4317928 0.8968787 0.9576028 +0.470214 0.8968787 0.9576028 +0.5050551 0.8968787 0.9576028 +0.5370987 0.8968787 0.9576028 +0.5668815 0.8968787 0.9576028 +0.5947903 0.8968787 0.9576028 +0.6211144 0.8968787 0.9576028 +0.6460766 0.8968787 0.9576028 +0.6698526 0.8968787 0.9576028 +0.6925839 0.8968787 0.9576028 +0.7143866 0.8968787 0.9576028 +0.7353569 0.8968787 0.9576028 +0.7555758 0.8968787 0.9576028 +0.7751122 0.8968787 0.9576028 +0.7940252 0.8968787 0.9576028 +0.8123661 0.8968787 0.9576028 +0.8301795 0.8968787 0.9576028 +0.8475045 0.8968787 0.9576028 +0.8643761 0.8968787 0.9576028 +0.880825 0.8968787 0.9576028 +0.8968787 0.8968787 0.9576028 +0.9125621 0.8968787 0.9576028 +0.9278974 0.8968787 0.9576028 +0.9429048 0.8968787 0.9576028 +0.9576028 0.8968787 0.9576028 +0.9720079 0.8968787 0.9576028 +0.9861357 0.8968787 0.9576028 +1 0.8968787 0.9576028 +0 0.9125621 0.9576028 +0.1939468 0.9125621 0.9576028 +0.2773041 0.9125621 0.9576028 +0.3384659 0.9125621 0.9576028 +0.3885728 0.9125621 0.9576028 +0.4317928 0.9125621 0.9576028 +0.470214 0.9125621 0.9576028 +0.5050551 0.9125621 0.9576028 +0.5370987 0.9125621 0.9576028 +0.5668815 0.9125621 0.9576028 +0.5947903 0.9125621 0.9576028 +0.6211144 0.9125621 0.9576028 +0.6460766 0.9125621 0.9576028 +0.6698526 0.9125621 0.9576028 +0.6925839 0.9125621 0.9576028 +0.7143866 0.9125621 0.9576028 +0.7353569 0.9125621 0.9576028 +0.7555758 0.9125621 0.9576028 +0.7751122 0.9125621 0.9576028 +0.7940252 0.9125621 0.9576028 +0.8123661 0.9125621 0.9576028 +0.8301795 0.9125621 0.9576028 +0.8475045 0.9125621 0.9576028 +0.8643761 0.9125621 0.9576028 +0.880825 0.9125621 0.9576028 +0.8968787 0.9125621 0.9576028 +0.9125621 0.9125621 0.9576028 +0.9278974 0.9125621 0.9576028 +0.9429048 0.9125621 0.9576028 +0.9576028 0.9125621 0.9576028 +0.9720079 0.9125621 0.9576028 +0.9861357 0.9125621 0.9576028 +1 0.9125621 0.9576028 +0 0.9278974 0.9576028 +0.1939468 0.9278974 0.9576028 +0.2773041 0.9278974 0.9576028 +0.3384659 0.9278974 0.9576028 +0.3885728 0.9278974 0.9576028 +0.4317928 0.9278974 0.9576028 +0.470214 0.9278974 0.9576028 +0.5050551 0.9278974 0.9576028 +0.5370987 0.9278974 0.9576028 +0.5668815 0.9278974 0.9576028 +0.5947903 0.9278974 0.9576028 +0.6211144 0.9278974 0.9576028 +0.6460766 0.9278974 0.9576028 +0.6698526 0.9278974 0.9576028 +0.6925839 0.9278974 0.9576028 +0.7143866 0.9278974 0.9576028 +0.7353569 0.9278974 0.9576028 +0.7555758 0.9278974 0.9576028 +0.7751122 0.9278974 0.9576028 +0.7940252 0.9278974 0.9576028 +0.8123661 0.9278974 0.9576028 +0.8301795 0.9278974 0.9576028 +0.8475045 0.9278974 0.9576028 +0.8643761 0.9278974 0.9576028 +0.880825 0.9278974 0.9576028 +0.8968787 0.9278974 0.9576028 +0.9125621 0.9278974 0.9576028 +0.9278974 0.9278974 0.9576028 +0.9429048 0.9278974 0.9576028 +0.9576028 0.9278974 0.9576028 +0.9720079 0.9278974 0.9576028 +0.9861357 0.9278974 0.9576028 +1 0.9278974 0.9576028 +0 0.9429048 0.9576028 +0.1939468 0.9429048 0.9576028 +0.2773041 0.9429048 0.9576028 +0.3384659 0.9429048 0.9576028 +0.3885728 0.9429048 0.9576028 +0.4317928 0.9429048 0.9576028 +0.470214 0.9429048 0.9576028 +0.5050551 0.9429048 0.9576028 +0.5370987 0.9429048 0.9576028 +0.5668815 0.9429048 0.9576028 +0.5947903 0.9429048 0.9576028 +0.6211144 0.9429048 0.9576028 +0.6460766 0.9429048 0.9576028 +0.6698526 0.9429048 0.9576028 +0.6925839 0.9429048 0.9576028 +0.7143866 0.9429048 0.9576028 +0.7353569 0.9429048 0.9576028 +0.7555758 0.9429048 0.9576028 +0.7751122 0.9429048 0.9576028 +0.7940252 0.9429048 0.9576028 +0.8123661 0.9429048 0.9576028 +0.8301795 0.9429048 0.9576028 +0.8475045 0.9429048 0.9576028 +0.8643761 0.9429048 0.9576028 +0.880825 0.9429048 0.9576028 +0.8968787 0.9429048 0.9576028 +0.9125621 0.9429048 0.9576028 +0.9278974 0.9429048 0.9576028 +0.9429048 0.9429048 0.9576028 +0.9576028 0.9429048 0.9576028 +0.9720079 0.9429048 0.9576028 +0.9861357 0.9429048 0.9576028 +1 0.9429048 0.9576028 +0 0.9576028 0.9576028 +0.1939468 0.9576028 0.9576028 +0.2773041 0.9576028 0.9576028 +0.3384659 0.9576028 0.9576028 +0.3885728 0.9576028 0.9576028 +0.4317928 0.9576028 0.9576028 +0.470214 0.9576028 0.9576028 +0.5050551 0.9576028 0.9576028 +0.5370987 0.9576028 0.9576028 +0.5668815 0.9576028 0.9576028 +0.5947903 0.9576028 0.9576028 +0.6211144 0.9576028 0.9576028 +0.6460766 0.9576028 0.9576028 +0.6698526 0.9576028 0.9576028 +0.6925839 0.9576028 0.9576028 +0.7143866 0.9576028 0.9576028 +0.7353569 0.9576028 0.9576028 +0.7555758 0.9576028 0.9576028 +0.7751122 0.9576028 0.9576028 +0.7940252 0.9576028 0.9576028 +0.8123661 0.9576028 0.9576028 +0.8301795 0.9576028 0.9576028 +0.8475045 0.9576028 0.9576028 +0.8643761 0.9576028 0.9576028 +0.880825 0.9576028 0.9576028 +0.8968787 0.9576028 0.9576028 +0.9125621 0.9576028 0.9576028 +0.9278974 0.9576028 0.9576028 +0.9429048 0.9576028 0.9576028 +0.9576028 0.9576028 0.9576028 +0.9720079 0.9576028 0.9576028 +0.9861357 0.9576028 0.9576028 +1 0.9576028 0.9576028 +0 0.9720079 0.9576028 +0.1939468 0.9720079 0.9576028 +0.2773041 0.9720079 0.9576028 +0.3384659 0.9720079 0.9576028 +0.3885728 0.9720079 0.9576028 +0.4317928 0.9720079 0.9576028 +0.470214 0.9720079 0.9576028 +0.5050551 0.9720079 0.9576028 +0.5370987 0.9720079 0.9576028 +0.5668815 0.9720079 0.9576028 +0.5947903 0.9720079 0.9576028 +0.6211144 0.9720079 0.9576028 +0.6460766 0.9720079 0.9576028 +0.6698526 0.9720079 0.9576028 +0.6925839 0.9720079 0.9576028 +0.7143866 0.9720079 0.9576028 +0.7353569 0.9720079 0.9576028 +0.7555758 0.9720079 0.9576028 +0.7751122 0.9720079 0.9576028 +0.7940252 0.9720079 0.9576028 +0.8123661 0.9720079 0.9576028 +0.8301795 0.9720079 0.9576028 +0.8475045 0.9720079 0.9576028 +0.8643761 0.9720079 0.9576028 +0.880825 0.9720079 0.9576028 +0.8968787 0.9720079 0.9576028 +0.9125621 0.9720079 0.9576028 +0.9278974 0.9720079 0.9576028 +0.9429048 0.9720079 0.9576028 +0.9576028 0.9720079 0.9576028 +0.9720079 0.9720079 0.9576028 +0.9861357 0.9720079 0.9576028 +1 0.9720079 0.9576028 +0 0.9861357 0.9576028 +0.1939468 0.9861357 0.9576028 +0.2773041 0.9861357 0.9576028 +0.3384659 0.9861357 0.9576028 +0.3885728 0.9861357 0.9576028 +0.4317928 0.9861357 0.9576028 +0.470214 0.9861357 0.9576028 +0.5050551 0.9861357 0.9576028 +0.5370987 0.9861357 0.9576028 +0.5668815 0.9861357 0.9576028 +0.5947903 0.9861357 0.9576028 +0.6211144 0.9861357 0.9576028 +0.6460766 0.9861357 0.9576028 +0.6698526 0.9861357 0.9576028 +0.6925839 0.9861357 0.9576028 +0.7143866 0.9861357 0.9576028 +0.7353569 0.9861357 0.9576028 +0.7555758 0.9861357 0.9576028 +0.7751122 0.9861357 0.9576028 +0.7940252 0.9861357 0.9576028 +0.8123661 0.9861357 0.9576028 +0.8301795 0.9861357 0.9576028 +0.8475045 0.9861357 0.9576028 +0.8643761 0.9861357 0.9576028 +0.880825 0.9861357 0.9576028 +0.8968787 0.9861357 0.9576028 +0.9125621 0.9861357 0.9576028 +0.9278974 0.9861357 0.9576028 +0.9429048 0.9861357 0.9576028 +0.9576028 0.9861357 0.9576028 +0.9720079 0.9861357 0.9576028 +0.9861357 0.9861357 0.9576028 +1 0.9861357 0.9576028 +0 1 0.9576028 +0.1939468 1 0.9576028 +0.2773041 1 0.9576028 +0.3384659 1 0.9576028 +0.3885728 1 0.9576028 +0.4317928 1 0.9576028 +0.470214 1 0.9576028 +0.5050551 1 0.9576028 +0.5370987 1 0.9576028 +0.5668815 1 0.9576028 +0.5947903 1 0.9576028 +0.6211144 1 0.9576028 +0.6460766 1 0.9576028 +0.6698526 1 0.9576028 +0.6925839 1 0.9576028 +0.7143866 1 0.9576028 +0.7353569 1 0.9576028 +0.7555758 1 0.9576028 +0.7751122 1 0.9576028 +0.7940252 1 0.9576028 +0.8123661 1 0.9576028 +0.8301795 1 0.9576028 +0.8475045 1 0.9576028 +0.8643761 1 0.9576028 +0.880825 1 0.9576028 +0.8968787 1 0.9576028 +0.9125621 1 0.9576028 +0.9278974 1 0.9576028 +0.9429048 1 0.9576028 +0.9576028 1 0.9576028 +0.9720079 1 0.9576028 +0.9861357 1 0.9576028 +1 1 0.9576028 +0 0 0.9720079 +0.1939468 0 0.9720079 +0.2773041 0 0.9720079 +0.3384659 0 0.9720079 +0.3885728 0 0.9720079 +0.4317928 0 0.9720079 +0.470214 0 0.9720079 +0.5050551 0 0.9720079 +0.5370987 0 0.9720079 +0.5668815 0 0.9720079 +0.5947903 0 0.9720079 +0.6211144 0 0.9720079 +0.6460766 0 0.9720079 +0.6698526 0 0.9720079 +0.6925839 0 0.9720079 +0.7143866 0 0.9720079 +0.7353569 0 0.9720079 +0.7555758 0 0.9720079 +0.7751122 0 0.9720079 +0.7940252 0 0.9720079 +0.8123661 0 0.9720079 +0.8301795 0 0.9720079 +0.8475045 0 0.9720079 +0.8643761 0 0.9720079 +0.880825 0 0.9720079 +0.8968787 0 0.9720079 +0.9125621 0 0.9720079 +0.9278974 0 0.9720079 +0.9429048 0 0.9720079 +0.9576028 0 0.9720079 +0.9720079 0 0.9720079 +0.9861357 0 0.9720079 +1 0 0.9720079 +0 0.1939468 0.9720079 +0.1939468 0.1939468 0.9720079 +0.2773041 0.1939468 0.9720079 +0.3384659 0.1939468 0.9720079 +0.3885728 0.1939468 0.9720079 +0.4317928 0.1939468 0.9720079 +0.470214 0.1939468 0.9720079 +0.5050551 0.1939468 0.9720079 +0.5370987 0.1939468 0.9720079 +0.5668815 0.1939468 0.9720079 +0.5947903 0.1939468 0.9720079 +0.6211144 0.1939468 0.9720079 +0.6460766 0.1939468 0.9720079 +0.6698526 0.1939468 0.9720079 +0.6925839 0.1939468 0.9720079 +0.7143866 0.1939468 0.9720079 +0.7353569 0.1939468 0.9720079 +0.7555758 0.1939468 0.9720079 +0.7751122 0.1939468 0.9720079 +0.7940252 0.1939468 0.9720079 +0.8123661 0.1939468 0.9720079 +0.8301795 0.1939468 0.9720079 +0.8475045 0.1939468 0.9720079 +0.8643761 0.1939468 0.9720079 +0.880825 0.1939468 0.9720079 +0.8968787 0.1939468 0.9720079 +0.9125621 0.1939468 0.9720079 +0.9278974 0.1939468 0.9720079 +0.9429048 0.1939468 0.9720079 +0.9576028 0.1939468 0.9720079 +0.9720079 0.1939468 0.9720079 +0.9861357 0.1939468 0.9720079 +1 0.1939468 0.9720079 +0 0.2773041 0.9720079 +0.1939468 0.2773041 0.9720079 +0.2773041 0.2773041 0.9720079 +0.3384659 0.2773041 0.9720079 +0.3885728 0.2773041 0.9720079 +0.4317928 0.2773041 0.9720079 +0.470214 0.2773041 0.9720079 +0.5050551 0.2773041 0.9720079 +0.5370987 0.2773041 0.9720079 +0.5668815 0.2773041 0.9720079 +0.5947903 0.2773041 0.9720079 +0.6211144 0.2773041 0.9720079 +0.6460766 0.2773041 0.9720079 +0.6698526 0.2773041 0.9720079 +0.6925839 0.2773041 0.9720079 +0.7143866 0.2773041 0.9720079 +0.7353569 0.2773041 0.9720079 +0.7555758 0.2773041 0.9720079 +0.7751122 0.2773041 0.9720079 +0.7940252 0.2773041 0.9720079 +0.8123661 0.2773041 0.9720079 +0.8301795 0.2773041 0.9720079 +0.8475045 0.2773041 0.9720079 +0.8643761 0.2773041 0.9720079 +0.880825 0.2773041 0.9720079 +0.8968787 0.2773041 0.9720079 +0.9125621 0.2773041 0.9720079 +0.9278974 0.2773041 0.9720079 +0.9429048 0.2773041 0.9720079 +0.9576028 0.2773041 0.9720079 +0.9720079 0.2773041 0.9720079 +0.9861357 0.2773041 0.9720079 +1 0.2773041 0.9720079 +0 0.3384659 0.9720079 +0.1939468 0.3384659 0.9720079 +0.2773041 0.3384659 0.9720079 +0.3384659 0.3384659 0.9720079 +0.3885728 0.3384659 0.9720079 +0.4317928 0.3384659 0.9720079 +0.470214 0.3384659 0.9720079 +0.5050551 0.3384659 0.9720079 +0.5370987 0.3384659 0.9720079 +0.5668815 0.3384659 0.9720079 +0.5947903 0.3384659 0.9720079 +0.6211144 0.3384659 0.9720079 +0.6460766 0.3384659 0.9720079 +0.6698526 0.3384659 0.9720079 +0.6925839 0.3384659 0.9720079 +0.7143866 0.3384659 0.9720079 +0.7353569 0.3384659 0.9720079 +0.7555758 0.3384659 0.9720079 +0.7751122 0.3384659 0.9720079 +0.7940252 0.3384659 0.9720079 +0.8123661 0.3384659 0.9720079 +0.8301795 0.3384659 0.9720079 +0.8475045 0.3384659 0.9720079 +0.8643761 0.3384659 0.9720079 +0.880825 0.3384659 0.9720079 +0.8968787 0.3384659 0.9720079 +0.9125621 0.3384659 0.9720079 +0.9278974 0.3384659 0.9720079 +0.9429048 0.3384659 0.9720079 +0.9576028 0.3384659 0.9720079 +0.9720079 0.3384659 0.9720079 +0.9861357 0.3384659 0.9720079 +1 0.3384659 0.9720079 +0 0.3885728 0.9720079 +0.1939468 0.3885728 0.9720079 +0.2773041 0.3885728 0.9720079 +0.3384659 0.3885728 0.9720079 +0.3885728 0.3885728 0.9720079 +0.4317928 0.3885728 0.9720079 +0.470214 0.3885728 0.9720079 +0.5050551 0.3885728 0.9720079 +0.5370987 0.3885728 0.9720079 +0.5668815 0.3885728 0.9720079 +0.5947903 0.3885728 0.9720079 +0.6211144 0.3885728 0.9720079 +0.6460766 0.3885728 0.9720079 +0.6698526 0.3885728 0.9720079 +0.6925839 0.3885728 0.9720079 +0.7143866 0.3885728 0.9720079 +0.7353569 0.3885728 0.9720079 +0.7555758 0.3885728 0.9720079 +0.7751122 0.3885728 0.9720079 +0.7940252 0.3885728 0.9720079 +0.8123661 0.3885728 0.9720079 +0.8301795 0.3885728 0.9720079 +0.8475045 0.3885728 0.9720079 +0.8643761 0.3885728 0.9720079 +0.880825 0.3885728 0.9720079 +0.8968787 0.3885728 0.9720079 +0.9125621 0.3885728 0.9720079 +0.9278974 0.3885728 0.9720079 +0.9429048 0.3885728 0.9720079 +0.9576028 0.3885728 0.9720079 +0.9720079 0.3885728 0.9720079 +0.9861357 0.3885728 0.9720079 +1 0.3885728 0.9720079 +0 0.4317928 0.9720079 +0.1939468 0.4317928 0.9720079 +0.2773041 0.4317928 0.9720079 +0.3384659 0.4317928 0.9720079 +0.3885728 0.4317928 0.9720079 +0.4317928 0.4317928 0.9720079 +0.470214 0.4317928 0.9720079 +0.5050551 0.4317928 0.9720079 +0.5370987 0.4317928 0.9720079 +0.5668815 0.4317928 0.9720079 +0.5947903 0.4317928 0.9720079 +0.6211144 0.4317928 0.9720079 +0.6460766 0.4317928 0.9720079 +0.6698526 0.4317928 0.9720079 +0.6925839 0.4317928 0.9720079 +0.7143866 0.4317928 0.9720079 +0.7353569 0.4317928 0.9720079 +0.7555758 0.4317928 0.9720079 +0.7751122 0.4317928 0.9720079 +0.7940252 0.4317928 0.9720079 +0.8123661 0.4317928 0.9720079 +0.8301795 0.4317928 0.9720079 +0.8475045 0.4317928 0.9720079 +0.8643761 0.4317928 0.9720079 +0.880825 0.4317928 0.9720079 +0.8968787 0.4317928 0.9720079 +0.9125621 0.4317928 0.9720079 +0.9278974 0.4317928 0.9720079 +0.9429048 0.4317928 0.9720079 +0.9576028 0.4317928 0.9720079 +0.9720079 0.4317928 0.9720079 +0.9861357 0.4317928 0.9720079 +1 0.4317928 0.9720079 +0 0.470214 0.9720079 +0.1939468 0.470214 0.9720079 +0.2773041 0.470214 0.9720079 +0.3384659 0.470214 0.9720079 +0.3885728 0.470214 0.9720079 +0.4317928 0.470214 0.9720079 +0.470214 0.470214 0.9720079 +0.5050551 0.470214 0.9720079 +0.5370987 0.470214 0.9720079 +0.5668815 0.470214 0.9720079 +0.5947903 0.470214 0.9720079 +0.6211144 0.470214 0.9720079 +0.6460766 0.470214 0.9720079 +0.6698526 0.470214 0.9720079 +0.6925839 0.470214 0.9720079 +0.7143866 0.470214 0.9720079 +0.7353569 0.470214 0.9720079 +0.7555758 0.470214 0.9720079 +0.7751122 0.470214 0.9720079 +0.7940252 0.470214 0.9720079 +0.8123661 0.470214 0.9720079 +0.8301795 0.470214 0.9720079 +0.8475045 0.470214 0.9720079 +0.8643761 0.470214 0.9720079 +0.880825 0.470214 0.9720079 +0.8968787 0.470214 0.9720079 +0.9125621 0.470214 0.9720079 +0.9278974 0.470214 0.9720079 +0.9429048 0.470214 0.9720079 +0.9576028 0.470214 0.9720079 +0.9720079 0.470214 0.9720079 +0.9861357 0.470214 0.9720079 +1 0.470214 0.9720079 +0 0.5050551 0.9720079 +0.1939468 0.5050551 0.9720079 +0.2773041 0.5050551 0.9720079 +0.3384659 0.5050551 0.9720079 +0.3885728 0.5050551 0.9720079 +0.4317928 0.5050551 0.9720079 +0.470214 0.5050551 0.9720079 +0.5050551 0.5050551 0.9720079 +0.5370987 0.5050551 0.9720079 +0.5668815 0.5050551 0.9720079 +0.5947903 0.5050551 0.9720079 +0.6211144 0.5050551 0.9720079 +0.6460766 0.5050551 0.9720079 +0.6698526 0.5050551 0.9720079 +0.6925839 0.5050551 0.9720079 +0.7143866 0.5050551 0.9720079 +0.7353569 0.5050551 0.9720079 +0.7555758 0.5050551 0.9720079 +0.7751122 0.5050551 0.9720079 +0.7940252 0.5050551 0.9720079 +0.8123661 0.5050551 0.9720079 +0.8301795 0.5050551 0.9720079 +0.8475045 0.5050551 0.9720079 +0.8643761 0.5050551 0.9720079 +0.880825 0.5050551 0.9720079 +0.8968787 0.5050551 0.9720079 +0.9125621 0.5050551 0.9720079 +0.9278974 0.5050551 0.9720079 +0.9429048 0.5050551 0.9720079 +0.9576028 0.5050551 0.9720079 +0.9720079 0.5050551 0.9720079 +0.9861357 0.5050551 0.9720079 +1 0.5050551 0.9720079 +0 0.5370987 0.9720079 +0.1939468 0.5370987 0.9720079 +0.2773041 0.5370987 0.9720079 +0.3384659 0.5370987 0.9720079 +0.3885728 0.5370987 0.9720079 +0.4317928 0.5370987 0.9720079 +0.470214 0.5370987 0.9720079 +0.5050551 0.5370987 0.9720079 +0.5370987 0.5370987 0.9720079 +0.5668815 0.5370987 0.9720079 +0.5947903 0.5370987 0.9720079 +0.6211144 0.5370987 0.9720079 +0.6460766 0.5370987 0.9720079 +0.6698526 0.5370987 0.9720079 +0.6925839 0.5370987 0.9720079 +0.7143866 0.5370987 0.9720079 +0.7353569 0.5370987 0.9720079 +0.7555758 0.5370987 0.9720079 +0.7751122 0.5370987 0.9720079 +0.7940252 0.5370987 0.9720079 +0.8123661 0.5370987 0.9720079 +0.8301795 0.5370987 0.9720079 +0.8475045 0.5370987 0.9720079 +0.8643761 0.5370987 0.9720079 +0.880825 0.5370987 0.9720079 +0.8968787 0.5370987 0.9720079 +0.9125621 0.5370987 0.9720079 +0.9278974 0.5370987 0.9720079 +0.9429048 0.5370987 0.9720079 +0.9576028 0.5370987 0.9720079 +0.9720079 0.5370987 0.9720079 +0.9861357 0.5370987 0.9720079 +1 0.5370987 0.9720079 +0 0.5668815 0.9720079 +0.1939468 0.5668815 0.9720079 +0.2773041 0.5668815 0.9720079 +0.3384659 0.5668815 0.9720079 +0.3885728 0.5668815 0.9720079 +0.4317928 0.5668815 0.9720079 +0.470214 0.5668815 0.9720079 +0.5050551 0.5668815 0.9720079 +0.5370987 0.5668815 0.9720079 +0.5668815 0.5668815 0.9720079 +0.5947903 0.5668815 0.9720079 +0.6211144 0.5668815 0.9720079 +0.6460766 0.5668815 0.9720079 +0.6698526 0.5668815 0.9720079 +0.6925839 0.5668815 0.9720079 +0.7143866 0.5668815 0.9720079 +0.7353569 0.5668815 0.9720079 +0.7555758 0.5668815 0.9720079 +0.7751122 0.5668815 0.9720079 +0.7940252 0.5668815 0.9720079 +0.8123661 0.5668815 0.9720079 +0.8301795 0.5668815 0.9720079 +0.8475045 0.5668815 0.9720079 +0.8643761 0.5668815 0.9720079 +0.880825 0.5668815 0.9720079 +0.8968787 0.5668815 0.9720079 +0.9125621 0.5668815 0.9720079 +0.9278974 0.5668815 0.9720079 +0.9429048 0.5668815 0.9720079 +0.9576028 0.5668815 0.9720079 +0.9720079 0.5668815 0.9720079 +0.9861357 0.5668815 0.9720079 +1 0.5668815 0.9720079 +0 0.5947903 0.9720079 +0.1939468 0.5947903 0.9720079 +0.2773041 0.5947903 0.9720079 +0.3384659 0.5947903 0.9720079 +0.3885728 0.5947903 0.9720079 +0.4317928 0.5947903 0.9720079 +0.470214 0.5947903 0.9720079 +0.5050551 0.5947903 0.9720079 +0.5370987 0.5947903 0.9720079 +0.5668815 0.5947903 0.9720079 +0.5947903 0.5947903 0.9720079 +0.6211144 0.5947903 0.9720079 +0.6460766 0.5947903 0.9720079 +0.6698526 0.5947903 0.9720079 +0.6925839 0.5947903 0.9720079 +0.7143866 0.5947903 0.9720079 +0.7353569 0.5947903 0.9720079 +0.7555758 0.5947903 0.9720079 +0.7751122 0.5947903 0.9720079 +0.7940252 0.5947903 0.9720079 +0.8123661 0.5947903 0.9720079 +0.8301795 0.5947903 0.9720079 +0.8475045 0.5947903 0.9720079 +0.8643761 0.5947903 0.9720079 +0.880825 0.5947903 0.9720079 +0.8968787 0.5947903 0.9720079 +0.9125621 0.5947903 0.9720079 +0.9278974 0.5947903 0.9720079 +0.9429048 0.5947903 0.9720079 +0.9576028 0.5947903 0.9720079 +0.9720079 0.5947903 0.9720079 +0.9861357 0.5947903 0.9720079 +1 0.5947903 0.9720079 +0 0.6211144 0.9720079 +0.1939468 0.6211144 0.9720079 +0.2773041 0.6211144 0.9720079 +0.3384659 0.6211144 0.9720079 +0.3885728 0.6211144 0.9720079 +0.4317928 0.6211144 0.9720079 +0.470214 0.6211144 0.9720079 +0.5050551 0.6211144 0.9720079 +0.5370987 0.6211144 0.9720079 +0.5668815 0.6211144 0.9720079 +0.5947903 0.6211144 0.9720079 +0.6211144 0.6211144 0.9720079 +0.6460766 0.6211144 0.9720079 +0.6698526 0.6211144 0.9720079 +0.6925839 0.6211144 0.9720079 +0.7143866 0.6211144 0.9720079 +0.7353569 0.6211144 0.9720079 +0.7555758 0.6211144 0.9720079 +0.7751122 0.6211144 0.9720079 +0.7940252 0.6211144 0.9720079 +0.8123661 0.6211144 0.9720079 +0.8301795 0.6211144 0.9720079 +0.8475045 0.6211144 0.9720079 +0.8643761 0.6211144 0.9720079 +0.880825 0.6211144 0.9720079 +0.8968787 0.6211144 0.9720079 +0.9125621 0.6211144 0.9720079 +0.9278974 0.6211144 0.9720079 +0.9429048 0.6211144 0.9720079 +0.9576028 0.6211144 0.9720079 +0.9720079 0.6211144 0.9720079 +0.9861357 0.6211144 0.9720079 +1 0.6211144 0.9720079 +0 0.6460766 0.9720079 +0.1939468 0.6460766 0.9720079 +0.2773041 0.6460766 0.9720079 +0.3384659 0.6460766 0.9720079 +0.3885728 0.6460766 0.9720079 +0.4317928 0.6460766 0.9720079 +0.470214 0.6460766 0.9720079 +0.5050551 0.6460766 0.9720079 +0.5370987 0.6460766 0.9720079 +0.5668815 0.6460766 0.9720079 +0.5947903 0.6460766 0.9720079 +0.6211144 0.6460766 0.9720079 +0.6460766 0.6460766 0.9720079 +0.6698526 0.6460766 0.9720079 +0.6925839 0.6460766 0.9720079 +0.7143866 0.6460766 0.9720079 +0.7353569 0.6460766 0.9720079 +0.7555758 0.6460766 0.9720079 +0.7751122 0.6460766 0.9720079 +0.7940252 0.6460766 0.9720079 +0.8123661 0.6460766 0.9720079 +0.8301795 0.6460766 0.9720079 +0.8475045 0.6460766 0.9720079 +0.8643761 0.6460766 0.9720079 +0.880825 0.6460766 0.9720079 +0.8968787 0.6460766 0.9720079 +0.9125621 0.6460766 0.9720079 +0.9278974 0.6460766 0.9720079 +0.9429048 0.6460766 0.9720079 +0.9576028 0.6460766 0.9720079 +0.9720079 0.6460766 0.9720079 +0.9861357 0.6460766 0.9720079 +1 0.6460766 0.9720079 +0 0.6698526 0.9720079 +0.1939468 0.6698526 0.9720079 +0.2773041 0.6698526 0.9720079 +0.3384659 0.6698526 0.9720079 +0.3885728 0.6698526 0.9720079 +0.4317928 0.6698526 0.9720079 +0.470214 0.6698526 0.9720079 +0.5050551 0.6698526 0.9720079 +0.5370987 0.6698526 0.9720079 +0.5668815 0.6698526 0.9720079 +0.5947903 0.6698526 0.9720079 +0.6211144 0.6698526 0.9720079 +0.6460766 0.6698526 0.9720079 +0.6698526 0.6698526 0.9720079 +0.6925839 0.6698526 0.9720079 +0.7143866 0.6698526 0.9720079 +0.7353569 0.6698526 0.9720079 +0.7555758 0.6698526 0.9720079 +0.7751122 0.6698526 0.9720079 +0.7940252 0.6698526 0.9720079 +0.8123661 0.6698526 0.9720079 +0.8301795 0.6698526 0.9720079 +0.8475045 0.6698526 0.9720079 +0.8643761 0.6698526 0.9720079 +0.880825 0.6698526 0.9720079 +0.8968787 0.6698526 0.9720079 +0.9125621 0.6698526 0.9720079 +0.9278974 0.6698526 0.9720079 +0.9429048 0.6698526 0.9720079 +0.9576028 0.6698526 0.9720079 +0.9720079 0.6698526 0.9720079 +0.9861357 0.6698526 0.9720079 +1 0.6698526 0.9720079 +0 0.6925839 0.9720079 +0.1939468 0.6925839 0.9720079 +0.2773041 0.6925839 0.9720079 +0.3384659 0.6925839 0.9720079 +0.3885728 0.6925839 0.9720079 +0.4317928 0.6925839 0.9720079 +0.470214 0.6925839 0.9720079 +0.5050551 0.6925839 0.9720079 +0.5370987 0.6925839 0.9720079 +0.5668815 0.6925839 0.9720079 +0.5947903 0.6925839 0.9720079 +0.6211144 0.6925839 0.9720079 +0.6460766 0.6925839 0.9720079 +0.6698526 0.6925839 0.9720079 +0.6925839 0.6925839 0.9720079 +0.7143866 0.6925839 0.9720079 +0.7353569 0.6925839 0.9720079 +0.7555758 0.6925839 0.9720079 +0.7751122 0.6925839 0.9720079 +0.7940252 0.6925839 0.9720079 +0.8123661 0.6925839 0.9720079 +0.8301795 0.6925839 0.9720079 +0.8475045 0.6925839 0.9720079 +0.8643761 0.6925839 0.9720079 +0.880825 0.6925839 0.9720079 +0.8968787 0.6925839 0.9720079 +0.9125621 0.6925839 0.9720079 +0.9278974 0.6925839 0.9720079 +0.9429048 0.6925839 0.9720079 +0.9576028 0.6925839 0.9720079 +0.9720079 0.6925839 0.9720079 +0.9861357 0.6925839 0.9720079 +1 0.6925839 0.9720079 +0 0.7143866 0.9720079 +0.1939468 0.7143866 0.9720079 +0.2773041 0.7143866 0.9720079 +0.3384659 0.7143866 0.9720079 +0.3885728 0.7143866 0.9720079 +0.4317928 0.7143866 0.9720079 +0.470214 0.7143866 0.9720079 +0.5050551 0.7143866 0.9720079 +0.5370987 0.7143866 0.9720079 +0.5668815 0.7143866 0.9720079 +0.5947903 0.7143866 0.9720079 +0.6211144 0.7143866 0.9720079 +0.6460766 0.7143866 0.9720079 +0.6698526 0.7143866 0.9720079 +0.6925839 0.7143866 0.9720079 +0.7143866 0.7143866 0.9720079 +0.7353569 0.7143866 0.9720079 +0.7555758 0.7143866 0.9720079 +0.7751122 0.7143866 0.9720079 +0.7940252 0.7143866 0.9720079 +0.8123661 0.7143866 0.9720079 +0.8301795 0.7143866 0.9720079 +0.8475045 0.7143866 0.9720079 +0.8643761 0.7143866 0.9720079 +0.880825 0.7143866 0.9720079 +0.8968787 0.7143866 0.9720079 +0.9125621 0.7143866 0.9720079 +0.9278974 0.7143866 0.9720079 +0.9429048 0.7143866 0.9720079 +0.9576028 0.7143866 0.9720079 +0.9720079 0.7143866 0.9720079 +0.9861357 0.7143866 0.9720079 +1 0.7143866 0.9720079 +0 0.7353569 0.9720079 +0.1939468 0.7353569 0.9720079 +0.2773041 0.7353569 0.9720079 +0.3384659 0.7353569 0.9720079 +0.3885728 0.7353569 0.9720079 +0.4317928 0.7353569 0.9720079 +0.470214 0.7353569 0.9720079 +0.5050551 0.7353569 0.9720079 +0.5370987 0.7353569 0.9720079 +0.5668815 0.7353569 0.9720079 +0.5947903 0.7353569 0.9720079 +0.6211144 0.7353569 0.9720079 +0.6460766 0.7353569 0.9720079 +0.6698526 0.7353569 0.9720079 +0.6925839 0.7353569 0.9720079 +0.7143866 0.7353569 0.9720079 +0.7353569 0.7353569 0.9720079 +0.7555758 0.7353569 0.9720079 +0.7751122 0.7353569 0.9720079 +0.7940252 0.7353569 0.9720079 +0.8123661 0.7353569 0.9720079 +0.8301795 0.7353569 0.9720079 +0.8475045 0.7353569 0.9720079 +0.8643761 0.7353569 0.9720079 +0.880825 0.7353569 0.9720079 +0.8968787 0.7353569 0.9720079 +0.9125621 0.7353569 0.9720079 +0.9278974 0.7353569 0.9720079 +0.9429048 0.7353569 0.9720079 +0.9576028 0.7353569 0.9720079 +0.9720079 0.7353569 0.9720079 +0.9861357 0.7353569 0.9720079 +1 0.7353569 0.9720079 +0 0.7555758 0.9720079 +0.1939468 0.7555758 0.9720079 +0.2773041 0.7555758 0.9720079 +0.3384659 0.7555758 0.9720079 +0.3885728 0.7555758 0.9720079 +0.4317928 0.7555758 0.9720079 +0.470214 0.7555758 0.9720079 +0.5050551 0.7555758 0.9720079 +0.5370987 0.7555758 0.9720079 +0.5668815 0.7555758 0.9720079 +0.5947903 0.7555758 0.9720079 +0.6211144 0.7555758 0.9720079 +0.6460766 0.7555758 0.9720079 +0.6698526 0.7555758 0.9720079 +0.6925839 0.7555758 0.9720079 +0.7143866 0.7555758 0.9720079 +0.7353569 0.7555758 0.9720079 +0.7555758 0.7555758 0.9720079 +0.7751122 0.7555758 0.9720079 +0.7940252 0.7555758 0.9720079 +0.8123661 0.7555758 0.9720079 +0.8301795 0.7555758 0.9720079 +0.8475045 0.7555758 0.9720079 +0.8643761 0.7555758 0.9720079 +0.880825 0.7555758 0.9720079 +0.8968787 0.7555758 0.9720079 +0.9125621 0.7555758 0.9720079 +0.9278974 0.7555758 0.9720079 +0.9429048 0.7555758 0.9720079 +0.9576028 0.7555758 0.9720079 +0.9720079 0.7555758 0.9720079 +0.9861357 0.7555758 0.9720079 +1 0.7555758 0.9720079 +0 0.7751122 0.9720079 +0.1939468 0.7751122 0.9720079 +0.2773041 0.7751122 0.9720079 +0.3384659 0.7751122 0.9720079 +0.3885728 0.7751122 0.9720079 +0.4317928 0.7751122 0.9720079 +0.470214 0.7751122 0.9720079 +0.5050551 0.7751122 0.9720079 +0.5370987 0.7751122 0.9720079 +0.5668815 0.7751122 0.9720079 +0.5947903 0.7751122 0.9720079 +0.6211144 0.7751122 0.9720079 +0.6460766 0.7751122 0.9720079 +0.6698526 0.7751122 0.9720079 +0.6925839 0.7751122 0.9720079 +0.7143866 0.7751122 0.9720079 +0.7353569 0.7751122 0.9720079 +0.7555758 0.7751122 0.9720079 +0.7751122 0.7751122 0.9720079 +0.7940252 0.7751122 0.9720079 +0.8123661 0.7751122 0.9720079 +0.8301795 0.7751122 0.9720079 +0.8475045 0.7751122 0.9720079 +0.8643761 0.7751122 0.9720079 +0.880825 0.7751122 0.9720079 +0.8968787 0.7751122 0.9720079 +0.9125621 0.7751122 0.9720079 +0.9278974 0.7751122 0.9720079 +0.9429048 0.7751122 0.9720079 +0.9576028 0.7751122 0.9720079 +0.9720079 0.7751122 0.9720079 +0.9861357 0.7751122 0.9720079 +1 0.7751122 0.9720079 +0 0.7940252 0.9720079 +0.1939468 0.7940252 0.9720079 +0.2773041 0.7940252 0.9720079 +0.3384659 0.7940252 0.9720079 +0.3885728 0.7940252 0.9720079 +0.4317928 0.7940252 0.9720079 +0.470214 0.7940252 0.9720079 +0.5050551 0.7940252 0.9720079 +0.5370987 0.7940252 0.9720079 +0.5668815 0.7940252 0.9720079 +0.5947903 0.7940252 0.9720079 +0.6211144 0.7940252 0.9720079 +0.6460766 0.7940252 0.9720079 +0.6698526 0.7940252 0.9720079 +0.6925839 0.7940252 0.9720079 +0.7143866 0.7940252 0.9720079 +0.7353569 0.7940252 0.9720079 +0.7555758 0.7940252 0.9720079 +0.7751122 0.7940252 0.9720079 +0.7940252 0.7940252 0.9720079 +0.8123661 0.7940252 0.9720079 +0.8301795 0.7940252 0.9720079 +0.8475045 0.7940252 0.9720079 +0.8643761 0.7940252 0.9720079 +0.880825 0.7940252 0.9720079 +0.8968787 0.7940252 0.9720079 +0.9125621 0.7940252 0.9720079 +0.9278974 0.7940252 0.9720079 +0.9429048 0.7940252 0.9720079 +0.9576028 0.7940252 0.9720079 +0.9720079 0.7940252 0.9720079 +0.9861357 0.7940252 0.9720079 +1 0.7940252 0.9720079 +0 0.8123661 0.9720079 +0.1939468 0.8123661 0.9720079 +0.2773041 0.8123661 0.9720079 +0.3384659 0.8123661 0.9720079 +0.3885728 0.8123661 0.9720079 +0.4317928 0.8123661 0.9720079 +0.470214 0.8123661 0.9720079 +0.5050551 0.8123661 0.9720079 +0.5370987 0.8123661 0.9720079 +0.5668815 0.8123661 0.9720079 +0.5947903 0.8123661 0.9720079 +0.6211144 0.8123661 0.9720079 +0.6460766 0.8123661 0.9720079 +0.6698526 0.8123661 0.9720079 +0.6925839 0.8123661 0.9720079 +0.7143866 0.8123661 0.9720079 +0.7353569 0.8123661 0.9720079 +0.7555758 0.8123661 0.9720079 +0.7751122 0.8123661 0.9720079 +0.7940252 0.8123661 0.9720079 +0.8123661 0.8123661 0.9720079 +0.8301795 0.8123661 0.9720079 +0.8475045 0.8123661 0.9720079 +0.8643761 0.8123661 0.9720079 +0.880825 0.8123661 0.9720079 +0.8968787 0.8123661 0.9720079 +0.9125621 0.8123661 0.9720079 +0.9278974 0.8123661 0.9720079 +0.9429048 0.8123661 0.9720079 +0.9576028 0.8123661 0.9720079 +0.9720079 0.8123661 0.9720079 +0.9861357 0.8123661 0.9720079 +1 0.8123661 0.9720079 +0 0.8301795 0.9720079 +0.1939468 0.8301795 0.9720079 +0.2773041 0.8301795 0.9720079 +0.3384659 0.8301795 0.9720079 +0.3885728 0.8301795 0.9720079 +0.4317928 0.8301795 0.9720079 +0.470214 0.8301795 0.9720079 +0.5050551 0.8301795 0.9720079 +0.5370987 0.8301795 0.9720079 +0.5668815 0.8301795 0.9720079 +0.5947903 0.8301795 0.9720079 +0.6211144 0.8301795 0.9720079 +0.6460766 0.8301795 0.9720079 +0.6698526 0.8301795 0.9720079 +0.6925839 0.8301795 0.9720079 +0.7143866 0.8301795 0.9720079 +0.7353569 0.8301795 0.9720079 +0.7555758 0.8301795 0.9720079 +0.7751122 0.8301795 0.9720079 +0.7940252 0.8301795 0.9720079 +0.8123661 0.8301795 0.9720079 +0.8301795 0.8301795 0.9720079 +0.8475045 0.8301795 0.9720079 +0.8643761 0.8301795 0.9720079 +0.880825 0.8301795 0.9720079 +0.8968787 0.8301795 0.9720079 +0.9125621 0.8301795 0.9720079 +0.9278974 0.8301795 0.9720079 +0.9429048 0.8301795 0.9720079 +0.9576028 0.8301795 0.9720079 +0.9720079 0.8301795 0.9720079 +0.9861357 0.8301795 0.9720079 +1 0.8301795 0.9720079 +0 0.8475045 0.9720079 +0.1939468 0.8475045 0.9720079 +0.2773041 0.8475045 0.9720079 +0.3384659 0.8475045 0.9720079 +0.3885728 0.8475045 0.9720079 +0.4317928 0.8475045 0.9720079 +0.470214 0.8475045 0.9720079 +0.5050551 0.8475045 0.9720079 +0.5370987 0.8475045 0.9720079 +0.5668815 0.8475045 0.9720079 +0.5947903 0.8475045 0.9720079 +0.6211144 0.8475045 0.9720079 +0.6460766 0.8475045 0.9720079 +0.6698526 0.8475045 0.9720079 +0.6925839 0.8475045 0.9720079 +0.7143866 0.8475045 0.9720079 +0.7353569 0.8475045 0.9720079 +0.7555758 0.8475045 0.9720079 +0.7751122 0.8475045 0.9720079 +0.7940252 0.8475045 0.9720079 +0.8123661 0.8475045 0.9720079 +0.8301795 0.8475045 0.9720079 +0.8475045 0.8475045 0.9720079 +0.8643761 0.8475045 0.9720079 +0.880825 0.8475045 0.9720079 +0.8968787 0.8475045 0.9720079 +0.9125621 0.8475045 0.9720079 +0.9278974 0.8475045 0.9720079 +0.9429048 0.8475045 0.9720079 +0.9576028 0.8475045 0.9720079 +0.9720079 0.8475045 0.9720079 +0.9861357 0.8475045 0.9720079 +1 0.8475045 0.9720079 +0 0.8643761 0.9720079 +0.1939468 0.8643761 0.9720079 +0.2773041 0.8643761 0.9720079 +0.3384659 0.8643761 0.9720079 +0.3885728 0.8643761 0.9720079 +0.4317928 0.8643761 0.9720079 +0.470214 0.8643761 0.9720079 +0.5050551 0.8643761 0.9720079 +0.5370987 0.8643761 0.9720079 +0.5668815 0.8643761 0.9720079 +0.5947903 0.8643761 0.9720079 +0.6211144 0.8643761 0.9720079 +0.6460766 0.8643761 0.9720079 +0.6698526 0.8643761 0.9720079 +0.6925839 0.8643761 0.9720079 +0.7143866 0.8643761 0.9720079 +0.7353569 0.8643761 0.9720079 +0.7555758 0.8643761 0.9720079 +0.7751122 0.8643761 0.9720079 +0.7940252 0.8643761 0.9720079 +0.8123661 0.8643761 0.9720079 +0.8301795 0.8643761 0.9720079 +0.8475045 0.8643761 0.9720079 +0.8643761 0.8643761 0.9720079 +0.880825 0.8643761 0.9720079 +0.8968787 0.8643761 0.9720079 +0.9125621 0.8643761 0.9720079 +0.9278974 0.8643761 0.9720079 +0.9429048 0.8643761 0.9720079 +0.9576028 0.8643761 0.9720079 +0.9720079 0.8643761 0.9720079 +0.9861357 0.8643761 0.9720079 +1 0.8643761 0.9720079 +0 0.880825 0.9720079 +0.1939468 0.880825 0.9720079 +0.2773041 0.880825 0.9720079 +0.3384659 0.880825 0.9720079 +0.3885728 0.880825 0.9720079 +0.4317928 0.880825 0.9720079 +0.470214 0.880825 0.9720079 +0.5050551 0.880825 0.9720079 +0.5370987 0.880825 0.9720079 +0.5668815 0.880825 0.9720079 +0.5947903 0.880825 0.9720079 +0.6211144 0.880825 0.9720079 +0.6460766 0.880825 0.9720079 +0.6698526 0.880825 0.9720079 +0.6925839 0.880825 0.9720079 +0.7143866 0.880825 0.9720079 +0.7353569 0.880825 0.9720079 +0.7555758 0.880825 0.9720079 +0.7751122 0.880825 0.9720079 +0.7940252 0.880825 0.9720079 +0.8123661 0.880825 0.9720079 +0.8301795 0.880825 0.9720079 +0.8475045 0.880825 0.9720079 +0.8643761 0.880825 0.9720079 +0.880825 0.880825 0.9720079 +0.8968787 0.880825 0.9720079 +0.9125621 0.880825 0.9720079 +0.9278974 0.880825 0.9720079 +0.9429048 0.880825 0.9720079 +0.9576028 0.880825 0.9720079 +0.9720079 0.880825 0.9720079 +0.9861357 0.880825 0.9720079 +1 0.880825 0.9720079 +0 0.8968787 0.9720079 +0.1939468 0.8968787 0.9720079 +0.2773041 0.8968787 0.9720079 +0.3384659 0.8968787 0.9720079 +0.3885728 0.8968787 0.9720079 +0.4317928 0.8968787 0.9720079 +0.470214 0.8968787 0.9720079 +0.5050551 0.8968787 0.9720079 +0.5370987 0.8968787 0.9720079 +0.5668815 0.8968787 0.9720079 +0.5947903 0.8968787 0.9720079 +0.6211144 0.8968787 0.9720079 +0.6460766 0.8968787 0.9720079 +0.6698526 0.8968787 0.9720079 +0.6925839 0.8968787 0.9720079 +0.7143866 0.8968787 0.9720079 +0.7353569 0.8968787 0.9720079 +0.7555758 0.8968787 0.9720079 +0.7751122 0.8968787 0.9720079 +0.7940252 0.8968787 0.9720079 +0.8123661 0.8968787 0.9720079 +0.8301795 0.8968787 0.9720079 +0.8475045 0.8968787 0.9720079 +0.8643761 0.8968787 0.9720079 +0.880825 0.8968787 0.9720079 +0.8968787 0.8968787 0.9720079 +0.9125621 0.8968787 0.9720079 +0.9278974 0.8968787 0.9720079 +0.9429048 0.8968787 0.9720079 +0.9576028 0.8968787 0.9720079 +0.9720079 0.8968787 0.9720079 +0.9861357 0.8968787 0.9720079 +1 0.8968787 0.9720079 +0 0.9125621 0.9720079 +0.1939468 0.9125621 0.9720079 +0.2773041 0.9125621 0.9720079 +0.3384659 0.9125621 0.9720079 +0.3885728 0.9125621 0.9720079 +0.4317928 0.9125621 0.9720079 +0.470214 0.9125621 0.9720079 +0.5050551 0.9125621 0.9720079 +0.5370987 0.9125621 0.9720079 +0.5668815 0.9125621 0.9720079 +0.5947903 0.9125621 0.9720079 +0.6211144 0.9125621 0.9720079 +0.6460766 0.9125621 0.9720079 +0.6698526 0.9125621 0.9720079 +0.6925839 0.9125621 0.9720079 +0.7143866 0.9125621 0.9720079 +0.7353569 0.9125621 0.9720079 +0.7555758 0.9125621 0.9720079 +0.7751122 0.9125621 0.9720079 +0.7940252 0.9125621 0.9720079 +0.8123661 0.9125621 0.9720079 +0.8301795 0.9125621 0.9720079 +0.8475045 0.9125621 0.9720079 +0.8643761 0.9125621 0.9720079 +0.880825 0.9125621 0.9720079 +0.8968787 0.9125621 0.9720079 +0.9125621 0.9125621 0.9720079 +0.9278974 0.9125621 0.9720079 +0.9429048 0.9125621 0.9720079 +0.9576028 0.9125621 0.9720079 +0.9720079 0.9125621 0.9720079 +0.9861357 0.9125621 0.9720079 +1 0.9125621 0.9720079 +0 0.9278974 0.9720079 +0.1939468 0.9278974 0.9720079 +0.2773041 0.9278974 0.9720079 +0.3384659 0.9278974 0.9720079 +0.3885728 0.9278974 0.9720079 +0.4317928 0.9278974 0.9720079 +0.470214 0.9278974 0.9720079 +0.5050551 0.9278974 0.9720079 +0.5370987 0.9278974 0.9720079 +0.5668815 0.9278974 0.9720079 +0.5947903 0.9278974 0.9720079 +0.6211144 0.9278974 0.9720079 +0.6460766 0.9278974 0.9720079 +0.6698526 0.9278974 0.9720079 +0.6925839 0.9278974 0.9720079 +0.7143866 0.9278974 0.9720079 +0.7353569 0.9278974 0.9720079 +0.7555758 0.9278974 0.9720079 +0.7751122 0.9278974 0.9720079 +0.7940252 0.9278974 0.9720079 +0.8123661 0.9278974 0.9720079 +0.8301795 0.9278974 0.9720079 +0.8475045 0.9278974 0.9720079 +0.8643761 0.9278974 0.9720079 +0.880825 0.9278974 0.9720079 +0.8968787 0.9278974 0.9720079 +0.9125621 0.9278974 0.9720079 +0.9278974 0.9278974 0.9720079 +0.9429048 0.9278974 0.9720079 +0.9576028 0.9278974 0.9720079 +0.9720079 0.9278974 0.9720079 +0.9861357 0.9278974 0.9720079 +1 0.9278974 0.9720079 +0 0.9429048 0.9720079 +0.1939468 0.9429048 0.9720079 +0.2773041 0.9429048 0.9720079 +0.3384659 0.9429048 0.9720079 +0.3885728 0.9429048 0.9720079 +0.4317928 0.9429048 0.9720079 +0.470214 0.9429048 0.9720079 +0.5050551 0.9429048 0.9720079 +0.5370987 0.9429048 0.9720079 +0.5668815 0.9429048 0.9720079 +0.5947903 0.9429048 0.9720079 +0.6211144 0.9429048 0.9720079 +0.6460766 0.9429048 0.9720079 +0.6698526 0.9429048 0.9720079 +0.6925839 0.9429048 0.9720079 +0.7143866 0.9429048 0.9720079 +0.7353569 0.9429048 0.9720079 +0.7555758 0.9429048 0.9720079 +0.7751122 0.9429048 0.9720079 +0.7940252 0.9429048 0.9720079 +0.8123661 0.9429048 0.9720079 +0.8301795 0.9429048 0.9720079 +0.8475045 0.9429048 0.9720079 +0.8643761 0.9429048 0.9720079 +0.880825 0.9429048 0.9720079 +0.8968787 0.9429048 0.9720079 +0.9125621 0.9429048 0.9720079 +0.9278974 0.9429048 0.9720079 +0.9429048 0.9429048 0.9720079 +0.9576028 0.9429048 0.9720079 +0.9720079 0.9429048 0.9720079 +0.9861357 0.9429048 0.9720079 +1 0.9429048 0.9720079 +0 0.9576028 0.9720079 +0.1939468 0.9576028 0.9720079 +0.2773041 0.9576028 0.9720079 +0.3384659 0.9576028 0.9720079 +0.3885728 0.9576028 0.9720079 +0.4317928 0.9576028 0.9720079 +0.470214 0.9576028 0.9720079 +0.5050551 0.9576028 0.9720079 +0.5370987 0.9576028 0.9720079 +0.5668815 0.9576028 0.9720079 +0.5947903 0.9576028 0.9720079 +0.6211144 0.9576028 0.9720079 +0.6460766 0.9576028 0.9720079 +0.6698526 0.9576028 0.9720079 +0.6925839 0.9576028 0.9720079 +0.7143866 0.9576028 0.9720079 +0.7353569 0.9576028 0.9720079 +0.7555758 0.9576028 0.9720079 +0.7751122 0.9576028 0.9720079 +0.7940252 0.9576028 0.9720079 +0.8123661 0.9576028 0.9720079 +0.8301795 0.9576028 0.9720079 +0.8475045 0.9576028 0.9720079 +0.8643761 0.9576028 0.9720079 +0.880825 0.9576028 0.9720079 +0.8968787 0.9576028 0.9720079 +0.9125621 0.9576028 0.9720079 +0.9278974 0.9576028 0.9720079 +0.9429048 0.9576028 0.9720079 +0.9576028 0.9576028 0.9720079 +0.9720079 0.9576028 0.9720079 +0.9861357 0.9576028 0.9720079 +1 0.9576028 0.9720079 +0 0.9720079 0.9720079 +0.1939468 0.9720079 0.9720079 +0.2773041 0.9720079 0.9720079 +0.3384659 0.9720079 0.9720079 +0.3885728 0.9720079 0.9720079 +0.4317928 0.9720079 0.9720079 +0.470214 0.9720079 0.9720079 +0.5050551 0.9720079 0.9720079 +0.5370987 0.9720079 0.9720079 +0.5668815 0.9720079 0.9720079 +0.5947903 0.9720079 0.9720079 +0.6211144 0.9720079 0.9720079 +0.6460766 0.9720079 0.9720079 +0.6698526 0.9720079 0.9720079 +0.6925839 0.9720079 0.9720079 +0.7143866 0.9720079 0.9720079 +0.7353569 0.9720079 0.9720079 +0.7555758 0.9720079 0.9720079 +0.7751122 0.9720079 0.9720079 +0.7940252 0.9720079 0.9720079 +0.8123661 0.9720079 0.9720079 +0.8301795 0.9720079 0.9720079 +0.8475045 0.9720079 0.9720079 +0.8643761 0.9720079 0.9720079 +0.880825 0.9720079 0.9720079 +0.8968787 0.9720079 0.9720079 +0.9125621 0.9720079 0.9720079 +0.9278974 0.9720079 0.9720079 +0.9429048 0.9720079 0.9720079 +0.9576028 0.9720079 0.9720079 +0.9720079 0.9720079 0.9720079 +0.9861357 0.9720079 0.9720079 +1 0.9720079 0.9720079 +0 0.9861357 0.9720079 +0.1939468 0.9861357 0.9720079 +0.2773041 0.9861357 0.9720079 +0.3384659 0.9861357 0.9720079 +0.3885728 0.9861357 0.9720079 +0.4317928 0.9861357 0.9720079 +0.470214 0.9861357 0.9720079 +0.5050551 0.9861357 0.9720079 +0.5370987 0.9861357 0.9720079 +0.5668815 0.9861357 0.9720079 +0.5947903 0.9861357 0.9720079 +0.6211144 0.9861357 0.9720079 +0.6460766 0.9861357 0.9720079 +0.6698526 0.9861357 0.9720079 +0.6925839 0.9861357 0.9720079 +0.7143866 0.9861357 0.9720079 +0.7353569 0.9861357 0.9720079 +0.7555758 0.9861357 0.9720079 +0.7751122 0.9861357 0.9720079 +0.7940252 0.9861357 0.9720079 +0.8123661 0.9861357 0.9720079 +0.8301795 0.9861357 0.9720079 +0.8475045 0.9861357 0.9720079 +0.8643761 0.9861357 0.9720079 +0.880825 0.9861357 0.9720079 +0.8968787 0.9861357 0.9720079 +0.9125621 0.9861357 0.9720079 +0.9278974 0.9861357 0.9720079 +0.9429048 0.9861357 0.9720079 +0.9576028 0.9861357 0.9720079 +0.9720079 0.9861357 0.9720079 +0.9861357 0.9861357 0.9720079 +1 0.9861357 0.9720079 +0 1 0.9720079 +0.1939468 1 0.9720079 +0.2773041 1 0.9720079 +0.3384659 1 0.9720079 +0.3885728 1 0.9720079 +0.4317928 1 0.9720079 +0.470214 1 0.9720079 +0.5050551 1 0.9720079 +0.5370987 1 0.9720079 +0.5668815 1 0.9720079 +0.5947903 1 0.9720079 +0.6211144 1 0.9720079 +0.6460766 1 0.9720079 +0.6698526 1 0.9720079 +0.6925839 1 0.9720079 +0.7143866 1 0.9720079 +0.7353569 1 0.9720079 +0.7555758 1 0.9720079 +0.7751122 1 0.9720079 +0.7940252 1 0.9720079 +0.8123661 1 0.9720079 +0.8301795 1 0.9720079 +0.8475045 1 0.9720079 +0.8643761 1 0.9720079 +0.880825 1 0.9720079 +0.8968787 1 0.9720079 +0.9125621 1 0.9720079 +0.9278974 1 0.9720079 +0.9429048 1 0.9720079 +0.9576028 1 0.9720079 +0.9720079 1 0.9720079 +0.9861357 1 0.9720079 +1 1 0.9720079 +0 0 0.9861357 +0.1939468 0 0.9861357 +0.2773041 0 0.9861357 +0.3384659 0 0.9861357 +0.3885728 0 0.9861357 +0.4317928 0 0.9861357 +0.470214 0 0.9861357 +0.5050551 0 0.9861357 +0.5370987 0 0.9861357 +0.5668815 0 0.9861357 +0.5947903 0 0.9861357 +0.6211144 0 0.9861357 +0.6460766 0 0.9861357 +0.6698526 0 0.9861357 +0.6925839 0 0.9861357 +0.7143866 0 0.9861357 +0.7353569 0 0.9861357 +0.7555758 0 0.9861357 +0.7751122 0 0.9861357 +0.7940252 0 0.9861357 +0.8123661 0 0.9861357 +0.8301795 0 0.9861357 +0.8475045 0 0.9861357 +0.8643761 0 0.9861357 +0.880825 0 0.9861357 +0.8968787 0 0.9861357 +0.9125621 0 0.9861357 +0.9278974 0 0.9861357 +0.9429048 0 0.9861357 +0.9576028 0 0.9861357 +0.9720079 0 0.9861357 +0.9861357 0 0.9861357 +1 0 0.9861357 +0 0.1939468 0.9861357 +0.1939468 0.1939468 0.9861357 +0.2773041 0.1939468 0.9861357 +0.3384659 0.1939468 0.9861357 +0.3885728 0.1939468 0.9861357 +0.4317928 0.1939468 0.9861357 +0.470214 0.1939468 0.9861357 +0.5050551 0.1939468 0.9861357 +0.5370987 0.1939468 0.9861357 +0.5668815 0.1939468 0.9861357 +0.5947903 0.1939468 0.9861357 +0.6211144 0.1939468 0.9861357 +0.6460766 0.1939468 0.9861357 +0.6698526 0.1939468 0.9861357 +0.6925839 0.1939468 0.9861357 +0.7143866 0.1939468 0.9861357 +0.7353569 0.1939468 0.9861357 +0.7555758 0.1939468 0.9861357 +0.7751122 0.1939468 0.9861357 +0.7940252 0.1939468 0.9861357 +0.8123661 0.1939468 0.9861357 +0.8301795 0.1939468 0.9861357 +0.8475045 0.1939468 0.9861357 +0.8643761 0.1939468 0.9861357 +0.880825 0.1939468 0.9861357 +0.8968787 0.1939468 0.9861357 +0.9125621 0.1939468 0.9861357 +0.9278974 0.1939468 0.9861357 +0.9429048 0.1939468 0.9861357 +0.9576028 0.1939468 0.9861357 +0.9720079 0.1939468 0.9861357 +0.9861357 0.1939468 0.9861357 +1 0.1939468 0.9861357 +0 0.2773041 0.9861357 +0.1939468 0.2773041 0.9861357 +0.2773041 0.2773041 0.9861357 +0.3384659 0.2773041 0.9861357 +0.3885728 0.2773041 0.9861357 +0.4317928 0.2773041 0.9861357 +0.470214 0.2773041 0.9861357 +0.5050551 0.2773041 0.9861357 +0.5370987 0.2773041 0.9861357 +0.5668815 0.2773041 0.9861357 +0.5947903 0.2773041 0.9861357 +0.6211144 0.2773041 0.9861357 +0.6460766 0.2773041 0.9861357 +0.6698526 0.2773041 0.9861357 +0.6925839 0.2773041 0.9861357 +0.7143866 0.2773041 0.9861357 +0.7353569 0.2773041 0.9861357 +0.7555758 0.2773041 0.9861357 +0.7751122 0.2773041 0.9861357 +0.7940252 0.2773041 0.9861357 +0.8123661 0.2773041 0.9861357 +0.8301795 0.2773041 0.9861357 +0.8475045 0.2773041 0.9861357 +0.8643761 0.2773041 0.9861357 +0.880825 0.2773041 0.9861357 +0.8968787 0.2773041 0.9861357 +0.9125621 0.2773041 0.9861357 +0.9278974 0.2773041 0.9861357 +0.9429048 0.2773041 0.9861357 +0.9576028 0.2773041 0.9861357 +0.9720079 0.2773041 0.9861357 +0.9861357 0.2773041 0.9861357 +1 0.2773041 0.9861357 +0 0.3384659 0.9861357 +0.1939468 0.3384659 0.9861357 +0.2773041 0.3384659 0.9861357 +0.3384659 0.3384659 0.9861357 +0.3885728 0.3384659 0.9861357 +0.4317928 0.3384659 0.9861357 +0.470214 0.3384659 0.9861357 +0.5050551 0.3384659 0.9861357 +0.5370987 0.3384659 0.9861357 +0.5668815 0.3384659 0.9861357 +0.5947903 0.3384659 0.9861357 +0.6211144 0.3384659 0.9861357 +0.6460766 0.3384659 0.9861357 +0.6698526 0.3384659 0.9861357 +0.6925839 0.3384659 0.9861357 +0.7143866 0.3384659 0.9861357 +0.7353569 0.3384659 0.9861357 +0.7555758 0.3384659 0.9861357 +0.7751122 0.3384659 0.9861357 +0.7940252 0.3384659 0.9861357 +0.8123661 0.3384659 0.9861357 +0.8301795 0.3384659 0.9861357 +0.8475045 0.3384659 0.9861357 +0.8643761 0.3384659 0.9861357 +0.880825 0.3384659 0.9861357 +0.8968787 0.3384659 0.9861357 +0.9125621 0.3384659 0.9861357 +0.9278974 0.3384659 0.9861357 +0.9429048 0.3384659 0.9861357 +0.9576028 0.3384659 0.9861357 +0.9720079 0.3384659 0.9861357 +0.9861357 0.3384659 0.9861357 +1 0.3384659 0.9861357 +0 0.3885728 0.9861357 +0.1939468 0.3885728 0.9861357 +0.2773041 0.3885728 0.9861357 +0.3384659 0.3885728 0.9861357 +0.3885728 0.3885728 0.9861357 +0.4317928 0.3885728 0.9861357 +0.470214 0.3885728 0.9861357 +0.5050551 0.3885728 0.9861357 +0.5370987 0.3885728 0.9861357 +0.5668815 0.3885728 0.9861357 +0.5947903 0.3885728 0.9861357 +0.6211144 0.3885728 0.9861357 +0.6460766 0.3885728 0.9861357 +0.6698526 0.3885728 0.9861357 +0.6925839 0.3885728 0.9861357 +0.7143866 0.3885728 0.9861357 +0.7353569 0.3885728 0.9861357 +0.7555758 0.3885728 0.9861357 +0.7751122 0.3885728 0.9861357 +0.7940252 0.3885728 0.9861357 +0.8123661 0.3885728 0.9861357 +0.8301795 0.3885728 0.9861357 +0.8475045 0.3885728 0.9861357 +0.8643761 0.3885728 0.9861357 +0.880825 0.3885728 0.9861357 +0.8968787 0.3885728 0.9861357 +0.9125621 0.3885728 0.9861357 +0.9278974 0.3885728 0.9861357 +0.9429048 0.3885728 0.9861357 +0.9576028 0.3885728 0.9861357 +0.9720079 0.3885728 0.9861357 +0.9861357 0.3885728 0.9861357 +1 0.3885728 0.9861357 +0 0.4317928 0.9861357 +0.1939468 0.4317928 0.9861357 +0.2773041 0.4317928 0.9861357 +0.3384659 0.4317928 0.9861357 +0.3885728 0.4317928 0.9861357 +0.4317928 0.4317928 0.9861357 +0.470214 0.4317928 0.9861357 +0.5050551 0.4317928 0.9861357 +0.5370987 0.4317928 0.9861357 +0.5668815 0.4317928 0.9861357 +0.5947903 0.4317928 0.9861357 +0.6211144 0.4317928 0.9861357 +0.6460766 0.4317928 0.9861357 +0.6698526 0.4317928 0.9861357 +0.6925839 0.4317928 0.9861357 +0.7143866 0.4317928 0.9861357 +0.7353569 0.4317928 0.9861357 +0.7555758 0.4317928 0.9861357 +0.7751122 0.4317928 0.9861357 +0.7940252 0.4317928 0.9861357 +0.8123661 0.4317928 0.9861357 +0.8301795 0.4317928 0.9861357 +0.8475045 0.4317928 0.9861357 +0.8643761 0.4317928 0.9861357 +0.880825 0.4317928 0.9861357 +0.8968787 0.4317928 0.9861357 +0.9125621 0.4317928 0.9861357 +0.9278974 0.4317928 0.9861357 +0.9429048 0.4317928 0.9861357 +0.9576028 0.4317928 0.9861357 +0.9720079 0.4317928 0.9861357 +0.9861357 0.4317928 0.9861357 +1 0.4317928 0.9861357 +0 0.470214 0.9861357 +0.1939468 0.470214 0.9861357 +0.2773041 0.470214 0.9861357 +0.3384659 0.470214 0.9861357 +0.3885728 0.470214 0.9861357 +0.4317928 0.470214 0.9861357 +0.470214 0.470214 0.9861357 +0.5050551 0.470214 0.9861357 +0.5370987 0.470214 0.9861357 +0.5668815 0.470214 0.9861357 +0.5947903 0.470214 0.9861357 +0.6211144 0.470214 0.9861357 +0.6460766 0.470214 0.9861357 +0.6698526 0.470214 0.9861357 +0.6925839 0.470214 0.9861357 +0.7143866 0.470214 0.9861357 +0.7353569 0.470214 0.9861357 +0.7555758 0.470214 0.9861357 +0.7751122 0.470214 0.9861357 +0.7940252 0.470214 0.9861357 +0.8123661 0.470214 0.9861357 +0.8301795 0.470214 0.9861357 +0.8475045 0.470214 0.9861357 +0.8643761 0.470214 0.9861357 +0.880825 0.470214 0.9861357 +0.8968787 0.470214 0.9861357 +0.9125621 0.470214 0.9861357 +0.9278974 0.470214 0.9861357 +0.9429048 0.470214 0.9861357 +0.9576028 0.470214 0.9861357 +0.9720079 0.470214 0.9861357 +0.9861357 0.470214 0.9861357 +1 0.470214 0.9861357 +0 0.5050551 0.9861357 +0.1939468 0.5050551 0.9861357 +0.2773041 0.5050551 0.9861357 +0.3384659 0.5050551 0.9861357 +0.3885728 0.5050551 0.9861357 +0.4317928 0.5050551 0.9861357 +0.470214 0.5050551 0.9861357 +0.5050551 0.5050551 0.9861357 +0.5370987 0.5050551 0.9861357 +0.5668815 0.5050551 0.9861357 +0.5947903 0.5050551 0.9861357 +0.6211144 0.5050551 0.9861357 +0.6460766 0.5050551 0.9861357 +0.6698526 0.5050551 0.9861357 +0.6925839 0.5050551 0.9861357 +0.7143866 0.5050551 0.9861357 +0.7353569 0.5050551 0.9861357 +0.7555758 0.5050551 0.9861357 +0.7751122 0.5050551 0.9861357 +0.7940252 0.5050551 0.9861357 +0.8123661 0.5050551 0.9861357 +0.8301795 0.5050551 0.9861357 +0.8475045 0.5050551 0.9861357 +0.8643761 0.5050551 0.9861357 +0.880825 0.5050551 0.9861357 +0.8968787 0.5050551 0.9861357 +0.9125621 0.5050551 0.9861357 +0.9278974 0.5050551 0.9861357 +0.9429048 0.5050551 0.9861357 +0.9576028 0.5050551 0.9861357 +0.9720079 0.5050551 0.9861357 +0.9861357 0.5050551 0.9861357 +1 0.5050551 0.9861357 +0 0.5370987 0.9861357 +0.1939468 0.5370987 0.9861357 +0.2773041 0.5370987 0.9861357 +0.3384659 0.5370987 0.9861357 +0.3885728 0.5370987 0.9861357 +0.4317928 0.5370987 0.9861357 +0.470214 0.5370987 0.9861357 +0.5050551 0.5370987 0.9861357 +0.5370987 0.5370987 0.9861357 +0.5668815 0.5370987 0.9861357 +0.5947903 0.5370987 0.9861357 +0.6211144 0.5370987 0.9861357 +0.6460766 0.5370987 0.9861357 +0.6698526 0.5370987 0.9861357 +0.6925839 0.5370987 0.9861357 +0.7143866 0.5370987 0.9861357 +0.7353569 0.5370987 0.9861357 +0.7555758 0.5370987 0.9861357 +0.7751122 0.5370987 0.9861357 +0.7940252 0.5370987 0.9861357 +0.8123661 0.5370987 0.9861357 +0.8301795 0.5370987 0.9861357 +0.8475045 0.5370987 0.9861357 +0.8643761 0.5370987 0.9861357 +0.880825 0.5370987 0.9861357 +0.8968787 0.5370987 0.9861357 +0.9125621 0.5370987 0.9861357 +0.9278974 0.5370987 0.9861357 +0.9429048 0.5370987 0.9861357 +0.9576028 0.5370987 0.9861357 +0.9720079 0.5370987 0.9861357 +0.9861357 0.5370987 0.9861357 +1 0.5370987 0.9861357 +0 0.5668815 0.9861357 +0.1939468 0.5668815 0.9861357 +0.2773041 0.5668815 0.9861357 +0.3384659 0.5668815 0.9861357 +0.3885728 0.5668815 0.9861357 +0.4317928 0.5668815 0.9861357 +0.470214 0.5668815 0.9861357 +0.5050551 0.5668815 0.9861357 +0.5370987 0.5668815 0.9861357 +0.5668815 0.5668815 0.9861357 +0.5947903 0.5668815 0.9861357 +0.6211144 0.5668815 0.9861357 +0.6460766 0.5668815 0.9861357 +0.6698526 0.5668815 0.9861357 +0.6925839 0.5668815 0.9861357 +0.7143866 0.5668815 0.9861357 +0.7353569 0.5668815 0.9861357 +0.7555758 0.5668815 0.9861357 +0.7751122 0.5668815 0.9861357 +0.7940252 0.5668815 0.9861357 +0.8123661 0.5668815 0.9861357 +0.8301795 0.5668815 0.9861357 +0.8475045 0.5668815 0.9861357 +0.8643761 0.5668815 0.9861357 +0.880825 0.5668815 0.9861357 +0.8968787 0.5668815 0.9861357 +0.9125621 0.5668815 0.9861357 +0.9278974 0.5668815 0.9861357 +0.9429048 0.5668815 0.9861357 +0.9576028 0.5668815 0.9861357 +0.9720079 0.5668815 0.9861357 +0.9861357 0.5668815 0.9861357 +1 0.5668815 0.9861357 +0 0.5947903 0.9861357 +0.1939468 0.5947903 0.9861357 +0.2773041 0.5947903 0.9861357 +0.3384659 0.5947903 0.9861357 +0.3885728 0.5947903 0.9861357 +0.4317928 0.5947903 0.9861357 +0.470214 0.5947903 0.9861357 +0.5050551 0.5947903 0.9861357 +0.5370987 0.5947903 0.9861357 +0.5668815 0.5947903 0.9861357 +0.5947903 0.5947903 0.9861357 +0.6211144 0.5947903 0.9861357 +0.6460766 0.5947903 0.9861357 +0.6698526 0.5947903 0.9861357 +0.6925839 0.5947903 0.9861357 +0.7143866 0.5947903 0.9861357 +0.7353569 0.5947903 0.9861357 +0.7555758 0.5947903 0.9861357 +0.7751122 0.5947903 0.9861357 +0.7940252 0.5947903 0.9861357 +0.8123661 0.5947903 0.9861357 +0.8301795 0.5947903 0.9861357 +0.8475045 0.5947903 0.9861357 +0.8643761 0.5947903 0.9861357 +0.880825 0.5947903 0.9861357 +0.8968787 0.5947903 0.9861357 +0.9125621 0.5947903 0.9861357 +0.9278974 0.5947903 0.9861357 +0.9429048 0.5947903 0.9861357 +0.9576028 0.5947903 0.9861357 +0.9720079 0.5947903 0.9861357 +0.9861357 0.5947903 0.9861357 +1 0.5947903 0.9861357 +0 0.6211144 0.9861357 +0.1939468 0.6211144 0.9861357 +0.2773041 0.6211144 0.9861357 +0.3384659 0.6211144 0.9861357 +0.3885728 0.6211144 0.9861357 +0.4317928 0.6211144 0.9861357 +0.470214 0.6211144 0.9861357 +0.5050551 0.6211144 0.9861357 +0.5370987 0.6211144 0.9861357 +0.5668815 0.6211144 0.9861357 +0.5947903 0.6211144 0.9861357 +0.6211144 0.6211144 0.9861357 +0.6460766 0.6211144 0.9861357 +0.6698526 0.6211144 0.9861357 +0.6925839 0.6211144 0.9861357 +0.7143866 0.6211144 0.9861357 +0.7353569 0.6211144 0.9861357 +0.7555758 0.6211144 0.9861357 +0.7751122 0.6211144 0.9861357 +0.7940252 0.6211144 0.9861357 +0.8123661 0.6211144 0.9861357 +0.8301795 0.6211144 0.9861357 +0.8475045 0.6211144 0.9861357 +0.8643761 0.6211144 0.9861357 +0.880825 0.6211144 0.9861357 +0.8968787 0.6211144 0.9861357 +0.9125621 0.6211144 0.9861357 +0.9278974 0.6211144 0.9861357 +0.9429048 0.6211144 0.9861357 +0.9576028 0.6211144 0.9861357 +0.9720079 0.6211144 0.9861357 +0.9861357 0.6211144 0.9861357 +1 0.6211144 0.9861357 +0 0.6460766 0.9861357 +0.1939468 0.6460766 0.9861357 +0.2773041 0.6460766 0.9861357 +0.3384659 0.6460766 0.9861357 +0.3885728 0.6460766 0.9861357 +0.4317928 0.6460766 0.9861357 +0.470214 0.6460766 0.9861357 +0.5050551 0.6460766 0.9861357 +0.5370987 0.6460766 0.9861357 +0.5668815 0.6460766 0.9861357 +0.5947903 0.6460766 0.9861357 +0.6211144 0.6460766 0.9861357 +0.6460766 0.6460766 0.9861357 +0.6698526 0.6460766 0.9861357 +0.6925839 0.6460766 0.9861357 +0.7143866 0.6460766 0.9861357 +0.7353569 0.6460766 0.9861357 +0.7555758 0.6460766 0.9861357 +0.7751122 0.6460766 0.9861357 +0.7940252 0.6460766 0.9861357 +0.8123661 0.6460766 0.9861357 +0.8301795 0.6460766 0.9861357 +0.8475045 0.6460766 0.9861357 +0.8643761 0.6460766 0.9861357 +0.880825 0.6460766 0.9861357 +0.8968787 0.6460766 0.9861357 +0.9125621 0.6460766 0.9861357 +0.9278974 0.6460766 0.9861357 +0.9429048 0.6460766 0.9861357 +0.9576028 0.6460766 0.9861357 +0.9720079 0.6460766 0.9861357 +0.9861357 0.6460766 0.9861357 +1 0.6460766 0.9861357 +0 0.6698526 0.9861357 +0.1939468 0.6698526 0.9861357 +0.2773041 0.6698526 0.9861357 +0.3384659 0.6698526 0.9861357 +0.3885728 0.6698526 0.9861357 +0.4317928 0.6698526 0.9861357 +0.470214 0.6698526 0.9861357 +0.5050551 0.6698526 0.9861357 +0.5370987 0.6698526 0.9861357 +0.5668815 0.6698526 0.9861357 +0.5947903 0.6698526 0.9861357 +0.6211144 0.6698526 0.9861357 +0.6460766 0.6698526 0.9861357 +0.6698526 0.6698526 0.9861357 +0.6925839 0.6698526 0.9861357 +0.7143866 0.6698526 0.9861357 +0.7353569 0.6698526 0.9861357 +0.7555758 0.6698526 0.9861357 +0.7751122 0.6698526 0.9861357 +0.7940252 0.6698526 0.9861357 +0.8123661 0.6698526 0.9861357 +0.8301795 0.6698526 0.9861357 +0.8475045 0.6698526 0.9861357 +0.8643761 0.6698526 0.9861357 +0.880825 0.6698526 0.9861357 +0.8968787 0.6698526 0.9861357 +0.9125621 0.6698526 0.9861357 +0.9278974 0.6698526 0.9861357 +0.9429048 0.6698526 0.9861357 +0.9576028 0.6698526 0.9861357 +0.9720079 0.6698526 0.9861357 +0.9861357 0.6698526 0.9861357 +1 0.6698526 0.9861357 +0 0.6925839 0.9861357 +0.1939468 0.6925839 0.9861357 +0.2773041 0.6925839 0.9861357 +0.3384659 0.6925839 0.9861357 +0.3885728 0.6925839 0.9861357 +0.4317928 0.6925839 0.9861357 +0.470214 0.6925839 0.9861357 +0.5050551 0.6925839 0.9861357 +0.5370987 0.6925839 0.9861357 +0.5668815 0.6925839 0.9861357 +0.5947903 0.6925839 0.9861357 +0.6211144 0.6925839 0.9861357 +0.6460766 0.6925839 0.9861357 +0.6698526 0.6925839 0.9861357 +0.6925839 0.6925839 0.9861357 +0.7143866 0.6925839 0.9861357 +0.7353569 0.6925839 0.9861357 +0.7555758 0.6925839 0.9861357 +0.7751122 0.6925839 0.9861357 +0.7940252 0.6925839 0.9861357 +0.8123661 0.6925839 0.9861357 +0.8301795 0.6925839 0.9861357 +0.8475045 0.6925839 0.9861357 +0.8643761 0.6925839 0.9861357 +0.880825 0.6925839 0.9861357 +0.8968787 0.6925839 0.9861357 +0.9125621 0.6925839 0.9861357 +0.9278974 0.6925839 0.9861357 +0.9429048 0.6925839 0.9861357 +0.9576028 0.6925839 0.9861357 +0.9720079 0.6925839 0.9861357 +0.9861357 0.6925839 0.9861357 +1 0.6925839 0.9861357 +0 0.7143866 0.9861357 +0.1939468 0.7143866 0.9861357 +0.2773041 0.7143866 0.9861357 +0.3384659 0.7143866 0.9861357 +0.3885728 0.7143866 0.9861357 +0.4317928 0.7143866 0.9861357 +0.470214 0.7143866 0.9861357 +0.5050551 0.7143866 0.9861357 +0.5370987 0.7143866 0.9861357 +0.5668815 0.7143866 0.9861357 +0.5947903 0.7143866 0.9861357 +0.6211144 0.7143866 0.9861357 +0.6460766 0.7143866 0.9861357 +0.6698526 0.7143866 0.9861357 +0.6925839 0.7143866 0.9861357 +0.7143866 0.7143866 0.9861357 +0.7353569 0.7143866 0.9861357 +0.7555758 0.7143866 0.9861357 +0.7751122 0.7143866 0.9861357 +0.7940252 0.7143866 0.9861357 +0.8123661 0.7143866 0.9861357 +0.8301795 0.7143866 0.9861357 +0.8475045 0.7143866 0.9861357 +0.8643761 0.7143866 0.9861357 +0.880825 0.7143866 0.9861357 +0.8968787 0.7143866 0.9861357 +0.9125621 0.7143866 0.9861357 +0.9278974 0.7143866 0.9861357 +0.9429048 0.7143866 0.9861357 +0.9576028 0.7143866 0.9861357 +0.9720079 0.7143866 0.9861357 +0.9861357 0.7143866 0.9861357 +1 0.7143866 0.9861357 +0 0.7353569 0.9861357 +0.1939468 0.7353569 0.9861357 +0.2773041 0.7353569 0.9861357 +0.3384659 0.7353569 0.9861357 +0.3885728 0.7353569 0.9861357 +0.4317928 0.7353569 0.9861357 +0.470214 0.7353569 0.9861357 +0.5050551 0.7353569 0.9861357 +0.5370987 0.7353569 0.9861357 +0.5668815 0.7353569 0.9861357 +0.5947903 0.7353569 0.9861357 +0.6211144 0.7353569 0.9861357 +0.6460766 0.7353569 0.9861357 +0.6698526 0.7353569 0.9861357 +0.6925839 0.7353569 0.9861357 +0.7143866 0.7353569 0.9861357 +0.7353569 0.7353569 0.9861357 +0.7555758 0.7353569 0.9861357 +0.7751122 0.7353569 0.9861357 +0.7940252 0.7353569 0.9861357 +0.8123661 0.7353569 0.9861357 +0.8301795 0.7353569 0.9861357 +0.8475045 0.7353569 0.9861357 +0.8643761 0.7353569 0.9861357 +0.880825 0.7353569 0.9861357 +0.8968787 0.7353569 0.9861357 +0.9125621 0.7353569 0.9861357 +0.9278974 0.7353569 0.9861357 +0.9429048 0.7353569 0.9861357 +0.9576028 0.7353569 0.9861357 +0.9720079 0.7353569 0.9861357 +0.9861357 0.7353569 0.9861357 +1 0.7353569 0.9861357 +0 0.7555758 0.9861357 +0.1939468 0.7555758 0.9861357 +0.2773041 0.7555758 0.9861357 +0.3384659 0.7555758 0.9861357 +0.3885728 0.7555758 0.9861357 +0.4317928 0.7555758 0.9861357 +0.470214 0.7555758 0.9861357 +0.5050551 0.7555758 0.9861357 +0.5370987 0.7555758 0.9861357 +0.5668815 0.7555758 0.9861357 +0.5947903 0.7555758 0.9861357 +0.6211144 0.7555758 0.9861357 +0.6460766 0.7555758 0.9861357 +0.6698526 0.7555758 0.9861357 +0.6925839 0.7555758 0.9861357 +0.7143866 0.7555758 0.9861357 +0.7353569 0.7555758 0.9861357 +0.7555758 0.7555758 0.9861357 +0.7751122 0.7555758 0.9861357 +0.7940252 0.7555758 0.9861357 +0.8123661 0.7555758 0.9861357 +0.8301795 0.7555758 0.9861357 +0.8475045 0.7555758 0.9861357 +0.8643761 0.7555758 0.9861357 +0.880825 0.7555758 0.9861357 +0.8968787 0.7555758 0.9861357 +0.9125621 0.7555758 0.9861357 +0.9278974 0.7555758 0.9861357 +0.9429048 0.7555758 0.9861357 +0.9576028 0.7555758 0.9861357 +0.9720079 0.7555758 0.9861357 +0.9861357 0.7555758 0.9861357 +1 0.7555758 0.9861357 +0 0.7751122 0.9861357 +0.1939468 0.7751122 0.9861357 +0.2773041 0.7751122 0.9861357 +0.3384659 0.7751122 0.9861357 +0.3885728 0.7751122 0.9861357 +0.4317928 0.7751122 0.9861357 +0.470214 0.7751122 0.9861357 +0.5050551 0.7751122 0.9861357 +0.5370987 0.7751122 0.9861357 +0.5668815 0.7751122 0.9861357 +0.5947903 0.7751122 0.9861357 +0.6211144 0.7751122 0.9861357 +0.6460766 0.7751122 0.9861357 +0.6698526 0.7751122 0.9861357 +0.6925839 0.7751122 0.9861357 +0.7143866 0.7751122 0.9861357 +0.7353569 0.7751122 0.9861357 +0.7555758 0.7751122 0.9861357 +0.7751122 0.7751122 0.9861357 +0.7940252 0.7751122 0.9861357 +0.8123661 0.7751122 0.9861357 +0.8301795 0.7751122 0.9861357 +0.8475045 0.7751122 0.9861357 +0.8643761 0.7751122 0.9861357 +0.880825 0.7751122 0.9861357 +0.8968787 0.7751122 0.9861357 +0.9125621 0.7751122 0.9861357 +0.9278974 0.7751122 0.9861357 +0.9429048 0.7751122 0.9861357 +0.9576028 0.7751122 0.9861357 +0.9720079 0.7751122 0.9861357 +0.9861357 0.7751122 0.9861357 +1 0.7751122 0.9861357 +0 0.7940252 0.9861357 +0.1939468 0.7940252 0.9861357 +0.2773041 0.7940252 0.9861357 +0.3384659 0.7940252 0.9861357 +0.3885728 0.7940252 0.9861357 +0.4317928 0.7940252 0.9861357 +0.470214 0.7940252 0.9861357 +0.5050551 0.7940252 0.9861357 +0.5370987 0.7940252 0.9861357 +0.5668815 0.7940252 0.9861357 +0.5947903 0.7940252 0.9861357 +0.6211144 0.7940252 0.9861357 +0.6460766 0.7940252 0.9861357 +0.6698526 0.7940252 0.9861357 +0.6925839 0.7940252 0.9861357 +0.7143866 0.7940252 0.9861357 +0.7353569 0.7940252 0.9861357 +0.7555758 0.7940252 0.9861357 +0.7751122 0.7940252 0.9861357 +0.7940252 0.7940252 0.9861357 +0.8123661 0.7940252 0.9861357 +0.8301795 0.7940252 0.9861357 +0.8475045 0.7940252 0.9861357 +0.8643761 0.7940252 0.9861357 +0.880825 0.7940252 0.9861357 +0.8968787 0.7940252 0.9861357 +0.9125621 0.7940252 0.9861357 +0.9278974 0.7940252 0.9861357 +0.9429048 0.7940252 0.9861357 +0.9576028 0.7940252 0.9861357 +0.9720079 0.7940252 0.9861357 +0.9861357 0.7940252 0.9861357 +1 0.7940252 0.9861357 +0 0.8123661 0.9861357 +0.1939468 0.8123661 0.9861357 +0.2773041 0.8123661 0.9861357 +0.3384659 0.8123661 0.9861357 +0.3885728 0.8123661 0.9861357 +0.4317928 0.8123661 0.9861357 +0.470214 0.8123661 0.9861357 +0.5050551 0.8123661 0.9861357 +0.5370987 0.8123661 0.9861357 +0.5668815 0.8123661 0.9861357 +0.5947903 0.8123661 0.9861357 +0.6211144 0.8123661 0.9861357 +0.6460766 0.8123661 0.9861357 +0.6698526 0.8123661 0.9861357 +0.6925839 0.8123661 0.9861357 +0.7143866 0.8123661 0.9861357 +0.7353569 0.8123661 0.9861357 +0.7555758 0.8123661 0.9861357 +0.7751122 0.8123661 0.9861357 +0.7940252 0.8123661 0.9861357 +0.8123661 0.8123661 0.9861357 +0.8301795 0.8123661 0.9861357 +0.8475045 0.8123661 0.9861357 +0.8643761 0.8123661 0.9861357 +0.880825 0.8123661 0.9861357 +0.8968787 0.8123661 0.9861357 +0.9125621 0.8123661 0.9861357 +0.9278974 0.8123661 0.9861357 +0.9429048 0.8123661 0.9861357 +0.9576028 0.8123661 0.9861357 +0.9720079 0.8123661 0.9861357 +0.9861357 0.8123661 0.9861357 +1 0.8123661 0.9861357 +0 0.8301795 0.9861357 +0.1939468 0.8301795 0.9861357 +0.2773041 0.8301795 0.9861357 +0.3384659 0.8301795 0.9861357 +0.3885728 0.8301795 0.9861357 +0.4317928 0.8301795 0.9861357 +0.470214 0.8301795 0.9861357 +0.5050551 0.8301795 0.9861357 +0.5370987 0.8301795 0.9861357 +0.5668815 0.8301795 0.9861357 +0.5947903 0.8301795 0.9861357 +0.6211144 0.8301795 0.9861357 +0.6460766 0.8301795 0.9861357 +0.6698526 0.8301795 0.9861357 +0.6925839 0.8301795 0.9861357 +0.7143866 0.8301795 0.9861357 +0.7353569 0.8301795 0.9861357 +0.7555758 0.8301795 0.9861357 +0.7751122 0.8301795 0.9861357 +0.7940252 0.8301795 0.9861357 +0.8123661 0.8301795 0.9861357 +0.8301795 0.8301795 0.9861357 +0.8475045 0.8301795 0.9861357 +0.8643761 0.8301795 0.9861357 +0.880825 0.8301795 0.9861357 +0.8968787 0.8301795 0.9861357 +0.9125621 0.8301795 0.9861357 +0.9278974 0.8301795 0.9861357 +0.9429048 0.8301795 0.9861357 +0.9576028 0.8301795 0.9861357 +0.9720079 0.8301795 0.9861357 +0.9861357 0.8301795 0.9861357 +1 0.8301795 0.9861357 +0 0.8475045 0.9861357 +0.1939468 0.8475045 0.9861357 +0.2773041 0.8475045 0.9861357 +0.3384659 0.8475045 0.9861357 +0.3885728 0.8475045 0.9861357 +0.4317928 0.8475045 0.9861357 +0.470214 0.8475045 0.9861357 +0.5050551 0.8475045 0.9861357 +0.5370987 0.8475045 0.9861357 +0.5668815 0.8475045 0.9861357 +0.5947903 0.8475045 0.9861357 +0.6211144 0.8475045 0.9861357 +0.6460766 0.8475045 0.9861357 +0.6698526 0.8475045 0.9861357 +0.6925839 0.8475045 0.9861357 +0.7143866 0.8475045 0.9861357 +0.7353569 0.8475045 0.9861357 +0.7555758 0.8475045 0.9861357 +0.7751122 0.8475045 0.9861357 +0.7940252 0.8475045 0.9861357 +0.8123661 0.8475045 0.9861357 +0.8301795 0.8475045 0.9861357 +0.8475045 0.8475045 0.9861357 +0.8643761 0.8475045 0.9861357 +0.880825 0.8475045 0.9861357 +0.8968787 0.8475045 0.9861357 +0.9125621 0.8475045 0.9861357 +0.9278974 0.8475045 0.9861357 +0.9429048 0.8475045 0.9861357 +0.9576028 0.8475045 0.9861357 +0.9720079 0.8475045 0.9861357 +0.9861357 0.8475045 0.9861357 +1 0.8475045 0.9861357 +0 0.8643761 0.9861357 +0.1939468 0.8643761 0.9861357 +0.2773041 0.8643761 0.9861357 +0.3384659 0.8643761 0.9861357 +0.3885728 0.8643761 0.9861357 +0.4317928 0.8643761 0.9861357 +0.470214 0.8643761 0.9861357 +0.5050551 0.8643761 0.9861357 +0.5370987 0.8643761 0.9861357 +0.5668815 0.8643761 0.9861357 +0.5947903 0.8643761 0.9861357 +0.6211144 0.8643761 0.9861357 +0.6460766 0.8643761 0.9861357 +0.6698526 0.8643761 0.9861357 +0.6925839 0.8643761 0.9861357 +0.7143866 0.8643761 0.9861357 +0.7353569 0.8643761 0.9861357 +0.7555758 0.8643761 0.9861357 +0.7751122 0.8643761 0.9861357 +0.7940252 0.8643761 0.9861357 +0.8123661 0.8643761 0.9861357 +0.8301795 0.8643761 0.9861357 +0.8475045 0.8643761 0.9861357 +0.8643761 0.8643761 0.9861357 +0.880825 0.8643761 0.9861357 +0.8968787 0.8643761 0.9861357 +0.9125621 0.8643761 0.9861357 +0.9278974 0.8643761 0.9861357 +0.9429048 0.8643761 0.9861357 +0.9576028 0.8643761 0.9861357 +0.9720079 0.8643761 0.9861357 +0.9861357 0.8643761 0.9861357 +1 0.8643761 0.9861357 +0 0.880825 0.9861357 +0.1939468 0.880825 0.9861357 +0.2773041 0.880825 0.9861357 +0.3384659 0.880825 0.9861357 +0.3885728 0.880825 0.9861357 +0.4317928 0.880825 0.9861357 +0.470214 0.880825 0.9861357 +0.5050551 0.880825 0.9861357 +0.5370987 0.880825 0.9861357 +0.5668815 0.880825 0.9861357 +0.5947903 0.880825 0.9861357 +0.6211144 0.880825 0.9861357 +0.6460766 0.880825 0.9861357 +0.6698526 0.880825 0.9861357 +0.6925839 0.880825 0.9861357 +0.7143866 0.880825 0.9861357 +0.7353569 0.880825 0.9861357 +0.7555758 0.880825 0.9861357 +0.7751122 0.880825 0.9861357 +0.7940252 0.880825 0.9861357 +0.8123661 0.880825 0.9861357 +0.8301795 0.880825 0.9861357 +0.8475045 0.880825 0.9861357 +0.8643761 0.880825 0.9861357 +0.880825 0.880825 0.9861357 +0.8968787 0.880825 0.9861357 +0.9125621 0.880825 0.9861357 +0.9278974 0.880825 0.9861357 +0.9429048 0.880825 0.9861357 +0.9576028 0.880825 0.9861357 +0.9720079 0.880825 0.9861357 +0.9861357 0.880825 0.9861357 +1 0.880825 0.9861357 +0 0.8968787 0.9861357 +0.1939468 0.8968787 0.9861357 +0.2773041 0.8968787 0.9861357 +0.3384659 0.8968787 0.9861357 +0.3885728 0.8968787 0.9861357 +0.4317928 0.8968787 0.9861357 +0.470214 0.8968787 0.9861357 +0.5050551 0.8968787 0.9861357 +0.5370987 0.8968787 0.9861357 +0.5668815 0.8968787 0.9861357 +0.5947903 0.8968787 0.9861357 +0.6211144 0.8968787 0.9861357 +0.6460766 0.8968787 0.9861357 +0.6698526 0.8968787 0.9861357 +0.6925839 0.8968787 0.9861357 +0.7143866 0.8968787 0.9861357 +0.7353569 0.8968787 0.9861357 +0.7555758 0.8968787 0.9861357 +0.7751122 0.8968787 0.9861357 +0.7940252 0.8968787 0.9861357 +0.8123661 0.8968787 0.9861357 +0.8301795 0.8968787 0.9861357 +0.8475045 0.8968787 0.9861357 +0.8643761 0.8968787 0.9861357 +0.880825 0.8968787 0.9861357 +0.8968787 0.8968787 0.9861357 +0.9125621 0.8968787 0.9861357 +0.9278974 0.8968787 0.9861357 +0.9429048 0.8968787 0.9861357 +0.9576028 0.8968787 0.9861357 +0.9720079 0.8968787 0.9861357 +0.9861357 0.8968787 0.9861357 +1 0.8968787 0.9861357 +0 0.9125621 0.9861357 +0.1939468 0.9125621 0.9861357 +0.2773041 0.9125621 0.9861357 +0.3384659 0.9125621 0.9861357 +0.3885728 0.9125621 0.9861357 +0.4317928 0.9125621 0.9861357 +0.470214 0.9125621 0.9861357 +0.5050551 0.9125621 0.9861357 +0.5370987 0.9125621 0.9861357 +0.5668815 0.9125621 0.9861357 +0.5947903 0.9125621 0.9861357 +0.6211144 0.9125621 0.9861357 +0.6460766 0.9125621 0.9861357 +0.6698526 0.9125621 0.9861357 +0.6925839 0.9125621 0.9861357 +0.7143866 0.9125621 0.9861357 +0.7353569 0.9125621 0.9861357 +0.7555758 0.9125621 0.9861357 +0.7751122 0.9125621 0.9861357 +0.7940252 0.9125621 0.9861357 +0.8123661 0.9125621 0.9861357 +0.8301795 0.9125621 0.9861357 +0.8475045 0.9125621 0.9861357 +0.8643761 0.9125621 0.9861357 +0.880825 0.9125621 0.9861357 +0.8968787 0.9125621 0.9861357 +0.9125621 0.9125621 0.9861357 +0.9278974 0.9125621 0.9861357 +0.9429048 0.9125621 0.9861357 +0.9576028 0.9125621 0.9861357 +0.9720079 0.9125621 0.9861357 +0.9861357 0.9125621 0.9861357 +1 0.9125621 0.9861357 +0 0.9278974 0.9861357 +0.1939468 0.9278974 0.9861357 +0.2773041 0.9278974 0.9861357 +0.3384659 0.9278974 0.9861357 +0.3885728 0.9278974 0.9861357 +0.4317928 0.9278974 0.9861357 +0.470214 0.9278974 0.9861357 +0.5050551 0.9278974 0.9861357 +0.5370987 0.9278974 0.9861357 +0.5668815 0.9278974 0.9861357 +0.5947903 0.9278974 0.9861357 +0.6211144 0.9278974 0.9861357 +0.6460766 0.9278974 0.9861357 +0.6698526 0.9278974 0.9861357 +0.6925839 0.9278974 0.9861357 +0.7143866 0.9278974 0.9861357 +0.7353569 0.9278974 0.9861357 +0.7555758 0.9278974 0.9861357 +0.7751122 0.9278974 0.9861357 +0.7940252 0.9278974 0.9861357 +0.8123661 0.9278974 0.9861357 +0.8301795 0.9278974 0.9861357 +0.8475045 0.9278974 0.9861357 +0.8643761 0.9278974 0.9861357 +0.880825 0.9278974 0.9861357 +0.8968787 0.9278974 0.9861357 +0.9125621 0.9278974 0.9861357 +0.9278974 0.9278974 0.9861357 +0.9429048 0.9278974 0.9861357 +0.9576028 0.9278974 0.9861357 +0.9720079 0.9278974 0.9861357 +0.9861357 0.9278974 0.9861357 +1 0.9278974 0.9861357 +0 0.9429048 0.9861357 +0.1939468 0.9429048 0.9861357 +0.2773041 0.9429048 0.9861357 +0.3384659 0.9429048 0.9861357 +0.3885728 0.9429048 0.9861357 +0.4317928 0.9429048 0.9861357 +0.470214 0.9429048 0.9861357 +0.5050551 0.9429048 0.9861357 +0.5370987 0.9429048 0.9861357 +0.5668815 0.9429048 0.9861357 +0.5947903 0.9429048 0.9861357 +0.6211144 0.9429048 0.9861357 +0.6460766 0.9429048 0.9861357 +0.6698526 0.9429048 0.9861357 +0.6925839 0.9429048 0.9861357 +0.7143866 0.9429048 0.9861357 +0.7353569 0.9429048 0.9861357 +0.7555758 0.9429048 0.9861357 +0.7751122 0.9429048 0.9861357 +0.7940252 0.9429048 0.9861357 +0.8123661 0.9429048 0.9861357 +0.8301795 0.9429048 0.9861357 +0.8475045 0.9429048 0.9861357 +0.8643761 0.9429048 0.9861357 +0.880825 0.9429048 0.9861357 +0.8968787 0.9429048 0.9861357 +0.9125621 0.9429048 0.9861357 +0.9278974 0.9429048 0.9861357 +0.9429048 0.9429048 0.9861357 +0.9576028 0.9429048 0.9861357 +0.9720079 0.9429048 0.9861357 +0.9861357 0.9429048 0.9861357 +1 0.9429048 0.9861357 +0 0.9576028 0.9861357 +0.1939468 0.9576028 0.9861357 +0.2773041 0.9576028 0.9861357 +0.3384659 0.9576028 0.9861357 +0.3885728 0.9576028 0.9861357 +0.4317928 0.9576028 0.9861357 +0.470214 0.9576028 0.9861357 +0.5050551 0.9576028 0.9861357 +0.5370987 0.9576028 0.9861357 +0.5668815 0.9576028 0.9861357 +0.5947903 0.9576028 0.9861357 +0.6211144 0.9576028 0.9861357 +0.6460766 0.9576028 0.9861357 +0.6698526 0.9576028 0.9861357 +0.6925839 0.9576028 0.9861357 +0.7143866 0.9576028 0.9861357 +0.7353569 0.9576028 0.9861357 +0.7555758 0.9576028 0.9861357 +0.7751122 0.9576028 0.9861357 +0.7940252 0.9576028 0.9861357 +0.8123661 0.9576028 0.9861357 +0.8301795 0.9576028 0.9861357 +0.8475045 0.9576028 0.9861357 +0.8643761 0.9576028 0.9861357 +0.880825 0.9576028 0.9861357 +0.8968787 0.9576028 0.9861357 +0.9125621 0.9576028 0.9861357 +0.9278974 0.9576028 0.9861357 +0.9429048 0.9576028 0.9861357 +0.9576028 0.9576028 0.9861357 +0.9720079 0.9576028 0.9861357 +0.9861357 0.9576028 0.9861357 +1 0.9576028 0.9861357 +0 0.9720079 0.9861357 +0.1939468 0.9720079 0.9861357 +0.2773041 0.9720079 0.9861357 +0.3384659 0.9720079 0.9861357 +0.3885728 0.9720079 0.9861357 +0.4317928 0.9720079 0.9861357 +0.470214 0.9720079 0.9861357 +0.5050551 0.9720079 0.9861357 +0.5370987 0.9720079 0.9861357 +0.5668815 0.9720079 0.9861357 +0.5947903 0.9720079 0.9861357 +0.6211144 0.9720079 0.9861357 +0.6460766 0.9720079 0.9861357 +0.6698526 0.9720079 0.9861357 +0.6925839 0.9720079 0.9861357 +0.7143866 0.9720079 0.9861357 +0.7353569 0.9720079 0.9861357 +0.7555758 0.9720079 0.9861357 +0.7751122 0.9720079 0.9861357 +0.7940252 0.9720079 0.9861357 +0.8123661 0.9720079 0.9861357 +0.8301795 0.9720079 0.9861357 +0.8475045 0.9720079 0.9861357 +0.8643761 0.9720079 0.9861357 +0.880825 0.9720079 0.9861357 +0.8968787 0.9720079 0.9861357 +0.9125621 0.9720079 0.9861357 +0.9278974 0.9720079 0.9861357 +0.9429048 0.9720079 0.9861357 +0.9576028 0.9720079 0.9861357 +0.9720079 0.9720079 0.9861357 +0.9861357 0.9720079 0.9861357 +1 0.9720079 0.9861357 +0 0.9861357 0.9861357 +0.1939468 0.9861357 0.9861357 +0.2773041 0.9861357 0.9861357 +0.3384659 0.9861357 0.9861357 +0.3885728 0.9861357 0.9861357 +0.4317928 0.9861357 0.9861357 +0.470214 0.9861357 0.9861357 +0.5050551 0.9861357 0.9861357 +0.5370987 0.9861357 0.9861357 +0.5668815 0.9861357 0.9861357 +0.5947903 0.9861357 0.9861357 +0.6211144 0.9861357 0.9861357 +0.6460766 0.9861357 0.9861357 +0.6698526 0.9861357 0.9861357 +0.6925839 0.9861357 0.9861357 +0.7143866 0.9861357 0.9861357 +0.7353569 0.9861357 0.9861357 +0.7555758 0.9861357 0.9861357 +0.7751122 0.9861357 0.9861357 +0.7940252 0.9861357 0.9861357 +0.8123661 0.9861357 0.9861357 +0.8301795 0.9861357 0.9861357 +0.8475045 0.9861357 0.9861357 +0.8643761 0.9861357 0.9861357 +0.880825 0.9861357 0.9861357 +0.8968787 0.9861357 0.9861357 +0.9125621 0.9861357 0.9861357 +0.9278974 0.9861357 0.9861357 +0.9429048 0.9861357 0.9861357 +0.9576028 0.9861357 0.9861357 +0.9720079 0.9861357 0.9861357 +0.9861357 0.9861357 0.9861357 +1 0.9861357 0.9861357 +0 1 0.9861357 +0.1939468 1 0.9861357 +0.2773041 1 0.9861357 +0.3384659 1 0.9861357 +0.3885728 1 0.9861357 +0.4317928 1 0.9861357 +0.470214 1 0.9861357 +0.5050551 1 0.9861357 +0.5370987 1 0.9861357 +0.5668815 1 0.9861357 +0.5947903 1 0.9861357 +0.6211144 1 0.9861357 +0.6460766 1 0.9861357 +0.6698526 1 0.9861357 +0.6925839 1 0.9861357 +0.7143866 1 0.9861357 +0.7353569 1 0.9861357 +0.7555758 1 0.9861357 +0.7751122 1 0.9861357 +0.7940252 1 0.9861357 +0.8123661 1 0.9861357 +0.8301795 1 0.9861357 +0.8475045 1 0.9861357 +0.8643761 1 0.9861357 +0.880825 1 0.9861357 +0.8968787 1 0.9861357 +0.9125621 1 0.9861357 +0.9278974 1 0.9861357 +0.9429048 1 0.9861357 +0.9576028 1 0.9861357 +0.9720079 1 0.9861357 +0.9861357 1 0.9861357 +1 1 0.9861357 +0 0 1 +0.1939468 0 1 +0.2773041 0 1 +0.3384659 0 1 +0.3885728 0 1 +0.4317928 0 1 +0.470214 0 1 +0.5050551 0 1 +0.5370987 0 1 +0.5668815 0 1 +0.5947903 0 1 +0.6211144 0 1 +0.6460766 0 1 +0.6698526 0 1 +0.6925839 0 1 +0.7143866 0 1 +0.7353569 0 1 +0.7555758 0 1 +0.7751122 0 1 +0.7940252 0 1 +0.8123661 0 1 +0.8301795 0 1 +0.8475045 0 1 +0.8643761 0 1 +0.880825 0 1 +0.8968787 0 1 +0.9125621 0 1 +0.9278974 0 1 +0.9429048 0 1 +0.9576028 0 1 +0.9720079 0 1 +0.9861357 0 1 +1 0 1 +0 0.1939468 1 +0.1939468 0.1939468 1 +0.2773041 0.1939468 1 +0.3384659 0.1939468 1 +0.3885728 0.1939468 1 +0.4317928 0.1939468 1 +0.470214 0.1939468 1 +0.5050551 0.1939468 1 +0.5370987 0.1939468 1 +0.5668815 0.1939468 1 +0.5947903 0.1939468 1 +0.6211144 0.1939468 1 +0.6460766 0.1939468 1 +0.6698526 0.1939468 1 +0.6925839 0.1939468 1 +0.7143866 0.1939468 1 +0.7353569 0.1939468 1 +0.7555758 0.1939468 1 +0.7751122 0.1939468 1 +0.7940252 0.1939468 1 +0.8123661 0.1939468 1 +0.8301795 0.1939468 1 +0.8475045 0.1939468 1 +0.8643761 0.1939468 1 +0.880825 0.1939468 1 +0.8968787 0.1939468 1 +0.9125621 0.1939468 1 +0.9278974 0.1939468 1 +0.9429048 0.1939468 1 +0.9576028 0.1939468 1 +0.9720079 0.1939468 1 +0.9861357 0.1939468 1 +1 0.1939468 1 +0 0.2773041 1 +0.1939468 0.2773041 1 +0.2773041 0.2773041 1 +0.3384659 0.2773041 1 +0.3885728 0.2773041 1 +0.4317928 0.2773041 1 +0.470214 0.2773041 1 +0.5050551 0.2773041 1 +0.5370987 0.2773041 1 +0.5668815 0.2773041 1 +0.5947903 0.2773041 1 +0.6211144 0.2773041 1 +0.6460766 0.2773041 1 +0.6698526 0.2773041 1 +0.6925839 0.2773041 1 +0.7143866 0.2773041 1 +0.7353569 0.2773041 1 +0.7555758 0.2773041 1 +0.7751122 0.2773041 1 +0.7940252 0.2773041 1 +0.8123661 0.2773041 1 +0.8301795 0.2773041 1 +0.8475045 0.2773041 1 +0.8643761 0.2773041 1 +0.880825 0.2773041 1 +0.8968787 0.2773041 1 +0.9125621 0.2773041 1 +0.9278974 0.2773041 1 +0.9429048 0.2773041 1 +0.9576028 0.2773041 1 +0.9720079 0.2773041 1 +0.9861357 0.2773041 1 +1 0.2773041 1 +0 0.3384659 1 +0.1939468 0.3384659 1 +0.2773041 0.3384659 1 +0.3384659 0.3384659 1 +0.3885728 0.3384659 1 +0.4317928 0.3384659 1 +0.470214 0.3384659 1 +0.5050551 0.3384659 1 +0.5370987 0.3384659 1 +0.5668815 0.3384659 1 +0.5947903 0.3384659 1 +0.6211144 0.3384659 1 +0.6460766 0.3384659 1 +0.6698526 0.3384659 1 +0.6925839 0.3384659 1 +0.7143866 0.3384659 1 +0.7353569 0.3384659 1 +0.7555758 0.3384659 1 +0.7751122 0.3384659 1 +0.7940252 0.3384659 1 +0.8123661 0.3384659 1 +0.8301795 0.3384659 1 +0.8475045 0.3384659 1 +0.8643761 0.3384659 1 +0.880825 0.3384659 1 +0.8968787 0.3384659 1 +0.9125621 0.3384659 1 +0.9278974 0.3384659 1 +0.9429048 0.3384659 1 +0.9576028 0.3384659 1 +0.9720079 0.3384659 1 +0.9861357 0.3384659 1 +1 0.3384659 1 +0 0.3885728 1 +0.1939468 0.3885728 1 +0.2773041 0.3885728 1 +0.3384659 0.3885728 1 +0.3885728 0.3885728 1 +0.4317928 0.3885728 1 +0.470214 0.3885728 1 +0.5050551 0.3885728 1 +0.5370987 0.3885728 1 +0.5668815 0.3885728 1 +0.5947903 0.3885728 1 +0.6211144 0.3885728 1 +0.6460766 0.3885728 1 +0.6698526 0.3885728 1 +0.6925839 0.3885728 1 +0.7143866 0.3885728 1 +0.7353569 0.3885728 1 +0.7555758 0.3885728 1 +0.7751122 0.3885728 1 +0.7940252 0.3885728 1 +0.8123661 0.3885728 1 +0.8301795 0.3885728 1 +0.8475045 0.3885728 1 +0.8643761 0.3885728 1 +0.880825 0.3885728 1 +0.8968787 0.3885728 1 +0.9125621 0.3885728 1 +0.9278974 0.3885728 1 +0.9429048 0.3885728 1 +0.9576028 0.3885728 1 +0.9720079 0.3885728 1 +0.9861357 0.3885728 1 +1 0.3885728 1 +0 0.4317928 1 +0.1939468 0.4317928 1 +0.2773041 0.4317928 1 +0.3384659 0.4317928 1 +0.3885728 0.4317928 1 +0.4317928 0.4317928 1 +0.470214 0.4317928 1 +0.5050551 0.4317928 1 +0.5370987 0.4317928 1 +0.5668815 0.4317928 1 +0.5947903 0.4317928 1 +0.6211144 0.4317928 1 +0.6460766 0.4317928 1 +0.6698526 0.4317928 1 +0.6925839 0.4317928 1 +0.7143866 0.4317928 1 +0.7353569 0.4317928 1 +0.7555758 0.4317928 1 +0.7751122 0.4317928 1 +0.7940252 0.4317928 1 +0.8123661 0.4317928 1 +0.8301795 0.4317928 1 +0.8475045 0.4317928 1 +0.8643761 0.4317928 1 +0.880825 0.4317928 1 +0.8968787 0.4317928 1 +0.9125621 0.4317928 1 +0.9278974 0.4317928 1 +0.9429048 0.4317928 1 +0.9576028 0.4317928 1 +0.9720079 0.4317928 1 +0.9861357 0.4317928 1 +1 0.4317928 1 +0 0.470214 1 +0.1939468 0.470214 1 +0.2773041 0.470214 1 +0.3384659 0.470214 1 +0.3885728 0.470214 1 +0.4317928 0.470214 1 +0.470214 0.470214 1 +0.5050551 0.470214 1 +0.5370987 0.470214 1 +0.5668815 0.470214 1 +0.5947903 0.470214 1 +0.6211144 0.470214 1 +0.6460766 0.470214 1 +0.6698526 0.470214 1 +0.6925839 0.470214 1 +0.7143866 0.470214 1 +0.7353569 0.470214 1 +0.7555758 0.470214 1 +0.7751122 0.470214 1 +0.7940252 0.470214 1 +0.8123661 0.470214 1 +0.8301795 0.470214 1 +0.8475045 0.470214 1 +0.8643761 0.470214 1 +0.880825 0.470214 1 +0.8968787 0.470214 1 +0.9125621 0.470214 1 +0.9278974 0.470214 1 +0.9429048 0.470214 1 +0.9576028 0.470214 1 +0.9720079 0.470214 1 +0.9861357 0.470214 1 +1 0.470214 1 +0 0.5050551 1 +0.1939468 0.5050551 1 +0.2773041 0.5050551 1 +0.3384659 0.5050551 1 +0.3885728 0.5050551 1 +0.4317928 0.5050551 1 +0.470214 0.5050551 1 +0.5050551 0.5050551 1 +0.5370987 0.5050551 1 +0.5668815 0.5050551 1 +0.5947903 0.5050551 1 +0.6211144 0.5050551 1 +0.6460766 0.5050551 1 +0.6698526 0.5050551 1 +0.6925839 0.5050551 1 +0.7143866 0.5050551 1 +0.7353569 0.5050551 1 +0.7555758 0.5050551 1 +0.7751122 0.5050551 1 +0.7940252 0.5050551 1 +0.8123661 0.5050551 1 +0.8301795 0.5050551 1 +0.8475045 0.5050551 1 +0.8643761 0.5050551 1 +0.880825 0.5050551 1 +0.8968787 0.5050551 1 +0.9125621 0.5050551 1 +0.9278974 0.5050551 1 +0.9429048 0.5050551 1 +0.9576028 0.5050551 1 +0.9720079 0.5050551 1 +0.9861357 0.5050551 1 +1 0.5050551 1 +0 0.5370987 1 +0.1939468 0.5370987 1 +0.2773041 0.5370987 1 +0.3384659 0.5370987 1 +0.3885728 0.5370987 1 +0.4317928 0.5370987 1 +0.470214 0.5370987 1 +0.5050551 0.5370987 1 +0.5370987 0.5370987 1 +0.5668815 0.5370987 1 +0.5947903 0.5370987 1 +0.6211144 0.5370987 1 +0.6460766 0.5370987 1 +0.6698526 0.5370987 1 +0.6925839 0.5370987 1 +0.7143866 0.5370987 1 +0.7353569 0.5370987 1 +0.7555758 0.5370987 1 +0.7751122 0.5370987 1 +0.7940252 0.5370987 1 +0.8123661 0.5370987 1 +0.8301795 0.5370987 1 +0.8475045 0.5370987 1 +0.8643761 0.5370987 1 +0.880825 0.5370987 1 +0.8968787 0.5370987 1 +0.9125621 0.5370987 1 +0.9278974 0.5370987 1 +0.9429048 0.5370987 1 +0.9576028 0.5370987 1 +0.9720079 0.5370987 1 +0.9861357 0.5370987 1 +1 0.5370987 1 +0 0.5668815 1 +0.1939468 0.5668815 1 +0.2773041 0.5668815 1 +0.3384659 0.5668815 1 +0.3885728 0.5668815 1 +0.4317928 0.5668815 1 +0.470214 0.5668815 1 +0.5050551 0.5668815 1 +0.5370987 0.5668815 1 +0.5668815 0.5668815 1 +0.5947903 0.5668815 1 +0.6211144 0.5668815 1 +0.6460766 0.5668815 1 +0.6698526 0.5668815 1 +0.6925839 0.5668815 1 +0.7143866 0.5668815 1 +0.7353569 0.5668815 1 +0.7555758 0.5668815 1 +0.7751122 0.5668815 1 +0.7940252 0.5668815 1 +0.8123661 0.5668815 1 +0.8301795 0.5668815 1 +0.8475045 0.5668815 1 +0.8643761 0.5668815 1 +0.880825 0.5668815 1 +0.8968787 0.5668815 1 +0.9125621 0.5668815 1 +0.9278974 0.5668815 1 +0.9429048 0.5668815 1 +0.9576028 0.5668815 1 +0.9720079 0.5668815 1 +0.9861357 0.5668815 1 +1 0.5668815 1 +0 0.5947903 1 +0.1939468 0.5947903 1 +0.2773041 0.5947903 1 +0.3384659 0.5947903 1 +0.3885728 0.5947903 1 +0.4317928 0.5947903 1 +0.470214 0.5947903 1 +0.5050551 0.5947903 1 +0.5370987 0.5947903 1 +0.5668815 0.5947903 1 +0.5947903 0.5947903 1 +0.6211144 0.5947903 1 +0.6460766 0.5947903 1 +0.6698526 0.5947903 1 +0.6925839 0.5947903 1 +0.7143866 0.5947903 1 +0.7353569 0.5947903 1 +0.7555758 0.5947903 1 +0.7751122 0.5947903 1 +0.7940252 0.5947903 1 +0.8123661 0.5947903 1 +0.8301795 0.5947903 1 +0.8475045 0.5947903 1 +0.8643761 0.5947903 1 +0.880825 0.5947903 1 +0.8968787 0.5947903 1 +0.9125621 0.5947903 1 +0.9278974 0.5947903 1 +0.9429048 0.5947903 1 +0.9576028 0.5947903 1 +0.9720079 0.5947903 1 +0.9861357 0.5947903 1 +1 0.5947903 1 +0 0.6211144 1 +0.1939468 0.6211144 1 +0.2773041 0.6211144 1 +0.3384659 0.6211144 1 +0.3885728 0.6211144 1 +0.4317928 0.6211144 1 +0.470214 0.6211144 1 +0.5050551 0.6211144 1 +0.5370987 0.6211144 1 +0.5668815 0.6211144 1 +0.5947903 0.6211144 1 +0.6211144 0.6211144 1 +0.6460766 0.6211144 1 +0.6698526 0.6211144 1 +0.6925839 0.6211144 1 +0.7143866 0.6211144 1 +0.7353569 0.6211144 1 +0.7555758 0.6211144 1 +0.7751122 0.6211144 1 +0.7940252 0.6211144 1 +0.8123661 0.6211144 1 +0.8301795 0.6211144 1 +0.8475045 0.6211144 1 +0.8643761 0.6211144 1 +0.880825 0.6211144 1 +0.8968787 0.6211144 1 +0.9125621 0.6211144 1 +0.9278974 0.6211144 1 +0.9429048 0.6211144 1 +0.9576028 0.6211144 1 +0.9720079 0.6211144 1 +0.9861357 0.6211144 1 +1 0.6211144 1 +0 0.6460766 1 +0.1939468 0.6460766 1 +0.2773041 0.6460766 1 +0.3384659 0.6460766 1 +0.3885728 0.6460766 1 +0.4317928 0.6460766 1 +0.470214 0.6460766 1 +0.5050551 0.6460766 1 +0.5370987 0.6460766 1 +0.5668815 0.6460766 1 +0.5947903 0.6460766 1 +0.6211144 0.6460766 1 +0.6460766 0.6460766 1 +0.6698526 0.6460766 1 +0.6925839 0.6460766 1 +0.7143866 0.6460766 1 +0.7353569 0.6460766 1 +0.7555758 0.6460766 1 +0.7751122 0.6460766 1 +0.7940252 0.6460766 1 +0.8123661 0.6460766 1 +0.8301795 0.6460766 1 +0.8475045 0.6460766 1 +0.8643761 0.6460766 1 +0.880825 0.6460766 1 +0.8968787 0.6460766 1 +0.9125621 0.6460766 1 +0.9278974 0.6460766 1 +0.9429048 0.6460766 1 +0.9576028 0.6460766 1 +0.9720079 0.6460766 1 +0.9861357 0.6460766 1 +1 0.6460766 1 +0 0.6698526 1 +0.1939468 0.6698526 1 +0.2773041 0.6698526 1 +0.3384659 0.6698526 1 +0.3885728 0.6698526 1 +0.4317928 0.6698526 1 +0.470214 0.6698526 1 +0.5050551 0.6698526 1 +0.5370987 0.6698526 1 +0.5668815 0.6698526 1 +0.5947903 0.6698526 1 +0.6211144 0.6698526 1 +0.6460766 0.6698526 1 +0.6698526 0.6698526 1 +0.6925839 0.6698526 1 +0.7143866 0.6698526 1 +0.7353569 0.6698526 1 +0.7555758 0.6698526 1 +0.7751122 0.6698526 1 +0.7940252 0.6698526 1 +0.8123661 0.6698526 1 +0.8301795 0.6698526 1 +0.8475045 0.6698526 1 +0.8643761 0.6698526 1 +0.880825 0.6698526 1 +0.8968787 0.6698526 1 +0.9125621 0.6698526 1 +0.9278974 0.6698526 1 +0.9429048 0.6698526 1 +0.9576028 0.6698526 1 +0.9720079 0.6698526 1 +0.9861357 0.6698526 1 +1 0.6698526 1 +0 0.6925839 1 +0.1939468 0.6925839 1 +0.2773041 0.6925839 1 +0.3384659 0.6925839 1 +0.3885728 0.6925839 1 +0.4317928 0.6925839 1 +0.470214 0.6925839 1 +0.5050551 0.6925839 1 +0.5370987 0.6925839 1 +0.5668815 0.6925839 1 +0.5947903 0.6925839 1 +0.6211144 0.6925839 1 +0.6460766 0.6925839 1 +0.6698526 0.6925839 1 +0.6925839 0.6925839 1 +0.7143866 0.6925839 1 +0.7353569 0.6925839 1 +0.7555758 0.6925839 1 +0.7751122 0.6925839 1 +0.7940252 0.6925839 1 +0.8123661 0.6925839 1 +0.8301795 0.6925839 1 +0.8475045 0.6925839 1 +0.8643761 0.6925839 1 +0.880825 0.6925839 1 +0.8968787 0.6925839 1 +0.9125621 0.6925839 1 +0.9278974 0.6925839 1 +0.9429048 0.6925839 1 +0.9576028 0.6925839 1 +0.9720079 0.6925839 1 +0.9861357 0.6925839 1 +1 0.6925839 1 +0 0.7143866 1 +0.1939468 0.7143866 1 +0.2773041 0.7143866 1 +0.3384659 0.7143866 1 +0.3885728 0.7143866 1 +0.4317928 0.7143866 1 +0.470214 0.7143866 1 +0.5050551 0.7143866 1 +0.5370987 0.7143866 1 +0.5668815 0.7143866 1 +0.5947903 0.7143866 1 +0.6211144 0.7143866 1 +0.6460766 0.7143866 1 +0.6698526 0.7143866 1 +0.6925839 0.7143866 1 +0.7143866 0.7143866 1 +0.7353569 0.7143866 1 +0.7555758 0.7143866 1 +0.7751122 0.7143866 1 +0.7940252 0.7143866 1 +0.8123661 0.7143866 1 +0.8301795 0.7143866 1 +0.8475045 0.7143866 1 +0.8643761 0.7143866 1 +0.880825 0.7143866 1 +0.8968787 0.7143866 1 +0.9125621 0.7143866 1 +0.9278974 0.7143866 1 +0.9429048 0.7143866 1 +0.9576028 0.7143866 1 +0.9720079 0.7143866 1 +0.9861357 0.7143866 1 +1 0.7143866 1 +0 0.7353569 1 +0.1939468 0.7353569 1 +0.2773041 0.7353569 1 +0.3384659 0.7353569 1 +0.3885728 0.7353569 1 +0.4317928 0.7353569 1 +0.470214 0.7353569 1 +0.5050551 0.7353569 1 +0.5370987 0.7353569 1 +0.5668815 0.7353569 1 +0.5947903 0.7353569 1 +0.6211144 0.7353569 1 +0.6460766 0.7353569 1 +0.6698526 0.7353569 1 +0.6925839 0.7353569 1 +0.7143866 0.7353569 1 +0.7353569 0.7353569 1 +0.7555758 0.7353569 1 +0.7751122 0.7353569 1 +0.7940252 0.7353569 1 +0.8123661 0.7353569 1 +0.8301795 0.7353569 1 +0.8475045 0.7353569 1 +0.8643761 0.7353569 1 +0.880825 0.7353569 1 +0.8968787 0.7353569 1 +0.9125621 0.7353569 1 +0.9278974 0.7353569 1 +0.9429048 0.7353569 1 +0.9576028 0.7353569 1 +0.9720079 0.7353569 1 +0.9861357 0.7353569 1 +1 0.7353569 1 +0 0.7555758 1 +0.1939468 0.7555758 1 +0.2773041 0.7555758 1 +0.3384659 0.7555758 1 +0.3885728 0.7555758 1 +0.4317928 0.7555758 1 +0.470214 0.7555758 1 +0.5050551 0.7555758 1 +0.5370987 0.7555758 1 +0.5668815 0.7555758 1 +0.5947903 0.7555758 1 +0.6211144 0.7555758 1 +0.6460766 0.7555758 1 +0.6698526 0.7555758 1 +0.6925839 0.7555758 1 +0.7143866 0.7555758 1 +0.7353569 0.7555758 1 +0.7555758 0.7555758 1 +0.7751122 0.7555758 1 +0.7940252 0.7555758 1 +0.8123661 0.7555758 1 +0.8301795 0.7555758 1 +0.8475045 0.7555758 1 +0.8643761 0.7555758 1 +0.880825 0.7555758 1 +0.8968787 0.7555758 1 +0.9125621 0.7555758 1 +0.9278974 0.7555758 1 +0.9429048 0.7555758 1 +0.9576028 0.7555758 1 +0.9720079 0.7555758 1 +0.9861357 0.7555758 1 +1 0.7555758 1 +0 0.7751122 1 +0.1939468 0.7751122 1 +0.2773041 0.7751122 1 +0.3384659 0.7751122 1 +0.3885728 0.7751122 1 +0.4317928 0.7751122 1 +0.470214 0.7751122 1 +0.5050551 0.7751122 1 +0.5370987 0.7751122 1 +0.5668815 0.7751122 1 +0.5947903 0.7751122 1 +0.6211144 0.7751122 1 +0.6460766 0.7751122 1 +0.6698526 0.7751122 1 +0.6925839 0.7751122 1 +0.7143866 0.7751122 1 +0.7353569 0.7751122 1 +0.7555758 0.7751122 1 +0.7751122 0.7751122 1 +0.7940252 0.7751122 1 +0.8123661 0.7751122 1 +0.8301795 0.7751122 1 +0.8475045 0.7751122 1 +0.8643761 0.7751122 1 +0.880825 0.7751122 1 +0.8968787 0.7751122 1 +0.9125621 0.7751122 1 +0.9278974 0.7751122 1 +0.9429048 0.7751122 1 +0.9576028 0.7751122 1 +0.9720079 0.7751122 1 +0.9861357 0.7751122 1 +1 0.7751122 1 +0 0.7940252 1 +0.1939468 0.7940252 1 +0.2773041 0.7940252 1 +0.3384659 0.7940252 1 +0.3885728 0.7940252 1 +0.4317928 0.7940252 1 +0.470214 0.7940252 1 +0.5050551 0.7940252 1 +0.5370987 0.7940252 1 +0.5668815 0.7940252 1 +0.5947903 0.7940252 1 +0.6211144 0.7940252 1 +0.6460766 0.7940252 1 +0.6698526 0.7940252 1 +0.6925839 0.7940252 1 +0.7143866 0.7940252 1 +0.7353569 0.7940252 1 +0.7555758 0.7940252 1 +0.7751122 0.7940252 1 +0.7940252 0.7940252 1 +0.8123661 0.7940252 1 +0.8301795 0.7940252 1 +0.8475045 0.7940252 1 +0.8643761 0.7940252 1 +0.880825 0.7940252 1 +0.8968787 0.7940252 1 +0.9125621 0.7940252 1 +0.9278974 0.7940252 1 +0.9429048 0.7940252 1 +0.9576028 0.7940252 1 +0.9720079 0.7940252 1 +0.9861357 0.7940252 1 +1 0.7940252 1 +0 0.8123661 1 +0.1939468 0.8123661 1 +0.2773041 0.8123661 1 +0.3384659 0.8123661 1 +0.3885728 0.8123661 1 +0.4317928 0.8123661 1 +0.470214 0.8123661 1 +0.5050551 0.8123661 1 +0.5370987 0.8123661 1 +0.5668815 0.8123661 1 +0.5947903 0.8123661 1 +0.6211144 0.8123661 1 +0.6460766 0.8123661 1 +0.6698526 0.8123661 1 +0.6925839 0.8123661 1 +0.7143866 0.8123661 1 +0.7353569 0.8123661 1 +0.7555758 0.8123661 1 +0.7751122 0.8123661 1 +0.7940252 0.8123661 1 +0.8123661 0.8123661 1 +0.8301795 0.8123661 1 +0.8475045 0.8123661 1 +0.8643761 0.8123661 1 +0.880825 0.8123661 1 +0.8968787 0.8123661 1 +0.9125621 0.8123661 1 +0.9278974 0.8123661 1 +0.9429048 0.8123661 1 +0.9576028 0.8123661 1 +0.9720079 0.8123661 1 +0.9861357 0.8123661 1 +1 0.8123661 1 +0 0.8301795 1 +0.1939468 0.8301795 1 +0.2773041 0.8301795 1 +0.3384659 0.8301795 1 +0.3885728 0.8301795 1 +0.4317928 0.8301795 1 +0.470214 0.8301795 1 +0.5050551 0.8301795 1 +0.5370987 0.8301795 1 +0.5668815 0.8301795 1 +0.5947903 0.8301795 1 +0.6211144 0.8301795 1 +0.6460766 0.8301795 1 +0.6698526 0.8301795 1 +0.6925839 0.8301795 1 +0.7143866 0.8301795 1 +0.7353569 0.8301795 1 +0.7555758 0.8301795 1 +0.7751122 0.8301795 1 +0.7940252 0.8301795 1 +0.8123661 0.8301795 1 +0.8301795 0.8301795 1 +0.8475045 0.8301795 1 +0.8643761 0.8301795 1 +0.880825 0.8301795 1 +0.8968787 0.8301795 1 +0.9125621 0.8301795 1 +0.9278974 0.8301795 1 +0.9429048 0.8301795 1 +0.9576028 0.8301795 1 +0.9720079 0.8301795 1 +0.9861357 0.8301795 1 +1 0.8301795 1 +0 0.8475045 1 +0.1939468 0.8475045 1 +0.2773041 0.8475045 1 +0.3384659 0.8475045 1 +0.3885728 0.8475045 1 +0.4317928 0.8475045 1 +0.470214 0.8475045 1 +0.5050551 0.8475045 1 +0.5370987 0.8475045 1 +0.5668815 0.8475045 1 +0.5947903 0.8475045 1 +0.6211144 0.8475045 1 +0.6460766 0.8475045 1 +0.6698526 0.8475045 1 +0.6925839 0.8475045 1 +0.7143866 0.8475045 1 +0.7353569 0.8475045 1 +0.7555758 0.8475045 1 +0.7751122 0.8475045 1 +0.7940252 0.8475045 1 +0.8123661 0.8475045 1 +0.8301795 0.8475045 1 +0.8475045 0.8475045 1 +0.8643761 0.8475045 1 +0.880825 0.8475045 1 +0.8968787 0.8475045 1 +0.9125621 0.8475045 1 +0.9278974 0.8475045 1 +0.9429048 0.8475045 1 +0.9576028 0.8475045 1 +0.9720079 0.8475045 1 +0.9861357 0.8475045 1 +1 0.8475045 1 +0 0.8643761 1 +0.1939468 0.8643761 1 +0.2773041 0.8643761 1 +0.3384659 0.8643761 1 +0.3885728 0.8643761 1 +0.4317928 0.8643761 1 +0.470214 0.8643761 1 +0.5050551 0.8643761 1 +0.5370987 0.8643761 1 +0.5668815 0.8643761 1 +0.5947903 0.8643761 1 +0.6211144 0.8643761 1 +0.6460766 0.8643761 1 +0.6698526 0.8643761 1 +0.6925839 0.8643761 1 +0.7143866 0.8643761 1 +0.7353569 0.8643761 1 +0.7555758 0.8643761 1 +0.7751122 0.8643761 1 +0.7940252 0.8643761 1 +0.8123661 0.8643761 1 +0.8301795 0.8643761 1 +0.8475045 0.8643761 1 +0.8643761 0.8643761 1 +0.880825 0.8643761 1 +0.8968787 0.8643761 1 +0.9125621 0.8643761 1 +0.9278974 0.8643761 1 +0.9429048 0.8643761 1 +0.9576028 0.8643761 1 +0.9720079 0.8643761 1 +0.9861357 0.8643761 1 +1 0.8643761 1 +0 0.880825 1 +0.1939468 0.880825 1 +0.2773041 0.880825 1 +0.3384659 0.880825 1 +0.3885728 0.880825 1 +0.4317928 0.880825 1 +0.470214 0.880825 1 +0.5050551 0.880825 1 +0.5370987 0.880825 1 +0.5668815 0.880825 1 +0.5947903 0.880825 1 +0.6211144 0.880825 1 +0.6460766 0.880825 1 +0.6698526 0.880825 1 +0.6925839 0.880825 1 +0.7143866 0.880825 1 +0.7353569 0.880825 1 +0.7555758 0.880825 1 +0.7751122 0.880825 1 +0.7940252 0.880825 1 +0.8123661 0.880825 1 +0.8301795 0.880825 1 +0.8475045 0.880825 1 +0.8643761 0.880825 1 +0.880825 0.880825 1 +0.8968787 0.880825 1 +0.9125621 0.880825 1 +0.9278974 0.880825 1 +0.9429048 0.880825 1 +0.9576028 0.880825 1 +0.9720079 0.880825 1 +0.9861357 0.880825 1 +1 0.880825 1 +0 0.8968787 1 +0.1939468 0.8968787 1 +0.2773041 0.8968787 1 +0.3384659 0.8968787 1 +0.3885728 0.8968787 1 +0.4317928 0.8968787 1 +0.470214 0.8968787 1 +0.5050551 0.8968787 1 +0.5370987 0.8968787 1 +0.5668815 0.8968787 1 +0.5947903 0.8968787 1 +0.6211144 0.8968787 1 +0.6460766 0.8968787 1 +0.6698526 0.8968787 1 +0.6925839 0.8968787 1 +0.7143866 0.8968787 1 +0.7353569 0.8968787 1 +0.7555758 0.8968787 1 +0.7751122 0.8968787 1 +0.7940252 0.8968787 1 +0.8123661 0.8968787 1 +0.8301795 0.8968787 1 +0.8475045 0.8968787 1 +0.8643761 0.8968787 1 +0.880825 0.8968787 1 +0.8968787 0.8968787 1 +0.9125621 0.8968787 1 +0.9278974 0.8968787 1 +0.9429048 0.8968787 1 +0.9576028 0.8968787 1 +0.9720079 0.8968787 1 +0.9861357 0.8968787 1 +1 0.8968787 1 +0 0.9125621 1 +0.1939468 0.9125621 1 +0.2773041 0.9125621 1 +0.3384659 0.9125621 1 +0.3885728 0.9125621 1 +0.4317928 0.9125621 1 +0.470214 0.9125621 1 +0.5050551 0.9125621 1 +0.5370987 0.9125621 1 +0.5668815 0.9125621 1 +0.5947903 0.9125621 1 +0.6211144 0.9125621 1 +0.6460766 0.9125621 1 +0.6698526 0.9125621 1 +0.6925839 0.9125621 1 +0.7143866 0.9125621 1 +0.7353569 0.9125621 1 +0.7555758 0.9125621 1 +0.7751122 0.9125621 1 +0.7940252 0.9125621 1 +0.8123661 0.9125621 1 +0.8301795 0.9125621 1 +0.8475045 0.9125621 1 +0.8643761 0.9125621 1 +0.880825 0.9125621 1 +0.8968787 0.9125621 1 +0.9125621 0.9125621 1 +0.9278974 0.9125621 1 +0.9429048 0.9125621 1 +0.9576028 0.9125621 1 +0.9720079 0.9125621 1 +0.9861357 0.9125621 1 +1 0.9125621 1 +0 0.9278974 1 +0.1939468 0.9278974 1 +0.2773041 0.9278974 1 +0.3384659 0.9278974 1 +0.3885728 0.9278974 1 +0.4317928 0.9278974 1 +0.470214 0.9278974 1 +0.5050551 0.9278974 1 +0.5370987 0.9278974 1 +0.5668815 0.9278974 1 +0.5947903 0.9278974 1 +0.6211144 0.9278974 1 +0.6460766 0.9278974 1 +0.6698526 0.9278974 1 +0.6925839 0.9278974 1 +0.7143866 0.9278974 1 +0.7353569 0.9278974 1 +0.7555758 0.9278974 1 +0.7751122 0.9278974 1 +0.7940252 0.9278974 1 +0.8123661 0.9278974 1 +0.8301795 0.9278974 1 +0.8475045 0.9278974 1 +0.8643761 0.9278974 1 +0.880825 0.9278974 1 +0.8968787 0.9278974 1 +0.9125621 0.9278974 1 +0.9278974 0.9278974 1 +0.9429048 0.9278974 1 +0.9576028 0.9278974 1 +0.9720079 0.9278974 1 +0.9861357 0.9278974 1 +1 0.9278974 1 +0 0.9429048 1 +0.1939468 0.9429048 1 +0.2773041 0.9429048 1 +0.3384659 0.9429048 1 +0.3885728 0.9429048 1 +0.4317928 0.9429048 1 +0.470214 0.9429048 1 +0.5050551 0.9429048 1 +0.5370987 0.9429048 1 +0.5668815 0.9429048 1 +0.5947903 0.9429048 1 +0.6211144 0.9429048 1 +0.6460766 0.9429048 1 +0.6698526 0.9429048 1 +0.6925839 0.9429048 1 +0.7143866 0.9429048 1 +0.7353569 0.9429048 1 +0.7555758 0.9429048 1 +0.7751122 0.9429048 1 +0.7940252 0.9429048 1 +0.8123661 0.9429048 1 +0.8301795 0.9429048 1 +0.8475045 0.9429048 1 +0.8643761 0.9429048 1 +0.880825 0.9429048 1 +0.8968787 0.9429048 1 +0.9125621 0.9429048 1 +0.9278974 0.9429048 1 +0.9429048 0.9429048 1 +0.9576028 0.9429048 1 +0.9720079 0.9429048 1 +0.9861357 0.9429048 1 +1 0.9429048 1 +0 0.9576028 1 +0.1939468 0.9576028 1 +0.2773041 0.9576028 1 +0.3384659 0.9576028 1 +0.3885728 0.9576028 1 +0.4317928 0.9576028 1 +0.470214 0.9576028 1 +0.5050551 0.9576028 1 +0.5370987 0.9576028 1 +0.5668815 0.9576028 1 +0.5947903 0.9576028 1 +0.6211144 0.9576028 1 +0.6460766 0.9576028 1 +0.6698526 0.9576028 1 +0.6925839 0.9576028 1 +0.7143866 0.9576028 1 +0.7353569 0.9576028 1 +0.7555758 0.9576028 1 +0.7751122 0.9576028 1 +0.7940252 0.9576028 1 +0.8123661 0.9576028 1 +0.8301795 0.9576028 1 +0.8475045 0.9576028 1 +0.8643761 0.9576028 1 +0.880825 0.9576028 1 +0.8968787 0.9576028 1 +0.9125621 0.9576028 1 +0.9278974 0.9576028 1 +0.9429048 0.9576028 1 +0.9576028 0.9576028 1 +0.9720079 0.9576028 1 +0.9861357 0.9576028 1 +1 0.9576028 1 +0 0.9720079 1 +0.1939468 0.9720079 1 +0.2773041 0.9720079 1 +0.3384659 0.9720079 1 +0.3885728 0.9720079 1 +0.4317928 0.9720079 1 +0.470214 0.9720079 1 +0.5050551 0.9720079 1 +0.5370987 0.9720079 1 +0.5668815 0.9720079 1 +0.5947903 0.9720079 1 +0.6211144 0.9720079 1 +0.6460766 0.9720079 1 +0.6698526 0.9720079 1 +0.6925839 0.9720079 1 +0.7143866 0.9720079 1 +0.7353569 0.9720079 1 +0.7555758 0.9720079 1 +0.7751122 0.9720079 1 +0.7940252 0.9720079 1 +0.8123661 0.9720079 1 +0.8301795 0.9720079 1 +0.8475045 0.9720079 1 +0.8643761 0.9720079 1 +0.880825 0.9720079 1 +0.8968787 0.9720079 1 +0.9125621 0.9720079 1 +0.9278974 0.9720079 1 +0.9429048 0.9720079 1 +0.9576028 0.9720079 1 +0.9720079 0.9720079 1 +0.9861357 0.9720079 1 +1 0.9720079 1 +0 0.9861357 1 +0.1939468 0.9861357 1 +0.2773041 0.9861357 1 +0.3384659 0.9861357 1 +0.3885728 0.9861357 1 +0.4317928 0.9861357 1 +0.470214 0.9861357 1 +0.5050551 0.9861357 1 +0.5370987 0.9861357 1 +0.5668815 0.9861357 1 +0.5947903 0.9861357 1 +0.6211144 0.9861357 1 +0.6460766 0.9861357 1 +0.6698526 0.9861357 1 +0.6925839 0.9861357 1 +0.7143866 0.9861357 1 +0.7353569 0.9861357 1 +0.7555758 0.9861357 1 +0.7751122 0.9861357 1 +0.7940252 0.9861357 1 +0.8123661 0.9861357 1 +0.8301795 0.9861357 1 +0.8475045 0.9861357 1 +0.8643761 0.9861357 1 +0.880825 0.9861357 1 +0.8968787 0.9861357 1 +0.9125621 0.9861357 1 +0.9278974 0.9861357 1 +0.9429048 0.9861357 1 +0.9576028 0.9861357 1 +0.9720079 0.9861357 1 +0.9861357 0.9861357 1 +1 0.9861357 1 +0 1 1 +0.1939468 1 1 +0.2773041 1 1 +0.3384659 1 1 +0.3885728 1 1 +0.4317928 1 1 +0.470214 1 1 +0.5050551 1 1 +0.5370987 1 1 +0.5668815 1 1 +0.5947903 1 1 +0.6211144 1 1 +0.6460766 1 1 +0.6698526 1 1 +0.6925839 1 1 +0.7143866 1 1 +0.7353569 1 1 +0.7555758 1 1 +0.7751122 1 1 +0.7940252 1 1 +0.8123661 1 1 +0.8301795 1 1 +0.8475045 1 1 +0.8643761 1 1 +0.880825 1 1 +0.8968787 1 1 +0.9125621 1 1 +0.9278974 1 1 +0.9429048 1 1 +0.9576028 1 1 +0.9720079 1 1 +0.9861357 1 1 +1 1 1 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube.meta new file mode 100644 index 0000000..b9b2d5a --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Linear_to_sRGB_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb10e8cb1eab7904bb028a123f717ac7 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube new file mode 100644 index 0000000..e4cf57e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube @@ -0,0 +1,35941 @@ +TITLE "Unity Log to Linear r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +-0.0175068 -0.0175068 -0.0175068 +-0.01161267 -0.0175068 -0.0175068 +-0.005718534 -0.0175068 -0.0175068 +0.0001755984 -0.0175068 -0.0175068 +0.006069731 -0.0175068 -0.0175068 +0.01197402 -0.0175068 -0.0175068 +0.01903886 -0.0175068 -0.0175068 +0.02852504 -0.0175068 -0.0175068 +0.04126244 -0.0175068 -0.0175068 +0.05836535 -0.0175068 -0.0175068 +0.08132997 -0.0175068 -0.0175068 +0.1121653 -0.0175068 -0.0175068 +0.1535689 -0.0175068 -0.0175068 +0.2091628 -0.0175068 -0.0175068 +0.2838106 -0.0175068 -0.0175068 +0.3840425 -0.0175068 -0.0175068 +0.518627 -0.0175068 -0.0175068 +0.6993381 -0.0175068 -0.0175068 +0.9419845 -0.0175068 -0.0175068 +1.267794 -0.0175068 -0.0175068 +1.705268 -0.0175068 -0.0175068 +2.292679 -0.0175068 -0.0175068 +3.081414 -0.0175068 -0.0175068 +4.140474 -0.0175068 -0.0175068 +5.562508 -0.0175068 -0.0175068 +7.471917 -0.0175068 -0.0175068 +10.03574 -0.0175068 -0.0175068 +13.47828 -0.0175068 -0.0175068 +18.10068 -0.0175068 -0.0175068 +24.30731 -0.0175068 -0.0175068 +32.64117 -0.0175068 -0.0175068 +43.83129 -0.0175068 -0.0175068 +58.85664 -0.0175068 -0.0175068 +-0.0175068 -0.01161267 -0.0175068 +-0.01161267 -0.01161267 -0.0175068 +-0.005718534 -0.01161267 -0.0175068 +0.0001755984 -0.01161267 -0.0175068 +0.006069731 -0.01161267 -0.0175068 +0.01197402 -0.01161267 -0.0175068 +0.01903886 -0.01161267 -0.0175068 +0.02852504 -0.01161267 -0.0175068 +0.04126244 -0.01161267 -0.0175068 +0.05836535 -0.01161267 -0.0175068 +0.08132997 -0.01161267 -0.0175068 +0.1121653 -0.01161267 -0.0175068 +0.1535689 -0.01161267 -0.0175068 +0.2091628 -0.01161267 -0.0175068 +0.2838106 -0.01161267 -0.0175068 +0.3840425 -0.01161267 -0.0175068 +0.518627 -0.01161267 -0.0175068 +0.6993381 -0.01161267 -0.0175068 +0.9419845 -0.01161267 -0.0175068 +1.267794 -0.01161267 -0.0175068 +1.705268 -0.01161267 -0.0175068 +2.292679 -0.01161267 -0.0175068 +3.081414 -0.01161267 -0.0175068 +4.140474 -0.01161267 -0.0175068 +5.562508 -0.01161267 -0.0175068 +7.471917 -0.01161267 -0.0175068 +10.03574 -0.01161267 -0.0175068 +13.47828 -0.01161267 -0.0175068 +18.10068 -0.01161267 -0.0175068 +24.30731 -0.01161267 -0.0175068 +32.64117 -0.01161267 -0.0175068 +43.83129 -0.01161267 -0.0175068 +58.85664 -0.01161267 -0.0175068 +-0.0175068 -0.005718534 -0.0175068 +-0.01161267 -0.005718534 -0.0175068 +-0.005718534 -0.005718534 -0.0175068 +0.0001755984 -0.005718534 -0.0175068 +0.006069731 -0.005718534 -0.0175068 +0.01197402 -0.005718534 -0.0175068 +0.01903886 -0.005718534 -0.0175068 +0.02852504 -0.005718534 -0.0175068 +0.04126244 -0.005718534 -0.0175068 +0.05836535 -0.005718534 -0.0175068 +0.08132997 -0.005718534 -0.0175068 +0.1121653 -0.005718534 -0.0175068 +0.1535689 -0.005718534 -0.0175068 +0.2091628 -0.005718534 -0.0175068 +0.2838106 -0.005718534 -0.0175068 +0.3840425 -0.005718534 -0.0175068 +0.518627 -0.005718534 -0.0175068 +0.6993381 -0.005718534 -0.0175068 +0.9419845 -0.005718534 -0.0175068 +1.267794 -0.005718534 -0.0175068 +1.705268 -0.005718534 -0.0175068 +2.292679 -0.005718534 -0.0175068 +3.081414 -0.005718534 -0.0175068 +4.140474 -0.005718534 -0.0175068 +5.562508 -0.005718534 -0.0175068 +7.471917 -0.005718534 -0.0175068 +10.03574 -0.005718534 -0.0175068 +13.47828 -0.005718534 -0.0175068 +18.10068 -0.005718534 -0.0175068 +24.30731 -0.005718534 -0.0175068 +32.64117 -0.005718534 -0.0175068 +43.83129 -0.005718534 -0.0175068 +58.85664 -0.005718534 -0.0175068 +-0.0175068 0.0001755984 -0.0175068 +-0.01161267 0.0001755984 -0.0175068 +-0.005718534 0.0001755984 -0.0175068 +0.0001755984 0.0001755984 -0.0175068 +0.006069731 0.0001755984 -0.0175068 +0.01197402 0.0001755984 -0.0175068 +0.01903886 0.0001755984 -0.0175068 +0.02852504 0.0001755984 -0.0175068 +0.04126244 0.0001755984 -0.0175068 +0.05836535 0.0001755984 -0.0175068 +0.08132997 0.0001755984 -0.0175068 +0.1121653 0.0001755984 -0.0175068 +0.1535689 0.0001755984 -0.0175068 +0.2091628 0.0001755984 -0.0175068 +0.2838106 0.0001755984 -0.0175068 +0.3840425 0.0001755984 -0.0175068 +0.518627 0.0001755984 -0.0175068 +0.6993381 0.0001755984 -0.0175068 +0.9419845 0.0001755984 -0.0175068 +1.267794 0.0001755984 -0.0175068 +1.705268 0.0001755984 -0.0175068 +2.292679 0.0001755984 -0.0175068 +3.081414 0.0001755984 -0.0175068 +4.140474 0.0001755984 -0.0175068 +5.562508 0.0001755984 -0.0175068 +7.471917 0.0001755984 -0.0175068 +10.03574 0.0001755984 -0.0175068 +13.47828 0.0001755984 -0.0175068 +18.10068 0.0001755984 -0.0175068 +24.30731 0.0001755984 -0.0175068 +32.64117 0.0001755984 -0.0175068 +43.83129 0.0001755984 -0.0175068 +58.85664 0.0001755984 -0.0175068 +-0.0175068 0.006069731 -0.0175068 +-0.01161267 0.006069731 -0.0175068 +-0.005718534 0.006069731 -0.0175068 +0.0001755984 0.006069731 -0.0175068 +0.006069731 0.006069731 -0.0175068 +0.01197402 0.006069731 -0.0175068 +0.01903886 0.006069731 -0.0175068 +0.02852504 0.006069731 -0.0175068 +0.04126244 0.006069731 -0.0175068 +0.05836535 0.006069731 -0.0175068 +0.08132997 0.006069731 -0.0175068 +0.1121653 0.006069731 -0.0175068 +0.1535689 0.006069731 -0.0175068 +0.2091628 0.006069731 -0.0175068 +0.2838106 0.006069731 -0.0175068 +0.3840425 0.006069731 -0.0175068 +0.518627 0.006069731 -0.0175068 +0.6993381 0.006069731 -0.0175068 +0.9419845 0.006069731 -0.0175068 +1.267794 0.006069731 -0.0175068 +1.705268 0.006069731 -0.0175068 +2.292679 0.006069731 -0.0175068 +3.081414 0.006069731 -0.0175068 +4.140474 0.006069731 -0.0175068 +5.562508 0.006069731 -0.0175068 +7.471917 0.006069731 -0.0175068 +10.03574 0.006069731 -0.0175068 +13.47828 0.006069731 -0.0175068 +18.10068 0.006069731 -0.0175068 +24.30731 0.006069731 -0.0175068 +32.64117 0.006069731 -0.0175068 +43.83129 0.006069731 -0.0175068 +58.85664 0.006069731 -0.0175068 +-0.0175068 0.01197402 -0.0175068 +-0.01161267 0.01197402 -0.0175068 +-0.005718534 0.01197402 -0.0175068 +0.0001755984 0.01197402 -0.0175068 +0.006069731 0.01197402 -0.0175068 +0.01197402 0.01197402 -0.0175068 +0.01903886 0.01197402 -0.0175068 +0.02852504 0.01197402 -0.0175068 +0.04126244 0.01197402 -0.0175068 +0.05836535 0.01197402 -0.0175068 +0.08132997 0.01197402 -0.0175068 +0.1121653 0.01197402 -0.0175068 +0.1535689 0.01197402 -0.0175068 +0.2091628 0.01197402 -0.0175068 +0.2838106 0.01197402 -0.0175068 +0.3840425 0.01197402 -0.0175068 +0.518627 0.01197402 -0.0175068 +0.6993381 0.01197402 -0.0175068 +0.9419845 0.01197402 -0.0175068 +1.267794 0.01197402 -0.0175068 +1.705268 0.01197402 -0.0175068 +2.292679 0.01197402 -0.0175068 +3.081414 0.01197402 -0.0175068 +4.140474 0.01197402 -0.0175068 +5.562508 0.01197402 -0.0175068 +7.471917 0.01197402 -0.0175068 +10.03574 0.01197402 -0.0175068 +13.47828 0.01197402 -0.0175068 +18.10068 0.01197402 -0.0175068 +24.30731 0.01197402 -0.0175068 +32.64117 0.01197402 -0.0175068 +43.83129 0.01197402 -0.0175068 +58.85664 0.01197402 -0.0175068 +-0.0175068 0.01903886 -0.0175068 +-0.01161267 0.01903886 -0.0175068 +-0.005718534 0.01903886 -0.0175068 +0.0001755984 0.01903886 -0.0175068 +0.006069731 0.01903886 -0.0175068 +0.01197402 0.01903886 -0.0175068 +0.01903886 0.01903886 -0.0175068 +0.02852504 0.01903886 -0.0175068 +0.04126244 0.01903886 -0.0175068 +0.05836535 0.01903886 -0.0175068 +0.08132997 0.01903886 -0.0175068 +0.1121653 0.01903886 -0.0175068 +0.1535689 0.01903886 -0.0175068 +0.2091628 0.01903886 -0.0175068 +0.2838106 0.01903886 -0.0175068 +0.3840425 0.01903886 -0.0175068 +0.518627 0.01903886 -0.0175068 +0.6993381 0.01903886 -0.0175068 +0.9419845 0.01903886 -0.0175068 +1.267794 0.01903886 -0.0175068 +1.705268 0.01903886 -0.0175068 +2.292679 0.01903886 -0.0175068 +3.081414 0.01903886 -0.0175068 +4.140474 0.01903886 -0.0175068 +5.562508 0.01903886 -0.0175068 +7.471917 0.01903886 -0.0175068 +10.03574 0.01903886 -0.0175068 +13.47828 0.01903886 -0.0175068 +18.10068 0.01903886 -0.0175068 +24.30731 0.01903886 -0.0175068 +32.64117 0.01903886 -0.0175068 +43.83129 0.01903886 -0.0175068 +58.85664 0.01903886 -0.0175068 +-0.0175068 0.02852504 -0.0175068 +-0.01161267 0.02852504 -0.0175068 +-0.005718534 0.02852504 -0.0175068 +0.0001755984 0.02852504 -0.0175068 +0.006069731 0.02852504 -0.0175068 +0.01197402 0.02852504 -0.0175068 +0.01903886 0.02852504 -0.0175068 +0.02852504 0.02852504 -0.0175068 +0.04126244 0.02852504 -0.0175068 +0.05836535 0.02852504 -0.0175068 +0.08132997 0.02852504 -0.0175068 +0.1121653 0.02852504 -0.0175068 +0.1535689 0.02852504 -0.0175068 +0.2091628 0.02852504 -0.0175068 +0.2838106 0.02852504 -0.0175068 +0.3840425 0.02852504 -0.0175068 +0.518627 0.02852504 -0.0175068 +0.6993381 0.02852504 -0.0175068 +0.9419845 0.02852504 -0.0175068 +1.267794 0.02852504 -0.0175068 +1.705268 0.02852504 -0.0175068 +2.292679 0.02852504 -0.0175068 +3.081414 0.02852504 -0.0175068 +4.140474 0.02852504 -0.0175068 +5.562508 0.02852504 -0.0175068 +7.471917 0.02852504 -0.0175068 +10.03574 0.02852504 -0.0175068 +13.47828 0.02852504 -0.0175068 +18.10068 0.02852504 -0.0175068 +24.30731 0.02852504 -0.0175068 +32.64117 0.02852504 -0.0175068 +43.83129 0.02852504 -0.0175068 +58.85664 0.02852504 -0.0175068 +-0.0175068 0.04126244 -0.0175068 +-0.01161267 0.04126244 -0.0175068 +-0.005718534 0.04126244 -0.0175068 +0.0001755984 0.04126244 -0.0175068 +0.006069731 0.04126244 -0.0175068 +0.01197402 0.04126244 -0.0175068 +0.01903886 0.04126244 -0.0175068 +0.02852504 0.04126244 -0.0175068 +0.04126244 0.04126244 -0.0175068 +0.05836535 0.04126244 -0.0175068 +0.08132997 0.04126244 -0.0175068 +0.1121653 0.04126244 -0.0175068 +0.1535689 0.04126244 -0.0175068 +0.2091628 0.04126244 -0.0175068 +0.2838106 0.04126244 -0.0175068 +0.3840425 0.04126244 -0.0175068 +0.518627 0.04126244 -0.0175068 +0.6993381 0.04126244 -0.0175068 +0.9419845 0.04126244 -0.0175068 +1.267794 0.04126244 -0.0175068 +1.705268 0.04126244 -0.0175068 +2.292679 0.04126244 -0.0175068 +3.081414 0.04126244 -0.0175068 +4.140474 0.04126244 -0.0175068 +5.562508 0.04126244 -0.0175068 +7.471917 0.04126244 -0.0175068 +10.03574 0.04126244 -0.0175068 +13.47828 0.04126244 -0.0175068 +18.10068 0.04126244 -0.0175068 +24.30731 0.04126244 -0.0175068 +32.64117 0.04126244 -0.0175068 +43.83129 0.04126244 -0.0175068 +58.85664 0.04126244 -0.0175068 +-0.0175068 0.05836535 -0.0175068 +-0.01161267 0.05836535 -0.0175068 +-0.005718534 0.05836535 -0.0175068 +0.0001755984 0.05836535 -0.0175068 +0.006069731 0.05836535 -0.0175068 +0.01197402 0.05836535 -0.0175068 +0.01903886 0.05836535 -0.0175068 +0.02852504 0.05836535 -0.0175068 +0.04126244 0.05836535 -0.0175068 +0.05836535 0.05836535 -0.0175068 +0.08132997 0.05836535 -0.0175068 +0.1121653 0.05836535 -0.0175068 +0.1535689 0.05836535 -0.0175068 +0.2091628 0.05836535 -0.0175068 +0.2838106 0.05836535 -0.0175068 +0.3840425 0.05836535 -0.0175068 +0.518627 0.05836535 -0.0175068 +0.6993381 0.05836535 -0.0175068 +0.9419845 0.05836535 -0.0175068 +1.267794 0.05836535 -0.0175068 +1.705268 0.05836535 -0.0175068 +2.292679 0.05836535 -0.0175068 +3.081414 0.05836535 -0.0175068 +4.140474 0.05836535 -0.0175068 +5.562508 0.05836535 -0.0175068 +7.471917 0.05836535 -0.0175068 +10.03574 0.05836535 -0.0175068 +13.47828 0.05836535 -0.0175068 +18.10068 0.05836535 -0.0175068 +24.30731 0.05836535 -0.0175068 +32.64117 0.05836535 -0.0175068 +43.83129 0.05836535 -0.0175068 +58.85664 0.05836535 -0.0175068 +-0.0175068 0.08132997 -0.0175068 +-0.01161267 0.08132997 -0.0175068 +-0.005718534 0.08132997 -0.0175068 +0.0001755984 0.08132997 -0.0175068 +0.006069731 0.08132997 -0.0175068 +0.01197402 0.08132997 -0.0175068 +0.01903886 0.08132997 -0.0175068 +0.02852504 0.08132997 -0.0175068 +0.04126244 0.08132997 -0.0175068 +0.05836535 0.08132997 -0.0175068 +0.08132997 0.08132997 -0.0175068 +0.1121653 0.08132997 -0.0175068 +0.1535689 0.08132997 -0.0175068 +0.2091628 0.08132997 -0.0175068 +0.2838106 0.08132997 -0.0175068 +0.3840425 0.08132997 -0.0175068 +0.518627 0.08132997 -0.0175068 +0.6993381 0.08132997 -0.0175068 +0.9419845 0.08132997 -0.0175068 +1.267794 0.08132997 -0.0175068 +1.705268 0.08132997 -0.0175068 +2.292679 0.08132997 -0.0175068 +3.081414 0.08132997 -0.0175068 +4.140474 0.08132997 -0.0175068 +5.562508 0.08132997 -0.0175068 +7.471917 0.08132997 -0.0175068 +10.03574 0.08132997 -0.0175068 +13.47828 0.08132997 -0.0175068 +18.10068 0.08132997 -0.0175068 +24.30731 0.08132997 -0.0175068 +32.64117 0.08132997 -0.0175068 +43.83129 0.08132997 -0.0175068 +58.85664 0.08132997 -0.0175068 +-0.0175068 0.1121653 -0.0175068 +-0.01161267 0.1121653 -0.0175068 +-0.005718534 0.1121653 -0.0175068 +0.0001755984 0.1121653 -0.0175068 +0.006069731 0.1121653 -0.0175068 +0.01197402 0.1121653 -0.0175068 +0.01903886 0.1121653 -0.0175068 +0.02852504 0.1121653 -0.0175068 +0.04126244 0.1121653 -0.0175068 +0.05836535 0.1121653 -0.0175068 +0.08132997 0.1121653 -0.0175068 +0.1121653 0.1121653 -0.0175068 +0.1535689 0.1121653 -0.0175068 +0.2091628 0.1121653 -0.0175068 +0.2838106 0.1121653 -0.0175068 +0.3840425 0.1121653 -0.0175068 +0.518627 0.1121653 -0.0175068 +0.6993381 0.1121653 -0.0175068 +0.9419845 0.1121653 -0.0175068 +1.267794 0.1121653 -0.0175068 +1.705268 0.1121653 -0.0175068 +2.292679 0.1121653 -0.0175068 +3.081414 0.1121653 -0.0175068 +4.140474 0.1121653 -0.0175068 +5.562508 0.1121653 -0.0175068 +7.471917 0.1121653 -0.0175068 +10.03574 0.1121653 -0.0175068 +13.47828 0.1121653 -0.0175068 +18.10068 0.1121653 -0.0175068 +24.30731 0.1121653 -0.0175068 +32.64117 0.1121653 -0.0175068 +43.83129 0.1121653 -0.0175068 +58.85664 0.1121653 -0.0175068 +-0.0175068 0.1535689 -0.0175068 +-0.01161267 0.1535689 -0.0175068 +-0.005718534 0.1535689 -0.0175068 +0.0001755984 0.1535689 -0.0175068 +0.006069731 0.1535689 -0.0175068 +0.01197402 0.1535689 -0.0175068 +0.01903886 0.1535689 -0.0175068 +0.02852504 0.1535689 -0.0175068 +0.04126244 0.1535689 -0.0175068 +0.05836535 0.1535689 -0.0175068 +0.08132997 0.1535689 -0.0175068 +0.1121653 0.1535689 -0.0175068 +0.1535689 0.1535689 -0.0175068 +0.2091628 0.1535689 -0.0175068 +0.2838106 0.1535689 -0.0175068 +0.3840425 0.1535689 -0.0175068 +0.518627 0.1535689 -0.0175068 +0.6993381 0.1535689 -0.0175068 +0.9419845 0.1535689 -0.0175068 +1.267794 0.1535689 -0.0175068 +1.705268 0.1535689 -0.0175068 +2.292679 0.1535689 -0.0175068 +3.081414 0.1535689 -0.0175068 +4.140474 0.1535689 -0.0175068 +5.562508 0.1535689 -0.0175068 +7.471917 0.1535689 -0.0175068 +10.03574 0.1535689 -0.0175068 +13.47828 0.1535689 -0.0175068 +18.10068 0.1535689 -0.0175068 +24.30731 0.1535689 -0.0175068 +32.64117 0.1535689 -0.0175068 +43.83129 0.1535689 -0.0175068 +58.85664 0.1535689 -0.0175068 +-0.0175068 0.2091628 -0.0175068 +-0.01161267 0.2091628 -0.0175068 +-0.005718534 0.2091628 -0.0175068 +0.0001755984 0.2091628 -0.0175068 +0.006069731 0.2091628 -0.0175068 +0.01197402 0.2091628 -0.0175068 +0.01903886 0.2091628 -0.0175068 +0.02852504 0.2091628 -0.0175068 +0.04126244 0.2091628 -0.0175068 +0.05836535 0.2091628 -0.0175068 +0.08132997 0.2091628 -0.0175068 +0.1121653 0.2091628 -0.0175068 +0.1535689 0.2091628 -0.0175068 +0.2091628 0.2091628 -0.0175068 +0.2838106 0.2091628 -0.0175068 +0.3840425 0.2091628 -0.0175068 +0.518627 0.2091628 -0.0175068 +0.6993381 0.2091628 -0.0175068 +0.9419845 0.2091628 -0.0175068 +1.267794 0.2091628 -0.0175068 +1.705268 0.2091628 -0.0175068 +2.292679 0.2091628 -0.0175068 +3.081414 0.2091628 -0.0175068 +4.140474 0.2091628 -0.0175068 +5.562508 0.2091628 -0.0175068 +7.471917 0.2091628 -0.0175068 +10.03574 0.2091628 -0.0175068 +13.47828 0.2091628 -0.0175068 +18.10068 0.2091628 -0.0175068 +24.30731 0.2091628 -0.0175068 +32.64117 0.2091628 -0.0175068 +43.83129 0.2091628 -0.0175068 +58.85664 0.2091628 -0.0175068 +-0.0175068 0.2838106 -0.0175068 +-0.01161267 0.2838106 -0.0175068 +-0.005718534 0.2838106 -0.0175068 +0.0001755984 0.2838106 -0.0175068 +0.006069731 0.2838106 -0.0175068 +0.01197402 0.2838106 -0.0175068 +0.01903886 0.2838106 -0.0175068 +0.02852504 0.2838106 -0.0175068 +0.04126244 0.2838106 -0.0175068 +0.05836535 0.2838106 -0.0175068 +0.08132997 0.2838106 -0.0175068 +0.1121653 0.2838106 -0.0175068 +0.1535689 0.2838106 -0.0175068 +0.2091628 0.2838106 -0.0175068 +0.2838106 0.2838106 -0.0175068 +0.3840425 0.2838106 -0.0175068 +0.518627 0.2838106 -0.0175068 +0.6993381 0.2838106 -0.0175068 +0.9419845 0.2838106 -0.0175068 +1.267794 0.2838106 -0.0175068 +1.705268 0.2838106 -0.0175068 +2.292679 0.2838106 -0.0175068 +3.081414 0.2838106 -0.0175068 +4.140474 0.2838106 -0.0175068 +5.562508 0.2838106 -0.0175068 +7.471917 0.2838106 -0.0175068 +10.03574 0.2838106 -0.0175068 +13.47828 0.2838106 -0.0175068 +18.10068 0.2838106 -0.0175068 +24.30731 0.2838106 -0.0175068 +32.64117 0.2838106 -0.0175068 +43.83129 0.2838106 -0.0175068 +58.85664 0.2838106 -0.0175068 +-0.0175068 0.3840425 -0.0175068 +-0.01161267 0.3840425 -0.0175068 +-0.005718534 0.3840425 -0.0175068 +0.0001755984 0.3840425 -0.0175068 +0.006069731 0.3840425 -0.0175068 +0.01197402 0.3840425 -0.0175068 +0.01903886 0.3840425 -0.0175068 +0.02852504 0.3840425 -0.0175068 +0.04126244 0.3840425 -0.0175068 +0.05836535 0.3840425 -0.0175068 +0.08132997 0.3840425 -0.0175068 +0.1121653 0.3840425 -0.0175068 +0.1535689 0.3840425 -0.0175068 +0.2091628 0.3840425 -0.0175068 +0.2838106 0.3840425 -0.0175068 +0.3840425 0.3840425 -0.0175068 +0.518627 0.3840425 -0.0175068 +0.6993381 0.3840425 -0.0175068 +0.9419845 0.3840425 -0.0175068 +1.267794 0.3840425 -0.0175068 +1.705268 0.3840425 -0.0175068 +2.292679 0.3840425 -0.0175068 +3.081414 0.3840425 -0.0175068 +4.140474 0.3840425 -0.0175068 +5.562508 0.3840425 -0.0175068 +7.471917 0.3840425 -0.0175068 +10.03574 0.3840425 -0.0175068 +13.47828 0.3840425 -0.0175068 +18.10068 0.3840425 -0.0175068 +24.30731 0.3840425 -0.0175068 +32.64117 0.3840425 -0.0175068 +43.83129 0.3840425 -0.0175068 +58.85664 0.3840425 -0.0175068 +-0.0175068 0.518627 -0.0175068 +-0.01161267 0.518627 -0.0175068 +-0.005718534 0.518627 -0.0175068 +0.0001755984 0.518627 -0.0175068 +0.006069731 0.518627 -0.0175068 +0.01197402 0.518627 -0.0175068 +0.01903886 0.518627 -0.0175068 +0.02852504 0.518627 -0.0175068 +0.04126244 0.518627 -0.0175068 +0.05836535 0.518627 -0.0175068 +0.08132997 0.518627 -0.0175068 +0.1121653 0.518627 -0.0175068 +0.1535689 0.518627 -0.0175068 +0.2091628 0.518627 -0.0175068 +0.2838106 0.518627 -0.0175068 +0.3840425 0.518627 -0.0175068 +0.518627 0.518627 -0.0175068 +0.6993381 0.518627 -0.0175068 +0.9419845 0.518627 -0.0175068 +1.267794 0.518627 -0.0175068 +1.705268 0.518627 -0.0175068 +2.292679 0.518627 -0.0175068 +3.081414 0.518627 -0.0175068 +4.140474 0.518627 -0.0175068 +5.562508 0.518627 -0.0175068 +7.471917 0.518627 -0.0175068 +10.03574 0.518627 -0.0175068 +13.47828 0.518627 -0.0175068 +18.10068 0.518627 -0.0175068 +24.30731 0.518627 -0.0175068 +32.64117 0.518627 -0.0175068 +43.83129 0.518627 -0.0175068 +58.85664 0.518627 -0.0175068 +-0.0175068 0.6993381 -0.0175068 +-0.01161267 0.6993381 -0.0175068 +-0.005718534 0.6993381 -0.0175068 +0.0001755984 0.6993381 -0.0175068 +0.006069731 0.6993381 -0.0175068 +0.01197402 0.6993381 -0.0175068 +0.01903886 0.6993381 -0.0175068 +0.02852504 0.6993381 -0.0175068 +0.04126244 0.6993381 -0.0175068 +0.05836535 0.6993381 -0.0175068 +0.08132997 0.6993381 -0.0175068 +0.1121653 0.6993381 -0.0175068 +0.1535689 0.6993381 -0.0175068 +0.2091628 0.6993381 -0.0175068 +0.2838106 0.6993381 -0.0175068 +0.3840425 0.6993381 -0.0175068 +0.518627 0.6993381 -0.0175068 +0.6993381 0.6993381 -0.0175068 +0.9419845 0.6993381 -0.0175068 +1.267794 0.6993381 -0.0175068 +1.705268 0.6993381 -0.0175068 +2.292679 0.6993381 -0.0175068 +3.081414 0.6993381 -0.0175068 +4.140474 0.6993381 -0.0175068 +5.562508 0.6993381 -0.0175068 +7.471917 0.6993381 -0.0175068 +10.03574 0.6993381 -0.0175068 +13.47828 0.6993381 -0.0175068 +18.10068 0.6993381 -0.0175068 +24.30731 0.6993381 -0.0175068 +32.64117 0.6993381 -0.0175068 +43.83129 0.6993381 -0.0175068 +58.85664 0.6993381 -0.0175068 +-0.0175068 0.9419845 -0.0175068 +-0.01161267 0.9419845 -0.0175068 +-0.005718534 0.9419845 -0.0175068 +0.0001755984 0.9419845 -0.0175068 +0.006069731 0.9419845 -0.0175068 +0.01197402 0.9419845 -0.0175068 +0.01903886 0.9419845 -0.0175068 +0.02852504 0.9419845 -0.0175068 +0.04126244 0.9419845 -0.0175068 +0.05836535 0.9419845 -0.0175068 +0.08132997 0.9419845 -0.0175068 +0.1121653 0.9419845 -0.0175068 +0.1535689 0.9419845 -0.0175068 +0.2091628 0.9419845 -0.0175068 +0.2838106 0.9419845 -0.0175068 +0.3840425 0.9419845 -0.0175068 +0.518627 0.9419845 -0.0175068 +0.6993381 0.9419845 -0.0175068 +0.9419845 0.9419845 -0.0175068 +1.267794 0.9419845 -0.0175068 +1.705268 0.9419845 -0.0175068 +2.292679 0.9419845 -0.0175068 +3.081414 0.9419845 -0.0175068 +4.140474 0.9419845 -0.0175068 +5.562508 0.9419845 -0.0175068 +7.471917 0.9419845 -0.0175068 +10.03574 0.9419845 -0.0175068 +13.47828 0.9419845 -0.0175068 +18.10068 0.9419845 -0.0175068 +24.30731 0.9419845 -0.0175068 +32.64117 0.9419845 -0.0175068 +43.83129 0.9419845 -0.0175068 +58.85664 0.9419845 -0.0175068 +-0.0175068 1.267794 -0.0175068 +-0.01161267 1.267794 -0.0175068 +-0.005718534 1.267794 -0.0175068 +0.0001755984 1.267794 -0.0175068 +0.006069731 1.267794 -0.0175068 +0.01197402 1.267794 -0.0175068 +0.01903886 1.267794 -0.0175068 +0.02852504 1.267794 -0.0175068 +0.04126244 1.267794 -0.0175068 +0.05836535 1.267794 -0.0175068 +0.08132997 1.267794 -0.0175068 +0.1121653 1.267794 -0.0175068 +0.1535689 1.267794 -0.0175068 +0.2091628 1.267794 -0.0175068 +0.2838106 1.267794 -0.0175068 +0.3840425 1.267794 -0.0175068 +0.518627 1.267794 -0.0175068 +0.6993381 1.267794 -0.0175068 +0.9419845 1.267794 -0.0175068 +1.267794 1.267794 -0.0175068 +1.705268 1.267794 -0.0175068 +2.292679 1.267794 -0.0175068 +3.081414 1.267794 -0.0175068 +4.140474 1.267794 -0.0175068 +5.562508 1.267794 -0.0175068 +7.471917 1.267794 -0.0175068 +10.03574 1.267794 -0.0175068 +13.47828 1.267794 -0.0175068 +18.10068 1.267794 -0.0175068 +24.30731 1.267794 -0.0175068 +32.64117 1.267794 -0.0175068 +43.83129 1.267794 -0.0175068 +58.85664 1.267794 -0.0175068 +-0.0175068 1.705268 -0.0175068 +-0.01161267 1.705268 -0.0175068 +-0.005718534 1.705268 -0.0175068 +0.0001755984 1.705268 -0.0175068 +0.006069731 1.705268 -0.0175068 +0.01197402 1.705268 -0.0175068 +0.01903886 1.705268 -0.0175068 +0.02852504 1.705268 -0.0175068 +0.04126244 1.705268 -0.0175068 +0.05836535 1.705268 -0.0175068 +0.08132997 1.705268 -0.0175068 +0.1121653 1.705268 -0.0175068 +0.1535689 1.705268 -0.0175068 +0.2091628 1.705268 -0.0175068 +0.2838106 1.705268 -0.0175068 +0.3840425 1.705268 -0.0175068 +0.518627 1.705268 -0.0175068 +0.6993381 1.705268 -0.0175068 +0.9419845 1.705268 -0.0175068 +1.267794 1.705268 -0.0175068 +1.705268 1.705268 -0.0175068 +2.292679 1.705268 -0.0175068 +3.081414 1.705268 -0.0175068 +4.140474 1.705268 -0.0175068 +5.562508 1.705268 -0.0175068 +7.471917 1.705268 -0.0175068 +10.03574 1.705268 -0.0175068 +13.47828 1.705268 -0.0175068 +18.10068 1.705268 -0.0175068 +24.30731 1.705268 -0.0175068 +32.64117 1.705268 -0.0175068 +43.83129 1.705268 -0.0175068 +58.85664 1.705268 -0.0175068 +-0.0175068 2.292679 -0.0175068 +-0.01161267 2.292679 -0.0175068 +-0.005718534 2.292679 -0.0175068 +0.0001755984 2.292679 -0.0175068 +0.006069731 2.292679 -0.0175068 +0.01197402 2.292679 -0.0175068 +0.01903886 2.292679 -0.0175068 +0.02852504 2.292679 -0.0175068 +0.04126244 2.292679 -0.0175068 +0.05836535 2.292679 -0.0175068 +0.08132997 2.292679 -0.0175068 +0.1121653 2.292679 -0.0175068 +0.1535689 2.292679 -0.0175068 +0.2091628 2.292679 -0.0175068 +0.2838106 2.292679 -0.0175068 +0.3840425 2.292679 -0.0175068 +0.518627 2.292679 -0.0175068 +0.6993381 2.292679 -0.0175068 +0.9419845 2.292679 -0.0175068 +1.267794 2.292679 -0.0175068 +1.705268 2.292679 -0.0175068 +2.292679 2.292679 -0.0175068 +3.081414 2.292679 -0.0175068 +4.140474 2.292679 -0.0175068 +5.562508 2.292679 -0.0175068 +7.471917 2.292679 -0.0175068 +10.03574 2.292679 -0.0175068 +13.47828 2.292679 -0.0175068 +18.10068 2.292679 -0.0175068 +24.30731 2.292679 -0.0175068 +32.64117 2.292679 -0.0175068 +43.83129 2.292679 -0.0175068 +58.85664 2.292679 -0.0175068 +-0.0175068 3.081414 -0.0175068 +-0.01161267 3.081414 -0.0175068 +-0.005718534 3.081414 -0.0175068 +0.0001755984 3.081414 -0.0175068 +0.006069731 3.081414 -0.0175068 +0.01197402 3.081414 -0.0175068 +0.01903886 3.081414 -0.0175068 +0.02852504 3.081414 -0.0175068 +0.04126244 3.081414 -0.0175068 +0.05836535 3.081414 -0.0175068 +0.08132997 3.081414 -0.0175068 +0.1121653 3.081414 -0.0175068 +0.1535689 3.081414 -0.0175068 +0.2091628 3.081414 -0.0175068 +0.2838106 3.081414 -0.0175068 +0.3840425 3.081414 -0.0175068 +0.518627 3.081414 -0.0175068 +0.6993381 3.081414 -0.0175068 +0.9419845 3.081414 -0.0175068 +1.267794 3.081414 -0.0175068 +1.705268 3.081414 -0.0175068 +2.292679 3.081414 -0.0175068 +3.081414 3.081414 -0.0175068 +4.140474 3.081414 -0.0175068 +5.562508 3.081414 -0.0175068 +7.471917 3.081414 -0.0175068 +10.03574 3.081414 -0.0175068 +13.47828 3.081414 -0.0175068 +18.10068 3.081414 -0.0175068 +24.30731 3.081414 -0.0175068 +32.64117 3.081414 -0.0175068 +43.83129 3.081414 -0.0175068 +58.85664 3.081414 -0.0175068 +-0.0175068 4.140474 -0.0175068 +-0.01161267 4.140474 -0.0175068 +-0.005718534 4.140474 -0.0175068 +0.0001755984 4.140474 -0.0175068 +0.006069731 4.140474 -0.0175068 +0.01197402 4.140474 -0.0175068 +0.01903886 4.140474 -0.0175068 +0.02852504 4.140474 -0.0175068 +0.04126244 4.140474 -0.0175068 +0.05836535 4.140474 -0.0175068 +0.08132997 4.140474 -0.0175068 +0.1121653 4.140474 -0.0175068 +0.1535689 4.140474 -0.0175068 +0.2091628 4.140474 -0.0175068 +0.2838106 4.140474 -0.0175068 +0.3840425 4.140474 -0.0175068 +0.518627 4.140474 -0.0175068 +0.6993381 4.140474 -0.0175068 +0.9419845 4.140474 -0.0175068 +1.267794 4.140474 -0.0175068 +1.705268 4.140474 -0.0175068 +2.292679 4.140474 -0.0175068 +3.081414 4.140474 -0.0175068 +4.140474 4.140474 -0.0175068 +5.562508 4.140474 -0.0175068 +7.471917 4.140474 -0.0175068 +10.03574 4.140474 -0.0175068 +13.47828 4.140474 -0.0175068 +18.10068 4.140474 -0.0175068 +24.30731 4.140474 -0.0175068 +32.64117 4.140474 -0.0175068 +43.83129 4.140474 -0.0175068 +58.85664 4.140474 -0.0175068 +-0.0175068 5.562508 -0.0175068 +-0.01161267 5.562508 -0.0175068 +-0.005718534 5.562508 -0.0175068 +0.0001755984 5.562508 -0.0175068 +0.006069731 5.562508 -0.0175068 +0.01197402 5.562508 -0.0175068 +0.01903886 5.562508 -0.0175068 +0.02852504 5.562508 -0.0175068 +0.04126244 5.562508 -0.0175068 +0.05836535 5.562508 -0.0175068 +0.08132997 5.562508 -0.0175068 +0.1121653 5.562508 -0.0175068 +0.1535689 5.562508 -0.0175068 +0.2091628 5.562508 -0.0175068 +0.2838106 5.562508 -0.0175068 +0.3840425 5.562508 -0.0175068 +0.518627 5.562508 -0.0175068 +0.6993381 5.562508 -0.0175068 +0.9419845 5.562508 -0.0175068 +1.267794 5.562508 -0.0175068 +1.705268 5.562508 -0.0175068 +2.292679 5.562508 -0.0175068 +3.081414 5.562508 -0.0175068 +4.140474 5.562508 -0.0175068 +5.562508 5.562508 -0.0175068 +7.471917 5.562508 -0.0175068 +10.03574 5.562508 -0.0175068 +13.47828 5.562508 -0.0175068 +18.10068 5.562508 -0.0175068 +24.30731 5.562508 -0.0175068 +32.64117 5.562508 -0.0175068 +43.83129 5.562508 -0.0175068 +58.85664 5.562508 -0.0175068 +-0.0175068 7.471917 -0.0175068 +-0.01161267 7.471917 -0.0175068 +-0.005718534 7.471917 -0.0175068 +0.0001755984 7.471917 -0.0175068 +0.006069731 7.471917 -0.0175068 +0.01197402 7.471917 -0.0175068 +0.01903886 7.471917 -0.0175068 +0.02852504 7.471917 -0.0175068 +0.04126244 7.471917 -0.0175068 +0.05836535 7.471917 -0.0175068 +0.08132997 7.471917 -0.0175068 +0.1121653 7.471917 -0.0175068 +0.1535689 7.471917 -0.0175068 +0.2091628 7.471917 -0.0175068 +0.2838106 7.471917 -0.0175068 +0.3840425 7.471917 -0.0175068 +0.518627 7.471917 -0.0175068 +0.6993381 7.471917 -0.0175068 +0.9419845 7.471917 -0.0175068 +1.267794 7.471917 -0.0175068 +1.705268 7.471917 -0.0175068 +2.292679 7.471917 -0.0175068 +3.081414 7.471917 -0.0175068 +4.140474 7.471917 -0.0175068 +5.562508 7.471917 -0.0175068 +7.471917 7.471917 -0.0175068 +10.03574 7.471917 -0.0175068 +13.47828 7.471917 -0.0175068 +18.10068 7.471917 -0.0175068 +24.30731 7.471917 -0.0175068 +32.64117 7.471917 -0.0175068 +43.83129 7.471917 -0.0175068 +58.85664 7.471917 -0.0175068 +-0.0175068 10.03574 -0.0175068 +-0.01161267 10.03574 -0.0175068 +-0.005718534 10.03574 -0.0175068 +0.0001755984 10.03574 -0.0175068 +0.006069731 10.03574 -0.0175068 +0.01197402 10.03574 -0.0175068 +0.01903886 10.03574 -0.0175068 +0.02852504 10.03574 -0.0175068 +0.04126244 10.03574 -0.0175068 +0.05836535 10.03574 -0.0175068 +0.08132997 10.03574 -0.0175068 +0.1121653 10.03574 -0.0175068 +0.1535689 10.03574 -0.0175068 +0.2091628 10.03574 -0.0175068 +0.2838106 10.03574 -0.0175068 +0.3840425 10.03574 -0.0175068 +0.518627 10.03574 -0.0175068 +0.6993381 10.03574 -0.0175068 +0.9419845 10.03574 -0.0175068 +1.267794 10.03574 -0.0175068 +1.705268 10.03574 -0.0175068 +2.292679 10.03574 -0.0175068 +3.081414 10.03574 -0.0175068 +4.140474 10.03574 -0.0175068 +5.562508 10.03574 -0.0175068 +7.471917 10.03574 -0.0175068 +10.03574 10.03574 -0.0175068 +13.47828 10.03574 -0.0175068 +18.10068 10.03574 -0.0175068 +24.30731 10.03574 -0.0175068 +32.64117 10.03574 -0.0175068 +43.83129 10.03574 -0.0175068 +58.85664 10.03574 -0.0175068 +-0.0175068 13.47828 -0.0175068 +-0.01161267 13.47828 -0.0175068 +-0.005718534 13.47828 -0.0175068 +0.0001755984 13.47828 -0.0175068 +0.006069731 13.47828 -0.0175068 +0.01197402 13.47828 -0.0175068 +0.01903886 13.47828 -0.0175068 +0.02852504 13.47828 -0.0175068 +0.04126244 13.47828 -0.0175068 +0.05836535 13.47828 -0.0175068 +0.08132997 13.47828 -0.0175068 +0.1121653 13.47828 -0.0175068 +0.1535689 13.47828 -0.0175068 +0.2091628 13.47828 -0.0175068 +0.2838106 13.47828 -0.0175068 +0.3840425 13.47828 -0.0175068 +0.518627 13.47828 -0.0175068 +0.6993381 13.47828 -0.0175068 +0.9419845 13.47828 -0.0175068 +1.267794 13.47828 -0.0175068 +1.705268 13.47828 -0.0175068 +2.292679 13.47828 -0.0175068 +3.081414 13.47828 -0.0175068 +4.140474 13.47828 -0.0175068 +5.562508 13.47828 -0.0175068 +7.471917 13.47828 -0.0175068 +10.03574 13.47828 -0.0175068 +13.47828 13.47828 -0.0175068 +18.10068 13.47828 -0.0175068 +24.30731 13.47828 -0.0175068 +32.64117 13.47828 -0.0175068 +43.83129 13.47828 -0.0175068 +58.85664 13.47828 -0.0175068 +-0.0175068 18.10068 -0.0175068 +-0.01161267 18.10068 -0.0175068 +-0.005718534 18.10068 -0.0175068 +0.0001755984 18.10068 -0.0175068 +0.006069731 18.10068 -0.0175068 +0.01197402 18.10068 -0.0175068 +0.01903886 18.10068 -0.0175068 +0.02852504 18.10068 -0.0175068 +0.04126244 18.10068 -0.0175068 +0.05836535 18.10068 -0.0175068 +0.08132997 18.10068 -0.0175068 +0.1121653 18.10068 -0.0175068 +0.1535689 18.10068 -0.0175068 +0.2091628 18.10068 -0.0175068 +0.2838106 18.10068 -0.0175068 +0.3840425 18.10068 -0.0175068 +0.518627 18.10068 -0.0175068 +0.6993381 18.10068 -0.0175068 +0.9419845 18.10068 -0.0175068 +1.267794 18.10068 -0.0175068 +1.705268 18.10068 -0.0175068 +2.292679 18.10068 -0.0175068 +3.081414 18.10068 -0.0175068 +4.140474 18.10068 -0.0175068 +5.562508 18.10068 -0.0175068 +7.471917 18.10068 -0.0175068 +10.03574 18.10068 -0.0175068 +13.47828 18.10068 -0.0175068 +18.10068 18.10068 -0.0175068 +24.30731 18.10068 -0.0175068 +32.64117 18.10068 -0.0175068 +43.83129 18.10068 -0.0175068 +58.85664 18.10068 -0.0175068 +-0.0175068 24.30731 -0.0175068 +-0.01161267 24.30731 -0.0175068 +-0.005718534 24.30731 -0.0175068 +0.0001755984 24.30731 -0.0175068 +0.006069731 24.30731 -0.0175068 +0.01197402 24.30731 -0.0175068 +0.01903886 24.30731 -0.0175068 +0.02852504 24.30731 -0.0175068 +0.04126244 24.30731 -0.0175068 +0.05836535 24.30731 -0.0175068 +0.08132997 24.30731 -0.0175068 +0.1121653 24.30731 -0.0175068 +0.1535689 24.30731 -0.0175068 +0.2091628 24.30731 -0.0175068 +0.2838106 24.30731 -0.0175068 +0.3840425 24.30731 -0.0175068 +0.518627 24.30731 -0.0175068 +0.6993381 24.30731 -0.0175068 +0.9419845 24.30731 -0.0175068 +1.267794 24.30731 -0.0175068 +1.705268 24.30731 -0.0175068 +2.292679 24.30731 -0.0175068 +3.081414 24.30731 -0.0175068 +4.140474 24.30731 -0.0175068 +5.562508 24.30731 -0.0175068 +7.471917 24.30731 -0.0175068 +10.03574 24.30731 -0.0175068 +13.47828 24.30731 -0.0175068 +18.10068 24.30731 -0.0175068 +24.30731 24.30731 -0.0175068 +32.64117 24.30731 -0.0175068 +43.83129 24.30731 -0.0175068 +58.85664 24.30731 -0.0175068 +-0.0175068 32.64117 -0.0175068 +-0.01161267 32.64117 -0.0175068 +-0.005718534 32.64117 -0.0175068 +0.0001755984 32.64117 -0.0175068 +0.006069731 32.64117 -0.0175068 +0.01197402 32.64117 -0.0175068 +0.01903886 32.64117 -0.0175068 +0.02852504 32.64117 -0.0175068 +0.04126244 32.64117 -0.0175068 +0.05836535 32.64117 -0.0175068 +0.08132997 32.64117 -0.0175068 +0.1121653 32.64117 -0.0175068 +0.1535689 32.64117 -0.0175068 +0.2091628 32.64117 -0.0175068 +0.2838106 32.64117 -0.0175068 +0.3840425 32.64117 -0.0175068 +0.518627 32.64117 -0.0175068 +0.6993381 32.64117 -0.0175068 +0.9419845 32.64117 -0.0175068 +1.267794 32.64117 -0.0175068 +1.705268 32.64117 -0.0175068 +2.292679 32.64117 -0.0175068 +3.081414 32.64117 -0.0175068 +4.140474 32.64117 -0.0175068 +5.562508 32.64117 -0.0175068 +7.471917 32.64117 -0.0175068 +10.03574 32.64117 -0.0175068 +13.47828 32.64117 -0.0175068 +18.10068 32.64117 -0.0175068 +24.30731 32.64117 -0.0175068 +32.64117 32.64117 -0.0175068 +43.83129 32.64117 -0.0175068 +58.85664 32.64117 -0.0175068 +-0.0175068 43.83129 -0.0175068 +-0.01161267 43.83129 -0.0175068 +-0.005718534 43.83129 -0.0175068 +0.0001755984 43.83129 -0.0175068 +0.006069731 43.83129 -0.0175068 +0.01197402 43.83129 -0.0175068 +0.01903886 43.83129 -0.0175068 +0.02852504 43.83129 -0.0175068 +0.04126244 43.83129 -0.0175068 +0.05836535 43.83129 -0.0175068 +0.08132997 43.83129 -0.0175068 +0.1121653 43.83129 -0.0175068 +0.1535689 43.83129 -0.0175068 +0.2091628 43.83129 -0.0175068 +0.2838106 43.83129 -0.0175068 +0.3840425 43.83129 -0.0175068 +0.518627 43.83129 -0.0175068 +0.6993381 43.83129 -0.0175068 +0.9419845 43.83129 -0.0175068 +1.267794 43.83129 -0.0175068 +1.705268 43.83129 -0.0175068 +2.292679 43.83129 -0.0175068 +3.081414 43.83129 -0.0175068 +4.140474 43.83129 -0.0175068 +5.562508 43.83129 -0.0175068 +7.471917 43.83129 -0.0175068 +10.03574 43.83129 -0.0175068 +13.47828 43.83129 -0.0175068 +18.10068 43.83129 -0.0175068 +24.30731 43.83129 -0.0175068 +32.64117 43.83129 -0.0175068 +43.83129 43.83129 -0.0175068 +58.85664 43.83129 -0.0175068 +-0.0175068 58.85664 -0.0175068 +-0.01161267 58.85664 -0.0175068 +-0.005718534 58.85664 -0.0175068 +0.0001755984 58.85664 -0.0175068 +0.006069731 58.85664 -0.0175068 +0.01197402 58.85664 -0.0175068 +0.01903886 58.85664 -0.0175068 +0.02852504 58.85664 -0.0175068 +0.04126244 58.85664 -0.0175068 +0.05836535 58.85664 -0.0175068 +0.08132997 58.85664 -0.0175068 +0.1121653 58.85664 -0.0175068 +0.1535689 58.85664 -0.0175068 +0.2091628 58.85664 -0.0175068 +0.2838106 58.85664 -0.0175068 +0.3840425 58.85664 -0.0175068 +0.518627 58.85664 -0.0175068 +0.6993381 58.85664 -0.0175068 +0.9419845 58.85664 -0.0175068 +1.267794 58.85664 -0.0175068 +1.705268 58.85664 -0.0175068 +2.292679 58.85664 -0.0175068 +3.081414 58.85664 -0.0175068 +4.140474 58.85664 -0.0175068 +5.562508 58.85664 -0.0175068 +7.471917 58.85664 -0.0175068 +10.03574 58.85664 -0.0175068 +13.47828 58.85664 -0.0175068 +18.10068 58.85664 -0.0175068 +24.30731 58.85664 -0.0175068 +32.64117 58.85664 -0.0175068 +43.83129 58.85664 -0.0175068 +58.85664 58.85664 -0.0175068 +-0.0175068 -0.0175068 -0.01161267 +-0.01161267 -0.0175068 -0.01161267 +-0.005718534 -0.0175068 -0.01161267 +0.0001755984 -0.0175068 -0.01161267 +0.006069731 -0.0175068 -0.01161267 +0.01197402 -0.0175068 -0.01161267 +0.01903886 -0.0175068 -0.01161267 +0.02852504 -0.0175068 -0.01161267 +0.04126244 -0.0175068 -0.01161267 +0.05836535 -0.0175068 -0.01161267 +0.08132997 -0.0175068 -0.01161267 +0.1121653 -0.0175068 -0.01161267 +0.1535689 -0.0175068 -0.01161267 +0.2091628 -0.0175068 -0.01161267 +0.2838106 -0.0175068 -0.01161267 +0.3840425 -0.0175068 -0.01161267 +0.518627 -0.0175068 -0.01161267 +0.6993381 -0.0175068 -0.01161267 +0.9419845 -0.0175068 -0.01161267 +1.267794 -0.0175068 -0.01161267 +1.705268 -0.0175068 -0.01161267 +2.292679 -0.0175068 -0.01161267 +3.081414 -0.0175068 -0.01161267 +4.140474 -0.0175068 -0.01161267 +5.562508 -0.0175068 -0.01161267 +7.471917 -0.0175068 -0.01161267 +10.03574 -0.0175068 -0.01161267 +13.47828 -0.0175068 -0.01161267 +18.10068 -0.0175068 -0.01161267 +24.30731 -0.0175068 -0.01161267 +32.64117 -0.0175068 -0.01161267 +43.83129 -0.0175068 -0.01161267 +58.85664 -0.0175068 -0.01161267 +-0.0175068 -0.01161267 -0.01161267 +-0.01161267 -0.01161267 -0.01161267 +-0.005718534 -0.01161267 -0.01161267 +0.0001755984 -0.01161267 -0.01161267 +0.006069731 -0.01161267 -0.01161267 +0.01197402 -0.01161267 -0.01161267 +0.01903886 -0.01161267 -0.01161267 +0.02852504 -0.01161267 -0.01161267 +0.04126244 -0.01161267 -0.01161267 +0.05836535 -0.01161267 -0.01161267 +0.08132997 -0.01161267 -0.01161267 +0.1121653 -0.01161267 -0.01161267 +0.1535689 -0.01161267 -0.01161267 +0.2091628 -0.01161267 -0.01161267 +0.2838106 -0.01161267 -0.01161267 +0.3840425 -0.01161267 -0.01161267 +0.518627 -0.01161267 -0.01161267 +0.6993381 -0.01161267 -0.01161267 +0.9419845 -0.01161267 -0.01161267 +1.267794 -0.01161267 -0.01161267 +1.705268 -0.01161267 -0.01161267 +2.292679 -0.01161267 -0.01161267 +3.081414 -0.01161267 -0.01161267 +4.140474 -0.01161267 -0.01161267 +5.562508 -0.01161267 -0.01161267 +7.471917 -0.01161267 -0.01161267 +10.03574 -0.01161267 -0.01161267 +13.47828 -0.01161267 -0.01161267 +18.10068 -0.01161267 -0.01161267 +24.30731 -0.01161267 -0.01161267 +32.64117 -0.01161267 -0.01161267 +43.83129 -0.01161267 -0.01161267 +58.85664 -0.01161267 -0.01161267 +-0.0175068 -0.005718534 -0.01161267 +-0.01161267 -0.005718534 -0.01161267 +-0.005718534 -0.005718534 -0.01161267 +0.0001755984 -0.005718534 -0.01161267 +0.006069731 -0.005718534 -0.01161267 +0.01197402 -0.005718534 -0.01161267 +0.01903886 -0.005718534 -0.01161267 +0.02852504 -0.005718534 -0.01161267 +0.04126244 -0.005718534 -0.01161267 +0.05836535 -0.005718534 -0.01161267 +0.08132997 -0.005718534 -0.01161267 +0.1121653 -0.005718534 -0.01161267 +0.1535689 -0.005718534 -0.01161267 +0.2091628 -0.005718534 -0.01161267 +0.2838106 -0.005718534 -0.01161267 +0.3840425 -0.005718534 -0.01161267 +0.518627 -0.005718534 -0.01161267 +0.6993381 -0.005718534 -0.01161267 +0.9419845 -0.005718534 -0.01161267 +1.267794 -0.005718534 -0.01161267 +1.705268 -0.005718534 -0.01161267 +2.292679 -0.005718534 -0.01161267 +3.081414 -0.005718534 -0.01161267 +4.140474 -0.005718534 -0.01161267 +5.562508 -0.005718534 -0.01161267 +7.471917 -0.005718534 -0.01161267 +10.03574 -0.005718534 -0.01161267 +13.47828 -0.005718534 -0.01161267 +18.10068 -0.005718534 -0.01161267 +24.30731 -0.005718534 -0.01161267 +32.64117 -0.005718534 -0.01161267 +43.83129 -0.005718534 -0.01161267 +58.85664 -0.005718534 -0.01161267 +-0.0175068 0.0001755984 -0.01161267 +-0.01161267 0.0001755984 -0.01161267 +-0.005718534 0.0001755984 -0.01161267 +0.0001755984 0.0001755984 -0.01161267 +0.006069731 0.0001755984 -0.01161267 +0.01197402 0.0001755984 -0.01161267 +0.01903886 0.0001755984 -0.01161267 +0.02852504 0.0001755984 -0.01161267 +0.04126244 0.0001755984 -0.01161267 +0.05836535 0.0001755984 -0.01161267 +0.08132997 0.0001755984 -0.01161267 +0.1121653 0.0001755984 -0.01161267 +0.1535689 0.0001755984 -0.01161267 +0.2091628 0.0001755984 -0.01161267 +0.2838106 0.0001755984 -0.01161267 +0.3840425 0.0001755984 -0.01161267 +0.518627 0.0001755984 -0.01161267 +0.6993381 0.0001755984 -0.01161267 +0.9419845 0.0001755984 -0.01161267 +1.267794 0.0001755984 -0.01161267 +1.705268 0.0001755984 -0.01161267 +2.292679 0.0001755984 -0.01161267 +3.081414 0.0001755984 -0.01161267 +4.140474 0.0001755984 -0.01161267 +5.562508 0.0001755984 -0.01161267 +7.471917 0.0001755984 -0.01161267 +10.03574 0.0001755984 -0.01161267 +13.47828 0.0001755984 -0.01161267 +18.10068 0.0001755984 -0.01161267 +24.30731 0.0001755984 -0.01161267 +32.64117 0.0001755984 -0.01161267 +43.83129 0.0001755984 -0.01161267 +58.85664 0.0001755984 -0.01161267 +-0.0175068 0.006069731 -0.01161267 +-0.01161267 0.006069731 -0.01161267 +-0.005718534 0.006069731 -0.01161267 +0.0001755984 0.006069731 -0.01161267 +0.006069731 0.006069731 -0.01161267 +0.01197402 0.006069731 -0.01161267 +0.01903886 0.006069731 -0.01161267 +0.02852504 0.006069731 -0.01161267 +0.04126244 0.006069731 -0.01161267 +0.05836535 0.006069731 -0.01161267 +0.08132997 0.006069731 -0.01161267 +0.1121653 0.006069731 -0.01161267 +0.1535689 0.006069731 -0.01161267 +0.2091628 0.006069731 -0.01161267 +0.2838106 0.006069731 -0.01161267 +0.3840425 0.006069731 -0.01161267 +0.518627 0.006069731 -0.01161267 +0.6993381 0.006069731 -0.01161267 +0.9419845 0.006069731 -0.01161267 +1.267794 0.006069731 -0.01161267 +1.705268 0.006069731 -0.01161267 +2.292679 0.006069731 -0.01161267 +3.081414 0.006069731 -0.01161267 +4.140474 0.006069731 -0.01161267 +5.562508 0.006069731 -0.01161267 +7.471917 0.006069731 -0.01161267 +10.03574 0.006069731 -0.01161267 +13.47828 0.006069731 -0.01161267 +18.10068 0.006069731 -0.01161267 +24.30731 0.006069731 -0.01161267 +32.64117 0.006069731 -0.01161267 +43.83129 0.006069731 -0.01161267 +58.85664 0.006069731 -0.01161267 +-0.0175068 0.01197402 -0.01161267 +-0.01161267 0.01197402 -0.01161267 +-0.005718534 0.01197402 -0.01161267 +0.0001755984 0.01197402 -0.01161267 +0.006069731 0.01197402 -0.01161267 +0.01197402 0.01197402 -0.01161267 +0.01903886 0.01197402 -0.01161267 +0.02852504 0.01197402 -0.01161267 +0.04126244 0.01197402 -0.01161267 +0.05836535 0.01197402 -0.01161267 +0.08132997 0.01197402 -0.01161267 +0.1121653 0.01197402 -0.01161267 +0.1535689 0.01197402 -0.01161267 +0.2091628 0.01197402 -0.01161267 +0.2838106 0.01197402 -0.01161267 +0.3840425 0.01197402 -0.01161267 +0.518627 0.01197402 -0.01161267 +0.6993381 0.01197402 -0.01161267 +0.9419845 0.01197402 -0.01161267 +1.267794 0.01197402 -0.01161267 +1.705268 0.01197402 -0.01161267 +2.292679 0.01197402 -0.01161267 +3.081414 0.01197402 -0.01161267 +4.140474 0.01197402 -0.01161267 +5.562508 0.01197402 -0.01161267 +7.471917 0.01197402 -0.01161267 +10.03574 0.01197402 -0.01161267 +13.47828 0.01197402 -0.01161267 +18.10068 0.01197402 -0.01161267 +24.30731 0.01197402 -0.01161267 +32.64117 0.01197402 -0.01161267 +43.83129 0.01197402 -0.01161267 +58.85664 0.01197402 -0.01161267 +-0.0175068 0.01903886 -0.01161267 +-0.01161267 0.01903886 -0.01161267 +-0.005718534 0.01903886 -0.01161267 +0.0001755984 0.01903886 -0.01161267 +0.006069731 0.01903886 -0.01161267 +0.01197402 0.01903886 -0.01161267 +0.01903886 0.01903886 -0.01161267 +0.02852504 0.01903886 -0.01161267 +0.04126244 0.01903886 -0.01161267 +0.05836535 0.01903886 -0.01161267 +0.08132997 0.01903886 -0.01161267 +0.1121653 0.01903886 -0.01161267 +0.1535689 0.01903886 -0.01161267 +0.2091628 0.01903886 -0.01161267 +0.2838106 0.01903886 -0.01161267 +0.3840425 0.01903886 -0.01161267 +0.518627 0.01903886 -0.01161267 +0.6993381 0.01903886 -0.01161267 +0.9419845 0.01903886 -0.01161267 +1.267794 0.01903886 -0.01161267 +1.705268 0.01903886 -0.01161267 +2.292679 0.01903886 -0.01161267 +3.081414 0.01903886 -0.01161267 +4.140474 0.01903886 -0.01161267 +5.562508 0.01903886 -0.01161267 +7.471917 0.01903886 -0.01161267 +10.03574 0.01903886 -0.01161267 +13.47828 0.01903886 -0.01161267 +18.10068 0.01903886 -0.01161267 +24.30731 0.01903886 -0.01161267 +32.64117 0.01903886 -0.01161267 +43.83129 0.01903886 -0.01161267 +58.85664 0.01903886 -0.01161267 +-0.0175068 0.02852504 -0.01161267 +-0.01161267 0.02852504 -0.01161267 +-0.005718534 0.02852504 -0.01161267 +0.0001755984 0.02852504 -0.01161267 +0.006069731 0.02852504 -0.01161267 +0.01197402 0.02852504 -0.01161267 +0.01903886 0.02852504 -0.01161267 +0.02852504 0.02852504 -0.01161267 +0.04126244 0.02852504 -0.01161267 +0.05836535 0.02852504 -0.01161267 +0.08132997 0.02852504 -0.01161267 +0.1121653 0.02852504 -0.01161267 +0.1535689 0.02852504 -0.01161267 +0.2091628 0.02852504 -0.01161267 +0.2838106 0.02852504 -0.01161267 +0.3840425 0.02852504 -0.01161267 +0.518627 0.02852504 -0.01161267 +0.6993381 0.02852504 -0.01161267 +0.9419845 0.02852504 -0.01161267 +1.267794 0.02852504 -0.01161267 +1.705268 0.02852504 -0.01161267 +2.292679 0.02852504 -0.01161267 +3.081414 0.02852504 -0.01161267 +4.140474 0.02852504 -0.01161267 +5.562508 0.02852504 -0.01161267 +7.471917 0.02852504 -0.01161267 +10.03574 0.02852504 -0.01161267 +13.47828 0.02852504 -0.01161267 +18.10068 0.02852504 -0.01161267 +24.30731 0.02852504 -0.01161267 +32.64117 0.02852504 -0.01161267 +43.83129 0.02852504 -0.01161267 +58.85664 0.02852504 -0.01161267 +-0.0175068 0.04126244 -0.01161267 +-0.01161267 0.04126244 -0.01161267 +-0.005718534 0.04126244 -0.01161267 +0.0001755984 0.04126244 -0.01161267 +0.006069731 0.04126244 -0.01161267 +0.01197402 0.04126244 -0.01161267 +0.01903886 0.04126244 -0.01161267 +0.02852504 0.04126244 -0.01161267 +0.04126244 0.04126244 -0.01161267 +0.05836535 0.04126244 -0.01161267 +0.08132997 0.04126244 -0.01161267 +0.1121653 0.04126244 -0.01161267 +0.1535689 0.04126244 -0.01161267 +0.2091628 0.04126244 -0.01161267 +0.2838106 0.04126244 -0.01161267 +0.3840425 0.04126244 -0.01161267 +0.518627 0.04126244 -0.01161267 +0.6993381 0.04126244 -0.01161267 +0.9419845 0.04126244 -0.01161267 +1.267794 0.04126244 -0.01161267 +1.705268 0.04126244 -0.01161267 +2.292679 0.04126244 -0.01161267 +3.081414 0.04126244 -0.01161267 +4.140474 0.04126244 -0.01161267 +5.562508 0.04126244 -0.01161267 +7.471917 0.04126244 -0.01161267 +10.03574 0.04126244 -0.01161267 +13.47828 0.04126244 -0.01161267 +18.10068 0.04126244 -0.01161267 +24.30731 0.04126244 -0.01161267 +32.64117 0.04126244 -0.01161267 +43.83129 0.04126244 -0.01161267 +58.85664 0.04126244 -0.01161267 +-0.0175068 0.05836535 -0.01161267 +-0.01161267 0.05836535 -0.01161267 +-0.005718534 0.05836535 -0.01161267 +0.0001755984 0.05836535 -0.01161267 +0.006069731 0.05836535 -0.01161267 +0.01197402 0.05836535 -0.01161267 +0.01903886 0.05836535 -0.01161267 +0.02852504 0.05836535 -0.01161267 +0.04126244 0.05836535 -0.01161267 +0.05836535 0.05836535 -0.01161267 +0.08132997 0.05836535 -0.01161267 +0.1121653 0.05836535 -0.01161267 +0.1535689 0.05836535 -0.01161267 +0.2091628 0.05836535 -0.01161267 +0.2838106 0.05836535 -0.01161267 +0.3840425 0.05836535 -0.01161267 +0.518627 0.05836535 -0.01161267 +0.6993381 0.05836535 -0.01161267 +0.9419845 0.05836535 -0.01161267 +1.267794 0.05836535 -0.01161267 +1.705268 0.05836535 -0.01161267 +2.292679 0.05836535 -0.01161267 +3.081414 0.05836535 -0.01161267 +4.140474 0.05836535 -0.01161267 +5.562508 0.05836535 -0.01161267 +7.471917 0.05836535 -0.01161267 +10.03574 0.05836535 -0.01161267 +13.47828 0.05836535 -0.01161267 +18.10068 0.05836535 -0.01161267 +24.30731 0.05836535 -0.01161267 +32.64117 0.05836535 -0.01161267 +43.83129 0.05836535 -0.01161267 +58.85664 0.05836535 -0.01161267 +-0.0175068 0.08132997 -0.01161267 +-0.01161267 0.08132997 -0.01161267 +-0.005718534 0.08132997 -0.01161267 +0.0001755984 0.08132997 -0.01161267 +0.006069731 0.08132997 -0.01161267 +0.01197402 0.08132997 -0.01161267 +0.01903886 0.08132997 -0.01161267 +0.02852504 0.08132997 -0.01161267 +0.04126244 0.08132997 -0.01161267 +0.05836535 0.08132997 -0.01161267 +0.08132997 0.08132997 -0.01161267 +0.1121653 0.08132997 -0.01161267 +0.1535689 0.08132997 -0.01161267 +0.2091628 0.08132997 -0.01161267 +0.2838106 0.08132997 -0.01161267 +0.3840425 0.08132997 -0.01161267 +0.518627 0.08132997 -0.01161267 +0.6993381 0.08132997 -0.01161267 +0.9419845 0.08132997 -0.01161267 +1.267794 0.08132997 -0.01161267 +1.705268 0.08132997 -0.01161267 +2.292679 0.08132997 -0.01161267 +3.081414 0.08132997 -0.01161267 +4.140474 0.08132997 -0.01161267 +5.562508 0.08132997 -0.01161267 +7.471917 0.08132997 -0.01161267 +10.03574 0.08132997 -0.01161267 +13.47828 0.08132997 -0.01161267 +18.10068 0.08132997 -0.01161267 +24.30731 0.08132997 -0.01161267 +32.64117 0.08132997 -0.01161267 +43.83129 0.08132997 -0.01161267 +58.85664 0.08132997 -0.01161267 +-0.0175068 0.1121653 -0.01161267 +-0.01161267 0.1121653 -0.01161267 +-0.005718534 0.1121653 -0.01161267 +0.0001755984 0.1121653 -0.01161267 +0.006069731 0.1121653 -0.01161267 +0.01197402 0.1121653 -0.01161267 +0.01903886 0.1121653 -0.01161267 +0.02852504 0.1121653 -0.01161267 +0.04126244 0.1121653 -0.01161267 +0.05836535 0.1121653 -0.01161267 +0.08132997 0.1121653 -0.01161267 +0.1121653 0.1121653 -0.01161267 +0.1535689 0.1121653 -0.01161267 +0.2091628 0.1121653 -0.01161267 +0.2838106 0.1121653 -0.01161267 +0.3840425 0.1121653 -0.01161267 +0.518627 0.1121653 -0.01161267 +0.6993381 0.1121653 -0.01161267 +0.9419845 0.1121653 -0.01161267 +1.267794 0.1121653 -0.01161267 +1.705268 0.1121653 -0.01161267 +2.292679 0.1121653 -0.01161267 +3.081414 0.1121653 -0.01161267 +4.140474 0.1121653 -0.01161267 +5.562508 0.1121653 -0.01161267 +7.471917 0.1121653 -0.01161267 +10.03574 0.1121653 -0.01161267 +13.47828 0.1121653 -0.01161267 +18.10068 0.1121653 -0.01161267 +24.30731 0.1121653 -0.01161267 +32.64117 0.1121653 -0.01161267 +43.83129 0.1121653 -0.01161267 +58.85664 0.1121653 -0.01161267 +-0.0175068 0.1535689 -0.01161267 +-0.01161267 0.1535689 -0.01161267 +-0.005718534 0.1535689 -0.01161267 +0.0001755984 0.1535689 -0.01161267 +0.006069731 0.1535689 -0.01161267 +0.01197402 0.1535689 -0.01161267 +0.01903886 0.1535689 -0.01161267 +0.02852504 0.1535689 -0.01161267 +0.04126244 0.1535689 -0.01161267 +0.05836535 0.1535689 -0.01161267 +0.08132997 0.1535689 -0.01161267 +0.1121653 0.1535689 -0.01161267 +0.1535689 0.1535689 -0.01161267 +0.2091628 0.1535689 -0.01161267 +0.2838106 0.1535689 -0.01161267 +0.3840425 0.1535689 -0.01161267 +0.518627 0.1535689 -0.01161267 +0.6993381 0.1535689 -0.01161267 +0.9419845 0.1535689 -0.01161267 +1.267794 0.1535689 -0.01161267 +1.705268 0.1535689 -0.01161267 +2.292679 0.1535689 -0.01161267 +3.081414 0.1535689 -0.01161267 +4.140474 0.1535689 -0.01161267 +5.562508 0.1535689 -0.01161267 +7.471917 0.1535689 -0.01161267 +10.03574 0.1535689 -0.01161267 +13.47828 0.1535689 -0.01161267 +18.10068 0.1535689 -0.01161267 +24.30731 0.1535689 -0.01161267 +32.64117 0.1535689 -0.01161267 +43.83129 0.1535689 -0.01161267 +58.85664 0.1535689 -0.01161267 +-0.0175068 0.2091628 -0.01161267 +-0.01161267 0.2091628 -0.01161267 +-0.005718534 0.2091628 -0.01161267 +0.0001755984 0.2091628 -0.01161267 +0.006069731 0.2091628 -0.01161267 +0.01197402 0.2091628 -0.01161267 +0.01903886 0.2091628 -0.01161267 +0.02852504 0.2091628 -0.01161267 +0.04126244 0.2091628 -0.01161267 +0.05836535 0.2091628 -0.01161267 +0.08132997 0.2091628 -0.01161267 +0.1121653 0.2091628 -0.01161267 +0.1535689 0.2091628 -0.01161267 +0.2091628 0.2091628 -0.01161267 +0.2838106 0.2091628 -0.01161267 +0.3840425 0.2091628 -0.01161267 +0.518627 0.2091628 -0.01161267 +0.6993381 0.2091628 -0.01161267 +0.9419845 0.2091628 -0.01161267 +1.267794 0.2091628 -0.01161267 +1.705268 0.2091628 -0.01161267 +2.292679 0.2091628 -0.01161267 +3.081414 0.2091628 -0.01161267 +4.140474 0.2091628 -0.01161267 +5.562508 0.2091628 -0.01161267 +7.471917 0.2091628 -0.01161267 +10.03574 0.2091628 -0.01161267 +13.47828 0.2091628 -0.01161267 +18.10068 0.2091628 -0.01161267 +24.30731 0.2091628 -0.01161267 +32.64117 0.2091628 -0.01161267 +43.83129 0.2091628 -0.01161267 +58.85664 0.2091628 -0.01161267 +-0.0175068 0.2838106 -0.01161267 +-0.01161267 0.2838106 -0.01161267 +-0.005718534 0.2838106 -0.01161267 +0.0001755984 0.2838106 -0.01161267 +0.006069731 0.2838106 -0.01161267 +0.01197402 0.2838106 -0.01161267 +0.01903886 0.2838106 -0.01161267 +0.02852504 0.2838106 -0.01161267 +0.04126244 0.2838106 -0.01161267 +0.05836535 0.2838106 -0.01161267 +0.08132997 0.2838106 -0.01161267 +0.1121653 0.2838106 -0.01161267 +0.1535689 0.2838106 -0.01161267 +0.2091628 0.2838106 -0.01161267 +0.2838106 0.2838106 -0.01161267 +0.3840425 0.2838106 -0.01161267 +0.518627 0.2838106 -0.01161267 +0.6993381 0.2838106 -0.01161267 +0.9419845 0.2838106 -0.01161267 +1.267794 0.2838106 -0.01161267 +1.705268 0.2838106 -0.01161267 +2.292679 0.2838106 -0.01161267 +3.081414 0.2838106 -0.01161267 +4.140474 0.2838106 -0.01161267 +5.562508 0.2838106 -0.01161267 +7.471917 0.2838106 -0.01161267 +10.03574 0.2838106 -0.01161267 +13.47828 0.2838106 -0.01161267 +18.10068 0.2838106 -0.01161267 +24.30731 0.2838106 -0.01161267 +32.64117 0.2838106 -0.01161267 +43.83129 0.2838106 -0.01161267 +58.85664 0.2838106 -0.01161267 +-0.0175068 0.3840425 -0.01161267 +-0.01161267 0.3840425 -0.01161267 +-0.005718534 0.3840425 -0.01161267 +0.0001755984 0.3840425 -0.01161267 +0.006069731 0.3840425 -0.01161267 +0.01197402 0.3840425 -0.01161267 +0.01903886 0.3840425 -0.01161267 +0.02852504 0.3840425 -0.01161267 +0.04126244 0.3840425 -0.01161267 +0.05836535 0.3840425 -0.01161267 +0.08132997 0.3840425 -0.01161267 +0.1121653 0.3840425 -0.01161267 +0.1535689 0.3840425 -0.01161267 +0.2091628 0.3840425 -0.01161267 +0.2838106 0.3840425 -0.01161267 +0.3840425 0.3840425 -0.01161267 +0.518627 0.3840425 -0.01161267 +0.6993381 0.3840425 -0.01161267 +0.9419845 0.3840425 -0.01161267 +1.267794 0.3840425 -0.01161267 +1.705268 0.3840425 -0.01161267 +2.292679 0.3840425 -0.01161267 +3.081414 0.3840425 -0.01161267 +4.140474 0.3840425 -0.01161267 +5.562508 0.3840425 -0.01161267 +7.471917 0.3840425 -0.01161267 +10.03574 0.3840425 -0.01161267 +13.47828 0.3840425 -0.01161267 +18.10068 0.3840425 -0.01161267 +24.30731 0.3840425 -0.01161267 +32.64117 0.3840425 -0.01161267 +43.83129 0.3840425 -0.01161267 +58.85664 0.3840425 -0.01161267 +-0.0175068 0.518627 -0.01161267 +-0.01161267 0.518627 -0.01161267 +-0.005718534 0.518627 -0.01161267 +0.0001755984 0.518627 -0.01161267 +0.006069731 0.518627 -0.01161267 +0.01197402 0.518627 -0.01161267 +0.01903886 0.518627 -0.01161267 +0.02852504 0.518627 -0.01161267 +0.04126244 0.518627 -0.01161267 +0.05836535 0.518627 -0.01161267 +0.08132997 0.518627 -0.01161267 +0.1121653 0.518627 -0.01161267 +0.1535689 0.518627 -0.01161267 +0.2091628 0.518627 -0.01161267 +0.2838106 0.518627 -0.01161267 +0.3840425 0.518627 -0.01161267 +0.518627 0.518627 -0.01161267 +0.6993381 0.518627 -0.01161267 +0.9419845 0.518627 -0.01161267 +1.267794 0.518627 -0.01161267 +1.705268 0.518627 -0.01161267 +2.292679 0.518627 -0.01161267 +3.081414 0.518627 -0.01161267 +4.140474 0.518627 -0.01161267 +5.562508 0.518627 -0.01161267 +7.471917 0.518627 -0.01161267 +10.03574 0.518627 -0.01161267 +13.47828 0.518627 -0.01161267 +18.10068 0.518627 -0.01161267 +24.30731 0.518627 -0.01161267 +32.64117 0.518627 -0.01161267 +43.83129 0.518627 -0.01161267 +58.85664 0.518627 -0.01161267 +-0.0175068 0.6993381 -0.01161267 +-0.01161267 0.6993381 -0.01161267 +-0.005718534 0.6993381 -0.01161267 +0.0001755984 0.6993381 -0.01161267 +0.006069731 0.6993381 -0.01161267 +0.01197402 0.6993381 -0.01161267 +0.01903886 0.6993381 -0.01161267 +0.02852504 0.6993381 -0.01161267 +0.04126244 0.6993381 -0.01161267 +0.05836535 0.6993381 -0.01161267 +0.08132997 0.6993381 -0.01161267 +0.1121653 0.6993381 -0.01161267 +0.1535689 0.6993381 -0.01161267 +0.2091628 0.6993381 -0.01161267 +0.2838106 0.6993381 -0.01161267 +0.3840425 0.6993381 -0.01161267 +0.518627 0.6993381 -0.01161267 +0.6993381 0.6993381 -0.01161267 +0.9419845 0.6993381 -0.01161267 +1.267794 0.6993381 -0.01161267 +1.705268 0.6993381 -0.01161267 +2.292679 0.6993381 -0.01161267 +3.081414 0.6993381 -0.01161267 +4.140474 0.6993381 -0.01161267 +5.562508 0.6993381 -0.01161267 +7.471917 0.6993381 -0.01161267 +10.03574 0.6993381 -0.01161267 +13.47828 0.6993381 -0.01161267 +18.10068 0.6993381 -0.01161267 +24.30731 0.6993381 -0.01161267 +32.64117 0.6993381 -0.01161267 +43.83129 0.6993381 -0.01161267 +58.85664 0.6993381 -0.01161267 +-0.0175068 0.9419845 -0.01161267 +-0.01161267 0.9419845 -0.01161267 +-0.005718534 0.9419845 -0.01161267 +0.0001755984 0.9419845 -0.01161267 +0.006069731 0.9419845 -0.01161267 +0.01197402 0.9419845 -0.01161267 +0.01903886 0.9419845 -0.01161267 +0.02852504 0.9419845 -0.01161267 +0.04126244 0.9419845 -0.01161267 +0.05836535 0.9419845 -0.01161267 +0.08132997 0.9419845 -0.01161267 +0.1121653 0.9419845 -0.01161267 +0.1535689 0.9419845 -0.01161267 +0.2091628 0.9419845 -0.01161267 +0.2838106 0.9419845 -0.01161267 +0.3840425 0.9419845 -0.01161267 +0.518627 0.9419845 -0.01161267 +0.6993381 0.9419845 -0.01161267 +0.9419845 0.9419845 -0.01161267 +1.267794 0.9419845 -0.01161267 +1.705268 0.9419845 -0.01161267 +2.292679 0.9419845 -0.01161267 +3.081414 0.9419845 -0.01161267 +4.140474 0.9419845 -0.01161267 +5.562508 0.9419845 -0.01161267 +7.471917 0.9419845 -0.01161267 +10.03574 0.9419845 -0.01161267 +13.47828 0.9419845 -0.01161267 +18.10068 0.9419845 -0.01161267 +24.30731 0.9419845 -0.01161267 +32.64117 0.9419845 -0.01161267 +43.83129 0.9419845 -0.01161267 +58.85664 0.9419845 -0.01161267 +-0.0175068 1.267794 -0.01161267 +-0.01161267 1.267794 -0.01161267 +-0.005718534 1.267794 -0.01161267 +0.0001755984 1.267794 -0.01161267 +0.006069731 1.267794 -0.01161267 +0.01197402 1.267794 -0.01161267 +0.01903886 1.267794 -0.01161267 +0.02852504 1.267794 -0.01161267 +0.04126244 1.267794 -0.01161267 +0.05836535 1.267794 -0.01161267 +0.08132997 1.267794 -0.01161267 +0.1121653 1.267794 -0.01161267 +0.1535689 1.267794 -0.01161267 +0.2091628 1.267794 -0.01161267 +0.2838106 1.267794 -0.01161267 +0.3840425 1.267794 -0.01161267 +0.518627 1.267794 -0.01161267 +0.6993381 1.267794 -0.01161267 +0.9419845 1.267794 -0.01161267 +1.267794 1.267794 -0.01161267 +1.705268 1.267794 -0.01161267 +2.292679 1.267794 -0.01161267 +3.081414 1.267794 -0.01161267 +4.140474 1.267794 -0.01161267 +5.562508 1.267794 -0.01161267 +7.471917 1.267794 -0.01161267 +10.03574 1.267794 -0.01161267 +13.47828 1.267794 -0.01161267 +18.10068 1.267794 -0.01161267 +24.30731 1.267794 -0.01161267 +32.64117 1.267794 -0.01161267 +43.83129 1.267794 -0.01161267 +58.85664 1.267794 -0.01161267 +-0.0175068 1.705268 -0.01161267 +-0.01161267 1.705268 -0.01161267 +-0.005718534 1.705268 -0.01161267 +0.0001755984 1.705268 -0.01161267 +0.006069731 1.705268 -0.01161267 +0.01197402 1.705268 -0.01161267 +0.01903886 1.705268 -0.01161267 +0.02852504 1.705268 -0.01161267 +0.04126244 1.705268 -0.01161267 +0.05836535 1.705268 -0.01161267 +0.08132997 1.705268 -0.01161267 +0.1121653 1.705268 -0.01161267 +0.1535689 1.705268 -0.01161267 +0.2091628 1.705268 -0.01161267 +0.2838106 1.705268 -0.01161267 +0.3840425 1.705268 -0.01161267 +0.518627 1.705268 -0.01161267 +0.6993381 1.705268 -0.01161267 +0.9419845 1.705268 -0.01161267 +1.267794 1.705268 -0.01161267 +1.705268 1.705268 -0.01161267 +2.292679 1.705268 -0.01161267 +3.081414 1.705268 -0.01161267 +4.140474 1.705268 -0.01161267 +5.562508 1.705268 -0.01161267 +7.471917 1.705268 -0.01161267 +10.03574 1.705268 -0.01161267 +13.47828 1.705268 -0.01161267 +18.10068 1.705268 -0.01161267 +24.30731 1.705268 -0.01161267 +32.64117 1.705268 -0.01161267 +43.83129 1.705268 -0.01161267 +58.85664 1.705268 -0.01161267 +-0.0175068 2.292679 -0.01161267 +-0.01161267 2.292679 -0.01161267 +-0.005718534 2.292679 -0.01161267 +0.0001755984 2.292679 -0.01161267 +0.006069731 2.292679 -0.01161267 +0.01197402 2.292679 -0.01161267 +0.01903886 2.292679 -0.01161267 +0.02852504 2.292679 -0.01161267 +0.04126244 2.292679 -0.01161267 +0.05836535 2.292679 -0.01161267 +0.08132997 2.292679 -0.01161267 +0.1121653 2.292679 -0.01161267 +0.1535689 2.292679 -0.01161267 +0.2091628 2.292679 -0.01161267 +0.2838106 2.292679 -0.01161267 +0.3840425 2.292679 -0.01161267 +0.518627 2.292679 -0.01161267 +0.6993381 2.292679 -0.01161267 +0.9419845 2.292679 -0.01161267 +1.267794 2.292679 -0.01161267 +1.705268 2.292679 -0.01161267 +2.292679 2.292679 -0.01161267 +3.081414 2.292679 -0.01161267 +4.140474 2.292679 -0.01161267 +5.562508 2.292679 -0.01161267 +7.471917 2.292679 -0.01161267 +10.03574 2.292679 -0.01161267 +13.47828 2.292679 -0.01161267 +18.10068 2.292679 -0.01161267 +24.30731 2.292679 -0.01161267 +32.64117 2.292679 -0.01161267 +43.83129 2.292679 -0.01161267 +58.85664 2.292679 -0.01161267 +-0.0175068 3.081414 -0.01161267 +-0.01161267 3.081414 -0.01161267 +-0.005718534 3.081414 -0.01161267 +0.0001755984 3.081414 -0.01161267 +0.006069731 3.081414 -0.01161267 +0.01197402 3.081414 -0.01161267 +0.01903886 3.081414 -0.01161267 +0.02852504 3.081414 -0.01161267 +0.04126244 3.081414 -0.01161267 +0.05836535 3.081414 -0.01161267 +0.08132997 3.081414 -0.01161267 +0.1121653 3.081414 -0.01161267 +0.1535689 3.081414 -0.01161267 +0.2091628 3.081414 -0.01161267 +0.2838106 3.081414 -0.01161267 +0.3840425 3.081414 -0.01161267 +0.518627 3.081414 -0.01161267 +0.6993381 3.081414 -0.01161267 +0.9419845 3.081414 -0.01161267 +1.267794 3.081414 -0.01161267 +1.705268 3.081414 -0.01161267 +2.292679 3.081414 -0.01161267 +3.081414 3.081414 -0.01161267 +4.140474 3.081414 -0.01161267 +5.562508 3.081414 -0.01161267 +7.471917 3.081414 -0.01161267 +10.03574 3.081414 -0.01161267 +13.47828 3.081414 -0.01161267 +18.10068 3.081414 -0.01161267 +24.30731 3.081414 -0.01161267 +32.64117 3.081414 -0.01161267 +43.83129 3.081414 -0.01161267 +58.85664 3.081414 -0.01161267 +-0.0175068 4.140474 -0.01161267 +-0.01161267 4.140474 -0.01161267 +-0.005718534 4.140474 -0.01161267 +0.0001755984 4.140474 -0.01161267 +0.006069731 4.140474 -0.01161267 +0.01197402 4.140474 -0.01161267 +0.01903886 4.140474 -0.01161267 +0.02852504 4.140474 -0.01161267 +0.04126244 4.140474 -0.01161267 +0.05836535 4.140474 -0.01161267 +0.08132997 4.140474 -0.01161267 +0.1121653 4.140474 -0.01161267 +0.1535689 4.140474 -0.01161267 +0.2091628 4.140474 -0.01161267 +0.2838106 4.140474 -0.01161267 +0.3840425 4.140474 -0.01161267 +0.518627 4.140474 -0.01161267 +0.6993381 4.140474 -0.01161267 +0.9419845 4.140474 -0.01161267 +1.267794 4.140474 -0.01161267 +1.705268 4.140474 -0.01161267 +2.292679 4.140474 -0.01161267 +3.081414 4.140474 -0.01161267 +4.140474 4.140474 -0.01161267 +5.562508 4.140474 -0.01161267 +7.471917 4.140474 -0.01161267 +10.03574 4.140474 -0.01161267 +13.47828 4.140474 -0.01161267 +18.10068 4.140474 -0.01161267 +24.30731 4.140474 -0.01161267 +32.64117 4.140474 -0.01161267 +43.83129 4.140474 -0.01161267 +58.85664 4.140474 -0.01161267 +-0.0175068 5.562508 -0.01161267 +-0.01161267 5.562508 -0.01161267 +-0.005718534 5.562508 -0.01161267 +0.0001755984 5.562508 -0.01161267 +0.006069731 5.562508 -0.01161267 +0.01197402 5.562508 -0.01161267 +0.01903886 5.562508 -0.01161267 +0.02852504 5.562508 -0.01161267 +0.04126244 5.562508 -0.01161267 +0.05836535 5.562508 -0.01161267 +0.08132997 5.562508 -0.01161267 +0.1121653 5.562508 -0.01161267 +0.1535689 5.562508 -0.01161267 +0.2091628 5.562508 -0.01161267 +0.2838106 5.562508 -0.01161267 +0.3840425 5.562508 -0.01161267 +0.518627 5.562508 -0.01161267 +0.6993381 5.562508 -0.01161267 +0.9419845 5.562508 -0.01161267 +1.267794 5.562508 -0.01161267 +1.705268 5.562508 -0.01161267 +2.292679 5.562508 -0.01161267 +3.081414 5.562508 -0.01161267 +4.140474 5.562508 -0.01161267 +5.562508 5.562508 -0.01161267 +7.471917 5.562508 -0.01161267 +10.03574 5.562508 -0.01161267 +13.47828 5.562508 -0.01161267 +18.10068 5.562508 -0.01161267 +24.30731 5.562508 -0.01161267 +32.64117 5.562508 -0.01161267 +43.83129 5.562508 -0.01161267 +58.85664 5.562508 -0.01161267 +-0.0175068 7.471917 -0.01161267 +-0.01161267 7.471917 -0.01161267 +-0.005718534 7.471917 -0.01161267 +0.0001755984 7.471917 -0.01161267 +0.006069731 7.471917 -0.01161267 +0.01197402 7.471917 -0.01161267 +0.01903886 7.471917 -0.01161267 +0.02852504 7.471917 -0.01161267 +0.04126244 7.471917 -0.01161267 +0.05836535 7.471917 -0.01161267 +0.08132997 7.471917 -0.01161267 +0.1121653 7.471917 -0.01161267 +0.1535689 7.471917 -0.01161267 +0.2091628 7.471917 -0.01161267 +0.2838106 7.471917 -0.01161267 +0.3840425 7.471917 -0.01161267 +0.518627 7.471917 -0.01161267 +0.6993381 7.471917 -0.01161267 +0.9419845 7.471917 -0.01161267 +1.267794 7.471917 -0.01161267 +1.705268 7.471917 -0.01161267 +2.292679 7.471917 -0.01161267 +3.081414 7.471917 -0.01161267 +4.140474 7.471917 -0.01161267 +5.562508 7.471917 -0.01161267 +7.471917 7.471917 -0.01161267 +10.03574 7.471917 -0.01161267 +13.47828 7.471917 -0.01161267 +18.10068 7.471917 -0.01161267 +24.30731 7.471917 -0.01161267 +32.64117 7.471917 -0.01161267 +43.83129 7.471917 -0.01161267 +58.85664 7.471917 -0.01161267 +-0.0175068 10.03574 -0.01161267 +-0.01161267 10.03574 -0.01161267 +-0.005718534 10.03574 -0.01161267 +0.0001755984 10.03574 -0.01161267 +0.006069731 10.03574 -0.01161267 +0.01197402 10.03574 -0.01161267 +0.01903886 10.03574 -0.01161267 +0.02852504 10.03574 -0.01161267 +0.04126244 10.03574 -0.01161267 +0.05836535 10.03574 -0.01161267 +0.08132997 10.03574 -0.01161267 +0.1121653 10.03574 -0.01161267 +0.1535689 10.03574 -0.01161267 +0.2091628 10.03574 -0.01161267 +0.2838106 10.03574 -0.01161267 +0.3840425 10.03574 -0.01161267 +0.518627 10.03574 -0.01161267 +0.6993381 10.03574 -0.01161267 +0.9419845 10.03574 -0.01161267 +1.267794 10.03574 -0.01161267 +1.705268 10.03574 -0.01161267 +2.292679 10.03574 -0.01161267 +3.081414 10.03574 -0.01161267 +4.140474 10.03574 -0.01161267 +5.562508 10.03574 -0.01161267 +7.471917 10.03574 -0.01161267 +10.03574 10.03574 -0.01161267 +13.47828 10.03574 -0.01161267 +18.10068 10.03574 -0.01161267 +24.30731 10.03574 -0.01161267 +32.64117 10.03574 -0.01161267 +43.83129 10.03574 -0.01161267 +58.85664 10.03574 -0.01161267 +-0.0175068 13.47828 -0.01161267 +-0.01161267 13.47828 -0.01161267 +-0.005718534 13.47828 -0.01161267 +0.0001755984 13.47828 -0.01161267 +0.006069731 13.47828 -0.01161267 +0.01197402 13.47828 -0.01161267 +0.01903886 13.47828 -0.01161267 +0.02852504 13.47828 -0.01161267 +0.04126244 13.47828 -0.01161267 +0.05836535 13.47828 -0.01161267 +0.08132997 13.47828 -0.01161267 +0.1121653 13.47828 -0.01161267 +0.1535689 13.47828 -0.01161267 +0.2091628 13.47828 -0.01161267 +0.2838106 13.47828 -0.01161267 +0.3840425 13.47828 -0.01161267 +0.518627 13.47828 -0.01161267 +0.6993381 13.47828 -0.01161267 +0.9419845 13.47828 -0.01161267 +1.267794 13.47828 -0.01161267 +1.705268 13.47828 -0.01161267 +2.292679 13.47828 -0.01161267 +3.081414 13.47828 -0.01161267 +4.140474 13.47828 -0.01161267 +5.562508 13.47828 -0.01161267 +7.471917 13.47828 -0.01161267 +10.03574 13.47828 -0.01161267 +13.47828 13.47828 -0.01161267 +18.10068 13.47828 -0.01161267 +24.30731 13.47828 -0.01161267 +32.64117 13.47828 -0.01161267 +43.83129 13.47828 -0.01161267 +58.85664 13.47828 -0.01161267 +-0.0175068 18.10068 -0.01161267 +-0.01161267 18.10068 -0.01161267 +-0.005718534 18.10068 -0.01161267 +0.0001755984 18.10068 -0.01161267 +0.006069731 18.10068 -0.01161267 +0.01197402 18.10068 -0.01161267 +0.01903886 18.10068 -0.01161267 +0.02852504 18.10068 -0.01161267 +0.04126244 18.10068 -0.01161267 +0.05836535 18.10068 -0.01161267 +0.08132997 18.10068 -0.01161267 +0.1121653 18.10068 -0.01161267 +0.1535689 18.10068 -0.01161267 +0.2091628 18.10068 -0.01161267 +0.2838106 18.10068 -0.01161267 +0.3840425 18.10068 -0.01161267 +0.518627 18.10068 -0.01161267 +0.6993381 18.10068 -0.01161267 +0.9419845 18.10068 -0.01161267 +1.267794 18.10068 -0.01161267 +1.705268 18.10068 -0.01161267 +2.292679 18.10068 -0.01161267 +3.081414 18.10068 -0.01161267 +4.140474 18.10068 -0.01161267 +5.562508 18.10068 -0.01161267 +7.471917 18.10068 -0.01161267 +10.03574 18.10068 -0.01161267 +13.47828 18.10068 -0.01161267 +18.10068 18.10068 -0.01161267 +24.30731 18.10068 -0.01161267 +32.64117 18.10068 -0.01161267 +43.83129 18.10068 -0.01161267 +58.85664 18.10068 -0.01161267 +-0.0175068 24.30731 -0.01161267 +-0.01161267 24.30731 -0.01161267 +-0.005718534 24.30731 -0.01161267 +0.0001755984 24.30731 -0.01161267 +0.006069731 24.30731 -0.01161267 +0.01197402 24.30731 -0.01161267 +0.01903886 24.30731 -0.01161267 +0.02852504 24.30731 -0.01161267 +0.04126244 24.30731 -0.01161267 +0.05836535 24.30731 -0.01161267 +0.08132997 24.30731 -0.01161267 +0.1121653 24.30731 -0.01161267 +0.1535689 24.30731 -0.01161267 +0.2091628 24.30731 -0.01161267 +0.2838106 24.30731 -0.01161267 +0.3840425 24.30731 -0.01161267 +0.518627 24.30731 -0.01161267 +0.6993381 24.30731 -0.01161267 +0.9419845 24.30731 -0.01161267 +1.267794 24.30731 -0.01161267 +1.705268 24.30731 -0.01161267 +2.292679 24.30731 -0.01161267 +3.081414 24.30731 -0.01161267 +4.140474 24.30731 -0.01161267 +5.562508 24.30731 -0.01161267 +7.471917 24.30731 -0.01161267 +10.03574 24.30731 -0.01161267 +13.47828 24.30731 -0.01161267 +18.10068 24.30731 -0.01161267 +24.30731 24.30731 -0.01161267 +32.64117 24.30731 -0.01161267 +43.83129 24.30731 -0.01161267 +58.85664 24.30731 -0.01161267 +-0.0175068 32.64117 -0.01161267 +-0.01161267 32.64117 -0.01161267 +-0.005718534 32.64117 -0.01161267 +0.0001755984 32.64117 -0.01161267 +0.006069731 32.64117 -0.01161267 +0.01197402 32.64117 -0.01161267 +0.01903886 32.64117 -0.01161267 +0.02852504 32.64117 -0.01161267 +0.04126244 32.64117 -0.01161267 +0.05836535 32.64117 -0.01161267 +0.08132997 32.64117 -0.01161267 +0.1121653 32.64117 -0.01161267 +0.1535689 32.64117 -0.01161267 +0.2091628 32.64117 -0.01161267 +0.2838106 32.64117 -0.01161267 +0.3840425 32.64117 -0.01161267 +0.518627 32.64117 -0.01161267 +0.6993381 32.64117 -0.01161267 +0.9419845 32.64117 -0.01161267 +1.267794 32.64117 -0.01161267 +1.705268 32.64117 -0.01161267 +2.292679 32.64117 -0.01161267 +3.081414 32.64117 -0.01161267 +4.140474 32.64117 -0.01161267 +5.562508 32.64117 -0.01161267 +7.471917 32.64117 -0.01161267 +10.03574 32.64117 -0.01161267 +13.47828 32.64117 -0.01161267 +18.10068 32.64117 -0.01161267 +24.30731 32.64117 -0.01161267 +32.64117 32.64117 -0.01161267 +43.83129 32.64117 -0.01161267 +58.85664 32.64117 -0.01161267 +-0.0175068 43.83129 -0.01161267 +-0.01161267 43.83129 -0.01161267 +-0.005718534 43.83129 -0.01161267 +0.0001755984 43.83129 -0.01161267 +0.006069731 43.83129 -0.01161267 +0.01197402 43.83129 -0.01161267 +0.01903886 43.83129 -0.01161267 +0.02852504 43.83129 -0.01161267 +0.04126244 43.83129 -0.01161267 +0.05836535 43.83129 -0.01161267 +0.08132997 43.83129 -0.01161267 +0.1121653 43.83129 -0.01161267 +0.1535689 43.83129 -0.01161267 +0.2091628 43.83129 -0.01161267 +0.2838106 43.83129 -0.01161267 +0.3840425 43.83129 -0.01161267 +0.518627 43.83129 -0.01161267 +0.6993381 43.83129 -0.01161267 +0.9419845 43.83129 -0.01161267 +1.267794 43.83129 -0.01161267 +1.705268 43.83129 -0.01161267 +2.292679 43.83129 -0.01161267 +3.081414 43.83129 -0.01161267 +4.140474 43.83129 -0.01161267 +5.562508 43.83129 -0.01161267 +7.471917 43.83129 -0.01161267 +10.03574 43.83129 -0.01161267 +13.47828 43.83129 -0.01161267 +18.10068 43.83129 -0.01161267 +24.30731 43.83129 -0.01161267 +32.64117 43.83129 -0.01161267 +43.83129 43.83129 -0.01161267 +58.85664 43.83129 -0.01161267 +-0.0175068 58.85664 -0.01161267 +-0.01161267 58.85664 -0.01161267 +-0.005718534 58.85664 -0.01161267 +0.0001755984 58.85664 -0.01161267 +0.006069731 58.85664 -0.01161267 +0.01197402 58.85664 -0.01161267 +0.01903886 58.85664 -0.01161267 +0.02852504 58.85664 -0.01161267 +0.04126244 58.85664 -0.01161267 +0.05836535 58.85664 -0.01161267 +0.08132997 58.85664 -0.01161267 +0.1121653 58.85664 -0.01161267 +0.1535689 58.85664 -0.01161267 +0.2091628 58.85664 -0.01161267 +0.2838106 58.85664 -0.01161267 +0.3840425 58.85664 -0.01161267 +0.518627 58.85664 -0.01161267 +0.6993381 58.85664 -0.01161267 +0.9419845 58.85664 -0.01161267 +1.267794 58.85664 -0.01161267 +1.705268 58.85664 -0.01161267 +2.292679 58.85664 -0.01161267 +3.081414 58.85664 -0.01161267 +4.140474 58.85664 -0.01161267 +5.562508 58.85664 -0.01161267 +7.471917 58.85664 -0.01161267 +10.03574 58.85664 -0.01161267 +13.47828 58.85664 -0.01161267 +18.10068 58.85664 -0.01161267 +24.30731 58.85664 -0.01161267 +32.64117 58.85664 -0.01161267 +43.83129 58.85664 -0.01161267 +58.85664 58.85664 -0.01161267 +-0.0175068 -0.0175068 -0.005718534 +-0.01161267 -0.0175068 -0.005718534 +-0.005718534 -0.0175068 -0.005718534 +0.0001755984 -0.0175068 -0.005718534 +0.006069731 -0.0175068 -0.005718534 +0.01197402 -0.0175068 -0.005718534 +0.01903886 -0.0175068 -0.005718534 +0.02852504 -0.0175068 -0.005718534 +0.04126244 -0.0175068 -0.005718534 +0.05836535 -0.0175068 -0.005718534 +0.08132997 -0.0175068 -0.005718534 +0.1121653 -0.0175068 -0.005718534 +0.1535689 -0.0175068 -0.005718534 +0.2091628 -0.0175068 -0.005718534 +0.2838106 -0.0175068 -0.005718534 +0.3840425 -0.0175068 -0.005718534 +0.518627 -0.0175068 -0.005718534 +0.6993381 -0.0175068 -0.005718534 +0.9419845 -0.0175068 -0.005718534 +1.267794 -0.0175068 -0.005718534 +1.705268 -0.0175068 -0.005718534 +2.292679 -0.0175068 -0.005718534 +3.081414 -0.0175068 -0.005718534 +4.140474 -0.0175068 -0.005718534 +5.562508 -0.0175068 -0.005718534 +7.471917 -0.0175068 -0.005718534 +10.03574 -0.0175068 -0.005718534 +13.47828 -0.0175068 -0.005718534 +18.10068 -0.0175068 -0.005718534 +24.30731 -0.0175068 -0.005718534 +32.64117 -0.0175068 -0.005718534 +43.83129 -0.0175068 -0.005718534 +58.85664 -0.0175068 -0.005718534 +-0.0175068 -0.01161267 -0.005718534 +-0.01161267 -0.01161267 -0.005718534 +-0.005718534 -0.01161267 -0.005718534 +0.0001755984 -0.01161267 -0.005718534 +0.006069731 -0.01161267 -0.005718534 +0.01197402 -0.01161267 -0.005718534 +0.01903886 -0.01161267 -0.005718534 +0.02852504 -0.01161267 -0.005718534 +0.04126244 -0.01161267 -0.005718534 +0.05836535 -0.01161267 -0.005718534 +0.08132997 -0.01161267 -0.005718534 +0.1121653 -0.01161267 -0.005718534 +0.1535689 -0.01161267 -0.005718534 +0.2091628 -0.01161267 -0.005718534 +0.2838106 -0.01161267 -0.005718534 +0.3840425 -0.01161267 -0.005718534 +0.518627 -0.01161267 -0.005718534 +0.6993381 -0.01161267 -0.005718534 +0.9419845 -0.01161267 -0.005718534 +1.267794 -0.01161267 -0.005718534 +1.705268 -0.01161267 -0.005718534 +2.292679 -0.01161267 -0.005718534 +3.081414 -0.01161267 -0.005718534 +4.140474 -0.01161267 -0.005718534 +5.562508 -0.01161267 -0.005718534 +7.471917 -0.01161267 -0.005718534 +10.03574 -0.01161267 -0.005718534 +13.47828 -0.01161267 -0.005718534 +18.10068 -0.01161267 -0.005718534 +24.30731 -0.01161267 -0.005718534 +32.64117 -0.01161267 -0.005718534 +43.83129 -0.01161267 -0.005718534 +58.85664 -0.01161267 -0.005718534 +-0.0175068 -0.005718534 -0.005718534 +-0.01161267 -0.005718534 -0.005718534 +-0.005718534 -0.005718534 -0.005718534 +0.0001755984 -0.005718534 -0.005718534 +0.006069731 -0.005718534 -0.005718534 +0.01197402 -0.005718534 -0.005718534 +0.01903886 -0.005718534 -0.005718534 +0.02852504 -0.005718534 -0.005718534 +0.04126244 -0.005718534 -0.005718534 +0.05836535 -0.005718534 -0.005718534 +0.08132997 -0.005718534 -0.005718534 +0.1121653 -0.005718534 -0.005718534 +0.1535689 -0.005718534 -0.005718534 +0.2091628 -0.005718534 -0.005718534 +0.2838106 -0.005718534 -0.005718534 +0.3840425 -0.005718534 -0.005718534 +0.518627 -0.005718534 -0.005718534 +0.6993381 -0.005718534 -0.005718534 +0.9419845 -0.005718534 -0.005718534 +1.267794 -0.005718534 -0.005718534 +1.705268 -0.005718534 -0.005718534 +2.292679 -0.005718534 -0.005718534 +3.081414 -0.005718534 -0.005718534 +4.140474 -0.005718534 -0.005718534 +5.562508 -0.005718534 -0.005718534 +7.471917 -0.005718534 -0.005718534 +10.03574 -0.005718534 -0.005718534 +13.47828 -0.005718534 -0.005718534 +18.10068 -0.005718534 -0.005718534 +24.30731 -0.005718534 -0.005718534 +32.64117 -0.005718534 -0.005718534 +43.83129 -0.005718534 -0.005718534 +58.85664 -0.005718534 -0.005718534 +-0.0175068 0.0001755984 -0.005718534 +-0.01161267 0.0001755984 -0.005718534 +-0.005718534 0.0001755984 -0.005718534 +0.0001755984 0.0001755984 -0.005718534 +0.006069731 0.0001755984 -0.005718534 +0.01197402 0.0001755984 -0.005718534 +0.01903886 0.0001755984 -0.005718534 +0.02852504 0.0001755984 -0.005718534 +0.04126244 0.0001755984 -0.005718534 +0.05836535 0.0001755984 -0.005718534 +0.08132997 0.0001755984 -0.005718534 +0.1121653 0.0001755984 -0.005718534 +0.1535689 0.0001755984 -0.005718534 +0.2091628 0.0001755984 -0.005718534 +0.2838106 0.0001755984 -0.005718534 +0.3840425 0.0001755984 -0.005718534 +0.518627 0.0001755984 -0.005718534 +0.6993381 0.0001755984 -0.005718534 +0.9419845 0.0001755984 -0.005718534 +1.267794 0.0001755984 -0.005718534 +1.705268 0.0001755984 -0.005718534 +2.292679 0.0001755984 -0.005718534 +3.081414 0.0001755984 -0.005718534 +4.140474 0.0001755984 -0.005718534 +5.562508 0.0001755984 -0.005718534 +7.471917 0.0001755984 -0.005718534 +10.03574 0.0001755984 -0.005718534 +13.47828 0.0001755984 -0.005718534 +18.10068 0.0001755984 -0.005718534 +24.30731 0.0001755984 -0.005718534 +32.64117 0.0001755984 -0.005718534 +43.83129 0.0001755984 -0.005718534 +58.85664 0.0001755984 -0.005718534 +-0.0175068 0.006069731 -0.005718534 +-0.01161267 0.006069731 -0.005718534 +-0.005718534 0.006069731 -0.005718534 +0.0001755984 0.006069731 -0.005718534 +0.006069731 0.006069731 -0.005718534 +0.01197402 0.006069731 -0.005718534 +0.01903886 0.006069731 -0.005718534 +0.02852504 0.006069731 -0.005718534 +0.04126244 0.006069731 -0.005718534 +0.05836535 0.006069731 -0.005718534 +0.08132997 0.006069731 -0.005718534 +0.1121653 0.006069731 -0.005718534 +0.1535689 0.006069731 -0.005718534 +0.2091628 0.006069731 -0.005718534 +0.2838106 0.006069731 -0.005718534 +0.3840425 0.006069731 -0.005718534 +0.518627 0.006069731 -0.005718534 +0.6993381 0.006069731 -0.005718534 +0.9419845 0.006069731 -0.005718534 +1.267794 0.006069731 -0.005718534 +1.705268 0.006069731 -0.005718534 +2.292679 0.006069731 -0.005718534 +3.081414 0.006069731 -0.005718534 +4.140474 0.006069731 -0.005718534 +5.562508 0.006069731 -0.005718534 +7.471917 0.006069731 -0.005718534 +10.03574 0.006069731 -0.005718534 +13.47828 0.006069731 -0.005718534 +18.10068 0.006069731 -0.005718534 +24.30731 0.006069731 -0.005718534 +32.64117 0.006069731 -0.005718534 +43.83129 0.006069731 -0.005718534 +58.85664 0.006069731 -0.005718534 +-0.0175068 0.01197402 -0.005718534 +-0.01161267 0.01197402 -0.005718534 +-0.005718534 0.01197402 -0.005718534 +0.0001755984 0.01197402 -0.005718534 +0.006069731 0.01197402 -0.005718534 +0.01197402 0.01197402 -0.005718534 +0.01903886 0.01197402 -0.005718534 +0.02852504 0.01197402 -0.005718534 +0.04126244 0.01197402 -0.005718534 +0.05836535 0.01197402 -0.005718534 +0.08132997 0.01197402 -0.005718534 +0.1121653 0.01197402 -0.005718534 +0.1535689 0.01197402 -0.005718534 +0.2091628 0.01197402 -0.005718534 +0.2838106 0.01197402 -0.005718534 +0.3840425 0.01197402 -0.005718534 +0.518627 0.01197402 -0.005718534 +0.6993381 0.01197402 -0.005718534 +0.9419845 0.01197402 -0.005718534 +1.267794 0.01197402 -0.005718534 +1.705268 0.01197402 -0.005718534 +2.292679 0.01197402 -0.005718534 +3.081414 0.01197402 -0.005718534 +4.140474 0.01197402 -0.005718534 +5.562508 0.01197402 -0.005718534 +7.471917 0.01197402 -0.005718534 +10.03574 0.01197402 -0.005718534 +13.47828 0.01197402 -0.005718534 +18.10068 0.01197402 -0.005718534 +24.30731 0.01197402 -0.005718534 +32.64117 0.01197402 -0.005718534 +43.83129 0.01197402 -0.005718534 +58.85664 0.01197402 -0.005718534 +-0.0175068 0.01903886 -0.005718534 +-0.01161267 0.01903886 -0.005718534 +-0.005718534 0.01903886 -0.005718534 +0.0001755984 0.01903886 -0.005718534 +0.006069731 0.01903886 -0.005718534 +0.01197402 0.01903886 -0.005718534 +0.01903886 0.01903886 -0.005718534 +0.02852504 0.01903886 -0.005718534 +0.04126244 0.01903886 -0.005718534 +0.05836535 0.01903886 -0.005718534 +0.08132997 0.01903886 -0.005718534 +0.1121653 0.01903886 -0.005718534 +0.1535689 0.01903886 -0.005718534 +0.2091628 0.01903886 -0.005718534 +0.2838106 0.01903886 -0.005718534 +0.3840425 0.01903886 -0.005718534 +0.518627 0.01903886 -0.005718534 +0.6993381 0.01903886 -0.005718534 +0.9419845 0.01903886 -0.005718534 +1.267794 0.01903886 -0.005718534 +1.705268 0.01903886 -0.005718534 +2.292679 0.01903886 -0.005718534 +3.081414 0.01903886 -0.005718534 +4.140474 0.01903886 -0.005718534 +5.562508 0.01903886 -0.005718534 +7.471917 0.01903886 -0.005718534 +10.03574 0.01903886 -0.005718534 +13.47828 0.01903886 -0.005718534 +18.10068 0.01903886 -0.005718534 +24.30731 0.01903886 -0.005718534 +32.64117 0.01903886 -0.005718534 +43.83129 0.01903886 -0.005718534 +58.85664 0.01903886 -0.005718534 +-0.0175068 0.02852504 -0.005718534 +-0.01161267 0.02852504 -0.005718534 +-0.005718534 0.02852504 -0.005718534 +0.0001755984 0.02852504 -0.005718534 +0.006069731 0.02852504 -0.005718534 +0.01197402 0.02852504 -0.005718534 +0.01903886 0.02852504 -0.005718534 +0.02852504 0.02852504 -0.005718534 +0.04126244 0.02852504 -0.005718534 +0.05836535 0.02852504 -0.005718534 +0.08132997 0.02852504 -0.005718534 +0.1121653 0.02852504 -0.005718534 +0.1535689 0.02852504 -0.005718534 +0.2091628 0.02852504 -0.005718534 +0.2838106 0.02852504 -0.005718534 +0.3840425 0.02852504 -0.005718534 +0.518627 0.02852504 -0.005718534 +0.6993381 0.02852504 -0.005718534 +0.9419845 0.02852504 -0.005718534 +1.267794 0.02852504 -0.005718534 +1.705268 0.02852504 -0.005718534 +2.292679 0.02852504 -0.005718534 +3.081414 0.02852504 -0.005718534 +4.140474 0.02852504 -0.005718534 +5.562508 0.02852504 -0.005718534 +7.471917 0.02852504 -0.005718534 +10.03574 0.02852504 -0.005718534 +13.47828 0.02852504 -0.005718534 +18.10068 0.02852504 -0.005718534 +24.30731 0.02852504 -0.005718534 +32.64117 0.02852504 -0.005718534 +43.83129 0.02852504 -0.005718534 +58.85664 0.02852504 -0.005718534 +-0.0175068 0.04126244 -0.005718534 +-0.01161267 0.04126244 -0.005718534 +-0.005718534 0.04126244 -0.005718534 +0.0001755984 0.04126244 -0.005718534 +0.006069731 0.04126244 -0.005718534 +0.01197402 0.04126244 -0.005718534 +0.01903886 0.04126244 -0.005718534 +0.02852504 0.04126244 -0.005718534 +0.04126244 0.04126244 -0.005718534 +0.05836535 0.04126244 -0.005718534 +0.08132997 0.04126244 -0.005718534 +0.1121653 0.04126244 -0.005718534 +0.1535689 0.04126244 -0.005718534 +0.2091628 0.04126244 -0.005718534 +0.2838106 0.04126244 -0.005718534 +0.3840425 0.04126244 -0.005718534 +0.518627 0.04126244 -0.005718534 +0.6993381 0.04126244 -0.005718534 +0.9419845 0.04126244 -0.005718534 +1.267794 0.04126244 -0.005718534 +1.705268 0.04126244 -0.005718534 +2.292679 0.04126244 -0.005718534 +3.081414 0.04126244 -0.005718534 +4.140474 0.04126244 -0.005718534 +5.562508 0.04126244 -0.005718534 +7.471917 0.04126244 -0.005718534 +10.03574 0.04126244 -0.005718534 +13.47828 0.04126244 -0.005718534 +18.10068 0.04126244 -0.005718534 +24.30731 0.04126244 -0.005718534 +32.64117 0.04126244 -0.005718534 +43.83129 0.04126244 -0.005718534 +58.85664 0.04126244 -0.005718534 +-0.0175068 0.05836535 -0.005718534 +-0.01161267 0.05836535 -0.005718534 +-0.005718534 0.05836535 -0.005718534 +0.0001755984 0.05836535 -0.005718534 +0.006069731 0.05836535 -0.005718534 +0.01197402 0.05836535 -0.005718534 +0.01903886 0.05836535 -0.005718534 +0.02852504 0.05836535 -0.005718534 +0.04126244 0.05836535 -0.005718534 +0.05836535 0.05836535 -0.005718534 +0.08132997 0.05836535 -0.005718534 +0.1121653 0.05836535 -0.005718534 +0.1535689 0.05836535 -0.005718534 +0.2091628 0.05836535 -0.005718534 +0.2838106 0.05836535 -0.005718534 +0.3840425 0.05836535 -0.005718534 +0.518627 0.05836535 -0.005718534 +0.6993381 0.05836535 -0.005718534 +0.9419845 0.05836535 -0.005718534 +1.267794 0.05836535 -0.005718534 +1.705268 0.05836535 -0.005718534 +2.292679 0.05836535 -0.005718534 +3.081414 0.05836535 -0.005718534 +4.140474 0.05836535 -0.005718534 +5.562508 0.05836535 -0.005718534 +7.471917 0.05836535 -0.005718534 +10.03574 0.05836535 -0.005718534 +13.47828 0.05836535 -0.005718534 +18.10068 0.05836535 -0.005718534 +24.30731 0.05836535 -0.005718534 +32.64117 0.05836535 -0.005718534 +43.83129 0.05836535 -0.005718534 +58.85664 0.05836535 -0.005718534 +-0.0175068 0.08132997 -0.005718534 +-0.01161267 0.08132997 -0.005718534 +-0.005718534 0.08132997 -0.005718534 +0.0001755984 0.08132997 -0.005718534 +0.006069731 0.08132997 -0.005718534 +0.01197402 0.08132997 -0.005718534 +0.01903886 0.08132997 -0.005718534 +0.02852504 0.08132997 -0.005718534 +0.04126244 0.08132997 -0.005718534 +0.05836535 0.08132997 -0.005718534 +0.08132997 0.08132997 -0.005718534 +0.1121653 0.08132997 -0.005718534 +0.1535689 0.08132997 -0.005718534 +0.2091628 0.08132997 -0.005718534 +0.2838106 0.08132997 -0.005718534 +0.3840425 0.08132997 -0.005718534 +0.518627 0.08132997 -0.005718534 +0.6993381 0.08132997 -0.005718534 +0.9419845 0.08132997 -0.005718534 +1.267794 0.08132997 -0.005718534 +1.705268 0.08132997 -0.005718534 +2.292679 0.08132997 -0.005718534 +3.081414 0.08132997 -0.005718534 +4.140474 0.08132997 -0.005718534 +5.562508 0.08132997 -0.005718534 +7.471917 0.08132997 -0.005718534 +10.03574 0.08132997 -0.005718534 +13.47828 0.08132997 -0.005718534 +18.10068 0.08132997 -0.005718534 +24.30731 0.08132997 -0.005718534 +32.64117 0.08132997 -0.005718534 +43.83129 0.08132997 -0.005718534 +58.85664 0.08132997 -0.005718534 +-0.0175068 0.1121653 -0.005718534 +-0.01161267 0.1121653 -0.005718534 +-0.005718534 0.1121653 -0.005718534 +0.0001755984 0.1121653 -0.005718534 +0.006069731 0.1121653 -0.005718534 +0.01197402 0.1121653 -0.005718534 +0.01903886 0.1121653 -0.005718534 +0.02852504 0.1121653 -0.005718534 +0.04126244 0.1121653 -0.005718534 +0.05836535 0.1121653 -0.005718534 +0.08132997 0.1121653 -0.005718534 +0.1121653 0.1121653 -0.005718534 +0.1535689 0.1121653 -0.005718534 +0.2091628 0.1121653 -0.005718534 +0.2838106 0.1121653 -0.005718534 +0.3840425 0.1121653 -0.005718534 +0.518627 0.1121653 -0.005718534 +0.6993381 0.1121653 -0.005718534 +0.9419845 0.1121653 -0.005718534 +1.267794 0.1121653 -0.005718534 +1.705268 0.1121653 -0.005718534 +2.292679 0.1121653 -0.005718534 +3.081414 0.1121653 -0.005718534 +4.140474 0.1121653 -0.005718534 +5.562508 0.1121653 -0.005718534 +7.471917 0.1121653 -0.005718534 +10.03574 0.1121653 -0.005718534 +13.47828 0.1121653 -0.005718534 +18.10068 0.1121653 -0.005718534 +24.30731 0.1121653 -0.005718534 +32.64117 0.1121653 -0.005718534 +43.83129 0.1121653 -0.005718534 +58.85664 0.1121653 -0.005718534 +-0.0175068 0.1535689 -0.005718534 +-0.01161267 0.1535689 -0.005718534 +-0.005718534 0.1535689 -0.005718534 +0.0001755984 0.1535689 -0.005718534 +0.006069731 0.1535689 -0.005718534 +0.01197402 0.1535689 -0.005718534 +0.01903886 0.1535689 -0.005718534 +0.02852504 0.1535689 -0.005718534 +0.04126244 0.1535689 -0.005718534 +0.05836535 0.1535689 -0.005718534 +0.08132997 0.1535689 -0.005718534 +0.1121653 0.1535689 -0.005718534 +0.1535689 0.1535689 -0.005718534 +0.2091628 0.1535689 -0.005718534 +0.2838106 0.1535689 -0.005718534 +0.3840425 0.1535689 -0.005718534 +0.518627 0.1535689 -0.005718534 +0.6993381 0.1535689 -0.005718534 +0.9419845 0.1535689 -0.005718534 +1.267794 0.1535689 -0.005718534 +1.705268 0.1535689 -0.005718534 +2.292679 0.1535689 -0.005718534 +3.081414 0.1535689 -0.005718534 +4.140474 0.1535689 -0.005718534 +5.562508 0.1535689 -0.005718534 +7.471917 0.1535689 -0.005718534 +10.03574 0.1535689 -0.005718534 +13.47828 0.1535689 -0.005718534 +18.10068 0.1535689 -0.005718534 +24.30731 0.1535689 -0.005718534 +32.64117 0.1535689 -0.005718534 +43.83129 0.1535689 -0.005718534 +58.85664 0.1535689 -0.005718534 +-0.0175068 0.2091628 -0.005718534 +-0.01161267 0.2091628 -0.005718534 +-0.005718534 0.2091628 -0.005718534 +0.0001755984 0.2091628 -0.005718534 +0.006069731 0.2091628 -0.005718534 +0.01197402 0.2091628 -0.005718534 +0.01903886 0.2091628 -0.005718534 +0.02852504 0.2091628 -0.005718534 +0.04126244 0.2091628 -0.005718534 +0.05836535 0.2091628 -0.005718534 +0.08132997 0.2091628 -0.005718534 +0.1121653 0.2091628 -0.005718534 +0.1535689 0.2091628 -0.005718534 +0.2091628 0.2091628 -0.005718534 +0.2838106 0.2091628 -0.005718534 +0.3840425 0.2091628 -0.005718534 +0.518627 0.2091628 -0.005718534 +0.6993381 0.2091628 -0.005718534 +0.9419845 0.2091628 -0.005718534 +1.267794 0.2091628 -0.005718534 +1.705268 0.2091628 -0.005718534 +2.292679 0.2091628 -0.005718534 +3.081414 0.2091628 -0.005718534 +4.140474 0.2091628 -0.005718534 +5.562508 0.2091628 -0.005718534 +7.471917 0.2091628 -0.005718534 +10.03574 0.2091628 -0.005718534 +13.47828 0.2091628 -0.005718534 +18.10068 0.2091628 -0.005718534 +24.30731 0.2091628 -0.005718534 +32.64117 0.2091628 -0.005718534 +43.83129 0.2091628 -0.005718534 +58.85664 0.2091628 -0.005718534 +-0.0175068 0.2838106 -0.005718534 +-0.01161267 0.2838106 -0.005718534 +-0.005718534 0.2838106 -0.005718534 +0.0001755984 0.2838106 -0.005718534 +0.006069731 0.2838106 -0.005718534 +0.01197402 0.2838106 -0.005718534 +0.01903886 0.2838106 -0.005718534 +0.02852504 0.2838106 -0.005718534 +0.04126244 0.2838106 -0.005718534 +0.05836535 0.2838106 -0.005718534 +0.08132997 0.2838106 -0.005718534 +0.1121653 0.2838106 -0.005718534 +0.1535689 0.2838106 -0.005718534 +0.2091628 0.2838106 -0.005718534 +0.2838106 0.2838106 -0.005718534 +0.3840425 0.2838106 -0.005718534 +0.518627 0.2838106 -0.005718534 +0.6993381 0.2838106 -0.005718534 +0.9419845 0.2838106 -0.005718534 +1.267794 0.2838106 -0.005718534 +1.705268 0.2838106 -0.005718534 +2.292679 0.2838106 -0.005718534 +3.081414 0.2838106 -0.005718534 +4.140474 0.2838106 -0.005718534 +5.562508 0.2838106 -0.005718534 +7.471917 0.2838106 -0.005718534 +10.03574 0.2838106 -0.005718534 +13.47828 0.2838106 -0.005718534 +18.10068 0.2838106 -0.005718534 +24.30731 0.2838106 -0.005718534 +32.64117 0.2838106 -0.005718534 +43.83129 0.2838106 -0.005718534 +58.85664 0.2838106 -0.005718534 +-0.0175068 0.3840425 -0.005718534 +-0.01161267 0.3840425 -0.005718534 +-0.005718534 0.3840425 -0.005718534 +0.0001755984 0.3840425 -0.005718534 +0.006069731 0.3840425 -0.005718534 +0.01197402 0.3840425 -0.005718534 +0.01903886 0.3840425 -0.005718534 +0.02852504 0.3840425 -0.005718534 +0.04126244 0.3840425 -0.005718534 +0.05836535 0.3840425 -0.005718534 +0.08132997 0.3840425 -0.005718534 +0.1121653 0.3840425 -0.005718534 +0.1535689 0.3840425 -0.005718534 +0.2091628 0.3840425 -0.005718534 +0.2838106 0.3840425 -0.005718534 +0.3840425 0.3840425 -0.005718534 +0.518627 0.3840425 -0.005718534 +0.6993381 0.3840425 -0.005718534 +0.9419845 0.3840425 -0.005718534 +1.267794 0.3840425 -0.005718534 +1.705268 0.3840425 -0.005718534 +2.292679 0.3840425 -0.005718534 +3.081414 0.3840425 -0.005718534 +4.140474 0.3840425 -0.005718534 +5.562508 0.3840425 -0.005718534 +7.471917 0.3840425 -0.005718534 +10.03574 0.3840425 -0.005718534 +13.47828 0.3840425 -0.005718534 +18.10068 0.3840425 -0.005718534 +24.30731 0.3840425 -0.005718534 +32.64117 0.3840425 -0.005718534 +43.83129 0.3840425 -0.005718534 +58.85664 0.3840425 -0.005718534 +-0.0175068 0.518627 -0.005718534 +-0.01161267 0.518627 -0.005718534 +-0.005718534 0.518627 -0.005718534 +0.0001755984 0.518627 -0.005718534 +0.006069731 0.518627 -0.005718534 +0.01197402 0.518627 -0.005718534 +0.01903886 0.518627 -0.005718534 +0.02852504 0.518627 -0.005718534 +0.04126244 0.518627 -0.005718534 +0.05836535 0.518627 -0.005718534 +0.08132997 0.518627 -0.005718534 +0.1121653 0.518627 -0.005718534 +0.1535689 0.518627 -0.005718534 +0.2091628 0.518627 -0.005718534 +0.2838106 0.518627 -0.005718534 +0.3840425 0.518627 -0.005718534 +0.518627 0.518627 -0.005718534 +0.6993381 0.518627 -0.005718534 +0.9419845 0.518627 -0.005718534 +1.267794 0.518627 -0.005718534 +1.705268 0.518627 -0.005718534 +2.292679 0.518627 -0.005718534 +3.081414 0.518627 -0.005718534 +4.140474 0.518627 -0.005718534 +5.562508 0.518627 -0.005718534 +7.471917 0.518627 -0.005718534 +10.03574 0.518627 -0.005718534 +13.47828 0.518627 -0.005718534 +18.10068 0.518627 -0.005718534 +24.30731 0.518627 -0.005718534 +32.64117 0.518627 -0.005718534 +43.83129 0.518627 -0.005718534 +58.85664 0.518627 -0.005718534 +-0.0175068 0.6993381 -0.005718534 +-0.01161267 0.6993381 -0.005718534 +-0.005718534 0.6993381 -0.005718534 +0.0001755984 0.6993381 -0.005718534 +0.006069731 0.6993381 -0.005718534 +0.01197402 0.6993381 -0.005718534 +0.01903886 0.6993381 -0.005718534 +0.02852504 0.6993381 -0.005718534 +0.04126244 0.6993381 -0.005718534 +0.05836535 0.6993381 -0.005718534 +0.08132997 0.6993381 -0.005718534 +0.1121653 0.6993381 -0.005718534 +0.1535689 0.6993381 -0.005718534 +0.2091628 0.6993381 -0.005718534 +0.2838106 0.6993381 -0.005718534 +0.3840425 0.6993381 -0.005718534 +0.518627 0.6993381 -0.005718534 +0.6993381 0.6993381 -0.005718534 +0.9419845 0.6993381 -0.005718534 +1.267794 0.6993381 -0.005718534 +1.705268 0.6993381 -0.005718534 +2.292679 0.6993381 -0.005718534 +3.081414 0.6993381 -0.005718534 +4.140474 0.6993381 -0.005718534 +5.562508 0.6993381 -0.005718534 +7.471917 0.6993381 -0.005718534 +10.03574 0.6993381 -0.005718534 +13.47828 0.6993381 -0.005718534 +18.10068 0.6993381 -0.005718534 +24.30731 0.6993381 -0.005718534 +32.64117 0.6993381 -0.005718534 +43.83129 0.6993381 -0.005718534 +58.85664 0.6993381 -0.005718534 +-0.0175068 0.9419845 -0.005718534 +-0.01161267 0.9419845 -0.005718534 +-0.005718534 0.9419845 -0.005718534 +0.0001755984 0.9419845 -0.005718534 +0.006069731 0.9419845 -0.005718534 +0.01197402 0.9419845 -0.005718534 +0.01903886 0.9419845 -0.005718534 +0.02852504 0.9419845 -0.005718534 +0.04126244 0.9419845 -0.005718534 +0.05836535 0.9419845 -0.005718534 +0.08132997 0.9419845 -0.005718534 +0.1121653 0.9419845 -0.005718534 +0.1535689 0.9419845 -0.005718534 +0.2091628 0.9419845 -0.005718534 +0.2838106 0.9419845 -0.005718534 +0.3840425 0.9419845 -0.005718534 +0.518627 0.9419845 -0.005718534 +0.6993381 0.9419845 -0.005718534 +0.9419845 0.9419845 -0.005718534 +1.267794 0.9419845 -0.005718534 +1.705268 0.9419845 -0.005718534 +2.292679 0.9419845 -0.005718534 +3.081414 0.9419845 -0.005718534 +4.140474 0.9419845 -0.005718534 +5.562508 0.9419845 -0.005718534 +7.471917 0.9419845 -0.005718534 +10.03574 0.9419845 -0.005718534 +13.47828 0.9419845 -0.005718534 +18.10068 0.9419845 -0.005718534 +24.30731 0.9419845 -0.005718534 +32.64117 0.9419845 -0.005718534 +43.83129 0.9419845 -0.005718534 +58.85664 0.9419845 -0.005718534 +-0.0175068 1.267794 -0.005718534 +-0.01161267 1.267794 -0.005718534 +-0.005718534 1.267794 -0.005718534 +0.0001755984 1.267794 -0.005718534 +0.006069731 1.267794 -0.005718534 +0.01197402 1.267794 -0.005718534 +0.01903886 1.267794 -0.005718534 +0.02852504 1.267794 -0.005718534 +0.04126244 1.267794 -0.005718534 +0.05836535 1.267794 -0.005718534 +0.08132997 1.267794 -0.005718534 +0.1121653 1.267794 -0.005718534 +0.1535689 1.267794 -0.005718534 +0.2091628 1.267794 -0.005718534 +0.2838106 1.267794 -0.005718534 +0.3840425 1.267794 -0.005718534 +0.518627 1.267794 -0.005718534 +0.6993381 1.267794 -0.005718534 +0.9419845 1.267794 -0.005718534 +1.267794 1.267794 -0.005718534 +1.705268 1.267794 -0.005718534 +2.292679 1.267794 -0.005718534 +3.081414 1.267794 -0.005718534 +4.140474 1.267794 -0.005718534 +5.562508 1.267794 -0.005718534 +7.471917 1.267794 -0.005718534 +10.03574 1.267794 -0.005718534 +13.47828 1.267794 -0.005718534 +18.10068 1.267794 -0.005718534 +24.30731 1.267794 -0.005718534 +32.64117 1.267794 -0.005718534 +43.83129 1.267794 -0.005718534 +58.85664 1.267794 -0.005718534 +-0.0175068 1.705268 -0.005718534 +-0.01161267 1.705268 -0.005718534 +-0.005718534 1.705268 -0.005718534 +0.0001755984 1.705268 -0.005718534 +0.006069731 1.705268 -0.005718534 +0.01197402 1.705268 -0.005718534 +0.01903886 1.705268 -0.005718534 +0.02852504 1.705268 -0.005718534 +0.04126244 1.705268 -0.005718534 +0.05836535 1.705268 -0.005718534 +0.08132997 1.705268 -0.005718534 +0.1121653 1.705268 -0.005718534 +0.1535689 1.705268 -0.005718534 +0.2091628 1.705268 -0.005718534 +0.2838106 1.705268 -0.005718534 +0.3840425 1.705268 -0.005718534 +0.518627 1.705268 -0.005718534 +0.6993381 1.705268 -0.005718534 +0.9419845 1.705268 -0.005718534 +1.267794 1.705268 -0.005718534 +1.705268 1.705268 -0.005718534 +2.292679 1.705268 -0.005718534 +3.081414 1.705268 -0.005718534 +4.140474 1.705268 -0.005718534 +5.562508 1.705268 -0.005718534 +7.471917 1.705268 -0.005718534 +10.03574 1.705268 -0.005718534 +13.47828 1.705268 -0.005718534 +18.10068 1.705268 -0.005718534 +24.30731 1.705268 -0.005718534 +32.64117 1.705268 -0.005718534 +43.83129 1.705268 -0.005718534 +58.85664 1.705268 -0.005718534 +-0.0175068 2.292679 -0.005718534 +-0.01161267 2.292679 -0.005718534 +-0.005718534 2.292679 -0.005718534 +0.0001755984 2.292679 -0.005718534 +0.006069731 2.292679 -0.005718534 +0.01197402 2.292679 -0.005718534 +0.01903886 2.292679 -0.005718534 +0.02852504 2.292679 -0.005718534 +0.04126244 2.292679 -0.005718534 +0.05836535 2.292679 -0.005718534 +0.08132997 2.292679 -0.005718534 +0.1121653 2.292679 -0.005718534 +0.1535689 2.292679 -0.005718534 +0.2091628 2.292679 -0.005718534 +0.2838106 2.292679 -0.005718534 +0.3840425 2.292679 -0.005718534 +0.518627 2.292679 -0.005718534 +0.6993381 2.292679 -0.005718534 +0.9419845 2.292679 -0.005718534 +1.267794 2.292679 -0.005718534 +1.705268 2.292679 -0.005718534 +2.292679 2.292679 -0.005718534 +3.081414 2.292679 -0.005718534 +4.140474 2.292679 -0.005718534 +5.562508 2.292679 -0.005718534 +7.471917 2.292679 -0.005718534 +10.03574 2.292679 -0.005718534 +13.47828 2.292679 -0.005718534 +18.10068 2.292679 -0.005718534 +24.30731 2.292679 -0.005718534 +32.64117 2.292679 -0.005718534 +43.83129 2.292679 -0.005718534 +58.85664 2.292679 -0.005718534 +-0.0175068 3.081414 -0.005718534 +-0.01161267 3.081414 -0.005718534 +-0.005718534 3.081414 -0.005718534 +0.0001755984 3.081414 -0.005718534 +0.006069731 3.081414 -0.005718534 +0.01197402 3.081414 -0.005718534 +0.01903886 3.081414 -0.005718534 +0.02852504 3.081414 -0.005718534 +0.04126244 3.081414 -0.005718534 +0.05836535 3.081414 -0.005718534 +0.08132997 3.081414 -0.005718534 +0.1121653 3.081414 -0.005718534 +0.1535689 3.081414 -0.005718534 +0.2091628 3.081414 -0.005718534 +0.2838106 3.081414 -0.005718534 +0.3840425 3.081414 -0.005718534 +0.518627 3.081414 -0.005718534 +0.6993381 3.081414 -0.005718534 +0.9419845 3.081414 -0.005718534 +1.267794 3.081414 -0.005718534 +1.705268 3.081414 -0.005718534 +2.292679 3.081414 -0.005718534 +3.081414 3.081414 -0.005718534 +4.140474 3.081414 -0.005718534 +5.562508 3.081414 -0.005718534 +7.471917 3.081414 -0.005718534 +10.03574 3.081414 -0.005718534 +13.47828 3.081414 -0.005718534 +18.10068 3.081414 -0.005718534 +24.30731 3.081414 -0.005718534 +32.64117 3.081414 -0.005718534 +43.83129 3.081414 -0.005718534 +58.85664 3.081414 -0.005718534 +-0.0175068 4.140474 -0.005718534 +-0.01161267 4.140474 -0.005718534 +-0.005718534 4.140474 -0.005718534 +0.0001755984 4.140474 -0.005718534 +0.006069731 4.140474 -0.005718534 +0.01197402 4.140474 -0.005718534 +0.01903886 4.140474 -0.005718534 +0.02852504 4.140474 -0.005718534 +0.04126244 4.140474 -0.005718534 +0.05836535 4.140474 -0.005718534 +0.08132997 4.140474 -0.005718534 +0.1121653 4.140474 -0.005718534 +0.1535689 4.140474 -0.005718534 +0.2091628 4.140474 -0.005718534 +0.2838106 4.140474 -0.005718534 +0.3840425 4.140474 -0.005718534 +0.518627 4.140474 -0.005718534 +0.6993381 4.140474 -0.005718534 +0.9419845 4.140474 -0.005718534 +1.267794 4.140474 -0.005718534 +1.705268 4.140474 -0.005718534 +2.292679 4.140474 -0.005718534 +3.081414 4.140474 -0.005718534 +4.140474 4.140474 -0.005718534 +5.562508 4.140474 -0.005718534 +7.471917 4.140474 -0.005718534 +10.03574 4.140474 -0.005718534 +13.47828 4.140474 -0.005718534 +18.10068 4.140474 -0.005718534 +24.30731 4.140474 -0.005718534 +32.64117 4.140474 -0.005718534 +43.83129 4.140474 -0.005718534 +58.85664 4.140474 -0.005718534 +-0.0175068 5.562508 -0.005718534 +-0.01161267 5.562508 -0.005718534 +-0.005718534 5.562508 -0.005718534 +0.0001755984 5.562508 -0.005718534 +0.006069731 5.562508 -0.005718534 +0.01197402 5.562508 -0.005718534 +0.01903886 5.562508 -0.005718534 +0.02852504 5.562508 -0.005718534 +0.04126244 5.562508 -0.005718534 +0.05836535 5.562508 -0.005718534 +0.08132997 5.562508 -0.005718534 +0.1121653 5.562508 -0.005718534 +0.1535689 5.562508 -0.005718534 +0.2091628 5.562508 -0.005718534 +0.2838106 5.562508 -0.005718534 +0.3840425 5.562508 -0.005718534 +0.518627 5.562508 -0.005718534 +0.6993381 5.562508 -0.005718534 +0.9419845 5.562508 -0.005718534 +1.267794 5.562508 -0.005718534 +1.705268 5.562508 -0.005718534 +2.292679 5.562508 -0.005718534 +3.081414 5.562508 -0.005718534 +4.140474 5.562508 -0.005718534 +5.562508 5.562508 -0.005718534 +7.471917 5.562508 -0.005718534 +10.03574 5.562508 -0.005718534 +13.47828 5.562508 -0.005718534 +18.10068 5.562508 -0.005718534 +24.30731 5.562508 -0.005718534 +32.64117 5.562508 -0.005718534 +43.83129 5.562508 -0.005718534 +58.85664 5.562508 -0.005718534 +-0.0175068 7.471917 -0.005718534 +-0.01161267 7.471917 -0.005718534 +-0.005718534 7.471917 -0.005718534 +0.0001755984 7.471917 -0.005718534 +0.006069731 7.471917 -0.005718534 +0.01197402 7.471917 -0.005718534 +0.01903886 7.471917 -0.005718534 +0.02852504 7.471917 -0.005718534 +0.04126244 7.471917 -0.005718534 +0.05836535 7.471917 -0.005718534 +0.08132997 7.471917 -0.005718534 +0.1121653 7.471917 -0.005718534 +0.1535689 7.471917 -0.005718534 +0.2091628 7.471917 -0.005718534 +0.2838106 7.471917 -0.005718534 +0.3840425 7.471917 -0.005718534 +0.518627 7.471917 -0.005718534 +0.6993381 7.471917 -0.005718534 +0.9419845 7.471917 -0.005718534 +1.267794 7.471917 -0.005718534 +1.705268 7.471917 -0.005718534 +2.292679 7.471917 -0.005718534 +3.081414 7.471917 -0.005718534 +4.140474 7.471917 -0.005718534 +5.562508 7.471917 -0.005718534 +7.471917 7.471917 -0.005718534 +10.03574 7.471917 -0.005718534 +13.47828 7.471917 -0.005718534 +18.10068 7.471917 -0.005718534 +24.30731 7.471917 -0.005718534 +32.64117 7.471917 -0.005718534 +43.83129 7.471917 -0.005718534 +58.85664 7.471917 -0.005718534 +-0.0175068 10.03574 -0.005718534 +-0.01161267 10.03574 -0.005718534 +-0.005718534 10.03574 -0.005718534 +0.0001755984 10.03574 -0.005718534 +0.006069731 10.03574 -0.005718534 +0.01197402 10.03574 -0.005718534 +0.01903886 10.03574 -0.005718534 +0.02852504 10.03574 -0.005718534 +0.04126244 10.03574 -0.005718534 +0.05836535 10.03574 -0.005718534 +0.08132997 10.03574 -0.005718534 +0.1121653 10.03574 -0.005718534 +0.1535689 10.03574 -0.005718534 +0.2091628 10.03574 -0.005718534 +0.2838106 10.03574 -0.005718534 +0.3840425 10.03574 -0.005718534 +0.518627 10.03574 -0.005718534 +0.6993381 10.03574 -0.005718534 +0.9419845 10.03574 -0.005718534 +1.267794 10.03574 -0.005718534 +1.705268 10.03574 -0.005718534 +2.292679 10.03574 -0.005718534 +3.081414 10.03574 -0.005718534 +4.140474 10.03574 -0.005718534 +5.562508 10.03574 -0.005718534 +7.471917 10.03574 -0.005718534 +10.03574 10.03574 -0.005718534 +13.47828 10.03574 -0.005718534 +18.10068 10.03574 -0.005718534 +24.30731 10.03574 -0.005718534 +32.64117 10.03574 -0.005718534 +43.83129 10.03574 -0.005718534 +58.85664 10.03574 -0.005718534 +-0.0175068 13.47828 -0.005718534 +-0.01161267 13.47828 -0.005718534 +-0.005718534 13.47828 -0.005718534 +0.0001755984 13.47828 -0.005718534 +0.006069731 13.47828 -0.005718534 +0.01197402 13.47828 -0.005718534 +0.01903886 13.47828 -0.005718534 +0.02852504 13.47828 -0.005718534 +0.04126244 13.47828 -0.005718534 +0.05836535 13.47828 -0.005718534 +0.08132997 13.47828 -0.005718534 +0.1121653 13.47828 -0.005718534 +0.1535689 13.47828 -0.005718534 +0.2091628 13.47828 -0.005718534 +0.2838106 13.47828 -0.005718534 +0.3840425 13.47828 -0.005718534 +0.518627 13.47828 -0.005718534 +0.6993381 13.47828 -0.005718534 +0.9419845 13.47828 -0.005718534 +1.267794 13.47828 -0.005718534 +1.705268 13.47828 -0.005718534 +2.292679 13.47828 -0.005718534 +3.081414 13.47828 -0.005718534 +4.140474 13.47828 -0.005718534 +5.562508 13.47828 -0.005718534 +7.471917 13.47828 -0.005718534 +10.03574 13.47828 -0.005718534 +13.47828 13.47828 -0.005718534 +18.10068 13.47828 -0.005718534 +24.30731 13.47828 -0.005718534 +32.64117 13.47828 -0.005718534 +43.83129 13.47828 -0.005718534 +58.85664 13.47828 -0.005718534 +-0.0175068 18.10068 -0.005718534 +-0.01161267 18.10068 -0.005718534 +-0.005718534 18.10068 -0.005718534 +0.0001755984 18.10068 -0.005718534 +0.006069731 18.10068 -0.005718534 +0.01197402 18.10068 -0.005718534 +0.01903886 18.10068 -0.005718534 +0.02852504 18.10068 -0.005718534 +0.04126244 18.10068 -0.005718534 +0.05836535 18.10068 -0.005718534 +0.08132997 18.10068 -0.005718534 +0.1121653 18.10068 -0.005718534 +0.1535689 18.10068 -0.005718534 +0.2091628 18.10068 -0.005718534 +0.2838106 18.10068 -0.005718534 +0.3840425 18.10068 -0.005718534 +0.518627 18.10068 -0.005718534 +0.6993381 18.10068 -0.005718534 +0.9419845 18.10068 -0.005718534 +1.267794 18.10068 -0.005718534 +1.705268 18.10068 -0.005718534 +2.292679 18.10068 -0.005718534 +3.081414 18.10068 -0.005718534 +4.140474 18.10068 -0.005718534 +5.562508 18.10068 -0.005718534 +7.471917 18.10068 -0.005718534 +10.03574 18.10068 -0.005718534 +13.47828 18.10068 -0.005718534 +18.10068 18.10068 -0.005718534 +24.30731 18.10068 -0.005718534 +32.64117 18.10068 -0.005718534 +43.83129 18.10068 -0.005718534 +58.85664 18.10068 -0.005718534 +-0.0175068 24.30731 -0.005718534 +-0.01161267 24.30731 -0.005718534 +-0.005718534 24.30731 -0.005718534 +0.0001755984 24.30731 -0.005718534 +0.006069731 24.30731 -0.005718534 +0.01197402 24.30731 -0.005718534 +0.01903886 24.30731 -0.005718534 +0.02852504 24.30731 -0.005718534 +0.04126244 24.30731 -0.005718534 +0.05836535 24.30731 -0.005718534 +0.08132997 24.30731 -0.005718534 +0.1121653 24.30731 -0.005718534 +0.1535689 24.30731 -0.005718534 +0.2091628 24.30731 -0.005718534 +0.2838106 24.30731 -0.005718534 +0.3840425 24.30731 -0.005718534 +0.518627 24.30731 -0.005718534 +0.6993381 24.30731 -0.005718534 +0.9419845 24.30731 -0.005718534 +1.267794 24.30731 -0.005718534 +1.705268 24.30731 -0.005718534 +2.292679 24.30731 -0.005718534 +3.081414 24.30731 -0.005718534 +4.140474 24.30731 -0.005718534 +5.562508 24.30731 -0.005718534 +7.471917 24.30731 -0.005718534 +10.03574 24.30731 -0.005718534 +13.47828 24.30731 -0.005718534 +18.10068 24.30731 -0.005718534 +24.30731 24.30731 -0.005718534 +32.64117 24.30731 -0.005718534 +43.83129 24.30731 -0.005718534 +58.85664 24.30731 -0.005718534 +-0.0175068 32.64117 -0.005718534 +-0.01161267 32.64117 -0.005718534 +-0.005718534 32.64117 -0.005718534 +0.0001755984 32.64117 -0.005718534 +0.006069731 32.64117 -0.005718534 +0.01197402 32.64117 -0.005718534 +0.01903886 32.64117 -0.005718534 +0.02852504 32.64117 -0.005718534 +0.04126244 32.64117 -0.005718534 +0.05836535 32.64117 -0.005718534 +0.08132997 32.64117 -0.005718534 +0.1121653 32.64117 -0.005718534 +0.1535689 32.64117 -0.005718534 +0.2091628 32.64117 -0.005718534 +0.2838106 32.64117 -0.005718534 +0.3840425 32.64117 -0.005718534 +0.518627 32.64117 -0.005718534 +0.6993381 32.64117 -0.005718534 +0.9419845 32.64117 -0.005718534 +1.267794 32.64117 -0.005718534 +1.705268 32.64117 -0.005718534 +2.292679 32.64117 -0.005718534 +3.081414 32.64117 -0.005718534 +4.140474 32.64117 -0.005718534 +5.562508 32.64117 -0.005718534 +7.471917 32.64117 -0.005718534 +10.03574 32.64117 -0.005718534 +13.47828 32.64117 -0.005718534 +18.10068 32.64117 -0.005718534 +24.30731 32.64117 -0.005718534 +32.64117 32.64117 -0.005718534 +43.83129 32.64117 -0.005718534 +58.85664 32.64117 -0.005718534 +-0.0175068 43.83129 -0.005718534 +-0.01161267 43.83129 -0.005718534 +-0.005718534 43.83129 -0.005718534 +0.0001755984 43.83129 -0.005718534 +0.006069731 43.83129 -0.005718534 +0.01197402 43.83129 -0.005718534 +0.01903886 43.83129 -0.005718534 +0.02852504 43.83129 -0.005718534 +0.04126244 43.83129 -0.005718534 +0.05836535 43.83129 -0.005718534 +0.08132997 43.83129 -0.005718534 +0.1121653 43.83129 -0.005718534 +0.1535689 43.83129 -0.005718534 +0.2091628 43.83129 -0.005718534 +0.2838106 43.83129 -0.005718534 +0.3840425 43.83129 -0.005718534 +0.518627 43.83129 -0.005718534 +0.6993381 43.83129 -0.005718534 +0.9419845 43.83129 -0.005718534 +1.267794 43.83129 -0.005718534 +1.705268 43.83129 -0.005718534 +2.292679 43.83129 -0.005718534 +3.081414 43.83129 -0.005718534 +4.140474 43.83129 -0.005718534 +5.562508 43.83129 -0.005718534 +7.471917 43.83129 -0.005718534 +10.03574 43.83129 -0.005718534 +13.47828 43.83129 -0.005718534 +18.10068 43.83129 -0.005718534 +24.30731 43.83129 -0.005718534 +32.64117 43.83129 -0.005718534 +43.83129 43.83129 -0.005718534 +58.85664 43.83129 -0.005718534 +-0.0175068 58.85664 -0.005718534 +-0.01161267 58.85664 -0.005718534 +-0.005718534 58.85664 -0.005718534 +0.0001755984 58.85664 -0.005718534 +0.006069731 58.85664 -0.005718534 +0.01197402 58.85664 -0.005718534 +0.01903886 58.85664 -0.005718534 +0.02852504 58.85664 -0.005718534 +0.04126244 58.85664 -0.005718534 +0.05836535 58.85664 -0.005718534 +0.08132997 58.85664 -0.005718534 +0.1121653 58.85664 -0.005718534 +0.1535689 58.85664 -0.005718534 +0.2091628 58.85664 -0.005718534 +0.2838106 58.85664 -0.005718534 +0.3840425 58.85664 -0.005718534 +0.518627 58.85664 -0.005718534 +0.6993381 58.85664 -0.005718534 +0.9419845 58.85664 -0.005718534 +1.267794 58.85664 -0.005718534 +1.705268 58.85664 -0.005718534 +2.292679 58.85664 -0.005718534 +3.081414 58.85664 -0.005718534 +4.140474 58.85664 -0.005718534 +5.562508 58.85664 -0.005718534 +7.471917 58.85664 -0.005718534 +10.03574 58.85664 -0.005718534 +13.47828 58.85664 -0.005718534 +18.10068 58.85664 -0.005718534 +24.30731 58.85664 -0.005718534 +32.64117 58.85664 -0.005718534 +43.83129 58.85664 -0.005718534 +58.85664 58.85664 -0.005718534 +-0.0175068 -0.0175068 0.0001755984 +-0.01161267 -0.0175068 0.0001755984 +-0.005718534 -0.0175068 0.0001755984 +0.0001755984 -0.0175068 0.0001755984 +0.006069731 -0.0175068 0.0001755984 +0.01197402 -0.0175068 0.0001755984 +0.01903886 -0.0175068 0.0001755984 +0.02852504 -0.0175068 0.0001755984 +0.04126244 -0.0175068 0.0001755984 +0.05836535 -0.0175068 0.0001755984 +0.08132997 -0.0175068 0.0001755984 +0.1121653 -0.0175068 0.0001755984 +0.1535689 -0.0175068 0.0001755984 +0.2091628 -0.0175068 0.0001755984 +0.2838106 -0.0175068 0.0001755984 +0.3840425 -0.0175068 0.0001755984 +0.518627 -0.0175068 0.0001755984 +0.6993381 -0.0175068 0.0001755984 +0.9419845 -0.0175068 0.0001755984 +1.267794 -0.0175068 0.0001755984 +1.705268 -0.0175068 0.0001755984 +2.292679 -0.0175068 0.0001755984 +3.081414 -0.0175068 0.0001755984 +4.140474 -0.0175068 0.0001755984 +5.562508 -0.0175068 0.0001755984 +7.471917 -0.0175068 0.0001755984 +10.03574 -0.0175068 0.0001755984 +13.47828 -0.0175068 0.0001755984 +18.10068 -0.0175068 0.0001755984 +24.30731 -0.0175068 0.0001755984 +32.64117 -0.0175068 0.0001755984 +43.83129 -0.0175068 0.0001755984 +58.85664 -0.0175068 0.0001755984 +-0.0175068 -0.01161267 0.0001755984 +-0.01161267 -0.01161267 0.0001755984 +-0.005718534 -0.01161267 0.0001755984 +0.0001755984 -0.01161267 0.0001755984 +0.006069731 -0.01161267 0.0001755984 +0.01197402 -0.01161267 0.0001755984 +0.01903886 -0.01161267 0.0001755984 +0.02852504 -0.01161267 0.0001755984 +0.04126244 -0.01161267 0.0001755984 +0.05836535 -0.01161267 0.0001755984 +0.08132997 -0.01161267 0.0001755984 +0.1121653 -0.01161267 0.0001755984 +0.1535689 -0.01161267 0.0001755984 +0.2091628 -0.01161267 0.0001755984 +0.2838106 -0.01161267 0.0001755984 +0.3840425 -0.01161267 0.0001755984 +0.518627 -0.01161267 0.0001755984 +0.6993381 -0.01161267 0.0001755984 +0.9419845 -0.01161267 0.0001755984 +1.267794 -0.01161267 0.0001755984 +1.705268 -0.01161267 0.0001755984 +2.292679 -0.01161267 0.0001755984 +3.081414 -0.01161267 0.0001755984 +4.140474 -0.01161267 0.0001755984 +5.562508 -0.01161267 0.0001755984 +7.471917 -0.01161267 0.0001755984 +10.03574 -0.01161267 0.0001755984 +13.47828 -0.01161267 0.0001755984 +18.10068 -0.01161267 0.0001755984 +24.30731 -0.01161267 0.0001755984 +32.64117 -0.01161267 0.0001755984 +43.83129 -0.01161267 0.0001755984 +58.85664 -0.01161267 0.0001755984 +-0.0175068 -0.005718534 0.0001755984 +-0.01161267 -0.005718534 0.0001755984 +-0.005718534 -0.005718534 0.0001755984 +0.0001755984 -0.005718534 0.0001755984 +0.006069731 -0.005718534 0.0001755984 +0.01197402 -0.005718534 0.0001755984 +0.01903886 -0.005718534 0.0001755984 +0.02852504 -0.005718534 0.0001755984 +0.04126244 -0.005718534 0.0001755984 +0.05836535 -0.005718534 0.0001755984 +0.08132997 -0.005718534 0.0001755984 +0.1121653 -0.005718534 0.0001755984 +0.1535689 -0.005718534 0.0001755984 +0.2091628 -0.005718534 0.0001755984 +0.2838106 -0.005718534 0.0001755984 +0.3840425 -0.005718534 0.0001755984 +0.518627 -0.005718534 0.0001755984 +0.6993381 -0.005718534 0.0001755984 +0.9419845 -0.005718534 0.0001755984 +1.267794 -0.005718534 0.0001755984 +1.705268 -0.005718534 0.0001755984 +2.292679 -0.005718534 0.0001755984 +3.081414 -0.005718534 0.0001755984 +4.140474 -0.005718534 0.0001755984 +5.562508 -0.005718534 0.0001755984 +7.471917 -0.005718534 0.0001755984 +10.03574 -0.005718534 0.0001755984 +13.47828 -0.005718534 0.0001755984 +18.10068 -0.005718534 0.0001755984 +24.30731 -0.005718534 0.0001755984 +32.64117 -0.005718534 0.0001755984 +43.83129 -0.005718534 0.0001755984 +58.85664 -0.005718534 0.0001755984 +-0.0175068 0.0001755984 0.0001755984 +-0.01161267 0.0001755984 0.0001755984 +-0.005718534 0.0001755984 0.0001755984 +0.0001755984 0.0001755984 0.0001755984 +0.006069731 0.0001755984 0.0001755984 +0.01197402 0.0001755984 0.0001755984 +0.01903886 0.0001755984 0.0001755984 +0.02852504 0.0001755984 0.0001755984 +0.04126244 0.0001755984 0.0001755984 +0.05836535 0.0001755984 0.0001755984 +0.08132997 0.0001755984 0.0001755984 +0.1121653 0.0001755984 0.0001755984 +0.1535689 0.0001755984 0.0001755984 +0.2091628 0.0001755984 0.0001755984 +0.2838106 0.0001755984 0.0001755984 +0.3840425 0.0001755984 0.0001755984 +0.518627 0.0001755984 0.0001755984 +0.6993381 0.0001755984 0.0001755984 +0.9419845 0.0001755984 0.0001755984 +1.267794 0.0001755984 0.0001755984 +1.705268 0.0001755984 0.0001755984 +2.292679 0.0001755984 0.0001755984 +3.081414 0.0001755984 0.0001755984 +4.140474 0.0001755984 0.0001755984 +5.562508 0.0001755984 0.0001755984 +7.471917 0.0001755984 0.0001755984 +10.03574 0.0001755984 0.0001755984 +13.47828 0.0001755984 0.0001755984 +18.10068 0.0001755984 0.0001755984 +24.30731 0.0001755984 0.0001755984 +32.64117 0.0001755984 0.0001755984 +43.83129 0.0001755984 0.0001755984 +58.85664 0.0001755984 0.0001755984 +-0.0175068 0.006069731 0.0001755984 +-0.01161267 0.006069731 0.0001755984 +-0.005718534 0.006069731 0.0001755984 +0.0001755984 0.006069731 0.0001755984 +0.006069731 0.006069731 0.0001755984 +0.01197402 0.006069731 0.0001755984 +0.01903886 0.006069731 0.0001755984 +0.02852504 0.006069731 0.0001755984 +0.04126244 0.006069731 0.0001755984 +0.05836535 0.006069731 0.0001755984 +0.08132997 0.006069731 0.0001755984 +0.1121653 0.006069731 0.0001755984 +0.1535689 0.006069731 0.0001755984 +0.2091628 0.006069731 0.0001755984 +0.2838106 0.006069731 0.0001755984 +0.3840425 0.006069731 0.0001755984 +0.518627 0.006069731 0.0001755984 +0.6993381 0.006069731 0.0001755984 +0.9419845 0.006069731 0.0001755984 +1.267794 0.006069731 0.0001755984 +1.705268 0.006069731 0.0001755984 +2.292679 0.006069731 0.0001755984 +3.081414 0.006069731 0.0001755984 +4.140474 0.006069731 0.0001755984 +5.562508 0.006069731 0.0001755984 +7.471917 0.006069731 0.0001755984 +10.03574 0.006069731 0.0001755984 +13.47828 0.006069731 0.0001755984 +18.10068 0.006069731 0.0001755984 +24.30731 0.006069731 0.0001755984 +32.64117 0.006069731 0.0001755984 +43.83129 0.006069731 0.0001755984 +58.85664 0.006069731 0.0001755984 +-0.0175068 0.01197402 0.0001755984 +-0.01161267 0.01197402 0.0001755984 +-0.005718534 0.01197402 0.0001755984 +0.0001755984 0.01197402 0.0001755984 +0.006069731 0.01197402 0.0001755984 +0.01197402 0.01197402 0.0001755984 +0.01903886 0.01197402 0.0001755984 +0.02852504 0.01197402 0.0001755984 +0.04126244 0.01197402 0.0001755984 +0.05836535 0.01197402 0.0001755984 +0.08132997 0.01197402 0.0001755984 +0.1121653 0.01197402 0.0001755984 +0.1535689 0.01197402 0.0001755984 +0.2091628 0.01197402 0.0001755984 +0.2838106 0.01197402 0.0001755984 +0.3840425 0.01197402 0.0001755984 +0.518627 0.01197402 0.0001755984 +0.6993381 0.01197402 0.0001755984 +0.9419845 0.01197402 0.0001755984 +1.267794 0.01197402 0.0001755984 +1.705268 0.01197402 0.0001755984 +2.292679 0.01197402 0.0001755984 +3.081414 0.01197402 0.0001755984 +4.140474 0.01197402 0.0001755984 +5.562508 0.01197402 0.0001755984 +7.471917 0.01197402 0.0001755984 +10.03574 0.01197402 0.0001755984 +13.47828 0.01197402 0.0001755984 +18.10068 0.01197402 0.0001755984 +24.30731 0.01197402 0.0001755984 +32.64117 0.01197402 0.0001755984 +43.83129 0.01197402 0.0001755984 +58.85664 0.01197402 0.0001755984 +-0.0175068 0.01903886 0.0001755984 +-0.01161267 0.01903886 0.0001755984 +-0.005718534 0.01903886 0.0001755984 +0.0001755984 0.01903886 0.0001755984 +0.006069731 0.01903886 0.0001755984 +0.01197402 0.01903886 0.0001755984 +0.01903886 0.01903886 0.0001755984 +0.02852504 0.01903886 0.0001755984 +0.04126244 0.01903886 0.0001755984 +0.05836535 0.01903886 0.0001755984 +0.08132997 0.01903886 0.0001755984 +0.1121653 0.01903886 0.0001755984 +0.1535689 0.01903886 0.0001755984 +0.2091628 0.01903886 0.0001755984 +0.2838106 0.01903886 0.0001755984 +0.3840425 0.01903886 0.0001755984 +0.518627 0.01903886 0.0001755984 +0.6993381 0.01903886 0.0001755984 +0.9419845 0.01903886 0.0001755984 +1.267794 0.01903886 0.0001755984 +1.705268 0.01903886 0.0001755984 +2.292679 0.01903886 0.0001755984 +3.081414 0.01903886 0.0001755984 +4.140474 0.01903886 0.0001755984 +5.562508 0.01903886 0.0001755984 +7.471917 0.01903886 0.0001755984 +10.03574 0.01903886 0.0001755984 +13.47828 0.01903886 0.0001755984 +18.10068 0.01903886 0.0001755984 +24.30731 0.01903886 0.0001755984 +32.64117 0.01903886 0.0001755984 +43.83129 0.01903886 0.0001755984 +58.85664 0.01903886 0.0001755984 +-0.0175068 0.02852504 0.0001755984 +-0.01161267 0.02852504 0.0001755984 +-0.005718534 0.02852504 0.0001755984 +0.0001755984 0.02852504 0.0001755984 +0.006069731 0.02852504 0.0001755984 +0.01197402 0.02852504 0.0001755984 +0.01903886 0.02852504 0.0001755984 +0.02852504 0.02852504 0.0001755984 +0.04126244 0.02852504 0.0001755984 +0.05836535 0.02852504 0.0001755984 +0.08132997 0.02852504 0.0001755984 +0.1121653 0.02852504 0.0001755984 +0.1535689 0.02852504 0.0001755984 +0.2091628 0.02852504 0.0001755984 +0.2838106 0.02852504 0.0001755984 +0.3840425 0.02852504 0.0001755984 +0.518627 0.02852504 0.0001755984 +0.6993381 0.02852504 0.0001755984 +0.9419845 0.02852504 0.0001755984 +1.267794 0.02852504 0.0001755984 +1.705268 0.02852504 0.0001755984 +2.292679 0.02852504 0.0001755984 +3.081414 0.02852504 0.0001755984 +4.140474 0.02852504 0.0001755984 +5.562508 0.02852504 0.0001755984 +7.471917 0.02852504 0.0001755984 +10.03574 0.02852504 0.0001755984 +13.47828 0.02852504 0.0001755984 +18.10068 0.02852504 0.0001755984 +24.30731 0.02852504 0.0001755984 +32.64117 0.02852504 0.0001755984 +43.83129 0.02852504 0.0001755984 +58.85664 0.02852504 0.0001755984 +-0.0175068 0.04126244 0.0001755984 +-0.01161267 0.04126244 0.0001755984 +-0.005718534 0.04126244 0.0001755984 +0.0001755984 0.04126244 0.0001755984 +0.006069731 0.04126244 0.0001755984 +0.01197402 0.04126244 0.0001755984 +0.01903886 0.04126244 0.0001755984 +0.02852504 0.04126244 0.0001755984 +0.04126244 0.04126244 0.0001755984 +0.05836535 0.04126244 0.0001755984 +0.08132997 0.04126244 0.0001755984 +0.1121653 0.04126244 0.0001755984 +0.1535689 0.04126244 0.0001755984 +0.2091628 0.04126244 0.0001755984 +0.2838106 0.04126244 0.0001755984 +0.3840425 0.04126244 0.0001755984 +0.518627 0.04126244 0.0001755984 +0.6993381 0.04126244 0.0001755984 +0.9419845 0.04126244 0.0001755984 +1.267794 0.04126244 0.0001755984 +1.705268 0.04126244 0.0001755984 +2.292679 0.04126244 0.0001755984 +3.081414 0.04126244 0.0001755984 +4.140474 0.04126244 0.0001755984 +5.562508 0.04126244 0.0001755984 +7.471917 0.04126244 0.0001755984 +10.03574 0.04126244 0.0001755984 +13.47828 0.04126244 0.0001755984 +18.10068 0.04126244 0.0001755984 +24.30731 0.04126244 0.0001755984 +32.64117 0.04126244 0.0001755984 +43.83129 0.04126244 0.0001755984 +58.85664 0.04126244 0.0001755984 +-0.0175068 0.05836535 0.0001755984 +-0.01161267 0.05836535 0.0001755984 +-0.005718534 0.05836535 0.0001755984 +0.0001755984 0.05836535 0.0001755984 +0.006069731 0.05836535 0.0001755984 +0.01197402 0.05836535 0.0001755984 +0.01903886 0.05836535 0.0001755984 +0.02852504 0.05836535 0.0001755984 +0.04126244 0.05836535 0.0001755984 +0.05836535 0.05836535 0.0001755984 +0.08132997 0.05836535 0.0001755984 +0.1121653 0.05836535 0.0001755984 +0.1535689 0.05836535 0.0001755984 +0.2091628 0.05836535 0.0001755984 +0.2838106 0.05836535 0.0001755984 +0.3840425 0.05836535 0.0001755984 +0.518627 0.05836535 0.0001755984 +0.6993381 0.05836535 0.0001755984 +0.9419845 0.05836535 0.0001755984 +1.267794 0.05836535 0.0001755984 +1.705268 0.05836535 0.0001755984 +2.292679 0.05836535 0.0001755984 +3.081414 0.05836535 0.0001755984 +4.140474 0.05836535 0.0001755984 +5.562508 0.05836535 0.0001755984 +7.471917 0.05836535 0.0001755984 +10.03574 0.05836535 0.0001755984 +13.47828 0.05836535 0.0001755984 +18.10068 0.05836535 0.0001755984 +24.30731 0.05836535 0.0001755984 +32.64117 0.05836535 0.0001755984 +43.83129 0.05836535 0.0001755984 +58.85664 0.05836535 0.0001755984 +-0.0175068 0.08132997 0.0001755984 +-0.01161267 0.08132997 0.0001755984 +-0.005718534 0.08132997 0.0001755984 +0.0001755984 0.08132997 0.0001755984 +0.006069731 0.08132997 0.0001755984 +0.01197402 0.08132997 0.0001755984 +0.01903886 0.08132997 0.0001755984 +0.02852504 0.08132997 0.0001755984 +0.04126244 0.08132997 0.0001755984 +0.05836535 0.08132997 0.0001755984 +0.08132997 0.08132997 0.0001755984 +0.1121653 0.08132997 0.0001755984 +0.1535689 0.08132997 0.0001755984 +0.2091628 0.08132997 0.0001755984 +0.2838106 0.08132997 0.0001755984 +0.3840425 0.08132997 0.0001755984 +0.518627 0.08132997 0.0001755984 +0.6993381 0.08132997 0.0001755984 +0.9419845 0.08132997 0.0001755984 +1.267794 0.08132997 0.0001755984 +1.705268 0.08132997 0.0001755984 +2.292679 0.08132997 0.0001755984 +3.081414 0.08132997 0.0001755984 +4.140474 0.08132997 0.0001755984 +5.562508 0.08132997 0.0001755984 +7.471917 0.08132997 0.0001755984 +10.03574 0.08132997 0.0001755984 +13.47828 0.08132997 0.0001755984 +18.10068 0.08132997 0.0001755984 +24.30731 0.08132997 0.0001755984 +32.64117 0.08132997 0.0001755984 +43.83129 0.08132997 0.0001755984 +58.85664 0.08132997 0.0001755984 +-0.0175068 0.1121653 0.0001755984 +-0.01161267 0.1121653 0.0001755984 +-0.005718534 0.1121653 0.0001755984 +0.0001755984 0.1121653 0.0001755984 +0.006069731 0.1121653 0.0001755984 +0.01197402 0.1121653 0.0001755984 +0.01903886 0.1121653 0.0001755984 +0.02852504 0.1121653 0.0001755984 +0.04126244 0.1121653 0.0001755984 +0.05836535 0.1121653 0.0001755984 +0.08132997 0.1121653 0.0001755984 +0.1121653 0.1121653 0.0001755984 +0.1535689 0.1121653 0.0001755984 +0.2091628 0.1121653 0.0001755984 +0.2838106 0.1121653 0.0001755984 +0.3840425 0.1121653 0.0001755984 +0.518627 0.1121653 0.0001755984 +0.6993381 0.1121653 0.0001755984 +0.9419845 0.1121653 0.0001755984 +1.267794 0.1121653 0.0001755984 +1.705268 0.1121653 0.0001755984 +2.292679 0.1121653 0.0001755984 +3.081414 0.1121653 0.0001755984 +4.140474 0.1121653 0.0001755984 +5.562508 0.1121653 0.0001755984 +7.471917 0.1121653 0.0001755984 +10.03574 0.1121653 0.0001755984 +13.47828 0.1121653 0.0001755984 +18.10068 0.1121653 0.0001755984 +24.30731 0.1121653 0.0001755984 +32.64117 0.1121653 0.0001755984 +43.83129 0.1121653 0.0001755984 +58.85664 0.1121653 0.0001755984 +-0.0175068 0.1535689 0.0001755984 +-0.01161267 0.1535689 0.0001755984 +-0.005718534 0.1535689 0.0001755984 +0.0001755984 0.1535689 0.0001755984 +0.006069731 0.1535689 0.0001755984 +0.01197402 0.1535689 0.0001755984 +0.01903886 0.1535689 0.0001755984 +0.02852504 0.1535689 0.0001755984 +0.04126244 0.1535689 0.0001755984 +0.05836535 0.1535689 0.0001755984 +0.08132997 0.1535689 0.0001755984 +0.1121653 0.1535689 0.0001755984 +0.1535689 0.1535689 0.0001755984 +0.2091628 0.1535689 0.0001755984 +0.2838106 0.1535689 0.0001755984 +0.3840425 0.1535689 0.0001755984 +0.518627 0.1535689 0.0001755984 +0.6993381 0.1535689 0.0001755984 +0.9419845 0.1535689 0.0001755984 +1.267794 0.1535689 0.0001755984 +1.705268 0.1535689 0.0001755984 +2.292679 0.1535689 0.0001755984 +3.081414 0.1535689 0.0001755984 +4.140474 0.1535689 0.0001755984 +5.562508 0.1535689 0.0001755984 +7.471917 0.1535689 0.0001755984 +10.03574 0.1535689 0.0001755984 +13.47828 0.1535689 0.0001755984 +18.10068 0.1535689 0.0001755984 +24.30731 0.1535689 0.0001755984 +32.64117 0.1535689 0.0001755984 +43.83129 0.1535689 0.0001755984 +58.85664 0.1535689 0.0001755984 +-0.0175068 0.2091628 0.0001755984 +-0.01161267 0.2091628 0.0001755984 +-0.005718534 0.2091628 0.0001755984 +0.0001755984 0.2091628 0.0001755984 +0.006069731 0.2091628 0.0001755984 +0.01197402 0.2091628 0.0001755984 +0.01903886 0.2091628 0.0001755984 +0.02852504 0.2091628 0.0001755984 +0.04126244 0.2091628 0.0001755984 +0.05836535 0.2091628 0.0001755984 +0.08132997 0.2091628 0.0001755984 +0.1121653 0.2091628 0.0001755984 +0.1535689 0.2091628 0.0001755984 +0.2091628 0.2091628 0.0001755984 +0.2838106 0.2091628 0.0001755984 +0.3840425 0.2091628 0.0001755984 +0.518627 0.2091628 0.0001755984 +0.6993381 0.2091628 0.0001755984 +0.9419845 0.2091628 0.0001755984 +1.267794 0.2091628 0.0001755984 +1.705268 0.2091628 0.0001755984 +2.292679 0.2091628 0.0001755984 +3.081414 0.2091628 0.0001755984 +4.140474 0.2091628 0.0001755984 +5.562508 0.2091628 0.0001755984 +7.471917 0.2091628 0.0001755984 +10.03574 0.2091628 0.0001755984 +13.47828 0.2091628 0.0001755984 +18.10068 0.2091628 0.0001755984 +24.30731 0.2091628 0.0001755984 +32.64117 0.2091628 0.0001755984 +43.83129 0.2091628 0.0001755984 +58.85664 0.2091628 0.0001755984 +-0.0175068 0.2838106 0.0001755984 +-0.01161267 0.2838106 0.0001755984 +-0.005718534 0.2838106 0.0001755984 +0.0001755984 0.2838106 0.0001755984 +0.006069731 0.2838106 0.0001755984 +0.01197402 0.2838106 0.0001755984 +0.01903886 0.2838106 0.0001755984 +0.02852504 0.2838106 0.0001755984 +0.04126244 0.2838106 0.0001755984 +0.05836535 0.2838106 0.0001755984 +0.08132997 0.2838106 0.0001755984 +0.1121653 0.2838106 0.0001755984 +0.1535689 0.2838106 0.0001755984 +0.2091628 0.2838106 0.0001755984 +0.2838106 0.2838106 0.0001755984 +0.3840425 0.2838106 0.0001755984 +0.518627 0.2838106 0.0001755984 +0.6993381 0.2838106 0.0001755984 +0.9419845 0.2838106 0.0001755984 +1.267794 0.2838106 0.0001755984 +1.705268 0.2838106 0.0001755984 +2.292679 0.2838106 0.0001755984 +3.081414 0.2838106 0.0001755984 +4.140474 0.2838106 0.0001755984 +5.562508 0.2838106 0.0001755984 +7.471917 0.2838106 0.0001755984 +10.03574 0.2838106 0.0001755984 +13.47828 0.2838106 0.0001755984 +18.10068 0.2838106 0.0001755984 +24.30731 0.2838106 0.0001755984 +32.64117 0.2838106 0.0001755984 +43.83129 0.2838106 0.0001755984 +58.85664 0.2838106 0.0001755984 +-0.0175068 0.3840425 0.0001755984 +-0.01161267 0.3840425 0.0001755984 +-0.005718534 0.3840425 0.0001755984 +0.0001755984 0.3840425 0.0001755984 +0.006069731 0.3840425 0.0001755984 +0.01197402 0.3840425 0.0001755984 +0.01903886 0.3840425 0.0001755984 +0.02852504 0.3840425 0.0001755984 +0.04126244 0.3840425 0.0001755984 +0.05836535 0.3840425 0.0001755984 +0.08132997 0.3840425 0.0001755984 +0.1121653 0.3840425 0.0001755984 +0.1535689 0.3840425 0.0001755984 +0.2091628 0.3840425 0.0001755984 +0.2838106 0.3840425 0.0001755984 +0.3840425 0.3840425 0.0001755984 +0.518627 0.3840425 0.0001755984 +0.6993381 0.3840425 0.0001755984 +0.9419845 0.3840425 0.0001755984 +1.267794 0.3840425 0.0001755984 +1.705268 0.3840425 0.0001755984 +2.292679 0.3840425 0.0001755984 +3.081414 0.3840425 0.0001755984 +4.140474 0.3840425 0.0001755984 +5.562508 0.3840425 0.0001755984 +7.471917 0.3840425 0.0001755984 +10.03574 0.3840425 0.0001755984 +13.47828 0.3840425 0.0001755984 +18.10068 0.3840425 0.0001755984 +24.30731 0.3840425 0.0001755984 +32.64117 0.3840425 0.0001755984 +43.83129 0.3840425 0.0001755984 +58.85664 0.3840425 0.0001755984 +-0.0175068 0.518627 0.0001755984 +-0.01161267 0.518627 0.0001755984 +-0.005718534 0.518627 0.0001755984 +0.0001755984 0.518627 0.0001755984 +0.006069731 0.518627 0.0001755984 +0.01197402 0.518627 0.0001755984 +0.01903886 0.518627 0.0001755984 +0.02852504 0.518627 0.0001755984 +0.04126244 0.518627 0.0001755984 +0.05836535 0.518627 0.0001755984 +0.08132997 0.518627 0.0001755984 +0.1121653 0.518627 0.0001755984 +0.1535689 0.518627 0.0001755984 +0.2091628 0.518627 0.0001755984 +0.2838106 0.518627 0.0001755984 +0.3840425 0.518627 0.0001755984 +0.518627 0.518627 0.0001755984 +0.6993381 0.518627 0.0001755984 +0.9419845 0.518627 0.0001755984 +1.267794 0.518627 0.0001755984 +1.705268 0.518627 0.0001755984 +2.292679 0.518627 0.0001755984 +3.081414 0.518627 0.0001755984 +4.140474 0.518627 0.0001755984 +5.562508 0.518627 0.0001755984 +7.471917 0.518627 0.0001755984 +10.03574 0.518627 0.0001755984 +13.47828 0.518627 0.0001755984 +18.10068 0.518627 0.0001755984 +24.30731 0.518627 0.0001755984 +32.64117 0.518627 0.0001755984 +43.83129 0.518627 0.0001755984 +58.85664 0.518627 0.0001755984 +-0.0175068 0.6993381 0.0001755984 +-0.01161267 0.6993381 0.0001755984 +-0.005718534 0.6993381 0.0001755984 +0.0001755984 0.6993381 0.0001755984 +0.006069731 0.6993381 0.0001755984 +0.01197402 0.6993381 0.0001755984 +0.01903886 0.6993381 0.0001755984 +0.02852504 0.6993381 0.0001755984 +0.04126244 0.6993381 0.0001755984 +0.05836535 0.6993381 0.0001755984 +0.08132997 0.6993381 0.0001755984 +0.1121653 0.6993381 0.0001755984 +0.1535689 0.6993381 0.0001755984 +0.2091628 0.6993381 0.0001755984 +0.2838106 0.6993381 0.0001755984 +0.3840425 0.6993381 0.0001755984 +0.518627 0.6993381 0.0001755984 +0.6993381 0.6993381 0.0001755984 +0.9419845 0.6993381 0.0001755984 +1.267794 0.6993381 0.0001755984 +1.705268 0.6993381 0.0001755984 +2.292679 0.6993381 0.0001755984 +3.081414 0.6993381 0.0001755984 +4.140474 0.6993381 0.0001755984 +5.562508 0.6993381 0.0001755984 +7.471917 0.6993381 0.0001755984 +10.03574 0.6993381 0.0001755984 +13.47828 0.6993381 0.0001755984 +18.10068 0.6993381 0.0001755984 +24.30731 0.6993381 0.0001755984 +32.64117 0.6993381 0.0001755984 +43.83129 0.6993381 0.0001755984 +58.85664 0.6993381 0.0001755984 +-0.0175068 0.9419845 0.0001755984 +-0.01161267 0.9419845 0.0001755984 +-0.005718534 0.9419845 0.0001755984 +0.0001755984 0.9419845 0.0001755984 +0.006069731 0.9419845 0.0001755984 +0.01197402 0.9419845 0.0001755984 +0.01903886 0.9419845 0.0001755984 +0.02852504 0.9419845 0.0001755984 +0.04126244 0.9419845 0.0001755984 +0.05836535 0.9419845 0.0001755984 +0.08132997 0.9419845 0.0001755984 +0.1121653 0.9419845 0.0001755984 +0.1535689 0.9419845 0.0001755984 +0.2091628 0.9419845 0.0001755984 +0.2838106 0.9419845 0.0001755984 +0.3840425 0.9419845 0.0001755984 +0.518627 0.9419845 0.0001755984 +0.6993381 0.9419845 0.0001755984 +0.9419845 0.9419845 0.0001755984 +1.267794 0.9419845 0.0001755984 +1.705268 0.9419845 0.0001755984 +2.292679 0.9419845 0.0001755984 +3.081414 0.9419845 0.0001755984 +4.140474 0.9419845 0.0001755984 +5.562508 0.9419845 0.0001755984 +7.471917 0.9419845 0.0001755984 +10.03574 0.9419845 0.0001755984 +13.47828 0.9419845 0.0001755984 +18.10068 0.9419845 0.0001755984 +24.30731 0.9419845 0.0001755984 +32.64117 0.9419845 0.0001755984 +43.83129 0.9419845 0.0001755984 +58.85664 0.9419845 0.0001755984 +-0.0175068 1.267794 0.0001755984 +-0.01161267 1.267794 0.0001755984 +-0.005718534 1.267794 0.0001755984 +0.0001755984 1.267794 0.0001755984 +0.006069731 1.267794 0.0001755984 +0.01197402 1.267794 0.0001755984 +0.01903886 1.267794 0.0001755984 +0.02852504 1.267794 0.0001755984 +0.04126244 1.267794 0.0001755984 +0.05836535 1.267794 0.0001755984 +0.08132997 1.267794 0.0001755984 +0.1121653 1.267794 0.0001755984 +0.1535689 1.267794 0.0001755984 +0.2091628 1.267794 0.0001755984 +0.2838106 1.267794 0.0001755984 +0.3840425 1.267794 0.0001755984 +0.518627 1.267794 0.0001755984 +0.6993381 1.267794 0.0001755984 +0.9419845 1.267794 0.0001755984 +1.267794 1.267794 0.0001755984 +1.705268 1.267794 0.0001755984 +2.292679 1.267794 0.0001755984 +3.081414 1.267794 0.0001755984 +4.140474 1.267794 0.0001755984 +5.562508 1.267794 0.0001755984 +7.471917 1.267794 0.0001755984 +10.03574 1.267794 0.0001755984 +13.47828 1.267794 0.0001755984 +18.10068 1.267794 0.0001755984 +24.30731 1.267794 0.0001755984 +32.64117 1.267794 0.0001755984 +43.83129 1.267794 0.0001755984 +58.85664 1.267794 0.0001755984 +-0.0175068 1.705268 0.0001755984 +-0.01161267 1.705268 0.0001755984 +-0.005718534 1.705268 0.0001755984 +0.0001755984 1.705268 0.0001755984 +0.006069731 1.705268 0.0001755984 +0.01197402 1.705268 0.0001755984 +0.01903886 1.705268 0.0001755984 +0.02852504 1.705268 0.0001755984 +0.04126244 1.705268 0.0001755984 +0.05836535 1.705268 0.0001755984 +0.08132997 1.705268 0.0001755984 +0.1121653 1.705268 0.0001755984 +0.1535689 1.705268 0.0001755984 +0.2091628 1.705268 0.0001755984 +0.2838106 1.705268 0.0001755984 +0.3840425 1.705268 0.0001755984 +0.518627 1.705268 0.0001755984 +0.6993381 1.705268 0.0001755984 +0.9419845 1.705268 0.0001755984 +1.267794 1.705268 0.0001755984 +1.705268 1.705268 0.0001755984 +2.292679 1.705268 0.0001755984 +3.081414 1.705268 0.0001755984 +4.140474 1.705268 0.0001755984 +5.562508 1.705268 0.0001755984 +7.471917 1.705268 0.0001755984 +10.03574 1.705268 0.0001755984 +13.47828 1.705268 0.0001755984 +18.10068 1.705268 0.0001755984 +24.30731 1.705268 0.0001755984 +32.64117 1.705268 0.0001755984 +43.83129 1.705268 0.0001755984 +58.85664 1.705268 0.0001755984 +-0.0175068 2.292679 0.0001755984 +-0.01161267 2.292679 0.0001755984 +-0.005718534 2.292679 0.0001755984 +0.0001755984 2.292679 0.0001755984 +0.006069731 2.292679 0.0001755984 +0.01197402 2.292679 0.0001755984 +0.01903886 2.292679 0.0001755984 +0.02852504 2.292679 0.0001755984 +0.04126244 2.292679 0.0001755984 +0.05836535 2.292679 0.0001755984 +0.08132997 2.292679 0.0001755984 +0.1121653 2.292679 0.0001755984 +0.1535689 2.292679 0.0001755984 +0.2091628 2.292679 0.0001755984 +0.2838106 2.292679 0.0001755984 +0.3840425 2.292679 0.0001755984 +0.518627 2.292679 0.0001755984 +0.6993381 2.292679 0.0001755984 +0.9419845 2.292679 0.0001755984 +1.267794 2.292679 0.0001755984 +1.705268 2.292679 0.0001755984 +2.292679 2.292679 0.0001755984 +3.081414 2.292679 0.0001755984 +4.140474 2.292679 0.0001755984 +5.562508 2.292679 0.0001755984 +7.471917 2.292679 0.0001755984 +10.03574 2.292679 0.0001755984 +13.47828 2.292679 0.0001755984 +18.10068 2.292679 0.0001755984 +24.30731 2.292679 0.0001755984 +32.64117 2.292679 0.0001755984 +43.83129 2.292679 0.0001755984 +58.85664 2.292679 0.0001755984 +-0.0175068 3.081414 0.0001755984 +-0.01161267 3.081414 0.0001755984 +-0.005718534 3.081414 0.0001755984 +0.0001755984 3.081414 0.0001755984 +0.006069731 3.081414 0.0001755984 +0.01197402 3.081414 0.0001755984 +0.01903886 3.081414 0.0001755984 +0.02852504 3.081414 0.0001755984 +0.04126244 3.081414 0.0001755984 +0.05836535 3.081414 0.0001755984 +0.08132997 3.081414 0.0001755984 +0.1121653 3.081414 0.0001755984 +0.1535689 3.081414 0.0001755984 +0.2091628 3.081414 0.0001755984 +0.2838106 3.081414 0.0001755984 +0.3840425 3.081414 0.0001755984 +0.518627 3.081414 0.0001755984 +0.6993381 3.081414 0.0001755984 +0.9419845 3.081414 0.0001755984 +1.267794 3.081414 0.0001755984 +1.705268 3.081414 0.0001755984 +2.292679 3.081414 0.0001755984 +3.081414 3.081414 0.0001755984 +4.140474 3.081414 0.0001755984 +5.562508 3.081414 0.0001755984 +7.471917 3.081414 0.0001755984 +10.03574 3.081414 0.0001755984 +13.47828 3.081414 0.0001755984 +18.10068 3.081414 0.0001755984 +24.30731 3.081414 0.0001755984 +32.64117 3.081414 0.0001755984 +43.83129 3.081414 0.0001755984 +58.85664 3.081414 0.0001755984 +-0.0175068 4.140474 0.0001755984 +-0.01161267 4.140474 0.0001755984 +-0.005718534 4.140474 0.0001755984 +0.0001755984 4.140474 0.0001755984 +0.006069731 4.140474 0.0001755984 +0.01197402 4.140474 0.0001755984 +0.01903886 4.140474 0.0001755984 +0.02852504 4.140474 0.0001755984 +0.04126244 4.140474 0.0001755984 +0.05836535 4.140474 0.0001755984 +0.08132997 4.140474 0.0001755984 +0.1121653 4.140474 0.0001755984 +0.1535689 4.140474 0.0001755984 +0.2091628 4.140474 0.0001755984 +0.2838106 4.140474 0.0001755984 +0.3840425 4.140474 0.0001755984 +0.518627 4.140474 0.0001755984 +0.6993381 4.140474 0.0001755984 +0.9419845 4.140474 0.0001755984 +1.267794 4.140474 0.0001755984 +1.705268 4.140474 0.0001755984 +2.292679 4.140474 0.0001755984 +3.081414 4.140474 0.0001755984 +4.140474 4.140474 0.0001755984 +5.562508 4.140474 0.0001755984 +7.471917 4.140474 0.0001755984 +10.03574 4.140474 0.0001755984 +13.47828 4.140474 0.0001755984 +18.10068 4.140474 0.0001755984 +24.30731 4.140474 0.0001755984 +32.64117 4.140474 0.0001755984 +43.83129 4.140474 0.0001755984 +58.85664 4.140474 0.0001755984 +-0.0175068 5.562508 0.0001755984 +-0.01161267 5.562508 0.0001755984 +-0.005718534 5.562508 0.0001755984 +0.0001755984 5.562508 0.0001755984 +0.006069731 5.562508 0.0001755984 +0.01197402 5.562508 0.0001755984 +0.01903886 5.562508 0.0001755984 +0.02852504 5.562508 0.0001755984 +0.04126244 5.562508 0.0001755984 +0.05836535 5.562508 0.0001755984 +0.08132997 5.562508 0.0001755984 +0.1121653 5.562508 0.0001755984 +0.1535689 5.562508 0.0001755984 +0.2091628 5.562508 0.0001755984 +0.2838106 5.562508 0.0001755984 +0.3840425 5.562508 0.0001755984 +0.518627 5.562508 0.0001755984 +0.6993381 5.562508 0.0001755984 +0.9419845 5.562508 0.0001755984 +1.267794 5.562508 0.0001755984 +1.705268 5.562508 0.0001755984 +2.292679 5.562508 0.0001755984 +3.081414 5.562508 0.0001755984 +4.140474 5.562508 0.0001755984 +5.562508 5.562508 0.0001755984 +7.471917 5.562508 0.0001755984 +10.03574 5.562508 0.0001755984 +13.47828 5.562508 0.0001755984 +18.10068 5.562508 0.0001755984 +24.30731 5.562508 0.0001755984 +32.64117 5.562508 0.0001755984 +43.83129 5.562508 0.0001755984 +58.85664 5.562508 0.0001755984 +-0.0175068 7.471917 0.0001755984 +-0.01161267 7.471917 0.0001755984 +-0.005718534 7.471917 0.0001755984 +0.0001755984 7.471917 0.0001755984 +0.006069731 7.471917 0.0001755984 +0.01197402 7.471917 0.0001755984 +0.01903886 7.471917 0.0001755984 +0.02852504 7.471917 0.0001755984 +0.04126244 7.471917 0.0001755984 +0.05836535 7.471917 0.0001755984 +0.08132997 7.471917 0.0001755984 +0.1121653 7.471917 0.0001755984 +0.1535689 7.471917 0.0001755984 +0.2091628 7.471917 0.0001755984 +0.2838106 7.471917 0.0001755984 +0.3840425 7.471917 0.0001755984 +0.518627 7.471917 0.0001755984 +0.6993381 7.471917 0.0001755984 +0.9419845 7.471917 0.0001755984 +1.267794 7.471917 0.0001755984 +1.705268 7.471917 0.0001755984 +2.292679 7.471917 0.0001755984 +3.081414 7.471917 0.0001755984 +4.140474 7.471917 0.0001755984 +5.562508 7.471917 0.0001755984 +7.471917 7.471917 0.0001755984 +10.03574 7.471917 0.0001755984 +13.47828 7.471917 0.0001755984 +18.10068 7.471917 0.0001755984 +24.30731 7.471917 0.0001755984 +32.64117 7.471917 0.0001755984 +43.83129 7.471917 0.0001755984 +58.85664 7.471917 0.0001755984 +-0.0175068 10.03574 0.0001755984 +-0.01161267 10.03574 0.0001755984 +-0.005718534 10.03574 0.0001755984 +0.0001755984 10.03574 0.0001755984 +0.006069731 10.03574 0.0001755984 +0.01197402 10.03574 0.0001755984 +0.01903886 10.03574 0.0001755984 +0.02852504 10.03574 0.0001755984 +0.04126244 10.03574 0.0001755984 +0.05836535 10.03574 0.0001755984 +0.08132997 10.03574 0.0001755984 +0.1121653 10.03574 0.0001755984 +0.1535689 10.03574 0.0001755984 +0.2091628 10.03574 0.0001755984 +0.2838106 10.03574 0.0001755984 +0.3840425 10.03574 0.0001755984 +0.518627 10.03574 0.0001755984 +0.6993381 10.03574 0.0001755984 +0.9419845 10.03574 0.0001755984 +1.267794 10.03574 0.0001755984 +1.705268 10.03574 0.0001755984 +2.292679 10.03574 0.0001755984 +3.081414 10.03574 0.0001755984 +4.140474 10.03574 0.0001755984 +5.562508 10.03574 0.0001755984 +7.471917 10.03574 0.0001755984 +10.03574 10.03574 0.0001755984 +13.47828 10.03574 0.0001755984 +18.10068 10.03574 0.0001755984 +24.30731 10.03574 0.0001755984 +32.64117 10.03574 0.0001755984 +43.83129 10.03574 0.0001755984 +58.85664 10.03574 0.0001755984 +-0.0175068 13.47828 0.0001755984 +-0.01161267 13.47828 0.0001755984 +-0.005718534 13.47828 0.0001755984 +0.0001755984 13.47828 0.0001755984 +0.006069731 13.47828 0.0001755984 +0.01197402 13.47828 0.0001755984 +0.01903886 13.47828 0.0001755984 +0.02852504 13.47828 0.0001755984 +0.04126244 13.47828 0.0001755984 +0.05836535 13.47828 0.0001755984 +0.08132997 13.47828 0.0001755984 +0.1121653 13.47828 0.0001755984 +0.1535689 13.47828 0.0001755984 +0.2091628 13.47828 0.0001755984 +0.2838106 13.47828 0.0001755984 +0.3840425 13.47828 0.0001755984 +0.518627 13.47828 0.0001755984 +0.6993381 13.47828 0.0001755984 +0.9419845 13.47828 0.0001755984 +1.267794 13.47828 0.0001755984 +1.705268 13.47828 0.0001755984 +2.292679 13.47828 0.0001755984 +3.081414 13.47828 0.0001755984 +4.140474 13.47828 0.0001755984 +5.562508 13.47828 0.0001755984 +7.471917 13.47828 0.0001755984 +10.03574 13.47828 0.0001755984 +13.47828 13.47828 0.0001755984 +18.10068 13.47828 0.0001755984 +24.30731 13.47828 0.0001755984 +32.64117 13.47828 0.0001755984 +43.83129 13.47828 0.0001755984 +58.85664 13.47828 0.0001755984 +-0.0175068 18.10068 0.0001755984 +-0.01161267 18.10068 0.0001755984 +-0.005718534 18.10068 0.0001755984 +0.0001755984 18.10068 0.0001755984 +0.006069731 18.10068 0.0001755984 +0.01197402 18.10068 0.0001755984 +0.01903886 18.10068 0.0001755984 +0.02852504 18.10068 0.0001755984 +0.04126244 18.10068 0.0001755984 +0.05836535 18.10068 0.0001755984 +0.08132997 18.10068 0.0001755984 +0.1121653 18.10068 0.0001755984 +0.1535689 18.10068 0.0001755984 +0.2091628 18.10068 0.0001755984 +0.2838106 18.10068 0.0001755984 +0.3840425 18.10068 0.0001755984 +0.518627 18.10068 0.0001755984 +0.6993381 18.10068 0.0001755984 +0.9419845 18.10068 0.0001755984 +1.267794 18.10068 0.0001755984 +1.705268 18.10068 0.0001755984 +2.292679 18.10068 0.0001755984 +3.081414 18.10068 0.0001755984 +4.140474 18.10068 0.0001755984 +5.562508 18.10068 0.0001755984 +7.471917 18.10068 0.0001755984 +10.03574 18.10068 0.0001755984 +13.47828 18.10068 0.0001755984 +18.10068 18.10068 0.0001755984 +24.30731 18.10068 0.0001755984 +32.64117 18.10068 0.0001755984 +43.83129 18.10068 0.0001755984 +58.85664 18.10068 0.0001755984 +-0.0175068 24.30731 0.0001755984 +-0.01161267 24.30731 0.0001755984 +-0.005718534 24.30731 0.0001755984 +0.0001755984 24.30731 0.0001755984 +0.006069731 24.30731 0.0001755984 +0.01197402 24.30731 0.0001755984 +0.01903886 24.30731 0.0001755984 +0.02852504 24.30731 0.0001755984 +0.04126244 24.30731 0.0001755984 +0.05836535 24.30731 0.0001755984 +0.08132997 24.30731 0.0001755984 +0.1121653 24.30731 0.0001755984 +0.1535689 24.30731 0.0001755984 +0.2091628 24.30731 0.0001755984 +0.2838106 24.30731 0.0001755984 +0.3840425 24.30731 0.0001755984 +0.518627 24.30731 0.0001755984 +0.6993381 24.30731 0.0001755984 +0.9419845 24.30731 0.0001755984 +1.267794 24.30731 0.0001755984 +1.705268 24.30731 0.0001755984 +2.292679 24.30731 0.0001755984 +3.081414 24.30731 0.0001755984 +4.140474 24.30731 0.0001755984 +5.562508 24.30731 0.0001755984 +7.471917 24.30731 0.0001755984 +10.03574 24.30731 0.0001755984 +13.47828 24.30731 0.0001755984 +18.10068 24.30731 0.0001755984 +24.30731 24.30731 0.0001755984 +32.64117 24.30731 0.0001755984 +43.83129 24.30731 0.0001755984 +58.85664 24.30731 0.0001755984 +-0.0175068 32.64117 0.0001755984 +-0.01161267 32.64117 0.0001755984 +-0.005718534 32.64117 0.0001755984 +0.0001755984 32.64117 0.0001755984 +0.006069731 32.64117 0.0001755984 +0.01197402 32.64117 0.0001755984 +0.01903886 32.64117 0.0001755984 +0.02852504 32.64117 0.0001755984 +0.04126244 32.64117 0.0001755984 +0.05836535 32.64117 0.0001755984 +0.08132997 32.64117 0.0001755984 +0.1121653 32.64117 0.0001755984 +0.1535689 32.64117 0.0001755984 +0.2091628 32.64117 0.0001755984 +0.2838106 32.64117 0.0001755984 +0.3840425 32.64117 0.0001755984 +0.518627 32.64117 0.0001755984 +0.6993381 32.64117 0.0001755984 +0.9419845 32.64117 0.0001755984 +1.267794 32.64117 0.0001755984 +1.705268 32.64117 0.0001755984 +2.292679 32.64117 0.0001755984 +3.081414 32.64117 0.0001755984 +4.140474 32.64117 0.0001755984 +5.562508 32.64117 0.0001755984 +7.471917 32.64117 0.0001755984 +10.03574 32.64117 0.0001755984 +13.47828 32.64117 0.0001755984 +18.10068 32.64117 0.0001755984 +24.30731 32.64117 0.0001755984 +32.64117 32.64117 0.0001755984 +43.83129 32.64117 0.0001755984 +58.85664 32.64117 0.0001755984 +-0.0175068 43.83129 0.0001755984 +-0.01161267 43.83129 0.0001755984 +-0.005718534 43.83129 0.0001755984 +0.0001755984 43.83129 0.0001755984 +0.006069731 43.83129 0.0001755984 +0.01197402 43.83129 0.0001755984 +0.01903886 43.83129 0.0001755984 +0.02852504 43.83129 0.0001755984 +0.04126244 43.83129 0.0001755984 +0.05836535 43.83129 0.0001755984 +0.08132997 43.83129 0.0001755984 +0.1121653 43.83129 0.0001755984 +0.1535689 43.83129 0.0001755984 +0.2091628 43.83129 0.0001755984 +0.2838106 43.83129 0.0001755984 +0.3840425 43.83129 0.0001755984 +0.518627 43.83129 0.0001755984 +0.6993381 43.83129 0.0001755984 +0.9419845 43.83129 0.0001755984 +1.267794 43.83129 0.0001755984 +1.705268 43.83129 0.0001755984 +2.292679 43.83129 0.0001755984 +3.081414 43.83129 0.0001755984 +4.140474 43.83129 0.0001755984 +5.562508 43.83129 0.0001755984 +7.471917 43.83129 0.0001755984 +10.03574 43.83129 0.0001755984 +13.47828 43.83129 0.0001755984 +18.10068 43.83129 0.0001755984 +24.30731 43.83129 0.0001755984 +32.64117 43.83129 0.0001755984 +43.83129 43.83129 0.0001755984 +58.85664 43.83129 0.0001755984 +-0.0175068 58.85664 0.0001755984 +-0.01161267 58.85664 0.0001755984 +-0.005718534 58.85664 0.0001755984 +0.0001755984 58.85664 0.0001755984 +0.006069731 58.85664 0.0001755984 +0.01197402 58.85664 0.0001755984 +0.01903886 58.85664 0.0001755984 +0.02852504 58.85664 0.0001755984 +0.04126244 58.85664 0.0001755984 +0.05836535 58.85664 0.0001755984 +0.08132997 58.85664 0.0001755984 +0.1121653 58.85664 0.0001755984 +0.1535689 58.85664 0.0001755984 +0.2091628 58.85664 0.0001755984 +0.2838106 58.85664 0.0001755984 +0.3840425 58.85664 0.0001755984 +0.518627 58.85664 0.0001755984 +0.6993381 58.85664 0.0001755984 +0.9419845 58.85664 0.0001755984 +1.267794 58.85664 0.0001755984 +1.705268 58.85664 0.0001755984 +2.292679 58.85664 0.0001755984 +3.081414 58.85664 0.0001755984 +4.140474 58.85664 0.0001755984 +5.562508 58.85664 0.0001755984 +7.471917 58.85664 0.0001755984 +10.03574 58.85664 0.0001755984 +13.47828 58.85664 0.0001755984 +18.10068 58.85664 0.0001755984 +24.30731 58.85664 0.0001755984 +32.64117 58.85664 0.0001755984 +43.83129 58.85664 0.0001755984 +58.85664 58.85664 0.0001755984 +-0.0175068 -0.0175068 0.006069731 +-0.01161267 -0.0175068 0.006069731 +-0.005718534 -0.0175068 0.006069731 +0.0001755984 -0.0175068 0.006069731 +0.006069731 -0.0175068 0.006069731 +0.01197402 -0.0175068 0.006069731 +0.01903886 -0.0175068 0.006069731 +0.02852504 -0.0175068 0.006069731 +0.04126244 -0.0175068 0.006069731 +0.05836535 -0.0175068 0.006069731 +0.08132997 -0.0175068 0.006069731 +0.1121653 -0.0175068 0.006069731 +0.1535689 -0.0175068 0.006069731 +0.2091628 -0.0175068 0.006069731 +0.2838106 -0.0175068 0.006069731 +0.3840425 -0.0175068 0.006069731 +0.518627 -0.0175068 0.006069731 +0.6993381 -0.0175068 0.006069731 +0.9419845 -0.0175068 0.006069731 +1.267794 -0.0175068 0.006069731 +1.705268 -0.0175068 0.006069731 +2.292679 -0.0175068 0.006069731 +3.081414 -0.0175068 0.006069731 +4.140474 -0.0175068 0.006069731 +5.562508 -0.0175068 0.006069731 +7.471917 -0.0175068 0.006069731 +10.03574 -0.0175068 0.006069731 +13.47828 -0.0175068 0.006069731 +18.10068 -0.0175068 0.006069731 +24.30731 -0.0175068 0.006069731 +32.64117 -0.0175068 0.006069731 +43.83129 -0.0175068 0.006069731 +58.85664 -0.0175068 0.006069731 +-0.0175068 -0.01161267 0.006069731 +-0.01161267 -0.01161267 0.006069731 +-0.005718534 -0.01161267 0.006069731 +0.0001755984 -0.01161267 0.006069731 +0.006069731 -0.01161267 0.006069731 +0.01197402 -0.01161267 0.006069731 +0.01903886 -0.01161267 0.006069731 +0.02852504 -0.01161267 0.006069731 +0.04126244 -0.01161267 0.006069731 +0.05836535 -0.01161267 0.006069731 +0.08132997 -0.01161267 0.006069731 +0.1121653 -0.01161267 0.006069731 +0.1535689 -0.01161267 0.006069731 +0.2091628 -0.01161267 0.006069731 +0.2838106 -0.01161267 0.006069731 +0.3840425 -0.01161267 0.006069731 +0.518627 -0.01161267 0.006069731 +0.6993381 -0.01161267 0.006069731 +0.9419845 -0.01161267 0.006069731 +1.267794 -0.01161267 0.006069731 +1.705268 -0.01161267 0.006069731 +2.292679 -0.01161267 0.006069731 +3.081414 -0.01161267 0.006069731 +4.140474 -0.01161267 0.006069731 +5.562508 -0.01161267 0.006069731 +7.471917 -0.01161267 0.006069731 +10.03574 -0.01161267 0.006069731 +13.47828 -0.01161267 0.006069731 +18.10068 -0.01161267 0.006069731 +24.30731 -0.01161267 0.006069731 +32.64117 -0.01161267 0.006069731 +43.83129 -0.01161267 0.006069731 +58.85664 -0.01161267 0.006069731 +-0.0175068 -0.005718534 0.006069731 +-0.01161267 -0.005718534 0.006069731 +-0.005718534 -0.005718534 0.006069731 +0.0001755984 -0.005718534 0.006069731 +0.006069731 -0.005718534 0.006069731 +0.01197402 -0.005718534 0.006069731 +0.01903886 -0.005718534 0.006069731 +0.02852504 -0.005718534 0.006069731 +0.04126244 -0.005718534 0.006069731 +0.05836535 -0.005718534 0.006069731 +0.08132997 -0.005718534 0.006069731 +0.1121653 -0.005718534 0.006069731 +0.1535689 -0.005718534 0.006069731 +0.2091628 -0.005718534 0.006069731 +0.2838106 -0.005718534 0.006069731 +0.3840425 -0.005718534 0.006069731 +0.518627 -0.005718534 0.006069731 +0.6993381 -0.005718534 0.006069731 +0.9419845 -0.005718534 0.006069731 +1.267794 -0.005718534 0.006069731 +1.705268 -0.005718534 0.006069731 +2.292679 -0.005718534 0.006069731 +3.081414 -0.005718534 0.006069731 +4.140474 -0.005718534 0.006069731 +5.562508 -0.005718534 0.006069731 +7.471917 -0.005718534 0.006069731 +10.03574 -0.005718534 0.006069731 +13.47828 -0.005718534 0.006069731 +18.10068 -0.005718534 0.006069731 +24.30731 -0.005718534 0.006069731 +32.64117 -0.005718534 0.006069731 +43.83129 -0.005718534 0.006069731 +58.85664 -0.005718534 0.006069731 +-0.0175068 0.0001755984 0.006069731 +-0.01161267 0.0001755984 0.006069731 +-0.005718534 0.0001755984 0.006069731 +0.0001755984 0.0001755984 0.006069731 +0.006069731 0.0001755984 0.006069731 +0.01197402 0.0001755984 0.006069731 +0.01903886 0.0001755984 0.006069731 +0.02852504 0.0001755984 0.006069731 +0.04126244 0.0001755984 0.006069731 +0.05836535 0.0001755984 0.006069731 +0.08132997 0.0001755984 0.006069731 +0.1121653 0.0001755984 0.006069731 +0.1535689 0.0001755984 0.006069731 +0.2091628 0.0001755984 0.006069731 +0.2838106 0.0001755984 0.006069731 +0.3840425 0.0001755984 0.006069731 +0.518627 0.0001755984 0.006069731 +0.6993381 0.0001755984 0.006069731 +0.9419845 0.0001755984 0.006069731 +1.267794 0.0001755984 0.006069731 +1.705268 0.0001755984 0.006069731 +2.292679 0.0001755984 0.006069731 +3.081414 0.0001755984 0.006069731 +4.140474 0.0001755984 0.006069731 +5.562508 0.0001755984 0.006069731 +7.471917 0.0001755984 0.006069731 +10.03574 0.0001755984 0.006069731 +13.47828 0.0001755984 0.006069731 +18.10068 0.0001755984 0.006069731 +24.30731 0.0001755984 0.006069731 +32.64117 0.0001755984 0.006069731 +43.83129 0.0001755984 0.006069731 +58.85664 0.0001755984 0.006069731 +-0.0175068 0.006069731 0.006069731 +-0.01161267 0.006069731 0.006069731 +-0.005718534 0.006069731 0.006069731 +0.0001755984 0.006069731 0.006069731 +0.006069731 0.006069731 0.006069731 +0.01197402 0.006069731 0.006069731 +0.01903886 0.006069731 0.006069731 +0.02852504 0.006069731 0.006069731 +0.04126244 0.006069731 0.006069731 +0.05836535 0.006069731 0.006069731 +0.08132997 0.006069731 0.006069731 +0.1121653 0.006069731 0.006069731 +0.1535689 0.006069731 0.006069731 +0.2091628 0.006069731 0.006069731 +0.2838106 0.006069731 0.006069731 +0.3840425 0.006069731 0.006069731 +0.518627 0.006069731 0.006069731 +0.6993381 0.006069731 0.006069731 +0.9419845 0.006069731 0.006069731 +1.267794 0.006069731 0.006069731 +1.705268 0.006069731 0.006069731 +2.292679 0.006069731 0.006069731 +3.081414 0.006069731 0.006069731 +4.140474 0.006069731 0.006069731 +5.562508 0.006069731 0.006069731 +7.471917 0.006069731 0.006069731 +10.03574 0.006069731 0.006069731 +13.47828 0.006069731 0.006069731 +18.10068 0.006069731 0.006069731 +24.30731 0.006069731 0.006069731 +32.64117 0.006069731 0.006069731 +43.83129 0.006069731 0.006069731 +58.85664 0.006069731 0.006069731 +-0.0175068 0.01197402 0.006069731 +-0.01161267 0.01197402 0.006069731 +-0.005718534 0.01197402 0.006069731 +0.0001755984 0.01197402 0.006069731 +0.006069731 0.01197402 0.006069731 +0.01197402 0.01197402 0.006069731 +0.01903886 0.01197402 0.006069731 +0.02852504 0.01197402 0.006069731 +0.04126244 0.01197402 0.006069731 +0.05836535 0.01197402 0.006069731 +0.08132997 0.01197402 0.006069731 +0.1121653 0.01197402 0.006069731 +0.1535689 0.01197402 0.006069731 +0.2091628 0.01197402 0.006069731 +0.2838106 0.01197402 0.006069731 +0.3840425 0.01197402 0.006069731 +0.518627 0.01197402 0.006069731 +0.6993381 0.01197402 0.006069731 +0.9419845 0.01197402 0.006069731 +1.267794 0.01197402 0.006069731 +1.705268 0.01197402 0.006069731 +2.292679 0.01197402 0.006069731 +3.081414 0.01197402 0.006069731 +4.140474 0.01197402 0.006069731 +5.562508 0.01197402 0.006069731 +7.471917 0.01197402 0.006069731 +10.03574 0.01197402 0.006069731 +13.47828 0.01197402 0.006069731 +18.10068 0.01197402 0.006069731 +24.30731 0.01197402 0.006069731 +32.64117 0.01197402 0.006069731 +43.83129 0.01197402 0.006069731 +58.85664 0.01197402 0.006069731 +-0.0175068 0.01903886 0.006069731 +-0.01161267 0.01903886 0.006069731 +-0.005718534 0.01903886 0.006069731 +0.0001755984 0.01903886 0.006069731 +0.006069731 0.01903886 0.006069731 +0.01197402 0.01903886 0.006069731 +0.01903886 0.01903886 0.006069731 +0.02852504 0.01903886 0.006069731 +0.04126244 0.01903886 0.006069731 +0.05836535 0.01903886 0.006069731 +0.08132997 0.01903886 0.006069731 +0.1121653 0.01903886 0.006069731 +0.1535689 0.01903886 0.006069731 +0.2091628 0.01903886 0.006069731 +0.2838106 0.01903886 0.006069731 +0.3840425 0.01903886 0.006069731 +0.518627 0.01903886 0.006069731 +0.6993381 0.01903886 0.006069731 +0.9419845 0.01903886 0.006069731 +1.267794 0.01903886 0.006069731 +1.705268 0.01903886 0.006069731 +2.292679 0.01903886 0.006069731 +3.081414 0.01903886 0.006069731 +4.140474 0.01903886 0.006069731 +5.562508 0.01903886 0.006069731 +7.471917 0.01903886 0.006069731 +10.03574 0.01903886 0.006069731 +13.47828 0.01903886 0.006069731 +18.10068 0.01903886 0.006069731 +24.30731 0.01903886 0.006069731 +32.64117 0.01903886 0.006069731 +43.83129 0.01903886 0.006069731 +58.85664 0.01903886 0.006069731 +-0.0175068 0.02852504 0.006069731 +-0.01161267 0.02852504 0.006069731 +-0.005718534 0.02852504 0.006069731 +0.0001755984 0.02852504 0.006069731 +0.006069731 0.02852504 0.006069731 +0.01197402 0.02852504 0.006069731 +0.01903886 0.02852504 0.006069731 +0.02852504 0.02852504 0.006069731 +0.04126244 0.02852504 0.006069731 +0.05836535 0.02852504 0.006069731 +0.08132997 0.02852504 0.006069731 +0.1121653 0.02852504 0.006069731 +0.1535689 0.02852504 0.006069731 +0.2091628 0.02852504 0.006069731 +0.2838106 0.02852504 0.006069731 +0.3840425 0.02852504 0.006069731 +0.518627 0.02852504 0.006069731 +0.6993381 0.02852504 0.006069731 +0.9419845 0.02852504 0.006069731 +1.267794 0.02852504 0.006069731 +1.705268 0.02852504 0.006069731 +2.292679 0.02852504 0.006069731 +3.081414 0.02852504 0.006069731 +4.140474 0.02852504 0.006069731 +5.562508 0.02852504 0.006069731 +7.471917 0.02852504 0.006069731 +10.03574 0.02852504 0.006069731 +13.47828 0.02852504 0.006069731 +18.10068 0.02852504 0.006069731 +24.30731 0.02852504 0.006069731 +32.64117 0.02852504 0.006069731 +43.83129 0.02852504 0.006069731 +58.85664 0.02852504 0.006069731 +-0.0175068 0.04126244 0.006069731 +-0.01161267 0.04126244 0.006069731 +-0.005718534 0.04126244 0.006069731 +0.0001755984 0.04126244 0.006069731 +0.006069731 0.04126244 0.006069731 +0.01197402 0.04126244 0.006069731 +0.01903886 0.04126244 0.006069731 +0.02852504 0.04126244 0.006069731 +0.04126244 0.04126244 0.006069731 +0.05836535 0.04126244 0.006069731 +0.08132997 0.04126244 0.006069731 +0.1121653 0.04126244 0.006069731 +0.1535689 0.04126244 0.006069731 +0.2091628 0.04126244 0.006069731 +0.2838106 0.04126244 0.006069731 +0.3840425 0.04126244 0.006069731 +0.518627 0.04126244 0.006069731 +0.6993381 0.04126244 0.006069731 +0.9419845 0.04126244 0.006069731 +1.267794 0.04126244 0.006069731 +1.705268 0.04126244 0.006069731 +2.292679 0.04126244 0.006069731 +3.081414 0.04126244 0.006069731 +4.140474 0.04126244 0.006069731 +5.562508 0.04126244 0.006069731 +7.471917 0.04126244 0.006069731 +10.03574 0.04126244 0.006069731 +13.47828 0.04126244 0.006069731 +18.10068 0.04126244 0.006069731 +24.30731 0.04126244 0.006069731 +32.64117 0.04126244 0.006069731 +43.83129 0.04126244 0.006069731 +58.85664 0.04126244 0.006069731 +-0.0175068 0.05836535 0.006069731 +-0.01161267 0.05836535 0.006069731 +-0.005718534 0.05836535 0.006069731 +0.0001755984 0.05836535 0.006069731 +0.006069731 0.05836535 0.006069731 +0.01197402 0.05836535 0.006069731 +0.01903886 0.05836535 0.006069731 +0.02852504 0.05836535 0.006069731 +0.04126244 0.05836535 0.006069731 +0.05836535 0.05836535 0.006069731 +0.08132997 0.05836535 0.006069731 +0.1121653 0.05836535 0.006069731 +0.1535689 0.05836535 0.006069731 +0.2091628 0.05836535 0.006069731 +0.2838106 0.05836535 0.006069731 +0.3840425 0.05836535 0.006069731 +0.518627 0.05836535 0.006069731 +0.6993381 0.05836535 0.006069731 +0.9419845 0.05836535 0.006069731 +1.267794 0.05836535 0.006069731 +1.705268 0.05836535 0.006069731 +2.292679 0.05836535 0.006069731 +3.081414 0.05836535 0.006069731 +4.140474 0.05836535 0.006069731 +5.562508 0.05836535 0.006069731 +7.471917 0.05836535 0.006069731 +10.03574 0.05836535 0.006069731 +13.47828 0.05836535 0.006069731 +18.10068 0.05836535 0.006069731 +24.30731 0.05836535 0.006069731 +32.64117 0.05836535 0.006069731 +43.83129 0.05836535 0.006069731 +58.85664 0.05836535 0.006069731 +-0.0175068 0.08132997 0.006069731 +-0.01161267 0.08132997 0.006069731 +-0.005718534 0.08132997 0.006069731 +0.0001755984 0.08132997 0.006069731 +0.006069731 0.08132997 0.006069731 +0.01197402 0.08132997 0.006069731 +0.01903886 0.08132997 0.006069731 +0.02852504 0.08132997 0.006069731 +0.04126244 0.08132997 0.006069731 +0.05836535 0.08132997 0.006069731 +0.08132997 0.08132997 0.006069731 +0.1121653 0.08132997 0.006069731 +0.1535689 0.08132997 0.006069731 +0.2091628 0.08132997 0.006069731 +0.2838106 0.08132997 0.006069731 +0.3840425 0.08132997 0.006069731 +0.518627 0.08132997 0.006069731 +0.6993381 0.08132997 0.006069731 +0.9419845 0.08132997 0.006069731 +1.267794 0.08132997 0.006069731 +1.705268 0.08132997 0.006069731 +2.292679 0.08132997 0.006069731 +3.081414 0.08132997 0.006069731 +4.140474 0.08132997 0.006069731 +5.562508 0.08132997 0.006069731 +7.471917 0.08132997 0.006069731 +10.03574 0.08132997 0.006069731 +13.47828 0.08132997 0.006069731 +18.10068 0.08132997 0.006069731 +24.30731 0.08132997 0.006069731 +32.64117 0.08132997 0.006069731 +43.83129 0.08132997 0.006069731 +58.85664 0.08132997 0.006069731 +-0.0175068 0.1121653 0.006069731 +-0.01161267 0.1121653 0.006069731 +-0.005718534 0.1121653 0.006069731 +0.0001755984 0.1121653 0.006069731 +0.006069731 0.1121653 0.006069731 +0.01197402 0.1121653 0.006069731 +0.01903886 0.1121653 0.006069731 +0.02852504 0.1121653 0.006069731 +0.04126244 0.1121653 0.006069731 +0.05836535 0.1121653 0.006069731 +0.08132997 0.1121653 0.006069731 +0.1121653 0.1121653 0.006069731 +0.1535689 0.1121653 0.006069731 +0.2091628 0.1121653 0.006069731 +0.2838106 0.1121653 0.006069731 +0.3840425 0.1121653 0.006069731 +0.518627 0.1121653 0.006069731 +0.6993381 0.1121653 0.006069731 +0.9419845 0.1121653 0.006069731 +1.267794 0.1121653 0.006069731 +1.705268 0.1121653 0.006069731 +2.292679 0.1121653 0.006069731 +3.081414 0.1121653 0.006069731 +4.140474 0.1121653 0.006069731 +5.562508 0.1121653 0.006069731 +7.471917 0.1121653 0.006069731 +10.03574 0.1121653 0.006069731 +13.47828 0.1121653 0.006069731 +18.10068 0.1121653 0.006069731 +24.30731 0.1121653 0.006069731 +32.64117 0.1121653 0.006069731 +43.83129 0.1121653 0.006069731 +58.85664 0.1121653 0.006069731 +-0.0175068 0.1535689 0.006069731 +-0.01161267 0.1535689 0.006069731 +-0.005718534 0.1535689 0.006069731 +0.0001755984 0.1535689 0.006069731 +0.006069731 0.1535689 0.006069731 +0.01197402 0.1535689 0.006069731 +0.01903886 0.1535689 0.006069731 +0.02852504 0.1535689 0.006069731 +0.04126244 0.1535689 0.006069731 +0.05836535 0.1535689 0.006069731 +0.08132997 0.1535689 0.006069731 +0.1121653 0.1535689 0.006069731 +0.1535689 0.1535689 0.006069731 +0.2091628 0.1535689 0.006069731 +0.2838106 0.1535689 0.006069731 +0.3840425 0.1535689 0.006069731 +0.518627 0.1535689 0.006069731 +0.6993381 0.1535689 0.006069731 +0.9419845 0.1535689 0.006069731 +1.267794 0.1535689 0.006069731 +1.705268 0.1535689 0.006069731 +2.292679 0.1535689 0.006069731 +3.081414 0.1535689 0.006069731 +4.140474 0.1535689 0.006069731 +5.562508 0.1535689 0.006069731 +7.471917 0.1535689 0.006069731 +10.03574 0.1535689 0.006069731 +13.47828 0.1535689 0.006069731 +18.10068 0.1535689 0.006069731 +24.30731 0.1535689 0.006069731 +32.64117 0.1535689 0.006069731 +43.83129 0.1535689 0.006069731 +58.85664 0.1535689 0.006069731 +-0.0175068 0.2091628 0.006069731 +-0.01161267 0.2091628 0.006069731 +-0.005718534 0.2091628 0.006069731 +0.0001755984 0.2091628 0.006069731 +0.006069731 0.2091628 0.006069731 +0.01197402 0.2091628 0.006069731 +0.01903886 0.2091628 0.006069731 +0.02852504 0.2091628 0.006069731 +0.04126244 0.2091628 0.006069731 +0.05836535 0.2091628 0.006069731 +0.08132997 0.2091628 0.006069731 +0.1121653 0.2091628 0.006069731 +0.1535689 0.2091628 0.006069731 +0.2091628 0.2091628 0.006069731 +0.2838106 0.2091628 0.006069731 +0.3840425 0.2091628 0.006069731 +0.518627 0.2091628 0.006069731 +0.6993381 0.2091628 0.006069731 +0.9419845 0.2091628 0.006069731 +1.267794 0.2091628 0.006069731 +1.705268 0.2091628 0.006069731 +2.292679 0.2091628 0.006069731 +3.081414 0.2091628 0.006069731 +4.140474 0.2091628 0.006069731 +5.562508 0.2091628 0.006069731 +7.471917 0.2091628 0.006069731 +10.03574 0.2091628 0.006069731 +13.47828 0.2091628 0.006069731 +18.10068 0.2091628 0.006069731 +24.30731 0.2091628 0.006069731 +32.64117 0.2091628 0.006069731 +43.83129 0.2091628 0.006069731 +58.85664 0.2091628 0.006069731 +-0.0175068 0.2838106 0.006069731 +-0.01161267 0.2838106 0.006069731 +-0.005718534 0.2838106 0.006069731 +0.0001755984 0.2838106 0.006069731 +0.006069731 0.2838106 0.006069731 +0.01197402 0.2838106 0.006069731 +0.01903886 0.2838106 0.006069731 +0.02852504 0.2838106 0.006069731 +0.04126244 0.2838106 0.006069731 +0.05836535 0.2838106 0.006069731 +0.08132997 0.2838106 0.006069731 +0.1121653 0.2838106 0.006069731 +0.1535689 0.2838106 0.006069731 +0.2091628 0.2838106 0.006069731 +0.2838106 0.2838106 0.006069731 +0.3840425 0.2838106 0.006069731 +0.518627 0.2838106 0.006069731 +0.6993381 0.2838106 0.006069731 +0.9419845 0.2838106 0.006069731 +1.267794 0.2838106 0.006069731 +1.705268 0.2838106 0.006069731 +2.292679 0.2838106 0.006069731 +3.081414 0.2838106 0.006069731 +4.140474 0.2838106 0.006069731 +5.562508 0.2838106 0.006069731 +7.471917 0.2838106 0.006069731 +10.03574 0.2838106 0.006069731 +13.47828 0.2838106 0.006069731 +18.10068 0.2838106 0.006069731 +24.30731 0.2838106 0.006069731 +32.64117 0.2838106 0.006069731 +43.83129 0.2838106 0.006069731 +58.85664 0.2838106 0.006069731 +-0.0175068 0.3840425 0.006069731 +-0.01161267 0.3840425 0.006069731 +-0.005718534 0.3840425 0.006069731 +0.0001755984 0.3840425 0.006069731 +0.006069731 0.3840425 0.006069731 +0.01197402 0.3840425 0.006069731 +0.01903886 0.3840425 0.006069731 +0.02852504 0.3840425 0.006069731 +0.04126244 0.3840425 0.006069731 +0.05836535 0.3840425 0.006069731 +0.08132997 0.3840425 0.006069731 +0.1121653 0.3840425 0.006069731 +0.1535689 0.3840425 0.006069731 +0.2091628 0.3840425 0.006069731 +0.2838106 0.3840425 0.006069731 +0.3840425 0.3840425 0.006069731 +0.518627 0.3840425 0.006069731 +0.6993381 0.3840425 0.006069731 +0.9419845 0.3840425 0.006069731 +1.267794 0.3840425 0.006069731 +1.705268 0.3840425 0.006069731 +2.292679 0.3840425 0.006069731 +3.081414 0.3840425 0.006069731 +4.140474 0.3840425 0.006069731 +5.562508 0.3840425 0.006069731 +7.471917 0.3840425 0.006069731 +10.03574 0.3840425 0.006069731 +13.47828 0.3840425 0.006069731 +18.10068 0.3840425 0.006069731 +24.30731 0.3840425 0.006069731 +32.64117 0.3840425 0.006069731 +43.83129 0.3840425 0.006069731 +58.85664 0.3840425 0.006069731 +-0.0175068 0.518627 0.006069731 +-0.01161267 0.518627 0.006069731 +-0.005718534 0.518627 0.006069731 +0.0001755984 0.518627 0.006069731 +0.006069731 0.518627 0.006069731 +0.01197402 0.518627 0.006069731 +0.01903886 0.518627 0.006069731 +0.02852504 0.518627 0.006069731 +0.04126244 0.518627 0.006069731 +0.05836535 0.518627 0.006069731 +0.08132997 0.518627 0.006069731 +0.1121653 0.518627 0.006069731 +0.1535689 0.518627 0.006069731 +0.2091628 0.518627 0.006069731 +0.2838106 0.518627 0.006069731 +0.3840425 0.518627 0.006069731 +0.518627 0.518627 0.006069731 +0.6993381 0.518627 0.006069731 +0.9419845 0.518627 0.006069731 +1.267794 0.518627 0.006069731 +1.705268 0.518627 0.006069731 +2.292679 0.518627 0.006069731 +3.081414 0.518627 0.006069731 +4.140474 0.518627 0.006069731 +5.562508 0.518627 0.006069731 +7.471917 0.518627 0.006069731 +10.03574 0.518627 0.006069731 +13.47828 0.518627 0.006069731 +18.10068 0.518627 0.006069731 +24.30731 0.518627 0.006069731 +32.64117 0.518627 0.006069731 +43.83129 0.518627 0.006069731 +58.85664 0.518627 0.006069731 +-0.0175068 0.6993381 0.006069731 +-0.01161267 0.6993381 0.006069731 +-0.005718534 0.6993381 0.006069731 +0.0001755984 0.6993381 0.006069731 +0.006069731 0.6993381 0.006069731 +0.01197402 0.6993381 0.006069731 +0.01903886 0.6993381 0.006069731 +0.02852504 0.6993381 0.006069731 +0.04126244 0.6993381 0.006069731 +0.05836535 0.6993381 0.006069731 +0.08132997 0.6993381 0.006069731 +0.1121653 0.6993381 0.006069731 +0.1535689 0.6993381 0.006069731 +0.2091628 0.6993381 0.006069731 +0.2838106 0.6993381 0.006069731 +0.3840425 0.6993381 0.006069731 +0.518627 0.6993381 0.006069731 +0.6993381 0.6993381 0.006069731 +0.9419845 0.6993381 0.006069731 +1.267794 0.6993381 0.006069731 +1.705268 0.6993381 0.006069731 +2.292679 0.6993381 0.006069731 +3.081414 0.6993381 0.006069731 +4.140474 0.6993381 0.006069731 +5.562508 0.6993381 0.006069731 +7.471917 0.6993381 0.006069731 +10.03574 0.6993381 0.006069731 +13.47828 0.6993381 0.006069731 +18.10068 0.6993381 0.006069731 +24.30731 0.6993381 0.006069731 +32.64117 0.6993381 0.006069731 +43.83129 0.6993381 0.006069731 +58.85664 0.6993381 0.006069731 +-0.0175068 0.9419845 0.006069731 +-0.01161267 0.9419845 0.006069731 +-0.005718534 0.9419845 0.006069731 +0.0001755984 0.9419845 0.006069731 +0.006069731 0.9419845 0.006069731 +0.01197402 0.9419845 0.006069731 +0.01903886 0.9419845 0.006069731 +0.02852504 0.9419845 0.006069731 +0.04126244 0.9419845 0.006069731 +0.05836535 0.9419845 0.006069731 +0.08132997 0.9419845 0.006069731 +0.1121653 0.9419845 0.006069731 +0.1535689 0.9419845 0.006069731 +0.2091628 0.9419845 0.006069731 +0.2838106 0.9419845 0.006069731 +0.3840425 0.9419845 0.006069731 +0.518627 0.9419845 0.006069731 +0.6993381 0.9419845 0.006069731 +0.9419845 0.9419845 0.006069731 +1.267794 0.9419845 0.006069731 +1.705268 0.9419845 0.006069731 +2.292679 0.9419845 0.006069731 +3.081414 0.9419845 0.006069731 +4.140474 0.9419845 0.006069731 +5.562508 0.9419845 0.006069731 +7.471917 0.9419845 0.006069731 +10.03574 0.9419845 0.006069731 +13.47828 0.9419845 0.006069731 +18.10068 0.9419845 0.006069731 +24.30731 0.9419845 0.006069731 +32.64117 0.9419845 0.006069731 +43.83129 0.9419845 0.006069731 +58.85664 0.9419845 0.006069731 +-0.0175068 1.267794 0.006069731 +-0.01161267 1.267794 0.006069731 +-0.005718534 1.267794 0.006069731 +0.0001755984 1.267794 0.006069731 +0.006069731 1.267794 0.006069731 +0.01197402 1.267794 0.006069731 +0.01903886 1.267794 0.006069731 +0.02852504 1.267794 0.006069731 +0.04126244 1.267794 0.006069731 +0.05836535 1.267794 0.006069731 +0.08132997 1.267794 0.006069731 +0.1121653 1.267794 0.006069731 +0.1535689 1.267794 0.006069731 +0.2091628 1.267794 0.006069731 +0.2838106 1.267794 0.006069731 +0.3840425 1.267794 0.006069731 +0.518627 1.267794 0.006069731 +0.6993381 1.267794 0.006069731 +0.9419845 1.267794 0.006069731 +1.267794 1.267794 0.006069731 +1.705268 1.267794 0.006069731 +2.292679 1.267794 0.006069731 +3.081414 1.267794 0.006069731 +4.140474 1.267794 0.006069731 +5.562508 1.267794 0.006069731 +7.471917 1.267794 0.006069731 +10.03574 1.267794 0.006069731 +13.47828 1.267794 0.006069731 +18.10068 1.267794 0.006069731 +24.30731 1.267794 0.006069731 +32.64117 1.267794 0.006069731 +43.83129 1.267794 0.006069731 +58.85664 1.267794 0.006069731 +-0.0175068 1.705268 0.006069731 +-0.01161267 1.705268 0.006069731 +-0.005718534 1.705268 0.006069731 +0.0001755984 1.705268 0.006069731 +0.006069731 1.705268 0.006069731 +0.01197402 1.705268 0.006069731 +0.01903886 1.705268 0.006069731 +0.02852504 1.705268 0.006069731 +0.04126244 1.705268 0.006069731 +0.05836535 1.705268 0.006069731 +0.08132997 1.705268 0.006069731 +0.1121653 1.705268 0.006069731 +0.1535689 1.705268 0.006069731 +0.2091628 1.705268 0.006069731 +0.2838106 1.705268 0.006069731 +0.3840425 1.705268 0.006069731 +0.518627 1.705268 0.006069731 +0.6993381 1.705268 0.006069731 +0.9419845 1.705268 0.006069731 +1.267794 1.705268 0.006069731 +1.705268 1.705268 0.006069731 +2.292679 1.705268 0.006069731 +3.081414 1.705268 0.006069731 +4.140474 1.705268 0.006069731 +5.562508 1.705268 0.006069731 +7.471917 1.705268 0.006069731 +10.03574 1.705268 0.006069731 +13.47828 1.705268 0.006069731 +18.10068 1.705268 0.006069731 +24.30731 1.705268 0.006069731 +32.64117 1.705268 0.006069731 +43.83129 1.705268 0.006069731 +58.85664 1.705268 0.006069731 +-0.0175068 2.292679 0.006069731 +-0.01161267 2.292679 0.006069731 +-0.005718534 2.292679 0.006069731 +0.0001755984 2.292679 0.006069731 +0.006069731 2.292679 0.006069731 +0.01197402 2.292679 0.006069731 +0.01903886 2.292679 0.006069731 +0.02852504 2.292679 0.006069731 +0.04126244 2.292679 0.006069731 +0.05836535 2.292679 0.006069731 +0.08132997 2.292679 0.006069731 +0.1121653 2.292679 0.006069731 +0.1535689 2.292679 0.006069731 +0.2091628 2.292679 0.006069731 +0.2838106 2.292679 0.006069731 +0.3840425 2.292679 0.006069731 +0.518627 2.292679 0.006069731 +0.6993381 2.292679 0.006069731 +0.9419845 2.292679 0.006069731 +1.267794 2.292679 0.006069731 +1.705268 2.292679 0.006069731 +2.292679 2.292679 0.006069731 +3.081414 2.292679 0.006069731 +4.140474 2.292679 0.006069731 +5.562508 2.292679 0.006069731 +7.471917 2.292679 0.006069731 +10.03574 2.292679 0.006069731 +13.47828 2.292679 0.006069731 +18.10068 2.292679 0.006069731 +24.30731 2.292679 0.006069731 +32.64117 2.292679 0.006069731 +43.83129 2.292679 0.006069731 +58.85664 2.292679 0.006069731 +-0.0175068 3.081414 0.006069731 +-0.01161267 3.081414 0.006069731 +-0.005718534 3.081414 0.006069731 +0.0001755984 3.081414 0.006069731 +0.006069731 3.081414 0.006069731 +0.01197402 3.081414 0.006069731 +0.01903886 3.081414 0.006069731 +0.02852504 3.081414 0.006069731 +0.04126244 3.081414 0.006069731 +0.05836535 3.081414 0.006069731 +0.08132997 3.081414 0.006069731 +0.1121653 3.081414 0.006069731 +0.1535689 3.081414 0.006069731 +0.2091628 3.081414 0.006069731 +0.2838106 3.081414 0.006069731 +0.3840425 3.081414 0.006069731 +0.518627 3.081414 0.006069731 +0.6993381 3.081414 0.006069731 +0.9419845 3.081414 0.006069731 +1.267794 3.081414 0.006069731 +1.705268 3.081414 0.006069731 +2.292679 3.081414 0.006069731 +3.081414 3.081414 0.006069731 +4.140474 3.081414 0.006069731 +5.562508 3.081414 0.006069731 +7.471917 3.081414 0.006069731 +10.03574 3.081414 0.006069731 +13.47828 3.081414 0.006069731 +18.10068 3.081414 0.006069731 +24.30731 3.081414 0.006069731 +32.64117 3.081414 0.006069731 +43.83129 3.081414 0.006069731 +58.85664 3.081414 0.006069731 +-0.0175068 4.140474 0.006069731 +-0.01161267 4.140474 0.006069731 +-0.005718534 4.140474 0.006069731 +0.0001755984 4.140474 0.006069731 +0.006069731 4.140474 0.006069731 +0.01197402 4.140474 0.006069731 +0.01903886 4.140474 0.006069731 +0.02852504 4.140474 0.006069731 +0.04126244 4.140474 0.006069731 +0.05836535 4.140474 0.006069731 +0.08132997 4.140474 0.006069731 +0.1121653 4.140474 0.006069731 +0.1535689 4.140474 0.006069731 +0.2091628 4.140474 0.006069731 +0.2838106 4.140474 0.006069731 +0.3840425 4.140474 0.006069731 +0.518627 4.140474 0.006069731 +0.6993381 4.140474 0.006069731 +0.9419845 4.140474 0.006069731 +1.267794 4.140474 0.006069731 +1.705268 4.140474 0.006069731 +2.292679 4.140474 0.006069731 +3.081414 4.140474 0.006069731 +4.140474 4.140474 0.006069731 +5.562508 4.140474 0.006069731 +7.471917 4.140474 0.006069731 +10.03574 4.140474 0.006069731 +13.47828 4.140474 0.006069731 +18.10068 4.140474 0.006069731 +24.30731 4.140474 0.006069731 +32.64117 4.140474 0.006069731 +43.83129 4.140474 0.006069731 +58.85664 4.140474 0.006069731 +-0.0175068 5.562508 0.006069731 +-0.01161267 5.562508 0.006069731 +-0.005718534 5.562508 0.006069731 +0.0001755984 5.562508 0.006069731 +0.006069731 5.562508 0.006069731 +0.01197402 5.562508 0.006069731 +0.01903886 5.562508 0.006069731 +0.02852504 5.562508 0.006069731 +0.04126244 5.562508 0.006069731 +0.05836535 5.562508 0.006069731 +0.08132997 5.562508 0.006069731 +0.1121653 5.562508 0.006069731 +0.1535689 5.562508 0.006069731 +0.2091628 5.562508 0.006069731 +0.2838106 5.562508 0.006069731 +0.3840425 5.562508 0.006069731 +0.518627 5.562508 0.006069731 +0.6993381 5.562508 0.006069731 +0.9419845 5.562508 0.006069731 +1.267794 5.562508 0.006069731 +1.705268 5.562508 0.006069731 +2.292679 5.562508 0.006069731 +3.081414 5.562508 0.006069731 +4.140474 5.562508 0.006069731 +5.562508 5.562508 0.006069731 +7.471917 5.562508 0.006069731 +10.03574 5.562508 0.006069731 +13.47828 5.562508 0.006069731 +18.10068 5.562508 0.006069731 +24.30731 5.562508 0.006069731 +32.64117 5.562508 0.006069731 +43.83129 5.562508 0.006069731 +58.85664 5.562508 0.006069731 +-0.0175068 7.471917 0.006069731 +-0.01161267 7.471917 0.006069731 +-0.005718534 7.471917 0.006069731 +0.0001755984 7.471917 0.006069731 +0.006069731 7.471917 0.006069731 +0.01197402 7.471917 0.006069731 +0.01903886 7.471917 0.006069731 +0.02852504 7.471917 0.006069731 +0.04126244 7.471917 0.006069731 +0.05836535 7.471917 0.006069731 +0.08132997 7.471917 0.006069731 +0.1121653 7.471917 0.006069731 +0.1535689 7.471917 0.006069731 +0.2091628 7.471917 0.006069731 +0.2838106 7.471917 0.006069731 +0.3840425 7.471917 0.006069731 +0.518627 7.471917 0.006069731 +0.6993381 7.471917 0.006069731 +0.9419845 7.471917 0.006069731 +1.267794 7.471917 0.006069731 +1.705268 7.471917 0.006069731 +2.292679 7.471917 0.006069731 +3.081414 7.471917 0.006069731 +4.140474 7.471917 0.006069731 +5.562508 7.471917 0.006069731 +7.471917 7.471917 0.006069731 +10.03574 7.471917 0.006069731 +13.47828 7.471917 0.006069731 +18.10068 7.471917 0.006069731 +24.30731 7.471917 0.006069731 +32.64117 7.471917 0.006069731 +43.83129 7.471917 0.006069731 +58.85664 7.471917 0.006069731 +-0.0175068 10.03574 0.006069731 +-0.01161267 10.03574 0.006069731 +-0.005718534 10.03574 0.006069731 +0.0001755984 10.03574 0.006069731 +0.006069731 10.03574 0.006069731 +0.01197402 10.03574 0.006069731 +0.01903886 10.03574 0.006069731 +0.02852504 10.03574 0.006069731 +0.04126244 10.03574 0.006069731 +0.05836535 10.03574 0.006069731 +0.08132997 10.03574 0.006069731 +0.1121653 10.03574 0.006069731 +0.1535689 10.03574 0.006069731 +0.2091628 10.03574 0.006069731 +0.2838106 10.03574 0.006069731 +0.3840425 10.03574 0.006069731 +0.518627 10.03574 0.006069731 +0.6993381 10.03574 0.006069731 +0.9419845 10.03574 0.006069731 +1.267794 10.03574 0.006069731 +1.705268 10.03574 0.006069731 +2.292679 10.03574 0.006069731 +3.081414 10.03574 0.006069731 +4.140474 10.03574 0.006069731 +5.562508 10.03574 0.006069731 +7.471917 10.03574 0.006069731 +10.03574 10.03574 0.006069731 +13.47828 10.03574 0.006069731 +18.10068 10.03574 0.006069731 +24.30731 10.03574 0.006069731 +32.64117 10.03574 0.006069731 +43.83129 10.03574 0.006069731 +58.85664 10.03574 0.006069731 +-0.0175068 13.47828 0.006069731 +-0.01161267 13.47828 0.006069731 +-0.005718534 13.47828 0.006069731 +0.0001755984 13.47828 0.006069731 +0.006069731 13.47828 0.006069731 +0.01197402 13.47828 0.006069731 +0.01903886 13.47828 0.006069731 +0.02852504 13.47828 0.006069731 +0.04126244 13.47828 0.006069731 +0.05836535 13.47828 0.006069731 +0.08132997 13.47828 0.006069731 +0.1121653 13.47828 0.006069731 +0.1535689 13.47828 0.006069731 +0.2091628 13.47828 0.006069731 +0.2838106 13.47828 0.006069731 +0.3840425 13.47828 0.006069731 +0.518627 13.47828 0.006069731 +0.6993381 13.47828 0.006069731 +0.9419845 13.47828 0.006069731 +1.267794 13.47828 0.006069731 +1.705268 13.47828 0.006069731 +2.292679 13.47828 0.006069731 +3.081414 13.47828 0.006069731 +4.140474 13.47828 0.006069731 +5.562508 13.47828 0.006069731 +7.471917 13.47828 0.006069731 +10.03574 13.47828 0.006069731 +13.47828 13.47828 0.006069731 +18.10068 13.47828 0.006069731 +24.30731 13.47828 0.006069731 +32.64117 13.47828 0.006069731 +43.83129 13.47828 0.006069731 +58.85664 13.47828 0.006069731 +-0.0175068 18.10068 0.006069731 +-0.01161267 18.10068 0.006069731 +-0.005718534 18.10068 0.006069731 +0.0001755984 18.10068 0.006069731 +0.006069731 18.10068 0.006069731 +0.01197402 18.10068 0.006069731 +0.01903886 18.10068 0.006069731 +0.02852504 18.10068 0.006069731 +0.04126244 18.10068 0.006069731 +0.05836535 18.10068 0.006069731 +0.08132997 18.10068 0.006069731 +0.1121653 18.10068 0.006069731 +0.1535689 18.10068 0.006069731 +0.2091628 18.10068 0.006069731 +0.2838106 18.10068 0.006069731 +0.3840425 18.10068 0.006069731 +0.518627 18.10068 0.006069731 +0.6993381 18.10068 0.006069731 +0.9419845 18.10068 0.006069731 +1.267794 18.10068 0.006069731 +1.705268 18.10068 0.006069731 +2.292679 18.10068 0.006069731 +3.081414 18.10068 0.006069731 +4.140474 18.10068 0.006069731 +5.562508 18.10068 0.006069731 +7.471917 18.10068 0.006069731 +10.03574 18.10068 0.006069731 +13.47828 18.10068 0.006069731 +18.10068 18.10068 0.006069731 +24.30731 18.10068 0.006069731 +32.64117 18.10068 0.006069731 +43.83129 18.10068 0.006069731 +58.85664 18.10068 0.006069731 +-0.0175068 24.30731 0.006069731 +-0.01161267 24.30731 0.006069731 +-0.005718534 24.30731 0.006069731 +0.0001755984 24.30731 0.006069731 +0.006069731 24.30731 0.006069731 +0.01197402 24.30731 0.006069731 +0.01903886 24.30731 0.006069731 +0.02852504 24.30731 0.006069731 +0.04126244 24.30731 0.006069731 +0.05836535 24.30731 0.006069731 +0.08132997 24.30731 0.006069731 +0.1121653 24.30731 0.006069731 +0.1535689 24.30731 0.006069731 +0.2091628 24.30731 0.006069731 +0.2838106 24.30731 0.006069731 +0.3840425 24.30731 0.006069731 +0.518627 24.30731 0.006069731 +0.6993381 24.30731 0.006069731 +0.9419845 24.30731 0.006069731 +1.267794 24.30731 0.006069731 +1.705268 24.30731 0.006069731 +2.292679 24.30731 0.006069731 +3.081414 24.30731 0.006069731 +4.140474 24.30731 0.006069731 +5.562508 24.30731 0.006069731 +7.471917 24.30731 0.006069731 +10.03574 24.30731 0.006069731 +13.47828 24.30731 0.006069731 +18.10068 24.30731 0.006069731 +24.30731 24.30731 0.006069731 +32.64117 24.30731 0.006069731 +43.83129 24.30731 0.006069731 +58.85664 24.30731 0.006069731 +-0.0175068 32.64117 0.006069731 +-0.01161267 32.64117 0.006069731 +-0.005718534 32.64117 0.006069731 +0.0001755984 32.64117 0.006069731 +0.006069731 32.64117 0.006069731 +0.01197402 32.64117 0.006069731 +0.01903886 32.64117 0.006069731 +0.02852504 32.64117 0.006069731 +0.04126244 32.64117 0.006069731 +0.05836535 32.64117 0.006069731 +0.08132997 32.64117 0.006069731 +0.1121653 32.64117 0.006069731 +0.1535689 32.64117 0.006069731 +0.2091628 32.64117 0.006069731 +0.2838106 32.64117 0.006069731 +0.3840425 32.64117 0.006069731 +0.518627 32.64117 0.006069731 +0.6993381 32.64117 0.006069731 +0.9419845 32.64117 0.006069731 +1.267794 32.64117 0.006069731 +1.705268 32.64117 0.006069731 +2.292679 32.64117 0.006069731 +3.081414 32.64117 0.006069731 +4.140474 32.64117 0.006069731 +5.562508 32.64117 0.006069731 +7.471917 32.64117 0.006069731 +10.03574 32.64117 0.006069731 +13.47828 32.64117 0.006069731 +18.10068 32.64117 0.006069731 +24.30731 32.64117 0.006069731 +32.64117 32.64117 0.006069731 +43.83129 32.64117 0.006069731 +58.85664 32.64117 0.006069731 +-0.0175068 43.83129 0.006069731 +-0.01161267 43.83129 0.006069731 +-0.005718534 43.83129 0.006069731 +0.0001755984 43.83129 0.006069731 +0.006069731 43.83129 0.006069731 +0.01197402 43.83129 0.006069731 +0.01903886 43.83129 0.006069731 +0.02852504 43.83129 0.006069731 +0.04126244 43.83129 0.006069731 +0.05836535 43.83129 0.006069731 +0.08132997 43.83129 0.006069731 +0.1121653 43.83129 0.006069731 +0.1535689 43.83129 0.006069731 +0.2091628 43.83129 0.006069731 +0.2838106 43.83129 0.006069731 +0.3840425 43.83129 0.006069731 +0.518627 43.83129 0.006069731 +0.6993381 43.83129 0.006069731 +0.9419845 43.83129 0.006069731 +1.267794 43.83129 0.006069731 +1.705268 43.83129 0.006069731 +2.292679 43.83129 0.006069731 +3.081414 43.83129 0.006069731 +4.140474 43.83129 0.006069731 +5.562508 43.83129 0.006069731 +7.471917 43.83129 0.006069731 +10.03574 43.83129 0.006069731 +13.47828 43.83129 0.006069731 +18.10068 43.83129 0.006069731 +24.30731 43.83129 0.006069731 +32.64117 43.83129 0.006069731 +43.83129 43.83129 0.006069731 +58.85664 43.83129 0.006069731 +-0.0175068 58.85664 0.006069731 +-0.01161267 58.85664 0.006069731 +-0.005718534 58.85664 0.006069731 +0.0001755984 58.85664 0.006069731 +0.006069731 58.85664 0.006069731 +0.01197402 58.85664 0.006069731 +0.01903886 58.85664 0.006069731 +0.02852504 58.85664 0.006069731 +0.04126244 58.85664 0.006069731 +0.05836535 58.85664 0.006069731 +0.08132997 58.85664 0.006069731 +0.1121653 58.85664 0.006069731 +0.1535689 58.85664 0.006069731 +0.2091628 58.85664 0.006069731 +0.2838106 58.85664 0.006069731 +0.3840425 58.85664 0.006069731 +0.518627 58.85664 0.006069731 +0.6993381 58.85664 0.006069731 +0.9419845 58.85664 0.006069731 +1.267794 58.85664 0.006069731 +1.705268 58.85664 0.006069731 +2.292679 58.85664 0.006069731 +3.081414 58.85664 0.006069731 +4.140474 58.85664 0.006069731 +5.562508 58.85664 0.006069731 +7.471917 58.85664 0.006069731 +10.03574 58.85664 0.006069731 +13.47828 58.85664 0.006069731 +18.10068 58.85664 0.006069731 +24.30731 58.85664 0.006069731 +32.64117 58.85664 0.006069731 +43.83129 58.85664 0.006069731 +58.85664 58.85664 0.006069731 +-0.0175068 -0.0175068 0.01197402 +-0.01161267 -0.0175068 0.01197402 +-0.005718534 -0.0175068 0.01197402 +0.0001755984 -0.0175068 0.01197402 +0.006069731 -0.0175068 0.01197402 +0.01197402 -0.0175068 0.01197402 +0.01903886 -0.0175068 0.01197402 +0.02852504 -0.0175068 0.01197402 +0.04126244 -0.0175068 0.01197402 +0.05836535 -0.0175068 0.01197402 +0.08132997 -0.0175068 0.01197402 +0.1121653 -0.0175068 0.01197402 +0.1535689 -0.0175068 0.01197402 +0.2091628 -0.0175068 0.01197402 +0.2838106 -0.0175068 0.01197402 +0.3840425 -0.0175068 0.01197402 +0.518627 -0.0175068 0.01197402 +0.6993381 -0.0175068 0.01197402 +0.9419845 -0.0175068 0.01197402 +1.267794 -0.0175068 0.01197402 +1.705268 -0.0175068 0.01197402 +2.292679 -0.0175068 0.01197402 +3.081414 -0.0175068 0.01197402 +4.140474 -0.0175068 0.01197402 +5.562508 -0.0175068 0.01197402 +7.471917 -0.0175068 0.01197402 +10.03574 -0.0175068 0.01197402 +13.47828 -0.0175068 0.01197402 +18.10068 -0.0175068 0.01197402 +24.30731 -0.0175068 0.01197402 +32.64117 -0.0175068 0.01197402 +43.83129 -0.0175068 0.01197402 +58.85664 -0.0175068 0.01197402 +-0.0175068 -0.01161267 0.01197402 +-0.01161267 -0.01161267 0.01197402 +-0.005718534 -0.01161267 0.01197402 +0.0001755984 -0.01161267 0.01197402 +0.006069731 -0.01161267 0.01197402 +0.01197402 -0.01161267 0.01197402 +0.01903886 -0.01161267 0.01197402 +0.02852504 -0.01161267 0.01197402 +0.04126244 -0.01161267 0.01197402 +0.05836535 -0.01161267 0.01197402 +0.08132997 -0.01161267 0.01197402 +0.1121653 -0.01161267 0.01197402 +0.1535689 -0.01161267 0.01197402 +0.2091628 -0.01161267 0.01197402 +0.2838106 -0.01161267 0.01197402 +0.3840425 -0.01161267 0.01197402 +0.518627 -0.01161267 0.01197402 +0.6993381 -0.01161267 0.01197402 +0.9419845 -0.01161267 0.01197402 +1.267794 -0.01161267 0.01197402 +1.705268 -0.01161267 0.01197402 +2.292679 -0.01161267 0.01197402 +3.081414 -0.01161267 0.01197402 +4.140474 -0.01161267 0.01197402 +5.562508 -0.01161267 0.01197402 +7.471917 -0.01161267 0.01197402 +10.03574 -0.01161267 0.01197402 +13.47828 -0.01161267 0.01197402 +18.10068 -0.01161267 0.01197402 +24.30731 -0.01161267 0.01197402 +32.64117 -0.01161267 0.01197402 +43.83129 -0.01161267 0.01197402 +58.85664 -0.01161267 0.01197402 +-0.0175068 -0.005718534 0.01197402 +-0.01161267 -0.005718534 0.01197402 +-0.005718534 -0.005718534 0.01197402 +0.0001755984 -0.005718534 0.01197402 +0.006069731 -0.005718534 0.01197402 +0.01197402 -0.005718534 0.01197402 +0.01903886 -0.005718534 0.01197402 +0.02852504 -0.005718534 0.01197402 +0.04126244 -0.005718534 0.01197402 +0.05836535 -0.005718534 0.01197402 +0.08132997 -0.005718534 0.01197402 +0.1121653 -0.005718534 0.01197402 +0.1535689 -0.005718534 0.01197402 +0.2091628 -0.005718534 0.01197402 +0.2838106 -0.005718534 0.01197402 +0.3840425 -0.005718534 0.01197402 +0.518627 -0.005718534 0.01197402 +0.6993381 -0.005718534 0.01197402 +0.9419845 -0.005718534 0.01197402 +1.267794 -0.005718534 0.01197402 +1.705268 -0.005718534 0.01197402 +2.292679 -0.005718534 0.01197402 +3.081414 -0.005718534 0.01197402 +4.140474 -0.005718534 0.01197402 +5.562508 -0.005718534 0.01197402 +7.471917 -0.005718534 0.01197402 +10.03574 -0.005718534 0.01197402 +13.47828 -0.005718534 0.01197402 +18.10068 -0.005718534 0.01197402 +24.30731 -0.005718534 0.01197402 +32.64117 -0.005718534 0.01197402 +43.83129 -0.005718534 0.01197402 +58.85664 -0.005718534 0.01197402 +-0.0175068 0.0001755984 0.01197402 +-0.01161267 0.0001755984 0.01197402 +-0.005718534 0.0001755984 0.01197402 +0.0001755984 0.0001755984 0.01197402 +0.006069731 0.0001755984 0.01197402 +0.01197402 0.0001755984 0.01197402 +0.01903886 0.0001755984 0.01197402 +0.02852504 0.0001755984 0.01197402 +0.04126244 0.0001755984 0.01197402 +0.05836535 0.0001755984 0.01197402 +0.08132997 0.0001755984 0.01197402 +0.1121653 0.0001755984 0.01197402 +0.1535689 0.0001755984 0.01197402 +0.2091628 0.0001755984 0.01197402 +0.2838106 0.0001755984 0.01197402 +0.3840425 0.0001755984 0.01197402 +0.518627 0.0001755984 0.01197402 +0.6993381 0.0001755984 0.01197402 +0.9419845 0.0001755984 0.01197402 +1.267794 0.0001755984 0.01197402 +1.705268 0.0001755984 0.01197402 +2.292679 0.0001755984 0.01197402 +3.081414 0.0001755984 0.01197402 +4.140474 0.0001755984 0.01197402 +5.562508 0.0001755984 0.01197402 +7.471917 0.0001755984 0.01197402 +10.03574 0.0001755984 0.01197402 +13.47828 0.0001755984 0.01197402 +18.10068 0.0001755984 0.01197402 +24.30731 0.0001755984 0.01197402 +32.64117 0.0001755984 0.01197402 +43.83129 0.0001755984 0.01197402 +58.85664 0.0001755984 0.01197402 +-0.0175068 0.006069731 0.01197402 +-0.01161267 0.006069731 0.01197402 +-0.005718534 0.006069731 0.01197402 +0.0001755984 0.006069731 0.01197402 +0.006069731 0.006069731 0.01197402 +0.01197402 0.006069731 0.01197402 +0.01903886 0.006069731 0.01197402 +0.02852504 0.006069731 0.01197402 +0.04126244 0.006069731 0.01197402 +0.05836535 0.006069731 0.01197402 +0.08132997 0.006069731 0.01197402 +0.1121653 0.006069731 0.01197402 +0.1535689 0.006069731 0.01197402 +0.2091628 0.006069731 0.01197402 +0.2838106 0.006069731 0.01197402 +0.3840425 0.006069731 0.01197402 +0.518627 0.006069731 0.01197402 +0.6993381 0.006069731 0.01197402 +0.9419845 0.006069731 0.01197402 +1.267794 0.006069731 0.01197402 +1.705268 0.006069731 0.01197402 +2.292679 0.006069731 0.01197402 +3.081414 0.006069731 0.01197402 +4.140474 0.006069731 0.01197402 +5.562508 0.006069731 0.01197402 +7.471917 0.006069731 0.01197402 +10.03574 0.006069731 0.01197402 +13.47828 0.006069731 0.01197402 +18.10068 0.006069731 0.01197402 +24.30731 0.006069731 0.01197402 +32.64117 0.006069731 0.01197402 +43.83129 0.006069731 0.01197402 +58.85664 0.006069731 0.01197402 +-0.0175068 0.01197402 0.01197402 +-0.01161267 0.01197402 0.01197402 +-0.005718534 0.01197402 0.01197402 +0.0001755984 0.01197402 0.01197402 +0.006069731 0.01197402 0.01197402 +0.01197402 0.01197402 0.01197402 +0.01903886 0.01197402 0.01197402 +0.02852504 0.01197402 0.01197402 +0.04126244 0.01197402 0.01197402 +0.05836535 0.01197402 0.01197402 +0.08132997 0.01197402 0.01197402 +0.1121653 0.01197402 0.01197402 +0.1535689 0.01197402 0.01197402 +0.2091628 0.01197402 0.01197402 +0.2838106 0.01197402 0.01197402 +0.3840425 0.01197402 0.01197402 +0.518627 0.01197402 0.01197402 +0.6993381 0.01197402 0.01197402 +0.9419845 0.01197402 0.01197402 +1.267794 0.01197402 0.01197402 +1.705268 0.01197402 0.01197402 +2.292679 0.01197402 0.01197402 +3.081414 0.01197402 0.01197402 +4.140474 0.01197402 0.01197402 +5.562508 0.01197402 0.01197402 +7.471917 0.01197402 0.01197402 +10.03574 0.01197402 0.01197402 +13.47828 0.01197402 0.01197402 +18.10068 0.01197402 0.01197402 +24.30731 0.01197402 0.01197402 +32.64117 0.01197402 0.01197402 +43.83129 0.01197402 0.01197402 +58.85664 0.01197402 0.01197402 +-0.0175068 0.01903886 0.01197402 +-0.01161267 0.01903886 0.01197402 +-0.005718534 0.01903886 0.01197402 +0.0001755984 0.01903886 0.01197402 +0.006069731 0.01903886 0.01197402 +0.01197402 0.01903886 0.01197402 +0.01903886 0.01903886 0.01197402 +0.02852504 0.01903886 0.01197402 +0.04126244 0.01903886 0.01197402 +0.05836535 0.01903886 0.01197402 +0.08132997 0.01903886 0.01197402 +0.1121653 0.01903886 0.01197402 +0.1535689 0.01903886 0.01197402 +0.2091628 0.01903886 0.01197402 +0.2838106 0.01903886 0.01197402 +0.3840425 0.01903886 0.01197402 +0.518627 0.01903886 0.01197402 +0.6993381 0.01903886 0.01197402 +0.9419845 0.01903886 0.01197402 +1.267794 0.01903886 0.01197402 +1.705268 0.01903886 0.01197402 +2.292679 0.01903886 0.01197402 +3.081414 0.01903886 0.01197402 +4.140474 0.01903886 0.01197402 +5.562508 0.01903886 0.01197402 +7.471917 0.01903886 0.01197402 +10.03574 0.01903886 0.01197402 +13.47828 0.01903886 0.01197402 +18.10068 0.01903886 0.01197402 +24.30731 0.01903886 0.01197402 +32.64117 0.01903886 0.01197402 +43.83129 0.01903886 0.01197402 +58.85664 0.01903886 0.01197402 +-0.0175068 0.02852504 0.01197402 +-0.01161267 0.02852504 0.01197402 +-0.005718534 0.02852504 0.01197402 +0.0001755984 0.02852504 0.01197402 +0.006069731 0.02852504 0.01197402 +0.01197402 0.02852504 0.01197402 +0.01903886 0.02852504 0.01197402 +0.02852504 0.02852504 0.01197402 +0.04126244 0.02852504 0.01197402 +0.05836535 0.02852504 0.01197402 +0.08132997 0.02852504 0.01197402 +0.1121653 0.02852504 0.01197402 +0.1535689 0.02852504 0.01197402 +0.2091628 0.02852504 0.01197402 +0.2838106 0.02852504 0.01197402 +0.3840425 0.02852504 0.01197402 +0.518627 0.02852504 0.01197402 +0.6993381 0.02852504 0.01197402 +0.9419845 0.02852504 0.01197402 +1.267794 0.02852504 0.01197402 +1.705268 0.02852504 0.01197402 +2.292679 0.02852504 0.01197402 +3.081414 0.02852504 0.01197402 +4.140474 0.02852504 0.01197402 +5.562508 0.02852504 0.01197402 +7.471917 0.02852504 0.01197402 +10.03574 0.02852504 0.01197402 +13.47828 0.02852504 0.01197402 +18.10068 0.02852504 0.01197402 +24.30731 0.02852504 0.01197402 +32.64117 0.02852504 0.01197402 +43.83129 0.02852504 0.01197402 +58.85664 0.02852504 0.01197402 +-0.0175068 0.04126244 0.01197402 +-0.01161267 0.04126244 0.01197402 +-0.005718534 0.04126244 0.01197402 +0.0001755984 0.04126244 0.01197402 +0.006069731 0.04126244 0.01197402 +0.01197402 0.04126244 0.01197402 +0.01903886 0.04126244 0.01197402 +0.02852504 0.04126244 0.01197402 +0.04126244 0.04126244 0.01197402 +0.05836535 0.04126244 0.01197402 +0.08132997 0.04126244 0.01197402 +0.1121653 0.04126244 0.01197402 +0.1535689 0.04126244 0.01197402 +0.2091628 0.04126244 0.01197402 +0.2838106 0.04126244 0.01197402 +0.3840425 0.04126244 0.01197402 +0.518627 0.04126244 0.01197402 +0.6993381 0.04126244 0.01197402 +0.9419845 0.04126244 0.01197402 +1.267794 0.04126244 0.01197402 +1.705268 0.04126244 0.01197402 +2.292679 0.04126244 0.01197402 +3.081414 0.04126244 0.01197402 +4.140474 0.04126244 0.01197402 +5.562508 0.04126244 0.01197402 +7.471917 0.04126244 0.01197402 +10.03574 0.04126244 0.01197402 +13.47828 0.04126244 0.01197402 +18.10068 0.04126244 0.01197402 +24.30731 0.04126244 0.01197402 +32.64117 0.04126244 0.01197402 +43.83129 0.04126244 0.01197402 +58.85664 0.04126244 0.01197402 +-0.0175068 0.05836535 0.01197402 +-0.01161267 0.05836535 0.01197402 +-0.005718534 0.05836535 0.01197402 +0.0001755984 0.05836535 0.01197402 +0.006069731 0.05836535 0.01197402 +0.01197402 0.05836535 0.01197402 +0.01903886 0.05836535 0.01197402 +0.02852504 0.05836535 0.01197402 +0.04126244 0.05836535 0.01197402 +0.05836535 0.05836535 0.01197402 +0.08132997 0.05836535 0.01197402 +0.1121653 0.05836535 0.01197402 +0.1535689 0.05836535 0.01197402 +0.2091628 0.05836535 0.01197402 +0.2838106 0.05836535 0.01197402 +0.3840425 0.05836535 0.01197402 +0.518627 0.05836535 0.01197402 +0.6993381 0.05836535 0.01197402 +0.9419845 0.05836535 0.01197402 +1.267794 0.05836535 0.01197402 +1.705268 0.05836535 0.01197402 +2.292679 0.05836535 0.01197402 +3.081414 0.05836535 0.01197402 +4.140474 0.05836535 0.01197402 +5.562508 0.05836535 0.01197402 +7.471917 0.05836535 0.01197402 +10.03574 0.05836535 0.01197402 +13.47828 0.05836535 0.01197402 +18.10068 0.05836535 0.01197402 +24.30731 0.05836535 0.01197402 +32.64117 0.05836535 0.01197402 +43.83129 0.05836535 0.01197402 +58.85664 0.05836535 0.01197402 +-0.0175068 0.08132997 0.01197402 +-0.01161267 0.08132997 0.01197402 +-0.005718534 0.08132997 0.01197402 +0.0001755984 0.08132997 0.01197402 +0.006069731 0.08132997 0.01197402 +0.01197402 0.08132997 0.01197402 +0.01903886 0.08132997 0.01197402 +0.02852504 0.08132997 0.01197402 +0.04126244 0.08132997 0.01197402 +0.05836535 0.08132997 0.01197402 +0.08132997 0.08132997 0.01197402 +0.1121653 0.08132997 0.01197402 +0.1535689 0.08132997 0.01197402 +0.2091628 0.08132997 0.01197402 +0.2838106 0.08132997 0.01197402 +0.3840425 0.08132997 0.01197402 +0.518627 0.08132997 0.01197402 +0.6993381 0.08132997 0.01197402 +0.9419845 0.08132997 0.01197402 +1.267794 0.08132997 0.01197402 +1.705268 0.08132997 0.01197402 +2.292679 0.08132997 0.01197402 +3.081414 0.08132997 0.01197402 +4.140474 0.08132997 0.01197402 +5.562508 0.08132997 0.01197402 +7.471917 0.08132997 0.01197402 +10.03574 0.08132997 0.01197402 +13.47828 0.08132997 0.01197402 +18.10068 0.08132997 0.01197402 +24.30731 0.08132997 0.01197402 +32.64117 0.08132997 0.01197402 +43.83129 0.08132997 0.01197402 +58.85664 0.08132997 0.01197402 +-0.0175068 0.1121653 0.01197402 +-0.01161267 0.1121653 0.01197402 +-0.005718534 0.1121653 0.01197402 +0.0001755984 0.1121653 0.01197402 +0.006069731 0.1121653 0.01197402 +0.01197402 0.1121653 0.01197402 +0.01903886 0.1121653 0.01197402 +0.02852504 0.1121653 0.01197402 +0.04126244 0.1121653 0.01197402 +0.05836535 0.1121653 0.01197402 +0.08132997 0.1121653 0.01197402 +0.1121653 0.1121653 0.01197402 +0.1535689 0.1121653 0.01197402 +0.2091628 0.1121653 0.01197402 +0.2838106 0.1121653 0.01197402 +0.3840425 0.1121653 0.01197402 +0.518627 0.1121653 0.01197402 +0.6993381 0.1121653 0.01197402 +0.9419845 0.1121653 0.01197402 +1.267794 0.1121653 0.01197402 +1.705268 0.1121653 0.01197402 +2.292679 0.1121653 0.01197402 +3.081414 0.1121653 0.01197402 +4.140474 0.1121653 0.01197402 +5.562508 0.1121653 0.01197402 +7.471917 0.1121653 0.01197402 +10.03574 0.1121653 0.01197402 +13.47828 0.1121653 0.01197402 +18.10068 0.1121653 0.01197402 +24.30731 0.1121653 0.01197402 +32.64117 0.1121653 0.01197402 +43.83129 0.1121653 0.01197402 +58.85664 0.1121653 0.01197402 +-0.0175068 0.1535689 0.01197402 +-0.01161267 0.1535689 0.01197402 +-0.005718534 0.1535689 0.01197402 +0.0001755984 0.1535689 0.01197402 +0.006069731 0.1535689 0.01197402 +0.01197402 0.1535689 0.01197402 +0.01903886 0.1535689 0.01197402 +0.02852504 0.1535689 0.01197402 +0.04126244 0.1535689 0.01197402 +0.05836535 0.1535689 0.01197402 +0.08132997 0.1535689 0.01197402 +0.1121653 0.1535689 0.01197402 +0.1535689 0.1535689 0.01197402 +0.2091628 0.1535689 0.01197402 +0.2838106 0.1535689 0.01197402 +0.3840425 0.1535689 0.01197402 +0.518627 0.1535689 0.01197402 +0.6993381 0.1535689 0.01197402 +0.9419845 0.1535689 0.01197402 +1.267794 0.1535689 0.01197402 +1.705268 0.1535689 0.01197402 +2.292679 0.1535689 0.01197402 +3.081414 0.1535689 0.01197402 +4.140474 0.1535689 0.01197402 +5.562508 0.1535689 0.01197402 +7.471917 0.1535689 0.01197402 +10.03574 0.1535689 0.01197402 +13.47828 0.1535689 0.01197402 +18.10068 0.1535689 0.01197402 +24.30731 0.1535689 0.01197402 +32.64117 0.1535689 0.01197402 +43.83129 0.1535689 0.01197402 +58.85664 0.1535689 0.01197402 +-0.0175068 0.2091628 0.01197402 +-0.01161267 0.2091628 0.01197402 +-0.005718534 0.2091628 0.01197402 +0.0001755984 0.2091628 0.01197402 +0.006069731 0.2091628 0.01197402 +0.01197402 0.2091628 0.01197402 +0.01903886 0.2091628 0.01197402 +0.02852504 0.2091628 0.01197402 +0.04126244 0.2091628 0.01197402 +0.05836535 0.2091628 0.01197402 +0.08132997 0.2091628 0.01197402 +0.1121653 0.2091628 0.01197402 +0.1535689 0.2091628 0.01197402 +0.2091628 0.2091628 0.01197402 +0.2838106 0.2091628 0.01197402 +0.3840425 0.2091628 0.01197402 +0.518627 0.2091628 0.01197402 +0.6993381 0.2091628 0.01197402 +0.9419845 0.2091628 0.01197402 +1.267794 0.2091628 0.01197402 +1.705268 0.2091628 0.01197402 +2.292679 0.2091628 0.01197402 +3.081414 0.2091628 0.01197402 +4.140474 0.2091628 0.01197402 +5.562508 0.2091628 0.01197402 +7.471917 0.2091628 0.01197402 +10.03574 0.2091628 0.01197402 +13.47828 0.2091628 0.01197402 +18.10068 0.2091628 0.01197402 +24.30731 0.2091628 0.01197402 +32.64117 0.2091628 0.01197402 +43.83129 0.2091628 0.01197402 +58.85664 0.2091628 0.01197402 +-0.0175068 0.2838106 0.01197402 +-0.01161267 0.2838106 0.01197402 +-0.005718534 0.2838106 0.01197402 +0.0001755984 0.2838106 0.01197402 +0.006069731 0.2838106 0.01197402 +0.01197402 0.2838106 0.01197402 +0.01903886 0.2838106 0.01197402 +0.02852504 0.2838106 0.01197402 +0.04126244 0.2838106 0.01197402 +0.05836535 0.2838106 0.01197402 +0.08132997 0.2838106 0.01197402 +0.1121653 0.2838106 0.01197402 +0.1535689 0.2838106 0.01197402 +0.2091628 0.2838106 0.01197402 +0.2838106 0.2838106 0.01197402 +0.3840425 0.2838106 0.01197402 +0.518627 0.2838106 0.01197402 +0.6993381 0.2838106 0.01197402 +0.9419845 0.2838106 0.01197402 +1.267794 0.2838106 0.01197402 +1.705268 0.2838106 0.01197402 +2.292679 0.2838106 0.01197402 +3.081414 0.2838106 0.01197402 +4.140474 0.2838106 0.01197402 +5.562508 0.2838106 0.01197402 +7.471917 0.2838106 0.01197402 +10.03574 0.2838106 0.01197402 +13.47828 0.2838106 0.01197402 +18.10068 0.2838106 0.01197402 +24.30731 0.2838106 0.01197402 +32.64117 0.2838106 0.01197402 +43.83129 0.2838106 0.01197402 +58.85664 0.2838106 0.01197402 +-0.0175068 0.3840425 0.01197402 +-0.01161267 0.3840425 0.01197402 +-0.005718534 0.3840425 0.01197402 +0.0001755984 0.3840425 0.01197402 +0.006069731 0.3840425 0.01197402 +0.01197402 0.3840425 0.01197402 +0.01903886 0.3840425 0.01197402 +0.02852504 0.3840425 0.01197402 +0.04126244 0.3840425 0.01197402 +0.05836535 0.3840425 0.01197402 +0.08132997 0.3840425 0.01197402 +0.1121653 0.3840425 0.01197402 +0.1535689 0.3840425 0.01197402 +0.2091628 0.3840425 0.01197402 +0.2838106 0.3840425 0.01197402 +0.3840425 0.3840425 0.01197402 +0.518627 0.3840425 0.01197402 +0.6993381 0.3840425 0.01197402 +0.9419845 0.3840425 0.01197402 +1.267794 0.3840425 0.01197402 +1.705268 0.3840425 0.01197402 +2.292679 0.3840425 0.01197402 +3.081414 0.3840425 0.01197402 +4.140474 0.3840425 0.01197402 +5.562508 0.3840425 0.01197402 +7.471917 0.3840425 0.01197402 +10.03574 0.3840425 0.01197402 +13.47828 0.3840425 0.01197402 +18.10068 0.3840425 0.01197402 +24.30731 0.3840425 0.01197402 +32.64117 0.3840425 0.01197402 +43.83129 0.3840425 0.01197402 +58.85664 0.3840425 0.01197402 +-0.0175068 0.518627 0.01197402 +-0.01161267 0.518627 0.01197402 +-0.005718534 0.518627 0.01197402 +0.0001755984 0.518627 0.01197402 +0.006069731 0.518627 0.01197402 +0.01197402 0.518627 0.01197402 +0.01903886 0.518627 0.01197402 +0.02852504 0.518627 0.01197402 +0.04126244 0.518627 0.01197402 +0.05836535 0.518627 0.01197402 +0.08132997 0.518627 0.01197402 +0.1121653 0.518627 0.01197402 +0.1535689 0.518627 0.01197402 +0.2091628 0.518627 0.01197402 +0.2838106 0.518627 0.01197402 +0.3840425 0.518627 0.01197402 +0.518627 0.518627 0.01197402 +0.6993381 0.518627 0.01197402 +0.9419845 0.518627 0.01197402 +1.267794 0.518627 0.01197402 +1.705268 0.518627 0.01197402 +2.292679 0.518627 0.01197402 +3.081414 0.518627 0.01197402 +4.140474 0.518627 0.01197402 +5.562508 0.518627 0.01197402 +7.471917 0.518627 0.01197402 +10.03574 0.518627 0.01197402 +13.47828 0.518627 0.01197402 +18.10068 0.518627 0.01197402 +24.30731 0.518627 0.01197402 +32.64117 0.518627 0.01197402 +43.83129 0.518627 0.01197402 +58.85664 0.518627 0.01197402 +-0.0175068 0.6993381 0.01197402 +-0.01161267 0.6993381 0.01197402 +-0.005718534 0.6993381 0.01197402 +0.0001755984 0.6993381 0.01197402 +0.006069731 0.6993381 0.01197402 +0.01197402 0.6993381 0.01197402 +0.01903886 0.6993381 0.01197402 +0.02852504 0.6993381 0.01197402 +0.04126244 0.6993381 0.01197402 +0.05836535 0.6993381 0.01197402 +0.08132997 0.6993381 0.01197402 +0.1121653 0.6993381 0.01197402 +0.1535689 0.6993381 0.01197402 +0.2091628 0.6993381 0.01197402 +0.2838106 0.6993381 0.01197402 +0.3840425 0.6993381 0.01197402 +0.518627 0.6993381 0.01197402 +0.6993381 0.6993381 0.01197402 +0.9419845 0.6993381 0.01197402 +1.267794 0.6993381 0.01197402 +1.705268 0.6993381 0.01197402 +2.292679 0.6993381 0.01197402 +3.081414 0.6993381 0.01197402 +4.140474 0.6993381 0.01197402 +5.562508 0.6993381 0.01197402 +7.471917 0.6993381 0.01197402 +10.03574 0.6993381 0.01197402 +13.47828 0.6993381 0.01197402 +18.10068 0.6993381 0.01197402 +24.30731 0.6993381 0.01197402 +32.64117 0.6993381 0.01197402 +43.83129 0.6993381 0.01197402 +58.85664 0.6993381 0.01197402 +-0.0175068 0.9419845 0.01197402 +-0.01161267 0.9419845 0.01197402 +-0.005718534 0.9419845 0.01197402 +0.0001755984 0.9419845 0.01197402 +0.006069731 0.9419845 0.01197402 +0.01197402 0.9419845 0.01197402 +0.01903886 0.9419845 0.01197402 +0.02852504 0.9419845 0.01197402 +0.04126244 0.9419845 0.01197402 +0.05836535 0.9419845 0.01197402 +0.08132997 0.9419845 0.01197402 +0.1121653 0.9419845 0.01197402 +0.1535689 0.9419845 0.01197402 +0.2091628 0.9419845 0.01197402 +0.2838106 0.9419845 0.01197402 +0.3840425 0.9419845 0.01197402 +0.518627 0.9419845 0.01197402 +0.6993381 0.9419845 0.01197402 +0.9419845 0.9419845 0.01197402 +1.267794 0.9419845 0.01197402 +1.705268 0.9419845 0.01197402 +2.292679 0.9419845 0.01197402 +3.081414 0.9419845 0.01197402 +4.140474 0.9419845 0.01197402 +5.562508 0.9419845 0.01197402 +7.471917 0.9419845 0.01197402 +10.03574 0.9419845 0.01197402 +13.47828 0.9419845 0.01197402 +18.10068 0.9419845 0.01197402 +24.30731 0.9419845 0.01197402 +32.64117 0.9419845 0.01197402 +43.83129 0.9419845 0.01197402 +58.85664 0.9419845 0.01197402 +-0.0175068 1.267794 0.01197402 +-0.01161267 1.267794 0.01197402 +-0.005718534 1.267794 0.01197402 +0.0001755984 1.267794 0.01197402 +0.006069731 1.267794 0.01197402 +0.01197402 1.267794 0.01197402 +0.01903886 1.267794 0.01197402 +0.02852504 1.267794 0.01197402 +0.04126244 1.267794 0.01197402 +0.05836535 1.267794 0.01197402 +0.08132997 1.267794 0.01197402 +0.1121653 1.267794 0.01197402 +0.1535689 1.267794 0.01197402 +0.2091628 1.267794 0.01197402 +0.2838106 1.267794 0.01197402 +0.3840425 1.267794 0.01197402 +0.518627 1.267794 0.01197402 +0.6993381 1.267794 0.01197402 +0.9419845 1.267794 0.01197402 +1.267794 1.267794 0.01197402 +1.705268 1.267794 0.01197402 +2.292679 1.267794 0.01197402 +3.081414 1.267794 0.01197402 +4.140474 1.267794 0.01197402 +5.562508 1.267794 0.01197402 +7.471917 1.267794 0.01197402 +10.03574 1.267794 0.01197402 +13.47828 1.267794 0.01197402 +18.10068 1.267794 0.01197402 +24.30731 1.267794 0.01197402 +32.64117 1.267794 0.01197402 +43.83129 1.267794 0.01197402 +58.85664 1.267794 0.01197402 +-0.0175068 1.705268 0.01197402 +-0.01161267 1.705268 0.01197402 +-0.005718534 1.705268 0.01197402 +0.0001755984 1.705268 0.01197402 +0.006069731 1.705268 0.01197402 +0.01197402 1.705268 0.01197402 +0.01903886 1.705268 0.01197402 +0.02852504 1.705268 0.01197402 +0.04126244 1.705268 0.01197402 +0.05836535 1.705268 0.01197402 +0.08132997 1.705268 0.01197402 +0.1121653 1.705268 0.01197402 +0.1535689 1.705268 0.01197402 +0.2091628 1.705268 0.01197402 +0.2838106 1.705268 0.01197402 +0.3840425 1.705268 0.01197402 +0.518627 1.705268 0.01197402 +0.6993381 1.705268 0.01197402 +0.9419845 1.705268 0.01197402 +1.267794 1.705268 0.01197402 +1.705268 1.705268 0.01197402 +2.292679 1.705268 0.01197402 +3.081414 1.705268 0.01197402 +4.140474 1.705268 0.01197402 +5.562508 1.705268 0.01197402 +7.471917 1.705268 0.01197402 +10.03574 1.705268 0.01197402 +13.47828 1.705268 0.01197402 +18.10068 1.705268 0.01197402 +24.30731 1.705268 0.01197402 +32.64117 1.705268 0.01197402 +43.83129 1.705268 0.01197402 +58.85664 1.705268 0.01197402 +-0.0175068 2.292679 0.01197402 +-0.01161267 2.292679 0.01197402 +-0.005718534 2.292679 0.01197402 +0.0001755984 2.292679 0.01197402 +0.006069731 2.292679 0.01197402 +0.01197402 2.292679 0.01197402 +0.01903886 2.292679 0.01197402 +0.02852504 2.292679 0.01197402 +0.04126244 2.292679 0.01197402 +0.05836535 2.292679 0.01197402 +0.08132997 2.292679 0.01197402 +0.1121653 2.292679 0.01197402 +0.1535689 2.292679 0.01197402 +0.2091628 2.292679 0.01197402 +0.2838106 2.292679 0.01197402 +0.3840425 2.292679 0.01197402 +0.518627 2.292679 0.01197402 +0.6993381 2.292679 0.01197402 +0.9419845 2.292679 0.01197402 +1.267794 2.292679 0.01197402 +1.705268 2.292679 0.01197402 +2.292679 2.292679 0.01197402 +3.081414 2.292679 0.01197402 +4.140474 2.292679 0.01197402 +5.562508 2.292679 0.01197402 +7.471917 2.292679 0.01197402 +10.03574 2.292679 0.01197402 +13.47828 2.292679 0.01197402 +18.10068 2.292679 0.01197402 +24.30731 2.292679 0.01197402 +32.64117 2.292679 0.01197402 +43.83129 2.292679 0.01197402 +58.85664 2.292679 0.01197402 +-0.0175068 3.081414 0.01197402 +-0.01161267 3.081414 0.01197402 +-0.005718534 3.081414 0.01197402 +0.0001755984 3.081414 0.01197402 +0.006069731 3.081414 0.01197402 +0.01197402 3.081414 0.01197402 +0.01903886 3.081414 0.01197402 +0.02852504 3.081414 0.01197402 +0.04126244 3.081414 0.01197402 +0.05836535 3.081414 0.01197402 +0.08132997 3.081414 0.01197402 +0.1121653 3.081414 0.01197402 +0.1535689 3.081414 0.01197402 +0.2091628 3.081414 0.01197402 +0.2838106 3.081414 0.01197402 +0.3840425 3.081414 0.01197402 +0.518627 3.081414 0.01197402 +0.6993381 3.081414 0.01197402 +0.9419845 3.081414 0.01197402 +1.267794 3.081414 0.01197402 +1.705268 3.081414 0.01197402 +2.292679 3.081414 0.01197402 +3.081414 3.081414 0.01197402 +4.140474 3.081414 0.01197402 +5.562508 3.081414 0.01197402 +7.471917 3.081414 0.01197402 +10.03574 3.081414 0.01197402 +13.47828 3.081414 0.01197402 +18.10068 3.081414 0.01197402 +24.30731 3.081414 0.01197402 +32.64117 3.081414 0.01197402 +43.83129 3.081414 0.01197402 +58.85664 3.081414 0.01197402 +-0.0175068 4.140474 0.01197402 +-0.01161267 4.140474 0.01197402 +-0.005718534 4.140474 0.01197402 +0.0001755984 4.140474 0.01197402 +0.006069731 4.140474 0.01197402 +0.01197402 4.140474 0.01197402 +0.01903886 4.140474 0.01197402 +0.02852504 4.140474 0.01197402 +0.04126244 4.140474 0.01197402 +0.05836535 4.140474 0.01197402 +0.08132997 4.140474 0.01197402 +0.1121653 4.140474 0.01197402 +0.1535689 4.140474 0.01197402 +0.2091628 4.140474 0.01197402 +0.2838106 4.140474 0.01197402 +0.3840425 4.140474 0.01197402 +0.518627 4.140474 0.01197402 +0.6993381 4.140474 0.01197402 +0.9419845 4.140474 0.01197402 +1.267794 4.140474 0.01197402 +1.705268 4.140474 0.01197402 +2.292679 4.140474 0.01197402 +3.081414 4.140474 0.01197402 +4.140474 4.140474 0.01197402 +5.562508 4.140474 0.01197402 +7.471917 4.140474 0.01197402 +10.03574 4.140474 0.01197402 +13.47828 4.140474 0.01197402 +18.10068 4.140474 0.01197402 +24.30731 4.140474 0.01197402 +32.64117 4.140474 0.01197402 +43.83129 4.140474 0.01197402 +58.85664 4.140474 0.01197402 +-0.0175068 5.562508 0.01197402 +-0.01161267 5.562508 0.01197402 +-0.005718534 5.562508 0.01197402 +0.0001755984 5.562508 0.01197402 +0.006069731 5.562508 0.01197402 +0.01197402 5.562508 0.01197402 +0.01903886 5.562508 0.01197402 +0.02852504 5.562508 0.01197402 +0.04126244 5.562508 0.01197402 +0.05836535 5.562508 0.01197402 +0.08132997 5.562508 0.01197402 +0.1121653 5.562508 0.01197402 +0.1535689 5.562508 0.01197402 +0.2091628 5.562508 0.01197402 +0.2838106 5.562508 0.01197402 +0.3840425 5.562508 0.01197402 +0.518627 5.562508 0.01197402 +0.6993381 5.562508 0.01197402 +0.9419845 5.562508 0.01197402 +1.267794 5.562508 0.01197402 +1.705268 5.562508 0.01197402 +2.292679 5.562508 0.01197402 +3.081414 5.562508 0.01197402 +4.140474 5.562508 0.01197402 +5.562508 5.562508 0.01197402 +7.471917 5.562508 0.01197402 +10.03574 5.562508 0.01197402 +13.47828 5.562508 0.01197402 +18.10068 5.562508 0.01197402 +24.30731 5.562508 0.01197402 +32.64117 5.562508 0.01197402 +43.83129 5.562508 0.01197402 +58.85664 5.562508 0.01197402 +-0.0175068 7.471917 0.01197402 +-0.01161267 7.471917 0.01197402 +-0.005718534 7.471917 0.01197402 +0.0001755984 7.471917 0.01197402 +0.006069731 7.471917 0.01197402 +0.01197402 7.471917 0.01197402 +0.01903886 7.471917 0.01197402 +0.02852504 7.471917 0.01197402 +0.04126244 7.471917 0.01197402 +0.05836535 7.471917 0.01197402 +0.08132997 7.471917 0.01197402 +0.1121653 7.471917 0.01197402 +0.1535689 7.471917 0.01197402 +0.2091628 7.471917 0.01197402 +0.2838106 7.471917 0.01197402 +0.3840425 7.471917 0.01197402 +0.518627 7.471917 0.01197402 +0.6993381 7.471917 0.01197402 +0.9419845 7.471917 0.01197402 +1.267794 7.471917 0.01197402 +1.705268 7.471917 0.01197402 +2.292679 7.471917 0.01197402 +3.081414 7.471917 0.01197402 +4.140474 7.471917 0.01197402 +5.562508 7.471917 0.01197402 +7.471917 7.471917 0.01197402 +10.03574 7.471917 0.01197402 +13.47828 7.471917 0.01197402 +18.10068 7.471917 0.01197402 +24.30731 7.471917 0.01197402 +32.64117 7.471917 0.01197402 +43.83129 7.471917 0.01197402 +58.85664 7.471917 0.01197402 +-0.0175068 10.03574 0.01197402 +-0.01161267 10.03574 0.01197402 +-0.005718534 10.03574 0.01197402 +0.0001755984 10.03574 0.01197402 +0.006069731 10.03574 0.01197402 +0.01197402 10.03574 0.01197402 +0.01903886 10.03574 0.01197402 +0.02852504 10.03574 0.01197402 +0.04126244 10.03574 0.01197402 +0.05836535 10.03574 0.01197402 +0.08132997 10.03574 0.01197402 +0.1121653 10.03574 0.01197402 +0.1535689 10.03574 0.01197402 +0.2091628 10.03574 0.01197402 +0.2838106 10.03574 0.01197402 +0.3840425 10.03574 0.01197402 +0.518627 10.03574 0.01197402 +0.6993381 10.03574 0.01197402 +0.9419845 10.03574 0.01197402 +1.267794 10.03574 0.01197402 +1.705268 10.03574 0.01197402 +2.292679 10.03574 0.01197402 +3.081414 10.03574 0.01197402 +4.140474 10.03574 0.01197402 +5.562508 10.03574 0.01197402 +7.471917 10.03574 0.01197402 +10.03574 10.03574 0.01197402 +13.47828 10.03574 0.01197402 +18.10068 10.03574 0.01197402 +24.30731 10.03574 0.01197402 +32.64117 10.03574 0.01197402 +43.83129 10.03574 0.01197402 +58.85664 10.03574 0.01197402 +-0.0175068 13.47828 0.01197402 +-0.01161267 13.47828 0.01197402 +-0.005718534 13.47828 0.01197402 +0.0001755984 13.47828 0.01197402 +0.006069731 13.47828 0.01197402 +0.01197402 13.47828 0.01197402 +0.01903886 13.47828 0.01197402 +0.02852504 13.47828 0.01197402 +0.04126244 13.47828 0.01197402 +0.05836535 13.47828 0.01197402 +0.08132997 13.47828 0.01197402 +0.1121653 13.47828 0.01197402 +0.1535689 13.47828 0.01197402 +0.2091628 13.47828 0.01197402 +0.2838106 13.47828 0.01197402 +0.3840425 13.47828 0.01197402 +0.518627 13.47828 0.01197402 +0.6993381 13.47828 0.01197402 +0.9419845 13.47828 0.01197402 +1.267794 13.47828 0.01197402 +1.705268 13.47828 0.01197402 +2.292679 13.47828 0.01197402 +3.081414 13.47828 0.01197402 +4.140474 13.47828 0.01197402 +5.562508 13.47828 0.01197402 +7.471917 13.47828 0.01197402 +10.03574 13.47828 0.01197402 +13.47828 13.47828 0.01197402 +18.10068 13.47828 0.01197402 +24.30731 13.47828 0.01197402 +32.64117 13.47828 0.01197402 +43.83129 13.47828 0.01197402 +58.85664 13.47828 0.01197402 +-0.0175068 18.10068 0.01197402 +-0.01161267 18.10068 0.01197402 +-0.005718534 18.10068 0.01197402 +0.0001755984 18.10068 0.01197402 +0.006069731 18.10068 0.01197402 +0.01197402 18.10068 0.01197402 +0.01903886 18.10068 0.01197402 +0.02852504 18.10068 0.01197402 +0.04126244 18.10068 0.01197402 +0.05836535 18.10068 0.01197402 +0.08132997 18.10068 0.01197402 +0.1121653 18.10068 0.01197402 +0.1535689 18.10068 0.01197402 +0.2091628 18.10068 0.01197402 +0.2838106 18.10068 0.01197402 +0.3840425 18.10068 0.01197402 +0.518627 18.10068 0.01197402 +0.6993381 18.10068 0.01197402 +0.9419845 18.10068 0.01197402 +1.267794 18.10068 0.01197402 +1.705268 18.10068 0.01197402 +2.292679 18.10068 0.01197402 +3.081414 18.10068 0.01197402 +4.140474 18.10068 0.01197402 +5.562508 18.10068 0.01197402 +7.471917 18.10068 0.01197402 +10.03574 18.10068 0.01197402 +13.47828 18.10068 0.01197402 +18.10068 18.10068 0.01197402 +24.30731 18.10068 0.01197402 +32.64117 18.10068 0.01197402 +43.83129 18.10068 0.01197402 +58.85664 18.10068 0.01197402 +-0.0175068 24.30731 0.01197402 +-0.01161267 24.30731 0.01197402 +-0.005718534 24.30731 0.01197402 +0.0001755984 24.30731 0.01197402 +0.006069731 24.30731 0.01197402 +0.01197402 24.30731 0.01197402 +0.01903886 24.30731 0.01197402 +0.02852504 24.30731 0.01197402 +0.04126244 24.30731 0.01197402 +0.05836535 24.30731 0.01197402 +0.08132997 24.30731 0.01197402 +0.1121653 24.30731 0.01197402 +0.1535689 24.30731 0.01197402 +0.2091628 24.30731 0.01197402 +0.2838106 24.30731 0.01197402 +0.3840425 24.30731 0.01197402 +0.518627 24.30731 0.01197402 +0.6993381 24.30731 0.01197402 +0.9419845 24.30731 0.01197402 +1.267794 24.30731 0.01197402 +1.705268 24.30731 0.01197402 +2.292679 24.30731 0.01197402 +3.081414 24.30731 0.01197402 +4.140474 24.30731 0.01197402 +5.562508 24.30731 0.01197402 +7.471917 24.30731 0.01197402 +10.03574 24.30731 0.01197402 +13.47828 24.30731 0.01197402 +18.10068 24.30731 0.01197402 +24.30731 24.30731 0.01197402 +32.64117 24.30731 0.01197402 +43.83129 24.30731 0.01197402 +58.85664 24.30731 0.01197402 +-0.0175068 32.64117 0.01197402 +-0.01161267 32.64117 0.01197402 +-0.005718534 32.64117 0.01197402 +0.0001755984 32.64117 0.01197402 +0.006069731 32.64117 0.01197402 +0.01197402 32.64117 0.01197402 +0.01903886 32.64117 0.01197402 +0.02852504 32.64117 0.01197402 +0.04126244 32.64117 0.01197402 +0.05836535 32.64117 0.01197402 +0.08132997 32.64117 0.01197402 +0.1121653 32.64117 0.01197402 +0.1535689 32.64117 0.01197402 +0.2091628 32.64117 0.01197402 +0.2838106 32.64117 0.01197402 +0.3840425 32.64117 0.01197402 +0.518627 32.64117 0.01197402 +0.6993381 32.64117 0.01197402 +0.9419845 32.64117 0.01197402 +1.267794 32.64117 0.01197402 +1.705268 32.64117 0.01197402 +2.292679 32.64117 0.01197402 +3.081414 32.64117 0.01197402 +4.140474 32.64117 0.01197402 +5.562508 32.64117 0.01197402 +7.471917 32.64117 0.01197402 +10.03574 32.64117 0.01197402 +13.47828 32.64117 0.01197402 +18.10068 32.64117 0.01197402 +24.30731 32.64117 0.01197402 +32.64117 32.64117 0.01197402 +43.83129 32.64117 0.01197402 +58.85664 32.64117 0.01197402 +-0.0175068 43.83129 0.01197402 +-0.01161267 43.83129 0.01197402 +-0.005718534 43.83129 0.01197402 +0.0001755984 43.83129 0.01197402 +0.006069731 43.83129 0.01197402 +0.01197402 43.83129 0.01197402 +0.01903886 43.83129 0.01197402 +0.02852504 43.83129 0.01197402 +0.04126244 43.83129 0.01197402 +0.05836535 43.83129 0.01197402 +0.08132997 43.83129 0.01197402 +0.1121653 43.83129 0.01197402 +0.1535689 43.83129 0.01197402 +0.2091628 43.83129 0.01197402 +0.2838106 43.83129 0.01197402 +0.3840425 43.83129 0.01197402 +0.518627 43.83129 0.01197402 +0.6993381 43.83129 0.01197402 +0.9419845 43.83129 0.01197402 +1.267794 43.83129 0.01197402 +1.705268 43.83129 0.01197402 +2.292679 43.83129 0.01197402 +3.081414 43.83129 0.01197402 +4.140474 43.83129 0.01197402 +5.562508 43.83129 0.01197402 +7.471917 43.83129 0.01197402 +10.03574 43.83129 0.01197402 +13.47828 43.83129 0.01197402 +18.10068 43.83129 0.01197402 +24.30731 43.83129 0.01197402 +32.64117 43.83129 0.01197402 +43.83129 43.83129 0.01197402 +58.85664 43.83129 0.01197402 +-0.0175068 58.85664 0.01197402 +-0.01161267 58.85664 0.01197402 +-0.005718534 58.85664 0.01197402 +0.0001755984 58.85664 0.01197402 +0.006069731 58.85664 0.01197402 +0.01197402 58.85664 0.01197402 +0.01903886 58.85664 0.01197402 +0.02852504 58.85664 0.01197402 +0.04126244 58.85664 0.01197402 +0.05836535 58.85664 0.01197402 +0.08132997 58.85664 0.01197402 +0.1121653 58.85664 0.01197402 +0.1535689 58.85664 0.01197402 +0.2091628 58.85664 0.01197402 +0.2838106 58.85664 0.01197402 +0.3840425 58.85664 0.01197402 +0.518627 58.85664 0.01197402 +0.6993381 58.85664 0.01197402 +0.9419845 58.85664 0.01197402 +1.267794 58.85664 0.01197402 +1.705268 58.85664 0.01197402 +2.292679 58.85664 0.01197402 +3.081414 58.85664 0.01197402 +4.140474 58.85664 0.01197402 +5.562508 58.85664 0.01197402 +7.471917 58.85664 0.01197402 +10.03574 58.85664 0.01197402 +13.47828 58.85664 0.01197402 +18.10068 58.85664 0.01197402 +24.30731 58.85664 0.01197402 +32.64117 58.85664 0.01197402 +43.83129 58.85664 0.01197402 +58.85664 58.85664 0.01197402 +-0.0175068 -0.0175068 0.01903886 +-0.01161267 -0.0175068 0.01903886 +-0.005718534 -0.0175068 0.01903886 +0.0001755984 -0.0175068 0.01903886 +0.006069731 -0.0175068 0.01903886 +0.01197402 -0.0175068 0.01903886 +0.01903886 -0.0175068 0.01903886 +0.02852504 -0.0175068 0.01903886 +0.04126244 -0.0175068 0.01903886 +0.05836535 -0.0175068 0.01903886 +0.08132997 -0.0175068 0.01903886 +0.1121653 -0.0175068 0.01903886 +0.1535689 -0.0175068 0.01903886 +0.2091628 -0.0175068 0.01903886 +0.2838106 -0.0175068 0.01903886 +0.3840425 -0.0175068 0.01903886 +0.518627 -0.0175068 0.01903886 +0.6993381 -0.0175068 0.01903886 +0.9419845 -0.0175068 0.01903886 +1.267794 -0.0175068 0.01903886 +1.705268 -0.0175068 0.01903886 +2.292679 -0.0175068 0.01903886 +3.081414 -0.0175068 0.01903886 +4.140474 -0.0175068 0.01903886 +5.562508 -0.0175068 0.01903886 +7.471917 -0.0175068 0.01903886 +10.03574 -0.0175068 0.01903886 +13.47828 -0.0175068 0.01903886 +18.10068 -0.0175068 0.01903886 +24.30731 -0.0175068 0.01903886 +32.64117 -0.0175068 0.01903886 +43.83129 -0.0175068 0.01903886 +58.85664 -0.0175068 0.01903886 +-0.0175068 -0.01161267 0.01903886 +-0.01161267 -0.01161267 0.01903886 +-0.005718534 -0.01161267 0.01903886 +0.0001755984 -0.01161267 0.01903886 +0.006069731 -0.01161267 0.01903886 +0.01197402 -0.01161267 0.01903886 +0.01903886 -0.01161267 0.01903886 +0.02852504 -0.01161267 0.01903886 +0.04126244 -0.01161267 0.01903886 +0.05836535 -0.01161267 0.01903886 +0.08132997 -0.01161267 0.01903886 +0.1121653 -0.01161267 0.01903886 +0.1535689 -0.01161267 0.01903886 +0.2091628 -0.01161267 0.01903886 +0.2838106 -0.01161267 0.01903886 +0.3840425 -0.01161267 0.01903886 +0.518627 -0.01161267 0.01903886 +0.6993381 -0.01161267 0.01903886 +0.9419845 -0.01161267 0.01903886 +1.267794 -0.01161267 0.01903886 +1.705268 -0.01161267 0.01903886 +2.292679 -0.01161267 0.01903886 +3.081414 -0.01161267 0.01903886 +4.140474 -0.01161267 0.01903886 +5.562508 -0.01161267 0.01903886 +7.471917 -0.01161267 0.01903886 +10.03574 -0.01161267 0.01903886 +13.47828 -0.01161267 0.01903886 +18.10068 -0.01161267 0.01903886 +24.30731 -0.01161267 0.01903886 +32.64117 -0.01161267 0.01903886 +43.83129 -0.01161267 0.01903886 +58.85664 -0.01161267 0.01903886 +-0.0175068 -0.005718534 0.01903886 +-0.01161267 -0.005718534 0.01903886 +-0.005718534 -0.005718534 0.01903886 +0.0001755984 -0.005718534 0.01903886 +0.006069731 -0.005718534 0.01903886 +0.01197402 -0.005718534 0.01903886 +0.01903886 -0.005718534 0.01903886 +0.02852504 -0.005718534 0.01903886 +0.04126244 -0.005718534 0.01903886 +0.05836535 -0.005718534 0.01903886 +0.08132997 -0.005718534 0.01903886 +0.1121653 -0.005718534 0.01903886 +0.1535689 -0.005718534 0.01903886 +0.2091628 -0.005718534 0.01903886 +0.2838106 -0.005718534 0.01903886 +0.3840425 -0.005718534 0.01903886 +0.518627 -0.005718534 0.01903886 +0.6993381 -0.005718534 0.01903886 +0.9419845 -0.005718534 0.01903886 +1.267794 -0.005718534 0.01903886 +1.705268 -0.005718534 0.01903886 +2.292679 -0.005718534 0.01903886 +3.081414 -0.005718534 0.01903886 +4.140474 -0.005718534 0.01903886 +5.562508 -0.005718534 0.01903886 +7.471917 -0.005718534 0.01903886 +10.03574 -0.005718534 0.01903886 +13.47828 -0.005718534 0.01903886 +18.10068 -0.005718534 0.01903886 +24.30731 -0.005718534 0.01903886 +32.64117 -0.005718534 0.01903886 +43.83129 -0.005718534 0.01903886 +58.85664 -0.005718534 0.01903886 +-0.0175068 0.0001755984 0.01903886 +-0.01161267 0.0001755984 0.01903886 +-0.005718534 0.0001755984 0.01903886 +0.0001755984 0.0001755984 0.01903886 +0.006069731 0.0001755984 0.01903886 +0.01197402 0.0001755984 0.01903886 +0.01903886 0.0001755984 0.01903886 +0.02852504 0.0001755984 0.01903886 +0.04126244 0.0001755984 0.01903886 +0.05836535 0.0001755984 0.01903886 +0.08132997 0.0001755984 0.01903886 +0.1121653 0.0001755984 0.01903886 +0.1535689 0.0001755984 0.01903886 +0.2091628 0.0001755984 0.01903886 +0.2838106 0.0001755984 0.01903886 +0.3840425 0.0001755984 0.01903886 +0.518627 0.0001755984 0.01903886 +0.6993381 0.0001755984 0.01903886 +0.9419845 0.0001755984 0.01903886 +1.267794 0.0001755984 0.01903886 +1.705268 0.0001755984 0.01903886 +2.292679 0.0001755984 0.01903886 +3.081414 0.0001755984 0.01903886 +4.140474 0.0001755984 0.01903886 +5.562508 0.0001755984 0.01903886 +7.471917 0.0001755984 0.01903886 +10.03574 0.0001755984 0.01903886 +13.47828 0.0001755984 0.01903886 +18.10068 0.0001755984 0.01903886 +24.30731 0.0001755984 0.01903886 +32.64117 0.0001755984 0.01903886 +43.83129 0.0001755984 0.01903886 +58.85664 0.0001755984 0.01903886 +-0.0175068 0.006069731 0.01903886 +-0.01161267 0.006069731 0.01903886 +-0.005718534 0.006069731 0.01903886 +0.0001755984 0.006069731 0.01903886 +0.006069731 0.006069731 0.01903886 +0.01197402 0.006069731 0.01903886 +0.01903886 0.006069731 0.01903886 +0.02852504 0.006069731 0.01903886 +0.04126244 0.006069731 0.01903886 +0.05836535 0.006069731 0.01903886 +0.08132997 0.006069731 0.01903886 +0.1121653 0.006069731 0.01903886 +0.1535689 0.006069731 0.01903886 +0.2091628 0.006069731 0.01903886 +0.2838106 0.006069731 0.01903886 +0.3840425 0.006069731 0.01903886 +0.518627 0.006069731 0.01903886 +0.6993381 0.006069731 0.01903886 +0.9419845 0.006069731 0.01903886 +1.267794 0.006069731 0.01903886 +1.705268 0.006069731 0.01903886 +2.292679 0.006069731 0.01903886 +3.081414 0.006069731 0.01903886 +4.140474 0.006069731 0.01903886 +5.562508 0.006069731 0.01903886 +7.471917 0.006069731 0.01903886 +10.03574 0.006069731 0.01903886 +13.47828 0.006069731 0.01903886 +18.10068 0.006069731 0.01903886 +24.30731 0.006069731 0.01903886 +32.64117 0.006069731 0.01903886 +43.83129 0.006069731 0.01903886 +58.85664 0.006069731 0.01903886 +-0.0175068 0.01197402 0.01903886 +-0.01161267 0.01197402 0.01903886 +-0.005718534 0.01197402 0.01903886 +0.0001755984 0.01197402 0.01903886 +0.006069731 0.01197402 0.01903886 +0.01197402 0.01197402 0.01903886 +0.01903886 0.01197402 0.01903886 +0.02852504 0.01197402 0.01903886 +0.04126244 0.01197402 0.01903886 +0.05836535 0.01197402 0.01903886 +0.08132997 0.01197402 0.01903886 +0.1121653 0.01197402 0.01903886 +0.1535689 0.01197402 0.01903886 +0.2091628 0.01197402 0.01903886 +0.2838106 0.01197402 0.01903886 +0.3840425 0.01197402 0.01903886 +0.518627 0.01197402 0.01903886 +0.6993381 0.01197402 0.01903886 +0.9419845 0.01197402 0.01903886 +1.267794 0.01197402 0.01903886 +1.705268 0.01197402 0.01903886 +2.292679 0.01197402 0.01903886 +3.081414 0.01197402 0.01903886 +4.140474 0.01197402 0.01903886 +5.562508 0.01197402 0.01903886 +7.471917 0.01197402 0.01903886 +10.03574 0.01197402 0.01903886 +13.47828 0.01197402 0.01903886 +18.10068 0.01197402 0.01903886 +24.30731 0.01197402 0.01903886 +32.64117 0.01197402 0.01903886 +43.83129 0.01197402 0.01903886 +58.85664 0.01197402 0.01903886 +-0.0175068 0.01903886 0.01903886 +-0.01161267 0.01903886 0.01903886 +-0.005718534 0.01903886 0.01903886 +0.0001755984 0.01903886 0.01903886 +0.006069731 0.01903886 0.01903886 +0.01197402 0.01903886 0.01903886 +0.01903886 0.01903886 0.01903886 +0.02852504 0.01903886 0.01903886 +0.04126244 0.01903886 0.01903886 +0.05836535 0.01903886 0.01903886 +0.08132997 0.01903886 0.01903886 +0.1121653 0.01903886 0.01903886 +0.1535689 0.01903886 0.01903886 +0.2091628 0.01903886 0.01903886 +0.2838106 0.01903886 0.01903886 +0.3840425 0.01903886 0.01903886 +0.518627 0.01903886 0.01903886 +0.6993381 0.01903886 0.01903886 +0.9419845 0.01903886 0.01903886 +1.267794 0.01903886 0.01903886 +1.705268 0.01903886 0.01903886 +2.292679 0.01903886 0.01903886 +3.081414 0.01903886 0.01903886 +4.140474 0.01903886 0.01903886 +5.562508 0.01903886 0.01903886 +7.471917 0.01903886 0.01903886 +10.03574 0.01903886 0.01903886 +13.47828 0.01903886 0.01903886 +18.10068 0.01903886 0.01903886 +24.30731 0.01903886 0.01903886 +32.64117 0.01903886 0.01903886 +43.83129 0.01903886 0.01903886 +58.85664 0.01903886 0.01903886 +-0.0175068 0.02852504 0.01903886 +-0.01161267 0.02852504 0.01903886 +-0.005718534 0.02852504 0.01903886 +0.0001755984 0.02852504 0.01903886 +0.006069731 0.02852504 0.01903886 +0.01197402 0.02852504 0.01903886 +0.01903886 0.02852504 0.01903886 +0.02852504 0.02852504 0.01903886 +0.04126244 0.02852504 0.01903886 +0.05836535 0.02852504 0.01903886 +0.08132997 0.02852504 0.01903886 +0.1121653 0.02852504 0.01903886 +0.1535689 0.02852504 0.01903886 +0.2091628 0.02852504 0.01903886 +0.2838106 0.02852504 0.01903886 +0.3840425 0.02852504 0.01903886 +0.518627 0.02852504 0.01903886 +0.6993381 0.02852504 0.01903886 +0.9419845 0.02852504 0.01903886 +1.267794 0.02852504 0.01903886 +1.705268 0.02852504 0.01903886 +2.292679 0.02852504 0.01903886 +3.081414 0.02852504 0.01903886 +4.140474 0.02852504 0.01903886 +5.562508 0.02852504 0.01903886 +7.471917 0.02852504 0.01903886 +10.03574 0.02852504 0.01903886 +13.47828 0.02852504 0.01903886 +18.10068 0.02852504 0.01903886 +24.30731 0.02852504 0.01903886 +32.64117 0.02852504 0.01903886 +43.83129 0.02852504 0.01903886 +58.85664 0.02852504 0.01903886 +-0.0175068 0.04126244 0.01903886 +-0.01161267 0.04126244 0.01903886 +-0.005718534 0.04126244 0.01903886 +0.0001755984 0.04126244 0.01903886 +0.006069731 0.04126244 0.01903886 +0.01197402 0.04126244 0.01903886 +0.01903886 0.04126244 0.01903886 +0.02852504 0.04126244 0.01903886 +0.04126244 0.04126244 0.01903886 +0.05836535 0.04126244 0.01903886 +0.08132997 0.04126244 0.01903886 +0.1121653 0.04126244 0.01903886 +0.1535689 0.04126244 0.01903886 +0.2091628 0.04126244 0.01903886 +0.2838106 0.04126244 0.01903886 +0.3840425 0.04126244 0.01903886 +0.518627 0.04126244 0.01903886 +0.6993381 0.04126244 0.01903886 +0.9419845 0.04126244 0.01903886 +1.267794 0.04126244 0.01903886 +1.705268 0.04126244 0.01903886 +2.292679 0.04126244 0.01903886 +3.081414 0.04126244 0.01903886 +4.140474 0.04126244 0.01903886 +5.562508 0.04126244 0.01903886 +7.471917 0.04126244 0.01903886 +10.03574 0.04126244 0.01903886 +13.47828 0.04126244 0.01903886 +18.10068 0.04126244 0.01903886 +24.30731 0.04126244 0.01903886 +32.64117 0.04126244 0.01903886 +43.83129 0.04126244 0.01903886 +58.85664 0.04126244 0.01903886 +-0.0175068 0.05836535 0.01903886 +-0.01161267 0.05836535 0.01903886 +-0.005718534 0.05836535 0.01903886 +0.0001755984 0.05836535 0.01903886 +0.006069731 0.05836535 0.01903886 +0.01197402 0.05836535 0.01903886 +0.01903886 0.05836535 0.01903886 +0.02852504 0.05836535 0.01903886 +0.04126244 0.05836535 0.01903886 +0.05836535 0.05836535 0.01903886 +0.08132997 0.05836535 0.01903886 +0.1121653 0.05836535 0.01903886 +0.1535689 0.05836535 0.01903886 +0.2091628 0.05836535 0.01903886 +0.2838106 0.05836535 0.01903886 +0.3840425 0.05836535 0.01903886 +0.518627 0.05836535 0.01903886 +0.6993381 0.05836535 0.01903886 +0.9419845 0.05836535 0.01903886 +1.267794 0.05836535 0.01903886 +1.705268 0.05836535 0.01903886 +2.292679 0.05836535 0.01903886 +3.081414 0.05836535 0.01903886 +4.140474 0.05836535 0.01903886 +5.562508 0.05836535 0.01903886 +7.471917 0.05836535 0.01903886 +10.03574 0.05836535 0.01903886 +13.47828 0.05836535 0.01903886 +18.10068 0.05836535 0.01903886 +24.30731 0.05836535 0.01903886 +32.64117 0.05836535 0.01903886 +43.83129 0.05836535 0.01903886 +58.85664 0.05836535 0.01903886 +-0.0175068 0.08132997 0.01903886 +-0.01161267 0.08132997 0.01903886 +-0.005718534 0.08132997 0.01903886 +0.0001755984 0.08132997 0.01903886 +0.006069731 0.08132997 0.01903886 +0.01197402 0.08132997 0.01903886 +0.01903886 0.08132997 0.01903886 +0.02852504 0.08132997 0.01903886 +0.04126244 0.08132997 0.01903886 +0.05836535 0.08132997 0.01903886 +0.08132997 0.08132997 0.01903886 +0.1121653 0.08132997 0.01903886 +0.1535689 0.08132997 0.01903886 +0.2091628 0.08132997 0.01903886 +0.2838106 0.08132997 0.01903886 +0.3840425 0.08132997 0.01903886 +0.518627 0.08132997 0.01903886 +0.6993381 0.08132997 0.01903886 +0.9419845 0.08132997 0.01903886 +1.267794 0.08132997 0.01903886 +1.705268 0.08132997 0.01903886 +2.292679 0.08132997 0.01903886 +3.081414 0.08132997 0.01903886 +4.140474 0.08132997 0.01903886 +5.562508 0.08132997 0.01903886 +7.471917 0.08132997 0.01903886 +10.03574 0.08132997 0.01903886 +13.47828 0.08132997 0.01903886 +18.10068 0.08132997 0.01903886 +24.30731 0.08132997 0.01903886 +32.64117 0.08132997 0.01903886 +43.83129 0.08132997 0.01903886 +58.85664 0.08132997 0.01903886 +-0.0175068 0.1121653 0.01903886 +-0.01161267 0.1121653 0.01903886 +-0.005718534 0.1121653 0.01903886 +0.0001755984 0.1121653 0.01903886 +0.006069731 0.1121653 0.01903886 +0.01197402 0.1121653 0.01903886 +0.01903886 0.1121653 0.01903886 +0.02852504 0.1121653 0.01903886 +0.04126244 0.1121653 0.01903886 +0.05836535 0.1121653 0.01903886 +0.08132997 0.1121653 0.01903886 +0.1121653 0.1121653 0.01903886 +0.1535689 0.1121653 0.01903886 +0.2091628 0.1121653 0.01903886 +0.2838106 0.1121653 0.01903886 +0.3840425 0.1121653 0.01903886 +0.518627 0.1121653 0.01903886 +0.6993381 0.1121653 0.01903886 +0.9419845 0.1121653 0.01903886 +1.267794 0.1121653 0.01903886 +1.705268 0.1121653 0.01903886 +2.292679 0.1121653 0.01903886 +3.081414 0.1121653 0.01903886 +4.140474 0.1121653 0.01903886 +5.562508 0.1121653 0.01903886 +7.471917 0.1121653 0.01903886 +10.03574 0.1121653 0.01903886 +13.47828 0.1121653 0.01903886 +18.10068 0.1121653 0.01903886 +24.30731 0.1121653 0.01903886 +32.64117 0.1121653 0.01903886 +43.83129 0.1121653 0.01903886 +58.85664 0.1121653 0.01903886 +-0.0175068 0.1535689 0.01903886 +-0.01161267 0.1535689 0.01903886 +-0.005718534 0.1535689 0.01903886 +0.0001755984 0.1535689 0.01903886 +0.006069731 0.1535689 0.01903886 +0.01197402 0.1535689 0.01903886 +0.01903886 0.1535689 0.01903886 +0.02852504 0.1535689 0.01903886 +0.04126244 0.1535689 0.01903886 +0.05836535 0.1535689 0.01903886 +0.08132997 0.1535689 0.01903886 +0.1121653 0.1535689 0.01903886 +0.1535689 0.1535689 0.01903886 +0.2091628 0.1535689 0.01903886 +0.2838106 0.1535689 0.01903886 +0.3840425 0.1535689 0.01903886 +0.518627 0.1535689 0.01903886 +0.6993381 0.1535689 0.01903886 +0.9419845 0.1535689 0.01903886 +1.267794 0.1535689 0.01903886 +1.705268 0.1535689 0.01903886 +2.292679 0.1535689 0.01903886 +3.081414 0.1535689 0.01903886 +4.140474 0.1535689 0.01903886 +5.562508 0.1535689 0.01903886 +7.471917 0.1535689 0.01903886 +10.03574 0.1535689 0.01903886 +13.47828 0.1535689 0.01903886 +18.10068 0.1535689 0.01903886 +24.30731 0.1535689 0.01903886 +32.64117 0.1535689 0.01903886 +43.83129 0.1535689 0.01903886 +58.85664 0.1535689 0.01903886 +-0.0175068 0.2091628 0.01903886 +-0.01161267 0.2091628 0.01903886 +-0.005718534 0.2091628 0.01903886 +0.0001755984 0.2091628 0.01903886 +0.006069731 0.2091628 0.01903886 +0.01197402 0.2091628 0.01903886 +0.01903886 0.2091628 0.01903886 +0.02852504 0.2091628 0.01903886 +0.04126244 0.2091628 0.01903886 +0.05836535 0.2091628 0.01903886 +0.08132997 0.2091628 0.01903886 +0.1121653 0.2091628 0.01903886 +0.1535689 0.2091628 0.01903886 +0.2091628 0.2091628 0.01903886 +0.2838106 0.2091628 0.01903886 +0.3840425 0.2091628 0.01903886 +0.518627 0.2091628 0.01903886 +0.6993381 0.2091628 0.01903886 +0.9419845 0.2091628 0.01903886 +1.267794 0.2091628 0.01903886 +1.705268 0.2091628 0.01903886 +2.292679 0.2091628 0.01903886 +3.081414 0.2091628 0.01903886 +4.140474 0.2091628 0.01903886 +5.562508 0.2091628 0.01903886 +7.471917 0.2091628 0.01903886 +10.03574 0.2091628 0.01903886 +13.47828 0.2091628 0.01903886 +18.10068 0.2091628 0.01903886 +24.30731 0.2091628 0.01903886 +32.64117 0.2091628 0.01903886 +43.83129 0.2091628 0.01903886 +58.85664 0.2091628 0.01903886 +-0.0175068 0.2838106 0.01903886 +-0.01161267 0.2838106 0.01903886 +-0.005718534 0.2838106 0.01903886 +0.0001755984 0.2838106 0.01903886 +0.006069731 0.2838106 0.01903886 +0.01197402 0.2838106 0.01903886 +0.01903886 0.2838106 0.01903886 +0.02852504 0.2838106 0.01903886 +0.04126244 0.2838106 0.01903886 +0.05836535 0.2838106 0.01903886 +0.08132997 0.2838106 0.01903886 +0.1121653 0.2838106 0.01903886 +0.1535689 0.2838106 0.01903886 +0.2091628 0.2838106 0.01903886 +0.2838106 0.2838106 0.01903886 +0.3840425 0.2838106 0.01903886 +0.518627 0.2838106 0.01903886 +0.6993381 0.2838106 0.01903886 +0.9419845 0.2838106 0.01903886 +1.267794 0.2838106 0.01903886 +1.705268 0.2838106 0.01903886 +2.292679 0.2838106 0.01903886 +3.081414 0.2838106 0.01903886 +4.140474 0.2838106 0.01903886 +5.562508 0.2838106 0.01903886 +7.471917 0.2838106 0.01903886 +10.03574 0.2838106 0.01903886 +13.47828 0.2838106 0.01903886 +18.10068 0.2838106 0.01903886 +24.30731 0.2838106 0.01903886 +32.64117 0.2838106 0.01903886 +43.83129 0.2838106 0.01903886 +58.85664 0.2838106 0.01903886 +-0.0175068 0.3840425 0.01903886 +-0.01161267 0.3840425 0.01903886 +-0.005718534 0.3840425 0.01903886 +0.0001755984 0.3840425 0.01903886 +0.006069731 0.3840425 0.01903886 +0.01197402 0.3840425 0.01903886 +0.01903886 0.3840425 0.01903886 +0.02852504 0.3840425 0.01903886 +0.04126244 0.3840425 0.01903886 +0.05836535 0.3840425 0.01903886 +0.08132997 0.3840425 0.01903886 +0.1121653 0.3840425 0.01903886 +0.1535689 0.3840425 0.01903886 +0.2091628 0.3840425 0.01903886 +0.2838106 0.3840425 0.01903886 +0.3840425 0.3840425 0.01903886 +0.518627 0.3840425 0.01903886 +0.6993381 0.3840425 0.01903886 +0.9419845 0.3840425 0.01903886 +1.267794 0.3840425 0.01903886 +1.705268 0.3840425 0.01903886 +2.292679 0.3840425 0.01903886 +3.081414 0.3840425 0.01903886 +4.140474 0.3840425 0.01903886 +5.562508 0.3840425 0.01903886 +7.471917 0.3840425 0.01903886 +10.03574 0.3840425 0.01903886 +13.47828 0.3840425 0.01903886 +18.10068 0.3840425 0.01903886 +24.30731 0.3840425 0.01903886 +32.64117 0.3840425 0.01903886 +43.83129 0.3840425 0.01903886 +58.85664 0.3840425 0.01903886 +-0.0175068 0.518627 0.01903886 +-0.01161267 0.518627 0.01903886 +-0.005718534 0.518627 0.01903886 +0.0001755984 0.518627 0.01903886 +0.006069731 0.518627 0.01903886 +0.01197402 0.518627 0.01903886 +0.01903886 0.518627 0.01903886 +0.02852504 0.518627 0.01903886 +0.04126244 0.518627 0.01903886 +0.05836535 0.518627 0.01903886 +0.08132997 0.518627 0.01903886 +0.1121653 0.518627 0.01903886 +0.1535689 0.518627 0.01903886 +0.2091628 0.518627 0.01903886 +0.2838106 0.518627 0.01903886 +0.3840425 0.518627 0.01903886 +0.518627 0.518627 0.01903886 +0.6993381 0.518627 0.01903886 +0.9419845 0.518627 0.01903886 +1.267794 0.518627 0.01903886 +1.705268 0.518627 0.01903886 +2.292679 0.518627 0.01903886 +3.081414 0.518627 0.01903886 +4.140474 0.518627 0.01903886 +5.562508 0.518627 0.01903886 +7.471917 0.518627 0.01903886 +10.03574 0.518627 0.01903886 +13.47828 0.518627 0.01903886 +18.10068 0.518627 0.01903886 +24.30731 0.518627 0.01903886 +32.64117 0.518627 0.01903886 +43.83129 0.518627 0.01903886 +58.85664 0.518627 0.01903886 +-0.0175068 0.6993381 0.01903886 +-0.01161267 0.6993381 0.01903886 +-0.005718534 0.6993381 0.01903886 +0.0001755984 0.6993381 0.01903886 +0.006069731 0.6993381 0.01903886 +0.01197402 0.6993381 0.01903886 +0.01903886 0.6993381 0.01903886 +0.02852504 0.6993381 0.01903886 +0.04126244 0.6993381 0.01903886 +0.05836535 0.6993381 0.01903886 +0.08132997 0.6993381 0.01903886 +0.1121653 0.6993381 0.01903886 +0.1535689 0.6993381 0.01903886 +0.2091628 0.6993381 0.01903886 +0.2838106 0.6993381 0.01903886 +0.3840425 0.6993381 0.01903886 +0.518627 0.6993381 0.01903886 +0.6993381 0.6993381 0.01903886 +0.9419845 0.6993381 0.01903886 +1.267794 0.6993381 0.01903886 +1.705268 0.6993381 0.01903886 +2.292679 0.6993381 0.01903886 +3.081414 0.6993381 0.01903886 +4.140474 0.6993381 0.01903886 +5.562508 0.6993381 0.01903886 +7.471917 0.6993381 0.01903886 +10.03574 0.6993381 0.01903886 +13.47828 0.6993381 0.01903886 +18.10068 0.6993381 0.01903886 +24.30731 0.6993381 0.01903886 +32.64117 0.6993381 0.01903886 +43.83129 0.6993381 0.01903886 +58.85664 0.6993381 0.01903886 +-0.0175068 0.9419845 0.01903886 +-0.01161267 0.9419845 0.01903886 +-0.005718534 0.9419845 0.01903886 +0.0001755984 0.9419845 0.01903886 +0.006069731 0.9419845 0.01903886 +0.01197402 0.9419845 0.01903886 +0.01903886 0.9419845 0.01903886 +0.02852504 0.9419845 0.01903886 +0.04126244 0.9419845 0.01903886 +0.05836535 0.9419845 0.01903886 +0.08132997 0.9419845 0.01903886 +0.1121653 0.9419845 0.01903886 +0.1535689 0.9419845 0.01903886 +0.2091628 0.9419845 0.01903886 +0.2838106 0.9419845 0.01903886 +0.3840425 0.9419845 0.01903886 +0.518627 0.9419845 0.01903886 +0.6993381 0.9419845 0.01903886 +0.9419845 0.9419845 0.01903886 +1.267794 0.9419845 0.01903886 +1.705268 0.9419845 0.01903886 +2.292679 0.9419845 0.01903886 +3.081414 0.9419845 0.01903886 +4.140474 0.9419845 0.01903886 +5.562508 0.9419845 0.01903886 +7.471917 0.9419845 0.01903886 +10.03574 0.9419845 0.01903886 +13.47828 0.9419845 0.01903886 +18.10068 0.9419845 0.01903886 +24.30731 0.9419845 0.01903886 +32.64117 0.9419845 0.01903886 +43.83129 0.9419845 0.01903886 +58.85664 0.9419845 0.01903886 +-0.0175068 1.267794 0.01903886 +-0.01161267 1.267794 0.01903886 +-0.005718534 1.267794 0.01903886 +0.0001755984 1.267794 0.01903886 +0.006069731 1.267794 0.01903886 +0.01197402 1.267794 0.01903886 +0.01903886 1.267794 0.01903886 +0.02852504 1.267794 0.01903886 +0.04126244 1.267794 0.01903886 +0.05836535 1.267794 0.01903886 +0.08132997 1.267794 0.01903886 +0.1121653 1.267794 0.01903886 +0.1535689 1.267794 0.01903886 +0.2091628 1.267794 0.01903886 +0.2838106 1.267794 0.01903886 +0.3840425 1.267794 0.01903886 +0.518627 1.267794 0.01903886 +0.6993381 1.267794 0.01903886 +0.9419845 1.267794 0.01903886 +1.267794 1.267794 0.01903886 +1.705268 1.267794 0.01903886 +2.292679 1.267794 0.01903886 +3.081414 1.267794 0.01903886 +4.140474 1.267794 0.01903886 +5.562508 1.267794 0.01903886 +7.471917 1.267794 0.01903886 +10.03574 1.267794 0.01903886 +13.47828 1.267794 0.01903886 +18.10068 1.267794 0.01903886 +24.30731 1.267794 0.01903886 +32.64117 1.267794 0.01903886 +43.83129 1.267794 0.01903886 +58.85664 1.267794 0.01903886 +-0.0175068 1.705268 0.01903886 +-0.01161267 1.705268 0.01903886 +-0.005718534 1.705268 0.01903886 +0.0001755984 1.705268 0.01903886 +0.006069731 1.705268 0.01903886 +0.01197402 1.705268 0.01903886 +0.01903886 1.705268 0.01903886 +0.02852504 1.705268 0.01903886 +0.04126244 1.705268 0.01903886 +0.05836535 1.705268 0.01903886 +0.08132997 1.705268 0.01903886 +0.1121653 1.705268 0.01903886 +0.1535689 1.705268 0.01903886 +0.2091628 1.705268 0.01903886 +0.2838106 1.705268 0.01903886 +0.3840425 1.705268 0.01903886 +0.518627 1.705268 0.01903886 +0.6993381 1.705268 0.01903886 +0.9419845 1.705268 0.01903886 +1.267794 1.705268 0.01903886 +1.705268 1.705268 0.01903886 +2.292679 1.705268 0.01903886 +3.081414 1.705268 0.01903886 +4.140474 1.705268 0.01903886 +5.562508 1.705268 0.01903886 +7.471917 1.705268 0.01903886 +10.03574 1.705268 0.01903886 +13.47828 1.705268 0.01903886 +18.10068 1.705268 0.01903886 +24.30731 1.705268 0.01903886 +32.64117 1.705268 0.01903886 +43.83129 1.705268 0.01903886 +58.85664 1.705268 0.01903886 +-0.0175068 2.292679 0.01903886 +-0.01161267 2.292679 0.01903886 +-0.005718534 2.292679 0.01903886 +0.0001755984 2.292679 0.01903886 +0.006069731 2.292679 0.01903886 +0.01197402 2.292679 0.01903886 +0.01903886 2.292679 0.01903886 +0.02852504 2.292679 0.01903886 +0.04126244 2.292679 0.01903886 +0.05836535 2.292679 0.01903886 +0.08132997 2.292679 0.01903886 +0.1121653 2.292679 0.01903886 +0.1535689 2.292679 0.01903886 +0.2091628 2.292679 0.01903886 +0.2838106 2.292679 0.01903886 +0.3840425 2.292679 0.01903886 +0.518627 2.292679 0.01903886 +0.6993381 2.292679 0.01903886 +0.9419845 2.292679 0.01903886 +1.267794 2.292679 0.01903886 +1.705268 2.292679 0.01903886 +2.292679 2.292679 0.01903886 +3.081414 2.292679 0.01903886 +4.140474 2.292679 0.01903886 +5.562508 2.292679 0.01903886 +7.471917 2.292679 0.01903886 +10.03574 2.292679 0.01903886 +13.47828 2.292679 0.01903886 +18.10068 2.292679 0.01903886 +24.30731 2.292679 0.01903886 +32.64117 2.292679 0.01903886 +43.83129 2.292679 0.01903886 +58.85664 2.292679 0.01903886 +-0.0175068 3.081414 0.01903886 +-0.01161267 3.081414 0.01903886 +-0.005718534 3.081414 0.01903886 +0.0001755984 3.081414 0.01903886 +0.006069731 3.081414 0.01903886 +0.01197402 3.081414 0.01903886 +0.01903886 3.081414 0.01903886 +0.02852504 3.081414 0.01903886 +0.04126244 3.081414 0.01903886 +0.05836535 3.081414 0.01903886 +0.08132997 3.081414 0.01903886 +0.1121653 3.081414 0.01903886 +0.1535689 3.081414 0.01903886 +0.2091628 3.081414 0.01903886 +0.2838106 3.081414 0.01903886 +0.3840425 3.081414 0.01903886 +0.518627 3.081414 0.01903886 +0.6993381 3.081414 0.01903886 +0.9419845 3.081414 0.01903886 +1.267794 3.081414 0.01903886 +1.705268 3.081414 0.01903886 +2.292679 3.081414 0.01903886 +3.081414 3.081414 0.01903886 +4.140474 3.081414 0.01903886 +5.562508 3.081414 0.01903886 +7.471917 3.081414 0.01903886 +10.03574 3.081414 0.01903886 +13.47828 3.081414 0.01903886 +18.10068 3.081414 0.01903886 +24.30731 3.081414 0.01903886 +32.64117 3.081414 0.01903886 +43.83129 3.081414 0.01903886 +58.85664 3.081414 0.01903886 +-0.0175068 4.140474 0.01903886 +-0.01161267 4.140474 0.01903886 +-0.005718534 4.140474 0.01903886 +0.0001755984 4.140474 0.01903886 +0.006069731 4.140474 0.01903886 +0.01197402 4.140474 0.01903886 +0.01903886 4.140474 0.01903886 +0.02852504 4.140474 0.01903886 +0.04126244 4.140474 0.01903886 +0.05836535 4.140474 0.01903886 +0.08132997 4.140474 0.01903886 +0.1121653 4.140474 0.01903886 +0.1535689 4.140474 0.01903886 +0.2091628 4.140474 0.01903886 +0.2838106 4.140474 0.01903886 +0.3840425 4.140474 0.01903886 +0.518627 4.140474 0.01903886 +0.6993381 4.140474 0.01903886 +0.9419845 4.140474 0.01903886 +1.267794 4.140474 0.01903886 +1.705268 4.140474 0.01903886 +2.292679 4.140474 0.01903886 +3.081414 4.140474 0.01903886 +4.140474 4.140474 0.01903886 +5.562508 4.140474 0.01903886 +7.471917 4.140474 0.01903886 +10.03574 4.140474 0.01903886 +13.47828 4.140474 0.01903886 +18.10068 4.140474 0.01903886 +24.30731 4.140474 0.01903886 +32.64117 4.140474 0.01903886 +43.83129 4.140474 0.01903886 +58.85664 4.140474 0.01903886 +-0.0175068 5.562508 0.01903886 +-0.01161267 5.562508 0.01903886 +-0.005718534 5.562508 0.01903886 +0.0001755984 5.562508 0.01903886 +0.006069731 5.562508 0.01903886 +0.01197402 5.562508 0.01903886 +0.01903886 5.562508 0.01903886 +0.02852504 5.562508 0.01903886 +0.04126244 5.562508 0.01903886 +0.05836535 5.562508 0.01903886 +0.08132997 5.562508 0.01903886 +0.1121653 5.562508 0.01903886 +0.1535689 5.562508 0.01903886 +0.2091628 5.562508 0.01903886 +0.2838106 5.562508 0.01903886 +0.3840425 5.562508 0.01903886 +0.518627 5.562508 0.01903886 +0.6993381 5.562508 0.01903886 +0.9419845 5.562508 0.01903886 +1.267794 5.562508 0.01903886 +1.705268 5.562508 0.01903886 +2.292679 5.562508 0.01903886 +3.081414 5.562508 0.01903886 +4.140474 5.562508 0.01903886 +5.562508 5.562508 0.01903886 +7.471917 5.562508 0.01903886 +10.03574 5.562508 0.01903886 +13.47828 5.562508 0.01903886 +18.10068 5.562508 0.01903886 +24.30731 5.562508 0.01903886 +32.64117 5.562508 0.01903886 +43.83129 5.562508 0.01903886 +58.85664 5.562508 0.01903886 +-0.0175068 7.471917 0.01903886 +-0.01161267 7.471917 0.01903886 +-0.005718534 7.471917 0.01903886 +0.0001755984 7.471917 0.01903886 +0.006069731 7.471917 0.01903886 +0.01197402 7.471917 0.01903886 +0.01903886 7.471917 0.01903886 +0.02852504 7.471917 0.01903886 +0.04126244 7.471917 0.01903886 +0.05836535 7.471917 0.01903886 +0.08132997 7.471917 0.01903886 +0.1121653 7.471917 0.01903886 +0.1535689 7.471917 0.01903886 +0.2091628 7.471917 0.01903886 +0.2838106 7.471917 0.01903886 +0.3840425 7.471917 0.01903886 +0.518627 7.471917 0.01903886 +0.6993381 7.471917 0.01903886 +0.9419845 7.471917 0.01903886 +1.267794 7.471917 0.01903886 +1.705268 7.471917 0.01903886 +2.292679 7.471917 0.01903886 +3.081414 7.471917 0.01903886 +4.140474 7.471917 0.01903886 +5.562508 7.471917 0.01903886 +7.471917 7.471917 0.01903886 +10.03574 7.471917 0.01903886 +13.47828 7.471917 0.01903886 +18.10068 7.471917 0.01903886 +24.30731 7.471917 0.01903886 +32.64117 7.471917 0.01903886 +43.83129 7.471917 0.01903886 +58.85664 7.471917 0.01903886 +-0.0175068 10.03574 0.01903886 +-0.01161267 10.03574 0.01903886 +-0.005718534 10.03574 0.01903886 +0.0001755984 10.03574 0.01903886 +0.006069731 10.03574 0.01903886 +0.01197402 10.03574 0.01903886 +0.01903886 10.03574 0.01903886 +0.02852504 10.03574 0.01903886 +0.04126244 10.03574 0.01903886 +0.05836535 10.03574 0.01903886 +0.08132997 10.03574 0.01903886 +0.1121653 10.03574 0.01903886 +0.1535689 10.03574 0.01903886 +0.2091628 10.03574 0.01903886 +0.2838106 10.03574 0.01903886 +0.3840425 10.03574 0.01903886 +0.518627 10.03574 0.01903886 +0.6993381 10.03574 0.01903886 +0.9419845 10.03574 0.01903886 +1.267794 10.03574 0.01903886 +1.705268 10.03574 0.01903886 +2.292679 10.03574 0.01903886 +3.081414 10.03574 0.01903886 +4.140474 10.03574 0.01903886 +5.562508 10.03574 0.01903886 +7.471917 10.03574 0.01903886 +10.03574 10.03574 0.01903886 +13.47828 10.03574 0.01903886 +18.10068 10.03574 0.01903886 +24.30731 10.03574 0.01903886 +32.64117 10.03574 0.01903886 +43.83129 10.03574 0.01903886 +58.85664 10.03574 0.01903886 +-0.0175068 13.47828 0.01903886 +-0.01161267 13.47828 0.01903886 +-0.005718534 13.47828 0.01903886 +0.0001755984 13.47828 0.01903886 +0.006069731 13.47828 0.01903886 +0.01197402 13.47828 0.01903886 +0.01903886 13.47828 0.01903886 +0.02852504 13.47828 0.01903886 +0.04126244 13.47828 0.01903886 +0.05836535 13.47828 0.01903886 +0.08132997 13.47828 0.01903886 +0.1121653 13.47828 0.01903886 +0.1535689 13.47828 0.01903886 +0.2091628 13.47828 0.01903886 +0.2838106 13.47828 0.01903886 +0.3840425 13.47828 0.01903886 +0.518627 13.47828 0.01903886 +0.6993381 13.47828 0.01903886 +0.9419845 13.47828 0.01903886 +1.267794 13.47828 0.01903886 +1.705268 13.47828 0.01903886 +2.292679 13.47828 0.01903886 +3.081414 13.47828 0.01903886 +4.140474 13.47828 0.01903886 +5.562508 13.47828 0.01903886 +7.471917 13.47828 0.01903886 +10.03574 13.47828 0.01903886 +13.47828 13.47828 0.01903886 +18.10068 13.47828 0.01903886 +24.30731 13.47828 0.01903886 +32.64117 13.47828 0.01903886 +43.83129 13.47828 0.01903886 +58.85664 13.47828 0.01903886 +-0.0175068 18.10068 0.01903886 +-0.01161267 18.10068 0.01903886 +-0.005718534 18.10068 0.01903886 +0.0001755984 18.10068 0.01903886 +0.006069731 18.10068 0.01903886 +0.01197402 18.10068 0.01903886 +0.01903886 18.10068 0.01903886 +0.02852504 18.10068 0.01903886 +0.04126244 18.10068 0.01903886 +0.05836535 18.10068 0.01903886 +0.08132997 18.10068 0.01903886 +0.1121653 18.10068 0.01903886 +0.1535689 18.10068 0.01903886 +0.2091628 18.10068 0.01903886 +0.2838106 18.10068 0.01903886 +0.3840425 18.10068 0.01903886 +0.518627 18.10068 0.01903886 +0.6993381 18.10068 0.01903886 +0.9419845 18.10068 0.01903886 +1.267794 18.10068 0.01903886 +1.705268 18.10068 0.01903886 +2.292679 18.10068 0.01903886 +3.081414 18.10068 0.01903886 +4.140474 18.10068 0.01903886 +5.562508 18.10068 0.01903886 +7.471917 18.10068 0.01903886 +10.03574 18.10068 0.01903886 +13.47828 18.10068 0.01903886 +18.10068 18.10068 0.01903886 +24.30731 18.10068 0.01903886 +32.64117 18.10068 0.01903886 +43.83129 18.10068 0.01903886 +58.85664 18.10068 0.01903886 +-0.0175068 24.30731 0.01903886 +-0.01161267 24.30731 0.01903886 +-0.005718534 24.30731 0.01903886 +0.0001755984 24.30731 0.01903886 +0.006069731 24.30731 0.01903886 +0.01197402 24.30731 0.01903886 +0.01903886 24.30731 0.01903886 +0.02852504 24.30731 0.01903886 +0.04126244 24.30731 0.01903886 +0.05836535 24.30731 0.01903886 +0.08132997 24.30731 0.01903886 +0.1121653 24.30731 0.01903886 +0.1535689 24.30731 0.01903886 +0.2091628 24.30731 0.01903886 +0.2838106 24.30731 0.01903886 +0.3840425 24.30731 0.01903886 +0.518627 24.30731 0.01903886 +0.6993381 24.30731 0.01903886 +0.9419845 24.30731 0.01903886 +1.267794 24.30731 0.01903886 +1.705268 24.30731 0.01903886 +2.292679 24.30731 0.01903886 +3.081414 24.30731 0.01903886 +4.140474 24.30731 0.01903886 +5.562508 24.30731 0.01903886 +7.471917 24.30731 0.01903886 +10.03574 24.30731 0.01903886 +13.47828 24.30731 0.01903886 +18.10068 24.30731 0.01903886 +24.30731 24.30731 0.01903886 +32.64117 24.30731 0.01903886 +43.83129 24.30731 0.01903886 +58.85664 24.30731 0.01903886 +-0.0175068 32.64117 0.01903886 +-0.01161267 32.64117 0.01903886 +-0.005718534 32.64117 0.01903886 +0.0001755984 32.64117 0.01903886 +0.006069731 32.64117 0.01903886 +0.01197402 32.64117 0.01903886 +0.01903886 32.64117 0.01903886 +0.02852504 32.64117 0.01903886 +0.04126244 32.64117 0.01903886 +0.05836535 32.64117 0.01903886 +0.08132997 32.64117 0.01903886 +0.1121653 32.64117 0.01903886 +0.1535689 32.64117 0.01903886 +0.2091628 32.64117 0.01903886 +0.2838106 32.64117 0.01903886 +0.3840425 32.64117 0.01903886 +0.518627 32.64117 0.01903886 +0.6993381 32.64117 0.01903886 +0.9419845 32.64117 0.01903886 +1.267794 32.64117 0.01903886 +1.705268 32.64117 0.01903886 +2.292679 32.64117 0.01903886 +3.081414 32.64117 0.01903886 +4.140474 32.64117 0.01903886 +5.562508 32.64117 0.01903886 +7.471917 32.64117 0.01903886 +10.03574 32.64117 0.01903886 +13.47828 32.64117 0.01903886 +18.10068 32.64117 0.01903886 +24.30731 32.64117 0.01903886 +32.64117 32.64117 0.01903886 +43.83129 32.64117 0.01903886 +58.85664 32.64117 0.01903886 +-0.0175068 43.83129 0.01903886 +-0.01161267 43.83129 0.01903886 +-0.005718534 43.83129 0.01903886 +0.0001755984 43.83129 0.01903886 +0.006069731 43.83129 0.01903886 +0.01197402 43.83129 0.01903886 +0.01903886 43.83129 0.01903886 +0.02852504 43.83129 0.01903886 +0.04126244 43.83129 0.01903886 +0.05836535 43.83129 0.01903886 +0.08132997 43.83129 0.01903886 +0.1121653 43.83129 0.01903886 +0.1535689 43.83129 0.01903886 +0.2091628 43.83129 0.01903886 +0.2838106 43.83129 0.01903886 +0.3840425 43.83129 0.01903886 +0.518627 43.83129 0.01903886 +0.6993381 43.83129 0.01903886 +0.9419845 43.83129 0.01903886 +1.267794 43.83129 0.01903886 +1.705268 43.83129 0.01903886 +2.292679 43.83129 0.01903886 +3.081414 43.83129 0.01903886 +4.140474 43.83129 0.01903886 +5.562508 43.83129 0.01903886 +7.471917 43.83129 0.01903886 +10.03574 43.83129 0.01903886 +13.47828 43.83129 0.01903886 +18.10068 43.83129 0.01903886 +24.30731 43.83129 0.01903886 +32.64117 43.83129 0.01903886 +43.83129 43.83129 0.01903886 +58.85664 43.83129 0.01903886 +-0.0175068 58.85664 0.01903886 +-0.01161267 58.85664 0.01903886 +-0.005718534 58.85664 0.01903886 +0.0001755984 58.85664 0.01903886 +0.006069731 58.85664 0.01903886 +0.01197402 58.85664 0.01903886 +0.01903886 58.85664 0.01903886 +0.02852504 58.85664 0.01903886 +0.04126244 58.85664 0.01903886 +0.05836535 58.85664 0.01903886 +0.08132997 58.85664 0.01903886 +0.1121653 58.85664 0.01903886 +0.1535689 58.85664 0.01903886 +0.2091628 58.85664 0.01903886 +0.2838106 58.85664 0.01903886 +0.3840425 58.85664 0.01903886 +0.518627 58.85664 0.01903886 +0.6993381 58.85664 0.01903886 +0.9419845 58.85664 0.01903886 +1.267794 58.85664 0.01903886 +1.705268 58.85664 0.01903886 +2.292679 58.85664 0.01903886 +3.081414 58.85664 0.01903886 +4.140474 58.85664 0.01903886 +5.562508 58.85664 0.01903886 +7.471917 58.85664 0.01903886 +10.03574 58.85664 0.01903886 +13.47828 58.85664 0.01903886 +18.10068 58.85664 0.01903886 +24.30731 58.85664 0.01903886 +32.64117 58.85664 0.01903886 +43.83129 58.85664 0.01903886 +58.85664 58.85664 0.01903886 +-0.0175068 -0.0175068 0.02852504 +-0.01161267 -0.0175068 0.02852504 +-0.005718534 -0.0175068 0.02852504 +0.0001755984 -0.0175068 0.02852504 +0.006069731 -0.0175068 0.02852504 +0.01197402 -0.0175068 0.02852504 +0.01903886 -0.0175068 0.02852504 +0.02852504 -0.0175068 0.02852504 +0.04126244 -0.0175068 0.02852504 +0.05836535 -0.0175068 0.02852504 +0.08132997 -0.0175068 0.02852504 +0.1121653 -0.0175068 0.02852504 +0.1535689 -0.0175068 0.02852504 +0.2091628 -0.0175068 0.02852504 +0.2838106 -0.0175068 0.02852504 +0.3840425 -0.0175068 0.02852504 +0.518627 -0.0175068 0.02852504 +0.6993381 -0.0175068 0.02852504 +0.9419845 -0.0175068 0.02852504 +1.267794 -0.0175068 0.02852504 +1.705268 -0.0175068 0.02852504 +2.292679 -0.0175068 0.02852504 +3.081414 -0.0175068 0.02852504 +4.140474 -0.0175068 0.02852504 +5.562508 -0.0175068 0.02852504 +7.471917 -0.0175068 0.02852504 +10.03574 -0.0175068 0.02852504 +13.47828 -0.0175068 0.02852504 +18.10068 -0.0175068 0.02852504 +24.30731 -0.0175068 0.02852504 +32.64117 -0.0175068 0.02852504 +43.83129 -0.0175068 0.02852504 +58.85664 -0.0175068 0.02852504 +-0.0175068 -0.01161267 0.02852504 +-0.01161267 -0.01161267 0.02852504 +-0.005718534 -0.01161267 0.02852504 +0.0001755984 -0.01161267 0.02852504 +0.006069731 -0.01161267 0.02852504 +0.01197402 -0.01161267 0.02852504 +0.01903886 -0.01161267 0.02852504 +0.02852504 -0.01161267 0.02852504 +0.04126244 -0.01161267 0.02852504 +0.05836535 -0.01161267 0.02852504 +0.08132997 -0.01161267 0.02852504 +0.1121653 -0.01161267 0.02852504 +0.1535689 -0.01161267 0.02852504 +0.2091628 -0.01161267 0.02852504 +0.2838106 -0.01161267 0.02852504 +0.3840425 -0.01161267 0.02852504 +0.518627 -0.01161267 0.02852504 +0.6993381 -0.01161267 0.02852504 +0.9419845 -0.01161267 0.02852504 +1.267794 -0.01161267 0.02852504 +1.705268 -0.01161267 0.02852504 +2.292679 -0.01161267 0.02852504 +3.081414 -0.01161267 0.02852504 +4.140474 -0.01161267 0.02852504 +5.562508 -0.01161267 0.02852504 +7.471917 -0.01161267 0.02852504 +10.03574 -0.01161267 0.02852504 +13.47828 -0.01161267 0.02852504 +18.10068 -0.01161267 0.02852504 +24.30731 -0.01161267 0.02852504 +32.64117 -0.01161267 0.02852504 +43.83129 -0.01161267 0.02852504 +58.85664 -0.01161267 0.02852504 +-0.0175068 -0.005718534 0.02852504 +-0.01161267 -0.005718534 0.02852504 +-0.005718534 -0.005718534 0.02852504 +0.0001755984 -0.005718534 0.02852504 +0.006069731 -0.005718534 0.02852504 +0.01197402 -0.005718534 0.02852504 +0.01903886 -0.005718534 0.02852504 +0.02852504 -0.005718534 0.02852504 +0.04126244 -0.005718534 0.02852504 +0.05836535 -0.005718534 0.02852504 +0.08132997 -0.005718534 0.02852504 +0.1121653 -0.005718534 0.02852504 +0.1535689 -0.005718534 0.02852504 +0.2091628 -0.005718534 0.02852504 +0.2838106 -0.005718534 0.02852504 +0.3840425 -0.005718534 0.02852504 +0.518627 -0.005718534 0.02852504 +0.6993381 -0.005718534 0.02852504 +0.9419845 -0.005718534 0.02852504 +1.267794 -0.005718534 0.02852504 +1.705268 -0.005718534 0.02852504 +2.292679 -0.005718534 0.02852504 +3.081414 -0.005718534 0.02852504 +4.140474 -0.005718534 0.02852504 +5.562508 -0.005718534 0.02852504 +7.471917 -0.005718534 0.02852504 +10.03574 -0.005718534 0.02852504 +13.47828 -0.005718534 0.02852504 +18.10068 -0.005718534 0.02852504 +24.30731 -0.005718534 0.02852504 +32.64117 -0.005718534 0.02852504 +43.83129 -0.005718534 0.02852504 +58.85664 -0.005718534 0.02852504 +-0.0175068 0.0001755984 0.02852504 +-0.01161267 0.0001755984 0.02852504 +-0.005718534 0.0001755984 0.02852504 +0.0001755984 0.0001755984 0.02852504 +0.006069731 0.0001755984 0.02852504 +0.01197402 0.0001755984 0.02852504 +0.01903886 0.0001755984 0.02852504 +0.02852504 0.0001755984 0.02852504 +0.04126244 0.0001755984 0.02852504 +0.05836535 0.0001755984 0.02852504 +0.08132997 0.0001755984 0.02852504 +0.1121653 0.0001755984 0.02852504 +0.1535689 0.0001755984 0.02852504 +0.2091628 0.0001755984 0.02852504 +0.2838106 0.0001755984 0.02852504 +0.3840425 0.0001755984 0.02852504 +0.518627 0.0001755984 0.02852504 +0.6993381 0.0001755984 0.02852504 +0.9419845 0.0001755984 0.02852504 +1.267794 0.0001755984 0.02852504 +1.705268 0.0001755984 0.02852504 +2.292679 0.0001755984 0.02852504 +3.081414 0.0001755984 0.02852504 +4.140474 0.0001755984 0.02852504 +5.562508 0.0001755984 0.02852504 +7.471917 0.0001755984 0.02852504 +10.03574 0.0001755984 0.02852504 +13.47828 0.0001755984 0.02852504 +18.10068 0.0001755984 0.02852504 +24.30731 0.0001755984 0.02852504 +32.64117 0.0001755984 0.02852504 +43.83129 0.0001755984 0.02852504 +58.85664 0.0001755984 0.02852504 +-0.0175068 0.006069731 0.02852504 +-0.01161267 0.006069731 0.02852504 +-0.005718534 0.006069731 0.02852504 +0.0001755984 0.006069731 0.02852504 +0.006069731 0.006069731 0.02852504 +0.01197402 0.006069731 0.02852504 +0.01903886 0.006069731 0.02852504 +0.02852504 0.006069731 0.02852504 +0.04126244 0.006069731 0.02852504 +0.05836535 0.006069731 0.02852504 +0.08132997 0.006069731 0.02852504 +0.1121653 0.006069731 0.02852504 +0.1535689 0.006069731 0.02852504 +0.2091628 0.006069731 0.02852504 +0.2838106 0.006069731 0.02852504 +0.3840425 0.006069731 0.02852504 +0.518627 0.006069731 0.02852504 +0.6993381 0.006069731 0.02852504 +0.9419845 0.006069731 0.02852504 +1.267794 0.006069731 0.02852504 +1.705268 0.006069731 0.02852504 +2.292679 0.006069731 0.02852504 +3.081414 0.006069731 0.02852504 +4.140474 0.006069731 0.02852504 +5.562508 0.006069731 0.02852504 +7.471917 0.006069731 0.02852504 +10.03574 0.006069731 0.02852504 +13.47828 0.006069731 0.02852504 +18.10068 0.006069731 0.02852504 +24.30731 0.006069731 0.02852504 +32.64117 0.006069731 0.02852504 +43.83129 0.006069731 0.02852504 +58.85664 0.006069731 0.02852504 +-0.0175068 0.01197402 0.02852504 +-0.01161267 0.01197402 0.02852504 +-0.005718534 0.01197402 0.02852504 +0.0001755984 0.01197402 0.02852504 +0.006069731 0.01197402 0.02852504 +0.01197402 0.01197402 0.02852504 +0.01903886 0.01197402 0.02852504 +0.02852504 0.01197402 0.02852504 +0.04126244 0.01197402 0.02852504 +0.05836535 0.01197402 0.02852504 +0.08132997 0.01197402 0.02852504 +0.1121653 0.01197402 0.02852504 +0.1535689 0.01197402 0.02852504 +0.2091628 0.01197402 0.02852504 +0.2838106 0.01197402 0.02852504 +0.3840425 0.01197402 0.02852504 +0.518627 0.01197402 0.02852504 +0.6993381 0.01197402 0.02852504 +0.9419845 0.01197402 0.02852504 +1.267794 0.01197402 0.02852504 +1.705268 0.01197402 0.02852504 +2.292679 0.01197402 0.02852504 +3.081414 0.01197402 0.02852504 +4.140474 0.01197402 0.02852504 +5.562508 0.01197402 0.02852504 +7.471917 0.01197402 0.02852504 +10.03574 0.01197402 0.02852504 +13.47828 0.01197402 0.02852504 +18.10068 0.01197402 0.02852504 +24.30731 0.01197402 0.02852504 +32.64117 0.01197402 0.02852504 +43.83129 0.01197402 0.02852504 +58.85664 0.01197402 0.02852504 +-0.0175068 0.01903886 0.02852504 +-0.01161267 0.01903886 0.02852504 +-0.005718534 0.01903886 0.02852504 +0.0001755984 0.01903886 0.02852504 +0.006069731 0.01903886 0.02852504 +0.01197402 0.01903886 0.02852504 +0.01903886 0.01903886 0.02852504 +0.02852504 0.01903886 0.02852504 +0.04126244 0.01903886 0.02852504 +0.05836535 0.01903886 0.02852504 +0.08132997 0.01903886 0.02852504 +0.1121653 0.01903886 0.02852504 +0.1535689 0.01903886 0.02852504 +0.2091628 0.01903886 0.02852504 +0.2838106 0.01903886 0.02852504 +0.3840425 0.01903886 0.02852504 +0.518627 0.01903886 0.02852504 +0.6993381 0.01903886 0.02852504 +0.9419845 0.01903886 0.02852504 +1.267794 0.01903886 0.02852504 +1.705268 0.01903886 0.02852504 +2.292679 0.01903886 0.02852504 +3.081414 0.01903886 0.02852504 +4.140474 0.01903886 0.02852504 +5.562508 0.01903886 0.02852504 +7.471917 0.01903886 0.02852504 +10.03574 0.01903886 0.02852504 +13.47828 0.01903886 0.02852504 +18.10068 0.01903886 0.02852504 +24.30731 0.01903886 0.02852504 +32.64117 0.01903886 0.02852504 +43.83129 0.01903886 0.02852504 +58.85664 0.01903886 0.02852504 +-0.0175068 0.02852504 0.02852504 +-0.01161267 0.02852504 0.02852504 +-0.005718534 0.02852504 0.02852504 +0.0001755984 0.02852504 0.02852504 +0.006069731 0.02852504 0.02852504 +0.01197402 0.02852504 0.02852504 +0.01903886 0.02852504 0.02852504 +0.02852504 0.02852504 0.02852504 +0.04126244 0.02852504 0.02852504 +0.05836535 0.02852504 0.02852504 +0.08132997 0.02852504 0.02852504 +0.1121653 0.02852504 0.02852504 +0.1535689 0.02852504 0.02852504 +0.2091628 0.02852504 0.02852504 +0.2838106 0.02852504 0.02852504 +0.3840425 0.02852504 0.02852504 +0.518627 0.02852504 0.02852504 +0.6993381 0.02852504 0.02852504 +0.9419845 0.02852504 0.02852504 +1.267794 0.02852504 0.02852504 +1.705268 0.02852504 0.02852504 +2.292679 0.02852504 0.02852504 +3.081414 0.02852504 0.02852504 +4.140474 0.02852504 0.02852504 +5.562508 0.02852504 0.02852504 +7.471917 0.02852504 0.02852504 +10.03574 0.02852504 0.02852504 +13.47828 0.02852504 0.02852504 +18.10068 0.02852504 0.02852504 +24.30731 0.02852504 0.02852504 +32.64117 0.02852504 0.02852504 +43.83129 0.02852504 0.02852504 +58.85664 0.02852504 0.02852504 +-0.0175068 0.04126244 0.02852504 +-0.01161267 0.04126244 0.02852504 +-0.005718534 0.04126244 0.02852504 +0.0001755984 0.04126244 0.02852504 +0.006069731 0.04126244 0.02852504 +0.01197402 0.04126244 0.02852504 +0.01903886 0.04126244 0.02852504 +0.02852504 0.04126244 0.02852504 +0.04126244 0.04126244 0.02852504 +0.05836535 0.04126244 0.02852504 +0.08132997 0.04126244 0.02852504 +0.1121653 0.04126244 0.02852504 +0.1535689 0.04126244 0.02852504 +0.2091628 0.04126244 0.02852504 +0.2838106 0.04126244 0.02852504 +0.3840425 0.04126244 0.02852504 +0.518627 0.04126244 0.02852504 +0.6993381 0.04126244 0.02852504 +0.9419845 0.04126244 0.02852504 +1.267794 0.04126244 0.02852504 +1.705268 0.04126244 0.02852504 +2.292679 0.04126244 0.02852504 +3.081414 0.04126244 0.02852504 +4.140474 0.04126244 0.02852504 +5.562508 0.04126244 0.02852504 +7.471917 0.04126244 0.02852504 +10.03574 0.04126244 0.02852504 +13.47828 0.04126244 0.02852504 +18.10068 0.04126244 0.02852504 +24.30731 0.04126244 0.02852504 +32.64117 0.04126244 0.02852504 +43.83129 0.04126244 0.02852504 +58.85664 0.04126244 0.02852504 +-0.0175068 0.05836535 0.02852504 +-0.01161267 0.05836535 0.02852504 +-0.005718534 0.05836535 0.02852504 +0.0001755984 0.05836535 0.02852504 +0.006069731 0.05836535 0.02852504 +0.01197402 0.05836535 0.02852504 +0.01903886 0.05836535 0.02852504 +0.02852504 0.05836535 0.02852504 +0.04126244 0.05836535 0.02852504 +0.05836535 0.05836535 0.02852504 +0.08132997 0.05836535 0.02852504 +0.1121653 0.05836535 0.02852504 +0.1535689 0.05836535 0.02852504 +0.2091628 0.05836535 0.02852504 +0.2838106 0.05836535 0.02852504 +0.3840425 0.05836535 0.02852504 +0.518627 0.05836535 0.02852504 +0.6993381 0.05836535 0.02852504 +0.9419845 0.05836535 0.02852504 +1.267794 0.05836535 0.02852504 +1.705268 0.05836535 0.02852504 +2.292679 0.05836535 0.02852504 +3.081414 0.05836535 0.02852504 +4.140474 0.05836535 0.02852504 +5.562508 0.05836535 0.02852504 +7.471917 0.05836535 0.02852504 +10.03574 0.05836535 0.02852504 +13.47828 0.05836535 0.02852504 +18.10068 0.05836535 0.02852504 +24.30731 0.05836535 0.02852504 +32.64117 0.05836535 0.02852504 +43.83129 0.05836535 0.02852504 +58.85664 0.05836535 0.02852504 +-0.0175068 0.08132997 0.02852504 +-0.01161267 0.08132997 0.02852504 +-0.005718534 0.08132997 0.02852504 +0.0001755984 0.08132997 0.02852504 +0.006069731 0.08132997 0.02852504 +0.01197402 0.08132997 0.02852504 +0.01903886 0.08132997 0.02852504 +0.02852504 0.08132997 0.02852504 +0.04126244 0.08132997 0.02852504 +0.05836535 0.08132997 0.02852504 +0.08132997 0.08132997 0.02852504 +0.1121653 0.08132997 0.02852504 +0.1535689 0.08132997 0.02852504 +0.2091628 0.08132997 0.02852504 +0.2838106 0.08132997 0.02852504 +0.3840425 0.08132997 0.02852504 +0.518627 0.08132997 0.02852504 +0.6993381 0.08132997 0.02852504 +0.9419845 0.08132997 0.02852504 +1.267794 0.08132997 0.02852504 +1.705268 0.08132997 0.02852504 +2.292679 0.08132997 0.02852504 +3.081414 0.08132997 0.02852504 +4.140474 0.08132997 0.02852504 +5.562508 0.08132997 0.02852504 +7.471917 0.08132997 0.02852504 +10.03574 0.08132997 0.02852504 +13.47828 0.08132997 0.02852504 +18.10068 0.08132997 0.02852504 +24.30731 0.08132997 0.02852504 +32.64117 0.08132997 0.02852504 +43.83129 0.08132997 0.02852504 +58.85664 0.08132997 0.02852504 +-0.0175068 0.1121653 0.02852504 +-0.01161267 0.1121653 0.02852504 +-0.005718534 0.1121653 0.02852504 +0.0001755984 0.1121653 0.02852504 +0.006069731 0.1121653 0.02852504 +0.01197402 0.1121653 0.02852504 +0.01903886 0.1121653 0.02852504 +0.02852504 0.1121653 0.02852504 +0.04126244 0.1121653 0.02852504 +0.05836535 0.1121653 0.02852504 +0.08132997 0.1121653 0.02852504 +0.1121653 0.1121653 0.02852504 +0.1535689 0.1121653 0.02852504 +0.2091628 0.1121653 0.02852504 +0.2838106 0.1121653 0.02852504 +0.3840425 0.1121653 0.02852504 +0.518627 0.1121653 0.02852504 +0.6993381 0.1121653 0.02852504 +0.9419845 0.1121653 0.02852504 +1.267794 0.1121653 0.02852504 +1.705268 0.1121653 0.02852504 +2.292679 0.1121653 0.02852504 +3.081414 0.1121653 0.02852504 +4.140474 0.1121653 0.02852504 +5.562508 0.1121653 0.02852504 +7.471917 0.1121653 0.02852504 +10.03574 0.1121653 0.02852504 +13.47828 0.1121653 0.02852504 +18.10068 0.1121653 0.02852504 +24.30731 0.1121653 0.02852504 +32.64117 0.1121653 0.02852504 +43.83129 0.1121653 0.02852504 +58.85664 0.1121653 0.02852504 +-0.0175068 0.1535689 0.02852504 +-0.01161267 0.1535689 0.02852504 +-0.005718534 0.1535689 0.02852504 +0.0001755984 0.1535689 0.02852504 +0.006069731 0.1535689 0.02852504 +0.01197402 0.1535689 0.02852504 +0.01903886 0.1535689 0.02852504 +0.02852504 0.1535689 0.02852504 +0.04126244 0.1535689 0.02852504 +0.05836535 0.1535689 0.02852504 +0.08132997 0.1535689 0.02852504 +0.1121653 0.1535689 0.02852504 +0.1535689 0.1535689 0.02852504 +0.2091628 0.1535689 0.02852504 +0.2838106 0.1535689 0.02852504 +0.3840425 0.1535689 0.02852504 +0.518627 0.1535689 0.02852504 +0.6993381 0.1535689 0.02852504 +0.9419845 0.1535689 0.02852504 +1.267794 0.1535689 0.02852504 +1.705268 0.1535689 0.02852504 +2.292679 0.1535689 0.02852504 +3.081414 0.1535689 0.02852504 +4.140474 0.1535689 0.02852504 +5.562508 0.1535689 0.02852504 +7.471917 0.1535689 0.02852504 +10.03574 0.1535689 0.02852504 +13.47828 0.1535689 0.02852504 +18.10068 0.1535689 0.02852504 +24.30731 0.1535689 0.02852504 +32.64117 0.1535689 0.02852504 +43.83129 0.1535689 0.02852504 +58.85664 0.1535689 0.02852504 +-0.0175068 0.2091628 0.02852504 +-0.01161267 0.2091628 0.02852504 +-0.005718534 0.2091628 0.02852504 +0.0001755984 0.2091628 0.02852504 +0.006069731 0.2091628 0.02852504 +0.01197402 0.2091628 0.02852504 +0.01903886 0.2091628 0.02852504 +0.02852504 0.2091628 0.02852504 +0.04126244 0.2091628 0.02852504 +0.05836535 0.2091628 0.02852504 +0.08132997 0.2091628 0.02852504 +0.1121653 0.2091628 0.02852504 +0.1535689 0.2091628 0.02852504 +0.2091628 0.2091628 0.02852504 +0.2838106 0.2091628 0.02852504 +0.3840425 0.2091628 0.02852504 +0.518627 0.2091628 0.02852504 +0.6993381 0.2091628 0.02852504 +0.9419845 0.2091628 0.02852504 +1.267794 0.2091628 0.02852504 +1.705268 0.2091628 0.02852504 +2.292679 0.2091628 0.02852504 +3.081414 0.2091628 0.02852504 +4.140474 0.2091628 0.02852504 +5.562508 0.2091628 0.02852504 +7.471917 0.2091628 0.02852504 +10.03574 0.2091628 0.02852504 +13.47828 0.2091628 0.02852504 +18.10068 0.2091628 0.02852504 +24.30731 0.2091628 0.02852504 +32.64117 0.2091628 0.02852504 +43.83129 0.2091628 0.02852504 +58.85664 0.2091628 0.02852504 +-0.0175068 0.2838106 0.02852504 +-0.01161267 0.2838106 0.02852504 +-0.005718534 0.2838106 0.02852504 +0.0001755984 0.2838106 0.02852504 +0.006069731 0.2838106 0.02852504 +0.01197402 0.2838106 0.02852504 +0.01903886 0.2838106 0.02852504 +0.02852504 0.2838106 0.02852504 +0.04126244 0.2838106 0.02852504 +0.05836535 0.2838106 0.02852504 +0.08132997 0.2838106 0.02852504 +0.1121653 0.2838106 0.02852504 +0.1535689 0.2838106 0.02852504 +0.2091628 0.2838106 0.02852504 +0.2838106 0.2838106 0.02852504 +0.3840425 0.2838106 0.02852504 +0.518627 0.2838106 0.02852504 +0.6993381 0.2838106 0.02852504 +0.9419845 0.2838106 0.02852504 +1.267794 0.2838106 0.02852504 +1.705268 0.2838106 0.02852504 +2.292679 0.2838106 0.02852504 +3.081414 0.2838106 0.02852504 +4.140474 0.2838106 0.02852504 +5.562508 0.2838106 0.02852504 +7.471917 0.2838106 0.02852504 +10.03574 0.2838106 0.02852504 +13.47828 0.2838106 0.02852504 +18.10068 0.2838106 0.02852504 +24.30731 0.2838106 0.02852504 +32.64117 0.2838106 0.02852504 +43.83129 0.2838106 0.02852504 +58.85664 0.2838106 0.02852504 +-0.0175068 0.3840425 0.02852504 +-0.01161267 0.3840425 0.02852504 +-0.005718534 0.3840425 0.02852504 +0.0001755984 0.3840425 0.02852504 +0.006069731 0.3840425 0.02852504 +0.01197402 0.3840425 0.02852504 +0.01903886 0.3840425 0.02852504 +0.02852504 0.3840425 0.02852504 +0.04126244 0.3840425 0.02852504 +0.05836535 0.3840425 0.02852504 +0.08132997 0.3840425 0.02852504 +0.1121653 0.3840425 0.02852504 +0.1535689 0.3840425 0.02852504 +0.2091628 0.3840425 0.02852504 +0.2838106 0.3840425 0.02852504 +0.3840425 0.3840425 0.02852504 +0.518627 0.3840425 0.02852504 +0.6993381 0.3840425 0.02852504 +0.9419845 0.3840425 0.02852504 +1.267794 0.3840425 0.02852504 +1.705268 0.3840425 0.02852504 +2.292679 0.3840425 0.02852504 +3.081414 0.3840425 0.02852504 +4.140474 0.3840425 0.02852504 +5.562508 0.3840425 0.02852504 +7.471917 0.3840425 0.02852504 +10.03574 0.3840425 0.02852504 +13.47828 0.3840425 0.02852504 +18.10068 0.3840425 0.02852504 +24.30731 0.3840425 0.02852504 +32.64117 0.3840425 0.02852504 +43.83129 0.3840425 0.02852504 +58.85664 0.3840425 0.02852504 +-0.0175068 0.518627 0.02852504 +-0.01161267 0.518627 0.02852504 +-0.005718534 0.518627 0.02852504 +0.0001755984 0.518627 0.02852504 +0.006069731 0.518627 0.02852504 +0.01197402 0.518627 0.02852504 +0.01903886 0.518627 0.02852504 +0.02852504 0.518627 0.02852504 +0.04126244 0.518627 0.02852504 +0.05836535 0.518627 0.02852504 +0.08132997 0.518627 0.02852504 +0.1121653 0.518627 0.02852504 +0.1535689 0.518627 0.02852504 +0.2091628 0.518627 0.02852504 +0.2838106 0.518627 0.02852504 +0.3840425 0.518627 0.02852504 +0.518627 0.518627 0.02852504 +0.6993381 0.518627 0.02852504 +0.9419845 0.518627 0.02852504 +1.267794 0.518627 0.02852504 +1.705268 0.518627 0.02852504 +2.292679 0.518627 0.02852504 +3.081414 0.518627 0.02852504 +4.140474 0.518627 0.02852504 +5.562508 0.518627 0.02852504 +7.471917 0.518627 0.02852504 +10.03574 0.518627 0.02852504 +13.47828 0.518627 0.02852504 +18.10068 0.518627 0.02852504 +24.30731 0.518627 0.02852504 +32.64117 0.518627 0.02852504 +43.83129 0.518627 0.02852504 +58.85664 0.518627 0.02852504 +-0.0175068 0.6993381 0.02852504 +-0.01161267 0.6993381 0.02852504 +-0.005718534 0.6993381 0.02852504 +0.0001755984 0.6993381 0.02852504 +0.006069731 0.6993381 0.02852504 +0.01197402 0.6993381 0.02852504 +0.01903886 0.6993381 0.02852504 +0.02852504 0.6993381 0.02852504 +0.04126244 0.6993381 0.02852504 +0.05836535 0.6993381 0.02852504 +0.08132997 0.6993381 0.02852504 +0.1121653 0.6993381 0.02852504 +0.1535689 0.6993381 0.02852504 +0.2091628 0.6993381 0.02852504 +0.2838106 0.6993381 0.02852504 +0.3840425 0.6993381 0.02852504 +0.518627 0.6993381 0.02852504 +0.6993381 0.6993381 0.02852504 +0.9419845 0.6993381 0.02852504 +1.267794 0.6993381 0.02852504 +1.705268 0.6993381 0.02852504 +2.292679 0.6993381 0.02852504 +3.081414 0.6993381 0.02852504 +4.140474 0.6993381 0.02852504 +5.562508 0.6993381 0.02852504 +7.471917 0.6993381 0.02852504 +10.03574 0.6993381 0.02852504 +13.47828 0.6993381 0.02852504 +18.10068 0.6993381 0.02852504 +24.30731 0.6993381 0.02852504 +32.64117 0.6993381 0.02852504 +43.83129 0.6993381 0.02852504 +58.85664 0.6993381 0.02852504 +-0.0175068 0.9419845 0.02852504 +-0.01161267 0.9419845 0.02852504 +-0.005718534 0.9419845 0.02852504 +0.0001755984 0.9419845 0.02852504 +0.006069731 0.9419845 0.02852504 +0.01197402 0.9419845 0.02852504 +0.01903886 0.9419845 0.02852504 +0.02852504 0.9419845 0.02852504 +0.04126244 0.9419845 0.02852504 +0.05836535 0.9419845 0.02852504 +0.08132997 0.9419845 0.02852504 +0.1121653 0.9419845 0.02852504 +0.1535689 0.9419845 0.02852504 +0.2091628 0.9419845 0.02852504 +0.2838106 0.9419845 0.02852504 +0.3840425 0.9419845 0.02852504 +0.518627 0.9419845 0.02852504 +0.6993381 0.9419845 0.02852504 +0.9419845 0.9419845 0.02852504 +1.267794 0.9419845 0.02852504 +1.705268 0.9419845 0.02852504 +2.292679 0.9419845 0.02852504 +3.081414 0.9419845 0.02852504 +4.140474 0.9419845 0.02852504 +5.562508 0.9419845 0.02852504 +7.471917 0.9419845 0.02852504 +10.03574 0.9419845 0.02852504 +13.47828 0.9419845 0.02852504 +18.10068 0.9419845 0.02852504 +24.30731 0.9419845 0.02852504 +32.64117 0.9419845 0.02852504 +43.83129 0.9419845 0.02852504 +58.85664 0.9419845 0.02852504 +-0.0175068 1.267794 0.02852504 +-0.01161267 1.267794 0.02852504 +-0.005718534 1.267794 0.02852504 +0.0001755984 1.267794 0.02852504 +0.006069731 1.267794 0.02852504 +0.01197402 1.267794 0.02852504 +0.01903886 1.267794 0.02852504 +0.02852504 1.267794 0.02852504 +0.04126244 1.267794 0.02852504 +0.05836535 1.267794 0.02852504 +0.08132997 1.267794 0.02852504 +0.1121653 1.267794 0.02852504 +0.1535689 1.267794 0.02852504 +0.2091628 1.267794 0.02852504 +0.2838106 1.267794 0.02852504 +0.3840425 1.267794 0.02852504 +0.518627 1.267794 0.02852504 +0.6993381 1.267794 0.02852504 +0.9419845 1.267794 0.02852504 +1.267794 1.267794 0.02852504 +1.705268 1.267794 0.02852504 +2.292679 1.267794 0.02852504 +3.081414 1.267794 0.02852504 +4.140474 1.267794 0.02852504 +5.562508 1.267794 0.02852504 +7.471917 1.267794 0.02852504 +10.03574 1.267794 0.02852504 +13.47828 1.267794 0.02852504 +18.10068 1.267794 0.02852504 +24.30731 1.267794 0.02852504 +32.64117 1.267794 0.02852504 +43.83129 1.267794 0.02852504 +58.85664 1.267794 0.02852504 +-0.0175068 1.705268 0.02852504 +-0.01161267 1.705268 0.02852504 +-0.005718534 1.705268 0.02852504 +0.0001755984 1.705268 0.02852504 +0.006069731 1.705268 0.02852504 +0.01197402 1.705268 0.02852504 +0.01903886 1.705268 0.02852504 +0.02852504 1.705268 0.02852504 +0.04126244 1.705268 0.02852504 +0.05836535 1.705268 0.02852504 +0.08132997 1.705268 0.02852504 +0.1121653 1.705268 0.02852504 +0.1535689 1.705268 0.02852504 +0.2091628 1.705268 0.02852504 +0.2838106 1.705268 0.02852504 +0.3840425 1.705268 0.02852504 +0.518627 1.705268 0.02852504 +0.6993381 1.705268 0.02852504 +0.9419845 1.705268 0.02852504 +1.267794 1.705268 0.02852504 +1.705268 1.705268 0.02852504 +2.292679 1.705268 0.02852504 +3.081414 1.705268 0.02852504 +4.140474 1.705268 0.02852504 +5.562508 1.705268 0.02852504 +7.471917 1.705268 0.02852504 +10.03574 1.705268 0.02852504 +13.47828 1.705268 0.02852504 +18.10068 1.705268 0.02852504 +24.30731 1.705268 0.02852504 +32.64117 1.705268 0.02852504 +43.83129 1.705268 0.02852504 +58.85664 1.705268 0.02852504 +-0.0175068 2.292679 0.02852504 +-0.01161267 2.292679 0.02852504 +-0.005718534 2.292679 0.02852504 +0.0001755984 2.292679 0.02852504 +0.006069731 2.292679 0.02852504 +0.01197402 2.292679 0.02852504 +0.01903886 2.292679 0.02852504 +0.02852504 2.292679 0.02852504 +0.04126244 2.292679 0.02852504 +0.05836535 2.292679 0.02852504 +0.08132997 2.292679 0.02852504 +0.1121653 2.292679 0.02852504 +0.1535689 2.292679 0.02852504 +0.2091628 2.292679 0.02852504 +0.2838106 2.292679 0.02852504 +0.3840425 2.292679 0.02852504 +0.518627 2.292679 0.02852504 +0.6993381 2.292679 0.02852504 +0.9419845 2.292679 0.02852504 +1.267794 2.292679 0.02852504 +1.705268 2.292679 0.02852504 +2.292679 2.292679 0.02852504 +3.081414 2.292679 0.02852504 +4.140474 2.292679 0.02852504 +5.562508 2.292679 0.02852504 +7.471917 2.292679 0.02852504 +10.03574 2.292679 0.02852504 +13.47828 2.292679 0.02852504 +18.10068 2.292679 0.02852504 +24.30731 2.292679 0.02852504 +32.64117 2.292679 0.02852504 +43.83129 2.292679 0.02852504 +58.85664 2.292679 0.02852504 +-0.0175068 3.081414 0.02852504 +-0.01161267 3.081414 0.02852504 +-0.005718534 3.081414 0.02852504 +0.0001755984 3.081414 0.02852504 +0.006069731 3.081414 0.02852504 +0.01197402 3.081414 0.02852504 +0.01903886 3.081414 0.02852504 +0.02852504 3.081414 0.02852504 +0.04126244 3.081414 0.02852504 +0.05836535 3.081414 0.02852504 +0.08132997 3.081414 0.02852504 +0.1121653 3.081414 0.02852504 +0.1535689 3.081414 0.02852504 +0.2091628 3.081414 0.02852504 +0.2838106 3.081414 0.02852504 +0.3840425 3.081414 0.02852504 +0.518627 3.081414 0.02852504 +0.6993381 3.081414 0.02852504 +0.9419845 3.081414 0.02852504 +1.267794 3.081414 0.02852504 +1.705268 3.081414 0.02852504 +2.292679 3.081414 0.02852504 +3.081414 3.081414 0.02852504 +4.140474 3.081414 0.02852504 +5.562508 3.081414 0.02852504 +7.471917 3.081414 0.02852504 +10.03574 3.081414 0.02852504 +13.47828 3.081414 0.02852504 +18.10068 3.081414 0.02852504 +24.30731 3.081414 0.02852504 +32.64117 3.081414 0.02852504 +43.83129 3.081414 0.02852504 +58.85664 3.081414 0.02852504 +-0.0175068 4.140474 0.02852504 +-0.01161267 4.140474 0.02852504 +-0.005718534 4.140474 0.02852504 +0.0001755984 4.140474 0.02852504 +0.006069731 4.140474 0.02852504 +0.01197402 4.140474 0.02852504 +0.01903886 4.140474 0.02852504 +0.02852504 4.140474 0.02852504 +0.04126244 4.140474 0.02852504 +0.05836535 4.140474 0.02852504 +0.08132997 4.140474 0.02852504 +0.1121653 4.140474 0.02852504 +0.1535689 4.140474 0.02852504 +0.2091628 4.140474 0.02852504 +0.2838106 4.140474 0.02852504 +0.3840425 4.140474 0.02852504 +0.518627 4.140474 0.02852504 +0.6993381 4.140474 0.02852504 +0.9419845 4.140474 0.02852504 +1.267794 4.140474 0.02852504 +1.705268 4.140474 0.02852504 +2.292679 4.140474 0.02852504 +3.081414 4.140474 0.02852504 +4.140474 4.140474 0.02852504 +5.562508 4.140474 0.02852504 +7.471917 4.140474 0.02852504 +10.03574 4.140474 0.02852504 +13.47828 4.140474 0.02852504 +18.10068 4.140474 0.02852504 +24.30731 4.140474 0.02852504 +32.64117 4.140474 0.02852504 +43.83129 4.140474 0.02852504 +58.85664 4.140474 0.02852504 +-0.0175068 5.562508 0.02852504 +-0.01161267 5.562508 0.02852504 +-0.005718534 5.562508 0.02852504 +0.0001755984 5.562508 0.02852504 +0.006069731 5.562508 0.02852504 +0.01197402 5.562508 0.02852504 +0.01903886 5.562508 0.02852504 +0.02852504 5.562508 0.02852504 +0.04126244 5.562508 0.02852504 +0.05836535 5.562508 0.02852504 +0.08132997 5.562508 0.02852504 +0.1121653 5.562508 0.02852504 +0.1535689 5.562508 0.02852504 +0.2091628 5.562508 0.02852504 +0.2838106 5.562508 0.02852504 +0.3840425 5.562508 0.02852504 +0.518627 5.562508 0.02852504 +0.6993381 5.562508 0.02852504 +0.9419845 5.562508 0.02852504 +1.267794 5.562508 0.02852504 +1.705268 5.562508 0.02852504 +2.292679 5.562508 0.02852504 +3.081414 5.562508 0.02852504 +4.140474 5.562508 0.02852504 +5.562508 5.562508 0.02852504 +7.471917 5.562508 0.02852504 +10.03574 5.562508 0.02852504 +13.47828 5.562508 0.02852504 +18.10068 5.562508 0.02852504 +24.30731 5.562508 0.02852504 +32.64117 5.562508 0.02852504 +43.83129 5.562508 0.02852504 +58.85664 5.562508 0.02852504 +-0.0175068 7.471917 0.02852504 +-0.01161267 7.471917 0.02852504 +-0.005718534 7.471917 0.02852504 +0.0001755984 7.471917 0.02852504 +0.006069731 7.471917 0.02852504 +0.01197402 7.471917 0.02852504 +0.01903886 7.471917 0.02852504 +0.02852504 7.471917 0.02852504 +0.04126244 7.471917 0.02852504 +0.05836535 7.471917 0.02852504 +0.08132997 7.471917 0.02852504 +0.1121653 7.471917 0.02852504 +0.1535689 7.471917 0.02852504 +0.2091628 7.471917 0.02852504 +0.2838106 7.471917 0.02852504 +0.3840425 7.471917 0.02852504 +0.518627 7.471917 0.02852504 +0.6993381 7.471917 0.02852504 +0.9419845 7.471917 0.02852504 +1.267794 7.471917 0.02852504 +1.705268 7.471917 0.02852504 +2.292679 7.471917 0.02852504 +3.081414 7.471917 0.02852504 +4.140474 7.471917 0.02852504 +5.562508 7.471917 0.02852504 +7.471917 7.471917 0.02852504 +10.03574 7.471917 0.02852504 +13.47828 7.471917 0.02852504 +18.10068 7.471917 0.02852504 +24.30731 7.471917 0.02852504 +32.64117 7.471917 0.02852504 +43.83129 7.471917 0.02852504 +58.85664 7.471917 0.02852504 +-0.0175068 10.03574 0.02852504 +-0.01161267 10.03574 0.02852504 +-0.005718534 10.03574 0.02852504 +0.0001755984 10.03574 0.02852504 +0.006069731 10.03574 0.02852504 +0.01197402 10.03574 0.02852504 +0.01903886 10.03574 0.02852504 +0.02852504 10.03574 0.02852504 +0.04126244 10.03574 0.02852504 +0.05836535 10.03574 0.02852504 +0.08132997 10.03574 0.02852504 +0.1121653 10.03574 0.02852504 +0.1535689 10.03574 0.02852504 +0.2091628 10.03574 0.02852504 +0.2838106 10.03574 0.02852504 +0.3840425 10.03574 0.02852504 +0.518627 10.03574 0.02852504 +0.6993381 10.03574 0.02852504 +0.9419845 10.03574 0.02852504 +1.267794 10.03574 0.02852504 +1.705268 10.03574 0.02852504 +2.292679 10.03574 0.02852504 +3.081414 10.03574 0.02852504 +4.140474 10.03574 0.02852504 +5.562508 10.03574 0.02852504 +7.471917 10.03574 0.02852504 +10.03574 10.03574 0.02852504 +13.47828 10.03574 0.02852504 +18.10068 10.03574 0.02852504 +24.30731 10.03574 0.02852504 +32.64117 10.03574 0.02852504 +43.83129 10.03574 0.02852504 +58.85664 10.03574 0.02852504 +-0.0175068 13.47828 0.02852504 +-0.01161267 13.47828 0.02852504 +-0.005718534 13.47828 0.02852504 +0.0001755984 13.47828 0.02852504 +0.006069731 13.47828 0.02852504 +0.01197402 13.47828 0.02852504 +0.01903886 13.47828 0.02852504 +0.02852504 13.47828 0.02852504 +0.04126244 13.47828 0.02852504 +0.05836535 13.47828 0.02852504 +0.08132997 13.47828 0.02852504 +0.1121653 13.47828 0.02852504 +0.1535689 13.47828 0.02852504 +0.2091628 13.47828 0.02852504 +0.2838106 13.47828 0.02852504 +0.3840425 13.47828 0.02852504 +0.518627 13.47828 0.02852504 +0.6993381 13.47828 0.02852504 +0.9419845 13.47828 0.02852504 +1.267794 13.47828 0.02852504 +1.705268 13.47828 0.02852504 +2.292679 13.47828 0.02852504 +3.081414 13.47828 0.02852504 +4.140474 13.47828 0.02852504 +5.562508 13.47828 0.02852504 +7.471917 13.47828 0.02852504 +10.03574 13.47828 0.02852504 +13.47828 13.47828 0.02852504 +18.10068 13.47828 0.02852504 +24.30731 13.47828 0.02852504 +32.64117 13.47828 0.02852504 +43.83129 13.47828 0.02852504 +58.85664 13.47828 0.02852504 +-0.0175068 18.10068 0.02852504 +-0.01161267 18.10068 0.02852504 +-0.005718534 18.10068 0.02852504 +0.0001755984 18.10068 0.02852504 +0.006069731 18.10068 0.02852504 +0.01197402 18.10068 0.02852504 +0.01903886 18.10068 0.02852504 +0.02852504 18.10068 0.02852504 +0.04126244 18.10068 0.02852504 +0.05836535 18.10068 0.02852504 +0.08132997 18.10068 0.02852504 +0.1121653 18.10068 0.02852504 +0.1535689 18.10068 0.02852504 +0.2091628 18.10068 0.02852504 +0.2838106 18.10068 0.02852504 +0.3840425 18.10068 0.02852504 +0.518627 18.10068 0.02852504 +0.6993381 18.10068 0.02852504 +0.9419845 18.10068 0.02852504 +1.267794 18.10068 0.02852504 +1.705268 18.10068 0.02852504 +2.292679 18.10068 0.02852504 +3.081414 18.10068 0.02852504 +4.140474 18.10068 0.02852504 +5.562508 18.10068 0.02852504 +7.471917 18.10068 0.02852504 +10.03574 18.10068 0.02852504 +13.47828 18.10068 0.02852504 +18.10068 18.10068 0.02852504 +24.30731 18.10068 0.02852504 +32.64117 18.10068 0.02852504 +43.83129 18.10068 0.02852504 +58.85664 18.10068 0.02852504 +-0.0175068 24.30731 0.02852504 +-0.01161267 24.30731 0.02852504 +-0.005718534 24.30731 0.02852504 +0.0001755984 24.30731 0.02852504 +0.006069731 24.30731 0.02852504 +0.01197402 24.30731 0.02852504 +0.01903886 24.30731 0.02852504 +0.02852504 24.30731 0.02852504 +0.04126244 24.30731 0.02852504 +0.05836535 24.30731 0.02852504 +0.08132997 24.30731 0.02852504 +0.1121653 24.30731 0.02852504 +0.1535689 24.30731 0.02852504 +0.2091628 24.30731 0.02852504 +0.2838106 24.30731 0.02852504 +0.3840425 24.30731 0.02852504 +0.518627 24.30731 0.02852504 +0.6993381 24.30731 0.02852504 +0.9419845 24.30731 0.02852504 +1.267794 24.30731 0.02852504 +1.705268 24.30731 0.02852504 +2.292679 24.30731 0.02852504 +3.081414 24.30731 0.02852504 +4.140474 24.30731 0.02852504 +5.562508 24.30731 0.02852504 +7.471917 24.30731 0.02852504 +10.03574 24.30731 0.02852504 +13.47828 24.30731 0.02852504 +18.10068 24.30731 0.02852504 +24.30731 24.30731 0.02852504 +32.64117 24.30731 0.02852504 +43.83129 24.30731 0.02852504 +58.85664 24.30731 0.02852504 +-0.0175068 32.64117 0.02852504 +-0.01161267 32.64117 0.02852504 +-0.005718534 32.64117 0.02852504 +0.0001755984 32.64117 0.02852504 +0.006069731 32.64117 0.02852504 +0.01197402 32.64117 0.02852504 +0.01903886 32.64117 0.02852504 +0.02852504 32.64117 0.02852504 +0.04126244 32.64117 0.02852504 +0.05836535 32.64117 0.02852504 +0.08132997 32.64117 0.02852504 +0.1121653 32.64117 0.02852504 +0.1535689 32.64117 0.02852504 +0.2091628 32.64117 0.02852504 +0.2838106 32.64117 0.02852504 +0.3840425 32.64117 0.02852504 +0.518627 32.64117 0.02852504 +0.6993381 32.64117 0.02852504 +0.9419845 32.64117 0.02852504 +1.267794 32.64117 0.02852504 +1.705268 32.64117 0.02852504 +2.292679 32.64117 0.02852504 +3.081414 32.64117 0.02852504 +4.140474 32.64117 0.02852504 +5.562508 32.64117 0.02852504 +7.471917 32.64117 0.02852504 +10.03574 32.64117 0.02852504 +13.47828 32.64117 0.02852504 +18.10068 32.64117 0.02852504 +24.30731 32.64117 0.02852504 +32.64117 32.64117 0.02852504 +43.83129 32.64117 0.02852504 +58.85664 32.64117 0.02852504 +-0.0175068 43.83129 0.02852504 +-0.01161267 43.83129 0.02852504 +-0.005718534 43.83129 0.02852504 +0.0001755984 43.83129 0.02852504 +0.006069731 43.83129 0.02852504 +0.01197402 43.83129 0.02852504 +0.01903886 43.83129 0.02852504 +0.02852504 43.83129 0.02852504 +0.04126244 43.83129 0.02852504 +0.05836535 43.83129 0.02852504 +0.08132997 43.83129 0.02852504 +0.1121653 43.83129 0.02852504 +0.1535689 43.83129 0.02852504 +0.2091628 43.83129 0.02852504 +0.2838106 43.83129 0.02852504 +0.3840425 43.83129 0.02852504 +0.518627 43.83129 0.02852504 +0.6993381 43.83129 0.02852504 +0.9419845 43.83129 0.02852504 +1.267794 43.83129 0.02852504 +1.705268 43.83129 0.02852504 +2.292679 43.83129 0.02852504 +3.081414 43.83129 0.02852504 +4.140474 43.83129 0.02852504 +5.562508 43.83129 0.02852504 +7.471917 43.83129 0.02852504 +10.03574 43.83129 0.02852504 +13.47828 43.83129 0.02852504 +18.10068 43.83129 0.02852504 +24.30731 43.83129 0.02852504 +32.64117 43.83129 0.02852504 +43.83129 43.83129 0.02852504 +58.85664 43.83129 0.02852504 +-0.0175068 58.85664 0.02852504 +-0.01161267 58.85664 0.02852504 +-0.005718534 58.85664 0.02852504 +0.0001755984 58.85664 0.02852504 +0.006069731 58.85664 0.02852504 +0.01197402 58.85664 0.02852504 +0.01903886 58.85664 0.02852504 +0.02852504 58.85664 0.02852504 +0.04126244 58.85664 0.02852504 +0.05836535 58.85664 0.02852504 +0.08132997 58.85664 0.02852504 +0.1121653 58.85664 0.02852504 +0.1535689 58.85664 0.02852504 +0.2091628 58.85664 0.02852504 +0.2838106 58.85664 0.02852504 +0.3840425 58.85664 0.02852504 +0.518627 58.85664 0.02852504 +0.6993381 58.85664 0.02852504 +0.9419845 58.85664 0.02852504 +1.267794 58.85664 0.02852504 +1.705268 58.85664 0.02852504 +2.292679 58.85664 0.02852504 +3.081414 58.85664 0.02852504 +4.140474 58.85664 0.02852504 +5.562508 58.85664 0.02852504 +7.471917 58.85664 0.02852504 +10.03574 58.85664 0.02852504 +13.47828 58.85664 0.02852504 +18.10068 58.85664 0.02852504 +24.30731 58.85664 0.02852504 +32.64117 58.85664 0.02852504 +43.83129 58.85664 0.02852504 +58.85664 58.85664 0.02852504 +-0.0175068 -0.0175068 0.04126244 +-0.01161267 -0.0175068 0.04126244 +-0.005718534 -0.0175068 0.04126244 +0.0001755984 -0.0175068 0.04126244 +0.006069731 -0.0175068 0.04126244 +0.01197402 -0.0175068 0.04126244 +0.01903886 -0.0175068 0.04126244 +0.02852504 -0.0175068 0.04126244 +0.04126244 -0.0175068 0.04126244 +0.05836535 -0.0175068 0.04126244 +0.08132997 -0.0175068 0.04126244 +0.1121653 -0.0175068 0.04126244 +0.1535689 -0.0175068 0.04126244 +0.2091628 -0.0175068 0.04126244 +0.2838106 -0.0175068 0.04126244 +0.3840425 -0.0175068 0.04126244 +0.518627 -0.0175068 0.04126244 +0.6993381 -0.0175068 0.04126244 +0.9419845 -0.0175068 0.04126244 +1.267794 -0.0175068 0.04126244 +1.705268 -0.0175068 0.04126244 +2.292679 -0.0175068 0.04126244 +3.081414 -0.0175068 0.04126244 +4.140474 -0.0175068 0.04126244 +5.562508 -0.0175068 0.04126244 +7.471917 -0.0175068 0.04126244 +10.03574 -0.0175068 0.04126244 +13.47828 -0.0175068 0.04126244 +18.10068 -0.0175068 0.04126244 +24.30731 -0.0175068 0.04126244 +32.64117 -0.0175068 0.04126244 +43.83129 -0.0175068 0.04126244 +58.85664 -0.0175068 0.04126244 +-0.0175068 -0.01161267 0.04126244 +-0.01161267 -0.01161267 0.04126244 +-0.005718534 -0.01161267 0.04126244 +0.0001755984 -0.01161267 0.04126244 +0.006069731 -0.01161267 0.04126244 +0.01197402 -0.01161267 0.04126244 +0.01903886 -0.01161267 0.04126244 +0.02852504 -0.01161267 0.04126244 +0.04126244 -0.01161267 0.04126244 +0.05836535 -0.01161267 0.04126244 +0.08132997 -0.01161267 0.04126244 +0.1121653 -0.01161267 0.04126244 +0.1535689 -0.01161267 0.04126244 +0.2091628 -0.01161267 0.04126244 +0.2838106 -0.01161267 0.04126244 +0.3840425 -0.01161267 0.04126244 +0.518627 -0.01161267 0.04126244 +0.6993381 -0.01161267 0.04126244 +0.9419845 -0.01161267 0.04126244 +1.267794 -0.01161267 0.04126244 +1.705268 -0.01161267 0.04126244 +2.292679 -0.01161267 0.04126244 +3.081414 -0.01161267 0.04126244 +4.140474 -0.01161267 0.04126244 +5.562508 -0.01161267 0.04126244 +7.471917 -0.01161267 0.04126244 +10.03574 -0.01161267 0.04126244 +13.47828 -0.01161267 0.04126244 +18.10068 -0.01161267 0.04126244 +24.30731 -0.01161267 0.04126244 +32.64117 -0.01161267 0.04126244 +43.83129 -0.01161267 0.04126244 +58.85664 -0.01161267 0.04126244 +-0.0175068 -0.005718534 0.04126244 +-0.01161267 -0.005718534 0.04126244 +-0.005718534 -0.005718534 0.04126244 +0.0001755984 -0.005718534 0.04126244 +0.006069731 -0.005718534 0.04126244 +0.01197402 -0.005718534 0.04126244 +0.01903886 -0.005718534 0.04126244 +0.02852504 -0.005718534 0.04126244 +0.04126244 -0.005718534 0.04126244 +0.05836535 -0.005718534 0.04126244 +0.08132997 -0.005718534 0.04126244 +0.1121653 -0.005718534 0.04126244 +0.1535689 -0.005718534 0.04126244 +0.2091628 -0.005718534 0.04126244 +0.2838106 -0.005718534 0.04126244 +0.3840425 -0.005718534 0.04126244 +0.518627 -0.005718534 0.04126244 +0.6993381 -0.005718534 0.04126244 +0.9419845 -0.005718534 0.04126244 +1.267794 -0.005718534 0.04126244 +1.705268 -0.005718534 0.04126244 +2.292679 -0.005718534 0.04126244 +3.081414 -0.005718534 0.04126244 +4.140474 -0.005718534 0.04126244 +5.562508 -0.005718534 0.04126244 +7.471917 -0.005718534 0.04126244 +10.03574 -0.005718534 0.04126244 +13.47828 -0.005718534 0.04126244 +18.10068 -0.005718534 0.04126244 +24.30731 -0.005718534 0.04126244 +32.64117 -0.005718534 0.04126244 +43.83129 -0.005718534 0.04126244 +58.85664 -0.005718534 0.04126244 +-0.0175068 0.0001755984 0.04126244 +-0.01161267 0.0001755984 0.04126244 +-0.005718534 0.0001755984 0.04126244 +0.0001755984 0.0001755984 0.04126244 +0.006069731 0.0001755984 0.04126244 +0.01197402 0.0001755984 0.04126244 +0.01903886 0.0001755984 0.04126244 +0.02852504 0.0001755984 0.04126244 +0.04126244 0.0001755984 0.04126244 +0.05836535 0.0001755984 0.04126244 +0.08132997 0.0001755984 0.04126244 +0.1121653 0.0001755984 0.04126244 +0.1535689 0.0001755984 0.04126244 +0.2091628 0.0001755984 0.04126244 +0.2838106 0.0001755984 0.04126244 +0.3840425 0.0001755984 0.04126244 +0.518627 0.0001755984 0.04126244 +0.6993381 0.0001755984 0.04126244 +0.9419845 0.0001755984 0.04126244 +1.267794 0.0001755984 0.04126244 +1.705268 0.0001755984 0.04126244 +2.292679 0.0001755984 0.04126244 +3.081414 0.0001755984 0.04126244 +4.140474 0.0001755984 0.04126244 +5.562508 0.0001755984 0.04126244 +7.471917 0.0001755984 0.04126244 +10.03574 0.0001755984 0.04126244 +13.47828 0.0001755984 0.04126244 +18.10068 0.0001755984 0.04126244 +24.30731 0.0001755984 0.04126244 +32.64117 0.0001755984 0.04126244 +43.83129 0.0001755984 0.04126244 +58.85664 0.0001755984 0.04126244 +-0.0175068 0.006069731 0.04126244 +-0.01161267 0.006069731 0.04126244 +-0.005718534 0.006069731 0.04126244 +0.0001755984 0.006069731 0.04126244 +0.006069731 0.006069731 0.04126244 +0.01197402 0.006069731 0.04126244 +0.01903886 0.006069731 0.04126244 +0.02852504 0.006069731 0.04126244 +0.04126244 0.006069731 0.04126244 +0.05836535 0.006069731 0.04126244 +0.08132997 0.006069731 0.04126244 +0.1121653 0.006069731 0.04126244 +0.1535689 0.006069731 0.04126244 +0.2091628 0.006069731 0.04126244 +0.2838106 0.006069731 0.04126244 +0.3840425 0.006069731 0.04126244 +0.518627 0.006069731 0.04126244 +0.6993381 0.006069731 0.04126244 +0.9419845 0.006069731 0.04126244 +1.267794 0.006069731 0.04126244 +1.705268 0.006069731 0.04126244 +2.292679 0.006069731 0.04126244 +3.081414 0.006069731 0.04126244 +4.140474 0.006069731 0.04126244 +5.562508 0.006069731 0.04126244 +7.471917 0.006069731 0.04126244 +10.03574 0.006069731 0.04126244 +13.47828 0.006069731 0.04126244 +18.10068 0.006069731 0.04126244 +24.30731 0.006069731 0.04126244 +32.64117 0.006069731 0.04126244 +43.83129 0.006069731 0.04126244 +58.85664 0.006069731 0.04126244 +-0.0175068 0.01197402 0.04126244 +-0.01161267 0.01197402 0.04126244 +-0.005718534 0.01197402 0.04126244 +0.0001755984 0.01197402 0.04126244 +0.006069731 0.01197402 0.04126244 +0.01197402 0.01197402 0.04126244 +0.01903886 0.01197402 0.04126244 +0.02852504 0.01197402 0.04126244 +0.04126244 0.01197402 0.04126244 +0.05836535 0.01197402 0.04126244 +0.08132997 0.01197402 0.04126244 +0.1121653 0.01197402 0.04126244 +0.1535689 0.01197402 0.04126244 +0.2091628 0.01197402 0.04126244 +0.2838106 0.01197402 0.04126244 +0.3840425 0.01197402 0.04126244 +0.518627 0.01197402 0.04126244 +0.6993381 0.01197402 0.04126244 +0.9419845 0.01197402 0.04126244 +1.267794 0.01197402 0.04126244 +1.705268 0.01197402 0.04126244 +2.292679 0.01197402 0.04126244 +3.081414 0.01197402 0.04126244 +4.140474 0.01197402 0.04126244 +5.562508 0.01197402 0.04126244 +7.471917 0.01197402 0.04126244 +10.03574 0.01197402 0.04126244 +13.47828 0.01197402 0.04126244 +18.10068 0.01197402 0.04126244 +24.30731 0.01197402 0.04126244 +32.64117 0.01197402 0.04126244 +43.83129 0.01197402 0.04126244 +58.85664 0.01197402 0.04126244 +-0.0175068 0.01903886 0.04126244 +-0.01161267 0.01903886 0.04126244 +-0.005718534 0.01903886 0.04126244 +0.0001755984 0.01903886 0.04126244 +0.006069731 0.01903886 0.04126244 +0.01197402 0.01903886 0.04126244 +0.01903886 0.01903886 0.04126244 +0.02852504 0.01903886 0.04126244 +0.04126244 0.01903886 0.04126244 +0.05836535 0.01903886 0.04126244 +0.08132997 0.01903886 0.04126244 +0.1121653 0.01903886 0.04126244 +0.1535689 0.01903886 0.04126244 +0.2091628 0.01903886 0.04126244 +0.2838106 0.01903886 0.04126244 +0.3840425 0.01903886 0.04126244 +0.518627 0.01903886 0.04126244 +0.6993381 0.01903886 0.04126244 +0.9419845 0.01903886 0.04126244 +1.267794 0.01903886 0.04126244 +1.705268 0.01903886 0.04126244 +2.292679 0.01903886 0.04126244 +3.081414 0.01903886 0.04126244 +4.140474 0.01903886 0.04126244 +5.562508 0.01903886 0.04126244 +7.471917 0.01903886 0.04126244 +10.03574 0.01903886 0.04126244 +13.47828 0.01903886 0.04126244 +18.10068 0.01903886 0.04126244 +24.30731 0.01903886 0.04126244 +32.64117 0.01903886 0.04126244 +43.83129 0.01903886 0.04126244 +58.85664 0.01903886 0.04126244 +-0.0175068 0.02852504 0.04126244 +-0.01161267 0.02852504 0.04126244 +-0.005718534 0.02852504 0.04126244 +0.0001755984 0.02852504 0.04126244 +0.006069731 0.02852504 0.04126244 +0.01197402 0.02852504 0.04126244 +0.01903886 0.02852504 0.04126244 +0.02852504 0.02852504 0.04126244 +0.04126244 0.02852504 0.04126244 +0.05836535 0.02852504 0.04126244 +0.08132997 0.02852504 0.04126244 +0.1121653 0.02852504 0.04126244 +0.1535689 0.02852504 0.04126244 +0.2091628 0.02852504 0.04126244 +0.2838106 0.02852504 0.04126244 +0.3840425 0.02852504 0.04126244 +0.518627 0.02852504 0.04126244 +0.6993381 0.02852504 0.04126244 +0.9419845 0.02852504 0.04126244 +1.267794 0.02852504 0.04126244 +1.705268 0.02852504 0.04126244 +2.292679 0.02852504 0.04126244 +3.081414 0.02852504 0.04126244 +4.140474 0.02852504 0.04126244 +5.562508 0.02852504 0.04126244 +7.471917 0.02852504 0.04126244 +10.03574 0.02852504 0.04126244 +13.47828 0.02852504 0.04126244 +18.10068 0.02852504 0.04126244 +24.30731 0.02852504 0.04126244 +32.64117 0.02852504 0.04126244 +43.83129 0.02852504 0.04126244 +58.85664 0.02852504 0.04126244 +-0.0175068 0.04126244 0.04126244 +-0.01161267 0.04126244 0.04126244 +-0.005718534 0.04126244 0.04126244 +0.0001755984 0.04126244 0.04126244 +0.006069731 0.04126244 0.04126244 +0.01197402 0.04126244 0.04126244 +0.01903886 0.04126244 0.04126244 +0.02852504 0.04126244 0.04126244 +0.04126244 0.04126244 0.04126244 +0.05836535 0.04126244 0.04126244 +0.08132997 0.04126244 0.04126244 +0.1121653 0.04126244 0.04126244 +0.1535689 0.04126244 0.04126244 +0.2091628 0.04126244 0.04126244 +0.2838106 0.04126244 0.04126244 +0.3840425 0.04126244 0.04126244 +0.518627 0.04126244 0.04126244 +0.6993381 0.04126244 0.04126244 +0.9419845 0.04126244 0.04126244 +1.267794 0.04126244 0.04126244 +1.705268 0.04126244 0.04126244 +2.292679 0.04126244 0.04126244 +3.081414 0.04126244 0.04126244 +4.140474 0.04126244 0.04126244 +5.562508 0.04126244 0.04126244 +7.471917 0.04126244 0.04126244 +10.03574 0.04126244 0.04126244 +13.47828 0.04126244 0.04126244 +18.10068 0.04126244 0.04126244 +24.30731 0.04126244 0.04126244 +32.64117 0.04126244 0.04126244 +43.83129 0.04126244 0.04126244 +58.85664 0.04126244 0.04126244 +-0.0175068 0.05836535 0.04126244 +-0.01161267 0.05836535 0.04126244 +-0.005718534 0.05836535 0.04126244 +0.0001755984 0.05836535 0.04126244 +0.006069731 0.05836535 0.04126244 +0.01197402 0.05836535 0.04126244 +0.01903886 0.05836535 0.04126244 +0.02852504 0.05836535 0.04126244 +0.04126244 0.05836535 0.04126244 +0.05836535 0.05836535 0.04126244 +0.08132997 0.05836535 0.04126244 +0.1121653 0.05836535 0.04126244 +0.1535689 0.05836535 0.04126244 +0.2091628 0.05836535 0.04126244 +0.2838106 0.05836535 0.04126244 +0.3840425 0.05836535 0.04126244 +0.518627 0.05836535 0.04126244 +0.6993381 0.05836535 0.04126244 +0.9419845 0.05836535 0.04126244 +1.267794 0.05836535 0.04126244 +1.705268 0.05836535 0.04126244 +2.292679 0.05836535 0.04126244 +3.081414 0.05836535 0.04126244 +4.140474 0.05836535 0.04126244 +5.562508 0.05836535 0.04126244 +7.471917 0.05836535 0.04126244 +10.03574 0.05836535 0.04126244 +13.47828 0.05836535 0.04126244 +18.10068 0.05836535 0.04126244 +24.30731 0.05836535 0.04126244 +32.64117 0.05836535 0.04126244 +43.83129 0.05836535 0.04126244 +58.85664 0.05836535 0.04126244 +-0.0175068 0.08132997 0.04126244 +-0.01161267 0.08132997 0.04126244 +-0.005718534 0.08132997 0.04126244 +0.0001755984 0.08132997 0.04126244 +0.006069731 0.08132997 0.04126244 +0.01197402 0.08132997 0.04126244 +0.01903886 0.08132997 0.04126244 +0.02852504 0.08132997 0.04126244 +0.04126244 0.08132997 0.04126244 +0.05836535 0.08132997 0.04126244 +0.08132997 0.08132997 0.04126244 +0.1121653 0.08132997 0.04126244 +0.1535689 0.08132997 0.04126244 +0.2091628 0.08132997 0.04126244 +0.2838106 0.08132997 0.04126244 +0.3840425 0.08132997 0.04126244 +0.518627 0.08132997 0.04126244 +0.6993381 0.08132997 0.04126244 +0.9419845 0.08132997 0.04126244 +1.267794 0.08132997 0.04126244 +1.705268 0.08132997 0.04126244 +2.292679 0.08132997 0.04126244 +3.081414 0.08132997 0.04126244 +4.140474 0.08132997 0.04126244 +5.562508 0.08132997 0.04126244 +7.471917 0.08132997 0.04126244 +10.03574 0.08132997 0.04126244 +13.47828 0.08132997 0.04126244 +18.10068 0.08132997 0.04126244 +24.30731 0.08132997 0.04126244 +32.64117 0.08132997 0.04126244 +43.83129 0.08132997 0.04126244 +58.85664 0.08132997 0.04126244 +-0.0175068 0.1121653 0.04126244 +-0.01161267 0.1121653 0.04126244 +-0.005718534 0.1121653 0.04126244 +0.0001755984 0.1121653 0.04126244 +0.006069731 0.1121653 0.04126244 +0.01197402 0.1121653 0.04126244 +0.01903886 0.1121653 0.04126244 +0.02852504 0.1121653 0.04126244 +0.04126244 0.1121653 0.04126244 +0.05836535 0.1121653 0.04126244 +0.08132997 0.1121653 0.04126244 +0.1121653 0.1121653 0.04126244 +0.1535689 0.1121653 0.04126244 +0.2091628 0.1121653 0.04126244 +0.2838106 0.1121653 0.04126244 +0.3840425 0.1121653 0.04126244 +0.518627 0.1121653 0.04126244 +0.6993381 0.1121653 0.04126244 +0.9419845 0.1121653 0.04126244 +1.267794 0.1121653 0.04126244 +1.705268 0.1121653 0.04126244 +2.292679 0.1121653 0.04126244 +3.081414 0.1121653 0.04126244 +4.140474 0.1121653 0.04126244 +5.562508 0.1121653 0.04126244 +7.471917 0.1121653 0.04126244 +10.03574 0.1121653 0.04126244 +13.47828 0.1121653 0.04126244 +18.10068 0.1121653 0.04126244 +24.30731 0.1121653 0.04126244 +32.64117 0.1121653 0.04126244 +43.83129 0.1121653 0.04126244 +58.85664 0.1121653 0.04126244 +-0.0175068 0.1535689 0.04126244 +-0.01161267 0.1535689 0.04126244 +-0.005718534 0.1535689 0.04126244 +0.0001755984 0.1535689 0.04126244 +0.006069731 0.1535689 0.04126244 +0.01197402 0.1535689 0.04126244 +0.01903886 0.1535689 0.04126244 +0.02852504 0.1535689 0.04126244 +0.04126244 0.1535689 0.04126244 +0.05836535 0.1535689 0.04126244 +0.08132997 0.1535689 0.04126244 +0.1121653 0.1535689 0.04126244 +0.1535689 0.1535689 0.04126244 +0.2091628 0.1535689 0.04126244 +0.2838106 0.1535689 0.04126244 +0.3840425 0.1535689 0.04126244 +0.518627 0.1535689 0.04126244 +0.6993381 0.1535689 0.04126244 +0.9419845 0.1535689 0.04126244 +1.267794 0.1535689 0.04126244 +1.705268 0.1535689 0.04126244 +2.292679 0.1535689 0.04126244 +3.081414 0.1535689 0.04126244 +4.140474 0.1535689 0.04126244 +5.562508 0.1535689 0.04126244 +7.471917 0.1535689 0.04126244 +10.03574 0.1535689 0.04126244 +13.47828 0.1535689 0.04126244 +18.10068 0.1535689 0.04126244 +24.30731 0.1535689 0.04126244 +32.64117 0.1535689 0.04126244 +43.83129 0.1535689 0.04126244 +58.85664 0.1535689 0.04126244 +-0.0175068 0.2091628 0.04126244 +-0.01161267 0.2091628 0.04126244 +-0.005718534 0.2091628 0.04126244 +0.0001755984 0.2091628 0.04126244 +0.006069731 0.2091628 0.04126244 +0.01197402 0.2091628 0.04126244 +0.01903886 0.2091628 0.04126244 +0.02852504 0.2091628 0.04126244 +0.04126244 0.2091628 0.04126244 +0.05836535 0.2091628 0.04126244 +0.08132997 0.2091628 0.04126244 +0.1121653 0.2091628 0.04126244 +0.1535689 0.2091628 0.04126244 +0.2091628 0.2091628 0.04126244 +0.2838106 0.2091628 0.04126244 +0.3840425 0.2091628 0.04126244 +0.518627 0.2091628 0.04126244 +0.6993381 0.2091628 0.04126244 +0.9419845 0.2091628 0.04126244 +1.267794 0.2091628 0.04126244 +1.705268 0.2091628 0.04126244 +2.292679 0.2091628 0.04126244 +3.081414 0.2091628 0.04126244 +4.140474 0.2091628 0.04126244 +5.562508 0.2091628 0.04126244 +7.471917 0.2091628 0.04126244 +10.03574 0.2091628 0.04126244 +13.47828 0.2091628 0.04126244 +18.10068 0.2091628 0.04126244 +24.30731 0.2091628 0.04126244 +32.64117 0.2091628 0.04126244 +43.83129 0.2091628 0.04126244 +58.85664 0.2091628 0.04126244 +-0.0175068 0.2838106 0.04126244 +-0.01161267 0.2838106 0.04126244 +-0.005718534 0.2838106 0.04126244 +0.0001755984 0.2838106 0.04126244 +0.006069731 0.2838106 0.04126244 +0.01197402 0.2838106 0.04126244 +0.01903886 0.2838106 0.04126244 +0.02852504 0.2838106 0.04126244 +0.04126244 0.2838106 0.04126244 +0.05836535 0.2838106 0.04126244 +0.08132997 0.2838106 0.04126244 +0.1121653 0.2838106 0.04126244 +0.1535689 0.2838106 0.04126244 +0.2091628 0.2838106 0.04126244 +0.2838106 0.2838106 0.04126244 +0.3840425 0.2838106 0.04126244 +0.518627 0.2838106 0.04126244 +0.6993381 0.2838106 0.04126244 +0.9419845 0.2838106 0.04126244 +1.267794 0.2838106 0.04126244 +1.705268 0.2838106 0.04126244 +2.292679 0.2838106 0.04126244 +3.081414 0.2838106 0.04126244 +4.140474 0.2838106 0.04126244 +5.562508 0.2838106 0.04126244 +7.471917 0.2838106 0.04126244 +10.03574 0.2838106 0.04126244 +13.47828 0.2838106 0.04126244 +18.10068 0.2838106 0.04126244 +24.30731 0.2838106 0.04126244 +32.64117 0.2838106 0.04126244 +43.83129 0.2838106 0.04126244 +58.85664 0.2838106 0.04126244 +-0.0175068 0.3840425 0.04126244 +-0.01161267 0.3840425 0.04126244 +-0.005718534 0.3840425 0.04126244 +0.0001755984 0.3840425 0.04126244 +0.006069731 0.3840425 0.04126244 +0.01197402 0.3840425 0.04126244 +0.01903886 0.3840425 0.04126244 +0.02852504 0.3840425 0.04126244 +0.04126244 0.3840425 0.04126244 +0.05836535 0.3840425 0.04126244 +0.08132997 0.3840425 0.04126244 +0.1121653 0.3840425 0.04126244 +0.1535689 0.3840425 0.04126244 +0.2091628 0.3840425 0.04126244 +0.2838106 0.3840425 0.04126244 +0.3840425 0.3840425 0.04126244 +0.518627 0.3840425 0.04126244 +0.6993381 0.3840425 0.04126244 +0.9419845 0.3840425 0.04126244 +1.267794 0.3840425 0.04126244 +1.705268 0.3840425 0.04126244 +2.292679 0.3840425 0.04126244 +3.081414 0.3840425 0.04126244 +4.140474 0.3840425 0.04126244 +5.562508 0.3840425 0.04126244 +7.471917 0.3840425 0.04126244 +10.03574 0.3840425 0.04126244 +13.47828 0.3840425 0.04126244 +18.10068 0.3840425 0.04126244 +24.30731 0.3840425 0.04126244 +32.64117 0.3840425 0.04126244 +43.83129 0.3840425 0.04126244 +58.85664 0.3840425 0.04126244 +-0.0175068 0.518627 0.04126244 +-0.01161267 0.518627 0.04126244 +-0.005718534 0.518627 0.04126244 +0.0001755984 0.518627 0.04126244 +0.006069731 0.518627 0.04126244 +0.01197402 0.518627 0.04126244 +0.01903886 0.518627 0.04126244 +0.02852504 0.518627 0.04126244 +0.04126244 0.518627 0.04126244 +0.05836535 0.518627 0.04126244 +0.08132997 0.518627 0.04126244 +0.1121653 0.518627 0.04126244 +0.1535689 0.518627 0.04126244 +0.2091628 0.518627 0.04126244 +0.2838106 0.518627 0.04126244 +0.3840425 0.518627 0.04126244 +0.518627 0.518627 0.04126244 +0.6993381 0.518627 0.04126244 +0.9419845 0.518627 0.04126244 +1.267794 0.518627 0.04126244 +1.705268 0.518627 0.04126244 +2.292679 0.518627 0.04126244 +3.081414 0.518627 0.04126244 +4.140474 0.518627 0.04126244 +5.562508 0.518627 0.04126244 +7.471917 0.518627 0.04126244 +10.03574 0.518627 0.04126244 +13.47828 0.518627 0.04126244 +18.10068 0.518627 0.04126244 +24.30731 0.518627 0.04126244 +32.64117 0.518627 0.04126244 +43.83129 0.518627 0.04126244 +58.85664 0.518627 0.04126244 +-0.0175068 0.6993381 0.04126244 +-0.01161267 0.6993381 0.04126244 +-0.005718534 0.6993381 0.04126244 +0.0001755984 0.6993381 0.04126244 +0.006069731 0.6993381 0.04126244 +0.01197402 0.6993381 0.04126244 +0.01903886 0.6993381 0.04126244 +0.02852504 0.6993381 0.04126244 +0.04126244 0.6993381 0.04126244 +0.05836535 0.6993381 0.04126244 +0.08132997 0.6993381 0.04126244 +0.1121653 0.6993381 0.04126244 +0.1535689 0.6993381 0.04126244 +0.2091628 0.6993381 0.04126244 +0.2838106 0.6993381 0.04126244 +0.3840425 0.6993381 0.04126244 +0.518627 0.6993381 0.04126244 +0.6993381 0.6993381 0.04126244 +0.9419845 0.6993381 0.04126244 +1.267794 0.6993381 0.04126244 +1.705268 0.6993381 0.04126244 +2.292679 0.6993381 0.04126244 +3.081414 0.6993381 0.04126244 +4.140474 0.6993381 0.04126244 +5.562508 0.6993381 0.04126244 +7.471917 0.6993381 0.04126244 +10.03574 0.6993381 0.04126244 +13.47828 0.6993381 0.04126244 +18.10068 0.6993381 0.04126244 +24.30731 0.6993381 0.04126244 +32.64117 0.6993381 0.04126244 +43.83129 0.6993381 0.04126244 +58.85664 0.6993381 0.04126244 +-0.0175068 0.9419845 0.04126244 +-0.01161267 0.9419845 0.04126244 +-0.005718534 0.9419845 0.04126244 +0.0001755984 0.9419845 0.04126244 +0.006069731 0.9419845 0.04126244 +0.01197402 0.9419845 0.04126244 +0.01903886 0.9419845 0.04126244 +0.02852504 0.9419845 0.04126244 +0.04126244 0.9419845 0.04126244 +0.05836535 0.9419845 0.04126244 +0.08132997 0.9419845 0.04126244 +0.1121653 0.9419845 0.04126244 +0.1535689 0.9419845 0.04126244 +0.2091628 0.9419845 0.04126244 +0.2838106 0.9419845 0.04126244 +0.3840425 0.9419845 0.04126244 +0.518627 0.9419845 0.04126244 +0.6993381 0.9419845 0.04126244 +0.9419845 0.9419845 0.04126244 +1.267794 0.9419845 0.04126244 +1.705268 0.9419845 0.04126244 +2.292679 0.9419845 0.04126244 +3.081414 0.9419845 0.04126244 +4.140474 0.9419845 0.04126244 +5.562508 0.9419845 0.04126244 +7.471917 0.9419845 0.04126244 +10.03574 0.9419845 0.04126244 +13.47828 0.9419845 0.04126244 +18.10068 0.9419845 0.04126244 +24.30731 0.9419845 0.04126244 +32.64117 0.9419845 0.04126244 +43.83129 0.9419845 0.04126244 +58.85664 0.9419845 0.04126244 +-0.0175068 1.267794 0.04126244 +-0.01161267 1.267794 0.04126244 +-0.005718534 1.267794 0.04126244 +0.0001755984 1.267794 0.04126244 +0.006069731 1.267794 0.04126244 +0.01197402 1.267794 0.04126244 +0.01903886 1.267794 0.04126244 +0.02852504 1.267794 0.04126244 +0.04126244 1.267794 0.04126244 +0.05836535 1.267794 0.04126244 +0.08132997 1.267794 0.04126244 +0.1121653 1.267794 0.04126244 +0.1535689 1.267794 0.04126244 +0.2091628 1.267794 0.04126244 +0.2838106 1.267794 0.04126244 +0.3840425 1.267794 0.04126244 +0.518627 1.267794 0.04126244 +0.6993381 1.267794 0.04126244 +0.9419845 1.267794 0.04126244 +1.267794 1.267794 0.04126244 +1.705268 1.267794 0.04126244 +2.292679 1.267794 0.04126244 +3.081414 1.267794 0.04126244 +4.140474 1.267794 0.04126244 +5.562508 1.267794 0.04126244 +7.471917 1.267794 0.04126244 +10.03574 1.267794 0.04126244 +13.47828 1.267794 0.04126244 +18.10068 1.267794 0.04126244 +24.30731 1.267794 0.04126244 +32.64117 1.267794 0.04126244 +43.83129 1.267794 0.04126244 +58.85664 1.267794 0.04126244 +-0.0175068 1.705268 0.04126244 +-0.01161267 1.705268 0.04126244 +-0.005718534 1.705268 0.04126244 +0.0001755984 1.705268 0.04126244 +0.006069731 1.705268 0.04126244 +0.01197402 1.705268 0.04126244 +0.01903886 1.705268 0.04126244 +0.02852504 1.705268 0.04126244 +0.04126244 1.705268 0.04126244 +0.05836535 1.705268 0.04126244 +0.08132997 1.705268 0.04126244 +0.1121653 1.705268 0.04126244 +0.1535689 1.705268 0.04126244 +0.2091628 1.705268 0.04126244 +0.2838106 1.705268 0.04126244 +0.3840425 1.705268 0.04126244 +0.518627 1.705268 0.04126244 +0.6993381 1.705268 0.04126244 +0.9419845 1.705268 0.04126244 +1.267794 1.705268 0.04126244 +1.705268 1.705268 0.04126244 +2.292679 1.705268 0.04126244 +3.081414 1.705268 0.04126244 +4.140474 1.705268 0.04126244 +5.562508 1.705268 0.04126244 +7.471917 1.705268 0.04126244 +10.03574 1.705268 0.04126244 +13.47828 1.705268 0.04126244 +18.10068 1.705268 0.04126244 +24.30731 1.705268 0.04126244 +32.64117 1.705268 0.04126244 +43.83129 1.705268 0.04126244 +58.85664 1.705268 0.04126244 +-0.0175068 2.292679 0.04126244 +-0.01161267 2.292679 0.04126244 +-0.005718534 2.292679 0.04126244 +0.0001755984 2.292679 0.04126244 +0.006069731 2.292679 0.04126244 +0.01197402 2.292679 0.04126244 +0.01903886 2.292679 0.04126244 +0.02852504 2.292679 0.04126244 +0.04126244 2.292679 0.04126244 +0.05836535 2.292679 0.04126244 +0.08132997 2.292679 0.04126244 +0.1121653 2.292679 0.04126244 +0.1535689 2.292679 0.04126244 +0.2091628 2.292679 0.04126244 +0.2838106 2.292679 0.04126244 +0.3840425 2.292679 0.04126244 +0.518627 2.292679 0.04126244 +0.6993381 2.292679 0.04126244 +0.9419845 2.292679 0.04126244 +1.267794 2.292679 0.04126244 +1.705268 2.292679 0.04126244 +2.292679 2.292679 0.04126244 +3.081414 2.292679 0.04126244 +4.140474 2.292679 0.04126244 +5.562508 2.292679 0.04126244 +7.471917 2.292679 0.04126244 +10.03574 2.292679 0.04126244 +13.47828 2.292679 0.04126244 +18.10068 2.292679 0.04126244 +24.30731 2.292679 0.04126244 +32.64117 2.292679 0.04126244 +43.83129 2.292679 0.04126244 +58.85664 2.292679 0.04126244 +-0.0175068 3.081414 0.04126244 +-0.01161267 3.081414 0.04126244 +-0.005718534 3.081414 0.04126244 +0.0001755984 3.081414 0.04126244 +0.006069731 3.081414 0.04126244 +0.01197402 3.081414 0.04126244 +0.01903886 3.081414 0.04126244 +0.02852504 3.081414 0.04126244 +0.04126244 3.081414 0.04126244 +0.05836535 3.081414 0.04126244 +0.08132997 3.081414 0.04126244 +0.1121653 3.081414 0.04126244 +0.1535689 3.081414 0.04126244 +0.2091628 3.081414 0.04126244 +0.2838106 3.081414 0.04126244 +0.3840425 3.081414 0.04126244 +0.518627 3.081414 0.04126244 +0.6993381 3.081414 0.04126244 +0.9419845 3.081414 0.04126244 +1.267794 3.081414 0.04126244 +1.705268 3.081414 0.04126244 +2.292679 3.081414 0.04126244 +3.081414 3.081414 0.04126244 +4.140474 3.081414 0.04126244 +5.562508 3.081414 0.04126244 +7.471917 3.081414 0.04126244 +10.03574 3.081414 0.04126244 +13.47828 3.081414 0.04126244 +18.10068 3.081414 0.04126244 +24.30731 3.081414 0.04126244 +32.64117 3.081414 0.04126244 +43.83129 3.081414 0.04126244 +58.85664 3.081414 0.04126244 +-0.0175068 4.140474 0.04126244 +-0.01161267 4.140474 0.04126244 +-0.005718534 4.140474 0.04126244 +0.0001755984 4.140474 0.04126244 +0.006069731 4.140474 0.04126244 +0.01197402 4.140474 0.04126244 +0.01903886 4.140474 0.04126244 +0.02852504 4.140474 0.04126244 +0.04126244 4.140474 0.04126244 +0.05836535 4.140474 0.04126244 +0.08132997 4.140474 0.04126244 +0.1121653 4.140474 0.04126244 +0.1535689 4.140474 0.04126244 +0.2091628 4.140474 0.04126244 +0.2838106 4.140474 0.04126244 +0.3840425 4.140474 0.04126244 +0.518627 4.140474 0.04126244 +0.6993381 4.140474 0.04126244 +0.9419845 4.140474 0.04126244 +1.267794 4.140474 0.04126244 +1.705268 4.140474 0.04126244 +2.292679 4.140474 0.04126244 +3.081414 4.140474 0.04126244 +4.140474 4.140474 0.04126244 +5.562508 4.140474 0.04126244 +7.471917 4.140474 0.04126244 +10.03574 4.140474 0.04126244 +13.47828 4.140474 0.04126244 +18.10068 4.140474 0.04126244 +24.30731 4.140474 0.04126244 +32.64117 4.140474 0.04126244 +43.83129 4.140474 0.04126244 +58.85664 4.140474 0.04126244 +-0.0175068 5.562508 0.04126244 +-0.01161267 5.562508 0.04126244 +-0.005718534 5.562508 0.04126244 +0.0001755984 5.562508 0.04126244 +0.006069731 5.562508 0.04126244 +0.01197402 5.562508 0.04126244 +0.01903886 5.562508 0.04126244 +0.02852504 5.562508 0.04126244 +0.04126244 5.562508 0.04126244 +0.05836535 5.562508 0.04126244 +0.08132997 5.562508 0.04126244 +0.1121653 5.562508 0.04126244 +0.1535689 5.562508 0.04126244 +0.2091628 5.562508 0.04126244 +0.2838106 5.562508 0.04126244 +0.3840425 5.562508 0.04126244 +0.518627 5.562508 0.04126244 +0.6993381 5.562508 0.04126244 +0.9419845 5.562508 0.04126244 +1.267794 5.562508 0.04126244 +1.705268 5.562508 0.04126244 +2.292679 5.562508 0.04126244 +3.081414 5.562508 0.04126244 +4.140474 5.562508 0.04126244 +5.562508 5.562508 0.04126244 +7.471917 5.562508 0.04126244 +10.03574 5.562508 0.04126244 +13.47828 5.562508 0.04126244 +18.10068 5.562508 0.04126244 +24.30731 5.562508 0.04126244 +32.64117 5.562508 0.04126244 +43.83129 5.562508 0.04126244 +58.85664 5.562508 0.04126244 +-0.0175068 7.471917 0.04126244 +-0.01161267 7.471917 0.04126244 +-0.005718534 7.471917 0.04126244 +0.0001755984 7.471917 0.04126244 +0.006069731 7.471917 0.04126244 +0.01197402 7.471917 0.04126244 +0.01903886 7.471917 0.04126244 +0.02852504 7.471917 0.04126244 +0.04126244 7.471917 0.04126244 +0.05836535 7.471917 0.04126244 +0.08132997 7.471917 0.04126244 +0.1121653 7.471917 0.04126244 +0.1535689 7.471917 0.04126244 +0.2091628 7.471917 0.04126244 +0.2838106 7.471917 0.04126244 +0.3840425 7.471917 0.04126244 +0.518627 7.471917 0.04126244 +0.6993381 7.471917 0.04126244 +0.9419845 7.471917 0.04126244 +1.267794 7.471917 0.04126244 +1.705268 7.471917 0.04126244 +2.292679 7.471917 0.04126244 +3.081414 7.471917 0.04126244 +4.140474 7.471917 0.04126244 +5.562508 7.471917 0.04126244 +7.471917 7.471917 0.04126244 +10.03574 7.471917 0.04126244 +13.47828 7.471917 0.04126244 +18.10068 7.471917 0.04126244 +24.30731 7.471917 0.04126244 +32.64117 7.471917 0.04126244 +43.83129 7.471917 0.04126244 +58.85664 7.471917 0.04126244 +-0.0175068 10.03574 0.04126244 +-0.01161267 10.03574 0.04126244 +-0.005718534 10.03574 0.04126244 +0.0001755984 10.03574 0.04126244 +0.006069731 10.03574 0.04126244 +0.01197402 10.03574 0.04126244 +0.01903886 10.03574 0.04126244 +0.02852504 10.03574 0.04126244 +0.04126244 10.03574 0.04126244 +0.05836535 10.03574 0.04126244 +0.08132997 10.03574 0.04126244 +0.1121653 10.03574 0.04126244 +0.1535689 10.03574 0.04126244 +0.2091628 10.03574 0.04126244 +0.2838106 10.03574 0.04126244 +0.3840425 10.03574 0.04126244 +0.518627 10.03574 0.04126244 +0.6993381 10.03574 0.04126244 +0.9419845 10.03574 0.04126244 +1.267794 10.03574 0.04126244 +1.705268 10.03574 0.04126244 +2.292679 10.03574 0.04126244 +3.081414 10.03574 0.04126244 +4.140474 10.03574 0.04126244 +5.562508 10.03574 0.04126244 +7.471917 10.03574 0.04126244 +10.03574 10.03574 0.04126244 +13.47828 10.03574 0.04126244 +18.10068 10.03574 0.04126244 +24.30731 10.03574 0.04126244 +32.64117 10.03574 0.04126244 +43.83129 10.03574 0.04126244 +58.85664 10.03574 0.04126244 +-0.0175068 13.47828 0.04126244 +-0.01161267 13.47828 0.04126244 +-0.005718534 13.47828 0.04126244 +0.0001755984 13.47828 0.04126244 +0.006069731 13.47828 0.04126244 +0.01197402 13.47828 0.04126244 +0.01903886 13.47828 0.04126244 +0.02852504 13.47828 0.04126244 +0.04126244 13.47828 0.04126244 +0.05836535 13.47828 0.04126244 +0.08132997 13.47828 0.04126244 +0.1121653 13.47828 0.04126244 +0.1535689 13.47828 0.04126244 +0.2091628 13.47828 0.04126244 +0.2838106 13.47828 0.04126244 +0.3840425 13.47828 0.04126244 +0.518627 13.47828 0.04126244 +0.6993381 13.47828 0.04126244 +0.9419845 13.47828 0.04126244 +1.267794 13.47828 0.04126244 +1.705268 13.47828 0.04126244 +2.292679 13.47828 0.04126244 +3.081414 13.47828 0.04126244 +4.140474 13.47828 0.04126244 +5.562508 13.47828 0.04126244 +7.471917 13.47828 0.04126244 +10.03574 13.47828 0.04126244 +13.47828 13.47828 0.04126244 +18.10068 13.47828 0.04126244 +24.30731 13.47828 0.04126244 +32.64117 13.47828 0.04126244 +43.83129 13.47828 0.04126244 +58.85664 13.47828 0.04126244 +-0.0175068 18.10068 0.04126244 +-0.01161267 18.10068 0.04126244 +-0.005718534 18.10068 0.04126244 +0.0001755984 18.10068 0.04126244 +0.006069731 18.10068 0.04126244 +0.01197402 18.10068 0.04126244 +0.01903886 18.10068 0.04126244 +0.02852504 18.10068 0.04126244 +0.04126244 18.10068 0.04126244 +0.05836535 18.10068 0.04126244 +0.08132997 18.10068 0.04126244 +0.1121653 18.10068 0.04126244 +0.1535689 18.10068 0.04126244 +0.2091628 18.10068 0.04126244 +0.2838106 18.10068 0.04126244 +0.3840425 18.10068 0.04126244 +0.518627 18.10068 0.04126244 +0.6993381 18.10068 0.04126244 +0.9419845 18.10068 0.04126244 +1.267794 18.10068 0.04126244 +1.705268 18.10068 0.04126244 +2.292679 18.10068 0.04126244 +3.081414 18.10068 0.04126244 +4.140474 18.10068 0.04126244 +5.562508 18.10068 0.04126244 +7.471917 18.10068 0.04126244 +10.03574 18.10068 0.04126244 +13.47828 18.10068 0.04126244 +18.10068 18.10068 0.04126244 +24.30731 18.10068 0.04126244 +32.64117 18.10068 0.04126244 +43.83129 18.10068 0.04126244 +58.85664 18.10068 0.04126244 +-0.0175068 24.30731 0.04126244 +-0.01161267 24.30731 0.04126244 +-0.005718534 24.30731 0.04126244 +0.0001755984 24.30731 0.04126244 +0.006069731 24.30731 0.04126244 +0.01197402 24.30731 0.04126244 +0.01903886 24.30731 0.04126244 +0.02852504 24.30731 0.04126244 +0.04126244 24.30731 0.04126244 +0.05836535 24.30731 0.04126244 +0.08132997 24.30731 0.04126244 +0.1121653 24.30731 0.04126244 +0.1535689 24.30731 0.04126244 +0.2091628 24.30731 0.04126244 +0.2838106 24.30731 0.04126244 +0.3840425 24.30731 0.04126244 +0.518627 24.30731 0.04126244 +0.6993381 24.30731 0.04126244 +0.9419845 24.30731 0.04126244 +1.267794 24.30731 0.04126244 +1.705268 24.30731 0.04126244 +2.292679 24.30731 0.04126244 +3.081414 24.30731 0.04126244 +4.140474 24.30731 0.04126244 +5.562508 24.30731 0.04126244 +7.471917 24.30731 0.04126244 +10.03574 24.30731 0.04126244 +13.47828 24.30731 0.04126244 +18.10068 24.30731 0.04126244 +24.30731 24.30731 0.04126244 +32.64117 24.30731 0.04126244 +43.83129 24.30731 0.04126244 +58.85664 24.30731 0.04126244 +-0.0175068 32.64117 0.04126244 +-0.01161267 32.64117 0.04126244 +-0.005718534 32.64117 0.04126244 +0.0001755984 32.64117 0.04126244 +0.006069731 32.64117 0.04126244 +0.01197402 32.64117 0.04126244 +0.01903886 32.64117 0.04126244 +0.02852504 32.64117 0.04126244 +0.04126244 32.64117 0.04126244 +0.05836535 32.64117 0.04126244 +0.08132997 32.64117 0.04126244 +0.1121653 32.64117 0.04126244 +0.1535689 32.64117 0.04126244 +0.2091628 32.64117 0.04126244 +0.2838106 32.64117 0.04126244 +0.3840425 32.64117 0.04126244 +0.518627 32.64117 0.04126244 +0.6993381 32.64117 0.04126244 +0.9419845 32.64117 0.04126244 +1.267794 32.64117 0.04126244 +1.705268 32.64117 0.04126244 +2.292679 32.64117 0.04126244 +3.081414 32.64117 0.04126244 +4.140474 32.64117 0.04126244 +5.562508 32.64117 0.04126244 +7.471917 32.64117 0.04126244 +10.03574 32.64117 0.04126244 +13.47828 32.64117 0.04126244 +18.10068 32.64117 0.04126244 +24.30731 32.64117 0.04126244 +32.64117 32.64117 0.04126244 +43.83129 32.64117 0.04126244 +58.85664 32.64117 0.04126244 +-0.0175068 43.83129 0.04126244 +-0.01161267 43.83129 0.04126244 +-0.005718534 43.83129 0.04126244 +0.0001755984 43.83129 0.04126244 +0.006069731 43.83129 0.04126244 +0.01197402 43.83129 0.04126244 +0.01903886 43.83129 0.04126244 +0.02852504 43.83129 0.04126244 +0.04126244 43.83129 0.04126244 +0.05836535 43.83129 0.04126244 +0.08132997 43.83129 0.04126244 +0.1121653 43.83129 0.04126244 +0.1535689 43.83129 0.04126244 +0.2091628 43.83129 0.04126244 +0.2838106 43.83129 0.04126244 +0.3840425 43.83129 0.04126244 +0.518627 43.83129 0.04126244 +0.6993381 43.83129 0.04126244 +0.9419845 43.83129 0.04126244 +1.267794 43.83129 0.04126244 +1.705268 43.83129 0.04126244 +2.292679 43.83129 0.04126244 +3.081414 43.83129 0.04126244 +4.140474 43.83129 0.04126244 +5.562508 43.83129 0.04126244 +7.471917 43.83129 0.04126244 +10.03574 43.83129 0.04126244 +13.47828 43.83129 0.04126244 +18.10068 43.83129 0.04126244 +24.30731 43.83129 0.04126244 +32.64117 43.83129 0.04126244 +43.83129 43.83129 0.04126244 +58.85664 43.83129 0.04126244 +-0.0175068 58.85664 0.04126244 +-0.01161267 58.85664 0.04126244 +-0.005718534 58.85664 0.04126244 +0.0001755984 58.85664 0.04126244 +0.006069731 58.85664 0.04126244 +0.01197402 58.85664 0.04126244 +0.01903886 58.85664 0.04126244 +0.02852504 58.85664 0.04126244 +0.04126244 58.85664 0.04126244 +0.05836535 58.85664 0.04126244 +0.08132997 58.85664 0.04126244 +0.1121653 58.85664 0.04126244 +0.1535689 58.85664 0.04126244 +0.2091628 58.85664 0.04126244 +0.2838106 58.85664 0.04126244 +0.3840425 58.85664 0.04126244 +0.518627 58.85664 0.04126244 +0.6993381 58.85664 0.04126244 +0.9419845 58.85664 0.04126244 +1.267794 58.85664 0.04126244 +1.705268 58.85664 0.04126244 +2.292679 58.85664 0.04126244 +3.081414 58.85664 0.04126244 +4.140474 58.85664 0.04126244 +5.562508 58.85664 0.04126244 +7.471917 58.85664 0.04126244 +10.03574 58.85664 0.04126244 +13.47828 58.85664 0.04126244 +18.10068 58.85664 0.04126244 +24.30731 58.85664 0.04126244 +32.64117 58.85664 0.04126244 +43.83129 58.85664 0.04126244 +58.85664 58.85664 0.04126244 +-0.0175068 -0.0175068 0.05836535 +-0.01161267 -0.0175068 0.05836535 +-0.005718534 -0.0175068 0.05836535 +0.0001755984 -0.0175068 0.05836535 +0.006069731 -0.0175068 0.05836535 +0.01197402 -0.0175068 0.05836535 +0.01903886 -0.0175068 0.05836535 +0.02852504 -0.0175068 0.05836535 +0.04126244 -0.0175068 0.05836535 +0.05836535 -0.0175068 0.05836535 +0.08132997 -0.0175068 0.05836535 +0.1121653 -0.0175068 0.05836535 +0.1535689 -0.0175068 0.05836535 +0.2091628 -0.0175068 0.05836535 +0.2838106 -0.0175068 0.05836535 +0.3840425 -0.0175068 0.05836535 +0.518627 -0.0175068 0.05836535 +0.6993381 -0.0175068 0.05836535 +0.9419845 -0.0175068 0.05836535 +1.267794 -0.0175068 0.05836535 +1.705268 -0.0175068 0.05836535 +2.292679 -0.0175068 0.05836535 +3.081414 -0.0175068 0.05836535 +4.140474 -0.0175068 0.05836535 +5.562508 -0.0175068 0.05836535 +7.471917 -0.0175068 0.05836535 +10.03574 -0.0175068 0.05836535 +13.47828 -0.0175068 0.05836535 +18.10068 -0.0175068 0.05836535 +24.30731 -0.0175068 0.05836535 +32.64117 -0.0175068 0.05836535 +43.83129 -0.0175068 0.05836535 +58.85664 -0.0175068 0.05836535 +-0.0175068 -0.01161267 0.05836535 +-0.01161267 -0.01161267 0.05836535 +-0.005718534 -0.01161267 0.05836535 +0.0001755984 -0.01161267 0.05836535 +0.006069731 -0.01161267 0.05836535 +0.01197402 -0.01161267 0.05836535 +0.01903886 -0.01161267 0.05836535 +0.02852504 -0.01161267 0.05836535 +0.04126244 -0.01161267 0.05836535 +0.05836535 -0.01161267 0.05836535 +0.08132997 -0.01161267 0.05836535 +0.1121653 -0.01161267 0.05836535 +0.1535689 -0.01161267 0.05836535 +0.2091628 -0.01161267 0.05836535 +0.2838106 -0.01161267 0.05836535 +0.3840425 -0.01161267 0.05836535 +0.518627 -0.01161267 0.05836535 +0.6993381 -0.01161267 0.05836535 +0.9419845 -0.01161267 0.05836535 +1.267794 -0.01161267 0.05836535 +1.705268 -0.01161267 0.05836535 +2.292679 -0.01161267 0.05836535 +3.081414 -0.01161267 0.05836535 +4.140474 -0.01161267 0.05836535 +5.562508 -0.01161267 0.05836535 +7.471917 -0.01161267 0.05836535 +10.03574 -0.01161267 0.05836535 +13.47828 -0.01161267 0.05836535 +18.10068 -0.01161267 0.05836535 +24.30731 -0.01161267 0.05836535 +32.64117 -0.01161267 0.05836535 +43.83129 -0.01161267 0.05836535 +58.85664 -0.01161267 0.05836535 +-0.0175068 -0.005718534 0.05836535 +-0.01161267 -0.005718534 0.05836535 +-0.005718534 -0.005718534 0.05836535 +0.0001755984 -0.005718534 0.05836535 +0.006069731 -0.005718534 0.05836535 +0.01197402 -0.005718534 0.05836535 +0.01903886 -0.005718534 0.05836535 +0.02852504 -0.005718534 0.05836535 +0.04126244 -0.005718534 0.05836535 +0.05836535 -0.005718534 0.05836535 +0.08132997 -0.005718534 0.05836535 +0.1121653 -0.005718534 0.05836535 +0.1535689 -0.005718534 0.05836535 +0.2091628 -0.005718534 0.05836535 +0.2838106 -0.005718534 0.05836535 +0.3840425 -0.005718534 0.05836535 +0.518627 -0.005718534 0.05836535 +0.6993381 -0.005718534 0.05836535 +0.9419845 -0.005718534 0.05836535 +1.267794 -0.005718534 0.05836535 +1.705268 -0.005718534 0.05836535 +2.292679 -0.005718534 0.05836535 +3.081414 -0.005718534 0.05836535 +4.140474 -0.005718534 0.05836535 +5.562508 -0.005718534 0.05836535 +7.471917 -0.005718534 0.05836535 +10.03574 -0.005718534 0.05836535 +13.47828 -0.005718534 0.05836535 +18.10068 -0.005718534 0.05836535 +24.30731 -0.005718534 0.05836535 +32.64117 -0.005718534 0.05836535 +43.83129 -0.005718534 0.05836535 +58.85664 -0.005718534 0.05836535 +-0.0175068 0.0001755984 0.05836535 +-0.01161267 0.0001755984 0.05836535 +-0.005718534 0.0001755984 0.05836535 +0.0001755984 0.0001755984 0.05836535 +0.006069731 0.0001755984 0.05836535 +0.01197402 0.0001755984 0.05836535 +0.01903886 0.0001755984 0.05836535 +0.02852504 0.0001755984 0.05836535 +0.04126244 0.0001755984 0.05836535 +0.05836535 0.0001755984 0.05836535 +0.08132997 0.0001755984 0.05836535 +0.1121653 0.0001755984 0.05836535 +0.1535689 0.0001755984 0.05836535 +0.2091628 0.0001755984 0.05836535 +0.2838106 0.0001755984 0.05836535 +0.3840425 0.0001755984 0.05836535 +0.518627 0.0001755984 0.05836535 +0.6993381 0.0001755984 0.05836535 +0.9419845 0.0001755984 0.05836535 +1.267794 0.0001755984 0.05836535 +1.705268 0.0001755984 0.05836535 +2.292679 0.0001755984 0.05836535 +3.081414 0.0001755984 0.05836535 +4.140474 0.0001755984 0.05836535 +5.562508 0.0001755984 0.05836535 +7.471917 0.0001755984 0.05836535 +10.03574 0.0001755984 0.05836535 +13.47828 0.0001755984 0.05836535 +18.10068 0.0001755984 0.05836535 +24.30731 0.0001755984 0.05836535 +32.64117 0.0001755984 0.05836535 +43.83129 0.0001755984 0.05836535 +58.85664 0.0001755984 0.05836535 +-0.0175068 0.006069731 0.05836535 +-0.01161267 0.006069731 0.05836535 +-0.005718534 0.006069731 0.05836535 +0.0001755984 0.006069731 0.05836535 +0.006069731 0.006069731 0.05836535 +0.01197402 0.006069731 0.05836535 +0.01903886 0.006069731 0.05836535 +0.02852504 0.006069731 0.05836535 +0.04126244 0.006069731 0.05836535 +0.05836535 0.006069731 0.05836535 +0.08132997 0.006069731 0.05836535 +0.1121653 0.006069731 0.05836535 +0.1535689 0.006069731 0.05836535 +0.2091628 0.006069731 0.05836535 +0.2838106 0.006069731 0.05836535 +0.3840425 0.006069731 0.05836535 +0.518627 0.006069731 0.05836535 +0.6993381 0.006069731 0.05836535 +0.9419845 0.006069731 0.05836535 +1.267794 0.006069731 0.05836535 +1.705268 0.006069731 0.05836535 +2.292679 0.006069731 0.05836535 +3.081414 0.006069731 0.05836535 +4.140474 0.006069731 0.05836535 +5.562508 0.006069731 0.05836535 +7.471917 0.006069731 0.05836535 +10.03574 0.006069731 0.05836535 +13.47828 0.006069731 0.05836535 +18.10068 0.006069731 0.05836535 +24.30731 0.006069731 0.05836535 +32.64117 0.006069731 0.05836535 +43.83129 0.006069731 0.05836535 +58.85664 0.006069731 0.05836535 +-0.0175068 0.01197402 0.05836535 +-0.01161267 0.01197402 0.05836535 +-0.005718534 0.01197402 0.05836535 +0.0001755984 0.01197402 0.05836535 +0.006069731 0.01197402 0.05836535 +0.01197402 0.01197402 0.05836535 +0.01903886 0.01197402 0.05836535 +0.02852504 0.01197402 0.05836535 +0.04126244 0.01197402 0.05836535 +0.05836535 0.01197402 0.05836535 +0.08132997 0.01197402 0.05836535 +0.1121653 0.01197402 0.05836535 +0.1535689 0.01197402 0.05836535 +0.2091628 0.01197402 0.05836535 +0.2838106 0.01197402 0.05836535 +0.3840425 0.01197402 0.05836535 +0.518627 0.01197402 0.05836535 +0.6993381 0.01197402 0.05836535 +0.9419845 0.01197402 0.05836535 +1.267794 0.01197402 0.05836535 +1.705268 0.01197402 0.05836535 +2.292679 0.01197402 0.05836535 +3.081414 0.01197402 0.05836535 +4.140474 0.01197402 0.05836535 +5.562508 0.01197402 0.05836535 +7.471917 0.01197402 0.05836535 +10.03574 0.01197402 0.05836535 +13.47828 0.01197402 0.05836535 +18.10068 0.01197402 0.05836535 +24.30731 0.01197402 0.05836535 +32.64117 0.01197402 0.05836535 +43.83129 0.01197402 0.05836535 +58.85664 0.01197402 0.05836535 +-0.0175068 0.01903886 0.05836535 +-0.01161267 0.01903886 0.05836535 +-0.005718534 0.01903886 0.05836535 +0.0001755984 0.01903886 0.05836535 +0.006069731 0.01903886 0.05836535 +0.01197402 0.01903886 0.05836535 +0.01903886 0.01903886 0.05836535 +0.02852504 0.01903886 0.05836535 +0.04126244 0.01903886 0.05836535 +0.05836535 0.01903886 0.05836535 +0.08132997 0.01903886 0.05836535 +0.1121653 0.01903886 0.05836535 +0.1535689 0.01903886 0.05836535 +0.2091628 0.01903886 0.05836535 +0.2838106 0.01903886 0.05836535 +0.3840425 0.01903886 0.05836535 +0.518627 0.01903886 0.05836535 +0.6993381 0.01903886 0.05836535 +0.9419845 0.01903886 0.05836535 +1.267794 0.01903886 0.05836535 +1.705268 0.01903886 0.05836535 +2.292679 0.01903886 0.05836535 +3.081414 0.01903886 0.05836535 +4.140474 0.01903886 0.05836535 +5.562508 0.01903886 0.05836535 +7.471917 0.01903886 0.05836535 +10.03574 0.01903886 0.05836535 +13.47828 0.01903886 0.05836535 +18.10068 0.01903886 0.05836535 +24.30731 0.01903886 0.05836535 +32.64117 0.01903886 0.05836535 +43.83129 0.01903886 0.05836535 +58.85664 0.01903886 0.05836535 +-0.0175068 0.02852504 0.05836535 +-0.01161267 0.02852504 0.05836535 +-0.005718534 0.02852504 0.05836535 +0.0001755984 0.02852504 0.05836535 +0.006069731 0.02852504 0.05836535 +0.01197402 0.02852504 0.05836535 +0.01903886 0.02852504 0.05836535 +0.02852504 0.02852504 0.05836535 +0.04126244 0.02852504 0.05836535 +0.05836535 0.02852504 0.05836535 +0.08132997 0.02852504 0.05836535 +0.1121653 0.02852504 0.05836535 +0.1535689 0.02852504 0.05836535 +0.2091628 0.02852504 0.05836535 +0.2838106 0.02852504 0.05836535 +0.3840425 0.02852504 0.05836535 +0.518627 0.02852504 0.05836535 +0.6993381 0.02852504 0.05836535 +0.9419845 0.02852504 0.05836535 +1.267794 0.02852504 0.05836535 +1.705268 0.02852504 0.05836535 +2.292679 0.02852504 0.05836535 +3.081414 0.02852504 0.05836535 +4.140474 0.02852504 0.05836535 +5.562508 0.02852504 0.05836535 +7.471917 0.02852504 0.05836535 +10.03574 0.02852504 0.05836535 +13.47828 0.02852504 0.05836535 +18.10068 0.02852504 0.05836535 +24.30731 0.02852504 0.05836535 +32.64117 0.02852504 0.05836535 +43.83129 0.02852504 0.05836535 +58.85664 0.02852504 0.05836535 +-0.0175068 0.04126244 0.05836535 +-0.01161267 0.04126244 0.05836535 +-0.005718534 0.04126244 0.05836535 +0.0001755984 0.04126244 0.05836535 +0.006069731 0.04126244 0.05836535 +0.01197402 0.04126244 0.05836535 +0.01903886 0.04126244 0.05836535 +0.02852504 0.04126244 0.05836535 +0.04126244 0.04126244 0.05836535 +0.05836535 0.04126244 0.05836535 +0.08132997 0.04126244 0.05836535 +0.1121653 0.04126244 0.05836535 +0.1535689 0.04126244 0.05836535 +0.2091628 0.04126244 0.05836535 +0.2838106 0.04126244 0.05836535 +0.3840425 0.04126244 0.05836535 +0.518627 0.04126244 0.05836535 +0.6993381 0.04126244 0.05836535 +0.9419845 0.04126244 0.05836535 +1.267794 0.04126244 0.05836535 +1.705268 0.04126244 0.05836535 +2.292679 0.04126244 0.05836535 +3.081414 0.04126244 0.05836535 +4.140474 0.04126244 0.05836535 +5.562508 0.04126244 0.05836535 +7.471917 0.04126244 0.05836535 +10.03574 0.04126244 0.05836535 +13.47828 0.04126244 0.05836535 +18.10068 0.04126244 0.05836535 +24.30731 0.04126244 0.05836535 +32.64117 0.04126244 0.05836535 +43.83129 0.04126244 0.05836535 +58.85664 0.04126244 0.05836535 +-0.0175068 0.05836535 0.05836535 +-0.01161267 0.05836535 0.05836535 +-0.005718534 0.05836535 0.05836535 +0.0001755984 0.05836535 0.05836535 +0.006069731 0.05836535 0.05836535 +0.01197402 0.05836535 0.05836535 +0.01903886 0.05836535 0.05836535 +0.02852504 0.05836535 0.05836535 +0.04126244 0.05836535 0.05836535 +0.05836535 0.05836535 0.05836535 +0.08132997 0.05836535 0.05836535 +0.1121653 0.05836535 0.05836535 +0.1535689 0.05836535 0.05836535 +0.2091628 0.05836535 0.05836535 +0.2838106 0.05836535 0.05836535 +0.3840425 0.05836535 0.05836535 +0.518627 0.05836535 0.05836535 +0.6993381 0.05836535 0.05836535 +0.9419845 0.05836535 0.05836535 +1.267794 0.05836535 0.05836535 +1.705268 0.05836535 0.05836535 +2.292679 0.05836535 0.05836535 +3.081414 0.05836535 0.05836535 +4.140474 0.05836535 0.05836535 +5.562508 0.05836535 0.05836535 +7.471917 0.05836535 0.05836535 +10.03574 0.05836535 0.05836535 +13.47828 0.05836535 0.05836535 +18.10068 0.05836535 0.05836535 +24.30731 0.05836535 0.05836535 +32.64117 0.05836535 0.05836535 +43.83129 0.05836535 0.05836535 +58.85664 0.05836535 0.05836535 +-0.0175068 0.08132997 0.05836535 +-0.01161267 0.08132997 0.05836535 +-0.005718534 0.08132997 0.05836535 +0.0001755984 0.08132997 0.05836535 +0.006069731 0.08132997 0.05836535 +0.01197402 0.08132997 0.05836535 +0.01903886 0.08132997 0.05836535 +0.02852504 0.08132997 0.05836535 +0.04126244 0.08132997 0.05836535 +0.05836535 0.08132997 0.05836535 +0.08132997 0.08132997 0.05836535 +0.1121653 0.08132997 0.05836535 +0.1535689 0.08132997 0.05836535 +0.2091628 0.08132997 0.05836535 +0.2838106 0.08132997 0.05836535 +0.3840425 0.08132997 0.05836535 +0.518627 0.08132997 0.05836535 +0.6993381 0.08132997 0.05836535 +0.9419845 0.08132997 0.05836535 +1.267794 0.08132997 0.05836535 +1.705268 0.08132997 0.05836535 +2.292679 0.08132997 0.05836535 +3.081414 0.08132997 0.05836535 +4.140474 0.08132997 0.05836535 +5.562508 0.08132997 0.05836535 +7.471917 0.08132997 0.05836535 +10.03574 0.08132997 0.05836535 +13.47828 0.08132997 0.05836535 +18.10068 0.08132997 0.05836535 +24.30731 0.08132997 0.05836535 +32.64117 0.08132997 0.05836535 +43.83129 0.08132997 0.05836535 +58.85664 0.08132997 0.05836535 +-0.0175068 0.1121653 0.05836535 +-0.01161267 0.1121653 0.05836535 +-0.005718534 0.1121653 0.05836535 +0.0001755984 0.1121653 0.05836535 +0.006069731 0.1121653 0.05836535 +0.01197402 0.1121653 0.05836535 +0.01903886 0.1121653 0.05836535 +0.02852504 0.1121653 0.05836535 +0.04126244 0.1121653 0.05836535 +0.05836535 0.1121653 0.05836535 +0.08132997 0.1121653 0.05836535 +0.1121653 0.1121653 0.05836535 +0.1535689 0.1121653 0.05836535 +0.2091628 0.1121653 0.05836535 +0.2838106 0.1121653 0.05836535 +0.3840425 0.1121653 0.05836535 +0.518627 0.1121653 0.05836535 +0.6993381 0.1121653 0.05836535 +0.9419845 0.1121653 0.05836535 +1.267794 0.1121653 0.05836535 +1.705268 0.1121653 0.05836535 +2.292679 0.1121653 0.05836535 +3.081414 0.1121653 0.05836535 +4.140474 0.1121653 0.05836535 +5.562508 0.1121653 0.05836535 +7.471917 0.1121653 0.05836535 +10.03574 0.1121653 0.05836535 +13.47828 0.1121653 0.05836535 +18.10068 0.1121653 0.05836535 +24.30731 0.1121653 0.05836535 +32.64117 0.1121653 0.05836535 +43.83129 0.1121653 0.05836535 +58.85664 0.1121653 0.05836535 +-0.0175068 0.1535689 0.05836535 +-0.01161267 0.1535689 0.05836535 +-0.005718534 0.1535689 0.05836535 +0.0001755984 0.1535689 0.05836535 +0.006069731 0.1535689 0.05836535 +0.01197402 0.1535689 0.05836535 +0.01903886 0.1535689 0.05836535 +0.02852504 0.1535689 0.05836535 +0.04126244 0.1535689 0.05836535 +0.05836535 0.1535689 0.05836535 +0.08132997 0.1535689 0.05836535 +0.1121653 0.1535689 0.05836535 +0.1535689 0.1535689 0.05836535 +0.2091628 0.1535689 0.05836535 +0.2838106 0.1535689 0.05836535 +0.3840425 0.1535689 0.05836535 +0.518627 0.1535689 0.05836535 +0.6993381 0.1535689 0.05836535 +0.9419845 0.1535689 0.05836535 +1.267794 0.1535689 0.05836535 +1.705268 0.1535689 0.05836535 +2.292679 0.1535689 0.05836535 +3.081414 0.1535689 0.05836535 +4.140474 0.1535689 0.05836535 +5.562508 0.1535689 0.05836535 +7.471917 0.1535689 0.05836535 +10.03574 0.1535689 0.05836535 +13.47828 0.1535689 0.05836535 +18.10068 0.1535689 0.05836535 +24.30731 0.1535689 0.05836535 +32.64117 0.1535689 0.05836535 +43.83129 0.1535689 0.05836535 +58.85664 0.1535689 0.05836535 +-0.0175068 0.2091628 0.05836535 +-0.01161267 0.2091628 0.05836535 +-0.005718534 0.2091628 0.05836535 +0.0001755984 0.2091628 0.05836535 +0.006069731 0.2091628 0.05836535 +0.01197402 0.2091628 0.05836535 +0.01903886 0.2091628 0.05836535 +0.02852504 0.2091628 0.05836535 +0.04126244 0.2091628 0.05836535 +0.05836535 0.2091628 0.05836535 +0.08132997 0.2091628 0.05836535 +0.1121653 0.2091628 0.05836535 +0.1535689 0.2091628 0.05836535 +0.2091628 0.2091628 0.05836535 +0.2838106 0.2091628 0.05836535 +0.3840425 0.2091628 0.05836535 +0.518627 0.2091628 0.05836535 +0.6993381 0.2091628 0.05836535 +0.9419845 0.2091628 0.05836535 +1.267794 0.2091628 0.05836535 +1.705268 0.2091628 0.05836535 +2.292679 0.2091628 0.05836535 +3.081414 0.2091628 0.05836535 +4.140474 0.2091628 0.05836535 +5.562508 0.2091628 0.05836535 +7.471917 0.2091628 0.05836535 +10.03574 0.2091628 0.05836535 +13.47828 0.2091628 0.05836535 +18.10068 0.2091628 0.05836535 +24.30731 0.2091628 0.05836535 +32.64117 0.2091628 0.05836535 +43.83129 0.2091628 0.05836535 +58.85664 0.2091628 0.05836535 +-0.0175068 0.2838106 0.05836535 +-0.01161267 0.2838106 0.05836535 +-0.005718534 0.2838106 0.05836535 +0.0001755984 0.2838106 0.05836535 +0.006069731 0.2838106 0.05836535 +0.01197402 0.2838106 0.05836535 +0.01903886 0.2838106 0.05836535 +0.02852504 0.2838106 0.05836535 +0.04126244 0.2838106 0.05836535 +0.05836535 0.2838106 0.05836535 +0.08132997 0.2838106 0.05836535 +0.1121653 0.2838106 0.05836535 +0.1535689 0.2838106 0.05836535 +0.2091628 0.2838106 0.05836535 +0.2838106 0.2838106 0.05836535 +0.3840425 0.2838106 0.05836535 +0.518627 0.2838106 0.05836535 +0.6993381 0.2838106 0.05836535 +0.9419845 0.2838106 0.05836535 +1.267794 0.2838106 0.05836535 +1.705268 0.2838106 0.05836535 +2.292679 0.2838106 0.05836535 +3.081414 0.2838106 0.05836535 +4.140474 0.2838106 0.05836535 +5.562508 0.2838106 0.05836535 +7.471917 0.2838106 0.05836535 +10.03574 0.2838106 0.05836535 +13.47828 0.2838106 0.05836535 +18.10068 0.2838106 0.05836535 +24.30731 0.2838106 0.05836535 +32.64117 0.2838106 0.05836535 +43.83129 0.2838106 0.05836535 +58.85664 0.2838106 0.05836535 +-0.0175068 0.3840425 0.05836535 +-0.01161267 0.3840425 0.05836535 +-0.005718534 0.3840425 0.05836535 +0.0001755984 0.3840425 0.05836535 +0.006069731 0.3840425 0.05836535 +0.01197402 0.3840425 0.05836535 +0.01903886 0.3840425 0.05836535 +0.02852504 0.3840425 0.05836535 +0.04126244 0.3840425 0.05836535 +0.05836535 0.3840425 0.05836535 +0.08132997 0.3840425 0.05836535 +0.1121653 0.3840425 0.05836535 +0.1535689 0.3840425 0.05836535 +0.2091628 0.3840425 0.05836535 +0.2838106 0.3840425 0.05836535 +0.3840425 0.3840425 0.05836535 +0.518627 0.3840425 0.05836535 +0.6993381 0.3840425 0.05836535 +0.9419845 0.3840425 0.05836535 +1.267794 0.3840425 0.05836535 +1.705268 0.3840425 0.05836535 +2.292679 0.3840425 0.05836535 +3.081414 0.3840425 0.05836535 +4.140474 0.3840425 0.05836535 +5.562508 0.3840425 0.05836535 +7.471917 0.3840425 0.05836535 +10.03574 0.3840425 0.05836535 +13.47828 0.3840425 0.05836535 +18.10068 0.3840425 0.05836535 +24.30731 0.3840425 0.05836535 +32.64117 0.3840425 0.05836535 +43.83129 0.3840425 0.05836535 +58.85664 0.3840425 0.05836535 +-0.0175068 0.518627 0.05836535 +-0.01161267 0.518627 0.05836535 +-0.005718534 0.518627 0.05836535 +0.0001755984 0.518627 0.05836535 +0.006069731 0.518627 0.05836535 +0.01197402 0.518627 0.05836535 +0.01903886 0.518627 0.05836535 +0.02852504 0.518627 0.05836535 +0.04126244 0.518627 0.05836535 +0.05836535 0.518627 0.05836535 +0.08132997 0.518627 0.05836535 +0.1121653 0.518627 0.05836535 +0.1535689 0.518627 0.05836535 +0.2091628 0.518627 0.05836535 +0.2838106 0.518627 0.05836535 +0.3840425 0.518627 0.05836535 +0.518627 0.518627 0.05836535 +0.6993381 0.518627 0.05836535 +0.9419845 0.518627 0.05836535 +1.267794 0.518627 0.05836535 +1.705268 0.518627 0.05836535 +2.292679 0.518627 0.05836535 +3.081414 0.518627 0.05836535 +4.140474 0.518627 0.05836535 +5.562508 0.518627 0.05836535 +7.471917 0.518627 0.05836535 +10.03574 0.518627 0.05836535 +13.47828 0.518627 0.05836535 +18.10068 0.518627 0.05836535 +24.30731 0.518627 0.05836535 +32.64117 0.518627 0.05836535 +43.83129 0.518627 0.05836535 +58.85664 0.518627 0.05836535 +-0.0175068 0.6993381 0.05836535 +-0.01161267 0.6993381 0.05836535 +-0.005718534 0.6993381 0.05836535 +0.0001755984 0.6993381 0.05836535 +0.006069731 0.6993381 0.05836535 +0.01197402 0.6993381 0.05836535 +0.01903886 0.6993381 0.05836535 +0.02852504 0.6993381 0.05836535 +0.04126244 0.6993381 0.05836535 +0.05836535 0.6993381 0.05836535 +0.08132997 0.6993381 0.05836535 +0.1121653 0.6993381 0.05836535 +0.1535689 0.6993381 0.05836535 +0.2091628 0.6993381 0.05836535 +0.2838106 0.6993381 0.05836535 +0.3840425 0.6993381 0.05836535 +0.518627 0.6993381 0.05836535 +0.6993381 0.6993381 0.05836535 +0.9419845 0.6993381 0.05836535 +1.267794 0.6993381 0.05836535 +1.705268 0.6993381 0.05836535 +2.292679 0.6993381 0.05836535 +3.081414 0.6993381 0.05836535 +4.140474 0.6993381 0.05836535 +5.562508 0.6993381 0.05836535 +7.471917 0.6993381 0.05836535 +10.03574 0.6993381 0.05836535 +13.47828 0.6993381 0.05836535 +18.10068 0.6993381 0.05836535 +24.30731 0.6993381 0.05836535 +32.64117 0.6993381 0.05836535 +43.83129 0.6993381 0.05836535 +58.85664 0.6993381 0.05836535 +-0.0175068 0.9419845 0.05836535 +-0.01161267 0.9419845 0.05836535 +-0.005718534 0.9419845 0.05836535 +0.0001755984 0.9419845 0.05836535 +0.006069731 0.9419845 0.05836535 +0.01197402 0.9419845 0.05836535 +0.01903886 0.9419845 0.05836535 +0.02852504 0.9419845 0.05836535 +0.04126244 0.9419845 0.05836535 +0.05836535 0.9419845 0.05836535 +0.08132997 0.9419845 0.05836535 +0.1121653 0.9419845 0.05836535 +0.1535689 0.9419845 0.05836535 +0.2091628 0.9419845 0.05836535 +0.2838106 0.9419845 0.05836535 +0.3840425 0.9419845 0.05836535 +0.518627 0.9419845 0.05836535 +0.6993381 0.9419845 0.05836535 +0.9419845 0.9419845 0.05836535 +1.267794 0.9419845 0.05836535 +1.705268 0.9419845 0.05836535 +2.292679 0.9419845 0.05836535 +3.081414 0.9419845 0.05836535 +4.140474 0.9419845 0.05836535 +5.562508 0.9419845 0.05836535 +7.471917 0.9419845 0.05836535 +10.03574 0.9419845 0.05836535 +13.47828 0.9419845 0.05836535 +18.10068 0.9419845 0.05836535 +24.30731 0.9419845 0.05836535 +32.64117 0.9419845 0.05836535 +43.83129 0.9419845 0.05836535 +58.85664 0.9419845 0.05836535 +-0.0175068 1.267794 0.05836535 +-0.01161267 1.267794 0.05836535 +-0.005718534 1.267794 0.05836535 +0.0001755984 1.267794 0.05836535 +0.006069731 1.267794 0.05836535 +0.01197402 1.267794 0.05836535 +0.01903886 1.267794 0.05836535 +0.02852504 1.267794 0.05836535 +0.04126244 1.267794 0.05836535 +0.05836535 1.267794 0.05836535 +0.08132997 1.267794 0.05836535 +0.1121653 1.267794 0.05836535 +0.1535689 1.267794 0.05836535 +0.2091628 1.267794 0.05836535 +0.2838106 1.267794 0.05836535 +0.3840425 1.267794 0.05836535 +0.518627 1.267794 0.05836535 +0.6993381 1.267794 0.05836535 +0.9419845 1.267794 0.05836535 +1.267794 1.267794 0.05836535 +1.705268 1.267794 0.05836535 +2.292679 1.267794 0.05836535 +3.081414 1.267794 0.05836535 +4.140474 1.267794 0.05836535 +5.562508 1.267794 0.05836535 +7.471917 1.267794 0.05836535 +10.03574 1.267794 0.05836535 +13.47828 1.267794 0.05836535 +18.10068 1.267794 0.05836535 +24.30731 1.267794 0.05836535 +32.64117 1.267794 0.05836535 +43.83129 1.267794 0.05836535 +58.85664 1.267794 0.05836535 +-0.0175068 1.705268 0.05836535 +-0.01161267 1.705268 0.05836535 +-0.005718534 1.705268 0.05836535 +0.0001755984 1.705268 0.05836535 +0.006069731 1.705268 0.05836535 +0.01197402 1.705268 0.05836535 +0.01903886 1.705268 0.05836535 +0.02852504 1.705268 0.05836535 +0.04126244 1.705268 0.05836535 +0.05836535 1.705268 0.05836535 +0.08132997 1.705268 0.05836535 +0.1121653 1.705268 0.05836535 +0.1535689 1.705268 0.05836535 +0.2091628 1.705268 0.05836535 +0.2838106 1.705268 0.05836535 +0.3840425 1.705268 0.05836535 +0.518627 1.705268 0.05836535 +0.6993381 1.705268 0.05836535 +0.9419845 1.705268 0.05836535 +1.267794 1.705268 0.05836535 +1.705268 1.705268 0.05836535 +2.292679 1.705268 0.05836535 +3.081414 1.705268 0.05836535 +4.140474 1.705268 0.05836535 +5.562508 1.705268 0.05836535 +7.471917 1.705268 0.05836535 +10.03574 1.705268 0.05836535 +13.47828 1.705268 0.05836535 +18.10068 1.705268 0.05836535 +24.30731 1.705268 0.05836535 +32.64117 1.705268 0.05836535 +43.83129 1.705268 0.05836535 +58.85664 1.705268 0.05836535 +-0.0175068 2.292679 0.05836535 +-0.01161267 2.292679 0.05836535 +-0.005718534 2.292679 0.05836535 +0.0001755984 2.292679 0.05836535 +0.006069731 2.292679 0.05836535 +0.01197402 2.292679 0.05836535 +0.01903886 2.292679 0.05836535 +0.02852504 2.292679 0.05836535 +0.04126244 2.292679 0.05836535 +0.05836535 2.292679 0.05836535 +0.08132997 2.292679 0.05836535 +0.1121653 2.292679 0.05836535 +0.1535689 2.292679 0.05836535 +0.2091628 2.292679 0.05836535 +0.2838106 2.292679 0.05836535 +0.3840425 2.292679 0.05836535 +0.518627 2.292679 0.05836535 +0.6993381 2.292679 0.05836535 +0.9419845 2.292679 0.05836535 +1.267794 2.292679 0.05836535 +1.705268 2.292679 0.05836535 +2.292679 2.292679 0.05836535 +3.081414 2.292679 0.05836535 +4.140474 2.292679 0.05836535 +5.562508 2.292679 0.05836535 +7.471917 2.292679 0.05836535 +10.03574 2.292679 0.05836535 +13.47828 2.292679 0.05836535 +18.10068 2.292679 0.05836535 +24.30731 2.292679 0.05836535 +32.64117 2.292679 0.05836535 +43.83129 2.292679 0.05836535 +58.85664 2.292679 0.05836535 +-0.0175068 3.081414 0.05836535 +-0.01161267 3.081414 0.05836535 +-0.005718534 3.081414 0.05836535 +0.0001755984 3.081414 0.05836535 +0.006069731 3.081414 0.05836535 +0.01197402 3.081414 0.05836535 +0.01903886 3.081414 0.05836535 +0.02852504 3.081414 0.05836535 +0.04126244 3.081414 0.05836535 +0.05836535 3.081414 0.05836535 +0.08132997 3.081414 0.05836535 +0.1121653 3.081414 0.05836535 +0.1535689 3.081414 0.05836535 +0.2091628 3.081414 0.05836535 +0.2838106 3.081414 0.05836535 +0.3840425 3.081414 0.05836535 +0.518627 3.081414 0.05836535 +0.6993381 3.081414 0.05836535 +0.9419845 3.081414 0.05836535 +1.267794 3.081414 0.05836535 +1.705268 3.081414 0.05836535 +2.292679 3.081414 0.05836535 +3.081414 3.081414 0.05836535 +4.140474 3.081414 0.05836535 +5.562508 3.081414 0.05836535 +7.471917 3.081414 0.05836535 +10.03574 3.081414 0.05836535 +13.47828 3.081414 0.05836535 +18.10068 3.081414 0.05836535 +24.30731 3.081414 0.05836535 +32.64117 3.081414 0.05836535 +43.83129 3.081414 0.05836535 +58.85664 3.081414 0.05836535 +-0.0175068 4.140474 0.05836535 +-0.01161267 4.140474 0.05836535 +-0.005718534 4.140474 0.05836535 +0.0001755984 4.140474 0.05836535 +0.006069731 4.140474 0.05836535 +0.01197402 4.140474 0.05836535 +0.01903886 4.140474 0.05836535 +0.02852504 4.140474 0.05836535 +0.04126244 4.140474 0.05836535 +0.05836535 4.140474 0.05836535 +0.08132997 4.140474 0.05836535 +0.1121653 4.140474 0.05836535 +0.1535689 4.140474 0.05836535 +0.2091628 4.140474 0.05836535 +0.2838106 4.140474 0.05836535 +0.3840425 4.140474 0.05836535 +0.518627 4.140474 0.05836535 +0.6993381 4.140474 0.05836535 +0.9419845 4.140474 0.05836535 +1.267794 4.140474 0.05836535 +1.705268 4.140474 0.05836535 +2.292679 4.140474 0.05836535 +3.081414 4.140474 0.05836535 +4.140474 4.140474 0.05836535 +5.562508 4.140474 0.05836535 +7.471917 4.140474 0.05836535 +10.03574 4.140474 0.05836535 +13.47828 4.140474 0.05836535 +18.10068 4.140474 0.05836535 +24.30731 4.140474 0.05836535 +32.64117 4.140474 0.05836535 +43.83129 4.140474 0.05836535 +58.85664 4.140474 0.05836535 +-0.0175068 5.562508 0.05836535 +-0.01161267 5.562508 0.05836535 +-0.005718534 5.562508 0.05836535 +0.0001755984 5.562508 0.05836535 +0.006069731 5.562508 0.05836535 +0.01197402 5.562508 0.05836535 +0.01903886 5.562508 0.05836535 +0.02852504 5.562508 0.05836535 +0.04126244 5.562508 0.05836535 +0.05836535 5.562508 0.05836535 +0.08132997 5.562508 0.05836535 +0.1121653 5.562508 0.05836535 +0.1535689 5.562508 0.05836535 +0.2091628 5.562508 0.05836535 +0.2838106 5.562508 0.05836535 +0.3840425 5.562508 0.05836535 +0.518627 5.562508 0.05836535 +0.6993381 5.562508 0.05836535 +0.9419845 5.562508 0.05836535 +1.267794 5.562508 0.05836535 +1.705268 5.562508 0.05836535 +2.292679 5.562508 0.05836535 +3.081414 5.562508 0.05836535 +4.140474 5.562508 0.05836535 +5.562508 5.562508 0.05836535 +7.471917 5.562508 0.05836535 +10.03574 5.562508 0.05836535 +13.47828 5.562508 0.05836535 +18.10068 5.562508 0.05836535 +24.30731 5.562508 0.05836535 +32.64117 5.562508 0.05836535 +43.83129 5.562508 0.05836535 +58.85664 5.562508 0.05836535 +-0.0175068 7.471917 0.05836535 +-0.01161267 7.471917 0.05836535 +-0.005718534 7.471917 0.05836535 +0.0001755984 7.471917 0.05836535 +0.006069731 7.471917 0.05836535 +0.01197402 7.471917 0.05836535 +0.01903886 7.471917 0.05836535 +0.02852504 7.471917 0.05836535 +0.04126244 7.471917 0.05836535 +0.05836535 7.471917 0.05836535 +0.08132997 7.471917 0.05836535 +0.1121653 7.471917 0.05836535 +0.1535689 7.471917 0.05836535 +0.2091628 7.471917 0.05836535 +0.2838106 7.471917 0.05836535 +0.3840425 7.471917 0.05836535 +0.518627 7.471917 0.05836535 +0.6993381 7.471917 0.05836535 +0.9419845 7.471917 0.05836535 +1.267794 7.471917 0.05836535 +1.705268 7.471917 0.05836535 +2.292679 7.471917 0.05836535 +3.081414 7.471917 0.05836535 +4.140474 7.471917 0.05836535 +5.562508 7.471917 0.05836535 +7.471917 7.471917 0.05836535 +10.03574 7.471917 0.05836535 +13.47828 7.471917 0.05836535 +18.10068 7.471917 0.05836535 +24.30731 7.471917 0.05836535 +32.64117 7.471917 0.05836535 +43.83129 7.471917 0.05836535 +58.85664 7.471917 0.05836535 +-0.0175068 10.03574 0.05836535 +-0.01161267 10.03574 0.05836535 +-0.005718534 10.03574 0.05836535 +0.0001755984 10.03574 0.05836535 +0.006069731 10.03574 0.05836535 +0.01197402 10.03574 0.05836535 +0.01903886 10.03574 0.05836535 +0.02852504 10.03574 0.05836535 +0.04126244 10.03574 0.05836535 +0.05836535 10.03574 0.05836535 +0.08132997 10.03574 0.05836535 +0.1121653 10.03574 0.05836535 +0.1535689 10.03574 0.05836535 +0.2091628 10.03574 0.05836535 +0.2838106 10.03574 0.05836535 +0.3840425 10.03574 0.05836535 +0.518627 10.03574 0.05836535 +0.6993381 10.03574 0.05836535 +0.9419845 10.03574 0.05836535 +1.267794 10.03574 0.05836535 +1.705268 10.03574 0.05836535 +2.292679 10.03574 0.05836535 +3.081414 10.03574 0.05836535 +4.140474 10.03574 0.05836535 +5.562508 10.03574 0.05836535 +7.471917 10.03574 0.05836535 +10.03574 10.03574 0.05836535 +13.47828 10.03574 0.05836535 +18.10068 10.03574 0.05836535 +24.30731 10.03574 0.05836535 +32.64117 10.03574 0.05836535 +43.83129 10.03574 0.05836535 +58.85664 10.03574 0.05836535 +-0.0175068 13.47828 0.05836535 +-0.01161267 13.47828 0.05836535 +-0.005718534 13.47828 0.05836535 +0.0001755984 13.47828 0.05836535 +0.006069731 13.47828 0.05836535 +0.01197402 13.47828 0.05836535 +0.01903886 13.47828 0.05836535 +0.02852504 13.47828 0.05836535 +0.04126244 13.47828 0.05836535 +0.05836535 13.47828 0.05836535 +0.08132997 13.47828 0.05836535 +0.1121653 13.47828 0.05836535 +0.1535689 13.47828 0.05836535 +0.2091628 13.47828 0.05836535 +0.2838106 13.47828 0.05836535 +0.3840425 13.47828 0.05836535 +0.518627 13.47828 0.05836535 +0.6993381 13.47828 0.05836535 +0.9419845 13.47828 0.05836535 +1.267794 13.47828 0.05836535 +1.705268 13.47828 0.05836535 +2.292679 13.47828 0.05836535 +3.081414 13.47828 0.05836535 +4.140474 13.47828 0.05836535 +5.562508 13.47828 0.05836535 +7.471917 13.47828 0.05836535 +10.03574 13.47828 0.05836535 +13.47828 13.47828 0.05836535 +18.10068 13.47828 0.05836535 +24.30731 13.47828 0.05836535 +32.64117 13.47828 0.05836535 +43.83129 13.47828 0.05836535 +58.85664 13.47828 0.05836535 +-0.0175068 18.10068 0.05836535 +-0.01161267 18.10068 0.05836535 +-0.005718534 18.10068 0.05836535 +0.0001755984 18.10068 0.05836535 +0.006069731 18.10068 0.05836535 +0.01197402 18.10068 0.05836535 +0.01903886 18.10068 0.05836535 +0.02852504 18.10068 0.05836535 +0.04126244 18.10068 0.05836535 +0.05836535 18.10068 0.05836535 +0.08132997 18.10068 0.05836535 +0.1121653 18.10068 0.05836535 +0.1535689 18.10068 0.05836535 +0.2091628 18.10068 0.05836535 +0.2838106 18.10068 0.05836535 +0.3840425 18.10068 0.05836535 +0.518627 18.10068 0.05836535 +0.6993381 18.10068 0.05836535 +0.9419845 18.10068 0.05836535 +1.267794 18.10068 0.05836535 +1.705268 18.10068 0.05836535 +2.292679 18.10068 0.05836535 +3.081414 18.10068 0.05836535 +4.140474 18.10068 0.05836535 +5.562508 18.10068 0.05836535 +7.471917 18.10068 0.05836535 +10.03574 18.10068 0.05836535 +13.47828 18.10068 0.05836535 +18.10068 18.10068 0.05836535 +24.30731 18.10068 0.05836535 +32.64117 18.10068 0.05836535 +43.83129 18.10068 0.05836535 +58.85664 18.10068 0.05836535 +-0.0175068 24.30731 0.05836535 +-0.01161267 24.30731 0.05836535 +-0.005718534 24.30731 0.05836535 +0.0001755984 24.30731 0.05836535 +0.006069731 24.30731 0.05836535 +0.01197402 24.30731 0.05836535 +0.01903886 24.30731 0.05836535 +0.02852504 24.30731 0.05836535 +0.04126244 24.30731 0.05836535 +0.05836535 24.30731 0.05836535 +0.08132997 24.30731 0.05836535 +0.1121653 24.30731 0.05836535 +0.1535689 24.30731 0.05836535 +0.2091628 24.30731 0.05836535 +0.2838106 24.30731 0.05836535 +0.3840425 24.30731 0.05836535 +0.518627 24.30731 0.05836535 +0.6993381 24.30731 0.05836535 +0.9419845 24.30731 0.05836535 +1.267794 24.30731 0.05836535 +1.705268 24.30731 0.05836535 +2.292679 24.30731 0.05836535 +3.081414 24.30731 0.05836535 +4.140474 24.30731 0.05836535 +5.562508 24.30731 0.05836535 +7.471917 24.30731 0.05836535 +10.03574 24.30731 0.05836535 +13.47828 24.30731 0.05836535 +18.10068 24.30731 0.05836535 +24.30731 24.30731 0.05836535 +32.64117 24.30731 0.05836535 +43.83129 24.30731 0.05836535 +58.85664 24.30731 0.05836535 +-0.0175068 32.64117 0.05836535 +-0.01161267 32.64117 0.05836535 +-0.005718534 32.64117 0.05836535 +0.0001755984 32.64117 0.05836535 +0.006069731 32.64117 0.05836535 +0.01197402 32.64117 0.05836535 +0.01903886 32.64117 0.05836535 +0.02852504 32.64117 0.05836535 +0.04126244 32.64117 0.05836535 +0.05836535 32.64117 0.05836535 +0.08132997 32.64117 0.05836535 +0.1121653 32.64117 0.05836535 +0.1535689 32.64117 0.05836535 +0.2091628 32.64117 0.05836535 +0.2838106 32.64117 0.05836535 +0.3840425 32.64117 0.05836535 +0.518627 32.64117 0.05836535 +0.6993381 32.64117 0.05836535 +0.9419845 32.64117 0.05836535 +1.267794 32.64117 0.05836535 +1.705268 32.64117 0.05836535 +2.292679 32.64117 0.05836535 +3.081414 32.64117 0.05836535 +4.140474 32.64117 0.05836535 +5.562508 32.64117 0.05836535 +7.471917 32.64117 0.05836535 +10.03574 32.64117 0.05836535 +13.47828 32.64117 0.05836535 +18.10068 32.64117 0.05836535 +24.30731 32.64117 0.05836535 +32.64117 32.64117 0.05836535 +43.83129 32.64117 0.05836535 +58.85664 32.64117 0.05836535 +-0.0175068 43.83129 0.05836535 +-0.01161267 43.83129 0.05836535 +-0.005718534 43.83129 0.05836535 +0.0001755984 43.83129 0.05836535 +0.006069731 43.83129 0.05836535 +0.01197402 43.83129 0.05836535 +0.01903886 43.83129 0.05836535 +0.02852504 43.83129 0.05836535 +0.04126244 43.83129 0.05836535 +0.05836535 43.83129 0.05836535 +0.08132997 43.83129 0.05836535 +0.1121653 43.83129 0.05836535 +0.1535689 43.83129 0.05836535 +0.2091628 43.83129 0.05836535 +0.2838106 43.83129 0.05836535 +0.3840425 43.83129 0.05836535 +0.518627 43.83129 0.05836535 +0.6993381 43.83129 0.05836535 +0.9419845 43.83129 0.05836535 +1.267794 43.83129 0.05836535 +1.705268 43.83129 0.05836535 +2.292679 43.83129 0.05836535 +3.081414 43.83129 0.05836535 +4.140474 43.83129 0.05836535 +5.562508 43.83129 0.05836535 +7.471917 43.83129 0.05836535 +10.03574 43.83129 0.05836535 +13.47828 43.83129 0.05836535 +18.10068 43.83129 0.05836535 +24.30731 43.83129 0.05836535 +32.64117 43.83129 0.05836535 +43.83129 43.83129 0.05836535 +58.85664 43.83129 0.05836535 +-0.0175068 58.85664 0.05836535 +-0.01161267 58.85664 0.05836535 +-0.005718534 58.85664 0.05836535 +0.0001755984 58.85664 0.05836535 +0.006069731 58.85664 0.05836535 +0.01197402 58.85664 0.05836535 +0.01903886 58.85664 0.05836535 +0.02852504 58.85664 0.05836535 +0.04126244 58.85664 0.05836535 +0.05836535 58.85664 0.05836535 +0.08132997 58.85664 0.05836535 +0.1121653 58.85664 0.05836535 +0.1535689 58.85664 0.05836535 +0.2091628 58.85664 0.05836535 +0.2838106 58.85664 0.05836535 +0.3840425 58.85664 0.05836535 +0.518627 58.85664 0.05836535 +0.6993381 58.85664 0.05836535 +0.9419845 58.85664 0.05836535 +1.267794 58.85664 0.05836535 +1.705268 58.85664 0.05836535 +2.292679 58.85664 0.05836535 +3.081414 58.85664 0.05836535 +4.140474 58.85664 0.05836535 +5.562508 58.85664 0.05836535 +7.471917 58.85664 0.05836535 +10.03574 58.85664 0.05836535 +13.47828 58.85664 0.05836535 +18.10068 58.85664 0.05836535 +24.30731 58.85664 0.05836535 +32.64117 58.85664 0.05836535 +43.83129 58.85664 0.05836535 +58.85664 58.85664 0.05836535 +-0.0175068 -0.0175068 0.08132997 +-0.01161267 -0.0175068 0.08132997 +-0.005718534 -0.0175068 0.08132997 +0.0001755984 -0.0175068 0.08132997 +0.006069731 -0.0175068 0.08132997 +0.01197402 -0.0175068 0.08132997 +0.01903886 -0.0175068 0.08132997 +0.02852504 -0.0175068 0.08132997 +0.04126244 -0.0175068 0.08132997 +0.05836535 -0.0175068 0.08132997 +0.08132997 -0.0175068 0.08132997 +0.1121653 -0.0175068 0.08132997 +0.1535689 -0.0175068 0.08132997 +0.2091628 -0.0175068 0.08132997 +0.2838106 -0.0175068 0.08132997 +0.3840425 -0.0175068 0.08132997 +0.518627 -0.0175068 0.08132997 +0.6993381 -0.0175068 0.08132997 +0.9419845 -0.0175068 0.08132997 +1.267794 -0.0175068 0.08132997 +1.705268 -0.0175068 0.08132997 +2.292679 -0.0175068 0.08132997 +3.081414 -0.0175068 0.08132997 +4.140474 -0.0175068 0.08132997 +5.562508 -0.0175068 0.08132997 +7.471917 -0.0175068 0.08132997 +10.03574 -0.0175068 0.08132997 +13.47828 -0.0175068 0.08132997 +18.10068 -0.0175068 0.08132997 +24.30731 -0.0175068 0.08132997 +32.64117 -0.0175068 0.08132997 +43.83129 -0.0175068 0.08132997 +58.85664 -0.0175068 0.08132997 +-0.0175068 -0.01161267 0.08132997 +-0.01161267 -0.01161267 0.08132997 +-0.005718534 -0.01161267 0.08132997 +0.0001755984 -0.01161267 0.08132997 +0.006069731 -0.01161267 0.08132997 +0.01197402 -0.01161267 0.08132997 +0.01903886 -0.01161267 0.08132997 +0.02852504 -0.01161267 0.08132997 +0.04126244 -0.01161267 0.08132997 +0.05836535 -0.01161267 0.08132997 +0.08132997 -0.01161267 0.08132997 +0.1121653 -0.01161267 0.08132997 +0.1535689 -0.01161267 0.08132997 +0.2091628 -0.01161267 0.08132997 +0.2838106 -0.01161267 0.08132997 +0.3840425 -0.01161267 0.08132997 +0.518627 -0.01161267 0.08132997 +0.6993381 -0.01161267 0.08132997 +0.9419845 -0.01161267 0.08132997 +1.267794 -0.01161267 0.08132997 +1.705268 -0.01161267 0.08132997 +2.292679 -0.01161267 0.08132997 +3.081414 -0.01161267 0.08132997 +4.140474 -0.01161267 0.08132997 +5.562508 -0.01161267 0.08132997 +7.471917 -0.01161267 0.08132997 +10.03574 -0.01161267 0.08132997 +13.47828 -0.01161267 0.08132997 +18.10068 -0.01161267 0.08132997 +24.30731 -0.01161267 0.08132997 +32.64117 -0.01161267 0.08132997 +43.83129 -0.01161267 0.08132997 +58.85664 -0.01161267 0.08132997 +-0.0175068 -0.005718534 0.08132997 +-0.01161267 -0.005718534 0.08132997 +-0.005718534 -0.005718534 0.08132997 +0.0001755984 -0.005718534 0.08132997 +0.006069731 -0.005718534 0.08132997 +0.01197402 -0.005718534 0.08132997 +0.01903886 -0.005718534 0.08132997 +0.02852504 -0.005718534 0.08132997 +0.04126244 -0.005718534 0.08132997 +0.05836535 -0.005718534 0.08132997 +0.08132997 -0.005718534 0.08132997 +0.1121653 -0.005718534 0.08132997 +0.1535689 -0.005718534 0.08132997 +0.2091628 -0.005718534 0.08132997 +0.2838106 -0.005718534 0.08132997 +0.3840425 -0.005718534 0.08132997 +0.518627 -0.005718534 0.08132997 +0.6993381 -0.005718534 0.08132997 +0.9419845 -0.005718534 0.08132997 +1.267794 -0.005718534 0.08132997 +1.705268 -0.005718534 0.08132997 +2.292679 -0.005718534 0.08132997 +3.081414 -0.005718534 0.08132997 +4.140474 -0.005718534 0.08132997 +5.562508 -0.005718534 0.08132997 +7.471917 -0.005718534 0.08132997 +10.03574 -0.005718534 0.08132997 +13.47828 -0.005718534 0.08132997 +18.10068 -0.005718534 0.08132997 +24.30731 -0.005718534 0.08132997 +32.64117 -0.005718534 0.08132997 +43.83129 -0.005718534 0.08132997 +58.85664 -0.005718534 0.08132997 +-0.0175068 0.0001755984 0.08132997 +-0.01161267 0.0001755984 0.08132997 +-0.005718534 0.0001755984 0.08132997 +0.0001755984 0.0001755984 0.08132997 +0.006069731 0.0001755984 0.08132997 +0.01197402 0.0001755984 0.08132997 +0.01903886 0.0001755984 0.08132997 +0.02852504 0.0001755984 0.08132997 +0.04126244 0.0001755984 0.08132997 +0.05836535 0.0001755984 0.08132997 +0.08132997 0.0001755984 0.08132997 +0.1121653 0.0001755984 0.08132997 +0.1535689 0.0001755984 0.08132997 +0.2091628 0.0001755984 0.08132997 +0.2838106 0.0001755984 0.08132997 +0.3840425 0.0001755984 0.08132997 +0.518627 0.0001755984 0.08132997 +0.6993381 0.0001755984 0.08132997 +0.9419845 0.0001755984 0.08132997 +1.267794 0.0001755984 0.08132997 +1.705268 0.0001755984 0.08132997 +2.292679 0.0001755984 0.08132997 +3.081414 0.0001755984 0.08132997 +4.140474 0.0001755984 0.08132997 +5.562508 0.0001755984 0.08132997 +7.471917 0.0001755984 0.08132997 +10.03574 0.0001755984 0.08132997 +13.47828 0.0001755984 0.08132997 +18.10068 0.0001755984 0.08132997 +24.30731 0.0001755984 0.08132997 +32.64117 0.0001755984 0.08132997 +43.83129 0.0001755984 0.08132997 +58.85664 0.0001755984 0.08132997 +-0.0175068 0.006069731 0.08132997 +-0.01161267 0.006069731 0.08132997 +-0.005718534 0.006069731 0.08132997 +0.0001755984 0.006069731 0.08132997 +0.006069731 0.006069731 0.08132997 +0.01197402 0.006069731 0.08132997 +0.01903886 0.006069731 0.08132997 +0.02852504 0.006069731 0.08132997 +0.04126244 0.006069731 0.08132997 +0.05836535 0.006069731 0.08132997 +0.08132997 0.006069731 0.08132997 +0.1121653 0.006069731 0.08132997 +0.1535689 0.006069731 0.08132997 +0.2091628 0.006069731 0.08132997 +0.2838106 0.006069731 0.08132997 +0.3840425 0.006069731 0.08132997 +0.518627 0.006069731 0.08132997 +0.6993381 0.006069731 0.08132997 +0.9419845 0.006069731 0.08132997 +1.267794 0.006069731 0.08132997 +1.705268 0.006069731 0.08132997 +2.292679 0.006069731 0.08132997 +3.081414 0.006069731 0.08132997 +4.140474 0.006069731 0.08132997 +5.562508 0.006069731 0.08132997 +7.471917 0.006069731 0.08132997 +10.03574 0.006069731 0.08132997 +13.47828 0.006069731 0.08132997 +18.10068 0.006069731 0.08132997 +24.30731 0.006069731 0.08132997 +32.64117 0.006069731 0.08132997 +43.83129 0.006069731 0.08132997 +58.85664 0.006069731 0.08132997 +-0.0175068 0.01197402 0.08132997 +-0.01161267 0.01197402 0.08132997 +-0.005718534 0.01197402 0.08132997 +0.0001755984 0.01197402 0.08132997 +0.006069731 0.01197402 0.08132997 +0.01197402 0.01197402 0.08132997 +0.01903886 0.01197402 0.08132997 +0.02852504 0.01197402 0.08132997 +0.04126244 0.01197402 0.08132997 +0.05836535 0.01197402 0.08132997 +0.08132997 0.01197402 0.08132997 +0.1121653 0.01197402 0.08132997 +0.1535689 0.01197402 0.08132997 +0.2091628 0.01197402 0.08132997 +0.2838106 0.01197402 0.08132997 +0.3840425 0.01197402 0.08132997 +0.518627 0.01197402 0.08132997 +0.6993381 0.01197402 0.08132997 +0.9419845 0.01197402 0.08132997 +1.267794 0.01197402 0.08132997 +1.705268 0.01197402 0.08132997 +2.292679 0.01197402 0.08132997 +3.081414 0.01197402 0.08132997 +4.140474 0.01197402 0.08132997 +5.562508 0.01197402 0.08132997 +7.471917 0.01197402 0.08132997 +10.03574 0.01197402 0.08132997 +13.47828 0.01197402 0.08132997 +18.10068 0.01197402 0.08132997 +24.30731 0.01197402 0.08132997 +32.64117 0.01197402 0.08132997 +43.83129 0.01197402 0.08132997 +58.85664 0.01197402 0.08132997 +-0.0175068 0.01903886 0.08132997 +-0.01161267 0.01903886 0.08132997 +-0.005718534 0.01903886 0.08132997 +0.0001755984 0.01903886 0.08132997 +0.006069731 0.01903886 0.08132997 +0.01197402 0.01903886 0.08132997 +0.01903886 0.01903886 0.08132997 +0.02852504 0.01903886 0.08132997 +0.04126244 0.01903886 0.08132997 +0.05836535 0.01903886 0.08132997 +0.08132997 0.01903886 0.08132997 +0.1121653 0.01903886 0.08132997 +0.1535689 0.01903886 0.08132997 +0.2091628 0.01903886 0.08132997 +0.2838106 0.01903886 0.08132997 +0.3840425 0.01903886 0.08132997 +0.518627 0.01903886 0.08132997 +0.6993381 0.01903886 0.08132997 +0.9419845 0.01903886 0.08132997 +1.267794 0.01903886 0.08132997 +1.705268 0.01903886 0.08132997 +2.292679 0.01903886 0.08132997 +3.081414 0.01903886 0.08132997 +4.140474 0.01903886 0.08132997 +5.562508 0.01903886 0.08132997 +7.471917 0.01903886 0.08132997 +10.03574 0.01903886 0.08132997 +13.47828 0.01903886 0.08132997 +18.10068 0.01903886 0.08132997 +24.30731 0.01903886 0.08132997 +32.64117 0.01903886 0.08132997 +43.83129 0.01903886 0.08132997 +58.85664 0.01903886 0.08132997 +-0.0175068 0.02852504 0.08132997 +-0.01161267 0.02852504 0.08132997 +-0.005718534 0.02852504 0.08132997 +0.0001755984 0.02852504 0.08132997 +0.006069731 0.02852504 0.08132997 +0.01197402 0.02852504 0.08132997 +0.01903886 0.02852504 0.08132997 +0.02852504 0.02852504 0.08132997 +0.04126244 0.02852504 0.08132997 +0.05836535 0.02852504 0.08132997 +0.08132997 0.02852504 0.08132997 +0.1121653 0.02852504 0.08132997 +0.1535689 0.02852504 0.08132997 +0.2091628 0.02852504 0.08132997 +0.2838106 0.02852504 0.08132997 +0.3840425 0.02852504 0.08132997 +0.518627 0.02852504 0.08132997 +0.6993381 0.02852504 0.08132997 +0.9419845 0.02852504 0.08132997 +1.267794 0.02852504 0.08132997 +1.705268 0.02852504 0.08132997 +2.292679 0.02852504 0.08132997 +3.081414 0.02852504 0.08132997 +4.140474 0.02852504 0.08132997 +5.562508 0.02852504 0.08132997 +7.471917 0.02852504 0.08132997 +10.03574 0.02852504 0.08132997 +13.47828 0.02852504 0.08132997 +18.10068 0.02852504 0.08132997 +24.30731 0.02852504 0.08132997 +32.64117 0.02852504 0.08132997 +43.83129 0.02852504 0.08132997 +58.85664 0.02852504 0.08132997 +-0.0175068 0.04126244 0.08132997 +-0.01161267 0.04126244 0.08132997 +-0.005718534 0.04126244 0.08132997 +0.0001755984 0.04126244 0.08132997 +0.006069731 0.04126244 0.08132997 +0.01197402 0.04126244 0.08132997 +0.01903886 0.04126244 0.08132997 +0.02852504 0.04126244 0.08132997 +0.04126244 0.04126244 0.08132997 +0.05836535 0.04126244 0.08132997 +0.08132997 0.04126244 0.08132997 +0.1121653 0.04126244 0.08132997 +0.1535689 0.04126244 0.08132997 +0.2091628 0.04126244 0.08132997 +0.2838106 0.04126244 0.08132997 +0.3840425 0.04126244 0.08132997 +0.518627 0.04126244 0.08132997 +0.6993381 0.04126244 0.08132997 +0.9419845 0.04126244 0.08132997 +1.267794 0.04126244 0.08132997 +1.705268 0.04126244 0.08132997 +2.292679 0.04126244 0.08132997 +3.081414 0.04126244 0.08132997 +4.140474 0.04126244 0.08132997 +5.562508 0.04126244 0.08132997 +7.471917 0.04126244 0.08132997 +10.03574 0.04126244 0.08132997 +13.47828 0.04126244 0.08132997 +18.10068 0.04126244 0.08132997 +24.30731 0.04126244 0.08132997 +32.64117 0.04126244 0.08132997 +43.83129 0.04126244 0.08132997 +58.85664 0.04126244 0.08132997 +-0.0175068 0.05836535 0.08132997 +-0.01161267 0.05836535 0.08132997 +-0.005718534 0.05836535 0.08132997 +0.0001755984 0.05836535 0.08132997 +0.006069731 0.05836535 0.08132997 +0.01197402 0.05836535 0.08132997 +0.01903886 0.05836535 0.08132997 +0.02852504 0.05836535 0.08132997 +0.04126244 0.05836535 0.08132997 +0.05836535 0.05836535 0.08132997 +0.08132997 0.05836535 0.08132997 +0.1121653 0.05836535 0.08132997 +0.1535689 0.05836535 0.08132997 +0.2091628 0.05836535 0.08132997 +0.2838106 0.05836535 0.08132997 +0.3840425 0.05836535 0.08132997 +0.518627 0.05836535 0.08132997 +0.6993381 0.05836535 0.08132997 +0.9419845 0.05836535 0.08132997 +1.267794 0.05836535 0.08132997 +1.705268 0.05836535 0.08132997 +2.292679 0.05836535 0.08132997 +3.081414 0.05836535 0.08132997 +4.140474 0.05836535 0.08132997 +5.562508 0.05836535 0.08132997 +7.471917 0.05836535 0.08132997 +10.03574 0.05836535 0.08132997 +13.47828 0.05836535 0.08132997 +18.10068 0.05836535 0.08132997 +24.30731 0.05836535 0.08132997 +32.64117 0.05836535 0.08132997 +43.83129 0.05836535 0.08132997 +58.85664 0.05836535 0.08132997 +-0.0175068 0.08132997 0.08132997 +-0.01161267 0.08132997 0.08132997 +-0.005718534 0.08132997 0.08132997 +0.0001755984 0.08132997 0.08132997 +0.006069731 0.08132997 0.08132997 +0.01197402 0.08132997 0.08132997 +0.01903886 0.08132997 0.08132997 +0.02852504 0.08132997 0.08132997 +0.04126244 0.08132997 0.08132997 +0.05836535 0.08132997 0.08132997 +0.08132997 0.08132997 0.08132997 +0.1121653 0.08132997 0.08132997 +0.1535689 0.08132997 0.08132997 +0.2091628 0.08132997 0.08132997 +0.2838106 0.08132997 0.08132997 +0.3840425 0.08132997 0.08132997 +0.518627 0.08132997 0.08132997 +0.6993381 0.08132997 0.08132997 +0.9419845 0.08132997 0.08132997 +1.267794 0.08132997 0.08132997 +1.705268 0.08132997 0.08132997 +2.292679 0.08132997 0.08132997 +3.081414 0.08132997 0.08132997 +4.140474 0.08132997 0.08132997 +5.562508 0.08132997 0.08132997 +7.471917 0.08132997 0.08132997 +10.03574 0.08132997 0.08132997 +13.47828 0.08132997 0.08132997 +18.10068 0.08132997 0.08132997 +24.30731 0.08132997 0.08132997 +32.64117 0.08132997 0.08132997 +43.83129 0.08132997 0.08132997 +58.85664 0.08132997 0.08132997 +-0.0175068 0.1121653 0.08132997 +-0.01161267 0.1121653 0.08132997 +-0.005718534 0.1121653 0.08132997 +0.0001755984 0.1121653 0.08132997 +0.006069731 0.1121653 0.08132997 +0.01197402 0.1121653 0.08132997 +0.01903886 0.1121653 0.08132997 +0.02852504 0.1121653 0.08132997 +0.04126244 0.1121653 0.08132997 +0.05836535 0.1121653 0.08132997 +0.08132997 0.1121653 0.08132997 +0.1121653 0.1121653 0.08132997 +0.1535689 0.1121653 0.08132997 +0.2091628 0.1121653 0.08132997 +0.2838106 0.1121653 0.08132997 +0.3840425 0.1121653 0.08132997 +0.518627 0.1121653 0.08132997 +0.6993381 0.1121653 0.08132997 +0.9419845 0.1121653 0.08132997 +1.267794 0.1121653 0.08132997 +1.705268 0.1121653 0.08132997 +2.292679 0.1121653 0.08132997 +3.081414 0.1121653 0.08132997 +4.140474 0.1121653 0.08132997 +5.562508 0.1121653 0.08132997 +7.471917 0.1121653 0.08132997 +10.03574 0.1121653 0.08132997 +13.47828 0.1121653 0.08132997 +18.10068 0.1121653 0.08132997 +24.30731 0.1121653 0.08132997 +32.64117 0.1121653 0.08132997 +43.83129 0.1121653 0.08132997 +58.85664 0.1121653 0.08132997 +-0.0175068 0.1535689 0.08132997 +-0.01161267 0.1535689 0.08132997 +-0.005718534 0.1535689 0.08132997 +0.0001755984 0.1535689 0.08132997 +0.006069731 0.1535689 0.08132997 +0.01197402 0.1535689 0.08132997 +0.01903886 0.1535689 0.08132997 +0.02852504 0.1535689 0.08132997 +0.04126244 0.1535689 0.08132997 +0.05836535 0.1535689 0.08132997 +0.08132997 0.1535689 0.08132997 +0.1121653 0.1535689 0.08132997 +0.1535689 0.1535689 0.08132997 +0.2091628 0.1535689 0.08132997 +0.2838106 0.1535689 0.08132997 +0.3840425 0.1535689 0.08132997 +0.518627 0.1535689 0.08132997 +0.6993381 0.1535689 0.08132997 +0.9419845 0.1535689 0.08132997 +1.267794 0.1535689 0.08132997 +1.705268 0.1535689 0.08132997 +2.292679 0.1535689 0.08132997 +3.081414 0.1535689 0.08132997 +4.140474 0.1535689 0.08132997 +5.562508 0.1535689 0.08132997 +7.471917 0.1535689 0.08132997 +10.03574 0.1535689 0.08132997 +13.47828 0.1535689 0.08132997 +18.10068 0.1535689 0.08132997 +24.30731 0.1535689 0.08132997 +32.64117 0.1535689 0.08132997 +43.83129 0.1535689 0.08132997 +58.85664 0.1535689 0.08132997 +-0.0175068 0.2091628 0.08132997 +-0.01161267 0.2091628 0.08132997 +-0.005718534 0.2091628 0.08132997 +0.0001755984 0.2091628 0.08132997 +0.006069731 0.2091628 0.08132997 +0.01197402 0.2091628 0.08132997 +0.01903886 0.2091628 0.08132997 +0.02852504 0.2091628 0.08132997 +0.04126244 0.2091628 0.08132997 +0.05836535 0.2091628 0.08132997 +0.08132997 0.2091628 0.08132997 +0.1121653 0.2091628 0.08132997 +0.1535689 0.2091628 0.08132997 +0.2091628 0.2091628 0.08132997 +0.2838106 0.2091628 0.08132997 +0.3840425 0.2091628 0.08132997 +0.518627 0.2091628 0.08132997 +0.6993381 0.2091628 0.08132997 +0.9419845 0.2091628 0.08132997 +1.267794 0.2091628 0.08132997 +1.705268 0.2091628 0.08132997 +2.292679 0.2091628 0.08132997 +3.081414 0.2091628 0.08132997 +4.140474 0.2091628 0.08132997 +5.562508 0.2091628 0.08132997 +7.471917 0.2091628 0.08132997 +10.03574 0.2091628 0.08132997 +13.47828 0.2091628 0.08132997 +18.10068 0.2091628 0.08132997 +24.30731 0.2091628 0.08132997 +32.64117 0.2091628 0.08132997 +43.83129 0.2091628 0.08132997 +58.85664 0.2091628 0.08132997 +-0.0175068 0.2838106 0.08132997 +-0.01161267 0.2838106 0.08132997 +-0.005718534 0.2838106 0.08132997 +0.0001755984 0.2838106 0.08132997 +0.006069731 0.2838106 0.08132997 +0.01197402 0.2838106 0.08132997 +0.01903886 0.2838106 0.08132997 +0.02852504 0.2838106 0.08132997 +0.04126244 0.2838106 0.08132997 +0.05836535 0.2838106 0.08132997 +0.08132997 0.2838106 0.08132997 +0.1121653 0.2838106 0.08132997 +0.1535689 0.2838106 0.08132997 +0.2091628 0.2838106 0.08132997 +0.2838106 0.2838106 0.08132997 +0.3840425 0.2838106 0.08132997 +0.518627 0.2838106 0.08132997 +0.6993381 0.2838106 0.08132997 +0.9419845 0.2838106 0.08132997 +1.267794 0.2838106 0.08132997 +1.705268 0.2838106 0.08132997 +2.292679 0.2838106 0.08132997 +3.081414 0.2838106 0.08132997 +4.140474 0.2838106 0.08132997 +5.562508 0.2838106 0.08132997 +7.471917 0.2838106 0.08132997 +10.03574 0.2838106 0.08132997 +13.47828 0.2838106 0.08132997 +18.10068 0.2838106 0.08132997 +24.30731 0.2838106 0.08132997 +32.64117 0.2838106 0.08132997 +43.83129 0.2838106 0.08132997 +58.85664 0.2838106 0.08132997 +-0.0175068 0.3840425 0.08132997 +-0.01161267 0.3840425 0.08132997 +-0.005718534 0.3840425 0.08132997 +0.0001755984 0.3840425 0.08132997 +0.006069731 0.3840425 0.08132997 +0.01197402 0.3840425 0.08132997 +0.01903886 0.3840425 0.08132997 +0.02852504 0.3840425 0.08132997 +0.04126244 0.3840425 0.08132997 +0.05836535 0.3840425 0.08132997 +0.08132997 0.3840425 0.08132997 +0.1121653 0.3840425 0.08132997 +0.1535689 0.3840425 0.08132997 +0.2091628 0.3840425 0.08132997 +0.2838106 0.3840425 0.08132997 +0.3840425 0.3840425 0.08132997 +0.518627 0.3840425 0.08132997 +0.6993381 0.3840425 0.08132997 +0.9419845 0.3840425 0.08132997 +1.267794 0.3840425 0.08132997 +1.705268 0.3840425 0.08132997 +2.292679 0.3840425 0.08132997 +3.081414 0.3840425 0.08132997 +4.140474 0.3840425 0.08132997 +5.562508 0.3840425 0.08132997 +7.471917 0.3840425 0.08132997 +10.03574 0.3840425 0.08132997 +13.47828 0.3840425 0.08132997 +18.10068 0.3840425 0.08132997 +24.30731 0.3840425 0.08132997 +32.64117 0.3840425 0.08132997 +43.83129 0.3840425 0.08132997 +58.85664 0.3840425 0.08132997 +-0.0175068 0.518627 0.08132997 +-0.01161267 0.518627 0.08132997 +-0.005718534 0.518627 0.08132997 +0.0001755984 0.518627 0.08132997 +0.006069731 0.518627 0.08132997 +0.01197402 0.518627 0.08132997 +0.01903886 0.518627 0.08132997 +0.02852504 0.518627 0.08132997 +0.04126244 0.518627 0.08132997 +0.05836535 0.518627 0.08132997 +0.08132997 0.518627 0.08132997 +0.1121653 0.518627 0.08132997 +0.1535689 0.518627 0.08132997 +0.2091628 0.518627 0.08132997 +0.2838106 0.518627 0.08132997 +0.3840425 0.518627 0.08132997 +0.518627 0.518627 0.08132997 +0.6993381 0.518627 0.08132997 +0.9419845 0.518627 0.08132997 +1.267794 0.518627 0.08132997 +1.705268 0.518627 0.08132997 +2.292679 0.518627 0.08132997 +3.081414 0.518627 0.08132997 +4.140474 0.518627 0.08132997 +5.562508 0.518627 0.08132997 +7.471917 0.518627 0.08132997 +10.03574 0.518627 0.08132997 +13.47828 0.518627 0.08132997 +18.10068 0.518627 0.08132997 +24.30731 0.518627 0.08132997 +32.64117 0.518627 0.08132997 +43.83129 0.518627 0.08132997 +58.85664 0.518627 0.08132997 +-0.0175068 0.6993381 0.08132997 +-0.01161267 0.6993381 0.08132997 +-0.005718534 0.6993381 0.08132997 +0.0001755984 0.6993381 0.08132997 +0.006069731 0.6993381 0.08132997 +0.01197402 0.6993381 0.08132997 +0.01903886 0.6993381 0.08132997 +0.02852504 0.6993381 0.08132997 +0.04126244 0.6993381 0.08132997 +0.05836535 0.6993381 0.08132997 +0.08132997 0.6993381 0.08132997 +0.1121653 0.6993381 0.08132997 +0.1535689 0.6993381 0.08132997 +0.2091628 0.6993381 0.08132997 +0.2838106 0.6993381 0.08132997 +0.3840425 0.6993381 0.08132997 +0.518627 0.6993381 0.08132997 +0.6993381 0.6993381 0.08132997 +0.9419845 0.6993381 0.08132997 +1.267794 0.6993381 0.08132997 +1.705268 0.6993381 0.08132997 +2.292679 0.6993381 0.08132997 +3.081414 0.6993381 0.08132997 +4.140474 0.6993381 0.08132997 +5.562508 0.6993381 0.08132997 +7.471917 0.6993381 0.08132997 +10.03574 0.6993381 0.08132997 +13.47828 0.6993381 0.08132997 +18.10068 0.6993381 0.08132997 +24.30731 0.6993381 0.08132997 +32.64117 0.6993381 0.08132997 +43.83129 0.6993381 0.08132997 +58.85664 0.6993381 0.08132997 +-0.0175068 0.9419845 0.08132997 +-0.01161267 0.9419845 0.08132997 +-0.005718534 0.9419845 0.08132997 +0.0001755984 0.9419845 0.08132997 +0.006069731 0.9419845 0.08132997 +0.01197402 0.9419845 0.08132997 +0.01903886 0.9419845 0.08132997 +0.02852504 0.9419845 0.08132997 +0.04126244 0.9419845 0.08132997 +0.05836535 0.9419845 0.08132997 +0.08132997 0.9419845 0.08132997 +0.1121653 0.9419845 0.08132997 +0.1535689 0.9419845 0.08132997 +0.2091628 0.9419845 0.08132997 +0.2838106 0.9419845 0.08132997 +0.3840425 0.9419845 0.08132997 +0.518627 0.9419845 0.08132997 +0.6993381 0.9419845 0.08132997 +0.9419845 0.9419845 0.08132997 +1.267794 0.9419845 0.08132997 +1.705268 0.9419845 0.08132997 +2.292679 0.9419845 0.08132997 +3.081414 0.9419845 0.08132997 +4.140474 0.9419845 0.08132997 +5.562508 0.9419845 0.08132997 +7.471917 0.9419845 0.08132997 +10.03574 0.9419845 0.08132997 +13.47828 0.9419845 0.08132997 +18.10068 0.9419845 0.08132997 +24.30731 0.9419845 0.08132997 +32.64117 0.9419845 0.08132997 +43.83129 0.9419845 0.08132997 +58.85664 0.9419845 0.08132997 +-0.0175068 1.267794 0.08132997 +-0.01161267 1.267794 0.08132997 +-0.005718534 1.267794 0.08132997 +0.0001755984 1.267794 0.08132997 +0.006069731 1.267794 0.08132997 +0.01197402 1.267794 0.08132997 +0.01903886 1.267794 0.08132997 +0.02852504 1.267794 0.08132997 +0.04126244 1.267794 0.08132997 +0.05836535 1.267794 0.08132997 +0.08132997 1.267794 0.08132997 +0.1121653 1.267794 0.08132997 +0.1535689 1.267794 0.08132997 +0.2091628 1.267794 0.08132997 +0.2838106 1.267794 0.08132997 +0.3840425 1.267794 0.08132997 +0.518627 1.267794 0.08132997 +0.6993381 1.267794 0.08132997 +0.9419845 1.267794 0.08132997 +1.267794 1.267794 0.08132997 +1.705268 1.267794 0.08132997 +2.292679 1.267794 0.08132997 +3.081414 1.267794 0.08132997 +4.140474 1.267794 0.08132997 +5.562508 1.267794 0.08132997 +7.471917 1.267794 0.08132997 +10.03574 1.267794 0.08132997 +13.47828 1.267794 0.08132997 +18.10068 1.267794 0.08132997 +24.30731 1.267794 0.08132997 +32.64117 1.267794 0.08132997 +43.83129 1.267794 0.08132997 +58.85664 1.267794 0.08132997 +-0.0175068 1.705268 0.08132997 +-0.01161267 1.705268 0.08132997 +-0.005718534 1.705268 0.08132997 +0.0001755984 1.705268 0.08132997 +0.006069731 1.705268 0.08132997 +0.01197402 1.705268 0.08132997 +0.01903886 1.705268 0.08132997 +0.02852504 1.705268 0.08132997 +0.04126244 1.705268 0.08132997 +0.05836535 1.705268 0.08132997 +0.08132997 1.705268 0.08132997 +0.1121653 1.705268 0.08132997 +0.1535689 1.705268 0.08132997 +0.2091628 1.705268 0.08132997 +0.2838106 1.705268 0.08132997 +0.3840425 1.705268 0.08132997 +0.518627 1.705268 0.08132997 +0.6993381 1.705268 0.08132997 +0.9419845 1.705268 0.08132997 +1.267794 1.705268 0.08132997 +1.705268 1.705268 0.08132997 +2.292679 1.705268 0.08132997 +3.081414 1.705268 0.08132997 +4.140474 1.705268 0.08132997 +5.562508 1.705268 0.08132997 +7.471917 1.705268 0.08132997 +10.03574 1.705268 0.08132997 +13.47828 1.705268 0.08132997 +18.10068 1.705268 0.08132997 +24.30731 1.705268 0.08132997 +32.64117 1.705268 0.08132997 +43.83129 1.705268 0.08132997 +58.85664 1.705268 0.08132997 +-0.0175068 2.292679 0.08132997 +-0.01161267 2.292679 0.08132997 +-0.005718534 2.292679 0.08132997 +0.0001755984 2.292679 0.08132997 +0.006069731 2.292679 0.08132997 +0.01197402 2.292679 0.08132997 +0.01903886 2.292679 0.08132997 +0.02852504 2.292679 0.08132997 +0.04126244 2.292679 0.08132997 +0.05836535 2.292679 0.08132997 +0.08132997 2.292679 0.08132997 +0.1121653 2.292679 0.08132997 +0.1535689 2.292679 0.08132997 +0.2091628 2.292679 0.08132997 +0.2838106 2.292679 0.08132997 +0.3840425 2.292679 0.08132997 +0.518627 2.292679 0.08132997 +0.6993381 2.292679 0.08132997 +0.9419845 2.292679 0.08132997 +1.267794 2.292679 0.08132997 +1.705268 2.292679 0.08132997 +2.292679 2.292679 0.08132997 +3.081414 2.292679 0.08132997 +4.140474 2.292679 0.08132997 +5.562508 2.292679 0.08132997 +7.471917 2.292679 0.08132997 +10.03574 2.292679 0.08132997 +13.47828 2.292679 0.08132997 +18.10068 2.292679 0.08132997 +24.30731 2.292679 0.08132997 +32.64117 2.292679 0.08132997 +43.83129 2.292679 0.08132997 +58.85664 2.292679 0.08132997 +-0.0175068 3.081414 0.08132997 +-0.01161267 3.081414 0.08132997 +-0.005718534 3.081414 0.08132997 +0.0001755984 3.081414 0.08132997 +0.006069731 3.081414 0.08132997 +0.01197402 3.081414 0.08132997 +0.01903886 3.081414 0.08132997 +0.02852504 3.081414 0.08132997 +0.04126244 3.081414 0.08132997 +0.05836535 3.081414 0.08132997 +0.08132997 3.081414 0.08132997 +0.1121653 3.081414 0.08132997 +0.1535689 3.081414 0.08132997 +0.2091628 3.081414 0.08132997 +0.2838106 3.081414 0.08132997 +0.3840425 3.081414 0.08132997 +0.518627 3.081414 0.08132997 +0.6993381 3.081414 0.08132997 +0.9419845 3.081414 0.08132997 +1.267794 3.081414 0.08132997 +1.705268 3.081414 0.08132997 +2.292679 3.081414 0.08132997 +3.081414 3.081414 0.08132997 +4.140474 3.081414 0.08132997 +5.562508 3.081414 0.08132997 +7.471917 3.081414 0.08132997 +10.03574 3.081414 0.08132997 +13.47828 3.081414 0.08132997 +18.10068 3.081414 0.08132997 +24.30731 3.081414 0.08132997 +32.64117 3.081414 0.08132997 +43.83129 3.081414 0.08132997 +58.85664 3.081414 0.08132997 +-0.0175068 4.140474 0.08132997 +-0.01161267 4.140474 0.08132997 +-0.005718534 4.140474 0.08132997 +0.0001755984 4.140474 0.08132997 +0.006069731 4.140474 0.08132997 +0.01197402 4.140474 0.08132997 +0.01903886 4.140474 0.08132997 +0.02852504 4.140474 0.08132997 +0.04126244 4.140474 0.08132997 +0.05836535 4.140474 0.08132997 +0.08132997 4.140474 0.08132997 +0.1121653 4.140474 0.08132997 +0.1535689 4.140474 0.08132997 +0.2091628 4.140474 0.08132997 +0.2838106 4.140474 0.08132997 +0.3840425 4.140474 0.08132997 +0.518627 4.140474 0.08132997 +0.6993381 4.140474 0.08132997 +0.9419845 4.140474 0.08132997 +1.267794 4.140474 0.08132997 +1.705268 4.140474 0.08132997 +2.292679 4.140474 0.08132997 +3.081414 4.140474 0.08132997 +4.140474 4.140474 0.08132997 +5.562508 4.140474 0.08132997 +7.471917 4.140474 0.08132997 +10.03574 4.140474 0.08132997 +13.47828 4.140474 0.08132997 +18.10068 4.140474 0.08132997 +24.30731 4.140474 0.08132997 +32.64117 4.140474 0.08132997 +43.83129 4.140474 0.08132997 +58.85664 4.140474 0.08132997 +-0.0175068 5.562508 0.08132997 +-0.01161267 5.562508 0.08132997 +-0.005718534 5.562508 0.08132997 +0.0001755984 5.562508 0.08132997 +0.006069731 5.562508 0.08132997 +0.01197402 5.562508 0.08132997 +0.01903886 5.562508 0.08132997 +0.02852504 5.562508 0.08132997 +0.04126244 5.562508 0.08132997 +0.05836535 5.562508 0.08132997 +0.08132997 5.562508 0.08132997 +0.1121653 5.562508 0.08132997 +0.1535689 5.562508 0.08132997 +0.2091628 5.562508 0.08132997 +0.2838106 5.562508 0.08132997 +0.3840425 5.562508 0.08132997 +0.518627 5.562508 0.08132997 +0.6993381 5.562508 0.08132997 +0.9419845 5.562508 0.08132997 +1.267794 5.562508 0.08132997 +1.705268 5.562508 0.08132997 +2.292679 5.562508 0.08132997 +3.081414 5.562508 0.08132997 +4.140474 5.562508 0.08132997 +5.562508 5.562508 0.08132997 +7.471917 5.562508 0.08132997 +10.03574 5.562508 0.08132997 +13.47828 5.562508 0.08132997 +18.10068 5.562508 0.08132997 +24.30731 5.562508 0.08132997 +32.64117 5.562508 0.08132997 +43.83129 5.562508 0.08132997 +58.85664 5.562508 0.08132997 +-0.0175068 7.471917 0.08132997 +-0.01161267 7.471917 0.08132997 +-0.005718534 7.471917 0.08132997 +0.0001755984 7.471917 0.08132997 +0.006069731 7.471917 0.08132997 +0.01197402 7.471917 0.08132997 +0.01903886 7.471917 0.08132997 +0.02852504 7.471917 0.08132997 +0.04126244 7.471917 0.08132997 +0.05836535 7.471917 0.08132997 +0.08132997 7.471917 0.08132997 +0.1121653 7.471917 0.08132997 +0.1535689 7.471917 0.08132997 +0.2091628 7.471917 0.08132997 +0.2838106 7.471917 0.08132997 +0.3840425 7.471917 0.08132997 +0.518627 7.471917 0.08132997 +0.6993381 7.471917 0.08132997 +0.9419845 7.471917 0.08132997 +1.267794 7.471917 0.08132997 +1.705268 7.471917 0.08132997 +2.292679 7.471917 0.08132997 +3.081414 7.471917 0.08132997 +4.140474 7.471917 0.08132997 +5.562508 7.471917 0.08132997 +7.471917 7.471917 0.08132997 +10.03574 7.471917 0.08132997 +13.47828 7.471917 0.08132997 +18.10068 7.471917 0.08132997 +24.30731 7.471917 0.08132997 +32.64117 7.471917 0.08132997 +43.83129 7.471917 0.08132997 +58.85664 7.471917 0.08132997 +-0.0175068 10.03574 0.08132997 +-0.01161267 10.03574 0.08132997 +-0.005718534 10.03574 0.08132997 +0.0001755984 10.03574 0.08132997 +0.006069731 10.03574 0.08132997 +0.01197402 10.03574 0.08132997 +0.01903886 10.03574 0.08132997 +0.02852504 10.03574 0.08132997 +0.04126244 10.03574 0.08132997 +0.05836535 10.03574 0.08132997 +0.08132997 10.03574 0.08132997 +0.1121653 10.03574 0.08132997 +0.1535689 10.03574 0.08132997 +0.2091628 10.03574 0.08132997 +0.2838106 10.03574 0.08132997 +0.3840425 10.03574 0.08132997 +0.518627 10.03574 0.08132997 +0.6993381 10.03574 0.08132997 +0.9419845 10.03574 0.08132997 +1.267794 10.03574 0.08132997 +1.705268 10.03574 0.08132997 +2.292679 10.03574 0.08132997 +3.081414 10.03574 0.08132997 +4.140474 10.03574 0.08132997 +5.562508 10.03574 0.08132997 +7.471917 10.03574 0.08132997 +10.03574 10.03574 0.08132997 +13.47828 10.03574 0.08132997 +18.10068 10.03574 0.08132997 +24.30731 10.03574 0.08132997 +32.64117 10.03574 0.08132997 +43.83129 10.03574 0.08132997 +58.85664 10.03574 0.08132997 +-0.0175068 13.47828 0.08132997 +-0.01161267 13.47828 0.08132997 +-0.005718534 13.47828 0.08132997 +0.0001755984 13.47828 0.08132997 +0.006069731 13.47828 0.08132997 +0.01197402 13.47828 0.08132997 +0.01903886 13.47828 0.08132997 +0.02852504 13.47828 0.08132997 +0.04126244 13.47828 0.08132997 +0.05836535 13.47828 0.08132997 +0.08132997 13.47828 0.08132997 +0.1121653 13.47828 0.08132997 +0.1535689 13.47828 0.08132997 +0.2091628 13.47828 0.08132997 +0.2838106 13.47828 0.08132997 +0.3840425 13.47828 0.08132997 +0.518627 13.47828 0.08132997 +0.6993381 13.47828 0.08132997 +0.9419845 13.47828 0.08132997 +1.267794 13.47828 0.08132997 +1.705268 13.47828 0.08132997 +2.292679 13.47828 0.08132997 +3.081414 13.47828 0.08132997 +4.140474 13.47828 0.08132997 +5.562508 13.47828 0.08132997 +7.471917 13.47828 0.08132997 +10.03574 13.47828 0.08132997 +13.47828 13.47828 0.08132997 +18.10068 13.47828 0.08132997 +24.30731 13.47828 0.08132997 +32.64117 13.47828 0.08132997 +43.83129 13.47828 0.08132997 +58.85664 13.47828 0.08132997 +-0.0175068 18.10068 0.08132997 +-0.01161267 18.10068 0.08132997 +-0.005718534 18.10068 0.08132997 +0.0001755984 18.10068 0.08132997 +0.006069731 18.10068 0.08132997 +0.01197402 18.10068 0.08132997 +0.01903886 18.10068 0.08132997 +0.02852504 18.10068 0.08132997 +0.04126244 18.10068 0.08132997 +0.05836535 18.10068 0.08132997 +0.08132997 18.10068 0.08132997 +0.1121653 18.10068 0.08132997 +0.1535689 18.10068 0.08132997 +0.2091628 18.10068 0.08132997 +0.2838106 18.10068 0.08132997 +0.3840425 18.10068 0.08132997 +0.518627 18.10068 0.08132997 +0.6993381 18.10068 0.08132997 +0.9419845 18.10068 0.08132997 +1.267794 18.10068 0.08132997 +1.705268 18.10068 0.08132997 +2.292679 18.10068 0.08132997 +3.081414 18.10068 0.08132997 +4.140474 18.10068 0.08132997 +5.562508 18.10068 0.08132997 +7.471917 18.10068 0.08132997 +10.03574 18.10068 0.08132997 +13.47828 18.10068 0.08132997 +18.10068 18.10068 0.08132997 +24.30731 18.10068 0.08132997 +32.64117 18.10068 0.08132997 +43.83129 18.10068 0.08132997 +58.85664 18.10068 0.08132997 +-0.0175068 24.30731 0.08132997 +-0.01161267 24.30731 0.08132997 +-0.005718534 24.30731 0.08132997 +0.0001755984 24.30731 0.08132997 +0.006069731 24.30731 0.08132997 +0.01197402 24.30731 0.08132997 +0.01903886 24.30731 0.08132997 +0.02852504 24.30731 0.08132997 +0.04126244 24.30731 0.08132997 +0.05836535 24.30731 0.08132997 +0.08132997 24.30731 0.08132997 +0.1121653 24.30731 0.08132997 +0.1535689 24.30731 0.08132997 +0.2091628 24.30731 0.08132997 +0.2838106 24.30731 0.08132997 +0.3840425 24.30731 0.08132997 +0.518627 24.30731 0.08132997 +0.6993381 24.30731 0.08132997 +0.9419845 24.30731 0.08132997 +1.267794 24.30731 0.08132997 +1.705268 24.30731 0.08132997 +2.292679 24.30731 0.08132997 +3.081414 24.30731 0.08132997 +4.140474 24.30731 0.08132997 +5.562508 24.30731 0.08132997 +7.471917 24.30731 0.08132997 +10.03574 24.30731 0.08132997 +13.47828 24.30731 0.08132997 +18.10068 24.30731 0.08132997 +24.30731 24.30731 0.08132997 +32.64117 24.30731 0.08132997 +43.83129 24.30731 0.08132997 +58.85664 24.30731 0.08132997 +-0.0175068 32.64117 0.08132997 +-0.01161267 32.64117 0.08132997 +-0.005718534 32.64117 0.08132997 +0.0001755984 32.64117 0.08132997 +0.006069731 32.64117 0.08132997 +0.01197402 32.64117 0.08132997 +0.01903886 32.64117 0.08132997 +0.02852504 32.64117 0.08132997 +0.04126244 32.64117 0.08132997 +0.05836535 32.64117 0.08132997 +0.08132997 32.64117 0.08132997 +0.1121653 32.64117 0.08132997 +0.1535689 32.64117 0.08132997 +0.2091628 32.64117 0.08132997 +0.2838106 32.64117 0.08132997 +0.3840425 32.64117 0.08132997 +0.518627 32.64117 0.08132997 +0.6993381 32.64117 0.08132997 +0.9419845 32.64117 0.08132997 +1.267794 32.64117 0.08132997 +1.705268 32.64117 0.08132997 +2.292679 32.64117 0.08132997 +3.081414 32.64117 0.08132997 +4.140474 32.64117 0.08132997 +5.562508 32.64117 0.08132997 +7.471917 32.64117 0.08132997 +10.03574 32.64117 0.08132997 +13.47828 32.64117 0.08132997 +18.10068 32.64117 0.08132997 +24.30731 32.64117 0.08132997 +32.64117 32.64117 0.08132997 +43.83129 32.64117 0.08132997 +58.85664 32.64117 0.08132997 +-0.0175068 43.83129 0.08132997 +-0.01161267 43.83129 0.08132997 +-0.005718534 43.83129 0.08132997 +0.0001755984 43.83129 0.08132997 +0.006069731 43.83129 0.08132997 +0.01197402 43.83129 0.08132997 +0.01903886 43.83129 0.08132997 +0.02852504 43.83129 0.08132997 +0.04126244 43.83129 0.08132997 +0.05836535 43.83129 0.08132997 +0.08132997 43.83129 0.08132997 +0.1121653 43.83129 0.08132997 +0.1535689 43.83129 0.08132997 +0.2091628 43.83129 0.08132997 +0.2838106 43.83129 0.08132997 +0.3840425 43.83129 0.08132997 +0.518627 43.83129 0.08132997 +0.6993381 43.83129 0.08132997 +0.9419845 43.83129 0.08132997 +1.267794 43.83129 0.08132997 +1.705268 43.83129 0.08132997 +2.292679 43.83129 0.08132997 +3.081414 43.83129 0.08132997 +4.140474 43.83129 0.08132997 +5.562508 43.83129 0.08132997 +7.471917 43.83129 0.08132997 +10.03574 43.83129 0.08132997 +13.47828 43.83129 0.08132997 +18.10068 43.83129 0.08132997 +24.30731 43.83129 0.08132997 +32.64117 43.83129 0.08132997 +43.83129 43.83129 0.08132997 +58.85664 43.83129 0.08132997 +-0.0175068 58.85664 0.08132997 +-0.01161267 58.85664 0.08132997 +-0.005718534 58.85664 0.08132997 +0.0001755984 58.85664 0.08132997 +0.006069731 58.85664 0.08132997 +0.01197402 58.85664 0.08132997 +0.01903886 58.85664 0.08132997 +0.02852504 58.85664 0.08132997 +0.04126244 58.85664 0.08132997 +0.05836535 58.85664 0.08132997 +0.08132997 58.85664 0.08132997 +0.1121653 58.85664 0.08132997 +0.1535689 58.85664 0.08132997 +0.2091628 58.85664 0.08132997 +0.2838106 58.85664 0.08132997 +0.3840425 58.85664 0.08132997 +0.518627 58.85664 0.08132997 +0.6993381 58.85664 0.08132997 +0.9419845 58.85664 0.08132997 +1.267794 58.85664 0.08132997 +1.705268 58.85664 0.08132997 +2.292679 58.85664 0.08132997 +3.081414 58.85664 0.08132997 +4.140474 58.85664 0.08132997 +5.562508 58.85664 0.08132997 +7.471917 58.85664 0.08132997 +10.03574 58.85664 0.08132997 +13.47828 58.85664 0.08132997 +18.10068 58.85664 0.08132997 +24.30731 58.85664 0.08132997 +32.64117 58.85664 0.08132997 +43.83129 58.85664 0.08132997 +58.85664 58.85664 0.08132997 +-0.0175068 -0.0175068 0.1121653 +-0.01161267 -0.0175068 0.1121653 +-0.005718534 -0.0175068 0.1121653 +0.0001755984 -0.0175068 0.1121653 +0.006069731 -0.0175068 0.1121653 +0.01197402 -0.0175068 0.1121653 +0.01903886 -0.0175068 0.1121653 +0.02852504 -0.0175068 0.1121653 +0.04126244 -0.0175068 0.1121653 +0.05836535 -0.0175068 0.1121653 +0.08132997 -0.0175068 0.1121653 +0.1121653 -0.0175068 0.1121653 +0.1535689 -0.0175068 0.1121653 +0.2091628 -0.0175068 0.1121653 +0.2838106 -0.0175068 0.1121653 +0.3840425 -0.0175068 0.1121653 +0.518627 -0.0175068 0.1121653 +0.6993381 -0.0175068 0.1121653 +0.9419845 -0.0175068 0.1121653 +1.267794 -0.0175068 0.1121653 +1.705268 -0.0175068 0.1121653 +2.292679 -0.0175068 0.1121653 +3.081414 -0.0175068 0.1121653 +4.140474 -0.0175068 0.1121653 +5.562508 -0.0175068 0.1121653 +7.471917 -0.0175068 0.1121653 +10.03574 -0.0175068 0.1121653 +13.47828 -0.0175068 0.1121653 +18.10068 -0.0175068 0.1121653 +24.30731 -0.0175068 0.1121653 +32.64117 -0.0175068 0.1121653 +43.83129 -0.0175068 0.1121653 +58.85664 -0.0175068 0.1121653 +-0.0175068 -0.01161267 0.1121653 +-0.01161267 -0.01161267 0.1121653 +-0.005718534 -0.01161267 0.1121653 +0.0001755984 -0.01161267 0.1121653 +0.006069731 -0.01161267 0.1121653 +0.01197402 -0.01161267 0.1121653 +0.01903886 -0.01161267 0.1121653 +0.02852504 -0.01161267 0.1121653 +0.04126244 -0.01161267 0.1121653 +0.05836535 -0.01161267 0.1121653 +0.08132997 -0.01161267 0.1121653 +0.1121653 -0.01161267 0.1121653 +0.1535689 -0.01161267 0.1121653 +0.2091628 -0.01161267 0.1121653 +0.2838106 -0.01161267 0.1121653 +0.3840425 -0.01161267 0.1121653 +0.518627 -0.01161267 0.1121653 +0.6993381 -0.01161267 0.1121653 +0.9419845 -0.01161267 0.1121653 +1.267794 -0.01161267 0.1121653 +1.705268 -0.01161267 0.1121653 +2.292679 -0.01161267 0.1121653 +3.081414 -0.01161267 0.1121653 +4.140474 -0.01161267 0.1121653 +5.562508 -0.01161267 0.1121653 +7.471917 -0.01161267 0.1121653 +10.03574 -0.01161267 0.1121653 +13.47828 -0.01161267 0.1121653 +18.10068 -0.01161267 0.1121653 +24.30731 -0.01161267 0.1121653 +32.64117 -0.01161267 0.1121653 +43.83129 -0.01161267 0.1121653 +58.85664 -0.01161267 0.1121653 +-0.0175068 -0.005718534 0.1121653 +-0.01161267 -0.005718534 0.1121653 +-0.005718534 -0.005718534 0.1121653 +0.0001755984 -0.005718534 0.1121653 +0.006069731 -0.005718534 0.1121653 +0.01197402 -0.005718534 0.1121653 +0.01903886 -0.005718534 0.1121653 +0.02852504 -0.005718534 0.1121653 +0.04126244 -0.005718534 0.1121653 +0.05836535 -0.005718534 0.1121653 +0.08132997 -0.005718534 0.1121653 +0.1121653 -0.005718534 0.1121653 +0.1535689 -0.005718534 0.1121653 +0.2091628 -0.005718534 0.1121653 +0.2838106 -0.005718534 0.1121653 +0.3840425 -0.005718534 0.1121653 +0.518627 -0.005718534 0.1121653 +0.6993381 -0.005718534 0.1121653 +0.9419845 -0.005718534 0.1121653 +1.267794 -0.005718534 0.1121653 +1.705268 -0.005718534 0.1121653 +2.292679 -0.005718534 0.1121653 +3.081414 -0.005718534 0.1121653 +4.140474 -0.005718534 0.1121653 +5.562508 -0.005718534 0.1121653 +7.471917 -0.005718534 0.1121653 +10.03574 -0.005718534 0.1121653 +13.47828 -0.005718534 0.1121653 +18.10068 -0.005718534 0.1121653 +24.30731 -0.005718534 0.1121653 +32.64117 -0.005718534 0.1121653 +43.83129 -0.005718534 0.1121653 +58.85664 -0.005718534 0.1121653 +-0.0175068 0.0001755984 0.1121653 +-0.01161267 0.0001755984 0.1121653 +-0.005718534 0.0001755984 0.1121653 +0.0001755984 0.0001755984 0.1121653 +0.006069731 0.0001755984 0.1121653 +0.01197402 0.0001755984 0.1121653 +0.01903886 0.0001755984 0.1121653 +0.02852504 0.0001755984 0.1121653 +0.04126244 0.0001755984 0.1121653 +0.05836535 0.0001755984 0.1121653 +0.08132997 0.0001755984 0.1121653 +0.1121653 0.0001755984 0.1121653 +0.1535689 0.0001755984 0.1121653 +0.2091628 0.0001755984 0.1121653 +0.2838106 0.0001755984 0.1121653 +0.3840425 0.0001755984 0.1121653 +0.518627 0.0001755984 0.1121653 +0.6993381 0.0001755984 0.1121653 +0.9419845 0.0001755984 0.1121653 +1.267794 0.0001755984 0.1121653 +1.705268 0.0001755984 0.1121653 +2.292679 0.0001755984 0.1121653 +3.081414 0.0001755984 0.1121653 +4.140474 0.0001755984 0.1121653 +5.562508 0.0001755984 0.1121653 +7.471917 0.0001755984 0.1121653 +10.03574 0.0001755984 0.1121653 +13.47828 0.0001755984 0.1121653 +18.10068 0.0001755984 0.1121653 +24.30731 0.0001755984 0.1121653 +32.64117 0.0001755984 0.1121653 +43.83129 0.0001755984 0.1121653 +58.85664 0.0001755984 0.1121653 +-0.0175068 0.006069731 0.1121653 +-0.01161267 0.006069731 0.1121653 +-0.005718534 0.006069731 0.1121653 +0.0001755984 0.006069731 0.1121653 +0.006069731 0.006069731 0.1121653 +0.01197402 0.006069731 0.1121653 +0.01903886 0.006069731 0.1121653 +0.02852504 0.006069731 0.1121653 +0.04126244 0.006069731 0.1121653 +0.05836535 0.006069731 0.1121653 +0.08132997 0.006069731 0.1121653 +0.1121653 0.006069731 0.1121653 +0.1535689 0.006069731 0.1121653 +0.2091628 0.006069731 0.1121653 +0.2838106 0.006069731 0.1121653 +0.3840425 0.006069731 0.1121653 +0.518627 0.006069731 0.1121653 +0.6993381 0.006069731 0.1121653 +0.9419845 0.006069731 0.1121653 +1.267794 0.006069731 0.1121653 +1.705268 0.006069731 0.1121653 +2.292679 0.006069731 0.1121653 +3.081414 0.006069731 0.1121653 +4.140474 0.006069731 0.1121653 +5.562508 0.006069731 0.1121653 +7.471917 0.006069731 0.1121653 +10.03574 0.006069731 0.1121653 +13.47828 0.006069731 0.1121653 +18.10068 0.006069731 0.1121653 +24.30731 0.006069731 0.1121653 +32.64117 0.006069731 0.1121653 +43.83129 0.006069731 0.1121653 +58.85664 0.006069731 0.1121653 +-0.0175068 0.01197402 0.1121653 +-0.01161267 0.01197402 0.1121653 +-0.005718534 0.01197402 0.1121653 +0.0001755984 0.01197402 0.1121653 +0.006069731 0.01197402 0.1121653 +0.01197402 0.01197402 0.1121653 +0.01903886 0.01197402 0.1121653 +0.02852504 0.01197402 0.1121653 +0.04126244 0.01197402 0.1121653 +0.05836535 0.01197402 0.1121653 +0.08132997 0.01197402 0.1121653 +0.1121653 0.01197402 0.1121653 +0.1535689 0.01197402 0.1121653 +0.2091628 0.01197402 0.1121653 +0.2838106 0.01197402 0.1121653 +0.3840425 0.01197402 0.1121653 +0.518627 0.01197402 0.1121653 +0.6993381 0.01197402 0.1121653 +0.9419845 0.01197402 0.1121653 +1.267794 0.01197402 0.1121653 +1.705268 0.01197402 0.1121653 +2.292679 0.01197402 0.1121653 +3.081414 0.01197402 0.1121653 +4.140474 0.01197402 0.1121653 +5.562508 0.01197402 0.1121653 +7.471917 0.01197402 0.1121653 +10.03574 0.01197402 0.1121653 +13.47828 0.01197402 0.1121653 +18.10068 0.01197402 0.1121653 +24.30731 0.01197402 0.1121653 +32.64117 0.01197402 0.1121653 +43.83129 0.01197402 0.1121653 +58.85664 0.01197402 0.1121653 +-0.0175068 0.01903886 0.1121653 +-0.01161267 0.01903886 0.1121653 +-0.005718534 0.01903886 0.1121653 +0.0001755984 0.01903886 0.1121653 +0.006069731 0.01903886 0.1121653 +0.01197402 0.01903886 0.1121653 +0.01903886 0.01903886 0.1121653 +0.02852504 0.01903886 0.1121653 +0.04126244 0.01903886 0.1121653 +0.05836535 0.01903886 0.1121653 +0.08132997 0.01903886 0.1121653 +0.1121653 0.01903886 0.1121653 +0.1535689 0.01903886 0.1121653 +0.2091628 0.01903886 0.1121653 +0.2838106 0.01903886 0.1121653 +0.3840425 0.01903886 0.1121653 +0.518627 0.01903886 0.1121653 +0.6993381 0.01903886 0.1121653 +0.9419845 0.01903886 0.1121653 +1.267794 0.01903886 0.1121653 +1.705268 0.01903886 0.1121653 +2.292679 0.01903886 0.1121653 +3.081414 0.01903886 0.1121653 +4.140474 0.01903886 0.1121653 +5.562508 0.01903886 0.1121653 +7.471917 0.01903886 0.1121653 +10.03574 0.01903886 0.1121653 +13.47828 0.01903886 0.1121653 +18.10068 0.01903886 0.1121653 +24.30731 0.01903886 0.1121653 +32.64117 0.01903886 0.1121653 +43.83129 0.01903886 0.1121653 +58.85664 0.01903886 0.1121653 +-0.0175068 0.02852504 0.1121653 +-0.01161267 0.02852504 0.1121653 +-0.005718534 0.02852504 0.1121653 +0.0001755984 0.02852504 0.1121653 +0.006069731 0.02852504 0.1121653 +0.01197402 0.02852504 0.1121653 +0.01903886 0.02852504 0.1121653 +0.02852504 0.02852504 0.1121653 +0.04126244 0.02852504 0.1121653 +0.05836535 0.02852504 0.1121653 +0.08132997 0.02852504 0.1121653 +0.1121653 0.02852504 0.1121653 +0.1535689 0.02852504 0.1121653 +0.2091628 0.02852504 0.1121653 +0.2838106 0.02852504 0.1121653 +0.3840425 0.02852504 0.1121653 +0.518627 0.02852504 0.1121653 +0.6993381 0.02852504 0.1121653 +0.9419845 0.02852504 0.1121653 +1.267794 0.02852504 0.1121653 +1.705268 0.02852504 0.1121653 +2.292679 0.02852504 0.1121653 +3.081414 0.02852504 0.1121653 +4.140474 0.02852504 0.1121653 +5.562508 0.02852504 0.1121653 +7.471917 0.02852504 0.1121653 +10.03574 0.02852504 0.1121653 +13.47828 0.02852504 0.1121653 +18.10068 0.02852504 0.1121653 +24.30731 0.02852504 0.1121653 +32.64117 0.02852504 0.1121653 +43.83129 0.02852504 0.1121653 +58.85664 0.02852504 0.1121653 +-0.0175068 0.04126244 0.1121653 +-0.01161267 0.04126244 0.1121653 +-0.005718534 0.04126244 0.1121653 +0.0001755984 0.04126244 0.1121653 +0.006069731 0.04126244 0.1121653 +0.01197402 0.04126244 0.1121653 +0.01903886 0.04126244 0.1121653 +0.02852504 0.04126244 0.1121653 +0.04126244 0.04126244 0.1121653 +0.05836535 0.04126244 0.1121653 +0.08132997 0.04126244 0.1121653 +0.1121653 0.04126244 0.1121653 +0.1535689 0.04126244 0.1121653 +0.2091628 0.04126244 0.1121653 +0.2838106 0.04126244 0.1121653 +0.3840425 0.04126244 0.1121653 +0.518627 0.04126244 0.1121653 +0.6993381 0.04126244 0.1121653 +0.9419845 0.04126244 0.1121653 +1.267794 0.04126244 0.1121653 +1.705268 0.04126244 0.1121653 +2.292679 0.04126244 0.1121653 +3.081414 0.04126244 0.1121653 +4.140474 0.04126244 0.1121653 +5.562508 0.04126244 0.1121653 +7.471917 0.04126244 0.1121653 +10.03574 0.04126244 0.1121653 +13.47828 0.04126244 0.1121653 +18.10068 0.04126244 0.1121653 +24.30731 0.04126244 0.1121653 +32.64117 0.04126244 0.1121653 +43.83129 0.04126244 0.1121653 +58.85664 0.04126244 0.1121653 +-0.0175068 0.05836535 0.1121653 +-0.01161267 0.05836535 0.1121653 +-0.005718534 0.05836535 0.1121653 +0.0001755984 0.05836535 0.1121653 +0.006069731 0.05836535 0.1121653 +0.01197402 0.05836535 0.1121653 +0.01903886 0.05836535 0.1121653 +0.02852504 0.05836535 0.1121653 +0.04126244 0.05836535 0.1121653 +0.05836535 0.05836535 0.1121653 +0.08132997 0.05836535 0.1121653 +0.1121653 0.05836535 0.1121653 +0.1535689 0.05836535 0.1121653 +0.2091628 0.05836535 0.1121653 +0.2838106 0.05836535 0.1121653 +0.3840425 0.05836535 0.1121653 +0.518627 0.05836535 0.1121653 +0.6993381 0.05836535 0.1121653 +0.9419845 0.05836535 0.1121653 +1.267794 0.05836535 0.1121653 +1.705268 0.05836535 0.1121653 +2.292679 0.05836535 0.1121653 +3.081414 0.05836535 0.1121653 +4.140474 0.05836535 0.1121653 +5.562508 0.05836535 0.1121653 +7.471917 0.05836535 0.1121653 +10.03574 0.05836535 0.1121653 +13.47828 0.05836535 0.1121653 +18.10068 0.05836535 0.1121653 +24.30731 0.05836535 0.1121653 +32.64117 0.05836535 0.1121653 +43.83129 0.05836535 0.1121653 +58.85664 0.05836535 0.1121653 +-0.0175068 0.08132997 0.1121653 +-0.01161267 0.08132997 0.1121653 +-0.005718534 0.08132997 0.1121653 +0.0001755984 0.08132997 0.1121653 +0.006069731 0.08132997 0.1121653 +0.01197402 0.08132997 0.1121653 +0.01903886 0.08132997 0.1121653 +0.02852504 0.08132997 0.1121653 +0.04126244 0.08132997 0.1121653 +0.05836535 0.08132997 0.1121653 +0.08132997 0.08132997 0.1121653 +0.1121653 0.08132997 0.1121653 +0.1535689 0.08132997 0.1121653 +0.2091628 0.08132997 0.1121653 +0.2838106 0.08132997 0.1121653 +0.3840425 0.08132997 0.1121653 +0.518627 0.08132997 0.1121653 +0.6993381 0.08132997 0.1121653 +0.9419845 0.08132997 0.1121653 +1.267794 0.08132997 0.1121653 +1.705268 0.08132997 0.1121653 +2.292679 0.08132997 0.1121653 +3.081414 0.08132997 0.1121653 +4.140474 0.08132997 0.1121653 +5.562508 0.08132997 0.1121653 +7.471917 0.08132997 0.1121653 +10.03574 0.08132997 0.1121653 +13.47828 0.08132997 0.1121653 +18.10068 0.08132997 0.1121653 +24.30731 0.08132997 0.1121653 +32.64117 0.08132997 0.1121653 +43.83129 0.08132997 0.1121653 +58.85664 0.08132997 0.1121653 +-0.0175068 0.1121653 0.1121653 +-0.01161267 0.1121653 0.1121653 +-0.005718534 0.1121653 0.1121653 +0.0001755984 0.1121653 0.1121653 +0.006069731 0.1121653 0.1121653 +0.01197402 0.1121653 0.1121653 +0.01903886 0.1121653 0.1121653 +0.02852504 0.1121653 0.1121653 +0.04126244 0.1121653 0.1121653 +0.05836535 0.1121653 0.1121653 +0.08132997 0.1121653 0.1121653 +0.1121653 0.1121653 0.1121653 +0.1535689 0.1121653 0.1121653 +0.2091628 0.1121653 0.1121653 +0.2838106 0.1121653 0.1121653 +0.3840425 0.1121653 0.1121653 +0.518627 0.1121653 0.1121653 +0.6993381 0.1121653 0.1121653 +0.9419845 0.1121653 0.1121653 +1.267794 0.1121653 0.1121653 +1.705268 0.1121653 0.1121653 +2.292679 0.1121653 0.1121653 +3.081414 0.1121653 0.1121653 +4.140474 0.1121653 0.1121653 +5.562508 0.1121653 0.1121653 +7.471917 0.1121653 0.1121653 +10.03574 0.1121653 0.1121653 +13.47828 0.1121653 0.1121653 +18.10068 0.1121653 0.1121653 +24.30731 0.1121653 0.1121653 +32.64117 0.1121653 0.1121653 +43.83129 0.1121653 0.1121653 +58.85664 0.1121653 0.1121653 +-0.0175068 0.1535689 0.1121653 +-0.01161267 0.1535689 0.1121653 +-0.005718534 0.1535689 0.1121653 +0.0001755984 0.1535689 0.1121653 +0.006069731 0.1535689 0.1121653 +0.01197402 0.1535689 0.1121653 +0.01903886 0.1535689 0.1121653 +0.02852504 0.1535689 0.1121653 +0.04126244 0.1535689 0.1121653 +0.05836535 0.1535689 0.1121653 +0.08132997 0.1535689 0.1121653 +0.1121653 0.1535689 0.1121653 +0.1535689 0.1535689 0.1121653 +0.2091628 0.1535689 0.1121653 +0.2838106 0.1535689 0.1121653 +0.3840425 0.1535689 0.1121653 +0.518627 0.1535689 0.1121653 +0.6993381 0.1535689 0.1121653 +0.9419845 0.1535689 0.1121653 +1.267794 0.1535689 0.1121653 +1.705268 0.1535689 0.1121653 +2.292679 0.1535689 0.1121653 +3.081414 0.1535689 0.1121653 +4.140474 0.1535689 0.1121653 +5.562508 0.1535689 0.1121653 +7.471917 0.1535689 0.1121653 +10.03574 0.1535689 0.1121653 +13.47828 0.1535689 0.1121653 +18.10068 0.1535689 0.1121653 +24.30731 0.1535689 0.1121653 +32.64117 0.1535689 0.1121653 +43.83129 0.1535689 0.1121653 +58.85664 0.1535689 0.1121653 +-0.0175068 0.2091628 0.1121653 +-0.01161267 0.2091628 0.1121653 +-0.005718534 0.2091628 0.1121653 +0.0001755984 0.2091628 0.1121653 +0.006069731 0.2091628 0.1121653 +0.01197402 0.2091628 0.1121653 +0.01903886 0.2091628 0.1121653 +0.02852504 0.2091628 0.1121653 +0.04126244 0.2091628 0.1121653 +0.05836535 0.2091628 0.1121653 +0.08132997 0.2091628 0.1121653 +0.1121653 0.2091628 0.1121653 +0.1535689 0.2091628 0.1121653 +0.2091628 0.2091628 0.1121653 +0.2838106 0.2091628 0.1121653 +0.3840425 0.2091628 0.1121653 +0.518627 0.2091628 0.1121653 +0.6993381 0.2091628 0.1121653 +0.9419845 0.2091628 0.1121653 +1.267794 0.2091628 0.1121653 +1.705268 0.2091628 0.1121653 +2.292679 0.2091628 0.1121653 +3.081414 0.2091628 0.1121653 +4.140474 0.2091628 0.1121653 +5.562508 0.2091628 0.1121653 +7.471917 0.2091628 0.1121653 +10.03574 0.2091628 0.1121653 +13.47828 0.2091628 0.1121653 +18.10068 0.2091628 0.1121653 +24.30731 0.2091628 0.1121653 +32.64117 0.2091628 0.1121653 +43.83129 0.2091628 0.1121653 +58.85664 0.2091628 0.1121653 +-0.0175068 0.2838106 0.1121653 +-0.01161267 0.2838106 0.1121653 +-0.005718534 0.2838106 0.1121653 +0.0001755984 0.2838106 0.1121653 +0.006069731 0.2838106 0.1121653 +0.01197402 0.2838106 0.1121653 +0.01903886 0.2838106 0.1121653 +0.02852504 0.2838106 0.1121653 +0.04126244 0.2838106 0.1121653 +0.05836535 0.2838106 0.1121653 +0.08132997 0.2838106 0.1121653 +0.1121653 0.2838106 0.1121653 +0.1535689 0.2838106 0.1121653 +0.2091628 0.2838106 0.1121653 +0.2838106 0.2838106 0.1121653 +0.3840425 0.2838106 0.1121653 +0.518627 0.2838106 0.1121653 +0.6993381 0.2838106 0.1121653 +0.9419845 0.2838106 0.1121653 +1.267794 0.2838106 0.1121653 +1.705268 0.2838106 0.1121653 +2.292679 0.2838106 0.1121653 +3.081414 0.2838106 0.1121653 +4.140474 0.2838106 0.1121653 +5.562508 0.2838106 0.1121653 +7.471917 0.2838106 0.1121653 +10.03574 0.2838106 0.1121653 +13.47828 0.2838106 0.1121653 +18.10068 0.2838106 0.1121653 +24.30731 0.2838106 0.1121653 +32.64117 0.2838106 0.1121653 +43.83129 0.2838106 0.1121653 +58.85664 0.2838106 0.1121653 +-0.0175068 0.3840425 0.1121653 +-0.01161267 0.3840425 0.1121653 +-0.005718534 0.3840425 0.1121653 +0.0001755984 0.3840425 0.1121653 +0.006069731 0.3840425 0.1121653 +0.01197402 0.3840425 0.1121653 +0.01903886 0.3840425 0.1121653 +0.02852504 0.3840425 0.1121653 +0.04126244 0.3840425 0.1121653 +0.05836535 0.3840425 0.1121653 +0.08132997 0.3840425 0.1121653 +0.1121653 0.3840425 0.1121653 +0.1535689 0.3840425 0.1121653 +0.2091628 0.3840425 0.1121653 +0.2838106 0.3840425 0.1121653 +0.3840425 0.3840425 0.1121653 +0.518627 0.3840425 0.1121653 +0.6993381 0.3840425 0.1121653 +0.9419845 0.3840425 0.1121653 +1.267794 0.3840425 0.1121653 +1.705268 0.3840425 0.1121653 +2.292679 0.3840425 0.1121653 +3.081414 0.3840425 0.1121653 +4.140474 0.3840425 0.1121653 +5.562508 0.3840425 0.1121653 +7.471917 0.3840425 0.1121653 +10.03574 0.3840425 0.1121653 +13.47828 0.3840425 0.1121653 +18.10068 0.3840425 0.1121653 +24.30731 0.3840425 0.1121653 +32.64117 0.3840425 0.1121653 +43.83129 0.3840425 0.1121653 +58.85664 0.3840425 0.1121653 +-0.0175068 0.518627 0.1121653 +-0.01161267 0.518627 0.1121653 +-0.005718534 0.518627 0.1121653 +0.0001755984 0.518627 0.1121653 +0.006069731 0.518627 0.1121653 +0.01197402 0.518627 0.1121653 +0.01903886 0.518627 0.1121653 +0.02852504 0.518627 0.1121653 +0.04126244 0.518627 0.1121653 +0.05836535 0.518627 0.1121653 +0.08132997 0.518627 0.1121653 +0.1121653 0.518627 0.1121653 +0.1535689 0.518627 0.1121653 +0.2091628 0.518627 0.1121653 +0.2838106 0.518627 0.1121653 +0.3840425 0.518627 0.1121653 +0.518627 0.518627 0.1121653 +0.6993381 0.518627 0.1121653 +0.9419845 0.518627 0.1121653 +1.267794 0.518627 0.1121653 +1.705268 0.518627 0.1121653 +2.292679 0.518627 0.1121653 +3.081414 0.518627 0.1121653 +4.140474 0.518627 0.1121653 +5.562508 0.518627 0.1121653 +7.471917 0.518627 0.1121653 +10.03574 0.518627 0.1121653 +13.47828 0.518627 0.1121653 +18.10068 0.518627 0.1121653 +24.30731 0.518627 0.1121653 +32.64117 0.518627 0.1121653 +43.83129 0.518627 0.1121653 +58.85664 0.518627 0.1121653 +-0.0175068 0.6993381 0.1121653 +-0.01161267 0.6993381 0.1121653 +-0.005718534 0.6993381 0.1121653 +0.0001755984 0.6993381 0.1121653 +0.006069731 0.6993381 0.1121653 +0.01197402 0.6993381 0.1121653 +0.01903886 0.6993381 0.1121653 +0.02852504 0.6993381 0.1121653 +0.04126244 0.6993381 0.1121653 +0.05836535 0.6993381 0.1121653 +0.08132997 0.6993381 0.1121653 +0.1121653 0.6993381 0.1121653 +0.1535689 0.6993381 0.1121653 +0.2091628 0.6993381 0.1121653 +0.2838106 0.6993381 0.1121653 +0.3840425 0.6993381 0.1121653 +0.518627 0.6993381 0.1121653 +0.6993381 0.6993381 0.1121653 +0.9419845 0.6993381 0.1121653 +1.267794 0.6993381 0.1121653 +1.705268 0.6993381 0.1121653 +2.292679 0.6993381 0.1121653 +3.081414 0.6993381 0.1121653 +4.140474 0.6993381 0.1121653 +5.562508 0.6993381 0.1121653 +7.471917 0.6993381 0.1121653 +10.03574 0.6993381 0.1121653 +13.47828 0.6993381 0.1121653 +18.10068 0.6993381 0.1121653 +24.30731 0.6993381 0.1121653 +32.64117 0.6993381 0.1121653 +43.83129 0.6993381 0.1121653 +58.85664 0.6993381 0.1121653 +-0.0175068 0.9419845 0.1121653 +-0.01161267 0.9419845 0.1121653 +-0.005718534 0.9419845 0.1121653 +0.0001755984 0.9419845 0.1121653 +0.006069731 0.9419845 0.1121653 +0.01197402 0.9419845 0.1121653 +0.01903886 0.9419845 0.1121653 +0.02852504 0.9419845 0.1121653 +0.04126244 0.9419845 0.1121653 +0.05836535 0.9419845 0.1121653 +0.08132997 0.9419845 0.1121653 +0.1121653 0.9419845 0.1121653 +0.1535689 0.9419845 0.1121653 +0.2091628 0.9419845 0.1121653 +0.2838106 0.9419845 0.1121653 +0.3840425 0.9419845 0.1121653 +0.518627 0.9419845 0.1121653 +0.6993381 0.9419845 0.1121653 +0.9419845 0.9419845 0.1121653 +1.267794 0.9419845 0.1121653 +1.705268 0.9419845 0.1121653 +2.292679 0.9419845 0.1121653 +3.081414 0.9419845 0.1121653 +4.140474 0.9419845 0.1121653 +5.562508 0.9419845 0.1121653 +7.471917 0.9419845 0.1121653 +10.03574 0.9419845 0.1121653 +13.47828 0.9419845 0.1121653 +18.10068 0.9419845 0.1121653 +24.30731 0.9419845 0.1121653 +32.64117 0.9419845 0.1121653 +43.83129 0.9419845 0.1121653 +58.85664 0.9419845 0.1121653 +-0.0175068 1.267794 0.1121653 +-0.01161267 1.267794 0.1121653 +-0.005718534 1.267794 0.1121653 +0.0001755984 1.267794 0.1121653 +0.006069731 1.267794 0.1121653 +0.01197402 1.267794 0.1121653 +0.01903886 1.267794 0.1121653 +0.02852504 1.267794 0.1121653 +0.04126244 1.267794 0.1121653 +0.05836535 1.267794 0.1121653 +0.08132997 1.267794 0.1121653 +0.1121653 1.267794 0.1121653 +0.1535689 1.267794 0.1121653 +0.2091628 1.267794 0.1121653 +0.2838106 1.267794 0.1121653 +0.3840425 1.267794 0.1121653 +0.518627 1.267794 0.1121653 +0.6993381 1.267794 0.1121653 +0.9419845 1.267794 0.1121653 +1.267794 1.267794 0.1121653 +1.705268 1.267794 0.1121653 +2.292679 1.267794 0.1121653 +3.081414 1.267794 0.1121653 +4.140474 1.267794 0.1121653 +5.562508 1.267794 0.1121653 +7.471917 1.267794 0.1121653 +10.03574 1.267794 0.1121653 +13.47828 1.267794 0.1121653 +18.10068 1.267794 0.1121653 +24.30731 1.267794 0.1121653 +32.64117 1.267794 0.1121653 +43.83129 1.267794 0.1121653 +58.85664 1.267794 0.1121653 +-0.0175068 1.705268 0.1121653 +-0.01161267 1.705268 0.1121653 +-0.005718534 1.705268 0.1121653 +0.0001755984 1.705268 0.1121653 +0.006069731 1.705268 0.1121653 +0.01197402 1.705268 0.1121653 +0.01903886 1.705268 0.1121653 +0.02852504 1.705268 0.1121653 +0.04126244 1.705268 0.1121653 +0.05836535 1.705268 0.1121653 +0.08132997 1.705268 0.1121653 +0.1121653 1.705268 0.1121653 +0.1535689 1.705268 0.1121653 +0.2091628 1.705268 0.1121653 +0.2838106 1.705268 0.1121653 +0.3840425 1.705268 0.1121653 +0.518627 1.705268 0.1121653 +0.6993381 1.705268 0.1121653 +0.9419845 1.705268 0.1121653 +1.267794 1.705268 0.1121653 +1.705268 1.705268 0.1121653 +2.292679 1.705268 0.1121653 +3.081414 1.705268 0.1121653 +4.140474 1.705268 0.1121653 +5.562508 1.705268 0.1121653 +7.471917 1.705268 0.1121653 +10.03574 1.705268 0.1121653 +13.47828 1.705268 0.1121653 +18.10068 1.705268 0.1121653 +24.30731 1.705268 0.1121653 +32.64117 1.705268 0.1121653 +43.83129 1.705268 0.1121653 +58.85664 1.705268 0.1121653 +-0.0175068 2.292679 0.1121653 +-0.01161267 2.292679 0.1121653 +-0.005718534 2.292679 0.1121653 +0.0001755984 2.292679 0.1121653 +0.006069731 2.292679 0.1121653 +0.01197402 2.292679 0.1121653 +0.01903886 2.292679 0.1121653 +0.02852504 2.292679 0.1121653 +0.04126244 2.292679 0.1121653 +0.05836535 2.292679 0.1121653 +0.08132997 2.292679 0.1121653 +0.1121653 2.292679 0.1121653 +0.1535689 2.292679 0.1121653 +0.2091628 2.292679 0.1121653 +0.2838106 2.292679 0.1121653 +0.3840425 2.292679 0.1121653 +0.518627 2.292679 0.1121653 +0.6993381 2.292679 0.1121653 +0.9419845 2.292679 0.1121653 +1.267794 2.292679 0.1121653 +1.705268 2.292679 0.1121653 +2.292679 2.292679 0.1121653 +3.081414 2.292679 0.1121653 +4.140474 2.292679 0.1121653 +5.562508 2.292679 0.1121653 +7.471917 2.292679 0.1121653 +10.03574 2.292679 0.1121653 +13.47828 2.292679 0.1121653 +18.10068 2.292679 0.1121653 +24.30731 2.292679 0.1121653 +32.64117 2.292679 0.1121653 +43.83129 2.292679 0.1121653 +58.85664 2.292679 0.1121653 +-0.0175068 3.081414 0.1121653 +-0.01161267 3.081414 0.1121653 +-0.005718534 3.081414 0.1121653 +0.0001755984 3.081414 0.1121653 +0.006069731 3.081414 0.1121653 +0.01197402 3.081414 0.1121653 +0.01903886 3.081414 0.1121653 +0.02852504 3.081414 0.1121653 +0.04126244 3.081414 0.1121653 +0.05836535 3.081414 0.1121653 +0.08132997 3.081414 0.1121653 +0.1121653 3.081414 0.1121653 +0.1535689 3.081414 0.1121653 +0.2091628 3.081414 0.1121653 +0.2838106 3.081414 0.1121653 +0.3840425 3.081414 0.1121653 +0.518627 3.081414 0.1121653 +0.6993381 3.081414 0.1121653 +0.9419845 3.081414 0.1121653 +1.267794 3.081414 0.1121653 +1.705268 3.081414 0.1121653 +2.292679 3.081414 0.1121653 +3.081414 3.081414 0.1121653 +4.140474 3.081414 0.1121653 +5.562508 3.081414 0.1121653 +7.471917 3.081414 0.1121653 +10.03574 3.081414 0.1121653 +13.47828 3.081414 0.1121653 +18.10068 3.081414 0.1121653 +24.30731 3.081414 0.1121653 +32.64117 3.081414 0.1121653 +43.83129 3.081414 0.1121653 +58.85664 3.081414 0.1121653 +-0.0175068 4.140474 0.1121653 +-0.01161267 4.140474 0.1121653 +-0.005718534 4.140474 0.1121653 +0.0001755984 4.140474 0.1121653 +0.006069731 4.140474 0.1121653 +0.01197402 4.140474 0.1121653 +0.01903886 4.140474 0.1121653 +0.02852504 4.140474 0.1121653 +0.04126244 4.140474 0.1121653 +0.05836535 4.140474 0.1121653 +0.08132997 4.140474 0.1121653 +0.1121653 4.140474 0.1121653 +0.1535689 4.140474 0.1121653 +0.2091628 4.140474 0.1121653 +0.2838106 4.140474 0.1121653 +0.3840425 4.140474 0.1121653 +0.518627 4.140474 0.1121653 +0.6993381 4.140474 0.1121653 +0.9419845 4.140474 0.1121653 +1.267794 4.140474 0.1121653 +1.705268 4.140474 0.1121653 +2.292679 4.140474 0.1121653 +3.081414 4.140474 0.1121653 +4.140474 4.140474 0.1121653 +5.562508 4.140474 0.1121653 +7.471917 4.140474 0.1121653 +10.03574 4.140474 0.1121653 +13.47828 4.140474 0.1121653 +18.10068 4.140474 0.1121653 +24.30731 4.140474 0.1121653 +32.64117 4.140474 0.1121653 +43.83129 4.140474 0.1121653 +58.85664 4.140474 0.1121653 +-0.0175068 5.562508 0.1121653 +-0.01161267 5.562508 0.1121653 +-0.005718534 5.562508 0.1121653 +0.0001755984 5.562508 0.1121653 +0.006069731 5.562508 0.1121653 +0.01197402 5.562508 0.1121653 +0.01903886 5.562508 0.1121653 +0.02852504 5.562508 0.1121653 +0.04126244 5.562508 0.1121653 +0.05836535 5.562508 0.1121653 +0.08132997 5.562508 0.1121653 +0.1121653 5.562508 0.1121653 +0.1535689 5.562508 0.1121653 +0.2091628 5.562508 0.1121653 +0.2838106 5.562508 0.1121653 +0.3840425 5.562508 0.1121653 +0.518627 5.562508 0.1121653 +0.6993381 5.562508 0.1121653 +0.9419845 5.562508 0.1121653 +1.267794 5.562508 0.1121653 +1.705268 5.562508 0.1121653 +2.292679 5.562508 0.1121653 +3.081414 5.562508 0.1121653 +4.140474 5.562508 0.1121653 +5.562508 5.562508 0.1121653 +7.471917 5.562508 0.1121653 +10.03574 5.562508 0.1121653 +13.47828 5.562508 0.1121653 +18.10068 5.562508 0.1121653 +24.30731 5.562508 0.1121653 +32.64117 5.562508 0.1121653 +43.83129 5.562508 0.1121653 +58.85664 5.562508 0.1121653 +-0.0175068 7.471917 0.1121653 +-0.01161267 7.471917 0.1121653 +-0.005718534 7.471917 0.1121653 +0.0001755984 7.471917 0.1121653 +0.006069731 7.471917 0.1121653 +0.01197402 7.471917 0.1121653 +0.01903886 7.471917 0.1121653 +0.02852504 7.471917 0.1121653 +0.04126244 7.471917 0.1121653 +0.05836535 7.471917 0.1121653 +0.08132997 7.471917 0.1121653 +0.1121653 7.471917 0.1121653 +0.1535689 7.471917 0.1121653 +0.2091628 7.471917 0.1121653 +0.2838106 7.471917 0.1121653 +0.3840425 7.471917 0.1121653 +0.518627 7.471917 0.1121653 +0.6993381 7.471917 0.1121653 +0.9419845 7.471917 0.1121653 +1.267794 7.471917 0.1121653 +1.705268 7.471917 0.1121653 +2.292679 7.471917 0.1121653 +3.081414 7.471917 0.1121653 +4.140474 7.471917 0.1121653 +5.562508 7.471917 0.1121653 +7.471917 7.471917 0.1121653 +10.03574 7.471917 0.1121653 +13.47828 7.471917 0.1121653 +18.10068 7.471917 0.1121653 +24.30731 7.471917 0.1121653 +32.64117 7.471917 0.1121653 +43.83129 7.471917 0.1121653 +58.85664 7.471917 0.1121653 +-0.0175068 10.03574 0.1121653 +-0.01161267 10.03574 0.1121653 +-0.005718534 10.03574 0.1121653 +0.0001755984 10.03574 0.1121653 +0.006069731 10.03574 0.1121653 +0.01197402 10.03574 0.1121653 +0.01903886 10.03574 0.1121653 +0.02852504 10.03574 0.1121653 +0.04126244 10.03574 0.1121653 +0.05836535 10.03574 0.1121653 +0.08132997 10.03574 0.1121653 +0.1121653 10.03574 0.1121653 +0.1535689 10.03574 0.1121653 +0.2091628 10.03574 0.1121653 +0.2838106 10.03574 0.1121653 +0.3840425 10.03574 0.1121653 +0.518627 10.03574 0.1121653 +0.6993381 10.03574 0.1121653 +0.9419845 10.03574 0.1121653 +1.267794 10.03574 0.1121653 +1.705268 10.03574 0.1121653 +2.292679 10.03574 0.1121653 +3.081414 10.03574 0.1121653 +4.140474 10.03574 0.1121653 +5.562508 10.03574 0.1121653 +7.471917 10.03574 0.1121653 +10.03574 10.03574 0.1121653 +13.47828 10.03574 0.1121653 +18.10068 10.03574 0.1121653 +24.30731 10.03574 0.1121653 +32.64117 10.03574 0.1121653 +43.83129 10.03574 0.1121653 +58.85664 10.03574 0.1121653 +-0.0175068 13.47828 0.1121653 +-0.01161267 13.47828 0.1121653 +-0.005718534 13.47828 0.1121653 +0.0001755984 13.47828 0.1121653 +0.006069731 13.47828 0.1121653 +0.01197402 13.47828 0.1121653 +0.01903886 13.47828 0.1121653 +0.02852504 13.47828 0.1121653 +0.04126244 13.47828 0.1121653 +0.05836535 13.47828 0.1121653 +0.08132997 13.47828 0.1121653 +0.1121653 13.47828 0.1121653 +0.1535689 13.47828 0.1121653 +0.2091628 13.47828 0.1121653 +0.2838106 13.47828 0.1121653 +0.3840425 13.47828 0.1121653 +0.518627 13.47828 0.1121653 +0.6993381 13.47828 0.1121653 +0.9419845 13.47828 0.1121653 +1.267794 13.47828 0.1121653 +1.705268 13.47828 0.1121653 +2.292679 13.47828 0.1121653 +3.081414 13.47828 0.1121653 +4.140474 13.47828 0.1121653 +5.562508 13.47828 0.1121653 +7.471917 13.47828 0.1121653 +10.03574 13.47828 0.1121653 +13.47828 13.47828 0.1121653 +18.10068 13.47828 0.1121653 +24.30731 13.47828 0.1121653 +32.64117 13.47828 0.1121653 +43.83129 13.47828 0.1121653 +58.85664 13.47828 0.1121653 +-0.0175068 18.10068 0.1121653 +-0.01161267 18.10068 0.1121653 +-0.005718534 18.10068 0.1121653 +0.0001755984 18.10068 0.1121653 +0.006069731 18.10068 0.1121653 +0.01197402 18.10068 0.1121653 +0.01903886 18.10068 0.1121653 +0.02852504 18.10068 0.1121653 +0.04126244 18.10068 0.1121653 +0.05836535 18.10068 0.1121653 +0.08132997 18.10068 0.1121653 +0.1121653 18.10068 0.1121653 +0.1535689 18.10068 0.1121653 +0.2091628 18.10068 0.1121653 +0.2838106 18.10068 0.1121653 +0.3840425 18.10068 0.1121653 +0.518627 18.10068 0.1121653 +0.6993381 18.10068 0.1121653 +0.9419845 18.10068 0.1121653 +1.267794 18.10068 0.1121653 +1.705268 18.10068 0.1121653 +2.292679 18.10068 0.1121653 +3.081414 18.10068 0.1121653 +4.140474 18.10068 0.1121653 +5.562508 18.10068 0.1121653 +7.471917 18.10068 0.1121653 +10.03574 18.10068 0.1121653 +13.47828 18.10068 0.1121653 +18.10068 18.10068 0.1121653 +24.30731 18.10068 0.1121653 +32.64117 18.10068 0.1121653 +43.83129 18.10068 0.1121653 +58.85664 18.10068 0.1121653 +-0.0175068 24.30731 0.1121653 +-0.01161267 24.30731 0.1121653 +-0.005718534 24.30731 0.1121653 +0.0001755984 24.30731 0.1121653 +0.006069731 24.30731 0.1121653 +0.01197402 24.30731 0.1121653 +0.01903886 24.30731 0.1121653 +0.02852504 24.30731 0.1121653 +0.04126244 24.30731 0.1121653 +0.05836535 24.30731 0.1121653 +0.08132997 24.30731 0.1121653 +0.1121653 24.30731 0.1121653 +0.1535689 24.30731 0.1121653 +0.2091628 24.30731 0.1121653 +0.2838106 24.30731 0.1121653 +0.3840425 24.30731 0.1121653 +0.518627 24.30731 0.1121653 +0.6993381 24.30731 0.1121653 +0.9419845 24.30731 0.1121653 +1.267794 24.30731 0.1121653 +1.705268 24.30731 0.1121653 +2.292679 24.30731 0.1121653 +3.081414 24.30731 0.1121653 +4.140474 24.30731 0.1121653 +5.562508 24.30731 0.1121653 +7.471917 24.30731 0.1121653 +10.03574 24.30731 0.1121653 +13.47828 24.30731 0.1121653 +18.10068 24.30731 0.1121653 +24.30731 24.30731 0.1121653 +32.64117 24.30731 0.1121653 +43.83129 24.30731 0.1121653 +58.85664 24.30731 0.1121653 +-0.0175068 32.64117 0.1121653 +-0.01161267 32.64117 0.1121653 +-0.005718534 32.64117 0.1121653 +0.0001755984 32.64117 0.1121653 +0.006069731 32.64117 0.1121653 +0.01197402 32.64117 0.1121653 +0.01903886 32.64117 0.1121653 +0.02852504 32.64117 0.1121653 +0.04126244 32.64117 0.1121653 +0.05836535 32.64117 0.1121653 +0.08132997 32.64117 0.1121653 +0.1121653 32.64117 0.1121653 +0.1535689 32.64117 0.1121653 +0.2091628 32.64117 0.1121653 +0.2838106 32.64117 0.1121653 +0.3840425 32.64117 0.1121653 +0.518627 32.64117 0.1121653 +0.6993381 32.64117 0.1121653 +0.9419845 32.64117 0.1121653 +1.267794 32.64117 0.1121653 +1.705268 32.64117 0.1121653 +2.292679 32.64117 0.1121653 +3.081414 32.64117 0.1121653 +4.140474 32.64117 0.1121653 +5.562508 32.64117 0.1121653 +7.471917 32.64117 0.1121653 +10.03574 32.64117 0.1121653 +13.47828 32.64117 0.1121653 +18.10068 32.64117 0.1121653 +24.30731 32.64117 0.1121653 +32.64117 32.64117 0.1121653 +43.83129 32.64117 0.1121653 +58.85664 32.64117 0.1121653 +-0.0175068 43.83129 0.1121653 +-0.01161267 43.83129 0.1121653 +-0.005718534 43.83129 0.1121653 +0.0001755984 43.83129 0.1121653 +0.006069731 43.83129 0.1121653 +0.01197402 43.83129 0.1121653 +0.01903886 43.83129 0.1121653 +0.02852504 43.83129 0.1121653 +0.04126244 43.83129 0.1121653 +0.05836535 43.83129 0.1121653 +0.08132997 43.83129 0.1121653 +0.1121653 43.83129 0.1121653 +0.1535689 43.83129 0.1121653 +0.2091628 43.83129 0.1121653 +0.2838106 43.83129 0.1121653 +0.3840425 43.83129 0.1121653 +0.518627 43.83129 0.1121653 +0.6993381 43.83129 0.1121653 +0.9419845 43.83129 0.1121653 +1.267794 43.83129 0.1121653 +1.705268 43.83129 0.1121653 +2.292679 43.83129 0.1121653 +3.081414 43.83129 0.1121653 +4.140474 43.83129 0.1121653 +5.562508 43.83129 0.1121653 +7.471917 43.83129 0.1121653 +10.03574 43.83129 0.1121653 +13.47828 43.83129 0.1121653 +18.10068 43.83129 0.1121653 +24.30731 43.83129 0.1121653 +32.64117 43.83129 0.1121653 +43.83129 43.83129 0.1121653 +58.85664 43.83129 0.1121653 +-0.0175068 58.85664 0.1121653 +-0.01161267 58.85664 0.1121653 +-0.005718534 58.85664 0.1121653 +0.0001755984 58.85664 0.1121653 +0.006069731 58.85664 0.1121653 +0.01197402 58.85664 0.1121653 +0.01903886 58.85664 0.1121653 +0.02852504 58.85664 0.1121653 +0.04126244 58.85664 0.1121653 +0.05836535 58.85664 0.1121653 +0.08132997 58.85664 0.1121653 +0.1121653 58.85664 0.1121653 +0.1535689 58.85664 0.1121653 +0.2091628 58.85664 0.1121653 +0.2838106 58.85664 0.1121653 +0.3840425 58.85664 0.1121653 +0.518627 58.85664 0.1121653 +0.6993381 58.85664 0.1121653 +0.9419845 58.85664 0.1121653 +1.267794 58.85664 0.1121653 +1.705268 58.85664 0.1121653 +2.292679 58.85664 0.1121653 +3.081414 58.85664 0.1121653 +4.140474 58.85664 0.1121653 +5.562508 58.85664 0.1121653 +7.471917 58.85664 0.1121653 +10.03574 58.85664 0.1121653 +13.47828 58.85664 0.1121653 +18.10068 58.85664 0.1121653 +24.30731 58.85664 0.1121653 +32.64117 58.85664 0.1121653 +43.83129 58.85664 0.1121653 +58.85664 58.85664 0.1121653 +-0.0175068 -0.0175068 0.1535689 +-0.01161267 -0.0175068 0.1535689 +-0.005718534 -0.0175068 0.1535689 +0.0001755984 -0.0175068 0.1535689 +0.006069731 -0.0175068 0.1535689 +0.01197402 -0.0175068 0.1535689 +0.01903886 -0.0175068 0.1535689 +0.02852504 -0.0175068 0.1535689 +0.04126244 -0.0175068 0.1535689 +0.05836535 -0.0175068 0.1535689 +0.08132997 -0.0175068 0.1535689 +0.1121653 -0.0175068 0.1535689 +0.1535689 -0.0175068 0.1535689 +0.2091628 -0.0175068 0.1535689 +0.2838106 -0.0175068 0.1535689 +0.3840425 -0.0175068 0.1535689 +0.518627 -0.0175068 0.1535689 +0.6993381 -0.0175068 0.1535689 +0.9419845 -0.0175068 0.1535689 +1.267794 -0.0175068 0.1535689 +1.705268 -0.0175068 0.1535689 +2.292679 -0.0175068 0.1535689 +3.081414 -0.0175068 0.1535689 +4.140474 -0.0175068 0.1535689 +5.562508 -0.0175068 0.1535689 +7.471917 -0.0175068 0.1535689 +10.03574 -0.0175068 0.1535689 +13.47828 -0.0175068 0.1535689 +18.10068 -0.0175068 0.1535689 +24.30731 -0.0175068 0.1535689 +32.64117 -0.0175068 0.1535689 +43.83129 -0.0175068 0.1535689 +58.85664 -0.0175068 0.1535689 +-0.0175068 -0.01161267 0.1535689 +-0.01161267 -0.01161267 0.1535689 +-0.005718534 -0.01161267 0.1535689 +0.0001755984 -0.01161267 0.1535689 +0.006069731 -0.01161267 0.1535689 +0.01197402 -0.01161267 0.1535689 +0.01903886 -0.01161267 0.1535689 +0.02852504 -0.01161267 0.1535689 +0.04126244 -0.01161267 0.1535689 +0.05836535 -0.01161267 0.1535689 +0.08132997 -0.01161267 0.1535689 +0.1121653 -0.01161267 0.1535689 +0.1535689 -0.01161267 0.1535689 +0.2091628 -0.01161267 0.1535689 +0.2838106 -0.01161267 0.1535689 +0.3840425 -0.01161267 0.1535689 +0.518627 -0.01161267 0.1535689 +0.6993381 -0.01161267 0.1535689 +0.9419845 -0.01161267 0.1535689 +1.267794 -0.01161267 0.1535689 +1.705268 -0.01161267 0.1535689 +2.292679 -0.01161267 0.1535689 +3.081414 -0.01161267 0.1535689 +4.140474 -0.01161267 0.1535689 +5.562508 -0.01161267 0.1535689 +7.471917 -0.01161267 0.1535689 +10.03574 -0.01161267 0.1535689 +13.47828 -0.01161267 0.1535689 +18.10068 -0.01161267 0.1535689 +24.30731 -0.01161267 0.1535689 +32.64117 -0.01161267 0.1535689 +43.83129 -0.01161267 0.1535689 +58.85664 -0.01161267 0.1535689 +-0.0175068 -0.005718534 0.1535689 +-0.01161267 -0.005718534 0.1535689 +-0.005718534 -0.005718534 0.1535689 +0.0001755984 -0.005718534 0.1535689 +0.006069731 -0.005718534 0.1535689 +0.01197402 -0.005718534 0.1535689 +0.01903886 -0.005718534 0.1535689 +0.02852504 -0.005718534 0.1535689 +0.04126244 -0.005718534 0.1535689 +0.05836535 -0.005718534 0.1535689 +0.08132997 -0.005718534 0.1535689 +0.1121653 -0.005718534 0.1535689 +0.1535689 -0.005718534 0.1535689 +0.2091628 -0.005718534 0.1535689 +0.2838106 -0.005718534 0.1535689 +0.3840425 -0.005718534 0.1535689 +0.518627 -0.005718534 0.1535689 +0.6993381 -0.005718534 0.1535689 +0.9419845 -0.005718534 0.1535689 +1.267794 -0.005718534 0.1535689 +1.705268 -0.005718534 0.1535689 +2.292679 -0.005718534 0.1535689 +3.081414 -0.005718534 0.1535689 +4.140474 -0.005718534 0.1535689 +5.562508 -0.005718534 0.1535689 +7.471917 -0.005718534 0.1535689 +10.03574 -0.005718534 0.1535689 +13.47828 -0.005718534 0.1535689 +18.10068 -0.005718534 0.1535689 +24.30731 -0.005718534 0.1535689 +32.64117 -0.005718534 0.1535689 +43.83129 -0.005718534 0.1535689 +58.85664 -0.005718534 0.1535689 +-0.0175068 0.0001755984 0.1535689 +-0.01161267 0.0001755984 0.1535689 +-0.005718534 0.0001755984 0.1535689 +0.0001755984 0.0001755984 0.1535689 +0.006069731 0.0001755984 0.1535689 +0.01197402 0.0001755984 0.1535689 +0.01903886 0.0001755984 0.1535689 +0.02852504 0.0001755984 0.1535689 +0.04126244 0.0001755984 0.1535689 +0.05836535 0.0001755984 0.1535689 +0.08132997 0.0001755984 0.1535689 +0.1121653 0.0001755984 0.1535689 +0.1535689 0.0001755984 0.1535689 +0.2091628 0.0001755984 0.1535689 +0.2838106 0.0001755984 0.1535689 +0.3840425 0.0001755984 0.1535689 +0.518627 0.0001755984 0.1535689 +0.6993381 0.0001755984 0.1535689 +0.9419845 0.0001755984 0.1535689 +1.267794 0.0001755984 0.1535689 +1.705268 0.0001755984 0.1535689 +2.292679 0.0001755984 0.1535689 +3.081414 0.0001755984 0.1535689 +4.140474 0.0001755984 0.1535689 +5.562508 0.0001755984 0.1535689 +7.471917 0.0001755984 0.1535689 +10.03574 0.0001755984 0.1535689 +13.47828 0.0001755984 0.1535689 +18.10068 0.0001755984 0.1535689 +24.30731 0.0001755984 0.1535689 +32.64117 0.0001755984 0.1535689 +43.83129 0.0001755984 0.1535689 +58.85664 0.0001755984 0.1535689 +-0.0175068 0.006069731 0.1535689 +-0.01161267 0.006069731 0.1535689 +-0.005718534 0.006069731 0.1535689 +0.0001755984 0.006069731 0.1535689 +0.006069731 0.006069731 0.1535689 +0.01197402 0.006069731 0.1535689 +0.01903886 0.006069731 0.1535689 +0.02852504 0.006069731 0.1535689 +0.04126244 0.006069731 0.1535689 +0.05836535 0.006069731 0.1535689 +0.08132997 0.006069731 0.1535689 +0.1121653 0.006069731 0.1535689 +0.1535689 0.006069731 0.1535689 +0.2091628 0.006069731 0.1535689 +0.2838106 0.006069731 0.1535689 +0.3840425 0.006069731 0.1535689 +0.518627 0.006069731 0.1535689 +0.6993381 0.006069731 0.1535689 +0.9419845 0.006069731 0.1535689 +1.267794 0.006069731 0.1535689 +1.705268 0.006069731 0.1535689 +2.292679 0.006069731 0.1535689 +3.081414 0.006069731 0.1535689 +4.140474 0.006069731 0.1535689 +5.562508 0.006069731 0.1535689 +7.471917 0.006069731 0.1535689 +10.03574 0.006069731 0.1535689 +13.47828 0.006069731 0.1535689 +18.10068 0.006069731 0.1535689 +24.30731 0.006069731 0.1535689 +32.64117 0.006069731 0.1535689 +43.83129 0.006069731 0.1535689 +58.85664 0.006069731 0.1535689 +-0.0175068 0.01197402 0.1535689 +-0.01161267 0.01197402 0.1535689 +-0.005718534 0.01197402 0.1535689 +0.0001755984 0.01197402 0.1535689 +0.006069731 0.01197402 0.1535689 +0.01197402 0.01197402 0.1535689 +0.01903886 0.01197402 0.1535689 +0.02852504 0.01197402 0.1535689 +0.04126244 0.01197402 0.1535689 +0.05836535 0.01197402 0.1535689 +0.08132997 0.01197402 0.1535689 +0.1121653 0.01197402 0.1535689 +0.1535689 0.01197402 0.1535689 +0.2091628 0.01197402 0.1535689 +0.2838106 0.01197402 0.1535689 +0.3840425 0.01197402 0.1535689 +0.518627 0.01197402 0.1535689 +0.6993381 0.01197402 0.1535689 +0.9419845 0.01197402 0.1535689 +1.267794 0.01197402 0.1535689 +1.705268 0.01197402 0.1535689 +2.292679 0.01197402 0.1535689 +3.081414 0.01197402 0.1535689 +4.140474 0.01197402 0.1535689 +5.562508 0.01197402 0.1535689 +7.471917 0.01197402 0.1535689 +10.03574 0.01197402 0.1535689 +13.47828 0.01197402 0.1535689 +18.10068 0.01197402 0.1535689 +24.30731 0.01197402 0.1535689 +32.64117 0.01197402 0.1535689 +43.83129 0.01197402 0.1535689 +58.85664 0.01197402 0.1535689 +-0.0175068 0.01903886 0.1535689 +-0.01161267 0.01903886 0.1535689 +-0.005718534 0.01903886 0.1535689 +0.0001755984 0.01903886 0.1535689 +0.006069731 0.01903886 0.1535689 +0.01197402 0.01903886 0.1535689 +0.01903886 0.01903886 0.1535689 +0.02852504 0.01903886 0.1535689 +0.04126244 0.01903886 0.1535689 +0.05836535 0.01903886 0.1535689 +0.08132997 0.01903886 0.1535689 +0.1121653 0.01903886 0.1535689 +0.1535689 0.01903886 0.1535689 +0.2091628 0.01903886 0.1535689 +0.2838106 0.01903886 0.1535689 +0.3840425 0.01903886 0.1535689 +0.518627 0.01903886 0.1535689 +0.6993381 0.01903886 0.1535689 +0.9419845 0.01903886 0.1535689 +1.267794 0.01903886 0.1535689 +1.705268 0.01903886 0.1535689 +2.292679 0.01903886 0.1535689 +3.081414 0.01903886 0.1535689 +4.140474 0.01903886 0.1535689 +5.562508 0.01903886 0.1535689 +7.471917 0.01903886 0.1535689 +10.03574 0.01903886 0.1535689 +13.47828 0.01903886 0.1535689 +18.10068 0.01903886 0.1535689 +24.30731 0.01903886 0.1535689 +32.64117 0.01903886 0.1535689 +43.83129 0.01903886 0.1535689 +58.85664 0.01903886 0.1535689 +-0.0175068 0.02852504 0.1535689 +-0.01161267 0.02852504 0.1535689 +-0.005718534 0.02852504 0.1535689 +0.0001755984 0.02852504 0.1535689 +0.006069731 0.02852504 0.1535689 +0.01197402 0.02852504 0.1535689 +0.01903886 0.02852504 0.1535689 +0.02852504 0.02852504 0.1535689 +0.04126244 0.02852504 0.1535689 +0.05836535 0.02852504 0.1535689 +0.08132997 0.02852504 0.1535689 +0.1121653 0.02852504 0.1535689 +0.1535689 0.02852504 0.1535689 +0.2091628 0.02852504 0.1535689 +0.2838106 0.02852504 0.1535689 +0.3840425 0.02852504 0.1535689 +0.518627 0.02852504 0.1535689 +0.6993381 0.02852504 0.1535689 +0.9419845 0.02852504 0.1535689 +1.267794 0.02852504 0.1535689 +1.705268 0.02852504 0.1535689 +2.292679 0.02852504 0.1535689 +3.081414 0.02852504 0.1535689 +4.140474 0.02852504 0.1535689 +5.562508 0.02852504 0.1535689 +7.471917 0.02852504 0.1535689 +10.03574 0.02852504 0.1535689 +13.47828 0.02852504 0.1535689 +18.10068 0.02852504 0.1535689 +24.30731 0.02852504 0.1535689 +32.64117 0.02852504 0.1535689 +43.83129 0.02852504 0.1535689 +58.85664 0.02852504 0.1535689 +-0.0175068 0.04126244 0.1535689 +-0.01161267 0.04126244 0.1535689 +-0.005718534 0.04126244 0.1535689 +0.0001755984 0.04126244 0.1535689 +0.006069731 0.04126244 0.1535689 +0.01197402 0.04126244 0.1535689 +0.01903886 0.04126244 0.1535689 +0.02852504 0.04126244 0.1535689 +0.04126244 0.04126244 0.1535689 +0.05836535 0.04126244 0.1535689 +0.08132997 0.04126244 0.1535689 +0.1121653 0.04126244 0.1535689 +0.1535689 0.04126244 0.1535689 +0.2091628 0.04126244 0.1535689 +0.2838106 0.04126244 0.1535689 +0.3840425 0.04126244 0.1535689 +0.518627 0.04126244 0.1535689 +0.6993381 0.04126244 0.1535689 +0.9419845 0.04126244 0.1535689 +1.267794 0.04126244 0.1535689 +1.705268 0.04126244 0.1535689 +2.292679 0.04126244 0.1535689 +3.081414 0.04126244 0.1535689 +4.140474 0.04126244 0.1535689 +5.562508 0.04126244 0.1535689 +7.471917 0.04126244 0.1535689 +10.03574 0.04126244 0.1535689 +13.47828 0.04126244 0.1535689 +18.10068 0.04126244 0.1535689 +24.30731 0.04126244 0.1535689 +32.64117 0.04126244 0.1535689 +43.83129 0.04126244 0.1535689 +58.85664 0.04126244 0.1535689 +-0.0175068 0.05836535 0.1535689 +-0.01161267 0.05836535 0.1535689 +-0.005718534 0.05836535 0.1535689 +0.0001755984 0.05836535 0.1535689 +0.006069731 0.05836535 0.1535689 +0.01197402 0.05836535 0.1535689 +0.01903886 0.05836535 0.1535689 +0.02852504 0.05836535 0.1535689 +0.04126244 0.05836535 0.1535689 +0.05836535 0.05836535 0.1535689 +0.08132997 0.05836535 0.1535689 +0.1121653 0.05836535 0.1535689 +0.1535689 0.05836535 0.1535689 +0.2091628 0.05836535 0.1535689 +0.2838106 0.05836535 0.1535689 +0.3840425 0.05836535 0.1535689 +0.518627 0.05836535 0.1535689 +0.6993381 0.05836535 0.1535689 +0.9419845 0.05836535 0.1535689 +1.267794 0.05836535 0.1535689 +1.705268 0.05836535 0.1535689 +2.292679 0.05836535 0.1535689 +3.081414 0.05836535 0.1535689 +4.140474 0.05836535 0.1535689 +5.562508 0.05836535 0.1535689 +7.471917 0.05836535 0.1535689 +10.03574 0.05836535 0.1535689 +13.47828 0.05836535 0.1535689 +18.10068 0.05836535 0.1535689 +24.30731 0.05836535 0.1535689 +32.64117 0.05836535 0.1535689 +43.83129 0.05836535 0.1535689 +58.85664 0.05836535 0.1535689 +-0.0175068 0.08132997 0.1535689 +-0.01161267 0.08132997 0.1535689 +-0.005718534 0.08132997 0.1535689 +0.0001755984 0.08132997 0.1535689 +0.006069731 0.08132997 0.1535689 +0.01197402 0.08132997 0.1535689 +0.01903886 0.08132997 0.1535689 +0.02852504 0.08132997 0.1535689 +0.04126244 0.08132997 0.1535689 +0.05836535 0.08132997 0.1535689 +0.08132997 0.08132997 0.1535689 +0.1121653 0.08132997 0.1535689 +0.1535689 0.08132997 0.1535689 +0.2091628 0.08132997 0.1535689 +0.2838106 0.08132997 0.1535689 +0.3840425 0.08132997 0.1535689 +0.518627 0.08132997 0.1535689 +0.6993381 0.08132997 0.1535689 +0.9419845 0.08132997 0.1535689 +1.267794 0.08132997 0.1535689 +1.705268 0.08132997 0.1535689 +2.292679 0.08132997 0.1535689 +3.081414 0.08132997 0.1535689 +4.140474 0.08132997 0.1535689 +5.562508 0.08132997 0.1535689 +7.471917 0.08132997 0.1535689 +10.03574 0.08132997 0.1535689 +13.47828 0.08132997 0.1535689 +18.10068 0.08132997 0.1535689 +24.30731 0.08132997 0.1535689 +32.64117 0.08132997 0.1535689 +43.83129 0.08132997 0.1535689 +58.85664 0.08132997 0.1535689 +-0.0175068 0.1121653 0.1535689 +-0.01161267 0.1121653 0.1535689 +-0.005718534 0.1121653 0.1535689 +0.0001755984 0.1121653 0.1535689 +0.006069731 0.1121653 0.1535689 +0.01197402 0.1121653 0.1535689 +0.01903886 0.1121653 0.1535689 +0.02852504 0.1121653 0.1535689 +0.04126244 0.1121653 0.1535689 +0.05836535 0.1121653 0.1535689 +0.08132997 0.1121653 0.1535689 +0.1121653 0.1121653 0.1535689 +0.1535689 0.1121653 0.1535689 +0.2091628 0.1121653 0.1535689 +0.2838106 0.1121653 0.1535689 +0.3840425 0.1121653 0.1535689 +0.518627 0.1121653 0.1535689 +0.6993381 0.1121653 0.1535689 +0.9419845 0.1121653 0.1535689 +1.267794 0.1121653 0.1535689 +1.705268 0.1121653 0.1535689 +2.292679 0.1121653 0.1535689 +3.081414 0.1121653 0.1535689 +4.140474 0.1121653 0.1535689 +5.562508 0.1121653 0.1535689 +7.471917 0.1121653 0.1535689 +10.03574 0.1121653 0.1535689 +13.47828 0.1121653 0.1535689 +18.10068 0.1121653 0.1535689 +24.30731 0.1121653 0.1535689 +32.64117 0.1121653 0.1535689 +43.83129 0.1121653 0.1535689 +58.85664 0.1121653 0.1535689 +-0.0175068 0.1535689 0.1535689 +-0.01161267 0.1535689 0.1535689 +-0.005718534 0.1535689 0.1535689 +0.0001755984 0.1535689 0.1535689 +0.006069731 0.1535689 0.1535689 +0.01197402 0.1535689 0.1535689 +0.01903886 0.1535689 0.1535689 +0.02852504 0.1535689 0.1535689 +0.04126244 0.1535689 0.1535689 +0.05836535 0.1535689 0.1535689 +0.08132997 0.1535689 0.1535689 +0.1121653 0.1535689 0.1535689 +0.1535689 0.1535689 0.1535689 +0.2091628 0.1535689 0.1535689 +0.2838106 0.1535689 0.1535689 +0.3840425 0.1535689 0.1535689 +0.518627 0.1535689 0.1535689 +0.6993381 0.1535689 0.1535689 +0.9419845 0.1535689 0.1535689 +1.267794 0.1535689 0.1535689 +1.705268 0.1535689 0.1535689 +2.292679 0.1535689 0.1535689 +3.081414 0.1535689 0.1535689 +4.140474 0.1535689 0.1535689 +5.562508 0.1535689 0.1535689 +7.471917 0.1535689 0.1535689 +10.03574 0.1535689 0.1535689 +13.47828 0.1535689 0.1535689 +18.10068 0.1535689 0.1535689 +24.30731 0.1535689 0.1535689 +32.64117 0.1535689 0.1535689 +43.83129 0.1535689 0.1535689 +58.85664 0.1535689 0.1535689 +-0.0175068 0.2091628 0.1535689 +-0.01161267 0.2091628 0.1535689 +-0.005718534 0.2091628 0.1535689 +0.0001755984 0.2091628 0.1535689 +0.006069731 0.2091628 0.1535689 +0.01197402 0.2091628 0.1535689 +0.01903886 0.2091628 0.1535689 +0.02852504 0.2091628 0.1535689 +0.04126244 0.2091628 0.1535689 +0.05836535 0.2091628 0.1535689 +0.08132997 0.2091628 0.1535689 +0.1121653 0.2091628 0.1535689 +0.1535689 0.2091628 0.1535689 +0.2091628 0.2091628 0.1535689 +0.2838106 0.2091628 0.1535689 +0.3840425 0.2091628 0.1535689 +0.518627 0.2091628 0.1535689 +0.6993381 0.2091628 0.1535689 +0.9419845 0.2091628 0.1535689 +1.267794 0.2091628 0.1535689 +1.705268 0.2091628 0.1535689 +2.292679 0.2091628 0.1535689 +3.081414 0.2091628 0.1535689 +4.140474 0.2091628 0.1535689 +5.562508 0.2091628 0.1535689 +7.471917 0.2091628 0.1535689 +10.03574 0.2091628 0.1535689 +13.47828 0.2091628 0.1535689 +18.10068 0.2091628 0.1535689 +24.30731 0.2091628 0.1535689 +32.64117 0.2091628 0.1535689 +43.83129 0.2091628 0.1535689 +58.85664 0.2091628 0.1535689 +-0.0175068 0.2838106 0.1535689 +-0.01161267 0.2838106 0.1535689 +-0.005718534 0.2838106 0.1535689 +0.0001755984 0.2838106 0.1535689 +0.006069731 0.2838106 0.1535689 +0.01197402 0.2838106 0.1535689 +0.01903886 0.2838106 0.1535689 +0.02852504 0.2838106 0.1535689 +0.04126244 0.2838106 0.1535689 +0.05836535 0.2838106 0.1535689 +0.08132997 0.2838106 0.1535689 +0.1121653 0.2838106 0.1535689 +0.1535689 0.2838106 0.1535689 +0.2091628 0.2838106 0.1535689 +0.2838106 0.2838106 0.1535689 +0.3840425 0.2838106 0.1535689 +0.518627 0.2838106 0.1535689 +0.6993381 0.2838106 0.1535689 +0.9419845 0.2838106 0.1535689 +1.267794 0.2838106 0.1535689 +1.705268 0.2838106 0.1535689 +2.292679 0.2838106 0.1535689 +3.081414 0.2838106 0.1535689 +4.140474 0.2838106 0.1535689 +5.562508 0.2838106 0.1535689 +7.471917 0.2838106 0.1535689 +10.03574 0.2838106 0.1535689 +13.47828 0.2838106 0.1535689 +18.10068 0.2838106 0.1535689 +24.30731 0.2838106 0.1535689 +32.64117 0.2838106 0.1535689 +43.83129 0.2838106 0.1535689 +58.85664 0.2838106 0.1535689 +-0.0175068 0.3840425 0.1535689 +-0.01161267 0.3840425 0.1535689 +-0.005718534 0.3840425 0.1535689 +0.0001755984 0.3840425 0.1535689 +0.006069731 0.3840425 0.1535689 +0.01197402 0.3840425 0.1535689 +0.01903886 0.3840425 0.1535689 +0.02852504 0.3840425 0.1535689 +0.04126244 0.3840425 0.1535689 +0.05836535 0.3840425 0.1535689 +0.08132997 0.3840425 0.1535689 +0.1121653 0.3840425 0.1535689 +0.1535689 0.3840425 0.1535689 +0.2091628 0.3840425 0.1535689 +0.2838106 0.3840425 0.1535689 +0.3840425 0.3840425 0.1535689 +0.518627 0.3840425 0.1535689 +0.6993381 0.3840425 0.1535689 +0.9419845 0.3840425 0.1535689 +1.267794 0.3840425 0.1535689 +1.705268 0.3840425 0.1535689 +2.292679 0.3840425 0.1535689 +3.081414 0.3840425 0.1535689 +4.140474 0.3840425 0.1535689 +5.562508 0.3840425 0.1535689 +7.471917 0.3840425 0.1535689 +10.03574 0.3840425 0.1535689 +13.47828 0.3840425 0.1535689 +18.10068 0.3840425 0.1535689 +24.30731 0.3840425 0.1535689 +32.64117 0.3840425 0.1535689 +43.83129 0.3840425 0.1535689 +58.85664 0.3840425 0.1535689 +-0.0175068 0.518627 0.1535689 +-0.01161267 0.518627 0.1535689 +-0.005718534 0.518627 0.1535689 +0.0001755984 0.518627 0.1535689 +0.006069731 0.518627 0.1535689 +0.01197402 0.518627 0.1535689 +0.01903886 0.518627 0.1535689 +0.02852504 0.518627 0.1535689 +0.04126244 0.518627 0.1535689 +0.05836535 0.518627 0.1535689 +0.08132997 0.518627 0.1535689 +0.1121653 0.518627 0.1535689 +0.1535689 0.518627 0.1535689 +0.2091628 0.518627 0.1535689 +0.2838106 0.518627 0.1535689 +0.3840425 0.518627 0.1535689 +0.518627 0.518627 0.1535689 +0.6993381 0.518627 0.1535689 +0.9419845 0.518627 0.1535689 +1.267794 0.518627 0.1535689 +1.705268 0.518627 0.1535689 +2.292679 0.518627 0.1535689 +3.081414 0.518627 0.1535689 +4.140474 0.518627 0.1535689 +5.562508 0.518627 0.1535689 +7.471917 0.518627 0.1535689 +10.03574 0.518627 0.1535689 +13.47828 0.518627 0.1535689 +18.10068 0.518627 0.1535689 +24.30731 0.518627 0.1535689 +32.64117 0.518627 0.1535689 +43.83129 0.518627 0.1535689 +58.85664 0.518627 0.1535689 +-0.0175068 0.6993381 0.1535689 +-0.01161267 0.6993381 0.1535689 +-0.005718534 0.6993381 0.1535689 +0.0001755984 0.6993381 0.1535689 +0.006069731 0.6993381 0.1535689 +0.01197402 0.6993381 0.1535689 +0.01903886 0.6993381 0.1535689 +0.02852504 0.6993381 0.1535689 +0.04126244 0.6993381 0.1535689 +0.05836535 0.6993381 0.1535689 +0.08132997 0.6993381 0.1535689 +0.1121653 0.6993381 0.1535689 +0.1535689 0.6993381 0.1535689 +0.2091628 0.6993381 0.1535689 +0.2838106 0.6993381 0.1535689 +0.3840425 0.6993381 0.1535689 +0.518627 0.6993381 0.1535689 +0.6993381 0.6993381 0.1535689 +0.9419845 0.6993381 0.1535689 +1.267794 0.6993381 0.1535689 +1.705268 0.6993381 0.1535689 +2.292679 0.6993381 0.1535689 +3.081414 0.6993381 0.1535689 +4.140474 0.6993381 0.1535689 +5.562508 0.6993381 0.1535689 +7.471917 0.6993381 0.1535689 +10.03574 0.6993381 0.1535689 +13.47828 0.6993381 0.1535689 +18.10068 0.6993381 0.1535689 +24.30731 0.6993381 0.1535689 +32.64117 0.6993381 0.1535689 +43.83129 0.6993381 0.1535689 +58.85664 0.6993381 0.1535689 +-0.0175068 0.9419845 0.1535689 +-0.01161267 0.9419845 0.1535689 +-0.005718534 0.9419845 0.1535689 +0.0001755984 0.9419845 0.1535689 +0.006069731 0.9419845 0.1535689 +0.01197402 0.9419845 0.1535689 +0.01903886 0.9419845 0.1535689 +0.02852504 0.9419845 0.1535689 +0.04126244 0.9419845 0.1535689 +0.05836535 0.9419845 0.1535689 +0.08132997 0.9419845 0.1535689 +0.1121653 0.9419845 0.1535689 +0.1535689 0.9419845 0.1535689 +0.2091628 0.9419845 0.1535689 +0.2838106 0.9419845 0.1535689 +0.3840425 0.9419845 0.1535689 +0.518627 0.9419845 0.1535689 +0.6993381 0.9419845 0.1535689 +0.9419845 0.9419845 0.1535689 +1.267794 0.9419845 0.1535689 +1.705268 0.9419845 0.1535689 +2.292679 0.9419845 0.1535689 +3.081414 0.9419845 0.1535689 +4.140474 0.9419845 0.1535689 +5.562508 0.9419845 0.1535689 +7.471917 0.9419845 0.1535689 +10.03574 0.9419845 0.1535689 +13.47828 0.9419845 0.1535689 +18.10068 0.9419845 0.1535689 +24.30731 0.9419845 0.1535689 +32.64117 0.9419845 0.1535689 +43.83129 0.9419845 0.1535689 +58.85664 0.9419845 0.1535689 +-0.0175068 1.267794 0.1535689 +-0.01161267 1.267794 0.1535689 +-0.005718534 1.267794 0.1535689 +0.0001755984 1.267794 0.1535689 +0.006069731 1.267794 0.1535689 +0.01197402 1.267794 0.1535689 +0.01903886 1.267794 0.1535689 +0.02852504 1.267794 0.1535689 +0.04126244 1.267794 0.1535689 +0.05836535 1.267794 0.1535689 +0.08132997 1.267794 0.1535689 +0.1121653 1.267794 0.1535689 +0.1535689 1.267794 0.1535689 +0.2091628 1.267794 0.1535689 +0.2838106 1.267794 0.1535689 +0.3840425 1.267794 0.1535689 +0.518627 1.267794 0.1535689 +0.6993381 1.267794 0.1535689 +0.9419845 1.267794 0.1535689 +1.267794 1.267794 0.1535689 +1.705268 1.267794 0.1535689 +2.292679 1.267794 0.1535689 +3.081414 1.267794 0.1535689 +4.140474 1.267794 0.1535689 +5.562508 1.267794 0.1535689 +7.471917 1.267794 0.1535689 +10.03574 1.267794 0.1535689 +13.47828 1.267794 0.1535689 +18.10068 1.267794 0.1535689 +24.30731 1.267794 0.1535689 +32.64117 1.267794 0.1535689 +43.83129 1.267794 0.1535689 +58.85664 1.267794 0.1535689 +-0.0175068 1.705268 0.1535689 +-0.01161267 1.705268 0.1535689 +-0.005718534 1.705268 0.1535689 +0.0001755984 1.705268 0.1535689 +0.006069731 1.705268 0.1535689 +0.01197402 1.705268 0.1535689 +0.01903886 1.705268 0.1535689 +0.02852504 1.705268 0.1535689 +0.04126244 1.705268 0.1535689 +0.05836535 1.705268 0.1535689 +0.08132997 1.705268 0.1535689 +0.1121653 1.705268 0.1535689 +0.1535689 1.705268 0.1535689 +0.2091628 1.705268 0.1535689 +0.2838106 1.705268 0.1535689 +0.3840425 1.705268 0.1535689 +0.518627 1.705268 0.1535689 +0.6993381 1.705268 0.1535689 +0.9419845 1.705268 0.1535689 +1.267794 1.705268 0.1535689 +1.705268 1.705268 0.1535689 +2.292679 1.705268 0.1535689 +3.081414 1.705268 0.1535689 +4.140474 1.705268 0.1535689 +5.562508 1.705268 0.1535689 +7.471917 1.705268 0.1535689 +10.03574 1.705268 0.1535689 +13.47828 1.705268 0.1535689 +18.10068 1.705268 0.1535689 +24.30731 1.705268 0.1535689 +32.64117 1.705268 0.1535689 +43.83129 1.705268 0.1535689 +58.85664 1.705268 0.1535689 +-0.0175068 2.292679 0.1535689 +-0.01161267 2.292679 0.1535689 +-0.005718534 2.292679 0.1535689 +0.0001755984 2.292679 0.1535689 +0.006069731 2.292679 0.1535689 +0.01197402 2.292679 0.1535689 +0.01903886 2.292679 0.1535689 +0.02852504 2.292679 0.1535689 +0.04126244 2.292679 0.1535689 +0.05836535 2.292679 0.1535689 +0.08132997 2.292679 0.1535689 +0.1121653 2.292679 0.1535689 +0.1535689 2.292679 0.1535689 +0.2091628 2.292679 0.1535689 +0.2838106 2.292679 0.1535689 +0.3840425 2.292679 0.1535689 +0.518627 2.292679 0.1535689 +0.6993381 2.292679 0.1535689 +0.9419845 2.292679 0.1535689 +1.267794 2.292679 0.1535689 +1.705268 2.292679 0.1535689 +2.292679 2.292679 0.1535689 +3.081414 2.292679 0.1535689 +4.140474 2.292679 0.1535689 +5.562508 2.292679 0.1535689 +7.471917 2.292679 0.1535689 +10.03574 2.292679 0.1535689 +13.47828 2.292679 0.1535689 +18.10068 2.292679 0.1535689 +24.30731 2.292679 0.1535689 +32.64117 2.292679 0.1535689 +43.83129 2.292679 0.1535689 +58.85664 2.292679 0.1535689 +-0.0175068 3.081414 0.1535689 +-0.01161267 3.081414 0.1535689 +-0.005718534 3.081414 0.1535689 +0.0001755984 3.081414 0.1535689 +0.006069731 3.081414 0.1535689 +0.01197402 3.081414 0.1535689 +0.01903886 3.081414 0.1535689 +0.02852504 3.081414 0.1535689 +0.04126244 3.081414 0.1535689 +0.05836535 3.081414 0.1535689 +0.08132997 3.081414 0.1535689 +0.1121653 3.081414 0.1535689 +0.1535689 3.081414 0.1535689 +0.2091628 3.081414 0.1535689 +0.2838106 3.081414 0.1535689 +0.3840425 3.081414 0.1535689 +0.518627 3.081414 0.1535689 +0.6993381 3.081414 0.1535689 +0.9419845 3.081414 0.1535689 +1.267794 3.081414 0.1535689 +1.705268 3.081414 0.1535689 +2.292679 3.081414 0.1535689 +3.081414 3.081414 0.1535689 +4.140474 3.081414 0.1535689 +5.562508 3.081414 0.1535689 +7.471917 3.081414 0.1535689 +10.03574 3.081414 0.1535689 +13.47828 3.081414 0.1535689 +18.10068 3.081414 0.1535689 +24.30731 3.081414 0.1535689 +32.64117 3.081414 0.1535689 +43.83129 3.081414 0.1535689 +58.85664 3.081414 0.1535689 +-0.0175068 4.140474 0.1535689 +-0.01161267 4.140474 0.1535689 +-0.005718534 4.140474 0.1535689 +0.0001755984 4.140474 0.1535689 +0.006069731 4.140474 0.1535689 +0.01197402 4.140474 0.1535689 +0.01903886 4.140474 0.1535689 +0.02852504 4.140474 0.1535689 +0.04126244 4.140474 0.1535689 +0.05836535 4.140474 0.1535689 +0.08132997 4.140474 0.1535689 +0.1121653 4.140474 0.1535689 +0.1535689 4.140474 0.1535689 +0.2091628 4.140474 0.1535689 +0.2838106 4.140474 0.1535689 +0.3840425 4.140474 0.1535689 +0.518627 4.140474 0.1535689 +0.6993381 4.140474 0.1535689 +0.9419845 4.140474 0.1535689 +1.267794 4.140474 0.1535689 +1.705268 4.140474 0.1535689 +2.292679 4.140474 0.1535689 +3.081414 4.140474 0.1535689 +4.140474 4.140474 0.1535689 +5.562508 4.140474 0.1535689 +7.471917 4.140474 0.1535689 +10.03574 4.140474 0.1535689 +13.47828 4.140474 0.1535689 +18.10068 4.140474 0.1535689 +24.30731 4.140474 0.1535689 +32.64117 4.140474 0.1535689 +43.83129 4.140474 0.1535689 +58.85664 4.140474 0.1535689 +-0.0175068 5.562508 0.1535689 +-0.01161267 5.562508 0.1535689 +-0.005718534 5.562508 0.1535689 +0.0001755984 5.562508 0.1535689 +0.006069731 5.562508 0.1535689 +0.01197402 5.562508 0.1535689 +0.01903886 5.562508 0.1535689 +0.02852504 5.562508 0.1535689 +0.04126244 5.562508 0.1535689 +0.05836535 5.562508 0.1535689 +0.08132997 5.562508 0.1535689 +0.1121653 5.562508 0.1535689 +0.1535689 5.562508 0.1535689 +0.2091628 5.562508 0.1535689 +0.2838106 5.562508 0.1535689 +0.3840425 5.562508 0.1535689 +0.518627 5.562508 0.1535689 +0.6993381 5.562508 0.1535689 +0.9419845 5.562508 0.1535689 +1.267794 5.562508 0.1535689 +1.705268 5.562508 0.1535689 +2.292679 5.562508 0.1535689 +3.081414 5.562508 0.1535689 +4.140474 5.562508 0.1535689 +5.562508 5.562508 0.1535689 +7.471917 5.562508 0.1535689 +10.03574 5.562508 0.1535689 +13.47828 5.562508 0.1535689 +18.10068 5.562508 0.1535689 +24.30731 5.562508 0.1535689 +32.64117 5.562508 0.1535689 +43.83129 5.562508 0.1535689 +58.85664 5.562508 0.1535689 +-0.0175068 7.471917 0.1535689 +-0.01161267 7.471917 0.1535689 +-0.005718534 7.471917 0.1535689 +0.0001755984 7.471917 0.1535689 +0.006069731 7.471917 0.1535689 +0.01197402 7.471917 0.1535689 +0.01903886 7.471917 0.1535689 +0.02852504 7.471917 0.1535689 +0.04126244 7.471917 0.1535689 +0.05836535 7.471917 0.1535689 +0.08132997 7.471917 0.1535689 +0.1121653 7.471917 0.1535689 +0.1535689 7.471917 0.1535689 +0.2091628 7.471917 0.1535689 +0.2838106 7.471917 0.1535689 +0.3840425 7.471917 0.1535689 +0.518627 7.471917 0.1535689 +0.6993381 7.471917 0.1535689 +0.9419845 7.471917 0.1535689 +1.267794 7.471917 0.1535689 +1.705268 7.471917 0.1535689 +2.292679 7.471917 0.1535689 +3.081414 7.471917 0.1535689 +4.140474 7.471917 0.1535689 +5.562508 7.471917 0.1535689 +7.471917 7.471917 0.1535689 +10.03574 7.471917 0.1535689 +13.47828 7.471917 0.1535689 +18.10068 7.471917 0.1535689 +24.30731 7.471917 0.1535689 +32.64117 7.471917 0.1535689 +43.83129 7.471917 0.1535689 +58.85664 7.471917 0.1535689 +-0.0175068 10.03574 0.1535689 +-0.01161267 10.03574 0.1535689 +-0.005718534 10.03574 0.1535689 +0.0001755984 10.03574 0.1535689 +0.006069731 10.03574 0.1535689 +0.01197402 10.03574 0.1535689 +0.01903886 10.03574 0.1535689 +0.02852504 10.03574 0.1535689 +0.04126244 10.03574 0.1535689 +0.05836535 10.03574 0.1535689 +0.08132997 10.03574 0.1535689 +0.1121653 10.03574 0.1535689 +0.1535689 10.03574 0.1535689 +0.2091628 10.03574 0.1535689 +0.2838106 10.03574 0.1535689 +0.3840425 10.03574 0.1535689 +0.518627 10.03574 0.1535689 +0.6993381 10.03574 0.1535689 +0.9419845 10.03574 0.1535689 +1.267794 10.03574 0.1535689 +1.705268 10.03574 0.1535689 +2.292679 10.03574 0.1535689 +3.081414 10.03574 0.1535689 +4.140474 10.03574 0.1535689 +5.562508 10.03574 0.1535689 +7.471917 10.03574 0.1535689 +10.03574 10.03574 0.1535689 +13.47828 10.03574 0.1535689 +18.10068 10.03574 0.1535689 +24.30731 10.03574 0.1535689 +32.64117 10.03574 0.1535689 +43.83129 10.03574 0.1535689 +58.85664 10.03574 0.1535689 +-0.0175068 13.47828 0.1535689 +-0.01161267 13.47828 0.1535689 +-0.005718534 13.47828 0.1535689 +0.0001755984 13.47828 0.1535689 +0.006069731 13.47828 0.1535689 +0.01197402 13.47828 0.1535689 +0.01903886 13.47828 0.1535689 +0.02852504 13.47828 0.1535689 +0.04126244 13.47828 0.1535689 +0.05836535 13.47828 0.1535689 +0.08132997 13.47828 0.1535689 +0.1121653 13.47828 0.1535689 +0.1535689 13.47828 0.1535689 +0.2091628 13.47828 0.1535689 +0.2838106 13.47828 0.1535689 +0.3840425 13.47828 0.1535689 +0.518627 13.47828 0.1535689 +0.6993381 13.47828 0.1535689 +0.9419845 13.47828 0.1535689 +1.267794 13.47828 0.1535689 +1.705268 13.47828 0.1535689 +2.292679 13.47828 0.1535689 +3.081414 13.47828 0.1535689 +4.140474 13.47828 0.1535689 +5.562508 13.47828 0.1535689 +7.471917 13.47828 0.1535689 +10.03574 13.47828 0.1535689 +13.47828 13.47828 0.1535689 +18.10068 13.47828 0.1535689 +24.30731 13.47828 0.1535689 +32.64117 13.47828 0.1535689 +43.83129 13.47828 0.1535689 +58.85664 13.47828 0.1535689 +-0.0175068 18.10068 0.1535689 +-0.01161267 18.10068 0.1535689 +-0.005718534 18.10068 0.1535689 +0.0001755984 18.10068 0.1535689 +0.006069731 18.10068 0.1535689 +0.01197402 18.10068 0.1535689 +0.01903886 18.10068 0.1535689 +0.02852504 18.10068 0.1535689 +0.04126244 18.10068 0.1535689 +0.05836535 18.10068 0.1535689 +0.08132997 18.10068 0.1535689 +0.1121653 18.10068 0.1535689 +0.1535689 18.10068 0.1535689 +0.2091628 18.10068 0.1535689 +0.2838106 18.10068 0.1535689 +0.3840425 18.10068 0.1535689 +0.518627 18.10068 0.1535689 +0.6993381 18.10068 0.1535689 +0.9419845 18.10068 0.1535689 +1.267794 18.10068 0.1535689 +1.705268 18.10068 0.1535689 +2.292679 18.10068 0.1535689 +3.081414 18.10068 0.1535689 +4.140474 18.10068 0.1535689 +5.562508 18.10068 0.1535689 +7.471917 18.10068 0.1535689 +10.03574 18.10068 0.1535689 +13.47828 18.10068 0.1535689 +18.10068 18.10068 0.1535689 +24.30731 18.10068 0.1535689 +32.64117 18.10068 0.1535689 +43.83129 18.10068 0.1535689 +58.85664 18.10068 0.1535689 +-0.0175068 24.30731 0.1535689 +-0.01161267 24.30731 0.1535689 +-0.005718534 24.30731 0.1535689 +0.0001755984 24.30731 0.1535689 +0.006069731 24.30731 0.1535689 +0.01197402 24.30731 0.1535689 +0.01903886 24.30731 0.1535689 +0.02852504 24.30731 0.1535689 +0.04126244 24.30731 0.1535689 +0.05836535 24.30731 0.1535689 +0.08132997 24.30731 0.1535689 +0.1121653 24.30731 0.1535689 +0.1535689 24.30731 0.1535689 +0.2091628 24.30731 0.1535689 +0.2838106 24.30731 0.1535689 +0.3840425 24.30731 0.1535689 +0.518627 24.30731 0.1535689 +0.6993381 24.30731 0.1535689 +0.9419845 24.30731 0.1535689 +1.267794 24.30731 0.1535689 +1.705268 24.30731 0.1535689 +2.292679 24.30731 0.1535689 +3.081414 24.30731 0.1535689 +4.140474 24.30731 0.1535689 +5.562508 24.30731 0.1535689 +7.471917 24.30731 0.1535689 +10.03574 24.30731 0.1535689 +13.47828 24.30731 0.1535689 +18.10068 24.30731 0.1535689 +24.30731 24.30731 0.1535689 +32.64117 24.30731 0.1535689 +43.83129 24.30731 0.1535689 +58.85664 24.30731 0.1535689 +-0.0175068 32.64117 0.1535689 +-0.01161267 32.64117 0.1535689 +-0.005718534 32.64117 0.1535689 +0.0001755984 32.64117 0.1535689 +0.006069731 32.64117 0.1535689 +0.01197402 32.64117 0.1535689 +0.01903886 32.64117 0.1535689 +0.02852504 32.64117 0.1535689 +0.04126244 32.64117 0.1535689 +0.05836535 32.64117 0.1535689 +0.08132997 32.64117 0.1535689 +0.1121653 32.64117 0.1535689 +0.1535689 32.64117 0.1535689 +0.2091628 32.64117 0.1535689 +0.2838106 32.64117 0.1535689 +0.3840425 32.64117 0.1535689 +0.518627 32.64117 0.1535689 +0.6993381 32.64117 0.1535689 +0.9419845 32.64117 0.1535689 +1.267794 32.64117 0.1535689 +1.705268 32.64117 0.1535689 +2.292679 32.64117 0.1535689 +3.081414 32.64117 0.1535689 +4.140474 32.64117 0.1535689 +5.562508 32.64117 0.1535689 +7.471917 32.64117 0.1535689 +10.03574 32.64117 0.1535689 +13.47828 32.64117 0.1535689 +18.10068 32.64117 0.1535689 +24.30731 32.64117 0.1535689 +32.64117 32.64117 0.1535689 +43.83129 32.64117 0.1535689 +58.85664 32.64117 0.1535689 +-0.0175068 43.83129 0.1535689 +-0.01161267 43.83129 0.1535689 +-0.005718534 43.83129 0.1535689 +0.0001755984 43.83129 0.1535689 +0.006069731 43.83129 0.1535689 +0.01197402 43.83129 0.1535689 +0.01903886 43.83129 0.1535689 +0.02852504 43.83129 0.1535689 +0.04126244 43.83129 0.1535689 +0.05836535 43.83129 0.1535689 +0.08132997 43.83129 0.1535689 +0.1121653 43.83129 0.1535689 +0.1535689 43.83129 0.1535689 +0.2091628 43.83129 0.1535689 +0.2838106 43.83129 0.1535689 +0.3840425 43.83129 0.1535689 +0.518627 43.83129 0.1535689 +0.6993381 43.83129 0.1535689 +0.9419845 43.83129 0.1535689 +1.267794 43.83129 0.1535689 +1.705268 43.83129 0.1535689 +2.292679 43.83129 0.1535689 +3.081414 43.83129 0.1535689 +4.140474 43.83129 0.1535689 +5.562508 43.83129 0.1535689 +7.471917 43.83129 0.1535689 +10.03574 43.83129 0.1535689 +13.47828 43.83129 0.1535689 +18.10068 43.83129 0.1535689 +24.30731 43.83129 0.1535689 +32.64117 43.83129 0.1535689 +43.83129 43.83129 0.1535689 +58.85664 43.83129 0.1535689 +-0.0175068 58.85664 0.1535689 +-0.01161267 58.85664 0.1535689 +-0.005718534 58.85664 0.1535689 +0.0001755984 58.85664 0.1535689 +0.006069731 58.85664 0.1535689 +0.01197402 58.85664 0.1535689 +0.01903886 58.85664 0.1535689 +0.02852504 58.85664 0.1535689 +0.04126244 58.85664 0.1535689 +0.05836535 58.85664 0.1535689 +0.08132997 58.85664 0.1535689 +0.1121653 58.85664 0.1535689 +0.1535689 58.85664 0.1535689 +0.2091628 58.85664 0.1535689 +0.2838106 58.85664 0.1535689 +0.3840425 58.85664 0.1535689 +0.518627 58.85664 0.1535689 +0.6993381 58.85664 0.1535689 +0.9419845 58.85664 0.1535689 +1.267794 58.85664 0.1535689 +1.705268 58.85664 0.1535689 +2.292679 58.85664 0.1535689 +3.081414 58.85664 0.1535689 +4.140474 58.85664 0.1535689 +5.562508 58.85664 0.1535689 +7.471917 58.85664 0.1535689 +10.03574 58.85664 0.1535689 +13.47828 58.85664 0.1535689 +18.10068 58.85664 0.1535689 +24.30731 58.85664 0.1535689 +32.64117 58.85664 0.1535689 +43.83129 58.85664 0.1535689 +58.85664 58.85664 0.1535689 +-0.0175068 -0.0175068 0.2091628 +-0.01161267 -0.0175068 0.2091628 +-0.005718534 -0.0175068 0.2091628 +0.0001755984 -0.0175068 0.2091628 +0.006069731 -0.0175068 0.2091628 +0.01197402 -0.0175068 0.2091628 +0.01903886 -0.0175068 0.2091628 +0.02852504 -0.0175068 0.2091628 +0.04126244 -0.0175068 0.2091628 +0.05836535 -0.0175068 0.2091628 +0.08132997 -0.0175068 0.2091628 +0.1121653 -0.0175068 0.2091628 +0.1535689 -0.0175068 0.2091628 +0.2091628 -0.0175068 0.2091628 +0.2838106 -0.0175068 0.2091628 +0.3840425 -0.0175068 0.2091628 +0.518627 -0.0175068 0.2091628 +0.6993381 -0.0175068 0.2091628 +0.9419845 -0.0175068 0.2091628 +1.267794 -0.0175068 0.2091628 +1.705268 -0.0175068 0.2091628 +2.292679 -0.0175068 0.2091628 +3.081414 -0.0175068 0.2091628 +4.140474 -0.0175068 0.2091628 +5.562508 -0.0175068 0.2091628 +7.471917 -0.0175068 0.2091628 +10.03574 -0.0175068 0.2091628 +13.47828 -0.0175068 0.2091628 +18.10068 -0.0175068 0.2091628 +24.30731 -0.0175068 0.2091628 +32.64117 -0.0175068 0.2091628 +43.83129 -0.0175068 0.2091628 +58.85664 -0.0175068 0.2091628 +-0.0175068 -0.01161267 0.2091628 +-0.01161267 -0.01161267 0.2091628 +-0.005718534 -0.01161267 0.2091628 +0.0001755984 -0.01161267 0.2091628 +0.006069731 -0.01161267 0.2091628 +0.01197402 -0.01161267 0.2091628 +0.01903886 -0.01161267 0.2091628 +0.02852504 -0.01161267 0.2091628 +0.04126244 -0.01161267 0.2091628 +0.05836535 -0.01161267 0.2091628 +0.08132997 -0.01161267 0.2091628 +0.1121653 -0.01161267 0.2091628 +0.1535689 -0.01161267 0.2091628 +0.2091628 -0.01161267 0.2091628 +0.2838106 -0.01161267 0.2091628 +0.3840425 -0.01161267 0.2091628 +0.518627 -0.01161267 0.2091628 +0.6993381 -0.01161267 0.2091628 +0.9419845 -0.01161267 0.2091628 +1.267794 -0.01161267 0.2091628 +1.705268 -0.01161267 0.2091628 +2.292679 -0.01161267 0.2091628 +3.081414 -0.01161267 0.2091628 +4.140474 -0.01161267 0.2091628 +5.562508 -0.01161267 0.2091628 +7.471917 -0.01161267 0.2091628 +10.03574 -0.01161267 0.2091628 +13.47828 -0.01161267 0.2091628 +18.10068 -0.01161267 0.2091628 +24.30731 -0.01161267 0.2091628 +32.64117 -0.01161267 0.2091628 +43.83129 -0.01161267 0.2091628 +58.85664 -0.01161267 0.2091628 +-0.0175068 -0.005718534 0.2091628 +-0.01161267 -0.005718534 0.2091628 +-0.005718534 -0.005718534 0.2091628 +0.0001755984 -0.005718534 0.2091628 +0.006069731 -0.005718534 0.2091628 +0.01197402 -0.005718534 0.2091628 +0.01903886 -0.005718534 0.2091628 +0.02852504 -0.005718534 0.2091628 +0.04126244 -0.005718534 0.2091628 +0.05836535 -0.005718534 0.2091628 +0.08132997 -0.005718534 0.2091628 +0.1121653 -0.005718534 0.2091628 +0.1535689 -0.005718534 0.2091628 +0.2091628 -0.005718534 0.2091628 +0.2838106 -0.005718534 0.2091628 +0.3840425 -0.005718534 0.2091628 +0.518627 -0.005718534 0.2091628 +0.6993381 -0.005718534 0.2091628 +0.9419845 -0.005718534 0.2091628 +1.267794 -0.005718534 0.2091628 +1.705268 -0.005718534 0.2091628 +2.292679 -0.005718534 0.2091628 +3.081414 -0.005718534 0.2091628 +4.140474 -0.005718534 0.2091628 +5.562508 -0.005718534 0.2091628 +7.471917 -0.005718534 0.2091628 +10.03574 -0.005718534 0.2091628 +13.47828 -0.005718534 0.2091628 +18.10068 -0.005718534 0.2091628 +24.30731 -0.005718534 0.2091628 +32.64117 -0.005718534 0.2091628 +43.83129 -0.005718534 0.2091628 +58.85664 -0.005718534 0.2091628 +-0.0175068 0.0001755984 0.2091628 +-0.01161267 0.0001755984 0.2091628 +-0.005718534 0.0001755984 0.2091628 +0.0001755984 0.0001755984 0.2091628 +0.006069731 0.0001755984 0.2091628 +0.01197402 0.0001755984 0.2091628 +0.01903886 0.0001755984 0.2091628 +0.02852504 0.0001755984 0.2091628 +0.04126244 0.0001755984 0.2091628 +0.05836535 0.0001755984 0.2091628 +0.08132997 0.0001755984 0.2091628 +0.1121653 0.0001755984 0.2091628 +0.1535689 0.0001755984 0.2091628 +0.2091628 0.0001755984 0.2091628 +0.2838106 0.0001755984 0.2091628 +0.3840425 0.0001755984 0.2091628 +0.518627 0.0001755984 0.2091628 +0.6993381 0.0001755984 0.2091628 +0.9419845 0.0001755984 0.2091628 +1.267794 0.0001755984 0.2091628 +1.705268 0.0001755984 0.2091628 +2.292679 0.0001755984 0.2091628 +3.081414 0.0001755984 0.2091628 +4.140474 0.0001755984 0.2091628 +5.562508 0.0001755984 0.2091628 +7.471917 0.0001755984 0.2091628 +10.03574 0.0001755984 0.2091628 +13.47828 0.0001755984 0.2091628 +18.10068 0.0001755984 0.2091628 +24.30731 0.0001755984 0.2091628 +32.64117 0.0001755984 0.2091628 +43.83129 0.0001755984 0.2091628 +58.85664 0.0001755984 0.2091628 +-0.0175068 0.006069731 0.2091628 +-0.01161267 0.006069731 0.2091628 +-0.005718534 0.006069731 0.2091628 +0.0001755984 0.006069731 0.2091628 +0.006069731 0.006069731 0.2091628 +0.01197402 0.006069731 0.2091628 +0.01903886 0.006069731 0.2091628 +0.02852504 0.006069731 0.2091628 +0.04126244 0.006069731 0.2091628 +0.05836535 0.006069731 0.2091628 +0.08132997 0.006069731 0.2091628 +0.1121653 0.006069731 0.2091628 +0.1535689 0.006069731 0.2091628 +0.2091628 0.006069731 0.2091628 +0.2838106 0.006069731 0.2091628 +0.3840425 0.006069731 0.2091628 +0.518627 0.006069731 0.2091628 +0.6993381 0.006069731 0.2091628 +0.9419845 0.006069731 0.2091628 +1.267794 0.006069731 0.2091628 +1.705268 0.006069731 0.2091628 +2.292679 0.006069731 0.2091628 +3.081414 0.006069731 0.2091628 +4.140474 0.006069731 0.2091628 +5.562508 0.006069731 0.2091628 +7.471917 0.006069731 0.2091628 +10.03574 0.006069731 0.2091628 +13.47828 0.006069731 0.2091628 +18.10068 0.006069731 0.2091628 +24.30731 0.006069731 0.2091628 +32.64117 0.006069731 0.2091628 +43.83129 0.006069731 0.2091628 +58.85664 0.006069731 0.2091628 +-0.0175068 0.01197402 0.2091628 +-0.01161267 0.01197402 0.2091628 +-0.005718534 0.01197402 0.2091628 +0.0001755984 0.01197402 0.2091628 +0.006069731 0.01197402 0.2091628 +0.01197402 0.01197402 0.2091628 +0.01903886 0.01197402 0.2091628 +0.02852504 0.01197402 0.2091628 +0.04126244 0.01197402 0.2091628 +0.05836535 0.01197402 0.2091628 +0.08132997 0.01197402 0.2091628 +0.1121653 0.01197402 0.2091628 +0.1535689 0.01197402 0.2091628 +0.2091628 0.01197402 0.2091628 +0.2838106 0.01197402 0.2091628 +0.3840425 0.01197402 0.2091628 +0.518627 0.01197402 0.2091628 +0.6993381 0.01197402 0.2091628 +0.9419845 0.01197402 0.2091628 +1.267794 0.01197402 0.2091628 +1.705268 0.01197402 0.2091628 +2.292679 0.01197402 0.2091628 +3.081414 0.01197402 0.2091628 +4.140474 0.01197402 0.2091628 +5.562508 0.01197402 0.2091628 +7.471917 0.01197402 0.2091628 +10.03574 0.01197402 0.2091628 +13.47828 0.01197402 0.2091628 +18.10068 0.01197402 0.2091628 +24.30731 0.01197402 0.2091628 +32.64117 0.01197402 0.2091628 +43.83129 0.01197402 0.2091628 +58.85664 0.01197402 0.2091628 +-0.0175068 0.01903886 0.2091628 +-0.01161267 0.01903886 0.2091628 +-0.005718534 0.01903886 0.2091628 +0.0001755984 0.01903886 0.2091628 +0.006069731 0.01903886 0.2091628 +0.01197402 0.01903886 0.2091628 +0.01903886 0.01903886 0.2091628 +0.02852504 0.01903886 0.2091628 +0.04126244 0.01903886 0.2091628 +0.05836535 0.01903886 0.2091628 +0.08132997 0.01903886 0.2091628 +0.1121653 0.01903886 0.2091628 +0.1535689 0.01903886 0.2091628 +0.2091628 0.01903886 0.2091628 +0.2838106 0.01903886 0.2091628 +0.3840425 0.01903886 0.2091628 +0.518627 0.01903886 0.2091628 +0.6993381 0.01903886 0.2091628 +0.9419845 0.01903886 0.2091628 +1.267794 0.01903886 0.2091628 +1.705268 0.01903886 0.2091628 +2.292679 0.01903886 0.2091628 +3.081414 0.01903886 0.2091628 +4.140474 0.01903886 0.2091628 +5.562508 0.01903886 0.2091628 +7.471917 0.01903886 0.2091628 +10.03574 0.01903886 0.2091628 +13.47828 0.01903886 0.2091628 +18.10068 0.01903886 0.2091628 +24.30731 0.01903886 0.2091628 +32.64117 0.01903886 0.2091628 +43.83129 0.01903886 0.2091628 +58.85664 0.01903886 0.2091628 +-0.0175068 0.02852504 0.2091628 +-0.01161267 0.02852504 0.2091628 +-0.005718534 0.02852504 0.2091628 +0.0001755984 0.02852504 0.2091628 +0.006069731 0.02852504 0.2091628 +0.01197402 0.02852504 0.2091628 +0.01903886 0.02852504 0.2091628 +0.02852504 0.02852504 0.2091628 +0.04126244 0.02852504 0.2091628 +0.05836535 0.02852504 0.2091628 +0.08132997 0.02852504 0.2091628 +0.1121653 0.02852504 0.2091628 +0.1535689 0.02852504 0.2091628 +0.2091628 0.02852504 0.2091628 +0.2838106 0.02852504 0.2091628 +0.3840425 0.02852504 0.2091628 +0.518627 0.02852504 0.2091628 +0.6993381 0.02852504 0.2091628 +0.9419845 0.02852504 0.2091628 +1.267794 0.02852504 0.2091628 +1.705268 0.02852504 0.2091628 +2.292679 0.02852504 0.2091628 +3.081414 0.02852504 0.2091628 +4.140474 0.02852504 0.2091628 +5.562508 0.02852504 0.2091628 +7.471917 0.02852504 0.2091628 +10.03574 0.02852504 0.2091628 +13.47828 0.02852504 0.2091628 +18.10068 0.02852504 0.2091628 +24.30731 0.02852504 0.2091628 +32.64117 0.02852504 0.2091628 +43.83129 0.02852504 0.2091628 +58.85664 0.02852504 0.2091628 +-0.0175068 0.04126244 0.2091628 +-0.01161267 0.04126244 0.2091628 +-0.005718534 0.04126244 0.2091628 +0.0001755984 0.04126244 0.2091628 +0.006069731 0.04126244 0.2091628 +0.01197402 0.04126244 0.2091628 +0.01903886 0.04126244 0.2091628 +0.02852504 0.04126244 0.2091628 +0.04126244 0.04126244 0.2091628 +0.05836535 0.04126244 0.2091628 +0.08132997 0.04126244 0.2091628 +0.1121653 0.04126244 0.2091628 +0.1535689 0.04126244 0.2091628 +0.2091628 0.04126244 0.2091628 +0.2838106 0.04126244 0.2091628 +0.3840425 0.04126244 0.2091628 +0.518627 0.04126244 0.2091628 +0.6993381 0.04126244 0.2091628 +0.9419845 0.04126244 0.2091628 +1.267794 0.04126244 0.2091628 +1.705268 0.04126244 0.2091628 +2.292679 0.04126244 0.2091628 +3.081414 0.04126244 0.2091628 +4.140474 0.04126244 0.2091628 +5.562508 0.04126244 0.2091628 +7.471917 0.04126244 0.2091628 +10.03574 0.04126244 0.2091628 +13.47828 0.04126244 0.2091628 +18.10068 0.04126244 0.2091628 +24.30731 0.04126244 0.2091628 +32.64117 0.04126244 0.2091628 +43.83129 0.04126244 0.2091628 +58.85664 0.04126244 0.2091628 +-0.0175068 0.05836535 0.2091628 +-0.01161267 0.05836535 0.2091628 +-0.005718534 0.05836535 0.2091628 +0.0001755984 0.05836535 0.2091628 +0.006069731 0.05836535 0.2091628 +0.01197402 0.05836535 0.2091628 +0.01903886 0.05836535 0.2091628 +0.02852504 0.05836535 0.2091628 +0.04126244 0.05836535 0.2091628 +0.05836535 0.05836535 0.2091628 +0.08132997 0.05836535 0.2091628 +0.1121653 0.05836535 0.2091628 +0.1535689 0.05836535 0.2091628 +0.2091628 0.05836535 0.2091628 +0.2838106 0.05836535 0.2091628 +0.3840425 0.05836535 0.2091628 +0.518627 0.05836535 0.2091628 +0.6993381 0.05836535 0.2091628 +0.9419845 0.05836535 0.2091628 +1.267794 0.05836535 0.2091628 +1.705268 0.05836535 0.2091628 +2.292679 0.05836535 0.2091628 +3.081414 0.05836535 0.2091628 +4.140474 0.05836535 0.2091628 +5.562508 0.05836535 0.2091628 +7.471917 0.05836535 0.2091628 +10.03574 0.05836535 0.2091628 +13.47828 0.05836535 0.2091628 +18.10068 0.05836535 0.2091628 +24.30731 0.05836535 0.2091628 +32.64117 0.05836535 0.2091628 +43.83129 0.05836535 0.2091628 +58.85664 0.05836535 0.2091628 +-0.0175068 0.08132997 0.2091628 +-0.01161267 0.08132997 0.2091628 +-0.005718534 0.08132997 0.2091628 +0.0001755984 0.08132997 0.2091628 +0.006069731 0.08132997 0.2091628 +0.01197402 0.08132997 0.2091628 +0.01903886 0.08132997 0.2091628 +0.02852504 0.08132997 0.2091628 +0.04126244 0.08132997 0.2091628 +0.05836535 0.08132997 0.2091628 +0.08132997 0.08132997 0.2091628 +0.1121653 0.08132997 0.2091628 +0.1535689 0.08132997 0.2091628 +0.2091628 0.08132997 0.2091628 +0.2838106 0.08132997 0.2091628 +0.3840425 0.08132997 0.2091628 +0.518627 0.08132997 0.2091628 +0.6993381 0.08132997 0.2091628 +0.9419845 0.08132997 0.2091628 +1.267794 0.08132997 0.2091628 +1.705268 0.08132997 0.2091628 +2.292679 0.08132997 0.2091628 +3.081414 0.08132997 0.2091628 +4.140474 0.08132997 0.2091628 +5.562508 0.08132997 0.2091628 +7.471917 0.08132997 0.2091628 +10.03574 0.08132997 0.2091628 +13.47828 0.08132997 0.2091628 +18.10068 0.08132997 0.2091628 +24.30731 0.08132997 0.2091628 +32.64117 0.08132997 0.2091628 +43.83129 0.08132997 0.2091628 +58.85664 0.08132997 0.2091628 +-0.0175068 0.1121653 0.2091628 +-0.01161267 0.1121653 0.2091628 +-0.005718534 0.1121653 0.2091628 +0.0001755984 0.1121653 0.2091628 +0.006069731 0.1121653 0.2091628 +0.01197402 0.1121653 0.2091628 +0.01903886 0.1121653 0.2091628 +0.02852504 0.1121653 0.2091628 +0.04126244 0.1121653 0.2091628 +0.05836535 0.1121653 0.2091628 +0.08132997 0.1121653 0.2091628 +0.1121653 0.1121653 0.2091628 +0.1535689 0.1121653 0.2091628 +0.2091628 0.1121653 0.2091628 +0.2838106 0.1121653 0.2091628 +0.3840425 0.1121653 0.2091628 +0.518627 0.1121653 0.2091628 +0.6993381 0.1121653 0.2091628 +0.9419845 0.1121653 0.2091628 +1.267794 0.1121653 0.2091628 +1.705268 0.1121653 0.2091628 +2.292679 0.1121653 0.2091628 +3.081414 0.1121653 0.2091628 +4.140474 0.1121653 0.2091628 +5.562508 0.1121653 0.2091628 +7.471917 0.1121653 0.2091628 +10.03574 0.1121653 0.2091628 +13.47828 0.1121653 0.2091628 +18.10068 0.1121653 0.2091628 +24.30731 0.1121653 0.2091628 +32.64117 0.1121653 0.2091628 +43.83129 0.1121653 0.2091628 +58.85664 0.1121653 0.2091628 +-0.0175068 0.1535689 0.2091628 +-0.01161267 0.1535689 0.2091628 +-0.005718534 0.1535689 0.2091628 +0.0001755984 0.1535689 0.2091628 +0.006069731 0.1535689 0.2091628 +0.01197402 0.1535689 0.2091628 +0.01903886 0.1535689 0.2091628 +0.02852504 0.1535689 0.2091628 +0.04126244 0.1535689 0.2091628 +0.05836535 0.1535689 0.2091628 +0.08132997 0.1535689 0.2091628 +0.1121653 0.1535689 0.2091628 +0.1535689 0.1535689 0.2091628 +0.2091628 0.1535689 0.2091628 +0.2838106 0.1535689 0.2091628 +0.3840425 0.1535689 0.2091628 +0.518627 0.1535689 0.2091628 +0.6993381 0.1535689 0.2091628 +0.9419845 0.1535689 0.2091628 +1.267794 0.1535689 0.2091628 +1.705268 0.1535689 0.2091628 +2.292679 0.1535689 0.2091628 +3.081414 0.1535689 0.2091628 +4.140474 0.1535689 0.2091628 +5.562508 0.1535689 0.2091628 +7.471917 0.1535689 0.2091628 +10.03574 0.1535689 0.2091628 +13.47828 0.1535689 0.2091628 +18.10068 0.1535689 0.2091628 +24.30731 0.1535689 0.2091628 +32.64117 0.1535689 0.2091628 +43.83129 0.1535689 0.2091628 +58.85664 0.1535689 0.2091628 +-0.0175068 0.2091628 0.2091628 +-0.01161267 0.2091628 0.2091628 +-0.005718534 0.2091628 0.2091628 +0.0001755984 0.2091628 0.2091628 +0.006069731 0.2091628 0.2091628 +0.01197402 0.2091628 0.2091628 +0.01903886 0.2091628 0.2091628 +0.02852504 0.2091628 0.2091628 +0.04126244 0.2091628 0.2091628 +0.05836535 0.2091628 0.2091628 +0.08132997 0.2091628 0.2091628 +0.1121653 0.2091628 0.2091628 +0.1535689 0.2091628 0.2091628 +0.2091628 0.2091628 0.2091628 +0.2838106 0.2091628 0.2091628 +0.3840425 0.2091628 0.2091628 +0.518627 0.2091628 0.2091628 +0.6993381 0.2091628 0.2091628 +0.9419845 0.2091628 0.2091628 +1.267794 0.2091628 0.2091628 +1.705268 0.2091628 0.2091628 +2.292679 0.2091628 0.2091628 +3.081414 0.2091628 0.2091628 +4.140474 0.2091628 0.2091628 +5.562508 0.2091628 0.2091628 +7.471917 0.2091628 0.2091628 +10.03574 0.2091628 0.2091628 +13.47828 0.2091628 0.2091628 +18.10068 0.2091628 0.2091628 +24.30731 0.2091628 0.2091628 +32.64117 0.2091628 0.2091628 +43.83129 0.2091628 0.2091628 +58.85664 0.2091628 0.2091628 +-0.0175068 0.2838106 0.2091628 +-0.01161267 0.2838106 0.2091628 +-0.005718534 0.2838106 0.2091628 +0.0001755984 0.2838106 0.2091628 +0.006069731 0.2838106 0.2091628 +0.01197402 0.2838106 0.2091628 +0.01903886 0.2838106 0.2091628 +0.02852504 0.2838106 0.2091628 +0.04126244 0.2838106 0.2091628 +0.05836535 0.2838106 0.2091628 +0.08132997 0.2838106 0.2091628 +0.1121653 0.2838106 0.2091628 +0.1535689 0.2838106 0.2091628 +0.2091628 0.2838106 0.2091628 +0.2838106 0.2838106 0.2091628 +0.3840425 0.2838106 0.2091628 +0.518627 0.2838106 0.2091628 +0.6993381 0.2838106 0.2091628 +0.9419845 0.2838106 0.2091628 +1.267794 0.2838106 0.2091628 +1.705268 0.2838106 0.2091628 +2.292679 0.2838106 0.2091628 +3.081414 0.2838106 0.2091628 +4.140474 0.2838106 0.2091628 +5.562508 0.2838106 0.2091628 +7.471917 0.2838106 0.2091628 +10.03574 0.2838106 0.2091628 +13.47828 0.2838106 0.2091628 +18.10068 0.2838106 0.2091628 +24.30731 0.2838106 0.2091628 +32.64117 0.2838106 0.2091628 +43.83129 0.2838106 0.2091628 +58.85664 0.2838106 0.2091628 +-0.0175068 0.3840425 0.2091628 +-0.01161267 0.3840425 0.2091628 +-0.005718534 0.3840425 0.2091628 +0.0001755984 0.3840425 0.2091628 +0.006069731 0.3840425 0.2091628 +0.01197402 0.3840425 0.2091628 +0.01903886 0.3840425 0.2091628 +0.02852504 0.3840425 0.2091628 +0.04126244 0.3840425 0.2091628 +0.05836535 0.3840425 0.2091628 +0.08132997 0.3840425 0.2091628 +0.1121653 0.3840425 0.2091628 +0.1535689 0.3840425 0.2091628 +0.2091628 0.3840425 0.2091628 +0.2838106 0.3840425 0.2091628 +0.3840425 0.3840425 0.2091628 +0.518627 0.3840425 0.2091628 +0.6993381 0.3840425 0.2091628 +0.9419845 0.3840425 0.2091628 +1.267794 0.3840425 0.2091628 +1.705268 0.3840425 0.2091628 +2.292679 0.3840425 0.2091628 +3.081414 0.3840425 0.2091628 +4.140474 0.3840425 0.2091628 +5.562508 0.3840425 0.2091628 +7.471917 0.3840425 0.2091628 +10.03574 0.3840425 0.2091628 +13.47828 0.3840425 0.2091628 +18.10068 0.3840425 0.2091628 +24.30731 0.3840425 0.2091628 +32.64117 0.3840425 0.2091628 +43.83129 0.3840425 0.2091628 +58.85664 0.3840425 0.2091628 +-0.0175068 0.518627 0.2091628 +-0.01161267 0.518627 0.2091628 +-0.005718534 0.518627 0.2091628 +0.0001755984 0.518627 0.2091628 +0.006069731 0.518627 0.2091628 +0.01197402 0.518627 0.2091628 +0.01903886 0.518627 0.2091628 +0.02852504 0.518627 0.2091628 +0.04126244 0.518627 0.2091628 +0.05836535 0.518627 0.2091628 +0.08132997 0.518627 0.2091628 +0.1121653 0.518627 0.2091628 +0.1535689 0.518627 0.2091628 +0.2091628 0.518627 0.2091628 +0.2838106 0.518627 0.2091628 +0.3840425 0.518627 0.2091628 +0.518627 0.518627 0.2091628 +0.6993381 0.518627 0.2091628 +0.9419845 0.518627 0.2091628 +1.267794 0.518627 0.2091628 +1.705268 0.518627 0.2091628 +2.292679 0.518627 0.2091628 +3.081414 0.518627 0.2091628 +4.140474 0.518627 0.2091628 +5.562508 0.518627 0.2091628 +7.471917 0.518627 0.2091628 +10.03574 0.518627 0.2091628 +13.47828 0.518627 0.2091628 +18.10068 0.518627 0.2091628 +24.30731 0.518627 0.2091628 +32.64117 0.518627 0.2091628 +43.83129 0.518627 0.2091628 +58.85664 0.518627 0.2091628 +-0.0175068 0.6993381 0.2091628 +-0.01161267 0.6993381 0.2091628 +-0.005718534 0.6993381 0.2091628 +0.0001755984 0.6993381 0.2091628 +0.006069731 0.6993381 0.2091628 +0.01197402 0.6993381 0.2091628 +0.01903886 0.6993381 0.2091628 +0.02852504 0.6993381 0.2091628 +0.04126244 0.6993381 0.2091628 +0.05836535 0.6993381 0.2091628 +0.08132997 0.6993381 0.2091628 +0.1121653 0.6993381 0.2091628 +0.1535689 0.6993381 0.2091628 +0.2091628 0.6993381 0.2091628 +0.2838106 0.6993381 0.2091628 +0.3840425 0.6993381 0.2091628 +0.518627 0.6993381 0.2091628 +0.6993381 0.6993381 0.2091628 +0.9419845 0.6993381 0.2091628 +1.267794 0.6993381 0.2091628 +1.705268 0.6993381 0.2091628 +2.292679 0.6993381 0.2091628 +3.081414 0.6993381 0.2091628 +4.140474 0.6993381 0.2091628 +5.562508 0.6993381 0.2091628 +7.471917 0.6993381 0.2091628 +10.03574 0.6993381 0.2091628 +13.47828 0.6993381 0.2091628 +18.10068 0.6993381 0.2091628 +24.30731 0.6993381 0.2091628 +32.64117 0.6993381 0.2091628 +43.83129 0.6993381 0.2091628 +58.85664 0.6993381 0.2091628 +-0.0175068 0.9419845 0.2091628 +-0.01161267 0.9419845 0.2091628 +-0.005718534 0.9419845 0.2091628 +0.0001755984 0.9419845 0.2091628 +0.006069731 0.9419845 0.2091628 +0.01197402 0.9419845 0.2091628 +0.01903886 0.9419845 0.2091628 +0.02852504 0.9419845 0.2091628 +0.04126244 0.9419845 0.2091628 +0.05836535 0.9419845 0.2091628 +0.08132997 0.9419845 0.2091628 +0.1121653 0.9419845 0.2091628 +0.1535689 0.9419845 0.2091628 +0.2091628 0.9419845 0.2091628 +0.2838106 0.9419845 0.2091628 +0.3840425 0.9419845 0.2091628 +0.518627 0.9419845 0.2091628 +0.6993381 0.9419845 0.2091628 +0.9419845 0.9419845 0.2091628 +1.267794 0.9419845 0.2091628 +1.705268 0.9419845 0.2091628 +2.292679 0.9419845 0.2091628 +3.081414 0.9419845 0.2091628 +4.140474 0.9419845 0.2091628 +5.562508 0.9419845 0.2091628 +7.471917 0.9419845 0.2091628 +10.03574 0.9419845 0.2091628 +13.47828 0.9419845 0.2091628 +18.10068 0.9419845 0.2091628 +24.30731 0.9419845 0.2091628 +32.64117 0.9419845 0.2091628 +43.83129 0.9419845 0.2091628 +58.85664 0.9419845 0.2091628 +-0.0175068 1.267794 0.2091628 +-0.01161267 1.267794 0.2091628 +-0.005718534 1.267794 0.2091628 +0.0001755984 1.267794 0.2091628 +0.006069731 1.267794 0.2091628 +0.01197402 1.267794 0.2091628 +0.01903886 1.267794 0.2091628 +0.02852504 1.267794 0.2091628 +0.04126244 1.267794 0.2091628 +0.05836535 1.267794 0.2091628 +0.08132997 1.267794 0.2091628 +0.1121653 1.267794 0.2091628 +0.1535689 1.267794 0.2091628 +0.2091628 1.267794 0.2091628 +0.2838106 1.267794 0.2091628 +0.3840425 1.267794 0.2091628 +0.518627 1.267794 0.2091628 +0.6993381 1.267794 0.2091628 +0.9419845 1.267794 0.2091628 +1.267794 1.267794 0.2091628 +1.705268 1.267794 0.2091628 +2.292679 1.267794 0.2091628 +3.081414 1.267794 0.2091628 +4.140474 1.267794 0.2091628 +5.562508 1.267794 0.2091628 +7.471917 1.267794 0.2091628 +10.03574 1.267794 0.2091628 +13.47828 1.267794 0.2091628 +18.10068 1.267794 0.2091628 +24.30731 1.267794 0.2091628 +32.64117 1.267794 0.2091628 +43.83129 1.267794 0.2091628 +58.85664 1.267794 0.2091628 +-0.0175068 1.705268 0.2091628 +-0.01161267 1.705268 0.2091628 +-0.005718534 1.705268 0.2091628 +0.0001755984 1.705268 0.2091628 +0.006069731 1.705268 0.2091628 +0.01197402 1.705268 0.2091628 +0.01903886 1.705268 0.2091628 +0.02852504 1.705268 0.2091628 +0.04126244 1.705268 0.2091628 +0.05836535 1.705268 0.2091628 +0.08132997 1.705268 0.2091628 +0.1121653 1.705268 0.2091628 +0.1535689 1.705268 0.2091628 +0.2091628 1.705268 0.2091628 +0.2838106 1.705268 0.2091628 +0.3840425 1.705268 0.2091628 +0.518627 1.705268 0.2091628 +0.6993381 1.705268 0.2091628 +0.9419845 1.705268 0.2091628 +1.267794 1.705268 0.2091628 +1.705268 1.705268 0.2091628 +2.292679 1.705268 0.2091628 +3.081414 1.705268 0.2091628 +4.140474 1.705268 0.2091628 +5.562508 1.705268 0.2091628 +7.471917 1.705268 0.2091628 +10.03574 1.705268 0.2091628 +13.47828 1.705268 0.2091628 +18.10068 1.705268 0.2091628 +24.30731 1.705268 0.2091628 +32.64117 1.705268 0.2091628 +43.83129 1.705268 0.2091628 +58.85664 1.705268 0.2091628 +-0.0175068 2.292679 0.2091628 +-0.01161267 2.292679 0.2091628 +-0.005718534 2.292679 0.2091628 +0.0001755984 2.292679 0.2091628 +0.006069731 2.292679 0.2091628 +0.01197402 2.292679 0.2091628 +0.01903886 2.292679 0.2091628 +0.02852504 2.292679 0.2091628 +0.04126244 2.292679 0.2091628 +0.05836535 2.292679 0.2091628 +0.08132997 2.292679 0.2091628 +0.1121653 2.292679 0.2091628 +0.1535689 2.292679 0.2091628 +0.2091628 2.292679 0.2091628 +0.2838106 2.292679 0.2091628 +0.3840425 2.292679 0.2091628 +0.518627 2.292679 0.2091628 +0.6993381 2.292679 0.2091628 +0.9419845 2.292679 0.2091628 +1.267794 2.292679 0.2091628 +1.705268 2.292679 0.2091628 +2.292679 2.292679 0.2091628 +3.081414 2.292679 0.2091628 +4.140474 2.292679 0.2091628 +5.562508 2.292679 0.2091628 +7.471917 2.292679 0.2091628 +10.03574 2.292679 0.2091628 +13.47828 2.292679 0.2091628 +18.10068 2.292679 0.2091628 +24.30731 2.292679 0.2091628 +32.64117 2.292679 0.2091628 +43.83129 2.292679 0.2091628 +58.85664 2.292679 0.2091628 +-0.0175068 3.081414 0.2091628 +-0.01161267 3.081414 0.2091628 +-0.005718534 3.081414 0.2091628 +0.0001755984 3.081414 0.2091628 +0.006069731 3.081414 0.2091628 +0.01197402 3.081414 0.2091628 +0.01903886 3.081414 0.2091628 +0.02852504 3.081414 0.2091628 +0.04126244 3.081414 0.2091628 +0.05836535 3.081414 0.2091628 +0.08132997 3.081414 0.2091628 +0.1121653 3.081414 0.2091628 +0.1535689 3.081414 0.2091628 +0.2091628 3.081414 0.2091628 +0.2838106 3.081414 0.2091628 +0.3840425 3.081414 0.2091628 +0.518627 3.081414 0.2091628 +0.6993381 3.081414 0.2091628 +0.9419845 3.081414 0.2091628 +1.267794 3.081414 0.2091628 +1.705268 3.081414 0.2091628 +2.292679 3.081414 0.2091628 +3.081414 3.081414 0.2091628 +4.140474 3.081414 0.2091628 +5.562508 3.081414 0.2091628 +7.471917 3.081414 0.2091628 +10.03574 3.081414 0.2091628 +13.47828 3.081414 0.2091628 +18.10068 3.081414 0.2091628 +24.30731 3.081414 0.2091628 +32.64117 3.081414 0.2091628 +43.83129 3.081414 0.2091628 +58.85664 3.081414 0.2091628 +-0.0175068 4.140474 0.2091628 +-0.01161267 4.140474 0.2091628 +-0.005718534 4.140474 0.2091628 +0.0001755984 4.140474 0.2091628 +0.006069731 4.140474 0.2091628 +0.01197402 4.140474 0.2091628 +0.01903886 4.140474 0.2091628 +0.02852504 4.140474 0.2091628 +0.04126244 4.140474 0.2091628 +0.05836535 4.140474 0.2091628 +0.08132997 4.140474 0.2091628 +0.1121653 4.140474 0.2091628 +0.1535689 4.140474 0.2091628 +0.2091628 4.140474 0.2091628 +0.2838106 4.140474 0.2091628 +0.3840425 4.140474 0.2091628 +0.518627 4.140474 0.2091628 +0.6993381 4.140474 0.2091628 +0.9419845 4.140474 0.2091628 +1.267794 4.140474 0.2091628 +1.705268 4.140474 0.2091628 +2.292679 4.140474 0.2091628 +3.081414 4.140474 0.2091628 +4.140474 4.140474 0.2091628 +5.562508 4.140474 0.2091628 +7.471917 4.140474 0.2091628 +10.03574 4.140474 0.2091628 +13.47828 4.140474 0.2091628 +18.10068 4.140474 0.2091628 +24.30731 4.140474 0.2091628 +32.64117 4.140474 0.2091628 +43.83129 4.140474 0.2091628 +58.85664 4.140474 0.2091628 +-0.0175068 5.562508 0.2091628 +-0.01161267 5.562508 0.2091628 +-0.005718534 5.562508 0.2091628 +0.0001755984 5.562508 0.2091628 +0.006069731 5.562508 0.2091628 +0.01197402 5.562508 0.2091628 +0.01903886 5.562508 0.2091628 +0.02852504 5.562508 0.2091628 +0.04126244 5.562508 0.2091628 +0.05836535 5.562508 0.2091628 +0.08132997 5.562508 0.2091628 +0.1121653 5.562508 0.2091628 +0.1535689 5.562508 0.2091628 +0.2091628 5.562508 0.2091628 +0.2838106 5.562508 0.2091628 +0.3840425 5.562508 0.2091628 +0.518627 5.562508 0.2091628 +0.6993381 5.562508 0.2091628 +0.9419845 5.562508 0.2091628 +1.267794 5.562508 0.2091628 +1.705268 5.562508 0.2091628 +2.292679 5.562508 0.2091628 +3.081414 5.562508 0.2091628 +4.140474 5.562508 0.2091628 +5.562508 5.562508 0.2091628 +7.471917 5.562508 0.2091628 +10.03574 5.562508 0.2091628 +13.47828 5.562508 0.2091628 +18.10068 5.562508 0.2091628 +24.30731 5.562508 0.2091628 +32.64117 5.562508 0.2091628 +43.83129 5.562508 0.2091628 +58.85664 5.562508 0.2091628 +-0.0175068 7.471917 0.2091628 +-0.01161267 7.471917 0.2091628 +-0.005718534 7.471917 0.2091628 +0.0001755984 7.471917 0.2091628 +0.006069731 7.471917 0.2091628 +0.01197402 7.471917 0.2091628 +0.01903886 7.471917 0.2091628 +0.02852504 7.471917 0.2091628 +0.04126244 7.471917 0.2091628 +0.05836535 7.471917 0.2091628 +0.08132997 7.471917 0.2091628 +0.1121653 7.471917 0.2091628 +0.1535689 7.471917 0.2091628 +0.2091628 7.471917 0.2091628 +0.2838106 7.471917 0.2091628 +0.3840425 7.471917 0.2091628 +0.518627 7.471917 0.2091628 +0.6993381 7.471917 0.2091628 +0.9419845 7.471917 0.2091628 +1.267794 7.471917 0.2091628 +1.705268 7.471917 0.2091628 +2.292679 7.471917 0.2091628 +3.081414 7.471917 0.2091628 +4.140474 7.471917 0.2091628 +5.562508 7.471917 0.2091628 +7.471917 7.471917 0.2091628 +10.03574 7.471917 0.2091628 +13.47828 7.471917 0.2091628 +18.10068 7.471917 0.2091628 +24.30731 7.471917 0.2091628 +32.64117 7.471917 0.2091628 +43.83129 7.471917 0.2091628 +58.85664 7.471917 0.2091628 +-0.0175068 10.03574 0.2091628 +-0.01161267 10.03574 0.2091628 +-0.005718534 10.03574 0.2091628 +0.0001755984 10.03574 0.2091628 +0.006069731 10.03574 0.2091628 +0.01197402 10.03574 0.2091628 +0.01903886 10.03574 0.2091628 +0.02852504 10.03574 0.2091628 +0.04126244 10.03574 0.2091628 +0.05836535 10.03574 0.2091628 +0.08132997 10.03574 0.2091628 +0.1121653 10.03574 0.2091628 +0.1535689 10.03574 0.2091628 +0.2091628 10.03574 0.2091628 +0.2838106 10.03574 0.2091628 +0.3840425 10.03574 0.2091628 +0.518627 10.03574 0.2091628 +0.6993381 10.03574 0.2091628 +0.9419845 10.03574 0.2091628 +1.267794 10.03574 0.2091628 +1.705268 10.03574 0.2091628 +2.292679 10.03574 0.2091628 +3.081414 10.03574 0.2091628 +4.140474 10.03574 0.2091628 +5.562508 10.03574 0.2091628 +7.471917 10.03574 0.2091628 +10.03574 10.03574 0.2091628 +13.47828 10.03574 0.2091628 +18.10068 10.03574 0.2091628 +24.30731 10.03574 0.2091628 +32.64117 10.03574 0.2091628 +43.83129 10.03574 0.2091628 +58.85664 10.03574 0.2091628 +-0.0175068 13.47828 0.2091628 +-0.01161267 13.47828 0.2091628 +-0.005718534 13.47828 0.2091628 +0.0001755984 13.47828 0.2091628 +0.006069731 13.47828 0.2091628 +0.01197402 13.47828 0.2091628 +0.01903886 13.47828 0.2091628 +0.02852504 13.47828 0.2091628 +0.04126244 13.47828 0.2091628 +0.05836535 13.47828 0.2091628 +0.08132997 13.47828 0.2091628 +0.1121653 13.47828 0.2091628 +0.1535689 13.47828 0.2091628 +0.2091628 13.47828 0.2091628 +0.2838106 13.47828 0.2091628 +0.3840425 13.47828 0.2091628 +0.518627 13.47828 0.2091628 +0.6993381 13.47828 0.2091628 +0.9419845 13.47828 0.2091628 +1.267794 13.47828 0.2091628 +1.705268 13.47828 0.2091628 +2.292679 13.47828 0.2091628 +3.081414 13.47828 0.2091628 +4.140474 13.47828 0.2091628 +5.562508 13.47828 0.2091628 +7.471917 13.47828 0.2091628 +10.03574 13.47828 0.2091628 +13.47828 13.47828 0.2091628 +18.10068 13.47828 0.2091628 +24.30731 13.47828 0.2091628 +32.64117 13.47828 0.2091628 +43.83129 13.47828 0.2091628 +58.85664 13.47828 0.2091628 +-0.0175068 18.10068 0.2091628 +-0.01161267 18.10068 0.2091628 +-0.005718534 18.10068 0.2091628 +0.0001755984 18.10068 0.2091628 +0.006069731 18.10068 0.2091628 +0.01197402 18.10068 0.2091628 +0.01903886 18.10068 0.2091628 +0.02852504 18.10068 0.2091628 +0.04126244 18.10068 0.2091628 +0.05836535 18.10068 0.2091628 +0.08132997 18.10068 0.2091628 +0.1121653 18.10068 0.2091628 +0.1535689 18.10068 0.2091628 +0.2091628 18.10068 0.2091628 +0.2838106 18.10068 0.2091628 +0.3840425 18.10068 0.2091628 +0.518627 18.10068 0.2091628 +0.6993381 18.10068 0.2091628 +0.9419845 18.10068 0.2091628 +1.267794 18.10068 0.2091628 +1.705268 18.10068 0.2091628 +2.292679 18.10068 0.2091628 +3.081414 18.10068 0.2091628 +4.140474 18.10068 0.2091628 +5.562508 18.10068 0.2091628 +7.471917 18.10068 0.2091628 +10.03574 18.10068 0.2091628 +13.47828 18.10068 0.2091628 +18.10068 18.10068 0.2091628 +24.30731 18.10068 0.2091628 +32.64117 18.10068 0.2091628 +43.83129 18.10068 0.2091628 +58.85664 18.10068 0.2091628 +-0.0175068 24.30731 0.2091628 +-0.01161267 24.30731 0.2091628 +-0.005718534 24.30731 0.2091628 +0.0001755984 24.30731 0.2091628 +0.006069731 24.30731 0.2091628 +0.01197402 24.30731 0.2091628 +0.01903886 24.30731 0.2091628 +0.02852504 24.30731 0.2091628 +0.04126244 24.30731 0.2091628 +0.05836535 24.30731 0.2091628 +0.08132997 24.30731 0.2091628 +0.1121653 24.30731 0.2091628 +0.1535689 24.30731 0.2091628 +0.2091628 24.30731 0.2091628 +0.2838106 24.30731 0.2091628 +0.3840425 24.30731 0.2091628 +0.518627 24.30731 0.2091628 +0.6993381 24.30731 0.2091628 +0.9419845 24.30731 0.2091628 +1.267794 24.30731 0.2091628 +1.705268 24.30731 0.2091628 +2.292679 24.30731 0.2091628 +3.081414 24.30731 0.2091628 +4.140474 24.30731 0.2091628 +5.562508 24.30731 0.2091628 +7.471917 24.30731 0.2091628 +10.03574 24.30731 0.2091628 +13.47828 24.30731 0.2091628 +18.10068 24.30731 0.2091628 +24.30731 24.30731 0.2091628 +32.64117 24.30731 0.2091628 +43.83129 24.30731 0.2091628 +58.85664 24.30731 0.2091628 +-0.0175068 32.64117 0.2091628 +-0.01161267 32.64117 0.2091628 +-0.005718534 32.64117 0.2091628 +0.0001755984 32.64117 0.2091628 +0.006069731 32.64117 0.2091628 +0.01197402 32.64117 0.2091628 +0.01903886 32.64117 0.2091628 +0.02852504 32.64117 0.2091628 +0.04126244 32.64117 0.2091628 +0.05836535 32.64117 0.2091628 +0.08132997 32.64117 0.2091628 +0.1121653 32.64117 0.2091628 +0.1535689 32.64117 0.2091628 +0.2091628 32.64117 0.2091628 +0.2838106 32.64117 0.2091628 +0.3840425 32.64117 0.2091628 +0.518627 32.64117 0.2091628 +0.6993381 32.64117 0.2091628 +0.9419845 32.64117 0.2091628 +1.267794 32.64117 0.2091628 +1.705268 32.64117 0.2091628 +2.292679 32.64117 0.2091628 +3.081414 32.64117 0.2091628 +4.140474 32.64117 0.2091628 +5.562508 32.64117 0.2091628 +7.471917 32.64117 0.2091628 +10.03574 32.64117 0.2091628 +13.47828 32.64117 0.2091628 +18.10068 32.64117 0.2091628 +24.30731 32.64117 0.2091628 +32.64117 32.64117 0.2091628 +43.83129 32.64117 0.2091628 +58.85664 32.64117 0.2091628 +-0.0175068 43.83129 0.2091628 +-0.01161267 43.83129 0.2091628 +-0.005718534 43.83129 0.2091628 +0.0001755984 43.83129 0.2091628 +0.006069731 43.83129 0.2091628 +0.01197402 43.83129 0.2091628 +0.01903886 43.83129 0.2091628 +0.02852504 43.83129 0.2091628 +0.04126244 43.83129 0.2091628 +0.05836535 43.83129 0.2091628 +0.08132997 43.83129 0.2091628 +0.1121653 43.83129 0.2091628 +0.1535689 43.83129 0.2091628 +0.2091628 43.83129 0.2091628 +0.2838106 43.83129 0.2091628 +0.3840425 43.83129 0.2091628 +0.518627 43.83129 0.2091628 +0.6993381 43.83129 0.2091628 +0.9419845 43.83129 0.2091628 +1.267794 43.83129 0.2091628 +1.705268 43.83129 0.2091628 +2.292679 43.83129 0.2091628 +3.081414 43.83129 0.2091628 +4.140474 43.83129 0.2091628 +5.562508 43.83129 0.2091628 +7.471917 43.83129 0.2091628 +10.03574 43.83129 0.2091628 +13.47828 43.83129 0.2091628 +18.10068 43.83129 0.2091628 +24.30731 43.83129 0.2091628 +32.64117 43.83129 0.2091628 +43.83129 43.83129 0.2091628 +58.85664 43.83129 0.2091628 +-0.0175068 58.85664 0.2091628 +-0.01161267 58.85664 0.2091628 +-0.005718534 58.85664 0.2091628 +0.0001755984 58.85664 0.2091628 +0.006069731 58.85664 0.2091628 +0.01197402 58.85664 0.2091628 +0.01903886 58.85664 0.2091628 +0.02852504 58.85664 0.2091628 +0.04126244 58.85664 0.2091628 +0.05836535 58.85664 0.2091628 +0.08132997 58.85664 0.2091628 +0.1121653 58.85664 0.2091628 +0.1535689 58.85664 0.2091628 +0.2091628 58.85664 0.2091628 +0.2838106 58.85664 0.2091628 +0.3840425 58.85664 0.2091628 +0.518627 58.85664 0.2091628 +0.6993381 58.85664 0.2091628 +0.9419845 58.85664 0.2091628 +1.267794 58.85664 0.2091628 +1.705268 58.85664 0.2091628 +2.292679 58.85664 0.2091628 +3.081414 58.85664 0.2091628 +4.140474 58.85664 0.2091628 +5.562508 58.85664 0.2091628 +7.471917 58.85664 0.2091628 +10.03574 58.85664 0.2091628 +13.47828 58.85664 0.2091628 +18.10068 58.85664 0.2091628 +24.30731 58.85664 0.2091628 +32.64117 58.85664 0.2091628 +43.83129 58.85664 0.2091628 +58.85664 58.85664 0.2091628 +-0.0175068 -0.0175068 0.2838106 +-0.01161267 -0.0175068 0.2838106 +-0.005718534 -0.0175068 0.2838106 +0.0001755984 -0.0175068 0.2838106 +0.006069731 -0.0175068 0.2838106 +0.01197402 -0.0175068 0.2838106 +0.01903886 -0.0175068 0.2838106 +0.02852504 -0.0175068 0.2838106 +0.04126244 -0.0175068 0.2838106 +0.05836535 -0.0175068 0.2838106 +0.08132997 -0.0175068 0.2838106 +0.1121653 -0.0175068 0.2838106 +0.1535689 -0.0175068 0.2838106 +0.2091628 -0.0175068 0.2838106 +0.2838106 -0.0175068 0.2838106 +0.3840425 -0.0175068 0.2838106 +0.518627 -0.0175068 0.2838106 +0.6993381 -0.0175068 0.2838106 +0.9419845 -0.0175068 0.2838106 +1.267794 -0.0175068 0.2838106 +1.705268 -0.0175068 0.2838106 +2.292679 -0.0175068 0.2838106 +3.081414 -0.0175068 0.2838106 +4.140474 -0.0175068 0.2838106 +5.562508 -0.0175068 0.2838106 +7.471917 -0.0175068 0.2838106 +10.03574 -0.0175068 0.2838106 +13.47828 -0.0175068 0.2838106 +18.10068 -0.0175068 0.2838106 +24.30731 -0.0175068 0.2838106 +32.64117 -0.0175068 0.2838106 +43.83129 -0.0175068 0.2838106 +58.85664 -0.0175068 0.2838106 +-0.0175068 -0.01161267 0.2838106 +-0.01161267 -0.01161267 0.2838106 +-0.005718534 -0.01161267 0.2838106 +0.0001755984 -0.01161267 0.2838106 +0.006069731 -0.01161267 0.2838106 +0.01197402 -0.01161267 0.2838106 +0.01903886 -0.01161267 0.2838106 +0.02852504 -0.01161267 0.2838106 +0.04126244 -0.01161267 0.2838106 +0.05836535 -0.01161267 0.2838106 +0.08132997 -0.01161267 0.2838106 +0.1121653 -0.01161267 0.2838106 +0.1535689 -0.01161267 0.2838106 +0.2091628 -0.01161267 0.2838106 +0.2838106 -0.01161267 0.2838106 +0.3840425 -0.01161267 0.2838106 +0.518627 -0.01161267 0.2838106 +0.6993381 -0.01161267 0.2838106 +0.9419845 -0.01161267 0.2838106 +1.267794 -0.01161267 0.2838106 +1.705268 -0.01161267 0.2838106 +2.292679 -0.01161267 0.2838106 +3.081414 -0.01161267 0.2838106 +4.140474 -0.01161267 0.2838106 +5.562508 -0.01161267 0.2838106 +7.471917 -0.01161267 0.2838106 +10.03574 -0.01161267 0.2838106 +13.47828 -0.01161267 0.2838106 +18.10068 -0.01161267 0.2838106 +24.30731 -0.01161267 0.2838106 +32.64117 -0.01161267 0.2838106 +43.83129 -0.01161267 0.2838106 +58.85664 -0.01161267 0.2838106 +-0.0175068 -0.005718534 0.2838106 +-0.01161267 -0.005718534 0.2838106 +-0.005718534 -0.005718534 0.2838106 +0.0001755984 -0.005718534 0.2838106 +0.006069731 -0.005718534 0.2838106 +0.01197402 -0.005718534 0.2838106 +0.01903886 -0.005718534 0.2838106 +0.02852504 -0.005718534 0.2838106 +0.04126244 -0.005718534 0.2838106 +0.05836535 -0.005718534 0.2838106 +0.08132997 -0.005718534 0.2838106 +0.1121653 -0.005718534 0.2838106 +0.1535689 -0.005718534 0.2838106 +0.2091628 -0.005718534 0.2838106 +0.2838106 -0.005718534 0.2838106 +0.3840425 -0.005718534 0.2838106 +0.518627 -0.005718534 0.2838106 +0.6993381 -0.005718534 0.2838106 +0.9419845 -0.005718534 0.2838106 +1.267794 -0.005718534 0.2838106 +1.705268 -0.005718534 0.2838106 +2.292679 -0.005718534 0.2838106 +3.081414 -0.005718534 0.2838106 +4.140474 -0.005718534 0.2838106 +5.562508 -0.005718534 0.2838106 +7.471917 -0.005718534 0.2838106 +10.03574 -0.005718534 0.2838106 +13.47828 -0.005718534 0.2838106 +18.10068 -0.005718534 0.2838106 +24.30731 -0.005718534 0.2838106 +32.64117 -0.005718534 0.2838106 +43.83129 -0.005718534 0.2838106 +58.85664 -0.005718534 0.2838106 +-0.0175068 0.0001755984 0.2838106 +-0.01161267 0.0001755984 0.2838106 +-0.005718534 0.0001755984 0.2838106 +0.0001755984 0.0001755984 0.2838106 +0.006069731 0.0001755984 0.2838106 +0.01197402 0.0001755984 0.2838106 +0.01903886 0.0001755984 0.2838106 +0.02852504 0.0001755984 0.2838106 +0.04126244 0.0001755984 0.2838106 +0.05836535 0.0001755984 0.2838106 +0.08132997 0.0001755984 0.2838106 +0.1121653 0.0001755984 0.2838106 +0.1535689 0.0001755984 0.2838106 +0.2091628 0.0001755984 0.2838106 +0.2838106 0.0001755984 0.2838106 +0.3840425 0.0001755984 0.2838106 +0.518627 0.0001755984 0.2838106 +0.6993381 0.0001755984 0.2838106 +0.9419845 0.0001755984 0.2838106 +1.267794 0.0001755984 0.2838106 +1.705268 0.0001755984 0.2838106 +2.292679 0.0001755984 0.2838106 +3.081414 0.0001755984 0.2838106 +4.140474 0.0001755984 0.2838106 +5.562508 0.0001755984 0.2838106 +7.471917 0.0001755984 0.2838106 +10.03574 0.0001755984 0.2838106 +13.47828 0.0001755984 0.2838106 +18.10068 0.0001755984 0.2838106 +24.30731 0.0001755984 0.2838106 +32.64117 0.0001755984 0.2838106 +43.83129 0.0001755984 0.2838106 +58.85664 0.0001755984 0.2838106 +-0.0175068 0.006069731 0.2838106 +-0.01161267 0.006069731 0.2838106 +-0.005718534 0.006069731 0.2838106 +0.0001755984 0.006069731 0.2838106 +0.006069731 0.006069731 0.2838106 +0.01197402 0.006069731 0.2838106 +0.01903886 0.006069731 0.2838106 +0.02852504 0.006069731 0.2838106 +0.04126244 0.006069731 0.2838106 +0.05836535 0.006069731 0.2838106 +0.08132997 0.006069731 0.2838106 +0.1121653 0.006069731 0.2838106 +0.1535689 0.006069731 0.2838106 +0.2091628 0.006069731 0.2838106 +0.2838106 0.006069731 0.2838106 +0.3840425 0.006069731 0.2838106 +0.518627 0.006069731 0.2838106 +0.6993381 0.006069731 0.2838106 +0.9419845 0.006069731 0.2838106 +1.267794 0.006069731 0.2838106 +1.705268 0.006069731 0.2838106 +2.292679 0.006069731 0.2838106 +3.081414 0.006069731 0.2838106 +4.140474 0.006069731 0.2838106 +5.562508 0.006069731 0.2838106 +7.471917 0.006069731 0.2838106 +10.03574 0.006069731 0.2838106 +13.47828 0.006069731 0.2838106 +18.10068 0.006069731 0.2838106 +24.30731 0.006069731 0.2838106 +32.64117 0.006069731 0.2838106 +43.83129 0.006069731 0.2838106 +58.85664 0.006069731 0.2838106 +-0.0175068 0.01197402 0.2838106 +-0.01161267 0.01197402 0.2838106 +-0.005718534 0.01197402 0.2838106 +0.0001755984 0.01197402 0.2838106 +0.006069731 0.01197402 0.2838106 +0.01197402 0.01197402 0.2838106 +0.01903886 0.01197402 0.2838106 +0.02852504 0.01197402 0.2838106 +0.04126244 0.01197402 0.2838106 +0.05836535 0.01197402 0.2838106 +0.08132997 0.01197402 0.2838106 +0.1121653 0.01197402 0.2838106 +0.1535689 0.01197402 0.2838106 +0.2091628 0.01197402 0.2838106 +0.2838106 0.01197402 0.2838106 +0.3840425 0.01197402 0.2838106 +0.518627 0.01197402 0.2838106 +0.6993381 0.01197402 0.2838106 +0.9419845 0.01197402 0.2838106 +1.267794 0.01197402 0.2838106 +1.705268 0.01197402 0.2838106 +2.292679 0.01197402 0.2838106 +3.081414 0.01197402 0.2838106 +4.140474 0.01197402 0.2838106 +5.562508 0.01197402 0.2838106 +7.471917 0.01197402 0.2838106 +10.03574 0.01197402 0.2838106 +13.47828 0.01197402 0.2838106 +18.10068 0.01197402 0.2838106 +24.30731 0.01197402 0.2838106 +32.64117 0.01197402 0.2838106 +43.83129 0.01197402 0.2838106 +58.85664 0.01197402 0.2838106 +-0.0175068 0.01903886 0.2838106 +-0.01161267 0.01903886 0.2838106 +-0.005718534 0.01903886 0.2838106 +0.0001755984 0.01903886 0.2838106 +0.006069731 0.01903886 0.2838106 +0.01197402 0.01903886 0.2838106 +0.01903886 0.01903886 0.2838106 +0.02852504 0.01903886 0.2838106 +0.04126244 0.01903886 0.2838106 +0.05836535 0.01903886 0.2838106 +0.08132997 0.01903886 0.2838106 +0.1121653 0.01903886 0.2838106 +0.1535689 0.01903886 0.2838106 +0.2091628 0.01903886 0.2838106 +0.2838106 0.01903886 0.2838106 +0.3840425 0.01903886 0.2838106 +0.518627 0.01903886 0.2838106 +0.6993381 0.01903886 0.2838106 +0.9419845 0.01903886 0.2838106 +1.267794 0.01903886 0.2838106 +1.705268 0.01903886 0.2838106 +2.292679 0.01903886 0.2838106 +3.081414 0.01903886 0.2838106 +4.140474 0.01903886 0.2838106 +5.562508 0.01903886 0.2838106 +7.471917 0.01903886 0.2838106 +10.03574 0.01903886 0.2838106 +13.47828 0.01903886 0.2838106 +18.10068 0.01903886 0.2838106 +24.30731 0.01903886 0.2838106 +32.64117 0.01903886 0.2838106 +43.83129 0.01903886 0.2838106 +58.85664 0.01903886 0.2838106 +-0.0175068 0.02852504 0.2838106 +-0.01161267 0.02852504 0.2838106 +-0.005718534 0.02852504 0.2838106 +0.0001755984 0.02852504 0.2838106 +0.006069731 0.02852504 0.2838106 +0.01197402 0.02852504 0.2838106 +0.01903886 0.02852504 0.2838106 +0.02852504 0.02852504 0.2838106 +0.04126244 0.02852504 0.2838106 +0.05836535 0.02852504 0.2838106 +0.08132997 0.02852504 0.2838106 +0.1121653 0.02852504 0.2838106 +0.1535689 0.02852504 0.2838106 +0.2091628 0.02852504 0.2838106 +0.2838106 0.02852504 0.2838106 +0.3840425 0.02852504 0.2838106 +0.518627 0.02852504 0.2838106 +0.6993381 0.02852504 0.2838106 +0.9419845 0.02852504 0.2838106 +1.267794 0.02852504 0.2838106 +1.705268 0.02852504 0.2838106 +2.292679 0.02852504 0.2838106 +3.081414 0.02852504 0.2838106 +4.140474 0.02852504 0.2838106 +5.562508 0.02852504 0.2838106 +7.471917 0.02852504 0.2838106 +10.03574 0.02852504 0.2838106 +13.47828 0.02852504 0.2838106 +18.10068 0.02852504 0.2838106 +24.30731 0.02852504 0.2838106 +32.64117 0.02852504 0.2838106 +43.83129 0.02852504 0.2838106 +58.85664 0.02852504 0.2838106 +-0.0175068 0.04126244 0.2838106 +-0.01161267 0.04126244 0.2838106 +-0.005718534 0.04126244 0.2838106 +0.0001755984 0.04126244 0.2838106 +0.006069731 0.04126244 0.2838106 +0.01197402 0.04126244 0.2838106 +0.01903886 0.04126244 0.2838106 +0.02852504 0.04126244 0.2838106 +0.04126244 0.04126244 0.2838106 +0.05836535 0.04126244 0.2838106 +0.08132997 0.04126244 0.2838106 +0.1121653 0.04126244 0.2838106 +0.1535689 0.04126244 0.2838106 +0.2091628 0.04126244 0.2838106 +0.2838106 0.04126244 0.2838106 +0.3840425 0.04126244 0.2838106 +0.518627 0.04126244 0.2838106 +0.6993381 0.04126244 0.2838106 +0.9419845 0.04126244 0.2838106 +1.267794 0.04126244 0.2838106 +1.705268 0.04126244 0.2838106 +2.292679 0.04126244 0.2838106 +3.081414 0.04126244 0.2838106 +4.140474 0.04126244 0.2838106 +5.562508 0.04126244 0.2838106 +7.471917 0.04126244 0.2838106 +10.03574 0.04126244 0.2838106 +13.47828 0.04126244 0.2838106 +18.10068 0.04126244 0.2838106 +24.30731 0.04126244 0.2838106 +32.64117 0.04126244 0.2838106 +43.83129 0.04126244 0.2838106 +58.85664 0.04126244 0.2838106 +-0.0175068 0.05836535 0.2838106 +-0.01161267 0.05836535 0.2838106 +-0.005718534 0.05836535 0.2838106 +0.0001755984 0.05836535 0.2838106 +0.006069731 0.05836535 0.2838106 +0.01197402 0.05836535 0.2838106 +0.01903886 0.05836535 0.2838106 +0.02852504 0.05836535 0.2838106 +0.04126244 0.05836535 0.2838106 +0.05836535 0.05836535 0.2838106 +0.08132997 0.05836535 0.2838106 +0.1121653 0.05836535 0.2838106 +0.1535689 0.05836535 0.2838106 +0.2091628 0.05836535 0.2838106 +0.2838106 0.05836535 0.2838106 +0.3840425 0.05836535 0.2838106 +0.518627 0.05836535 0.2838106 +0.6993381 0.05836535 0.2838106 +0.9419845 0.05836535 0.2838106 +1.267794 0.05836535 0.2838106 +1.705268 0.05836535 0.2838106 +2.292679 0.05836535 0.2838106 +3.081414 0.05836535 0.2838106 +4.140474 0.05836535 0.2838106 +5.562508 0.05836535 0.2838106 +7.471917 0.05836535 0.2838106 +10.03574 0.05836535 0.2838106 +13.47828 0.05836535 0.2838106 +18.10068 0.05836535 0.2838106 +24.30731 0.05836535 0.2838106 +32.64117 0.05836535 0.2838106 +43.83129 0.05836535 0.2838106 +58.85664 0.05836535 0.2838106 +-0.0175068 0.08132997 0.2838106 +-0.01161267 0.08132997 0.2838106 +-0.005718534 0.08132997 0.2838106 +0.0001755984 0.08132997 0.2838106 +0.006069731 0.08132997 0.2838106 +0.01197402 0.08132997 0.2838106 +0.01903886 0.08132997 0.2838106 +0.02852504 0.08132997 0.2838106 +0.04126244 0.08132997 0.2838106 +0.05836535 0.08132997 0.2838106 +0.08132997 0.08132997 0.2838106 +0.1121653 0.08132997 0.2838106 +0.1535689 0.08132997 0.2838106 +0.2091628 0.08132997 0.2838106 +0.2838106 0.08132997 0.2838106 +0.3840425 0.08132997 0.2838106 +0.518627 0.08132997 0.2838106 +0.6993381 0.08132997 0.2838106 +0.9419845 0.08132997 0.2838106 +1.267794 0.08132997 0.2838106 +1.705268 0.08132997 0.2838106 +2.292679 0.08132997 0.2838106 +3.081414 0.08132997 0.2838106 +4.140474 0.08132997 0.2838106 +5.562508 0.08132997 0.2838106 +7.471917 0.08132997 0.2838106 +10.03574 0.08132997 0.2838106 +13.47828 0.08132997 0.2838106 +18.10068 0.08132997 0.2838106 +24.30731 0.08132997 0.2838106 +32.64117 0.08132997 0.2838106 +43.83129 0.08132997 0.2838106 +58.85664 0.08132997 0.2838106 +-0.0175068 0.1121653 0.2838106 +-0.01161267 0.1121653 0.2838106 +-0.005718534 0.1121653 0.2838106 +0.0001755984 0.1121653 0.2838106 +0.006069731 0.1121653 0.2838106 +0.01197402 0.1121653 0.2838106 +0.01903886 0.1121653 0.2838106 +0.02852504 0.1121653 0.2838106 +0.04126244 0.1121653 0.2838106 +0.05836535 0.1121653 0.2838106 +0.08132997 0.1121653 0.2838106 +0.1121653 0.1121653 0.2838106 +0.1535689 0.1121653 0.2838106 +0.2091628 0.1121653 0.2838106 +0.2838106 0.1121653 0.2838106 +0.3840425 0.1121653 0.2838106 +0.518627 0.1121653 0.2838106 +0.6993381 0.1121653 0.2838106 +0.9419845 0.1121653 0.2838106 +1.267794 0.1121653 0.2838106 +1.705268 0.1121653 0.2838106 +2.292679 0.1121653 0.2838106 +3.081414 0.1121653 0.2838106 +4.140474 0.1121653 0.2838106 +5.562508 0.1121653 0.2838106 +7.471917 0.1121653 0.2838106 +10.03574 0.1121653 0.2838106 +13.47828 0.1121653 0.2838106 +18.10068 0.1121653 0.2838106 +24.30731 0.1121653 0.2838106 +32.64117 0.1121653 0.2838106 +43.83129 0.1121653 0.2838106 +58.85664 0.1121653 0.2838106 +-0.0175068 0.1535689 0.2838106 +-0.01161267 0.1535689 0.2838106 +-0.005718534 0.1535689 0.2838106 +0.0001755984 0.1535689 0.2838106 +0.006069731 0.1535689 0.2838106 +0.01197402 0.1535689 0.2838106 +0.01903886 0.1535689 0.2838106 +0.02852504 0.1535689 0.2838106 +0.04126244 0.1535689 0.2838106 +0.05836535 0.1535689 0.2838106 +0.08132997 0.1535689 0.2838106 +0.1121653 0.1535689 0.2838106 +0.1535689 0.1535689 0.2838106 +0.2091628 0.1535689 0.2838106 +0.2838106 0.1535689 0.2838106 +0.3840425 0.1535689 0.2838106 +0.518627 0.1535689 0.2838106 +0.6993381 0.1535689 0.2838106 +0.9419845 0.1535689 0.2838106 +1.267794 0.1535689 0.2838106 +1.705268 0.1535689 0.2838106 +2.292679 0.1535689 0.2838106 +3.081414 0.1535689 0.2838106 +4.140474 0.1535689 0.2838106 +5.562508 0.1535689 0.2838106 +7.471917 0.1535689 0.2838106 +10.03574 0.1535689 0.2838106 +13.47828 0.1535689 0.2838106 +18.10068 0.1535689 0.2838106 +24.30731 0.1535689 0.2838106 +32.64117 0.1535689 0.2838106 +43.83129 0.1535689 0.2838106 +58.85664 0.1535689 0.2838106 +-0.0175068 0.2091628 0.2838106 +-0.01161267 0.2091628 0.2838106 +-0.005718534 0.2091628 0.2838106 +0.0001755984 0.2091628 0.2838106 +0.006069731 0.2091628 0.2838106 +0.01197402 0.2091628 0.2838106 +0.01903886 0.2091628 0.2838106 +0.02852504 0.2091628 0.2838106 +0.04126244 0.2091628 0.2838106 +0.05836535 0.2091628 0.2838106 +0.08132997 0.2091628 0.2838106 +0.1121653 0.2091628 0.2838106 +0.1535689 0.2091628 0.2838106 +0.2091628 0.2091628 0.2838106 +0.2838106 0.2091628 0.2838106 +0.3840425 0.2091628 0.2838106 +0.518627 0.2091628 0.2838106 +0.6993381 0.2091628 0.2838106 +0.9419845 0.2091628 0.2838106 +1.267794 0.2091628 0.2838106 +1.705268 0.2091628 0.2838106 +2.292679 0.2091628 0.2838106 +3.081414 0.2091628 0.2838106 +4.140474 0.2091628 0.2838106 +5.562508 0.2091628 0.2838106 +7.471917 0.2091628 0.2838106 +10.03574 0.2091628 0.2838106 +13.47828 0.2091628 0.2838106 +18.10068 0.2091628 0.2838106 +24.30731 0.2091628 0.2838106 +32.64117 0.2091628 0.2838106 +43.83129 0.2091628 0.2838106 +58.85664 0.2091628 0.2838106 +-0.0175068 0.2838106 0.2838106 +-0.01161267 0.2838106 0.2838106 +-0.005718534 0.2838106 0.2838106 +0.0001755984 0.2838106 0.2838106 +0.006069731 0.2838106 0.2838106 +0.01197402 0.2838106 0.2838106 +0.01903886 0.2838106 0.2838106 +0.02852504 0.2838106 0.2838106 +0.04126244 0.2838106 0.2838106 +0.05836535 0.2838106 0.2838106 +0.08132997 0.2838106 0.2838106 +0.1121653 0.2838106 0.2838106 +0.1535689 0.2838106 0.2838106 +0.2091628 0.2838106 0.2838106 +0.2838106 0.2838106 0.2838106 +0.3840425 0.2838106 0.2838106 +0.518627 0.2838106 0.2838106 +0.6993381 0.2838106 0.2838106 +0.9419845 0.2838106 0.2838106 +1.267794 0.2838106 0.2838106 +1.705268 0.2838106 0.2838106 +2.292679 0.2838106 0.2838106 +3.081414 0.2838106 0.2838106 +4.140474 0.2838106 0.2838106 +5.562508 0.2838106 0.2838106 +7.471917 0.2838106 0.2838106 +10.03574 0.2838106 0.2838106 +13.47828 0.2838106 0.2838106 +18.10068 0.2838106 0.2838106 +24.30731 0.2838106 0.2838106 +32.64117 0.2838106 0.2838106 +43.83129 0.2838106 0.2838106 +58.85664 0.2838106 0.2838106 +-0.0175068 0.3840425 0.2838106 +-0.01161267 0.3840425 0.2838106 +-0.005718534 0.3840425 0.2838106 +0.0001755984 0.3840425 0.2838106 +0.006069731 0.3840425 0.2838106 +0.01197402 0.3840425 0.2838106 +0.01903886 0.3840425 0.2838106 +0.02852504 0.3840425 0.2838106 +0.04126244 0.3840425 0.2838106 +0.05836535 0.3840425 0.2838106 +0.08132997 0.3840425 0.2838106 +0.1121653 0.3840425 0.2838106 +0.1535689 0.3840425 0.2838106 +0.2091628 0.3840425 0.2838106 +0.2838106 0.3840425 0.2838106 +0.3840425 0.3840425 0.2838106 +0.518627 0.3840425 0.2838106 +0.6993381 0.3840425 0.2838106 +0.9419845 0.3840425 0.2838106 +1.267794 0.3840425 0.2838106 +1.705268 0.3840425 0.2838106 +2.292679 0.3840425 0.2838106 +3.081414 0.3840425 0.2838106 +4.140474 0.3840425 0.2838106 +5.562508 0.3840425 0.2838106 +7.471917 0.3840425 0.2838106 +10.03574 0.3840425 0.2838106 +13.47828 0.3840425 0.2838106 +18.10068 0.3840425 0.2838106 +24.30731 0.3840425 0.2838106 +32.64117 0.3840425 0.2838106 +43.83129 0.3840425 0.2838106 +58.85664 0.3840425 0.2838106 +-0.0175068 0.518627 0.2838106 +-0.01161267 0.518627 0.2838106 +-0.005718534 0.518627 0.2838106 +0.0001755984 0.518627 0.2838106 +0.006069731 0.518627 0.2838106 +0.01197402 0.518627 0.2838106 +0.01903886 0.518627 0.2838106 +0.02852504 0.518627 0.2838106 +0.04126244 0.518627 0.2838106 +0.05836535 0.518627 0.2838106 +0.08132997 0.518627 0.2838106 +0.1121653 0.518627 0.2838106 +0.1535689 0.518627 0.2838106 +0.2091628 0.518627 0.2838106 +0.2838106 0.518627 0.2838106 +0.3840425 0.518627 0.2838106 +0.518627 0.518627 0.2838106 +0.6993381 0.518627 0.2838106 +0.9419845 0.518627 0.2838106 +1.267794 0.518627 0.2838106 +1.705268 0.518627 0.2838106 +2.292679 0.518627 0.2838106 +3.081414 0.518627 0.2838106 +4.140474 0.518627 0.2838106 +5.562508 0.518627 0.2838106 +7.471917 0.518627 0.2838106 +10.03574 0.518627 0.2838106 +13.47828 0.518627 0.2838106 +18.10068 0.518627 0.2838106 +24.30731 0.518627 0.2838106 +32.64117 0.518627 0.2838106 +43.83129 0.518627 0.2838106 +58.85664 0.518627 0.2838106 +-0.0175068 0.6993381 0.2838106 +-0.01161267 0.6993381 0.2838106 +-0.005718534 0.6993381 0.2838106 +0.0001755984 0.6993381 0.2838106 +0.006069731 0.6993381 0.2838106 +0.01197402 0.6993381 0.2838106 +0.01903886 0.6993381 0.2838106 +0.02852504 0.6993381 0.2838106 +0.04126244 0.6993381 0.2838106 +0.05836535 0.6993381 0.2838106 +0.08132997 0.6993381 0.2838106 +0.1121653 0.6993381 0.2838106 +0.1535689 0.6993381 0.2838106 +0.2091628 0.6993381 0.2838106 +0.2838106 0.6993381 0.2838106 +0.3840425 0.6993381 0.2838106 +0.518627 0.6993381 0.2838106 +0.6993381 0.6993381 0.2838106 +0.9419845 0.6993381 0.2838106 +1.267794 0.6993381 0.2838106 +1.705268 0.6993381 0.2838106 +2.292679 0.6993381 0.2838106 +3.081414 0.6993381 0.2838106 +4.140474 0.6993381 0.2838106 +5.562508 0.6993381 0.2838106 +7.471917 0.6993381 0.2838106 +10.03574 0.6993381 0.2838106 +13.47828 0.6993381 0.2838106 +18.10068 0.6993381 0.2838106 +24.30731 0.6993381 0.2838106 +32.64117 0.6993381 0.2838106 +43.83129 0.6993381 0.2838106 +58.85664 0.6993381 0.2838106 +-0.0175068 0.9419845 0.2838106 +-0.01161267 0.9419845 0.2838106 +-0.005718534 0.9419845 0.2838106 +0.0001755984 0.9419845 0.2838106 +0.006069731 0.9419845 0.2838106 +0.01197402 0.9419845 0.2838106 +0.01903886 0.9419845 0.2838106 +0.02852504 0.9419845 0.2838106 +0.04126244 0.9419845 0.2838106 +0.05836535 0.9419845 0.2838106 +0.08132997 0.9419845 0.2838106 +0.1121653 0.9419845 0.2838106 +0.1535689 0.9419845 0.2838106 +0.2091628 0.9419845 0.2838106 +0.2838106 0.9419845 0.2838106 +0.3840425 0.9419845 0.2838106 +0.518627 0.9419845 0.2838106 +0.6993381 0.9419845 0.2838106 +0.9419845 0.9419845 0.2838106 +1.267794 0.9419845 0.2838106 +1.705268 0.9419845 0.2838106 +2.292679 0.9419845 0.2838106 +3.081414 0.9419845 0.2838106 +4.140474 0.9419845 0.2838106 +5.562508 0.9419845 0.2838106 +7.471917 0.9419845 0.2838106 +10.03574 0.9419845 0.2838106 +13.47828 0.9419845 0.2838106 +18.10068 0.9419845 0.2838106 +24.30731 0.9419845 0.2838106 +32.64117 0.9419845 0.2838106 +43.83129 0.9419845 0.2838106 +58.85664 0.9419845 0.2838106 +-0.0175068 1.267794 0.2838106 +-0.01161267 1.267794 0.2838106 +-0.005718534 1.267794 0.2838106 +0.0001755984 1.267794 0.2838106 +0.006069731 1.267794 0.2838106 +0.01197402 1.267794 0.2838106 +0.01903886 1.267794 0.2838106 +0.02852504 1.267794 0.2838106 +0.04126244 1.267794 0.2838106 +0.05836535 1.267794 0.2838106 +0.08132997 1.267794 0.2838106 +0.1121653 1.267794 0.2838106 +0.1535689 1.267794 0.2838106 +0.2091628 1.267794 0.2838106 +0.2838106 1.267794 0.2838106 +0.3840425 1.267794 0.2838106 +0.518627 1.267794 0.2838106 +0.6993381 1.267794 0.2838106 +0.9419845 1.267794 0.2838106 +1.267794 1.267794 0.2838106 +1.705268 1.267794 0.2838106 +2.292679 1.267794 0.2838106 +3.081414 1.267794 0.2838106 +4.140474 1.267794 0.2838106 +5.562508 1.267794 0.2838106 +7.471917 1.267794 0.2838106 +10.03574 1.267794 0.2838106 +13.47828 1.267794 0.2838106 +18.10068 1.267794 0.2838106 +24.30731 1.267794 0.2838106 +32.64117 1.267794 0.2838106 +43.83129 1.267794 0.2838106 +58.85664 1.267794 0.2838106 +-0.0175068 1.705268 0.2838106 +-0.01161267 1.705268 0.2838106 +-0.005718534 1.705268 0.2838106 +0.0001755984 1.705268 0.2838106 +0.006069731 1.705268 0.2838106 +0.01197402 1.705268 0.2838106 +0.01903886 1.705268 0.2838106 +0.02852504 1.705268 0.2838106 +0.04126244 1.705268 0.2838106 +0.05836535 1.705268 0.2838106 +0.08132997 1.705268 0.2838106 +0.1121653 1.705268 0.2838106 +0.1535689 1.705268 0.2838106 +0.2091628 1.705268 0.2838106 +0.2838106 1.705268 0.2838106 +0.3840425 1.705268 0.2838106 +0.518627 1.705268 0.2838106 +0.6993381 1.705268 0.2838106 +0.9419845 1.705268 0.2838106 +1.267794 1.705268 0.2838106 +1.705268 1.705268 0.2838106 +2.292679 1.705268 0.2838106 +3.081414 1.705268 0.2838106 +4.140474 1.705268 0.2838106 +5.562508 1.705268 0.2838106 +7.471917 1.705268 0.2838106 +10.03574 1.705268 0.2838106 +13.47828 1.705268 0.2838106 +18.10068 1.705268 0.2838106 +24.30731 1.705268 0.2838106 +32.64117 1.705268 0.2838106 +43.83129 1.705268 0.2838106 +58.85664 1.705268 0.2838106 +-0.0175068 2.292679 0.2838106 +-0.01161267 2.292679 0.2838106 +-0.005718534 2.292679 0.2838106 +0.0001755984 2.292679 0.2838106 +0.006069731 2.292679 0.2838106 +0.01197402 2.292679 0.2838106 +0.01903886 2.292679 0.2838106 +0.02852504 2.292679 0.2838106 +0.04126244 2.292679 0.2838106 +0.05836535 2.292679 0.2838106 +0.08132997 2.292679 0.2838106 +0.1121653 2.292679 0.2838106 +0.1535689 2.292679 0.2838106 +0.2091628 2.292679 0.2838106 +0.2838106 2.292679 0.2838106 +0.3840425 2.292679 0.2838106 +0.518627 2.292679 0.2838106 +0.6993381 2.292679 0.2838106 +0.9419845 2.292679 0.2838106 +1.267794 2.292679 0.2838106 +1.705268 2.292679 0.2838106 +2.292679 2.292679 0.2838106 +3.081414 2.292679 0.2838106 +4.140474 2.292679 0.2838106 +5.562508 2.292679 0.2838106 +7.471917 2.292679 0.2838106 +10.03574 2.292679 0.2838106 +13.47828 2.292679 0.2838106 +18.10068 2.292679 0.2838106 +24.30731 2.292679 0.2838106 +32.64117 2.292679 0.2838106 +43.83129 2.292679 0.2838106 +58.85664 2.292679 0.2838106 +-0.0175068 3.081414 0.2838106 +-0.01161267 3.081414 0.2838106 +-0.005718534 3.081414 0.2838106 +0.0001755984 3.081414 0.2838106 +0.006069731 3.081414 0.2838106 +0.01197402 3.081414 0.2838106 +0.01903886 3.081414 0.2838106 +0.02852504 3.081414 0.2838106 +0.04126244 3.081414 0.2838106 +0.05836535 3.081414 0.2838106 +0.08132997 3.081414 0.2838106 +0.1121653 3.081414 0.2838106 +0.1535689 3.081414 0.2838106 +0.2091628 3.081414 0.2838106 +0.2838106 3.081414 0.2838106 +0.3840425 3.081414 0.2838106 +0.518627 3.081414 0.2838106 +0.6993381 3.081414 0.2838106 +0.9419845 3.081414 0.2838106 +1.267794 3.081414 0.2838106 +1.705268 3.081414 0.2838106 +2.292679 3.081414 0.2838106 +3.081414 3.081414 0.2838106 +4.140474 3.081414 0.2838106 +5.562508 3.081414 0.2838106 +7.471917 3.081414 0.2838106 +10.03574 3.081414 0.2838106 +13.47828 3.081414 0.2838106 +18.10068 3.081414 0.2838106 +24.30731 3.081414 0.2838106 +32.64117 3.081414 0.2838106 +43.83129 3.081414 0.2838106 +58.85664 3.081414 0.2838106 +-0.0175068 4.140474 0.2838106 +-0.01161267 4.140474 0.2838106 +-0.005718534 4.140474 0.2838106 +0.0001755984 4.140474 0.2838106 +0.006069731 4.140474 0.2838106 +0.01197402 4.140474 0.2838106 +0.01903886 4.140474 0.2838106 +0.02852504 4.140474 0.2838106 +0.04126244 4.140474 0.2838106 +0.05836535 4.140474 0.2838106 +0.08132997 4.140474 0.2838106 +0.1121653 4.140474 0.2838106 +0.1535689 4.140474 0.2838106 +0.2091628 4.140474 0.2838106 +0.2838106 4.140474 0.2838106 +0.3840425 4.140474 0.2838106 +0.518627 4.140474 0.2838106 +0.6993381 4.140474 0.2838106 +0.9419845 4.140474 0.2838106 +1.267794 4.140474 0.2838106 +1.705268 4.140474 0.2838106 +2.292679 4.140474 0.2838106 +3.081414 4.140474 0.2838106 +4.140474 4.140474 0.2838106 +5.562508 4.140474 0.2838106 +7.471917 4.140474 0.2838106 +10.03574 4.140474 0.2838106 +13.47828 4.140474 0.2838106 +18.10068 4.140474 0.2838106 +24.30731 4.140474 0.2838106 +32.64117 4.140474 0.2838106 +43.83129 4.140474 0.2838106 +58.85664 4.140474 0.2838106 +-0.0175068 5.562508 0.2838106 +-0.01161267 5.562508 0.2838106 +-0.005718534 5.562508 0.2838106 +0.0001755984 5.562508 0.2838106 +0.006069731 5.562508 0.2838106 +0.01197402 5.562508 0.2838106 +0.01903886 5.562508 0.2838106 +0.02852504 5.562508 0.2838106 +0.04126244 5.562508 0.2838106 +0.05836535 5.562508 0.2838106 +0.08132997 5.562508 0.2838106 +0.1121653 5.562508 0.2838106 +0.1535689 5.562508 0.2838106 +0.2091628 5.562508 0.2838106 +0.2838106 5.562508 0.2838106 +0.3840425 5.562508 0.2838106 +0.518627 5.562508 0.2838106 +0.6993381 5.562508 0.2838106 +0.9419845 5.562508 0.2838106 +1.267794 5.562508 0.2838106 +1.705268 5.562508 0.2838106 +2.292679 5.562508 0.2838106 +3.081414 5.562508 0.2838106 +4.140474 5.562508 0.2838106 +5.562508 5.562508 0.2838106 +7.471917 5.562508 0.2838106 +10.03574 5.562508 0.2838106 +13.47828 5.562508 0.2838106 +18.10068 5.562508 0.2838106 +24.30731 5.562508 0.2838106 +32.64117 5.562508 0.2838106 +43.83129 5.562508 0.2838106 +58.85664 5.562508 0.2838106 +-0.0175068 7.471917 0.2838106 +-0.01161267 7.471917 0.2838106 +-0.005718534 7.471917 0.2838106 +0.0001755984 7.471917 0.2838106 +0.006069731 7.471917 0.2838106 +0.01197402 7.471917 0.2838106 +0.01903886 7.471917 0.2838106 +0.02852504 7.471917 0.2838106 +0.04126244 7.471917 0.2838106 +0.05836535 7.471917 0.2838106 +0.08132997 7.471917 0.2838106 +0.1121653 7.471917 0.2838106 +0.1535689 7.471917 0.2838106 +0.2091628 7.471917 0.2838106 +0.2838106 7.471917 0.2838106 +0.3840425 7.471917 0.2838106 +0.518627 7.471917 0.2838106 +0.6993381 7.471917 0.2838106 +0.9419845 7.471917 0.2838106 +1.267794 7.471917 0.2838106 +1.705268 7.471917 0.2838106 +2.292679 7.471917 0.2838106 +3.081414 7.471917 0.2838106 +4.140474 7.471917 0.2838106 +5.562508 7.471917 0.2838106 +7.471917 7.471917 0.2838106 +10.03574 7.471917 0.2838106 +13.47828 7.471917 0.2838106 +18.10068 7.471917 0.2838106 +24.30731 7.471917 0.2838106 +32.64117 7.471917 0.2838106 +43.83129 7.471917 0.2838106 +58.85664 7.471917 0.2838106 +-0.0175068 10.03574 0.2838106 +-0.01161267 10.03574 0.2838106 +-0.005718534 10.03574 0.2838106 +0.0001755984 10.03574 0.2838106 +0.006069731 10.03574 0.2838106 +0.01197402 10.03574 0.2838106 +0.01903886 10.03574 0.2838106 +0.02852504 10.03574 0.2838106 +0.04126244 10.03574 0.2838106 +0.05836535 10.03574 0.2838106 +0.08132997 10.03574 0.2838106 +0.1121653 10.03574 0.2838106 +0.1535689 10.03574 0.2838106 +0.2091628 10.03574 0.2838106 +0.2838106 10.03574 0.2838106 +0.3840425 10.03574 0.2838106 +0.518627 10.03574 0.2838106 +0.6993381 10.03574 0.2838106 +0.9419845 10.03574 0.2838106 +1.267794 10.03574 0.2838106 +1.705268 10.03574 0.2838106 +2.292679 10.03574 0.2838106 +3.081414 10.03574 0.2838106 +4.140474 10.03574 0.2838106 +5.562508 10.03574 0.2838106 +7.471917 10.03574 0.2838106 +10.03574 10.03574 0.2838106 +13.47828 10.03574 0.2838106 +18.10068 10.03574 0.2838106 +24.30731 10.03574 0.2838106 +32.64117 10.03574 0.2838106 +43.83129 10.03574 0.2838106 +58.85664 10.03574 0.2838106 +-0.0175068 13.47828 0.2838106 +-0.01161267 13.47828 0.2838106 +-0.005718534 13.47828 0.2838106 +0.0001755984 13.47828 0.2838106 +0.006069731 13.47828 0.2838106 +0.01197402 13.47828 0.2838106 +0.01903886 13.47828 0.2838106 +0.02852504 13.47828 0.2838106 +0.04126244 13.47828 0.2838106 +0.05836535 13.47828 0.2838106 +0.08132997 13.47828 0.2838106 +0.1121653 13.47828 0.2838106 +0.1535689 13.47828 0.2838106 +0.2091628 13.47828 0.2838106 +0.2838106 13.47828 0.2838106 +0.3840425 13.47828 0.2838106 +0.518627 13.47828 0.2838106 +0.6993381 13.47828 0.2838106 +0.9419845 13.47828 0.2838106 +1.267794 13.47828 0.2838106 +1.705268 13.47828 0.2838106 +2.292679 13.47828 0.2838106 +3.081414 13.47828 0.2838106 +4.140474 13.47828 0.2838106 +5.562508 13.47828 0.2838106 +7.471917 13.47828 0.2838106 +10.03574 13.47828 0.2838106 +13.47828 13.47828 0.2838106 +18.10068 13.47828 0.2838106 +24.30731 13.47828 0.2838106 +32.64117 13.47828 0.2838106 +43.83129 13.47828 0.2838106 +58.85664 13.47828 0.2838106 +-0.0175068 18.10068 0.2838106 +-0.01161267 18.10068 0.2838106 +-0.005718534 18.10068 0.2838106 +0.0001755984 18.10068 0.2838106 +0.006069731 18.10068 0.2838106 +0.01197402 18.10068 0.2838106 +0.01903886 18.10068 0.2838106 +0.02852504 18.10068 0.2838106 +0.04126244 18.10068 0.2838106 +0.05836535 18.10068 0.2838106 +0.08132997 18.10068 0.2838106 +0.1121653 18.10068 0.2838106 +0.1535689 18.10068 0.2838106 +0.2091628 18.10068 0.2838106 +0.2838106 18.10068 0.2838106 +0.3840425 18.10068 0.2838106 +0.518627 18.10068 0.2838106 +0.6993381 18.10068 0.2838106 +0.9419845 18.10068 0.2838106 +1.267794 18.10068 0.2838106 +1.705268 18.10068 0.2838106 +2.292679 18.10068 0.2838106 +3.081414 18.10068 0.2838106 +4.140474 18.10068 0.2838106 +5.562508 18.10068 0.2838106 +7.471917 18.10068 0.2838106 +10.03574 18.10068 0.2838106 +13.47828 18.10068 0.2838106 +18.10068 18.10068 0.2838106 +24.30731 18.10068 0.2838106 +32.64117 18.10068 0.2838106 +43.83129 18.10068 0.2838106 +58.85664 18.10068 0.2838106 +-0.0175068 24.30731 0.2838106 +-0.01161267 24.30731 0.2838106 +-0.005718534 24.30731 0.2838106 +0.0001755984 24.30731 0.2838106 +0.006069731 24.30731 0.2838106 +0.01197402 24.30731 0.2838106 +0.01903886 24.30731 0.2838106 +0.02852504 24.30731 0.2838106 +0.04126244 24.30731 0.2838106 +0.05836535 24.30731 0.2838106 +0.08132997 24.30731 0.2838106 +0.1121653 24.30731 0.2838106 +0.1535689 24.30731 0.2838106 +0.2091628 24.30731 0.2838106 +0.2838106 24.30731 0.2838106 +0.3840425 24.30731 0.2838106 +0.518627 24.30731 0.2838106 +0.6993381 24.30731 0.2838106 +0.9419845 24.30731 0.2838106 +1.267794 24.30731 0.2838106 +1.705268 24.30731 0.2838106 +2.292679 24.30731 0.2838106 +3.081414 24.30731 0.2838106 +4.140474 24.30731 0.2838106 +5.562508 24.30731 0.2838106 +7.471917 24.30731 0.2838106 +10.03574 24.30731 0.2838106 +13.47828 24.30731 0.2838106 +18.10068 24.30731 0.2838106 +24.30731 24.30731 0.2838106 +32.64117 24.30731 0.2838106 +43.83129 24.30731 0.2838106 +58.85664 24.30731 0.2838106 +-0.0175068 32.64117 0.2838106 +-0.01161267 32.64117 0.2838106 +-0.005718534 32.64117 0.2838106 +0.0001755984 32.64117 0.2838106 +0.006069731 32.64117 0.2838106 +0.01197402 32.64117 0.2838106 +0.01903886 32.64117 0.2838106 +0.02852504 32.64117 0.2838106 +0.04126244 32.64117 0.2838106 +0.05836535 32.64117 0.2838106 +0.08132997 32.64117 0.2838106 +0.1121653 32.64117 0.2838106 +0.1535689 32.64117 0.2838106 +0.2091628 32.64117 0.2838106 +0.2838106 32.64117 0.2838106 +0.3840425 32.64117 0.2838106 +0.518627 32.64117 0.2838106 +0.6993381 32.64117 0.2838106 +0.9419845 32.64117 0.2838106 +1.267794 32.64117 0.2838106 +1.705268 32.64117 0.2838106 +2.292679 32.64117 0.2838106 +3.081414 32.64117 0.2838106 +4.140474 32.64117 0.2838106 +5.562508 32.64117 0.2838106 +7.471917 32.64117 0.2838106 +10.03574 32.64117 0.2838106 +13.47828 32.64117 0.2838106 +18.10068 32.64117 0.2838106 +24.30731 32.64117 0.2838106 +32.64117 32.64117 0.2838106 +43.83129 32.64117 0.2838106 +58.85664 32.64117 0.2838106 +-0.0175068 43.83129 0.2838106 +-0.01161267 43.83129 0.2838106 +-0.005718534 43.83129 0.2838106 +0.0001755984 43.83129 0.2838106 +0.006069731 43.83129 0.2838106 +0.01197402 43.83129 0.2838106 +0.01903886 43.83129 0.2838106 +0.02852504 43.83129 0.2838106 +0.04126244 43.83129 0.2838106 +0.05836535 43.83129 0.2838106 +0.08132997 43.83129 0.2838106 +0.1121653 43.83129 0.2838106 +0.1535689 43.83129 0.2838106 +0.2091628 43.83129 0.2838106 +0.2838106 43.83129 0.2838106 +0.3840425 43.83129 0.2838106 +0.518627 43.83129 0.2838106 +0.6993381 43.83129 0.2838106 +0.9419845 43.83129 0.2838106 +1.267794 43.83129 0.2838106 +1.705268 43.83129 0.2838106 +2.292679 43.83129 0.2838106 +3.081414 43.83129 0.2838106 +4.140474 43.83129 0.2838106 +5.562508 43.83129 0.2838106 +7.471917 43.83129 0.2838106 +10.03574 43.83129 0.2838106 +13.47828 43.83129 0.2838106 +18.10068 43.83129 0.2838106 +24.30731 43.83129 0.2838106 +32.64117 43.83129 0.2838106 +43.83129 43.83129 0.2838106 +58.85664 43.83129 0.2838106 +-0.0175068 58.85664 0.2838106 +-0.01161267 58.85664 0.2838106 +-0.005718534 58.85664 0.2838106 +0.0001755984 58.85664 0.2838106 +0.006069731 58.85664 0.2838106 +0.01197402 58.85664 0.2838106 +0.01903886 58.85664 0.2838106 +0.02852504 58.85664 0.2838106 +0.04126244 58.85664 0.2838106 +0.05836535 58.85664 0.2838106 +0.08132997 58.85664 0.2838106 +0.1121653 58.85664 0.2838106 +0.1535689 58.85664 0.2838106 +0.2091628 58.85664 0.2838106 +0.2838106 58.85664 0.2838106 +0.3840425 58.85664 0.2838106 +0.518627 58.85664 0.2838106 +0.6993381 58.85664 0.2838106 +0.9419845 58.85664 0.2838106 +1.267794 58.85664 0.2838106 +1.705268 58.85664 0.2838106 +2.292679 58.85664 0.2838106 +3.081414 58.85664 0.2838106 +4.140474 58.85664 0.2838106 +5.562508 58.85664 0.2838106 +7.471917 58.85664 0.2838106 +10.03574 58.85664 0.2838106 +13.47828 58.85664 0.2838106 +18.10068 58.85664 0.2838106 +24.30731 58.85664 0.2838106 +32.64117 58.85664 0.2838106 +43.83129 58.85664 0.2838106 +58.85664 58.85664 0.2838106 +-0.0175068 -0.0175068 0.3840425 +-0.01161267 -0.0175068 0.3840425 +-0.005718534 -0.0175068 0.3840425 +0.0001755984 -0.0175068 0.3840425 +0.006069731 -0.0175068 0.3840425 +0.01197402 -0.0175068 0.3840425 +0.01903886 -0.0175068 0.3840425 +0.02852504 -0.0175068 0.3840425 +0.04126244 -0.0175068 0.3840425 +0.05836535 -0.0175068 0.3840425 +0.08132997 -0.0175068 0.3840425 +0.1121653 -0.0175068 0.3840425 +0.1535689 -0.0175068 0.3840425 +0.2091628 -0.0175068 0.3840425 +0.2838106 -0.0175068 0.3840425 +0.3840425 -0.0175068 0.3840425 +0.518627 -0.0175068 0.3840425 +0.6993381 -0.0175068 0.3840425 +0.9419845 -0.0175068 0.3840425 +1.267794 -0.0175068 0.3840425 +1.705268 -0.0175068 0.3840425 +2.292679 -0.0175068 0.3840425 +3.081414 -0.0175068 0.3840425 +4.140474 -0.0175068 0.3840425 +5.562508 -0.0175068 0.3840425 +7.471917 -0.0175068 0.3840425 +10.03574 -0.0175068 0.3840425 +13.47828 -0.0175068 0.3840425 +18.10068 -0.0175068 0.3840425 +24.30731 -0.0175068 0.3840425 +32.64117 -0.0175068 0.3840425 +43.83129 -0.0175068 0.3840425 +58.85664 -0.0175068 0.3840425 +-0.0175068 -0.01161267 0.3840425 +-0.01161267 -0.01161267 0.3840425 +-0.005718534 -0.01161267 0.3840425 +0.0001755984 -0.01161267 0.3840425 +0.006069731 -0.01161267 0.3840425 +0.01197402 -0.01161267 0.3840425 +0.01903886 -0.01161267 0.3840425 +0.02852504 -0.01161267 0.3840425 +0.04126244 -0.01161267 0.3840425 +0.05836535 -0.01161267 0.3840425 +0.08132997 -0.01161267 0.3840425 +0.1121653 -0.01161267 0.3840425 +0.1535689 -0.01161267 0.3840425 +0.2091628 -0.01161267 0.3840425 +0.2838106 -0.01161267 0.3840425 +0.3840425 -0.01161267 0.3840425 +0.518627 -0.01161267 0.3840425 +0.6993381 -0.01161267 0.3840425 +0.9419845 -0.01161267 0.3840425 +1.267794 -0.01161267 0.3840425 +1.705268 -0.01161267 0.3840425 +2.292679 -0.01161267 0.3840425 +3.081414 -0.01161267 0.3840425 +4.140474 -0.01161267 0.3840425 +5.562508 -0.01161267 0.3840425 +7.471917 -0.01161267 0.3840425 +10.03574 -0.01161267 0.3840425 +13.47828 -0.01161267 0.3840425 +18.10068 -0.01161267 0.3840425 +24.30731 -0.01161267 0.3840425 +32.64117 -0.01161267 0.3840425 +43.83129 -0.01161267 0.3840425 +58.85664 -0.01161267 0.3840425 +-0.0175068 -0.005718534 0.3840425 +-0.01161267 -0.005718534 0.3840425 +-0.005718534 -0.005718534 0.3840425 +0.0001755984 -0.005718534 0.3840425 +0.006069731 -0.005718534 0.3840425 +0.01197402 -0.005718534 0.3840425 +0.01903886 -0.005718534 0.3840425 +0.02852504 -0.005718534 0.3840425 +0.04126244 -0.005718534 0.3840425 +0.05836535 -0.005718534 0.3840425 +0.08132997 -0.005718534 0.3840425 +0.1121653 -0.005718534 0.3840425 +0.1535689 -0.005718534 0.3840425 +0.2091628 -0.005718534 0.3840425 +0.2838106 -0.005718534 0.3840425 +0.3840425 -0.005718534 0.3840425 +0.518627 -0.005718534 0.3840425 +0.6993381 -0.005718534 0.3840425 +0.9419845 -0.005718534 0.3840425 +1.267794 -0.005718534 0.3840425 +1.705268 -0.005718534 0.3840425 +2.292679 -0.005718534 0.3840425 +3.081414 -0.005718534 0.3840425 +4.140474 -0.005718534 0.3840425 +5.562508 -0.005718534 0.3840425 +7.471917 -0.005718534 0.3840425 +10.03574 -0.005718534 0.3840425 +13.47828 -0.005718534 0.3840425 +18.10068 -0.005718534 0.3840425 +24.30731 -0.005718534 0.3840425 +32.64117 -0.005718534 0.3840425 +43.83129 -0.005718534 0.3840425 +58.85664 -0.005718534 0.3840425 +-0.0175068 0.0001755984 0.3840425 +-0.01161267 0.0001755984 0.3840425 +-0.005718534 0.0001755984 0.3840425 +0.0001755984 0.0001755984 0.3840425 +0.006069731 0.0001755984 0.3840425 +0.01197402 0.0001755984 0.3840425 +0.01903886 0.0001755984 0.3840425 +0.02852504 0.0001755984 0.3840425 +0.04126244 0.0001755984 0.3840425 +0.05836535 0.0001755984 0.3840425 +0.08132997 0.0001755984 0.3840425 +0.1121653 0.0001755984 0.3840425 +0.1535689 0.0001755984 0.3840425 +0.2091628 0.0001755984 0.3840425 +0.2838106 0.0001755984 0.3840425 +0.3840425 0.0001755984 0.3840425 +0.518627 0.0001755984 0.3840425 +0.6993381 0.0001755984 0.3840425 +0.9419845 0.0001755984 0.3840425 +1.267794 0.0001755984 0.3840425 +1.705268 0.0001755984 0.3840425 +2.292679 0.0001755984 0.3840425 +3.081414 0.0001755984 0.3840425 +4.140474 0.0001755984 0.3840425 +5.562508 0.0001755984 0.3840425 +7.471917 0.0001755984 0.3840425 +10.03574 0.0001755984 0.3840425 +13.47828 0.0001755984 0.3840425 +18.10068 0.0001755984 0.3840425 +24.30731 0.0001755984 0.3840425 +32.64117 0.0001755984 0.3840425 +43.83129 0.0001755984 0.3840425 +58.85664 0.0001755984 0.3840425 +-0.0175068 0.006069731 0.3840425 +-0.01161267 0.006069731 0.3840425 +-0.005718534 0.006069731 0.3840425 +0.0001755984 0.006069731 0.3840425 +0.006069731 0.006069731 0.3840425 +0.01197402 0.006069731 0.3840425 +0.01903886 0.006069731 0.3840425 +0.02852504 0.006069731 0.3840425 +0.04126244 0.006069731 0.3840425 +0.05836535 0.006069731 0.3840425 +0.08132997 0.006069731 0.3840425 +0.1121653 0.006069731 0.3840425 +0.1535689 0.006069731 0.3840425 +0.2091628 0.006069731 0.3840425 +0.2838106 0.006069731 0.3840425 +0.3840425 0.006069731 0.3840425 +0.518627 0.006069731 0.3840425 +0.6993381 0.006069731 0.3840425 +0.9419845 0.006069731 0.3840425 +1.267794 0.006069731 0.3840425 +1.705268 0.006069731 0.3840425 +2.292679 0.006069731 0.3840425 +3.081414 0.006069731 0.3840425 +4.140474 0.006069731 0.3840425 +5.562508 0.006069731 0.3840425 +7.471917 0.006069731 0.3840425 +10.03574 0.006069731 0.3840425 +13.47828 0.006069731 0.3840425 +18.10068 0.006069731 0.3840425 +24.30731 0.006069731 0.3840425 +32.64117 0.006069731 0.3840425 +43.83129 0.006069731 0.3840425 +58.85664 0.006069731 0.3840425 +-0.0175068 0.01197402 0.3840425 +-0.01161267 0.01197402 0.3840425 +-0.005718534 0.01197402 0.3840425 +0.0001755984 0.01197402 0.3840425 +0.006069731 0.01197402 0.3840425 +0.01197402 0.01197402 0.3840425 +0.01903886 0.01197402 0.3840425 +0.02852504 0.01197402 0.3840425 +0.04126244 0.01197402 0.3840425 +0.05836535 0.01197402 0.3840425 +0.08132997 0.01197402 0.3840425 +0.1121653 0.01197402 0.3840425 +0.1535689 0.01197402 0.3840425 +0.2091628 0.01197402 0.3840425 +0.2838106 0.01197402 0.3840425 +0.3840425 0.01197402 0.3840425 +0.518627 0.01197402 0.3840425 +0.6993381 0.01197402 0.3840425 +0.9419845 0.01197402 0.3840425 +1.267794 0.01197402 0.3840425 +1.705268 0.01197402 0.3840425 +2.292679 0.01197402 0.3840425 +3.081414 0.01197402 0.3840425 +4.140474 0.01197402 0.3840425 +5.562508 0.01197402 0.3840425 +7.471917 0.01197402 0.3840425 +10.03574 0.01197402 0.3840425 +13.47828 0.01197402 0.3840425 +18.10068 0.01197402 0.3840425 +24.30731 0.01197402 0.3840425 +32.64117 0.01197402 0.3840425 +43.83129 0.01197402 0.3840425 +58.85664 0.01197402 0.3840425 +-0.0175068 0.01903886 0.3840425 +-0.01161267 0.01903886 0.3840425 +-0.005718534 0.01903886 0.3840425 +0.0001755984 0.01903886 0.3840425 +0.006069731 0.01903886 0.3840425 +0.01197402 0.01903886 0.3840425 +0.01903886 0.01903886 0.3840425 +0.02852504 0.01903886 0.3840425 +0.04126244 0.01903886 0.3840425 +0.05836535 0.01903886 0.3840425 +0.08132997 0.01903886 0.3840425 +0.1121653 0.01903886 0.3840425 +0.1535689 0.01903886 0.3840425 +0.2091628 0.01903886 0.3840425 +0.2838106 0.01903886 0.3840425 +0.3840425 0.01903886 0.3840425 +0.518627 0.01903886 0.3840425 +0.6993381 0.01903886 0.3840425 +0.9419845 0.01903886 0.3840425 +1.267794 0.01903886 0.3840425 +1.705268 0.01903886 0.3840425 +2.292679 0.01903886 0.3840425 +3.081414 0.01903886 0.3840425 +4.140474 0.01903886 0.3840425 +5.562508 0.01903886 0.3840425 +7.471917 0.01903886 0.3840425 +10.03574 0.01903886 0.3840425 +13.47828 0.01903886 0.3840425 +18.10068 0.01903886 0.3840425 +24.30731 0.01903886 0.3840425 +32.64117 0.01903886 0.3840425 +43.83129 0.01903886 0.3840425 +58.85664 0.01903886 0.3840425 +-0.0175068 0.02852504 0.3840425 +-0.01161267 0.02852504 0.3840425 +-0.005718534 0.02852504 0.3840425 +0.0001755984 0.02852504 0.3840425 +0.006069731 0.02852504 0.3840425 +0.01197402 0.02852504 0.3840425 +0.01903886 0.02852504 0.3840425 +0.02852504 0.02852504 0.3840425 +0.04126244 0.02852504 0.3840425 +0.05836535 0.02852504 0.3840425 +0.08132997 0.02852504 0.3840425 +0.1121653 0.02852504 0.3840425 +0.1535689 0.02852504 0.3840425 +0.2091628 0.02852504 0.3840425 +0.2838106 0.02852504 0.3840425 +0.3840425 0.02852504 0.3840425 +0.518627 0.02852504 0.3840425 +0.6993381 0.02852504 0.3840425 +0.9419845 0.02852504 0.3840425 +1.267794 0.02852504 0.3840425 +1.705268 0.02852504 0.3840425 +2.292679 0.02852504 0.3840425 +3.081414 0.02852504 0.3840425 +4.140474 0.02852504 0.3840425 +5.562508 0.02852504 0.3840425 +7.471917 0.02852504 0.3840425 +10.03574 0.02852504 0.3840425 +13.47828 0.02852504 0.3840425 +18.10068 0.02852504 0.3840425 +24.30731 0.02852504 0.3840425 +32.64117 0.02852504 0.3840425 +43.83129 0.02852504 0.3840425 +58.85664 0.02852504 0.3840425 +-0.0175068 0.04126244 0.3840425 +-0.01161267 0.04126244 0.3840425 +-0.005718534 0.04126244 0.3840425 +0.0001755984 0.04126244 0.3840425 +0.006069731 0.04126244 0.3840425 +0.01197402 0.04126244 0.3840425 +0.01903886 0.04126244 0.3840425 +0.02852504 0.04126244 0.3840425 +0.04126244 0.04126244 0.3840425 +0.05836535 0.04126244 0.3840425 +0.08132997 0.04126244 0.3840425 +0.1121653 0.04126244 0.3840425 +0.1535689 0.04126244 0.3840425 +0.2091628 0.04126244 0.3840425 +0.2838106 0.04126244 0.3840425 +0.3840425 0.04126244 0.3840425 +0.518627 0.04126244 0.3840425 +0.6993381 0.04126244 0.3840425 +0.9419845 0.04126244 0.3840425 +1.267794 0.04126244 0.3840425 +1.705268 0.04126244 0.3840425 +2.292679 0.04126244 0.3840425 +3.081414 0.04126244 0.3840425 +4.140474 0.04126244 0.3840425 +5.562508 0.04126244 0.3840425 +7.471917 0.04126244 0.3840425 +10.03574 0.04126244 0.3840425 +13.47828 0.04126244 0.3840425 +18.10068 0.04126244 0.3840425 +24.30731 0.04126244 0.3840425 +32.64117 0.04126244 0.3840425 +43.83129 0.04126244 0.3840425 +58.85664 0.04126244 0.3840425 +-0.0175068 0.05836535 0.3840425 +-0.01161267 0.05836535 0.3840425 +-0.005718534 0.05836535 0.3840425 +0.0001755984 0.05836535 0.3840425 +0.006069731 0.05836535 0.3840425 +0.01197402 0.05836535 0.3840425 +0.01903886 0.05836535 0.3840425 +0.02852504 0.05836535 0.3840425 +0.04126244 0.05836535 0.3840425 +0.05836535 0.05836535 0.3840425 +0.08132997 0.05836535 0.3840425 +0.1121653 0.05836535 0.3840425 +0.1535689 0.05836535 0.3840425 +0.2091628 0.05836535 0.3840425 +0.2838106 0.05836535 0.3840425 +0.3840425 0.05836535 0.3840425 +0.518627 0.05836535 0.3840425 +0.6993381 0.05836535 0.3840425 +0.9419845 0.05836535 0.3840425 +1.267794 0.05836535 0.3840425 +1.705268 0.05836535 0.3840425 +2.292679 0.05836535 0.3840425 +3.081414 0.05836535 0.3840425 +4.140474 0.05836535 0.3840425 +5.562508 0.05836535 0.3840425 +7.471917 0.05836535 0.3840425 +10.03574 0.05836535 0.3840425 +13.47828 0.05836535 0.3840425 +18.10068 0.05836535 0.3840425 +24.30731 0.05836535 0.3840425 +32.64117 0.05836535 0.3840425 +43.83129 0.05836535 0.3840425 +58.85664 0.05836535 0.3840425 +-0.0175068 0.08132997 0.3840425 +-0.01161267 0.08132997 0.3840425 +-0.005718534 0.08132997 0.3840425 +0.0001755984 0.08132997 0.3840425 +0.006069731 0.08132997 0.3840425 +0.01197402 0.08132997 0.3840425 +0.01903886 0.08132997 0.3840425 +0.02852504 0.08132997 0.3840425 +0.04126244 0.08132997 0.3840425 +0.05836535 0.08132997 0.3840425 +0.08132997 0.08132997 0.3840425 +0.1121653 0.08132997 0.3840425 +0.1535689 0.08132997 0.3840425 +0.2091628 0.08132997 0.3840425 +0.2838106 0.08132997 0.3840425 +0.3840425 0.08132997 0.3840425 +0.518627 0.08132997 0.3840425 +0.6993381 0.08132997 0.3840425 +0.9419845 0.08132997 0.3840425 +1.267794 0.08132997 0.3840425 +1.705268 0.08132997 0.3840425 +2.292679 0.08132997 0.3840425 +3.081414 0.08132997 0.3840425 +4.140474 0.08132997 0.3840425 +5.562508 0.08132997 0.3840425 +7.471917 0.08132997 0.3840425 +10.03574 0.08132997 0.3840425 +13.47828 0.08132997 0.3840425 +18.10068 0.08132997 0.3840425 +24.30731 0.08132997 0.3840425 +32.64117 0.08132997 0.3840425 +43.83129 0.08132997 0.3840425 +58.85664 0.08132997 0.3840425 +-0.0175068 0.1121653 0.3840425 +-0.01161267 0.1121653 0.3840425 +-0.005718534 0.1121653 0.3840425 +0.0001755984 0.1121653 0.3840425 +0.006069731 0.1121653 0.3840425 +0.01197402 0.1121653 0.3840425 +0.01903886 0.1121653 0.3840425 +0.02852504 0.1121653 0.3840425 +0.04126244 0.1121653 0.3840425 +0.05836535 0.1121653 0.3840425 +0.08132997 0.1121653 0.3840425 +0.1121653 0.1121653 0.3840425 +0.1535689 0.1121653 0.3840425 +0.2091628 0.1121653 0.3840425 +0.2838106 0.1121653 0.3840425 +0.3840425 0.1121653 0.3840425 +0.518627 0.1121653 0.3840425 +0.6993381 0.1121653 0.3840425 +0.9419845 0.1121653 0.3840425 +1.267794 0.1121653 0.3840425 +1.705268 0.1121653 0.3840425 +2.292679 0.1121653 0.3840425 +3.081414 0.1121653 0.3840425 +4.140474 0.1121653 0.3840425 +5.562508 0.1121653 0.3840425 +7.471917 0.1121653 0.3840425 +10.03574 0.1121653 0.3840425 +13.47828 0.1121653 0.3840425 +18.10068 0.1121653 0.3840425 +24.30731 0.1121653 0.3840425 +32.64117 0.1121653 0.3840425 +43.83129 0.1121653 0.3840425 +58.85664 0.1121653 0.3840425 +-0.0175068 0.1535689 0.3840425 +-0.01161267 0.1535689 0.3840425 +-0.005718534 0.1535689 0.3840425 +0.0001755984 0.1535689 0.3840425 +0.006069731 0.1535689 0.3840425 +0.01197402 0.1535689 0.3840425 +0.01903886 0.1535689 0.3840425 +0.02852504 0.1535689 0.3840425 +0.04126244 0.1535689 0.3840425 +0.05836535 0.1535689 0.3840425 +0.08132997 0.1535689 0.3840425 +0.1121653 0.1535689 0.3840425 +0.1535689 0.1535689 0.3840425 +0.2091628 0.1535689 0.3840425 +0.2838106 0.1535689 0.3840425 +0.3840425 0.1535689 0.3840425 +0.518627 0.1535689 0.3840425 +0.6993381 0.1535689 0.3840425 +0.9419845 0.1535689 0.3840425 +1.267794 0.1535689 0.3840425 +1.705268 0.1535689 0.3840425 +2.292679 0.1535689 0.3840425 +3.081414 0.1535689 0.3840425 +4.140474 0.1535689 0.3840425 +5.562508 0.1535689 0.3840425 +7.471917 0.1535689 0.3840425 +10.03574 0.1535689 0.3840425 +13.47828 0.1535689 0.3840425 +18.10068 0.1535689 0.3840425 +24.30731 0.1535689 0.3840425 +32.64117 0.1535689 0.3840425 +43.83129 0.1535689 0.3840425 +58.85664 0.1535689 0.3840425 +-0.0175068 0.2091628 0.3840425 +-0.01161267 0.2091628 0.3840425 +-0.005718534 0.2091628 0.3840425 +0.0001755984 0.2091628 0.3840425 +0.006069731 0.2091628 0.3840425 +0.01197402 0.2091628 0.3840425 +0.01903886 0.2091628 0.3840425 +0.02852504 0.2091628 0.3840425 +0.04126244 0.2091628 0.3840425 +0.05836535 0.2091628 0.3840425 +0.08132997 0.2091628 0.3840425 +0.1121653 0.2091628 0.3840425 +0.1535689 0.2091628 0.3840425 +0.2091628 0.2091628 0.3840425 +0.2838106 0.2091628 0.3840425 +0.3840425 0.2091628 0.3840425 +0.518627 0.2091628 0.3840425 +0.6993381 0.2091628 0.3840425 +0.9419845 0.2091628 0.3840425 +1.267794 0.2091628 0.3840425 +1.705268 0.2091628 0.3840425 +2.292679 0.2091628 0.3840425 +3.081414 0.2091628 0.3840425 +4.140474 0.2091628 0.3840425 +5.562508 0.2091628 0.3840425 +7.471917 0.2091628 0.3840425 +10.03574 0.2091628 0.3840425 +13.47828 0.2091628 0.3840425 +18.10068 0.2091628 0.3840425 +24.30731 0.2091628 0.3840425 +32.64117 0.2091628 0.3840425 +43.83129 0.2091628 0.3840425 +58.85664 0.2091628 0.3840425 +-0.0175068 0.2838106 0.3840425 +-0.01161267 0.2838106 0.3840425 +-0.005718534 0.2838106 0.3840425 +0.0001755984 0.2838106 0.3840425 +0.006069731 0.2838106 0.3840425 +0.01197402 0.2838106 0.3840425 +0.01903886 0.2838106 0.3840425 +0.02852504 0.2838106 0.3840425 +0.04126244 0.2838106 0.3840425 +0.05836535 0.2838106 0.3840425 +0.08132997 0.2838106 0.3840425 +0.1121653 0.2838106 0.3840425 +0.1535689 0.2838106 0.3840425 +0.2091628 0.2838106 0.3840425 +0.2838106 0.2838106 0.3840425 +0.3840425 0.2838106 0.3840425 +0.518627 0.2838106 0.3840425 +0.6993381 0.2838106 0.3840425 +0.9419845 0.2838106 0.3840425 +1.267794 0.2838106 0.3840425 +1.705268 0.2838106 0.3840425 +2.292679 0.2838106 0.3840425 +3.081414 0.2838106 0.3840425 +4.140474 0.2838106 0.3840425 +5.562508 0.2838106 0.3840425 +7.471917 0.2838106 0.3840425 +10.03574 0.2838106 0.3840425 +13.47828 0.2838106 0.3840425 +18.10068 0.2838106 0.3840425 +24.30731 0.2838106 0.3840425 +32.64117 0.2838106 0.3840425 +43.83129 0.2838106 0.3840425 +58.85664 0.2838106 0.3840425 +-0.0175068 0.3840425 0.3840425 +-0.01161267 0.3840425 0.3840425 +-0.005718534 0.3840425 0.3840425 +0.0001755984 0.3840425 0.3840425 +0.006069731 0.3840425 0.3840425 +0.01197402 0.3840425 0.3840425 +0.01903886 0.3840425 0.3840425 +0.02852504 0.3840425 0.3840425 +0.04126244 0.3840425 0.3840425 +0.05836535 0.3840425 0.3840425 +0.08132997 0.3840425 0.3840425 +0.1121653 0.3840425 0.3840425 +0.1535689 0.3840425 0.3840425 +0.2091628 0.3840425 0.3840425 +0.2838106 0.3840425 0.3840425 +0.3840425 0.3840425 0.3840425 +0.518627 0.3840425 0.3840425 +0.6993381 0.3840425 0.3840425 +0.9419845 0.3840425 0.3840425 +1.267794 0.3840425 0.3840425 +1.705268 0.3840425 0.3840425 +2.292679 0.3840425 0.3840425 +3.081414 0.3840425 0.3840425 +4.140474 0.3840425 0.3840425 +5.562508 0.3840425 0.3840425 +7.471917 0.3840425 0.3840425 +10.03574 0.3840425 0.3840425 +13.47828 0.3840425 0.3840425 +18.10068 0.3840425 0.3840425 +24.30731 0.3840425 0.3840425 +32.64117 0.3840425 0.3840425 +43.83129 0.3840425 0.3840425 +58.85664 0.3840425 0.3840425 +-0.0175068 0.518627 0.3840425 +-0.01161267 0.518627 0.3840425 +-0.005718534 0.518627 0.3840425 +0.0001755984 0.518627 0.3840425 +0.006069731 0.518627 0.3840425 +0.01197402 0.518627 0.3840425 +0.01903886 0.518627 0.3840425 +0.02852504 0.518627 0.3840425 +0.04126244 0.518627 0.3840425 +0.05836535 0.518627 0.3840425 +0.08132997 0.518627 0.3840425 +0.1121653 0.518627 0.3840425 +0.1535689 0.518627 0.3840425 +0.2091628 0.518627 0.3840425 +0.2838106 0.518627 0.3840425 +0.3840425 0.518627 0.3840425 +0.518627 0.518627 0.3840425 +0.6993381 0.518627 0.3840425 +0.9419845 0.518627 0.3840425 +1.267794 0.518627 0.3840425 +1.705268 0.518627 0.3840425 +2.292679 0.518627 0.3840425 +3.081414 0.518627 0.3840425 +4.140474 0.518627 0.3840425 +5.562508 0.518627 0.3840425 +7.471917 0.518627 0.3840425 +10.03574 0.518627 0.3840425 +13.47828 0.518627 0.3840425 +18.10068 0.518627 0.3840425 +24.30731 0.518627 0.3840425 +32.64117 0.518627 0.3840425 +43.83129 0.518627 0.3840425 +58.85664 0.518627 0.3840425 +-0.0175068 0.6993381 0.3840425 +-0.01161267 0.6993381 0.3840425 +-0.005718534 0.6993381 0.3840425 +0.0001755984 0.6993381 0.3840425 +0.006069731 0.6993381 0.3840425 +0.01197402 0.6993381 0.3840425 +0.01903886 0.6993381 0.3840425 +0.02852504 0.6993381 0.3840425 +0.04126244 0.6993381 0.3840425 +0.05836535 0.6993381 0.3840425 +0.08132997 0.6993381 0.3840425 +0.1121653 0.6993381 0.3840425 +0.1535689 0.6993381 0.3840425 +0.2091628 0.6993381 0.3840425 +0.2838106 0.6993381 0.3840425 +0.3840425 0.6993381 0.3840425 +0.518627 0.6993381 0.3840425 +0.6993381 0.6993381 0.3840425 +0.9419845 0.6993381 0.3840425 +1.267794 0.6993381 0.3840425 +1.705268 0.6993381 0.3840425 +2.292679 0.6993381 0.3840425 +3.081414 0.6993381 0.3840425 +4.140474 0.6993381 0.3840425 +5.562508 0.6993381 0.3840425 +7.471917 0.6993381 0.3840425 +10.03574 0.6993381 0.3840425 +13.47828 0.6993381 0.3840425 +18.10068 0.6993381 0.3840425 +24.30731 0.6993381 0.3840425 +32.64117 0.6993381 0.3840425 +43.83129 0.6993381 0.3840425 +58.85664 0.6993381 0.3840425 +-0.0175068 0.9419845 0.3840425 +-0.01161267 0.9419845 0.3840425 +-0.005718534 0.9419845 0.3840425 +0.0001755984 0.9419845 0.3840425 +0.006069731 0.9419845 0.3840425 +0.01197402 0.9419845 0.3840425 +0.01903886 0.9419845 0.3840425 +0.02852504 0.9419845 0.3840425 +0.04126244 0.9419845 0.3840425 +0.05836535 0.9419845 0.3840425 +0.08132997 0.9419845 0.3840425 +0.1121653 0.9419845 0.3840425 +0.1535689 0.9419845 0.3840425 +0.2091628 0.9419845 0.3840425 +0.2838106 0.9419845 0.3840425 +0.3840425 0.9419845 0.3840425 +0.518627 0.9419845 0.3840425 +0.6993381 0.9419845 0.3840425 +0.9419845 0.9419845 0.3840425 +1.267794 0.9419845 0.3840425 +1.705268 0.9419845 0.3840425 +2.292679 0.9419845 0.3840425 +3.081414 0.9419845 0.3840425 +4.140474 0.9419845 0.3840425 +5.562508 0.9419845 0.3840425 +7.471917 0.9419845 0.3840425 +10.03574 0.9419845 0.3840425 +13.47828 0.9419845 0.3840425 +18.10068 0.9419845 0.3840425 +24.30731 0.9419845 0.3840425 +32.64117 0.9419845 0.3840425 +43.83129 0.9419845 0.3840425 +58.85664 0.9419845 0.3840425 +-0.0175068 1.267794 0.3840425 +-0.01161267 1.267794 0.3840425 +-0.005718534 1.267794 0.3840425 +0.0001755984 1.267794 0.3840425 +0.006069731 1.267794 0.3840425 +0.01197402 1.267794 0.3840425 +0.01903886 1.267794 0.3840425 +0.02852504 1.267794 0.3840425 +0.04126244 1.267794 0.3840425 +0.05836535 1.267794 0.3840425 +0.08132997 1.267794 0.3840425 +0.1121653 1.267794 0.3840425 +0.1535689 1.267794 0.3840425 +0.2091628 1.267794 0.3840425 +0.2838106 1.267794 0.3840425 +0.3840425 1.267794 0.3840425 +0.518627 1.267794 0.3840425 +0.6993381 1.267794 0.3840425 +0.9419845 1.267794 0.3840425 +1.267794 1.267794 0.3840425 +1.705268 1.267794 0.3840425 +2.292679 1.267794 0.3840425 +3.081414 1.267794 0.3840425 +4.140474 1.267794 0.3840425 +5.562508 1.267794 0.3840425 +7.471917 1.267794 0.3840425 +10.03574 1.267794 0.3840425 +13.47828 1.267794 0.3840425 +18.10068 1.267794 0.3840425 +24.30731 1.267794 0.3840425 +32.64117 1.267794 0.3840425 +43.83129 1.267794 0.3840425 +58.85664 1.267794 0.3840425 +-0.0175068 1.705268 0.3840425 +-0.01161267 1.705268 0.3840425 +-0.005718534 1.705268 0.3840425 +0.0001755984 1.705268 0.3840425 +0.006069731 1.705268 0.3840425 +0.01197402 1.705268 0.3840425 +0.01903886 1.705268 0.3840425 +0.02852504 1.705268 0.3840425 +0.04126244 1.705268 0.3840425 +0.05836535 1.705268 0.3840425 +0.08132997 1.705268 0.3840425 +0.1121653 1.705268 0.3840425 +0.1535689 1.705268 0.3840425 +0.2091628 1.705268 0.3840425 +0.2838106 1.705268 0.3840425 +0.3840425 1.705268 0.3840425 +0.518627 1.705268 0.3840425 +0.6993381 1.705268 0.3840425 +0.9419845 1.705268 0.3840425 +1.267794 1.705268 0.3840425 +1.705268 1.705268 0.3840425 +2.292679 1.705268 0.3840425 +3.081414 1.705268 0.3840425 +4.140474 1.705268 0.3840425 +5.562508 1.705268 0.3840425 +7.471917 1.705268 0.3840425 +10.03574 1.705268 0.3840425 +13.47828 1.705268 0.3840425 +18.10068 1.705268 0.3840425 +24.30731 1.705268 0.3840425 +32.64117 1.705268 0.3840425 +43.83129 1.705268 0.3840425 +58.85664 1.705268 0.3840425 +-0.0175068 2.292679 0.3840425 +-0.01161267 2.292679 0.3840425 +-0.005718534 2.292679 0.3840425 +0.0001755984 2.292679 0.3840425 +0.006069731 2.292679 0.3840425 +0.01197402 2.292679 0.3840425 +0.01903886 2.292679 0.3840425 +0.02852504 2.292679 0.3840425 +0.04126244 2.292679 0.3840425 +0.05836535 2.292679 0.3840425 +0.08132997 2.292679 0.3840425 +0.1121653 2.292679 0.3840425 +0.1535689 2.292679 0.3840425 +0.2091628 2.292679 0.3840425 +0.2838106 2.292679 0.3840425 +0.3840425 2.292679 0.3840425 +0.518627 2.292679 0.3840425 +0.6993381 2.292679 0.3840425 +0.9419845 2.292679 0.3840425 +1.267794 2.292679 0.3840425 +1.705268 2.292679 0.3840425 +2.292679 2.292679 0.3840425 +3.081414 2.292679 0.3840425 +4.140474 2.292679 0.3840425 +5.562508 2.292679 0.3840425 +7.471917 2.292679 0.3840425 +10.03574 2.292679 0.3840425 +13.47828 2.292679 0.3840425 +18.10068 2.292679 0.3840425 +24.30731 2.292679 0.3840425 +32.64117 2.292679 0.3840425 +43.83129 2.292679 0.3840425 +58.85664 2.292679 0.3840425 +-0.0175068 3.081414 0.3840425 +-0.01161267 3.081414 0.3840425 +-0.005718534 3.081414 0.3840425 +0.0001755984 3.081414 0.3840425 +0.006069731 3.081414 0.3840425 +0.01197402 3.081414 0.3840425 +0.01903886 3.081414 0.3840425 +0.02852504 3.081414 0.3840425 +0.04126244 3.081414 0.3840425 +0.05836535 3.081414 0.3840425 +0.08132997 3.081414 0.3840425 +0.1121653 3.081414 0.3840425 +0.1535689 3.081414 0.3840425 +0.2091628 3.081414 0.3840425 +0.2838106 3.081414 0.3840425 +0.3840425 3.081414 0.3840425 +0.518627 3.081414 0.3840425 +0.6993381 3.081414 0.3840425 +0.9419845 3.081414 0.3840425 +1.267794 3.081414 0.3840425 +1.705268 3.081414 0.3840425 +2.292679 3.081414 0.3840425 +3.081414 3.081414 0.3840425 +4.140474 3.081414 0.3840425 +5.562508 3.081414 0.3840425 +7.471917 3.081414 0.3840425 +10.03574 3.081414 0.3840425 +13.47828 3.081414 0.3840425 +18.10068 3.081414 0.3840425 +24.30731 3.081414 0.3840425 +32.64117 3.081414 0.3840425 +43.83129 3.081414 0.3840425 +58.85664 3.081414 0.3840425 +-0.0175068 4.140474 0.3840425 +-0.01161267 4.140474 0.3840425 +-0.005718534 4.140474 0.3840425 +0.0001755984 4.140474 0.3840425 +0.006069731 4.140474 0.3840425 +0.01197402 4.140474 0.3840425 +0.01903886 4.140474 0.3840425 +0.02852504 4.140474 0.3840425 +0.04126244 4.140474 0.3840425 +0.05836535 4.140474 0.3840425 +0.08132997 4.140474 0.3840425 +0.1121653 4.140474 0.3840425 +0.1535689 4.140474 0.3840425 +0.2091628 4.140474 0.3840425 +0.2838106 4.140474 0.3840425 +0.3840425 4.140474 0.3840425 +0.518627 4.140474 0.3840425 +0.6993381 4.140474 0.3840425 +0.9419845 4.140474 0.3840425 +1.267794 4.140474 0.3840425 +1.705268 4.140474 0.3840425 +2.292679 4.140474 0.3840425 +3.081414 4.140474 0.3840425 +4.140474 4.140474 0.3840425 +5.562508 4.140474 0.3840425 +7.471917 4.140474 0.3840425 +10.03574 4.140474 0.3840425 +13.47828 4.140474 0.3840425 +18.10068 4.140474 0.3840425 +24.30731 4.140474 0.3840425 +32.64117 4.140474 0.3840425 +43.83129 4.140474 0.3840425 +58.85664 4.140474 0.3840425 +-0.0175068 5.562508 0.3840425 +-0.01161267 5.562508 0.3840425 +-0.005718534 5.562508 0.3840425 +0.0001755984 5.562508 0.3840425 +0.006069731 5.562508 0.3840425 +0.01197402 5.562508 0.3840425 +0.01903886 5.562508 0.3840425 +0.02852504 5.562508 0.3840425 +0.04126244 5.562508 0.3840425 +0.05836535 5.562508 0.3840425 +0.08132997 5.562508 0.3840425 +0.1121653 5.562508 0.3840425 +0.1535689 5.562508 0.3840425 +0.2091628 5.562508 0.3840425 +0.2838106 5.562508 0.3840425 +0.3840425 5.562508 0.3840425 +0.518627 5.562508 0.3840425 +0.6993381 5.562508 0.3840425 +0.9419845 5.562508 0.3840425 +1.267794 5.562508 0.3840425 +1.705268 5.562508 0.3840425 +2.292679 5.562508 0.3840425 +3.081414 5.562508 0.3840425 +4.140474 5.562508 0.3840425 +5.562508 5.562508 0.3840425 +7.471917 5.562508 0.3840425 +10.03574 5.562508 0.3840425 +13.47828 5.562508 0.3840425 +18.10068 5.562508 0.3840425 +24.30731 5.562508 0.3840425 +32.64117 5.562508 0.3840425 +43.83129 5.562508 0.3840425 +58.85664 5.562508 0.3840425 +-0.0175068 7.471917 0.3840425 +-0.01161267 7.471917 0.3840425 +-0.005718534 7.471917 0.3840425 +0.0001755984 7.471917 0.3840425 +0.006069731 7.471917 0.3840425 +0.01197402 7.471917 0.3840425 +0.01903886 7.471917 0.3840425 +0.02852504 7.471917 0.3840425 +0.04126244 7.471917 0.3840425 +0.05836535 7.471917 0.3840425 +0.08132997 7.471917 0.3840425 +0.1121653 7.471917 0.3840425 +0.1535689 7.471917 0.3840425 +0.2091628 7.471917 0.3840425 +0.2838106 7.471917 0.3840425 +0.3840425 7.471917 0.3840425 +0.518627 7.471917 0.3840425 +0.6993381 7.471917 0.3840425 +0.9419845 7.471917 0.3840425 +1.267794 7.471917 0.3840425 +1.705268 7.471917 0.3840425 +2.292679 7.471917 0.3840425 +3.081414 7.471917 0.3840425 +4.140474 7.471917 0.3840425 +5.562508 7.471917 0.3840425 +7.471917 7.471917 0.3840425 +10.03574 7.471917 0.3840425 +13.47828 7.471917 0.3840425 +18.10068 7.471917 0.3840425 +24.30731 7.471917 0.3840425 +32.64117 7.471917 0.3840425 +43.83129 7.471917 0.3840425 +58.85664 7.471917 0.3840425 +-0.0175068 10.03574 0.3840425 +-0.01161267 10.03574 0.3840425 +-0.005718534 10.03574 0.3840425 +0.0001755984 10.03574 0.3840425 +0.006069731 10.03574 0.3840425 +0.01197402 10.03574 0.3840425 +0.01903886 10.03574 0.3840425 +0.02852504 10.03574 0.3840425 +0.04126244 10.03574 0.3840425 +0.05836535 10.03574 0.3840425 +0.08132997 10.03574 0.3840425 +0.1121653 10.03574 0.3840425 +0.1535689 10.03574 0.3840425 +0.2091628 10.03574 0.3840425 +0.2838106 10.03574 0.3840425 +0.3840425 10.03574 0.3840425 +0.518627 10.03574 0.3840425 +0.6993381 10.03574 0.3840425 +0.9419845 10.03574 0.3840425 +1.267794 10.03574 0.3840425 +1.705268 10.03574 0.3840425 +2.292679 10.03574 0.3840425 +3.081414 10.03574 0.3840425 +4.140474 10.03574 0.3840425 +5.562508 10.03574 0.3840425 +7.471917 10.03574 0.3840425 +10.03574 10.03574 0.3840425 +13.47828 10.03574 0.3840425 +18.10068 10.03574 0.3840425 +24.30731 10.03574 0.3840425 +32.64117 10.03574 0.3840425 +43.83129 10.03574 0.3840425 +58.85664 10.03574 0.3840425 +-0.0175068 13.47828 0.3840425 +-0.01161267 13.47828 0.3840425 +-0.005718534 13.47828 0.3840425 +0.0001755984 13.47828 0.3840425 +0.006069731 13.47828 0.3840425 +0.01197402 13.47828 0.3840425 +0.01903886 13.47828 0.3840425 +0.02852504 13.47828 0.3840425 +0.04126244 13.47828 0.3840425 +0.05836535 13.47828 0.3840425 +0.08132997 13.47828 0.3840425 +0.1121653 13.47828 0.3840425 +0.1535689 13.47828 0.3840425 +0.2091628 13.47828 0.3840425 +0.2838106 13.47828 0.3840425 +0.3840425 13.47828 0.3840425 +0.518627 13.47828 0.3840425 +0.6993381 13.47828 0.3840425 +0.9419845 13.47828 0.3840425 +1.267794 13.47828 0.3840425 +1.705268 13.47828 0.3840425 +2.292679 13.47828 0.3840425 +3.081414 13.47828 0.3840425 +4.140474 13.47828 0.3840425 +5.562508 13.47828 0.3840425 +7.471917 13.47828 0.3840425 +10.03574 13.47828 0.3840425 +13.47828 13.47828 0.3840425 +18.10068 13.47828 0.3840425 +24.30731 13.47828 0.3840425 +32.64117 13.47828 0.3840425 +43.83129 13.47828 0.3840425 +58.85664 13.47828 0.3840425 +-0.0175068 18.10068 0.3840425 +-0.01161267 18.10068 0.3840425 +-0.005718534 18.10068 0.3840425 +0.0001755984 18.10068 0.3840425 +0.006069731 18.10068 0.3840425 +0.01197402 18.10068 0.3840425 +0.01903886 18.10068 0.3840425 +0.02852504 18.10068 0.3840425 +0.04126244 18.10068 0.3840425 +0.05836535 18.10068 0.3840425 +0.08132997 18.10068 0.3840425 +0.1121653 18.10068 0.3840425 +0.1535689 18.10068 0.3840425 +0.2091628 18.10068 0.3840425 +0.2838106 18.10068 0.3840425 +0.3840425 18.10068 0.3840425 +0.518627 18.10068 0.3840425 +0.6993381 18.10068 0.3840425 +0.9419845 18.10068 0.3840425 +1.267794 18.10068 0.3840425 +1.705268 18.10068 0.3840425 +2.292679 18.10068 0.3840425 +3.081414 18.10068 0.3840425 +4.140474 18.10068 0.3840425 +5.562508 18.10068 0.3840425 +7.471917 18.10068 0.3840425 +10.03574 18.10068 0.3840425 +13.47828 18.10068 0.3840425 +18.10068 18.10068 0.3840425 +24.30731 18.10068 0.3840425 +32.64117 18.10068 0.3840425 +43.83129 18.10068 0.3840425 +58.85664 18.10068 0.3840425 +-0.0175068 24.30731 0.3840425 +-0.01161267 24.30731 0.3840425 +-0.005718534 24.30731 0.3840425 +0.0001755984 24.30731 0.3840425 +0.006069731 24.30731 0.3840425 +0.01197402 24.30731 0.3840425 +0.01903886 24.30731 0.3840425 +0.02852504 24.30731 0.3840425 +0.04126244 24.30731 0.3840425 +0.05836535 24.30731 0.3840425 +0.08132997 24.30731 0.3840425 +0.1121653 24.30731 0.3840425 +0.1535689 24.30731 0.3840425 +0.2091628 24.30731 0.3840425 +0.2838106 24.30731 0.3840425 +0.3840425 24.30731 0.3840425 +0.518627 24.30731 0.3840425 +0.6993381 24.30731 0.3840425 +0.9419845 24.30731 0.3840425 +1.267794 24.30731 0.3840425 +1.705268 24.30731 0.3840425 +2.292679 24.30731 0.3840425 +3.081414 24.30731 0.3840425 +4.140474 24.30731 0.3840425 +5.562508 24.30731 0.3840425 +7.471917 24.30731 0.3840425 +10.03574 24.30731 0.3840425 +13.47828 24.30731 0.3840425 +18.10068 24.30731 0.3840425 +24.30731 24.30731 0.3840425 +32.64117 24.30731 0.3840425 +43.83129 24.30731 0.3840425 +58.85664 24.30731 0.3840425 +-0.0175068 32.64117 0.3840425 +-0.01161267 32.64117 0.3840425 +-0.005718534 32.64117 0.3840425 +0.0001755984 32.64117 0.3840425 +0.006069731 32.64117 0.3840425 +0.01197402 32.64117 0.3840425 +0.01903886 32.64117 0.3840425 +0.02852504 32.64117 0.3840425 +0.04126244 32.64117 0.3840425 +0.05836535 32.64117 0.3840425 +0.08132997 32.64117 0.3840425 +0.1121653 32.64117 0.3840425 +0.1535689 32.64117 0.3840425 +0.2091628 32.64117 0.3840425 +0.2838106 32.64117 0.3840425 +0.3840425 32.64117 0.3840425 +0.518627 32.64117 0.3840425 +0.6993381 32.64117 0.3840425 +0.9419845 32.64117 0.3840425 +1.267794 32.64117 0.3840425 +1.705268 32.64117 0.3840425 +2.292679 32.64117 0.3840425 +3.081414 32.64117 0.3840425 +4.140474 32.64117 0.3840425 +5.562508 32.64117 0.3840425 +7.471917 32.64117 0.3840425 +10.03574 32.64117 0.3840425 +13.47828 32.64117 0.3840425 +18.10068 32.64117 0.3840425 +24.30731 32.64117 0.3840425 +32.64117 32.64117 0.3840425 +43.83129 32.64117 0.3840425 +58.85664 32.64117 0.3840425 +-0.0175068 43.83129 0.3840425 +-0.01161267 43.83129 0.3840425 +-0.005718534 43.83129 0.3840425 +0.0001755984 43.83129 0.3840425 +0.006069731 43.83129 0.3840425 +0.01197402 43.83129 0.3840425 +0.01903886 43.83129 0.3840425 +0.02852504 43.83129 0.3840425 +0.04126244 43.83129 0.3840425 +0.05836535 43.83129 0.3840425 +0.08132997 43.83129 0.3840425 +0.1121653 43.83129 0.3840425 +0.1535689 43.83129 0.3840425 +0.2091628 43.83129 0.3840425 +0.2838106 43.83129 0.3840425 +0.3840425 43.83129 0.3840425 +0.518627 43.83129 0.3840425 +0.6993381 43.83129 0.3840425 +0.9419845 43.83129 0.3840425 +1.267794 43.83129 0.3840425 +1.705268 43.83129 0.3840425 +2.292679 43.83129 0.3840425 +3.081414 43.83129 0.3840425 +4.140474 43.83129 0.3840425 +5.562508 43.83129 0.3840425 +7.471917 43.83129 0.3840425 +10.03574 43.83129 0.3840425 +13.47828 43.83129 0.3840425 +18.10068 43.83129 0.3840425 +24.30731 43.83129 0.3840425 +32.64117 43.83129 0.3840425 +43.83129 43.83129 0.3840425 +58.85664 43.83129 0.3840425 +-0.0175068 58.85664 0.3840425 +-0.01161267 58.85664 0.3840425 +-0.005718534 58.85664 0.3840425 +0.0001755984 58.85664 0.3840425 +0.006069731 58.85664 0.3840425 +0.01197402 58.85664 0.3840425 +0.01903886 58.85664 0.3840425 +0.02852504 58.85664 0.3840425 +0.04126244 58.85664 0.3840425 +0.05836535 58.85664 0.3840425 +0.08132997 58.85664 0.3840425 +0.1121653 58.85664 0.3840425 +0.1535689 58.85664 0.3840425 +0.2091628 58.85664 0.3840425 +0.2838106 58.85664 0.3840425 +0.3840425 58.85664 0.3840425 +0.518627 58.85664 0.3840425 +0.6993381 58.85664 0.3840425 +0.9419845 58.85664 0.3840425 +1.267794 58.85664 0.3840425 +1.705268 58.85664 0.3840425 +2.292679 58.85664 0.3840425 +3.081414 58.85664 0.3840425 +4.140474 58.85664 0.3840425 +5.562508 58.85664 0.3840425 +7.471917 58.85664 0.3840425 +10.03574 58.85664 0.3840425 +13.47828 58.85664 0.3840425 +18.10068 58.85664 0.3840425 +24.30731 58.85664 0.3840425 +32.64117 58.85664 0.3840425 +43.83129 58.85664 0.3840425 +58.85664 58.85664 0.3840425 +-0.0175068 -0.0175068 0.518627 +-0.01161267 -0.0175068 0.518627 +-0.005718534 -0.0175068 0.518627 +0.0001755984 -0.0175068 0.518627 +0.006069731 -0.0175068 0.518627 +0.01197402 -0.0175068 0.518627 +0.01903886 -0.0175068 0.518627 +0.02852504 -0.0175068 0.518627 +0.04126244 -0.0175068 0.518627 +0.05836535 -0.0175068 0.518627 +0.08132997 -0.0175068 0.518627 +0.1121653 -0.0175068 0.518627 +0.1535689 -0.0175068 0.518627 +0.2091628 -0.0175068 0.518627 +0.2838106 -0.0175068 0.518627 +0.3840425 -0.0175068 0.518627 +0.518627 -0.0175068 0.518627 +0.6993381 -0.0175068 0.518627 +0.9419845 -0.0175068 0.518627 +1.267794 -0.0175068 0.518627 +1.705268 -0.0175068 0.518627 +2.292679 -0.0175068 0.518627 +3.081414 -0.0175068 0.518627 +4.140474 -0.0175068 0.518627 +5.562508 -0.0175068 0.518627 +7.471917 -0.0175068 0.518627 +10.03574 -0.0175068 0.518627 +13.47828 -0.0175068 0.518627 +18.10068 -0.0175068 0.518627 +24.30731 -0.0175068 0.518627 +32.64117 -0.0175068 0.518627 +43.83129 -0.0175068 0.518627 +58.85664 -0.0175068 0.518627 +-0.0175068 -0.01161267 0.518627 +-0.01161267 -0.01161267 0.518627 +-0.005718534 -0.01161267 0.518627 +0.0001755984 -0.01161267 0.518627 +0.006069731 -0.01161267 0.518627 +0.01197402 -0.01161267 0.518627 +0.01903886 -0.01161267 0.518627 +0.02852504 -0.01161267 0.518627 +0.04126244 -0.01161267 0.518627 +0.05836535 -0.01161267 0.518627 +0.08132997 -0.01161267 0.518627 +0.1121653 -0.01161267 0.518627 +0.1535689 -0.01161267 0.518627 +0.2091628 -0.01161267 0.518627 +0.2838106 -0.01161267 0.518627 +0.3840425 -0.01161267 0.518627 +0.518627 -0.01161267 0.518627 +0.6993381 -0.01161267 0.518627 +0.9419845 -0.01161267 0.518627 +1.267794 -0.01161267 0.518627 +1.705268 -0.01161267 0.518627 +2.292679 -0.01161267 0.518627 +3.081414 -0.01161267 0.518627 +4.140474 -0.01161267 0.518627 +5.562508 -0.01161267 0.518627 +7.471917 -0.01161267 0.518627 +10.03574 -0.01161267 0.518627 +13.47828 -0.01161267 0.518627 +18.10068 -0.01161267 0.518627 +24.30731 -0.01161267 0.518627 +32.64117 -0.01161267 0.518627 +43.83129 -0.01161267 0.518627 +58.85664 -0.01161267 0.518627 +-0.0175068 -0.005718534 0.518627 +-0.01161267 -0.005718534 0.518627 +-0.005718534 -0.005718534 0.518627 +0.0001755984 -0.005718534 0.518627 +0.006069731 -0.005718534 0.518627 +0.01197402 -0.005718534 0.518627 +0.01903886 -0.005718534 0.518627 +0.02852504 -0.005718534 0.518627 +0.04126244 -0.005718534 0.518627 +0.05836535 -0.005718534 0.518627 +0.08132997 -0.005718534 0.518627 +0.1121653 -0.005718534 0.518627 +0.1535689 -0.005718534 0.518627 +0.2091628 -0.005718534 0.518627 +0.2838106 -0.005718534 0.518627 +0.3840425 -0.005718534 0.518627 +0.518627 -0.005718534 0.518627 +0.6993381 -0.005718534 0.518627 +0.9419845 -0.005718534 0.518627 +1.267794 -0.005718534 0.518627 +1.705268 -0.005718534 0.518627 +2.292679 -0.005718534 0.518627 +3.081414 -0.005718534 0.518627 +4.140474 -0.005718534 0.518627 +5.562508 -0.005718534 0.518627 +7.471917 -0.005718534 0.518627 +10.03574 -0.005718534 0.518627 +13.47828 -0.005718534 0.518627 +18.10068 -0.005718534 0.518627 +24.30731 -0.005718534 0.518627 +32.64117 -0.005718534 0.518627 +43.83129 -0.005718534 0.518627 +58.85664 -0.005718534 0.518627 +-0.0175068 0.0001755984 0.518627 +-0.01161267 0.0001755984 0.518627 +-0.005718534 0.0001755984 0.518627 +0.0001755984 0.0001755984 0.518627 +0.006069731 0.0001755984 0.518627 +0.01197402 0.0001755984 0.518627 +0.01903886 0.0001755984 0.518627 +0.02852504 0.0001755984 0.518627 +0.04126244 0.0001755984 0.518627 +0.05836535 0.0001755984 0.518627 +0.08132997 0.0001755984 0.518627 +0.1121653 0.0001755984 0.518627 +0.1535689 0.0001755984 0.518627 +0.2091628 0.0001755984 0.518627 +0.2838106 0.0001755984 0.518627 +0.3840425 0.0001755984 0.518627 +0.518627 0.0001755984 0.518627 +0.6993381 0.0001755984 0.518627 +0.9419845 0.0001755984 0.518627 +1.267794 0.0001755984 0.518627 +1.705268 0.0001755984 0.518627 +2.292679 0.0001755984 0.518627 +3.081414 0.0001755984 0.518627 +4.140474 0.0001755984 0.518627 +5.562508 0.0001755984 0.518627 +7.471917 0.0001755984 0.518627 +10.03574 0.0001755984 0.518627 +13.47828 0.0001755984 0.518627 +18.10068 0.0001755984 0.518627 +24.30731 0.0001755984 0.518627 +32.64117 0.0001755984 0.518627 +43.83129 0.0001755984 0.518627 +58.85664 0.0001755984 0.518627 +-0.0175068 0.006069731 0.518627 +-0.01161267 0.006069731 0.518627 +-0.005718534 0.006069731 0.518627 +0.0001755984 0.006069731 0.518627 +0.006069731 0.006069731 0.518627 +0.01197402 0.006069731 0.518627 +0.01903886 0.006069731 0.518627 +0.02852504 0.006069731 0.518627 +0.04126244 0.006069731 0.518627 +0.05836535 0.006069731 0.518627 +0.08132997 0.006069731 0.518627 +0.1121653 0.006069731 0.518627 +0.1535689 0.006069731 0.518627 +0.2091628 0.006069731 0.518627 +0.2838106 0.006069731 0.518627 +0.3840425 0.006069731 0.518627 +0.518627 0.006069731 0.518627 +0.6993381 0.006069731 0.518627 +0.9419845 0.006069731 0.518627 +1.267794 0.006069731 0.518627 +1.705268 0.006069731 0.518627 +2.292679 0.006069731 0.518627 +3.081414 0.006069731 0.518627 +4.140474 0.006069731 0.518627 +5.562508 0.006069731 0.518627 +7.471917 0.006069731 0.518627 +10.03574 0.006069731 0.518627 +13.47828 0.006069731 0.518627 +18.10068 0.006069731 0.518627 +24.30731 0.006069731 0.518627 +32.64117 0.006069731 0.518627 +43.83129 0.006069731 0.518627 +58.85664 0.006069731 0.518627 +-0.0175068 0.01197402 0.518627 +-0.01161267 0.01197402 0.518627 +-0.005718534 0.01197402 0.518627 +0.0001755984 0.01197402 0.518627 +0.006069731 0.01197402 0.518627 +0.01197402 0.01197402 0.518627 +0.01903886 0.01197402 0.518627 +0.02852504 0.01197402 0.518627 +0.04126244 0.01197402 0.518627 +0.05836535 0.01197402 0.518627 +0.08132997 0.01197402 0.518627 +0.1121653 0.01197402 0.518627 +0.1535689 0.01197402 0.518627 +0.2091628 0.01197402 0.518627 +0.2838106 0.01197402 0.518627 +0.3840425 0.01197402 0.518627 +0.518627 0.01197402 0.518627 +0.6993381 0.01197402 0.518627 +0.9419845 0.01197402 0.518627 +1.267794 0.01197402 0.518627 +1.705268 0.01197402 0.518627 +2.292679 0.01197402 0.518627 +3.081414 0.01197402 0.518627 +4.140474 0.01197402 0.518627 +5.562508 0.01197402 0.518627 +7.471917 0.01197402 0.518627 +10.03574 0.01197402 0.518627 +13.47828 0.01197402 0.518627 +18.10068 0.01197402 0.518627 +24.30731 0.01197402 0.518627 +32.64117 0.01197402 0.518627 +43.83129 0.01197402 0.518627 +58.85664 0.01197402 0.518627 +-0.0175068 0.01903886 0.518627 +-0.01161267 0.01903886 0.518627 +-0.005718534 0.01903886 0.518627 +0.0001755984 0.01903886 0.518627 +0.006069731 0.01903886 0.518627 +0.01197402 0.01903886 0.518627 +0.01903886 0.01903886 0.518627 +0.02852504 0.01903886 0.518627 +0.04126244 0.01903886 0.518627 +0.05836535 0.01903886 0.518627 +0.08132997 0.01903886 0.518627 +0.1121653 0.01903886 0.518627 +0.1535689 0.01903886 0.518627 +0.2091628 0.01903886 0.518627 +0.2838106 0.01903886 0.518627 +0.3840425 0.01903886 0.518627 +0.518627 0.01903886 0.518627 +0.6993381 0.01903886 0.518627 +0.9419845 0.01903886 0.518627 +1.267794 0.01903886 0.518627 +1.705268 0.01903886 0.518627 +2.292679 0.01903886 0.518627 +3.081414 0.01903886 0.518627 +4.140474 0.01903886 0.518627 +5.562508 0.01903886 0.518627 +7.471917 0.01903886 0.518627 +10.03574 0.01903886 0.518627 +13.47828 0.01903886 0.518627 +18.10068 0.01903886 0.518627 +24.30731 0.01903886 0.518627 +32.64117 0.01903886 0.518627 +43.83129 0.01903886 0.518627 +58.85664 0.01903886 0.518627 +-0.0175068 0.02852504 0.518627 +-0.01161267 0.02852504 0.518627 +-0.005718534 0.02852504 0.518627 +0.0001755984 0.02852504 0.518627 +0.006069731 0.02852504 0.518627 +0.01197402 0.02852504 0.518627 +0.01903886 0.02852504 0.518627 +0.02852504 0.02852504 0.518627 +0.04126244 0.02852504 0.518627 +0.05836535 0.02852504 0.518627 +0.08132997 0.02852504 0.518627 +0.1121653 0.02852504 0.518627 +0.1535689 0.02852504 0.518627 +0.2091628 0.02852504 0.518627 +0.2838106 0.02852504 0.518627 +0.3840425 0.02852504 0.518627 +0.518627 0.02852504 0.518627 +0.6993381 0.02852504 0.518627 +0.9419845 0.02852504 0.518627 +1.267794 0.02852504 0.518627 +1.705268 0.02852504 0.518627 +2.292679 0.02852504 0.518627 +3.081414 0.02852504 0.518627 +4.140474 0.02852504 0.518627 +5.562508 0.02852504 0.518627 +7.471917 0.02852504 0.518627 +10.03574 0.02852504 0.518627 +13.47828 0.02852504 0.518627 +18.10068 0.02852504 0.518627 +24.30731 0.02852504 0.518627 +32.64117 0.02852504 0.518627 +43.83129 0.02852504 0.518627 +58.85664 0.02852504 0.518627 +-0.0175068 0.04126244 0.518627 +-0.01161267 0.04126244 0.518627 +-0.005718534 0.04126244 0.518627 +0.0001755984 0.04126244 0.518627 +0.006069731 0.04126244 0.518627 +0.01197402 0.04126244 0.518627 +0.01903886 0.04126244 0.518627 +0.02852504 0.04126244 0.518627 +0.04126244 0.04126244 0.518627 +0.05836535 0.04126244 0.518627 +0.08132997 0.04126244 0.518627 +0.1121653 0.04126244 0.518627 +0.1535689 0.04126244 0.518627 +0.2091628 0.04126244 0.518627 +0.2838106 0.04126244 0.518627 +0.3840425 0.04126244 0.518627 +0.518627 0.04126244 0.518627 +0.6993381 0.04126244 0.518627 +0.9419845 0.04126244 0.518627 +1.267794 0.04126244 0.518627 +1.705268 0.04126244 0.518627 +2.292679 0.04126244 0.518627 +3.081414 0.04126244 0.518627 +4.140474 0.04126244 0.518627 +5.562508 0.04126244 0.518627 +7.471917 0.04126244 0.518627 +10.03574 0.04126244 0.518627 +13.47828 0.04126244 0.518627 +18.10068 0.04126244 0.518627 +24.30731 0.04126244 0.518627 +32.64117 0.04126244 0.518627 +43.83129 0.04126244 0.518627 +58.85664 0.04126244 0.518627 +-0.0175068 0.05836535 0.518627 +-0.01161267 0.05836535 0.518627 +-0.005718534 0.05836535 0.518627 +0.0001755984 0.05836535 0.518627 +0.006069731 0.05836535 0.518627 +0.01197402 0.05836535 0.518627 +0.01903886 0.05836535 0.518627 +0.02852504 0.05836535 0.518627 +0.04126244 0.05836535 0.518627 +0.05836535 0.05836535 0.518627 +0.08132997 0.05836535 0.518627 +0.1121653 0.05836535 0.518627 +0.1535689 0.05836535 0.518627 +0.2091628 0.05836535 0.518627 +0.2838106 0.05836535 0.518627 +0.3840425 0.05836535 0.518627 +0.518627 0.05836535 0.518627 +0.6993381 0.05836535 0.518627 +0.9419845 0.05836535 0.518627 +1.267794 0.05836535 0.518627 +1.705268 0.05836535 0.518627 +2.292679 0.05836535 0.518627 +3.081414 0.05836535 0.518627 +4.140474 0.05836535 0.518627 +5.562508 0.05836535 0.518627 +7.471917 0.05836535 0.518627 +10.03574 0.05836535 0.518627 +13.47828 0.05836535 0.518627 +18.10068 0.05836535 0.518627 +24.30731 0.05836535 0.518627 +32.64117 0.05836535 0.518627 +43.83129 0.05836535 0.518627 +58.85664 0.05836535 0.518627 +-0.0175068 0.08132997 0.518627 +-0.01161267 0.08132997 0.518627 +-0.005718534 0.08132997 0.518627 +0.0001755984 0.08132997 0.518627 +0.006069731 0.08132997 0.518627 +0.01197402 0.08132997 0.518627 +0.01903886 0.08132997 0.518627 +0.02852504 0.08132997 0.518627 +0.04126244 0.08132997 0.518627 +0.05836535 0.08132997 0.518627 +0.08132997 0.08132997 0.518627 +0.1121653 0.08132997 0.518627 +0.1535689 0.08132997 0.518627 +0.2091628 0.08132997 0.518627 +0.2838106 0.08132997 0.518627 +0.3840425 0.08132997 0.518627 +0.518627 0.08132997 0.518627 +0.6993381 0.08132997 0.518627 +0.9419845 0.08132997 0.518627 +1.267794 0.08132997 0.518627 +1.705268 0.08132997 0.518627 +2.292679 0.08132997 0.518627 +3.081414 0.08132997 0.518627 +4.140474 0.08132997 0.518627 +5.562508 0.08132997 0.518627 +7.471917 0.08132997 0.518627 +10.03574 0.08132997 0.518627 +13.47828 0.08132997 0.518627 +18.10068 0.08132997 0.518627 +24.30731 0.08132997 0.518627 +32.64117 0.08132997 0.518627 +43.83129 0.08132997 0.518627 +58.85664 0.08132997 0.518627 +-0.0175068 0.1121653 0.518627 +-0.01161267 0.1121653 0.518627 +-0.005718534 0.1121653 0.518627 +0.0001755984 0.1121653 0.518627 +0.006069731 0.1121653 0.518627 +0.01197402 0.1121653 0.518627 +0.01903886 0.1121653 0.518627 +0.02852504 0.1121653 0.518627 +0.04126244 0.1121653 0.518627 +0.05836535 0.1121653 0.518627 +0.08132997 0.1121653 0.518627 +0.1121653 0.1121653 0.518627 +0.1535689 0.1121653 0.518627 +0.2091628 0.1121653 0.518627 +0.2838106 0.1121653 0.518627 +0.3840425 0.1121653 0.518627 +0.518627 0.1121653 0.518627 +0.6993381 0.1121653 0.518627 +0.9419845 0.1121653 0.518627 +1.267794 0.1121653 0.518627 +1.705268 0.1121653 0.518627 +2.292679 0.1121653 0.518627 +3.081414 0.1121653 0.518627 +4.140474 0.1121653 0.518627 +5.562508 0.1121653 0.518627 +7.471917 0.1121653 0.518627 +10.03574 0.1121653 0.518627 +13.47828 0.1121653 0.518627 +18.10068 0.1121653 0.518627 +24.30731 0.1121653 0.518627 +32.64117 0.1121653 0.518627 +43.83129 0.1121653 0.518627 +58.85664 0.1121653 0.518627 +-0.0175068 0.1535689 0.518627 +-0.01161267 0.1535689 0.518627 +-0.005718534 0.1535689 0.518627 +0.0001755984 0.1535689 0.518627 +0.006069731 0.1535689 0.518627 +0.01197402 0.1535689 0.518627 +0.01903886 0.1535689 0.518627 +0.02852504 0.1535689 0.518627 +0.04126244 0.1535689 0.518627 +0.05836535 0.1535689 0.518627 +0.08132997 0.1535689 0.518627 +0.1121653 0.1535689 0.518627 +0.1535689 0.1535689 0.518627 +0.2091628 0.1535689 0.518627 +0.2838106 0.1535689 0.518627 +0.3840425 0.1535689 0.518627 +0.518627 0.1535689 0.518627 +0.6993381 0.1535689 0.518627 +0.9419845 0.1535689 0.518627 +1.267794 0.1535689 0.518627 +1.705268 0.1535689 0.518627 +2.292679 0.1535689 0.518627 +3.081414 0.1535689 0.518627 +4.140474 0.1535689 0.518627 +5.562508 0.1535689 0.518627 +7.471917 0.1535689 0.518627 +10.03574 0.1535689 0.518627 +13.47828 0.1535689 0.518627 +18.10068 0.1535689 0.518627 +24.30731 0.1535689 0.518627 +32.64117 0.1535689 0.518627 +43.83129 0.1535689 0.518627 +58.85664 0.1535689 0.518627 +-0.0175068 0.2091628 0.518627 +-0.01161267 0.2091628 0.518627 +-0.005718534 0.2091628 0.518627 +0.0001755984 0.2091628 0.518627 +0.006069731 0.2091628 0.518627 +0.01197402 0.2091628 0.518627 +0.01903886 0.2091628 0.518627 +0.02852504 0.2091628 0.518627 +0.04126244 0.2091628 0.518627 +0.05836535 0.2091628 0.518627 +0.08132997 0.2091628 0.518627 +0.1121653 0.2091628 0.518627 +0.1535689 0.2091628 0.518627 +0.2091628 0.2091628 0.518627 +0.2838106 0.2091628 0.518627 +0.3840425 0.2091628 0.518627 +0.518627 0.2091628 0.518627 +0.6993381 0.2091628 0.518627 +0.9419845 0.2091628 0.518627 +1.267794 0.2091628 0.518627 +1.705268 0.2091628 0.518627 +2.292679 0.2091628 0.518627 +3.081414 0.2091628 0.518627 +4.140474 0.2091628 0.518627 +5.562508 0.2091628 0.518627 +7.471917 0.2091628 0.518627 +10.03574 0.2091628 0.518627 +13.47828 0.2091628 0.518627 +18.10068 0.2091628 0.518627 +24.30731 0.2091628 0.518627 +32.64117 0.2091628 0.518627 +43.83129 0.2091628 0.518627 +58.85664 0.2091628 0.518627 +-0.0175068 0.2838106 0.518627 +-0.01161267 0.2838106 0.518627 +-0.005718534 0.2838106 0.518627 +0.0001755984 0.2838106 0.518627 +0.006069731 0.2838106 0.518627 +0.01197402 0.2838106 0.518627 +0.01903886 0.2838106 0.518627 +0.02852504 0.2838106 0.518627 +0.04126244 0.2838106 0.518627 +0.05836535 0.2838106 0.518627 +0.08132997 0.2838106 0.518627 +0.1121653 0.2838106 0.518627 +0.1535689 0.2838106 0.518627 +0.2091628 0.2838106 0.518627 +0.2838106 0.2838106 0.518627 +0.3840425 0.2838106 0.518627 +0.518627 0.2838106 0.518627 +0.6993381 0.2838106 0.518627 +0.9419845 0.2838106 0.518627 +1.267794 0.2838106 0.518627 +1.705268 0.2838106 0.518627 +2.292679 0.2838106 0.518627 +3.081414 0.2838106 0.518627 +4.140474 0.2838106 0.518627 +5.562508 0.2838106 0.518627 +7.471917 0.2838106 0.518627 +10.03574 0.2838106 0.518627 +13.47828 0.2838106 0.518627 +18.10068 0.2838106 0.518627 +24.30731 0.2838106 0.518627 +32.64117 0.2838106 0.518627 +43.83129 0.2838106 0.518627 +58.85664 0.2838106 0.518627 +-0.0175068 0.3840425 0.518627 +-0.01161267 0.3840425 0.518627 +-0.005718534 0.3840425 0.518627 +0.0001755984 0.3840425 0.518627 +0.006069731 0.3840425 0.518627 +0.01197402 0.3840425 0.518627 +0.01903886 0.3840425 0.518627 +0.02852504 0.3840425 0.518627 +0.04126244 0.3840425 0.518627 +0.05836535 0.3840425 0.518627 +0.08132997 0.3840425 0.518627 +0.1121653 0.3840425 0.518627 +0.1535689 0.3840425 0.518627 +0.2091628 0.3840425 0.518627 +0.2838106 0.3840425 0.518627 +0.3840425 0.3840425 0.518627 +0.518627 0.3840425 0.518627 +0.6993381 0.3840425 0.518627 +0.9419845 0.3840425 0.518627 +1.267794 0.3840425 0.518627 +1.705268 0.3840425 0.518627 +2.292679 0.3840425 0.518627 +3.081414 0.3840425 0.518627 +4.140474 0.3840425 0.518627 +5.562508 0.3840425 0.518627 +7.471917 0.3840425 0.518627 +10.03574 0.3840425 0.518627 +13.47828 0.3840425 0.518627 +18.10068 0.3840425 0.518627 +24.30731 0.3840425 0.518627 +32.64117 0.3840425 0.518627 +43.83129 0.3840425 0.518627 +58.85664 0.3840425 0.518627 +-0.0175068 0.518627 0.518627 +-0.01161267 0.518627 0.518627 +-0.005718534 0.518627 0.518627 +0.0001755984 0.518627 0.518627 +0.006069731 0.518627 0.518627 +0.01197402 0.518627 0.518627 +0.01903886 0.518627 0.518627 +0.02852504 0.518627 0.518627 +0.04126244 0.518627 0.518627 +0.05836535 0.518627 0.518627 +0.08132997 0.518627 0.518627 +0.1121653 0.518627 0.518627 +0.1535689 0.518627 0.518627 +0.2091628 0.518627 0.518627 +0.2838106 0.518627 0.518627 +0.3840425 0.518627 0.518627 +0.518627 0.518627 0.518627 +0.6993381 0.518627 0.518627 +0.9419845 0.518627 0.518627 +1.267794 0.518627 0.518627 +1.705268 0.518627 0.518627 +2.292679 0.518627 0.518627 +3.081414 0.518627 0.518627 +4.140474 0.518627 0.518627 +5.562508 0.518627 0.518627 +7.471917 0.518627 0.518627 +10.03574 0.518627 0.518627 +13.47828 0.518627 0.518627 +18.10068 0.518627 0.518627 +24.30731 0.518627 0.518627 +32.64117 0.518627 0.518627 +43.83129 0.518627 0.518627 +58.85664 0.518627 0.518627 +-0.0175068 0.6993381 0.518627 +-0.01161267 0.6993381 0.518627 +-0.005718534 0.6993381 0.518627 +0.0001755984 0.6993381 0.518627 +0.006069731 0.6993381 0.518627 +0.01197402 0.6993381 0.518627 +0.01903886 0.6993381 0.518627 +0.02852504 0.6993381 0.518627 +0.04126244 0.6993381 0.518627 +0.05836535 0.6993381 0.518627 +0.08132997 0.6993381 0.518627 +0.1121653 0.6993381 0.518627 +0.1535689 0.6993381 0.518627 +0.2091628 0.6993381 0.518627 +0.2838106 0.6993381 0.518627 +0.3840425 0.6993381 0.518627 +0.518627 0.6993381 0.518627 +0.6993381 0.6993381 0.518627 +0.9419845 0.6993381 0.518627 +1.267794 0.6993381 0.518627 +1.705268 0.6993381 0.518627 +2.292679 0.6993381 0.518627 +3.081414 0.6993381 0.518627 +4.140474 0.6993381 0.518627 +5.562508 0.6993381 0.518627 +7.471917 0.6993381 0.518627 +10.03574 0.6993381 0.518627 +13.47828 0.6993381 0.518627 +18.10068 0.6993381 0.518627 +24.30731 0.6993381 0.518627 +32.64117 0.6993381 0.518627 +43.83129 0.6993381 0.518627 +58.85664 0.6993381 0.518627 +-0.0175068 0.9419845 0.518627 +-0.01161267 0.9419845 0.518627 +-0.005718534 0.9419845 0.518627 +0.0001755984 0.9419845 0.518627 +0.006069731 0.9419845 0.518627 +0.01197402 0.9419845 0.518627 +0.01903886 0.9419845 0.518627 +0.02852504 0.9419845 0.518627 +0.04126244 0.9419845 0.518627 +0.05836535 0.9419845 0.518627 +0.08132997 0.9419845 0.518627 +0.1121653 0.9419845 0.518627 +0.1535689 0.9419845 0.518627 +0.2091628 0.9419845 0.518627 +0.2838106 0.9419845 0.518627 +0.3840425 0.9419845 0.518627 +0.518627 0.9419845 0.518627 +0.6993381 0.9419845 0.518627 +0.9419845 0.9419845 0.518627 +1.267794 0.9419845 0.518627 +1.705268 0.9419845 0.518627 +2.292679 0.9419845 0.518627 +3.081414 0.9419845 0.518627 +4.140474 0.9419845 0.518627 +5.562508 0.9419845 0.518627 +7.471917 0.9419845 0.518627 +10.03574 0.9419845 0.518627 +13.47828 0.9419845 0.518627 +18.10068 0.9419845 0.518627 +24.30731 0.9419845 0.518627 +32.64117 0.9419845 0.518627 +43.83129 0.9419845 0.518627 +58.85664 0.9419845 0.518627 +-0.0175068 1.267794 0.518627 +-0.01161267 1.267794 0.518627 +-0.005718534 1.267794 0.518627 +0.0001755984 1.267794 0.518627 +0.006069731 1.267794 0.518627 +0.01197402 1.267794 0.518627 +0.01903886 1.267794 0.518627 +0.02852504 1.267794 0.518627 +0.04126244 1.267794 0.518627 +0.05836535 1.267794 0.518627 +0.08132997 1.267794 0.518627 +0.1121653 1.267794 0.518627 +0.1535689 1.267794 0.518627 +0.2091628 1.267794 0.518627 +0.2838106 1.267794 0.518627 +0.3840425 1.267794 0.518627 +0.518627 1.267794 0.518627 +0.6993381 1.267794 0.518627 +0.9419845 1.267794 0.518627 +1.267794 1.267794 0.518627 +1.705268 1.267794 0.518627 +2.292679 1.267794 0.518627 +3.081414 1.267794 0.518627 +4.140474 1.267794 0.518627 +5.562508 1.267794 0.518627 +7.471917 1.267794 0.518627 +10.03574 1.267794 0.518627 +13.47828 1.267794 0.518627 +18.10068 1.267794 0.518627 +24.30731 1.267794 0.518627 +32.64117 1.267794 0.518627 +43.83129 1.267794 0.518627 +58.85664 1.267794 0.518627 +-0.0175068 1.705268 0.518627 +-0.01161267 1.705268 0.518627 +-0.005718534 1.705268 0.518627 +0.0001755984 1.705268 0.518627 +0.006069731 1.705268 0.518627 +0.01197402 1.705268 0.518627 +0.01903886 1.705268 0.518627 +0.02852504 1.705268 0.518627 +0.04126244 1.705268 0.518627 +0.05836535 1.705268 0.518627 +0.08132997 1.705268 0.518627 +0.1121653 1.705268 0.518627 +0.1535689 1.705268 0.518627 +0.2091628 1.705268 0.518627 +0.2838106 1.705268 0.518627 +0.3840425 1.705268 0.518627 +0.518627 1.705268 0.518627 +0.6993381 1.705268 0.518627 +0.9419845 1.705268 0.518627 +1.267794 1.705268 0.518627 +1.705268 1.705268 0.518627 +2.292679 1.705268 0.518627 +3.081414 1.705268 0.518627 +4.140474 1.705268 0.518627 +5.562508 1.705268 0.518627 +7.471917 1.705268 0.518627 +10.03574 1.705268 0.518627 +13.47828 1.705268 0.518627 +18.10068 1.705268 0.518627 +24.30731 1.705268 0.518627 +32.64117 1.705268 0.518627 +43.83129 1.705268 0.518627 +58.85664 1.705268 0.518627 +-0.0175068 2.292679 0.518627 +-0.01161267 2.292679 0.518627 +-0.005718534 2.292679 0.518627 +0.0001755984 2.292679 0.518627 +0.006069731 2.292679 0.518627 +0.01197402 2.292679 0.518627 +0.01903886 2.292679 0.518627 +0.02852504 2.292679 0.518627 +0.04126244 2.292679 0.518627 +0.05836535 2.292679 0.518627 +0.08132997 2.292679 0.518627 +0.1121653 2.292679 0.518627 +0.1535689 2.292679 0.518627 +0.2091628 2.292679 0.518627 +0.2838106 2.292679 0.518627 +0.3840425 2.292679 0.518627 +0.518627 2.292679 0.518627 +0.6993381 2.292679 0.518627 +0.9419845 2.292679 0.518627 +1.267794 2.292679 0.518627 +1.705268 2.292679 0.518627 +2.292679 2.292679 0.518627 +3.081414 2.292679 0.518627 +4.140474 2.292679 0.518627 +5.562508 2.292679 0.518627 +7.471917 2.292679 0.518627 +10.03574 2.292679 0.518627 +13.47828 2.292679 0.518627 +18.10068 2.292679 0.518627 +24.30731 2.292679 0.518627 +32.64117 2.292679 0.518627 +43.83129 2.292679 0.518627 +58.85664 2.292679 0.518627 +-0.0175068 3.081414 0.518627 +-0.01161267 3.081414 0.518627 +-0.005718534 3.081414 0.518627 +0.0001755984 3.081414 0.518627 +0.006069731 3.081414 0.518627 +0.01197402 3.081414 0.518627 +0.01903886 3.081414 0.518627 +0.02852504 3.081414 0.518627 +0.04126244 3.081414 0.518627 +0.05836535 3.081414 0.518627 +0.08132997 3.081414 0.518627 +0.1121653 3.081414 0.518627 +0.1535689 3.081414 0.518627 +0.2091628 3.081414 0.518627 +0.2838106 3.081414 0.518627 +0.3840425 3.081414 0.518627 +0.518627 3.081414 0.518627 +0.6993381 3.081414 0.518627 +0.9419845 3.081414 0.518627 +1.267794 3.081414 0.518627 +1.705268 3.081414 0.518627 +2.292679 3.081414 0.518627 +3.081414 3.081414 0.518627 +4.140474 3.081414 0.518627 +5.562508 3.081414 0.518627 +7.471917 3.081414 0.518627 +10.03574 3.081414 0.518627 +13.47828 3.081414 0.518627 +18.10068 3.081414 0.518627 +24.30731 3.081414 0.518627 +32.64117 3.081414 0.518627 +43.83129 3.081414 0.518627 +58.85664 3.081414 0.518627 +-0.0175068 4.140474 0.518627 +-0.01161267 4.140474 0.518627 +-0.005718534 4.140474 0.518627 +0.0001755984 4.140474 0.518627 +0.006069731 4.140474 0.518627 +0.01197402 4.140474 0.518627 +0.01903886 4.140474 0.518627 +0.02852504 4.140474 0.518627 +0.04126244 4.140474 0.518627 +0.05836535 4.140474 0.518627 +0.08132997 4.140474 0.518627 +0.1121653 4.140474 0.518627 +0.1535689 4.140474 0.518627 +0.2091628 4.140474 0.518627 +0.2838106 4.140474 0.518627 +0.3840425 4.140474 0.518627 +0.518627 4.140474 0.518627 +0.6993381 4.140474 0.518627 +0.9419845 4.140474 0.518627 +1.267794 4.140474 0.518627 +1.705268 4.140474 0.518627 +2.292679 4.140474 0.518627 +3.081414 4.140474 0.518627 +4.140474 4.140474 0.518627 +5.562508 4.140474 0.518627 +7.471917 4.140474 0.518627 +10.03574 4.140474 0.518627 +13.47828 4.140474 0.518627 +18.10068 4.140474 0.518627 +24.30731 4.140474 0.518627 +32.64117 4.140474 0.518627 +43.83129 4.140474 0.518627 +58.85664 4.140474 0.518627 +-0.0175068 5.562508 0.518627 +-0.01161267 5.562508 0.518627 +-0.005718534 5.562508 0.518627 +0.0001755984 5.562508 0.518627 +0.006069731 5.562508 0.518627 +0.01197402 5.562508 0.518627 +0.01903886 5.562508 0.518627 +0.02852504 5.562508 0.518627 +0.04126244 5.562508 0.518627 +0.05836535 5.562508 0.518627 +0.08132997 5.562508 0.518627 +0.1121653 5.562508 0.518627 +0.1535689 5.562508 0.518627 +0.2091628 5.562508 0.518627 +0.2838106 5.562508 0.518627 +0.3840425 5.562508 0.518627 +0.518627 5.562508 0.518627 +0.6993381 5.562508 0.518627 +0.9419845 5.562508 0.518627 +1.267794 5.562508 0.518627 +1.705268 5.562508 0.518627 +2.292679 5.562508 0.518627 +3.081414 5.562508 0.518627 +4.140474 5.562508 0.518627 +5.562508 5.562508 0.518627 +7.471917 5.562508 0.518627 +10.03574 5.562508 0.518627 +13.47828 5.562508 0.518627 +18.10068 5.562508 0.518627 +24.30731 5.562508 0.518627 +32.64117 5.562508 0.518627 +43.83129 5.562508 0.518627 +58.85664 5.562508 0.518627 +-0.0175068 7.471917 0.518627 +-0.01161267 7.471917 0.518627 +-0.005718534 7.471917 0.518627 +0.0001755984 7.471917 0.518627 +0.006069731 7.471917 0.518627 +0.01197402 7.471917 0.518627 +0.01903886 7.471917 0.518627 +0.02852504 7.471917 0.518627 +0.04126244 7.471917 0.518627 +0.05836535 7.471917 0.518627 +0.08132997 7.471917 0.518627 +0.1121653 7.471917 0.518627 +0.1535689 7.471917 0.518627 +0.2091628 7.471917 0.518627 +0.2838106 7.471917 0.518627 +0.3840425 7.471917 0.518627 +0.518627 7.471917 0.518627 +0.6993381 7.471917 0.518627 +0.9419845 7.471917 0.518627 +1.267794 7.471917 0.518627 +1.705268 7.471917 0.518627 +2.292679 7.471917 0.518627 +3.081414 7.471917 0.518627 +4.140474 7.471917 0.518627 +5.562508 7.471917 0.518627 +7.471917 7.471917 0.518627 +10.03574 7.471917 0.518627 +13.47828 7.471917 0.518627 +18.10068 7.471917 0.518627 +24.30731 7.471917 0.518627 +32.64117 7.471917 0.518627 +43.83129 7.471917 0.518627 +58.85664 7.471917 0.518627 +-0.0175068 10.03574 0.518627 +-0.01161267 10.03574 0.518627 +-0.005718534 10.03574 0.518627 +0.0001755984 10.03574 0.518627 +0.006069731 10.03574 0.518627 +0.01197402 10.03574 0.518627 +0.01903886 10.03574 0.518627 +0.02852504 10.03574 0.518627 +0.04126244 10.03574 0.518627 +0.05836535 10.03574 0.518627 +0.08132997 10.03574 0.518627 +0.1121653 10.03574 0.518627 +0.1535689 10.03574 0.518627 +0.2091628 10.03574 0.518627 +0.2838106 10.03574 0.518627 +0.3840425 10.03574 0.518627 +0.518627 10.03574 0.518627 +0.6993381 10.03574 0.518627 +0.9419845 10.03574 0.518627 +1.267794 10.03574 0.518627 +1.705268 10.03574 0.518627 +2.292679 10.03574 0.518627 +3.081414 10.03574 0.518627 +4.140474 10.03574 0.518627 +5.562508 10.03574 0.518627 +7.471917 10.03574 0.518627 +10.03574 10.03574 0.518627 +13.47828 10.03574 0.518627 +18.10068 10.03574 0.518627 +24.30731 10.03574 0.518627 +32.64117 10.03574 0.518627 +43.83129 10.03574 0.518627 +58.85664 10.03574 0.518627 +-0.0175068 13.47828 0.518627 +-0.01161267 13.47828 0.518627 +-0.005718534 13.47828 0.518627 +0.0001755984 13.47828 0.518627 +0.006069731 13.47828 0.518627 +0.01197402 13.47828 0.518627 +0.01903886 13.47828 0.518627 +0.02852504 13.47828 0.518627 +0.04126244 13.47828 0.518627 +0.05836535 13.47828 0.518627 +0.08132997 13.47828 0.518627 +0.1121653 13.47828 0.518627 +0.1535689 13.47828 0.518627 +0.2091628 13.47828 0.518627 +0.2838106 13.47828 0.518627 +0.3840425 13.47828 0.518627 +0.518627 13.47828 0.518627 +0.6993381 13.47828 0.518627 +0.9419845 13.47828 0.518627 +1.267794 13.47828 0.518627 +1.705268 13.47828 0.518627 +2.292679 13.47828 0.518627 +3.081414 13.47828 0.518627 +4.140474 13.47828 0.518627 +5.562508 13.47828 0.518627 +7.471917 13.47828 0.518627 +10.03574 13.47828 0.518627 +13.47828 13.47828 0.518627 +18.10068 13.47828 0.518627 +24.30731 13.47828 0.518627 +32.64117 13.47828 0.518627 +43.83129 13.47828 0.518627 +58.85664 13.47828 0.518627 +-0.0175068 18.10068 0.518627 +-0.01161267 18.10068 0.518627 +-0.005718534 18.10068 0.518627 +0.0001755984 18.10068 0.518627 +0.006069731 18.10068 0.518627 +0.01197402 18.10068 0.518627 +0.01903886 18.10068 0.518627 +0.02852504 18.10068 0.518627 +0.04126244 18.10068 0.518627 +0.05836535 18.10068 0.518627 +0.08132997 18.10068 0.518627 +0.1121653 18.10068 0.518627 +0.1535689 18.10068 0.518627 +0.2091628 18.10068 0.518627 +0.2838106 18.10068 0.518627 +0.3840425 18.10068 0.518627 +0.518627 18.10068 0.518627 +0.6993381 18.10068 0.518627 +0.9419845 18.10068 0.518627 +1.267794 18.10068 0.518627 +1.705268 18.10068 0.518627 +2.292679 18.10068 0.518627 +3.081414 18.10068 0.518627 +4.140474 18.10068 0.518627 +5.562508 18.10068 0.518627 +7.471917 18.10068 0.518627 +10.03574 18.10068 0.518627 +13.47828 18.10068 0.518627 +18.10068 18.10068 0.518627 +24.30731 18.10068 0.518627 +32.64117 18.10068 0.518627 +43.83129 18.10068 0.518627 +58.85664 18.10068 0.518627 +-0.0175068 24.30731 0.518627 +-0.01161267 24.30731 0.518627 +-0.005718534 24.30731 0.518627 +0.0001755984 24.30731 0.518627 +0.006069731 24.30731 0.518627 +0.01197402 24.30731 0.518627 +0.01903886 24.30731 0.518627 +0.02852504 24.30731 0.518627 +0.04126244 24.30731 0.518627 +0.05836535 24.30731 0.518627 +0.08132997 24.30731 0.518627 +0.1121653 24.30731 0.518627 +0.1535689 24.30731 0.518627 +0.2091628 24.30731 0.518627 +0.2838106 24.30731 0.518627 +0.3840425 24.30731 0.518627 +0.518627 24.30731 0.518627 +0.6993381 24.30731 0.518627 +0.9419845 24.30731 0.518627 +1.267794 24.30731 0.518627 +1.705268 24.30731 0.518627 +2.292679 24.30731 0.518627 +3.081414 24.30731 0.518627 +4.140474 24.30731 0.518627 +5.562508 24.30731 0.518627 +7.471917 24.30731 0.518627 +10.03574 24.30731 0.518627 +13.47828 24.30731 0.518627 +18.10068 24.30731 0.518627 +24.30731 24.30731 0.518627 +32.64117 24.30731 0.518627 +43.83129 24.30731 0.518627 +58.85664 24.30731 0.518627 +-0.0175068 32.64117 0.518627 +-0.01161267 32.64117 0.518627 +-0.005718534 32.64117 0.518627 +0.0001755984 32.64117 0.518627 +0.006069731 32.64117 0.518627 +0.01197402 32.64117 0.518627 +0.01903886 32.64117 0.518627 +0.02852504 32.64117 0.518627 +0.04126244 32.64117 0.518627 +0.05836535 32.64117 0.518627 +0.08132997 32.64117 0.518627 +0.1121653 32.64117 0.518627 +0.1535689 32.64117 0.518627 +0.2091628 32.64117 0.518627 +0.2838106 32.64117 0.518627 +0.3840425 32.64117 0.518627 +0.518627 32.64117 0.518627 +0.6993381 32.64117 0.518627 +0.9419845 32.64117 0.518627 +1.267794 32.64117 0.518627 +1.705268 32.64117 0.518627 +2.292679 32.64117 0.518627 +3.081414 32.64117 0.518627 +4.140474 32.64117 0.518627 +5.562508 32.64117 0.518627 +7.471917 32.64117 0.518627 +10.03574 32.64117 0.518627 +13.47828 32.64117 0.518627 +18.10068 32.64117 0.518627 +24.30731 32.64117 0.518627 +32.64117 32.64117 0.518627 +43.83129 32.64117 0.518627 +58.85664 32.64117 0.518627 +-0.0175068 43.83129 0.518627 +-0.01161267 43.83129 0.518627 +-0.005718534 43.83129 0.518627 +0.0001755984 43.83129 0.518627 +0.006069731 43.83129 0.518627 +0.01197402 43.83129 0.518627 +0.01903886 43.83129 0.518627 +0.02852504 43.83129 0.518627 +0.04126244 43.83129 0.518627 +0.05836535 43.83129 0.518627 +0.08132997 43.83129 0.518627 +0.1121653 43.83129 0.518627 +0.1535689 43.83129 0.518627 +0.2091628 43.83129 0.518627 +0.2838106 43.83129 0.518627 +0.3840425 43.83129 0.518627 +0.518627 43.83129 0.518627 +0.6993381 43.83129 0.518627 +0.9419845 43.83129 0.518627 +1.267794 43.83129 0.518627 +1.705268 43.83129 0.518627 +2.292679 43.83129 0.518627 +3.081414 43.83129 0.518627 +4.140474 43.83129 0.518627 +5.562508 43.83129 0.518627 +7.471917 43.83129 0.518627 +10.03574 43.83129 0.518627 +13.47828 43.83129 0.518627 +18.10068 43.83129 0.518627 +24.30731 43.83129 0.518627 +32.64117 43.83129 0.518627 +43.83129 43.83129 0.518627 +58.85664 43.83129 0.518627 +-0.0175068 58.85664 0.518627 +-0.01161267 58.85664 0.518627 +-0.005718534 58.85664 0.518627 +0.0001755984 58.85664 0.518627 +0.006069731 58.85664 0.518627 +0.01197402 58.85664 0.518627 +0.01903886 58.85664 0.518627 +0.02852504 58.85664 0.518627 +0.04126244 58.85664 0.518627 +0.05836535 58.85664 0.518627 +0.08132997 58.85664 0.518627 +0.1121653 58.85664 0.518627 +0.1535689 58.85664 0.518627 +0.2091628 58.85664 0.518627 +0.2838106 58.85664 0.518627 +0.3840425 58.85664 0.518627 +0.518627 58.85664 0.518627 +0.6993381 58.85664 0.518627 +0.9419845 58.85664 0.518627 +1.267794 58.85664 0.518627 +1.705268 58.85664 0.518627 +2.292679 58.85664 0.518627 +3.081414 58.85664 0.518627 +4.140474 58.85664 0.518627 +5.562508 58.85664 0.518627 +7.471917 58.85664 0.518627 +10.03574 58.85664 0.518627 +13.47828 58.85664 0.518627 +18.10068 58.85664 0.518627 +24.30731 58.85664 0.518627 +32.64117 58.85664 0.518627 +43.83129 58.85664 0.518627 +58.85664 58.85664 0.518627 +-0.0175068 -0.0175068 0.6993381 +-0.01161267 -0.0175068 0.6993381 +-0.005718534 -0.0175068 0.6993381 +0.0001755984 -0.0175068 0.6993381 +0.006069731 -0.0175068 0.6993381 +0.01197402 -0.0175068 0.6993381 +0.01903886 -0.0175068 0.6993381 +0.02852504 -0.0175068 0.6993381 +0.04126244 -0.0175068 0.6993381 +0.05836535 -0.0175068 0.6993381 +0.08132997 -0.0175068 0.6993381 +0.1121653 -0.0175068 0.6993381 +0.1535689 -0.0175068 0.6993381 +0.2091628 -0.0175068 0.6993381 +0.2838106 -0.0175068 0.6993381 +0.3840425 -0.0175068 0.6993381 +0.518627 -0.0175068 0.6993381 +0.6993381 -0.0175068 0.6993381 +0.9419845 -0.0175068 0.6993381 +1.267794 -0.0175068 0.6993381 +1.705268 -0.0175068 0.6993381 +2.292679 -0.0175068 0.6993381 +3.081414 -0.0175068 0.6993381 +4.140474 -0.0175068 0.6993381 +5.562508 -0.0175068 0.6993381 +7.471917 -0.0175068 0.6993381 +10.03574 -0.0175068 0.6993381 +13.47828 -0.0175068 0.6993381 +18.10068 -0.0175068 0.6993381 +24.30731 -0.0175068 0.6993381 +32.64117 -0.0175068 0.6993381 +43.83129 -0.0175068 0.6993381 +58.85664 -0.0175068 0.6993381 +-0.0175068 -0.01161267 0.6993381 +-0.01161267 -0.01161267 0.6993381 +-0.005718534 -0.01161267 0.6993381 +0.0001755984 -0.01161267 0.6993381 +0.006069731 -0.01161267 0.6993381 +0.01197402 -0.01161267 0.6993381 +0.01903886 -0.01161267 0.6993381 +0.02852504 -0.01161267 0.6993381 +0.04126244 -0.01161267 0.6993381 +0.05836535 -0.01161267 0.6993381 +0.08132997 -0.01161267 0.6993381 +0.1121653 -0.01161267 0.6993381 +0.1535689 -0.01161267 0.6993381 +0.2091628 -0.01161267 0.6993381 +0.2838106 -0.01161267 0.6993381 +0.3840425 -0.01161267 0.6993381 +0.518627 -0.01161267 0.6993381 +0.6993381 -0.01161267 0.6993381 +0.9419845 -0.01161267 0.6993381 +1.267794 -0.01161267 0.6993381 +1.705268 -0.01161267 0.6993381 +2.292679 -0.01161267 0.6993381 +3.081414 -0.01161267 0.6993381 +4.140474 -0.01161267 0.6993381 +5.562508 -0.01161267 0.6993381 +7.471917 -0.01161267 0.6993381 +10.03574 -0.01161267 0.6993381 +13.47828 -0.01161267 0.6993381 +18.10068 -0.01161267 0.6993381 +24.30731 -0.01161267 0.6993381 +32.64117 -0.01161267 0.6993381 +43.83129 -0.01161267 0.6993381 +58.85664 -0.01161267 0.6993381 +-0.0175068 -0.005718534 0.6993381 +-0.01161267 -0.005718534 0.6993381 +-0.005718534 -0.005718534 0.6993381 +0.0001755984 -0.005718534 0.6993381 +0.006069731 -0.005718534 0.6993381 +0.01197402 -0.005718534 0.6993381 +0.01903886 -0.005718534 0.6993381 +0.02852504 -0.005718534 0.6993381 +0.04126244 -0.005718534 0.6993381 +0.05836535 -0.005718534 0.6993381 +0.08132997 -0.005718534 0.6993381 +0.1121653 -0.005718534 0.6993381 +0.1535689 -0.005718534 0.6993381 +0.2091628 -0.005718534 0.6993381 +0.2838106 -0.005718534 0.6993381 +0.3840425 -0.005718534 0.6993381 +0.518627 -0.005718534 0.6993381 +0.6993381 -0.005718534 0.6993381 +0.9419845 -0.005718534 0.6993381 +1.267794 -0.005718534 0.6993381 +1.705268 -0.005718534 0.6993381 +2.292679 -0.005718534 0.6993381 +3.081414 -0.005718534 0.6993381 +4.140474 -0.005718534 0.6993381 +5.562508 -0.005718534 0.6993381 +7.471917 -0.005718534 0.6993381 +10.03574 -0.005718534 0.6993381 +13.47828 -0.005718534 0.6993381 +18.10068 -0.005718534 0.6993381 +24.30731 -0.005718534 0.6993381 +32.64117 -0.005718534 0.6993381 +43.83129 -0.005718534 0.6993381 +58.85664 -0.005718534 0.6993381 +-0.0175068 0.0001755984 0.6993381 +-0.01161267 0.0001755984 0.6993381 +-0.005718534 0.0001755984 0.6993381 +0.0001755984 0.0001755984 0.6993381 +0.006069731 0.0001755984 0.6993381 +0.01197402 0.0001755984 0.6993381 +0.01903886 0.0001755984 0.6993381 +0.02852504 0.0001755984 0.6993381 +0.04126244 0.0001755984 0.6993381 +0.05836535 0.0001755984 0.6993381 +0.08132997 0.0001755984 0.6993381 +0.1121653 0.0001755984 0.6993381 +0.1535689 0.0001755984 0.6993381 +0.2091628 0.0001755984 0.6993381 +0.2838106 0.0001755984 0.6993381 +0.3840425 0.0001755984 0.6993381 +0.518627 0.0001755984 0.6993381 +0.6993381 0.0001755984 0.6993381 +0.9419845 0.0001755984 0.6993381 +1.267794 0.0001755984 0.6993381 +1.705268 0.0001755984 0.6993381 +2.292679 0.0001755984 0.6993381 +3.081414 0.0001755984 0.6993381 +4.140474 0.0001755984 0.6993381 +5.562508 0.0001755984 0.6993381 +7.471917 0.0001755984 0.6993381 +10.03574 0.0001755984 0.6993381 +13.47828 0.0001755984 0.6993381 +18.10068 0.0001755984 0.6993381 +24.30731 0.0001755984 0.6993381 +32.64117 0.0001755984 0.6993381 +43.83129 0.0001755984 0.6993381 +58.85664 0.0001755984 0.6993381 +-0.0175068 0.006069731 0.6993381 +-0.01161267 0.006069731 0.6993381 +-0.005718534 0.006069731 0.6993381 +0.0001755984 0.006069731 0.6993381 +0.006069731 0.006069731 0.6993381 +0.01197402 0.006069731 0.6993381 +0.01903886 0.006069731 0.6993381 +0.02852504 0.006069731 0.6993381 +0.04126244 0.006069731 0.6993381 +0.05836535 0.006069731 0.6993381 +0.08132997 0.006069731 0.6993381 +0.1121653 0.006069731 0.6993381 +0.1535689 0.006069731 0.6993381 +0.2091628 0.006069731 0.6993381 +0.2838106 0.006069731 0.6993381 +0.3840425 0.006069731 0.6993381 +0.518627 0.006069731 0.6993381 +0.6993381 0.006069731 0.6993381 +0.9419845 0.006069731 0.6993381 +1.267794 0.006069731 0.6993381 +1.705268 0.006069731 0.6993381 +2.292679 0.006069731 0.6993381 +3.081414 0.006069731 0.6993381 +4.140474 0.006069731 0.6993381 +5.562508 0.006069731 0.6993381 +7.471917 0.006069731 0.6993381 +10.03574 0.006069731 0.6993381 +13.47828 0.006069731 0.6993381 +18.10068 0.006069731 0.6993381 +24.30731 0.006069731 0.6993381 +32.64117 0.006069731 0.6993381 +43.83129 0.006069731 0.6993381 +58.85664 0.006069731 0.6993381 +-0.0175068 0.01197402 0.6993381 +-0.01161267 0.01197402 0.6993381 +-0.005718534 0.01197402 0.6993381 +0.0001755984 0.01197402 0.6993381 +0.006069731 0.01197402 0.6993381 +0.01197402 0.01197402 0.6993381 +0.01903886 0.01197402 0.6993381 +0.02852504 0.01197402 0.6993381 +0.04126244 0.01197402 0.6993381 +0.05836535 0.01197402 0.6993381 +0.08132997 0.01197402 0.6993381 +0.1121653 0.01197402 0.6993381 +0.1535689 0.01197402 0.6993381 +0.2091628 0.01197402 0.6993381 +0.2838106 0.01197402 0.6993381 +0.3840425 0.01197402 0.6993381 +0.518627 0.01197402 0.6993381 +0.6993381 0.01197402 0.6993381 +0.9419845 0.01197402 0.6993381 +1.267794 0.01197402 0.6993381 +1.705268 0.01197402 0.6993381 +2.292679 0.01197402 0.6993381 +3.081414 0.01197402 0.6993381 +4.140474 0.01197402 0.6993381 +5.562508 0.01197402 0.6993381 +7.471917 0.01197402 0.6993381 +10.03574 0.01197402 0.6993381 +13.47828 0.01197402 0.6993381 +18.10068 0.01197402 0.6993381 +24.30731 0.01197402 0.6993381 +32.64117 0.01197402 0.6993381 +43.83129 0.01197402 0.6993381 +58.85664 0.01197402 0.6993381 +-0.0175068 0.01903886 0.6993381 +-0.01161267 0.01903886 0.6993381 +-0.005718534 0.01903886 0.6993381 +0.0001755984 0.01903886 0.6993381 +0.006069731 0.01903886 0.6993381 +0.01197402 0.01903886 0.6993381 +0.01903886 0.01903886 0.6993381 +0.02852504 0.01903886 0.6993381 +0.04126244 0.01903886 0.6993381 +0.05836535 0.01903886 0.6993381 +0.08132997 0.01903886 0.6993381 +0.1121653 0.01903886 0.6993381 +0.1535689 0.01903886 0.6993381 +0.2091628 0.01903886 0.6993381 +0.2838106 0.01903886 0.6993381 +0.3840425 0.01903886 0.6993381 +0.518627 0.01903886 0.6993381 +0.6993381 0.01903886 0.6993381 +0.9419845 0.01903886 0.6993381 +1.267794 0.01903886 0.6993381 +1.705268 0.01903886 0.6993381 +2.292679 0.01903886 0.6993381 +3.081414 0.01903886 0.6993381 +4.140474 0.01903886 0.6993381 +5.562508 0.01903886 0.6993381 +7.471917 0.01903886 0.6993381 +10.03574 0.01903886 0.6993381 +13.47828 0.01903886 0.6993381 +18.10068 0.01903886 0.6993381 +24.30731 0.01903886 0.6993381 +32.64117 0.01903886 0.6993381 +43.83129 0.01903886 0.6993381 +58.85664 0.01903886 0.6993381 +-0.0175068 0.02852504 0.6993381 +-0.01161267 0.02852504 0.6993381 +-0.005718534 0.02852504 0.6993381 +0.0001755984 0.02852504 0.6993381 +0.006069731 0.02852504 0.6993381 +0.01197402 0.02852504 0.6993381 +0.01903886 0.02852504 0.6993381 +0.02852504 0.02852504 0.6993381 +0.04126244 0.02852504 0.6993381 +0.05836535 0.02852504 0.6993381 +0.08132997 0.02852504 0.6993381 +0.1121653 0.02852504 0.6993381 +0.1535689 0.02852504 0.6993381 +0.2091628 0.02852504 0.6993381 +0.2838106 0.02852504 0.6993381 +0.3840425 0.02852504 0.6993381 +0.518627 0.02852504 0.6993381 +0.6993381 0.02852504 0.6993381 +0.9419845 0.02852504 0.6993381 +1.267794 0.02852504 0.6993381 +1.705268 0.02852504 0.6993381 +2.292679 0.02852504 0.6993381 +3.081414 0.02852504 0.6993381 +4.140474 0.02852504 0.6993381 +5.562508 0.02852504 0.6993381 +7.471917 0.02852504 0.6993381 +10.03574 0.02852504 0.6993381 +13.47828 0.02852504 0.6993381 +18.10068 0.02852504 0.6993381 +24.30731 0.02852504 0.6993381 +32.64117 0.02852504 0.6993381 +43.83129 0.02852504 0.6993381 +58.85664 0.02852504 0.6993381 +-0.0175068 0.04126244 0.6993381 +-0.01161267 0.04126244 0.6993381 +-0.005718534 0.04126244 0.6993381 +0.0001755984 0.04126244 0.6993381 +0.006069731 0.04126244 0.6993381 +0.01197402 0.04126244 0.6993381 +0.01903886 0.04126244 0.6993381 +0.02852504 0.04126244 0.6993381 +0.04126244 0.04126244 0.6993381 +0.05836535 0.04126244 0.6993381 +0.08132997 0.04126244 0.6993381 +0.1121653 0.04126244 0.6993381 +0.1535689 0.04126244 0.6993381 +0.2091628 0.04126244 0.6993381 +0.2838106 0.04126244 0.6993381 +0.3840425 0.04126244 0.6993381 +0.518627 0.04126244 0.6993381 +0.6993381 0.04126244 0.6993381 +0.9419845 0.04126244 0.6993381 +1.267794 0.04126244 0.6993381 +1.705268 0.04126244 0.6993381 +2.292679 0.04126244 0.6993381 +3.081414 0.04126244 0.6993381 +4.140474 0.04126244 0.6993381 +5.562508 0.04126244 0.6993381 +7.471917 0.04126244 0.6993381 +10.03574 0.04126244 0.6993381 +13.47828 0.04126244 0.6993381 +18.10068 0.04126244 0.6993381 +24.30731 0.04126244 0.6993381 +32.64117 0.04126244 0.6993381 +43.83129 0.04126244 0.6993381 +58.85664 0.04126244 0.6993381 +-0.0175068 0.05836535 0.6993381 +-0.01161267 0.05836535 0.6993381 +-0.005718534 0.05836535 0.6993381 +0.0001755984 0.05836535 0.6993381 +0.006069731 0.05836535 0.6993381 +0.01197402 0.05836535 0.6993381 +0.01903886 0.05836535 0.6993381 +0.02852504 0.05836535 0.6993381 +0.04126244 0.05836535 0.6993381 +0.05836535 0.05836535 0.6993381 +0.08132997 0.05836535 0.6993381 +0.1121653 0.05836535 0.6993381 +0.1535689 0.05836535 0.6993381 +0.2091628 0.05836535 0.6993381 +0.2838106 0.05836535 0.6993381 +0.3840425 0.05836535 0.6993381 +0.518627 0.05836535 0.6993381 +0.6993381 0.05836535 0.6993381 +0.9419845 0.05836535 0.6993381 +1.267794 0.05836535 0.6993381 +1.705268 0.05836535 0.6993381 +2.292679 0.05836535 0.6993381 +3.081414 0.05836535 0.6993381 +4.140474 0.05836535 0.6993381 +5.562508 0.05836535 0.6993381 +7.471917 0.05836535 0.6993381 +10.03574 0.05836535 0.6993381 +13.47828 0.05836535 0.6993381 +18.10068 0.05836535 0.6993381 +24.30731 0.05836535 0.6993381 +32.64117 0.05836535 0.6993381 +43.83129 0.05836535 0.6993381 +58.85664 0.05836535 0.6993381 +-0.0175068 0.08132997 0.6993381 +-0.01161267 0.08132997 0.6993381 +-0.005718534 0.08132997 0.6993381 +0.0001755984 0.08132997 0.6993381 +0.006069731 0.08132997 0.6993381 +0.01197402 0.08132997 0.6993381 +0.01903886 0.08132997 0.6993381 +0.02852504 0.08132997 0.6993381 +0.04126244 0.08132997 0.6993381 +0.05836535 0.08132997 0.6993381 +0.08132997 0.08132997 0.6993381 +0.1121653 0.08132997 0.6993381 +0.1535689 0.08132997 0.6993381 +0.2091628 0.08132997 0.6993381 +0.2838106 0.08132997 0.6993381 +0.3840425 0.08132997 0.6993381 +0.518627 0.08132997 0.6993381 +0.6993381 0.08132997 0.6993381 +0.9419845 0.08132997 0.6993381 +1.267794 0.08132997 0.6993381 +1.705268 0.08132997 0.6993381 +2.292679 0.08132997 0.6993381 +3.081414 0.08132997 0.6993381 +4.140474 0.08132997 0.6993381 +5.562508 0.08132997 0.6993381 +7.471917 0.08132997 0.6993381 +10.03574 0.08132997 0.6993381 +13.47828 0.08132997 0.6993381 +18.10068 0.08132997 0.6993381 +24.30731 0.08132997 0.6993381 +32.64117 0.08132997 0.6993381 +43.83129 0.08132997 0.6993381 +58.85664 0.08132997 0.6993381 +-0.0175068 0.1121653 0.6993381 +-0.01161267 0.1121653 0.6993381 +-0.005718534 0.1121653 0.6993381 +0.0001755984 0.1121653 0.6993381 +0.006069731 0.1121653 0.6993381 +0.01197402 0.1121653 0.6993381 +0.01903886 0.1121653 0.6993381 +0.02852504 0.1121653 0.6993381 +0.04126244 0.1121653 0.6993381 +0.05836535 0.1121653 0.6993381 +0.08132997 0.1121653 0.6993381 +0.1121653 0.1121653 0.6993381 +0.1535689 0.1121653 0.6993381 +0.2091628 0.1121653 0.6993381 +0.2838106 0.1121653 0.6993381 +0.3840425 0.1121653 0.6993381 +0.518627 0.1121653 0.6993381 +0.6993381 0.1121653 0.6993381 +0.9419845 0.1121653 0.6993381 +1.267794 0.1121653 0.6993381 +1.705268 0.1121653 0.6993381 +2.292679 0.1121653 0.6993381 +3.081414 0.1121653 0.6993381 +4.140474 0.1121653 0.6993381 +5.562508 0.1121653 0.6993381 +7.471917 0.1121653 0.6993381 +10.03574 0.1121653 0.6993381 +13.47828 0.1121653 0.6993381 +18.10068 0.1121653 0.6993381 +24.30731 0.1121653 0.6993381 +32.64117 0.1121653 0.6993381 +43.83129 0.1121653 0.6993381 +58.85664 0.1121653 0.6993381 +-0.0175068 0.1535689 0.6993381 +-0.01161267 0.1535689 0.6993381 +-0.005718534 0.1535689 0.6993381 +0.0001755984 0.1535689 0.6993381 +0.006069731 0.1535689 0.6993381 +0.01197402 0.1535689 0.6993381 +0.01903886 0.1535689 0.6993381 +0.02852504 0.1535689 0.6993381 +0.04126244 0.1535689 0.6993381 +0.05836535 0.1535689 0.6993381 +0.08132997 0.1535689 0.6993381 +0.1121653 0.1535689 0.6993381 +0.1535689 0.1535689 0.6993381 +0.2091628 0.1535689 0.6993381 +0.2838106 0.1535689 0.6993381 +0.3840425 0.1535689 0.6993381 +0.518627 0.1535689 0.6993381 +0.6993381 0.1535689 0.6993381 +0.9419845 0.1535689 0.6993381 +1.267794 0.1535689 0.6993381 +1.705268 0.1535689 0.6993381 +2.292679 0.1535689 0.6993381 +3.081414 0.1535689 0.6993381 +4.140474 0.1535689 0.6993381 +5.562508 0.1535689 0.6993381 +7.471917 0.1535689 0.6993381 +10.03574 0.1535689 0.6993381 +13.47828 0.1535689 0.6993381 +18.10068 0.1535689 0.6993381 +24.30731 0.1535689 0.6993381 +32.64117 0.1535689 0.6993381 +43.83129 0.1535689 0.6993381 +58.85664 0.1535689 0.6993381 +-0.0175068 0.2091628 0.6993381 +-0.01161267 0.2091628 0.6993381 +-0.005718534 0.2091628 0.6993381 +0.0001755984 0.2091628 0.6993381 +0.006069731 0.2091628 0.6993381 +0.01197402 0.2091628 0.6993381 +0.01903886 0.2091628 0.6993381 +0.02852504 0.2091628 0.6993381 +0.04126244 0.2091628 0.6993381 +0.05836535 0.2091628 0.6993381 +0.08132997 0.2091628 0.6993381 +0.1121653 0.2091628 0.6993381 +0.1535689 0.2091628 0.6993381 +0.2091628 0.2091628 0.6993381 +0.2838106 0.2091628 0.6993381 +0.3840425 0.2091628 0.6993381 +0.518627 0.2091628 0.6993381 +0.6993381 0.2091628 0.6993381 +0.9419845 0.2091628 0.6993381 +1.267794 0.2091628 0.6993381 +1.705268 0.2091628 0.6993381 +2.292679 0.2091628 0.6993381 +3.081414 0.2091628 0.6993381 +4.140474 0.2091628 0.6993381 +5.562508 0.2091628 0.6993381 +7.471917 0.2091628 0.6993381 +10.03574 0.2091628 0.6993381 +13.47828 0.2091628 0.6993381 +18.10068 0.2091628 0.6993381 +24.30731 0.2091628 0.6993381 +32.64117 0.2091628 0.6993381 +43.83129 0.2091628 0.6993381 +58.85664 0.2091628 0.6993381 +-0.0175068 0.2838106 0.6993381 +-0.01161267 0.2838106 0.6993381 +-0.005718534 0.2838106 0.6993381 +0.0001755984 0.2838106 0.6993381 +0.006069731 0.2838106 0.6993381 +0.01197402 0.2838106 0.6993381 +0.01903886 0.2838106 0.6993381 +0.02852504 0.2838106 0.6993381 +0.04126244 0.2838106 0.6993381 +0.05836535 0.2838106 0.6993381 +0.08132997 0.2838106 0.6993381 +0.1121653 0.2838106 0.6993381 +0.1535689 0.2838106 0.6993381 +0.2091628 0.2838106 0.6993381 +0.2838106 0.2838106 0.6993381 +0.3840425 0.2838106 0.6993381 +0.518627 0.2838106 0.6993381 +0.6993381 0.2838106 0.6993381 +0.9419845 0.2838106 0.6993381 +1.267794 0.2838106 0.6993381 +1.705268 0.2838106 0.6993381 +2.292679 0.2838106 0.6993381 +3.081414 0.2838106 0.6993381 +4.140474 0.2838106 0.6993381 +5.562508 0.2838106 0.6993381 +7.471917 0.2838106 0.6993381 +10.03574 0.2838106 0.6993381 +13.47828 0.2838106 0.6993381 +18.10068 0.2838106 0.6993381 +24.30731 0.2838106 0.6993381 +32.64117 0.2838106 0.6993381 +43.83129 0.2838106 0.6993381 +58.85664 0.2838106 0.6993381 +-0.0175068 0.3840425 0.6993381 +-0.01161267 0.3840425 0.6993381 +-0.005718534 0.3840425 0.6993381 +0.0001755984 0.3840425 0.6993381 +0.006069731 0.3840425 0.6993381 +0.01197402 0.3840425 0.6993381 +0.01903886 0.3840425 0.6993381 +0.02852504 0.3840425 0.6993381 +0.04126244 0.3840425 0.6993381 +0.05836535 0.3840425 0.6993381 +0.08132997 0.3840425 0.6993381 +0.1121653 0.3840425 0.6993381 +0.1535689 0.3840425 0.6993381 +0.2091628 0.3840425 0.6993381 +0.2838106 0.3840425 0.6993381 +0.3840425 0.3840425 0.6993381 +0.518627 0.3840425 0.6993381 +0.6993381 0.3840425 0.6993381 +0.9419845 0.3840425 0.6993381 +1.267794 0.3840425 0.6993381 +1.705268 0.3840425 0.6993381 +2.292679 0.3840425 0.6993381 +3.081414 0.3840425 0.6993381 +4.140474 0.3840425 0.6993381 +5.562508 0.3840425 0.6993381 +7.471917 0.3840425 0.6993381 +10.03574 0.3840425 0.6993381 +13.47828 0.3840425 0.6993381 +18.10068 0.3840425 0.6993381 +24.30731 0.3840425 0.6993381 +32.64117 0.3840425 0.6993381 +43.83129 0.3840425 0.6993381 +58.85664 0.3840425 0.6993381 +-0.0175068 0.518627 0.6993381 +-0.01161267 0.518627 0.6993381 +-0.005718534 0.518627 0.6993381 +0.0001755984 0.518627 0.6993381 +0.006069731 0.518627 0.6993381 +0.01197402 0.518627 0.6993381 +0.01903886 0.518627 0.6993381 +0.02852504 0.518627 0.6993381 +0.04126244 0.518627 0.6993381 +0.05836535 0.518627 0.6993381 +0.08132997 0.518627 0.6993381 +0.1121653 0.518627 0.6993381 +0.1535689 0.518627 0.6993381 +0.2091628 0.518627 0.6993381 +0.2838106 0.518627 0.6993381 +0.3840425 0.518627 0.6993381 +0.518627 0.518627 0.6993381 +0.6993381 0.518627 0.6993381 +0.9419845 0.518627 0.6993381 +1.267794 0.518627 0.6993381 +1.705268 0.518627 0.6993381 +2.292679 0.518627 0.6993381 +3.081414 0.518627 0.6993381 +4.140474 0.518627 0.6993381 +5.562508 0.518627 0.6993381 +7.471917 0.518627 0.6993381 +10.03574 0.518627 0.6993381 +13.47828 0.518627 0.6993381 +18.10068 0.518627 0.6993381 +24.30731 0.518627 0.6993381 +32.64117 0.518627 0.6993381 +43.83129 0.518627 0.6993381 +58.85664 0.518627 0.6993381 +-0.0175068 0.6993381 0.6993381 +-0.01161267 0.6993381 0.6993381 +-0.005718534 0.6993381 0.6993381 +0.0001755984 0.6993381 0.6993381 +0.006069731 0.6993381 0.6993381 +0.01197402 0.6993381 0.6993381 +0.01903886 0.6993381 0.6993381 +0.02852504 0.6993381 0.6993381 +0.04126244 0.6993381 0.6993381 +0.05836535 0.6993381 0.6993381 +0.08132997 0.6993381 0.6993381 +0.1121653 0.6993381 0.6993381 +0.1535689 0.6993381 0.6993381 +0.2091628 0.6993381 0.6993381 +0.2838106 0.6993381 0.6993381 +0.3840425 0.6993381 0.6993381 +0.518627 0.6993381 0.6993381 +0.6993381 0.6993381 0.6993381 +0.9419845 0.6993381 0.6993381 +1.267794 0.6993381 0.6993381 +1.705268 0.6993381 0.6993381 +2.292679 0.6993381 0.6993381 +3.081414 0.6993381 0.6993381 +4.140474 0.6993381 0.6993381 +5.562508 0.6993381 0.6993381 +7.471917 0.6993381 0.6993381 +10.03574 0.6993381 0.6993381 +13.47828 0.6993381 0.6993381 +18.10068 0.6993381 0.6993381 +24.30731 0.6993381 0.6993381 +32.64117 0.6993381 0.6993381 +43.83129 0.6993381 0.6993381 +58.85664 0.6993381 0.6993381 +-0.0175068 0.9419845 0.6993381 +-0.01161267 0.9419845 0.6993381 +-0.005718534 0.9419845 0.6993381 +0.0001755984 0.9419845 0.6993381 +0.006069731 0.9419845 0.6993381 +0.01197402 0.9419845 0.6993381 +0.01903886 0.9419845 0.6993381 +0.02852504 0.9419845 0.6993381 +0.04126244 0.9419845 0.6993381 +0.05836535 0.9419845 0.6993381 +0.08132997 0.9419845 0.6993381 +0.1121653 0.9419845 0.6993381 +0.1535689 0.9419845 0.6993381 +0.2091628 0.9419845 0.6993381 +0.2838106 0.9419845 0.6993381 +0.3840425 0.9419845 0.6993381 +0.518627 0.9419845 0.6993381 +0.6993381 0.9419845 0.6993381 +0.9419845 0.9419845 0.6993381 +1.267794 0.9419845 0.6993381 +1.705268 0.9419845 0.6993381 +2.292679 0.9419845 0.6993381 +3.081414 0.9419845 0.6993381 +4.140474 0.9419845 0.6993381 +5.562508 0.9419845 0.6993381 +7.471917 0.9419845 0.6993381 +10.03574 0.9419845 0.6993381 +13.47828 0.9419845 0.6993381 +18.10068 0.9419845 0.6993381 +24.30731 0.9419845 0.6993381 +32.64117 0.9419845 0.6993381 +43.83129 0.9419845 0.6993381 +58.85664 0.9419845 0.6993381 +-0.0175068 1.267794 0.6993381 +-0.01161267 1.267794 0.6993381 +-0.005718534 1.267794 0.6993381 +0.0001755984 1.267794 0.6993381 +0.006069731 1.267794 0.6993381 +0.01197402 1.267794 0.6993381 +0.01903886 1.267794 0.6993381 +0.02852504 1.267794 0.6993381 +0.04126244 1.267794 0.6993381 +0.05836535 1.267794 0.6993381 +0.08132997 1.267794 0.6993381 +0.1121653 1.267794 0.6993381 +0.1535689 1.267794 0.6993381 +0.2091628 1.267794 0.6993381 +0.2838106 1.267794 0.6993381 +0.3840425 1.267794 0.6993381 +0.518627 1.267794 0.6993381 +0.6993381 1.267794 0.6993381 +0.9419845 1.267794 0.6993381 +1.267794 1.267794 0.6993381 +1.705268 1.267794 0.6993381 +2.292679 1.267794 0.6993381 +3.081414 1.267794 0.6993381 +4.140474 1.267794 0.6993381 +5.562508 1.267794 0.6993381 +7.471917 1.267794 0.6993381 +10.03574 1.267794 0.6993381 +13.47828 1.267794 0.6993381 +18.10068 1.267794 0.6993381 +24.30731 1.267794 0.6993381 +32.64117 1.267794 0.6993381 +43.83129 1.267794 0.6993381 +58.85664 1.267794 0.6993381 +-0.0175068 1.705268 0.6993381 +-0.01161267 1.705268 0.6993381 +-0.005718534 1.705268 0.6993381 +0.0001755984 1.705268 0.6993381 +0.006069731 1.705268 0.6993381 +0.01197402 1.705268 0.6993381 +0.01903886 1.705268 0.6993381 +0.02852504 1.705268 0.6993381 +0.04126244 1.705268 0.6993381 +0.05836535 1.705268 0.6993381 +0.08132997 1.705268 0.6993381 +0.1121653 1.705268 0.6993381 +0.1535689 1.705268 0.6993381 +0.2091628 1.705268 0.6993381 +0.2838106 1.705268 0.6993381 +0.3840425 1.705268 0.6993381 +0.518627 1.705268 0.6993381 +0.6993381 1.705268 0.6993381 +0.9419845 1.705268 0.6993381 +1.267794 1.705268 0.6993381 +1.705268 1.705268 0.6993381 +2.292679 1.705268 0.6993381 +3.081414 1.705268 0.6993381 +4.140474 1.705268 0.6993381 +5.562508 1.705268 0.6993381 +7.471917 1.705268 0.6993381 +10.03574 1.705268 0.6993381 +13.47828 1.705268 0.6993381 +18.10068 1.705268 0.6993381 +24.30731 1.705268 0.6993381 +32.64117 1.705268 0.6993381 +43.83129 1.705268 0.6993381 +58.85664 1.705268 0.6993381 +-0.0175068 2.292679 0.6993381 +-0.01161267 2.292679 0.6993381 +-0.005718534 2.292679 0.6993381 +0.0001755984 2.292679 0.6993381 +0.006069731 2.292679 0.6993381 +0.01197402 2.292679 0.6993381 +0.01903886 2.292679 0.6993381 +0.02852504 2.292679 0.6993381 +0.04126244 2.292679 0.6993381 +0.05836535 2.292679 0.6993381 +0.08132997 2.292679 0.6993381 +0.1121653 2.292679 0.6993381 +0.1535689 2.292679 0.6993381 +0.2091628 2.292679 0.6993381 +0.2838106 2.292679 0.6993381 +0.3840425 2.292679 0.6993381 +0.518627 2.292679 0.6993381 +0.6993381 2.292679 0.6993381 +0.9419845 2.292679 0.6993381 +1.267794 2.292679 0.6993381 +1.705268 2.292679 0.6993381 +2.292679 2.292679 0.6993381 +3.081414 2.292679 0.6993381 +4.140474 2.292679 0.6993381 +5.562508 2.292679 0.6993381 +7.471917 2.292679 0.6993381 +10.03574 2.292679 0.6993381 +13.47828 2.292679 0.6993381 +18.10068 2.292679 0.6993381 +24.30731 2.292679 0.6993381 +32.64117 2.292679 0.6993381 +43.83129 2.292679 0.6993381 +58.85664 2.292679 0.6993381 +-0.0175068 3.081414 0.6993381 +-0.01161267 3.081414 0.6993381 +-0.005718534 3.081414 0.6993381 +0.0001755984 3.081414 0.6993381 +0.006069731 3.081414 0.6993381 +0.01197402 3.081414 0.6993381 +0.01903886 3.081414 0.6993381 +0.02852504 3.081414 0.6993381 +0.04126244 3.081414 0.6993381 +0.05836535 3.081414 0.6993381 +0.08132997 3.081414 0.6993381 +0.1121653 3.081414 0.6993381 +0.1535689 3.081414 0.6993381 +0.2091628 3.081414 0.6993381 +0.2838106 3.081414 0.6993381 +0.3840425 3.081414 0.6993381 +0.518627 3.081414 0.6993381 +0.6993381 3.081414 0.6993381 +0.9419845 3.081414 0.6993381 +1.267794 3.081414 0.6993381 +1.705268 3.081414 0.6993381 +2.292679 3.081414 0.6993381 +3.081414 3.081414 0.6993381 +4.140474 3.081414 0.6993381 +5.562508 3.081414 0.6993381 +7.471917 3.081414 0.6993381 +10.03574 3.081414 0.6993381 +13.47828 3.081414 0.6993381 +18.10068 3.081414 0.6993381 +24.30731 3.081414 0.6993381 +32.64117 3.081414 0.6993381 +43.83129 3.081414 0.6993381 +58.85664 3.081414 0.6993381 +-0.0175068 4.140474 0.6993381 +-0.01161267 4.140474 0.6993381 +-0.005718534 4.140474 0.6993381 +0.0001755984 4.140474 0.6993381 +0.006069731 4.140474 0.6993381 +0.01197402 4.140474 0.6993381 +0.01903886 4.140474 0.6993381 +0.02852504 4.140474 0.6993381 +0.04126244 4.140474 0.6993381 +0.05836535 4.140474 0.6993381 +0.08132997 4.140474 0.6993381 +0.1121653 4.140474 0.6993381 +0.1535689 4.140474 0.6993381 +0.2091628 4.140474 0.6993381 +0.2838106 4.140474 0.6993381 +0.3840425 4.140474 0.6993381 +0.518627 4.140474 0.6993381 +0.6993381 4.140474 0.6993381 +0.9419845 4.140474 0.6993381 +1.267794 4.140474 0.6993381 +1.705268 4.140474 0.6993381 +2.292679 4.140474 0.6993381 +3.081414 4.140474 0.6993381 +4.140474 4.140474 0.6993381 +5.562508 4.140474 0.6993381 +7.471917 4.140474 0.6993381 +10.03574 4.140474 0.6993381 +13.47828 4.140474 0.6993381 +18.10068 4.140474 0.6993381 +24.30731 4.140474 0.6993381 +32.64117 4.140474 0.6993381 +43.83129 4.140474 0.6993381 +58.85664 4.140474 0.6993381 +-0.0175068 5.562508 0.6993381 +-0.01161267 5.562508 0.6993381 +-0.005718534 5.562508 0.6993381 +0.0001755984 5.562508 0.6993381 +0.006069731 5.562508 0.6993381 +0.01197402 5.562508 0.6993381 +0.01903886 5.562508 0.6993381 +0.02852504 5.562508 0.6993381 +0.04126244 5.562508 0.6993381 +0.05836535 5.562508 0.6993381 +0.08132997 5.562508 0.6993381 +0.1121653 5.562508 0.6993381 +0.1535689 5.562508 0.6993381 +0.2091628 5.562508 0.6993381 +0.2838106 5.562508 0.6993381 +0.3840425 5.562508 0.6993381 +0.518627 5.562508 0.6993381 +0.6993381 5.562508 0.6993381 +0.9419845 5.562508 0.6993381 +1.267794 5.562508 0.6993381 +1.705268 5.562508 0.6993381 +2.292679 5.562508 0.6993381 +3.081414 5.562508 0.6993381 +4.140474 5.562508 0.6993381 +5.562508 5.562508 0.6993381 +7.471917 5.562508 0.6993381 +10.03574 5.562508 0.6993381 +13.47828 5.562508 0.6993381 +18.10068 5.562508 0.6993381 +24.30731 5.562508 0.6993381 +32.64117 5.562508 0.6993381 +43.83129 5.562508 0.6993381 +58.85664 5.562508 0.6993381 +-0.0175068 7.471917 0.6993381 +-0.01161267 7.471917 0.6993381 +-0.005718534 7.471917 0.6993381 +0.0001755984 7.471917 0.6993381 +0.006069731 7.471917 0.6993381 +0.01197402 7.471917 0.6993381 +0.01903886 7.471917 0.6993381 +0.02852504 7.471917 0.6993381 +0.04126244 7.471917 0.6993381 +0.05836535 7.471917 0.6993381 +0.08132997 7.471917 0.6993381 +0.1121653 7.471917 0.6993381 +0.1535689 7.471917 0.6993381 +0.2091628 7.471917 0.6993381 +0.2838106 7.471917 0.6993381 +0.3840425 7.471917 0.6993381 +0.518627 7.471917 0.6993381 +0.6993381 7.471917 0.6993381 +0.9419845 7.471917 0.6993381 +1.267794 7.471917 0.6993381 +1.705268 7.471917 0.6993381 +2.292679 7.471917 0.6993381 +3.081414 7.471917 0.6993381 +4.140474 7.471917 0.6993381 +5.562508 7.471917 0.6993381 +7.471917 7.471917 0.6993381 +10.03574 7.471917 0.6993381 +13.47828 7.471917 0.6993381 +18.10068 7.471917 0.6993381 +24.30731 7.471917 0.6993381 +32.64117 7.471917 0.6993381 +43.83129 7.471917 0.6993381 +58.85664 7.471917 0.6993381 +-0.0175068 10.03574 0.6993381 +-0.01161267 10.03574 0.6993381 +-0.005718534 10.03574 0.6993381 +0.0001755984 10.03574 0.6993381 +0.006069731 10.03574 0.6993381 +0.01197402 10.03574 0.6993381 +0.01903886 10.03574 0.6993381 +0.02852504 10.03574 0.6993381 +0.04126244 10.03574 0.6993381 +0.05836535 10.03574 0.6993381 +0.08132997 10.03574 0.6993381 +0.1121653 10.03574 0.6993381 +0.1535689 10.03574 0.6993381 +0.2091628 10.03574 0.6993381 +0.2838106 10.03574 0.6993381 +0.3840425 10.03574 0.6993381 +0.518627 10.03574 0.6993381 +0.6993381 10.03574 0.6993381 +0.9419845 10.03574 0.6993381 +1.267794 10.03574 0.6993381 +1.705268 10.03574 0.6993381 +2.292679 10.03574 0.6993381 +3.081414 10.03574 0.6993381 +4.140474 10.03574 0.6993381 +5.562508 10.03574 0.6993381 +7.471917 10.03574 0.6993381 +10.03574 10.03574 0.6993381 +13.47828 10.03574 0.6993381 +18.10068 10.03574 0.6993381 +24.30731 10.03574 0.6993381 +32.64117 10.03574 0.6993381 +43.83129 10.03574 0.6993381 +58.85664 10.03574 0.6993381 +-0.0175068 13.47828 0.6993381 +-0.01161267 13.47828 0.6993381 +-0.005718534 13.47828 0.6993381 +0.0001755984 13.47828 0.6993381 +0.006069731 13.47828 0.6993381 +0.01197402 13.47828 0.6993381 +0.01903886 13.47828 0.6993381 +0.02852504 13.47828 0.6993381 +0.04126244 13.47828 0.6993381 +0.05836535 13.47828 0.6993381 +0.08132997 13.47828 0.6993381 +0.1121653 13.47828 0.6993381 +0.1535689 13.47828 0.6993381 +0.2091628 13.47828 0.6993381 +0.2838106 13.47828 0.6993381 +0.3840425 13.47828 0.6993381 +0.518627 13.47828 0.6993381 +0.6993381 13.47828 0.6993381 +0.9419845 13.47828 0.6993381 +1.267794 13.47828 0.6993381 +1.705268 13.47828 0.6993381 +2.292679 13.47828 0.6993381 +3.081414 13.47828 0.6993381 +4.140474 13.47828 0.6993381 +5.562508 13.47828 0.6993381 +7.471917 13.47828 0.6993381 +10.03574 13.47828 0.6993381 +13.47828 13.47828 0.6993381 +18.10068 13.47828 0.6993381 +24.30731 13.47828 0.6993381 +32.64117 13.47828 0.6993381 +43.83129 13.47828 0.6993381 +58.85664 13.47828 0.6993381 +-0.0175068 18.10068 0.6993381 +-0.01161267 18.10068 0.6993381 +-0.005718534 18.10068 0.6993381 +0.0001755984 18.10068 0.6993381 +0.006069731 18.10068 0.6993381 +0.01197402 18.10068 0.6993381 +0.01903886 18.10068 0.6993381 +0.02852504 18.10068 0.6993381 +0.04126244 18.10068 0.6993381 +0.05836535 18.10068 0.6993381 +0.08132997 18.10068 0.6993381 +0.1121653 18.10068 0.6993381 +0.1535689 18.10068 0.6993381 +0.2091628 18.10068 0.6993381 +0.2838106 18.10068 0.6993381 +0.3840425 18.10068 0.6993381 +0.518627 18.10068 0.6993381 +0.6993381 18.10068 0.6993381 +0.9419845 18.10068 0.6993381 +1.267794 18.10068 0.6993381 +1.705268 18.10068 0.6993381 +2.292679 18.10068 0.6993381 +3.081414 18.10068 0.6993381 +4.140474 18.10068 0.6993381 +5.562508 18.10068 0.6993381 +7.471917 18.10068 0.6993381 +10.03574 18.10068 0.6993381 +13.47828 18.10068 0.6993381 +18.10068 18.10068 0.6993381 +24.30731 18.10068 0.6993381 +32.64117 18.10068 0.6993381 +43.83129 18.10068 0.6993381 +58.85664 18.10068 0.6993381 +-0.0175068 24.30731 0.6993381 +-0.01161267 24.30731 0.6993381 +-0.005718534 24.30731 0.6993381 +0.0001755984 24.30731 0.6993381 +0.006069731 24.30731 0.6993381 +0.01197402 24.30731 0.6993381 +0.01903886 24.30731 0.6993381 +0.02852504 24.30731 0.6993381 +0.04126244 24.30731 0.6993381 +0.05836535 24.30731 0.6993381 +0.08132997 24.30731 0.6993381 +0.1121653 24.30731 0.6993381 +0.1535689 24.30731 0.6993381 +0.2091628 24.30731 0.6993381 +0.2838106 24.30731 0.6993381 +0.3840425 24.30731 0.6993381 +0.518627 24.30731 0.6993381 +0.6993381 24.30731 0.6993381 +0.9419845 24.30731 0.6993381 +1.267794 24.30731 0.6993381 +1.705268 24.30731 0.6993381 +2.292679 24.30731 0.6993381 +3.081414 24.30731 0.6993381 +4.140474 24.30731 0.6993381 +5.562508 24.30731 0.6993381 +7.471917 24.30731 0.6993381 +10.03574 24.30731 0.6993381 +13.47828 24.30731 0.6993381 +18.10068 24.30731 0.6993381 +24.30731 24.30731 0.6993381 +32.64117 24.30731 0.6993381 +43.83129 24.30731 0.6993381 +58.85664 24.30731 0.6993381 +-0.0175068 32.64117 0.6993381 +-0.01161267 32.64117 0.6993381 +-0.005718534 32.64117 0.6993381 +0.0001755984 32.64117 0.6993381 +0.006069731 32.64117 0.6993381 +0.01197402 32.64117 0.6993381 +0.01903886 32.64117 0.6993381 +0.02852504 32.64117 0.6993381 +0.04126244 32.64117 0.6993381 +0.05836535 32.64117 0.6993381 +0.08132997 32.64117 0.6993381 +0.1121653 32.64117 0.6993381 +0.1535689 32.64117 0.6993381 +0.2091628 32.64117 0.6993381 +0.2838106 32.64117 0.6993381 +0.3840425 32.64117 0.6993381 +0.518627 32.64117 0.6993381 +0.6993381 32.64117 0.6993381 +0.9419845 32.64117 0.6993381 +1.267794 32.64117 0.6993381 +1.705268 32.64117 0.6993381 +2.292679 32.64117 0.6993381 +3.081414 32.64117 0.6993381 +4.140474 32.64117 0.6993381 +5.562508 32.64117 0.6993381 +7.471917 32.64117 0.6993381 +10.03574 32.64117 0.6993381 +13.47828 32.64117 0.6993381 +18.10068 32.64117 0.6993381 +24.30731 32.64117 0.6993381 +32.64117 32.64117 0.6993381 +43.83129 32.64117 0.6993381 +58.85664 32.64117 0.6993381 +-0.0175068 43.83129 0.6993381 +-0.01161267 43.83129 0.6993381 +-0.005718534 43.83129 0.6993381 +0.0001755984 43.83129 0.6993381 +0.006069731 43.83129 0.6993381 +0.01197402 43.83129 0.6993381 +0.01903886 43.83129 0.6993381 +0.02852504 43.83129 0.6993381 +0.04126244 43.83129 0.6993381 +0.05836535 43.83129 0.6993381 +0.08132997 43.83129 0.6993381 +0.1121653 43.83129 0.6993381 +0.1535689 43.83129 0.6993381 +0.2091628 43.83129 0.6993381 +0.2838106 43.83129 0.6993381 +0.3840425 43.83129 0.6993381 +0.518627 43.83129 0.6993381 +0.6993381 43.83129 0.6993381 +0.9419845 43.83129 0.6993381 +1.267794 43.83129 0.6993381 +1.705268 43.83129 0.6993381 +2.292679 43.83129 0.6993381 +3.081414 43.83129 0.6993381 +4.140474 43.83129 0.6993381 +5.562508 43.83129 0.6993381 +7.471917 43.83129 0.6993381 +10.03574 43.83129 0.6993381 +13.47828 43.83129 0.6993381 +18.10068 43.83129 0.6993381 +24.30731 43.83129 0.6993381 +32.64117 43.83129 0.6993381 +43.83129 43.83129 0.6993381 +58.85664 43.83129 0.6993381 +-0.0175068 58.85664 0.6993381 +-0.01161267 58.85664 0.6993381 +-0.005718534 58.85664 0.6993381 +0.0001755984 58.85664 0.6993381 +0.006069731 58.85664 0.6993381 +0.01197402 58.85664 0.6993381 +0.01903886 58.85664 0.6993381 +0.02852504 58.85664 0.6993381 +0.04126244 58.85664 0.6993381 +0.05836535 58.85664 0.6993381 +0.08132997 58.85664 0.6993381 +0.1121653 58.85664 0.6993381 +0.1535689 58.85664 0.6993381 +0.2091628 58.85664 0.6993381 +0.2838106 58.85664 0.6993381 +0.3840425 58.85664 0.6993381 +0.518627 58.85664 0.6993381 +0.6993381 58.85664 0.6993381 +0.9419845 58.85664 0.6993381 +1.267794 58.85664 0.6993381 +1.705268 58.85664 0.6993381 +2.292679 58.85664 0.6993381 +3.081414 58.85664 0.6993381 +4.140474 58.85664 0.6993381 +5.562508 58.85664 0.6993381 +7.471917 58.85664 0.6993381 +10.03574 58.85664 0.6993381 +13.47828 58.85664 0.6993381 +18.10068 58.85664 0.6993381 +24.30731 58.85664 0.6993381 +32.64117 58.85664 0.6993381 +43.83129 58.85664 0.6993381 +58.85664 58.85664 0.6993381 +-0.0175068 -0.0175068 0.9419845 +-0.01161267 -0.0175068 0.9419845 +-0.005718534 -0.0175068 0.9419845 +0.0001755984 -0.0175068 0.9419845 +0.006069731 -0.0175068 0.9419845 +0.01197402 -0.0175068 0.9419845 +0.01903886 -0.0175068 0.9419845 +0.02852504 -0.0175068 0.9419845 +0.04126244 -0.0175068 0.9419845 +0.05836535 -0.0175068 0.9419845 +0.08132997 -0.0175068 0.9419845 +0.1121653 -0.0175068 0.9419845 +0.1535689 -0.0175068 0.9419845 +0.2091628 -0.0175068 0.9419845 +0.2838106 -0.0175068 0.9419845 +0.3840425 -0.0175068 0.9419845 +0.518627 -0.0175068 0.9419845 +0.6993381 -0.0175068 0.9419845 +0.9419845 -0.0175068 0.9419845 +1.267794 -0.0175068 0.9419845 +1.705268 -0.0175068 0.9419845 +2.292679 -0.0175068 0.9419845 +3.081414 -0.0175068 0.9419845 +4.140474 -0.0175068 0.9419845 +5.562508 -0.0175068 0.9419845 +7.471917 -0.0175068 0.9419845 +10.03574 -0.0175068 0.9419845 +13.47828 -0.0175068 0.9419845 +18.10068 -0.0175068 0.9419845 +24.30731 -0.0175068 0.9419845 +32.64117 -0.0175068 0.9419845 +43.83129 -0.0175068 0.9419845 +58.85664 -0.0175068 0.9419845 +-0.0175068 -0.01161267 0.9419845 +-0.01161267 -0.01161267 0.9419845 +-0.005718534 -0.01161267 0.9419845 +0.0001755984 -0.01161267 0.9419845 +0.006069731 -0.01161267 0.9419845 +0.01197402 -0.01161267 0.9419845 +0.01903886 -0.01161267 0.9419845 +0.02852504 -0.01161267 0.9419845 +0.04126244 -0.01161267 0.9419845 +0.05836535 -0.01161267 0.9419845 +0.08132997 -0.01161267 0.9419845 +0.1121653 -0.01161267 0.9419845 +0.1535689 -0.01161267 0.9419845 +0.2091628 -0.01161267 0.9419845 +0.2838106 -0.01161267 0.9419845 +0.3840425 -0.01161267 0.9419845 +0.518627 -0.01161267 0.9419845 +0.6993381 -0.01161267 0.9419845 +0.9419845 -0.01161267 0.9419845 +1.267794 -0.01161267 0.9419845 +1.705268 -0.01161267 0.9419845 +2.292679 -0.01161267 0.9419845 +3.081414 -0.01161267 0.9419845 +4.140474 -0.01161267 0.9419845 +5.562508 -0.01161267 0.9419845 +7.471917 -0.01161267 0.9419845 +10.03574 -0.01161267 0.9419845 +13.47828 -0.01161267 0.9419845 +18.10068 -0.01161267 0.9419845 +24.30731 -0.01161267 0.9419845 +32.64117 -0.01161267 0.9419845 +43.83129 -0.01161267 0.9419845 +58.85664 -0.01161267 0.9419845 +-0.0175068 -0.005718534 0.9419845 +-0.01161267 -0.005718534 0.9419845 +-0.005718534 -0.005718534 0.9419845 +0.0001755984 -0.005718534 0.9419845 +0.006069731 -0.005718534 0.9419845 +0.01197402 -0.005718534 0.9419845 +0.01903886 -0.005718534 0.9419845 +0.02852504 -0.005718534 0.9419845 +0.04126244 -0.005718534 0.9419845 +0.05836535 -0.005718534 0.9419845 +0.08132997 -0.005718534 0.9419845 +0.1121653 -0.005718534 0.9419845 +0.1535689 -0.005718534 0.9419845 +0.2091628 -0.005718534 0.9419845 +0.2838106 -0.005718534 0.9419845 +0.3840425 -0.005718534 0.9419845 +0.518627 -0.005718534 0.9419845 +0.6993381 -0.005718534 0.9419845 +0.9419845 -0.005718534 0.9419845 +1.267794 -0.005718534 0.9419845 +1.705268 -0.005718534 0.9419845 +2.292679 -0.005718534 0.9419845 +3.081414 -0.005718534 0.9419845 +4.140474 -0.005718534 0.9419845 +5.562508 -0.005718534 0.9419845 +7.471917 -0.005718534 0.9419845 +10.03574 -0.005718534 0.9419845 +13.47828 -0.005718534 0.9419845 +18.10068 -0.005718534 0.9419845 +24.30731 -0.005718534 0.9419845 +32.64117 -0.005718534 0.9419845 +43.83129 -0.005718534 0.9419845 +58.85664 -0.005718534 0.9419845 +-0.0175068 0.0001755984 0.9419845 +-0.01161267 0.0001755984 0.9419845 +-0.005718534 0.0001755984 0.9419845 +0.0001755984 0.0001755984 0.9419845 +0.006069731 0.0001755984 0.9419845 +0.01197402 0.0001755984 0.9419845 +0.01903886 0.0001755984 0.9419845 +0.02852504 0.0001755984 0.9419845 +0.04126244 0.0001755984 0.9419845 +0.05836535 0.0001755984 0.9419845 +0.08132997 0.0001755984 0.9419845 +0.1121653 0.0001755984 0.9419845 +0.1535689 0.0001755984 0.9419845 +0.2091628 0.0001755984 0.9419845 +0.2838106 0.0001755984 0.9419845 +0.3840425 0.0001755984 0.9419845 +0.518627 0.0001755984 0.9419845 +0.6993381 0.0001755984 0.9419845 +0.9419845 0.0001755984 0.9419845 +1.267794 0.0001755984 0.9419845 +1.705268 0.0001755984 0.9419845 +2.292679 0.0001755984 0.9419845 +3.081414 0.0001755984 0.9419845 +4.140474 0.0001755984 0.9419845 +5.562508 0.0001755984 0.9419845 +7.471917 0.0001755984 0.9419845 +10.03574 0.0001755984 0.9419845 +13.47828 0.0001755984 0.9419845 +18.10068 0.0001755984 0.9419845 +24.30731 0.0001755984 0.9419845 +32.64117 0.0001755984 0.9419845 +43.83129 0.0001755984 0.9419845 +58.85664 0.0001755984 0.9419845 +-0.0175068 0.006069731 0.9419845 +-0.01161267 0.006069731 0.9419845 +-0.005718534 0.006069731 0.9419845 +0.0001755984 0.006069731 0.9419845 +0.006069731 0.006069731 0.9419845 +0.01197402 0.006069731 0.9419845 +0.01903886 0.006069731 0.9419845 +0.02852504 0.006069731 0.9419845 +0.04126244 0.006069731 0.9419845 +0.05836535 0.006069731 0.9419845 +0.08132997 0.006069731 0.9419845 +0.1121653 0.006069731 0.9419845 +0.1535689 0.006069731 0.9419845 +0.2091628 0.006069731 0.9419845 +0.2838106 0.006069731 0.9419845 +0.3840425 0.006069731 0.9419845 +0.518627 0.006069731 0.9419845 +0.6993381 0.006069731 0.9419845 +0.9419845 0.006069731 0.9419845 +1.267794 0.006069731 0.9419845 +1.705268 0.006069731 0.9419845 +2.292679 0.006069731 0.9419845 +3.081414 0.006069731 0.9419845 +4.140474 0.006069731 0.9419845 +5.562508 0.006069731 0.9419845 +7.471917 0.006069731 0.9419845 +10.03574 0.006069731 0.9419845 +13.47828 0.006069731 0.9419845 +18.10068 0.006069731 0.9419845 +24.30731 0.006069731 0.9419845 +32.64117 0.006069731 0.9419845 +43.83129 0.006069731 0.9419845 +58.85664 0.006069731 0.9419845 +-0.0175068 0.01197402 0.9419845 +-0.01161267 0.01197402 0.9419845 +-0.005718534 0.01197402 0.9419845 +0.0001755984 0.01197402 0.9419845 +0.006069731 0.01197402 0.9419845 +0.01197402 0.01197402 0.9419845 +0.01903886 0.01197402 0.9419845 +0.02852504 0.01197402 0.9419845 +0.04126244 0.01197402 0.9419845 +0.05836535 0.01197402 0.9419845 +0.08132997 0.01197402 0.9419845 +0.1121653 0.01197402 0.9419845 +0.1535689 0.01197402 0.9419845 +0.2091628 0.01197402 0.9419845 +0.2838106 0.01197402 0.9419845 +0.3840425 0.01197402 0.9419845 +0.518627 0.01197402 0.9419845 +0.6993381 0.01197402 0.9419845 +0.9419845 0.01197402 0.9419845 +1.267794 0.01197402 0.9419845 +1.705268 0.01197402 0.9419845 +2.292679 0.01197402 0.9419845 +3.081414 0.01197402 0.9419845 +4.140474 0.01197402 0.9419845 +5.562508 0.01197402 0.9419845 +7.471917 0.01197402 0.9419845 +10.03574 0.01197402 0.9419845 +13.47828 0.01197402 0.9419845 +18.10068 0.01197402 0.9419845 +24.30731 0.01197402 0.9419845 +32.64117 0.01197402 0.9419845 +43.83129 0.01197402 0.9419845 +58.85664 0.01197402 0.9419845 +-0.0175068 0.01903886 0.9419845 +-0.01161267 0.01903886 0.9419845 +-0.005718534 0.01903886 0.9419845 +0.0001755984 0.01903886 0.9419845 +0.006069731 0.01903886 0.9419845 +0.01197402 0.01903886 0.9419845 +0.01903886 0.01903886 0.9419845 +0.02852504 0.01903886 0.9419845 +0.04126244 0.01903886 0.9419845 +0.05836535 0.01903886 0.9419845 +0.08132997 0.01903886 0.9419845 +0.1121653 0.01903886 0.9419845 +0.1535689 0.01903886 0.9419845 +0.2091628 0.01903886 0.9419845 +0.2838106 0.01903886 0.9419845 +0.3840425 0.01903886 0.9419845 +0.518627 0.01903886 0.9419845 +0.6993381 0.01903886 0.9419845 +0.9419845 0.01903886 0.9419845 +1.267794 0.01903886 0.9419845 +1.705268 0.01903886 0.9419845 +2.292679 0.01903886 0.9419845 +3.081414 0.01903886 0.9419845 +4.140474 0.01903886 0.9419845 +5.562508 0.01903886 0.9419845 +7.471917 0.01903886 0.9419845 +10.03574 0.01903886 0.9419845 +13.47828 0.01903886 0.9419845 +18.10068 0.01903886 0.9419845 +24.30731 0.01903886 0.9419845 +32.64117 0.01903886 0.9419845 +43.83129 0.01903886 0.9419845 +58.85664 0.01903886 0.9419845 +-0.0175068 0.02852504 0.9419845 +-0.01161267 0.02852504 0.9419845 +-0.005718534 0.02852504 0.9419845 +0.0001755984 0.02852504 0.9419845 +0.006069731 0.02852504 0.9419845 +0.01197402 0.02852504 0.9419845 +0.01903886 0.02852504 0.9419845 +0.02852504 0.02852504 0.9419845 +0.04126244 0.02852504 0.9419845 +0.05836535 0.02852504 0.9419845 +0.08132997 0.02852504 0.9419845 +0.1121653 0.02852504 0.9419845 +0.1535689 0.02852504 0.9419845 +0.2091628 0.02852504 0.9419845 +0.2838106 0.02852504 0.9419845 +0.3840425 0.02852504 0.9419845 +0.518627 0.02852504 0.9419845 +0.6993381 0.02852504 0.9419845 +0.9419845 0.02852504 0.9419845 +1.267794 0.02852504 0.9419845 +1.705268 0.02852504 0.9419845 +2.292679 0.02852504 0.9419845 +3.081414 0.02852504 0.9419845 +4.140474 0.02852504 0.9419845 +5.562508 0.02852504 0.9419845 +7.471917 0.02852504 0.9419845 +10.03574 0.02852504 0.9419845 +13.47828 0.02852504 0.9419845 +18.10068 0.02852504 0.9419845 +24.30731 0.02852504 0.9419845 +32.64117 0.02852504 0.9419845 +43.83129 0.02852504 0.9419845 +58.85664 0.02852504 0.9419845 +-0.0175068 0.04126244 0.9419845 +-0.01161267 0.04126244 0.9419845 +-0.005718534 0.04126244 0.9419845 +0.0001755984 0.04126244 0.9419845 +0.006069731 0.04126244 0.9419845 +0.01197402 0.04126244 0.9419845 +0.01903886 0.04126244 0.9419845 +0.02852504 0.04126244 0.9419845 +0.04126244 0.04126244 0.9419845 +0.05836535 0.04126244 0.9419845 +0.08132997 0.04126244 0.9419845 +0.1121653 0.04126244 0.9419845 +0.1535689 0.04126244 0.9419845 +0.2091628 0.04126244 0.9419845 +0.2838106 0.04126244 0.9419845 +0.3840425 0.04126244 0.9419845 +0.518627 0.04126244 0.9419845 +0.6993381 0.04126244 0.9419845 +0.9419845 0.04126244 0.9419845 +1.267794 0.04126244 0.9419845 +1.705268 0.04126244 0.9419845 +2.292679 0.04126244 0.9419845 +3.081414 0.04126244 0.9419845 +4.140474 0.04126244 0.9419845 +5.562508 0.04126244 0.9419845 +7.471917 0.04126244 0.9419845 +10.03574 0.04126244 0.9419845 +13.47828 0.04126244 0.9419845 +18.10068 0.04126244 0.9419845 +24.30731 0.04126244 0.9419845 +32.64117 0.04126244 0.9419845 +43.83129 0.04126244 0.9419845 +58.85664 0.04126244 0.9419845 +-0.0175068 0.05836535 0.9419845 +-0.01161267 0.05836535 0.9419845 +-0.005718534 0.05836535 0.9419845 +0.0001755984 0.05836535 0.9419845 +0.006069731 0.05836535 0.9419845 +0.01197402 0.05836535 0.9419845 +0.01903886 0.05836535 0.9419845 +0.02852504 0.05836535 0.9419845 +0.04126244 0.05836535 0.9419845 +0.05836535 0.05836535 0.9419845 +0.08132997 0.05836535 0.9419845 +0.1121653 0.05836535 0.9419845 +0.1535689 0.05836535 0.9419845 +0.2091628 0.05836535 0.9419845 +0.2838106 0.05836535 0.9419845 +0.3840425 0.05836535 0.9419845 +0.518627 0.05836535 0.9419845 +0.6993381 0.05836535 0.9419845 +0.9419845 0.05836535 0.9419845 +1.267794 0.05836535 0.9419845 +1.705268 0.05836535 0.9419845 +2.292679 0.05836535 0.9419845 +3.081414 0.05836535 0.9419845 +4.140474 0.05836535 0.9419845 +5.562508 0.05836535 0.9419845 +7.471917 0.05836535 0.9419845 +10.03574 0.05836535 0.9419845 +13.47828 0.05836535 0.9419845 +18.10068 0.05836535 0.9419845 +24.30731 0.05836535 0.9419845 +32.64117 0.05836535 0.9419845 +43.83129 0.05836535 0.9419845 +58.85664 0.05836535 0.9419845 +-0.0175068 0.08132997 0.9419845 +-0.01161267 0.08132997 0.9419845 +-0.005718534 0.08132997 0.9419845 +0.0001755984 0.08132997 0.9419845 +0.006069731 0.08132997 0.9419845 +0.01197402 0.08132997 0.9419845 +0.01903886 0.08132997 0.9419845 +0.02852504 0.08132997 0.9419845 +0.04126244 0.08132997 0.9419845 +0.05836535 0.08132997 0.9419845 +0.08132997 0.08132997 0.9419845 +0.1121653 0.08132997 0.9419845 +0.1535689 0.08132997 0.9419845 +0.2091628 0.08132997 0.9419845 +0.2838106 0.08132997 0.9419845 +0.3840425 0.08132997 0.9419845 +0.518627 0.08132997 0.9419845 +0.6993381 0.08132997 0.9419845 +0.9419845 0.08132997 0.9419845 +1.267794 0.08132997 0.9419845 +1.705268 0.08132997 0.9419845 +2.292679 0.08132997 0.9419845 +3.081414 0.08132997 0.9419845 +4.140474 0.08132997 0.9419845 +5.562508 0.08132997 0.9419845 +7.471917 0.08132997 0.9419845 +10.03574 0.08132997 0.9419845 +13.47828 0.08132997 0.9419845 +18.10068 0.08132997 0.9419845 +24.30731 0.08132997 0.9419845 +32.64117 0.08132997 0.9419845 +43.83129 0.08132997 0.9419845 +58.85664 0.08132997 0.9419845 +-0.0175068 0.1121653 0.9419845 +-0.01161267 0.1121653 0.9419845 +-0.005718534 0.1121653 0.9419845 +0.0001755984 0.1121653 0.9419845 +0.006069731 0.1121653 0.9419845 +0.01197402 0.1121653 0.9419845 +0.01903886 0.1121653 0.9419845 +0.02852504 0.1121653 0.9419845 +0.04126244 0.1121653 0.9419845 +0.05836535 0.1121653 0.9419845 +0.08132997 0.1121653 0.9419845 +0.1121653 0.1121653 0.9419845 +0.1535689 0.1121653 0.9419845 +0.2091628 0.1121653 0.9419845 +0.2838106 0.1121653 0.9419845 +0.3840425 0.1121653 0.9419845 +0.518627 0.1121653 0.9419845 +0.6993381 0.1121653 0.9419845 +0.9419845 0.1121653 0.9419845 +1.267794 0.1121653 0.9419845 +1.705268 0.1121653 0.9419845 +2.292679 0.1121653 0.9419845 +3.081414 0.1121653 0.9419845 +4.140474 0.1121653 0.9419845 +5.562508 0.1121653 0.9419845 +7.471917 0.1121653 0.9419845 +10.03574 0.1121653 0.9419845 +13.47828 0.1121653 0.9419845 +18.10068 0.1121653 0.9419845 +24.30731 0.1121653 0.9419845 +32.64117 0.1121653 0.9419845 +43.83129 0.1121653 0.9419845 +58.85664 0.1121653 0.9419845 +-0.0175068 0.1535689 0.9419845 +-0.01161267 0.1535689 0.9419845 +-0.005718534 0.1535689 0.9419845 +0.0001755984 0.1535689 0.9419845 +0.006069731 0.1535689 0.9419845 +0.01197402 0.1535689 0.9419845 +0.01903886 0.1535689 0.9419845 +0.02852504 0.1535689 0.9419845 +0.04126244 0.1535689 0.9419845 +0.05836535 0.1535689 0.9419845 +0.08132997 0.1535689 0.9419845 +0.1121653 0.1535689 0.9419845 +0.1535689 0.1535689 0.9419845 +0.2091628 0.1535689 0.9419845 +0.2838106 0.1535689 0.9419845 +0.3840425 0.1535689 0.9419845 +0.518627 0.1535689 0.9419845 +0.6993381 0.1535689 0.9419845 +0.9419845 0.1535689 0.9419845 +1.267794 0.1535689 0.9419845 +1.705268 0.1535689 0.9419845 +2.292679 0.1535689 0.9419845 +3.081414 0.1535689 0.9419845 +4.140474 0.1535689 0.9419845 +5.562508 0.1535689 0.9419845 +7.471917 0.1535689 0.9419845 +10.03574 0.1535689 0.9419845 +13.47828 0.1535689 0.9419845 +18.10068 0.1535689 0.9419845 +24.30731 0.1535689 0.9419845 +32.64117 0.1535689 0.9419845 +43.83129 0.1535689 0.9419845 +58.85664 0.1535689 0.9419845 +-0.0175068 0.2091628 0.9419845 +-0.01161267 0.2091628 0.9419845 +-0.005718534 0.2091628 0.9419845 +0.0001755984 0.2091628 0.9419845 +0.006069731 0.2091628 0.9419845 +0.01197402 0.2091628 0.9419845 +0.01903886 0.2091628 0.9419845 +0.02852504 0.2091628 0.9419845 +0.04126244 0.2091628 0.9419845 +0.05836535 0.2091628 0.9419845 +0.08132997 0.2091628 0.9419845 +0.1121653 0.2091628 0.9419845 +0.1535689 0.2091628 0.9419845 +0.2091628 0.2091628 0.9419845 +0.2838106 0.2091628 0.9419845 +0.3840425 0.2091628 0.9419845 +0.518627 0.2091628 0.9419845 +0.6993381 0.2091628 0.9419845 +0.9419845 0.2091628 0.9419845 +1.267794 0.2091628 0.9419845 +1.705268 0.2091628 0.9419845 +2.292679 0.2091628 0.9419845 +3.081414 0.2091628 0.9419845 +4.140474 0.2091628 0.9419845 +5.562508 0.2091628 0.9419845 +7.471917 0.2091628 0.9419845 +10.03574 0.2091628 0.9419845 +13.47828 0.2091628 0.9419845 +18.10068 0.2091628 0.9419845 +24.30731 0.2091628 0.9419845 +32.64117 0.2091628 0.9419845 +43.83129 0.2091628 0.9419845 +58.85664 0.2091628 0.9419845 +-0.0175068 0.2838106 0.9419845 +-0.01161267 0.2838106 0.9419845 +-0.005718534 0.2838106 0.9419845 +0.0001755984 0.2838106 0.9419845 +0.006069731 0.2838106 0.9419845 +0.01197402 0.2838106 0.9419845 +0.01903886 0.2838106 0.9419845 +0.02852504 0.2838106 0.9419845 +0.04126244 0.2838106 0.9419845 +0.05836535 0.2838106 0.9419845 +0.08132997 0.2838106 0.9419845 +0.1121653 0.2838106 0.9419845 +0.1535689 0.2838106 0.9419845 +0.2091628 0.2838106 0.9419845 +0.2838106 0.2838106 0.9419845 +0.3840425 0.2838106 0.9419845 +0.518627 0.2838106 0.9419845 +0.6993381 0.2838106 0.9419845 +0.9419845 0.2838106 0.9419845 +1.267794 0.2838106 0.9419845 +1.705268 0.2838106 0.9419845 +2.292679 0.2838106 0.9419845 +3.081414 0.2838106 0.9419845 +4.140474 0.2838106 0.9419845 +5.562508 0.2838106 0.9419845 +7.471917 0.2838106 0.9419845 +10.03574 0.2838106 0.9419845 +13.47828 0.2838106 0.9419845 +18.10068 0.2838106 0.9419845 +24.30731 0.2838106 0.9419845 +32.64117 0.2838106 0.9419845 +43.83129 0.2838106 0.9419845 +58.85664 0.2838106 0.9419845 +-0.0175068 0.3840425 0.9419845 +-0.01161267 0.3840425 0.9419845 +-0.005718534 0.3840425 0.9419845 +0.0001755984 0.3840425 0.9419845 +0.006069731 0.3840425 0.9419845 +0.01197402 0.3840425 0.9419845 +0.01903886 0.3840425 0.9419845 +0.02852504 0.3840425 0.9419845 +0.04126244 0.3840425 0.9419845 +0.05836535 0.3840425 0.9419845 +0.08132997 0.3840425 0.9419845 +0.1121653 0.3840425 0.9419845 +0.1535689 0.3840425 0.9419845 +0.2091628 0.3840425 0.9419845 +0.2838106 0.3840425 0.9419845 +0.3840425 0.3840425 0.9419845 +0.518627 0.3840425 0.9419845 +0.6993381 0.3840425 0.9419845 +0.9419845 0.3840425 0.9419845 +1.267794 0.3840425 0.9419845 +1.705268 0.3840425 0.9419845 +2.292679 0.3840425 0.9419845 +3.081414 0.3840425 0.9419845 +4.140474 0.3840425 0.9419845 +5.562508 0.3840425 0.9419845 +7.471917 0.3840425 0.9419845 +10.03574 0.3840425 0.9419845 +13.47828 0.3840425 0.9419845 +18.10068 0.3840425 0.9419845 +24.30731 0.3840425 0.9419845 +32.64117 0.3840425 0.9419845 +43.83129 0.3840425 0.9419845 +58.85664 0.3840425 0.9419845 +-0.0175068 0.518627 0.9419845 +-0.01161267 0.518627 0.9419845 +-0.005718534 0.518627 0.9419845 +0.0001755984 0.518627 0.9419845 +0.006069731 0.518627 0.9419845 +0.01197402 0.518627 0.9419845 +0.01903886 0.518627 0.9419845 +0.02852504 0.518627 0.9419845 +0.04126244 0.518627 0.9419845 +0.05836535 0.518627 0.9419845 +0.08132997 0.518627 0.9419845 +0.1121653 0.518627 0.9419845 +0.1535689 0.518627 0.9419845 +0.2091628 0.518627 0.9419845 +0.2838106 0.518627 0.9419845 +0.3840425 0.518627 0.9419845 +0.518627 0.518627 0.9419845 +0.6993381 0.518627 0.9419845 +0.9419845 0.518627 0.9419845 +1.267794 0.518627 0.9419845 +1.705268 0.518627 0.9419845 +2.292679 0.518627 0.9419845 +3.081414 0.518627 0.9419845 +4.140474 0.518627 0.9419845 +5.562508 0.518627 0.9419845 +7.471917 0.518627 0.9419845 +10.03574 0.518627 0.9419845 +13.47828 0.518627 0.9419845 +18.10068 0.518627 0.9419845 +24.30731 0.518627 0.9419845 +32.64117 0.518627 0.9419845 +43.83129 0.518627 0.9419845 +58.85664 0.518627 0.9419845 +-0.0175068 0.6993381 0.9419845 +-0.01161267 0.6993381 0.9419845 +-0.005718534 0.6993381 0.9419845 +0.0001755984 0.6993381 0.9419845 +0.006069731 0.6993381 0.9419845 +0.01197402 0.6993381 0.9419845 +0.01903886 0.6993381 0.9419845 +0.02852504 0.6993381 0.9419845 +0.04126244 0.6993381 0.9419845 +0.05836535 0.6993381 0.9419845 +0.08132997 0.6993381 0.9419845 +0.1121653 0.6993381 0.9419845 +0.1535689 0.6993381 0.9419845 +0.2091628 0.6993381 0.9419845 +0.2838106 0.6993381 0.9419845 +0.3840425 0.6993381 0.9419845 +0.518627 0.6993381 0.9419845 +0.6993381 0.6993381 0.9419845 +0.9419845 0.6993381 0.9419845 +1.267794 0.6993381 0.9419845 +1.705268 0.6993381 0.9419845 +2.292679 0.6993381 0.9419845 +3.081414 0.6993381 0.9419845 +4.140474 0.6993381 0.9419845 +5.562508 0.6993381 0.9419845 +7.471917 0.6993381 0.9419845 +10.03574 0.6993381 0.9419845 +13.47828 0.6993381 0.9419845 +18.10068 0.6993381 0.9419845 +24.30731 0.6993381 0.9419845 +32.64117 0.6993381 0.9419845 +43.83129 0.6993381 0.9419845 +58.85664 0.6993381 0.9419845 +-0.0175068 0.9419845 0.9419845 +-0.01161267 0.9419845 0.9419845 +-0.005718534 0.9419845 0.9419845 +0.0001755984 0.9419845 0.9419845 +0.006069731 0.9419845 0.9419845 +0.01197402 0.9419845 0.9419845 +0.01903886 0.9419845 0.9419845 +0.02852504 0.9419845 0.9419845 +0.04126244 0.9419845 0.9419845 +0.05836535 0.9419845 0.9419845 +0.08132997 0.9419845 0.9419845 +0.1121653 0.9419845 0.9419845 +0.1535689 0.9419845 0.9419845 +0.2091628 0.9419845 0.9419845 +0.2838106 0.9419845 0.9419845 +0.3840425 0.9419845 0.9419845 +0.518627 0.9419845 0.9419845 +0.6993381 0.9419845 0.9419845 +0.9419845 0.9419845 0.9419845 +1.267794 0.9419845 0.9419845 +1.705268 0.9419845 0.9419845 +2.292679 0.9419845 0.9419845 +3.081414 0.9419845 0.9419845 +4.140474 0.9419845 0.9419845 +5.562508 0.9419845 0.9419845 +7.471917 0.9419845 0.9419845 +10.03574 0.9419845 0.9419845 +13.47828 0.9419845 0.9419845 +18.10068 0.9419845 0.9419845 +24.30731 0.9419845 0.9419845 +32.64117 0.9419845 0.9419845 +43.83129 0.9419845 0.9419845 +58.85664 0.9419845 0.9419845 +-0.0175068 1.267794 0.9419845 +-0.01161267 1.267794 0.9419845 +-0.005718534 1.267794 0.9419845 +0.0001755984 1.267794 0.9419845 +0.006069731 1.267794 0.9419845 +0.01197402 1.267794 0.9419845 +0.01903886 1.267794 0.9419845 +0.02852504 1.267794 0.9419845 +0.04126244 1.267794 0.9419845 +0.05836535 1.267794 0.9419845 +0.08132997 1.267794 0.9419845 +0.1121653 1.267794 0.9419845 +0.1535689 1.267794 0.9419845 +0.2091628 1.267794 0.9419845 +0.2838106 1.267794 0.9419845 +0.3840425 1.267794 0.9419845 +0.518627 1.267794 0.9419845 +0.6993381 1.267794 0.9419845 +0.9419845 1.267794 0.9419845 +1.267794 1.267794 0.9419845 +1.705268 1.267794 0.9419845 +2.292679 1.267794 0.9419845 +3.081414 1.267794 0.9419845 +4.140474 1.267794 0.9419845 +5.562508 1.267794 0.9419845 +7.471917 1.267794 0.9419845 +10.03574 1.267794 0.9419845 +13.47828 1.267794 0.9419845 +18.10068 1.267794 0.9419845 +24.30731 1.267794 0.9419845 +32.64117 1.267794 0.9419845 +43.83129 1.267794 0.9419845 +58.85664 1.267794 0.9419845 +-0.0175068 1.705268 0.9419845 +-0.01161267 1.705268 0.9419845 +-0.005718534 1.705268 0.9419845 +0.0001755984 1.705268 0.9419845 +0.006069731 1.705268 0.9419845 +0.01197402 1.705268 0.9419845 +0.01903886 1.705268 0.9419845 +0.02852504 1.705268 0.9419845 +0.04126244 1.705268 0.9419845 +0.05836535 1.705268 0.9419845 +0.08132997 1.705268 0.9419845 +0.1121653 1.705268 0.9419845 +0.1535689 1.705268 0.9419845 +0.2091628 1.705268 0.9419845 +0.2838106 1.705268 0.9419845 +0.3840425 1.705268 0.9419845 +0.518627 1.705268 0.9419845 +0.6993381 1.705268 0.9419845 +0.9419845 1.705268 0.9419845 +1.267794 1.705268 0.9419845 +1.705268 1.705268 0.9419845 +2.292679 1.705268 0.9419845 +3.081414 1.705268 0.9419845 +4.140474 1.705268 0.9419845 +5.562508 1.705268 0.9419845 +7.471917 1.705268 0.9419845 +10.03574 1.705268 0.9419845 +13.47828 1.705268 0.9419845 +18.10068 1.705268 0.9419845 +24.30731 1.705268 0.9419845 +32.64117 1.705268 0.9419845 +43.83129 1.705268 0.9419845 +58.85664 1.705268 0.9419845 +-0.0175068 2.292679 0.9419845 +-0.01161267 2.292679 0.9419845 +-0.005718534 2.292679 0.9419845 +0.0001755984 2.292679 0.9419845 +0.006069731 2.292679 0.9419845 +0.01197402 2.292679 0.9419845 +0.01903886 2.292679 0.9419845 +0.02852504 2.292679 0.9419845 +0.04126244 2.292679 0.9419845 +0.05836535 2.292679 0.9419845 +0.08132997 2.292679 0.9419845 +0.1121653 2.292679 0.9419845 +0.1535689 2.292679 0.9419845 +0.2091628 2.292679 0.9419845 +0.2838106 2.292679 0.9419845 +0.3840425 2.292679 0.9419845 +0.518627 2.292679 0.9419845 +0.6993381 2.292679 0.9419845 +0.9419845 2.292679 0.9419845 +1.267794 2.292679 0.9419845 +1.705268 2.292679 0.9419845 +2.292679 2.292679 0.9419845 +3.081414 2.292679 0.9419845 +4.140474 2.292679 0.9419845 +5.562508 2.292679 0.9419845 +7.471917 2.292679 0.9419845 +10.03574 2.292679 0.9419845 +13.47828 2.292679 0.9419845 +18.10068 2.292679 0.9419845 +24.30731 2.292679 0.9419845 +32.64117 2.292679 0.9419845 +43.83129 2.292679 0.9419845 +58.85664 2.292679 0.9419845 +-0.0175068 3.081414 0.9419845 +-0.01161267 3.081414 0.9419845 +-0.005718534 3.081414 0.9419845 +0.0001755984 3.081414 0.9419845 +0.006069731 3.081414 0.9419845 +0.01197402 3.081414 0.9419845 +0.01903886 3.081414 0.9419845 +0.02852504 3.081414 0.9419845 +0.04126244 3.081414 0.9419845 +0.05836535 3.081414 0.9419845 +0.08132997 3.081414 0.9419845 +0.1121653 3.081414 0.9419845 +0.1535689 3.081414 0.9419845 +0.2091628 3.081414 0.9419845 +0.2838106 3.081414 0.9419845 +0.3840425 3.081414 0.9419845 +0.518627 3.081414 0.9419845 +0.6993381 3.081414 0.9419845 +0.9419845 3.081414 0.9419845 +1.267794 3.081414 0.9419845 +1.705268 3.081414 0.9419845 +2.292679 3.081414 0.9419845 +3.081414 3.081414 0.9419845 +4.140474 3.081414 0.9419845 +5.562508 3.081414 0.9419845 +7.471917 3.081414 0.9419845 +10.03574 3.081414 0.9419845 +13.47828 3.081414 0.9419845 +18.10068 3.081414 0.9419845 +24.30731 3.081414 0.9419845 +32.64117 3.081414 0.9419845 +43.83129 3.081414 0.9419845 +58.85664 3.081414 0.9419845 +-0.0175068 4.140474 0.9419845 +-0.01161267 4.140474 0.9419845 +-0.005718534 4.140474 0.9419845 +0.0001755984 4.140474 0.9419845 +0.006069731 4.140474 0.9419845 +0.01197402 4.140474 0.9419845 +0.01903886 4.140474 0.9419845 +0.02852504 4.140474 0.9419845 +0.04126244 4.140474 0.9419845 +0.05836535 4.140474 0.9419845 +0.08132997 4.140474 0.9419845 +0.1121653 4.140474 0.9419845 +0.1535689 4.140474 0.9419845 +0.2091628 4.140474 0.9419845 +0.2838106 4.140474 0.9419845 +0.3840425 4.140474 0.9419845 +0.518627 4.140474 0.9419845 +0.6993381 4.140474 0.9419845 +0.9419845 4.140474 0.9419845 +1.267794 4.140474 0.9419845 +1.705268 4.140474 0.9419845 +2.292679 4.140474 0.9419845 +3.081414 4.140474 0.9419845 +4.140474 4.140474 0.9419845 +5.562508 4.140474 0.9419845 +7.471917 4.140474 0.9419845 +10.03574 4.140474 0.9419845 +13.47828 4.140474 0.9419845 +18.10068 4.140474 0.9419845 +24.30731 4.140474 0.9419845 +32.64117 4.140474 0.9419845 +43.83129 4.140474 0.9419845 +58.85664 4.140474 0.9419845 +-0.0175068 5.562508 0.9419845 +-0.01161267 5.562508 0.9419845 +-0.005718534 5.562508 0.9419845 +0.0001755984 5.562508 0.9419845 +0.006069731 5.562508 0.9419845 +0.01197402 5.562508 0.9419845 +0.01903886 5.562508 0.9419845 +0.02852504 5.562508 0.9419845 +0.04126244 5.562508 0.9419845 +0.05836535 5.562508 0.9419845 +0.08132997 5.562508 0.9419845 +0.1121653 5.562508 0.9419845 +0.1535689 5.562508 0.9419845 +0.2091628 5.562508 0.9419845 +0.2838106 5.562508 0.9419845 +0.3840425 5.562508 0.9419845 +0.518627 5.562508 0.9419845 +0.6993381 5.562508 0.9419845 +0.9419845 5.562508 0.9419845 +1.267794 5.562508 0.9419845 +1.705268 5.562508 0.9419845 +2.292679 5.562508 0.9419845 +3.081414 5.562508 0.9419845 +4.140474 5.562508 0.9419845 +5.562508 5.562508 0.9419845 +7.471917 5.562508 0.9419845 +10.03574 5.562508 0.9419845 +13.47828 5.562508 0.9419845 +18.10068 5.562508 0.9419845 +24.30731 5.562508 0.9419845 +32.64117 5.562508 0.9419845 +43.83129 5.562508 0.9419845 +58.85664 5.562508 0.9419845 +-0.0175068 7.471917 0.9419845 +-0.01161267 7.471917 0.9419845 +-0.005718534 7.471917 0.9419845 +0.0001755984 7.471917 0.9419845 +0.006069731 7.471917 0.9419845 +0.01197402 7.471917 0.9419845 +0.01903886 7.471917 0.9419845 +0.02852504 7.471917 0.9419845 +0.04126244 7.471917 0.9419845 +0.05836535 7.471917 0.9419845 +0.08132997 7.471917 0.9419845 +0.1121653 7.471917 0.9419845 +0.1535689 7.471917 0.9419845 +0.2091628 7.471917 0.9419845 +0.2838106 7.471917 0.9419845 +0.3840425 7.471917 0.9419845 +0.518627 7.471917 0.9419845 +0.6993381 7.471917 0.9419845 +0.9419845 7.471917 0.9419845 +1.267794 7.471917 0.9419845 +1.705268 7.471917 0.9419845 +2.292679 7.471917 0.9419845 +3.081414 7.471917 0.9419845 +4.140474 7.471917 0.9419845 +5.562508 7.471917 0.9419845 +7.471917 7.471917 0.9419845 +10.03574 7.471917 0.9419845 +13.47828 7.471917 0.9419845 +18.10068 7.471917 0.9419845 +24.30731 7.471917 0.9419845 +32.64117 7.471917 0.9419845 +43.83129 7.471917 0.9419845 +58.85664 7.471917 0.9419845 +-0.0175068 10.03574 0.9419845 +-0.01161267 10.03574 0.9419845 +-0.005718534 10.03574 0.9419845 +0.0001755984 10.03574 0.9419845 +0.006069731 10.03574 0.9419845 +0.01197402 10.03574 0.9419845 +0.01903886 10.03574 0.9419845 +0.02852504 10.03574 0.9419845 +0.04126244 10.03574 0.9419845 +0.05836535 10.03574 0.9419845 +0.08132997 10.03574 0.9419845 +0.1121653 10.03574 0.9419845 +0.1535689 10.03574 0.9419845 +0.2091628 10.03574 0.9419845 +0.2838106 10.03574 0.9419845 +0.3840425 10.03574 0.9419845 +0.518627 10.03574 0.9419845 +0.6993381 10.03574 0.9419845 +0.9419845 10.03574 0.9419845 +1.267794 10.03574 0.9419845 +1.705268 10.03574 0.9419845 +2.292679 10.03574 0.9419845 +3.081414 10.03574 0.9419845 +4.140474 10.03574 0.9419845 +5.562508 10.03574 0.9419845 +7.471917 10.03574 0.9419845 +10.03574 10.03574 0.9419845 +13.47828 10.03574 0.9419845 +18.10068 10.03574 0.9419845 +24.30731 10.03574 0.9419845 +32.64117 10.03574 0.9419845 +43.83129 10.03574 0.9419845 +58.85664 10.03574 0.9419845 +-0.0175068 13.47828 0.9419845 +-0.01161267 13.47828 0.9419845 +-0.005718534 13.47828 0.9419845 +0.0001755984 13.47828 0.9419845 +0.006069731 13.47828 0.9419845 +0.01197402 13.47828 0.9419845 +0.01903886 13.47828 0.9419845 +0.02852504 13.47828 0.9419845 +0.04126244 13.47828 0.9419845 +0.05836535 13.47828 0.9419845 +0.08132997 13.47828 0.9419845 +0.1121653 13.47828 0.9419845 +0.1535689 13.47828 0.9419845 +0.2091628 13.47828 0.9419845 +0.2838106 13.47828 0.9419845 +0.3840425 13.47828 0.9419845 +0.518627 13.47828 0.9419845 +0.6993381 13.47828 0.9419845 +0.9419845 13.47828 0.9419845 +1.267794 13.47828 0.9419845 +1.705268 13.47828 0.9419845 +2.292679 13.47828 0.9419845 +3.081414 13.47828 0.9419845 +4.140474 13.47828 0.9419845 +5.562508 13.47828 0.9419845 +7.471917 13.47828 0.9419845 +10.03574 13.47828 0.9419845 +13.47828 13.47828 0.9419845 +18.10068 13.47828 0.9419845 +24.30731 13.47828 0.9419845 +32.64117 13.47828 0.9419845 +43.83129 13.47828 0.9419845 +58.85664 13.47828 0.9419845 +-0.0175068 18.10068 0.9419845 +-0.01161267 18.10068 0.9419845 +-0.005718534 18.10068 0.9419845 +0.0001755984 18.10068 0.9419845 +0.006069731 18.10068 0.9419845 +0.01197402 18.10068 0.9419845 +0.01903886 18.10068 0.9419845 +0.02852504 18.10068 0.9419845 +0.04126244 18.10068 0.9419845 +0.05836535 18.10068 0.9419845 +0.08132997 18.10068 0.9419845 +0.1121653 18.10068 0.9419845 +0.1535689 18.10068 0.9419845 +0.2091628 18.10068 0.9419845 +0.2838106 18.10068 0.9419845 +0.3840425 18.10068 0.9419845 +0.518627 18.10068 0.9419845 +0.6993381 18.10068 0.9419845 +0.9419845 18.10068 0.9419845 +1.267794 18.10068 0.9419845 +1.705268 18.10068 0.9419845 +2.292679 18.10068 0.9419845 +3.081414 18.10068 0.9419845 +4.140474 18.10068 0.9419845 +5.562508 18.10068 0.9419845 +7.471917 18.10068 0.9419845 +10.03574 18.10068 0.9419845 +13.47828 18.10068 0.9419845 +18.10068 18.10068 0.9419845 +24.30731 18.10068 0.9419845 +32.64117 18.10068 0.9419845 +43.83129 18.10068 0.9419845 +58.85664 18.10068 0.9419845 +-0.0175068 24.30731 0.9419845 +-0.01161267 24.30731 0.9419845 +-0.005718534 24.30731 0.9419845 +0.0001755984 24.30731 0.9419845 +0.006069731 24.30731 0.9419845 +0.01197402 24.30731 0.9419845 +0.01903886 24.30731 0.9419845 +0.02852504 24.30731 0.9419845 +0.04126244 24.30731 0.9419845 +0.05836535 24.30731 0.9419845 +0.08132997 24.30731 0.9419845 +0.1121653 24.30731 0.9419845 +0.1535689 24.30731 0.9419845 +0.2091628 24.30731 0.9419845 +0.2838106 24.30731 0.9419845 +0.3840425 24.30731 0.9419845 +0.518627 24.30731 0.9419845 +0.6993381 24.30731 0.9419845 +0.9419845 24.30731 0.9419845 +1.267794 24.30731 0.9419845 +1.705268 24.30731 0.9419845 +2.292679 24.30731 0.9419845 +3.081414 24.30731 0.9419845 +4.140474 24.30731 0.9419845 +5.562508 24.30731 0.9419845 +7.471917 24.30731 0.9419845 +10.03574 24.30731 0.9419845 +13.47828 24.30731 0.9419845 +18.10068 24.30731 0.9419845 +24.30731 24.30731 0.9419845 +32.64117 24.30731 0.9419845 +43.83129 24.30731 0.9419845 +58.85664 24.30731 0.9419845 +-0.0175068 32.64117 0.9419845 +-0.01161267 32.64117 0.9419845 +-0.005718534 32.64117 0.9419845 +0.0001755984 32.64117 0.9419845 +0.006069731 32.64117 0.9419845 +0.01197402 32.64117 0.9419845 +0.01903886 32.64117 0.9419845 +0.02852504 32.64117 0.9419845 +0.04126244 32.64117 0.9419845 +0.05836535 32.64117 0.9419845 +0.08132997 32.64117 0.9419845 +0.1121653 32.64117 0.9419845 +0.1535689 32.64117 0.9419845 +0.2091628 32.64117 0.9419845 +0.2838106 32.64117 0.9419845 +0.3840425 32.64117 0.9419845 +0.518627 32.64117 0.9419845 +0.6993381 32.64117 0.9419845 +0.9419845 32.64117 0.9419845 +1.267794 32.64117 0.9419845 +1.705268 32.64117 0.9419845 +2.292679 32.64117 0.9419845 +3.081414 32.64117 0.9419845 +4.140474 32.64117 0.9419845 +5.562508 32.64117 0.9419845 +7.471917 32.64117 0.9419845 +10.03574 32.64117 0.9419845 +13.47828 32.64117 0.9419845 +18.10068 32.64117 0.9419845 +24.30731 32.64117 0.9419845 +32.64117 32.64117 0.9419845 +43.83129 32.64117 0.9419845 +58.85664 32.64117 0.9419845 +-0.0175068 43.83129 0.9419845 +-0.01161267 43.83129 0.9419845 +-0.005718534 43.83129 0.9419845 +0.0001755984 43.83129 0.9419845 +0.006069731 43.83129 0.9419845 +0.01197402 43.83129 0.9419845 +0.01903886 43.83129 0.9419845 +0.02852504 43.83129 0.9419845 +0.04126244 43.83129 0.9419845 +0.05836535 43.83129 0.9419845 +0.08132997 43.83129 0.9419845 +0.1121653 43.83129 0.9419845 +0.1535689 43.83129 0.9419845 +0.2091628 43.83129 0.9419845 +0.2838106 43.83129 0.9419845 +0.3840425 43.83129 0.9419845 +0.518627 43.83129 0.9419845 +0.6993381 43.83129 0.9419845 +0.9419845 43.83129 0.9419845 +1.267794 43.83129 0.9419845 +1.705268 43.83129 0.9419845 +2.292679 43.83129 0.9419845 +3.081414 43.83129 0.9419845 +4.140474 43.83129 0.9419845 +5.562508 43.83129 0.9419845 +7.471917 43.83129 0.9419845 +10.03574 43.83129 0.9419845 +13.47828 43.83129 0.9419845 +18.10068 43.83129 0.9419845 +24.30731 43.83129 0.9419845 +32.64117 43.83129 0.9419845 +43.83129 43.83129 0.9419845 +58.85664 43.83129 0.9419845 +-0.0175068 58.85664 0.9419845 +-0.01161267 58.85664 0.9419845 +-0.005718534 58.85664 0.9419845 +0.0001755984 58.85664 0.9419845 +0.006069731 58.85664 0.9419845 +0.01197402 58.85664 0.9419845 +0.01903886 58.85664 0.9419845 +0.02852504 58.85664 0.9419845 +0.04126244 58.85664 0.9419845 +0.05836535 58.85664 0.9419845 +0.08132997 58.85664 0.9419845 +0.1121653 58.85664 0.9419845 +0.1535689 58.85664 0.9419845 +0.2091628 58.85664 0.9419845 +0.2838106 58.85664 0.9419845 +0.3840425 58.85664 0.9419845 +0.518627 58.85664 0.9419845 +0.6993381 58.85664 0.9419845 +0.9419845 58.85664 0.9419845 +1.267794 58.85664 0.9419845 +1.705268 58.85664 0.9419845 +2.292679 58.85664 0.9419845 +3.081414 58.85664 0.9419845 +4.140474 58.85664 0.9419845 +5.562508 58.85664 0.9419845 +7.471917 58.85664 0.9419845 +10.03574 58.85664 0.9419845 +13.47828 58.85664 0.9419845 +18.10068 58.85664 0.9419845 +24.30731 58.85664 0.9419845 +32.64117 58.85664 0.9419845 +43.83129 58.85664 0.9419845 +58.85664 58.85664 0.9419845 +-0.0175068 -0.0175068 1.267794 +-0.01161267 -0.0175068 1.267794 +-0.005718534 -0.0175068 1.267794 +0.0001755984 -0.0175068 1.267794 +0.006069731 -0.0175068 1.267794 +0.01197402 -0.0175068 1.267794 +0.01903886 -0.0175068 1.267794 +0.02852504 -0.0175068 1.267794 +0.04126244 -0.0175068 1.267794 +0.05836535 -0.0175068 1.267794 +0.08132997 -0.0175068 1.267794 +0.1121653 -0.0175068 1.267794 +0.1535689 -0.0175068 1.267794 +0.2091628 -0.0175068 1.267794 +0.2838106 -0.0175068 1.267794 +0.3840425 -0.0175068 1.267794 +0.518627 -0.0175068 1.267794 +0.6993381 -0.0175068 1.267794 +0.9419845 -0.0175068 1.267794 +1.267794 -0.0175068 1.267794 +1.705268 -0.0175068 1.267794 +2.292679 -0.0175068 1.267794 +3.081414 -0.0175068 1.267794 +4.140474 -0.0175068 1.267794 +5.562508 -0.0175068 1.267794 +7.471917 -0.0175068 1.267794 +10.03574 -0.0175068 1.267794 +13.47828 -0.0175068 1.267794 +18.10068 -0.0175068 1.267794 +24.30731 -0.0175068 1.267794 +32.64117 -0.0175068 1.267794 +43.83129 -0.0175068 1.267794 +58.85664 -0.0175068 1.267794 +-0.0175068 -0.01161267 1.267794 +-0.01161267 -0.01161267 1.267794 +-0.005718534 -0.01161267 1.267794 +0.0001755984 -0.01161267 1.267794 +0.006069731 -0.01161267 1.267794 +0.01197402 -0.01161267 1.267794 +0.01903886 -0.01161267 1.267794 +0.02852504 -0.01161267 1.267794 +0.04126244 -0.01161267 1.267794 +0.05836535 -0.01161267 1.267794 +0.08132997 -0.01161267 1.267794 +0.1121653 -0.01161267 1.267794 +0.1535689 -0.01161267 1.267794 +0.2091628 -0.01161267 1.267794 +0.2838106 -0.01161267 1.267794 +0.3840425 -0.01161267 1.267794 +0.518627 -0.01161267 1.267794 +0.6993381 -0.01161267 1.267794 +0.9419845 -0.01161267 1.267794 +1.267794 -0.01161267 1.267794 +1.705268 -0.01161267 1.267794 +2.292679 -0.01161267 1.267794 +3.081414 -0.01161267 1.267794 +4.140474 -0.01161267 1.267794 +5.562508 -0.01161267 1.267794 +7.471917 -0.01161267 1.267794 +10.03574 -0.01161267 1.267794 +13.47828 -0.01161267 1.267794 +18.10068 -0.01161267 1.267794 +24.30731 -0.01161267 1.267794 +32.64117 -0.01161267 1.267794 +43.83129 -0.01161267 1.267794 +58.85664 -0.01161267 1.267794 +-0.0175068 -0.005718534 1.267794 +-0.01161267 -0.005718534 1.267794 +-0.005718534 -0.005718534 1.267794 +0.0001755984 -0.005718534 1.267794 +0.006069731 -0.005718534 1.267794 +0.01197402 -0.005718534 1.267794 +0.01903886 -0.005718534 1.267794 +0.02852504 -0.005718534 1.267794 +0.04126244 -0.005718534 1.267794 +0.05836535 -0.005718534 1.267794 +0.08132997 -0.005718534 1.267794 +0.1121653 -0.005718534 1.267794 +0.1535689 -0.005718534 1.267794 +0.2091628 -0.005718534 1.267794 +0.2838106 -0.005718534 1.267794 +0.3840425 -0.005718534 1.267794 +0.518627 -0.005718534 1.267794 +0.6993381 -0.005718534 1.267794 +0.9419845 -0.005718534 1.267794 +1.267794 -0.005718534 1.267794 +1.705268 -0.005718534 1.267794 +2.292679 -0.005718534 1.267794 +3.081414 -0.005718534 1.267794 +4.140474 -0.005718534 1.267794 +5.562508 -0.005718534 1.267794 +7.471917 -0.005718534 1.267794 +10.03574 -0.005718534 1.267794 +13.47828 -0.005718534 1.267794 +18.10068 -0.005718534 1.267794 +24.30731 -0.005718534 1.267794 +32.64117 -0.005718534 1.267794 +43.83129 -0.005718534 1.267794 +58.85664 -0.005718534 1.267794 +-0.0175068 0.0001755984 1.267794 +-0.01161267 0.0001755984 1.267794 +-0.005718534 0.0001755984 1.267794 +0.0001755984 0.0001755984 1.267794 +0.006069731 0.0001755984 1.267794 +0.01197402 0.0001755984 1.267794 +0.01903886 0.0001755984 1.267794 +0.02852504 0.0001755984 1.267794 +0.04126244 0.0001755984 1.267794 +0.05836535 0.0001755984 1.267794 +0.08132997 0.0001755984 1.267794 +0.1121653 0.0001755984 1.267794 +0.1535689 0.0001755984 1.267794 +0.2091628 0.0001755984 1.267794 +0.2838106 0.0001755984 1.267794 +0.3840425 0.0001755984 1.267794 +0.518627 0.0001755984 1.267794 +0.6993381 0.0001755984 1.267794 +0.9419845 0.0001755984 1.267794 +1.267794 0.0001755984 1.267794 +1.705268 0.0001755984 1.267794 +2.292679 0.0001755984 1.267794 +3.081414 0.0001755984 1.267794 +4.140474 0.0001755984 1.267794 +5.562508 0.0001755984 1.267794 +7.471917 0.0001755984 1.267794 +10.03574 0.0001755984 1.267794 +13.47828 0.0001755984 1.267794 +18.10068 0.0001755984 1.267794 +24.30731 0.0001755984 1.267794 +32.64117 0.0001755984 1.267794 +43.83129 0.0001755984 1.267794 +58.85664 0.0001755984 1.267794 +-0.0175068 0.006069731 1.267794 +-0.01161267 0.006069731 1.267794 +-0.005718534 0.006069731 1.267794 +0.0001755984 0.006069731 1.267794 +0.006069731 0.006069731 1.267794 +0.01197402 0.006069731 1.267794 +0.01903886 0.006069731 1.267794 +0.02852504 0.006069731 1.267794 +0.04126244 0.006069731 1.267794 +0.05836535 0.006069731 1.267794 +0.08132997 0.006069731 1.267794 +0.1121653 0.006069731 1.267794 +0.1535689 0.006069731 1.267794 +0.2091628 0.006069731 1.267794 +0.2838106 0.006069731 1.267794 +0.3840425 0.006069731 1.267794 +0.518627 0.006069731 1.267794 +0.6993381 0.006069731 1.267794 +0.9419845 0.006069731 1.267794 +1.267794 0.006069731 1.267794 +1.705268 0.006069731 1.267794 +2.292679 0.006069731 1.267794 +3.081414 0.006069731 1.267794 +4.140474 0.006069731 1.267794 +5.562508 0.006069731 1.267794 +7.471917 0.006069731 1.267794 +10.03574 0.006069731 1.267794 +13.47828 0.006069731 1.267794 +18.10068 0.006069731 1.267794 +24.30731 0.006069731 1.267794 +32.64117 0.006069731 1.267794 +43.83129 0.006069731 1.267794 +58.85664 0.006069731 1.267794 +-0.0175068 0.01197402 1.267794 +-0.01161267 0.01197402 1.267794 +-0.005718534 0.01197402 1.267794 +0.0001755984 0.01197402 1.267794 +0.006069731 0.01197402 1.267794 +0.01197402 0.01197402 1.267794 +0.01903886 0.01197402 1.267794 +0.02852504 0.01197402 1.267794 +0.04126244 0.01197402 1.267794 +0.05836535 0.01197402 1.267794 +0.08132997 0.01197402 1.267794 +0.1121653 0.01197402 1.267794 +0.1535689 0.01197402 1.267794 +0.2091628 0.01197402 1.267794 +0.2838106 0.01197402 1.267794 +0.3840425 0.01197402 1.267794 +0.518627 0.01197402 1.267794 +0.6993381 0.01197402 1.267794 +0.9419845 0.01197402 1.267794 +1.267794 0.01197402 1.267794 +1.705268 0.01197402 1.267794 +2.292679 0.01197402 1.267794 +3.081414 0.01197402 1.267794 +4.140474 0.01197402 1.267794 +5.562508 0.01197402 1.267794 +7.471917 0.01197402 1.267794 +10.03574 0.01197402 1.267794 +13.47828 0.01197402 1.267794 +18.10068 0.01197402 1.267794 +24.30731 0.01197402 1.267794 +32.64117 0.01197402 1.267794 +43.83129 0.01197402 1.267794 +58.85664 0.01197402 1.267794 +-0.0175068 0.01903886 1.267794 +-0.01161267 0.01903886 1.267794 +-0.005718534 0.01903886 1.267794 +0.0001755984 0.01903886 1.267794 +0.006069731 0.01903886 1.267794 +0.01197402 0.01903886 1.267794 +0.01903886 0.01903886 1.267794 +0.02852504 0.01903886 1.267794 +0.04126244 0.01903886 1.267794 +0.05836535 0.01903886 1.267794 +0.08132997 0.01903886 1.267794 +0.1121653 0.01903886 1.267794 +0.1535689 0.01903886 1.267794 +0.2091628 0.01903886 1.267794 +0.2838106 0.01903886 1.267794 +0.3840425 0.01903886 1.267794 +0.518627 0.01903886 1.267794 +0.6993381 0.01903886 1.267794 +0.9419845 0.01903886 1.267794 +1.267794 0.01903886 1.267794 +1.705268 0.01903886 1.267794 +2.292679 0.01903886 1.267794 +3.081414 0.01903886 1.267794 +4.140474 0.01903886 1.267794 +5.562508 0.01903886 1.267794 +7.471917 0.01903886 1.267794 +10.03574 0.01903886 1.267794 +13.47828 0.01903886 1.267794 +18.10068 0.01903886 1.267794 +24.30731 0.01903886 1.267794 +32.64117 0.01903886 1.267794 +43.83129 0.01903886 1.267794 +58.85664 0.01903886 1.267794 +-0.0175068 0.02852504 1.267794 +-0.01161267 0.02852504 1.267794 +-0.005718534 0.02852504 1.267794 +0.0001755984 0.02852504 1.267794 +0.006069731 0.02852504 1.267794 +0.01197402 0.02852504 1.267794 +0.01903886 0.02852504 1.267794 +0.02852504 0.02852504 1.267794 +0.04126244 0.02852504 1.267794 +0.05836535 0.02852504 1.267794 +0.08132997 0.02852504 1.267794 +0.1121653 0.02852504 1.267794 +0.1535689 0.02852504 1.267794 +0.2091628 0.02852504 1.267794 +0.2838106 0.02852504 1.267794 +0.3840425 0.02852504 1.267794 +0.518627 0.02852504 1.267794 +0.6993381 0.02852504 1.267794 +0.9419845 0.02852504 1.267794 +1.267794 0.02852504 1.267794 +1.705268 0.02852504 1.267794 +2.292679 0.02852504 1.267794 +3.081414 0.02852504 1.267794 +4.140474 0.02852504 1.267794 +5.562508 0.02852504 1.267794 +7.471917 0.02852504 1.267794 +10.03574 0.02852504 1.267794 +13.47828 0.02852504 1.267794 +18.10068 0.02852504 1.267794 +24.30731 0.02852504 1.267794 +32.64117 0.02852504 1.267794 +43.83129 0.02852504 1.267794 +58.85664 0.02852504 1.267794 +-0.0175068 0.04126244 1.267794 +-0.01161267 0.04126244 1.267794 +-0.005718534 0.04126244 1.267794 +0.0001755984 0.04126244 1.267794 +0.006069731 0.04126244 1.267794 +0.01197402 0.04126244 1.267794 +0.01903886 0.04126244 1.267794 +0.02852504 0.04126244 1.267794 +0.04126244 0.04126244 1.267794 +0.05836535 0.04126244 1.267794 +0.08132997 0.04126244 1.267794 +0.1121653 0.04126244 1.267794 +0.1535689 0.04126244 1.267794 +0.2091628 0.04126244 1.267794 +0.2838106 0.04126244 1.267794 +0.3840425 0.04126244 1.267794 +0.518627 0.04126244 1.267794 +0.6993381 0.04126244 1.267794 +0.9419845 0.04126244 1.267794 +1.267794 0.04126244 1.267794 +1.705268 0.04126244 1.267794 +2.292679 0.04126244 1.267794 +3.081414 0.04126244 1.267794 +4.140474 0.04126244 1.267794 +5.562508 0.04126244 1.267794 +7.471917 0.04126244 1.267794 +10.03574 0.04126244 1.267794 +13.47828 0.04126244 1.267794 +18.10068 0.04126244 1.267794 +24.30731 0.04126244 1.267794 +32.64117 0.04126244 1.267794 +43.83129 0.04126244 1.267794 +58.85664 0.04126244 1.267794 +-0.0175068 0.05836535 1.267794 +-0.01161267 0.05836535 1.267794 +-0.005718534 0.05836535 1.267794 +0.0001755984 0.05836535 1.267794 +0.006069731 0.05836535 1.267794 +0.01197402 0.05836535 1.267794 +0.01903886 0.05836535 1.267794 +0.02852504 0.05836535 1.267794 +0.04126244 0.05836535 1.267794 +0.05836535 0.05836535 1.267794 +0.08132997 0.05836535 1.267794 +0.1121653 0.05836535 1.267794 +0.1535689 0.05836535 1.267794 +0.2091628 0.05836535 1.267794 +0.2838106 0.05836535 1.267794 +0.3840425 0.05836535 1.267794 +0.518627 0.05836535 1.267794 +0.6993381 0.05836535 1.267794 +0.9419845 0.05836535 1.267794 +1.267794 0.05836535 1.267794 +1.705268 0.05836535 1.267794 +2.292679 0.05836535 1.267794 +3.081414 0.05836535 1.267794 +4.140474 0.05836535 1.267794 +5.562508 0.05836535 1.267794 +7.471917 0.05836535 1.267794 +10.03574 0.05836535 1.267794 +13.47828 0.05836535 1.267794 +18.10068 0.05836535 1.267794 +24.30731 0.05836535 1.267794 +32.64117 0.05836535 1.267794 +43.83129 0.05836535 1.267794 +58.85664 0.05836535 1.267794 +-0.0175068 0.08132997 1.267794 +-0.01161267 0.08132997 1.267794 +-0.005718534 0.08132997 1.267794 +0.0001755984 0.08132997 1.267794 +0.006069731 0.08132997 1.267794 +0.01197402 0.08132997 1.267794 +0.01903886 0.08132997 1.267794 +0.02852504 0.08132997 1.267794 +0.04126244 0.08132997 1.267794 +0.05836535 0.08132997 1.267794 +0.08132997 0.08132997 1.267794 +0.1121653 0.08132997 1.267794 +0.1535689 0.08132997 1.267794 +0.2091628 0.08132997 1.267794 +0.2838106 0.08132997 1.267794 +0.3840425 0.08132997 1.267794 +0.518627 0.08132997 1.267794 +0.6993381 0.08132997 1.267794 +0.9419845 0.08132997 1.267794 +1.267794 0.08132997 1.267794 +1.705268 0.08132997 1.267794 +2.292679 0.08132997 1.267794 +3.081414 0.08132997 1.267794 +4.140474 0.08132997 1.267794 +5.562508 0.08132997 1.267794 +7.471917 0.08132997 1.267794 +10.03574 0.08132997 1.267794 +13.47828 0.08132997 1.267794 +18.10068 0.08132997 1.267794 +24.30731 0.08132997 1.267794 +32.64117 0.08132997 1.267794 +43.83129 0.08132997 1.267794 +58.85664 0.08132997 1.267794 +-0.0175068 0.1121653 1.267794 +-0.01161267 0.1121653 1.267794 +-0.005718534 0.1121653 1.267794 +0.0001755984 0.1121653 1.267794 +0.006069731 0.1121653 1.267794 +0.01197402 0.1121653 1.267794 +0.01903886 0.1121653 1.267794 +0.02852504 0.1121653 1.267794 +0.04126244 0.1121653 1.267794 +0.05836535 0.1121653 1.267794 +0.08132997 0.1121653 1.267794 +0.1121653 0.1121653 1.267794 +0.1535689 0.1121653 1.267794 +0.2091628 0.1121653 1.267794 +0.2838106 0.1121653 1.267794 +0.3840425 0.1121653 1.267794 +0.518627 0.1121653 1.267794 +0.6993381 0.1121653 1.267794 +0.9419845 0.1121653 1.267794 +1.267794 0.1121653 1.267794 +1.705268 0.1121653 1.267794 +2.292679 0.1121653 1.267794 +3.081414 0.1121653 1.267794 +4.140474 0.1121653 1.267794 +5.562508 0.1121653 1.267794 +7.471917 0.1121653 1.267794 +10.03574 0.1121653 1.267794 +13.47828 0.1121653 1.267794 +18.10068 0.1121653 1.267794 +24.30731 0.1121653 1.267794 +32.64117 0.1121653 1.267794 +43.83129 0.1121653 1.267794 +58.85664 0.1121653 1.267794 +-0.0175068 0.1535689 1.267794 +-0.01161267 0.1535689 1.267794 +-0.005718534 0.1535689 1.267794 +0.0001755984 0.1535689 1.267794 +0.006069731 0.1535689 1.267794 +0.01197402 0.1535689 1.267794 +0.01903886 0.1535689 1.267794 +0.02852504 0.1535689 1.267794 +0.04126244 0.1535689 1.267794 +0.05836535 0.1535689 1.267794 +0.08132997 0.1535689 1.267794 +0.1121653 0.1535689 1.267794 +0.1535689 0.1535689 1.267794 +0.2091628 0.1535689 1.267794 +0.2838106 0.1535689 1.267794 +0.3840425 0.1535689 1.267794 +0.518627 0.1535689 1.267794 +0.6993381 0.1535689 1.267794 +0.9419845 0.1535689 1.267794 +1.267794 0.1535689 1.267794 +1.705268 0.1535689 1.267794 +2.292679 0.1535689 1.267794 +3.081414 0.1535689 1.267794 +4.140474 0.1535689 1.267794 +5.562508 0.1535689 1.267794 +7.471917 0.1535689 1.267794 +10.03574 0.1535689 1.267794 +13.47828 0.1535689 1.267794 +18.10068 0.1535689 1.267794 +24.30731 0.1535689 1.267794 +32.64117 0.1535689 1.267794 +43.83129 0.1535689 1.267794 +58.85664 0.1535689 1.267794 +-0.0175068 0.2091628 1.267794 +-0.01161267 0.2091628 1.267794 +-0.005718534 0.2091628 1.267794 +0.0001755984 0.2091628 1.267794 +0.006069731 0.2091628 1.267794 +0.01197402 0.2091628 1.267794 +0.01903886 0.2091628 1.267794 +0.02852504 0.2091628 1.267794 +0.04126244 0.2091628 1.267794 +0.05836535 0.2091628 1.267794 +0.08132997 0.2091628 1.267794 +0.1121653 0.2091628 1.267794 +0.1535689 0.2091628 1.267794 +0.2091628 0.2091628 1.267794 +0.2838106 0.2091628 1.267794 +0.3840425 0.2091628 1.267794 +0.518627 0.2091628 1.267794 +0.6993381 0.2091628 1.267794 +0.9419845 0.2091628 1.267794 +1.267794 0.2091628 1.267794 +1.705268 0.2091628 1.267794 +2.292679 0.2091628 1.267794 +3.081414 0.2091628 1.267794 +4.140474 0.2091628 1.267794 +5.562508 0.2091628 1.267794 +7.471917 0.2091628 1.267794 +10.03574 0.2091628 1.267794 +13.47828 0.2091628 1.267794 +18.10068 0.2091628 1.267794 +24.30731 0.2091628 1.267794 +32.64117 0.2091628 1.267794 +43.83129 0.2091628 1.267794 +58.85664 0.2091628 1.267794 +-0.0175068 0.2838106 1.267794 +-0.01161267 0.2838106 1.267794 +-0.005718534 0.2838106 1.267794 +0.0001755984 0.2838106 1.267794 +0.006069731 0.2838106 1.267794 +0.01197402 0.2838106 1.267794 +0.01903886 0.2838106 1.267794 +0.02852504 0.2838106 1.267794 +0.04126244 0.2838106 1.267794 +0.05836535 0.2838106 1.267794 +0.08132997 0.2838106 1.267794 +0.1121653 0.2838106 1.267794 +0.1535689 0.2838106 1.267794 +0.2091628 0.2838106 1.267794 +0.2838106 0.2838106 1.267794 +0.3840425 0.2838106 1.267794 +0.518627 0.2838106 1.267794 +0.6993381 0.2838106 1.267794 +0.9419845 0.2838106 1.267794 +1.267794 0.2838106 1.267794 +1.705268 0.2838106 1.267794 +2.292679 0.2838106 1.267794 +3.081414 0.2838106 1.267794 +4.140474 0.2838106 1.267794 +5.562508 0.2838106 1.267794 +7.471917 0.2838106 1.267794 +10.03574 0.2838106 1.267794 +13.47828 0.2838106 1.267794 +18.10068 0.2838106 1.267794 +24.30731 0.2838106 1.267794 +32.64117 0.2838106 1.267794 +43.83129 0.2838106 1.267794 +58.85664 0.2838106 1.267794 +-0.0175068 0.3840425 1.267794 +-0.01161267 0.3840425 1.267794 +-0.005718534 0.3840425 1.267794 +0.0001755984 0.3840425 1.267794 +0.006069731 0.3840425 1.267794 +0.01197402 0.3840425 1.267794 +0.01903886 0.3840425 1.267794 +0.02852504 0.3840425 1.267794 +0.04126244 0.3840425 1.267794 +0.05836535 0.3840425 1.267794 +0.08132997 0.3840425 1.267794 +0.1121653 0.3840425 1.267794 +0.1535689 0.3840425 1.267794 +0.2091628 0.3840425 1.267794 +0.2838106 0.3840425 1.267794 +0.3840425 0.3840425 1.267794 +0.518627 0.3840425 1.267794 +0.6993381 0.3840425 1.267794 +0.9419845 0.3840425 1.267794 +1.267794 0.3840425 1.267794 +1.705268 0.3840425 1.267794 +2.292679 0.3840425 1.267794 +3.081414 0.3840425 1.267794 +4.140474 0.3840425 1.267794 +5.562508 0.3840425 1.267794 +7.471917 0.3840425 1.267794 +10.03574 0.3840425 1.267794 +13.47828 0.3840425 1.267794 +18.10068 0.3840425 1.267794 +24.30731 0.3840425 1.267794 +32.64117 0.3840425 1.267794 +43.83129 0.3840425 1.267794 +58.85664 0.3840425 1.267794 +-0.0175068 0.518627 1.267794 +-0.01161267 0.518627 1.267794 +-0.005718534 0.518627 1.267794 +0.0001755984 0.518627 1.267794 +0.006069731 0.518627 1.267794 +0.01197402 0.518627 1.267794 +0.01903886 0.518627 1.267794 +0.02852504 0.518627 1.267794 +0.04126244 0.518627 1.267794 +0.05836535 0.518627 1.267794 +0.08132997 0.518627 1.267794 +0.1121653 0.518627 1.267794 +0.1535689 0.518627 1.267794 +0.2091628 0.518627 1.267794 +0.2838106 0.518627 1.267794 +0.3840425 0.518627 1.267794 +0.518627 0.518627 1.267794 +0.6993381 0.518627 1.267794 +0.9419845 0.518627 1.267794 +1.267794 0.518627 1.267794 +1.705268 0.518627 1.267794 +2.292679 0.518627 1.267794 +3.081414 0.518627 1.267794 +4.140474 0.518627 1.267794 +5.562508 0.518627 1.267794 +7.471917 0.518627 1.267794 +10.03574 0.518627 1.267794 +13.47828 0.518627 1.267794 +18.10068 0.518627 1.267794 +24.30731 0.518627 1.267794 +32.64117 0.518627 1.267794 +43.83129 0.518627 1.267794 +58.85664 0.518627 1.267794 +-0.0175068 0.6993381 1.267794 +-0.01161267 0.6993381 1.267794 +-0.005718534 0.6993381 1.267794 +0.0001755984 0.6993381 1.267794 +0.006069731 0.6993381 1.267794 +0.01197402 0.6993381 1.267794 +0.01903886 0.6993381 1.267794 +0.02852504 0.6993381 1.267794 +0.04126244 0.6993381 1.267794 +0.05836535 0.6993381 1.267794 +0.08132997 0.6993381 1.267794 +0.1121653 0.6993381 1.267794 +0.1535689 0.6993381 1.267794 +0.2091628 0.6993381 1.267794 +0.2838106 0.6993381 1.267794 +0.3840425 0.6993381 1.267794 +0.518627 0.6993381 1.267794 +0.6993381 0.6993381 1.267794 +0.9419845 0.6993381 1.267794 +1.267794 0.6993381 1.267794 +1.705268 0.6993381 1.267794 +2.292679 0.6993381 1.267794 +3.081414 0.6993381 1.267794 +4.140474 0.6993381 1.267794 +5.562508 0.6993381 1.267794 +7.471917 0.6993381 1.267794 +10.03574 0.6993381 1.267794 +13.47828 0.6993381 1.267794 +18.10068 0.6993381 1.267794 +24.30731 0.6993381 1.267794 +32.64117 0.6993381 1.267794 +43.83129 0.6993381 1.267794 +58.85664 0.6993381 1.267794 +-0.0175068 0.9419845 1.267794 +-0.01161267 0.9419845 1.267794 +-0.005718534 0.9419845 1.267794 +0.0001755984 0.9419845 1.267794 +0.006069731 0.9419845 1.267794 +0.01197402 0.9419845 1.267794 +0.01903886 0.9419845 1.267794 +0.02852504 0.9419845 1.267794 +0.04126244 0.9419845 1.267794 +0.05836535 0.9419845 1.267794 +0.08132997 0.9419845 1.267794 +0.1121653 0.9419845 1.267794 +0.1535689 0.9419845 1.267794 +0.2091628 0.9419845 1.267794 +0.2838106 0.9419845 1.267794 +0.3840425 0.9419845 1.267794 +0.518627 0.9419845 1.267794 +0.6993381 0.9419845 1.267794 +0.9419845 0.9419845 1.267794 +1.267794 0.9419845 1.267794 +1.705268 0.9419845 1.267794 +2.292679 0.9419845 1.267794 +3.081414 0.9419845 1.267794 +4.140474 0.9419845 1.267794 +5.562508 0.9419845 1.267794 +7.471917 0.9419845 1.267794 +10.03574 0.9419845 1.267794 +13.47828 0.9419845 1.267794 +18.10068 0.9419845 1.267794 +24.30731 0.9419845 1.267794 +32.64117 0.9419845 1.267794 +43.83129 0.9419845 1.267794 +58.85664 0.9419845 1.267794 +-0.0175068 1.267794 1.267794 +-0.01161267 1.267794 1.267794 +-0.005718534 1.267794 1.267794 +0.0001755984 1.267794 1.267794 +0.006069731 1.267794 1.267794 +0.01197402 1.267794 1.267794 +0.01903886 1.267794 1.267794 +0.02852504 1.267794 1.267794 +0.04126244 1.267794 1.267794 +0.05836535 1.267794 1.267794 +0.08132997 1.267794 1.267794 +0.1121653 1.267794 1.267794 +0.1535689 1.267794 1.267794 +0.2091628 1.267794 1.267794 +0.2838106 1.267794 1.267794 +0.3840425 1.267794 1.267794 +0.518627 1.267794 1.267794 +0.6993381 1.267794 1.267794 +0.9419845 1.267794 1.267794 +1.267794 1.267794 1.267794 +1.705268 1.267794 1.267794 +2.292679 1.267794 1.267794 +3.081414 1.267794 1.267794 +4.140474 1.267794 1.267794 +5.562508 1.267794 1.267794 +7.471917 1.267794 1.267794 +10.03574 1.267794 1.267794 +13.47828 1.267794 1.267794 +18.10068 1.267794 1.267794 +24.30731 1.267794 1.267794 +32.64117 1.267794 1.267794 +43.83129 1.267794 1.267794 +58.85664 1.267794 1.267794 +-0.0175068 1.705268 1.267794 +-0.01161267 1.705268 1.267794 +-0.005718534 1.705268 1.267794 +0.0001755984 1.705268 1.267794 +0.006069731 1.705268 1.267794 +0.01197402 1.705268 1.267794 +0.01903886 1.705268 1.267794 +0.02852504 1.705268 1.267794 +0.04126244 1.705268 1.267794 +0.05836535 1.705268 1.267794 +0.08132997 1.705268 1.267794 +0.1121653 1.705268 1.267794 +0.1535689 1.705268 1.267794 +0.2091628 1.705268 1.267794 +0.2838106 1.705268 1.267794 +0.3840425 1.705268 1.267794 +0.518627 1.705268 1.267794 +0.6993381 1.705268 1.267794 +0.9419845 1.705268 1.267794 +1.267794 1.705268 1.267794 +1.705268 1.705268 1.267794 +2.292679 1.705268 1.267794 +3.081414 1.705268 1.267794 +4.140474 1.705268 1.267794 +5.562508 1.705268 1.267794 +7.471917 1.705268 1.267794 +10.03574 1.705268 1.267794 +13.47828 1.705268 1.267794 +18.10068 1.705268 1.267794 +24.30731 1.705268 1.267794 +32.64117 1.705268 1.267794 +43.83129 1.705268 1.267794 +58.85664 1.705268 1.267794 +-0.0175068 2.292679 1.267794 +-0.01161267 2.292679 1.267794 +-0.005718534 2.292679 1.267794 +0.0001755984 2.292679 1.267794 +0.006069731 2.292679 1.267794 +0.01197402 2.292679 1.267794 +0.01903886 2.292679 1.267794 +0.02852504 2.292679 1.267794 +0.04126244 2.292679 1.267794 +0.05836535 2.292679 1.267794 +0.08132997 2.292679 1.267794 +0.1121653 2.292679 1.267794 +0.1535689 2.292679 1.267794 +0.2091628 2.292679 1.267794 +0.2838106 2.292679 1.267794 +0.3840425 2.292679 1.267794 +0.518627 2.292679 1.267794 +0.6993381 2.292679 1.267794 +0.9419845 2.292679 1.267794 +1.267794 2.292679 1.267794 +1.705268 2.292679 1.267794 +2.292679 2.292679 1.267794 +3.081414 2.292679 1.267794 +4.140474 2.292679 1.267794 +5.562508 2.292679 1.267794 +7.471917 2.292679 1.267794 +10.03574 2.292679 1.267794 +13.47828 2.292679 1.267794 +18.10068 2.292679 1.267794 +24.30731 2.292679 1.267794 +32.64117 2.292679 1.267794 +43.83129 2.292679 1.267794 +58.85664 2.292679 1.267794 +-0.0175068 3.081414 1.267794 +-0.01161267 3.081414 1.267794 +-0.005718534 3.081414 1.267794 +0.0001755984 3.081414 1.267794 +0.006069731 3.081414 1.267794 +0.01197402 3.081414 1.267794 +0.01903886 3.081414 1.267794 +0.02852504 3.081414 1.267794 +0.04126244 3.081414 1.267794 +0.05836535 3.081414 1.267794 +0.08132997 3.081414 1.267794 +0.1121653 3.081414 1.267794 +0.1535689 3.081414 1.267794 +0.2091628 3.081414 1.267794 +0.2838106 3.081414 1.267794 +0.3840425 3.081414 1.267794 +0.518627 3.081414 1.267794 +0.6993381 3.081414 1.267794 +0.9419845 3.081414 1.267794 +1.267794 3.081414 1.267794 +1.705268 3.081414 1.267794 +2.292679 3.081414 1.267794 +3.081414 3.081414 1.267794 +4.140474 3.081414 1.267794 +5.562508 3.081414 1.267794 +7.471917 3.081414 1.267794 +10.03574 3.081414 1.267794 +13.47828 3.081414 1.267794 +18.10068 3.081414 1.267794 +24.30731 3.081414 1.267794 +32.64117 3.081414 1.267794 +43.83129 3.081414 1.267794 +58.85664 3.081414 1.267794 +-0.0175068 4.140474 1.267794 +-0.01161267 4.140474 1.267794 +-0.005718534 4.140474 1.267794 +0.0001755984 4.140474 1.267794 +0.006069731 4.140474 1.267794 +0.01197402 4.140474 1.267794 +0.01903886 4.140474 1.267794 +0.02852504 4.140474 1.267794 +0.04126244 4.140474 1.267794 +0.05836535 4.140474 1.267794 +0.08132997 4.140474 1.267794 +0.1121653 4.140474 1.267794 +0.1535689 4.140474 1.267794 +0.2091628 4.140474 1.267794 +0.2838106 4.140474 1.267794 +0.3840425 4.140474 1.267794 +0.518627 4.140474 1.267794 +0.6993381 4.140474 1.267794 +0.9419845 4.140474 1.267794 +1.267794 4.140474 1.267794 +1.705268 4.140474 1.267794 +2.292679 4.140474 1.267794 +3.081414 4.140474 1.267794 +4.140474 4.140474 1.267794 +5.562508 4.140474 1.267794 +7.471917 4.140474 1.267794 +10.03574 4.140474 1.267794 +13.47828 4.140474 1.267794 +18.10068 4.140474 1.267794 +24.30731 4.140474 1.267794 +32.64117 4.140474 1.267794 +43.83129 4.140474 1.267794 +58.85664 4.140474 1.267794 +-0.0175068 5.562508 1.267794 +-0.01161267 5.562508 1.267794 +-0.005718534 5.562508 1.267794 +0.0001755984 5.562508 1.267794 +0.006069731 5.562508 1.267794 +0.01197402 5.562508 1.267794 +0.01903886 5.562508 1.267794 +0.02852504 5.562508 1.267794 +0.04126244 5.562508 1.267794 +0.05836535 5.562508 1.267794 +0.08132997 5.562508 1.267794 +0.1121653 5.562508 1.267794 +0.1535689 5.562508 1.267794 +0.2091628 5.562508 1.267794 +0.2838106 5.562508 1.267794 +0.3840425 5.562508 1.267794 +0.518627 5.562508 1.267794 +0.6993381 5.562508 1.267794 +0.9419845 5.562508 1.267794 +1.267794 5.562508 1.267794 +1.705268 5.562508 1.267794 +2.292679 5.562508 1.267794 +3.081414 5.562508 1.267794 +4.140474 5.562508 1.267794 +5.562508 5.562508 1.267794 +7.471917 5.562508 1.267794 +10.03574 5.562508 1.267794 +13.47828 5.562508 1.267794 +18.10068 5.562508 1.267794 +24.30731 5.562508 1.267794 +32.64117 5.562508 1.267794 +43.83129 5.562508 1.267794 +58.85664 5.562508 1.267794 +-0.0175068 7.471917 1.267794 +-0.01161267 7.471917 1.267794 +-0.005718534 7.471917 1.267794 +0.0001755984 7.471917 1.267794 +0.006069731 7.471917 1.267794 +0.01197402 7.471917 1.267794 +0.01903886 7.471917 1.267794 +0.02852504 7.471917 1.267794 +0.04126244 7.471917 1.267794 +0.05836535 7.471917 1.267794 +0.08132997 7.471917 1.267794 +0.1121653 7.471917 1.267794 +0.1535689 7.471917 1.267794 +0.2091628 7.471917 1.267794 +0.2838106 7.471917 1.267794 +0.3840425 7.471917 1.267794 +0.518627 7.471917 1.267794 +0.6993381 7.471917 1.267794 +0.9419845 7.471917 1.267794 +1.267794 7.471917 1.267794 +1.705268 7.471917 1.267794 +2.292679 7.471917 1.267794 +3.081414 7.471917 1.267794 +4.140474 7.471917 1.267794 +5.562508 7.471917 1.267794 +7.471917 7.471917 1.267794 +10.03574 7.471917 1.267794 +13.47828 7.471917 1.267794 +18.10068 7.471917 1.267794 +24.30731 7.471917 1.267794 +32.64117 7.471917 1.267794 +43.83129 7.471917 1.267794 +58.85664 7.471917 1.267794 +-0.0175068 10.03574 1.267794 +-0.01161267 10.03574 1.267794 +-0.005718534 10.03574 1.267794 +0.0001755984 10.03574 1.267794 +0.006069731 10.03574 1.267794 +0.01197402 10.03574 1.267794 +0.01903886 10.03574 1.267794 +0.02852504 10.03574 1.267794 +0.04126244 10.03574 1.267794 +0.05836535 10.03574 1.267794 +0.08132997 10.03574 1.267794 +0.1121653 10.03574 1.267794 +0.1535689 10.03574 1.267794 +0.2091628 10.03574 1.267794 +0.2838106 10.03574 1.267794 +0.3840425 10.03574 1.267794 +0.518627 10.03574 1.267794 +0.6993381 10.03574 1.267794 +0.9419845 10.03574 1.267794 +1.267794 10.03574 1.267794 +1.705268 10.03574 1.267794 +2.292679 10.03574 1.267794 +3.081414 10.03574 1.267794 +4.140474 10.03574 1.267794 +5.562508 10.03574 1.267794 +7.471917 10.03574 1.267794 +10.03574 10.03574 1.267794 +13.47828 10.03574 1.267794 +18.10068 10.03574 1.267794 +24.30731 10.03574 1.267794 +32.64117 10.03574 1.267794 +43.83129 10.03574 1.267794 +58.85664 10.03574 1.267794 +-0.0175068 13.47828 1.267794 +-0.01161267 13.47828 1.267794 +-0.005718534 13.47828 1.267794 +0.0001755984 13.47828 1.267794 +0.006069731 13.47828 1.267794 +0.01197402 13.47828 1.267794 +0.01903886 13.47828 1.267794 +0.02852504 13.47828 1.267794 +0.04126244 13.47828 1.267794 +0.05836535 13.47828 1.267794 +0.08132997 13.47828 1.267794 +0.1121653 13.47828 1.267794 +0.1535689 13.47828 1.267794 +0.2091628 13.47828 1.267794 +0.2838106 13.47828 1.267794 +0.3840425 13.47828 1.267794 +0.518627 13.47828 1.267794 +0.6993381 13.47828 1.267794 +0.9419845 13.47828 1.267794 +1.267794 13.47828 1.267794 +1.705268 13.47828 1.267794 +2.292679 13.47828 1.267794 +3.081414 13.47828 1.267794 +4.140474 13.47828 1.267794 +5.562508 13.47828 1.267794 +7.471917 13.47828 1.267794 +10.03574 13.47828 1.267794 +13.47828 13.47828 1.267794 +18.10068 13.47828 1.267794 +24.30731 13.47828 1.267794 +32.64117 13.47828 1.267794 +43.83129 13.47828 1.267794 +58.85664 13.47828 1.267794 +-0.0175068 18.10068 1.267794 +-0.01161267 18.10068 1.267794 +-0.005718534 18.10068 1.267794 +0.0001755984 18.10068 1.267794 +0.006069731 18.10068 1.267794 +0.01197402 18.10068 1.267794 +0.01903886 18.10068 1.267794 +0.02852504 18.10068 1.267794 +0.04126244 18.10068 1.267794 +0.05836535 18.10068 1.267794 +0.08132997 18.10068 1.267794 +0.1121653 18.10068 1.267794 +0.1535689 18.10068 1.267794 +0.2091628 18.10068 1.267794 +0.2838106 18.10068 1.267794 +0.3840425 18.10068 1.267794 +0.518627 18.10068 1.267794 +0.6993381 18.10068 1.267794 +0.9419845 18.10068 1.267794 +1.267794 18.10068 1.267794 +1.705268 18.10068 1.267794 +2.292679 18.10068 1.267794 +3.081414 18.10068 1.267794 +4.140474 18.10068 1.267794 +5.562508 18.10068 1.267794 +7.471917 18.10068 1.267794 +10.03574 18.10068 1.267794 +13.47828 18.10068 1.267794 +18.10068 18.10068 1.267794 +24.30731 18.10068 1.267794 +32.64117 18.10068 1.267794 +43.83129 18.10068 1.267794 +58.85664 18.10068 1.267794 +-0.0175068 24.30731 1.267794 +-0.01161267 24.30731 1.267794 +-0.005718534 24.30731 1.267794 +0.0001755984 24.30731 1.267794 +0.006069731 24.30731 1.267794 +0.01197402 24.30731 1.267794 +0.01903886 24.30731 1.267794 +0.02852504 24.30731 1.267794 +0.04126244 24.30731 1.267794 +0.05836535 24.30731 1.267794 +0.08132997 24.30731 1.267794 +0.1121653 24.30731 1.267794 +0.1535689 24.30731 1.267794 +0.2091628 24.30731 1.267794 +0.2838106 24.30731 1.267794 +0.3840425 24.30731 1.267794 +0.518627 24.30731 1.267794 +0.6993381 24.30731 1.267794 +0.9419845 24.30731 1.267794 +1.267794 24.30731 1.267794 +1.705268 24.30731 1.267794 +2.292679 24.30731 1.267794 +3.081414 24.30731 1.267794 +4.140474 24.30731 1.267794 +5.562508 24.30731 1.267794 +7.471917 24.30731 1.267794 +10.03574 24.30731 1.267794 +13.47828 24.30731 1.267794 +18.10068 24.30731 1.267794 +24.30731 24.30731 1.267794 +32.64117 24.30731 1.267794 +43.83129 24.30731 1.267794 +58.85664 24.30731 1.267794 +-0.0175068 32.64117 1.267794 +-0.01161267 32.64117 1.267794 +-0.005718534 32.64117 1.267794 +0.0001755984 32.64117 1.267794 +0.006069731 32.64117 1.267794 +0.01197402 32.64117 1.267794 +0.01903886 32.64117 1.267794 +0.02852504 32.64117 1.267794 +0.04126244 32.64117 1.267794 +0.05836535 32.64117 1.267794 +0.08132997 32.64117 1.267794 +0.1121653 32.64117 1.267794 +0.1535689 32.64117 1.267794 +0.2091628 32.64117 1.267794 +0.2838106 32.64117 1.267794 +0.3840425 32.64117 1.267794 +0.518627 32.64117 1.267794 +0.6993381 32.64117 1.267794 +0.9419845 32.64117 1.267794 +1.267794 32.64117 1.267794 +1.705268 32.64117 1.267794 +2.292679 32.64117 1.267794 +3.081414 32.64117 1.267794 +4.140474 32.64117 1.267794 +5.562508 32.64117 1.267794 +7.471917 32.64117 1.267794 +10.03574 32.64117 1.267794 +13.47828 32.64117 1.267794 +18.10068 32.64117 1.267794 +24.30731 32.64117 1.267794 +32.64117 32.64117 1.267794 +43.83129 32.64117 1.267794 +58.85664 32.64117 1.267794 +-0.0175068 43.83129 1.267794 +-0.01161267 43.83129 1.267794 +-0.005718534 43.83129 1.267794 +0.0001755984 43.83129 1.267794 +0.006069731 43.83129 1.267794 +0.01197402 43.83129 1.267794 +0.01903886 43.83129 1.267794 +0.02852504 43.83129 1.267794 +0.04126244 43.83129 1.267794 +0.05836535 43.83129 1.267794 +0.08132997 43.83129 1.267794 +0.1121653 43.83129 1.267794 +0.1535689 43.83129 1.267794 +0.2091628 43.83129 1.267794 +0.2838106 43.83129 1.267794 +0.3840425 43.83129 1.267794 +0.518627 43.83129 1.267794 +0.6993381 43.83129 1.267794 +0.9419845 43.83129 1.267794 +1.267794 43.83129 1.267794 +1.705268 43.83129 1.267794 +2.292679 43.83129 1.267794 +3.081414 43.83129 1.267794 +4.140474 43.83129 1.267794 +5.562508 43.83129 1.267794 +7.471917 43.83129 1.267794 +10.03574 43.83129 1.267794 +13.47828 43.83129 1.267794 +18.10068 43.83129 1.267794 +24.30731 43.83129 1.267794 +32.64117 43.83129 1.267794 +43.83129 43.83129 1.267794 +58.85664 43.83129 1.267794 +-0.0175068 58.85664 1.267794 +-0.01161267 58.85664 1.267794 +-0.005718534 58.85664 1.267794 +0.0001755984 58.85664 1.267794 +0.006069731 58.85664 1.267794 +0.01197402 58.85664 1.267794 +0.01903886 58.85664 1.267794 +0.02852504 58.85664 1.267794 +0.04126244 58.85664 1.267794 +0.05836535 58.85664 1.267794 +0.08132997 58.85664 1.267794 +0.1121653 58.85664 1.267794 +0.1535689 58.85664 1.267794 +0.2091628 58.85664 1.267794 +0.2838106 58.85664 1.267794 +0.3840425 58.85664 1.267794 +0.518627 58.85664 1.267794 +0.6993381 58.85664 1.267794 +0.9419845 58.85664 1.267794 +1.267794 58.85664 1.267794 +1.705268 58.85664 1.267794 +2.292679 58.85664 1.267794 +3.081414 58.85664 1.267794 +4.140474 58.85664 1.267794 +5.562508 58.85664 1.267794 +7.471917 58.85664 1.267794 +10.03574 58.85664 1.267794 +13.47828 58.85664 1.267794 +18.10068 58.85664 1.267794 +24.30731 58.85664 1.267794 +32.64117 58.85664 1.267794 +43.83129 58.85664 1.267794 +58.85664 58.85664 1.267794 +-0.0175068 -0.0175068 1.705268 +-0.01161267 -0.0175068 1.705268 +-0.005718534 -0.0175068 1.705268 +0.0001755984 -0.0175068 1.705268 +0.006069731 -0.0175068 1.705268 +0.01197402 -0.0175068 1.705268 +0.01903886 -0.0175068 1.705268 +0.02852504 -0.0175068 1.705268 +0.04126244 -0.0175068 1.705268 +0.05836535 -0.0175068 1.705268 +0.08132997 -0.0175068 1.705268 +0.1121653 -0.0175068 1.705268 +0.1535689 -0.0175068 1.705268 +0.2091628 -0.0175068 1.705268 +0.2838106 -0.0175068 1.705268 +0.3840425 -0.0175068 1.705268 +0.518627 -0.0175068 1.705268 +0.6993381 -0.0175068 1.705268 +0.9419845 -0.0175068 1.705268 +1.267794 -0.0175068 1.705268 +1.705268 -0.0175068 1.705268 +2.292679 -0.0175068 1.705268 +3.081414 -0.0175068 1.705268 +4.140474 -0.0175068 1.705268 +5.562508 -0.0175068 1.705268 +7.471917 -0.0175068 1.705268 +10.03574 -0.0175068 1.705268 +13.47828 -0.0175068 1.705268 +18.10068 -0.0175068 1.705268 +24.30731 -0.0175068 1.705268 +32.64117 -0.0175068 1.705268 +43.83129 -0.0175068 1.705268 +58.85664 -0.0175068 1.705268 +-0.0175068 -0.01161267 1.705268 +-0.01161267 -0.01161267 1.705268 +-0.005718534 -0.01161267 1.705268 +0.0001755984 -0.01161267 1.705268 +0.006069731 -0.01161267 1.705268 +0.01197402 -0.01161267 1.705268 +0.01903886 -0.01161267 1.705268 +0.02852504 -0.01161267 1.705268 +0.04126244 -0.01161267 1.705268 +0.05836535 -0.01161267 1.705268 +0.08132997 -0.01161267 1.705268 +0.1121653 -0.01161267 1.705268 +0.1535689 -0.01161267 1.705268 +0.2091628 -0.01161267 1.705268 +0.2838106 -0.01161267 1.705268 +0.3840425 -0.01161267 1.705268 +0.518627 -0.01161267 1.705268 +0.6993381 -0.01161267 1.705268 +0.9419845 -0.01161267 1.705268 +1.267794 -0.01161267 1.705268 +1.705268 -0.01161267 1.705268 +2.292679 -0.01161267 1.705268 +3.081414 -0.01161267 1.705268 +4.140474 -0.01161267 1.705268 +5.562508 -0.01161267 1.705268 +7.471917 -0.01161267 1.705268 +10.03574 -0.01161267 1.705268 +13.47828 -0.01161267 1.705268 +18.10068 -0.01161267 1.705268 +24.30731 -0.01161267 1.705268 +32.64117 -0.01161267 1.705268 +43.83129 -0.01161267 1.705268 +58.85664 -0.01161267 1.705268 +-0.0175068 -0.005718534 1.705268 +-0.01161267 -0.005718534 1.705268 +-0.005718534 -0.005718534 1.705268 +0.0001755984 -0.005718534 1.705268 +0.006069731 -0.005718534 1.705268 +0.01197402 -0.005718534 1.705268 +0.01903886 -0.005718534 1.705268 +0.02852504 -0.005718534 1.705268 +0.04126244 -0.005718534 1.705268 +0.05836535 -0.005718534 1.705268 +0.08132997 -0.005718534 1.705268 +0.1121653 -0.005718534 1.705268 +0.1535689 -0.005718534 1.705268 +0.2091628 -0.005718534 1.705268 +0.2838106 -0.005718534 1.705268 +0.3840425 -0.005718534 1.705268 +0.518627 -0.005718534 1.705268 +0.6993381 -0.005718534 1.705268 +0.9419845 -0.005718534 1.705268 +1.267794 -0.005718534 1.705268 +1.705268 -0.005718534 1.705268 +2.292679 -0.005718534 1.705268 +3.081414 -0.005718534 1.705268 +4.140474 -0.005718534 1.705268 +5.562508 -0.005718534 1.705268 +7.471917 -0.005718534 1.705268 +10.03574 -0.005718534 1.705268 +13.47828 -0.005718534 1.705268 +18.10068 -0.005718534 1.705268 +24.30731 -0.005718534 1.705268 +32.64117 -0.005718534 1.705268 +43.83129 -0.005718534 1.705268 +58.85664 -0.005718534 1.705268 +-0.0175068 0.0001755984 1.705268 +-0.01161267 0.0001755984 1.705268 +-0.005718534 0.0001755984 1.705268 +0.0001755984 0.0001755984 1.705268 +0.006069731 0.0001755984 1.705268 +0.01197402 0.0001755984 1.705268 +0.01903886 0.0001755984 1.705268 +0.02852504 0.0001755984 1.705268 +0.04126244 0.0001755984 1.705268 +0.05836535 0.0001755984 1.705268 +0.08132997 0.0001755984 1.705268 +0.1121653 0.0001755984 1.705268 +0.1535689 0.0001755984 1.705268 +0.2091628 0.0001755984 1.705268 +0.2838106 0.0001755984 1.705268 +0.3840425 0.0001755984 1.705268 +0.518627 0.0001755984 1.705268 +0.6993381 0.0001755984 1.705268 +0.9419845 0.0001755984 1.705268 +1.267794 0.0001755984 1.705268 +1.705268 0.0001755984 1.705268 +2.292679 0.0001755984 1.705268 +3.081414 0.0001755984 1.705268 +4.140474 0.0001755984 1.705268 +5.562508 0.0001755984 1.705268 +7.471917 0.0001755984 1.705268 +10.03574 0.0001755984 1.705268 +13.47828 0.0001755984 1.705268 +18.10068 0.0001755984 1.705268 +24.30731 0.0001755984 1.705268 +32.64117 0.0001755984 1.705268 +43.83129 0.0001755984 1.705268 +58.85664 0.0001755984 1.705268 +-0.0175068 0.006069731 1.705268 +-0.01161267 0.006069731 1.705268 +-0.005718534 0.006069731 1.705268 +0.0001755984 0.006069731 1.705268 +0.006069731 0.006069731 1.705268 +0.01197402 0.006069731 1.705268 +0.01903886 0.006069731 1.705268 +0.02852504 0.006069731 1.705268 +0.04126244 0.006069731 1.705268 +0.05836535 0.006069731 1.705268 +0.08132997 0.006069731 1.705268 +0.1121653 0.006069731 1.705268 +0.1535689 0.006069731 1.705268 +0.2091628 0.006069731 1.705268 +0.2838106 0.006069731 1.705268 +0.3840425 0.006069731 1.705268 +0.518627 0.006069731 1.705268 +0.6993381 0.006069731 1.705268 +0.9419845 0.006069731 1.705268 +1.267794 0.006069731 1.705268 +1.705268 0.006069731 1.705268 +2.292679 0.006069731 1.705268 +3.081414 0.006069731 1.705268 +4.140474 0.006069731 1.705268 +5.562508 0.006069731 1.705268 +7.471917 0.006069731 1.705268 +10.03574 0.006069731 1.705268 +13.47828 0.006069731 1.705268 +18.10068 0.006069731 1.705268 +24.30731 0.006069731 1.705268 +32.64117 0.006069731 1.705268 +43.83129 0.006069731 1.705268 +58.85664 0.006069731 1.705268 +-0.0175068 0.01197402 1.705268 +-0.01161267 0.01197402 1.705268 +-0.005718534 0.01197402 1.705268 +0.0001755984 0.01197402 1.705268 +0.006069731 0.01197402 1.705268 +0.01197402 0.01197402 1.705268 +0.01903886 0.01197402 1.705268 +0.02852504 0.01197402 1.705268 +0.04126244 0.01197402 1.705268 +0.05836535 0.01197402 1.705268 +0.08132997 0.01197402 1.705268 +0.1121653 0.01197402 1.705268 +0.1535689 0.01197402 1.705268 +0.2091628 0.01197402 1.705268 +0.2838106 0.01197402 1.705268 +0.3840425 0.01197402 1.705268 +0.518627 0.01197402 1.705268 +0.6993381 0.01197402 1.705268 +0.9419845 0.01197402 1.705268 +1.267794 0.01197402 1.705268 +1.705268 0.01197402 1.705268 +2.292679 0.01197402 1.705268 +3.081414 0.01197402 1.705268 +4.140474 0.01197402 1.705268 +5.562508 0.01197402 1.705268 +7.471917 0.01197402 1.705268 +10.03574 0.01197402 1.705268 +13.47828 0.01197402 1.705268 +18.10068 0.01197402 1.705268 +24.30731 0.01197402 1.705268 +32.64117 0.01197402 1.705268 +43.83129 0.01197402 1.705268 +58.85664 0.01197402 1.705268 +-0.0175068 0.01903886 1.705268 +-0.01161267 0.01903886 1.705268 +-0.005718534 0.01903886 1.705268 +0.0001755984 0.01903886 1.705268 +0.006069731 0.01903886 1.705268 +0.01197402 0.01903886 1.705268 +0.01903886 0.01903886 1.705268 +0.02852504 0.01903886 1.705268 +0.04126244 0.01903886 1.705268 +0.05836535 0.01903886 1.705268 +0.08132997 0.01903886 1.705268 +0.1121653 0.01903886 1.705268 +0.1535689 0.01903886 1.705268 +0.2091628 0.01903886 1.705268 +0.2838106 0.01903886 1.705268 +0.3840425 0.01903886 1.705268 +0.518627 0.01903886 1.705268 +0.6993381 0.01903886 1.705268 +0.9419845 0.01903886 1.705268 +1.267794 0.01903886 1.705268 +1.705268 0.01903886 1.705268 +2.292679 0.01903886 1.705268 +3.081414 0.01903886 1.705268 +4.140474 0.01903886 1.705268 +5.562508 0.01903886 1.705268 +7.471917 0.01903886 1.705268 +10.03574 0.01903886 1.705268 +13.47828 0.01903886 1.705268 +18.10068 0.01903886 1.705268 +24.30731 0.01903886 1.705268 +32.64117 0.01903886 1.705268 +43.83129 0.01903886 1.705268 +58.85664 0.01903886 1.705268 +-0.0175068 0.02852504 1.705268 +-0.01161267 0.02852504 1.705268 +-0.005718534 0.02852504 1.705268 +0.0001755984 0.02852504 1.705268 +0.006069731 0.02852504 1.705268 +0.01197402 0.02852504 1.705268 +0.01903886 0.02852504 1.705268 +0.02852504 0.02852504 1.705268 +0.04126244 0.02852504 1.705268 +0.05836535 0.02852504 1.705268 +0.08132997 0.02852504 1.705268 +0.1121653 0.02852504 1.705268 +0.1535689 0.02852504 1.705268 +0.2091628 0.02852504 1.705268 +0.2838106 0.02852504 1.705268 +0.3840425 0.02852504 1.705268 +0.518627 0.02852504 1.705268 +0.6993381 0.02852504 1.705268 +0.9419845 0.02852504 1.705268 +1.267794 0.02852504 1.705268 +1.705268 0.02852504 1.705268 +2.292679 0.02852504 1.705268 +3.081414 0.02852504 1.705268 +4.140474 0.02852504 1.705268 +5.562508 0.02852504 1.705268 +7.471917 0.02852504 1.705268 +10.03574 0.02852504 1.705268 +13.47828 0.02852504 1.705268 +18.10068 0.02852504 1.705268 +24.30731 0.02852504 1.705268 +32.64117 0.02852504 1.705268 +43.83129 0.02852504 1.705268 +58.85664 0.02852504 1.705268 +-0.0175068 0.04126244 1.705268 +-0.01161267 0.04126244 1.705268 +-0.005718534 0.04126244 1.705268 +0.0001755984 0.04126244 1.705268 +0.006069731 0.04126244 1.705268 +0.01197402 0.04126244 1.705268 +0.01903886 0.04126244 1.705268 +0.02852504 0.04126244 1.705268 +0.04126244 0.04126244 1.705268 +0.05836535 0.04126244 1.705268 +0.08132997 0.04126244 1.705268 +0.1121653 0.04126244 1.705268 +0.1535689 0.04126244 1.705268 +0.2091628 0.04126244 1.705268 +0.2838106 0.04126244 1.705268 +0.3840425 0.04126244 1.705268 +0.518627 0.04126244 1.705268 +0.6993381 0.04126244 1.705268 +0.9419845 0.04126244 1.705268 +1.267794 0.04126244 1.705268 +1.705268 0.04126244 1.705268 +2.292679 0.04126244 1.705268 +3.081414 0.04126244 1.705268 +4.140474 0.04126244 1.705268 +5.562508 0.04126244 1.705268 +7.471917 0.04126244 1.705268 +10.03574 0.04126244 1.705268 +13.47828 0.04126244 1.705268 +18.10068 0.04126244 1.705268 +24.30731 0.04126244 1.705268 +32.64117 0.04126244 1.705268 +43.83129 0.04126244 1.705268 +58.85664 0.04126244 1.705268 +-0.0175068 0.05836535 1.705268 +-0.01161267 0.05836535 1.705268 +-0.005718534 0.05836535 1.705268 +0.0001755984 0.05836535 1.705268 +0.006069731 0.05836535 1.705268 +0.01197402 0.05836535 1.705268 +0.01903886 0.05836535 1.705268 +0.02852504 0.05836535 1.705268 +0.04126244 0.05836535 1.705268 +0.05836535 0.05836535 1.705268 +0.08132997 0.05836535 1.705268 +0.1121653 0.05836535 1.705268 +0.1535689 0.05836535 1.705268 +0.2091628 0.05836535 1.705268 +0.2838106 0.05836535 1.705268 +0.3840425 0.05836535 1.705268 +0.518627 0.05836535 1.705268 +0.6993381 0.05836535 1.705268 +0.9419845 0.05836535 1.705268 +1.267794 0.05836535 1.705268 +1.705268 0.05836535 1.705268 +2.292679 0.05836535 1.705268 +3.081414 0.05836535 1.705268 +4.140474 0.05836535 1.705268 +5.562508 0.05836535 1.705268 +7.471917 0.05836535 1.705268 +10.03574 0.05836535 1.705268 +13.47828 0.05836535 1.705268 +18.10068 0.05836535 1.705268 +24.30731 0.05836535 1.705268 +32.64117 0.05836535 1.705268 +43.83129 0.05836535 1.705268 +58.85664 0.05836535 1.705268 +-0.0175068 0.08132997 1.705268 +-0.01161267 0.08132997 1.705268 +-0.005718534 0.08132997 1.705268 +0.0001755984 0.08132997 1.705268 +0.006069731 0.08132997 1.705268 +0.01197402 0.08132997 1.705268 +0.01903886 0.08132997 1.705268 +0.02852504 0.08132997 1.705268 +0.04126244 0.08132997 1.705268 +0.05836535 0.08132997 1.705268 +0.08132997 0.08132997 1.705268 +0.1121653 0.08132997 1.705268 +0.1535689 0.08132997 1.705268 +0.2091628 0.08132997 1.705268 +0.2838106 0.08132997 1.705268 +0.3840425 0.08132997 1.705268 +0.518627 0.08132997 1.705268 +0.6993381 0.08132997 1.705268 +0.9419845 0.08132997 1.705268 +1.267794 0.08132997 1.705268 +1.705268 0.08132997 1.705268 +2.292679 0.08132997 1.705268 +3.081414 0.08132997 1.705268 +4.140474 0.08132997 1.705268 +5.562508 0.08132997 1.705268 +7.471917 0.08132997 1.705268 +10.03574 0.08132997 1.705268 +13.47828 0.08132997 1.705268 +18.10068 0.08132997 1.705268 +24.30731 0.08132997 1.705268 +32.64117 0.08132997 1.705268 +43.83129 0.08132997 1.705268 +58.85664 0.08132997 1.705268 +-0.0175068 0.1121653 1.705268 +-0.01161267 0.1121653 1.705268 +-0.005718534 0.1121653 1.705268 +0.0001755984 0.1121653 1.705268 +0.006069731 0.1121653 1.705268 +0.01197402 0.1121653 1.705268 +0.01903886 0.1121653 1.705268 +0.02852504 0.1121653 1.705268 +0.04126244 0.1121653 1.705268 +0.05836535 0.1121653 1.705268 +0.08132997 0.1121653 1.705268 +0.1121653 0.1121653 1.705268 +0.1535689 0.1121653 1.705268 +0.2091628 0.1121653 1.705268 +0.2838106 0.1121653 1.705268 +0.3840425 0.1121653 1.705268 +0.518627 0.1121653 1.705268 +0.6993381 0.1121653 1.705268 +0.9419845 0.1121653 1.705268 +1.267794 0.1121653 1.705268 +1.705268 0.1121653 1.705268 +2.292679 0.1121653 1.705268 +3.081414 0.1121653 1.705268 +4.140474 0.1121653 1.705268 +5.562508 0.1121653 1.705268 +7.471917 0.1121653 1.705268 +10.03574 0.1121653 1.705268 +13.47828 0.1121653 1.705268 +18.10068 0.1121653 1.705268 +24.30731 0.1121653 1.705268 +32.64117 0.1121653 1.705268 +43.83129 0.1121653 1.705268 +58.85664 0.1121653 1.705268 +-0.0175068 0.1535689 1.705268 +-0.01161267 0.1535689 1.705268 +-0.005718534 0.1535689 1.705268 +0.0001755984 0.1535689 1.705268 +0.006069731 0.1535689 1.705268 +0.01197402 0.1535689 1.705268 +0.01903886 0.1535689 1.705268 +0.02852504 0.1535689 1.705268 +0.04126244 0.1535689 1.705268 +0.05836535 0.1535689 1.705268 +0.08132997 0.1535689 1.705268 +0.1121653 0.1535689 1.705268 +0.1535689 0.1535689 1.705268 +0.2091628 0.1535689 1.705268 +0.2838106 0.1535689 1.705268 +0.3840425 0.1535689 1.705268 +0.518627 0.1535689 1.705268 +0.6993381 0.1535689 1.705268 +0.9419845 0.1535689 1.705268 +1.267794 0.1535689 1.705268 +1.705268 0.1535689 1.705268 +2.292679 0.1535689 1.705268 +3.081414 0.1535689 1.705268 +4.140474 0.1535689 1.705268 +5.562508 0.1535689 1.705268 +7.471917 0.1535689 1.705268 +10.03574 0.1535689 1.705268 +13.47828 0.1535689 1.705268 +18.10068 0.1535689 1.705268 +24.30731 0.1535689 1.705268 +32.64117 0.1535689 1.705268 +43.83129 0.1535689 1.705268 +58.85664 0.1535689 1.705268 +-0.0175068 0.2091628 1.705268 +-0.01161267 0.2091628 1.705268 +-0.005718534 0.2091628 1.705268 +0.0001755984 0.2091628 1.705268 +0.006069731 0.2091628 1.705268 +0.01197402 0.2091628 1.705268 +0.01903886 0.2091628 1.705268 +0.02852504 0.2091628 1.705268 +0.04126244 0.2091628 1.705268 +0.05836535 0.2091628 1.705268 +0.08132997 0.2091628 1.705268 +0.1121653 0.2091628 1.705268 +0.1535689 0.2091628 1.705268 +0.2091628 0.2091628 1.705268 +0.2838106 0.2091628 1.705268 +0.3840425 0.2091628 1.705268 +0.518627 0.2091628 1.705268 +0.6993381 0.2091628 1.705268 +0.9419845 0.2091628 1.705268 +1.267794 0.2091628 1.705268 +1.705268 0.2091628 1.705268 +2.292679 0.2091628 1.705268 +3.081414 0.2091628 1.705268 +4.140474 0.2091628 1.705268 +5.562508 0.2091628 1.705268 +7.471917 0.2091628 1.705268 +10.03574 0.2091628 1.705268 +13.47828 0.2091628 1.705268 +18.10068 0.2091628 1.705268 +24.30731 0.2091628 1.705268 +32.64117 0.2091628 1.705268 +43.83129 0.2091628 1.705268 +58.85664 0.2091628 1.705268 +-0.0175068 0.2838106 1.705268 +-0.01161267 0.2838106 1.705268 +-0.005718534 0.2838106 1.705268 +0.0001755984 0.2838106 1.705268 +0.006069731 0.2838106 1.705268 +0.01197402 0.2838106 1.705268 +0.01903886 0.2838106 1.705268 +0.02852504 0.2838106 1.705268 +0.04126244 0.2838106 1.705268 +0.05836535 0.2838106 1.705268 +0.08132997 0.2838106 1.705268 +0.1121653 0.2838106 1.705268 +0.1535689 0.2838106 1.705268 +0.2091628 0.2838106 1.705268 +0.2838106 0.2838106 1.705268 +0.3840425 0.2838106 1.705268 +0.518627 0.2838106 1.705268 +0.6993381 0.2838106 1.705268 +0.9419845 0.2838106 1.705268 +1.267794 0.2838106 1.705268 +1.705268 0.2838106 1.705268 +2.292679 0.2838106 1.705268 +3.081414 0.2838106 1.705268 +4.140474 0.2838106 1.705268 +5.562508 0.2838106 1.705268 +7.471917 0.2838106 1.705268 +10.03574 0.2838106 1.705268 +13.47828 0.2838106 1.705268 +18.10068 0.2838106 1.705268 +24.30731 0.2838106 1.705268 +32.64117 0.2838106 1.705268 +43.83129 0.2838106 1.705268 +58.85664 0.2838106 1.705268 +-0.0175068 0.3840425 1.705268 +-0.01161267 0.3840425 1.705268 +-0.005718534 0.3840425 1.705268 +0.0001755984 0.3840425 1.705268 +0.006069731 0.3840425 1.705268 +0.01197402 0.3840425 1.705268 +0.01903886 0.3840425 1.705268 +0.02852504 0.3840425 1.705268 +0.04126244 0.3840425 1.705268 +0.05836535 0.3840425 1.705268 +0.08132997 0.3840425 1.705268 +0.1121653 0.3840425 1.705268 +0.1535689 0.3840425 1.705268 +0.2091628 0.3840425 1.705268 +0.2838106 0.3840425 1.705268 +0.3840425 0.3840425 1.705268 +0.518627 0.3840425 1.705268 +0.6993381 0.3840425 1.705268 +0.9419845 0.3840425 1.705268 +1.267794 0.3840425 1.705268 +1.705268 0.3840425 1.705268 +2.292679 0.3840425 1.705268 +3.081414 0.3840425 1.705268 +4.140474 0.3840425 1.705268 +5.562508 0.3840425 1.705268 +7.471917 0.3840425 1.705268 +10.03574 0.3840425 1.705268 +13.47828 0.3840425 1.705268 +18.10068 0.3840425 1.705268 +24.30731 0.3840425 1.705268 +32.64117 0.3840425 1.705268 +43.83129 0.3840425 1.705268 +58.85664 0.3840425 1.705268 +-0.0175068 0.518627 1.705268 +-0.01161267 0.518627 1.705268 +-0.005718534 0.518627 1.705268 +0.0001755984 0.518627 1.705268 +0.006069731 0.518627 1.705268 +0.01197402 0.518627 1.705268 +0.01903886 0.518627 1.705268 +0.02852504 0.518627 1.705268 +0.04126244 0.518627 1.705268 +0.05836535 0.518627 1.705268 +0.08132997 0.518627 1.705268 +0.1121653 0.518627 1.705268 +0.1535689 0.518627 1.705268 +0.2091628 0.518627 1.705268 +0.2838106 0.518627 1.705268 +0.3840425 0.518627 1.705268 +0.518627 0.518627 1.705268 +0.6993381 0.518627 1.705268 +0.9419845 0.518627 1.705268 +1.267794 0.518627 1.705268 +1.705268 0.518627 1.705268 +2.292679 0.518627 1.705268 +3.081414 0.518627 1.705268 +4.140474 0.518627 1.705268 +5.562508 0.518627 1.705268 +7.471917 0.518627 1.705268 +10.03574 0.518627 1.705268 +13.47828 0.518627 1.705268 +18.10068 0.518627 1.705268 +24.30731 0.518627 1.705268 +32.64117 0.518627 1.705268 +43.83129 0.518627 1.705268 +58.85664 0.518627 1.705268 +-0.0175068 0.6993381 1.705268 +-0.01161267 0.6993381 1.705268 +-0.005718534 0.6993381 1.705268 +0.0001755984 0.6993381 1.705268 +0.006069731 0.6993381 1.705268 +0.01197402 0.6993381 1.705268 +0.01903886 0.6993381 1.705268 +0.02852504 0.6993381 1.705268 +0.04126244 0.6993381 1.705268 +0.05836535 0.6993381 1.705268 +0.08132997 0.6993381 1.705268 +0.1121653 0.6993381 1.705268 +0.1535689 0.6993381 1.705268 +0.2091628 0.6993381 1.705268 +0.2838106 0.6993381 1.705268 +0.3840425 0.6993381 1.705268 +0.518627 0.6993381 1.705268 +0.6993381 0.6993381 1.705268 +0.9419845 0.6993381 1.705268 +1.267794 0.6993381 1.705268 +1.705268 0.6993381 1.705268 +2.292679 0.6993381 1.705268 +3.081414 0.6993381 1.705268 +4.140474 0.6993381 1.705268 +5.562508 0.6993381 1.705268 +7.471917 0.6993381 1.705268 +10.03574 0.6993381 1.705268 +13.47828 0.6993381 1.705268 +18.10068 0.6993381 1.705268 +24.30731 0.6993381 1.705268 +32.64117 0.6993381 1.705268 +43.83129 0.6993381 1.705268 +58.85664 0.6993381 1.705268 +-0.0175068 0.9419845 1.705268 +-0.01161267 0.9419845 1.705268 +-0.005718534 0.9419845 1.705268 +0.0001755984 0.9419845 1.705268 +0.006069731 0.9419845 1.705268 +0.01197402 0.9419845 1.705268 +0.01903886 0.9419845 1.705268 +0.02852504 0.9419845 1.705268 +0.04126244 0.9419845 1.705268 +0.05836535 0.9419845 1.705268 +0.08132997 0.9419845 1.705268 +0.1121653 0.9419845 1.705268 +0.1535689 0.9419845 1.705268 +0.2091628 0.9419845 1.705268 +0.2838106 0.9419845 1.705268 +0.3840425 0.9419845 1.705268 +0.518627 0.9419845 1.705268 +0.6993381 0.9419845 1.705268 +0.9419845 0.9419845 1.705268 +1.267794 0.9419845 1.705268 +1.705268 0.9419845 1.705268 +2.292679 0.9419845 1.705268 +3.081414 0.9419845 1.705268 +4.140474 0.9419845 1.705268 +5.562508 0.9419845 1.705268 +7.471917 0.9419845 1.705268 +10.03574 0.9419845 1.705268 +13.47828 0.9419845 1.705268 +18.10068 0.9419845 1.705268 +24.30731 0.9419845 1.705268 +32.64117 0.9419845 1.705268 +43.83129 0.9419845 1.705268 +58.85664 0.9419845 1.705268 +-0.0175068 1.267794 1.705268 +-0.01161267 1.267794 1.705268 +-0.005718534 1.267794 1.705268 +0.0001755984 1.267794 1.705268 +0.006069731 1.267794 1.705268 +0.01197402 1.267794 1.705268 +0.01903886 1.267794 1.705268 +0.02852504 1.267794 1.705268 +0.04126244 1.267794 1.705268 +0.05836535 1.267794 1.705268 +0.08132997 1.267794 1.705268 +0.1121653 1.267794 1.705268 +0.1535689 1.267794 1.705268 +0.2091628 1.267794 1.705268 +0.2838106 1.267794 1.705268 +0.3840425 1.267794 1.705268 +0.518627 1.267794 1.705268 +0.6993381 1.267794 1.705268 +0.9419845 1.267794 1.705268 +1.267794 1.267794 1.705268 +1.705268 1.267794 1.705268 +2.292679 1.267794 1.705268 +3.081414 1.267794 1.705268 +4.140474 1.267794 1.705268 +5.562508 1.267794 1.705268 +7.471917 1.267794 1.705268 +10.03574 1.267794 1.705268 +13.47828 1.267794 1.705268 +18.10068 1.267794 1.705268 +24.30731 1.267794 1.705268 +32.64117 1.267794 1.705268 +43.83129 1.267794 1.705268 +58.85664 1.267794 1.705268 +-0.0175068 1.705268 1.705268 +-0.01161267 1.705268 1.705268 +-0.005718534 1.705268 1.705268 +0.0001755984 1.705268 1.705268 +0.006069731 1.705268 1.705268 +0.01197402 1.705268 1.705268 +0.01903886 1.705268 1.705268 +0.02852504 1.705268 1.705268 +0.04126244 1.705268 1.705268 +0.05836535 1.705268 1.705268 +0.08132997 1.705268 1.705268 +0.1121653 1.705268 1.705268 +0.1535689 1.705268 1.705268 +0.2091628 1.705268 1.705268 +0.2838106 1.705268 1.705268 +0.3840425 1.705268 1.705268 +0.518627 1.705268 1.705268 +0.6993381 1.705268 1.705268 +0.9419845 1.705268 1.705268 +1.267794 1.705268 1.705268 +1.705268 1.705268 1.705268 +2.292679 1.705268 1.705268 +3.081414 1.705268 1.705268 +4.140474 1.705268 1.705268 +5.562508 1.705268 1.705268 +7.471917 1.705268 1.705268 +10.03574 1.705268 1.705268 +13.47828 1.705268 1.705268 +18.10068 1.705268 1.705268 +24.30731 1.705268 1.705268 +32.64117 1.705268 1.705268 +43.83129 1.705268 1.705268 +58.85664 1.705268 1.705268 +-0.0175068 2.292679 1.705268 +-0.01161267 2.292679 1.705268 +-0.005718534 2.292679 1.705268 +0.0001755984 2.292679 1.705268 +0.006069731 2.292679 1.705268 +0.01197402 2.292679 1.705268 +0.01903886 2.292679 1.705268 +0.02852504 2.292679 1.705268 +0.04126244 2.292679 1.705268 +0.05836535 2.292679 1.705268 +0.08132997 2.292679 1.705268 +0.1121653 2.292679 1.705268 +0.1535689 2.292679 1.705268 +0.2091628 2.292679 1.705268 +0.2838106 2.292679 1.705268 +0.3840425 2.292679 1.705268 +0.518627 2.292679 1.705268 +0.6993381 2.292679 1.705268 +0.9419845 2.292679 1.705268 +1.267794 2.292679 1.705268 +1.705268 2.292679 1.705268 +2.292679 2.292679 1.705268 +3.081414 2.292679 1.705268 +4.140474 2.292679 1.705268 +5.562508 2.292679 1.705268 +7.471917 2.292679 1.705268 +10.03574 2.292679 1.705268 +13.47828 2.292679 1.705268 +18.10068 2.292679 1.705268 +24.30731 2.292679 1.705268 +32.64117 2.292679 1.705268 +43.83129 2.292679 1.705268 +58.85664 2.292679 1.705268 +-0.0175068 3.081414 1.705268 +-0.01161267 3.081414 1.705268 +-0.005718534 3.081414 1.705268 +0.0001755984 3.081414 1.705268 +0.006069731 3.081414 1.705268 +0.01197402 3.081414 1.705268 +0.01903886 3.081414 1.705268 +0.02852504 3.081414 1.705268 +0.04126244 3.081414 1.705268 +0.05836535 3.081414 1.705268 +0.08132997 3.081414 1.705268 +0.1121653 3.081414 1.705268 +0.1535689 3.081414 1.705268 +0.2091628 3.081414 1.705268 +0.2838106 3.081414 1.705268 +0.3840425 3.081414 1.705268 +0.518627 3.081414 1.705268 +0.6993381 3.081414 1.705268 +0.9419845 3.081414 1.705268 +1.267794 3.081414 1.705268 +1.705268 3.081414 1.705268 +2.292679 3.081414 1.705268 +3.081414 3.081414 1.705268 +4.140474 3.081414 1.705268 +5.562508 3.081414 1.705268 +7.471917 3.081414 1.705268 +10.03574 3.081414 1.705268 +13.47828 3.081414 1.705268 +18.10068 3.081414 1.705268 +24.30731 3.081414 1.705268 +32.64117 3.081414 1.705268 +43.83129 3.081414 1.705268 +58.85664 3.081414 1.705268 +-0.0175068 4.140474 1.705268 +-0.01161267 4.140474 1.705268 +-0.005718534 4.140474 1.705268 +0.0001755984 4.140474 1.705268 +0.006069731 4.140474 1.705268 +0.01197402 4.140474 1.705268 +0.01903886 4.140474 1.705268 +0.02852504 4.140474 1.705268 +0.04126244 4.140474 1.705268 +0.05836535 4.140474 1.705268 +0.08132997 4.140474 1.705268 +0.1121653 4.140474 1.705268 +0.1535689 4.140474 1.705268 +0.2091628 4.140474 1.705268 +0.2838106 4.140474 1.705268 +0.3840425 4.140474 1.705268 +0.518627 4.140474 1.705268 +0.6993381 4.140474 1.705268 +0.9419845 4.140474 1.705268 +1.267794 4.140474 1.705268 +1.705268 4.140474 1.705268 +2.292679 4.140474 1.705268 +3.081414 4.140474 1.705268 +4.140474 4.140474 1.705268 +5.562508 4.140474 1.705268 +7.471917 4.140474 1.705268 +10.03574 4.140474 1.705268 +13.47828 4.140474 1.705268 +18.10068 4.140474 1.705268 +24.30731 4.140474 1.705268 +32.64117 4.140474 1.705268 +43.83129 4.140474 1.705268 +58.85664 4.140474 1.705268 +-0.0175068 5.562508 1.705268 +-0.01161267 5.562508 1.705268 +-0.005718534 5.562508 1.705268 +0.0001755984 5.562508 1.705268 +0.006069731 5.562508 1.705268 +0.01197402 5.562508 1.705268 +0.01903886 5.562508 1.705268 +0.02852504 5.562508 1.705268 +0.04126244 5.562508 1.705268 +0.05836535 5.562508 1.705268 +0.08132997 5.562508 1.705268 +0.1121653 5.562508 1.705268 +0.1535689 5.562508 1.705268 +0.2091628 5.562508 1.705268 +0.2838106 5.562508 1.705268 +0.3840425 5.562508 1.705268 +0.518627 5.562508 1.705268 +0.6993381 5.562508 1.705268 +0.9419845 5.562508 1.705268 +1.267794 5.562508 1.705268 +1.705268 5.562508 1.705268 +2.292679 5.562508 1.705268 +3.081414 5.562508 1.705268 +4.140474 5.562508 1.705268 +5.562508 5.562508 1.705268 +7.471917 5.562508 1.705268 +10.03574 5.562508 1.705268 +13.47828 5.562508 1.705268 +18.10068 5.562508 1.705268 +24.30731 5.562508 1.705268 +32.64117 5.562508 1.705268 +43.83129 5.562508 1.705268 +58.85664 5.562508 1.705268 +-0.0175068 7.471917 1.705268 +-0.01161267 7.471917 1.705268 +-0.005718534 7.471917 1.705268 +0.0001755984 7.471917 1.705268 +0.006069731 7.471917 1.705268 +0.01197402 7.471917 1.705268 +0.01903886 7.471917 1.705268 +0.02852504 7.471917 1.705268 +0.04126244 7.471917 1.705268 +0.05836535 7.471917 1.705268 +0.08132997 7.471917 1.705268 +0.1121653 7.471917 1.705268 +0.1535689 7.471917 1.705268 +0.2091628 7.471917 1.705268 +0.2838106 7.471917 1.705268 +0.3840425 7.471917 1.705268 +0.518627 7.471917 1.705268 +0.6993381 7.471917 1.705268 +0.9419845 7.471917 1.705268 +1.267794 7.471917 1.705268 +1.705268 7.471917 1.705268 +2.292679 7.471917 1.705268 +3.081414 7.471917 1.705268 +4.140474 7.471917 1.705268 +5.562508 7.471917 1.705268 +7.471917 7.471917 1.705268 +10.03574 7.471917 1.705268 +13.47828 7.471917 1.705268 +18.10068 7.471917 1.705268 +24.30731 7.471917 1.705268 +32.64117 7.471917 1.705268 +43.83129 7.471917 1.705268 +58.85664 7.471917 1.705268 +-0.0175068 10.03574 1.705268 +-0.01161267 10.03574 1.705268 +-0.005718534 10.03574 1.705268 +0.0001755984 10.03574 1.705268 +0.006069731 10.03574 1.705268 +0.01197402 10.03574 1.705268 +0.01903886 10.03574 1.705268 +0.02852504 10.03574 1.705268 +0.04126244 10.03574 1.705268 +0.05836535 10.03574 1.705268 +0.08132997 10.03574 1.705268 +0.1121653 10.03574 1.705268 +0.1535689 10.03574 1.705268 +0.2091628 10.03574 1.705268 +0.2838106 10.03574 1.705268 +0.3840425 10.03574 1.705268 +0.518627 10.03574 1.705268 +0.6993381 10.03574 1.705268 +0.9419845 10.03574 1.705268 +1.267794 10.03574 1.705268 +1.705268 10.03574 1.705268 +2.292679 10.03574 1.705268 +3.081414 10.03574 1.705268 +4.140474 10.03574 1.705268 +5.562508 10.03574 1.705268 +7.471917 10.03574 1.705268 +10.03574 10.03574 1.705268 +13.47828 10.03574 1.705268 +18.10068 10.03574 1.705268 +24.30731 10.03574 1.705268 +32.64117 10.03574 1.705268 +43.83129 10.03574 1.705268 +58.85664 10.03574 1.705268 +-0.0175068 13.47828 1.705268 +-0.01161267 13.47828 1.705268 +-0.005718534 13.47828 1.705268 +0.0001755984 13.47828 1.705268 +0.006069731 13.47828 1.705268 +0.01197402 13.47828 1.705268 +0.01903886 13.47828 1.705268 +0.02852504 13.47828 1.705268 +0.04126244 13.47828 1.705268 +0.05836535 13.47828 1.705268 +0.08132997 13.47828 1.705268 +0.1121653 13.47828 1.705268 +0.1535689 13.47828 1.705268 +0.2091628 13.47828 1.705268 +0.2838106 13.47828 1.705268 +0.3840425 13.47828 1.705268 +0.518627 13.47828 1.705268 +0.6993381 13.47828 1.705268 +0.9419845 13.47828 1.705268 +1.267794 13.47828 1.705268 +1.705268 13.47828 1.705268 +2.292679 13.47828 1.705268 +3.081414 13.47828 1.705268 +4.140474 13.47828 1.705268 +5.562508 13.47828 1.705268 +7.471917 13.47828 1.705268 +10.03574 13.47828 1.705268 +13.47828 13.47828 1.705268 +18.10068 13.47828 1.705268 +24.30731 13.47828 1.705268 +32.64117 13.47828 1.705268 +43.83129 13.47828 1.705268 +58.85664 13.47828 1.705268 +-0.0175068 18.10068 1.705268 +-0.01161267 18.10068 1.705268 +-0.005718534 18.10068 1.705268 +0.0001755984 18.10068 1.705268 +0.006069731 18.10068 1.705268 +0.01197402 18.10068 1.705268 +0.01903886 18.10068 1.705268 +0.02852504 18.10068 1.705268 +0.04126244 18.10068 1.705268 +0.05836535 18.10068 1.705268 +0.08132997 18.10068 1.705268 +0.1121653 18.10068 1.705268 +0.1535689 18.10068 1.705268 +0.2091628 18.10068 1.705268 +0.2838106 18.10068 1.705268 +0.3840425 18.10068 1.705268 +0.518627 18.10068 1.705268 +0.6993381 18.10068 1.705268 +0.9419845 18.10068 1.705268 +1.267794 18.10068 1.705268 +1.705268 18.10068 1.705268 +2.292679 18.10068 1.705268 +3.081414 18.10068 1.705268 +4.140474 18.10068 1.705268 +5.562508 18.10068 1.705268 +7.471917 18.10068 1.705268 +10.03574 18.10068 1.705268 +13.47828 18.10068 1.705268 +18.10068 18.10068 1.705268 +24.30731 18.10068 1.705268 +32.64117 18.10068 1.705268 +43.83129 18.10068 1.705268 +58.85664 18.10068 1.705268 +-0.0175068 24.30731 1.705268 +-0.01161267 24.30731 1.705268 +-0.005718534 24.30731 1.705268 +0.0001755984 24.30731 1.705268 +0.006069731 24.30731 1.705268 +0.01197402 24.30731 1.705268 +0.01903886 24.30731 1.705268 +0.02852504 24.30731 1.705268 +0.04126244 24.30731 1.705268 +0.05836535 24.30731 1.705268 +0.08132997 24.30731 1.705268 +0.1121653 24.30731 1.705268 +0.1535689 24.30731 1.705268 +0.2091628 24.30731 1.705268 +0.2838106 24.30731 1.705268 +0.3840425 24.30731 1.705268 +0.518627 24.30731 1.705268 +0.6993381 24.30731 1.705268 +0.9419845 24.30731 1.705268 +1.267794 24.30731 1.705268 +1.705268 24.30731 1.705268 +2.292679 24.30731 1.705268 +3.081414 24.30731 1.705268 +4.140474 24.30731 1.705268 +5.562508 24.30731 1.705268 +7.471917 24.30731 1.705268 +10.03574 24.30731 1.705268 +13.47828 24.30731 1.705268 +18.10068 24.30731 1.705268 +24.30731 24.30731 1.705268 +32.64117 24.30731 1.705268 +43.83129 24.30731 1.705268 +58.85664 24.30731 1.705268 +-0.0175068 32.64117 1.705268 +-0.01161267 32.64117 1.705268 +-0.005718534 32.64117 1.705268 +0.0001755984 32.64117 1.705268 +0.006069731 32.64117 1.705268 +0.01197402 32.64117 1.705268 +0.01903886 32.64117 1.705268 +0.02852504 32.64117 1.705268 +0.04126244 32.64117 1.705268 +0.05836535 32.64117 1.705268 +0.08132997 32.64117 1.705268 +0.1121653 32.64117 1.705268 +0.1535689 32.64117 1.705268 +0.2091628 32.64117 1.705268 +0.2838106 32.64117 1.705268 +0.3840425 32.64117 1.705268 +0.518627 32.64117 1.705268 +0.6993381 32.64117 1.705268 +0.9419845 32.64117 1.705268 +1.267794 32.64117 1.705268 +1.705268 32.64117 1.705268 +2.292679 32.64117 1.705268 +3.081414 32.64117 1.705268 +4.140474 32.64117 1.705268 +5.562508 32.64117 1.705268 +7.471917 32.64117 1.705268 +10.03574 32.64117 1.705268 +13.47828 32.64117 1.705268 +18.10068 32.64117 1.705268 +24.30731 32.64117 1.705268 +32.64117 32.64117 1.705268 +43.83129 32.64117 1.705268 +58.85664 32.64117 1.705268 +-0.0175068 43.83129 1.705268 +-0.01161267 43.83129 1.705268 +-0.005718534 43.83129 1.705268 +0.0001755984 43.83129 1.705268 +0.006069731 43.83129 1.705268 +0.01197402 43.83129 1.705268 +0.01903886 43.83129 1.705268 +0.02852504 43.83129 1.705268 +0.04126244 43.83129 1.705268 +0.05836535 43.83129 1.705268 +0.08132997 43.83129 1.705268 +0.1121653 43.83129 1.705268 +0.1535689 43.83129 1.705268 +0.2091628 43.83129 1.705268 +0.2838106 43.83129 1.705268 +0.3840425 43.83129 1.705268 +0.518627 43.83129 1.705268 +0.6993381 43.83129 1.705268 +0.9419845 43.83129 1.705268 +1.267794 43.83129 1.705268 +1.705268 43.83129 1.705268 +2.292679 43.83129 1.705268 +3.081414 43.83129 1.705268 +4.140474 43.83129 1.705268 +5.562508 43.83129 1.705268 +7.471917 43.83129 1.705268 +10.03574 43.83129 1.705268 +13.47828 43.83129 1.705268 +18.10068 43.83129 1.705268 +24.30731 43.83129 1.705268 +32.64117 43.83129 1.705268 +43.83129 43.83129 1.705268 +58.85664 43.83129 1.705268 +-0.0175068 58.85664 1.705268 +-0.01161267 58.85664 1.705268 +-0.005718534 58.85664 1.705268 +0.0001755984 58.85664 1.705268 +0.006069731 58.85664 1.705268 +0.01197402 58.85664 1.705268 +0.01903886 58.85664 1.705268 +0.02852504 58.85664 1.705268 +0.04126244 58.85664 1.705268 +0.05836535 58.85664 1.705268 +0.08132997 58.85664 1.705268 +0.1121653 58.85664 1.705268 +0.1535689 58.85664 1.705268 +0.2091628 58.85664 1.705268 +0.2838106 58.85664 1.705268 +0.3840425 58.85664 1.705268 +0.518627 58.85664 1.705268 +0.6993381 58.85664 1.705268 +0.9419845 58.85664 1.705268 +1.267794 58.85664 1.705268 +1.705268 58.85664 1.705268 +2.292679 58.85664 1.705268 +3.081414 58.85664 1.705268 +4.140474 58.85664 1.705268 +5.562508 58.85664 1.705268 +7.471917 58.85664 1.705268 +10.03574 58.85664 1.705268 +13.47828 58.85664 1.705268 +18.10068 58.85664 1.705268 +24.30731 58.85664 1.705268 +32.64117 58.85664 1.705268 +43.83129 58.85664 1.705268 +58.85664 58.85664 1.705268 +-0.0175068 -0.0175068 2.292679 +-0.01161267 -0.0175068 2.292679 +-0.005718534 -0.0175068 2.292679 +0.0001755984 -0.0175068 2.292679 +0.006069731 -0.0175068 2.292679 +0.01197402 -0.0175068 2.292679 +0.01903886 -0.0175068 2.292679 +0.02852504 -0.0175068 2.292679 +0.04126244 -0.0175068 2.292679 +0.05836535 -0.0175068 2.292679 +0.08132997 -0.0175068 2.292679 +0.1121653 -0.0175068 2.292679 +0.1535689 -0.0175068 2.292679 +0.2091628 -0.0175068 2.292679 +0.2838106 -0.0175068 2.292679 +0.3840425 -0.0175068 2.292679 +0.518627 -0.0175068 2.292679 +0.6993381 -0.0175068 2.292679 +0.9419845 -0.0175068 2.292679 +1.267794 -0.0175068 2.292679 +1.705268 -0.0175068 2.292679 +2.292679 -0.0175068 2.292679 +3.081414 -0.0175068 2.292679 +4.140474 -0.0175068 2.292679 +5.562508 -0.0175068 2.292679 +7.471917 -0.0175068 2.292679 +10.03574 -0.0175068 2.292679 +13.47828 -0.0175068 2.292679 +18.10068 -0.0175068 2.292679 +24.30731 -0.0175068 2.292679 +32.64117 -0.0175068 2.292679 +43.83129 -0.0175068 2.292679 +58.85664 -0.0175068 2.292679 +-0.0175068 -0.01161267 2.292679 +-0.01161267 -0.01161267 2.292679 +-0.005718534 -0.01161267 2.292679 +0.0001755984 -0.01161267 2.292679 +0.006069731 -0.01161267 2.292679 +0.01197402 -0.01161267 2.292679 +0.01903886 -0.01161267 2.292679 +0.02852504 -0.01161267 2.292679 +0.04126244 -0.01161267 2.292679 +0.05836535 -0.01161267 2.292679 +0.08132997 -0.01161267 2.292679 +0.1121653 -0.01161267 2.292679 +0.1535689 -0.01161267 2.292679 +0.2091628 -0.01161267 2.292679 +0.2838106 -0.01161267 2.292679 +0.3840425 -0.01161267 2.292679 +0.518627 -0.01161267 2.292679 +0.6993381 -0.01161267 2.292679 +0.9419845 -0.01161267 2.292679 +1.267794 -0.01161267 2.292679 +1.705268 -0.01161267 2.292679 +2.292679 -0.01161267 2.292679 +3.081414 -0.01161267 2.292679 +4.140474 -0.01161267 2.292679 +5.562508 -0.01161267 2.292679 +7.471917 -0.01161267 2.292679 +10.03574 -0.01161267 2.292679 +13.47828 -0.01161267 2.292679 +18.10068 -0.01161267 2.292679 +24.30731 -0.01161267 2.292679 +32.64117 -0.01161267 2.292679 +43.83129 -0.01161267 2.292679 +58.85664 -0.01161267 2.292679 +-0.0175068 -0.005718534 2.292679 +-0.01161267 -0.005718534 2.292679 +-0.005718534 -0.005718534 2.292679 +0.0001755984 -0.005718534 2.292679 +0.006069731 -0.005718534 2.292679 +0.01197402 -0.005718534 2.292679 +0.01903886 -0.005718534 2.292679 +0.02852504 -0.005718534 2.292679 +0.04126244 -0.005718534 2.292679 +0.05836535 -0.005718534 2.292679 +0.08132997 -0.005718534 2.292679 +0.1121653 -0.005718534 2.292679 +0.1535689 -0.005718534 2.292679 +0.2091628 -0.005718534 2.292679 +0.2838106 -0.005718534 2.292679 +0.3840425 -0.005718534 2.292679 +0.518627 -0.005718534 2.292679 +0.6993381 -0.005718534 2.292679 +0.9419845 -0.005718534 2.292679 +1.267794 -0.005718534 2.292679 +1.705268 -0.005718534 2.292679 +2.292679 -0.005718534 2.292679 +3.081414 -0.005718534 2.292679 +4.140474 -0.005718534 2.292679 +5.562508 -0.005718534 2.292679 +7.471917 -0.005718534 2.292679 +10.03574 -0.005718534 2.292679 +13.47828 -0.005718534 2.292679 +18.10068 -0.005718534 2.292679 +24.30731 -0.005718534 2.292679 +32.64117 -0.005718534 2.292679 +43.83129 -0.005718534 2.292679 +58.85664 -0.005718534 2.292679 +-0.0175068 0.0001755984 2.292679 +-0.01161267 0.0001755984 2.292679 +-0.005718534 0.0001755984 2.292679 +0.0001755984 0.0001755984 2.292679 +0.006069731 0.0001755984 2.292679 +0.01197402 0.0001755984 2.292679 +0.01903886 0.0001755984 2.292679 +0.02852504 0.0001755984 2.292679 +0.04126244 0.0001755984 2.292679 +0.05836535 0.0001755984 2.292679 +0.08132997 0.0001755984 2.292679 +0.1121653 0.0001755984 2.292679 +0.1535689 0.0001755984 2.292679 +0.2091628 0.0001755984 2.292679 +0.2838106 0.0001755984 2.292679 +0.3840425 0.0001755984 2.292679 +0.518627 0.0001755984 2.292679 +0.6993381 0.0001755984 2.292679 +0.9419845 0.0001755984 2.292679 +1.267794 0.0001755984 2.292679 +1.705268 0.0001755984 2.292679 +2.292679 0.0001755984 2.292679 +3.081414 0.0001755984 2.292679 +4.140474 0.0001755984 2.292679 +5.562508 0.0001755984 2.292679 +7.471917 0.0001755984 2.292679 +10.03574 0.0001755984 2.292679 +13.47828 0.0001755984 2.292679 +18.10068 0.0001755984 2.292679 +24.30731 0.0001755984 2.292679 +32.64117 0.0001755984 2.292679 +43.83129 0.0001755984 2.292679 +58.85664 0.0001755984 2.292679 +-0.0175068 0.006069731 2.292679 +-0.01161267 0.006069731 2.292679 +-0.005718534 0.006069731 2.292679 +0.0001755984 0.006069731 2.292679 +0.006069731 0.006069731 2.292679 +0.01197402 0.006069731 2.292679 +0.01903886 0.006069731 2.292679 +0.02852504 0.006069731 2.292679 +0.04126244 0.006069731 2.292679 +0.05836535 0.006069731 2.292679 +0.08132997 0.006069731 2.292679 +0.1121653 0.006069731 2.292679 +0.1535689 0.006069731 2.292679 +0.2091628 0.006069731 2.292679 +0.2838106 0.006069731 2.292679 +0.3840425 0.006069731 2.292679 +0.518627 0.006069731 2.292679 +0.6993381 0.006069731 2.292679 +0.9419845 0.006069731 2.292679 +1.267794 0.006069731 2.292679 +1.705268 0.006069731 2.292679 +2.292679 0.006069731 2.292679 +3.081414 0.006069731 2.292679 +4.140474 0.006069731 2.292679 +5.562508 0.006069731 2.292679 +7.471917 0.006069731 2.292679 +10.03574 0.006069731 2.292679 +13.47828 0.006069731 2.292679 +18.10068 0.006069731 2.292679 +24.30731 0.006069731 2.292679 +32.64117 0.006069731 2.292679 +43.83129 0.006069731 2.292679 +58.85664 0.006069731 2.292679 +-0.0175068 0.01197402 2.292679 +-0.01161267 0.01197402 2.292679 +-0.005718534 0.01197402 2.292679 +0.0001755984 0.01197402 2.292679 +0.006069731 0.01197402 2.292679 +0.01197402 0.01197402 2.292679 +0.01903886 0.01197402 2.292679 +0.02852504 0.01197402 2.292679 +0.04126244 0.01197402 2.292679 +0.05836535 0.01197402 2.292679 +0.08132997 0.01197402 2.292679 +0.1121653 0.01197402 2.292679 +0.1535689 0.01197402 2.292679 +0.2091628 0.01197402 2.292679 +0.2838106 0.01197402 2.292679 +0.3840425 0.01197402 2.292679 +0.518627 0.01197402 2.292679 +0.6993381 0.01197402 2.292679 +0.9419845 0.01197402 2.292679 +1.267794 0.01197402 2.292679 +1.705268 0.01197402 2.292679 +2.292679 0.01197402 2.292679 +3.081414 0.01197402 2.292679 +4.140474 0.01197402 2.292679 +5.562508 0.01197402 2.292679 +7.471917 0.01197402 2.292679 +10.03574 0.01197402 2.292679 +13.47828 0.01197402 2.292679 +18.10068 0.01197402 2.292679 +24.30731 0.01197402 2.292679 +32.64117 0.01197402 2.292679 +43.83129 0.01197402 2.292679 +58.85664 0.01197402 2.292679 +-0.0175068 0.01903886 2.292679 +-0.01161267 0.01903886 2.292679 +-0.005718534 0.01903886 2.292679 +0.0001755984 0.01903886 2.292679 +0.006069731 0.01903886 2.292679 +0.01197402 0.01903886 2.292679 +0.01903886 0.01903886 2.292679 +0.02852504 0.01903886 2.292679 +0.04126244 0.01903886 2.292679 +0.05836535 0.01903886 2.292679 +0.08132997 0.01903886 2.292679 +0.1121653 0.01903886 2.292679 +0.1535689 0.01903886 2.292679 +0.2091628 0.01903886 2.292679 +0.2838106 0.01903886 2.292679 +0.3840425 0.01903886 2.292679 +0.518627 0.01903886 2.292679 +0.6993381 0.01903886 2.292679 +0.9419845 0.01903886 2.292679 +1.267794 0.01903886 2.292679 +1.705268 0.01903886 2.292679 +2.292679 0.01903886 2.292679 +3.081414 0.01903886 2.292679 +4.140474 0.01903886 2.292679 +5.562508 0.01903886 2.292679 +7.471917 0.01903886 2.292679 +10.03574 0.01903886 2.292679 +13.47828 0.01903886 2.292679 +18.10068 0.01903886 2.292679 +24.30731 0.01903886 2.292679 +32.64117 0.01903886 2.292679 +43.83129 0.01903886 2.292679 +58.85664 0.01903886 2.292679 +-0.0175068 0.02852504 2.292679 +-0.01161267 0.02852504 2.292679 +-0.005718534 0.02852504 2.292679 +0.0001755984 0.02852504 2.292679 +0.006069731 0.02852504 2.292679 +0.01197402 0.02852504 2.292679 +0.01903886 0.02852504 2.292679 +0.02852504 0.02852504 2.292679 +0.04126244 0.02852504 2.292679 +0.05836535 0.02852504 2.292679 +0.08132997 0.02852504 2.292679 +0.1121653 0.02852504 2.292679 +0.1535689 0.02852504 2.292679 +0.2091628 0.02852504 2.292679 +0.2838106 0.02852504 2.292679 +0.3840425 0.02852504 2.292679 +0.518627 0.02852504 2.292679 +0.6993381 0.02852504 2.292679 +0.9419845 0.02852504 2.292679 +1.267794 0.02852504 2.292679 +1.705268 0.02852504 2.292679 +2.292679 0.02852504 2.292679 +3.081414 0.02852504 2.292679 +4.140474 0.02852504 2.292679 +5.562508 0.02852504 2.292679 +7.471917 0.02852504 2.292679 +10.03574 0.02852504 2.292679 +13.47828 0.02852504 2.292679 +18.10068 0.02852504 2.292679 +24.30731 0.02852504 2.292679 +32.64117 0.02852504 2.292679 +43.83129 0.02852504 2.292679 +58.85664 0.02852504 2.292679 +-0.0175068 0.04126244 2.292679 +-0.01161267 0.04126244 2.292679 +-0.005718534 0.04126244 2.292679 +0.0001755984 0.04126244 2.292679 +0.006069731 0.04126244 2.292679 +0.01197402 0.04126244 2.292679 +0.01903886 0.04126244 2.292679 +0.02852504 0.04126244 2.292679 +0.04126244 0.04126244 2.292679 +0.05836535 0.04126244 2.292679 +0.08132997 0.04126244 2.292679 +0.1121653 0.04126244 2.292679 +0.1535689 0.04126244 2.292679 +0.2091628 0.04126244 2.292679 +0.2838106 0.04126244 2.292679 +0.3840425 0.04126244 2.292679 +0.518627 0.04126244 2.292679 +0.6993381 0.04126244 2.292679 +0.9419845 0.04126244 2.292679 +1.267794 0.04126244 2.292679 +1.705268 0.04126244 2.292679 +2.292679 0.04126244 2.292679 +3.081414 0.04126244 2.292679 +4.140474 0.04126244 2.292679 +5.562508 0.04126244 2.292679 +7.471917 0.04126244 2.292679 +10.03574 0.04126244 2.292679 +13.47828 0.04126244 2.292679 +18.10068 0.04126244 2.292679 +24.30731 0.04126244 2.292679 +32.64117 0.04126244 2.292679 +43.83129 0.04126244 2.292679 +58.85664 0.04126244 2.292679 +-0.0175068 0.05836535 2.292679 +-0.01161267 0.05836535 2.292679 +-0.005718534 0.05836535 2.292679 +0.0001755984 0.05836535 2.292679 +0.006069731 0.05836535 2.292679 +0.01197402 0.05836535 2.292679 +0.01903886 0.05836535 2.292679 +0.02852504 0.05836535 2.292679 +0.04126244 0.05836535 2.292679 +0.05836535 0.05836535 2.292679 +0.08132997 0.05836535 2.292679 +0.1121653 0.05836535 2.292679 +0.1535689 0.05836535 2.292679 +0.2091628 0.05836535 2.292679 +0.2838106 0.05836535 2.292679 +0.3840425 0.05836535 2.292679 +0.518627 0.05836535 2.292679 +0.6993381 0.05836535 2.292679 +0.9419845 0.05836535 2.292679 +1.267794 0.05836535 2.292679 +1.705268 0.05836535 2.292679 +2.292679 0.05836535 2.292679 +3.081414 0.05836535 2.292679 +4.140474 0.05836535 2.292679 +5.562508 0.05836535 2.292679 +7.471917 0.05836535 2.292679 +10.03574 0.05836535 2.292679 +13.47828 0.05836535 2.292679 +18.10068 0.05836535 2.292679 +24.30731 0.05836535 2.292679 +32.64117 0.05836535 2.292679 +43.83129 0.05836535 2.292679 +58.85664 0.05836535 2.292679 +-0.0175068 0.08132997 2.292679 +-0.01161267 0.08132997 2.292679 +-0.005718534 0.08132997 2.292679 +0.0001755984 0.08132997 2.292679 +0.006069731 0.08132997 2.292679 +0.01197402 0.08132997 2.292679 +0.01903886 0.08132997 2.292679 +0.02852504 0.08132997 2.292679 +0.04126244 0.08132997 2.292679 +0.05836535 0.08132997 2.292679 +0.08132997 0.08132997 2.292679 +0.1121653 0.08132997 2.292679 +0.1535689 0.08132997 2.292679 +0.2091628 0.08132997 2.292679 +0.2838106 0.08132997 2.292679 +0.3840425 0.08132997 2.292679 +0.518627 0.08132997 2.292679 +0.6993381 0.08132997 2.292679 +0.9419845 0.08132997 2.292679 +1.267794 0.08132997 2.292679 +1.705268 0.08132997 2.292679 +2.292679 0.08132997 2.292679 +3.081414 0.08132997 2.292679 +4.140474 0.08132997 2.292679 +5.562508 0.08132997 2.292679 +7.471917 0.08132997 2.292679 +10.03574 0.08132997 2.292679 +13.47828 0.08132997 2.292679 +18.10068 0.08132997 2.292679 +24.30731 0.08132997 2.292679 +32.64117 0.08132997 2.292679 +43.83129 0.08132997 2.292679 +58.85664 0.08132997 2.292679 +-0.0175068 0.1121653 2.292679 +-0.01161267 0.1121653 2.292679 +-0.005718534 0.1121653 2.292679 +0.0001755984 0.1121653 2.292679 +0.006069731 0.1121653 2.292679 +0.01197402 0.1121653 2.292679 +0.01903886 0.1121653 2.292679 +0.02852504 0.1121653 2.292679 +0.04126244 0.1121653 2.292679 +0.05836535 0.1121653 2.292679 +0.08132997 0.1121653 2.292679 +0.1121653 0.1121653 2.292679 +0.1535689 0.1121653 2.292679 +0.2091628 0.1121653 2.292679 +0.2838106 0.1121653 2.292679 +0.3840425 0.1121653 2.292679 +0.518627 0.1121653 2.292679 +0.6993381 0.1121653 2.292679 +0.9419845 0.1121653 2.292679 +1.267794 0.1121653 2.292679 +1.705268 0.1121653 2.292679 +2.292679 0.1121653 2.292679 +3.081414 0.1121653 2.292679 +4.140474 0.1121653 2.292679 +5.562508 0.1121653 2.292679 +7.471917 0.1121653 2.292679 +10.03574 0.1121653 2.292679 +13.47828 0.1121653 2.292679 +18.10068 0.1121653 2.292679 +24.30731 0.1121653 2.292679 +32.64117 0.1121653 2.292679 +43.83129 0.1121653 2.292679 +58.85664 0.1121653 2.292679 +-0.0175068 0.1535689 2.292679 +-0.01161267 0.1535689 2.292679 +-0.005718534 0.1535689 2.292679 +0.0001755984 0.1535689 2.292679 +0.006069731 0.1535689 2.292679 +0.01197402 0.1535689 2.292679 +0.01903886 0.1535689 2.292679 +0.02852504 0.1535689 2.292679 +0.04126244 0.1535689 2.292679 +0.05836535 0.1535689 2.292679 +0.08132997 0.1535689 2.292679 +0.1121653 0.1535689 2.292679 +0.1535689 0.1535689 2.292679 +0.2091628 0.1535689 2.292679 +0.2838106 0.1535689 2.292679 +0.3840425 0.1535689 2.292679 +0.518627 0.1535689 2.292679 +0.6993381 0.1535689 2.292679 +0.9419845 0.1535689 2.292679 +1.267794 0.1535689 2.292679 +1.705268 0.1535689 2.292679 +2.292679 0.1535689 2.292679 +3.081414 0.1535689 2.292679 +4.140474 0.1535689 2.292679 +5.562508 0.1535689 2.292679 +7.471917 0.1535689 2.292679 +10.03574 0.1535689 2.292679 +13.47828 0.1535689 2.292679 +18.10068 0.1535689 2.292679 +24.30731 0.1535689 2.292679 +32.64117 0.1535689 2.292679 +43.83129 0.1535689 2.292679 +58.85664 0.1535689 2.292679 +-0.0175068 0.2091628 2.292679 +-0.01161267 0.2091628 2.292679 +-0.005718534 0.2091628 2.292679 +0.0001755984 0.2091628 2.292679 +0.006069731 0.2091628 2.292679 +0.01197402 0.2091628 2.292679 +0.01903886 0.2091628 2.292679 +0.02852504 0.2091628 2.292679 +0.04126244 0.2091628 2.292679 +0.05836535 0.2091628 2.292679 +0.08132997 0.2091628 2.292679 +0.1121653 0.2091628 2.292679 +0.1535689 0.2091628 2.292679 +0.2091628 0.2091628 2.292679 +0.2838106 0.2091628 2.292679 +0.3840425 0.2091628 2.292679 +0.518627 0.2091628 2.292679 +0.6993381 0.2091628 2.292679 +0.9419845 0.2091628 2.292679 +1.267794 0.2091628 2.292679 +1.705268 0.2091628 2.292679 +2.292679 0.2091628 2.292679 +3.081414 0.2091628 2.292679 +4.140474 0.2091628 2.292679 +5.562508 0.2091628 2.292679 +7.471917 0.2091628 2.292679 +10.03574 0.2091628 2.292679 +13.47828 0.2091628 2.292679 +18.10068 0.2091628 2.292679 +24.30731 0.2091628 2.292679 +32.64117 0.2091628 2.292679 +43.83129 0.2091628 2.292679 +58.85664 0.2091628 2.292679 +-0.0175068 0.2838106 2.292679 +-0.01161267 0.2838106 2.292679 +-0.005718534 0.2838106 2.292679 +0.0001755984 0.2838106 2.292679 +0.006069731 0.2838106 2.292679 +0.01197402 0.2838106 2.292679 +0.01903886 0.2838106 2.292679 +0.02852504 0.2838106 2.292679 +0.04126244 0.2838106 2.292679 +0.05836535 0.2838106 2.292679 +0.08132997 0.2838106 2.292679 +0.1121653 0.2838106 2.292679 +0.1535689 0.2838106 2.292679 +0.2091628 0.2838106 2.292679 +0.2838106 0.2838106 2.292679 +0.3840425 0.2838106 2.292679 +0.518627 0.2838106 2.292679 +0.6993381 0.2838106 2.292679 +0.9419845 0.2838106 2.292679 +1.267794 0.2838106 2.292679 +1.705268 0.2838106 2.292679 +2.292679 0.2838106 2.292679 +3.081414 0.2838106 2.292679 +4.140474 0.2838106 2.292679 +5.562508 0.2838106 2.292679 +7.471917 0.2838106 2.292679 +10.03574 0.2838106 2.292679 +13.47828 0.2838106 2.292679 +18.10068 0.2838106 2.292679 +24.30731 0.2838106 2.292679 +32.64117 0.2838106 2.292679 +43.83129 0.2838106 2.292679 +58.85664 0.2838106 2.292679 +-0.0175068 0.3840425 2.292679 +-0.01161267 0.3840425 2.292679 +-0.005718534 0.3840425 2.292679 +0.0001755984 0.3840425 2.292679 +0.006069731 0.3840425 2.292679 +0.01197402 0.3840425 2.292679 +0.01903886 0.3840425 2.292679 +0.02852504 0.3840425 2.292679 +0.04126244 0.3840425 2.292679 +0.05836535 0.3840425 2.292679 +0.08132997 0.3840425 2.292679 +0.1121653 0.3840425 2.292679 +0.1535689 0.3840425 2.292679 +0.2091628 0.3840425 2.292679 +0.2838106 0.3840425 2.292679 +0.3840425 0.3840425 2.292679 +0.518627 0.3840425 2.292679 +0.6993381 0.3840425 2.292679 +0.9419845 0.3840425 2.292679 +1.267794 0.3840425 2.292679 +1.705268 0.3840425 2.292679 +2.292679 0.3840425 2.292679 +3.081414 0.3840425 2.292679 +4.140474 0.3840425 2.292679 +5.562508 0.3840425 2.292679 +7.471917 0.3840425 2.292679 +10.03574 0.3840425 2.292679 +13.47828 0.3840425 2.292679 +18.10068 0.3840425 2.292679 +24.30731 0.3840425 2.292679 +32.64117 0.3840425 2.292679 +43.83129 0.3840425 2.292679 +58.85664 0.3840425 2.292679 +-0.0175068 0.518627 2.292679 +-0.01161267 0.518627 2.292679 +-0.005718534 0.518627 2.292679 +0.0001755984 0.518627 2.292679 +0.006069731 0.518627 2.292679 +0.01197402 0.518627 2.292679 +0.01903886 0.518627 2.292679 +0.02852504 0.518627 2.292679 +0.04126244 0.518627 2.292679 +0.05836535 0.518627 2.292679 +0.08132997 0.518627 2.292679 +0.1121653 0.518627 2.292679 +0.1535689 0.518627 2.292679 +0.2091628 0.518627 2.292679 +0.2838106 0.518627 2.292679 +0.3840425 0.518627 2.292679 +0.518627 0.518627 2.292679 +0.6993381 0.518627 2.292679 +0.9419845 0.518627 2.292679 +1.267794 0.518627 2.292679 +1.705268 0.518627 2.292679 +2.292679 0.518627 2.292679 +3.081414 0.518627 2.292679 +4.140474 0.518627 2.292679 +5.562508 0.518627 2.292679 +7.471917 0.518627 2.292679 +10.03574 0.518627 2.292679 +13.47828 0.518627 2.292679 +18.10068 0.518627 2.292679 +24.30731 0.518627 2.292679 +32.64117 0.518627 2.292679 +43.83129 0.518627 2.292679 +58.85664 0.518627 2.292679 +-0.0175068 0.6993381 2.292679 +-0.01161267 0.6993381 2.292679 +-0.005718534 0.6993381 2.292679 +0.0001755984 0.6993381 2.292679 +0.006069731 0.6993381 2.292679 +0.01197402 0.6993381 2.292679 +0.01903886 0.6993381 2.292679 +0.02852504 0.6993381 2.292679 +0.04126244 0.6993381 2.292679 +0.05836535 0.6993381 2.292679 +0.08132997 0.6993381 2.292679 +0.1121653 0.6993381 2.292679 +0.1535689 0.6993381 2.292679 +0.2091628 0.6993381 2.292679 +0.2838106 0.6993381 2.292679 +0.3840425 0.6993381 2.292679 +0.518627 0.6993381 2.292679 +0.6993381 0.6993381 2.292679 +0.9419845 0.6993381 2.292679 +1.267794 0.6993381 2.292679 +1.705268 0.6993381 2.292679 +2.292679 0.6993381 2.292679 +3.081414 0.6993381 2.292679 +4.140474 0.6993381 2.292679 +5.562508 0.6993381 2.292679 +7.471917 0.6993381 2.292679 +10.03574 0.6993381 2.292679 +13.47828 0.6993381 2.292679 +18.10068 0.6993381 2.292679 +24.30731 0.6993381 2.292679 +32.64117 0.6993381 2.292679 +43.83129 0.6993381 2.292679 +58.85664 0.6993381 2.292679 +-0.0175068 0.9419845 2.292679 +-0.01161267 0.9419845 2.292679 +-0.005718534 0.9419845 2.292679 +0.0001755984 0.9419845 2.292679 +0.006069731 0.9419845 2.292679 +0.01197402 0.9419845 2.292679 +0.01903886 0.9419845 2.292679 +0.02852504 0.9419845 2.292679 +0.04126244 0.9419845 2.292679 +0.05836535 0.9419845 2.292679 +0.08132997 0.9419845 2.292679 +0.1121653 0.9419845 2.292679 +0.1535689 0.9419845 2.292679 +0.2091628 0.9419845 2.292679 +0.2838106 0.9419845 2.292679 +0.3840425 0.9419845 2.292679 +0.518627 0.9419845 2.292679 +0.6993381 0.9419845 2.292679 +0.9419845 0.9419845 2.292679 +1.267794 0.9419845 2.292679 +1.705268 0.9419845 2.292679 +2.292679 0.9419845 2.292679 +3.081414 0.9419845 2.292679 +4.140474 0.9419845 2.292679 +5.562508 0.9419845 2.292679 +7.471917 0.9419845 2.292679 +10.03574 0.9419845 2.292679 +13.47828 0.9419845 2.292679 +18.10068 0.9419845 2.292679 +24.30731 0.9419845 2.292679 +32.64117 0.9419845 2.292679 +43.83129 0.9419845 2.292679 +58.85664 0.9419845 2.292679 +-0.0175068 1.267794 2.292679 +-0.01161267 1.267794 2.292679 +-0.005718534 1.267794 2.292679 +0.0001755984 1.267794 2.292679 +0.006069731 1.267794 2.292679 +0.01197402 1.267794 2.292679 +0.01903886 1.267794 2.292679 +0.02852504 1.267794 2.292679 +0.04126244 1.267794 2.292679 +0.05836535 1.267794 2.292679 +0.08132997 1.267794 2.292679 +0.1121653 1.267794 2.292679 +0.1535689 1.267794 2.292679 +0.2091628 1.267794 2.292679 +0.2838106 1.267794 2.292679 +0.3840425 1.267794 2.292679 +0.518627 1.267794 2.292679 +0.6993381 1.267794 2.292679 +0.9419845 1.267794 2.292679 +1.267794 1.267794 2.292679 +1.705268 1.267794 2.292679 +2.292679 1.267794 2.292679 +3.081414 1.267794 2.292679 +4.140474 1.267794 2.292679 +5.562508 1.267794 2.292679 +7.471917 1.267794 2.292679 +10.03574 1.267794 2.292679 +13.47828 1.267794 2.292679 +18.10068 1.267794 2.292679 +24.30731 1.267794 2.292679 +32.64117 1.267794 2.292679 +43.83129 1.267794 2.292679 +58.85664 1.267794 2.292679 +-0.0175068 1.705268 2.292679 +-0.01161267 1.705268 2.292679 +-0.005718534 1.705268 2.292679 +0.0001755984 1.705268 2.292679 +0.006069731 1.705268 2.292679 +0.01197402 1.705268 2.292679 +0.01903886 1.705268 2.292679 +0.02852504 1.705268 2.292679 +0.04126244 1.705268 2.292679 +0.05836535 1.705268 2.292679 +0.08132997 1.705268 2.292679 +0.1121653 1.705268 2.292679 +0.1535689 1.705268 2.292679 +0.2091628 1.705268 2.292679 +0.2838106 1.705268 2.292679 +0.3840425 1.705268 2.292679 +0.518627 1.705268 2.292679 +0.6993381 1.705268 2.292679 +0.9419845 1.705268 2.292679 +1.267794 1.705268 2.292679 +1.705268 1.705268 2.292679 +2.292679 1.705268 2.292679 +3.081414 1.705268 2.292679 +4.140474 1.705268 2.292679 +5.562508 1.705268 2.292679 +7.471917 1.705268 2.292679 +10.03574 1.705268 2.292679 +13.47828 1.705268 2.292679 +18.10068 1.705268 2.292679 +24.30731 1.705268 2.292679 +32.64117 1.705268 2.292679 +43.83129 1.705268 2.292679 +58.85664 1.705268 2.292679 +-0.0175068 2.292679 2.292679 +-0.01161267 2.292679 2.292679 +-0.005718534 2.292679 2.292679 +0.0001755984 2.292679 2.292679 +0.006069731 2.292679 2.292679 +0.01197402 2.292679 2.292679 +0.01903886 2.292679 2.292679 +0.02852504 2.292679 2.292679 +0.04126244 2.292679 2.292679 +0.05836535 2.292679 2.292679 +0.08132997 2.292679 2.292679 +0.1121653 2.292679 2.292679 +0.1535689 2.292679 2.292679 +0.2091628 2.292679 2.292679 +0.2838106 2.292679 2.292679 +0.3840425 2.292679 2.292679 +0.518627 2.292679 2.292679 +0.6993381 2.292679 2.292679 +0.9419845 2.292679 2.292679 +1.267794 2.292679 2.292679 +1.705268 2.292679 2.292679 +2.292679 2.292679 2.292679 +3.081414 2.292679 2.292679 +4.140474 2.292679 2.292679 +5.562508 2.292679 2.292679 +7.471917 2.292679 2.292679 +10.03574 2.292679 2.292679 +13.47828 2.292679 2.292679 +18.10068 2.292679 2.292679 +24.30731 2.292679 2.292679 +32.64117 2.292679 2.292679 +43.83129 2.292679 2.292679 +58.85664 2.292679 2.292679 +-0.0175068 3.081414 2.292679 +-0.01161267 3.081414 2.292679 +-0.005718534 3.081414 2.292679 +0.0001755984 3.081414 2.292679 +0.006069731 3.081414 2.292679 +0.01197402 3.081414 2.292679 +0.01903886 3.081414 2.292679 +0.02852504 3.081414 2.292679 +0.04126244 3.081414 2.292679 +0.05836535 3.081414 2.292679 +0.08132997 3.081414 2.292679 +0.1121653 3.081414 2.292679 +0.1535689 3.081414 2.292679 +0.2091628 3.081414 2.292679 +0.2838106 3.081414 2.292679 +0.3840425 3.081414 2.292679 +0.518627 3.081414 2.292679 +0.6993381 3.081414 2.292679 +0.9419845 3.081414 2.292679 +1.267794 3.081414 2.292679 +1.705268 3.081414 2.292679 +2.292679 3.081414 2.292679 +3.081414 3.081414 2.292679 +4.140474 3.081414 2.292679 +5.562508 3.081414 2.292679 +7.471917 3.081414 2.292679 +10.03574 3.081414 2.292679 +13.47828 3.081414 2.292679 +18.10068 3.081414 2.292679 +24.30731 3.081414 2.292679 +32.64117 3.081414 2.292679 +43.83129 3.081414 2.292679 +58.85664 3.081414 2.292679 +-0.0175068 4.140474 2.292679 +-0.01161267 4.140474 2.292679 +-0.005718534 4.140474 2.292679 +0.0001755984 4.140474 2.292679 +0.006069731 4.140474 2.292679 +0.01197402 4.140474 2.292679 +0.01903886 4.140474 2.292679 +0.02852504 4.140474 2.292679 +0.04126244 4.140474 2.292679 +0.05836535 4.140474 2.292679 +0.08132997 4.140474 2.292679 +0.1121653 4.140474 2.292679 +0.1535689 4.140474 2.292679 +0.2091628 4.140474 2.292679 +0.2838106 4.140474 2.292679 +0.3840425 4.140474 2.292679 +0.518627 4.140474 2.292679 +0.6993381 4.140474 2.292679 +0.9419845 4.140474 2.292679 +1.267794 4.140474 2.292679 +1.705268 4.140474 2.292679 +2.292679 4.140474 2.292679 +3.081414 4.140474 2.292679 +4.140474 4.140474 2.292679 +5.562508 4.140474 2.292679 +7.471917 4.140474 2.292679 +10.03574 4.140474 2.292679 +13.47828 4.140474 2.292679 +18.10068 4.140474 2.292679 +24.30731 4.140474 2.292679 +32.64117 4.140474 2.292679 +43.83129 4.140474 2.292679 +58.85664 4.140474 2.292679 +-0.0175068 5.562508 2.292679 +-0.01161267 5.562508 2.292679 +-0.005718534 5.562508 2.292679 +0.0001755984 5.562508 2.292679 +0.006069731 5.562508 2.292679 +0.01197402 5.562508 2.292679 +0.01903886 5.562508 2.292679 +0.02852504 5.562508 2.292679 +0.04126244 5.562508 2.292679 +0.05836535 5.562508 2.292679 +0.08132997 5.562508 2.292679 +0.1121653 5.562508 2.292679 +0.1535689 5.562508 2.292679 +0.2091628 5.562508 2.292679 +0.2838106 5.562508 2.292679 +0.3840425 5.562508 2.292679 +0.518627 5.562508 2.292679 +0.6993381 5.562508 2.292679 +0.9419845 5.562508 2.292679 +1.267794 5.562508 2.292679 +1.705268 5.562508 2.292679 +2.292679 5.562508 2.292679 +3.081414 5.562508 2.292679 +4.140474 5.562508 2.292679 +5.562508 5.562508 2.292679 +7.471917 5.562508 2.292679 +10.03574 5.562508 2.292679 +13.47828 5.562508 2.292679 +18.10068 5.562508 2.292679 +24.30731 5.562508 2.292679 +32.64117 5.562508 2.292679 +43.83129 5.562508 2.292679 +58.85664 5.562508 2.292679 +-0.0175068 7.471917 2.292679 +-0.01161267 7.471917 2.292679 +-0.005718534 7.471917 2.292679 +0.0001755984 7.471917 2.292679 +0.006069731 7.471917 2.292679 +0.01197402 7.471917 2.292679 +0.01903886 7.471917 2.292679 +0.02852504 7.471917 2.292679 +0.04126244 7.471917 2.292679 +0.05836535 7.471917 2.292679 +0.08132997 7.471917 2.292679 +0.1121653 7.471917 2.292679 +0.1535689 7.471917 2.292679 +0.2091628 7.471917 2.292679 +0.2838106 7.471917 2.292679 +0.3840425 7.471917 2.292679 +0.518627 7.471917 2.292679 +0.6993381 7.471917 2.292679 +0.9419845 7.471917 2.292679 +1.267794 7.471917 2.292679 +1.705268 7.471917 2.292679 +2.292679 7.471917 2.292679 +3.081414 7.471917 2.292679 +4.140474 7.471917 2.292679 +5.562508 7.471917 2.292679 +7.471917 7.471917 2.292679 +10.03574 7.471917 2.292679 +13.47828 7.471917 2.292679 +18.10068 7.471917 2.292679 +24.30731 7.471917 2.292679 +32.64117 7.471917 2.292679 +43.83129 7.471917 2.292679 +58.85664 7.471917 2.292679 +-0.0175068 10.03574 2.292679 +-0.01161267 10.03574 2.292679 +-0.005718534 10.03574 2.292679 +0.0001755984 10.03574 2.292679 +0.006069731 10.03574 2.292679 +0.01197402 10.03574 2.292679 +0.01903886 10.03574 2.292679 +0.02852504 10.03574 2.292679 +0.04126244 10.03574 2.292679 +0.05836535 10.03574 2.292679 +0.08132997 10.03574 2.292679 +0.1121653 10.03574 2.292679 +0.1535689 10.03574 2.292679 +0.2091628 10.03574 2.292679 +0.2838106 10.03574 2.292679 +0.3840425 10.03574 2.292679 +0.518627 10.03574 2.292679 +0.6993381 10.03574 2.292679 +0.9419845 10.03574 2.292679 +1.267794 10.03574 2.292679 +1.705268 10.03574 2.292679 +2.292679 10.03574 2.292679 +3.081414 10.03574 2.292679 +4.140474 10.03574 2.292679 +5.562508 10.03574 2.292679 +7.471917 10.03574 2.292679 +10.03574 10.03574 2.292679 +13.47828 10.03574 2.292679 +18.10068 10.03574 2.292679 +24.30731 10.03574 2.292679 +32.64117 10.03574 2.292679 +43.83129 10.03574 2.292679 +58.85664 10.03574 2.292679 +-0.0175068 13.47828 2.292679 +-0.01161267 13.47828 2.292679 +-0.005718534 13.47828 2.292679 +0.0001755984 13.47828 2.292679 +0.006069731 13.47828 2.292679 +0.01197402 13.47828 2.292679 +0.01903886 13.47828 2.292679 +0.02852504 13.47828 2.292679 +0.04126244 13.47828 2.292679 +0.05836535 13.47828 2.292679 +0.08132997 13.47828 2.292679 +0.1121653 13.47828 2.292679 +0.1535689 13.47828 2.292679 +0.2091628 13.47828 2.292679 +0.2838106 13.47828 2.292679 +0.3840425 13.47828 2.292679 +0.518627 13.47828 2.292679 +0.6993381 13.47828 2.292679 +0.9419845 13.47828 2.292679 +1.267794 13.47828 2.292679 +1.705268 13.47828 2.292679 +2.292679 13.47828 2.292679 +3.081414 13.47828 2.292679 +4.140474 13.47828 2.292679 +5.562508 13.47828 2.292679 +7.471917 13.47828 2.292679 +10.03574 13.47828 2.292679 +13.47828 13.47828 2.292679 +18.10068 13.47828 2.292679 +24.30731 13.47828 2.292679 +32.64117 13.47828 2.292679 +43.83129 13.47828 2.292679 +58.85664 13.47828 2.292679 +-0.0175068 18.10068 2.292679 +-0.01161267 18.10068 2.292679 +-0.005718534 18.10068 2.292679 +0.0001755984 18.10068 2.292679 +0.006069731 18.10068 2.292679 +0.01197402 18.10068 2.292679 +0.01903886 18.10068 2.292679 +0.02852504 18.10068 2.292679 +0.04126244 18.10068 2.292679 +0.05836535 18.10068 2.292679 +0.08132997 18.10068 2.292679 +0.1121653 18.10068 2.292679 +0.1535689 18.10068 2.292679 +0.2091628 18.10068 2.292679 +0.2838106 18.10068 2.292679 +0.3840425 18.10068 2.292679 +0.518627 18.10068 2.292679 +0.6993381 18.10068 2.292679 +0.9419845 18.10068 2.292679 +1.267794 18.10068 2.292679 +1.705268 18.10068 2.292679 +2.292679 18.10068 2.292679 +3.081414 18.10068 2.292679 +4.140474 18.10068 2.292679 +5.562508 18.10068 2.292679 +7.471917 18.10068 2.292679 +10.03574 18.10068 2.292679 +13.47828 18.10068 2.292679 +18.10068 18.10068 2.292679 +24.30731 18.10068 2.292679 +32.64117 18.10068 2.292679 +43.83129 18.10068 2.292679 +58.85664 18.10068 2.292679 +-0.0175068 24.30731 2.292679 +-0.01161267 24.30731 2.292679 +-0.005718534 24.30731 2.292679 +0.0001755984 24.30731 2.292679 +0.006069731 24.30731 2.292679 +0.01197402 24.30731 2.292679 +0.01903886 24.30731 2.292679 +0.02852504 24.30731 2.292679 +0.04126244 24.30731 2.292679 +0.05836535 24.30731 2.292679 +0.08132997 24.30731 2.292679 +0.1121653 24.30731 2.292679 +0.1535689 24.30731 2.292679 +0.2091628 24.30731 2.292679 +0.2838106 24.30731 2.292679 +0.3840425 24.30731 2.292679 +0.518627 24.30731 2.292679 +0.6993381 24.30731 2.292679 +0.9419845 24.30731 2.292679 +1.267794 24.30731 2.292679 +1.705268 24.30731 2.292679 +2.292679 24.30731 2.292679 +3.081414 24.30731 2.292679 +4.140474 24.30731 2.292679 +5.562508 24.30731 2.292679 +7.471917 24.30731 2.292679 +10.03574 24.30731 2.292679 +13.47828 24.30731 2.292679 +18.10068 24.30731 2.292679 +24.30731 24.30731 2.292679 +32.64117 24.30731 2.292679 +43.83129 24.30731 2.292679 +58.85664 24.30731 2.292679 +-0.0175068 32.64117 2.292679 +-0.01161267 32.64117 2.292679 +-0.005718534 32.64117 2.292679 +0.0001755984 32.64117 2.292679 +0.006069731 32.64117 2.292679 +0.01197402 32.64117 2.292679 +0.01903886 32.64117 2.292679 +0.02852504 32.64117 2.292679 +0.04126244 32.64117 2.292679 +0.05836535 32.64117 2.292679 +0.08132997 32.64117 2.292679 +0.1121653 32.64117 2.292679 +0.1535689 32.64117 2.292679 +0.2091628 32.64117 2.292679 +0.2838106 32.64117 2.292679 +0.3840425 32.64117 2.292679 +0.518627 32.64117 2.292679 +0.6993381 32.64117 2.292679 +0.9419845 32.64117 2.292679 +1.267794 32.64117 2.292679 +1.705268 32.64117 2.292679 +2.292679 32.64117 2.292679 +3.081414 32.64117 2.292679 +4.140474 32.64117 2.292679 +5.562508 32.64117 2.292679 +7.471917 32.64117 2.292679 +10.03574 32.64117 2.292679 +13.47828 32.64117 2.292679 +18.10068 32.64117 2.292679 +24.30731 32.64117 2.292679 +32.64117 32.64117 2.292679 +43.83129 32.64117 2.292679 +58.85664 32.64117 2.292679 +-0.0175068 43.83129 2.292679 +-0.01161267 43.83129 2.292679 +-0.005718534 43.83129 2.292679 +0.0001755984 43.83129 2.292679 +0.006069731 43.83129 2.292679 +0.01197402 43.83129 2.292679 +0.01903886 43.83129 2.292679 +0.02852504 43.83129 2.292679 +0.04126244 43.83129 2.292679 +0.05836535 43.83129 2.292679 +0.08132997 43.83129 2.292679 +0.1121653 43.83129 2.292679 +0.1535689 43.83129 2.292679 +0.2091628 43.83129 2.292679 +0.2838106 43.83129 2.292679 +0.3840425 43.83129 2.292679 +0.518627 43.83129 2.292679 +0.6993381 43.83129 2.292679 +0.9419845 43.83129 2.292679 +1.267794 43.83129 2.292679 +1.705268 43.83129 2.292679 +2.292679 43.83129 2.292679 +3.081414 43.83129 2.292679 +4.140474 43.83129 2.292679 +5.562508 43.83129 2.292679 +7.471917 43.83129 2.292679 +10.03574 43.83129 2.292679 +13.47828 43.83129 2.292679 +18.10068 43.83129 2.292679 +24.30731 43.83129 2.292679 +32.64117 43.83129 2.292679 +43.83129 43.83129 2.292679 +58.85664 43.83129 2.292679 +-0.0175068 58.85664 2.292679 +-0.01161267 58.85664 2.292679 +-0.005718534 58.85664 2.292679 +0.0001755984 58.85664 2.292679 +0.006069731 58.85664 2.292679 +0.01197402 58.85664 2.292679 +0.01903886 58.85664 2.292679 +0.02852504 58.85664 2.292679 +0.04126244 58.85664 2.292679 +0.05836535 58.85664 2.292679 +0.08132997 58.85664 2.292679 +0.1121653 58.85664 2.292679 +0.1535689 58.85664 2.292679 +0.2091628 58.85664 2.292679 +0.2838106 58.85664 2.292679 +0.3840425 58.85664 2.292679 +0.518627 58.85664 2.292679 +0.6993381 58.85664 2.292679 +0.9419845 58.85664 2.292679 +1.267794 58.85664 2.292679 +1.705268 58.85664 2.292679 +2.292679 58.85664 2.292679 +3.081414 58.85664 2.292679 +4.140474 58.85664 2.292679 +5.562508 58.85664 2.292679 +7.471917 58.85664 2.292679 +10.03574 58.85664 2.292679 +13.47828 58.85664 2.292679 +18.10068 58.85664 2.292679 +24.30731 58.85664 2.292679 +32.64117 58.85664 2.292679 +43.83129 58.85664 2.292679 +58.85664 58.85664 2.292679 +-0.0175068 -0.0175068 3.081414 +-0.01161267 -0.0175068 3.081414 +-0.005718534 -0.0175068 3.081414 +0.0001755984 -0.0175068 3.081414 +0.006069731 -0.0175068 3.081414 +0.01197402 -0.0175068 3.081414 +0.01903886 -0.0175068 3.081414 +0.02852504 -0.0175068 3.081414 +0.04126244 -0.0175068 3.081414 +0.05836535 -0.0175068 3.081414 +0.08132997 -0.0175068 3.081414 +0.1121653 -0.0175068 3.081414 +0.1535689 -0.0175068 3.081414 +0.2091628 -0.0175068 3.081414 +0.2838106 -0.0175068 3.081414 +0.3840425 -0.0175068 3.081414 +0.518627 -0.0175068 3.081414 +0.6993381 -0.0175068 3.081414 +0.9419845 -0.0175068 3.081414 +1.267794 -0.0175068 3.081414 +1.705268 -0.0175068 3.081414 +2.292679 -0.0175068 3.081414 +3.081414 -0.0175068 3.081414 +4.140474 -0.0175068 3.081414 +5.562508 -0.0175068 3.081414 +7.471917 -0.0175068 3.081414 +10.03574 -0.0175068 3.081414 +13.47828 -0.0175068 3.081414 +18.10068 -0.0175068 3.081414 +24.30731 -0.0175068 3.081414 +32.64117 -0.0175068 3.081414 +43.83129 -0.0175068 3.081414 +58.85664 -0.0175068 3.081414 +-0.0175068 -0.01161267 3.081414 +-0.01161267 -0.01161267 3.081414 +-0.005718534 -0.01161267 3.081414 +0.0001755984 -0.01161267 3.081414 +0.006069731 -0.01161267 3.081414 +0.01197402 -0.01161267 3.081414 +0.01903886 -0.01161267 3.081414 +0.02852504 -0.01161267 3.081414 +0.04126244 -0.01161267 3.081414 +0.05836535 -0.01161267 3.081414 +0.08132997 -0.01161267 3.081414 +0.1121653 -0.01161267 3.081414 +0.1535689 -0.01161267 3.081414 +0.2091628 -0.01161267 3.081414 +0.2838106 -0.01161267 3.081414 +0.3840425 -0.01161267 3.081414 +0.518627 -0.01161267 3.081414 +0.6993381 -0.01161267 3.081414 +0.9419845 -0.01161267 3.081414 +1.267794 -0.01161267 3.081414 +1.705268 -0.01161267 3.081414 +2.292679 -0.01161267 3.081414 +3.081414 -0.01161267 3.081414 +4.140474 -0.01161267 3.081414 +5.562508 -0.01161267 3.081414 +7.471917 -0.01161267 3.081414 +10.03574 -0.01161267 3.081414 +13.47828 -0.01161267 3.081414 +18.10068 -0.01161267 3.081414 +24.30731 -0.01161267 3.081414 +32.64117 -0.01161267 3.081414 +43.83129 -0.01161267 3.081414 +58.85664 -0.01161267 3.081414 +-0.0175068 -0.005718534 3.081414 +-0.01161267 -0.005718534 3.081414 +-0.005718534 -0.005718534 3.081414 +0.0001755984 -0.005718534 3.081414 +0.006069731 -0.005718534 3.081414 +0.01197402 -0.005718534 3.081414 +0.01903886 -0.005718534 3.081414 +0.02852504 -0.005718534 3.081414 +0.04126244 -0.005718534 3.081414 +0.05836535 -0.005718534 3.081414 +0.08132997 -0.005718534 3.081414 +0.1121653 -0.005718534 3.081414 +0.1535689 -0.005718534 3.081414 +0.2091628 -0.005718534 3.081414 +0.2838106 -0.005718534 3.081414 +0.3840425 -0.005718534 3.081414 +0.518627 -0.005718534 3.081414 +0.6993381 -0.005718534 3.081414 +0.9419845 -0.005718534 3.081414 +1.267794 -0.005718534 3.081414 +1.705268 -0.005718534 3.081414 +2.292679 -0.005718534 3.081414 +3.081414 -0.005718534 3.081414 +4.140474 -0.005718534 3.081414 +5.562508 -0.005718534 3.081414 +7.471917 -0.005718534 3.081414 +10.03574 -0.005718534 3.081414 +13.47828 -0.005718534 3.081414 +18.10068 -0.005718534 3.081414 +24.30731 -0.005718534 3.081414 +32.64117 -0.005718534 3.081414 +43.83129 -0.005718534 3.081414 +58.85664 -0.005718534 3.081414 +-0.0175068 0.0001755984 3.081414 +-0.01161267 0.0001755984 3.081414 +-0.005718534 0.0001755984 3.081414 +0.0001755984 0.0001755984 3.081414 +0.006069731 0.0001755984 3.081414 +0.01197402 0.0001755984 3.081414 +0.01903886 0.0001755984 3.081414 +0.02852504 0.0001755984 3.081414 +0.04126244 0.0001755984 3.081414 +0.05836535 0.0001755984 3.081414 +0.08132997 0.0001755984 3.081414 +0.1121653 0.0001755984 3.081414 +0.1535689 0.0001755984 3.081414 +0.2091628 0.0001755984 3.081414 +0.2838106 0.0001755984 3.081414 +0.3840425 0.0001755984 3.081414 +0.518627 0.0001755984 3.081414 +0.6993381 0.0001755984 3.081414 +0.9419845 0.0001755984 3.081414 +1.267794 0.0001755984 3.081414 +1.705268 0.0001755984 3.081414 +2.292679 0.0001755984 3.081414 +3.081414 0.0001755984 3.081414 +4.140474 0.0001755984 3.081414 +5.562508 0.0001755984 3.081414 +7.471917 0.0001755984 3.081414 +10.03574 0.0001755984 3.081414 +13.47828 0.0001755984 3.081414 +18.10068 0.0001755984 3.081414 +24.30731 0.0001755984 3.081414 +32.64117 0.0001755984 3.081414 +43.83129 0.0001755984 3.081414 +58.85664 0.0001755984 3.081414 +-0.0175068 0.006069731 3.081414 +-0.01161267 0.006069731 3.081414 +-0.005718534 0.006069731 3.081414 +0.0001755984 0.006069731 3.081414 +0.006069731 0.006069731 3.081414 +0.01197402 0.006069731 3.081414 +0.01903886 0.006069731 3.081414 +0.02852504 0.006069731 3.081414 +0.04126244 0.006069731 3.081414 +0.05836535 0.006069731 3.081414 +0.08132997 0.006069731 3.081414 +0.1121653 0.006069731 3.081414 +0.1535689 0.006069731 3.081414 +0.2091628 0.006069731 3.081414 +0.2838106 0.006069731 3.081414 +0.3840425 0.006069731 3.081414 +0.518627 0.006069731 3.081414 +0.6993381 0.006069731 3.081414 +0.9419845 0.006069731 3.081414 +1.267794 0.006069731 3.081414 +1.705268 0.006069731 3.081414 +2.292679 0.006069731 3.081414 +3.081414 0.006069731 3.081414 +4.140474 0.006069731 3.081414 +5.562508 0.006069731 3.081414 +7.471917 0.006069731 3.081414 +10.03574 0.006069731 3.081414 +13.47828 0.006069731 3.081414 +18.10068 0.006069731 3.081414 +24.30731 0.006069731 3.081414 +32.64117 0.006069731 3.081414 +43.83129 0.006069731 3.081414 +58.85664 0.006069731 3.081414 +-0.0175068 0.01197402 3.081414 +-0.01161267 0.01197402 3.081414 +-0.005718534 0.01197402 3.081414 +0.0001755984 0.01197402 3.081414 +0.006069731 0.01197402 3.081414 +0.01197402 0.01197402 3.081414 +0.01903886 0.01197402 3.081414 +0.02852504 0.01197402 3.081414 +0.04126244 0.01197402 3.081414 +0.05836535 0.01197402 3.081414 +0.08132997 0.01197402 3.081414 +0.1121653 0.01197402 3.081414 +0.1535689 0.01197402 3.081414 +0.2091628 0.01197402 3.081414 +0.2838106 0.01197402 3.081414 +0.3840425 0.01197402 3.081414 +0.518627 0.01197402 3.081414 +0.6993381 0.01197402 3.081414 +0.9419845 0.01197402 3.081414 +1.267794 0.01197402 3.081414 +1.705268 0.01197402 3.081414 +2.292679 0.01197402 3.081414 +3.081414 0.01197402 3.081414 +4.140474 0.01197402 3.081414 +5.562508 0.01197402 3.081414 +7.471917 0.01197402 3.081414 +10.03574 0.01197402 3.081414 +13.47828 0.01197402 3.081414 +18.10068 0.01197402 3.081414 +24.30731 0.01197402 3.081414 +32.64117 0.01197402 3.081414 +43.83129 0.01197402 3.081414 +58.85664 0.01197402 3.081414 +-0.0175068 0.01903886 3.081414 +-0.01161267 0.01903886 3.081414 +-0.005718534 0.01903886 3.081414 +0.0001755984 0.01903886 3.081414 +0.006069731 0.01903886 3.081414 +0.01197402 0.01903886 3.081414 +0.01903886 0.01903886 3.081414 +0.02852504 0.01903886 3.081414 +0.04126244 0.01903886 3.081414 +0.05836535 0.01903886 3.081414 +0.08132997 0.01903886 3.081414 +0.1121653 0.01903886 3.081414 +0.1535689 0.01903886 3.081414 +0.2091628 0.01903886 3.081414 +0.2838106 0.01903886 3.081414 +0.3840425 0.01903886 3.081414 +0.518627 0.01903886 3.081414 +0.6993381 0.01903886 3.081414 +0.9419845 0.01903886 3.081414 +1.267794 0.01903886 3.081414 +1.705268 0.01903886 3.081414 +2.292679 0.01903886 3.081414 +3.081414 0.01903886 3.081414 +4.140474 0.01903886 3.081414 +5.562508 0.01903886 3.081414 +7.471917 0.01903886 3.081414 +10.03574 0.01903886 3.081414 +13.47828 0.01903886 3.081414 +18.10068 0.01903886 3.081414 +24.30731 0.01903886 3.081414 +32.64117 0.01903886 3.081414 +43.83129 0.01903886 3.081414 +58.85664 0.01903886 3.081414 +-0.0175068 0.02852504 3.081414 +-0.01161267 0.02852504 3.081414 +-0.005718534 0.02852504 3.081414 +0.0001755984 0.02852504 3.081414 +0.006069731 0.02852504 3.081414 +0.01197402 0.02852504 3.081414 +0.01903886 0.02852504 3.081414 +0.02852504 0.02852504 3.081414 +0.04126244 0.02852504 3.081414 +0.05836535 0.02852504 3.081414 +0.08132997 0.02852504 3.081414 +0.1121653 0.02852504 3.081414 +0.1535689 0.02852504 3.081414 +0.2091628 0.02852504 3.081414 +0.2838106 0.02852504 3.081414 +0.3840425 0.02852504 3.081414 +0.518627 0.02852504 3.081414 +0.6993381 0.02852504 3.081414 +0.9419845 0.02852504 3.081414 +1.267794 0.02852504 3.081414 +1.705268 0.02852504 3.081414 +2.292679 0.02852504 3.081414 +3.081414 0.02852504 3.081414 +4.140474 0.02852504 3.081414 +5.562508 0.02852504 3.081414 +7.471917 0.02852504 3.081414 +10.03574 0.02852504 3.081414 +13.47828 0.02852504 3.081414 +18.10068 0.02852504 3.081414 +24.30731 0.02852504 3.081414 +32.64117 0.02852504 3.081414 +43.83129 0.02852504 3.081414 +58.85664 0.02852504 3.081414 +-0.0175068 0.04126244 3.081414 +-0.01161267 0.04126244 3.081414 +-0.005718534 0.04126244 3.081414 +0.0001755984 0.04126244 3.081414 +0.006069731 0.04126244 3.081414 +0.01197402 0.04126244 3.081414 +0.01903886 0.04126244 3.081414 +0.02852504 0.04126244 3.081414 +0.04126244 0.04126244 3.081414 +0.05836535 0.04126244 3.081414 +0.08132997 0.04126244 3.081414 +0.1121653 0.04126244 3.081414 +0.1535689 0.04126244 3.081414 +0.2091628 0.04126244 3.081414 +0.2838106 0.04126244 3.081414 +0.3840425 0.04126244 3.081414 +0.518627 0.04126244 3.081414 +0.6993381 0.04126244 3.081414 +0.9419845 0.04126244 3.081414 +1.267794 0.04126244 3.081414 +1.705268 0.04126244 3.081414 +2.292679 0.04126244 3.081414 +3.081414 0.04126244 3.081414 +4.140474 0.04126244 3.081414 +5.562508 0.04126244 3.081414 +7.471917 0.04126244 3.081414 +10.03574 0.04126244 3.081414 +13.47828 0.04126244 3.081414 +18.10068 0.04126244 3.081414 +24.30731 0.04126244 3.081414 +32.64117 0.04126244 3.081414 +43.83129 0.04126244 3.081414 +58.85664 0.04126244 3.081414 +-0.0175068 0.05836535 3.081414 +-0.01161267 0.05836535 3.081414 +-0.005718534 0.05836535 3.081414 +0.0001755984 0.05836535 3.081414 +0.006069731 0.05836535 3.081414 +0.01197402 0.05836535 3.081414 +0.01903886 0.05836535 3.081414 +0.02852504 0.05836535 3.081414 +0.04126244 0.05836535 3.081414 +0.05836535 0.05836535 3.081414 +0.08132997 0.05836535 3.081414 +0.1121653 0.05836535 3.081414 +0.1535689 0.05836535 3.081414 +0.2091628 0.05836535 3.081414 +0.2838106 0.05836535 3.081414 +0.3840425 0.05836535 3.081414 +0.518627 0.05836535 3.081414 +0.6993381 0.05836535 3.081414 +0.9419845 0.05836535 3.081414 +1.267794 0.05836535 3.081414 +1.705268 0.05836535 3.081414 +2.292679 0.05836535 3.081414 +3.081414 0.05836535 3.081414 +4.140474 0.05836535 3.081414 +5.562508 0.05836535 3.081414 +7.471917 0.05836535 3.081414 +10.03574 0.05836535 3.081414 +13.47828 0.05836535 3.081414 +18.10068 0.05836535 3.081414 +24.30731 0.05836535 3.081414 +32.64117 0.05836535 3.081414 +43.83129 0.05836535 3.081414 +58.85664 0.05836535 3.081414 +-0.0175068 0.08132997 3.081414 +-0.01161267 0.08132997 3.081414 +-0.005718534 0.08132997 3.081414 +0.0001755984 0.08132997 3.081414 +0.006069731 0.08132997 3.081414 +0.01197402 0.08132997 3.081414 +0.01903886 0.08132997 3.081414 +0.02852504 0.08132997 3.081414 +0.04126244 0.08132997 3.081414 +0.05836535 0.08132997 3.081414 +0.08132997 0.08132997 3.081414 +0.1121653 0.08132997 3.081414 +0.1535689 0.08132997 3.081414 +0.2091628 0.08132997 3.081414 +0.2838106 0.08132997 3.081414 +0.3840425 0.08132997 3.081414 +0.518627 0.08132997 3.081414 +0.6993381 0.08132997 3.081414 +0.9419845 0.08132997 3.081414 +1.267794 0.08132997 3.081414 +1.705268 0.08132997 3.081414 +2.292679 0.08132997 3.081414 +3.081414 0.08132997 3.081414 +4.140474 0.08132997 3.081414 +5.562508 0.08132997 3.081414 +7.471917 0.08132997 3.081414 +10.03574 0.08132997 3.081414 +13.47828 0.08132997 3.081414 +18.10068 0.08132997 3.081414 +24.30731 0.08132997 3.081414 +32.64117 0.08132997 3.081414 +43.83129 0.08132997 3.081414 +58.85664 0.08132997 3.081414 +-0.0175068 0.1121653 3.081414 +-0.01161267 0.1121653 3.081414 +-0.005718534 0.1121653 3.081414 +0.0001755984 0.1121653 3.081414 +0.006069731 0.1121653 3.081414 +0.01197402 0.1121653 3.081414 +0.01903886 0.1121653 3.081414 +0.02852504 0.1121653 3.081414 +0.04126244 0.1121653 3.081414 +0.05836535 0.1121653 3.081414 +0.08132997 0.1121653 3.081414 +0.1121653 0.1121653 3.081414 +0.1535689 0.1121653 3.081414 +0.2091628 0.1121653 3.081414 +0.2838106 0.1121653 3.081414 +0.3840425 0.1121653 3.081414 +0.518627 0.1121653 3.081414 +0.6993381 0.1121653 3.081414 +0.9419845 0.1121653 3.081414 +1.267794 0.1121653 3.081414 +1.705268 0.1121653 3.081414 +2.292679 0.1121653 3.081414 +3.081414 0.1121653 3.081414 +4.140474 0.1121653 3.081414 +5.562508 0.1121653 3.081414 +7.471917 0.1121653 3.081414 +10.03574 0.1121653 3.081414 +13.47828 0.1121653 3.081414 +18.10068 0.1121653 3.081414 +24.30731 0.1121653 3.081414 +32.64117 0.1121653 3.081414 +43.83129 0.1121653 3.081414 +58.85664 0.1121653 3.081414 +-0.0175068 0.1535689 3.081414 +-0.01161267 0.1535689 3.081414 +-0.005718534 0.1535689 3.081414 +0.0001755984 0.1535689 3.081414 +0.006069731 0.1535689 3.081414 +0.01197402 0.1535689 3.081414 +0.01903886 0.1535689 3.081414 +0.02852504 0.1535689 3.081414 +0.04126244 0.1535689 3.081414 +0.05836535 0.1535689 3.081414 +0.08132997 0.1535689 3.081414 +0.1121653 0.1535689 3.081414 +0.1535689 0.1535689 3.081414 +0.2091628 0.1535689 3.081414 +0.2838106 0.1535689 3.081414 +0.3840425 0.1535689 3.081414 +0.518627 0.1535689 3.081414 +0.6993381 0.1535689 3.081414 +0.9419845 0.1535689 3.081414 +1.267794 0.1535689 3.081414 +1.705268 0.1535689 3.081414 +2.292679 0.1535689 3.081414 +3.081414 0.1535689 3.081414 +4.140474 0.1535689 3.081414 +5.562508 0.1535689 3.081414 +7.471917 0.1535689 3.081414 +10.03574 0.1535689 3.081414 +13.47828 0.1535689 3.081414 +18.10068 0.1535689 3.081414 +24.30731 0.1535689 3.081414 +32.64117 0.1535689 3.081414 +43.83129 0.1535689 3.081414 +58.85664 0.1535689 3.081414 +-0.0175068 0.2091628 3.081414 +-0.01161267 0.2091628 3.081414 +-0.005718534 0.2091628 3.081414 +0.0001755984 0.2091628 3.081414 +0.006069731 0.2091628 3.081414 +0.01197402 0.2091628 3.081414 +0.01903886 0.2091628 3.081414 +0.02852504 0.2091628 3.081414 +0.04126244 0.2091628 3.081414 +0.05836535 0.2091628 3.081414 +0.08132997 0.2091628 3.081414 +0.1121653 0.2091628 3.081414 +0.1535689 0.2091628 3.081414 +0.2091628 0.2091628 3.081414 +0.2838106 0.2091628 3.081414 +0.3840425 0.2091628 3.081414 +0.518627 0.2091628 3.081414 +0.6993381 0.2091628 3.081414 +0.9419845 0.2091628 3.081414 +1.267794 0.2091628 3.081414 +1.705268 0.2091628 3.081414 +2.292679 0.2091628 3.081414 +3.081414 0.2091628 3.081414 +4.140474 0.2091628 3.081414 +5.562508 0.2091628 3.081414 +7.471917 0.2091628 3.081414 +10.03574 0.2091628 3.081414 +13.47828 0.2091628 3.081414 +18.10068 0.2091628 3.081414 +24.30731 0.2091628 3.081414 +32.64117 0.2091628 3.081414 +43.83129 0.2091628 3.081414 +58.85664 0.2091628 3.081414 +-0.0175068 0.2838106 3.081414 +-0.01161267 0.2838106 3.081414 +-0.005718534 0.2838106 3.081414 +0.0001755984 0.2838106 3.081414 +0.006069731 0.2838106 3.081414 +0.01197402 0.2838106 3.081414 +0.01903886 0.2838106 3.081414 +0.02852504 0.2838106 3.081414 +0.04126244 0.2838106 3.081414 +0.05836535 0.2838106 3.081414 +0.08132997 0.2838106 3.081414 +0.1121653 0.2838106 3.081414 +0.1535689 0.2838106 3.081414 +0.2091628 0.2838106 3.081414 +0.2838106 0.2838106 3.081414 +0.3840425 0.2838106 3.081414 +0.518627 0.2838106 3.081414 +0.6993381 0.2838106 3.081414 +0.9419845 0.2838106 3.081414 +1.267794 0.2838106 3.081414 +1.705268 0.2838106 3.081414 +2.292679 0.2838106 3.081414 +3.081414 0.2838106 3.081414 +4.140474 0.2838106 3.081414 +5.562508 0.2838106 3.081414 +7.471917 0.2838106 3.081414 +10.03574 0.2838106 3.081414 +13.47828 0.2838106 3.081414 +18.10068 0.2838106 3.081414 +24.30731 0.2838106 3.081414 +32.64117 0.2838106 3.081414 +43.83129 0.2838106 3.081414 +58.85664 0.2838106 3.081414 +-0.0175068 0.3840425 3.081414 +-0.01161267 0.3840425 3.081414 +-0.005718534 0.3840425 3.081414 +0.0001755984 0.3840425 3.081414 +0.006069731 0.3840425 3.081414 +0.01197402 0.3840425 3.081414 +0.01903886 0.3840425 3.081414 +0.02852504 0.3840425 3.081414 +0.04126244 0.3840425 3.081414 +0.05836535 0.3840425 3.081414 +0.08132997 0.3840425 3.081414 +0.1121653 0.3840425 3.081414 +0.1535689 0.3840425 3.081414 +0.2091628 0.3840425 3.081414 +0.2838106 0.3840425 3.081414 +0.3840425 0.3840425 3.081414 +0.518627 0.3840425 3.081414 +0.6993381 0.3840425 3.081414 +0.9419845 0.3840425 3.081414 +1.267794 0.3840425 3.081414 +1.705268 0.3840425 3.081414 +2.292679 0.3840425 3.081414 +3.081414 0.3840425 3.081414 +4.140474 0.3840425 3.081414 +5.562508 0.3840425 3.081414 +7.471917 0.3840425 3.081414 +10.03574 0.3840425 3.081414 +13.47828 0.3840425 3.081414 +18.10068 0.3840425 3.081414 +24.30731 0.3840425 3.081414 +32.64117 0.3840425 3.081414 +43.83129 0.3840425 3.081414 +58.85664 0.3840425 3.081414 +-0.0175068 0.518627 3.081414 +-0.01161267 0.518627 3.081414 +-0.005718534 0.518627 3.081414 +0.0001755984 0.518627 3.081414 +0.006069731 0.518627 3.081414 +0.01197402 0.518627 3.081414 +0.01903886 0.518627 3.081414 +0.02852504 0.518627 3.081414 +0.04126244 0.518627 3.081414 +0.05836535 0.518627 3.081414 +0.08132997 0.518627 3.081414 +0.1121653 0.518627 3.081414 +0.1535689 0.518627 3.081414 +0.2091628 0.518627 3.081414 +0.2838106 0.518627 3.081414 +0.3840425 0.518627 3.081414 +0.518627 0.518627 3.081414 +0.6993381 0.518627 3.081414 +0.9419845 0.518627 3.081414 +1.267794 0.518627 3.081414 +1.705268 0.518627 3.081414 +2.292679 0.518627 3.081414 +3.081414 0.518627 3.081414 +4.140474 0.518627 3.081414 +5.562508 0.518627 3.081414 +7.471917 0.518627 3.081414 +10.03574 0.518627 3.081414 +13.47828 0.518627 3.081414 +18.10068 0.518627 3.081414 +24.30731 0.518627 3.081414 +32.64117 0.518627 3.081414 +43.83129 0.518627 3.081414 +58.85664 0.518627 3.081414 +-0.0175068 0.6993381 3.081414 +-0.01161267 0.6993381 3.081414 +-0.005718534 0.6993381 3.081414 +0.0001755984 0.6993381 3.081414 +0.006069731 0.6993381 3.081414 +0.01197402 0.6993381 3.081414 +0.01903886 0.6993381 3.081414 +0.02852504 0.6993381 3.081414 +0.04126244 0.6993381 3.081414 +0.05836535 0.6993381 3.081414 +0.08132997 0.6993381 3.081414 +0.1121653 0.6993381 3.081414 +0.1535689 0.6993381 3.081414 +0.2091628 0.6993381 3.081414 +0.2838106 0.6993381 3.081414 +0.3840425 0.6993381 3.081414 +0.518627 0.6993381 3.081414 +0.6993381 0.6993381 3.081414 +0.9419845 0.6993381 3.081414 +1.267794 0.6993381 3.081414 +1.705268 0.6993381 3.081414 +2.292679 0.6993381 3.081414 +3.081414 0.6993381 3.081414 +4.140474 0.6993381 3.081414 +5.562508 0.6993381 3.081414 +7.471917 0.6993381 3.081414 +10.03574 0.6993381 3.081414 +13.47828 0.6993381 3.081414 +18.10068 0.6993381 3.081414 +24.30731 0.6993381 3.081414 +32.64117 0.6993381 3.081414 +43.83129 0.6993381 3.081414 +58.85664 0.6993381 3.081414 +-0.0175068 0.9419845 3.081414 +-0.01161267 0.9419845 3.081414 +-0.005718534 0.9419845 3.081414 +0.0001755984 0.9419845 3.081414 +0.006069731 0.9419845 3.081414 +0.01197402 0.9419845 3.081414 +0.01903886 0.9419845 3.081414 +0.02852504 0.9419845 3.081414 +0.04126244 0.9419845 3.081414 +0.05836535 0.9419845 3.081414 +0.08132997 0.9419845 3.081414 +0.1121653 0.9419845 3.081414 +0.1535689 0.9419845 3.081414 +0.2091628 0.9419845 3.081414 +0.2838106 0.9419845 3.081414 +0.3840425 0.9419845 3.081414 +0.518627 0.9419845 3.081414 +0.6993381 0.9419845 3.081414 +0.9419845 0.9419845 3.081414 +1.267794 0.9419845 3.081414 +1.705268 0.9419845 3.081414 +2.292679 0.9419845 3.081414 +3.081414 0.9419845 3.081414 +4.140474 0.9419845 3.081414 +5.562508 0.9419845 3.081414 +7.471917 0.9419845 3.081414 +10.03574 0.9419845 3.081414 +13.47828 0.9419845 3.081414 +18.10068 0.9419845 3.081414 +24.30731 0.9419845 3.081414 +32.64117 0.9419845 3.081414 +43.83129 0.9419845 3.081414 +58.85664 0.9419845 3.081414 +-0.0175068 1.267794 3.081414 +-0.01161267 1.267794 3.081414 +-0.005718534 1.267794 3.081414 +0.0001755984 1.267794 3.081414 +0.006069731 1.267794 3.081414 +0.01197402 1.267794 3.081414 +0.01903886 1.267794 3.081414 +0.02852504 1.267794 3.081414 +0.04126244 1.267794 3.081414 +0.05836535 1.267794 3.081414 +0.08132997 1.267794 3.081414 +0.1121653 1.267794 3.081414 +0.1535689 1.267794 3.081414 +0.2091628 1.267794 3.081414 +0.2838106 1.267794 3.081414 +0.3840425 1.267794 3.081414 +0.518627 1.267794 3.081414 +0.6993381 1.267794 3.081414 +0.9419845 1.267794 3.081414 +1.267794 1.267794 3.081414 +1.705268 1.267794 3.081414 +2.292679 1.267794 3.081414 +3.081414 1.267794 3.081414 +4.140474 1.267794 3.081414 +5.562508 1.267794 3.081414 +7.471917 1.267794 3.081414 +10.03574 1.267794 3.081414 +13.47828 1.267794 3.081414 +18.10068 1.267794 3.081414 +24.30731 1.267794 3.081414 +32.64117 1.267794 3.081414 +43.83129 1.267794 3.081414 +58.85664 1.267794 3.081414 +-0.0175068 1.705268 3.081414 +-0.01161267 1.705268 3.081414 +-0.005718534 1.705268 3.081414 +0.0001755984 1.705268 3.081414 +0.006069731 1.705268 3.081414 +0.01197402 1.705268 3.081414 +0.01903886 1.705268 3.081414 +0.02852504 1.705268 3.081414 +0.04126244 1.705268 3.081414 +0.05836535 1.705268 3.081414 +0.08132997 1.705268 3.081414 +0.1121653 1.705268 3.081414 +0.1535689 1.705268 3.081414 +0.2091628 1.705268 3.081414 +0.2838106 1.705268 3.081414 +0.3840425 1.705268 3.081414 +0.518627 1.705268 3.081414 +0.6993381 1.705268 3.081414 +0.9419845 1.705268 3.081414 +1.267794 1.705268 3.081414 +1.705268 1.705268 3.081414 +2.292679 1.705268 3.081414 +3.081414 1.705268 3.081414 +4.140474 1.705268 3.081414 +5.562508 1.705268 3.081414 +7.471917 1.705268 3.081414 +10.03574 1.705268 3.081414 +13.47828 1.705268 3.081414 +18.10068 1.705268 3.081414 +24.30731 1.705268 3.081414 +32.64117 1.705268 3.081414 +43.83129 1.705268 3.081414 +58.85664 1.705268 3.081414 +-0.0175068 2.292679 3.081414 +-0.01161267 2.292679 3.081414 +-0.005718534 2.292679 3.081414 +0.0001755984 2.292679 3.081414 +0.006069731 2.292679 3.081414 +0.01197402 2.292679 3.081414 +0.01903886 2.292679 3.081414 +0.02852504 2.292679 3.081414 +0.04126244 2.292679 3.081414 +0.05836535 2.292679 3.081414 +0.08132997 2.292679 3.081414 +0.1121653 2.292679 3.081414 +0.1535689 2.292679 3.081414 +0.2091628 2.292679 3.081414 +0.2838106 2.292679 3.081414 +0.3840425 2.292679 3.081414 +0.518627 2.292679 3.081414 +0.6993381 2.292679 3.081414 +0.9419845 2.292679 3.081414 +1.267794 2.292679 3.081414 +1.705268 2.292679 3.081414 +2.292679 2.292679 3.081414 +3.081414 2.292679 3.081414 +4.140474 2.292679 3.081414 +5.562508 2.292679 3.081414 +7.471917 2.292679 3.081414 +10.03574 2.292679 3.081414 +13.47828 2.292679 3.081414 +18.10068 2.292679 3.081414 +24.30731 2.292679 3.081414 +32.64117 2.292679 3.081414 +43.83129 2.292679 3.081414 +58.85664 2.292679 3.081414 +-0.0175068 3.081414 3.081414 +-0.01161267 3.081414 3.081414 +-0.005718534 3.081414 3.081414 +0.0001755984 3.081414 3.081414 +0.006069731 3.081414 3.081414 +0.01197402 3.081414 3.081414 +0.01903886 3.081414 3.081414 +0.02852504 3.081414 3.081414 +0.04126244 3.081414 3.081414 +0.05836535 3.081414 3.081414 +0.08132997 3.081414 3.081414 +0.1121653 3.081414 3.081414 +0.1535689 3.081414 3.081414 +0.2091628 3.081414 3.081414 +0.2838106 3.081414 3.081414 +0.3840425 3.081414 3.081414 +0.518627 3.081414 3.081414 +0.6993381 3.081414 3.081414 +0.9419845 3.081414 3.081414 +1.267794 3.081414 3.081414 +1.705268 3.081414 3.081414 +2.292679 3.081414 3.081414 +3.081414 3.081414 3.081414 +4.140474 3.081414 3.081414 +5.562508 3.081414 3.081414 +7.471917 3.081414 3.081414 +10.03574 3.081414 3.081414 +13.47828 3.081414 3.081414 +18.10068 3.081414 3.081414 +24.30731 3.081414 3.081414 +32.64117 3.081414 3.081414 +43.83129 3.081414 3.081414 +58.85664 3.081414 3.081414 +-0.0175068 4.140474 3.081414 +-0.01161267 4.140474 3.081414 +-0.005718534 4.140474 3.081414 +0.0001755984 4.140474 3.081414 +0.006069731 4.140474 3.081414 +0.01197402 4.140474 3.081414 +0.01903886 4.140474 3.081414 +0.02852504 4.140474 3.081414 +0.04126244 4.140474 3.081414 +0.05836535 4.140474 3.081414 +0.08132997 4.140474 3.081414 +0.1121653 4.140474 3.081414 +0.1535689 4.140474 3.081414 +0.2091628 4.140474 3.081414 +0.2838106 4.140474 3.081414 +0.3840425 4.140474 3.081414 +0.518627 4.140474 3.081414 +0.6993381 4.140474 3.081414 +0.9419845 4.140474 3.081414 +1.267794 4.140474 3.081414 +1.705268 4.140474 3.081414 +2.292679 4.140474 3.081414 +3.081414 4.140474 3.081414 +4.140474 4.140474 3.081414 +5.562508 4.140474 3.081414 +7.471917 4.140474 3.081414 +10.03574 4.140474 3.081414 +13.47828 4.140474 3.081414 +18.10068 4.140474 3.081414 +24.30731 4.140474 3.081414 +32.64117 4.140474 3.081414 +43.83129 4.140474 3.081414 +58.85664 4.140474 3.081414 +-0.0175068 5.562508 3.081414 +-0.01161267 5.562508 3.081414 +-0.005718534 5.562508 3.081414 +0.0001755984 5.562508 3.081414 +0.006069731 5.562508 3.081414 +0.01197402 5.562508 3.081414 +0.01903886 5.562508 3.081414 +0.02852504 5.562508 3.081414 +0.04126244 5.562508 3.081414 +0.05836535 5.562508 3.081414 +0.08132997 5.562508 3.081414 +0.1121653 5.562508 3.081414 +0.1535689 5.562508 3.081414 +0.2091628 5.562508 3.081414 +0.2838106 5.562508 3.081414 +0.3840425 5.562508 3.081414 +0.518627 5.562508 3.081414 +0.6993381 5.562508 3.081414 +0.9419845 5.562508 3.081414 +1.267794 5.562508 3.081414 +1.705268 5.562508 3.081414 +2.292679 5.562508 3.081414 +3.081414 5.562508 3.081414 +4.140474 5.562508 3.081414 +5.562508 5.562508 3.081414 +7.471917 5.562508 3.081414 +10.03574 5.562508 3.081414 +13.47828 5.562508 3.081414 +18.10068 5.562508 3.081414 +24.30731 5.562508 3.081414 +32.64117 5.562508 3.081414 +43.83129 5.562508 3.081414 +58.85664 5.562508 3.081414 +-0.0175068 7.471917 3.081414 +-0.01161267 7.471917 3.081414 +-0.005718534 7.471917 3.081414 +0.0001755984 7.471917 3.081414 +0.006069731 7.471917 3.081414 +0.01197402 7.471917 3.081414 +0.01903886 7.471917 3.081414 +0.02852504 7.471917 3.081414 +0.04126244 7.471917 3.081414 +0.05836535 7.471917 3.081414 +0.08132997 7.471917 3.081414 +0.1121653 7.471917 3.081414 +0.1535689 7.471917 3.081414 +0.2091628 7.471917 3.081414 +0.2838106 7.471917 3.081414 +0.3840425 7.471917 3.081414 +0.518627 7.471917 3.081414 +0.6993381 7.471917 3.081414 +0.9419845 7.471917 3.081414 +1.267794 7.471917 3.081414 +1.705268 7.471917 3.081414 +2.292679 7.471917 3.081414 +3.081414 7.471917 3.081414 +4.140474 7.471917 3.081414 +5.562508 7.471917 3.081414 +7.471917 7.471917 3.081414 +10.03574 7.471917 3.081414 +13.47828 7.471917 3.081414 +18.10068 7.471917 3.081414 +24.30731 7.471917 3.081414 +32.64117 7.471917 3.081414 +43.83129 7.471917 3.081414 +58.85664 7.471917 3.081414 +-0.0175068 10.03574 3.081414 +-0.01161267 10.03574 3.081414 +-0.005718534 10.03574 3.081414 +0.0001755984 10.03574 3.081414 +0.006069731 10.03574 3.081414 +0.01197402 10.03574 3.081414 +0.01903886 10.03574 3.081414 +0.02852504 10.03574 3.081414 +0.04126244 10.03574 3.081414 +0.05836535 10.03574 3.081414 +0.08132997 10.03574 3.081414 +0.1121653 10.03574 3.081414 +0.1535689 10.03574 3.081414 +0.2091628 10.03574 3.081414 +0.2838106 10.03574 3.081414 +0.3840425 10.03574 3.081414 +0.518627 10.03574 3.081414 +0.6993381 10.03574 3.081414 +0.9419845 10.03574 3.081414 +1.267794 10.03574 3.081414 +1.705268 10.03574 3.081414 +2.292679 10.03574 3.081414 +3.081414 10.03574 3.081414 +4.140474 10.03574 3.081414 +5.562508 10.03574 3.081414 +7.471917 10.03574 3.081414 +10.03574 10.03574 3.081414 +13.47828 10.03574 3.081414 +18.10068 10.03574 3.081414 +24.30731 10.03574 3.081414 +32.64117 10.03574 3.081414 +43.83129 10.03574 3.081414 +58.85664 10.03574 3.081414 +-0.0175068 13.47828 3.081414 +-0.01161267 13.47828 3.081414 +-0.005718534 13.47828 3.081414 +0.0001755984 13.47828 3.081414 +0.006069731 13.47828 3.081414 +0.01197402 13.47828 3.081414 +0.01903886 13.47828 3.081414 +0.02852504 13.47828 3.081414 +0.04126244 13.47828 3.081414 +0.05836535 13.47828 3.081414 +0.08132997 13.47828 3.081414 +0.1121653 13.47828 3.081414 +0.1535689 13.47828 3.081414 +0.2091628 13.47828 3.081414 +0.2838106 13.47828 3.081414 +0.3840425 13.47828 3.081414 +0.518627 13.47828 3.081414 +0.6993381 13.47828 3.081414 +0.9419845 13.47828 3.081414 +1.267794 13.47828 3.081414 +1.705268 13.47828 3.081414 +2.292679 13.47828 3.081414 +3.081414 13.47828 3.081414 +4.140474 13.47828 3.081414 +5.562508 13.47828 3.081414 +7.471917 13.47828 3.081414 +10.03574 13.47828 3.081414 +13.47828 13.47828 3.081414 +18.10068 13.47828 3.081414 +24.30731 13.47828 3.081414 +32.64117 13.47828 3.081414 +43.83129 13.47828 3.081414 +58.85664 13.47828 3.081414 +-0.0175068 18.10068 3.081414 +-0.01161267 18.10068 3.081414 +-0.005718534 18.10068 3.081414 +0.0001755984 18.10068 3.081414 +0.006069731 18.10068 3.081414 +0.01197402 18.10068 3.081414 +0.01903886 18.10068 3.081414 +0.02852504 18.10068 3.081414 +0.04126244 18.10068 3.081414 +0.05836535 18.10068 3.081414 +0.08132997 18.10068 3.081414 +0.1121653 18.10068 3.081414 +0.1535689 18.10068 3.081414 +0.2091628 18.10068 3.081414 +0.2838106 18.10068 3.081414 +0.3840425 18.10068 3.081414 +0.518627 18.10068 3.081414 +0.6993381 18.10068 3.081414 +0.9419845 18.10068 3.081414 +1.267794 18.10068 3.081414 +1.705268 18.10068 3.081414 +2.292679 18.10068 3.081414 +3.081414 18.10068 3.081414 +4.140474 18.10068 3.081414 +5.562508 18.10068 3.081414 +7.471917 18.10068 3.081414 +10.03574 18.10068 3.081414 +13.47828 18.10068 3.081414 +18.10068 18.10068 3.081414 +24.30731 18.10068 3.081414 +32.64117 18.10068 3.081414 +43.83129 18.10068 3.081414 +58.85664 18.10068 3.081414 +-0.0175068 24.30731 3.081414 +-0.01161267 24.30731 3.081414 +-0.005718534 24.30731 3.081414 +0.0001755984 24.30731 3.081414 +0.006069731 24.30731 3.081414 +0.01197402 24.30731 3.081414 +0.01903886 24.30731 3.081414 +0.02852504 24.30731 3.081414 +0.04126244 24.30731 3.081414 +0.05836535 24.30731 3.081414 +0.08132997 24.30731 3.081414 +0.1121653 24.30731 3.081414 +0.1535689 24.30731 3.081414 +0.2091628 24.30731 3.081414 +0.2838106 24.30731 3.081414 +0.3840425 24.30731 3.081414 +0.518627 24.30731 3.081414 +0.6993381 24.30731 3.081414 +0.9419845 24.30731 3.081414 +1.267794 24.30731 3.081414 +1.705268 24.30731 3.081414 +2.292679 24.30731 3.081414 +3.081414 24.30731 3.081414 +4.140474 24.30731 3.081414 +5.562508 24.30731 3.081414 +7.471917 24.30731 3.081414 +10.03574 24.30731 3.081414 +13.47828 24.30731 3.081414 +18.10068 24.30731 3.081414 +24.30731 24.30731 3.081414 +32.64117 24.30731 3.081414 +43.83129 24.30731 3.081414 +58.85664 24.30731 3.081414 +-0.0175068 32.64117 3.081414 +-0.01161267 32.64117 3.081414 +-0.005718534 32.64117 3.081414 +0.0001755984 32.64117 3.081414 +0.006069731 32.64117 3.081414 +0.01197402 32.64117 3.081414 +0.01903886 32.64117 3.081414 +0.02852504 32.64117 3.081414 +0.04126244 32.64117 3.081414 +0.05836535 32.64117 3.081414 +0.08132997 32.64117 3.081414 +0.1121653 32.64117 3.081414 +0.1535689 32.64117 3.081414 +0.2091628 32.64117 3.081414 +0.2838106 32.64117 3.081414 +0.3840425 32.64117 3.081414 +0.518627 32.64117 3.081414 +0.6993381 32.64117 3.081414 +0.9419845 32.64117 3.081414 +1.267794 32.64117 3.081414 +1.705268 32.64117 3.081414 +2.292679 32.64117 3.081414 +3.081414 32.64117 3.081414 +4.140474 32.64117 3.081414 +5.562508 32.64117 3.081414 +7.471917 32.64117 3.081414 +10.03574 32.64117 3.081414 +13.47828 32.64117 3.081414 +18.10068 32.64117 3.081414 +24.30731 32.64117 3.081414 +32.64117 32.64117 3.081414 +43.83129 32.64117 3.081414 +58.85664 32.64117 3.081414 +-0.0175068 43.83129 3.081414 +-0.01161267 43.83129 3.081414 +-0.005718534 43.83129 3.081414 +0.0001755984 43.83129 3.081414 +0.006069731 43.83129 3.081414 +0.01197402 43.83129 3.081414 +0.01903886 43.83129 3.081414 +0.02852504 43.83129 3.081414 +0.04126244 43.83129 3.081414 +0.05836535 43.83129 3.081414 +0.08132997 43.83129 3.081414 +0.1121653 43.83129 3.081414 +0.1535689 43.83129 3.081414 +0.2091628 43.83129 3.081414 +0.2838106 43.83129 3.081414 +0.3840425 43.83129 3.081414 +0.518627 43.83129 3.081414 +0.6993381 43.83129 3.081414 +0.9419845 43.83129 3.081414 +1.267794 43.83129 3.081414 +1.705268 43.83129 3.081414 +2.292679 43.83129 3.081414 +3.081414 43.83129 3.081414 +4.140474 43.83129 3.081414 +5.562508 43.83129 3.081414 +7.471917 43.83129 3.081414 +10.03574 43.83129 3.081414 +13.47828 43.83129 3.081414 +18.10068 43.83129 3.081414 +24.30731 43.83129 3.081414 +32.64117 43.83129 3.081414 +43.83129 43.83129 3.081414 +58.85664 43.83129 3.081414 +-0.0175068 58.85664 3.081414 +-0.01161267 58.85664 3.081414 +-0.005718534 58.85664 3.081414 +0.0001755984 58.85664 3.081414 +0.006069731 58.85664 3.081414 +0.01197402 58.85664 3.081414 +0.01903886 58.85664 3.081414 +0.02852504 58.85664 3.081414 +0.04126244 58.85664 3.081414 +0.05836535 58.85664 3.081414 +0.08132997 58.85664 3.081414 +0.1121653 58.85664 3.081414 +0.1535689 58.85664 3.081414 +0.2091628 58.85664 3.081414 +0.2838106 58.85664 3.081414 +0.3840425 58.85664 3.081414 +0.518627 58.85664 3.081414 +0.6993381 58.85664 3.081414 +0.9419845 58.85664 3.081414 +1.267794 58.85664 3.081414 +1.705268 58.85664 3.081414 +2.292679 58.85664 3.081414 +3.081414 58.85664 3.081414 +4.140474 58.85664 3.081414 +5.562508 58.85664 3.081414 +7.471917 58.85664 3.081414 +10.03574 58.85664 3.081414 +13.47828 58.85664 3.081414 +18.10068 58.85664 3.081414 +24.30731 58.85664 3.081414 +32.64117 58.85664 3.081414 +43.83129 58.85664 3.081414 +58.85664 58.85664 3.081414 +-0.0175068 -0.0175068 4.140474 +-0.01161267 -0.0175068 4.140474 +-0.005718534 -0.0175068 4.140474 +0.0001755984 -0.0175068 4.140474 +0.006069731 -0.0175068 4.140474 +0.01197402 -0.0175068 4.140474 +0.01903886 -0.0175068 4.140474 +0.02852504 -0.0175068 4.140474 +0.04126244 -0.0175068 4.140474 +0.05836535 -0.0175068 4.140474 +0.08132997 -0.0175068 4.140474 +0.1121653 -0.0175068 4.140474 +0.1535689 -0.0175068 4.140474 +0.2091628 -0.0175068 4.140474 +0.2838106 -0.0175068 4.140474 +0.3840425 -0.0175068 4.140474 +0.518627 -0.0175068 4.140474 +0.6993381 -0.0175068 4.140474 +0.9419845 -0.0175068 4.140474 +1.267794 -0.0175068 4.140474 +1.705268 -0.0175068 4.140474 +2.292679 -0.0175068 4.140474 +3.081414 -0.0175068 4.140474 +4.140474 -0.0175068 4.140474 +5.562508 -0.0175068 4.140474 +7.471917 -0.0175068 4.140474 +10.03574 -0.0175068 4.140474 +13.47828 -0.0175068 4.140474 +18.10068 -0.0175068 4.140474 +24.30731 -0.0175068 4.140474 +32.64117 -0.0175068 4.140474 +43.83129 -0.0175068 4.140474 +58.85664 -0.0175068 4.140474 +-0.0175068 -0.01161267 4.140474 +-0.01161267 -0.01161267 4.140474 +-0.005718534 -0.01161267 4.140474 +0.0001755984 -0.01161267 4.140474 +0.006069731 -0.01161267 4.140474 +0.01197402 -0.01161267 4.140474 +0.01903886 -0.01161267 4.140474 +0.02852504 -0.01161267 4.140474 +0.04126244 -0.01161267 4.140474 +0.05836535 -0.01161267 4.140474 +0.08132997 -0.01161267 4.140474 +0.1121653 -0.01161267 4.140474 +0.1535689 -0.01161267 4.140474 +0.2091628 -0.01161267 4.140474 +0.2838106 -0.01161267 4.140474 +0.3840425 -0.01161267 4.140474 +0.518627 -0.01161267 4.140474 +0.6993381 -0.01161267 4.140474 +0.9419845 -0.01161267 4.140474 +1.267794 -0.01161267 4.140474 +1.705268 -0.01161267 4.140474 +2.292679 -0.01161267 4.140474 +3.081414 -0.01161267 4.140474 +4.140474 -0.01161267 4.140474 +5.562508 -0.01161267 4.140474 +7.471917 -0.01161267 4.140474 +10.03574 -0.01161267 4.140474 +13.47828 -0.01161267 4.140474 +18.10068 -0.01161267 4.140474 +24.30731 -0.01161267 4.140474 +32.64117 -0.01161267 4.140474 +43.83129 -0.01161267 4.140474 +58.85664 -0.01161267 4.140474 +-0.0175068 -0.005718534 4.140474 +-0.01161267 -0.005718534 4.140474 +-0.005718534 -0.005718534 4.140474 +0.0001755984 -0.005718534 4.140474 +0.006069731 -0.005718534 4.140474 +0.01197402 -0.005718534 4.140474 +0.01903886 -0.005718534 4.140474 +0.02852504 -0.005718534 4.140474 +0.04126244 -0.005718534 4.140474 +0.05836535 -0.005718534 4.140474 +0.08132997 -0.005718534 4.140474 +0.1121653 -0.005718534 4.140474 +0.1535689 -0.005718534 4.140474 +0.2091628 -0.005718534 4.140474 +0.2838106 -0.005718534 4.140474 +0.3840425 -0.005718534 4.140474 +0.518627 -0.005718534 4.140474 +0.6993381 -0.005718534 4.140474 +0.9419845 -0.005718534 4.140474 +1.267794 -0.005718534 4.140474 +1.705268 -0.005718534 4.140474 +2.292679 -0.005718534 4.140474 +3.081414 -0.005718534 4.140474 +4.140474 -0.005718534 4.140474 +5.562508 -0.005718534 4.140474 +7.471917 -0.005718534 4.140474 +10.03574 -0.005718534 4.140474 +13.47828 -0.005718534 4.140474 +18.10068 -0.005718534 4.140474 +24.30731 -0.005718534 4.140474 +32.64117 -0.005718534 4.140474 +43.83129 -0.005718534 4.140474 +58.85664 -0.005718534 4.140474 +-0.0175068 0.0001755984 4.140474 +-0.01161267 0.0001755984 4.140474 +-0.005718534 0.0001755984 4.140474 +0.0001755984 0.0001755984 4.140474 +0.006069731 0.0001755984 4.140474 +0.01197402 0.0001755984 4.140474 +0.01903886 0.0001755984 4.140474 +0.02852504 0.0001755984 4.140474 +0.04126244 0.0001755984 4.140474 +0.05836535 0.0001755984 4.140474 +0.08132997 0.0001755984 4.140474 +0.1121653 0.0001755984 4.140474 +0.1535689 0.0001755984 4.140474 +0.2091628 0.0001755984 4.140474 +0.2838106 0.0001755984 4.140474 +0.3840425 0.0001755984 4.140474 +0.518627 0.0001755984 4.140474 +0.6993381 0.0001755984 4.140474 +0.9419845 0.0001755984 4.140474 +1.267794 0.0001755984 4.140474 +1.705268 0.0001755984 4.140474 +2.292679 0.0001755984 4.140474 +3.081414 0.0001755984 4.140474 +4.140474 0.0001755984 4.140474 +5.562508 0.0001755984 4.140474 +7.471917 0.0001755984 4.140474 +10.03574 0.0001755984 4.140474 +13.47828 0.0001755984 4.140474 +18.10068 0.0001755984 4.140474 +24.30731 0.0001755984 4.140474 +32.64117 0.0001755984 4.140474 +43.83129 0.0001755984 4.140474 +58.85664 0.0001755984 4.140474 +-0.0175068 0.006069731 4.140474 +-0.01161267 0.006069731 4.140474 +-0.005718534 0.006069731 4.140474 +0.0001755984 0.006069731 4.140474 +0.006069731 0.006069731 4.140474 +0.01197402 0.006069731 4.140474 +0.01903886 0.006069731 4.140474 +0.02852504 0.006069731 4.140474 +0.04126244 0.006069731 4.140474 +0.05836535 0.006069731 4.140474 +0.08132997 0.006069731 4.140474 +0.1121653 0.006069731 4.140474 +0.1535689 0.006069731 4.140474 +0.2091628 0.006069731 4.140474 +0.2838106 0.006069731 4.140474 +0.3840425 0.006069731 4.140474 +0.518627 0.006069731 4.140474 +0.6993381 0.006069731 4.140474 +0.9419845 0.006069731 4.140474 +1.267794 0.006069731 4.140474 +1.705268 0.006069731 4.140474 +2.292679 0.006069731 4.140474 +3.081414 0.006069731 4.140474 +4.140474 0.006069731 4.140474 +5.562508 0.006069731 4.140474 +7.471917 0.006069731 4.140474 +10.03574 0.006069731 4.140474 +13.47828 0.006069731 4.140474 +18.10068 0.006069731 4.140474 +24.30731 0.006069731 4.140474 +32.64117 0.006069731 4.140474 +43.83129 0.006069731 4.140474 +58.85664 0.006069731 4.140474 +-0.0175068 0.01197402 4.140474 +-0.01161267 0.01197402 4.140474 +-0.005718534 0.01197402 4.140474 +0.0001755984 0.01197402 4.140474 +0.006069731 0.01197402 4.140474 +0.01197402 0.01197402 4.140474 +0.01903886 0.01197402 4.140474 +0.02852504 0.01197402 4.140474 +0.04126244 0.01197402 4.140474 +0.05836535 0.01197402 4.140474 +0.08132997 0.01197402 4.140474 +0.1121653 0.01197402 4.140474 +0.1535689 0.01197402 4.140474 +0.2091628 0.01197402 4.140474 +0.2838106 0.01197402 4.140474 +0.3840425 0.01197402 4.140474 +0.518627 0.01197402 4.140474 +0.6993381 0.01197402 4.140474 +0.9419845 0.01197402 4.140474 +1.267794 0.01197402 4.140474 +1.705268 0.01197402 4.140474 +2.292679 0.01197402 4.140474 +3.081414 0.01197402 4.140474 +4.140474 0.01197402 4.140474 +5.562508 0.01197402 4.140474 +7.471917 0.01197402 4.140474 +10.03574 0.01197402 4.140474 +13.47828 0.01197402 4.140474 +18.10068 0.01197402 4.140474 +24.30731 0.01197402 4.140474 +32.64117 0.01197402 4.140474 +43.83129 0.01197402 4.140474 +58.85664 0.01197402 4.140474 +-0.0175068 0.01903886 4.140474 +-0.01161267 0.01903886 4.140474 +-0.005718534 0.01903886 4.140474 +0.0001755984 0.01903886 4.140474 +0.006069731 0.01903886 4.140474 +0.01197402 0.01903886 4.140474 +0.01903886 0.01903886 4.140474 +0.02852504 0.01903886 4.140474 +0.04126244 0.01903886 4.140474 +0.05836535 0.01903886 4.140474 +0.08132997 0.01903886 4.140474 +0.1121653 0.01903886 4.140474 +0.1535689 0.01903886 4.140474 +0.2091628 0.01903886 4.140474 +0.2838106 0.01903886 4.140474 +0.3840425 0.01903886 4.140474 +0.518627 0.01903886 4.140474 +0.6993381 0.01903886 4.140474 +0.9419845 0.01903886 4.140474 +1.267794 0.01903886 4.140474 +1.705268 0.01903886 4.140474 +2.292679 0.01903886 4.140474 +3.081414 0.01903886 4.140474 +4.140474 0.01903886 4.140474 +5.562508 0.01903886 4.140474 +7.471917 0.01903886 4.140474 +10.03574 0.01903886 4.140474 +13.47828 0.01903886 4.140474 +18.10068 0.01903886 4.140474 +24.30731 0.01903886 4.140474 +32.64117 0.01903886 4.140474 +43.83129 0.01903886 4.140474 +58.85664 0.01903886 4.140474 +-0.0175068 0.02852504 4.140474 +-0.01161267 0.02852504 4.140474 +-0.005718534 0.02852504 4.140474 +0.0001755984 0.02852504 4.140474 +0.006069731 0.02852504 4.140474 +0.01197402 0.02852504 4.140474 +0.01903886 0.02852504 4.140474 +0.02852504 0.02852504 4.140474 +0.04126244 0.02852504 4.140474 +0.05836535 0.02852504 4.140474 +0.08132997 0.02852504 4.140474 +0.1121653 0.02852504 4.140474 +0.1535689 0.02852504 4.140474 +0.2091628 0.02852504 4.140474 +0.2838106 0.02852504 4.140474 +0.3840425 0.02852504 4.140474 +0.518627 0.02852504 4.140474 +0.6993381 0.02852504 4.140474 +0.9419845 0.02852504 4.140474 +1.267794 0.02852504 4.140474 +1.705268 0.02852504 4.140474 +2.292679 0.02852504 4.140474 +3.081414 0.02852504 4.140474 +4.140474 0.02852504 4.140474 +5.562508 0.02852504 4.140474 +7.471917 0.02852504 4.140474 +10.03574 0.02852504 4.140474 +13.47828 0.02852504 4.140474 +18.10068 0.02852504 4.140474 +24.30731 0.02852504 4.140474 +32.64117 0.02852504 4.140474 +43.83129 0.02852504 4.140474 +58.85664 0.02852504 4.140474 +-0.0175068 0.04126244 4.140474 +-0.01161267 0.04126244 4.140474 +-0.005718534 0.04126244 4.140474 +0.0001755984 0.04126244 4.140474 +0.006069731 0.04126244 4.140474 +0.01197402 0.04126244 4.140474 +0.01903886 0.04126244 4.140474 +0.02852504 0.04126244 4.140474 +0.04126244 0.04126244 4.140474 +0.05836535 0.04126244 4.140474 +0.08132997 0.04126244 4.140474 +0.1121653 0.04126244 4.140474 +0.1535689 0.04126244 4.140474 +0.2091628 0.04126244 4.140474 +0.2838106 0.04126244 4.140474 +0.3840425 0.04126244 4.140474 +0.518627 0.04126244 4.140474 +0.6993381 0.04126244 4.140474 +0.9419845 0.04126244 4.140474 +1.267794 0.04126244 4.140474 +1.705268 0.04126244 4.140474 +2.292679 0.04126244 4.140474 +3.081414 0.04126244 4.140474 +4.140474 0.04126244 4.140474 +5.562508 0.04126244 4.140474 +7.471917 0.04126244 4.140474 +10.03574 0.04126244 4.140474 +13.47828 0.04126244 4.140474 +18.10068 0.04126244 4.140474 +24.30731 0.04126244 4.140474 +32.64117 0.04126244 4.140474 +43.83129 0.04126244 4.140474 +58.85664 0.04126244 4.140474 +-0.0175068 0.05836535 4.140474 +-0.01161267 0.05836535 4.140474 +-0.005718534 0.05836535 4.140474 +0.0001755984 0.05836535 4.140474 +0.006069731 0.05836535 4.140474 +0.01197402 0.05836535 4.140474 +0.01903886 0.05836535 4.140474 +0.02852504 0.05836535 4.140474 +0.04126244 0.05836535 4.140474 +0.05836535 0.05836535 4.140474 +0.08132997 0.05836535 4.140474 +0.1121653 0.05836535 4.140474 +0.1535689 0.05836535 4.140474 +0.2091628 0.05836535 4.140474 +0.2838106 0.05836535 4.140474 +0.3840425 0.05836535 4.140474 +0.518627 0.05836535 4.140474 +0.6993381 0.05836535 4.140474 +0.9419845 0.05836535 4.140474 +1.267794 0.05836535 4.140474 +1.705268 0.05836535 4.140474 +2.292679 0.05836535 4.140474 +3.081414 0.05836535 4.140474 +4.140474 0.05836535 4.140474 +5.562508 0.05836535 4.140474 +7.471917 0.05836535 4.140474 +10.03574 0.05836535 4.140474 +13.47828 0.05836535 4.140474 +18.10068 0.05836535 4.140474 +24.30731 0.05836535 4.140474 +32.64117 0.05836535 4.140474 +43.83129 0.05836535 4.140474 +58.85664 0.05836535 4.140474 +-0.0175068 0.08132997 4.140474 +-0.01161267 0.08132997 4.140474 +-0.005718534 0.08132997 4.140474 +0.0001755984 0.08132997 4.140474 +0.006069731 0.08132997 4.140474 +0.01197402 0.08132997 4.140474 +0.01903886 0.08132997 4.140474 +0.02852504 0.08132997 4.140474 +0.04126244 0.08132997 4.140474 +0.05836535 0.08132997 4.140474 +0.08132997 0.08132997 4.140474 +0.1121653 0.08132997 4.140474 +0.1535689 0.08132997 4.140474 +0.2091628 0.08132997 4.140474 +0.2838106 0.08132997 4.140474 +0.3840425 0.08132997 4.140474 +0.518627 0.08132997 4.140474 +0.6993381 0.08132997 4.140474 +0.9419845 0.08132997 4.140474 +1.267794 0.08132997 4.140474 +1.705268 0.08132997 4.140474 +2.292679 0.08132997 4.140474 +3.081414 0.08132997 4.140474 +4.140474 0.08132997 4.140474 +5.562508 0.08132997 4.140474 +7.471917 0.08132997 4.140474 +10.03574 0.08132997 4.140474 +13.47828 0.08132997 4.140474 +18.10068 0.08132997 4.140474 +24.30731 0.08132997 4.140474 +32.64117 0.08132997 4.140474 +43.83129 0.08132997 4.140474 +58.85664 0.08132997 4.140474 +-0.0175068 0.1121653 4.140474 +-0.01161267 0.1121653 4.140474 +-0.005718534 0.1121653 4.140474 +0.0001755984 0.1121653 4.140474 +0.006069731 0.1121653 4.140474 +0.01197402 0.1121653 4.140474 +0.01903886 0.1121653 4.140474 +0.02852504 0.1121653 4.140474 +0.04126244 0.1121653 4.140474 +0.05836535 0.1121653 4.140474 +0.08132997 0.1121653 4.140474 +0.1121653 0.1121653 4.140474 +0.1535689 0.1121653 4.140474 +0.2091628 0.1121653 4.140474 +0.2838106 0.1121653 4.140474 +0.3840425 0.1121653 4.140474 +0.518627 0.1121653 4.140474 +0.6993381 0.1121653 4.140474 +0.9419845 0.1121653 4.140474 +1.267794 0.1121653 4.140474 +1.705268 0.1121653 4.140474 +2.292679 0.1121653 4.140474 +3.081414 0.1121653 4.140474 +4.140474 0.1121653 4.140474 +5.562508 0.1121653 4.140474 +7.471917 0.1121653 4.140474 +10.03574 0.1121653 4.140474 +13.47828 0.1121653 4.140474 +18.10068 0.1121653 4.140474 +24.30731 0.1121653 4.140474 +32.64117 0.1121653 4.140474 +43.83129 0.1121653 4.140474 +58.85664 0.1121653 4.140474 +-0.0175068 0.1535689 4.140474 +-0.01161267 0.1535689 4.140474 +-0.005718534 0.1535689 4.140474 +0.0001755984 0.1535689 4.140474 +0.006069731 0.1535689 4.140474 +0.01197402 0.1535689 4.140474 +0.01903886 0.1535689 4.140474 +0.02852504 0.1535689 4.140474 +0.04126244 0.1535689 4.140474 +0.05836535 0.1535689 4.140474 +0.08132997 0.1535689 4.140474 +0.1121653 0.1535689 4.140474 +0.1535689 0.1535689 4.140474 +0.2091628 0.1535689 4.140474 +0.2838106 0.1535689 4.140474 +0.3840425 0.1535689 4.140474 +0.518627 0.1535689 4.140474 +0.6993381 0.1535689 4.140474 +0.9419845 0.1535689 4.140474 +1.267794 0.1535689 4.140474 +1.705268 0.1535689 4.140474 +2.292679 0.1535689 4.140474 +3.081414 0.1535689 4.140474 +4.140474 0.1535689 4.140474 +5.562508 0.1535689 4.140474 +7.471917 0.1535689 4.140474 +10.03574 0.1535689 4.140474 +13.47828 0.1535689 4.140474 +18.10068 0.1535689 4.140474 +24.30731 0.1535689 4.140474 +32.64117 0.1535689 4.140474 +43.83129 0.1535689 4.140474 +58.85664 0.1535689 4.140474 +-0.0175068 0.2091628 4.140474 +-0.01161267 0.2091628 4.140474 +-0.005718534 0.2091628 4.140474 +0.0001755984 0.2091628 4.140474 +0.006069731 0.2091628 4.140474 +0.01197402 0.2091628 4.140474 +0.01903886 0.2091628 4.140474 +0.02852504 0.2091628 4.140474 +0.04126244 0.2091628 4.140474 +0.05836535 0.2091628 4.140474 +0.08132997 0.2091628 4.140474 +0.1121653 0.2091628 4.140474 +0.1535689 0.2091628 4.140474 +0.2091628 0.2091628 4.140474 +0.2838106 0.2091628 4.140474 +0.3840425 0.2091628 4.140474 +0.518627 0.2091628 4.140474 +0.6993381 0.2091628 4.140474 +0.9419845 0.2091628 4.140474 +1.267794 0.2091628 4.140474 +1.705268 0.2091628 4.140474 +2.292679 0.2091628 4.140474 +3.081414 0.2091628 4.140474 +4.140474 0.2091628 4.140474 +5.562508 0.2091628 4.140474 +7.471917 0.2091628 4.140474 +10.03574 0.2091628 4.140474 +13.47828 0.2091628 4.140474 +18.10068 0.2091628 4.140474 +24.30731 0.2091628 4.140474 +32.64117 0.2091628 4.140474 +43.83129 0.2091628 4.140474 +58.85664 0.2091628 4.140474 +-0.0175068 0.2838106 4.140474 +-0.01161267 0.2838106 4.140474 +-0.005718534 0.2838106 4.140474 +0.0001755984 0.2838106 4.140474 +0.006069731 0.2838106 4.140474 +0.01197402 0.2838106 4.140474 +0.01903886 0.2838106 4.140474 +0.02852504 0.2838106 4.140474 +0.04126244 0.2838106 4.140474 +0.05836535 0.2838106 4.140474 +0.08132997 0.2838106 4.140474 +0.1121653 0.2838106 4.140474 +0.1535689 0.2838106 4.140474 +0.2091628 0.2838106 4.140474 +0.2838106 0.2838106 4.140474 +0.3840425 0.2838106 4.140474 +0.518627 0.2838106 4.140474 +0.6993381 0.2838106 4.140474 +0.9419845 0.2838106 4.140474 +1.267794 0.2838106 4.140474 +1.705268 0.2838106 4.140474 +2.292679 0.2838106 4.140474 +3.081414 0.2838106 4.140474 +4.140474 0.2838106 4.140474 +5.562508 0.2838106 4.140474 +7.471917 0.2838106 4.140474 +10.03574 0.2838106 4.140474 +13.47828 0.2838106 4.140474 +18.10068 0.2838106 4.140474 +24.30731 0.2838106 4.140474 +32.64117 0.2838106 4.140474 +43.83129 0.2838106 4.140474 +58.85664 0.2838106 4.140474 +-0.0175068 0.3840425 4.140474 +-0.01161267 0.3840425 4.140474 +-0.005718534 0.3840425 4.140474 +0.0001755984 0.3840425 4.140474 +0.006069731 0.3840425 4.140474 +0.01197402 0.3840425 4.140474 +0.01903886 0.3840425 4.140474 +0.02852504 0.3840425 4.140474 +0.04126244 0.3840425 4.140474 +0.05836535 0.3840425 4.140474 +0.08132997 0.3840425 4.140474 +0.1121653 0.3840425 4.140474 +0.1535689 0.3840425 4.140474 +0.2091628 0.3840425 4.140474 +0.2838106 0.3840425 4.140474 +0.3840425 0.3840425 4.140474 +0.518627 0.3840425 4.140474 +0.6993381 0.3840425 4.140474 +0.9419845 0.3840425 4.140474 +1.267794 0.3840425 4.140474 +1.705268 0.3840425 4.140474 +2.292679 0.3840425 4.140474 +3.081414 0.3840425 4.140474 +4.140474 0.3840425 4.140474 +5.562508 0.3840425 4.140474 +7.471917 0.3840425 4.140474 +10.03574 0.3840425 4.140474 +13.47828 0.3840425 4.140474 +18.10068 0.3840425 4.140474 +24.30731 0.3840425 4.140474 +32.64117 0.3840425 4.140474 +43.83129 0.3840425 4.140474 +58.85664 0.3840425 4.140474 +-0.0175068 0.518627 4.140474 +-0.01161267 0.518627 4.140474 +-0.005718534 0.518627 4.140474 +0.0001755984 0.518627 4.140474 +0.006069731 0.518627 4.140474 +0.01197402 0.518627 4.140474 +0.01903886 0.518627 4.140474 +0.02852504 0.518627 4.140474 +0.04126244 0.518627 4.140474 +0.05836535 0.518627 4.140474 +0.08132997 0.518627 4.140474 +0.1121653 0.518627 4.140474 +0.1535689 0.518627 4.140474 +0.2091628 0.518627 4.140474 +0.2838106 0.518627 4.140474 +0.3840425 0.518627 4.140474 +0.518627 0.518627 4.140474 +0.6993381 0.518627 4.140474 +0.9419845 0.518627 4.140474 +1.267794 0.518627 4.140474 +1.705268 0.518627 4.140474 +2.292679 0.518627 4.140474 +3.081414 0.518627 4.140474 +4.140474 0.518627 4.140474 +5.562508 0.518627 4.140474 +7.471917 0.518627 4.140474 +10.03574 0.518627 4.140474 +13.47828 0.518627 4.140474 +18.10068 0.518627 4.140474 +24.30731 0.518627 4.140474 +32.64117 0.518627 4.140474 +43.83129 0.518627 4.140474 +58.85664 0.518627 4.140474 +-0.0175068 0.6993381 4.140474 +-0.01161267 0.6993381 4.140474 +-0.005718534 0.6993381 4.140474 +0.0001755984 0.6993381 4.140474 +0.006069731 0.6993381 4.140474 +0.01197402 0.6993381 4.140474 +0.01903886 0.6993381 4.140474 +0.02852504 0.6993381 4.140474 +0.04126244 0.6993381 4.140474 +0.05836535 0.6993381 4.140474 +0.08132997 0.6993381 4.140474 +0.1121653 0.6993381 4.140474 +0.1535689 0.6993381 4.140474 +0.2091628 0.6993381 4.140474 +0.2838106 0.6993381 4.140474 +0.3840425 0.6993381 4.140474 +0.518627 0.6993381 4.140474 +0.6993381 0.6993381 4.140474 +0.9419845 0.6993381 4.140474 +1.267794 0.6993381 4.140474 +1.705268 0.6993381 4.140474 +2.292679 0.6993381 4.140474 +3.081414 0.6993381 4.140474 +4.140474 0.6993381 4.140474 +5.562508 0.6993381 4.140474 +7.471917 0.6993381 4.140474 +10.03574 0.6993381 4.140474 +13.47828 0.6993381 4.140474 +18.10068 0.6993381 4.140474 +24.30731 0.6993381 4.140474 +32.64117 0.6993381 4.140474 +43.83129 0.6993381 4.140474 +58.85664 0.6993381 4.140474 +-0.0175068 0.9419845 4.140474 +-0.01161267 0.9419845 4.140474 +-0.005718534 0.9419845 4.140474 +0.0001755984 0.9419845 4.140474 +0.006069731 0.9419845 4.140474 +0.01197402 0.9419845 4.140474 +0.01903886 0.9419845 4.140474 +0.02852504 0.9419845 4.140474 +0.04126244 0.9419845 4.140474 +0.05836535 0.9419845 4.140474 +0.08132997 0.9419845 4.140474 +0.1121653 0.9419845 4.140474 +0.1535689 0.9419845 4.140474 +0.2091628 0.9419845 4.140474 +0.2838106 0.9419845 4.140474 +0.3840425 0.9419845 4.140474 +0.518627 0.9419845 4.140474 +0.6993381 0.9419845 4.140474 +0.9419845 0.9419845 4.140474 +1.267794 0.9419845 4.140474 +1.705268 0.9419845 4.140474 +2.292679 0.9419845 4.140474 +3.081414 0.9419845 4.140474 +4.140474 0.9419845 4.140474 +5.562508 0.9419845 4.140474 +7.471917 0.9419845 4.140474 +10.03574 0.9419845 4.140474 +13.47828 0.9419845 4.140474 +18.10068 0.9419845 4.140474 +24.30731 0.9419845 4.140474 +32.64117 0.9419845 4.140474 +43.83129 0.9419845 4.140474 +58.85664 0.9419845 4.140474 +-0.0175068 1.267794 4.140474 +-0.01161267 1.267794 4.140474 +-0.005718534 1.267794 4.140474 +0.0001755984 1.267794 4.140474 +0.006069731 1.267794 4.140474 +0.01197402 1.267794 4.140474 +0.01903886 1.267794 4.140474 +0.02852504 1.267794 4.140474 +0.04126244 1.267794 4.140474 +0.05836535 1.267794 4.140474 +0.08132997 1.267794 4.140474 +0.1121653 1.267794 4.140474 +0.1535689 1.267794 4.140474 +0.2091628 1.267794 4.140474 +0.2838106 1.267794 4.140474 +0.3840425 1.267794 4.140474 +0.518627 1.267794 4.140474 +0.6993381 1.267794 4.140474 +0.9419845 1.267794 4.140474 +1.267794 1.267794 4.140474 +1.705268 1.267794 4.140474 +2.292679 1.267794 4.140474 +3.081414 1.267794 4.140474 +4.140474 1.267794 4.140474 +5.562508 1.267794 4.140474 +7.471917 1.267794 4.140474 +10.03574 1.267794 4.140474 +13.47828 1.267794 4.140474 +18.10068 1.267794 4.140474 +24.30731 1.267794 4.140474 +32.64117 1.267794 4.140474 +43.83129 1.267794 4.140474 +58.85664 1.267794 4.140474 +-0.0175068 1.705268 4.140474 +-0.01161267 1.705268 4.140474 +-0.005718534 1.705268 4.140474 +0.0001755984 1.705268 4.140474 +0.006069731 1.705268 4.140474 +0.01197402 1.705268 4.140474 +0.01903886 1.705268 4.140474 +0.02852504 1.705268 4.140474 +0.04126244 1.705268 4.140474 +0.05836535 1.705268 4.140474 +0.08132997 1.705268 4.140474 +0.1121653 1.705268 4.140474 +0.1535689 1.705268 4.140474 +0.2091628 1.705268 4.140474 +0.2838106 1.705268 4.140474 +0.3840425 1.705268 4.140474 +0.518627 1.705268 4.140474 +0.6993381 1.705268 4.140474 +0.9419845 1.705268 4.140474 +1.267794 1.705268 4.140474 +1.705268 1.705268 4.140474 +2.292679 1.705268 4.140474 +3.081414 1.705268 4.140474 +4.140474 1.705268 4.140474 +5.562508 1.705268 4.140474 +7.471917 1.705268 4.140474 +10.03574 1.705268 4.140474 +13.47828 1.705268 4.140474 +18.10068 1.705268 4.140474 +24.30731 1.705268 4.140474 +32.64117 1.705268 4.140474 +43.83129 1.705268 4.140474 +58.85664 1.705268 4.140474 +-0.0175068 2.292679 4.140474 +-0.01161267 2.292679 4.140474 +-0.005718534 2.292679 4.140474 +0.0001755984 2.292679 4.140474 +0.006069731 2.292679 4.140474 +0.01197402 2.292679 4.140474 +0.01903886 2.292679 4.140474 +0.02852504 2.292679 4.140474 +0.04126244 2.292679 4.140474 +0.05836535 2.292679 4.140474 +0.08132997 2.292679 4.140474 +0.1121653 2.292679 4.140474 +0.1535689 2.292679 4.140474 +0.2091628 2.292679 4.140474 +0.2838106 2.292679 4.140474 +0.3840425 2.292679 4.140474 +0.518627 2.292679 4.140474 +0.6993381 2.292679 4.140474 +0.9419845 2.292679 4.140474 +1.267794 2.292679 4.140474 +1.705268 2.292679 4.140474 +2.292679 2.292679 4.140474 +3.081414 2.292679 4.140474 +4.140474 2.292679 4.140474 +5.562508 2.292679 4.140474 +7.471917 2.292679 4.140474 +10.03574 2.292679 4.140474 +13.47828 2.292679 4.140474 +18.10068 2.292679 4.140474 +24.30731 2.292679 4.140474 +32.64117 2.292679 4.140474 +43.83129 2.292679 4.140474 +58.85664 2.292679 4.140474 +-0.0175068 3.081414 4.140474 +-0.01161267 3.081414 4.140474 +-0.005718534 3.081414 4.140474 +0.0001755984 3.081414 4.140474 +0.006069731 3.081414 4.140474 +0.01197402 3.081414 4.140474 +0.01903886 3.081414 4.140474 +0.02852504 3.081414 4.140474 +0.04126244 3.081414 4.140474 +0.05836535 3.081414 4.140474 +0.08132997 3.081414 4.140474 +0.1121653 3.081414 4.140474 +0.1535689 3.081414 4.140474 +0.2091628 3.081414 4.140474 +0.2838106 3.081414 4.140474 +0.3840425 3.081414 4.140474 +0.518627 3.081414 4.140474 +0.6993381 3.081414 4.140474 +0.9419845 3.081414 4.140474 +1.267794 3.081414 4.140474 +1.705268 3.081414 4.140474 +2.292679 3.081414 4.140474 +3.081414 3.081414 4.140474 +4.140474 3.081414 4.140474 +5.562508 3.081414 4.140474 +7.471917 3.081414 4.140474 +10.03574 3.081414 4.140474 +13.47828 3.081414 4.140474 +18.10068 3.081414 4.140474 +24.30731 3.081414 4.140474 +32.64117 3.081414 4.140474 +43.83129 3.081414 4.140474 +58.85664 3.081414 4.140474 +-0.0175068 4.140474 4.140474 +-0.01161267 4.140474 4.140474 +-0.005718534 4.140474 4.140474 +0.0001755984 4.140474 4.140474 +0.006069731 4.140474 4.140474 +0.01197402 4.140474 4.140474 +0.01903886 4.140474 4.140474 +0.02852504 4.140474 4.140474 +0.04126244 4.140474 4.140474 +0.05836535 4.140474 4.140474 +0.08132997 4.140474 4.140474 +0.1121653 4.140474 4.140474 +0.1535689 4.140474 4.140474 +0.2091628 4.140474 4.140474 +0.2838106 4.140474 4.140474 +0.3840425 4.140474 4.140474 +0.518627 4.140474 4.140474 +0.6993381 4.140474 4.140474 +0.9419845 4.140474 4.140474 +1.267794 4.140474 4.140474 +1.705268 4.140474 4.140474 +2.292679 4.140474 4.140474 +3.081414 4.140474 4.140474 +4.140474 4.140474 4.140474 +5.562508 4.140474 4.140474 +7.471917 4.140474 4.140474 +10.03574 4.140474 4.140474 +13.47828 4.140474 4.140474 +18.10068 4.140474 4.140474 +24.30731 4.140474 4.140474 +32.64117 4.140474 4.140474 +43.83129 4.140474 4.140474 +58.85664 4.140474 4.140474 +-0.0175068 5.562508 4.140474 +-0.01161267 5.562508 4.140474 +-0.005718534 5.562508 4.140474 +0.0001755984 5.562508 4.140474 +0.006069731 5.562508 4.140474 +0.01197402 5.562508 4.140474 +0.01903886 5.562508 4.140474 +0.02852504 5.562508 4.140474 +0.04126244 5.562508 4.140474 +0.05836535 5.562508 4.140474 +0.08132997 5.562508 4.140474 +0.1121653 5.562508 4.140474 +0.1535689 5.562508 4.140474 +0.2091628 5.562508 4.140474 +0.2838106 5.562508 4.140474 +0.3840425 5.562508 4.140474 +0.518627 5.562508 4.140474 +0.6993381 5.562508 4.140474 +0.9419845 5.562508 4.140474 +1.267794 5.562508 4.140474 +1.705268 5.562508 4.140474 +2.292679 5.562508 4.140474 +3.081414 5.562508 4.140474 +4.140474 5.562508 4.140474 +5.562508 5.562508 4.140474 +7.471917 5.562508 4.140474 +10.03574 5.562508 4.140474 +13.47828 5.562508 4.140474 +18.10068 5.562508 4.140474 +24.30731 5.562508 4.140474 +32.64117 5.562508 4.140474 +43.83129 5.562508 4.140474 +58.85664 5.562508 4.140474 +-0.0175068 7.471917 4.140474 +-0.01161267 7.471917 4.140474 +-0.005718534 7.471917 4.140474 +0.0001755984 7.471917 4.140474 +0.006069731 7.471917 4.140474 +0.01197402 7.471917 4.140474 +0.01903886 7.471917 4.140474 +0.02852504 7.471917 4.140474 +0.04126244 7.471917 4.140474 +0.05836535 7.471917 4.140474 +0.08132997 7.471917 4.140474 +0.1121653 7.471917 4.140474 +0.1535689 7.471917 4.140474 +0.2091628 7.471917 4.140474 +0.2838106 7.471917 4.140474 +0.3840425 7.471917 4.140474 +0.518627 7.471917 4.140474 +0.6993381 7.471917 4.140474 +0.9419845 7.471917 4.140474 +1.267794 7.471917 4.140474 +1.705268 7.471917 4.140474 +2.292679 7.471917 4.140474 +3.081414 7.471917 4.140474 +4.140474 7.471917 4.140474 +5.562508 7.471917 4.140474 +7.471917 7.471917 4.140474 +10.03574 7.471917 4.140474 +13.47828 7.471917 4.140474 +18.10068 7.471917 4.140474 +24.30731 7.471917 4.140474 +32.64117 7.471917 4.140474 +43.83129 7.471917 4.140474 +58.85664 7.471917 4.140474 +-0.0175068 10.03574 4.140474 +-0.01161267 10.03574 4.140474 +-0.005718534 10.03574 4.140474 +0.0001755984 10.03574 4.140474 +0.006069731 10.03574 4.140474 +0.01197402 10.03574 4.140474 +0.01903886 10.03574 4.140474 +0.02852504 10.03574 4.140474 +0.04126244 10.03574 4.140474 +0.05836535 10.03574 4.140474 +0.08132997 10.03574 4.140474 +0.1121653 10.03574 4.140474 +0.1535689 10.03574 4.140474 +0.2091628 10.03574 4.140474 +0.2838106 10.03574 4.140474 +0.3840425 10.03574 4.140474 +0.518627 10.03574 4.140474 +0.6993381 10.03574 4.140474 +0.9419845 10.03574 4.140474 +1.267794 10.03574 4.140474 +1.705268 10.03574 4.140474 +2.292679 10.03574 4.140474 +3.081414 10.03574 4.140474 +4.140474 10.03574 4.140474 +5.562508 10.03574 4.140474 +7.471917 10.03574 4.140474 +10.03574 10.03574 4.140474 +13.47828 10.03574 4.140474 +18.10068 10.03574 4.140474 +24.30731 10.03574 4.140474 +32.64117 10.03574 4.140474 +43.83129 10.03574 4.140474 +58.85664 10.03574 4.140474 +-0.0175068 13.47828 4.140474 +-0.01161267 13.47828 4.140474 +-0.005718534 13.47828 4.140474 +0.0001755984 13.47828 4.140474 +0.006069731 13.47828 4.140474 +0.01197402 13.47828 4.140474 +0.01903886 13.47828 4.140474 +0.02852504 13.47828 4.140474 +0.04126244 13.47828 4.140474 +0.05836535 13.47828 4.140474 +0.08132997 13.47828 4.140474 +0.1121653 13.47828 4.140474 +0.1535689 13.47828 4.140474 +0.2091628 13.47828 4.140474 +0.2838106 13.47828 4.140474 +0.3840425 13.47828 4.140474 +0.518627 13.47828 4.140474 +0.6993381 13.47828 4.140474 +0.9419845 13.47828 4.140474 +1.267794 13.47828 4.140474 +1.705268 13.47828 4.140474 +2.292679 13.47828 4.140474 +3.081414 13.47828 4.140474 +4.140474 13.47828 4.140474 +5.562508 13.47828 4.140474 +7.471917 13.47828 4.140474 +10.03574 13.47828 4.140474 +13.47828 13.47828 4.140474 +18.10068 13.47828 4.140474 +24.30731 13.47828 4.140474 +32.64117 13.47828 4.140474 +43.83129 13.47828 4.140474 +58.85664 13.47828 4.140474 +-0.0175068 18.10068 4.140474 +-0.01161267 18.10068 4.140474 +-0.005718534 18.10068 4.140474 +0.0001755984 18.10068 4.140474 +0.006069731 18.10068 4.140474 +0.01197402 18.10068 4.140474 +0.01903886 18.10068 4.140474 +0.02852504 18.10068 4.140474 +0.04126244 18.10068 4.140474 +0.05836535 18.10068 4.140474 +0.08132997 18.10068 4.140474 +0.1121653 18.10068 4.140474 +0.1535689 18.10068 4.140474 +0.2091628 18.10068 4.140474 +0.2838106 18.10068 4.140474 +0.3840425 18.10068 4.140474 +0.518627 18.10068 4.140474 +0.6993381 18.10068 4.140474 +0.9419845 18.10068 4.140474 +1.267794 18.10068 4.140474 +1.705268 18.10068 4.140474 +2.292679 18.10068 4.140474 +3.081414 18.10068 4.140474 +4.140474 18.10068 4.140474 +5.562508 18.10068 4.140474 +7.471917 18.10068 4.140474 +10.03574 18.10068 4.140474 +13.47828 18.10068 4.140474 +18.10068 18.10068 4.140474 +24.30731 18.10068 4.140474 +32.64117 18.10068 4.140474 +43.83129 18.10068 4.140474 +58.85664 18.10068 4.140474 +-0.0175068 24.30731 4.140474 +-0.01161267 24.30731 4.140474 +-0.005718534 24.30731 4.140474 +0.0001755984 24.30731 4.140474 +0.006069731 24.30731 4.140474 +0.01197402 24.30731 4.140474 +0.01903886 24.30731 4.140474 +0.02852504 24.30731 4.140474 +0.04126244 24.30731 4.140474 +0.05836535 24.30731 4.140474 +0.08132997 24.30731 4.140474 +0.1121653 24.30731 4.140474 +0.1535689 24.30731 4.140474 +0.2091628 24.30731 4.140474 +0.2838106 24.30731 4.140474 +0.3840425 24.30731 4.140474 +0.518627 24.30731 4.140474 +0.6993381 24.30731 4.140474 +0.9419845 24.30731 4.140474 +1.267794 24.30731 4.140474 +1.705268 24.30731 4.140474 +2.292679 24.30731 4.140474 +3.081414 24.30731 4.140474 +4.140474 24.30731 4.140474 +5.562508 24.30731 4.140474 +7.471917 24.30731 4.140474 +10.03574 24.30731 4.140474 +13.47828 24.30731 4.140474 +18.10068 24.30731 4.140474 +24.30731 24.30731 4.140474 +32.64117 24.30731 4.140474 +43.83129 24.30731 4.140474 +58.85664 24.30731 4.140474 +-0.0175068 32.64117 4.140474 +-0.01161267 32.64117 4.140474 +-0.005718534 32.64117 4.140474 +0.0001755984 32.64117 4.140474 +0.006069731 32.64117 4.140474 +0.01197402 32.64117 4.140474 +0.01903886 32.64117 4.140474 +0.02852504 32.64117 4.140474 +0.04126244 32.64117 4.140474 +0.05836535 32.64117 4.140474 +0.08132997 32.64117 4.140474 +0.1121653 32.64117 4.140474 +0.1535689 32.64117 4.140474 +0.2091628 32.64117 4.140474 +0.2838106 32.64117 4.140474 +0.3840425 32.64117 4.140474 +0.518627 32.64117 4.140474 +0.6993381 32.64117 4.140474 +0.9419845 32.64117 4.140474 +1.267794 32.64117 4.140474 +1.705268 32.64117 4.140474 +2.292679 32.64117 4.140474 +3.081414 32.64117 4.140474 +4.140474 32.64117 4.140474 +5.562508 32.64117 4.140474 +7.471917 32.64117 4.140474 +10.03574 32.64117 4.140474 +13.47828 32.64117 4.140474 +18.10068 32.64117 4.140474 +24.30731 32.64117 4.140474 +32.64117 32.64117 4.140474 +43.83129 32.64117 4.140474 +58.85664 32.64117 4.140474 +-0.0175068 43.83129 4.140474 +-0.01161267 43.83129 4.140474 +-0.005718534 43.83129 4.140474 +0.0001755984 43.83129 4.140474 +0.006069731 43.83129 4.140474 +0.01197402 43.83129 4.140474 +0.01903886 43.83129 4.140474 +0.02852504 43.83129 4.140474 +0.04126244 43.83129 4.140474 +0.05836535 43.83129 4.140474 +0.08132997 43.83129 4.140474 +0.1121653 43.83129 4.140474 +0.1535689 43.83129 4.140474 +0.2091628 43.83129 4.140474 +0.2838106 43.83129 4.140474 +0.3840425 43.83129 4.140474 +0.518627 43.83129 4.140474 +0.6993381 43.83129 4.140474 +0.9419845 43.83129 4.140474 +1.267794 43.83129 4.140474 +1.705268 43.83129 4.140474 +2.292679 43.83129 4.140474 +3.081414 43.83129 4.140474 +4.140474 43.83129 4.140474 +5.562508 43.83129 4.140474 +7.471917 43.83129 4.140474 +10.03574 43.83129 4.140474 +13.47828 43.83129 4.140474 +18.10068 43.83129 4.140474 +24.30731 43.83129 4.140474 +32.64117 43.83129 4.140474 +43.83129 43.83129 4.140474 +58.85664 43.83129 4.140474 +-0.0175068 58.85664 4.140474 +-0.01161267 58.85664 4.140474 +-0.005718534 58.85664 4.140474 +0.0001755984 58.85664 4.140474 +0.006069731 58.85664 4.140474 +0.01197402 58.85664 4.140474 +0.01903886 58.85664 4.140474 +0.02852504 58.85664 4.140474 +0.04126244 58.85664 4.140474 +0.05836535 58.85664 4.140474 +0.08132997 58.85664 4.140474 +0.1121653 58.85664 4.140474 +0.1535689 58.85664 4.140474 +0.2091628 58.85664 4.140474 +0.2838106 58.85664 4.140474 +0.3840425 58.85664 4.140474 +0.518627 58.85664 4.140474 +0.6993381 58.85664 4.140474 +0.9419845 58.85664 4.140474 +1.267794 58.85664 4.140474 +1.705268 58.85664 4.140474 +2.292679 58.85664 4.140474 +3.081414 58.85664 4.140474 +4.140474 58.85664 4.140474 +5.562508 58.85664 4.140474 +7.471917 58.85664 4.140474 +10.03574 58.85664 4.140474 +13.47828 58.85664 4.140474 +18.10068 58.85664 4.140474 +24.30731 58.85664 4.140474 +32.64117 58.85664 4.140474 +43.83129 58.85664 4.140474 +58.85664 58.85664 4.140474 +-0.0175068 -0.0175068 5.562508 +-0.01161267 -0.0175068 5.562508 +-0.005718534 -0.0175068 5.562508 +0.0001755984 -0.0175068 5.562508 +0.006069731 -0.0175068 5.562508 +0.01197402 -0.0175068 5.562508 +0.01903886 -0.0175068 5.562508 +0.02852504 -0.0175068 5.562508 +0.04126244 -0.0175068 5.562508 +0.05836535 -0.0175068 5.562508 +0.08132997 -0.0175068 5.562508 +0.1121653 -0.0175068 5.562508 +0.1535689 -0.0175068 5.562508 +0.2091628 -0.0175068 5.562508 +0.2838106 -0.0175068 5.562508 +0.3840425 -0.0175068 5.562508 +0.518627 -0.0175068 5.562508 +0.6993381 -0.0175068 5.562508 +0.9419845 -0.0175068 5.562508 +1.267794 -0.0175068 5.562508 +1.705268 -0.0175068 5.562508 +2.292679 -0.0175068 5.562508 +3.081414 -0.0175068 5.562508 +4.140474 -0.0175068 5.562508 +5.562508 -0.0175068 5.562508 +7.471917 -0.0175068 5.562508 +10.03574 -0.0175068 5.562508 +13.47828 -0.0175068 5.562508 +18.10068 -0.0175068 5.562508 +24.30731 -0.0175068 5.562508 +32.64117 -0.0175068 5.562508 +43.83129 -0.0175068 5.562508 +58.85664 -0.0175068 5.562508 +-0.0175068 -0.01161267 5.562508 +-0.01161267 -0.01161267 5.562508 +-0.005718534 -0.01161267 5.562508 +0.0001755984 -0.01161267 5.562508 +0.006069731 -0.01161267 5.562508 +0.01197402 -0.01161267 5.562508 +0.01903886 -0.01161267 5.562508 +0.02852504 -0.01161267 5.562508 +0.04126244 -0.01161267 5.562508 +0.05836535 -0.01161267 5.562508 +0.08132997 -0.01161267 5.562508 +0.1121653 -0.01161267 5.562508 +0.1535689 -0.01161267 5.562508 +0.2091628 -0.01161267 5.562508 +0.2838106 -0.01161267 5.562508 +0.3840425 -0.01161267 5.562508 +0.518627 -0.01161267 5.562508 +0.6993381 -0.01161267 5.562508 +0.9419845 -0.01161267 5.562508 +1.267794 -0.01161267 5.562508 +1.705268 -0.01161267 5.562508 +2.292679 -0.01161267 5.562508 +3.081414 -0.01161267 5.562508 +4.140474 -0.01161267 5.562508 +5.562508 -0.01161267 5.562508 +7.471917 -0.01161267 5.562508 +10.03574 -0.01161267 5.562508 +13.47828 -0.01161267 5.562508 +18.10068 -0.01161267 5.562508 +24.30731 -0.01161267 5.562508 +32.64117 -0.01161267 5.562508 +43.83129 -0.01161267 5.562508 +58.85664 -0.01161267 5.562508 +-0.0175068 -0.005718534 5.562508 +-0.01161267 -0.005718534 5.562508 +-0.005718534 -0.005718534 5.562508 +0.0001755984 -0.005718534 5.562508 +0.006069731 -0.005718534 5.562508 +0.01197402 -0.005718534 5.562508 +0.01903886 -0.005718534 5.562508 +0.02852504 -0.005718534 5.562508 +0.04126244 -0.005718534 5.562508 +0.05836535 -0.005718534 5.562508 +0.08132997 -0.005718534 5.562508 +0.1121653 -0.005718534 5.562508 +0.1535689 -0.005718534 5.562508 +0.2091628 -0.005718534 5.562508 +0.2838106 -0.005718534 5.562508 +0.3840425 -0.005718534 5.562508 +0.518627 -0.005718534 5.562508 +0.6993381 -0.005718534 5.562508 +0.9419845 -0.005718534 5.562508 +1.267794 -0.005718534 5.562508 +1.705268 -0.005718534 5.562508 +2.292679 -0.005718534 5.562508 +3.081414 -0.005718534 5.562508 +4.140474 -0.005718534 5.562508 +5.562508 -0.005718534 5.562508 +7.471917 -0.005718534 5.562508 +10.03574 -0.005718534 5.562508 +13.47828 -0.005718534 5.562508 +18.10068 -0.005718534 5.562508 +24.30731 -0.005718534 5.562508 +32.64117 -0.005718534 5.562508 +43.83129 -0.005718534 5.562508 +58.85664 -0.005718534 5.562508 +-0.0175068 0.0001755984 5.562508 +-0.01161267 0.0001755984 5.562508 +-0.005718534 0.0001755984 5.562508 +0.0001755984 0.0001755984 5.562508 +0.006069731 0.0001755984 5.562508 +0.01197402 0.0001755984 5.562508 +0.01903886 0.0001755984 5.562508 +0.02852504 0.0001755984 5.562508 +0.04126244 0.0001755984 5.562508 +0.05836535 0.0001755984 5.562508 +0.08132997 0.0001755984 5.562508 +0.1121653 0.0001755984 5.562508 +0.1535689 0.0001755984 5.562508 +0.2091628 0.0001755984 5.562508 +0.2838106 0.0001755984 5.562508 +0.3840425 0.0001755984 5.562508 +0.518627 0.0001755984 5.562508 +0.6993381 0.0001755984 5.562508 +0.9419845 0.0001755984 5.562508 +1.267794 0.0001755984 5.562508 +1.705268 0.0001755984 5.562508 +2.292679 0.0001755984 5.562508 +3.081414 0.0001755984 5.562508 +4.140474 0.0001755984 5.562508 +5.562508 0.0001755984 5.562508 +7.471917 0.0001755984 5.562508 +10.03574 0.0001755984 5.562508 +13.47828 0.0001755984 5.562508 +18.10068 0.0001755984 5.562508 +24.30731 0.0001755984 5.562508 +32.64117 0.0001755984 5.562508 +43.83129 0.0001755984 5.562508 +58.85664 0.0001755984 5.562508 +-0.0175068 0.006069731 5.562508 +-0.01161267 0.006069731 5.562508 +-0.005718534 0.006069731 5.562508 +0.0001755984 0.006069731 5.562508 +0.006069731 0.006069731 5.562508 +0.01197402 0.006069731 5.562508 +0.01903886 0.006069731 5.562508 +0.02852504 0.006069731 5.562508 +0.04126244 0.006069731 5.562508 +0.05836535 0.006069731 5.562508 +0.08132997 0.006069731 5.562508 +0.1121653 0.006069731 5.562508 +0.1535689 0.006069731 5.562508 +0.2091628 0.006069731 5.562508 +0.2838106 0.006069731 5.562508 +0.3840425 0.006069731 5.562508 +0.518627 0.006069731 5.562508 +0.6993381 0.006069731 5.562508 +0.9419845 0.006069731 5.562508 +1.267794 0.006069731 5.562508 +1.705268 0.006069731 5.562508 +2.292679 0.006069731 5.562508 +3.081414 0.006069731 5.562508 +4.140474 0.006069731 5.562508 +5.562508 0.006069731 5.562508 +7.471917 0.006069731 5.562508 +10.03574 0.006069731 5.562508 +13.47828 0.006069731 5.562508 +18.10068 0.006069731 5.562508 +24.30731 0.006069731 5.562508 +32.64117 0.006069731 5.562508 +43.83129 0.006069731 5.562508 +58.85664 0.006069731 5.562508 +-0.0175068 0.01197402 5.562508 +-0.01161267 0.01197402 5.562508 +-0.005718534 0.01197402 5.562508 +0.0001755984 0.01197402 5.562508 +0.006069731 0.01197402 5.562508 +0.01197402 0.01197402 5.562508 +0.01903886 0.01197402 5.562508 +0.02852504 0.01197402 5.562508 +0.04126244 0.01197402 5.562508 +0.05836535 0.01197402 5.562508 +0.08132997 0.01197402 5.562508 +0.1121653 0.01197402 5.562508 +0.1535689 0.01197402 5.562508 +0.2091628 0.01197402 5.562508 +0.2838106 0.01197402 5.562508 +0.3840425 0.01197402 5.562508 +0.518627 0.01197402 5.562508 +0.6993381 0.01197402 5.562508 +0.9419845 0.01197402 5.562508 +1.267794 0.01197402 5.562508 +1.705268 0.01197402 5.562508 +2.292679 0.01197402 5.562508 +3.081414 0.01197402 5.562508 +4.140474 0.01197402 5.562508 +5.562508 0.01197402 5.562508 +7.471917 0.01197402 5.562508 +10.03574 0.01197402 5.562508 +13.47828 0.01197402 5.562508 +18.10068 0.01197402 5.562508 +24.30731 0.01197402 5.562508 +32.64117 0.01197402 5.562508 +43.83129 0.01197402 5.562508 +58.85664 0.01197402 5.562508 +-0.0175068 0.01903886 5.562508 +-0.01161267 0.01903886 5.562508 +-0.005718534 0.01903886 5.562508 +0.0001755984 0.01903886 5.562508 +0.006069731 0.01903886 5.562508 +0.01197402 0.01903886 5.562508 +0.01903886 0.01903886 5.562508 +0.02852504 0.01903886 5.562508 +0.04126244 0.01903886 5.562508 +0.05836535 0.01903886 5.562508 +0.08132997 0.01903886 5.562508 +0.1121653 0.01903886 5.562508 +0.1535689 0.01903886 5.562508 +0.2091628 0.01903886 5.562508 +0.2838106 0.01903886 5.562508 +0.3840425 0.01903886 5.562508 +0.518627 0.01903886 5.562508 +0.6993381 0.01903886 5.562508 +0.9419845 0.01903886 5.562508 +1.267794 0.01903886 5.562508 +1.705268 0.01903886 5.562508 +2.292679 0.01903886 5.562508 +3.081414 0.01903886 5.562508 +4.140474 0.01903886 5.562508 +5.562508 0.01903886 5.562508 +7.471917 0.01903886 5.562508 +10.03574 0.01903886 5.562508 +13.47828 0.01903886 5.562508 +18.10068 0.01903886 5.562508 +24.30731 0.01903886 5.562508 +32.64117 0.01903886 5.562508 +43.83129 0.01903886 5.562508 +58.85664 0.01903886 5.562508 +-0.0175068 0.02852504 5.562508 +-0.01161267 0.02852504 5.562508 +-0.005718534 0.02852504 5.562508 +0.0001755984 0.02852504 5.562508 +0.006069731 0.02852504 5.562508 +0.01197402 0.02852504 5.562508 +0.01903886 0.02852504 5.562508 +0.02852504 0.02852504 5.562508 +0.04126244 0.02852504 5.562508 +0.05836535 0.02852504 5.562508 +0.08132997 0.02852504 5.562508 +0.1121653 0.02852504 5.562508 +0.1535689 0.02852504 5.562508 +0.2091628 0.02852504 5.562508 +0.2838106 0.02852504 5.562508 +0.3840425 0.02852504 5.562508 +0.518627 0.02852504 5.562508 +0.6993381 0.02852504 5.562508 +0.9419845 0.02852504 5.562508 +1.267794 0.02852504 5.562508 +1.705268 0.02852504 5.562508 +2.292679 0.02852504 5.562508 +3.081414 0.02852504 5.562508 +4.140474 0.02852504 5.562508 +5.562508 0.02852504 5.562508 +7.471917 0.02852504 5.562508 +10.03574 0.02852504 5.562508 +13.47828 0.02852504 5.562508 +18.10068 0.02852504 5.562508 +24.30731 0.02852504 5.562508 +32.64117 0.02852504 5.562508 +43.83129 0.02852504 5.562508 +58.85664 0.02852504 5.562508 +-0.0175068 0.04126244 5.562508 +-0.01161267 0.04126244 5.562508 +-0.005718534 0.04126244 5.562508 +0.0001755984 0.04126244 5.562508 +0.006069731 0.04126244 5.562508 +0.01197402 0.04126244 5.562508 +0.01903886 0.04126244 5.562508 +0.02852504 0.04126244 5.562508 +0.04126244 0.04126244 5.562508 +0.05836535 0.04126244 5.562508 +0.08132997 0.04126244 5.562508 +0.1121653 0.04126244 5.562508 +0.1535689 0.04126244 5.562508 +0.2091628 0.04126244 5.562508 +0.2838106 0.04126244 5.562508 +0.3840425 0.04126244 5.562508 +0.518627 0.04126244 5.562508 +0.6993381 0.04126244 5.562508 +0.9419845 0.04126244 5.562508 +1.267794 0.04126244 5.562508 +1.705268 0.04126244 5.562508 +2.292679 0.04126244 5.562508 +3.081414 0.04126244 5.562508 +4.140474 0.04126244 5.562508 +5.562508 0.04126244 5.562508 +7.471917 0.04126244 5.562508 +10.03574 0.04126244 5.562508 +13.47828 0.04126244 5.562508 +18.10068 0.04126244 5.562508 +24.30731 0.04126244 5.562508 +32.64117 0.04126244 5.562508 +43.83129 0.04126244 5.562508 +58.85664 0.04126244 5.562508 +-0.0175068 0.05836535 5.562508 +-0.01161267 0.05836535 5.562508 +-0.005718534 0.05836535 5.562508 +0.0001755984 0.05836535 5.562508 +0.006069731 0.05836535 5.562508 +0.01197402 0.05836535 5.562508 +0.01903886 0.05836535 5.562508 +0.02852504 0.05836535 5.562508 +0.04126244 0.05836535 5.562508 +0.05836535 0.05836535 5.562508 +0.08132997 0.05836535 5.562508 +0.1121653 0.05836535 5.562508 +0.1535689 0.05836535 5.562508 +0.2091628 0.05836535 5.562508 +0.2838106 0.05836535 5.562508 +0.3840425 0.05836535 5.562508 +0.518627 0.05836535 5.562508 +0.6993381 0.05836535 5.562508 +0.9419845 0.05836535 5.562508 +1.267794 0.05836535 5.562508 +1.705268 0.05836535 5.562508 +2.292679 0.05836535 5.562508 +3.081414 0.05836535 5.562508 +4.140474 0.05836535 5.562508 +5.562508 0.05836535 5.562508 +7.471917 0.05836535 5.562508 +10.03574 0.05836535 5.562508 +13.47828 0.05836535 5.562508 +18.10068 0.05836535 5.562508 +24.30731 0.05836535 5.562508 +32.64117 0.05836535 5.562508 +43.83129 0.05836535 5.562508 +58.85664 0.05836535 5.562508 +-0.0175068 0.08132997 5.562508 +-0.01161267 0.08132997 5.562508 +-0.005718534 0.08132997 5.562508 +0.0001755984 0.08132997 5.562508 +0.006069731 0.08132997 5.562508 +0.01197402 0.08132997 5.562508 +0.01903886 0.08132997 5.562508 +0.02852504 0.08132997 5.562508 +0.04126244 0.08132997 5.562508 +0.05836535 0.08132997 5.562508 +0.08132997 0.08132997 5.562508 +0.1121653 0.08132997 5.562508 +0.1535689 0.08132997 5.562508 +0.2091628 0.08132997 5.562508 +0.2838106 0.08132997 5.562508 +0.3840425 0.08132997 5.562508 +0.518627 0.08132997 5.562508 +0.6993381 0.08132997 5.562508 +0.9419845 0.08132997 5.562508 +1.267794 0.08132997 5.562508 +1.705268 0.08132997 5.562508 +2.292679 0.08132997 5.562508 +3.081414 0.08132997 5.562508 +4.140474 0.08132997 5.562508 +5.562508 0.08132997 5.562508 +7.471917 0.08132997 5.562508 +10.03574 0.08132997 5.562508 +13.47828 0.08132997 5.562508 +18.10068 0.08132997 5.562508 +24.30731 0.08132997 5.562508 +32.64117 0.08132997 5.562508 +43.83129 0.08132997 5.562508 +58.85664 0.08132997 5.562508 +-0.0175068 0.1121653 5.562508 +-0.01161267 0.1121653 5.562508 +-0.005718534 0.1121653 5.562508 +0.0001755984 0.1121653 5.562508 +0.006069731 0.1121653 5.562508 +0.01197402 0.1121653 5.562508 +0.01903886 0.1121653 5.562508 +0.02852504 0.1121653 5.562508 +0.04126244 0.1121653 5.562508 +0.05836535 0.1121653 5.562508 +0.08132997 0.1121653 5.562508 +0.1121653 0.1121653 5.562508 +0.1535689 0.1121653 5.562508 +0.2091628 0.1121653 5.562508 +0.2838106 0.1121653 5.562508 +0.3840425 0.1121653 5.562508 +0.518627 0.1121653 5.562508 +0.6993381 0.1121653 5.562508 +0.9419845 0.1121653 5.562508 +1.267794 0.1121653 5.562508 +1.705268 0.1121653 5.562508 +2.292679 0.1121653 5.562508 +3.081414 0.1121653 5.562508 +4.140474 0.1121653 5.562508 +5.562508 0.1121653 5.562508 +7.471917 0.1121653 5.562508 +10.03574 0.1121653 5.562508 +13.47828 0.1121653 5.562508 +18.10068 0.1121653 5.562508 +24.30731 0.1121653 5.562508 +32.64117 0.1121653 5.562508 +43.83129 0.1121653 5.562508 +58.85664 0.1121653 5.562508 +-0.0175068 0.1535689 5.562508 +-0.01161267 0.1535689 5.562508 +-0.005718534 0.1535689 5.562508 +0.0001755984 0.1535689 5.562508 +0.006069731 0.1535689 5.562508 +0.01197402 0.1535689 5.562508 +0.01903886 0.1535689 5.562508 +0.02852504 0.1535689 5.562508 +0.04126244 0.1535689 5.562508 +0.05836535 0.1535689 5.562508 +0.08132997 0.1535689 5.562508 +0.1121653 0.1535689 5.562508 +0.1535689 0.1535689 5.562508 +0.2091628 0.1535689 5.562508 +0.2838106 0.1535689 5.562508 +0.3840425 0.1535689 5.562508 +0.518627 0.1535689 5.562508 +0.6993381 0.1535689 5.562508 +0.9419845 0.1535689 5.562508 +1.267794 0.1535689 5.562508 +1.705268 0.1535689 5.562508 +2.292679 0.1535689 5.562508 +3.081414 0.1535689 5.562508 +4.140474 0.1535689 5.562508 +5.562508 0.1535689 5.562508 +7.471917 0.1535689 5.562508 +10.03574 0.1535689 5.562508 +13.47828 0.1535689 5.562508 +18.10068 0.1535689 5.562508 +24.30731 0.1535689 5.562508 +32.64117 0.1535689 5.562508 +43.83129 0.1535689 5.562508 +58.85664 0.1535689 5.562508 +-0.0175068 0.2091628 5.562508 +-0.01161267 0.2091628 5.562508 +-0.005718534 0.2091628 5.562508 +0.0001755984 0.2091628 5.562508 +0.006069731 0.2091628 5.562508 +0.01197402 0.2091628 5.562508 +0.01903886 0.2091628 5.562508 +0.02852504 0.2091628 5.562508 +0.04126244 0.2091628 5.562508 +0.05836535 0.2091628 5.562508 +0.08132997 0.2091628 5.562508 +0.1121653 0.2091628 5.562508 +0.1535689 0.2091628 5.562508 +0.2091628 0.2091628 5.562508 +0.2838106 0.2091628 5.562508 +0.3840425 0.2091628 5.562508 +0.518627 0.2091628 5.562508 +0.6993381 0.2091628 5.562508 +0.9419845 0.2091628 5.562508 +1.267794 0.2091628 5.562508 +1.705268 0.2091628 5.562508 +2.292679 0.2091628 5.562508 +3.081414 0.2091628 5.562508 +4.140474 0.2091628 5.562508 +5.562508 0.2091628 5.562508 +7.471917 0.2091628 5.562508 +10.03574 0.2091628 5.562508 +13.47828 0.2091628 5.562508 +18.10068 0.2091628 5.562508 +24.30731 0.2091628 5.562508 +32.64117 0.2091628 5.562508 +43.83129 0.2091628 5.562508 +58.85664 0.2091628 5.562508 +-0.0175068 0.2838106 5.562508 +-0.01161267 0.2838106 5.562508 +-0.005718534 0.2838106 5.562508 +0.0001755984 0.2838106 5.562508 +0.006069731 0.2838106 5.562508 +0.01197402 0.2838106 5.562508 +0.01903886 0.2838106 5.562508 +0.02852504 0.2838106 5.562508 +0.04126244 0.2838106 5.562508 +0.05836535 0.2838106 5.562508 +0.08132997 0.2838106 5.562508 +0.1121653 0.2838106 5.562508 +0.1535689 0.2838106 5.562508 +0.2091628 0.2838106 5.562508 +0.2838106 0.2838106 5.562508 +0.3840425 0.2838106 5.562508 +0.518627 0.2838106 5.562508 +0.6993381 0.2838106 5.562508 +0.9419845 0.2838106 5.562508 +1.267794 0.2838106 5.562508 +1.705268 0.2838106 5.562508 +2.292679 0.2838106 5.562508 +3.081414 0.2838106 5.562508 +4.140474 0.2838106 5.562508 +5.562508 0.2838106 5.562508 +7.471917 0.2838106 5.562508 +10.03574 0.2838106 5.562508 +13.47828 0.2838106 5.562508 +18.10068 0.2838106 5.562508 +24.30731 0.2838106 5.562508 +32.64117 0.2838106 5.562508 +43.83129 0.2838106 5.562508 +58.85664 0.2838106 5.562508 +-0.0175068 0.3840425 5.562508 +-0.01161267 0.3840425 5.562508 +-0.005718534 0.3840425 5.562508 +0.0001755984 0.3840425 5.562508 +0.006069731 0.3840425 5.562508 +0.01197402 0.3840425 5.562508 +0.01903886 0.3840425 5.562508 +0.02852504 0.3840425 5.562508 +0.04126244 0.3840425 5.562508 +0.05836535 0.3840425 5.562508 +0.08132997 0.3840425 5.562508 +0.1121653 0.3840425 5.562508 +0.1535689 0.3840425 5.562508 +0.2091628 0.3840425 5.562508 +0.2838106 0.3840425 5.562508 +0.3840425 0.3840425 5.562508 +0.518627 0.3840425 5.562508 +0.6993381 0.3840425 5.562508 +0.9419845 0.3840425 5.562508 +1.267794 0.3840425 5.562508 +1.705268 0.3840425 5.562508 +2.292679 0.3840425 5.562508 +3.081414 0.3840425 5.562508 +4.140474 0.3840425 5.562508 +5.562508 0.3840425 5.562508 +7.471917 0.3840425 5.562508 +10.03574 0.3840425 5.562508 +13.47828 0.3840425 5.562508 +18.10068 0.3840425 5.562508 +24.30731 0.3840425 5.562508 +32.64117 0.3840425 5.562508 +43.83129 0.3840425 5.562508 +58.85664 0.3840425 5.562508 +-0.0175068 0.518627 5.562508 +-0.01161267 0.518627 5.562508 +-0.005718534 0.518627 5.562508 +0.0001755984 0.518627 5.562508 +0.006069731 0.518627 5.562508 +0.01197402 0.518627 5.562508 +0.01903886 0.518627 5.562508 +0.02852504 0.518627 5.562508 +0.04126244 0.518627 5.562508 +0.05836535 0.518627 5.562508 +0.08132997 0.518627 5.562508 +0.1121653 0.518627 5.562508 +0.1535689 0.518627 5.562508 +0.2091628 0.518627 5.562508 +0.2838106 0.518627 5.562508 +0.3840425 0.518627 5.562508 +0.518627 0.518627 5.562508 +0.6993381 0.518627 5.562508 +0.9419845 0.518627 5.562508 +1.267794 0.518627 5.562508 +1.705268 0.518627 5.562508 +2.292679 0.518627 5.562508 +3.081414 0.518627 5.562508 +4.140474 0.518627 5.562508 +5.562508 0.518627 5.562508 +7.471917 0.518627 5.562508 +10.03574 0.518627 5.562508 +13.47828 0.518627 5.562508 +18.10068 0.518627 5.562508 +24.30731 0.518627 5.562508 +32.64117 0.518627 5.562508 +43.83129 0.518627 5.562508 +58.85664 0.518627 5.562508 +-0.0175068 0.6993381 5.562508 +-0.01161267 0.6993381 5.562508 +-0.005718534 0.6993381 5.562508 +0.0001755984 0.6993381 5.562508 +0.006069731 0.6993381 5.562508 +0.01197402 0.6993381 5.562508 +0.01903886 0.6993381 5.562508 +0.02852504 0.6993381 5.562508 +0.04126244 0.6993381 5.562508 +0.05836535 0.6993381 5.562508 +0.08132997 0.6993381 5.562508 +0.1121653 0.6993381 5.562508 +0.1535689 0.6993381 5.562508 +0.2091628 0.6993381 5.562508 +0.2838106 0.6993381 5.562508 +0.3840425 0.6993381 5.562508 +0.518627 0.6993381 5.562508 +0.6993381 0.6993381 5.562508 +0.9419845 0.6993381 5.562508 +1.267794 0.6993381 5.562508 +1.705268 0.6993381 5.562508 +2.292679 0.6993381 5.562508 +3.081414 0.6993381 5.562508 +4.140474 0.6993381 5.562508 +5.562508 0.6993381 5.562508 +7.471917 0.6993381 5.562508 +10.03574 0.6993381 5.562508 +13.47828 0.6993381 5.562508 +18.10068 0.6993381 5.562508 +24.30731 0.6993381 5.562508 +32.64117 0.6993381 5.562508 +43.83129 0.6993381 5.562508 +58.85664 0.6993381 5.562508 +-0.0175068 0.9419845 5.562508 +-0.01161267 0.9419845 5.562508 +-0.005718534 0.9419845 5.562508 +0.0001755984 0.9419845 5.562508 +0.006069731 0.9419845 5.562508 +0.01197402 0.9419845 5.562508 +0.01903886 0.9419845 5.562508 +0.02852504 0.9419845 5.562508 +0.04126244 0.9419845 5.562508 +0.05836535 0.9419845 5.562508 +0.08132997 0.9419845 5.562508 +0.1121653 0.9419845 5.562508 +0.1535689 0.9419845 5.562508 +0.2091628 0.9419845 5.562508 +0.2838106 0.9419845 5.562508 +0.3840425 0.9419845 5.562508 +0.518627 0.9419845 5.562508 +0.6993381 0.9419845 5.562508 +0.9419845 0.9419845 5.562508 +1.267794 0.9419845 5.562508 +1.705268 0.9419845 5.562508 +2.292679 0.9419845 5.562508 +3.081414 0.9419845 5.562508 +4.140474 0.9419845 5.562508 +5.562508 0.9419845 5.562508 +7.471917 0.9419845 5.562508 +10.03574 0.9419845 5.562508 +13.47828 0.9419845 5.562508 +18.10068 0.9419845 5.562508 +24.30731 0.9419845 5.562508 +32.64117 0.9419845 5.562508 +43.83129 0.9419845 5.562508 +58.85664 0.9419845 5.562508 +-0.0175068 1.267794 5.562508 +-0.01161267 1.267794 5.562508 +-0.005718534 1.267794 5.562508 +0.0001755984 1.267794 5.562508 +0.006069731 1.267794 5.562508 +0.01197402 1.267794 5.562508 +0.01903886 1.267794 5.562508 +0.02852504 1.267794 5.562508 +0.04126244 1.267794 5.562508 +0.05836535 1.267794 5.562508 +0.08132997 1.267794 5.562508 +0.1121653 1.267794 5.562508 +0.1535689 1.267794 5.562508 +0.2091628 1.267794 5.562508 +0.2838106 1.267794 5.562508 +0.3840425 1.267794 5.562508 +0.518627 1.267794 5.562508 +0.6993381 1.267794 5.562508 +0.9419845 1.267794 5.562508 +1.267794 1.267794 5.562508 +1.705268 1.267794 5.562508 +2.292679 1.267794 5.562508 +3.081414 1.267794 5.562508 +4.140474 1.267794 5.562508 +5.562508 1.267794 5.562508 +7.471917 1.267794 5.562508 +10.03574 1.267794 5.562508 +13.47828 1.267794 5.562508 +18.10068 1.267794 5.562508 +24.30731 1.267794 5.562508 +32.64117 1.267794 5.562508 +43.83129 1.267794 5.562508 +58.85664 1.267794 5.562508 +-0.0175068 1.705268 5.562508 +-0.01161267 1.705268 5.562508 +-0.005718534 1.705268 5.562508 +0.0001755984 1.705268 5.562508 +0.006069731 1.705268 5.562508 +0.01197402 1.705268 5.562508 +0.01903886 1.705268 5.562508 +0.02852504 1.705268 5.562508 +0.04126244 1.705268 5.562508 +0.05836535 1.705268 5.562508 +0.08132997 1.705268 5.562508 +0.1121653 1.705268 5.562508 +0.1535689 1.705268 5.562508 +0.2091628 1.705268 5.562508 +0.2838106 1.705268 5.562508 +0.3840425 1.705268 5.562508 +0.518627 1.705268 5.562508 +0.6993381 1.705268 5.562508 +0.9419845 1.705268 5.562508 +1.267794 1.705268 5.562508 +1.705268 1.705268 5.562508 +2.292679 1.705268 5.562508 +3.081414 1.705268 5.562508 +4.140474 1.705268 5.562508 +5.562508 1.705268 5.562508 +7.471917 1.705268 5.562508 +10.03574 1.705268 5.562508 +13.47828 1.705268 5.562508 +18.10068 1.705268 5.562508 +24.30731 1.705268 5.562508 +32.64117 1.705268 5.562508 +43.83129 1.705268 5.562508 +58.85664 1.705268 5.562508 +-0.0175068 2.292679 5.562508 +-0.01161267 2.292679 5.562508 +-0.005718534 2.292679 5.562508 +0.0001755984 2.292679 5.562508 +0.006069731 2.292679 5.562508 +0.01197402 2.292679 5.562508 +0.01903886 2.292679 5.562508 +0.02852504 2.292679 5.562508 +0.04126244 2.292679 5.562508 +0.05836535 2.292679 5.562508 +0.08132997 2.292679 5.562508 +0.1121653 2.292679 5.562508 +0.1535689 2.292679 5.562508 +0.2091628 2.292679 5.562508 +0.2838106 2.292679 5.562508 +0.3840425 2.292679 5.562508 +0.518627 2.292679 5.562508 +0.6993381 2.292679 5.562508 +0.9419845 2.292679 5.562508 +1.267794 2.292679 5.562508 +1.705268 2.292679 5.562508 +2.292679 2.292679 5.562508 +3.081414 2.292679 5.562508 +4.140474 2.292679 5.562508 +5.562508 2.292679 5.562508 +7.471917 2.292679 5.562508 +10.03574 2.292679 5.562508 +13.47828 2.292679 5.562508 +18.10068 2.292679 5.562508 +24.30731 2.292679 5.562508 +32.64117 2.292679 5.562508 +43.83129 2.292679 5.562508 +58.85664 2.292679 5.562508 +-0.0175068 3.081414 5.562508 +-0.01161267 3.081414 5.562508 +-0.005718534 3.081414 5.562508 +0.0001755984 3.081414 5.562508 +0.006069731 3.081414 5.562508 +0.01197402 3.081414 5.562508 +0.01903886 3.081414 5.562508 +0.02852504 3.081414 5.562508 +0.04126244 3.081414 5.562508 +0.05836535 3.081414 5.562508 +0.08132997 3.081414 5.562508 +0.1121653 3.081414 5.562508 +0.1535689 3.081414 5.562508 +0.2091628 3.081414 5.562508 +0.2838106 3.081414 5.562508 +0.3840425 3.081414 5.562508 +0.518627 3.081414 5.562508 +0.6993381 3.081414 5.562508 +0.9419845 3.081414 5.562508 +1.267794 3.081414 5.562508 +1.705268 3.081414 5.562508 +2.292679 3.081414 5.562508 +3.081414 3.081414 5.562508 +4.140474 3.081414 5.562508 +5.562508 3.081414 5.562508 +7.471917 3.081414 5.562508 +10.03574 3.081414 5.562508 +13.47828 3.081414 5.562508 +18.10068 3.081414 5.562508 +24.30731 3.081414 5.562508 +32.64117 3.081414 5.562508 +43.83129 3.081414 5.562508 +58.85664 3.081414 5.562508 +-0.0175068 4.140474 5.562508 +-0.01161267 4.140474 5.562508 +-0.005718534 4.140474 5.562508 +0.0001755984 4.140474 5.562508 +0.006069731 4.140474 5.562508 +0.01197402 4.140474 5.562508 +0.01903886 4.140474 5.562508 +0.02852504 4.140474 5.562508 +0.04126244 4.140474 5.562508 +0.05836535 4.140474 5.562508 +0.08132997 4.140474 5.562508 +0.1121653 4.140474 5.562508 +0.1535689 4.140474 5.562508 +0.2091628 4.140474 5.562508 +0.2838106 4.140474 5.562508 +0.3840425 4.140474 5.562508 +0.518627 4.140474 5.562508 +0.6993381 4.140474 5.562508 +0.9419845 4.140474 5.562508 +1.267794 4.140474 5.562508 +1.705268 4.140474 5.562508 +2.292679 4.140474 5.562508 +3.081414 4.140474 5.562508 +4.140474 4.140474 5.562508 +5.562508 4.140474 5.562508 +7.471917 4.140474 5.562508 +10.03574 4.140474 5.562508 +13.47828 4.140474 5.562508 +18.10068 4.140474 5.562508 +24.30731 4.140474 5.562508 +32.64117 4.140474 5.562508 +43.83129 4.140474 5.562508 +58.85664 4.140474 5.562508 +-0.0175068 5.562508 5.562508 +-0.01161267 5.562508 5.562508 +-0.005718534 5.562508 5.562508 +0.0001755984 5.562508 5.562508 +0.006069731 5.562508 5.562508 +0.01197402 5.562508 5.562508 +0.01903886 5.562508 5.562508 +0.02852504 5.562508 5.562508 +0.04126244 5.562508 5.562508 +0.05836535 5.562508 5.562508 +0.08132997 5.562508 5.562508 +0.1121653 5.562508 5.562508 +0.1535689 5.562508 5.562508 +0.2091628 5.562508 5.562508 +0.2838106 5.562508 5.562508 +0.3840425 5.562508 5.562508 +0.518627 5.562508 5.562508 +0.6993381 5.562508 5.562508 +0.9419845 5.562508 5.562508 +1.267794 5.562508 5.562508 +1.705268 5.562508 5.562508 +2.292679 5.562508 5.562508 +3.081414 5.562508 5.562508 +4.140474 5.562508 5.562508 +5.562508 5.562508 5.562508 +7.471917 5.562508 5.562508 +10.03574 5.562508 5.562508 +13.47828 5.562508 5.562508 +18.10068 5.562508 5.562508 +24.30731 5.562508 5.562508 +32.64117 5.562508 5.562508 +43.83129 5.562508 5.562508 +58.85664 5.562508 5.562508 +-0.0175068 7.471917 5.562508 +-0.01161267 7.471917 5.562508 +-0.005718534 7.471917 5.562508 +0.0001755984 7.471917 5.562508 +0.006069731 7.471917 5.562508 +0.01197402 7.471917 5.562508 +0.01903886 7.471917 5.562508 +0.02852504 7.471917 5.562508 +0.04126244 7.471917 5.562508 +0.05836535 7.471917 5.562508 +0.08132997 7.471917 5.562508 +0.1121653 7.471917 5.562508 +0.1535689 7.471917 5.562508 +0.2091628 7.471917 5.562508 +0.2838106 7.471917 5.562508 +0.3840425 7.471917 5.562508 +0.518627 7.471917 5.562508 +0.6993381 7.471917 5.562508 +0.9419845 7.471917 5.562508 +1.267794 7.471917 5.562508 +1.705268 7.471917 5.562508 +2.292679 7.471917 5.562508 +3.081414 7.471917 5.562508 +4.140474 7.471917 5.562508 +5.562508 7.471917 5.562508 +7.471917 7.471917 5.562508 +10.03574 7.471917 5.562508 +13.47828 7.471917 5.562508 +18.10068 7.471917 5.562508 +24.30731 7.471917 5.562508 +32.64117 7.471917 5.562508 +43.83129 7.471917 5.562508 +58.85664 7.471917 5.562508 +-0.0175068 10.03574 5.562508 +-0.01161267 10.03574 5.562508 +-0.005718534 10.03574 5.562508 +0.0001755984 10.03574 5.562508 +0.006069731 10.03574 5.562508 +0.01197402 10.03574 5.562508 +0.01903886 10.03574 5.562508 +0.02852504 10.03574 5.562508 +0.04126244 10.03574 5.562508 +0.05836535 10.03574 5.562508 +0.08132997 10.03574 5.562508 +0.1121653 10.03574 5.562508 +0.1535689 10.03574 5.562508 +0.2091628 10.03574 5.562508 +0.2838106 10.03574 5.562508 +0.3840425 10.03574 5.562508 +0.518627 10.03574 5.562508 +0.6993381 10.03574 5.562508 +0.9419845 10.03574 5.562508 +1.267794 10.03574 5.562508 +1.705268 10.03574 5.562508 +2.292679 10.03574 5.562508 +3.081414 10.03574 5.562508 +4.140474 10.03574 5.562508 +5.562508 10.03574 5.562508 +7.471917 10.03574 5.562508 +10.03574 10.03574 5.562508 +13.47828 10.03574 5.562508 +18.10068 10.03574 5.562508 +24.30731 10.03574 5.562508 +32.64117 10.03574 5.562508 +43.83129 10.03574 5.562508 +58.85664 10.03574 5.562508 +-0.0175068 13.47828 5.562508 +-0.01161267 13.47828 5.562508 +-0.005718534 13.47828 5.562508 +0.0001755984 13.47828 5.562508 +0.006069731 13.47828 5.562508 +0.01197402 13.47828 5.562508 +0.01903886 13.47828 5.562508 +0.02852504 13.47828 5.562508 +0.04126244 13.47828 5.562508 +0.05836535 13.47828 5.562508 +0.08132997 13.47828 5.562508 +0.1121653 13.47828 5.562508 +0.1535689 13.47828 5.562508 +0.2091628 13.47828 5.562508 +0.2838106 13.47828 5.562508 +0.3840425 13.47828 5.562508 +0.518627 13.47828 5.562508 +0.6993381 13.47828 5.562508 +0.9419845 13.47828 5.562508 +1.267794 13.47828 5.562508 +1.705268 13.47828 5.562508 +2.292679 13.47828 5.562508 +3.081414 13.47828 5.562508 +4.140474 13.47828 5.562508 +5.562508 13.47828 5.562508 +7.471917 13.47828 5.562508 +10.03574 13.47828 5.562508 +13.47828 13.47828 5.562508 +18.10068 13.47828 5.562508 +24.30731 13.47828 5.562508 +32.64117 13.47828 5.562508 +43.83129 13.47828 5.562508 +58.85664 13.47828 5.562508 +-0.0175068 18.10068 5.562508 +-0.01161267 18.10068 5.562508 +-0.005718534 18.10068 5.562508 +0.0001755984 18.10068 5.562508 +0.006069731 18.10068 5.562508 +0.01197402 18.10068 5.562508 +0.01903886 18.10068 5.562508 +0.02852504 18.10068 5.562508 +0.04126244 18.10068 5.562508 +0.05836535 18.10068 5.562508 +0.08132997 18.10068 5.562508 +0.1121653 18.10068 5.562508 +0.1535689 18.10068 5.562508 +0.2091628 18.10068 5.562508 +0.2838106 18.10068 5.562508 +0.3840425 18.10068 5.562508 +0.518627 18.10068 5.562508 +0.6993381 18.10068 5.562508 +0.9419845 18.10068 5.562508 +1.267794 18.10068 5.562508 +1.705268 18.10068 5.562508 +2.292679 18.10068 5.562508 +3.081414 18.10068 5.562508 +4.140474 18.10068 5.562508 +5.562508 18.10068 5.562508 +7.471917 18.10068 5.562508 +10.03574 18.10068 5.562508 +13.47828 18.10068 5.562508 +18.10068 18.10068 5.562508 +24.30731 18.10068 5.562508 +32.64117 18.10068 5.562508 +43.83129 18.10068 5.562508 +58.85664 18.10068 5.562508 +-0.0175068 24.30731 5.562508 +-0.01161267 24.30731 5.562508 +-0.005718534 24.30731 5.562508 +0.0001755984 24.30731 5.562508 +0.006069731 24.30731 5.562508 +0.01197402 24.30731 5.562508 +0.01903886 24.30731 5.562508 +0.02852504 24.30731 5.562508 +0.04126244 24.30731 5.562508 +0.05836535 24.30731 5.562508 +0.08132997 24.30731 5.562508 +0.1121653 24.30731 5.562508 +0.1535689 24.30731 5.562508 +0.2091628 24.30731 5.562508 +0.2838106 24.30731 5.562508 +0.3840425 24.30731 5.562508 +0.518627 24.30731 5.562508 +0.6993381 24.30731 5.562508 +0.9419845 24.30731 5.562508 +1.267794 24.30731 5.562508 +1.705268 24.30731 5.562508 +2.292679 24.30731 5.562508 +3.081414 24.30731 5.562508 +4.140474 24.30731 5.562508 +5.562508 24.30731 5.562508 +7.471917 24.30731 5.562508 +10.03574 24.30731 5.562508 +13.47828 24.30731 5.562508 +18.10068 24.30731 5.562508 +24.30731 24.30731 5.562508 +32.64117 24.30731 5.562508 +43.83129 24.30731 5.562508 +58.85664 24.30731 5.562508 +-0.0175068 32.64117 5.562508 +-0.01161267 32.64117 5.562508 +-0.005718534 32.64117 5.562508 +0.0001755984 32.64117 5.562508 +0.006069731 32.64117 5.562508 +0.01197402 32.64117 5.562508 +0.01903886 32.64117 5.562508 +0.02852504 32.64117 5.562508 +0.04126244 32.64117 5.562508 +0.05836535 32.64117 5.562508 +0.08132997 32.64117 5.562508 +0.1121653 32.64117 5.562508 +0.1535689 32.64117 5.562508 +0.2091628 32.64117 5.562508 +0.2838106 32.64117 5.562508 +0.3840425 32.64117 5.562508 +0.518627 32.64117 5.562508 +0.6993381 32.64117 5.562508 +0.9419845 32.64117 5.562508 +1.267794 32.64117 5.562508 +1.705268 32.64117 5.562508 +2.292679 32.64117 5.562508 +3.081414 32.64117 5.562508 +4.140474 32.64117 5.562508 +5.562508 32.64117 5.562508 +7.471917 32.64117 5.562508 +10.03574 32.64117 5.562508 +13.47828 32.64117 5.562508 +18.10068 32.64117 5.562508 +24.30731 32.64117 5.562508 +32.64117 32.64117 5.562508 +43.83129 32.64117 5.562508 +58.85664 32.64117 5.562508 +-0.0175068 43.83129 5.562508 +-0.01161267 43.83129 5.562508 +-0.005718534 43.83129 5.562508 +0.0001755984 43.83129 5.562508 +0.006069731 43.83129 5.562508 +0.01197402 43.83129 5.562508 +0.01903886 43.83129 5.562508 +0.02852504 43.83129 5.562508 +0.04126244 43.83129 5.562508 +0.05836535 43.83129 5.562508 +0.08132997 43.83129 5.562508 +0.1121653 43.83129 5.562508 +0.1535689 43.83129 5.562508 +0.2091628 43.83129 5.562508 +0.2838106 43.83129 5.562508 +0.3840425 43.83129 5.562508 +0.518627 43.83129 5.562508 +0.6993381 43.83129 5.562508 +0.9419845 43.83129 5.562508 +1.267794 43.83129 5.562508 +1.705268 43.83129 5.562508 +2.292679 43.83129 5.562508 +3.081414 43.83129 5.562508 +4.140474 43.83129 5.562508 +5.562508 43.83129 5.562508 +7.471917 43.83129 5.562508 +10.03574 43.83129 5.562508 +13.47828 43.83129 5.562508 +18.10068 43.83129 5.562508 +24.30731 43.83129 5.562508 +32.64117 43.83129 5.562508 +43.83129 43.83129 5.562508 +58.85664 43.83129 5.562508 +-0.0175068 58.85664 5.562508 +-0.01161267 58.85664 5.562508 +-0.005718534 58.85664 5.562508 +0.0001755984 58.85664 5.562508 +0.006069731 58.85664 5.562508 +0.01197402 58.85664 5.562508 +0.01903886 58.85664 5.562508 +0.02852504 58.85664 5.562508 +0.04126244 58.85664 5.562508 +0.05836535 58.85664 5.562508 +0.08132997 58.85664 5.562508 +0.1121653 58.85664 5.562508 +0.1535689 58.85664 5.562508 +0.2091628 58.85664 5.562508 +0.2838106 58.85664 5.562508 +0.3840425 58.85664 5.562508 +0.518627 58.85664 5.562508 +0.6993381 58.85664 5.562508 +0.9419845 58.85664 5.562508 +1.267794 58.85664 5.562508 +1.705268 58.85664 5.562508 +2.292679 58.85664 5.562508 +3.081414 58.85664 5.562508 +4.140474 58.85664 5.562508 +5.562508 58.85664 5.562508 +7.471917 58.85664 5.562508 +10.03574 58.85664 5.562508 +13.47828 58.85664 5.562508 +18.10068 58.85664 5.562508 +24.30731 58.85664 5.562508 +32.64117 58.85664 5.562508 +43.83129 58.85664 5.562508 +58.85664 58.85664 5.562508 +-0.0175068 -0.0175068 7.471917 +-0.01161267 -0.0175068 7.471917 +-0.005718534 -0.0175068 7.471917 +0.0001755984 -0.0175068 7.471917 +0.006069731 -0.0175068 7.471917 +0.01197402 -0.0175068 7.471917 +0.01903886 -0.0175068 7.471917 +0.02852504 -0.0175068 7.471917 +0.04126244 -0.0175068 7.471917 +0.05836535 -0.0175068 7.471917 +0.08132997 -0.0175068 7.471917 +0.1121653 -0.0175068 7.471917 +0.1535689 -0.0175068 7.471917 +0.2091628 -0.0175068 7.471917 +0.2838106 -0.0175068 7.471917 +0.3840425 -0.0175068 7.471917 +0.518627 -0.0175068 7.471917 +0.6993381 -0.0175068 7.471917 +0.9419845 -0.0175068 7.471917 +1.267794 -0.0175068 7.471917 +1.705268 -0.0175068 7.471917 +2.292679 -0.0175068 7.471917 +3.081414 -0.0175068 7.471917 +4.140474 -0.0175068 7.471917 +5.562508 -0.0175068 7.471917 +7.471917 -0.0175068 7.471917 +10.03574 -0.0175068 7.471917 +13.47828 -0.0175068 7.471917 +18.10068 -0.0175068 7.471917 +24.30731 -0.0175068 7.471917 +32.64117 -0.0175068 7.471917 +43.83129 -0.0175068 7.471917 +58.85664 -0.0175068 7.471917 +-0.0175068 -0.01161267 7.471917 +-0.01161267 -0.01161267 7.471917 +-0.005718534 -0.01161267 7.471917 +0.0001755984 -0.01161267 7.471917 +0.006069731 -0.01161267 7.471917 +0.01197402 -0.01161267 7.471917 +0.01903886 -0.01161267 7.471917 +0.02852504 -0.01161267 7.471917 +0.04126244 -0.01161267 7.471917 +0.05836535 -0.01161267 7.471917 +0.08132997 -0.01161267 7.471917 +0.1121653 -0.01161267 7.471917 +0.1535689 -0.01161267 7.471917 +0.2091628 -0.01161267 7.471917 +0.2838106 -0.01161267 7.471917 +0.3840425 -0.01161267 7.471917 +0.518627 -0.01161267 7.471917 +0.6993381 -0.01161267 7.471917 +0.9419845 -0.01161267 7.471917 +1.267794 -0.01161267 7.471917 +1.705268 -0.01161267 7.471917 +2.292679 -0.01161267 7.471917 +3.081414 -0.01161267 7.471917 +4.140474 -0.01161267 7.471917 +5.562508 -0.01161267 7.471917 +7.471917 -0.01161267 7.471917 +10.03574 -0.01161267 7.471917 +13.47828 -0.01161267 7.471917 +18.10068 -0.01161267 7.471917 +24.30731 -0.01161267 7.471917 +32.64117 -0.01161267 7.471917 +43.83129 -0.01161267 7.471917 +58.85664 -0.01161267 7.471917 +-0.0175068 -0.005718534 7.471917 +-0.01161267 -0.005718534 7.471917 +-0.005718534 -0.005718534 7.471917 +0.0001755984 -0.005718534 7.471917 +0.006069731 -0.005718534 7.471917 +0.01197402 -0.005718534 7.471917 +0.01903886 -0.005718534 7.471917 +0.02852504 -0.005718534 7.471917 +0.04126244 -0.005718534 7.471917 +0.05836535 -0.005718534 7.471917 +0.08132997 -0.005718534 7.471917 +0.1121653 -0.005718534 7.471917 +0.1535689 -0.005718534 7.471917 +0.2091628 -0.005718534 7.471917 +0.2838106 -0.005718534 7.471917 +0.3840425 -0.005718534 7.471917 +0.518627 -0.005718534 7.471917 +0.6993381 -0.005718534 7.471917 +0.9419845 -0.005718534 7.471917 +1.267794 -0.005718534 7.471917 +1.705268 -0.005718534 7.471917 +2.292679 -0.005718534 7.471917 +3.081414 -0.005718534 7.471917 +4.140474 -0.005718534 7.471917 +5.562508 -0.005718534 7.471917 +7.471917 -0.005718534 7.471917 +10.03574 -0.005718534 7.471917 +13.47828 -0.005718534 7.471917 +18.10068 -0.005718534 7.471917 +24.30731 -0.005718534 7.471917 +32.64117 -0.005718534 7.471917 +43.83129 -0.005718534 7.471917 +58.85664 -0.005718534 7.471917 +-0.0175068 0.0001755984 7.471917 +-0.01161267 0.0001755984 7.471917 +-0.005718534 0.0001755984 7.471917 +0.0001755984 0.0001755984 7.471917 +0.006069731 0.0001755984 7.471917 +0.01197402 0.0001755984 7.471917 +0.01903886 0.0001755984 7.471917 +0.02852504 0.0001755984 7.471917 +0.04126244 0.0001755984 7.471917 +0.05836535 0.0001755984 7.471917 +0.08132997 0.0001755984 7.471917 +0.1121653 0.0001755984 7.471917 +0.1535689 0.0001755984 7.471917 +0.2091628 0.0001755984 7.471917 +0.2838106 0.0001755984 7.471917 +0.3840425 0.0001755984 7.471917 +0.518627 0.0001755984 7.471917 +0.6993381 0.0001755984 7.471917 +0.9419845 0.0001755984 7.471917 +1.267794 0.0001755984 7.471917 +1.705268 0.0001755984 7.471917 +2.292679 0.0001755984 7.471917 +3.081414 0.0001755984 7.471917 +4.140474 0.0001755984 7.471917 +5.562508 0.0001755984 7.471917 +7.471917 0.0001755984 7.471917 +10.03574 0.0001755984 7.471917 +13.47828 0.0001755984 7.471917 +18.10068 0.0001755984 7.471917 +24.30731 0.0001755984 7.471917 +32.64117 0.0001755984 7.471917 +43.83129 0.0001755984 7.471917 +58.85664 0.0001755984 7.471917 +-0.0175068 0.006069731 7.471917 +-0.01161267 0.006069731 7.471917 +-0.005718534 0.006069731 7.471917 +0.0001755984 0.006069731 7.471917 +0.006069731 0.006069731 7.471917 +0.01197402 0.006069731 7.471917 +0.01903886 0.006069731 7.471917 +0.02852504 0.006069731 7.471917 +0.04126244 0.006069731 7.471917 +0.05836535 0.006069731 7.471917 +0.08132997 0.006069731 7.471917 +0.1121653 0.006069731 7.471917 +0.1535689 0.006069731 7.471917 +0.2091628 0.006069731 7.471917 +0.2838106 0.006069731 7.471917 +0.3840425 0.006069731 7.471917 +0.518627 0.006069731 7.471917 +0.6993381 0.006069731 7.471917 +0.9419845 0.006069731 7.471917 +1.267794 0.006069731 7.471917 +1.705268 0.006069731 7.471917 +2.292679 0.006069731 7.471917 +3.081414 0.006069731 7.471917 +4.140474 0.006069731 7.471917 +5.562508 0.006069731 7.471917 +7.471917 0.006069731 7.471917 +10.03574 0.006069731 7.471917 +13.47828 0.006069731 7.471917 +18.10068 0.006069731 7.471917 +24.30731 0.006069731 7.471917 +32.64117 0.006069731 7.471917 +43.83129 0.006069731 7.471917 +58.85664 0.006069731 7.471917 +-0.0175068 0.01197402 7.471917 +-0.01161267 0.01197402 7.471917 +-0.005718534 0.01197402 7.471917 +0.0001755984 0.01197402 7.471917 +0.006069731 0.01197402 7.471917 +0.01197402 0.01197402 7.471917 +0.01903886 0.01197402 7.471917 +0.02852504 0.01197402 7.471917 +0.04126244 0.01197402 7.471917 +0.05836535 0.01197402 7.471917 +0.08132997 0.01197402 7.471917 +0.1121653 0.01197402 7.471917 +0.1535689 0.01197402 7.471917 +0.2091628 0.01197402 7.471917 +0.2838106 0.01197402 7.471917 +0.3840425 0.01197402 7.471917 +0.518627 0.01197402 7.471917 +0.6993381 0.01197402 7.471917 +0.9419845 0.01197402 7.471917 +1.267794 0.01197402 7.471917 +1.705268 0.01197402 7.471917 +2.292679 0.01197402 7.471917 +3.081414 0.01197402 7.471917 +4.140474 0.01197402 7.471917 +5.562508 0.01197402 7.471917 +7.471917 0.01197402 7.471917 +10.03574 0.01197402 7.471917 +13.47828 0.01197402 7.471917 +18.10068 0.01197402 7.471917 +24.30731 0.01197402 7.471917 +32.64117 0.01197402 7.471917 +43.83129 0.01197402 7.471917 +58.85664 0.01197402 7.471917 +-0.0175068 0.01903886 7.471917 +-0.01161267 0.01903886 7.471917 +-0.005718534 0.01903886 7.471917 +0.0001755984 0.01903886 7.471917 +0.006069731 0.01903886 7.471917 +0.01197402 0.01903886 7.471917 +0.01903886 0.01903886 7.471917 +0.02852504 0.01903886 7.471917 +0.04126244 0.01903886 7.471917 +0.05836535 0.01903886 7.471917 +0.08132997 0.01903886 7.471917 +0.1121653 0.01903886 7.471917 +0.1535689 0.01903886 7.471917 +0.2091628 0.01903886 7.471917 +0.2838106 0.01903886 7.471917 +0.3840425 0.01903886 7.471917 +0.518627 0.01903886 7.471917 +0.6993381 0.01903886 7.471917 +0.9419845 0.01903886 7.471917 +1.267794 0.01903886 7.471917 +1.705268 0.01903886 7.471917 +2.292679 0.01903886 7.471917 +3.081414 0.01903886 7.471917 +4.140474 0.01903886 7.471917 +5.562508 0.01903886 7.471917 +7.471917 0.01903886 7.471917 +10.03574 0.01903886 7.471917 +13.47828 0.01903886 7.471917 +18.10068 0.01903886 7.471917 +24.30731 0.01903886 7.471917 +32.64117 0.01903886 7.471917 +43.83129 0.01903886 7.471917 +58.85664 0.01903886 7.471917 +-0.0175068 0.02852504 7.471917 +-0.01161267 0.02852504 7.471917 +-0.005718534 0.02852504 7.471917 +0.0001755984 0.02852504 7.471917 +0.006069731 0.02852504 7.471917 +0.01197402 0.02852504 7.471917 +0.01903886 0.02852504 7.471917 +0.02852504 0.02852504 7.471917 +0.04126244 0.02852504 7.471917 +0.05836535 0.02852504 7.471917 +0.08132997 0.02852504 7.471917 +0.1121653 0.02852504 7.471917 +0.1535689 0.02852504 7.471917 +0.2091628 0.02852504 7.471917 +0.2838106 0.02852504 7.471917 +0.3840425 0.02852504 7.471917 +0.518627 0.02852504 7.471917 +0.6993381 0.02852504 7.471917 +0.9419845 0.02852504 7.471917 +1.267794 0.02852504 7.471917 +1.705268 0.02852504 7.471917 +2.292679 0.02852504 7.471917 +3.081414 0.02852504 7.471917 +4.140474 0.02852504 7.471917 +5.562508 0.02852504 7.471917 +7.471917 0.02852504 7.471917 +10.03574 0.02852504 7.471917 +13.47828 0.02852504 7.471917 +18.10068 0.02852504 7.471917 +24.30731 0.02852504 7.471917 +32.64117 0.02852504 7.471917 +43.83129 0.02852504 7.471917 +58.85664 0.02852504 7.471917 +-0.0175068 0.04126244 7.471917 +-0.01161267 0.04126244 7.471917 +-0.005718534 0.04126244 7.471917 +0.0001755984 0.04126244 7.471917 +0.006069731 0.04126244 7.471917 +0.01197402 0.04126244 7.471917 +0.01903886 0.04126244 7.471917 +0.02852504 0.04126244 7.471917 +0.04126244 0.04126244 7.471917 +0.05836535 0.04126244 7.471917 +0.08132997 0.04126244 7.471917 +0.1121653 0.04126244 7.471917 +0.1535689 0.04126244 7.471917 +0.2091628 0.04126244 7.471917 +0.2838106 0.04126244 7.471917 +0.3840425 0.04126244 7.471917 +0.518627 0.04126244 7.471917 +0.6993381 0.04126244 7.471917 +0.9419845 0.04126244 7.471917 +1.267794 0.04126244 7.471917 +1.705268 0.04126244 7.471917 +2.292679 0.04126244 7.471917 +3.081414 0.04126244 7.471917 +4.140474 0.04126244 7.471917 +5.562508 0.04126244 7.471917 +7.471917 0.04126244 7.471917 +10.03574 0.04126244 7.471917 +13.47828 0.04126244 7.471917 +18.10068 0.04126244 7.471917 +24.30731 0.04126244 7.471917 +32.64117 0.04126244 7.471917 +43.83129 0.04126244 7.471917 +58.85664 0.04126244 7.471917 +-0.0175068 0.05836535 7.471917 +-0.01161267 0.05836535 7.471917 +-0.005718534 0.05836535 7.471917 +0.0001755984 0.05836535 7.471917 +0.006069731 0.05836535 7.471917 +0.01197402 0.05836535 7.471917 +0.01903886 0.05836535 7.471917 +0.02852504 0.05836535 7.471917 +0.04126244 0.05836535 7.471917 +0.05836535 0.05836535 7.471917 +0.08132997 0.05836535 7.471917 +0.1121653 0.05836535 7.471917 +0.1535689 0.05836535 7.471917 +0.2091628 0.05836535 7.471917 +0.2838106 0.05836535 7.471917 +0.3840425 0.05836535 7.471917 +0.518627 0.05836535 7.471917 +0.6993381 0.05836535 7.471917 +0.9419845 0.05836535 7.471917 +1.267794 0.05836535 7.471917 +1.705268 0.05836535 7.471917 +2.292679 0.05836535 7.471917 +3.081414 0.05836535 7.471917 +4.140474 0.05836535 7.471917 +5.562508 0.05836535 7.471917 +7.471917 0.05836535 7.471917 +10.03574 0.05836535 7.471917 +13.47828 0.05836535 7.471917 +18.10068 0.05836535 7.471917 +24.30731 0.05836535 7.471917 +32.64117 0.05836535 7.471917 +43.83129 0.05836535 7.471917 +58.85664 0.05836535 7.471917 +-0.0175068 0.08132997 7.471917 +-0.01161267 0.08132997 7.471917 +-0.005718534 0.08132997 7.471917 +0.0001755984 0.08132997 7.471917 +0.006069731 0.08132997 7.471917 +0.01197402 0.08132997 7.471917 +0.01903886 0.08132997 7.471917 +0.02852504 0.08132997 7.471917 +0.04126244 0.08132997 7.471917 +0.05836535 0.08132997 7.471917 +0.08132997 0.08132997 7.471917 +0.1121653 0.08132997 7.471917 +0.1535689 0.08132997 7.471917 +0.2091628 0.08132997 7.471917 +0.2838106 0.08132997 7.471917 +0.3840425 0.08132997 7.471917 +0.518627 0.08132997 7.471917 +0.6993381 0.08132997 7.471917 +0.9419845 0.08132997 7.471917 +1.267794 0.08132997 7.471917 +1.705268 0.08132997 7.471917 +2.292679 0.08132997 7.471917 +3.081414 0.08132997 7.471917 +4.140474 0.08132997 7.471917 +5.562508 0.08132997 7.471917 +7.471917 0.08132997 7.471917 +10.03574 0.08132997 7.471917 +13.47828 0.08132997 7.471917 +18.10068 0.08132997 7.471917 +24.30731 0.08132997 7.471917 +32.64117 0.08132997 7.471917 +43.83129 0.08132997 7.471917 +58.85664 0.08132997 7.471917 +-0.0175068 0.1121653 7.471917 +-0.01161267 0.1121653 7.471917 +-0.005718534 0.1121653 7.471917 +0.0001755984 0.1121653 7.471917 +0.006069731 0.1121653 7.471917 +0.01197402 0.1121653 7.471917 +0.01903886 0.1121653 7.471917 +0.02852504 0.1121653 7.471917 +0.04126244 0.1121653 7.471917 +0.05836535 0.1121653 7.471917 +0.08132997 0.1121653 7.471917 +0.1121653 0.1121653 7.471917 +0.1535689 0.1121653 7.471917 +0.2091628 0.1121653 7.471917 +0.2838106 0.1121653 7.471917 +0.3840425 0.1121653 7.471917 +0.518627 0.1121653 7.471917 +0.6993381 0.1121653 7.471917 +0.9419845 0.1121653 7.471917 +1.267794 0.1121653 7.471917 +1.705268 0.1121653 7.471917 +2.292679 0.1121653 7.471917 +3.081414 0.1121653 7.471917 +4.140474 0.1121653 7.471917 +5.562508 0.1121653 7.471917 +7.471917 0.1121653 7.471917 +10.03574 0.1121653 7.471917 +13.47828 0.1121653 7.471917 +18.10068 0.1121653 7.471917 +24.30731 0.1121653 7.471917 +32.64117 0.1121653 7.471917 +43.83129 0.1121653 7.471917 +58.85664 0.1121653 7.471917 +-0.0175068 0.1535689 7.471917 +-0.01161267 0.1535689 7.471917 +-0.005718534 0.1535689 7.471917 +0.0001755984 0.1535689 7.471917 +0.006069731 0.1535689 7.471917 +0.01197402 0.1535689 7.471917 +0.01903886 0.1535689 7.471917 +0.02852504 0.1535689 7.471917 +0.04126244 0.1535689 7.471917 +0.05836535 0.1535689 7.471917 +0.08132997 0.1535689 7.471917 +0.1121653 0.1535689 7.471917 +0.1535689 0.1535689 7.471917 +0.2091628 0.1535689 7.471917 +0.2838106 0.1535689 7.471917 +0.3840425 0.1535689 7.471917 +0.518627 0.1535689 7.471917 +0.6993381 0.1535689 7.471917 +0.9419845 0.1535689 7.471917 +1.267794 0.1535689 7.471917 +1.705268 0.1535689 7.471917 +2.292679 0.1535689 7.471917 +3.081414 0.1535689 7.471917 +4.140474 0.1535689 7.471917 +5.562508 0.1535689 7.471917 +7.471917 0.1535689 7.471917 +10.03574 0.1535689 7.471917 +13.47828 0.1535689 7.471917 +18.10068 0.1535689 7.471917 +24.30731 0.1535689 7.471917 +32.64117 0.1535689 7.471917 +43.83129 0.1535689 7.471917 +58.85664 0.1535689 7.471917 +-0.0175068 0.2091628 7.471917 +-0.01161267 0.2091628 7.471917 +-0.005718534 0.2091628 7.471917 +0.0001755984 0.2091628 7.471917 +0.006069731 0.2091628 7.471917 +0.01197402 0.2091628 7.471917 +0.01903886 0.2091628 7.471917 +0.02852504 0.2091628 7.471917 +0.04126244 0.2091628 7.471917 +0.05836535 0.2091628 7.471917 +0.08132997 0.2091628 7.471917 +0.1121653 0.2091628 7.471917 +0.1535689 0.2091628 7.471917 +0.2091628 0.2091628 7.471917 +0.2838106 0.2091628 7.471917 +0.3840425 0.2091628 7.471917 +0.518627 0.2091628 7.471917 +0.6993381 0.2091628 7.471917 +0.9419845 0.2091628 7.471917 +1.267794 0.2091628 7.471917 +1.705268 0.2091628 7.471917 +2.292679 0.2091628 7.471917 +3.081414 0.2091628 7.471917 +4.140474 0.2091628 7.471917 +5.562508 0.2091628 7.471917 +7.471917 0.2091628 7.471917 +10.03574 0.2091628 7.471917 +13.47828 0.2091628 7.471917 +18.10068 0.2091628 7.471917 +24.30731 0.2091628 7.471917 +32.64117 0.2091628 7.471917 +43.83129 0.2091628 7.471917 +58.85664 0.2091628 7.471917 +-0.0175068 0.2838106 7.471917 +-0.01161267 0.2838106 7.471917 +-0.005718534 0.2838106 7.471917 +0.0001755984 0.2838106 7.471917 +0.006069731 0.2838106 7.471917 +0.01197402 0.2838106 7.471917 +0.01903886 0.2838106 7.471917 +0.02852504 0.2838106 7.471917 +0.04126244 0.2838106 7.471917 +0.05836535 0.2838106 7.471917 +0.08132997 0.2838106 7.471917 +0.1121653 0.2838106 7.471917 +0.1535689 0.2838106 7.471917 +0.2091628 0.2838106 7.471917 +0.2838106 0.2838106 7.471917 +0.3840425 0.2838106 7.471917 +0.518627 0.2838106 7.471917 +0.6993381 0.2838106 7.471917 +0.9419845 0.2838106 7.471917 +1.267794 0.2838106 7.471917 +1.705268 0.2838106 7.471917 +2.292679 0.2838106 7.471917 +3.081414 0.2838106 7.471917 +4.140474 0.2838106 7.471917 +5.562508 0.2838106 7.471917 +7.471917 0.2838106 7.471917 +10.03574 0.2838106 7.471917 +13.47828 0.2838106 7.471917 +18.10068 0.2838106 7.471917 +24.30731 0.2838106 7.471917 +32.64117 0.2838106 7.471917 +43.83129 0.2838106 7.471917 +58.85664 0.2838106 7.471917 +-0.0175068 0.3840425 7.471917 +-0.01161267 0.3840425 7.471917 +-0.005718534 0.3840425 7.471917 +0.0001755984 0.3840425 7.471917 +0.006069731 0.3840425 7.471917 +0.01197402 0.3840425 7.471917 +0.01903886 0.3840425 7.471917 +0.02852504 0.3840425 7.471917 +0.04126244 0.3840425 7.471917 +0.05836535 0.3840425 7.471917 +0.08132997 0.3840425 7.471917 +0.1121653 0.3840425 7.471917 +0.1535689 0.3840425 7.471917 +0.2091628 0.3840425 7.471917 +0.2838106 0.3840425 7.471917 +0.3840425 0.3840425 7.471917 +0.518627 0.3840425 7.471917 +0.6993381 0.3840425 7.471917 +0.9419845 0.3840425 7.471917 +1.267794 0.3840425 7.471917 +1.705268 0.3840425 7.471917 +2.292679 0.3840425 7.471917 +3.081414 0.3840425 7.471917 +4.140474 0.3840425 7.471917 +5.562508 0.3840425 7.471917 +7.471917 0.3840425 7.471917 +10.03574 0.3840425 7.471917 +13.47828 0.3840425 7.471917 +18.10068 0.3840425 7.471917 +24.30731 0.3840425 7.471917 +32.64117 0.3840425 7.471917 +43.83129 0.3840425 7.471917 +58.85664 0.3840425 7.471917 +-0.0175068 0.518627 7.471917 +-0.01161267 0.518627 7.471917 +-0.005718534 0.518627 7.471917 +0.0001755984 0.518627 7.471917 +0.006069731 0.518627 7.471917 +0.01197402 0.518627 7.471917 +0.01903886 0.518627 7.471917 +0.02852504 0.518627 7.471917 +0.04126244 0.518627 7.471917 +0.05836535 0.518627 7.471917 +0.08132997 0.518627 7.471917 +0.1121653 0.518627 7.471917 +0.1535689 0.518627 7.471917 +0.2091628 0.518627 7.471917 +0.2838106 0.518627 7.471917 +0.3840425 0.518627 7.471917 +0.518627 0.518627 7.471917 +0.6993381 0.518627 7.471917 +0.9419845 0.518627 7.471917 +1.267794 0.518627 7.471917 +1.705268 0.518627 7.471917 +2.292679 0.518627 7.471917 +3.081414 0.518627 7.471917 +4.140474 0.518627 7.471917 +5.562508 0.518627 7.471917 +7.471917 0.518627 7.471917 +10.03574 0.518627 7.471917 +13.47828 0.518627 7.471917 +18.10068 0.518627 7.471917 +24.30731 0.518627 7.471917 +32.64117 0.518627 7.471917 +43.83129 0.518627 7.471917 +58.85664 0.518627 7.471917 +-0.0175068 0.6993381 7.471917 +-0.01161267 0.6993381 7.471917 +-0.005718534 0.6993381 7.471917 +0.0001755984 0.6993381 7.471917 +0.006069731 0.6993381 7.471917 +0.01197402 0.6993381 7.471917 +0.01903886 0.6993381 7.471917 +0.02852504 0.6993381 7.471917 +0.04126244 0.6993381 7.471917 +0.05836535 0.6993381 7.471917 +0.08132997 0.6993381 7.471917 +0.1121653 0.6993381 7.471917 +0.1535689 0.6993381 7.471917 +0.2091628 0.6993381 7.471917 +0.2838106 0.6993381 7.471917 +0.3840425 0.6993381 7.471917 +0.518627 0.6993381 7.471917 +0.6993381 0.6993381 7.471917 +0.9419845 0.6993381 7.471917 +1.267794 0.6993381 7.471917 +1.705268 0.6993381 7.471917 +2.292679 0.6993381 7.471917 +3.081414 0.6993381 7.471917 +4.140474 0.6993381 7.471917 +5.562508 0.6993381 7.471917 +7.471917 0.6993381 7.471917 +10.03574 0.6993381 7.471917 +13.47828 0.6993381 7.471917 +18.10068 0.6993381 7.471917 +24.30731 0.6993381 7.471917 +32.64117 0.6993381 7.471917 +43.83129 0.6993381 7.471917 +58.85664 0.6993381 7.471917 +-0.0175068 0.9419845 7.471917 +-0.01161267 0.9419845 7.471917 +-0.005718534 0.9419845 7.471917 +0.0001755984 0.9419845 7.471917 +0.006069731 0.9419845 7.471917 +0.01197402 0.9419845 7.471917 +0.01903886 0.9419845 7.471917 +0.02852504 0.9419845 7.471917 +0.04126244 0.9419845 7.471917 +0.05836535 0.9419845 7.471917 +0.08132997 0.9419845 7.471917 +0.1121653 0.9419845 7.471917 +0.1535689 0.9419845 7.471917 +0.2091628 0.9419845 7.471917 +0.2838106 0.9419845 7.471917 +0.3840425 0.9419845 7.471917 +0.518627 0.9419845 7.471917 +0.6993381 0.9419845 7.471917 +0.9419845 0.9419845 7.471917 +1.267794 0.9419845 7.471917 +1.705268 0.9419845 7.471917 +2.292679 0.9419845 7.471917 +3.081414 0.9419845 7.471917 +4.140474 0.9419845 7.471917 +5.562508 0.9419845 7.471917 +7.471917 0.9419845 7.471917 +10.03574 0.9419845 7.471917 +13.47828 0.9419845 7.471917 +18.10068 0.9419845 7.471917 +24.30731 0.9419845 7.471917 +32.64117 0.9419845 7.471917 +43.83129 0.9419845 7.471917 +58.85664 0.9419845 7.471917 +-0.0175068 1.267794 7.471917 +-0.01161267 1.267794 7.471917 +-0.005718534 1.267794 7.471917 +0.0001755984 1.267794 7.471917 +0.006069731 1.267794 7.471917 +0.01197402 1.267794 7.471917 +0.01903886 1.267794 7.471917 +0.02852504 1.267794 7.471917 +0.04126244 1.267794 7.471917 +0.05836535 1.267794 7.471917 +0.08132997 1.267794 7.471917 +0.1121653 1.267794 7.471917 +0.1535689 1.267794 7.471917 +0.2091628 1.267794 7.471917 +0.2838106 1.267794 7.471917 +0.3840425 1.267794 7.471917 +0.518627 1.267794 7.471917 +0.6993381 1.267794 7.471917 +0.9419845 1.267794 7.471917 +1.267794 1.267794 7.471917 +1.705268 1.267794 7.471917 +2.292679 1.267794 7.471917 +3.081414 1.267794 7.471917 +4.140474 1.267794 7.471917 +5.562508 1.267794 7.471917 +7.471917 1.267794 7.471917 +10.03574 1.267794 7.471917 +13.47828 1.267794 7.471917 +18.10068 1.267794 7.471917 +24.30731 1.267794 7.471917 +32.64117 1.267794 7.471917 +43.83129 1.267794 7.471917 +58.85664 1.267794 7.471917 +-0.0175068 1.705268 7.471917 +-0.01161267 1.705268 7.471917 +-0.005718534 1.705268 7.471917 +0.0001755984 1.705268 7.471917 +0.006069731 1.705268 7.471917 +0.01197402 1.705268 7.471917 +0.01903886 1.705268 7.471917 +0.02852504 1.705268 7.471917 +0.04126244 1.705268 7.471917 +0.05836535 1.705268 7.471917 +0.08132997 1.705268 7.471917 +0.1121653 1.705268 7.471917 +0.1535689 1.705268 7.471917 +0.2091628 1.705268 7.471917 +0.2838106 1.705268 7.471917 +0.3840425 1.705268 7.471917 +0.518627 1.705268 7.471917 +0.6993381 1.705268 7.471917 +0.9419845 1.705268 7.471917 +1.267794 1.705268 7.471917 +1.705268 1.705268 7.471917 +2.292679 1.705268 7.471917 +3.081414 1.705268 7.471917 +4.140474 1.705268 7.471917 +5.562508 1.705268 7.471917 +7.471917 1.705268 7.471917 +10.03574 1.705268 7.471917 +13.47828 1.705268 7.471917 +18.10068 1.705268 7.471917 +24.30731 1.705268 7.471917 +32.64117 1.705268 7.471917 +43.83129 1.705268 7.471917 +58.85664 1.705268 7.471917 +-0.0175068 2.292679 7.471917 +-0.01161267 2.292679 7.471917 +-0.005718534 2.292679 7.471917 +0.0001755984 2.292679 7.471917 +0.006069731 2.292679 7.471917 +0.01197402 2.292679 7.471917 +0.01903886 2.292679 7.471917 +0.02852504 2.292679 7.471917 +0.04126244 2.292679 7.471917 +0.05836535 2.292679 7.471917 +0.08132997 2.292679 7.471917 +0.1121653 2.292679 7.471917 +0.1535689 2.292679 7.471917 +0.2091628 2.292679 7.471917 +0.2838106 2.292679 7.471917 +0.3840425 2.292679 7.471917 +0.518627 2.292679 7.471917 +0.6993381 2.292679 7.471917 +0.9419845 2.292679 7.471917 +1.267794 2.292679 7.471917 +1.705268 2.292679 7.471917 +2.292679 2.292679 7.471917 +3.081414 2.292679 7.471917 +4.140474 2.292679 7.471917 +5.562508 2.292679 7.471917 +7.471917 2.292679 7.471917 +10.03574 2.292679 7.471917 +13.47828 2.292679 7.471917 +18.10068 2.292679 7.471917 +24.30731 2.292679 7.471917 +32.64117 2.292679 7.471917 +43.83129 2.292679 7.471917 +58.85664 2.292679 7.471917 +-0.0175068 3.081414 7.471917 +-0.01161267 3.081414 7.471917 +-0.005718534 3.081414 7.471917 +0.0001755984 3.081414 7.471917 +0.006069731 3.081414 7.471917 +0.01197402 3.081414 7.471917 +0.01903886 3.081414 7.471917 +0.02852504 3.081414 7.471917 +0.04126244 3.081414 7.471917 +0.05836535 3.081414 7.471917 +0.08132997 3.081414 7.471917 +0.1121653 3.081414 7.471917 +0.1535689 3.081414 7.471917 +0.2091628 3.081414 7.471917 +0.2838106 3.081414 7.471917 +0.3840425 3.081414 7.471917 +0.518627 3.081414 7.471917 +0.6993381 3.081414 7.471917 +0.9419845 3.081414 7.471917 +1.267794 3.081414 7.471917 +1.705268 3.081414 7.471917 +2.292679 3.081414 7.471917 +3.081414 3.081414 7.471917 +4.140474 3.081414 7.471917 +5.562508 3.081414 7.471917 +7.471917 3.081414 7.471917 +10.03574 3.081414 7.471917 +13.47828 3.081414 7.471917 +18.10068 3.081414 7.471917 +24.30731 3.081414 7.471917 +32.64117 3.081414 7.471917 +43.83129 3.081414 7.471917 +58.85664 3.081414 7.471917 +-0.0175068 4.140474 7.471917 +-0.01161267 4.140474 7.471917 +-0.005718534 4.140474 7.471917 +0.0001755984 4.140474 7.471917 +0.006069731 4.140474 7.471917 +0.01197402 4.140474 7.471917 +0.01903886 4.140474 7.471917 +0.02852504 4.140474 7.471917 +0.04126244 4.140474 7.471917 +0.05836535 4.140474 7.471917 +0.08132997 4.140474 7.471917 +0.1121653 4.140474 7.471917 +0.1535689 4.140474 7.471917 +0.2091628 4.140474 7.471917 +0.2838106 4.140474 7.471917 +0.3840425 4.140474 7.471917 +0.518627 4.140474 7.471917 +0.6993381 4.140474 7.471917 +0.9419845 4.140474 7.471917 +1.267794 4.140474 7.471917 +1.705268 4.140474 7.471917 +2.292679 4.140474 7.471917 +3.081414 4.140474 7.471917 +4.140474 4.140474 7.471917 +5.562508 4.140474 7.471917 +7.471917 4.140474 7.471917 +10.03574 4.140474 7.471917 +13.47828 4.140474 7.471917 +18.10068 4.140474 7.471917 +24.30731 4.140474 7.471917 +32.64117 4.140474 7.471917 +43.83129 4.140474 7.471917 +58.85664 4.140474 7.471917 +-0.0175068 5.562508 7.471917 +-0.01161267 5.562508 7.471917 +-0.005718534 5.562508 7.471917 +0.0001755984 5.562508 7.471917 +0.006069731 5.562508 7.471917 +0.01197402 5.562508 7.471917 +0.01903886 5.562508 7.471917 +0.02852504 5.562508 7.471917 +0.04126244 5.562508 7.471917 +0.05836535 5.562508 7.471917 +0.08132997 5.562508 7.471917 +0.1121653 5.562508 7.471917 +0.1535689 5.562508 7.471917 +0.2091628 5.562508 7.471917 +0.2838106 5.562508 7.471917 +0.3840425 5.562508 7.471917 +0.518627 5.562508 7.471917 +0.6993381 5.562508 7.471917 +0.9419845 5.562508 7.471917 +1.267794 5.562508 7.471917 +1.705268 5.562508 7.471917 +2.292679 5.562508 7.471917 +3.081414 5.562508 7.471917 +4.140474 5.562508 7.471917 +5.562508 5.562508 7.471917 +7.471917 5.562508 7.471917 +10.03574 5.562508 7.471917 +13.47828 5.562508 7.471917 +18.10068 5.562508 7.471917 +24.30731 5.562508 7.471917 +32.64117 5.562508 7.471917 +43.83129 5.562508 7.471917 +58.85664 5.562508 7.471917 +-0.0175068 7.471917 7.471917 +-0.01161267 7.471917 7.471917 +-0.005718534 7.471917 7.471917 +0.0001755984 7.471917 7.471917 +0.006069731 7.471917 7.471917 +0.01197402 7.471917 7.471917 +0.01903886 7.471917 7.471917 +0.02852504 7.471917 7.471917 +0.04126244 7.471917 7.471917 +0.05836535 7.471917 7.471917 +0.08132997 7.471917 7.471917 +0.1121653 7.471917 7.471917 +0.1535689 7.471917 7.471917 +0.2091628 7.471917 7.471917 +0.2838106 7.471917 7.471917 +0.3840425 7.471917 7.471917 +0.518627 7.471917 7.471917 +0.6993381 7.471917 7.471917 +0.9419845 7.471917 7.471917 +1.267794 7.471917 7.471917 +1.705268 7.471917 7.471917 +2.292679 7.471917 7.471917 +3.081414 7.471917 7.471917 +4.140474 7.471917 7.471917 +5.562508 7.471917 7.471917 +7.471917 7.471917 7.471917 +10.03574 7.471917 7.471917 +13.47828 7.471917 7.471917 +18.10068 7.471917 7.471917 +24.30731 7.471917 7.471917 +32.64117 7.471917 7.471917 +43.83129 7.471917 7.471917 +58.85664 7.471917 7.471917 +-0.0175068 10.03574 7.471917 +-0.01161267 10.03574 7.471917 +-0.005718534 10.03574 7.471917 +0.0001755984 10.03574 7.471917 +0.006069731 10.03574 7.471917 +0.01197402 10.03574 7.471917 +0.01903886 10.03574 7.471917 +0.02852504 10.03574 7.471917 +0.04126244 10.03574 7.471917 +0.05836535 10.03574 7.471917 +0.08132997 10.03574 7.471917 +0.1121653 10.03574 7.471917 +0.1535689 10.03574 7.471917 +0.2091628 10.03574 7.471917 +0.2838106 10.03574 7.471917 +0.3840425 10.03574 7.471917 +0.518627 10.03574 7.471917 +0.6993381 10.03574 7.471917 +0.9419845 10.03574 7.471917 +1.267794 10.03574 7.471917 +1.705268 10.03574 7.471917 +2.292679 10.03574 7.471917 +3.081414 10.03574 7.471917 +4.140474 10.03574 7.471917 +5.562508 10.03574 7.471917 +7.471917 10.03574 7.471917 +10.03574 10.03574 7.471917 +13.47828 10.03574 7.471917 +18.10068 10.03574 7.471917 +24.30731 10.03574 7.471917 +32.64117 10.03574 7.471917 +43.83129 10.03574 7.471917 +58.85664 10.03574 7.471917 +-0.0175068 13.47828 7.471917 +-0.01161267 13.47828 7.471917 +-0.005718534 13.47828 7.471917 +0.0001755984 13.47828 7.471917 +0.006069731 13.47828 7.471917 +0.01197402 13.47828 7.471917 +0.01903886 13.47828 7.471917 +0.02852504 13.47828 7.471917 +0.04126244 13.47828 7.471917 +0.05836535 13.47828 7.471917 +0.08132997 13.47828 7.471917 +0.1121653 13.47828 7.471917 +0.1535689 13.47828 7.471917 +0.2091628 13.47828 7.471917 +0.2838106 13.47828 7.471917 +0.3840425 13.47828 7.471917 +0.518627 13.47828 7.471917 +0.6993381 13.47828 7.471917 +0.9419845 13.47828 7.471917 +1.267794 13.47828 7.471917 +1.705268 13.47828 7.471917 +2.292679 13.47828 7.471917 +3.081414 13.47828 7.471917 +4.140474 13.47828 7.471917 +5.562508 13.47828 7.471917 +7.471917 13.47828 7.471917 +10.03574 13.47828 7.471917 +13.47828 13.47828 7.471917 +18.10068 13.47828 7.471917 +24.30731 13.47828 7.471917 +32.64117 13.47828 7.471917 +43.83129 13.47828 7.471917 +58.85664 13.47828 7.471917 +-0.0175068 18.10068 7.471917 +-0.01161267 18.10068 7.471917 +-0.005718534 18.10068 7.471917 +0.0001755984 18.10068 7.471917 +0.006069731 18.10068 7.471917 +0.01197402 18.10068 7.471917 +0.01903886 18.10068 7.471917 +0.02852504 18.10068 7.471917 +0.04126244 18.10068 7.471917 +0.05836535 18.10068 7.471917 +0.08132997 18.10068 7.471917 +0.1121653 18.10068 7.471917 +0.1535689 18.10068 7.471917 +0.2091628 18.10068 7.471917 +0.2838106 18.10068 7.471917 +0.3840425 18.10068 7.471917 +0.518627 18.10068 7.471917 +0.6993381 18.10068 7.471917 +0.9419845 18.10068 7.471917 +1.267794 18.10068 7.471917 +1.705268 18.10068 7.471917 +2.292679 18.10068 7.471917 +3.081414 18.10068 7.471917 +4.140474 18.10068 7.471917 +5.562508 18.10068 7.471917 +7.471917 18.10068 7.471917 +10.03574 18.10068 7.471917 +13.47828 18.10068 7.471917 +18.10068 18.10068 7.471917 +24.30731 18.10068 7.471917 +32.64117 18.10068 7.471917 +43.83129 18.10068 7.471917 +58.85664 18.10068 7.471917 +-0.0175068 24.30731 7.471917 +-0.01161267 24.30731 7.471917 +-0.005718534 24.30731 7.471917 +0.0001755984 24.30731 7.471917 +0.006069731 24.30731 7.471917 +0.01197402 24.30731 7.471917 +0.01903886 24.30731 7.471917 +0.02852504 24.30731 7.471917 +0.04126244 24.30731 7.471917 +0.05836535 24.30731 7.471917 +0.08132997 24.30731 7.471917 +0.1121653 24.30731 7.471917 +0.1535689 24.30731 7.471917 +0.2091628 24.30731 7.471917 +0.2838106 24.30731 7.471917 +0.3840425 24.30731 7.471917 +0.518627 24.30731 7.471917 +0.6993381 24.30731 7.471917 +0.9419845 24.30731 7.471917 +1.267794 24.30731 7.471917 +1.705268 24.30731 7.471917 +2.292679 24.30731 7.471917 +3.081414 24.30731 7.471917 +4.140474 24.30731 7.471917 +5.562508 24.30731 7.471917 +7.471917 24.30731 7.471917 +10.03574 24.30731 7.471917 +13.47828 24.30731 7.471917 +18.10068 24.30731 7.471917 +24.30731 24.30731 7.471917 +32.64117 24.30731 7.471917 +43.83129 24.30731 7.471917 +58.85664 24.30731 7.471917 +-0.0175068 32.64117 7.471917 +-0.01161267 32.64117 7.471917 +-0.005718534 32.64117 7.471917 +0.0001755984 32.64117 7.471917 +0.006069731 32.64117 7.471917 +0.01197402 32.64117 7.471917 +0.01903886 32.64117 7.471917 +0.02852504 32.64117 7.471917 +0.04126244 32.64117 7.471917 +0.05836535 32.64117 7.471917 +0.08132997 32.64117 7.471917 +0.1121653 32.64117 7.471917 +0.1535689 32.64117 7.471917 +0.2091628 32.64117 7.471917 +0.2838106 32.64117 7.471917 +0.3840425 32.64117 7.471917 +0.518627 32.64117 7.471917 +0.6993381 32.64117 7.471917 +0.9419845 32.64117 7.471917 +1.267794 32.64117 7.471917 +1.705268 32.64117 7.471917 +2.292679 32.64117 7.471917 +3.081414 32.64117 7.471917 +4.140474 32.64117 7.471917 +5.562508 32.64117 7.471917 +7.471917 32.64117 7.471917 +10.03574 32.64117 7.471917 +13.47828 32.64117 7.471917 +18.10068 32.64117 7.471917 +24.30731 32.64117 7.471917 +32.64117 32.64117 7.471917 +43.83129 32.64117 7.471917 +58.85664 32.64117 7.471917 +-0.0175068 43.83129 7.471917 +-0.01161267 43.83129 7.471917 +-0.005718534 43.83129 7.471917 +0.0001755984 43.83129 7.471917 +0.006069731 43.83129 7.471917 +0.01197402 43.83129 7.471917 +0.01903886 43.83129 7.471917 +0.02852504 43.83129 7.471917 +0.04126244 43.83129 7.471917 +0.05836535 43.83129 7.471917 +0.08132997 43.83129 7.471917 +0.1121653 43.83129 7.471917 +0.1535689 43.83129 7.471917 +0.2091628 43.83129 7.471917 +0.2838106 43.83129 7.471917 +0.3840425 43.83129 7.471917 +0.518627 43.83129 7.471917 +0.6993381 43.83129 7.471917 +0.9419845 43.83129 7.471917 +1.267794 43.83129 7.471917 +1.705268 43.83129 7.471917 +2.292679 43.83129 7.471917 +3.081414 43.83129 7.471917 +4.140474 43.83129 7.471917 +5.562508 43.83129 7.471917 +7.471917 43.83129 7.471917 +10.03574 43.83129 7.471917 +13.47828 43.83129 7.471917 +18.10068 43.83129 7.471917 +24.30731 43.83129 7.471917 +32.64117 43.83129 7.471917 +43.83129 43.83129 7.471917 +58.85664 43.83129 7.471917 +-0.0175068 58.85664 7.471917 +-0.01161267 58.85664 7.471917 +-0.005718534 58.85664 7.471917 +0.0001755984 58.85664 7.471917 +0.006069731 58.85664 7.471917 +0.01197402 58.85664 7.471917 +0.01903886 58.85664 7.471917 +0.02852504 58.85664 7.471917 +0.04126244 58.85664 7.471917 +0.05836535 58.85664 7.471917 +0.08132997 58.85664 7.471917 +0.1121653 58.85664 7.471917 +0.1535689 58.85664 7.471917 +0.2091628 58.85664 7.471917 +0.2838106 58.85664 7.471917 +0.3840425 58.85664 7.471917 +0.518627 58.85664 7.471917 +0.6993381 58.85664 7.471917 +0.9419845 58.85664 7.471917 +1.267794 58.85664 7.471917 +1.705268 58.85664 7.471917 +2.292679 58.85664 7.471917 +3.081414 58.85664 7.471917 +4.140474 58.85664 7.471917 +5.562508 58.85664 7.471917 +7.471917 58.85664 7.471917 +10.03574 58.85664 7.471917 +13.47828 58.85664 7.471917 +18.10068 58.85664 7.471917 +24.30731 58.85664 7.471917 +32.64117 58.85664 7.471917 +43.83129 58.85664 7.471917 +58.85664 58.85664 7.471917 +-0.0175068 -0.0175068 10.03574 +-0.01161267 -0.0175068 10.03574 +-0.005718534 -0.0175068 10.03574 +0.0001755984 -0.0175068 10.03574 +0.006069731 -0.0175068 10.03574 +0.01197402 -0.0175068 10.03574 +0.01903886 -0.0175068 10.03574 +0.02852504 -0.0175068 10.03574 +0.04126244 -0.0175068 10.03574 +0.05836535 -0.0175068 10.03574 +0.08132997 -0.0175068 10.03574 +0.1121653 -0.0175068 10.03574 +0.1535689 -0.0175068 10.03574 +0.2091628 -0.0175068 10.03574 +0.2838106 -0.0175068 10.03574 +0.3840425 -0.0175068 10.03574 +0.518627 -0.0175068 10.03574 +0.6993381 -0.0175068 10.03574 +0.9419845 -0.0175068 10.03574 +1.267794 -0.0175068 10.03574 +1.705268 -0.0175068 10.03574 +2.292679 -0.0175068 10.03574 +3.081414 -0.0175068 10.03574 +4.140474 -0.0175068 10.03574 +5.562508 -0.0175068 10.03574 +7.471917 -0.0175068 10.03574 +10.03574 -0.0175068 10.03574 +13.47828 -0.0175068 10.03574 +18.10068 -0.0175068 10.03574 +24.30731 -0.0175068 10.03574 +32.64117 -0.0175068 10.03574 +43.83129 -0.0175068 10.03574 +58.85664 -0.0175068 10.03574 +-0.0175068 -0.01161267 10.03574 +-0.01161267 -0.01161267 10.03574 +-0.005718534 -0.01161267 10.03574 +0.0001755984 -0.01161267 10.03574 +0.006069731 -0.01161267 10.03574 +0.01197402 -0.01161267 10.03574 +0.01903886 -0.01161267 10.03574 +0.02852504 -0.01161267 10.03574 +0.04126244 -0.01161267 10.03574 +0.05836535 -0.01161267 10.03574 +0.08132997 -0.01161267 10.03574 +0.1121653 -0.01161267 10.03574 +0.1535689 -0.01161267 10.03574 +0.2091628 -0.01161267 10.03574 +0.2838106 -0.01161267 10.03574 +0.3840425 -0.01161267 10.03574 +0.518627 -0.01161267 10.03574 +0.6993381 -0.01161267 10.03574 +0.9419845 -0.01161267 10.03574 +1.267794 -0.01161267 10.03574 +1.705268 -0.01161267 10.03574 +2.292679 -0.01161267 10.03574 +3.081414 -0.01161267 10.03574 +4.140474 -0.01161267 10.03574 +5.562508 -0.01161267 10.03574 +7.471917 -0.01161267 10.03574 +10.03574 -0.01161267 10.03574 +13.47828 -0.01161267 10.03574 +18.10068 -0.01161267 10.03574 +24.30731 -0.01161267 10.03574 +32.64117 -0.01161267 10.03574 +43.83129 -0.01161267 10.03574 +58.85664 -0.01161267 10.03574 +-0.0175068 -0.005718534 10.03574 +-0.01161267 -0.005718534 10.03574 +-0.005718534 -0.005718534 10.03574 +0.0001755984 -0.005718534 10.03574 +0.006069731 -0.005718534 10.03574 +0.01197402 -0.005718534 10.03574 +0.01903886 -0.005718534 10.03574 +0.02852504 -0.005718534 10.03574 +0.04126244 -0.005718534 10.03574 +0.05836535 -0.005718534 10.03574 +0.08132997 -0.005718534 10.03574 +0.1121653 -0.005718534 10.03574 +0.1535689 -0.005718534 10.03574 +0.2091628 -0.005718534 10.03574 +0.2838106 -0.005718534 10.03574 +0.3840425 -0.005718534 10.03574 +0.518627 -0.005718534 10.03574 +0.6993381 -0.005718534 10.03574 +0.9419845 -0.005718534 10.03574 +1.267794 -0.005718534 10.03574 +1.705268 -0.005718534 10.03574 +2.292679 -0.005718534 10.03574 +3.081414 -0.005718534 10.03574 +4.140474 -0.005718534 10.03574 +5.562508 -0.005718534 10.03574 +7.471917 -0.005718534 10.03574 +10.03574 -0.005718534 10.03574 +13.47828 -0.005718534 10.03574 +18.10068 -0.005718534 10.03574 +24.30731 -0.005718534 10.03574 +32.64117 -0.005718534 10.03574 +43.83129 -0.005718534 10.03574 +58.85664 -0.005718534 10.03574 +-0.0175068 0.0001755984 10.03574 +-0.01161267 0.0001755984 10.03574 +-0.005718534 0.0001755984 10.03574 +0.0001755984 0.0001755984 10.03574 +0.006069731 0.0001755984 10.03574 +0.01197402 0.0001755984 10.03574 +0.01903886 0.0001755984 10.03574 +0.02852504 0.0001755984 10.03574 +0.04126244 0.0001755984 10.03574 +0.05836535 0.0001755984 10.03574 +0.08132997 0.0001755984 10.03574 +0.1121653 0.0001755984 10.03574 +0.1535689 0.0001755984 10.03574 +0.2091628 0.0001755984 10.03574 +0.2838106 0.0001755984 10.03574 +0.3840425 0.0001755984 10.03574 +0.518627 0.0001755984 10.03574 +0.6993381 0.0001755984 10.03574 +0.9419845 0.0001755984 10.03574 +1.267794 0.0001755984 10.03574 +1.705268 0.0001755984 10.03574 +2.292679 0.0001755984 10.03574 +3.081414 0.0001755984 10.03574 +4.140474 0.0001755984 10.03574 +5.562508 0.0001755984 10.03574 +7.471917 0.0001755984 10.03574 +10.03574 0.0001755984 10.03574 +13.47828 0.0001755984 10.03574 +18.10068 0.0001755984 10.03574 +24.30731 0.0001755984 10.03574 +32.64117 0.0001755984 10.03574 +43.83129 0.0001755984 10.03574 +58.85664 0.0001755984 10.03574 +-0.0175068 0.006069731 10.03574 +-0.01161267 0.006069731 10.03574 +-0.005718534 0.006069731 10.03574 +0.0001755984 0.006069731 10.03574 +0.006069731 0.006069731 10.03574 +0.01197402 0.006069731 10.03574 +0.01903886 0.006069731 10.03574 +0.02852504 0.006069731 10.03574 +0.04126244 0.006069731 10.03574 +0.05836535 0.006069731 10.03574 +0.08132997 0.006069731 10.03574 +0.1121653 0.006069731 10.03574 +0.1535689 0.006069731 10.03574 +0.2091628 0.006069731 10.03574 +0.2838106 0.006069731 10.03574 +0.3840425 0.006069731 10.03574 +0.518627 0.006069731 10.03574 +0.6993381 0.006069731 10.03574 +0.9419845 0.006069731 10.03574 +1.267794 0.006069731 10.03574 +1.705268 0.006069731 10.03574 +2.292679 0.006069731 10.03574 +3.081414 0.006069731 10.03574 +4.140474 0.006069731 10.03574 +5.562508 0.006069731 10.03574 +7.471917 0.006069731 10.03574 +10.03574 0.006069731 10.03574 +13.47828 0.006069731 10.03574 +18.10068 0.006069731 10.03574 +24.30731 0.006069731 10.03574 +32.64117 0.006069731 10.03574 +43.83129 0.006069731 10.03574 +58.85664 0.006069731 10.03574 +-0.0175068 0.01197402 10.03574 +-0.01161267 0.01197402 10.03574 +-0.005718534 0.01197402 10.03574 +0.0001755984 0.01197402 10.03574 +0.006069731 0.01197402 10.03574 +0.01197402 0.01197402 10.03574 +0.01903886 0.01197402 10.03574 +0.02852504 0.01197402 10.03574 +0.04126244 0.01197402 10.03574 +0.05836535 0.01197402 10.03574 +0.08132997 0.01197402 10.03574 +0.1121653 0.01197402 10.03574 +0.1535689 0.01197402 10.03574 +0.2091628 0.01197402 10.03574 +0.2838106 0.01197402 10.03574 +0.3840425 0.01197402 10.03574 +0.518627 0.01197402 10.03574 +0.6993381 0.01197402 10.03574 +0.9419845 0.01197402 10.03574 +1.267794 0.01197402 10.03574 +1.705268 0.01197402 10.03574 +2.292679 0.01197402 10.03574 +3.081414 0.01197402 10.03574 +4.140474 0.01197402 10.03574 +5.562508 0.01197402 10.03574 +7.471917 0.01197402 10.03574 +10.03574 0.01197402 10.03574 +13.47828 0.01197402 10.03574 +18.10068 0.01197402 10.03574 +24.30731 0.01197402 10.03574 +32.64117 0.01197402 10.03574 +43.83129 0.01197402 10.03574 +58.85664 0.01197402 10.03574 +-0.0175068 0.01903886 10.03574 +-0.01161267 0.01903886 10.03574 +-0.005718534 0.01903886 10.03574 +0.0001755984 0.01903886 10.03574 +0.006069731 0.01903886 10.03574 +0.01197402 0.01903886 10.03574 +0.01903886 0.01903886 10.03574 +0.02852504 0.01903886 10.03574 +0.04126244 0.01903886 10.03574 +0.05836535 0.01903886 10.03574 +0.08132997 0.01903886 10.03574 +0.1121653 0.01903886 10.03574 +0.1535689 0.01903886 10.03574 +0.2091628 0.01903886 10.03574 +0.2838106 0.01903886 10.03574 +0.3840425 0.01903886 10.03574 +0.518627 0.01903886 10.03574 +0.6993381 0.01903886 10.03574 +0.9419845 0.01903886 10.03574 +1.267794 0.01903886 10.03574 +1.705268 0.01903886 10.03574 +2.292679 0.01903886 10.03574 +3.081414 0.01903886 10.03574 +4.140474 0.01903886 10.03574 +5.562508 0.01903886 10.03574 +7.471917 0.01903886 10.03574 +10.03574 0.01903886 10.03574 +13.47828 0.01903886 10.03574 +18.10068 0.01903886 10.03574 +24.30731 0.01903886 10.03574 +32.64117 0.01903886 10.03574 +43.83129 0.01903886 10.03574 +58.85664 0.01903886 10.03574 +-0.0175068 0.02852504 10.03574 +-0.01161267 0.02852504 10.03574 +-0.005718534 0.02852504 10.03574 +0.0001755984 0.02852504 10.03574 +0.006069731 0.02852504 10.03574 +0.01197402 0.02852504 10.03574 +0.01903886 0.02852504 10.03574 +0.02852504 0.02852504 10.03574 +0.04126244 0.02852504 10.03574 +0.05836535 0.02852504 10.03574 +0.08132997 0.02852504 10.03574 +0.1121653 0.02852504 10.03574 +0.1535689 0.02852504 10.03574 +0.2091628 0.02852504 10.03574 +0.2838106 0.02852504 10.03574 +0.3840425 0.02852504 10.03574 +0.518627 0.02852504 10.03574 +0.6993381 0.02852504 10.03574 +0.9419845 0.02852504 10.03574 +1.267794 0.02852504 10.03574 +1.705268 0.02852504 10.03574 +2.292679 0.02852504 10.03574 +3.081414 0.02852504 10.03574 +4.140474 0.02852504 10.03574 +5.562508 0.02852504 10.03574 +7.471917 0.02852504 10.03574 +10.03574 0.02852504 10.03574 +13.47828 0.02852504 10.03574 +18.10068 0.02852504 10.03574 +24.30731 0.02852504 10.03574 +32.64117 0.02852504 10.03574 +43.83129 0.02852504 10.03574 +58.85664 0.02852504 10.03574 +-0.0175068 0.04126244 10.03574 +-0.01161267 0.04126244 10.03574 +-0.005718534 0.04126244 10.03574 +0.0001755984 0.04126244 10.03574 +0.006069731 0.04126244 10.03574 +0.01197402 0.04126244 10.03574 +0.01903886 0.04126244 10.03574 +0.02852504 0.04126244 10.03574 +0.04126244 0.04126244 10.03574 +0.05836535 0.04126244 10.03574 +0.08132997 0.04126244 10.03574 +0.1121653 0.04126244 10.03574 +0.1535689 0.04126244 10.03574 +0.2091628 0.04126244 10.03574 +0.2838106 0.04126244 10.03574 +0.3840425 0.04126244 10.03574 +0.518627 0.04126244 10.03574 +0.6993381 0.04126244 10.03574 +0.9419845 0.04126244 10.03574 +1.267794 0.04126244 10.03574 +1.705268 0.04126244 10.03574 +2.292679 0.04126244 10.03574 +3.081414 0.04126244 10.03574 +4.140474 0.04126244 10.03574 +5.562508 0.04126244 10.03574 +7.471917 0.04126244 10.03574 +10.03574 0.04126244 10.03574 +13.47828 0.04126244 10.03574 +18.10068 0.04126244 10.03574 +24.30731 0.04126244 10.03574 +32.64117 0.04126244 10.03574 +43.83129 0.04126244 10.03574 +58.85664 0.04126244 10.03574 +-0.0175068 0.05836535 10.03574 +-0.01161267 0.05836535 10.03574 +-0.005718534 0.05836535 10.03574 +0.0001755984 0.05836535 10.03574 +0.006069731 0.05836535 10.03574 +0.01197402 0.05836535 10.03574 +0.01903886 0.05836535 10.03574 +0.02852504 0.05836535 10.03574 +0.04126244 0.05836535 10.03574 +0.05836535 0.05836535 10.03574 +0.08132997 0.05836535 10.03574 +0.1121653 0.05836535 10.03574 +0.1535689 0.05836535 10.03574 +0.2091628 0.05836535 10.03574 +0.2838106 0.05836535 10.03574 +0.3840425 0.05836535 10.03574 +0.518627 0.05836535 10.03574 +0.6993381 0.05836535 10.03574 +0.9419845 0.05836535 10.03574 +1.267794 0.05836535 10.03574 +1.705268 0.05836535 10.03574 +2.292679 0.05836535 10.03574 +3.081414 0.05836535 10.03574 +4.140474 0.05836535 10.03574 +5.562508 0.05836535 10.03574 +7.471917 0.05836535 10.03574 +10.03574 0.05836535 10.03574 +13.47828 0.05836535 10.03574 +18.10068 0.05836535 10.03574 +24.30731 0.05836535 10.03574 +32.64117 0.05836535 10.03574 +43.83129 0.05836535 10.03574 +58.85664 0.05836535 10.03574 +-0.0175068 0.08132997 10.03574 +-0.01161267 0.08132997 10.03574 +-0.005718534 0.08132997 10.03574 +0.0001755984 0.08132997 10.03574 +0.006069731 0.08132997 10.03574 +0.01197402 0.08132997 10.03574 +0.01903886 0.08132997 10.03574 +0.02852504 0.08132997 10.03574 +0.04126244 0.08132997 10.03574 +0.05836535 0.08132997 10.03574 +0.08132997 0.08132997 10.03574 +0.1121653 0.08132997 10.03574 +0.1535689 0.08132997 10.03574 +0.2091628 0.08132997 10.03574 +0.2838106 0.08132997 10.03574 +0.3840425 0.08132997 10.03574 +0.518627 0.08132997 10.03574 +0.6993381 0.08132997 10.03574 +0.9419845 0.08132997 10.03574 +1.267794 0.08132997 10.03574 +1.705268 0.08132997 10.03574 +2.292679 0.08132997 10.03574 +3.081414 0.08132997 10.03574 +4.140474 0.08132997 10.03574 +5.562508 0.08132997 10.03574 +7.471917 0.08132997 10.03574 +10.03574 0.08132997 10.03574 +13.47828 0.08132997 10.03574 +18.10068 0.08132997 10.03574 +24.30731 0.08132997 10.03574 +32.64117 0.08132997 10.03574 +43.83129 0.08132997 10.03574 +58.85664 0.08132997 10.03574 +-0.0175068 0.1121653 10.03574 +-0.01161267 0.1121653 10.03574 +-0.005718534 0.1121653 10.03574 +0.0001755984 0.1121653 10.03574 +0.006069731 0.1121653 10.03574 +0.01197402 0.1121653 10.03574 +0.01903886 0.1121653 10.03574 +0.02852504 0.1121653 10.03574 +0.04126244 0.1121653 10.03574 +0.05836535 0.1121653 10.03574 +0.08132997 0.1121653 10.03574 +0.1121653 0.1121653 10.03574 +0.1535689 0.1121653 10.03574 +0.2091628 0.1121653 10.03574 +0.2838106 0.1121653 10.03574 +0.3840425 0.1121653 10.03574 +0.518627 0.1121653 10.03574 +0.6993381 0.1121653 10.03574 +0.9419845 0.1121653 10.03574 +1.267794 0.1121653 10.03574 +1.705268 0.1121653 10.03574 +2.292679 0.1121653 10.03574 +3.081414 0.1121653 10.03574 +4.140474 0.1121653 10.03574 +5.562508 0.1121653 10.03574 +7.471917 0.1121653 10.03574 +10.03574 0.1121653 10.03574 +13.47828 0.1121653 10.03574 +18.10068 0.1121653 10.03574 +24.30731 0.1121653 10.03574 +32.64117 0.1121653 10.03574 +43.83129 0.1121653 10.03574 +58.85664 0.1121653 10.03574 +-0.0175068 0.1535689 10.03574 +-0.01161267 0.1535689 10.03574 +-0.005718534 0.1535689 10.03574 +0.0001755984 0.1535689 10.03574 +0.006069731 0.1535689 10.03574 +0.01197402 0.1535689 10.03574 +0.01903886 0.1535689 10.03574 +0.02852504 0.1535689 10.03574 +0.04126244 0.1535689 10.03574 +0.05836535 0.1535689 10.03574 +0.08132997 0.1535689 10.03574 +0.1121653 0.1535689 10.03574 +0.1535689 0.1535689 10.03574 +0.2091628 0.1535689 10.03574 +0.2838106 0.1535689 10.03574 +0.3840425 0.1535689 10.03574 +0.518627 0.1535689 10.03574 +0.6993381 0.1535689 10.03574 +0.9419845 0.1535689 10.03574 +1.267794 0.1535689 10.03574 +1.705268 0.1535689 10.03574 +2.292679 0.1535689 10.03574 +3.081414 0.1535689 10.03574 +4.140474 0.1535689 10.03574 +5.562508 0.1535689 10.03574 +7.471917 0.1535689 10.03574 +10.03574 0.1535689 10.03574 +13.47828 0.1535689 10.03574 +18.10068 0.1535689 10.03574 +24.30731 0.1535689 10.03574 +32.64117 0.1535689 10.03574 +43.83129 0.1535689 10.03574 +58.85664 0.1535689 10.03574 +-0.0175068 0.2091628 10.03574 +-0.01161267 0.2091628 10.03574 +-0.005718534 0.2091628 10.03574 +0.0001755984 0.2091628 10.03574 +0.006069731 0.2091628 10.03574 +0.01197402 0.2091628 10.03574 +0.01903886 0.2091628 10.03574 +0.02852504 0.2091628 10.03574 +0.04126244 0.2091628 10.03574 +0.05836535 0.2091628 10.03574 +0.08132997 0.2091628 10.03574 +0.1121653 0.2091628 10.03574 +0.1535689 0.2091628 10.03574 +0.2091628 0.2091628 10.03574 +0.2838106 0.2091628 10.03574 +0.3840425 0.2091628 10.03574 +0.518627 0.2091628 10.03574 +0.6993381 0.2091628 10.03574 +0.9419845 0.2091628 10.03574 +1.267794 0.2091628 10.03574 +1.705268 0.2091628 10.03574 +2.292679 0.2091628 10.03574 +3.081414 0.2091628 10.03574 +4.140474 0.2091628 10.03574 +5.562508 0.2091628 10.03574 +7.471917 0.2091628 10.03574 +10.03574 0.2091628 10.03574 +13.47828 0.2091628 10.03574 +18.10068 0.2091628 10.03574 +24.30731 0.2091628 10.03574 +32.64117 0.2091628 10.03574 +43.83129 0.2091628 10.03574 +58.85664 0.2091628 10.03574 +-0.0175068 0.2838106 10.03574 +-0.01161267 0.2838106 10.03574 +-0.005718534 0.2838106 10.03574 +0.0001755984 0.2838106 10.03574 +0.006069731 0.2838106 10.03574 +0.01197402 0.2838106 10.03574 +0.01903886 0.2838106 10.03574 +0.02852504 0.2838106 10.03574 +0.04126244 0.2838106 10.03574 +0.05836535 0.2838106 10.03574 +0.08132997 0.2838106 10.03574 +0.1121653 0.2838106 10.03574 +0.1535689 0.2838106 10.03574 +0.2091628 0.2838106 10.03574 +0.2838106 0.2838106 10.03574 +0.3840425 0.2838106 10.03574 +0.518627 0.2838106 10.03574 +0.6993381 0.2838106 10.03574 +0.9419845 0.2838106 10.03574 +1.267794 0.2838106 10.03574 +1.705268 0.2838106 10.03574 +2.292679 0.2838106 10.03574 +3.081414 0.2838106 10.03574 +4.140474 0.2838106 10.03574 +5.562508 0.2838106 10.03574 +7.471917 0.2838106 10.03574 +10.03574 0.2838106 10.03574 +13.47828 0.2838106 10.03574 +18.10068 0.2838106 10.03574 +24.30731 0.2838106 10.03574 +32.64117 0.2838106 10.03574 +43.83129 0.2838106 10.03574 +58.85664 0.2838106 10.03574 +-0.0175068 0.3840425 10.03574 +-0.01161267 0.3840425 10.03574 +-0.005718534 0.3840425 10.03574 +0.0001755984 0.3840425 10.03574 +0.006069731 0.3840425 10.03574 +0.01197402 0.3840425 10.03574 +0.01903886 0.3840425 10.03574 +0.02852504 0.3840425 10.03574 +0.04126244 0.3840425 10.03574 +0.05836535 0.3840425 10.03574 +0.08132997 0.3840425 10.03574 +0.1121653 0.3840425 10.03574 +0.1535689 0.3840425 10.03574 +0.2091628 0.3840425 10.03574 +0.2838106 0.3840425 10.03574 +0.3840425 0.3840425 10.03574 +0.518627 0.3840425 10.03574 +0.6993381 0.3840425 10.03574 +0.9419845 0.3840425 10.03574 +1.267794 0.3840425 10.03574 +1.705268 0.3840425 10.03574 +2.292679 0.3840425 10.03574 +3.081414 0.3840425 10.03574 +4.140474 0.3840425 10.03574 +5.562508 0.3840425 10.03574 +7.471917 0.3840425 10.03574 +10.03574 0.3840425 10.03574 +13.47828 0.3840425 10.03574 +18.10068 0.3840425 10.03574 +24.30731 0.3840425 10.03574 +32.64117 0.3840425 10.03574 +43.83129 0.3840425 10.03574 +58.85664 0.3840425 10.03574 +-0.0175068 0.518627 10.03574 +-0.01161267 0.518627 10.03574 +-0.005718534 0.518627 10.03574 +0.0001755984 0.518627 10.03574 +0.006069731 0.518627 10.03574 +0.01197402 0.518627 10.03574 +0.01903886 0.518627 10.03574 +0.02852504 0.518627 10.03574 +0.04126244 0.518627 10.03574 +0.05836535 0.518627 10.03574 +0.08132997 0.518627 10.03574 +0.1121653 0.518627 10.03574 +0.1535689 0.518627 10.03574 +0.2091628 0.518627 10.03574 +0.2838106 0.518627 10.03574 +0.3840425 0.518627 10.03574 +0.518627 0.518627 10.03574 +0.6993381 0.518627 10.03574 +0.9419845 0.518627 10.03574 +1.267794 0.518627 10.03574 +1.705268 0.518627 10.03574 +2.292679 0.518627 10.03574 +3.081414 0.518627 10.03574 +4.140474 0.518627 10.03574 +5.562508 0.518627 10.03574 +7.471917 0.518627 10.03574 +10.03574 0.518627 10.03574 +13.47828 0.518627 10.03574 +18.10068 0.518627 10.03574 +24.30731 0.518627 10.03574 +32.64117 0.518627 10.03574 +43.83129 0.518627 10.03574 +58.85664 0.518627 10.03574 +-0.0175068 0.6993381 10.03574 +-0.01161267 0.6993381 10.03574 +-0.005718534 0.6993381 10.03574 +0.0001755984 0.6993381 10.03574 +0.006069731 0.6993381 10.03574 +0.01197402 0.6993381 10.03574 +0.01903886 0.6993381 10.03574 +0.02852504 0.6993381 10.03574 +0.04126244 0.6993381 10.03574 +0.05836535 0.6993381 10.03574 +0.08132997 0.6993381 10.03574 +0.1121653 0.6993381 10.03574 +0.1535689 0.6993381 10.03574 +0.2091628 0.6993381 10.03574 +0.2838106 0.6993381 10.03574 +0.3840425 0.6993381 10.03574 +0.518627 0.6993381 10.03574 +0.6993381 0.6993381 10.03574 +0.9419845 0.6993381 10.03574 +1.267794 0.6993381 10.03574 +1.705268 0.6993381 10.03574 +2.292679 0.6993381 10.03574 +3.081414 0.6993381 10.03574 +4.140474 0.6993381 10.03574 +5.562508 0.6993381 10.03574 +7.471917 0.6993381 10.03574 +10.03574 0.6993381 10.03574 +13.47828 0.6993381 10.03574 +18.10068 0.6993381 10.03574 +24.30731 0.6993381 10.03574 +32.64117 0.6993381 10.03574 +43.83129 0.6993381 10.03574 +58.85664 0.6993381 10.03574 +-0.0175068 0.9419845 10.03574 +-0.01161267 0.9419845 10.03574 +-0.005718534 0.9419845 10.03574 +0.0001755984 0.9419845 10.03574 +0.006069731 0.9419845 10.03574 +0.01197402 0.9419845 10.03574 +0.01903886 0.9419845 10.03574 +0.02852504 0.9419845 10.03574 +0.04126244 0.9419845 10.03574 +0.05836535 0.9419845 10.03574 +0.08132997 0.9419845 10.03574 +0.1121653 0.9419845 10.03574 +0.1535689 0.9419845 10.03574 +0.2091628 0.9419845 10.03574 +0.2838106 0.9419845 10.03574 +0.3840425 0.9419845 10.03574 +0.518627 0.9419845 10.03574 +0.6993381 0.9419845 10.03574 +0.9419845 0.9419845 10.03574 +1.267794 0.9419845 10.03574 +1.705268 0.9419845 10.03574 +2.292679 0.9419845 10.03574 +3.081414 0.9419845 10.03574 +4.140474 0.9419845 10.03574 +5.562508 0.9419845 10.03574 +7.471917 0.9419845 10.03574 +10.03574 0.9419845 10.03574 +13.47828 0.9419845 10.03574 +18.10068 0.9419845 10.03574 +24.30731 0.9419845 10.03574 +32.64117 0.9419845 10.03574 +43.83129 0.9419845 10.03574 +58.85664 0.9419845 10.03574 +-0.0175068 1.267794 10.03574 +-0.01161267 1.267794 10.03574 +-0.005718534 1.267794 10.03574 +0.0001755984 1.267794 10.03574 +0.006069731 1.267794 10.03574 +0.01197402 1.267794 10.03574 +0.01903886 1.267794 10.03574 +0.02852504 1.267794 10.03574 +0.04126244 1.267794 10.03574 +0.05836535 1.267794 10.03574 +0.08132997 1.267794 10.03574 +0.1121653 1.267794 10.03574 +0.1535689 1.267794 10.03574 +0.2091628 1.267794 10.03574 +0.2838106 1.267794 10.03574 +0.3840425 1.267794 10.03574 +0.518627 1.267794 10.03574 +0.6993381 1.267794 10.03574 +0.9419845 1.267794 10.03574 +1.267794 1.267794 10.03574 +1.705268 1.267794 10.03574 +2.292679 1.267794 10.03574 +3.081414 1.267794 10.03574 +4.140474 1.267794 10.03574 +5.562508 1.267794 10.03574 +7.471917 1.267794 10.03574 +10.03574 1.267794 10.03574 +13.47828 1.267794 10.03574 +18.10068 1.267794 10.03574 +24.30731 1.267794 10.03574 +32.64117 1.267794 10.03574 +43.83129 1.267794 10.03574 +58.85664 1.267794 10.03574 +-0.0175068 1.705268 10.03574 +-0.01161267 1.705268 10.03574 +-0.005718534 1.705268 10.03574 +0.0001755984 1.705268 10.03574 +0.006069731 1.705268 10.03574 +0.01197402 1.705268 10.03574 +0.01903886 1.705268 10.03574 +0.02852504 1.705268 10.03574 +0.04126244 1.705268 10.03574 +0.05836535 1.705268 10.03574 +0.08132997 1.705268 10.03574 +0.1121653 1.705268 10.03574 +0.1535689 1.705268 10.03574 +0.2091628 1.705268 10.03574 +0.2838106 1.705268 10.03574 +0.3840425 1.705268 10.03574 +0.518627 1.705268 10.03574 +0.6993381 1.705268 10.03574 +0.9419845 1.705268 10.03574 +1.267794 1.705268 10.03574 +1.705268 1.705268 10.03574 +2.292679 1.705268 10.03574 +3.081414 1.705268 10.03574 +4.140474 1.705268 10.03574 +5.562508 1.705268 10.03574 +7.471917 1.705268 10.03574 +10.03574 1.705268 10.03574 +13.47828 1.705268 10.03574 +18.10068 1.705268 10.03574 +24.30731 1.705268 10.03574 +32.64117 1.705268 10.03574 +43.83129 1.705268 10.03574 +58.85664 1.705268 10.03574 +-0.0175068 2.292679 10.03574 +-0.01161267 2.292679 10.03574 +-0.005718534 2.292679 10.03574 +0.0001755984 2.292679 10.03574 +0.006069731 2.292679 10.03574 +0.01197402 2.292679 10.03574 +0.01903886 2.292679 10.03574 +0.02852504 2.292679 10.03574 +0.04126244 2.292679 10.03574 +0.05836535 2.292679 10.03574 +0.08132997 2.292679 10.03574 +0.1121653 2.292679 10.03574 +0.1535689 2.292679 10.03574 +0.2091628 2.292679 10.03574 +0.2838106 2.292679 10.03574 +0.3840425 2.292679 10.03574 +0.518627 2.292679 10.03574 +0.6993381 2.292679 10.03574 +0.9419845 2.292679 10.03574 +1.267794 2.292679 10.03574 +1.705268 2.292679 10.03574 +2.292679 2.292679 10.03574 +3.081414 2.292679 10.03574 +4.140474 2.292679 10.03574 +5.562508 2.292679 10.03574 +7.471917 2.292679 10.03574 +10.03574 2.292679 10.03574 +13.47828 2.292679 10.03574 +18.10068 2.292679 10.03574 +24.30731 2.292679 10.03574 +32.64117 2.292679 10.03574 +43.83129 2.292679 10.03574 +58.85664 2.292679 10.03574 +-0.0175068 3.081414 10.03574 +-0.01161267 3.081414 10.03574 +-0.005718534 3.081414 10.03574 +0.0001755984 3.081414 10.03574 +0.006069731 3.081414 10.03574 +0.01197402 3.081414 10.03574 +0.01903886 3.081414 10.03574 +0.02852504 3.081414 10.03574 +0.04126244 3.081414 10.03574 +0.05836535 3.081414 10.03574 +0.08132997 3.081414 10.03574 +0.1121653 3.081414 10.03574 +0.1535689 3.081414 10.03574 +0.2091628 3.081414 10.03574 +0.2838106 3.081414 10.03574 +0.3840425 3.081414 10.03574 +0.518627 3.081414 10.03574 +0.6993381 3.081414 10.03574 +0.9419845 3.081414 10.03574 +1.267794 3.081414 10.03574 +1.705268 3.081414 10.03574 +2.292679 3.081414 10.03574 +3.081414 3.081414 10.03574 +4.140474 3.081414 10.03574 +5.562508 3.081414 10.03574 +7.471917 3.081414 10.03574 +10.03574 3.081414 10.03574 +13.47828 3.081414 10.03574 +18.10068 3.081414 10.03574 +24.30731 3.081414 10.03574 +32.64117 3.081414 10.03574 +43.83129 3.081414 10.03574 +58.85664 3.081414 10.03574 +-0.0175068 4.140474 10.03574 +-0.01161267 4.140474 10.03574 +-0.005718534 4.140474 10.03574 +0.0001755984 4.140474 10.03574 +0.006069731 4.140474 10.03574 +0.01197402 4.140474 10.03574 +0.01903886 4.140474 10.03574 +0.02852504 4.140474 10.03574 +0.04126244 4.140474 10.03574 +0.05836535 4.140474 10.03574 +0.08132997 4.140474 10.03574 +0.1121653 4.140474 10.03574 +0.1535689 4.140474 10.03574 +0.2091628 4.140474 10.03574 +0.2838106 4.140474 10.03574 +0.3840425 4.140474 10.03574 +0.518627 4.140474 10.03574 +0.6993381 4.140474 10.03574 +0.9419845 4.140474 10.03574 +1.267794 4.140474 10.03574 +1.705268 4.140474 10.03574 +2.292679 4.140474 10.03574 +3.081414 4.140474 10.03574 +4.140474 4.140474 10.03574 +5.562508 4.140474 10.03574 +7.471917 4.140474 10.03574 +10.03574 4.140474 10.03574 +13.47828 4.140474 10.03574 +18.10068 4.140474 10.03574 +24.30731 4.140474 10.03574 +32.64117 4.140474 10.03574 +43.83129 4.140474 10.03574 +58.85664 4.140474 10.03574 +-0.0175068 5.562508 10.03574 +-0.01161267 5.562508 10.03574 +-0.005718534 5.562508 10.03574 +0.0001755984 5.562508 10.03574 +0.006069731 5.562508 10.03574 +0.01197402 5.562508 10.03574 +0.01903886 5.562508 10.03574 +0.02852504 5.562508 10.03574 +0.04126244 5.562508 10.03574 +0.05836535 5.562508 10.03574 +0.08132997 5.562508 10.03574 +0.1121653 5.562508 10.03574 +0.1535689 5.562508 10.03574 +0.2091628 5.562508 10.03574 +0.2838106 5.562508 10.03574 +0.3840425 5.562508 10.03574 +0.518627 5.562508 10.03574 +0.6993381 5.562508 10.03574 +0.9419845 5.562508 10.03574 +1.267794 5.562508 10.03574 +1.705268 5.562508 10.03574 +2.292679 5.562508 10.03574 +3.081414 5.562508 10.03574 +4.140474 5.562508 10.03574 +5.562508 5.562508 10.03574 +7.471917 5.562508 10.03574 +10.03574 5.562508 10.03574 +13.47828 5.562508 10.03574 +18.10068 5.562508 10.03574 +24.30731 5.562508 10.03574 +32.64117 5.562508 10.03574 +43.83129 5.562508 10.03574 +58.85664 5.562508 10.03574 +-0.0175068 7.471917 10.03574 +-0.01161267 7.471917 10.03574 +-0.005718534 7.471917 10.03574 +0.0001755984 7.471917 10.03574 +0.006069731 7.471917 10.03574 +0.01197402 7.471917 10.03574 +0.01903886 7.471917 10.03574 +0.02852504 7.471917 10.03574 +0.04126244 7.471917 10.03574 +0.05836535 7.471917 10.03574 +0.08132997 7.471917 10.03574 +0.1121653 7.471917 10.03574 +0.1535689 7.471917 10.03574 +0.2091628 7.471917 10.03574 +0.2838106 7.471917 10.03574 +0.3840425 7.471917 10.03574 +0.518627 7.471917 10.03574 +0.6993381 7.471917 10.03574 +0.9419845 7.471917 10.03574 +1.267794 7.471917 10.03574 +1.705268 7.471917 10.03574 +2.292679 7.471917 10.03574 +3.081414 7.471917 10.03574 +4.140474 7.471917 10.03574 +5.562508 7.471917 10.03574 +7.471917 7.471917 10.03574 +10.03574 7.471917 10.03574 +13.47828 7.471917 10.03574 +18.10068 7.471917 10.03574 +24.30731 7.471917 10.03574 +32.64117 7.471917 10.03574 +43.83129 7.471917 10.03574 +58.85664 7.471917 10.03574 +-0.0175068 10.03574 10.03574 +-0.01161267 10.03574 10.03574 +-0.005718534 10.03574 10.03574 +0.0001755984 10.03574 10.03574 +0.006069731 10.03574 10.03574 +0.01197402 10.03574 10.03574 +0.01903886 10.03574 10.03574 +0.02852504 10.03574 10.03574 +0.04126244 10.03574 10.03574 +0.05836535 10.03574 10.03574 +0.08132997 10.03574 10.03574 +0.1121653 10.03574 10.03574 +0.1535689 10.03574 10.03574 +0.2091628 10.03574 10.03574 +0.2838106 10.03574 10.03574 +0.3840425 10.03574 10.03574 +0.518627 10.03574 10.03574 +0.6993381 10.03574 10.03574 +0.9419845 10.03574 10.03574 +1.267794 10.03574 10.03574 +1.705268 10.03574 10.03574 +2.292679 10.03574 10.03574 +3.081414 10.03574 10.03574 +4.140474 10.03574 10.03574 +5.562508 10.03574 10.03574 +7.471917 10.03574 10.03574 +10.03574 10.03574 10.03574 +13.47828 10.03574 10.03574 +18.10068 10.03574 10.03574 +24.30731 10.03574 10.03574 +32.64117 10.03574 10.03574 +43.83129 10.03574 10.03574 +58.85664 10.03574 10.03574 +-0.0175068 13.47828 10.03574 +-0.01161267 13.47828 10.03574 +-0.005718534 13.47828 10.03574 +0.0001755984 13.47828 10.03574 +0.006069731 13.47828 10.03574 +0.01197402 13.47828 10.03574 +0.01903886 13.47828 10.03574 +0.02852504 13.47828 10.03574 +0.04126244 13.47828 10.03574 +0.05836535 13.47828 10.03574 +0.08132997 13.47828 10.03574 +0.1121653 13.47828 10.03574 +0.1535689 13.47828 10.03574 +0.2091628 13.47828 10.03574 +0.2838106 13.47828 10.03574 +0.3840425 13.47828 10.03574 +0.518627 13.47828 10.03574 +0.6993381 13.47828 10.03574 +0.9419845 13.47828 10.03574 +1.267794 13.47828 10.03574 +1.705268 13.47828 10.03574 +2.292679 13.47828 10.03574 +3.081414 13.47828 10.03574 +4.140474 13.47828 10.03574 +5.562508 13.47828 10.03574 +7.471917 13.47828 10.03574 +10.03574 13.47828 10.03574 +13.47828 13.47828 10.03574 +18.10068 13.47828 10.03574 +24.30731 13.47828 10.03574 +32.64117 13.47828 10.03574 +43.83129 13.47828 10.03574 +58.85664 13.47828 10.03574 +-0.0175068 18.10068 10.03574 +-0.01161267 18.10068 10.03574 +-0.005718534 18.10068 10.03574 +0.0001755984 18.10068 10.03574 +0.006069731 18.10068 10.03574 +0.01197402 18.10068 10.03574 +0.01903886 18.10068 10.03574 +0.02852504 18.10068 10.03574 +0.04126244 18.10068 10.03574 +0.05836535 18.10068 10.03574 +0.08132997 18.10068 10.03574 +0.1121653 18.10068 10.03574 +0.1535689 18.10068 10.03574 +0.2091628 18.10068 10.03574 +0.2838106 18.10068 10.03574 +0.3840425 18.10068 10.03574 +0.518627 18.10068 10.03574 +0.6993381 18.10068 10.03574 +0.9419845 18.10068 10.03574 +1.267794 18.10068 10.03574 +1.705268 18.10068 10.03574 +2.292679 18.10068 10.03574 +3.081414 18.10068 10.03574 +4.140474 18.10068 10.03574 +5.562508 18.10068 10.03574 +7.471917 18.10068 10.03574 +10.03574 18.10068 10.03574 +13.47828 18.10068 10.03574 +18.10068 18.10068 10.03574 +24.30731 18.10068 10.03574 +32.64117 18.10068 10.03574 +43.83129 18.10068 10.03574 +58.85664 18.10068 10.03574 +-0.0175068 24.30731 10.03574 +-0.01161267 24.30731 10.03574 +-0.005718534 24.30731 10.03574 +0.0001755984 24.30731 10.03574 +0.006069731 24.30731 10.03574 +0.01197402 24.30731 10.03574 +0.01903886 24.30731 10.03574 +0.02852504 24.30731 10.03574 +0.04126244 24.30731 10.03574 +0.05836535 24.30731 10.03574 +0.08132997 24.30731 10.03574 +0.1121653 24.30731 10.03574 +0.1535689 24.30731 10.03574 +0.2091628 24.30731 10.03574 +0.2838106 24.30731 10.03574 +0.3840425 24.30731 10.03574 +0.518627 24.30731 10.03574 +0.6993381 24.30731 10.03574 +0.9419845 24.30731 10.03574 +1.267794 24.30731 10.03574 +1.705268 24.30731 10.03574 +2.292679 24.30731 10.03574 +3.081414 24.30731 10.03574 +4.140474 24.30731 10.03574 +5.562508 24.30731 10.03574 +7.471917 24.30731 10.03574 +10.03574 24.30731 10.03574 +13.47828 24.30731 10.03574 +18.10068 24.30731 10.03574 +24.30731 24.30731 10.03574 +32.64117 24.30731 10.03574 +43.83129 24.30731 10.03574 +58.85664 24.30731 10.03574 +-0.0175068 32.64117 10.03574 +-0.01161267 32.64117 10.03574 +-0.005718534 32.64117 10.03574 +0.0001755984 32.64117 10.03574 +0.006069731 32.64117 10.03574 +0.01197402 32.64117 10.03574 +0.01903886 32.64117 10.03574 +0.02852504 32.64117 10.03574 +0.04126244 32.64117 10.03574 +0.05836535 32.64117 10.03574 +0.08132997 32.64117 10.03574 +0.1121653 32.64117 10.03574 +0.1535689 32.64117 10.03574 +0.2091628 32.64117 10.03574 +0.2838106 32.64117 10.03574 +0.3840425 32.64117 10.03574 +0.518627 32.64117 10.03574 +0.6993381 32.64117 10.03574 +0.9419845 32.64117 10.03574 +1.267794 32.64117 10.03574 +1.705268 32.64117 10.03574 +2.292679 32.64117 10.03574 +3.081414 32.64117 10.03574 +4.140474 32.64117 10.03574 +5.562508 32.64117 10.03574 +7.471917 32.64117 10.03574 +10.03574 32.64117 10.03574 +13.47828 32.64117 10.03574 +18.10068 32.64117 10.03574 +24.30731 32.64117 10.03574 +32.64117 32.64117 10.03574 +43.83129 32.64117 10.03574 +58.85664 32.64117 10.03574 +-0.0175068 43.83129 10.03574 +-0.01161267 43.83129 10.03574 +-0.005718534 43.83129 10.03574 +0.0001755984 43.83129 10.03574 +0.006069731 43.83129 10.03574 +0.01197402 43.83129 10.03574 +0.01903886 43.83129 10.03574 +0.02852504 43.83129 10.03574 +0.04126244 43.83129 10.03574 +0.05836535 43.83129 10.03574 +0.08132997 43.83129 10.03574 +0.1121653 43.83129 10.03574 +0.1535689 43.83129 10.03574 +0.2091628 43.83129 10.03574 +0.2838106 43.83129 10.03574 +0.3840425 43.83129 10.03574 +0.518627 43.83129 10.03574 +0.6993381 43.83129 10.03574 +0.9419845 43.83129 10.03574 +1.267794 43.83129 10.03574 +1.705268 43.83129 10.03574 +2.292679 43.83129 10.03574 +3.081414 43.83129 10.03574 +4.140474 43.83129 10.03574 +5.562508 43.83129 10.03574 +7.471917 43.83129 10.03574 +10.03574 43.83129 10.03574 +13.47828 43.83129 10.03574 +18.10068 43.83129 10.03574 +24.30731 43.83129 10.03574 +32.64117 43.83129 10.03574 +43.83129 43.83129 10.03574 +58.85664 43.83129 10.03574 +-0.0175068 58.85664 10.03574 +-0.01161267 58.85664 10.03574 +-0.005718534 58.85664 10.03574 +0.0001755984 58.85664 10.03574 +0.006069731 58.85664 10.03574 +0.01197402 58.85664 10.03574 +0.01903886 58.85664 10.03574 +0.02852504 58.85664 10.03574 +0.04126244 58.85664 10.03574 +0.05836535 58.85664 10.03574 +0.08132997 58.85664 10.03574 +0.1121653 58.85664 10.03574 +0.1535689 58.85664 10.03574 +0.2091628 58.85664 10.03574 +0.2838106 58.85664 10.03574 +0.3840425 58.85664 10.03574 +0.518627 58.85664 10.03574 +0.6993381 58.85664 10.03574 +0.9419845 58.85664 10.03574 +1.267794 58.85664 10.03574 +1.705268 58.85664 10.03574 +2.292679 58.85664 10.03574 +3.081414 58.85664 10.03574 +4.140474 58.85664 10.03574 +5.562508 58.85664 10.03574 +7.471917 58.85664 10.03574 +10.03574 58.85664 10.03574 +13.47828 58.85664 10.03574 +18.10068 58.85664 10.03574 +24.30731 58.85664 10.03574 +32.64117 58.85664 10.03574 +43.83129 58.85664 10.03574 +58.85664 58.85664 10.03574 +-0.0175068 -0.0175068 13.47828 +-0.01161267 -0.0175068 13.47828 +-0.005718534 -0.0175068 13.47828 +0.0001755984 -0.0175068 13.47828 +0.006069731 -0.0175068 13.47828 +0.01197402 -0.0175068 13.47828 +0.01903886 -0.0175068 13.47828 +0.02852504 -0.0175068 13.47828 +0.04126244 -0.0175068 13.47828 +0.05836535 -0.0175068 13.47828 +0.08132997 -0.0175068 13.47828 +0.1121653 -0.0175068 13.47828 +0.1535689 -0.0175068 13.47828 +0.2091628 -0.0175068 13.47828 +0.2838106 -0.0175068 13.47828 +0.3840425 -0.0175068 13.47828 +0.518627 -0.0175068 13.47828 +0.6993381 -0.0175068 13.47828 +0.9419845 -0.0175068 13.47828 +1.267794 -0.0175068 13.47828 +1.705268 -0.0175068 13.47828 +2.292679 -0.0175068 13.47828 +3.081414 -0.0175068 13.47828 +4.140474 -0.0175068 13.47828 +5.562508 -0.0175068 13.47828 +7.471917 -0.0175068 13.47828 +10.03574 -0.0175068 13.47828 +13.47828 -0.0175068 13.47828 +18.10068 -0.0175068 13.47828 +24.30731 -0.0175068 13.47828 +32.64117 -0.0175068 13.47828 +43.83129 -0.0175068 13.47828 +58.85664 -0.0175068 13.47828 +-0.0175068 -0.01161267 13.47828 +-0.01161267 -0.01161267 13.47828 +-0.005718534 -0.01161267 13.47828 +0.0001755984 -0.01161267 13.47828 +0.006069731 -0.01161267 13.47828 +0.01197402 -0.01161267 13.47828 +0.01903886 -0.01161267 13.47828 +0.02852504 -0.01161267 13.47828 +0.04126244 -0.01161267 13.47828 +0.05836535 -0.01161267 13.47828 +0.08132997 -0.01161267 13.47828 +0.1121653 -0.01161267 13.47828 +0.1535689 -0.01161267 13.47828 +0.2091628 -0.01161267 13.47828 +0.2838106 -0.01161267 13.47828 +0.3840425 -0.01161267 13.47828 +0.518627 -0.01161267 13.47828 +0.6993381 -0.01161267 13.47828 +0.9419845 -0.01161267 13.47828 +1.267794 -0.01161267 13.47828 +1.705268 -0.01161267 13.47828 +2.292679 -0.01161267 13.47828 +3.081414 -0.01161267 13.47828 +4.140474 -0.01161267 13.47828 +5.562508 -0.01161267 13.47828 +7.471917 -0.01161267 13.47828 +10.03574 -0.01161267 13.47828 +13.47828 -0.01161267 13.47828 +18.10068 -0.01161267 13.47828 +24.30731 -0.01161267 13.47828 +32.64117 -0.01161267 13.47828 +43.83129 -0.01161267 13.47828 +58.85664 -0.01161267 13.47828 +-0.0175068 -0.005718534 13.47828 +-0.01161267 -0.005718534 13.47828 +-0.005718534 -0.005718534 13.47828 +0.0001755984 -0.005718534 13.47828 +0.006069731 -0.005718534 13.47828 +0.01197402 -0.005718534 13.47828 +0.01903886 -0.005718534 13.47828 +0.02852504 -0.005718534 13.47828 +0.04126244 -0.005718534 13.47828 +0.05836535 -0.005718534 13.47828 +0.08132997 -0.005718534 13.47828 +0.1121653 -0.005718534 13.47828 +0.1535689 -0.005718534 13.47828 +0.2091628 -0.005718534 13.47828 +0.2838106 -0.005718534 13.47828 +0.3840425 -0.005718534 13.47828 +0.518627 -0.005718534 13.47828 +0.6993381 -0.005718534 13.47828 +0.9419845 -0.005718534 13.47828 +1.267794 -0.005718534 13.47828 +1.705268 -0.005718534 13.47828 +2.292679 -0.005718534 13.47828 +3.081414 -0.005718534 13.47828 +4.140474 -0.005718534 13.47828 +5.562508 -0.005718534 13.47828 +7.471917 -0.005718534 13.47828 +10.03574 -0.005718534 13.47828 +13.47828 -0.005718534 13.47828 +18.10068 -0.005718534 13.47828 +24.30731 -0.005718534 13.47828 +32.64117 -0.005718534 13.47828 +43.83129 -0.005718534 13.47828 +58.85664 -0.005718534 13.47828 +-0.0175068 0.0001755984 13.47828 +-0.01161267 0.0001755984 13.47828 +-0.005718534 0.0001755984 13.47828 +0.0001755984 0.0001755984 13.47828 +0.006069731 0.0001755984 13.47828 +0.01197402 0.0001755984 13.47828 +0.01903886 0.0001755984 13.47828 +0.02852504 0.0001755984 13.47828 +0.04126244 0.0001755984 13.47828 +0.05836535 0.0001755984 13.47828 +0.08132997 0.0001755984 13.47828 +0.1121653 0.0001755984 13.47828 +0.1535689 0.0001755984 13.47828 +0.2091628 0.0001755984 13.47828 +0.2838106 0.0001755984 13.47828 +0.3840425 0.0001755984 13.47828 +0.518627 0.0001755984 13.47828 +0.6993381 0.0001755984 13.47828 +0.9419845 0.0001755984 13.47828 +1.267794 0.0001755984 13.47828 +1.705268 0.0001755984 13.47828 +2.292679 0.0001755984 13.47828 +3.081414 0.0001755984 13.47828 +4.140474 0.0001755984 13.47828 +5.562508 0.0001755984 13.47828 +7.471917 0.0001755984 13.47828 +10.03574 0.0001755984 13.47828 +13.47828 0.0001755984 13.47828 +18.10068 0.0001755984 13.47828 +24.30731 0.0001755984 13.47828 +32.64117 0.0001755984 13.47828 +43.83129 0.0001755984 13.47828 +58.85664 0.0001755984 13.47828 +-0.0175068 0.006069731 13.47828 +-0.01161267 0.006069731 13.47828 +-0.005718534 0.006069731 13.47828 +0.0001755984 0.006069731 13.47828 +0.006069731 0.006069731 13.47828 +0.01197402 0.006069731 13.47828 +0.01903886 0.006069731 13.47828 +0.02852504 0.006069731 13.47828 +0.04126244 0.006069731 13.47828 +0.05836535 0.006069731 13.47828 +0.08132997 0.006069731 13.47828 +0.1121653 0.006069731 13.47828 +0.1535689 0.006069731 13.47828 +0.2091628 0.006069731 13.47828 +0.2838106 0.006069731 13.47828 +0.3840425 0.006069731 13.47828 +0.518627 0.006069731 13.47828 +0.6993381 0.006069731 13.47828 +0.9419845 0.006069731 13.47828 +1.267794 0.006069731 13.47828 +1.705268 0.006069731 13.47828 +2.292679 0.006069731 13.47828 +3.081414 0.006069731 13.47828 +4.140474 0.006069731 13.47828 +5.562508 0.006069731 13.47828 +7.471917 0.006069731 13.47828 +10.03574 0.006069731 13.47828 +13.47828 0.006069731 13.47828 +18.10068 0.006069731 13.47828 +24.30731 0.006069731 13.47828 +32.64117 0.006069731 13.47828 +43.83129 0.006069731 13.47828 +58.85664 0.006069731 13.47828 +-0.0175068 0.01197402 13.47828 +-0.01161267 0.01197402 13.47828 +-0.005718534 0.01197402 13.47828 +0.0001755984 0.01197402 13.47828 +0.006069731 0.01197402 13.47828 +0.01197402 0.01197402 13.47828 +0.01903886 0.01197402 13.47828 +0.02852504 0.01197402 13.47828 +0.04126244 0.01197402 13.47828 +0.05836535 0.01197402 13.47828 +0.08132997 0.01197402 13.47828 +0.1121653 0.01197402 13.47828 +0.1535689 0.01197402 13.47828 +0.2091628 0.01197402 13.47828 +0.2838106 0.01197402 13.47828 +0.3840425 0.01197402 13.47828 +0.518627 0.01197402 13.47828 +0.6993381 0.01197402 13.47828 +0.9419845 0.01197402 13.47828 +1.267794 0.01197402 13.47828 +1.705268 0.01197402 13.47828 +2.292679 0.01197402 13.47828 +3.081414 0.01197402 13.47828 +4.140474 0.01197402 13.47828 +5.562508 0.01197402 13.47828 +7.471917 0.01197402 13.47828 +10.03574 0.01197402 13.47828 +13.47828 0.01197402 13.47828 +18.10068 0.01197402 13.47828 +24.30731 0.01197402 13.47828 +32.64117 0.01197402 13.47828 +43.83129 0.01197402 13.47828 +58.85664 0.01197402 13.47828 +-0.0175068 0.01903886 13.47828 +-0.01161267 0.01903886 13.47828 +-0.005718534 0.01903886 13.47828 +0.0001755984 0.01903886 13.47828 +0.006069731 0.01903886 13.47828 +0.01197402 0.01903886 13.47828 +0.01903886 0.01903886 13.47828 +0.02852504 0.01903886 13.47828 +0.04126244 0.01903886 13.47828 +0.05836535 0.01903886 13.47828 +0.08132997 0.01903886 13.47828 +0.1121653 0.01903886 13.47828 +0.1535689 0.01903886 13.47828 +0.2091628 0.01903886 13.47828 +0.2838106 0.01903886 13.47828 +0.3840425 0.01903886 13.47828 +0.518627 0.01903886 13.47828 +0.6993381 0.01903886 13.47828 +0.9419845 0.01903886 13.47828 +1.267794 0.01903886 13.47828 +1.705268 0.01903886 13.47828 +2.292679 0.01903886 13.47828 +3.081414 0.01903886 13.47828 +4.140474 0.01903886 13.47828 +5.562508 0.01903886 13.47828 +7.471917 0.01903886 13.47828 +10.03574 0.01903886 13.47828 +13.47828 0.01903886 13.47828 +18.10068 0.01903886 13.47828 +24.30731 0.01903886 13.47828 +32.64117 0.01903886 13.47828 +43.83129 0.01903886 13.47828 +58.85664 0.01903886 13.47828 +-0.0175068 0.02852504 13.47828 +-0.01161267 0.02852504 13.47828 +-0.005718534 0.02852504 13.47828 +0.0001755984 0.02852504 13.47828 +0.006069731 0.02852504 13.47828 +0.01197402 0.02852504 13.47828 +0.01903886 0.02852504 13.47828 +0.02852504 0.02852504 13.47828 +0.04126244 0.02852504 13.47828 +0.05836535 0.02852504 13.47828 +0.08132997 0.02852504 13.47828 +0.1121653 0.02852504 13.47828 +0.1535689 0.02852504 13.47828 +0.2091628 0.02852504 13.47828 +0.2838106 0.02852504 13.47828 +0.3840425 0.02852504 13.47828 +0.518627 0.02852504 13.47828 +0.6993381 0.02852504 13.47828 +0.9419845 0.02852504 13.47828 +1.267794 0.02852504 13.47828 +1.705268 0.02852504 13.47828 +2.292679 0.02852504 13.47828 +3.081414 0.02852504 13.47828 +4.140474 0.02852504 13.47828 +5.562508 0.02852504 13.47828 +7.471917 0.02852504 13.47828 +10.03574 0.02852504 13.47828 +13.47828 0.02852504 13.47828 +18.10068 0.02852504 13.47828 +24.30731 0.02852504 13.47828 +32.64117 0.02852504 13.47828 +43.83129 0.02852504 13.47828 +58.85664 0.02852504 13.47828 +-0.0175068 0.04126244 13.47828 +-0.01161267 0.04126244 13.47828 +-0.005718534 0.04126244 13.47828 +0.0001755984 0.04126244 13.47828 +0.006069731 0.04126244 13.47828 +0.01197402 0.04126244 13.47828 +0.01903886 0.04126244 13.47828 +0.02852504 0.04126244 13.47828 +0.04126244 0.04126244 13.47828 +0.05836535 0.04126244 13.47828 +0.08132997 0.04126244 13.47828 +0.1121653 0.04126244 13.47828 +0.1535689 0.04126244 13.47828 +0.2091628 0.04126244 13.47828 +0.2838106 0.04126244 13.47828 +0.3840425 0.04126244 13.47828 +0.518627 0.04126244 13.47828 +0.6993381 0.04126244 13.47828 +0.9419845 0.04126244 13.47828 +1.267794 0.04126244 13.47828 +1.705268 0.04126244 13.47828 +2.292679 0.04126244 13.47828 +3.081414 0.04126244 13.47828 +4.140474 0.04126244 13.47828 +5.562508 0.04126244 13.47828 +7.471917 0.04126244 13.47828 +10.03574 0.04126244 13.47828 +13.47828 0.04126244 13.47828 +18.10068 0.04126244 13.47828 +24.30731 0.04126244 13.47828 +32.64117 0.04126244 13.47828 +43.83129 0.04126244 13.47828 +58.85664 0.04126244 13.47828 +-0.0175068 0.05836535 13.47828 +-0.01161267 0.05836535 13.47828 +-0.005718534 0.05836535 13.47828 +0.0001755984 0.05836535 13.47828 +0.006069731 0.05836535 13.47828 +0.01197402 0.05836535 13.47828 +0.01903886 0.05836535 13.47828 +0.02852504 0.05836535 13.47828 +0.04126244 0.05836535 13.47828 +0.05836535 0.05836535 13.47828 +0.08132997 0.05836535 13.47828 +0.1121653 0.05836535 13.47828 +0.1535689 0.05836535 13.47828 +0.2091628 0.05836535 13.47828 +0.2838106 0.05836535 13.47828 +0.3840425 0.05836535 13.47828 +0.518627 0.05836535 13.47828 +0.6993381 0.05836535 13.47828 +0.9419845 0.05836535 13.47828 +1.267794 0.05836535 13.47828 +1.705268 0.05836535 13.47828 +2.292679 0.05836535 13.47828 +3.081414 0.05836535 13.47828 +4.140474 0.05836535 13.47828 +5.562508 0.05836535 13.47828 +7.471917 0.05836535 13.47828 +10.03574 0.05836535 13.47828 +13.47828 0.05836535 13.47828 +18.10068 0.05836535 13.47828 +24.30731 0.05836535 13.47828 +32.64117 0.05836535 13.47828 +43.83129 0.05836535 13.47828 +58.85664 0.05836535 13.47828 +-0.0175068 0.08132997 13.47828 +-0.01161267 0.08132997 13.47828 +-0.005718534 0.08132997 13.47828 +0.0001755984 0.08132997 13.47828 +0.006069731 0.08132997 13.47828 +0.01197402 0.08132997 13.47828 +0.01903886 0.08132997 13.47828 +0.02852504 0.08132997 13.47828 +0.04126244 0.08132997 13.47828 +0.05836535 0.08132997 13.47828 +0.08132997 0.08132997 13.47828 +0.1121653 0.08132997 13.47828 +0.1535689 0.08132997 13.47828 +0.2091628 0.08132997 13.47828 +0.2838106 0.08132997 13.47828 +0.3840425 0.08132997 13.47828 +0.518627 0.08132997 13.47828 +0.6993381 0.08132997 13.47828 +0.9419845 0.08132997 13.47828 +1.267794 0.08132997 13.47828 +1.705268 0.08132997 13.47828 +2.292679 0.08132997 13.47828 +3.081414 0.08132997 13.47828 +4.140474 0.08132997 13.47828 +5.562508 0.08132997 13.47828 +7.471917 0.08132997 13.47828 +10.03574 0.08132997 13.47828 +13.47828 0.08132997 13.47828 +18.10068 0.08132997 13.47828 +24.30731 0.08132997 13.47828 +32.64117 0.08132997 13.47828 +43.83129 0.08132997 13.47828 +58.85664 0.08132997 13.47828 +-0.0175068 0.1121653 13.47828 +-0.01161267 0.1121653 13.47828 +-0.005718534 0.1121653 13.47828 +0.0001755984 0.1121653 13.47828 +0.006069731 0.1121653 13.47828 +0.01197402 0.1121653 13.47828 +0.01903886 0.1121653 13.47828 +0.02852504 0.1121653 13.47828 +0.04126244 0.1121653 13.47828 +0.05836535 0.1121653 13.47828 +0.08132997 0.1121653 13.47828 +0.1121653 0.1121653 13.47828 +0.1535689 0.1121653 13.47828 +0.2091628 0.1121653 13.47828 +0.2838106 0.1121653 13.47828 +0.3840425 0.1121653 13.47828 +0.518627 0.1121653 13.47828 +0.6993381 0.1121653 13.47828 +0.9419845 0.1121653 13.47828 +1.267794 0.1121653 13.47828 +1.705268 0.1121653 13.47828 +2.292679 0.1121653 13.47828 +3.081414 0.1121653 13.47828 +4.140474 0.1121653 13.47828 +5.562508 0.1121653 13.47828 +7.471917 0.1121653 13.47828 +10.03574 0.1121653 13.47828 +13.47828 0.1121653 13.47828 +18.10068 0.1121653 13.47828 +24.30731 0.1121653 13.47828 +32.64117 0.1121653 13.47828 +43.83129 0.1121653 13.47828 +58.85664 0.1121653 13.47828 +-0.0175068 0.1535689 13.47828 +-0.01161267 0.1535689 13.47828 +-0.005718534 0.1535689 13.47828 +0.0001755984 0.1535689 13.47828 +0.006069731 0.1535689 13.47828 +0.01197402 0.1535689 13.47828 +0.01903886 0.1535689 13.47828 +0.02852504 0.1535689 13.47828 +0.04126244 0.1535689 13.47828 +0.05836535 0.1535689 13.47828 +0.08132997 0.1535689 13.47828 +0.1121653 0.1535689 13.47828 +0.1535689 0.1535689 13.47828 +0.2091628 0.1535689 13.47828 +0.2838106 0.1535689 13.47828 +0.3840425 0.1535689 13.47828 +0.518627 0.1535689 13.47828 +0.6993381 0.1535689 13.47828 +0.9419845 0.1535689 13.47828 +1.267794 0.1535689 13.47828 +1.705268 0.1535689 13.47828 +2.292679 0.1535689 13.47828 +3.081414 0.1535689 13.47828 +4.140474 0.1535689 13.47828 +5.562508 0.1535689 13.47828 +7.471917 0.1535689 13.47828 +10.03574 0.1535689 13.47828 +13.47828 0.1535689 13.47828 +18.10068 0.1535689 13.47828 +24.30731 0.1535689 13.47828 +32.64117 0.1535689 13.47828 +43.83129 0.1535689 13.47828 +58.85664 0.1535689 13.47828 +-0.0175068 0.2091628 13.47828 +-0.01161267 0.2091628 13.47828 +-0.005718534 0.2091628 13.47828 +0.0001755984 0.2091628 13.47828 +0.006069731 0.2091628 13.47828 +0.01197402 0.2091628 13.47828 +0.01903886 0.2091628 13.47828 +0.02852504 0.2091628 13.47828 +0.04126244 0.2091628 13.47828 +0.05836535 0.2091628 13.47828 +0.08132997 0.2091628 13.47828 +0.1121653 0.2091628 13.47828 +0.1535689 0.2091628 13.47828 +0.2091628 0.2091628 13.47828 +0.2838106 0.2091628 13.47828 +0.3840425 0.2091628 13.47828 +0.518627 0.2091628 13.47828 +0.6993381 0.2091628 13.47828 +0.9419845 0.2091628 13.47828 +1.267794 0.2091628 13.47828 +1.705268 0.2091628 13.47828 +2.292679 0.2091628 13.47828 +3.081414 0.2091628 13.47828 +4.140474 0.2091628 13.47828 +5.562508 0.2091628 13.47828 +7.471917 0.2091628 13.47828 +10.03574 0.2091628 13.47828 +13.47828 0.2091628 13.47828 +18.10068 0.2091628 13.47828 +24.30731 0.2091628 13.47828 +32.64117 0.2091628 13.47828 +43.83129 0.2091628 13.47828 +58.85664 0.2091628 13.47828 +-0.0175068 0.2838106 13.47828 +-0.01161267 0.2838106 13.47828 +-0.005718534 0.2838106 13.47828 +0.0001755984 0.2838106 13.47828 +0.006069731 0.2838106 13.47828 +0.01197402 0.2838106 13.47828 +0.01903886 0.2838106 13.47828 +0.02852504 0.2838106 13.47828 +0.04126244 0.2838106 13.47828 +0.05836535 0.2838106 13.47828 +0.08132997 0.2838106 13.47828 +0.1121653 0.2838106 13.47828 +0.1535689 0.2838106 13.47828 +0.2091628 0.2838106 13.47828 +0.2838106 0.2838106 13.47828 +0.3840425 0.2838106 13.47828 +0.518627 0.2838106 13.47828 +0.6993381 0.2838106 13.47828 +0.9419845 0.2838106 13.47828 +1.267794 0.2838106 13.47828 +1.705268 0.2838106 13.47828 +2.292679 0.2838106 13.47828 +3.081414 0.2838106 13.47828 +4.140474 0.2838106 13.47828 +5.562508 0.2838106 13.47828 +7.471917 0.2838106 13.47828 +10.03574 0.2838106 13.47828 +13.47828 0.2838106 13.47828 +18.10068 0.2838106 13.47828 +24.30731 0.2838106 13.47828 +32.64117 0.2838106 13.47828 +43.83129 0.2838106 13.47828 +58.85664 0.2838106 13.47828 +-0.0175068 0.3840425 13.47828 +-0.01161267 0.3840425 13.47828 +-0.005718534 0.3840425 13.47828 +0.0001755984 0.3840425 13.47828 +0.006069731 0.3840425 13.47828 +0.01197402 0.3840425 13.47828 +0.01903886 0.3840425 13.47828 +0.02852504 0.3840425 13.47828 +0.04126244 0.3840425 13.47828 +0.05836535 0.3840425 13.47828 +0.08132997 0.3840425 13.47828 +0.1121653 0.3840425 13.47828 +0.1535689 0.3840425 13.47828 +0.2091628 0.3840425 13.47828 +0.2838106 0.3840425 13.47828 +0.3840425 0.3840425 13.47828 +0.518627 0.3840425 13.47828 +0.6993381 0.3840425 13.47828 +0.9419845 0.3840425 13.47828 +1.267794 0.3840425 13.47828 +1.705268 0.3840425 13.47828 +2.292679 0.3840425 13.47828 +3.081414 0.3840425 13.47828 +4.140474 0.3840425 13.47828 +5.562508 0.3840425 13.47828 +7.471917 0.3840425 13.47828 +10.03574 0.3840425 13.47828 +13.47828 0.3840425 13.47828 +18.10068 0.3840425 13.47828 +24.30731 0.3840425 13.47828 +32.64117 0.3840425 13.47828 +43.83129 0.3840425 13.47828 +58.85664 0.3840425 13.47828 +-0.0175068 0.518627 13.47828 +-0.01161267 0.518627 13.47828 +-0.005718534 0.518627 13.47828 +0.0001755984 0.518627 13.47828 +0.006069731 0.518627 13.47828 +0.01197402 0.518627 13.47828 +0.01903886 0.518627 13.47828 +0.02852504 0.518627 13.47828 +0.04126244 0.518627 13.47828 +0.05836535 0.518627 13.47828 +0.08132997 0.518627 13.47828 +0.1121653 0.518627 13.47828 +0.1535689 0.518627 13.47828 +0.2091628 0.518627 13.47828 +0.2838106 0.518627 13.47828 +0.3840425 0.518627 13.47828 +0.518627 0.518627 13.47828 +0.6993381 0.518627 13.47828 +0.9419845 0.518627 13.47828 +1.267794 0.518627 13.47828 +1.705268 0.518627 13.47828 +2.292679 0.518627 13.47828 +3.081414 0.518627 13.47828 +4.140474 0.518627 13.47828 +5.562508 0.518627 13.47828 +7.471917 0.518627 13.47828 +10.03574 0.518627 13.47828 +13.47828 0.518627 13.47828 +18.10068 0.518627 13.47828 +24.30731 0.518627 13.47828 +32.64117 0.518627 13.47828 +43.83129 0.518627 13.47828 +58.85664 0.518627 13.47828 +-0.0175068 0.6993381 13.47828 +-0.01161267 0.6993381 13.47828 +-0.005718534 0.6993381 13.47828 +0.0001755984 0.6993381 13.47828 +0.006069731 0.6993381 13.47828 +0.01197402 0.6993381 13.47828 +0.01903886 0.6993381 13.47828 +0.02852504 0.6993381 13.47828 +0.04126244 0.6993381 13.47828 +0.05836535 0.6993381 13.47828 +0.08132997 0.6993381 13.47828 +0.1121653 0.6993381 13.47828 +0.1535689 0.6993381 13.47828 +0.2091628 0.6993381 13.47828 +0.2838106 0.6993381 13.47828 +0.3840425 0.6993381 13.47828 +0.518627 0.6993381 13.47828 +0.6993381 0.6993381 13.47828 +0.9419845 0.6993381 13.47828 +1.267794 0.6993381 13.47828 +1.705268 0.6993381 13.47828 +2.292679 0.6993381 13.47828 +3.081414 0.6993381 13.47828 +4.140474 0.6993381 13.47828 +5.562508 0.6993381 13.47828 +7.471917 0.6993381 13.47828 +10.03574 0.6993381 13.47828 +13.47828 0.6993381 13.47828 +18.10068 0.6993381 13.47828 +24.30731 0.6993381 13.47828 +32.64117 0.6993381 13.47828 +43.83129 0.6993381 13.47828 +58.85664 0.6993381 13.47828 +-0.0175068 0.9419845 13.47828 +-0.01161267 0.9419845 13.47828 +-0.005718534 0.9419845 13.47828 +0.0001755984 0.9419845 13.47828 +0.006069731 0.9419845 13.47828 +0.01197402 0.9419845 13.47828 +0.01903886 0.9419845 13.47828 +0.02852504 0.9419845 13.47828 +0.04126244 0.9419845 13.47828 +0.05836535 0.9419845 13.47828 +0.08132997 0.9419845 13.47828 +0.1121653 0.9419845 13.47828 +0.1535689 0.9419845 13.47828 +0.2091628 0.9419845 13.47828 +0.2838106 0.9419845 13.47828 +0.3840425 0.9419845 13.47828 +0.518627 0.9419845 13.47828 +0.6993381 0.9419845 13.47828 +0.9419845 0.9419845 13.47828 +1.267794 0.9419845 13.47828 +1.705268 0.9419845 13.47828 +2.292679 0.9419845 13.47828 +3.081414 0.9419845 13.47828 +4.140474 0.9419845 13.47828 +5.562508 0.9419845 13.47828 +7.471917 0.9419845 13.47828 +10.03574 0.9419845 13.47828 +13.47828 0.9419845 13.47828 +18.10068 0.9419845 13.47828 +24.30731 0.9419845 13.47828 +32.64117 0.9419845 13.47828 +43.83129 0.9419845 13.47828 +58.85664 0.9419845 13.47828 +-0.0175068 1.267794 13.47828 +-0.01161267 1.267794 13.47828 +-0.005718534 1.267794 13.47828 +0.0001755984 1.267794 13.47828 +0.006069731 1.267794 13.47828 +0.01197402 1.267794 13.47828 +0.01903886 1.267794 13.47828 +0.02852504 1.267794 13.47828 +0.04126244 1.267794 13.47828 +0.05836535 1.267794 13.47828 +0.08132997 1.267794 13.47828 +0.1121653 1.267794 13.47828 +0.1535689 1.267794 13.47828 +0.2091628 1.267794 13.47828 +0.2838106 1.267794 13.47828 +0.3840425 1.267794 13.47828 +0.518627 1.267794 13.47828 +0.6993381 1.267794 13.47828 +0.9419845 1.267794 13.47828 +1.267794 1.267794 13.47828 +1.705268 1.267794 13.47828 +2.292679 1.267794 13.47828 +3.081414 1.267794 13.47828 +4.140474 1.267794 13.47828 +5.562508 1.267794 13.47828 +7.471917 1.267794 13.47828 +10.03574 1.267794 13.47828 +13.47828 1.267794 13.47828 +18.10068 1.267794 13.47828 +24.30731 1.267794 13.47828 +32.64117 1.267794 13.47828 +43.83129 1.267794 13.47828 +58.85664 1.267794 13.47828 +-0.0175068 1.705268 13.47828 +-0.01161267 1.705268 13.47828 +-0.005718534 1.705268 13.47828 +0.0001755984 1.705268 13.47828 +0.006069731 1.705268 13.47828 +0.01197402 1.705268 13.47828 +0.01903886 1.705268 13.47828 +0.02852504 1.705268 13.47828 +0.04126244 1.705268 13.47828 +0.05836535 1.705268 13.47828 +0.08132997 1.705268 13.47828 +0.1121653 1.705268 13.47828 +0.1535689 1.705268 13.47828 +0.2091628 1.705268 13.47828 +0.2838106 1.705268 13.47828 +0.3840425 1.705268 13.47828 +0.518627 1.705268 13.47828 +0.6993381 1.705268 13.47828 +0.9419845 1.705268 13.47828 +1.267794 1.705268 13.47828 +1.705268 1.705268 13.47828 +2.292679 1.705268 13.47828 +3.081414 1.705268 13.47828 +4.140474 1.705268 13.47828 +5.562508 1.705268 13.47828 +7.471917 1.705268 13.47828 +10.03574 1.705268 13.47828 +13.47828 1.705268 13.47828 +18.10068 1.705268 13.47828 +24.30731 1.705268 13.47828 +32.64117 1.705268 13.47828 +43.83129 1.705268 13.47828 +58.85664 1.705268 13.47828 +-0.0175068 2.292679 13.47828 +-0.01161267 2.292679 13.47828 +-0.005718534 2.292679 13.47828 +0.0001755984 2.292679 13.47828 +0.006069731 2.292679 13.47828 +0.01197402 2.292679 13.47828 +0.01903886 2.292679 13.47828 +0.02852504 2.292679 13.47828 +0.04126244 2.292679 13.47828 +0.05836535 2.292679 13.47828 +0.08132997 2.292679 13.47828 +0.1121653 2.292679 13.47828 +0.1535689 2.292679 13.47828 +0.2091628 2.292679 13.47828 +0.2838106 2.292679 13.47828 +0.3840425 2.292679 13.47828 +0.518627 2.292679 13.47828 +0.6993381 2.292679 13.47828 +0.9419845 2.292679 13.47828 +1.267794 2.292679 13.47828 +1.705268 2.292679 13.47828 +2.292679 2.292679 13.47828 +3.081414 2.292679 13.47828 +4.140474 2.292679 13.47828 +5.562508 2.292679 13.47828 +7.471917 2.292679 13.47828 +10.03574 2.292679 13.47828 +13.47828 2.292679 13.47828 +18.10068 2.292679 13.47828 +24.30731 2.292679 13.47828 +32.64117 2.292679 13.47828 +43.83129 2.292679 13.47828 +58.85664 2.292679 13.47828 +-0.0175068 3.081414 13.47828 +-0.01161267 3.081414 13.47828 +-0.005718534 3.081414 13.47828 +0.0001755984 3.081414 13.47828 +0.006069731 3.081414 13.47828 +0.01197402 3.081414 13.47828 +0.01903886 3.081414 13.47828 +0.02852504 3.081414 13.47828 +0.04126244 3.081414 13.47828 +0.05836535 3.081414 13.47828 +0.08132997 3.081414 13.47828 +0.1121653 3.081414 13.47828 +0.1535689 3.081414 13.47828 +0.2091628 3.081414 13.47828 +0.2838106 3.081414 13.47828 +0.3840425 3.081414 13.47828 +0.518627 3.081414 13.47828 +0.6993381 3.081414 13.47828 +0.9419845 3.081414 13.47828 +1.267794 3.081414 13.47828 +1.705268 3.081414 13.47828 +2.292679 3.081414 13.47828 +3.081414 3.081414 13.47828 +4.140474 3.081414 13.47828 +5.562508 3.081414 13.47828 +7.471917 3.081414 13.47828 +10.03574 3.081414 13.47828 +13.47828 3.081414 13.47828 +18.10068 3.081414 13.47828 +24.30731 3.081414 13.47828 +32.64117 3.081414 13.47828 +43.83129 3.081414 13.47828 +58.85664 3.081414 13.47828 +-0.0175068 4.140474 13.47828 +-0.01161267 4.140474 13.47828 +-0.005718534 4.140474 13.47828 +0.0001755984 4.140474 13.47828 +0.006069731 4.140474 13.47828 +0.01197402 4.140474 13.47828 +0.01903886 4.140474 13.47828 +0.02852504 4.140474 13.47828 +0.04126244 4.140474 13.47828 +0.05836535 4.140474 13.47828 +0.08132997 4.140474 13.47828 +0.1121653 4.140474 13.47828 +0.1535689 4.140474 13.47828 +0.2091628 4.140474 13.47828 +0.2838106 4.140474 13.47828 +0.3840425 4.140474 13.47828 +0.518627 4.140474 13.47828 +0.6993381 4.140474 13.47828 +0.9419845 4.140474 13.47828 +1.267794 4.140474 13.47828 +1.705268 4.140474 13.47828 +2.292679 4.140474 13.47828 +3.081414 4.140474 13.47828 +4.140474 4.140474 13.47828 +5.562508 4.140474 13.47828 +7.471917 4.140474 13.47828 +10.03574 4.140474 13.47828 +13.47828 4.140474 13.47828 +18.10068 4.140474 13.47828 +24.30731 4.140474 13.47828 +32.64117 4.140474 13.47828 +43.83129 4.140474 13.47828 +58.85664 4.140474 13.47828 +-0.0175068 5.562508 13.47828 +-0.01161267 5.562508 13.47828 +-0.005718534 5.562508 13.47828 +0.0001755984 5.562508 13.47828 +0.006069731 5.562508 13.47828 +0.01197402 5.562508 13.47828 +0.01903886 5.562508 13.47828 +0.02852504 5.562508 13.47828 +0.04126244 5.562508 13.47828 +0.05836535 5.562508 13.47828 +0.08132997 5.562508 13.47828 +0.1121653 5.562508 13.47828 +0.1535689 5.562508 13.47828 +0.2091628 5.562508 13.47828 +0.2838106 5.562508 13.47828 +0.3840425 5.562508 13.47828 +0.518627 5.562508 13.47828 +0.6993381 5.562508 13.47828 +0.9419845 5.562508 13.47828 +1.267794 5.562508 13.47828 +1.705268 5.562508 13.47828 +2.292679 5.562508 13.47828 +3.081414 5.562508 13.47828 +4.140474 5.562508 13.47828 +5.562508 5.562508 13.47828 +7.471917 5.562508 13.47828 +10.03574 5.562508 13.47828 +13.47828 5.562508 13.47828 +18.10068 5.562508 13.47828 +24.30731 5.562508 13.47828 +32.64117 5.562508 13.47828 +43.83129 5.562508 13.47828 +58.85664 5.562508 13.47828 +-0.0175068 7.471917 13.47828 +-0.01161267 7.471917 13.47828 +-0.005718534 7.471917 13.47828 +0.0001755984 7.471917 13.47828 +0.006069731 7.471917 13.47828 +0.01197402 7.471917 13.47828 +0.01903886 7.471917 13.47828 +0.02852504 7.471917 13.47828 +0.04126244 7.471917 13.47828 +0.05836535 7.471917 13.47828 +0.08132997 7.471917 13.47828 +0.1121653 7.471917 13.47828 +0.1535689 7.471917 13.47828 +0.2091628 7.471917 13.47828 +0.2838106 7.471917 13.47828 +0.3840425 7.471917 13.47828 +0.518627 7.471917 13.47828 +0.6993381 7.471917 13.47828 +0.9419845 7.471917 13.47828 +1.267794 7.471917 13.47828 +1.705268 7.471917 13.47828 +2.292679 7.471917 13.47828 +3.081414 7.471917 13.47828 +4.140474 7.471917 13.47828 +5.562508 7.471917 13.47828 +7.471917 7.471917 13.47828 +10.03574 7.471917 13.47828 +13.47828 7.471917 13.47828 +18.10068 7.471917 13.47828 +24.30731 7.471917 13.47828 +32.64117 7.471917 13.47828 +43.83129 7.471917 13.47828 +58.85664 7.471917 13.47828 +-0.0175068 10.03574 13.47828 +-0.01161267 10.03574 13.47828 +-0.005718534 10.03574 13.47828 +0.0001755984 10.03574 13.47828 +0.006069731 10.03574 13.47828 +0.01197402 10.03574 13.47828 +0.01903886 10.03574 13.47828 +0.02852504 10.03574 13.47828 +0.04126244 10.03574 13.47828 +0.05836535 10.03574 13.47828 +0.08132997 10.03574 13.47828 +0.1121653 10.03574 13.47828 +0.1535689 10.03574 13.47828 +0.2091628 10.03574 13.47828 +0.2838106 10.03574 13.47828 +0.3840425 10.03574 13.47828 +0.518627 10.03574 13.47828 +0.6993381 10.03574 13.47828 +0.9419845 10.03574 13.47828 +1.267794 10.03574 13.47828 +1.705268 10.03574 13.47828 +2.292679 10.03574 13.47828 +3.081414 10.03574 13.47828 +4.140474 10.03574 13.47828 +5.562508 10.03574 13.47828 +7.471917 10.03574 13.47828 +10.03574 10.03574 13.47828 +13.47828 10.03574 13.47828 +18.10068 10.03574 13.47828 +24.30731 10.03574 13.47828 +32.64117 10.03574 13.47828 +43.83129 10.03574 13.47828 +58.85664 10.03574 13.47828 +-0.0175068 13.47828 13.47828 +-0.01161267 13.47828 13.47828 +-0.005718534 13.47828 13.47828 +0.0001755984 13.47828 13.47828 +0.006069731 13.47828 13.47828 +0.01197402 13.47828 13.47828 +0.01903886 13.47828 13.47828 +0.02852504 13.47828 13.47828 +0.04126244 13.47828 13.47828 +0.05836535 13.47828 13.47828 +0.08132997 13.47828 13.47828 +0.1121653 13.47828 13.47828 +0.1535689 13.47828 13.47828 +0.2091628 13.47828 13.47828 +0.2838106 13.47828 13.47828 +0.3840425 13.47828 13.47828 +0.518627 13.47828 13.47828 +0.6993381 13.47828 13.47828 +0.9419845 13.47828 13.47828 +1.267794 13.47828 13.47828 +1.705268 13.47828 13.47828 +2.292679 13.47828 13.47828 +3.081414 13.47828 13.47828 +4.140474 13.47828 13.47828 +5.562508 13.47828 13.47828 +7.471917 13.47828 13.47828 +10.03574 13.47828 13.47828 +13.47828 13.47828 13.47828 +18.10068 13.47828 13.47828 +24.30731 13.47828 13.47828 +32.64117 13.47828 13.47828 +43.83129 13.47828 13.47828 +58.85664 13.47828 13.47828 +-0.0175068 18.10068 13.47828 +-0.01161267 18.10068 13.47828 +-0.005718534 18.10068 13.47828 +0.0001755984 18.10068 13.47828 +0.006069731 18.10068 13.47828 +0.01197402 18.10068 13.47828 +0.01903886 18.10068 13.47828 +0.02852504 18.10068 13.47828 +0.04126244 18.10068 13.47828 +0.05836535 18.10068 13.47828 +0.08132997 18.10068 13.47828 +0.1121653 18.10068 13.47828 +0.1535689 18.10068 13.47828 +0.2091628 18.10068 13.47828 +0.2838106 18.10068 13.47828 +0.3840425 18.10068 13.47828 +0.518627 18.10068 13.47828 +0.6993381 18.10068 13.47828 +0.9419845 18.10068 13.47828 +1.267794 18.10068 13.47828 +1.705268 18.10068 13.47828 +2.292679 18.10068 13.47828 +3.081414 18.10068 13.47828 +4.140474 18.10068 13.47828 +5.562508 18.10068 13.47828 +7.471917 18.10068 13.47828 +10.03574 18.10068 13.47828 +13.47828 18.10068 13.47828 +18.10068 18.10068 13.47828 +24.30731 18.10068 13.47828 +32.64117 18.10068 13.47828 +43.83129 18.10068 13.47828 +58.85664 18.10068 13.47828 +-0.0175068 24.30731 13.47828 +-0.01161267 24.30731 13.47828 +-0.005718534 24.30731 13.47828 +0.0001755984 24.30731 13.47828 +0.006069731 24.30731 13.47828 +0.01197402 24.30731 13.47828 +0.01903886 24.30731 13.47828 +0.02852504 24.30731 13.47828 +0.04126244 24.30731 13.47828 +0.05836535 24.30731 13.47828 +0.08132997 24.30731 13.47828 +0.1121653 24.30731 13.47828 +0.1535689 24.30731 13.47828 +0.2091628 24.30731 13.47828 +0.2838106 24.30731 13.47828 +0.3840425 24.30731 13.47828 +0.518627 24.30731 13.47828 +0.6993381 24.30731 13.47828 +0.9419845 24.30731 13.47828 +1.267794 24.30731 13.47828 +1.705268 24.30731 13.47828 +2.292679 24.30731 13.47828 +3.081414 24.30731 13.47828 +4.140474 24.30731 13.47828 +5.562508 24.30731 13.47828 +7.471917 24.30731 13.47828 +10.03574 24.30731 13.47828 +13.47828 24.30731 13.47828 +18.10068 24.30731 13.47828 +24.30731 24.30731 13.47828 +32.64117 24.30731 13.47828 +43.83129 24.30731 13.47828 +58.85664 24.30731 13.47828 +-0.0175068 32.64117 13.47828 +-0.01161267 32.64117 13.47828 +-0.005718534 32.64117 13.47828 +0.0001755984 32.64117 13.47828 +0.006069731 32.64117 13.47828 +0.01197402 32.64117 13.47828 +0.01903886 32.64117 13.47828 +0.02852504 32.64117 13.47828 +0.04126244 32.64117 13.47828 +0.05836535 32.64117 13.47828 +0.08132997 32.64117 13.47828 +0.1121653 32.64117 13.47828 +0.1535689 32.64117 13.47828 +0.2091628 32.64117 13.47828 +0.2838106 32.64117 13.47828 +0.3840425 32.64117 13.47828 +0.518627 32.64117 13.47828 +0.6993381 32.64117 13.47828 +0.9419845 32.64117 13.47828 +1.267794 32.64117 13.47828 +1.705268 32.64117 13.47828 +2.292679 32.64117 13.47828 +3.081414 32.64117 13.47828 +4.140474 32.64117 13.47828 +5.562508 32.64117 13.47828 +7.471917 32.64117 13.47828 +10.03574 32.64117 13.47828 +13.47828 32.64117 13.47828 +18.10068 32.64117 13.47828 +24.30731 32.64117 13.47828 +32.64117 32.64117 13.47828 +43.83129 32.64117 13.47828 +58.85664 32.64117 13.47828 +-0.0175068 43.83129 13.47828 +-0.01161267 43.83129 13.47828 +-0.005718534 43.83129 13.47828 +0.0001755984 43.83129 13.47828 +0.006069731 43.83129 13.47828 +0.01197402 43.83129 13.47828 +0.01903886 43.83129 13.47828 +0.02852504 43.83129 13.47828 +0.04126244 43.83129 13.47828 +0.05836535 43.83129 13.47828 +0.08132997 43.83129 13.47828 +0.1121653 43.83129 13.47828 +0.1535689 43.83129 13.47828 +0.2091628 43.83129 13.47828 +0.2838106 43.83129 13.47828 +0.3840425 43.83129 13.47828 +0.518627 43.83129 13.47828 +0.6993381 43.83129 13.47828 +0.9419845 43.83129 13.47828 +1.267794 43.83129 13.47828 +1.705268 43.83129 13.47828 +2.292679 43.83129 13.47828 +3.081414 43.83129 13.47828 +4.140474 43.83129 13.47828 +5.562508 43.83129 13.47828 +7.471917 43.83129 13.47828 +10.03574 43.83129 13.47828 +13.47828 43.83129 13.47828 +18.10068 43.83129 13.47828 +24.30731 43.83129 13.47828 +32.64117 43.83129 13.47828 +43.83129 43.83129 13.47828 +58.85664 43.83129 13.47828 +-0.0175068 58.85664 13.47828 +-0.01161267 58.85664 13.47828 +-0.005718534 58.85664 13.47828 +0.0001755984 58.85664 13.47828 +0.006069731 58.85664 13.47828 +0.01197402 58.85664 13.47828 +0.01903886 58.85664 13.47828 +0.02852504 58.85664 13.47828 +0.04126244 58.85664 13.47828 +0.05836535 58.85664 13.47828 +0.08132997 58.85664 13.47828 +0.1121653 58.85664 13.47828 +0.1535689 58.85664 13.47828 +0.2091628 58.85664 13.47828 +0.2838106 58.85664 13.47828 +0.3840425 58.85664 13.47828 +0.518627 58.85664 13.47828 +0.6993381 58.85664 13.47828 +0.9419845 58.85664 13.47828 +1.267794 58.85664 13.47828 +1.705268 58.85664 13.47828 +2.292679 58.85664 13.47828 +3.081414 58.85664 13.47828 +4.140474 58.85664 13.47828 +5.562508 58.85664 13.47828 +7.471917 58.85664 13.47828 +10.03574 58.85664 13.47828 +13.47828 58.85664 13.47828 +18.10068 58.85664 13.47828 +24.30731 58.85664 13.47828 +32.64117 58.85664 13.47828 +43.83129 58.85664 13.47828 +58.85664 58.85664 13.47828 +-0.0175068 -0.0175068 18.10068 +-0.01161267 -0.0175068 18.10068 +-0.005718534 -0.0175068 18.10068 +0.0001755984 -0.0175068 18.10068 +0.006069731 -0.0175068 18.10068 +0.01197402 -0.0175068 18.10068 +0.01903886 -0.0175068 18.10068 +0.02852504 -0.0175068 18.10068 +0.04126244 -0.0175068 18.10068 +0.05836535 -0.0175068 18.10068 +0.08132997 -0.0175068 18.10068 +0.1121653 -0.0175068 18.10068 +0.1535689 -0.0175068 18.10068 +0.2091628 -0.0175068 18.10068 +0.2838106 -0.0175068 18.10068 +0.3840425 -0.0175068 18.10068 +0.518627 -0.0175068 18.10068 +0.6993381 -0.0175068 18.10068 +0.9419845 -0.0175068 18.10068 +1.267794 -0.0175068 18.10068 +1.705268 -0.0175068 18.10068 +2.292679 -0.0175068 18.10068 +3.081414 -0.0175068 18.10068 +4.140474 -0.0175068 18.10068 +5.562508 -0.0175068 18.10068 +7.471917 -0.0175068 18.10068 +10.03574 -0.0175068 18.10068 +13.47828 -0.0175068 18.10068 +18.10068 -0.0175068 18.10068 +24.30731 -0.0175068 18.10068 +32.64117 -0.0175068 18.10068 +43.83129 -0.0175068 18.10068 +58.85664 -0.0175068 18.10068 +-0.0175068 -0.01161267 18.10068 +-0.01161267 -0.01161267 18.10068 +-0.005718534 -0.01161267 18.10068 +0.0001755984 -0.01161267 18.10068 +0.006069731 -0.01161267 18.10068 +0.01197402 -0.01161267 18.10068 +0.01903886 -0.01161267 18.10068 +0.02852504 -0.01161267 18.10068 +0.04126244 -0.01161267 18.10068 +0.05836535 -0.01161267 18.10068 +0.08132997 -0.01161267 18.10068 +0.1121653 -0.01161267 18.10068 +0.1535689 -0.01161267 18.10068 +0.2091628 -0.01161267 18.10068 +0.2838106 -0.01161267 18.10068 +0.3840425 -0.01161267 18.10068 +0.518627 -0.01161267 18.10068 +0.6993381 -0.01161267 18.10068 +0.9419845 -0.01161267 18.10068 +1.267794 -0.01161267 18.10068 +1.705268 -0.01161267 18.10068 +2.292679 -0.01161267 18.10068 +3.081414 -0.01161267 18.10068 +4.140474 -0.01161267 18.10068 +5.562508 -0.01161267 18.10068 +7.471917 -0.01161267 18.10068 +10.03574 -0.01161267 18.10068 +13.47828 -0.01161267 18.10068 +18.10068 -0.01161267 18.10068 +24.30731 -0.01161267 18.10068 +32.64117 -0.01161267 18.10068 +43.83129 -0.01161267 18.10068 +58.85664 -0.01161267 18.10068 +-0.0175068 -0.005718534 18.10068 +-0.01161267 -0.005718534 18.10068 +-0.005718534 -0.005718534 18.10068 +0.0001755984 -0.005718534 18.10068 +0.006069731 -0.005718534 18.10068 +0.01197402 -0.005718534 18.10068 +0.01903886 -0.005718534 18.10068 +0.02852504 -0.005718534 18.10068 +0.04126244 -0.005718534 18.10068 +0.05836535 -0.005718534 18.10068 +0.08132997 -0.005718534 18.10068 +0.1121653 -0.005718534 18.10068 +0.1535689 -0.005718534 18.10068 +0.2091628 -0.005718534 18.10068 +0.2838106 -0.005718534 18.10068 +0.3840425 -0.005718534 18.10068 +0.518627 -0.005718534 18.10068 +0.6993381 -0.005718534 18.10068 +0.9419845 -0.005718534 18.10068 +1.267794 -0.005718534 18.10068 +1.705268 -0.005718534 18.10068 +2.292679 -0.005718534 18.10068 +3.081414 -0.005718534 18.10068 +4.140474 -0.005718534 18.10068 +5.562508 -0.005718534 18.10068 +7.471917 -0.005718534 18.10068 +10.03574 -0.005718534 18.10068 +13.47828 -0.005718534 18.10068 +18.10068 -0.005718534 18.10068 +24.30731 -0.005718534 18.10068 +32.64117 -0.005718534 18.10068 +43.83129 -0.005718534 18.10068 +58.85664 -0.005718534 18.10068 +-0.0175068 0.0001755984 18.10068 +-0.01161267 0.0001755984 18.10068 +-0.005718534 0.0001755984 18.10068 +0.0001755984 0.0001755984 18.10068 +0.006069731 0.0001755984 18.10068 +0.01197402 0.0001755984 18.10068 +0.01903886 0.0001755984 18.10068 +0.02852504 0.0001755984 18.10068 +0.04126244 0.0001755984 18.10068 +0.05836535 0.0001755984 18.10068 +0.08132997 0.0001755984 18.10068 +0.1121653 0.0001755984 18.10068 +0.1535689 0.0001755984 18.10068 +0.2091628 0.0001755984 18.10068 +0.2838106 0.0001755984 18.10068 +0.3840425 0.0001755984 18.10068 +0.518627 0.0001755984 18.10068 +0.6993381 0.0001755984 18.10068 +0.9419845 0.0001755984 18.10068 +1.267794 0.0001755984 18.10068 +1.705268 0.0001755984 18.10068 +2.292679 0.0001755984 18.10068 +3.081414 0.0001755984 18.10068 +4.140474 0.0001755984 18.10068 +5.562508 0.0001755984 18.10068 +7.471917 0.0001755984 18.10068 +10.03574 0.0001755984 18.10068 +13.47828 0.0001755984 18.10068 +18.10068 0.0001755984 18.10068 +24.30731 0.0001755984 18.10068 +32.64117 0.0001755984 18.10068 +43.83129 0.0001755984 18.10068 +58.85664 0.0001755984 18.10068 +-0.0175068 0.006069731 18.10068 +-0.01161267 0.006069731 18.10068 +-0.005718534 0.006069731 18.10068 +0.0001755984 0.006069731 18.10068 +0.006069731 0.006069731 18.10068 +0.01197402 0.006069731 18.10068 +0.01903886 0.006069731 18.10068 +0.02852504 0.006069731 18.10068 +0.04126244 0.006069731 18.10068 +0.05836535 0.006069731 18.10068 +0.08132997 0.006069731 18.10068 +0.1121653 0.006069731 18.10068 +0.1535689 0.006069731 18.10068 +0.2091628 0.006069731 18.10068 +0.2838106 0.006069731 18.10068 +0.3840425 0.006069731 18.10068 +0.518627 0.006069731 18.10068 +0.6993381 0.006069731 18.10068 +0.9419845 0.006069731 18.10068 +1.267794 0.006069731 18.10068 +1.705268 0.006069731 18.10068 +2.292679 0.006069731 18.10068 +3.081414 0.006069731 18.10068 +4.140474 0.006069731 18.10068 +5.562508 0.006069731 18.10068 +7.471917 0.006069731 18.10068 +10.03574 0.006069731 18.10068 +13.47828 0.006069731 18.10068 +18.10068 0.006069731 18.10068 +24.30731 0.006069731 18.10068 +32.64117 0.006069731 18.10068 +43.83129 0.006069731 18.10068 +58.85664 0.006069731 18.10068 +-0.0175068 0.01197402 18.10068 +-0.01161267 0.01197402 18.10068 +-0.005718534 0.01197402 18.10068 +0.0001755984 0.01197402 18.10068 +0.006069731 0.01197402 18.10068 +0.01197402 0.01197402 18.10068 +0.01903886 0.01197402 18.10068 +0.02852504 0.01197402 18.10068 +0.04126244 0.01197402 18.10068 +0.05836535 0.01197402 18.10068 +0.08132997 0.01197402 18.10068 +0.1121653 0.01197402 18.10068 +0.1535689 0.01197402 18.10068 +0.2091628 0.01197402 18.10068 +0.2838106 0.01197402 18.10068 +0.3840425 0.01197402 18.10068 +0.518627 0.01197402 18.10068 +0.6993381 0.01197402 18.10068 +0.9419845 0.01197402 18.10068 +1.267794 0.01197402 18.10068 +1.705268 0.01197402 18.10068 +2.292679 0.01197402 18.10068 +3.081414 0.01197402 18.10068 +4.140474 0.01197402 18.10068 +5.562508 0.01197402 18.10068 +7.471917 0.01197402 18.10068 +10.03574 0.01197402 18.10068 +13.47828 0.01197402 18.10068 +18.10068 0.01197402 18.10068 +24.30731 0.01197402 18.10068 +32.64117 0.01197402 18.10068 +43.83129 0.01197402 18.10068 +58.85664 0.01197402 18.10068 +-0.0175068 0.01903886 18.10068 +-0.01161267 0.01903886 18.10068 +-0.005718534 0.01903886 18.10068 +0.0001755984 0.01903886 18.10068 +0.006069731 0.01903886 18.10068 +0.01197402 0.01903886 18.10068 +0.01903886 0.01903886 18.10068 +0.02852504 0.01903886 18.10068 +0.04126244 0.01903886 18.10068 +0.05836535 0.01903886 18.10068 +0.08132997 0.01903886 18.10068 +0.1121653 0.01903886 18.10068 +0.1535689 0.01903886 18.10068 +0.2091628 0.01903886 18.10068 +0.2838106 0.01903886 18.10068 +0.3840425 0.01903886 18.10068 +0.518627 0.01903886 18.10068 +0.6993381 0.01903886 18.10068 +0.9419845 0.01903886 18.10068 +1.267794 0.01903886 18.10068 +1.705268 0.01903886 18.10068 +2.292679 0.01903886 18.10068 +3.081414 0.01903886 18.10068 +4.140474 0.01903886 18.10068 +5.562508 0.01903886 18.10068 +7.471917 0.01903886 18.10068 +10.03574 0.01903886 18.10068 +13.47828 0.01903886 18.10068 +18.10068 0.01903886 18.10068 +24.30731 0.01903886 18.10068 +32.64117 0.01903886 18.10068 +43.83129 0.01903886 18.10068 +58.85664 0.01903886 18.10068 +-0.0175068 0.02852504 18.10068 +-0.01161267 0.02852504 18.10068 +-0.005718534 0.02852504 18.10068 +0.0001755984 0.02852504 18.10068 +0.006069731 0.02852504 18.10068 +0.01197402 0.02852504 18.10068 +0.01903886 0.02852504 18.10068 +0.02852504 0.02852504 18.10068 +0.04126244 0.02852504 18.10068 +0.05836535 0.02852504 18.10068 +0.08132997 0.02852504 18.10068 +0.1121653 0.02852504 18.10068 +0.1535689 0.02852504 18.10068 +0.2091628 0.02852504 18.10068 +0.2838106 0.02852504 18.10068 +0.3840425 0.02852504 18.10068 +0.518627 0.02852504 18.10068 +0.6993381 0.02852504 18.10068 +0.9419845 0.02852504 18.10068 +1.267794 0.02852504 18.10068 +1.705268 0.02852504 18.10068 +2.292679 0.02852504 18.10068 +3.081414 0.02852504 18.10068 +4.140474 0.02852504 18.10068 +5.562508 0.02852504 18.10068 +7.471917 0.02852504 18.10068 +10.03574 0.02852504 18.10068 +13.47828 0.02852504 18.10068 +18.10068 0.02852504 18.10068 +24.30731 0.02852504 18.10068 +32.64117 0.02852504 18.10068 +43.83129 0.02852504 18.10068 +58.85664 0.02852504 18.10068 +-0.0175068 0.04126244 18.10068 +-0.01161267 0.04126244 18.10068 +-0.005718534 0.04126244 18.10068 +0.0001755984 0.04126244 18.10068 +0.006069731 0.04126244 18.10068 +0.01197402 0.04126244 18.10068 +0.01903886 0.04126244 18.10068 +0.02852504 0.04126244 18.10068 +0.04126244 0.04126244 18.10068 +0.05836535 0.04126244 18.10068 +0.08132997 0.04126244 18.10068 +0.1121653 0.04126244 18.10068 +0.1535689 0.04126244 18.10068 +0.2091628 0.04126244 18.10068 +0.2838106 0.04126244 18.10068 +0.3840425 0.04126244 18.10068 +0.518627 0.04126244 18.10068 +0.6993381 0.04126244 18.10068 +0.9419845 0.04126244 18.10068 +1.267794 0.04126244 18.10068 +1.705268 0.04126244 18.10068 +2.292679 0.04126244 18.10068 +3.081414 0.04126244 18.10068 +4.140474 0.04126244 18.10068 +5.562508 0.04126244 18.10068 +7.471917 0.04126244 18.10068 +10.03574 0.04126244 18.10068 +13.47828 0.04126244 18.10068 +18.10068 0.04126244 18.10068 +24.30731 0.04126244 18.10068 +32.64117 0.04126244 18.10068 +43.83129 0.04126244 18.10068 +58.85664 0.04126244 18.10068 +-0.0175068 0.05836535 18.10068 +-0.01161267 0.05836535 18.10068 +-0.005718534 0.05836535 18.10068 +0.0001755984 0.05836535 18.10068 +0.006069731 0.05836535 18.10068 +0.01197402 0.05836535 18.10068 +0.01903886 0.05836535 18.10068 +0.02852504 0.05836535 18.10068 +0.04126244 0.05836535 18.10068 +0.05836535 0.05836535 18.10068 +0.08132997 0.05836535 18.10068 +0.1121653 0.05836535 18.10068 +0.1535689 0.05836535 18.10068 +0.2091628 0.05836535 18.10068 +0.2838106 0.05836535 18.10068 +0.3840425 0.05836535 18.10068 +0.518627 0.05836535 18.10068 +0.6993381 0.05836535 18.10068 +0.9419845 0.05836535 18.10068 +1.267794 0.05836535 18.10068 +1.705268 0.05836535 18.10068 +2.292679 0.05836535 18.10068 +3.081414 0.05836535 18.10068 +4.140474 0.05836535 18.10068 +5.562508 0.05836535 18.10068 +7.471917 0.05836535 18.10068 +10.03574 0.05836535 18.10068 +13.47828 0.05836535 18.10068 +18.10068 0.05836535 18.10068 +24.30731 0.05836535 18.10068 +32.64117 0.05836535 18.10068 +43.83129 0.05836535 18.10068 +58.85664 0.05836535 18.10068 +-0.0175068 0.08132997 18.10068 +-0.01161267 0.08132997 18.10068 +-0.005718534 0.08132997 18.10068 +0.0001755984 0.08132997 18.10068 +0.006069731 0.08132997 18.10068 +0.01197402 0.08132997 18.10068 +0.01903886 0.08132997 18.10068 +0.02852504 0.08132997 18.10068 +0.04126244 0.08132997 18.10068 +0.05836535 0.08132997 18.10068 +0.08132997 0.08132997 18.10068 +0.1121653 0.08132997 18.10068 +0.1535689 0.08132997 18.10068 +0.2091628 0.08132997 18.10068 +0.2838106 0.08132997 18.10068 +0.3840425 0.08132997 18.10068 +0.518627 0.08132997 18.10068 +0.6993381 0.08132997 18.10068 +0.9419845 0.08132997 18.10068 +1.267794 0.08132997 18.10068 +1.705268 0.08132997 18.10068 +2.292679 0.08132997 18.10068 +3.081414 0.08132997 18.10068 +4.140474 0.08132997 18.10068 +5.562508 0.08132997 18.10068 +7.471917 0.08132997 18.10068 +10.03574 0.08132997 18.10068 +13.47828 0.08132997 18.10068 +18.10068 0.08132997 18.10068 +24.30731 0.08132997 18.10068 +32.64117 0.08132997 18.10068 +43.83129 0.08132997 18.10068 +58.85664 0.08132997 18.10068 +-0.0175068 0.1121653 18.10068 +-0.01161267 0.1121653 18.10068 +-0.005718534 0.1121653 18.10068 +0.0001755984 0.1121653 18.10068 +0.006069731 0.1121653 18.10068 +0.01197402 0.1121653 18.10068 +0.01903886 0.1121653 18.10068 +0.02852504 0.1121653 18.10068 +0.04126244 0.1121653 18.10068 +0.05836535 0.1121653 18.10068 +0.08132997 0.1121653 18.10068 +0.1121653 0.1121653 18.10068 +0.1535689 0.1121653 18.10068 +0.2091628 0.1121653 18.10068 +0.2838106 0.1121653 18.10068 +0.3840425 0.1121653 18.10068 +0.518627 0.1121653 18.10068 +0.6993381 0.1121653 18.10068 +0.9419845 0.1121653 18.10068 +1.267794 0.1121653 18.10068 +1.705268 0.1121653 18.10068 +2.292679 0.1121653 18.10068 +3.081414 0.1121653 18.10068 +4.140474 0.1121653 18.10068 +5.562508 0.1121653 18.10068 +7.471917 0.1121653 18.10068 +10.03574 0.1121653 18.10068 +13.47828 0.1121653 18.10068 +18.10068 0.1121653 18.10068 +24.30731 0.1121653 18.10068 +32.64117 0.1121653 18.10068 +43.83129 0.1121653 18.10068 +58.85664 0.1121653 18.10068 +-0.0175068 0.1535689 18.10068 +-0.01161267 0.1535689 18.10068 +-0.005718534 0.1535689 18.10068 +0.0001755984 0.1535689 18.10068 +0.006069731 0.1535689 18.10068 +0.01197402 0.1535689 18.10068 +0.01903886 0.1535689 18.10068 +0.02852504 0.1535689 18.10068 +0.04126244 0.1535689 18.10068 +0.05836535 0.1535689 18.10068 +0.08132997 0.1535689 18.10068 +0.1121653 0.1535689 18.10068 +0.1535689 0.1535689 18.10068 +0.2091628 0.1535689 18.10068 +0.2838106 0.1535689 18.10068 +0.3840425 0.1535689 18.10068 +0.518627 0.1535689 18.10068 +0.6993381 0.1535689 18.10068 +0.9419845 0.1535689 18.10068 +1.267794 0.1535689 18.10068 +1.705268 0.1535689 18.10068 +2.292679 0.1535689 18.10068 +3.081414 0.1535689 18.10068 +4.140474 0.1535689 18.10068 +5.562508 0.1535689 18.10068 +7.471917 0.1535689 18.10068 +10.03574 0.1535689 18.10068 +13.47828 0.1535689 18.10068 +18.10068 0.1535689 18.10068 +24.30731 0.1535689 18.10068 +32.64117 0.1535689 18.10068 +43.83129 0.1535689 18.10068 +58.85664 0.1535689 18.10068 +-0.0175068 0.2091628 18.10068 +-0.01161267 0.2091628 18.10068 +-0.005718534 0.2091628 18.10068 +0.0001755984 0.2091628 18.10068 +0.006069731 0.2091628 18.10068 +0.01197402 0.2091628 18.10068 +0.01903886 0.2091628 18.10068 +0.02852504 0.2091628 18.10068 +0.04126244 0.2091628 18.10068 +0.05836535 0.2091628 18.10068 +0.08132997 0.2091628 18.10068 +0.1121653 0.2091628 18.10068 +0.1535689 0.2091628 18.10068 +0.2091628 0.2091628 18.10068 +0.2838106 0.2091628 18.10068 +0.3840425 0.2091628 18.10068 +0.518627 0.2091628 18.10068 +0.6993381 0.2091628 18.10068 +0.9419845 0.2091628 18.10068 +1.267794 0.2091628 18.10068 +1.705268 0.2091628 18.10068 +2.292679 0.2091628 18.10068 +3.081414 0.2091628 18.10068 +4.140474 0.2091628 18.10068 +5.562508 0.2091628 18.10068 +7.471917 0.2091628 18.10068 +10.03574 0.2091628 18.10068 +13.47828 0.2091628 18.10068 +18.10068 0.2091628 18.10068 +24.30731 0.2091628 18.10068 +32.64117 0.2091628 18.10068 +43.83129 0.2091628 18.10068 +58.85664 0.2091628 18.10068 +-0.0175068 0.2838106 18.10068 +-0.01161267 0.2838106 18.10068 +-0.005718534 0.2838106 18.10068 +0.0001755984 0.2838106 18.10068 +0.006069731 0.2838106 18.10068 +0.01197402 0.2838106 18.10068 +0.01903886 0.2838106 18.10068 +0.02852504 0.2838106 18.10068 +0.04126244 0.2838106 18.10068 +0.05836535 0.2838106 18.10068 +0.08132997 0.2838106 18.10068 +0.1121653 0.2838106 18.10068 +0.1535689 0.2838106 18.10068 +0.2091628 0.2838106 18.10068 +0.2838106 0.2838106 18.10068 +0.3840425 0.2838106 18.10068 +0.518627 0.2838106 18.10068 +0.6993381 0.2838106 18.10068 +0.9419845 0.2838106 18.10068 +1.267794 0.2838106 18.10068 +1.705268 0.2838106 18.10068 +2.292679 0.2838106 18.10068 +3.081414 0.2838106 18.10068 +4.140474 0.2838106 18.10068 +5.562508 0.2838106 18.10068 +7.471917 0.2838106 18.10068 +10.03574 0.2838106 18.10068 +13.47828 0.2838106 18.10068 +18.10068 0.2838106 18.10068 +24.30731 0.2838106 18.10068 +32.64117 0.2838106 18.10068 +43.83129 0.2838106 18.10068 +58.85664 0.2838106 18.10068 +-0.0175068 0.3840425 18.10068 +-0.01161267 0.3840425 18.10068 +-0.005718534 0.3840425 18.10068 +0.0001755984 0.3840425 18.10068 +0.006069731 0.3840425 18.10068 +0.01197402 0.3840425 18.10068 +0.01903886 0.3840425 18.10068 +0.02852504 0.3840425 18.10068 +0.04126244 0.3840425 18.10068 +0.05836535 0.3840425 18.10068 +0.08132997 0.3840425 18.10068 +0.1121653 0.3840425 18.10068 +0.1535689 0.3840425 18.10068 +0.2091628 0.3840425 18.10068 +0.2838106 0.3840425 18.10068 +0.3840425 0.3840425 18.10068 +0.518627 0.3840425 18.10068 +0.6993381 0.3840425 18.10068 +0.9419845 0.3840425 18.10068 +1.267794 0.3840425 18.10068 +1.705268 0.3840425 18.10068 +2.292679 0.3840425 18.10068 +3.081414 0.3840425 18.10068 +4.140474 0.3840425 18.10068 +5.562508 0.3840425 18.10068 +7.471917 0.3840425 18.10068 +10.03574 0.3840425 18.10068 +13.47828 0.3840425 18.10068 +18.10068 0.3840425 18.10068 +24.30731 0.3840425 18.10068 +32.64117 0.3840425 18.10068 +43.83129 0.3840425 18.10068 +58.85664 0.3840425 18.10068 +-0.0175068 0.518627 18.10068 +-0.01161267 0.518627 18.10068 +-0.005718534 0.518627 18.10068 +0.0001755984 0.518627 18.10068 +0.006069731 0.518627 18.10068 +0.01197402 0.518627 18.10068 +0.01903886 0.518627 18.10068 +0.02852504 0.518627 18.10068 +0.04126244 0.518627 18.10068 +0.05836535 0.518627 18.10068 +0.08132997 0.518627 18.10068 +0.1121653 0.518627 18.10068 +0.1535689 0.518627 18.10068 +0.2091628 0.518627 18.10068 +0.2838106 0.518627 18.10068 +0.3840425 0.518627 18.10068 +0.518627 0.518627 18.10068 +0.6993381 0.518627 18.10068 +0.9419845 0.518627 18.10068 +1.267794 0.518627 18.10068 +1.705268 0.518627 18.10068 +2.292679 0.518627 18.10068 +3.081414 0.518627 18.10068 +4.140474 0.518627 18.10068 +5.562508 0.518627 18.10068 +7.471917 0.518627 18.10068 +10.03574 0.518627 18.10068 +13.47828 0.518627 18.10068 +18.10068 0.518627 18.10068 +24.30731 0.518627 18.10068 +32.64117 0.518627 18.10068 +43.83129 0.518627 18.10068 +58.85664 0.518627 18.10068 +-0.0175068 0.6993381 18.10068 +-0.01161267 0.6993381 18.10068 +-0.005718534 0.6993381 18.10068 +0.0001755984 0.6993381 18.10068 +0.006069731 0.6993381 18.10068 +0.01197402 0.6993381 18.10068 +0.01903886 0.6993381 18.10068 +0.02852504 0.6993381 18.10068 +0.04126244 0.6993381 18.10068 +0.05836535 0.6993381 18.10068 +0.08132997 0.6993381 18.10068 +0.1121653 0.6993381 18.10068 +0.1535689 0.6993381 18.10068 +0.2091628 0.6993381 18.10068 +0.2838106 0.6993381 18.10068 +0.3840425 0.6993381 18.10068 +0.518627 0.6993381 18.10068 +0.6993381 0.6993381 18.10068 +0.9419845 0.6993381 18.10068 +1.267794 0.6993381 18.10068 +1.705268 0.6993381 18.10068 +2.292679 0.6993381 18.10068 +3.081414 0.6993381 18.10068 +4.140474 0.6993381 18.10068 +5.562508 0.6993381 18.10068 +7.471917 0.6993381 18.10068 +10.03574 0.6993381 18.10068 +13.47828 0.6993381 18.10068 +18.10068 0.6993381 18.10068 +24.30731 0.6993381 18.10068 +32.64117 0.6993381 18.10068 +43.83129 0.6993381 18.10068 +58.85664 0.6993381 18.10068 +-0.0175068 0.9419845 18.10068 +-0.01161267 0.9419845 18.10068 +-0.005718534 0.9419845 18.10068 +0.0001755984 0.9419845 18.10068 +0.006069731 0.9419845 18.10068 +0.01197402 0.9419845 18.10068 +0.01903886 0.9419845 18.10068 +0.02852504 0.9419845 18.10068 +0.04126244 0.9419845 18.10068 +0.05836535 0.9419845 18.10068 +0.08132997 0.9419845 18.10068 +0.1121653 0.9419845 18.10068 +0.1535689 0.9419845 18.10068 +0.2091628 0.9419845 18.10068 +0.2838106 0.9419845 18.10068 +0.3840425 0.9419845 18.10068 +0.518627 0.9419845 18.10068 +0.6993381 0.9419845 18.10068 +0.9419845 0.9419845 18.10068 +1.267794 0.9419845 18.10068 +1.705268 0.9419845 18.10068 +2.292679 0.9419845 18.10068 +3.081414 0.9419845 18.10068 +4.140474 0.9419845 18.10068 +5.562508 0.9419845 18.10068 +7.471917 0.9419845 18.10068 +10.03574 0.9419845 18.10068 +13.47828 0.9419845 18.10068 +18.10068 0.9419845 18.10068 +24.30731 0.9419845 18.10068 +32.64117 0.9419845 18.10068 +43.83129 0.9419845 18.10068 +58.85664 0.9419845 18.10068 +-0.0175068 1.267794 18.10068 +-0.01161267 1.267794 18.10068 +-0.005718534 1.267794 18.10068 +0.0001755984 1.267794 18.10068 +0.006069731 1.267794 18.10068 +0.01197402 1.267794 18.10068 +0.01903886 1.267794 18.10068 +0.02852504 1.267794 18.10068 +0.04126244 1.267794 18.10068 +0.05836535 1.267794 18.10068 +0.08132997 1.267794 18.10068 +0.1121653 1.267794 18.10068 +0.1535689 1.267794 18.10068 +0.2091628 1.267794 18.10068 +0.2838106 1.267794 18.10068 +0.3840425 1.267794 18.10068 +0.518627 1.267794 18.10068 +0.6993381 1.267794 18.10068 +0.9419845 1.267794 18.10068 +1.267794 1.267794 18.10068 +1.705268 1.267794 18.10068 +2.292679 1.267794 18.10068 +3.081414 1.267794 18.10068 +4.140474 1.267794 18.10068 +5.562508 1.267794 18.10068 +7.471917 1.267794 18.10068 +10.03574 1.267794 18.10068 +13.47828 1.267794 18.10068 +18.10068 1.267794 18.10068 +24.30731 1.267794 18.10068 +32.64117 1.267794 18.10068 +43.83129 1.267794 18.10068 +58.85664 1.267794 18.10068 +-0.0175068 1.705268 18.10068 +-0.01161267 1.705268 18.10068 +-0.005718534 1.705268 18.10068 +0.0001755984 1.705268 18.10068 +0.006069731 1.705268 18.10068 +0.01197402 1.705268 18.10068 +0.01903886 1.705268 18.10068 +0.02852504 1.705268 18.10068 +0.04126244 1.705268 18.10068 +0.05836535 1.705268 18.10068 +0.08132997 1.705268 18.10068 +0.1121653 1.705268 18.10068 +0.1535689 1.705268 18.10068 +0.2091628 1.705268 18.10068 +0.2838106 1.705268 18.10068 +0.3840425 1.705268 18.10068 +0.518627 1.705268 18.10068 +0.6993381 1.705268 18.10068 +0.9419845 1.705268 18.10068 +1.267794 1.705268 18.10068 +1.705268 1.705268 18.10068 +2.292679 1.705268 18.10068 +3.081414 1.705268 18.10068 +4.140474 1.705268 18.10068 +5.562508 1.705268 18.10068 +7.471917 1.705268 18.10068 +10.03574 1.705268 18.10068 +13.47828 1.705268 18.10068 +18.10068 1.705268 18.10068 +24.30731 1.705268 18.10068 +32.64117 1.705268 18.10068 +43.83129 1.705268 18.10068 +58.85664 1.705268 18.10068 +-0.0175068 2.292679 18.10068 +-0.01161267 2.292679 18.10068 +-0.005718534 2.292679 18.10068 +0.0001755984 2.292679 18.10068 +0.006069731 2.292679 18.10068 +0.01197402 2.292679 18.10068 +0.01903886 2.292679 18.10068 +0.02852504 2.292679 18.10068 +0.04126244 2.292679 18.10068 +0.05836535 2.292679 18.10068 +0.08132997 2.292679 18.10068 +0.1121653 2.292679 18.10068 +0.1535689 2.292679 18.10068 +0.2091628 2.292679 18.10068 +0.2838106 2.292679 18.10068 +0.3840425 2.292679 18.10068 +0.518627 2.292679 18.10068 +0.6993381 2.292679 18.10068 +0.9419845 2.292679 18.10068 +1.267794 2.292679 18.10068 +1.705268 2.292679 18.10068 +2.292679 2.292679 18.10068 +3.081414 2.292679 18.10068 +4.140474 2.292679 18.10068 +5.562508 2.292679 18.10068 +7.471917 2.292679 18.10068 +10.03574 2.292679 18.10068 +13.47828 2.292679 18.10068 +18.10068 2.292679 18.10068 +24.30731 2.292679 18.10068 +32.64117 2.292679 18.10068 +43.83129 2.292679 18.10068 +58.85664 2.292679 18.10068 +-0.0175068 3.081414 18.10068 +-0.01161267 3.081414 18.10068 +-0.005718534 3.081414 18.10068 +0.0001755984 3.081414 18.10068 +0.006069731 3.081414 18.10068 +0.01197402 3.081414 18.10068 +0.01903886 3.081414 18.10068 +0.02852504 3.081414 18.10068 +0.04126244 3.081414 18.10068 +0.05836535 3.081414 18.10068 +0.08132997 3.081414 18.10068 +0.1121653 3.081414 18.10068 +0.1535689 3.081414 18.10068 +0.2091628 3.081414 18.10068 +0.2838106 3.081414 18.10068 +0.3840425 3.081414 18.10068 +0.518627 3.081414 18.10068 +0.6993381 3.081414 18.10068 +0.9419845 3.081414 18.10068 +1.267794 3.081414 18.10068 +1.705268 3.081414 18.10068 +2.292679 3.081414 18.10068 +3.081414 3.081414 18.10068 +4.140474 3.081414 18.10068 +5.562508 3.081414 18.10068 +7.471917 3.081414 18.10068 +10.03574 3.081414 18.10068 +13.47828 3.081414 18.10068 +18.10068 3.081414 18.10068 +24.30731 3.081414 18.10068 +32.64117 3.081414 18.10068 +43.83129 3.081414 18.10068 +58.85664 3.081414 18.10068 +-0.0175068 4.140474 18.10068 +-0.01161267 4.140474 18.10068 +-0.005718534 4.140474 18.10068 +0.0001755984 4.140474 18.10068 +0.006069731 4.140474 18.10068 +0.01197402 4.140474 18.10068 +0.01903886 4.140474 18.10068 +0.02852504 4.140474 18.10068 +0.04126244 4.140474 18.10068 +0.05836535 4.140474 18.10068 +0.08132997 4.140474 18.10068 +0.1121653 4.140474 18.10068 +0.1535689 4.140474 18.10068 +0.2091628 4.140474 18.10068 +0.2838106 4.140474 18.10068 +0.3840425 4.140474 18.10068 +0.518627 4.140474 18.10068 +0.6993381 4.140474 18.10068 +0.9419845 4.140474 18.10068 +1.267794 4.140474 18.10068 +1.705268 4.140474 18.10068 +2.292679 4.140474 18.10068 +3.081414 4.140474 18.10068 +4.140474 4.140474 18.10068 +5.562508 4.140474 18.10068 +7.471917 4.140474 18.10068 +10.03574 4.140474 18.10068 +13.47828 4.140474 18.10068 +18.10068 4.140474 18.10068 +24.30731 4.140474 18.10068 +32.64117 4.140474 18.10068 +43.83129 4.140474 18.10068 +58.85664 4.140474 18.10068 +-0.0175068 5.562508 18.10068 +-0.01161267 5.562508 18.10068 +-0.005718534 5.562508 18.10068 +0.0001755984 5.562508 18.10068 +0.006069731 5.562508 18.10068 +0.01197402 5.562508 18.10068 +0.01903886 5.562508 18.10068 +0.02852504 5.562508 18.10068 +0.04126244 5.562508 18.10068 +0.05836535 5.562508 18.10068 +0.08132997 5.562508 18.10068 +0.1121653 5.562508 18.10068 +0.1535689 5.562508 18.10068 +0.2091628 5.562508 18.10068 +0.2838106 5.562508 18.10068 +0.3840425 5.562508 18.10068 +0.518627 5.562508 18.10068 +0.6993381 5.562508 18.10068 +0.9419845 5.562508 18.10068 +1.267794 5.562508 18.10068 +1.705268 5.562508 18.10068 +2.292679 5.562508 18.10068 +3.081414 5.562508 18.10068 +4.140474 5.562508 18.10068 +5.562508 5.562508 18.10068 +7.471917 5.562508 18.10068 +10.03574 5.562508 18.10068 +13.47828 5.562508 18.10068 +18.10068 5.562508 18.10068 +24.30731 5.562508 18.10068 +32.64117 5.562508 18.10068 +43.83129 5.562508 18.10068 +58.85664 5.562508 18.10068 +-0.0175068 7.471917 18.10068 +-0.01161267 7.471917 18.10068 +-0.005718534 7.471917 18.10068 +0.0001755984 7.471917 18.10068 +0.006069731 7.471917 18.10068 +0.01197402 7.471917 18.10068 +0.01903886 7.471917 18.10068 +0.02852504 7.471917 18.10068 +0.04126244 7.471917 18.10068 +0.05836535 7.471917 18.10068 +0.08132997 7.471917 18.10068 +0.1121653 7.471917 18.10068 +0.1535689 7.471917 18.10068 +0.2091628 7.471917 18.10068 +0.2838106 7.471917 18.10068 +0.3840425 7.471917 18.10068 +0.518627 7.471917 18.10068 +0.6993381 7.471917 18.10068 +0.9419845 7.471917 18.10068 +1.267794 7.471917 18.10068 +1.705268 7.471917 18.10068 +2.292679 7.471917 18.10068 +3.081414 7.471917 18.10068 +4.140474 7.471917 18.10068 +5.562508 7.471917 18.10068 +7.471917 7.471917 18.10068 +10.03574 7.471917 18.10068 +13.47828 7.471917 18.10068 +18.10068 7.471917 18.10068 +24.30731 7.471917 18.10068 +32.64117 7.471917 18.10068 +43.83129 7.471917 18.10068 +58.85664 7.471917 18.10068 +-0.0175068 10.03574 18.10068 +-0.01161267 10.03574 18.10068 +-0.005718534 10.03574 18.10068 +0.0001755984 10.03574 18.10068 +0.006069731 10.03574 18.10068 +0.01197402 10.03574 18.10068 +0.01903886 10.03574 18.10068 +0.02852504 10.03574 18.10068 +0.04126244 10.03574 18.10068 +0.05836535 10.03574 18.10068 +0.08132997 10.03574 18.10068 +0.1121653 10.03574 18.10068 +0.1535689 10.03574 18.10068 +0.2091628 10.03574 18.10068 +0.2838106 10.03574 18.10068 +0.3840425 10.03574 18.10068 +0.518627 10.03574 18.10068 +0.6993381 10.03574 18.10068 +0.9419845 10.03574 18.10068 +1.267794 10.03574 18.10068 +1.705268 10.03574 18.10068 +2.292679 10.03574 18.10068 +3.081414 10.03574 18.10068 +4.140474 10.03574 18.10068 +5.562508 10.03574 18.10068 +7.471917 10.03574 18.10068 +10.03574 10.03574 18.10068 +13.47828 10.03574 18.10068 +18.10068 10.03574 18.10068 +24.30731 10.03574 18.10068 +32.64117 10.03574 18.10068 +43.83129 10.03574 18.10068 +58.85664 10.03574 18.10068 +-0.0175068 13.47828 18.10068 +-0.01161267 13.47828 18.10068 +-0.005718534 13.47828 18.10068 +0.0001755984 13.47828 18.10068 +0.006069731 13.47828 18.10068 +0.01197402 13.47828 18.10068 +0.01903886 13.47828 18.10068 +0.02852504 13.47828 18.10068 +0.04126244 13.47828 18.10068 +0.05836535 13.47828 18.10068 +0.08132997 13.47828 18.10068 +0.1121653 13.47828 18.10068 +0.1535689 13.47828 18.10068 +0.2091628 13.47828 18.10068 +0.2838106 13.47828 18.10068 +0.3840425 13.47828 18.10068 +0.518627 13.47828 18.10068 +0.6993381 13.47828 18.10068 +0.9419845 13.47828 18.10068 +1.267794 13.47828 18.10068 +1.705268 13.47828 18.10068 +2.292679 13.47828 18.10068 +3.081414 13.47828 18.10068 +4.140474 13.47828 18.10068 +5.562508 13.47828 18.10068 +7.471917 13.47828 18.10068 +10.03574 13.47828 18.10068 +13.47828 13.47828 18.10068 +18.10068 13.47828 18.10068 +24.30731 13.47828 18.10068 +32.64117 13.47828 18.10068 +43.83129 13.47828 18.10068 +58.85664 13.47828 18.10068 +-0.0175068 18.10068 18.10068 +-0.01161267 18.10068 18.10068 +-0.005718534 18.10068 18.10068 +0.0001755984 18.10068 18.10068 +0.006069731 18.10068 18.10068 +0.01197402 18.10068 18.10068 +0.01903886 18.10068 18.10068 +0.02852504 18.10068 18.10068 +0.04126244 18.10068 18.10068 +0.05836535 18.10068 18.10068 +0.08132997 18.10068 18.10068 +0.1121653 18.10068 18.10068 +0.1535689 18.10068 18.10068 +0.2091628 18.10068 18.10068 +0.2838106 18.10068 18.10068 +0.3840425 18.10068 18.10068 +0.518627 18.10068 18.10068 +0.6993381 18.10068 18.10068 +0.9419845 18.10068 18.10068 +1.267794 18.10068 18.10068 +1.705268 18.10068 18.10068 +2.292679 18.10068 18.10068 +3.081414 18.10068 18.10068 +4.140474 18.10068 18.10068 +5.562508 18.10068 18.10068 +7.471917 18.10068 18.10068 +10.03574 18.10068 18.10068 +13.47828 18.10068 18.10068 +18.10068 18.10068 18.10068 +24.30731 18.10068 18.10068 +32.64117 18.10068 18.10068 +43.83129 18.10068 18.10068 +58.85664 18.10068 18.10068 +-0.0175068 24.30731 18.10068 +-0.01161267 24.30731 18.10068 +-0.005718534 24.30731 18.10068 +0.0001755984 24.30731 18.10068 +0.006069731 24.30731 18.10068 +0.01197402 24.30731 18.10068 +0.01903886 24.30731 18.10068 +0.02852504 24.30731 18.10068 +0.04126244 24.30731 18.10068 +0.05836535 24.30731 18.10068 +0.08132997 24.30731 18.10068 +0.1121653 24.30731 18.10068 +0.1535689 24.30731 18.10068 +0.2091628 24.30731 18.10068 +0.2838106 24.30731 18.10068 +0.3840425 24.30731 18.10068 +0.518627 24.30731 18.10068 +0.6993381 24.30731 18.10068 +0.9419845 24.30731 18.10068 +1.267794 24.30731 18.10068 +1.705268 24.30731 18.10068 +2.292679 24.30731 18.10068 +3.081414 24.30731 18.10068 +4.140474 24.30731 18.10068 +5.562508 24.30731 18.10068 +7.471917 24.30731 18.10068 +10.03574 24.30731 18.10068 +13.47828 24.30731 18.10068 +18.10068 24.30731 18.10068 +24.30731 24.30731 18.10068 +32.64117 24.30731 18.10068 +43.83129 24.30731 18.10068 +58.85664 24.30731 18.10068 +-0.0175068 32.64117 18.10068 +-0.01161267 32.64117 18.10068 +-0.005718534 32.64117 18.10068 +0.0001755984 32.64117 18.10068 +0.006069731 32.64117 18.10068 +0.01197402 32.64117 18.10068 +0.01903886 32.64117 18.10068 +0.02852504 32.64117 18.10068 +0.04126244 32.64117 18.10068 +0.05836535 32.64117 18.10068 +0.08132997 32.64117 18.10068 +0.1121653 32.64117 18.10068 +0.1535689 32.64117 18.10068 +0.2091628 32.64117 18.10068 +0.2838106 32.64117 18.10068 +0.3840425 32.64117 18.10068 +0.518627 32.64117 18.10068 +0.6993381 32.64117 18.10068 +0.9419845 32.64117 18.10068 +1.267794 32.64117 18.10068 +1.705268 32.64117 18.10068 +2.292679 32.64117 18.10068 +3.081414 32.64117 18.10068 +4.140474 32.64117 18.10068 +5.562508 32.64117 18.10068 +7.471917 32.64117 18.10068 +10.03574 32.64117 18.10068 +13.47828 32.64117 18.10068 +18.10068 32.64117 18.10068 +24.30731 32.64117 18.10068 +32.64117 32.64117 18.10068 +43.83129 32.64117 18.10068 +58.85664 32.64117 18.10068 +-0.0175068 43.83129 18.10068 +-0.01161267 43.83129 18.10068 +-0.005718534 43.83129 18.10068 +0.0001755984 43.83129 18.10068 +0.006069731 43.83129 18.10068 +0.01197402 43.83129 18.10068 +0.01903886 43.83129 18.10068 +0.02852504 43.83129 18.10068 +0.04126244 43.83129 18.10068 +0.05836535 43.83129 18.10068 +0.08132997 43.83129 18.10068 +0.1121653 43.83129 18.10068 +0.1535689 43.83129 18.10068 +0.2091628 43.83129 18.10068 +0.2838106 43.83129 18.10068 +0.3840425 43.83129 18.10068 +0.518627 43.83129 18.10068 +0.6993381 43.83129 18.10068 +0.9419845 43.83129 18.10068 +1.267794 43.83129 18.10068 +1.705268 43.83129 18.10068 +2.292679 43.83129 18.10068 +3.081414 43.83129 18.10068 +4.140474 43.83129 18.10068 +5.562508 43.83129 18.10068 +7.471917 43.83129 18.10068 +10.03574 43.83129 18.10068 +13.47828 43.83129 18.10068 +18.10068 43.83129 18.10068 +24.30731 43.83129 18.10068 +32.64117 43.83129 18.10068 +43.83129 43.83129 18.10068 +58.85664 43.83129 18.10068 +-0.0175068 58.85664 18.10068 +-0.01161267 58.85664 18.10068 +-0.005718534 58.85664 18.10068 +0.0001755984 58.85664 18.10068 +0.006069731 58.85664 18.10068 +0.01197402 58.85664 18.10068 +0.01903886 58.85664 18.10068 +0.02852504 58.85664 18.10068 +0.04126244 58.85664 18.10068 +0.05836535 58.85664 18.10068 +0.08132997 58.85664 18.10068 +0.1121653 58.85664 18.10068 +0.1535689 58.85664 18.10068 +0.2091628 58.85664 18.10068 +0.2838106 58.85664 18.10068 +0.3840425 58.85664 18.10068 +0.518627 58.85664 18.10068 +0.6993381 58.85664 18.10068 +0.9419845 58.85664 18.10068 +1.267794 58.85664 18.10068 +1.705268 58.85664 18.10068 +2.292679 58.85664 18.10068 +3.081414 58.85664 18.10068 +4.140474 58.85664 18.10068 +5.562508 58.85664 18.10068 +7.471917 58.85664 18.10068 +10.03574 58.85664 18.10068 +13.47828 58.85664 18.10068 +18.10068 58.85664 18.10068 +24.30731 58.85664 18.10068 +32.64117 58.85664 18.10068 +43.83129 58.85664 18.10068 +58.85664 58.85664 18.10068 +-0.0175068 -0.0175068 24.30731 +-0.01161267 -0.0175068 24.30731 +-0.005718534 -0.0175068 24.30731 +0.0001755984 -0.0175068 24.30731 +0.006069731 -0.0175068 24.30731 +0.01197402 -0.0175068 24.30731 +0.01903886 -0.0175068 24.30731 +0.02852504 -0.0175068 24.30731 +0.04126244 -0.0175068 24.30731 +0.05836535 -0.0175068 24.30731 +0.08132997 -0.0175068 24.30731 +0.1121653 -0.0175068 24.30731 +0.1535689 -0.0175068 24.30731 +0.2091628 -0.0175068 24.30731 +0.2838106 -0.0175068 24.30731 +0.3840425 -0.0175068 24.30731 +0.518627 -0.0175068 24.30731 +0.6993381 -0.0175068 24.30731 +0.9419845 -0.0175068 24.30731 +1.267794 -0.0175068 24.30731 +1.705268 -0.0175068 24.30731 +2.292679 -0.0175068 24.30731 +3.081414 -0.0175068 24.30731 +4.140474 -0.0175068 24.30731 +5.562508 -0.0175068 24.30731 +7.471917 -0.0175068 24.30731 +10.03574 -0.0175068 24.30731 +13.47828 -0.0175068 24.30731 +18.10068 -0.0175068 24.30731 +24.30731 -0.0175068 24.30731 +32.64117 -0.0175068 24.30731 +43.83129 -0.0175068 24.30731 +58.85664 -0.0175068 24.30731 +-0.0175068 -0.01161267 24.30731 +-0.01161267 -0.01161267 24.30731 +-0.005718534 -0.01161267 24.30731 +0.0001755984 -0.01161267 24.30731 +0.006069731 -0.01161267 24.30731 +0.01197402 -0.01161267 24.30731 +0.01903886 -0.01161267 24.30731 +0.02852504 -0.01161267 24.30731 +0.04126244 -0.01161267 24.30731 +0.05836535 -0.01161267 24.30731 +0.08132997 -0.01161267 24.30731 +0.1121653 -0.01161267 24.30731 +0.1535689 -0.01161267 24.30731 +0.2091628 -0.01161267 24.30731 +0.2838106 -0.01161267 24.30731 +0.3840425 -0.01161267 24.30731 +0.518627 -0.01161267 24.30731 +0.6993381 -0.01161267 24.30731 +0.9419845 -0.01161267 24.30731 +1.267794 -0.01161267 24.30731 +1.705268 -0.01161267 24.30731 +2.292679 -0.01161267 24.30731 +3.081414 -0.01161267 24.30731 +4.140474 -0.01161267 24.30731 +5.562508 -0.01161267 24.30731 +7.471917 -0.01161267 24.30731 +10.03574 -0.01161267 24.30731 +13.47828 -0.01161267 24.30731 +18.10068 -0.01161267 24.30731 +24.30731 -0.01161267 24.30731 +32.64117 -0.01161267 24.30731 +43.83129 -0.01161267 24.30731 +58.85664 -0.01161267 24.30731 +-0.0175068 -0.005718534 24.30731 +-0.01161267 -0.005718534 24.30731 +-0.005718534 -0.005718534 24.30731 +0.0001755984 -0.005718534 24.30731 +0.006069731 -0.005718534 24.30731 +0.01197402 -0.005718534 24.30731 +0.01903886 -0.005718534 24.30731 +0.02852504 -0.005718534 24.30731 +0.04126244 -0.005718534 24.30731 +0.05836535 -0.005718534 24.30731 +0.08132997 -0.005718534 24.30731 +0.1121653 -0.005718534 24.30731 +0.1535689 -0.005718534 24.30731 +0.2091628 -0.005718534 24.30731 +0.2838106 -0.005718534 24.30731 +0.3840425 -0.005718534 24.30731 +0.518627 -0.005718534 24.30731 +0.6993381 -0.005718534 24.30731 +0.9419845 -0.005718534 24.30731 +1.267794 -0.005718534 24.30731 +1.705268 -0.005718534 24.30731 +2.292679 -0.005718534 24.30731 +3.081414 -0.005718534 24.30731 +4.140474 -0.005718534 24.30731 +5.562508 -0.005718534 24.30731 +7.471917 -0.005718534 24.30731 +10.03574 -0.005718534 24.30731 +13.47828 -0.005718534 24.30731 +18.10068 -0.005718534 24.30731 +24.30731 -0.005718534 24.30731 +32.64117 -0.005718534 24.30731 +43.83129 -0.005718534 24.30731 +58.85664 -0.005718534 24.30731 +-0.0175068 0.0001755984 24.30731 +-0.01161267 0.0001755984 24.30731 +-0.005718534 0.0001755984 24.30731 +0.0001755984 0.0001755984 24.30731 +0.006069731 0.0001755984 24.30731 +0.01197402 0.0001755984 24.30731 +0.01903886 0.0001755984 24.30731 +0.02852504 0.0001755984 24.30731 +0.04126244 0.0001755984 24.30731 +0.05836535 0.0001755984 24.30731 +0.08132997 0.0001755984 24.30731 +0.1121653 0.0001755984 24.30731 +0.1535689 0.0001755984 24.30731 +0.2091628 0.0001755984 24.30731 +0.2838106 0.0001755984 24.30731 +0.3840425 0.0001755984 24.30731 +0.518627 0.0001755984 24.30731 +0.6993381 0.0001755984 24.30731 +0.9419845 0.0001755984 24.30731 +1.267794 0.0001755984 24.30731 +1.705268 0.0001755984 24.30731 +2.292679 0.0001755984 24.30731 +3.081414 0.0001755984 24.30731 +4.140474 0.0001755984 24.30731 +5.562508 0.0001755984 24.30731 +7.471917 0.0001755984 24.30731 +10.03574 0.0001755984 24.30731 +13.47828 0.0001755984 24.30731 +18.10068 0.0001755984 24.30731 +24.30731 0.0001755984 24.30731 +32.64117 0.0001755984 24.30731 +43.83129 0.0001755984 24.30731 +58.85664 0.0001755984 24.30731 +-0.0175068 0.006069731 24.30731 +-0.01161267 0.006069731 24.30731 +-0.005718534 0.006069731 24.30731 +0.0001755984 0.006069731 24.30731 +0.006069731 0.006069731 24.30731 +0.01197402 0.006069731 24.30731 +0.01903886 0.006069731 24.30731 +0.02852504 0.006069731 24.30731 +0.04126244 0.006069731 24.30731 +0.05836535 0.006069731 24.30731 +0.08132997 0.006069731 24.30731 +0.1121653 0.006069731 24.30731 +0.1535689 0.006069731 24.30731 +0.2091628 0.006069731 24.30731 +0.2838106 0.006069731 24.30731 +0.3840425 0.006069731 24.30731 +0.518627 0.006069731 24.30731 +0.6993381 0.006069731 24.30731 +0.9419845 0.006069731 24.30731 +1.267794 0.006069731 24.30731 +1.705268 0.006069731 24.30731 +2.292679 0.006069731 24.30731 +3.081414 0.006069731 24.30731 +4.140474 0.006069731 24.30731 +5.562508 0.006069731 24.30731 +7.471917 0.006069731 24.30731 +10.03574 0.006069731 24.30731 +13.47828 0.006069731 24.30731 +18.10068 0.006069731 24.30731 +24.30731 0.006069731 24.30731 +32.64117 0.006069731 24.30731 +43.83129 0.006069731 24.30731 +58.85664 0.006069731 24.30731 +-0.0175068 0.01197402 24.30731 +-0.01161267 0.01197402 24.30731 +-0.005718534 0.01197402 24.30731 +0.0001755984 0.01197402 24.30731 +0.006069731 0.01197402 24.30731 +0.01197402 0.01197402 24.30731 +0.01903886 0.01197402 24.30731 +0.02852504 0.01197402 24.30731 +0.04126244 0.01197402 24.30731 +0.05836535 0.01197402 24.30731 +0.08132997 0.01197402 24.30731 +0.1121653 0.01197402 24.30731 +0.1535689 0.01197402 24.30731 +0.2091628 0.01197402 24.30731 +0.2838106 0.01197402 24.30731 +0.3840425 0.01197402 24.30731 +0.518627 0.01197402 24.30731 +0.6993381 0.01197402 24.30731 +0.9419845 0.01197402 24.30731 +1.267794 0.01197402 24.30731 +1.705268 0.01197402 24.30731 +2.292679 0.01197402 24.30731 +3.081414 0.01197402 24.30731 +4.140474 0.01197402 24.30731 +5.562508 0.01197402 24.30731 +7.471917 0.01197402 24.30731 +10.03574 0.01197402 24.30731 +13.47828 0.01197402 24.30731 +18.10068 0.01197402 24.30731 +24.30731 0.01197402 24.30731 +32.64117 0.01197402 24.30731 +43.83129 0.01197402 24.30731 +58.85664 0.01197402 24.30731 +-0.0175068 0.01903886 24.30731 +-0.01161267 0.01903886 24.30731 +-0.005718534 0.01903886 24.30731 +0.0001755984 0.01903886 24.30731 +0.006069731 0.01903886 24.30731 +0.01197402 0.01903886 24.30731 +0.01903886 0.01903886 24.30731 +0.02852504 0.01903886 24.30731 +0.04126244 0.01903886 24.30731 +0.05836535 0.01903886 24.30731 +0.08132997 0.01903886 24.30731 +0.1121653 0.01903886 24.30731 +0.1535689 0.01903886 24.30731 +0.2091628 0.01903886 24.30731 +0.2838106 0.01903886 24.30731 +0.3840425 0.01903886 24.30731 +0.518627 0.01903886 24.30731 +0.6993381 0.01903886 24.30731 +0.9419845 0.01903886 24.30731 +1.267794 0.01903886 24.30731 +1.705268 0.01903886 24.30731 +2.292679 0.01903886 24.30731 +3.081414 0.01903886 24.30731 +4.140474 0.01903886 24.30731 +5.562508 0.01903886 24.30731 +7.471917 0.01903886 24.30731 +10.03574 0.01903886 24.30731 +13.47828 0.01903886 24.30731 +18.10068 0.01903886 24.30731 +24.30731 0.01903886 24.30731 +32.64117 0.01903886 24.30731 +43.83129 0.01903886 24.30731 +58.85664 0.01903886 24.30731 +-0.0175068 0.02852504 24.30731 +-0.01161267 0.02852504 24.30731 +-0.005718534 0.02852504 24.30731 +0.0001755984 0.02852504 24.30731 +0.006069731 0.02852504 24.30731 +0.01197402 0.02852504 24.30731 +0.01903886 0.02852504 24.30731 +0.02852504 0.02852504 24.30731 +0.04126244 0.02852504 24.30731 +0.05836535 0.02852504 24.30731 +0.08132997 0.02852504 24.30731 +0.1121653 0.02852504 24.30731 +0.1535689 0.02852504 24.30731 +0.2091628 0.02852504 24.30731 +0.2838106 0.02852504 24.30731 +0.3840425 0.02852504 24.30731 +0.518627 0.02852504 24.30731 +0.6993381 0.02852504 24.30731 +0.9419845 0.02852504 24.30731 +1.267794 0.02852504 24.30731 +1.705268 0.02852504 24.30731 +2.292679 0.02852504 24.30731 +3.081414 0.02852504 24.30731 +4.140474 0.02852504 24.30731 +5.562508 0.02852504 24.30731 +7.471917 0.02852504 24.30731 +10.03574 0.02852504 24.30731 +13.47828 0.02852504 24.30731 +18.10068 0.02852504 24.30731 +24.30731 0.02852504 24.30731 +32.64117 0.02852504 24.30731 +43.83129 0.02852504 24.30731 +58.85664 0.02852504 24.30731 +-0.0175068 0.04126244 24.30731 +-0.01161267 0.04126244 24.30731 +-0.005718534 0.04126244 24.30731 +0.0001755984 0.04126244 24.30731 +0.006069731 0.04126244 24.30731 +0.01197402 0.04126244 24.30731 +0.01903886 0.04126244 24.30731 +0.02852504 0.04126244 24.30731 +0.04126244 0.04126244 24.30731 +0.05836535 0.04126244 24.30731 +0.08132997 0.04126244 24.30731 +0.1121653 0.04126244 24.30731 +0.1535689 0.04126244 24.30731 +0.2091628 0.04126244 24.30731 +0.2838106 0.04126244 24.30731 +0.3840425 0.04126244 24.30731 +0.518627 0.04126244 24.30731 +0.6993381 0.04126244 24.30731 +0.9419845 0.04126244 24.30731 +1.267794 0.04126244 24.30731 +1.705268 0.04126244 24.30731 +2.292679 0.04126244 24.30731 +3.081414 0.04126244 24.30731 +4.140474 0.04126244 24.30731 +5.562508 0.04126244 24.30731 +7.471917 0.04126244 24.30731 +10.03574 0.04126244 24.30731 +13.47828 0.04126244 24.30731 +18.10068 0.04126244 24.30731 +24.30731 0.04126244 24.30731 +32.64117 0.04126244 24.30731 +43.83129 0.04126244 24.30731 +58.85664 0.04126244 24.30731 +-0.0175068 0.05836535 24.30731 +-0.01161267 0.05836535 24.30731 +-0.005718534 0.05836535 24.30731 +0.0001755984 0.05836535 24.30731 +0.006069731 0.05836535 24.30731 +0.01197402 0.05836535 24.30731 +0.01903886 0.05836535 24.30731 +0.02852504 0.05836535 24.30731 +0.04126244 0.05836535 24.30731 +0.05836535 0.05836535 24.30731 +0.08132997 0.05836535 24.30731 +0.1121653 0.05836535 24.30731 +0.1535689 0.05836535 24.30731 +0.2091628 0.05836535 24.30731 +0.2838106 0.05836535 24.30731 +0.3840425 0.05836535 24.30731 +0.518627 0.05836535 24.30731 +0.6993381 0.05836535 24.30731 +0.9419845 0.05836535 24.30731 +1.267794 0.05836535 24.30731 +1.705268 0.05836535 24.30731 +2.292679 0.05836535 24.30731 +3.081414 0.05836535 24.30731 +4.140474 0.05836535 24.30731 +5.562508 0.05836535 24.30731 +7.471917 0.05836535 24.30731 +10.03574 0.05836535 24.30731 +13.47828 0.05836535 24.30731 +18.10068 0.05836535 24.30731 +24.30731 0.05836535 24.30731 +32.64117 0.05836535 24.30731 +43.83129 0.05836535 24.30731 +58.85664 0.05836535 24.30731 +-0.0175068 0.08132997 24.30731 +-0.01161267 0.08132997 24.30731 +-0.005718534 0.08132997 24.30731 +0.0001755984 0.08132997 24.30731 +0.006069731 0.08132997 24.30731 +0.01197402 0.08132997 24.30731 +0.01903886 0.08132997 24.30731 +0.02852504 0.08132997 24.30731 +0.04126244 0.08132997 24.30731 +0.05836535 0.08132997 24.30731 +0.08132997 0.08132997 24.30731 +0.1121653 0.08132997 24.30731 +0.1535689 0.08132997 24.30731 +0.2091628 0.08132997 24.30731 +0.2838106 0.08132997 24.30731 +0.3840425 0.08132997 24.30731 +0.518627 0.08132997 24.30731 +0.6993381 0.08132997 24.30731 +0.9419845 0.08132997 24.30731 +1.267794 0.08132997 24.30731 +1.705268 0.08132997 24.30731 +2.292679 0.08132997 24.30731 +3.081414 0.08132997 24.30731 +4.140474 0.08132997 24.30731 +5.562508 0.08132997 24.30731 +7.471917 0.08132997 24.30731 +10.03574 0.08132997 24.30731 +13.47828 0.08132997 24.30731 +18.10068 0.08132997 24.30731 +24.30731 0.08132997 24.30731 +32.64117 0.08132997 24.30731 +43.83129 0.08132997 24.30731 +58.85664 0.08132997 24.30731 +-0.0175068 0.1121653 24.30731 +-0.01161267 0.1121653 24.30731 +-0.005718534 0.1121653 24.30731 +0.0001755984 0.1121653 24.30731 +0.006069731 0.1121653 24.30731 +0.01197402 0.1121653 24.30731 +0.01903886 0.1121653 24.30731 +0.02852504 0.1121653 24.30731 +0.04126244 0.1121653 24.30731 +0.05836535 0.1121653 24.30731 +0.08132997 0.1121653 24.30731 +0.1121653 0.1121653 24.30731 +0.1535689 0.1121653 24.30731 +0.2091628 0.1121653 24.30731 +0.2838106 0.1121653 24.30731 +0.3840425 0.1121653 24.30731 +0.518627 0.1121653 24.30731 +0.6993381 0.1121653 24.30731 +0.9419845 0.1121653 24.30731 +1.267794 0.1121653 24.30731 +1.705268 0.1121653 24.30731 +2.292679 0.1121653 24.30731 +3.081414 0.1121653 24.30731 +4.140474 0.1121653 24.30731 +5.562508 0.1121653 24.30731 +7.471917 0.1121653 24.30731 +10.03574 0.1121653 24.30731 +13.47828 0.1121653 24.30731 +18.10068 0.1121653 24.30731 +24.30731 0.1121653 24.30731 +32.64117 0.1121653 24.30731 +43.83129 0.1121653 24.30731 +58.85664 0.1121653 24.30731 +-0.0175068 0.1535689 24.30731 +-0.01161267 0.1535689 24.30731 +-0.005718534 0.1535689 24.30731 +0.0001755984 0.1535689 24.30731 +0.006069731 0.1535689 24.30731 +0.01197402 0.1535689 24.30731 +0.01903886 0.1535689 24.30731 +0.02852504 0.1535689 24.30731 +0.04126244 0.1535689 24.30731 +0.05836535 0.1535689 24.30731 +0.08132997 0.1535689 24.30731 +0.1121653 0.1535689 24.30731 +0.1535689 0.1535689 24.30731 +0.2091628 0.1535689 24.30731 +0.2838106 0.1535689 24.30731 +0.3840425 0.1535689 24.30731 +0.518627 0.1535689 24.30731 +0.6993381 0.1535689 24.30731 +0.9419845 0.1535689 24.30731 +1.267794 0.1535689 24.30731 +1.705268 0.1535689 24.30731 +2.292679 0.1535689 24.30731 +3.081414 0.1535689 24.30731 +4.140474 0.1535689 24.30731 +5.562508 0.1535689 24.30731 +7.471917 0.1535689 24.30731 +10.03574 0.1535689 24.30731 +13.47828 0.1535689 24.30731 +18.10068 0.1535689 24.30731 +24.30731 0.1535689 24.30731 +32.64117 0.1535689 24.30731 +43.83129 0.1535689 24.30731 +58.85664 0.1535689 24.30731 +-0.0175068 0.2091628 24.30731 +-0.01161267 0.2091628 24.30731 +-0.005718534 0.2091628 24.30731 +0.0001755984 0.2091628 24.30731 +0.006069731 0.2091628 24.30731 +0.01197402 0.2091628 24.30731 +0.01903886 0.2091628 24.30731 +0.02852504 0.2091628 24.30731 +0.04126244 0.2091628 24.30731 +0.05836535 0.2091628 24.30731 +0.08132997 0.2091628 24.30731 +0.1121653 0.2091628 24.30731 +0.1535689 0.2091628 24.30731 +0.2091628 0.2091628 24.30731 +0.2838106 0.2091628 24.30731 +0.3840425 0.2091628 24.30731 +0.518627 0.2091628 24.30731 +0.6993381 0.2091628 24.30731 +0.9419845 0.2091628 24.30731 +1.267794 0.2091628 24.30731 +1.705268 0.2091628 24.30731 +2.292679 0.2091628 24.30731 +3.081414 0.2091628 24.30731 +4.140474 0.2091628 24.30731 +5.562508 0.2091628 24.30731 +7.471917 0.2091628 24.30731 +10.03574 0.2091628 24.30731 +13.47828 0.2091628 24.30731 +18.10068 0.2091628 24.30731 +24.30731 0.2091628 24.30731 +32.64117 0.2091628 24.30731 +43.83129 0.2091628 24.30731 +58.85664 0.2091628 24.30731 +-0.0175068 0.2838106 24.30731 +-0.01161267 0.2838106 24.30731 +-0.005718534 0.2838106 24.30731 +0.0001755984 0.2838106 24.30731 +0.006069731 0.2838106 24.30731 +0.01197402 0.2838106 24.30731 +0.01903886 0.2838106 24.30731 +0.02852504 0.2838106 24.30731 +0.04126244 0.2838106 24.30731 +0.05836535 0.2838106 24.30731 +0.08132997 0.2838106 24.30731 +0.1121653 0.2838106 24.30731 +0.1535689 0.2838106 24.30731 +0.2091628 0.2838106 24.30731 +0.2838106 0.2838106 24.30731 +0.3840425 0.2838106 24.30731 +0.518627 0.2838106 24.30731 +0.6993381 0.2838106 24.30731 +0.9419845 0.2838106 24.30731 +1.267794 0.2838106 24.30731 +1.705268 0.2838106 24.30731 +2.292679 0.2838106 24.30731 +3.081414 0.2838106 24.30731 +4.140474 0.2838106 24.30731 +5.562508 0.2838106 24.30731 +7.471917 0.2838106 24.30731 +10.03574 0.2838106 24.30731 +13.47828 0.2838106 24.30731 +18.10068 0.2838106 24.30731 +24.30731 0.2838106 24.30731 +32.64117 0.2838106 24.30731 +43.83129 0.2838106 24.30731 +58.85664 0.2838106 24.30731 +-0.0175068 0.3840425 24.30731 +-0.01161267 0.3840425 24.30731 +-0.005718534 0.3840425 24.30731 +0.0001755984 0.3840425 24.30731 +0.006069731 0.3840425 24.30731 +0.01197402 0.3840425 24.30731 +0.01903886 0.3840425 24.30731 +0.02852504 0.3840425 24.30731 +0.04126244 0.3840425 24.30731 +0.05836535 0.3840425 24.30731 +0.08132997 0.3840425 24.30731 +0.1121653 0.3840425 24.30731 +0.1535689 0.3840425 24.30731 +0.2091628 0.3840425 24.30731 +0.2838106 0.3840425 24.30731 +0.3840425 0.3840425 24.30731 +0.518627 0.3840425 24.30731 +0.6993381 0.3840425 24.30731 +0.9419845 0.3840425 24.30731 +1.267794 0.3840425 24.30731 +1.705268 0.3840425 24.30731 +2.292679 0.3840425 24.30731 +3.081414 0.3840425 24.30731 +4.140474 0.3840425 24.30731 +5.562508 0.3840425 24.30731 +7.471917 0.3840425 24.30731 +10.03574 0.3840425 24.30731 +13.47828 0.3840425 24.30731 +18.10068 0.3840425 24.30731 +24.30731 0.3840425 24.30731 +32.64117 0.3840425 24.30731 +43.83129 0.3840425 24.30731 +58.85664 0.3840425 24.30731 +-0.0175068 0.518627 24.30731 +-0.01161267 0.518627 24.30731 +-0.005718534 0.518627 24.30731 +0.0001755984 0.518627 24.30731 +0.006069731 0.518627 24.30731 +0.01197402 0.518627 24.30731 +0.01903886 0.518627 24.30731 +0.02852504 0.518627 24.30731 +0.04126244 0.518627 24.30731 +0.05836535 0.518627 24.30731 +0.08132997 0.518627 24.30731 +0.1121653 0.518627 24.30731 +0.1535689 0.518627 24.30731 +0.2091628 0.518627 24.30731 +0.2838106 0.518627 24.30731 +0.3840425 0.518627 24.30731 +0.518627 0.518627 24.30731 +0.6993381 0.518627 24.30731 +0.9419845 0.518627 24.30731 +1.267794 0.518627 24.30731 +1.705268 0.518627 24.30731 +2.292679 0.518627 24.30731 +3.081414 0.518627 24.30731 +4.140474 0.518627 24.30731 +5.562508 0.518627 24.30731 +7.471917 0.518627 24.30731 +10.03574 0.518627 24.30731 +13.47828 0.518627 24.30731 +18.10068 0.518627 24.30731 +24.30731 0.518627 24.30731 +32.64117 0.518627 24.30731 +43.83129 0.518627 24.30731 +58.85664 0.518627 24.30731 +-0.0175068 0.6993381 24.30731 +-0.01161267 0.6993381 24.30731 +-0.005718534 0.6993381 24.30731 +0.0001755984 0.6993381 24.30731 +0.006069731 0.6993381 24.30731 +0.01197402 0.6993381 24.30731 +0.01903886 0.6993381 24.30731 +0.02852504 0.6993381 24.30731 +0.04126244 0.6993381 24.30731 +0.05836535 0.6993381 24.30731 +0.08132997 0.6993381 24.30731 +0.1121653 0.6993381 24.30731 +0.1535689 0.6993381 24.30731 +0.2091628 0.6993381 24.30731 +0.2838106 0.6993381 24.30731 +0.3840425 0.6993381 24.30731 +0.518627 0.6993381 24.30731 +0.6993381 0.6993381 24.30731 +0.9419845 0.6993381 24.30731 +1.267794 0.6993381 24.30731 +1.705268 0.6993381 24.30731 +2.292679 0.6993381 24.30731 +3.081414 0.6993381 24.30731 +4.140474 0.6993381 24.30731 +5.562508 0.6993381 24.30731 +7.471917 0.6993381 24.30731 +10.03574 0.6993381 24.30731 +13.47828 0.6993381 24.30731 +18.10068 0.6993381 24.30731 +24.30731 0.6993381 24.30731 +32.64117 0.6993381 24.30731 +43.83129 0.6993381 24.30731 +58.85664 0.6993381 24.30731 +-0.0175068 0.9419845 24.30731 +-0.01161267 0.9419845 24.30731 +-0.005718534 0.9419845 24.30731 +0.0001755984 0.9419845 24.30731 +0.006069731 0.9419845 24.30731 +0.01197402 0.9419845 24.30731 +0.01903886 0.9419845 24.30731 +0.02852504 0.9419845 24.30731 +0.04126244 0.9419845 24.30731 +0.05836535 0.9419845 24.30731 +0.08132997 0.9419845 24.30731 +0.1121653 0.9419845 24.30731 +0.1535689 0.9419845 24.30731 +0.2091628 0.9419845 24.30731 +0.2838106 0.9419845 24.30731 +0.3840425 0.9419845 24.30731 +0.518627 0.9419845 24.30731 +0.6993381 0.9419845 24.30731 +0.9419845 0.9419845 24.30731 +1.267794 0.9419845 24.30731 +1.705268 0.9419845 24.30731 +2.292679 0.9419845 24.30731 +3.081414 0.9419845 24.30731 +4.140474 0.9419845 24.30731 +5.562508 0.9419845 24.30731 +7.471917 0.9419845 24.30731 +10.03574 0.9419845 24.30731 +13.47828 0.9419845 24.30731 +18.10068 0.9419845 24.30731 +24.30731 0.9419845 24.30731 +32.64117 0.9419845 24.30731 +43.83129 0.9419845 24.30731 +58.85664 0.9419845 24.30731 +-0.0175068 1.267794 24.30731 +-0.01161267 1.267794 24.30731 +-0.005718534 1.267794 24.30731 +0.0001755984 1.267794 24.30731 +0.006069731 1.267794 24.30731 +0.01197402 1.267794 24.30731 +0.01903886 1.267794 24.30731 +0.02852504 1.267794 24.30731 +0.04126244 1.267794 24.30731 +0.05836535 1.267794 24.30731 +0.08132997 1.267794 24.30731 +0.1121653 1.267794 24.30731 +0.1535689 1.267794 24.30731 +0.2091628 1.267794 24.30731 +0.2838106 1.267794 24.30731 +0.3840425 1.267794 24.30731 +0.518627 1.267794 24.30731 +0.6993381 1.267794 24.30731 +0.9419845 1.267794 24.30731 +1.267794 1.267794 24.30731 +1.705268 1.267794 24.30731 +2.292679 1.267794 24.30731 +3.081414 1.267794 24.30731 +4.140474 1.267794 24.30731 +5.562508 1.267794 24.30731 +7.471917 1.267794 24.30731 +10.03574 1.267794 24.30731 +13.47828 1.267794 24.30731 +18.10068 1.267794 24.30731 +24.30731 1.267794 24.30731 +32.64117 1.267794 24.30731 +43.83129 1.267794 24.30731 +58.85664 1.267794 24.30731 +-0.0175068 1.705268 24.30731 +-0.01161267 1.705268 24.30731 +-0.005718534 1.705268 24.30731 +0.0001755984 1.705268 24.30731 +0.006069731 1.705268 24.30731 +0.01197402 1.705268 24.30731 +0.01903886 1.705268 24.30731 +0.02852504 1.705268 24.30731 +0.04126244 1.705268 24.30731 +0.05836535 1.705268 24.30731 +0.08132997 1.705268 24.30731 +0.1121653 1.705268 24.30731 +0.1535689 1.705268 24.30731 +0.2091628 1.705268 24.30731 +0.2838106 1.705268 24.30731 +0.3840425 1.705268 24.30731 +0.518627 1.705268 24.30731 +0.6993381 1.705268 24.30731 +0.9419845 1.705268 24.30731 +1.267794 1.705268 24.30731 +1.705268 1.705268 24.30731 +2.292679 1.705268 24.30731 +3.081414 1.705268 24.30731 +4.140474 1.705268 24.30731 +5.562508 1.705268 24.30731 +7.471917 1.705268 24.30731 +10.03574 1.705268 24.30731 +13.47828 1.705268 24.30731 +18.10068 1.705268 24.30731 +24.30731 1.705268 24.30731 +32.64117 1.705268 24.30731 +43.83129 1.705268 24.30731 +58.85664 1.705268 24.30731 +-0.0175068 2.292679 24.30731 +-0.01161267 2.292679 24.30731 +-0.005718534 2.292679 24.30731 +0.0001755984 2.292679 24.30731 +0.006069731 2.292679 24.30731 +0.01197402 2.292679 24.30731 +0.01903886 2.292679 24.30731 +0.02852504 2.292679 24.30731 +0.04126244 2.292679 24.30731 +0.05836535 2.292679 24.30731 +0.08132997 2.292679 24.30731 +0.1121653 2.292679 24.30731 +0.1535689 2.292679 24.30731 +0.2091628 2.292679 24.30731 +0.2838106 2.292679 24.30731 +0.3840425 2.292679 24.30731 +0.518627 2.292679 24.30731 +0.6993381 2.292679 24.30731 +0.9419845 2.292679 24.30731 +1.267794 2.292679 24.30731 +1.705268 2.292679 24.30731 +2.292679 2.292679 24.30731 +3.081414 2.292679 24.30731 +4.140474 2.292679 24.30731 +5.562508 2.292679 24.30731 +7.471917 2.292679 24.30731 +10.03574 2.292679 24.30731 +13.47828 2.292679 24.30731 +18.10068 2.292679 24.30731 +24.30731 2.292679 24.30731 +32.64117 2.292679 24.30731 +43.83129 2.292679 24.30731 +58.85664 2.292679 24.30731 +-0.0175068 3.081414 24.30731 +-0.01161267 3.081414 24.30731 +-0.005718534 3.081414 24.30731 +0.0001755984 3.081414 24.30731 +0.006069731 3.081414 24.30731 +0.01197402 3.081414 24.30731 +0.01903886 3.081414 24.30731 +0.02852504 3.081414 24.30731 +0.04126244 3.081414 24.30731 +0.05836535 3.081414 24.30731 +0.08132997 3.081414 24.30731 +0.1121653 3.081414 24.30731 +0.1535689 3.081414 24.30731 +0.2091628 3.081414 24.30731 +0.2838106 3.081414 24.30731 +0.3840425 3.081414 24.30731 +0.518627 3.081414 24.30731 +0.6993381 3.081414 24.30731 +0.9419845 3.081414 24.30731 +1.267794 3.081414 24.30731 +1.705268 3.081414 24.30731 +2.292679 3.081414 24.30731 +3.081414 3.081414 24.30731 +4.140474 3.081414 24.30731 +5.562508 3.081414 24.30731 +7.471917 3.081414 24.30731 +10.03574 3.081414 24.30731 +13.47828 3.081414 24.30731 +18.10068 3.081414 24.30731 +24.30731 3.081414 24.30731 +32.64117 3.081414 24.30731 +43.83129 3.081414 24.30731 +58.85664 3.081414 24.30731 +-0.0175068 4.140474 24.30731 +-0.01161267 4.140474 24.30731 +-0.005718534 4.140474 24.30731 +0.0001755984 4.140474 24.30731 +0.006069731 4.140474 24.30731 +0.01197402 4.140474 24.30731 +0.01903886 4.140474 24.30731 +0.02852504 4.140474 24.30731 +0.04126244 4.140474 24.30731 +0.05836535 4.140474 24.30731 +0.08132997 4.140474 24.30731 +0.1121653 4.140474 24.30731 +0.1535689 4.140474 24.30731 +0.2091628 4.140474 24.30731 +0.2838106 4.140474 24.30731 +0.3840425 4.140474 24.30731 +0.518627 4.140474 24.30731 +0.6993381 4.140474 24.30731 +0.9419845 4.140474 24.30731 +1.267794 4.140474 24.30731 +1.705268 4.140474 24.30731 +2.292679 4.140474 24.30731 +3.081414 4.140474 24.30731 +4.140474 4.140474 24.30731 +5.562508 4.140474 24.30731 +7.471917 4.140474 24.30731 +10.03574 4.140474 24.30731 +13.47828 4.140474 24.30731 +18.10068 4.140474 24.30731 +24.30731 4.140474 24.30731 +32.64117 4.140474 24.30731 +43.83129 4.140474 24.30731 +58.85664 4.140474 24.30731 +-0.0175068 5.562508 24.30731 +-0.01161267 5.562508 24.30731 +-0.005718534 5.562508 24.30731 +0.0001755984 5.562508 24.30731 +0.006069731 5.562508 24.30731 +0.01197402 5.562508 24.30731 +0.01903886 5.562508 24.30731 +0.02852504 5.562508 24.30731 +0.04126244 5.562508 24.30731 +0.05836535 5.562508 24.30731 +0.08132997 5.562508 24.30731 +0.1121653 5.562508 24.30731 +0.1535689 5.562508 24.30731 +0.2091628 5.562508 24.30731 +0.2838106 5.562508 24.30731 +0.3840425 5.562508 24.30731 +0.518627 5.562508 24.30731 +0.6993381 5.562508 24.30731 +0.9419845 5.562508 24.30731 +1.267794 5.562508 24.30731 +1.705268 5.562508 24.30731 +2.292679 5.562508 24.30731 +3.081414 5.562508 24.30731 +4.140474 5.562508 24.30731 +5.562508 5.562508 24.30731 +7.471917 5.562508 24.30731 +10.03574 5.562508 24.30731 +13.47828 5.562508 24.30731 +18.10068 5.562508 24.30731 +24.30731 5.562508 24.30731 +32.64117 5.562508 24.30731 +43.83129 5.562508 24.30731 +58.85664 5.562508 24.30731 +-0.0175068 7.471917 24.30731 +-0.01161267 7.471917 24.30731 +-0.005718534 7.471917 24.30731 +0.0001755984 7.471917 24.30731 +0.006069731 7.471917 24.30731 +0.01197402 7.471917 24.30731 +0.01903886 7.471917 24.30731 +0.02852504 7.471917 24.30731 +0.04126244 7.471917 24.30731 +0.05836535 7.471917 24.30731 +0.08132997 7.471917 24.30731 +0.1121653 7.471917 24.30731 +0.1535689 7.471917 24.30731 +0.2091628 7.471917 24.30731 +0.2838106 7.471917 24.30731 +0.3840425 7.471917 24.30731 +0.518627 7.471917 24.30731 +0.6993381 7.471917 24.30731 +0.9419845 7.471917 24.30731 +1.267794 7.471917 24.30731 +1.705268 7.471917 24.30731 +2.292679 7.471917 24.30731 +3.081414 7.471917 24.30731 +4.140474 7.471917 24.30731 +5.562508 7.471917 24.30731 +7.471917 7.471917 24.30731 +10.03574 7.471917 24.30731 +13.47828 7.471917 24.30731 +18.10068 7.471917 24.30731 +24.30731 7.471917 24.30731 +32.64117 7.471917 24.30731 +43.83129 7.471917 24.30731 +58.85664 7.471917 24.30731 +-0.0175068 10.03574 24.30731 +-0.01161267 10.03574 24.30731 +-0.005718534 10.03574 24.30731 +0.0001755984 10.03574 24.30731 +0.006069731 10.03574 24.30731 +0.01197402 10.03574 24.30731 +0.01903886 10.03574 24.30731 +0.02852504 10.03574 24.30731 +0.04126244 10.03574 24.30731 +0.05836535 10.03574 24.30731 +0.08132997 10.03574 24.30731 +0.1121653 10.03574 24.30731 +0.1535689 10.03574 24.30731 +0.2091628 10.03574 24.30731 +0.2838106 10.03574 24.30731 +0.3840425 10.03574 24.30731 +0.518627 10.03574 24.30731 +0.6993381 10.03574 24.30731 +0.9419845 10.03574 24.30731 +1.267794 10.03574 24.30731 +1.705268 10.03574 24.30731 +2.292679 10.03574 24.30731 +3.081414 10.03574 24.30731 +4.140474 10.03574 24.30731 +5.562508 10.03574 24.30731 +7.471917 10.03574 24.30731 +10.03574 10.03574 24.30731 +13.47828 10.03574 24.30731 +18.10068 10.03574 24.30731 +24.30731 10.03574 24.30731 +32.64117 10.03574 24.30731 +43.83129 10.03574 24.30731 +58.85664 10.03574 24.30731 +-0.0175068 13.47828 24.30731 +-0.01161267 13.47828 24.30731 +-0.005718534 13.47828 24.30731 +0.0001755984 13.47828 24.30731 +0.006069731 13.47828 24.30731 +0.01197402 13.47828 24.30731 +0.01903886 13.47828 24.30731 +0.02852504 13.47828 24.30731 +0.04126244 13.47828 24.30731 +0.05836535 13.47828 24.30731 +0.08132997 13.47828 24.30731 +0.1121653 13.47828 24.30731 +0.1535689 13.47828 24.30731 +0.2091628 13.47828 24.30731 +0.2838106 13.47828 24.30731 +0.3840425 13.47828 24.30731 +0.518627 13.47828 24.30731 +0.6993381 13.47828 24.30731 +0.9419845 13.47828 24.30731 +1.267794 13.47828 24.30731 +1.705268 13.47828 24.30731 +2.292679 13.47828 24.30731 +3.081414 13.47828 24.30731 +4.140474 13.47828 24.30731 +5.562508 13.47828 24.30731 +7.471917 13.47828 24.30731 +10.03574 13.47828 24.30731 +13.47828 13.47828 24.30731 +18.10068 13.47828 24.30731 +24.30731 13.47828 24.30731 +32.64117 13.47828 24.30731 +43.83129 13.47828 24.30731 +58.85664 13.47828 24.30731 +-0.0175068 18.10068 24.30731 +-0.01161267 18.10068 24.30731 +-0.005718534 18.10068 24.30731 +0.0001755984 18.10068 24.30731 +0.006069731 18.10068 24.30731 +0.01197402 18.10068 24.30731 +0.01903886 18.10068 24.30731 +0.02852504 18.10068 24.30731 +0.04126244 18.10068 24.30731 +0.05836535 18.10068 24.30731 +0.08132997 18.10068 24.30731 +0.1121653 18.10068 24.30731 +0.1535689 18.10068 24.30731 +0.2091628 18.10068 24.30731 +0.2838106 18.10068 24.30731 +0.3840425 18.10068 24.30731 +0.518627 18.10068 24.30731 +0.6993381 18.10068 24.30731 +0.9419845 18.10068 24.30731 +1.267794 18.10068 24.30731 +1.705268 18.10068 24.30731 +2.292679 18.10068 24.30731 +3.081414 18.10068 24.30731 +4.140474 18.10068 24.30731 +5.562508 18.10068 24.30731 +7.471917 18.10068 24.30731 +10.03574 18.10068 24.30731 +13.47828 18.10068 24.30731 +18.10068 18.10068 24.30731 +24.30731 18.10068 24.30731 +32.64117 18.10068 24.30731 +43.83129 18.10068 24.30731 +58.85664 18.10068 24.30731 +-0.0175068 24.30731 24.30731 +-0.01161267 24.30731 24.30731 +-0.005718534 24.30731 24.30731 +0.0001755984 24.30731 24.30731 +0.006069731 24.30731 24.30731 +0.01197402 24.30731 24.30731 +0.01903886 24.30731 24.30731 +0.02852504 24.30731 24.30731 +0.04126244 24.30731 24.30731 +0.05836535 24.30731 24.30731 +0.08132997 24.30731 24.30731 +0.1121653 24.30731 24.30731 +0.1535689 24.30731 24.30731 +0.2091628 24.30731 24.30731 +0.2838106 24.30731 24.30731 +0.3840425 24.30731 24.30731 +0.518627 24.30731 24.30731 +0.6993381 24.30731 24.30731 +0.9419845 24.30731 24.30731 +1.267794 24.30731 24.30731 +1.705268 24.30731 24.30731 +2.292679 24.30731 24.30731 +3.081414 24.30731 24.30731 +4.140474 24.30731 24.30731 +5.562508 24.30731 24.30731 +7.471917 24.30731 24.30731 +10.03574 24.30731 24.30731 +13.47828 24.30731 24.30731 +18.10068 24.30731 24.30731 +24.30731 24.30731 24.30731 +32.64117 24.30731 24.30731 +43.83129 24.30731 24.30731 +58.85664 24.30731 24.30731 +-0.0175068 32.64117 24.30731 +-0.01161267 32.64117 24.30731 +-0.005718534 32.64117 24.30731 +0.0001755984 32.64117 24.30731 +0.006069731 32.64117 24.30731 +0.01197402 32.64117 24.30731 +0.01903886 32.64117 24.30731 +0.02852504 32.64117 24.30731 +0.04126244 32.64117 24.30731 +0.05836535 32.64117 24.30731 +0.08132997 32.64117 24.30731 +0.1121653 32.64117 24.30731 +0.1535689 32.64117 24.30731 +0.2091628 32.64117 24.30731 +0.2838106 32.64117 24.30731 +0.3840425 32.64117 24.30731 +0.518627 32.64117 24.30731 +0.6993381 32.64117 24.30731 +0.9419845 32.64117 24.30731 +1.267794 32.64117 24.30731 +1.705268 32.64117 24.30731 +2.292679 32.64117 24.30731 +3.081414 32.64117 24.30731 +4.140474 32.64117 24.30731 +5.562508 32.64117 24.30731 +7.471917 32.64117 24.30731 +10.03574 32.64117 24.30731 +13.47828 32.64117 24.30731 +18.10068 32.64117 24.30731 +24.30731 32.64117 24.30731 +32.64117 32.64117 24.30731 +43.83129 32.64117 24.30731 +58.85664 32.64117 24.30731 +-0.0175068 43.83129 24.30731 +-0.01161267 43.83129 24.30731 +-0.005718534 43.83129 24.30731 +0.0001755984 43.83129 24.30731 +0.006069731 43.83129 24.30731 +0.01197402 43.83129 24.30731 +0.01903886 43.83129 24.30731 +0.02852504 43.83129 24.30731 +0.04126244 43.83129 24.30731 +0.05836535 43.83129 24.30731 +0.08132997 43.83129 24.30731 +0.1121653 43.83129 24.30731 +0.1535689 43.83129 24.30731 +0.2091628 43.83129 24.30731 +0.2838106 43.83129 24.30731 +0.3840425 43.83129 24.30731 +0.518627 43.83129 24.30731 +0.6993381 43.83129 24.30731 +0.9419845 43.83129 24.30731 +1.267794 43.83129 24.30731 +1.705268 43.83129 24.30731 +2.292679 43.83129 24.30731 +3.081414 43.83129 24.30731 +4.140474 43.83129 24.30731 +5.562508 43.83129 24.30731 +7.471917 43.83129 24.30731 +10.03574 43.83129 24.30731 +13.47828 43.83129 24.30731 +18.10068 43.83129 24.30731 +24.30731 43.83129 24.30731 +32.64117 43.83129 24.30731 +43.83129 43.83129 24.30731 +58.85664 43.83129 24.30731 +-0.0175068 58.85664 24.30731 +-0.01161267 58.85664 24.30731 +-0.005718534 58.85664 24.30731 +0.0001755984 58.85664 24.30731 +0.006069731 58.85664 24.30731 +0.01197402 58.85664 24.30731 +0.01903886 58.85664 24.30731 +0.02852504 58.85664 24.30731 +0.04126244 58.85664 24.30731 +0.05836535 58.85664 24.30731 +0.08132997 58.85664 24.30731 +0.1121653 58.85664 24.30731 +0.1535689 58.85664 24.30731 +0.2091628 58.85664 24.30731 +0.2838106 58.85664 24.30731 +0.3840425 58.85664 24.30731 +0.518627 58.85664 24.30731 +0.6993381 58.85664 24.30731 +0.9419845 58.85664 24.30731 +1.267794 58.85664 24.30731 +1.705268 58.85664 24.30731 +2.292679 58.85664 24.30731 +3.081414 58.85664 24.30731 +4.140474 58.85664 24.30731 +5.562508 58.85664 24.30731 +7.471917 58.85664 24.30731 +10.03574 58.85664 24.30731 +13.47828 58.85664 24.30731 +18.10068 58.85664 24.30731 +24.30731 58.85664 24.30731 +32.64117 58.85664 24.30731 +43.83129 58.85664 24.30731 +58.85664 58.85664 24.30731 +-0.0175068 -0.0175068 32.64117 +-0.01161267 -0.0175068 32.64117 +-0.005718534 -0.0175068 32.64117 +0.0001755984 -0.0175068 32.64117 +0.006069731 -0.0175068 32.64117 +0.01197402 -0.0175068 32.64117 +0.01903886 -0.0175068 32.64117 +0.02852504 -0.0175068 32.64117 +0.04126244 -0.0175068 32.64117 +0.05836535 -0.0175068 32.64117 +0.08132997 -0.0175068 32.64117 +0.1121653 -0.0175068 32.64117 +0.1535689 -0.0175068 32.64117 +0.2091628 -0.0175068 32.64117 +0.2838106 -0.0175068 32.64117 +0.3840425 -0.0175068 32.64117 +0.518627 -0.0175068 32.64117 +0.6993381 -0.0175068 32.64117 +0.9419845 -0.0175068 32.64117 +1.267794 -0.0175068 32.64117 +1.705268 -0.0175068 32.64117 +2.292679 -0.0175068 32.64117 +3.081414 -0.0175068 32.64117 +4.140474 -0.0175068 32.64117 +5.562508 -0.0175068 32.64117 +7.471917 -0.0175068 32.64117 +10.03574 -0.0175068 32.64117 +13.47828 -0.0175068 32.64117 +18.10068 -0.0175068 32.64117 +24.30731 -0.0175068 32.64117 +32.64117 -0.0175068 32.64117 +43.83129 -0.0175068 32.64117 +58.85664 -0.0175068 32.64117 +-0.0175068 -0.01161267 32.64117 +-0.01161267 -0.01161267 32.64117 +-0.005718534 -0.01161267 32.64117 +0.0001755984 -0.01161267 32.64117 +0.006069731 -0.01161267 32.64117 +0.01197402 -0.01161267 32.64117 +0.01903886 -0.01161267 32.64117 +0.02852504 -0.01161267 32.64117 +0.04126244 -0.01161267 32.64117 +0.05836535 -0.01161267 32.64117 +0.08132997 -0.01161267 32.64117 +0.1121653 -0.01161267 32.64117 +0.1535689 -0.01161267 32.64117 +0.2091628 -0.01161267 32.64117 +0.2838106 -0.01161267 32.64117 +0.3840425 -0.01161267 32.64117 +0.518627 -0.01161267 32.64117 +0.6993381 -0.01161267 32.64117 +0.9419845 -0.01161267 32.64117 +1.267794 -0.01161267 32.64117 +1.705268 -0.01161267 32.64117 +2.292679 -0.01161267 32.64117 +3.081414 -0.01161267 32.64117 +4.140474 -0.01161267 32.64117 +5.562508 -0.01161267 32.64117 +7.471917 -0.01161267 32.64117 +10.03574 -0.01161267 32.64117 +13.47828 -0.01161267 32.64117 +18.10068 -0.01161267 32.64117 +24.30731 -0.01161267 32.64117 +32.64117 -0.01161267 32.64117 +43.83129 -0.01161267 32.64117 +58.85664 -0.01161267 32.64117 +-0.0175068 -0.005718534 32.64117 +-0.01161267 -0.005718534 32.64117 +-0.005718534 -0.005718534 32.64117 +0.0001755984 -0.005718534 32.64117 +0.006069731 -0.005718534 32.64117 +0.01197402 -0.005718534 32.64117 +0.01903886 -0.005718534 32.64117 +0.02852504 -0.005718534 32.64117 +0.04126244 -0.005718534 32.64117 +0.05836535 -0.005718534 32.64117 +0.08132997 -0.005718534 32.64117 +0.1121653 -0.005718534 32.64117 +0.1535689 -0.005718534 32.64117 +0.2091628 -0.005718534 32.64117 +0.2838106 -0.005718534 32.64117 +0.3840425 -0.005718534 32.64117 +0.518627 -0.005718534 32.64117 +0.6993381 -0.005718534 32.64117 +0.9419845 -0.005718534 32.64117 +1.267794 -0.005718534 32.64117 +1.705268 -0.005718534 32.64117 +2.292679 -0.005718534 32.64117 +3.081414 -0.005718534 32.64117 +4.140474 -0.005718534 32.64117 +5.562508 -0.005718534 32.64117 +7.471917 -0.005718534 32.64117 +10.03574 -0.005718534 32.64117 +13.47828 -0.005718534 32.64117 +18.10068 -0.005718534 32.64117 +24.30731 -0.005718534 32.64117 +32.64117 -0.005718534 32.64117 +43.83129 -0.005718534 32.64117 +58.85664 -0.005718534 32.64117 +-0.0175068 0.0001755984 32.64117 +-0.01161267 0.0001755984 32.64117 +-0.005718534 0.0001755984 32.64117 +0.0001755984 0.0001755984 32.64117 +0.006069731 0.0001755984 32.64117 +0.01197402 0.0001755984 32.64117 +0.01903886 0.0001755984 32.64117 +0.02852504 0.0001755984 32.64117 +0.04126244 0.0001755984 32.64117 +0.05836535 0.0001755984 32.64117 +0.08132997 0.0001755984 32.64117 +0.1121653 0.0001755984 32.64117 +0.1535689 0.0001755984 32.64117 +0.2091628 0.0001755984 32.64117 +0.2838106 0.0001755984 32.64117 +0.3840425 0.0001755984 32.64117 +0.518627 0.0001755984 32.64117 +0.6993381 0.0001755984 32.64117 +0.9419845 0.0001755984 32.64117 +1.267794 0.0001755984 32.64117 +1.705268 0.0001755984 32.64117 +2.292679 0.0001755984 32.64117 +3.081414 0.0001755984 32.64117 +4.140474 0.0001755984 32.64117 +5.562508 0.0001755984 32.64117 +7.471917 0.0001755984 32.64117 +10.03574 0.0001755984 32.64117 +13.47828 0.0001755984 32.64117 +18.10068 0.0001755984 32.64117 +24.30731 0.0001755984 32.64117 +32.64117 0.0001755984 32.64117 +43.83129 0.0001755984 32.64117 +58.85664 0.0001755984 32.64117 +-0.0175068 0.006069731 32.64117 +-0.01161267 0.006069731 32.64117 +-0.005718534 0.006069731 32.64117 +0.0001755984 0.006069731 32.64117 +0.006069731 0.006069731 32.64117 +0.01197402 0.006069731 32.64117 +0.01903886 0.006069731 32.64117 +0.02852504 0.006069731 32.64117 +0.04126244 0.006069731 32.64117 +0.05836535 0.006069731 32.64117 +0.08132997 0.006069731 32.64117 +0.1121653 0.006069731 32.64117 +0.1535689 0.006069731 32.64117 +0.2091628 0.006069731 32.64117 +0.2838106 0.006069731 32.64117 +0.3840425 0.006069731 32.64117 +0.518627 0.006069731 32.64117 +0.6993381 0.006069731 32.64117 +0.9419845 0.006069731 32.64117 +1.267794 0.006069731 32.64117 +1.705268 0.006069731 32.64117 +2.292679 0.006069731 32.64117 +3.081414 0.006069731 32.64117 +4.140474 0.006069731 32.64117 +5.562508 0.006069731 32.64117 +7.471917 0.006069731 32.64117 +10.03574 0.006069731 32.64117 +13.47828 0.006069731 32.64117 +18.10068 0.006069731 32.64117 +24.30731 0.006069731 32.64117 +32.64117 0.006069731 32.64117 +43.83129 0.006069731 32.64117 +58.85664 0.006069731 32.64117 +-0.0175068 0.01197402 32.64117 +-0.01161267 0.01197402 32.64117 +-0.005718534 0.01197402 32.64117 +0.0001755984 0.01197402 32.64117 +0.006069731 0.01197402 32.64117 +0.01197402 0.01197402 32.64117 +0.01903886 0.01197402 32.64117 +0.02852504 0.01197402 32.64117 +0.04126244 0.01197402 32.64117 +0.05836535 0.01197402 32.64117 +0.08132997 0.01197402 32.64117 +0.1121653 0.01197402 32.64117 +0.1535689 0.01197402 32.64117 +0.2091628 0.01197402 32.64117 +0.2838106 0.01197402 32.64117 +0.3840425 0.01197402 32.64117 +0.518627 0.01197402 32.64117 +0.6993381 0.01197402 32.64117 +0.9419845 0.01197402 32.64117 +1.267794 0.01197402 32.64117 +1.705268 0.01197402 32.64117 +2.292679 0.01197402 32.64117 +3.081414 0.01197402 32.64117 +4.140474 0.01197402 32.64117 +5.562508 0.01197402 32.64117 +7.471917 0.01197402 32.64117 +10.03574 0.01197402 32.64117 +13.47828 0.01197402 32.64117 +18.10068 0.01197402 32.64117 +24.30731 0.01197402 32.64117 +32.64117 0.01197402 32.64117 +43.83129 0.01197402 32.64117 +58.85664 0.01197402 32.64117 +-0.0175068 0.01903886 32.64117 +-0.01161267 0.01903886 32.64117 +-0.005718534 0.01903886 32.64117 +0.0001755984 0.01903886 32.64117 +0.006069731 0.01903886 32.64117 +0.01197402 0.01903886 32.64117 +0.01903886 0.01903886 32.64117 +0.02852504 0.01903886 32.64117 +0.04126244 0.01903886 32.64117 +0.05836535 0.01903886 32.64117 +0.08132997 0.01903886 32.64117 +0.1121653 0.01903886 32.64117 +0.1535689 0.01903886 32.64117 +0.2091628 0.01903886 32.64117 +0.2838106 0.01903886 32.64117 +0.3840425 0.01903886 32.64117 +0.518627 0.01903886 32.64117 +0.6993381 0.01903886 32.64117 +0.9419845 0.01903886 32.64117 +1.267794 0.01903886 32.64117 +1.705268 0.01903886 32.64117 +2.292679 0.01903886 32.64117 +3.081414 0.01903886 32.64117 +4.140474 0.01903886 32.64117 +5.562508 0.01903886 32.64117 +7.471917 0.01903886 32.64117 +10.03574 0.01903886 32.64117 +13.47828 0.01903886 32.64117 +18.10068 0.01903886 32.64117 +24.30731 0.01903886 32.64117 +32.64117 0.01903886 32.64117 +43.83129 0.01903886 32.64117 +58.85664 0.01903886 32.64117 +-0.0175068 0.02852504 32.64117 +-0.01161267 0.02852504 32.64117 +-0.005718534 0.02852504 32.64117 +0.0001755984 0.02852504 32.64117 +0.006069731 0.02852504 32.64117 +0.01197402 0.02852504 32.64117 +0.01903886 0.02852504 32.64117 +0.02852504 0.02852504 32.64117 +0.04126244 0.02852504 32.64117 +0.05836535 0.02852504 32.64117 +0.08132997 0.02852504 32.64117 +0.1121653 0.02852504 32.64117 +0.1535689 0.02852504 32.64117 +0.2091628 0.02852504 32.64117 +0.2838106 0.02852504 32.64117 +0.3840425 0.02852504 32.64117 +0.518627 0.02852504 32.64117 +0.6993381 0.02852504 32.64117 +0.9419845 0.02852504 32.64117 +1.267794 0.02852504 32.64117 +1.705268 0.02852504 32.64117 +2.292679 0.02852504 32.64117 +3.081414 0.02852504 32.64117 +4.140474 0.02852504 32.64117 +5.562508 0.02852504 32.64117 +7.471917 0.02852504 32.64117 +10.03574 0.02852504 32.64117 +13.47828 0.02852504 32.64117 +18.10068 0.02852504 32.64117 +24.30731 0.02852504 32.64117 +32.64117 0.02852504 32.64117 +43.83129 0.02852504 32.64117 +58.85664 0.02852504 32.64117 +-0.0175068 0.04126244 32.64117 +-0.01161267 0.04126244 32.64117 +-0.005718534 0.04126244 32.64117 +0.0001755984 0.04126244 32.64117 +0.006069731 0.04126244 32.64117 +0.01197402 0.04126244 32.64117 +0.01903886 0.04126244 32.64117 +0.02852504 0.04126244 32.64117 +0.04126244 0.04126244 32.64117 +0.05836535 0.04126244 32.64117 +0.08132997 0.04126244 32.64117 +0.1121653 0.04126244 32.64117 +0.1535689 0.04126244 32.64117 +0.2091628 0.04126244 32.64117 +0.2838106 0.04126244 32.64117 +0.3840425 0.04126244 32.64117 +0.518627 0.04126244 32.64117 +0.6993381 0.04126244 32.64117 +0.9419845 0.04126244 32.64117 +1.267794 0.04126244 32.64117 +1.705268 0.04126244 32.64117 +2.292679 0.04126244 32.64117 +3.081414 0.04126244 32.64117 +4.140474 0.04126244 32.64117 +5.562508 0.04126244 32.64117 +7.471917 0.04126244 32.64117 +10.03574 0.04126244 32.64117 +13.47828 0.04126244 32.64117 +18.10068 0.04126244 32.64117 +24.30731 0.04126244 32.64117 +32.64117 0.04126244 32.64117 +43.83129 0.04126244 32.64117 +58.85664 0.04126244 32.64117 +-0.0175068 0.05836535 32.64117 +-0.01161267 0.05836535 32.64117 +-0.005718534 0.05836535 32.64117 +0.0001755984 0.05836535 32.64117 +0.006069731 0.05836535 32.64117 +0.01197402 0.05836535 32.64117 +0.01903886 0.05836535 32.64117 +0.02852504 0.05836535 32.64117 +0.04126244 0.05836535 32.64117 +0.05836535 0.05836535 32.64117 +0.08132997 0.05836535 32.64117 +0.1121653 0.05836535 32.64117 +0.1535689 0.05836535 32.64117 +0.2091628 0.05836535 32.64117 +0.2838106 0.05836535 32.64117 +0.3840425 0.05836535 32.64117 +0.518627 0.05836535 32.64117 +0.6993381 0.05836535 32.64117 +0.9419845 0.05836535 32.64117 +1.267794 0.05836535 32.64117 +1.705268 0.05836535 32.64117 +2.292679 0.05836535 32.64117 +3.081414 0.05836535 32.64117 +4.140474 0.05836535 32.64117 +5.562508 0.05836535 32.64117 +7.471917 0.05836535 32.64117 +10.03574 0.05836535 32.64117 +13.47828 0.05836535 32.64117 +18.10068 0.05836535 32.64117 +24.30731 0.05836535 32.64117 +32.64117 0.05836535 32.64117 +43.83129 0.05836535 32.64117 +58.85664 0.05836535 32.64117 +-0.0175068 0.08132997 32.64117 +-0.01161267 0.08132997 32.64117 +-0.005718534 0.08132997 32.64117 +0.0001755984 0.08132997 32.64117 +0.006069731 0.08132997 32.64117 +0.01197402 0.08132997 32.64117 +0.01903886 0.08132997 32.64117 +0.02852504 0.08132997 32.64117 +0.04126244 0.08132997 32.64117 +0.05836535 0.08132997 32.64117 +0.08132997 0.08132997 32.64117 +0.1121653 0.08132997 32.64117 +0.1535689 0.08132997 32.64117 +0.2091628 0.08132997 32.64117 +0.2838106 0.08132997 32.64117 +0.3840425 0.08132997 32.64117 +0.518627 0.08132997 32.64117 +0.6993381 0.08132997 32.64117 +0.9419845 0.08132997 32.64117 +1.267794 0.08132997 32.64117 +1.705268 0.08132997 32.64117 +2.292679 0.08132997 32.64117 +3.081414 0.08132997 32.64117 +4.140474 0.08132997 32.64117 +5.562508 0.08132997 32.64117 +7.471917 0.08132997 32.64117 +10.03574 0.08132997 32.64117 +13.47828 0.08132997 32.64117 +18.10068 0.08132997 32.64117 +24.30731 0.08132997 32.64117 +32.64117 0.08132997 32.64117 +43.83129 0.08132997 32.64117 +58.85664 0.08132997 32.64117 +-0.0175068 0.1121653 32.64117 +-0.01161267 0.1121653 32.64117 +-0.005718534 0.1121653 32.64117 +0.0001755984 0.1121653 32.64117 +0.006069731 0.1121653 32.64117 +0.01197402 0.1121653 32.64117 +0.01903886 0.1121653 32.64117 +0.02852504 0.1121653 32.64117 +0.04126244 0.1121653 32.64117 +0.05836535 0.1121653 32.64117 +0.08132997 0.1121653 32.64117 +0.1121653 0.1121653 32.64117 +0.1535689 0.1121653 32.64117 +0.2091628 0.1121653 32.64117 +0.2838106 0.1121653 32.64117 +0.3840425 0.1121653 32.64117 +0.518627 0.1121653 32.64117 +0.6993381 0.1121653 32.64117 +0.9419845 0.1121653 32.64117 +1.267794 0.1121653 32.64117 +1.705268 0.1121653 32.64117 +2.292679 0.1121653 32.64117 +3.081414 0.1121653 32.64117 +4.140474 0.1121653 32.64117 +5.562508 0.1121653 32.64117 +7.471917 0.1121653 32.64117 +10.03574 0.1121653 32.64117 +13.47828 0.1121653 32.64117 +18.10068 0.1121653 32.64117 +24.30731 0.1121653 32.64117 +32.64117 0.1121653 32.64117 +43.83129 0.1121653 32.64117 +58.85664 0.1121653 32.64117 +-0.0175068 0.1535689 32.64117 +-0.01161267 0.1535689 32.64117 +-0.005718534 0.1535689 32.64117 +0.0001755984 0.1535689 32.64117 +0.006069731 0.1535689 32.64117 +0.01197402 0.1535689 32.64117 +0.01903886 0.1535689 32.64117 +0.02852504 0.1535689 32.64117 +0.04126244 0.1535689 32.64117 +0.05836535 0.1535689 32.64117 +0.08132997 0.1535689 32.64117 +0.1121653 0.1535689 32.64117 +0.1535689 0.1535689 32.64117 +0.2091628 0.1535689 32.64117 +0.2838106 0.1535689 32.64117 +0.3840425 0.1535689 32.64117 +0.518627 0.1535689 32.64117 +0.6993381 0.1535689 32.64117 +0.9419845 0.1535689 32.64117 +1.267794 0.1535689 32.64117 +1.705268 0.1535689 32.64117 +2.292679 0.1535689 32.64117 +3.081414 0.1535689 32.64117 +4.140474 0.1535689 32.64117 +5.562508 0.1535689 32.64117 +7.471917 0.1535689 32.64117 +10.03574 0.1535689 32.64117 +13.47828 0.1535689 32.64117 +18.10068 0.1535689 32.64117 +24.30731 0.1535689 32.64117 +32.64117 0.1535689 32.64117 +43.83129 0.1535689 32.64117 +58.85664 0.1535689 32.64117 +-0.0175068 0.2091628 32.64117 +-0.01161267 0.2091628 32.64117 +-0.005718534 0.2091628 32.64117 +0.0001755984 0.2091628 32.64117 +0.006069731 0.2091628 32.64117 +0.01197402 0.2091628 32.64117 +0.01903886 0.2091628 32.64117 +0.02852504 0.2091628 32.64117 +0.04126244 0.2091628 32.64117 +0.05836535 0.2091628 32.64117 +0.08132997 0.2091628 32.64117 +0.1121653 0.2091628 32.64117 +0.1535689 0.2091628 32.64117 +0.2091628 0.2091628 32.64117 +0.2838106 0.2091628 32.64117 +0.3840425 0.2091628 32.64117 +0.518627 0.2091628 32.64117 +0.6993381 0.2091628 32.64117 +0.9419845 0.2091628 32.64117 +1.267794 0.2091628 32.64117 +1.705268 0.2091628 32.64117 +2.292679 0.2091628 32.64117 +3.081414 0.2091628 32.64117 +4.140474 0.2091628 32.64117 +5.562508 0.2091628 32.64117 +7.471917 0.2091628 32.64117 +10.03574 0.2091628 32.64117 +13.47828 0.2091628 32.64117 +18.10068 0.2091628 32.64117 +24.30731 0.2091628 32.64117 +32.64117 0.2091628 32.64117 +43.83129 0.2091628 32.64117 +58.85664 0.2091628 32.64117 +-0.0175068 0.2838106 32.64117 +-0.01161267 0.2838106 32.64117 +-0.005718534 0.2838106 32.64117 +0.0001755984 0.2838106 32.64117 +0.006069731 0.2838106 32.64117 +0.01197402 0.2838106 32.64117 +0.01903886 0.2838106 32.64117 +0.02852504 0.2838106 32.64117 +0.04126244 0.2838106 32.64117 +0.05836535 0.2838106 32.64117 +0.08132997 0.2838106 32.64117 +0.1121653 0.2838106 32.64117 +0.1535689 0.2838106 32.64117 +0.2091628 0.2838106 32.64117 +0.2838106 0.2838106 32.64117 +0.3840425 0.2838106 32.64117 +0.518627 0.2838106 32.64117 +0.6993381 0.2838106 32.64117 +0.9419845 0.2838106 32.64117 +1.267794 0.2838106 32.64117 +1.705268 0.2838106 32.64117 +2.292679 0.2838106 32.64117 +3.081414 0.2838106 32.64117 +4.140474 0.2838106 32.64117 +5.562508 0.2838106 32.64117 +7.471917 0.2838106 32.64117 +10.03574 0.2838106 32.64117 +13.47828 0.2838106 32.64117 +18.10068 0.2838106 32.64117 +24.30731 0.2838106 32.64117 +32.64117 0.2838106 32.64117 +43.83129 0.2838106 32.64117 +58.85664 0.2838106 32.64117 +-0.0175068 0.3840425 32.64117 +-0.01161267 0.3840425 32.64117 +-0.005718534 0.3840425 32.64117 +0.0001755984 0.3840425 32.64117 +0.006069731 0.3840425 32.64117 +0.01197402 0.3840425 32.64117 +0.01903886 0.3840425 32.64117 +0.02852504 0.3840425 32.64117 +0.04126244 0.3840425 32.64117 +0.05836535 0.3840425 32.64117 +0.08132997 0.3840425 32.64117 +0.1121653 0.3840425 32.64117 +0.1535689 0.3840425 32.64117 +0.2091628 0.3840425 32.64117 +0.2838106 0.3840425 32.64117 +0.3840425 0.3840425 32.64117 +0.518627 0.3840425 32.64117 +0.6993381 0.3840425 32.64117 +0.9419845 0.3840425 32.64117 +1.267794 0.3840425 32.64117 +1.705268 0.3840425 32.64117 +2.292679 0.3840425 32.64117 +3.081414 0.3840425 32.64117 +4.140474 0.3840425 32.64117 +5.562508 0.3840425 32.64117 +7.471917 0.3840425 32.64117 +10.03574 0.3840425 32.64117 +13.47828 0.3840425 32.64117 +18.10068 0.3840425 32.64117 +24.30731 0.3840425 32.64117 +32.64117 0.3840425 32.64117 +43.83129 0.3840425 32.64117 +58.85664 0.3840425 32.64117 +-0.0175068 0.518627 32.64117 +-0.01161267 0.518627 32.64117 +-0.005718534 0.518627 32.64117 +0.0001755984 0.518627 32.64117 +0.006069731 0.518627 32.64117 +0.01197402 0.518627 32.64117 +0.01903886 0.518627 32.64117 +0.02852504 0.518627 32.64117 +0.04126244 0.518627 32.64117 +0.05836535 0.518627 32.64117 +0.08132997 0.518627 32.64117 +0.1121653 0.518627 32.64117 +0.1535689 0.518627 32.64117 +0.2091628 0.518627 32.64117 +0.2838106 0.518627 32.64117 +0.3840425 0.518627 32.64117 +0.518627 0.518627 32.64117 +0.6993381 0.518627 32.64117 +0.9419845 0.518627 32.64117 +1.267794 0.518627 32.64117 +1.705268 0.518627 32.64117 +2.292679 0.518627 32.64117 +3.081414 0.518627 32.64117 +4.140474 0.518627 32.64117 +5.562508 0.518627 32.64117 +7.471917 0.518627 32.64117 +10.03574 0.518627 32.64117 +13.47828 0.518627 32.64117 +18.10068 0.518627 32.64117 +24.30731 0.518627 32.64117 +32.64117 0.518627 32.64117 +43.83129 0.518627 32.64117 +58.85664 0.518627 32.64117 +-0.0175068 0.6993381 32.64117 +-0.01161267 0.6993381 32.64117 +-0.005718534 0.6993381 32.64117 +0.0001755984 0.6993381 32.64117 +0.006069731 0.6993381 32.64117 +0.01197402 0.6993381 32.64117 +0.01903886 0.6993381 32.64117 +0.02852504 0.6993381 32.64117 +0.04126244 0.6993381 32.64117 +0.05836535 0.6993381 32.64117 +0.08132997 0.6993381 32.64117 +0.1121653 0.6993381 32.64117 +0.1535689 0.6993381 32.64117 +0.2091628 0.6993381 32.64117 +0.2838106 0.6993381 32.64117 +0.3840425 0.6993381 32.64117 +0.518627 0.6993381 32.64117 +0.6993381 0.6993381 32.64117 +0.9419845 0.6993381 32.64117 +1.267794 0.6993381 32.64117 +1.705268 0.6993381 32.64117 +2.292679 0.6993381 32.64117 +3.081414 0.6993381 32.64117 +4.140474 0.6993381 32.64117 +5.562508 0.6993381 32.64117 +7.471917 0.6993381 32.64117 +10.03574 0.6993381 32.64117 +13.47828 0.6993381 32.64117 +18.10068 0.6993381 32.64117 +24.30731 0.6993381 32.64117 +32.64117 0.6993381 32.64117 +43.83129 0.6993381 32.64117 +58.85664 0.6993381 32.64117 +-0.0175068 0.9419845 32.64117 +-0.01161267 0.9419845 32.64117 +-0.005718534 0.9419845 32.64117 +0.0001755984 0.9419845 32.64117 +0.006069731 0.9419845 32.64117 +0.01197402 0.9419845 32.64117 +0.01903886 0.9419845 32.64117 +0.02852504 0.9419845 32.64117 +0.04126244 0.9419845 32.64117 +0.05836535 0.9419845 32.64117 +0.08132997 0.9419845 32.64117 +0.1121653 0.9419845 32.64117 +0.1535689 0.9419845 32.64117 +0.2091628 0.9419845 32.64117 +0.2838106 0.9419845 32.64117 +0.3840425 0.9419845 32.64117 +0.518627 0.9419845 32.64117 +0.6993381 0.9419845 32.64117 +0.9419845 0.9419845 32.64117 +1.267794 0.9419845 32.64117 +1.705268 0.9419845 32.64117 +2.292679 0.9419845 32.64117 +3.081414 0.9419845 32.64117 +4.140474 0.9419845 32.64117 +5.562508 0.9419845 32.64117 +7.471917 0.9419845 32.64117 +10.03574 0.9419845 32.64117 +13.47828 0.9419845 32.64117 +18.10068 0.9419845 32.64117 +24.30731 0.9419845 32.64117 +32.64117 0.9419845 32.64117 +43.83129 0.9419845 32.64117 +58.85664 0.9419845 32.64117 +-0.0175068 1.267794 32.64117 +-0.01161267 1.267794 32.64117 +-0.005718534 1.267794 32.64117 +0.0001755984 1.267794 32.64117 +0.006069731 1.267794 32.64117 +0.01197402 1.267794 32.64117 +0.01903886 1.267794 32.64117 +0.02852504 1.267794 32.64117 +0.04126244 1.267794 32.64117 +0.05836535 1.267794 32.64117 +0.08132997 1.267794 32.64117 +0.1121653 1.267794 32.64117 +0.1535689 1.267794 32.64117 +0.2091628 1.267794 32.64117 +0.2838106 1.267794 32.64117 +0.3840425 1.267794 32.64117 +0.518627 1.267794 32.64117 +0.6993381 1.267794 32.64117 +0.9419845 1.267794 32.64117 +1.267794 1.267794 32.64117 +1.705268 1.267794 32.64117 +2.292679 1.267794 32.64117 +3.081414 1.267794 32.64117 +4.140474 1.267794 32.64117 +5.562508 1.267794 32.64117 +7.471917 1.267794 32.64117 +10.03574 1.267794 32.64117 +13.47828 1.267794 32.64117 +18.10068 1.267794 32.64117 +24.30731 1.267794 32.64117 +32.64117 1.267794 32.64117 +43.83129 1.267794 32.64117 +58.85664 1.267794 32.64117 +-0.0175068 1.705268 32.64117 +-0.01161267 1.705268 32.64117 +-0.005718534 1.705268 32.64117 +0.0001755984 1.705268 32.64117 +0.006069731 1.705268 32.64117 +0.01197402 1.705268 32.64117 +0.01903886 1.705268 32.64117 +0.02852504 1.705268 32.64117 +0.04126244 1.705268 32.64117 +0.05836535 1.705268 32.64117 +0.08132997 1.705268 32.64117 +0.1121653 1.705268 32.64117 +0.1535689 1.705268 32.64117 +0.2091628 1.705268 32.64117 +0.2838106 1.705268 32.64117 +0.3840425 1.705268 32.64117 +0.518627 1.705268 32.64117 +0.6993381 1.705268 32.64117 +0.9419845 1.705268 32.64117 +1.267794 1.705268 32.64117 +1.705268 1.705268 32.64117 +2.292679 1.705268 32.64117 +3.081414 1.705268 32.64117 +4.140474 1.705268 32.64117 +5.562508 1.705268 32.64117 +7.471917 1.705268 32.64117 +10.03574 1.705268 32.64117 +13.47828 1.705268 32.64117 +18.10068 1.705268 32.64117 +24.30731 1.705268 32.64117 +32.64117 1.705268 32.64117 +43.83129 1.705268 32.64117 +58.85664 1.705268 32.64117 +-0.0175068 2.292679 32.64117 +-0.01161267 2.292679 32.64117 +-0.005718534 2.292679 32.64117 +0.0001755984 2.292679 32.64117 +0.006069731 2.292679 32.64117 +0.01197402 2.292679 32.64117 +0.01903886 2.292679 32.64117 +0.02852504 2.292679 32.64117 +0.04126244 2.292679 32.64117 +0.05836535 2.292679 32.64117 +0.08132997 2.292679 32.64117 +0.1121653 2.292679 32.64117 +0.1535689 2.292679 32.64117 +0.2091628 2.292679 32.64117 +0.2838106 2.292679 32.64117 +0.3840425 2.292679 32.64117 +0.518627 2.292679 32.64117 +0.6993381 2.292679 32.64117 +0.9419845 2.292679 32.64117 +1.267794 2.292679 32.64117 +1.705268 2.292679 32.64117 +2.292679 2.292679 32.64117 +3.081414 2.292679 32.64117 +4.140474 2.292679 32.64117 +5.562508 2.292679 32.64117 +7.471917 2.292679 32.64117 +10.03574 2.292679 32.64117 +13.47828 2.292679 32.64117 +18.10068 2.292679 32.64117 +24.30731 2.292679 32.64117 +32.64117 2.292679 32.64117 +43.83129 2.292679 32.64117 +58.85664 2.292679 32.64117 +-0.0175068 3.081414 32.64117 +-0.01161267 3.081414 32.64117 +-0.005718534 3.081414 32.64117 +0.0001755984 3.081414 32.64117 +0.006069731 3.081414 32.64117 +0.01197402 3.081414 32.64117 +0.01903886 3.081414 32.64117 +0.02852504 3.081414 32.64117 +0.04126244 3.081414 32.64117 +0.05836535 3.081414 32.64117 +0.08132997 3.081414 32.64117 +0.1121653 3.081414 32.64117 +0.1535689 3.081414 32.64117 +0.2091628 3.081414 32.64117 +0.2838106 3.081414 32.64117 +0.3840425 3.081414 32.64117 +0.518627 3.081414 32.64117 +0.6993381 3.081414 32.64117 +0.9419845 3.081414 32.64117 +1.267794 3.081414 32.64117 +1.705268 3.081414 32.64117 +2.292679 3.081414 32.64117 +3.081414 3.081414 32.64117 +4.140474 3.081414 32.64117 +5.562508 3.081414 32.64117 +7.471917 3.081414 32.64117 +10.03574 3.081414 32.64117 +13.47828 3.081414 32.64117 +18.10068 3.081414 32.64117 +24.30731 3.081414 32.64117 +32.64117 3.081414 32.64117 +43.83129 3.081414 32.64117 +58.85664 3.081414 32.64117 +-0.0175068 4.140474 32.64117 +-0.01161267 4.140474 32.64117 +-0.005718534 4.140474 32.64117 +0.0001755984 4.140474 32.64117 +0.006069731 4.140474 32.64117 +0.01197402 4.140474 32.64117 +0.01903886 4.140474 32.64117 +0.02852504 4.140474 32.64117 +0.04126244 4.140474 32.64117 +0.05836535 4.140474 32.64117 +0.08132997 4.140474 32.64117 +0.1121653 4.140474 32.64117 +0.1535689 4.140474 32.64117 +0.2091628 4.140474 32.64117 +0.2838106 4.140474 32.64117 +0.3840425 4.140474 32.64117 +0.518627 4.140474 32.64117 +0.6993381 4.140474 32.64117 +0.9419845 4.140474 32.64117 +1.267794 4.140474 32.64117 +1.705268 4.140474 32.64117 +2.292679 4.140474 32.64117 +3.081414 4.140474 32.64117 +4.140474 4.140474 32.64117 +5.562508 4.140474 32.64117 +7.471917 4.140474 32.64117 +10.03574 4.140474 32.64117 +13.47828 4.140474 32.64117 +18.10068 4.140474 32.64117 +24.30731 4.140474 32.64117 +32.64117 4.140474 32.64117 +43.83129 4.140474 32.64117 +58.85664 4.140474 32.64117 +-0.0175068 5.562508 32.64117 +-0.01161267 5.562508 32.64117 +-0.005718534 5.562508 32.64117 +0.0001755984 5.562508 32.64117 +0.006069731 5.562508 32.64117 +0.01197402 5.562508 32.64117 +0.01903886 5.562508 32.64117 +0.02852504 5.562508 32.64117 +0.04126244 5.562508 32.64117 +0.05836535 5.562508 32.64117 +0.08132997 5.562508 32.64117 +0.1121653 5.562508 32.64117 +0.1535689 5.562508 32.64117 +0.2091628 5.562508 32.64117 +0.2838106 5.562508 32.64117 +0.3840425 5.562508 32.64117 +0.518627 5.562508 32.64117 +0.6993381 5.562508 32.64117 +0.9419845 5.562508 32.64117 +1.267794 5.562508 32.64117 +1.705268 5.562508 32.64117 +2.292679 5.562508 32.64117 +3.081414 5.562508 32.64117 +4.140474 5.562508 32.64117 +5.562508 5.562508 32.64117 +7.471917 5.562508 32.64117 +10.03574 5.562508 32.64117 +13.47828 5.562508 32.64117 +18.10068 5.562508 32.64117 +24.30731 5.562508 32.64117 +32.64117 5.562508 32.64117 +43.83129 5.562508 32.64117 +58.85664 5.562508 32.64117 +-0.0175068 7.471917 32.64117 +-0.01161267 7.471917 32.64117 +-0.005718534 7.471917 32.64117 +0.0001755984 7.471917 32.64117 +0.006069731 7.471917 32.64117 +0.01197402 7.471917 32.64117 +0.01903886 7.471917 32.64117 +0.02852504 7.471917 32.64117 +0.04126244 7.471917 32.64117 +0.05836535 7.471917 32.64117 +0.08132997 7.471917 32.64117 +0.1121653 7.471917 32.64117 +0.1535689 7.471917 32.64117 +0.2091628 7.471917 32.64117 +0.2838106 7.471917 32.64117 +0.3840425 7.471917 32.64117 +0.518627 7.471917 32.64117 +0.6993381 7.471917 32.64117 +0.9419845 7.471917 32.64117 +1.267794 7.471917 32.64117 +1.705268 7.471917 32.64117 +2.292679 7.471917 32.64117 +3.081414 7.471917 32.64117 +4.140474 7.471917 32.64117 +5.562508 7.471917 32.64117 +7.471917 7.471917 32.64117 +10.03574 7.471917 32.64117 +13.47828 7.471917 32.64117 +18.10068 7.471917 32.64117 +24.30731 7.471917 32.64117 +32.64117 7.471917 32.64117 +43.83129 7.471917 32.64117 +58.85664 7.471917 32.64117 +-0.0175068 10.03574 32.64117 +-0.01161267 10.03574 32.64117 +-0.005718534 10.03574 32.64117 +0.0001755984 10.03574 32.64117 +0.006069731 10.03574 32.64117 +0.01197402 10.03574 32.64117 +0.01903886 10.03574 32.64117 +0.02852504 10.03574 32.64117 +0.04126244 10.03574 32.64117 +0.05836535 10.03574 32.64117 +0.08132997 10.03574 32.64117 +0.1121653 10.03574 32.64117 +0.1535689 10.03574 32.64117 +0.2091628 10.03574 32.64117 +0.2838106 10.03574 32.64117 +0.3840425 10.03574 32.64117 +0.518627 10.03574 32.64117 +0.6993381 10.03574 32.64117 +0.9419845 10.03574 32.64117 +1.267794 10.03574 32.64117 +1.705268 10.03574 32.64117 +2.292679 10.03574 32.64117 +3.081414 10.03574 32.64117 +4.140474 10.03574 32.64117 +5.562508 10.03574 32.64117 +7.471917 10.03574 32.64117 +10.03574 10.03574 32.64117 +13.47828 10.03574 32.64117 +18.10068 10.03574 32.64117 +24.30731 10.03574 32.64117 +32.64117 10.03574 32.64117 +43.83129 10.03574 32.64117 +58.85664 10.03574 32.64117 +-0.0175068 13.47828 32.64117 +-0.01161267 13.47828 32.64117 +-0.005718534 13.47828 32.64117 +0.0001755984 13.47828 32.64117 +0.006069731 13.47828 32.64117 +0.01197402 13.47828 32.64117 +0.01903886 13.47828 32.64117 +0.02852504 13.47828 32.64117 +0.04126244 13.47828 32.64117 +0.05836535 13.47828 32.64117 +0.08132997 13.47828 32.64117 +0.1121653 13.47828 32.64117 +0.1535689 13.47828 32.64117 +0.2091628 13.47828 32.64117 +0.2838106 13.47828 32.64117 +0.3840425 13.47828 32.64117 +0.518627 13.47828 32.64117 +0.6993381 13.47828 32.64117 +0.9419845 13.47828 32.64117 +1.267794 13.47828 32.64117 +1.705268 13.47828 32.64117 +2.292679 13.47828 32.64117 +3.081414 13.47828 32.64117 +4.140474 13.47828 32.64117 +5.562508 13.47828 32.64117 +7.471917 13.47828 32.64117 +10.03574 13.47828 32.64117 +13.47828 13.47828 32.64117 +18.10068 13.47828 32.64117 +24.30731 13.47828 32.64117 +32.64117 13.47828 32.64117 +43.83129 13.47828 32.64117 +58.85664 13.47828 32.64117 +-0.0175068 18.10068 32.64117 +-0.01161267 18.10068 32.64117 +-0.005718534 18.10068 32.64117 +0.0001755984 18.10068 32.64117 +0.006069731 18.10068 32.64117 +0.01197402 18.10068 32.64117 +0.01903886 18.10068 32.64117 +0.02852504 18.10068 32.64117 +0.04126244 18.10068 32.64117 +0.05836535 18.10068 32.64117 +0.08132997 18.10068 32.64117 +0.1121653 18.10068 32.64117 +0.1535689 18.10068 32.64117 +0.2091628 18.10068 32.64117 +0.2838106 18.10068 32.64117 +0.3840425 18.10068 32.64117 +0.518627 18.10068 32.64117 +0.6993381 18.10068 32.64117 +0.9419845 18.10068 32.64117 +1.267794 18.10068 32.64117 +1.705268 18.10068 32.64117 +2.292679 18.10068 32.64117 +3.081414 18.10068 32.64117 +4.140474 18.10068 32.64117 +5.562508 18.10068 32.64117 +7.471917 18.10068 32.64117 +10.03574 18.10068 32.64117 +13.47828 18.10068 32.64117 +18.10068 18.10068 32.64117 +24.30731 18.10068 32.64117 +32.64117 18.10068 32.64117 +43.83129 18.10068 32.64117 +58.85664 18.10068 32.64117 +-0.0175068 24.30731 32.64117 +-0.01161267 24.30731 32.64117 +-0.005718534 24.30731 32.64117 +0.0001755984 24.30731 32.64117 +0.006069731 24.30731 32.64117 +0.01197402 24.30731 32.64117 +0.01903886 24.30731 32.64117 +0.02852504 24.30731 32.64117 +0.04126244 24.30731 32.64117 +0.05836535 24.30731 32.64117 +0.08132997 24.30731 32.64117 +0.1121653 24.30731 32.64117 +0.1535689 24.30731 32.64117 +0.2091628 24.30731 32.64117 +0.2838106 24.30731 32.64117 +0.3840425 24.30731 32.64117 +0.518627 24.30731 32.64117 +0.6993381 24.30731 32.64117 +0.9419845 24.30731 32.64117 +1.267794 24.30731 32.64117 +1.705268 24.30731 32.64117 +2.292679 24.30731 32.64117 +3.081414 24.30731 32.64117 +4.140474 24.30731 32.64117 +5.562508 24.30731 32.64117 +7.471917 24.30731 32.64117 +10.03574 24.30731 32.64117 +13.47828 24.30731 32.64117 +18.10068 24.30731 32.64117 +24.30731 24.30731 32.64117 +32.64117 24.30731 32.64117 +43.83129 24.30731 32.64117 +58.85664 24.30731 32.64117 +-0.0175068 32.64117 32.64117 +-0.01161267 32.64117 32.64117 +-0.005718534 32.64117 32.64117 +0.0001755984 32.64117 32.64117 +0.006069731 32.64117 32.64117 +0.01197402 32.64117 32.64117 +0.01903886 32.64117 32.64117 +0.02852504 32.64117 32.64117 +0.04126244 32.64117 32.64117 +0.05836535 32.64117 32.64117 +0.08132997 32.64117 32.64117 +0.1121653 32.64117 32.64117 +0.1535689 32.64117 32.64117 +0.2091628 32.64117 32.64117 +0.2838106 32.64117 32.64117 +0.3840425 32.64117 32.64117 +0.518627 32.64117 32.64117 +0.6993381 32.64117 32.64117 +0.9419845 32.64117 32.64117 +1.267794 32.64117 32.64117 +1.705268 32.64117 32.64117 +2.292679 32.64117 32.64117 +3.081414 32.64117 32.64117 +4.140474 32.64117 32.64117 +5.562508 32.64117 32.64117 +7.471917 32.64117 32.64117 +10.03574 32.64117 32.64117 +13.47828 32.64117 32.64117 +18.10068 32.64117 32.64117 +24.30731 32.64117 32.64117 +32.64117 32.64117 32.64117 +43.83129 32.64117 32.64117 +58.85664 32.64117 32.64117 +-0.0175068 43.83129 32.64117 +-0.01161267 43.83129 32.64117 +-0.005718534 43.83129 32.64117 +0.0001755984 43.83129 32.64117 +0.006069731 43.83129 32.64117 +0.01197402 43.83129 32.64117 +0.01903886 43.83129 32.64117 +0.02852504 43.83129 32.64117 +0.04126244 43.83129 32.64117 +0.05836535 43.83129 32.64117 +0.08132997 43.83129 32.64117 +0.1121653 43.83129 32.64117 +0.1535689 43.83129 32.64117 +0.2091628 43.83129 32.64117 +0.2838106 43.83129 32.64117 +0.3840425 43.83129 32.64117 +0.518627 43.83129 32.64117 +0.6993381 43.83129 32.64117 +0.9419845 43.83129 32.64117 +1.267794 43.83129 32.64117 +1.705268 43.83129 32.64117 +2.292679 43.83129 32.64117 +3.081414 43.83129 32.64117 +4.140474 43.83129 32.64117 +5.562508 43.83129 32.64117 +7.471917 43.83129 32.64117 +10.03574 43.83129 32.64117 +13.47828 43.83129 32.64117 +18.10068 43.83129 32.64117 +24.30731 43.83129 32.64117 +32.64117 43.83129 32.64117 +43.83129 43.83129 32.64117 +58.85664 43.83129 32.64117 +-0.0175068 58.85664 32.64117 +-0.01161267 58.85664 32.64117 +-0.005718534 58.85664 32.64117 +0.0001755984 58.85664 32.64117 +0.006069731 58.85664 32.64117 +0.01197402 58.85664 32.64117 +0.01903886 58.85664 32.64117 +0.02852504 58.85664 32.64117 +0.04126244 58.85664 32.64117 +0.05836535 58.85664 32.64117 +0.08132997 58.85664 32.64117 +0.1121653 58.85664 32.64117 +0.1535689 58.85664 32.64117 +0.2091628 58.85664 32.64117 +0.2838106 58.85664 32.64117 +0.3840425 58.85664 32.64117 +0.518627 58.85664 32.64117 +0.6993381 58.85664 32.64117 +0.9419845 58.85664 32.64117 +1.267794 58.85664 32.64117 +1.705268 58.85664 32.64117 +2.292679 58.85664 32.64117 +3.081414 58.85664 32.64117 +4.140474 58.85664 32.64117 +5.562508 58.85664 32.64117 +7.471917 58.85664 32.64117 +10.03574 58.85664 32.64117 +13.47828 58.85664 32.64117 +18.10068 58.85664 32.64117 +24.30731 58.85664 32.64117 +32.64117 58.85664 32.64117 +43.83129 58.85664 32.64117 +58.85664 58.85664 32.64117 +-0.0175068 -0.0175068 43.83129 +-0.01161267 -0.0175068 43.83129 +-0.005718534 -0.0175068 43.83129 +0.0001755984 -0.0175068 43.83129 +0.006069731 -0.0175068 43.83129 +0.01197402 -0.0175068 43.83129 +0.01903886 -0.0175068 43.83129 +0.02852504 -0.0175068 43.83129 +0.04126244 -0.0175068 43.83129 +0.05836535 -0.0175068 43.83129 +0.08132997 -0.0175068 43.83129 +0.1121653 -0.0175068 43.83129 +0.1535689 -0.0175068 43.83129 +0.2091628 -0.0175068 43.83129 +0.2838106 -0.0175068 43.83129 +0.3840425 -0.0175068 43.83129 +0.518627 -0.0175068 43.83129 +0.6993381 -0.0175068 43.83129 +0.9419845 -0.0175068 43.83129 +1.267794 -0.0175068 43.83129 +1.705268 -0.0175068 43.83129 +2.292679 -0.0175068 43.83129 +3.081414 -0.0175068 43.83129 +4.140474 -0.0175068 43.83129 +5.562508 -0.0175068 43.83129 +7.471917 -0.0175068 43.83129 +10.03574 -0.0175068 43.83129 +13.47828 -0.0175068 43.83129 +18.10068 -0.0175068 43.83129 +24.30731 -0.0175068 43.83129 +32.64117 -0.0175068 43.83129 +43.83129 -0.0175068 43.83129 +58.85664 -0.0175068 43.83129 +-0.0175068 -0.01161267 43.83129 +-0.01161267 -0.01161267 43.83129 +-0.005718534 -0.01161267 43.83129 +0.0001755984 -0.01161267 43.83129 +0.006069731 -0.01161267 43.83129 +0.01197402 -0.01161267 43.83129 +0.01903886 -0.01161267 43.83129 +0.02852504 -0.01161267 43.83129 +0.04126244 -0.01161267 43.83129 +0.05836535 -0.01161267 43.83129 +0.08132997 -0.01161267 43.83129 +0.1121653 -0.01161267 43.83129 +0.1535689 -0.01161267 43.83129 +0.2091628 -0.01161267 43.83129 +0.2838106 -0.01161267 43.83129 +0.3840425 -0.01161267 43.83129 +0.518627 -0.01161267 43.83129 +0.6993381 -0.01161267 43.83129 +0.9419845 -0.01161267 43.83129 +1.267794 -0.01161267 43.83129 +1.705268 -0.01161267 43.83129 +2.292679 -0.01161267 43.83129 +3.081414 -0.01161267 43.83129 +4.140474 -0.01161267 43.83129 +5.562508 -0.01161267 43.83129 +7.471917 -0.01161267 43.83129 +10.03574 -0.01161267 43.83129 +13.47828 -0.01161267 43.83129 +18.10068 -0.01161267 43.83129 +24.30731 -0.01161267 43.83129 +32.64117 -0.01161267 43.83129 +43.83129 -0.01161267 43.83129 +58.85664 -0.01161267 43.83129 +-0.0175068 -0.005718534 43.83129 +-0.01161267 -0.005718534 43.83129 +-0.005718534 -0.005718534 43.83129 +0.0001755984 -0.005718534 43.83129 +0.006069731 -0.005718534 43.83129 +0.01197402 -0.005718534 43.83129 +0.01903886 -0.005718534 43.83129 +0.02852504 -0.005718534 43.83129 +0.04126244 -0.005718534 43.83129 +0.05836535 -0.005718534 43.83129 +0.08132997 -0.005718534 43.83129 +0.1121653 -0.005718534 43.83129 +0.1535689 -0.005718534 43.83129 +0.2091628 -0.005718534 43.83129 +0.2838106 -0.005718534 43.83129 +0.3840425 -0.005718534 43.83129 +0.518627 -0.005718534 43.83129 +0.6993381 -0.005718534 43.83129 +0.9419845 -0.005718534 43.83129 +1.267794 -0.005718534 43.83129 +1.705268 -0.005718534 43.83129 +2.292679 -0.005718534 43.83129 +3.081414 -0.005718534 43.83129 +4.140474 -0.005718534 43.83129 +5.562508 -0.005718534 43.83129 +7.471917 -0.005718534 43.83129 +10.03574 -0.005718534 43.83129 +13.47828 -0.005718534 43.83129 +18.10068 -0.005718534 43.83129 +24.30731 -0.005718534 43.83129 +32.64117 -0.005718534 43.83129 +43.83129 -0.005718534 43.83129 +58.85664 -0.005718534 43.83129 +-0.0175068 0.0001755984 43.83129 +-0.01161267 0.0001755984 43.83129 +-0.005718534 0.0001755984 43.83129 +0.0001755984 0.0001755984 43.83129 +0.006069731 0.0001755984 43.83129 +0.01197402 0.0001755984 43.83129 +0.01903886 0.0001755984 43.83129 +0.02852504 0.0001755984 43.83129 +0.04126244 0.0001755984 43.83129 +0.05836535 0.0001755984 43.83129 +0.08132997 0.0001755984 43.83129 +0.1121653 0.0001755984 43.83129 +0.1535689 0.0001755984 43.83129 +0.2091628 0.0001755984 43.83129 +0.2838106 0.0001755984 43.83129 +0.3840425 0.0001755984 43.83129 +0.518627 0.0001755984 43.83129 +0.6993381 0.0001755984 43.83129 +0.9419845 0.0001755984 43.83129 +1.267794 0.0001755984 43.83129 +1.705268 0.0001755984 43.83129 +2.292679 0.0001755984 43.83129 +3.081414 0.0001755984 43.83129 +4.140474 0.0001755984 43.83129 +5.562508 0.0001755984 43.83129 +7.471917 0.0001755984 43.83129 +10.03574 0.0001755984 43.83129 +13.47828 0.0001755984 43.83129 +18.10068 0.0001755984 43.83129 +24.30731 0.0001755984 43.83129 +32.64117 0.0001755984 43.83129 +43.83129 0.0001755984 43.83129 +58.85664 0.0001755984 43.83129 +-0.0175068 0.006069731 43.83129 +-0.01161267 0.006069731 43.83129 +-0.005718534 0.006069731 43.83129 +0.0001755984 0.006069731 43.83129 +0.006069731 0.006069731 43.83129 +0.01197402 0.006069731 43.83129 +0.01903886 0.006069731 43.83129 +0.02852504 0.006069731 43.83129 +0.04126244 0.006069731 43.83129 +0.05836535 0.006069731 43.83129 +0.08132997 0.006069731 43.83129 +0.1121653 0.006069731 43.83129 +0.1535689 0.006069731 43.83129 +0.2091628 0.006069731 43.83129 +0.2838106 0.006069731 43.83129 +0.3840425 0.006069731 43.83129 +0.518627 0.006069731 43.83129 +0.6993381 0.006069731 43.83129 +0.9419845 0.006069731 43.83129 +1.267794 0.006069731 43.83129 +1.705268 0.006069731 43.83129 +2.292679 0.006069731 43.83129 +3.081414 0.006069731 43.83129 +4.140474 0.006069731 43.83129 +5.562508 0.006069731 43.83129 +7.471917 0.006069731 43.83129 +10.03574 0.006069731 43.83129 +13.47828 0.006069731 43.83129 +18.10068 0.006069731 43.83129 +24.30731 0.006069731 43.83129 +32.64117 0.006069731 43.83129 +43.83129 0.006069731 43.83129 +58.85664 0.006069731 43.83129 +-0.0175068 0.01197402 43.83129 +-0.01161267 0.01197402 43.83129 +-0.005718534 0.01197402 43.83129 +0.0001755984 0.01197402 43.83129 +0.006069731 0.01197402 43.83129 +0.01197402 0.01197402 43.83129 +0.01903886 0.01197402 43.83129 +0.02852504 0.01197402 43.83129 +0.04126244 0.01197402 43.83129 +0.05836535 0.01197402 43.83129 +0.08132997 0.01197402 43.83129 +0.1121653 0.01197402 43.83129 +0.1535689 0.01197402 43.83129 +0.2091628 0.01197402 43.83129 +0.2838106 0.01197402 43.83129 +0.3840425 0.01197402 43.83129 +0.518627 0.01197402 43.83129 +0.6993381 0.01197402 43.83129 +0.9419845 0.01197402 43.83129 +1.267794 0.01197402 43.83129 +1.705268 0.01197402 43.83129 +2.292679 0.01197402 43.83129 +3.081414 0.01197402 43.83129 +4.140474 0.01197402 43.83129 +5.562508 0.01197402 43.83129 +7.471917 0.01197402 43.83129 +10.03574 0.01197402 43.83129 +13.47828 0.01197402 43.83129 +18.10068 0.01197402 43.83129 +24.30731 0.01197402 43.83129 +32.64117 0.01197402 43.83129 +43.83129 0.01197402 43.83129 +58.85664 0.01197402 43.83129 +-0.0175068 0.01903886 43.83129 +-0.01161267 0.01903886 43.83129 +-0.005718534 0.01903886 43.83129 +0.0001755984 0.01903886 43.83129 +0.006069731 0.01903886 43.83129 +0.01197402 0.01903886 43.83129 +0.01903886 0.01903886 43.83129 +0.02852504 0.01903886 43.83129 +0.04126244 0.01903886 43.83129 +0.05836535 0.01903886 43.83129 +0.08132997 0.01903886 43.83129 +0.1121653 0.01903886 43.83129 +0.1535689 0.01903886 43.83129 +0.2091628 0.01903886 43.83129 +0.2838106 0.01903886 43.83129 +0.3840425 0.01903886 43.83129 +0.518627 0.01903886 43.83129 +0.6993381 0.01903886 43.83129 +0.9419845 0.01903886 43.83129 +1.267794 0.01903886 43.83129 +1.705268 0.01903886 43.83129 +2.292679 0.01903886 43.83129 +3.081414 0.01903886 43.83129 +4.140474 0.01903886 43.83129 +5.562508 0.01903886 43.83129 +7.471917 0.01903886 43.83129 +10.03574 0.01903886 43.83129 +13.47828 0.01903886 43.83129 +18.10068 0.01903886 43.83129 +24.30731 0.01903886 43.83129 +32.64117 0.01903886 43.83129 +43.83129 0.01903886 43.83129 +58.85664 0.01903886 43.83129 +-0.0175068 0.02852504 43.83129 +-0.01161267 0.02852504 43.83129 +-0.005718534 0.02852504 43.83129 +0.0001755984 0.02852504 43.83129 +0.006069731 0.02852504 43.83129 +0.01197402 0.02852504 43.83129 +0.01903886 0.02852504 43.83129 +0.02852504 0.02852504 43.83129 +0.04126244 0.02852504 43.83129 +0.05836535 0.02852504 43.83129 +0.08132997 0.02852504 43.83129 +0.1121653 0.02852504 43.83129 +0.1535689 0.02852504 43.83129 +0.2091628 0.02852504 43.83129 +0.2838106 0.02852504 43.83129 +0.3840425 0.02852504 43.83129 +0.518627 0.02852504 43.83129 +0.6993381 0.02852504 43.83129 +0.9419845 0.02852504 43.83129 +1.267794 0.02852504 43.83129 +1.705268 0.02852504 43.83129 +2.292679 0.02852504 43.83129 +3.081414 0.02852504 43.83129 +4.140474 0.02852504 43.83129 +5.562508 0.02852504 43.83129 +7.471917 0.02852504 43.83129 +10.03574 0.02852504 43.83129 +13.47828 0.02852504 43.83129 +18.10068 0.02852504 43.83129 +24.30731 0.02852504 43.83129 +32.64117 0.02852504 43.83129 +43.83129 0.02852504 43.83129 +58.85664 0.02852504 43.83129 +-0.0175068 0.04126244 43.83129 +-0.01161267 0.04126244 43.83129 +-0.005718534 0.04126244 43.83129 +0.0001755984 0.04126244 43.83129 +0.006069731 0.04126244 43.83129 +0.01197402 0.04126244 43.83129 +0.01903886 0.04126244 43.83129 +0.02852504 0.04126244 43.83129 +0.04126244 0.04126244 43.83129 +0.05836535 0.04126244 43.83129 +0.08132997 0.04126244 43.83129 +0.1121653 0.04126244 43.83129 +0.1535689 0.04126244 43.83129 +0.2091628 0.04126244 43.83129 +0.2838106 0.04126244 43.83129 +0.3840425 0.04126244 43.83129 +0.518627 0.04126244 43.83129 +0.6993381 0.04126244 43.83129 +0.9419845 0.04126244 43.83129 +1.267794 0.04126244 43.83129 +1.705268 0.04126244 43.83129 +2.292679 0.04126244 43.83129 +3.081414 0.04126244 43.83129 +4.140474 0.04126244 43.83129 +5.562508 0.04126244 43.83129 +7.471917 0.04126244 43.83129 +10.03574 0.04126244 43.83129 +13.47828 0.04126244 43.83129 +18.10068 0.04126244 43.83129 +24.30731 0.04126244 43.83129 +32.64117 0.04126244 43.83129 +43.83129 0.04126244 43.83129 +58.85664 0.04126244 43.83129 +-0.0175068 0.05836535 43.83129 +-0.01161267 0.05836535 43.83129 +-0.005718534 0.05836535 43.83129 +0.0001755984 0.05836535 43.83129 +0.006069731 0.05836535 43.83129 +0.01197402 0.05836535 43.83129 +0.01903886 0.05836535 43.83129 +0.02852504 0.05836535 43.83129 +0.04126244 0.05836535 43.83129 +0.05836535 0.05836535 43.83129 +0.08132997 0.05836535 43.83129 +0.1121653 0.05836535 43.83129 +0.1535689 0.05836535 43.83129 +0.2091628 0.05836535 43.83129 +0.2838106 0.05836535 43.83129 +0.3840425 0.05836535 43.83129 +0.518627 0.05836535 43.83129 +0.6993381 0.05836535 43.83129 +0.9419845 0.05836535 43.83129 +1.267794 0.05836535 43.83129 +1.705268 0.05836535 43.83129 +2.292679 0.05836535 43.83129 +3.081414 0.05836535 43.83129 +4.140474 0.05836535 43.83129 +5.562508 0.05836535 43.83129 +7.471917 0.05836535 43.83129 +10.03574 0.05836535 43.83129 +13.47828 0.05836535 43.83129 +18.10068 0.05836535 43.83129 +24.30731 0.05836535 43.83129 +32.64117 0.05836535 43.83129 +43.83129 0.05836535 43.83129 +58.85664 0.05836535 43.83129 +-0.0175068 0.08132997 43.83129 +-0.01161267 0.08132997 43.83129 +-0.005718534 0.08132997 43.83129 +0.0001755984 0.08132997 43.83129 +0.006069731 0.08132997 43.83129 +0.01197402 0.08132997 43.83129 +0.01903886 0.08132997 43.83129 +0.02852504 0.08132997 43.83129 +0.04126244 0.08132997 43.83129 +0.05836535 0.08132997 43.83129 +0.08132997 0.08132997 43.83129 +0.1121653 0.08132997 43.83129 +0.1535689 0.08132997 43.83129 +0.2091628 0.08132997 43.83129 +0.2838106 0.08132997 43.83129 +0.3840425 0.08132997 43.83129 +0.518627 0.08132997 43.83129 +0.6993381 0.08132997 43.83129 +0.9419845 0.08132997 43.83129 +1.267794 0.08132997 43.83129 +1.705268 0.08132997 43.83129 +2.292679 0.08132997 43.83129 +3.081414 0.08132997 43.83129 +4.140474 0.08132997 43.83129 +5.562508 0.08132997 43.83129 +7.471917 0.08132997 43.83129 +10.03574 0.08132997 43.83129 +13.47828 0.08132997 43.83129 +18.10068 0.08132997 43.83129 +24.30731 0.08132997 43.83129 +32.64117 0.08132997 43.83129 +43.83129 0.08132997 43.83129 +58.85664 0.08132997 43.83129 +-0.0175068 0.1121653 43.83129 +-0.01161267 0.1121653 43.83129 +-0.005718534 0.1121653 43.83129 +0.0001755984 0.1121653 43.83129 +0.006069731 0.1121653 43.83129 +0.01197402 0.1121653 43.83129 +0.01903886 0.1121653 43.83129 +0.02852504 0.1121653 43.83129 +0.04126244 0.1121653 43.83129 +0.05836535 0.1121653 43.83129 +0.08132997 0.1121653 43.83129 +0.1121653 0.1121653 43.83129 +0.1535689 0.1121653 43.83129 +0.2091628 0.1121653 43.83129 +0.2838106 0.1121653 43.83129 +0.3840425 0.1121653 43.83129 +0.518627 0.1121653 43.83129 +0.6993381 0.1121653 43.83129 +0.9419845 0.1121653 43.83129 +1.267794 0.1121653 43.83129 +1.705268 0.1121653 43.83129 +2.292679 0.1121653 43.83129 +3.081414 0.1121653 43.83129 +4.140474 0.1121653 43.83129 +5.562508 0.1121653 43.83129 +7.471917 0.1121653 43.83129 +10.03574 0.1121653 43.83129 +13.47828 0.1121653 43.83129 +18.10068 0.1121653 43.83129 +24.30731 0.1121653 43.83129 +32.64117 0.1121653 43.83129 +43.83129 0.1121653 43.83129 +58.85664 0.1121653 43.83129 +-0.0175068 0.1535689 43.83129 +-0.01161267 0.1535689 43.83129 +-0.005718534 0.1535689 43.83129 +0.0001755984 0.1535689 43.83129 +0.006069731 0.1535689 43.83129 +0.01197402 0.1535689 43.83129 +0.01903886 0.1535689 43.83129 +0.02852504 0.1535689 43.83129 +0.04126244 0.1535689 43.83129 +0.05836535 0.1535689 43.83129 +0.08132997 0.1535689 43.83129 +0.1121653 0.1535689 43.83129 +0.1535689 0.1535689 43.83129 +0.2091628 0.1535689 43.83129 +0.2838106 0.1535689 43.83129 +0.3840425 0.1535689 43.83129 +0.518627 0.1535689 43.83129 +0.6993381 0.1535689 43.83129 +0.9419845 0.1535689 43.83129 +1.267794 0.1535689 43.83129 +1.705268 0.1535689 43.83129 +2.292679 0.1535689 43.83129 +3.081414 0.1535689 43.83129 +4.140474 0.1535689 43.83129 +5.562508 0.1535689 43.83129 +7.471917 0.1535689 43.83129 +10.03574 0.1535689 43.83129 +13.47828 0.1535689 43.83129 +18.10068 0.1535689 43.83129 +24.30731 0.1535689 43.83129 +32.64117 0.1535689 43.83129 +43.83129 0.1535689 43.83129 +58.85664 0.1535689 43.83129 +-0.0175068 0.2091628 43.83129 +-0.01161267 0.2091628 43.83129 +-0.005718534 0.2091628 43.83129 +0.0001755984 0.2091628 43.83129 +0.006069731 0.2091628 43.83129 +0.01197402 0.2091628 43.83129 +0.01903886 0.2091628 43.83129 +0.02852504 0.2091628 43.83129 +0.04126244 0.2091628 43.83129 +0.05836535 0.2091628 43.83129 +0.08132997 0.2091628 43.83129 +0.1121653 0.2091628 43.83129 +0.1535689 0.2091628 43.83129 +0.2091628 0.2091628 43.83129 +0.2838106 0.2091628 43.83129 +0.3840425 0.2091628 43.83129 +0.518627 0.2091628 43.83129 +0.6993381 0.2091628 43.83129 +0.9419845 0.2091628 43.83129 +1.267794 0.2091628 43.83129 +1.705268 0.2091628 43.83129 +2.292679 0.2091628 43.83129 +3.081414 0.2091628 43.83129 +4.140474 0.2091628 43.83129 +5.562508 0.2091628 43.83129 +7.471917 0.2091628 43.83129 +10.03574 0.2091628 43.83129 +13.47828 0.2091628 43.83129 +18.10068 0.2091628 43.83129 +24.30731 0.2091628 43.83129 +32.64117 0.2091628 43.83129 +43.83129 0.2091628 43.83129 +58.85664 0.2091628 43.83129 +-0.0175068 0.2838106 43.83129 +-0.01161267 0.2838106 43.83129 +-0.005718534 0.2838106 43.83129 +0.0001755984 0.2838106 43.83129 +0.006069731 0.2838106 43.83129 +0.01197402 0.2838106 43.83129 +0.01903886 0.2838106 43.83129 +0.02852504 0.2838106 43.83129 +0.04126244 0.2838106 43.83129 +0.05836535 0.2838106 43.83129 +0.08132997 0.2838106 43.83129 +0.1121653 0.2838106 43.83129 +0.1535689 0.2838106 43.83129 +0.2091628 0.2838106 43.83129 +0.2838106 0.2838106 43.83129 +0.3840425 0.2838106 43.83129 +0.518627 0.2838106 43.83129 +0.6993381 0.2838106 43.83129 +0.9419845 0.2838106 43.83129 +1.267794 0.2838106 43.83129 +1.705268 0.2838106 43.83129 +2.292679 0.2838106 43.83129 +3.081414 0.2838106 43.83129 +4.140474 0.2838106 43.83129 +5.562508 0.2838106 43.83129 +7.471917 0.2838106 43.83129 +10.03574 0.2838106 43.83129 +13.47828 0.2838106 43.83129 +18.10068 0.2838106 43.83129 +24.30731 0.2838106 43.83129 +32.64117 0.2838106 43.83129 +43.83129 0.2838106 43.83129 +58.85664 0.2838106 43.83129 +-0.0175068 0.3840425 43.83129 +-0.01161267 0.3840425 43.83129 +-0.005718534 0.3840425 43.83129 +0.0001755984 0.3840425 43.83129 +0.006069731 0.3840425 43.83129 +0.01197402 0.3840425 43.83129 +0.01903886 0.3840425 43.83129 +0.02852504 0.3840425 43.83129 +0.04126244 0.3840425 43.83129 +0.05836535 0.3840425 43.83129 +0.08132997 0.3840425 43.83129 +0.1121653 0.3840425 43.83129 +0.1535689 0.3840425 43.83129 +0.2091628 0.3840425 43.83129 +0.2838106 0.3840425 43.83129 +0.3840425 0.3840425 43.83129 +0.518627 0.3840425 43.83129 +0.6993381 0.3840425 43.83129 +0.9419845 0.3840425 43.83129 +1.267794 0.3840425 43.83129 +1.705268 0.3840425 43.83129 +2.292679 0.3840425 43.83129 +3.081414 0.3840425 43.83129 +4.140474 0.3840425 43.83129 +5.562508 0.3840425 43.83129 +7.471917 0.3840425 43.83129 +10.03574 0.3840425 43.83129 +13.47828 0.3840425 43.83129 +18.10068 0.3840425 43.83129 +24.30731 0.3840425 43.83129 +32.64117 0.3840425 43.83129 +43.83129 0.3840425 43.83129 +58.85664 0.3840425 43.83129 +-0.0175068 0.518627 43.83129 +-0.01161267 0.518627 43.83129 +-0.005718534 0.518627 43.83129 +0.0001755984 0.518627 43.83129 +0.006069731 0.518627 43.83129 +0.01197402 0.518627 43.83129 +0.01903886 0.518627 43.83129 +0.02852504 0.518627 43.83129 +0.04126244 0.518627 43.83129 +0.05836535 0.518627 43.83129 +0.08132997 0.518627 43.83129 +0.1121653 0.518627 43.83129 +0.1535689 0.518627 43.83129 +0.2091628 0.518627 43.83129 +0.2838106 0.518627 43.83129 +0.3840425 0.518627 43.83129 +0.518627 0.518627 43.83129 +0.6993381 0.518627 43.83129 +0.9419845 0.518627 43.83129 +1.267794 0.518627 43.83129 +1.705268 0.518627 43.83129 +2.292679 0.518627 43.83129 +3.081414 0.518627 43.83129 +4.140474 0.518627 43.83129 +5.562508 0.518627 43.83129 +7.471917 0.518627 43.83129 +10.03574 0.518627 43.83129 +13.47828 0.518627 43.83129 +18.10068 0.518627 43.83129 +24.30731 0.518627 43.83129 +32.64117 0.518627 43.83129 +43.83129 0.518627 43.83129 +58.85664 0.518627 43.83129 +-0.0175068 0.6993381 43.83129 +-0.01161267 0.6993381 43.83129 +-0.005718534 0.6993381 43.83129 +0.0001755984 0.6993381 43.83129 +0.006069731 0.6993381 43.83129 +0.01197402 0.6993381 43.83129 +0.01903886 0.6993381 43.83129 +0.02852504 0.6993381 43.83129 +0.04126244 0.6993381 43.83129 +0.05836535 0.6993381 43.83129 +0.08132997 0.6993381 43.83129 +0.1121653 0.6993381 43.83129 +0.1535689 0.6993381 43.83129 +0.2091628 0.6993381 43.83129 +0.2838106 0.6993381 43.83129 +0.3840425 0.6993381 43.83129 +0.518627 0.6993381 43.83129 +0.6993381 0.6993381 43.83129 +0.9419845 0.6993381 43.83129 +1.267794 0.6993381 43.83129 +1.705268 0.6993381 43.83129 +2.292679 0.6993381 43.83129 +3.081414 0.6993381 43.83129 +4.140474 0.6993381 43.83129 +5.562508 0.6993381 43.83129 +7.471917 0.6993381 43.83129 +10.03574 0.6993381 43.83129 +13.47828 0.6993381 43.83129 +18.10068 0.6993381 43.83129 +24.30731 0.6993381 43.83129 +32.64117 0.6993381 43.83129 +43.83129 0.6993381 43.83129 +58.85664 0.6993381 43.83129 +-0.0175068 0.9419845 43.83129 +-0.01161267 0.9419845 43.83129 +-0.005718534 0.9419845 43.83129 +0.0001755984 0.9419845 43.83129 +0.006069731 0.9419845 43.83129 +0.01197402 0.9419845 43.83129 +0.01903886 0.9419845 43.83129 +0.02852504 0.9419845 43.83129 +0.04126244 0.9419845 43.83129 +0.05836535 0.9419845 43.83129 +0.08132997 0.9419845 43.83129 +0.1121653 0.9419845 43.83129 +0.1535689 0.9419845 43.83129 +0.2091628 0.9419845 43.83129 +0.2838106 0.9419845 43.83129 +0.3840425 0.9419845 43.83129 +0.518627 0.9419845 43.83129 +0.6993381 0.9419845 43.83129 +0.9419845 0.9419845 43.83129 +1.267794 0.9419845 43.83129 +1.705268 0.9419845 43.83129 +2.292679 0.9419845 43.83129 +3.081414 0.9419845 43.83129 +4.140474 0.9419845 43.83129 +5.562508 0.9419845 43.83129 +7.471917 0.9419845 43.83129 +10.03574 0.9419845 43.83129 +13.47828 0.9419845 43.83129 +18.10068 0.9419845 43.83129 +24.30731 0.9419845 43.83129 +32.64117 0.9419845 43.83129 +43.83129 0.9419845 43.83129 +58.85664 0.9419845 43.83129 +-0.0175068 1.267794 43.83129 +-0.01161267 1.267794 43.83129 +-0.005718534 1.267794 43.83129 +0.0001755984 1.267794 43.83129 +0.006069731 1.267794 43.83129 +0.01197402 1.267794 43.83129 +0.01903886 1.267794 43.83129 +0.02852504 1.267794 43.83129 +0.04126244 1.267794 43.83129 +0.05836535 1.267794 43.83129 +0.08132997 1.267794 43.83129 +0.1121653 1.267794 43.83129 +0.1535689 1.267794 43.83129 +0.2091628 1.267794 43.83129 +0.2838106 1.267794 43.83129 +0.3840425 1.267794 43.83129 +0.518627 1.267794 43.83129 +0.6993381 1.267794 43.83129 +0.9419845 1.267794 43.83129 +1.267794 1.267794 43.83129 +1.705268 1.267794 43.83129 +2.292679 1.267794 43.83129 +3.081414 1.267794 43.83129 +4.140474 1.267794 43.83129 +5.562508 1.267794 43.83129 +7.471917 1.267794 43.83129 +10.03574 1.267794 43.83129 +13.47828 1.267794 43.83129 +18.10068 1.267794 43.83129 +24.30731 1.267794 43.83129 +32.64117 1.267794 43.83129 +43.83129 1.267794 43.83129 +58.85664 1.267794 43.83129 +-0.0175068 1.705268 43.83129 +-0.01161267 1.705268 43.83129 +-0.005718534 1.705268 43.83129 +0.0001755984 1.705268 43.83129 +0.006069731 1.705268 43.83129 +0.01197402 1.705268 43.83129 +0.01903886 1.705268 43.83129 +0.02852504 1.705268 43.83129 +0.04126244 1.705268 43.83129 +0.05836535 1.705268 43.83129 +0.08132997 1.705268 43.83129 +0.1121653 1.705268 43.83129 +0.1535689 1.705268 43.83129 +0.2091628 1.705268 43.83129 +0.2838106 1.705268 43.83129 +0.3840425 1.705268 43.83129 +0.518627 1.705268 43.83129 +0.6993381 1.705268 43.83129 +0.9419845 1.705268 43.83129 +1.267794 1.705268 43.83129 +1.705268 1.705268 43.83129 +2.292679 1.705268 43.83129 +3.081414 1.705268 43.83129 +4.140474 1.705268 43.83129 +5.562508 1.705268 43.83129 +7.471917 1.705268 43.83129 +10.03574 1.705268 43.83129 +13.47828 1.705268 43.83129 +18.10068 1.705268 43.83129 +24.30731 1.705268 43.83129 +32.64117 1.705268 43.83129 +43.83129 1.705268 43.83129 +58.85664 1.705268 43.83129 +-0.0175068 2.292679 43.83129 +-0.01161267 2.292679 43.83129 +-0.005718534 2.292679 43.83129 +0.0001755984 2.292679 43.83129 +0.006069731 2.292679 43.83129 +0.01197402 2.292679 43.83129 +0.01903886 2.292679 43.83129 +0.02852504 2.292679 43.83129 +0.04126244 2.292679 43.83129 +0.05836535 2.292679 43.83129 +0.08132997 2.292679 43.83129 +0.1121653 2.292679 43.83129 +0.1535689 2.292679 43.83129 +0.2091628 2.292679 43.83129 +0.2838106 2.292679 43.83129 +0.3840425 2.292679 43.83129 +0.518627 2.292679 43.83129 +0.6993381 2.292679 43.83129 +0.9419845 2.292679 43.83129 +1.267794 2.292679 43.83129 +1.705268 2.292679 43.83129 +2.292679 2.292679 43.83129 +3.081414 2.292679 43.83129 +4.140474 2.292679 43.83129 +5.562508 2.292679 43.83129 +7.471917 2.292679 43.83129 +10.03574 2.292679 43.83129 +13.47828 2.292679 43.83129 +18.10068 2.292679 43.83129 +24.30731 2.292679 43.83129 +32.64117 2.292679 43.83129 +43.83129 2.292679 43.83129 +58.85664 2.292679 43.83129 +-0.0175068 3.081414 43.83129 +-0.01161267 3.081414 43.83129 +-0.005718534 3.081414 43.83129 +0.0001755984 3.081414 43.83129 +0.006069731 3.081414 43.83129 +0.01197402 3.081414 43.83129 +0.01903886 3.081414 43.83129 +0.02852504 3.081414 43.83129 +0.04126244 3.081414 43.83129 +0.05836535 3.081414 43.83129 +0.08132997 3.081414 43.83129 +0.1121653 3.081414 43.83129 +0.1535689 3.081414 43.83129 +0.2091628 3.081414 43.83129 +0.2838106 3.081414 43.83129 +0.3840425 3.081414 43.83129 +0.518627 3.081414 43.83129 +0.6993381 3.081414 43.83129 +0.9419845 3.081414 43.83129 +1.267794 3.081414 43.83129 +1.705268 3.081414 43.83129 +2.292679 3.081414 43.83129 +3.081414 3.081414 43.83129 +4.140474 3.081414 43.83129 +5.562508 3.081414 43.83129 +7.471917 3.081414 43.83129 +10.03574 3.081414 43.83129 +13.47828 3.081414 43.83129 +18.10068 3.081414 43.83129 +24.30731 3.081414 43.83129 +32.64117 3.081414 43.83129 +43.83129 3.081414 43.83129 +58.85664 3.081414 43.83129 +-0.0175068 4.140474 43.83129 +-0.01161267 4.140474 43.83129 +-0.005718534 4.140474 43.83129 +0.0001755984 4.140474 43.83129 +0.006069731 4.140474 43.83129 +0.01197402 4.140474 43.83129 +0.01903886 4.140474 43.83129 +0.02852504 4.140474 43.83129 +0.04126244 4.140474 43.83129 +0.05836535 4.140474 43.83129 +0.08132997 4.140474 43.83129 +0.1121653 4.140474 43.83129 +0.1535689 4.140474 43.83129 +0.2091628 4.140474 43.83129 +0.2838106 4.140474 43.83129 +0.3840425 4.140474 43.83129 +0.518627 4.140474 43.83129 +0.6993381 4.140474 43.83129 +0.9419845 4.140474 43.83129 +1.267794 4.140474 43.83129 +1.705268 4.140474 43.83129 +2.292679 4.140474 43.83129 +3.081414 4.140474 43.83129 +4.140474 4.140474 43.83129 +5.562508 4.140474 43.83129 +7.471917 4.140474 43.83129 +10.03574 4.140474 43.83129 +13.47828 4.140474 43.83129 +18.10068 4.140474 43.83129 +24.30731 4.140474 43.83129 +32.64117 4.140474 43.83129 +43.83129 4.140474 43.83129 +58.85664 4.140474 43.83129 +-0.0175068 5.562508 43.83129 +-0.01161267 5.562508 43.83129 +-0.005718534 5.562508 43.83129 +0.0001755984 5.562508 43.83129 +0.006069731 5.562508 43.83129 +0.01197402 5.562508 43.83129 +0.01903886 5.562508 43.83129 +0.02852504 5.562508 43.83129 +0.04126244 5.562508 43.83129 +0.05836535 5.562508 43.83129 +0.08132997 5.562508 43.83129 +0.1121653 5.562508 43.83129 +0.1535689 5.562508 43.83129 +0.2091628 5.562508 43.83129 +0.2838106 5.562508 43.83129 +0.3840425 5.562508 43.83129 +0.518627 5.562508 43.83129 +0.6993381 5.562508 43.83129 +0.9419845 5.562508 43.83129 +1.267794 5.562508 43.83129 +1.705268 5.562508 43.83129 +2.292679 5.562508 43.83129 +3.081414 5.562508 43.83129 +4.140474 5.562508 43.83129 +5.562508 5.562508 43.83129 +7.471917 5.562508 43.83129 +10.03574 5.562508 43.83129 +13.47828 5.562508 43.83129 +18.10068 5.562508 43.83129 +24.30731 5.562508 43.83129 +32.64117 5.562508 43.83129 +43.83129 5.562508 43.83129 +58.85664 5.562508 43.83129 +-0.0175068 7.471917 43.83129 +-0.01161267 7.471917 43.83129 +-0.005718534 7.471917 43.83129 +0.0001755984 7.471917 43.83129 +0.006069731 7.471917 43.83129 +0.01197402 7.471917 43.83129 +0.01903886 7.471917 43.83129 +0.02852504 7.471917 43.83129 +0.04126244 7.471917 43.83129 +0.05836535 7.471917 43.83129 +0.08132997 7.471917 43.83129 +0.1121653 7.471917 43.83129 +0.1535689 7.471917 43.83129 +0.2091628 7.471917 43.83129 +0.2838106 7.471917 43.83129 +0.3840425 7.471917 43.83129 +0.518627 7.471917 43.83129 +0.6993381 7.471917 43.83129 +0.9419845 7.471917 43.83129 +1.267794 7.471917 43.83129 +1.705268 7.471917 43.83129 +2.292679 7.471917 43.83129 +3.081414 7.471917 43.83129 +4.140474 7.471917 43.83129 +5.562508 7.471917 43.83129 +7.471917 7.471917 43.83129 +10.03574 7.471917 43.83129 +13.47828 7.471917 43.83129 +18.10068 7.471917 43.83129 +24.30731 7.471917 43.83129 +32.64117 7.471917 43.83129 +43.83129 7.471917 43.83129 +58.85664 7.471917 43.83129 +-0.0175068 10.03574 43.83129 +-0.01161267 10.03574 43.83129 +-0.005718534 10.03574 43.83129 +0.0001755984 10.03574 43.83129 +0.006069731 10.03574 43.83129 +0.01197402 10.03574 43.83129 +0.01903886 10.03574 43.83129 +0.02852504 10.03574 43.83129 +0.04126244 10.03574 43.83129 +0.05836535 10.03574 43.83129 +0.08132997 10.03574 43.83129 +0.1121653 10.03574 43.83129 +0.1535689 10.03574 43.83129 +0.2091628 10.03574 43.83129 +0.2838106 10.03574 43.83129 +0.3840425 10.03574 43.83129 +0.518627 10.03574 43.83129 +0.6993381 10.03574 43.83129 +0.9419845 10.03574 43.83129 +1.267794 10.03574 43.83129 +1.705268 10.03574 43.83129 +2.292679 10.03574 43.83129 +3.081414 10.03574 43.83129 +4.140474 10.03574 43.83129 +5.562508 10.03574 43.83129 +7.471917 10.03574 43.83129 +10.03574 10.03574 43.83129 +13.47828 10.03574 43.83129 +18.10068 10.03574 43.83129 +24.30731 10.03574 43.83129 +32.64117 10.03574 43.83129 +43.83129 10.03574 43.83129 +58.85664 10.03574 43.83129 +-0.0175068 13.47828 43.83129 +-0.01161267 13.47828 43.83129 +-0.005718534 13.47828 43.83129 +0.0001755984 13.47828 43.83129 +0.006069731 13.47828 43.83129 +0.01197402 13.47828 43.83129 +0.01903886 13.47828 43.83129 +0.02852504 13.47828 43.83129 +0.04126244 13.47828 43.83129 +0.05836535 13.47828 43.83129 +0.08132997 13.47828 43.83129 +0.1121653 13.47828 43.83129 +0.1535689 13.47828 43.83129 +0.2091628 13.47828 43.83129 +0.2838106 13.47828 43.83129 +0.3840425 13.47828 43.83129 +0.518627 13.47828 43.83129 +0.6993381 13.47828 43.83129 +0.9419845 13.47828 43.83129 +1.267794 13.47828 43.83129 +1.705268 13.47828 43.83129 +2.292679 13.47828 43.83129 +3.081414 13.47828 43.83129 +4.140474 13.47828 43.83129 +5.562508 13.47828 43.83129 +7.471917 13.47828 43.83129 +10.03574 13.47828 43.83129 +13.47828 13.47828 43.83129 +18.10068 13.47828 43.83129 +24.30731 13.47828 43.83129 +32.64117 13.47828 43.83129 +43.83129 13.47828 43.83129 +58.85664 13.47828 43.83129 +-0.0175068 18.10068 43.83129 +-0.01161267 18.10068 43.83129 +-0.005718534 18.10068 43.83129 +0.0001755984 18.10068 43.83129 +0.006069731 18.10068 43.83129 +0.01197402 18.10068 43.83129 +0.01903886 18.10068 43.83129 +0.02852504 18.10068 43.83129 +0.04126244 18.10068 43.83129 +0.05836535 18.10068 43.83129 +0.08132997 18.10068 43.83129 +0.1121653 18.10068 43.83129 +0.1535689 18.10068 43.83129 +0.2091628 18.10068 43.83129 +0.2838106 18.10068 43.83129 +0.3840425 18.10068 43.83129 +0.518627 18.10068 43.83129 +0.6993381 18.10068 43.83129 +0.9419845 18.10068 43.83129 +1.267794 18.10068 43.83129 +1.705268 18.10068 43.83129 +2.292679 18.10068 43.83129 +3.081414 18.10068 43.83129 +4.140474 18.10068 43.83129 +5.562508 18.10068 43.83129 +7.471917 18.10068 43.83129 +10.03574 18.10068 43.83129 +13.47828 18.10068 43.83129 +18.10068 18.10068 43.83129 +24.30731 18.10068 43.83129 +32.64117 18.10068 43.83129 +43.83129 18.10068 43.83129 +58.85664 18.10068 43.83129 +-0.0175068 24.30731 43.83129 +-0.01161267 24.30731 43.83129 +-0.005718534 24.30731 43.83129 +0.0001755984 24.30731 43.83129 +0.006069731 24.30731 43.83129 +0.01197402 24.30731 43.83129 +0.01903886 24.30731 43.83129 +0.02852504 24.30731 43.83129 +0.04126244 24.30731 43.83129 +0.05836535 24.30731 43.83129 +0.08132997 24.30731 43.83129 +0.1121653 24.30731 43.83129 +0.1535689 24.30731 43.83129 +0.2091628 24.30731 43.83129 +0.2838106 24.30731 43.83129 +0.3840425 24.30731 43.83129 +0.518627 24.30731 43.83129 +0.6993381 24.30731 43.83129 +0.9419845 24.30731 43.83129 +1.267794 24.30731 43.83129 +1.705268 24.30731 43.83129 +2.292679 24.30731 43.83129 +3.081414 24.30731 43.83129 +4.140474 24.30731 43.83129 +5.562508 24.30731 43.83129 +7.471917 24.30731 43.83129 +10.03574 24.30731 43.83129 +13.47828 24.30731 43.83129 +18.10068 24.30731 43.83129 +24.30731 24.30731 43.83129 +32.64117 24.30731 43.83129 +43.83129 24.30731 43.83129 +58.85664 24.30731 43.83129 +-0.0175068 32.64117 43.83129 +-0.01161267 32.64117 43.83129 +-0.005718534 32.64117 43.83129 +0.0001755984 32.64117 43.83129 +0.006069731 32.64117 43.83129 +0.01197402 32.64117 43.83129 +0.01903886 32.64117 43.83129 +0.02852504 32.64117 43.83129 +0.04126244 32.64117 43.83129 +0.05836535 32.64117 43.83129 +0.08132997 32.64117 43.83129 +0.1121653 32.64117 43.83129 +0.1535689 32.64117 43.83129 +0.2091628 32.64117 43.83129 +0.2838106 32.64117 43.83129 +0.3840425 32.64117 43.83129 +0.518627 32.64117 43.83129 +0.6993381 32.64117 43.83129 +0.9419845 32.64117 43.83129 +1.267794 32.64117 43.83129 +1.705268 32.64117 43.83129 +2.292679 32.64117 43.83129 +3.081414 32.64117 43.83129 +4.140474 32.64117 43.83129 +5.562508 32.64117 43.83129 +7.471917 32.64117 43.83129 +10.03574 32.64117 43.83129 +13.47828 32.64117 43.83129 +18.10068 32.64117 43.83129 +24.30731 32.64117 43.83129 +32.64117 32.64117 43.83129 +43.83129 32.64117 43.83129 +58.85664 32.64117 43.83129 +-0.0175068 43.83129 43.83129 +-0.01161267 43.83129 43.83129 +-0.005718534 43.83129 43.83129 +0.0001755984 43.83129 43.83129 +0.006069731 43.83129 43.83129 +0.01197402 43.83129 43.83129 +0.01903886 43.83129 43.83129 +0.02852504 43.83129 43.83129 +0.04126244 43.83129 43.83129 +0.05836535 43.83129 43.83129 +0.08132997 43.83129 43.83129 +0.1121653 43.83129 43.83129 +0.1535689 43.83129 43.83129 +0.2091628 43.83129 43.83129 +0.2838106 43.83129 43.83129 +0.3840425 43.83129 43.83129 +0.518627 43.83129 43.83129 +0.6993381 43.83129 43.83129 +0.9419845 43.83129 43.83129 +1.267794 43.83129 43.83129 +1.705268 43.83129 43.83129 +2.292679 43.83129 43.83129 +3.081414 43.83129 43.83129 +4.140474 43.83129 43.83129 +5.562508 43.83129 43.83129 +7.471917 43.83129 43.83129 +10.03574 43.83129 43.83129 +13.47828 43.83129 43.83129 +18.10068 43.83129 43.83129 +24.30731 43.83129 43.83129 +32.64117 43.83129 43.83129 +43.83129 43.83129 43.83129 +58.85664 43.83129 43.83129 +-0.0175068 58.85664 43.83129 +-0.01161267 58.85664 43.83129 +-0.005718534 58.85664 43.83129 +0.0001755984 58.85664 43.83129 +0.006069731 58.85664 43.83129 +0.01197402 58.85664 43.83129 +0.01903886 58.85664 43.83129 +0.02852504 58.85664 43.83129 +0.04126244 58.85664 43.83129 +0.05836535 58.85664 43.83129 +0.08132997 58.85664 43.83129 +0.1121653 58.85664 43.83129 +0.1535689 58.85664 43.83129 +0.2091628 58.85664 43.83129 +0.2838106 58.85664 43.83129 +0.3840425 58.85664 43.83129 +0.518627 58.85664 43.83129 +0.6993381 58.85664 43.83129 +0.9419845 58.85664 43.83129 +1.267794 58.85664 43.83129 +1.705268 58.85664 43.83129 +2.292679 58.85664 43.83129 +3.081414 58.85664 43.83129 +4.140474 58.85664 43.83129 +5.562508 58.85664 43.83129 +7.471917 58.85664 43.83129 +10.03574 58.85664 43.83129 +13.47828 58.85664 43.83129 +18.10068 58.85664 43.83129 +24.30731 58.85664 43.83129 +32.64117 58.85664 43.83129 +43.83129 58.85664 43.83129 +58.85664 58.85664 43.83129 +-0.0175068 -0.0175068 58.85664 +-0.01161267 -0.0175068 58.85664 +-0.005718534 -0.0175068 58.85664 +0.0001755984 -0.0175068 58.85664 +0.006069731 -0.0175068 58.85664 +0.01197402 -0.0175068 58.85664 +0.01903886 -0.0175068 58.85664 +0.02852504 -0.0175068 58.85664 +0.04126244 -0.0175068 58.85664 +0.05836535 -0.0175068 58.85664 +0.08132997 -0.0175068 58.85664 +0.1121653 -0.0175068 58.85664 +0.1535689 -0.0175068 58.85664 +0.2091628 -0.0175068 58.85664 +0.2838106 -0.0175068 58.85664 +0.3840425 -0.0175068 58.85664 +0.518627 -0.0175068 58.85664 +0.6993381 -0.0175068 58.85664 +0.9419845 -0.0175068 58.85664 +1.267794 -0.0175068 58.85664 +1.705268 -0.0175068 58.85664 +2.292679 -0.0175068 58.85664 +3.081414 -0.0175068 58.85664 +4.140474 -0.0175068 58.85664 +5.562508 -0.0175068 58.85664 +7.471917 -0.0175068 58.85664 +10.03574 -0.0175068 58.85664 +13.47828 -0.0175068 58.85664 +18.10068 -0.0175068 58.85664 +24.30731 -0.0175068 58.85664 +32.64117 -0.0175068 58.85664 +43.83129 -0.0175068 58.85664 +58.85664 -0.0175068 58.85664 +-0.0175068 -0.01161267 58.85664 +-0.01161267 -0.01161267 58.85664 +-0.005718534 -0.01161267 58.85664 +0.0001755984 -0.01161267 58.85664 +0.006069731 -0.01161267 58.85664 +0.01197402 -0.01161267 58.85664 +0.01903886 -0.01161267 58.85664 +0.02852504 -0.01161267 58.85664 +0.04126244 -0.01161267 58.85664 +0.05836535 -0.01161267 58.85664 +0.08132997 -0.01161267 58.85664 +0.1121653 -0.01161267 58.85664 +0.1535689 -0.01161267 58.85664 +0.2091628 -0.01161267 58.85664 +0.2838106 -0.01161267 58.85664 +0.3840425 -0.01161267 58.85664 +0.518627 -0.01161267 58.85664 +0.6993381 -0.01161267 58.85664 +0.9419845 -0.01161267 58.85664 +1.267794 -0.01161267 58.85664 +1.705268 -0.01161267 58.85664 +2.292679 -0.01161267 58.85664 +3.081414 -0.01161267 58.85664 +4.140474 -0.01161267 58.85664 +5.562508 -0.01161267 58.85664 +7.471917 -0.01161267 58.85664 +10.03574 -0.01161267 58.85664 +13.47828 -0.01161267 58.85664 +18.10068 -0.01161267 58.85664 +24.30731 -0.01161267 58.85664 +32.64117 -0.01161267 58.85664 +43.83129 -0.01161267 58.85664 +58.85664 -0.01161267 58.85664 +-0.0175068 -0.005718534 58.85664 +-0.01161267 -0.005718534 58.85664 +-0.005718534 -0.005718534 58.85664 +0.0001755984 -0.005718534 58.85664 +0.006069731 -0.005718534 58.85664 +0.01197402 -0.005718534 58.85664 +0.01903886 -0.005718534 58.85664 +0.02852504 -0.005718534 58.85664 +0.04126244 -0.005718534 58.85664 +0.05836535 -0.005718534 58.85664 +0.08132997 -0.005718534 58.85664 +0.1121653 -0.005718534 58.85664 +0.1535689 -0.005718534 58.85664 +0.2091628 -0.005718534 58.85664 +0.2838106 -0.005718534 58.85664 +0.3840425 -0.005718534 58.85664 +0.518627 -0.005718534 58.85664 +0.6993381 -0.005718534 58.85664 +0.9419845 -0.005718534 58.85664 +1.267794 -0.005718534 58.85664 +1.705268 -0.005718534 58.85664 +2.292679 -0.005718534 58.85664 +3.081414 -0.005718534 58.85664 +4.140474 -0.005718534 58.85664 +5.562508 -0.005718534 58.85664 +7.471917 -0.005718534 58.85664 +10.03574 -0.005718534 58.85664 +13.47828 -0.005718534 58.85664 +18.10068 -0.005718534 58.85664 +24.30731 -0.005718534 58.85664 +32.64117 -0.005718534 58.85664 +43.83129 -0.005718534 58.85664 +58.85664 -0.005718534 58.85664 +-0.0175068 0.0001755984 58.85664 +-0.01161267 0.0001755984 58.85664 +-0.005718534 0.0001755984 58.85664 +0.0001755984 0.0001755984 58.85664 +0.006069731 0.0001755984 58.85664 +0.01197402 0.0001755984 58.85664 +0.01903886 0.0001755984 58.85664 +0.02852504 0.0001755984 58.85664 +0.04126244 0.0001755984 58.85664 +0.05836535 0.0001755984 58.85664 +0.08132997 0.0001755984 58.85664 +0.1121653 0.0001755984 58.85664 +0.1535689 0.0001755984 58.85664 +0.2091628 0.0001755984 58.85664 +0.2838106 0.0001755984 58.85664 +0.3840425 0.0001755984 58.85664 +0.518627 0.0001755984 58.85664 +0.6993381 0.0001755984 58.85664 +0.9419845 0.0001755984 58.85664 +1.267794 0.0001755984 58.85664 +1.705268 0.0001755984 58.85664 +2.292679 0.0001755984 58.85664 +3.081414 0.0001755984 58.85664 +4.140474 0.0001755984 58.85664 +5.562508 0.0001755984 58.85664 +7.471917 0.0001755984 58.85664 +10.03574 0.0001755984 58.85664 +13.47828 0.0001755984 58.85664 +18.10068 0.0001755984 58.85664 +24.30731 0.0001755984 58.85664 +32.64117 0.0001755984 58.85664 +43.83129 0.0001755984 58.85664 +58.85664 0.0001755984 58.85664 +-0.0175068 0.006069731 58.85664 +-0.01161267 0.006069731 58.85664 +-0.005718534 0.006069731 58.85664 +0.0001755984 0.006069731 58.85664 +0.006069731 0.006069731 58.85664 +0.01197402 0.006069731 58.85664 +0.01903886 0.006069731 58.85664 +0.02852504 0.006069731 58.85664 +0.04126244 0.006069731 58.85664 +0.05836535 0.006069731 58.85664 +0.08132997 0.006069731 58.85664 +0.1121653 0.006069731 58.85664 +0.1535689 0.006069731 58.85664 +0.2091628 0.006069731 58.85664 +0.2838106 0.006069731 58.85664 +0.3840425 0.006069731 58.85664 +0.518627 0.006069731 58.85664 +0.6993381 0.006069731 58.85664 +0.9419845 0.006069731 58.85664 +1.267794 0.006069731 58.85664 +1.705268 0.006069731 58.85664 +2.292679 0.006069731 58.85664 +3.081414 0.006069731 58.85664 +4.140474 0.006069731 58.85664 +5.562508 0.006069731 58.85664 +7.471917 0.006069731 58.85664 +10.03574 0.006069731 58.85664 +13.47828 0.006069731 58.85664 +18.10068 0.006069731 58.85664 +24.30731 0.006069731 58.85664 +32.64117 0.006069731 58.85664 +43.83129 0.006069731 58.85664 +58.85664 0.006069731 58.85664 +-0.0175068 0.01197402 58.85664 +-0.01161267 0.01197402 58.85664 +-0.005718534 0.01197402 58.85664 +0.0001755984 0.01197402 58.85664 +0.006069731 0.01197402 58.85664 +0.01197402 0.01197402 58.85664 +0.01903886 0.01197402 58.85664 +0.02852504 0.01197402 58.85664 +0.04126244 0.01197402 58.85664 +0.05836535 0.01197402 58.85664 +0.08132997 0.01197402 58.85664 +0.1121653 0.01197402 58.85664 +0.1535689 0.01197402 58.85664 +0.2091628 0.01197402 58.85664 +0.2838106 0.01197402 58.85664 +0.3840425 0.01197402 58.85664 +0.518627 0.01197402 58.85664 +0.6993381 0.01197402 58.85664 +0.9419845 0.01197402 58.85664 +1.267794 0.01197402 58.85664 +1.705268 0.01197402 58.85664 +2.292679 0.01197402 58.85664 +3.081414 0.01197402 58.85664 +4.140474 0.01197402 58.85664 +5.562508 0.01197402 58.85664 +7.471917 0.01197402 58.85664 +10.03574 0.01197402 58.85664 +13.47828 0.01197402 58.85664 +18.10068 0.01197402 58.85664 +24.30731 0.01197402 58.85664 +32.64117 0.01197402 58.85664 +43.83129 0.01197402 58.85664 +58.85664 0.01197402 58.85664 +-0.0175068 0.01903886 58.85664 +-0.01161267 0.01903886 58.85664 +-0.005718534 0.01903886 58.85664 +0.0001755984 0.01903886 58.85664 +0.006069731 0.01903886 58.85664 +0.01197402 0.01903886 58.85664 +0.01903886 0.01903886 58.85664 +0.02852504 0.01903886 58.85664 +0.04126244 0.01903886 58.85664 +0.05836535 0.01903886 58.85664 +0.08132997 0.01903886 58.85664 +0.1121653 0.01903886 58.85664 +0.1535689 0.01903886 58.85664 +0.2091628 0.01903886 58.85664 +0.2838106 0.01903886 58.85664 +0.3840425 0.01903886 58.85664 +0.518627 0.01903886 58.85664 +0.6993381 0.01903886 58.85664 +0.9419845 0.01903886 58.85664 +1.267794 0.01903886 58.85664 +1.705268 0.01903886 58.85664 +2.292679 0.01903886 58.85664 +3.081414 0.01903886 58.85664 +4.140474 0.01903886 58.85664 +5.562508 0.01903886 58.85664 +7.471917 0.01903886 58.85664 +10.03574 0.01903886 58.85664 +13.47828 0.01903886 58.85664 +18.10068 0.01903886 58.85664 +24.30731 0.01903886 58.85664 +32.64117 0.01903886 58.85664 +43.83129 0.01903886 58.85664 +58.85664 0.01903886 58.85664 +-0.0175068 0.02852504 58.85664 +-0.01161267 0.02852504 58.85664 +-0.005718534 0.02852504 58.85664 +0.0001755984 0.02852504 58.85664 +0.006069731 0.02852504 58.85664 +0.01197402 0.02852504 58.85664 +0.01903886 0.02852504 58.85664 +0.02852504 0.02852504 58.85664 +0.04126244 0.02852504 58.85664 +0.05836535 0.02852504 58.85664 +0.08132997 0.02852504 58.85664 +0.1121653 0.02852504 58.85664 +0.1535689 0.02852504 58.85664 +0.2091628 0.02852504 58.85664 +0.2838106 0.02852504 58.85664 +0.3840425 0.02852504 58.85664 +0.518627 0.02852504 58.85664 +0.6993381 0.02852504 58.85664 +0.9419845 0.02852504 58.85664 +1.267794 0.02852504 58.85664 +1.705268 0.02852504 58.85664 +2.292679 0.02852504 58.85664 +3.081414 0.02852504 58.85664 +4.140474 0.02852504 58.85664 +5.562508 0.02852504 58.85664 +7.471917 0.02852504 58.85664 +10.03574 0.02852504 58.85664 +13.47828 0.02852504 58.85664 +18.10068 0.02852504 58.85664 +24.30731 0.02852504 58.85664 +32.64117 0.02852504 58.85664 +43.83129 0.02852504 58.85664 +58.85664 0.02852504 58.85664 +-0.0175068 0.04126244 58.85664 +-0.01161267 0.04126244 58.85664 +-0.005718534 0.04126244 58.85664 +0.0001755984 0.04126244 58.85664 +0.006069731 0.04126244 58.85664 +0.01197402 0.04126244 58.85664 +0.01903886 0.04126244 58.85664 +0.02852504 0.04126244 58.85664 +0.04126244 0.04126244 58.85664 +0.05836535 0.04126244 58.85664 +0.08132997 0.04126244 58.85664 +0.1121653 0.04126244 58.85664 +0.1535689 0.04126244 58.85664 +0.2091628 0.04126244 58.85664 +0.2838106 0.04126244 58.85664 +0.3840425 0.04126244 58.85664 +0.518627 0.04126244 58.85664 +0.6993381 0.04126244 58.85664 +0.9419845 0.04126244 58.85664 +1.267794 0.04126244 58.85664 +1.705268 0.04126244 58.85664 +2.292679 0.04126244 58.85664 +3.081414 0.04126244 58.85664 +4.140474 0.04126244 58.85664 +5.562508 0.04126244 58.85664 +7.471917 0.04126244 58.85664 +10.03574 0.04126244 58.85664 +13.47828 0.04126244 58.85664 +18.10068 0.04126244 58.85664 +24.30731 0.04126244 58.85664 +32.64117 0.04126244 58.85664 +43.83129 0.04126244 58.85664 +58.85664 0.04126244 58.85664 +-0.0175068 0.05836535 58.85664 +-0.01161267 0.05836535 58.85664 +-0.005718534 0.05836535 58.85664 +0.0001755984 0.05836535 58.85664 +0.006069731 0.05836535 58.85664 +0.01197402 0.05836535 58.85664 +0.01903886 0.05836535 58.85664 +0.02852504 0.05836535 58.85664 +0.04126244 0.05836535 58.85664 +0.05836535 0.05836535 58.85664 +0.08132997 0.05836535 58.85664 +0.1121653 0.05836535 58.85664 +0.1535689 0.05836535 58.85664 +0.2091628 0.05836535 58.85664 +0.2838106 0.05836535 58.85664 +0.3840425 0.05836535 58.85664 +0.518627 0.05836535 58.85664 +0.6993381 0.05836535 58.85664 +0.9419845 0.05836535 58.85664 +1.267794 0.05836535 58.85664 +1.705268 0.05836535 58.85664 +2.292679 0.05836535 58.85664 +3.081414 0.05836535 58.85664 +4.140474 0.05836535 58.85664 +5.562508 0.05836535 58.85664 +7.471917 0.05836535 58.85664 +10.03574 0.05836535 58.85664 +13.47828 0.05836535 58.85664 +18.10068 0.05836535 58.85664 +24.30731 0.05836535 58.85664 +32.64117 0.05836535 58.85664 +43.83129 0.05836535 58.85664 +58.85664 0.05836535 58.85664 +-0.0175068 0.08132997 58.85664 +-0.01161267 0.08132997 58.85664 +-0.005718534 0.08132997 58.85664 +0.0001755984 0.08132997 58.85664 +0.006069731 0.08132997 58.85664 +0.01197402 0.08132997 58.85664 +0.01903886 0.08132997 58.85664 +0.02852504 0.08132997 58.85664 +0.04126244 0.08132997 58.85664 +0.05836535 0.08132997 58.85664 +0.08132997 0.08132997 58.85664 +0.1121653 0.08132997 58.85664 +0.1535689 0.08132997 58.85664 +0.2091628 0.08132997 58.85664 +0.2838106 0.08132997 58.85664 +0.3840425 0.08132997 58.85664 +0.518627 0.08132997 58.85664 +0.6993381 0.08132997 58.85664 +0.9419845 0.08132997 58.85664 +1.267794 0.08132997 58.85664 +1.705268 0.08132997 58.85664 +2.292679 0.08132997 58.85664 +3.081414 0.08132997 58.85664 +4.140474 0.08132997 58.85664 +5.562508 0.08132997 58.85664 +7.471917 0.08132997 58.85664 +10.03574 0.08132997 58.85664 +13.47828 0.08132997 58.85664 +18.10068 0.08132997 58.85664 +24.30731 0.08132997 58.85664 +32.64117 0.08132997 58.85664 +43.83129 0.08132997 58.85664 +58.85664 0.08132997 58.85664 +-0.0175068 0.1121653 58.85664 +-0.01161267 0.1121653 58.85664 +-0.005718534 0.1121653 58.85664 +0.0001755984 0.1121653 58.85664 +0.006069731 0.1121653 58.85664 +0.01197402 0.1121653 58.85664 +0.01903886 0.1121653 58.85664 +0.02852504 0.1121653 58.85664 +0.04126244 0.1121653 58.85664 +0.05836535 0.1121653 58.85664 +0.08132997 0.1121653 58.85664 +0.1121653 0.1121653 58.85664 +0.1535689 0.1121653 58.85664 +0.2091628 0.1121653 58.85664 +0.2838106 0.1121653 58.85664 +0.3840425 0.1121653 58.85664 +0.518627 0.1121653 58.85664 +0.6993381 0.1121653 58.85664 +0.9419845 0.1121653 58.85664 +1.267794 0.1121653 58.85664 +1.705268 0.1121653 58.85664 +2.292679 0.1121653 58.85664 +3.081414 0.1121653 58.85664 +4.140474 0.1121653 58.85664 +5.562508 0.1121653 58.85664 +7.471917 0.1121653 58.85664 +10.03574 0.1121653 58.85664 +13.47828 0.1121653 58.85664 +18.10068 0.1121653 58.85664 +24.30731 0.1121653 58.85664 +32.64117 0.1121653 58.85664 +43.83129 0.1121653 58.85664 +58.85664 0.1121653 58.85664 +-0.0175068 0.1535689 58.85664 +-0.01161267 0.1535689 58.85664 +-0.005718534 0.1535689 58.85664 +0.0001755984 0.1535689 58.85664 +0.006069731 0.1535689 58.85664 +0.01197402 0.1535689 58.85664 +0.01903886 0.1535689 58.85664 +0.02852504 0.1535689 58.85664 +0.04126244 0.1535689 58.85664 +0.05836535 0.1535689 58.85664 +0.08132997 0.1535689 58.85664 +0.1121653 0.1535689 58.85664 +0.1535689 0.1535689 58.85664 +0.2091628 0.1535689 58.85664 +0.2838106 0.1535689 58.85664 +0.3840425 0.1535689 58.85664 +0.518627 0.1535689 58.85664 +0.6993381 0.1535689 58.85664 +0.9419845 0.1535689 58.85664 +1.267794 0.1535689 58.85664 +1.705268 0.1535689 58.85664 +2.292679 0.1535689 58.85664 +3.081414 0.1535689 58.85664 +4.140474 0.1535689 58.85664 +5.562508 0.1535689 58.85664 +7.471917 0.1535689 58.85664 +10.03574 0.1535689 58.85664 +13.47828 0.1535689 58.85664 +18.10068 0.1535689 58.85664 +24.30731 0.1535689 58.85664 +32.64117 0.1535689 58.85664 +43.83129 0.1535689 58.85664 +58.85664 0.1535689 58.85664 +-0.0175068 0.2091628 58.85664 +-0.01161267 0.2091628 58.85664 +-0.005718534 0.2091628 58.85664 +0.0001755984 0.2091628 58.85664 +0.006069731 0.2091628 58.85664 +0.01197402 0.2091628 58.85664 +0.01903886 0.2091628 58.85664 +0.02852504 0.2091628 58.85664 +0.04126244 0.2091628 58.85664 +0.05836535 0.2091628 58.85664 +0.08132997 0.2091628 58.85664 +0.1121653 0.2091628 58.85664 +0.1535689 0.2091628 58.85664 +0.2091628 0.2091628 58.85664 +0.2838106 0.2091628 58.85664 +0.3840425 0.2091628 58.85664 +0.518627 0.2091628 58.85664 +0.6993381 0.2091628 58.85664 +0.9419845 0.2091628 58.85664 +1.267794 0.2091628 58.85664 +1.705268 0.2091628 58.85664 +2.292679 0.2091628 58.85664 +3.081414 0.2091628 58.85664 +4.140474 0.2091628 58.85664 +5.562508 0.2091628 58.85664 +7.471917 0.2091628 58.85664 +10.03574 0.2091628 58.85664 +13.47828 0.2091628 58.85664 +18.10068 0.2091628 58.85664 +24.30731 0.2091628 58.85664 +32.64117 0.2091628 58.85664 +43.83129 0.2091628 58.85664 +58.85664 0.2091628 58.85664 +-0.0175068 0.2838106 58.85664 +-0.01161267 0.2838106 58.85664 +-0.005718534 0.2838106 58.85664 +0.0001755984 0.2838106 58.85664 +0.006069731 0.2838106 58.85664 +0.01197402 0.2838106 58.85664 +0.01903886 0.2838106 58.85664 +0.02852504 0.2838106 58.85664 +0.04126244 0.2838106 58.85664 +0.05836535 0.2838106 58.85664 +0.08132997 0.2838106 58.85664 +0.1121653 0.2838106 58.85664 +0.1535689 0.2838106 58.85664 +0.2091628 0.2838106 58.85664 +0.2838106 0.2838106 58.85664 +0.3840425 0.2838106 58.85664 +0.518627 0.2838106 58.85664 +0.6993381 0.2838106 58.85664 +0.9419845 0.2838106 58.85664 +1.267794 0.2838106 58.85664 +1.705268 0.2838106 58.85664 +2.292679 0.2838106 58.85664 +3.081414 0.2838106 58.85664 +4.140474 0.2838106 58.85664 +5.562508 0.2838106 58.85664 +7.471917 0.2838106 58.85664 +10.03574 0.2838106 58.85664 +13.47828 0.2838106 58.85664 +18.10068 0.2838106 58.85664 +24.30731 0.2838106 58.85664 +32.64117 0.2838106 58.85664 +43.83129 0.2838106 58.85664 +58.85664 0.2838106 58.85664 +-0.0175068 0.3840425 58.85664 +-0.01161267 0.3840425 58.85664 +-0.005718534 0.3840425 58.85664 +0.0001755984 0.3840425 58.85664 +0.006069731 0.3840425 58.85664 +0.01197402 0.3840425 58.85664 +0.01903886 0.3840425 58.85664 +0.02852504 0.3840425 58.85664 +0.04126244 0.3840425 58.85664 +0.05836535 0.3840425 58.85664 +0.08132997 0.3840425 58.85664 +0.1121653 0.3840425 58.85664 +0.1535689 0.3840425 58.85664 +0.2091628 0.3840425 58.85664 +0.2838106 0.3840425 58.85664 +0.3840425 0.3840425 58.85664 +0.518627 0.3840425 58.85664 +0.6993381 0.3840425 58.85664 +0.9419845 0.3840425 58.85664 +1.267794 0.3840425 58.85664 +1.705268 0.3840425 58.85664 +2.292679 0.3840425 58.85664 +3.081414 0.3840425 58.85664 +4.140474 0.3840425 58.85664 +5.562508 0.3840425 58.85664 +7.471917 0.3840425 58.85664 +10.03574 0.3840425 58.85664 +13.47828 0.3840425 58.85664 +18.10068 0.3840425 58.85664 +24.30731 0.3840425 58.85664 +32.64117 0.3840425 58.85664 +43.83129 0.3840425 58.85664 +58.85664 0.3840425 58.85664 +-0.0175068 0.518627 58.85664 +-0.01161267 0.518627 58.85664 +-0.005718534 0.518627 58.85664 +0.0001755984 0.518627 58.85664 +0.006069731 0.518627 58.85664 +0.01197402 0.518627 58.85664 +0.01903886 0.518627 58.85664 +0.02852504 0.518627 58.85664 +0.04126244 0.518627 58.85664 +0.05836535 0.518627 58.85664 +0.08132997 0.518627 58.85664 +0.1121653 0.518627 58.85664 +0.1535689 0.518627 58.85664 +0.2091628 0.518627 58.85664 +0.2838106 0.518627 58.85664 +0.3840425 0.518627 58.85664 +0.518627 0.518627 58.85664 +0.6993381 0.518627 58.85664 +0.9419845 0.518627 58.85664 +1.267794 0.518627 58.85664 +1.705268 0.518627 58.85664 +2.292679 0.518627 58.85664 +3.081414 0.518627 58.85664 +4.140474 0.518627 58.85664 +5.562508 0.518627 58.85664 +7.471917 0.518627 58.85664 +10.03574 0.518627 58.85664 +13.47828 0.518627 58.85664 +18.10068 0.518627 58.85664 +24.30731 0.518627 58.85664 +32.64117 0.518627 58.85664 +43.83129 0.518627 58.85664 +58.85664 0.518627 58.85664 +-0.0175068 0.6993381 58.85664 +-0.01161267 0.6993381 58.85664 +-0.005718534 0.6993381 58.85664 +0.0001755984 0.6993381 58.85664 +0.006069731 0.6993381 58.85664 +0.01197402 0.6993381 58.85664 +0.01903886 0.6993381 58.85664 +0.02852504 0.6993381 58.85664 +0.04126244 0.6993381 58.85664 +0.05836535 0.6993381 58.85664 +0.08132997 0.6993381 58.85664 +0.1121653 0.6993381 58.85664 +0.1535689 0.6993381 58.85664 +0.2091628 0.6993381 58.85664 +0.2838106 0.6993381 58.85664 +0.3840425 0.6993381 58.85664 +0.518627 0.6993381 58.85664 +0.6993381 0.6993381 58.85664 +0.9419845 0.6993381 58.85664 +1.267794 0.6993381 58.85664 +1.705268 0.6993381 58.85664 +2.292679 0.6993381 58.85664 +3.081414 0.6993381 58.85664 +4.140474 0.6993381 58.85664 +5.562508 0.6993381 58.85664 +7.471917 0.6993381 58.85664 +10.03574 0.6993381 58.85664 +13.47828 0.6993381 58.85664 +18.10068 0.6993381 58.85664 +24.30731 0.6993381 58.85664 +32.64117 0.6993381 58.85664 +43.83129 0.6993381 58.85664 +58.85664 0.6993381 58.85664 +-0.0175068 0.9419845 58.85664 +-0.01161267 0.9419845 58.85664 +-0.005718534 0.9419845 58.85664 +0.0001755984 0.9419845 58.85664 +0.006069731 0.9419845 58.85664 +0.01197402 0.9419845 58.85664 +0.01903886 0.9419845 58.85664 +0.02852504 0.9419845 58.85664 +0.04126244 0.9419845 58.85664 +0.05836535 0.9419845 58.85664 +0.08132997 0.9419845 58.85664 +0.1121653 0.9419845 58.85664 +0.1535689 0.9419845 58.85664 +0.2091628 0.9419845 58.85664 +0.2838106 0.9419845 58.85664 +0.3840425 0.9419845 58.85664 +0.518627 0.9419845 58.85664 +0.6993381 0.9419845 58.85664 +0.9419845 0.9419845 58.85664 +1.267794 0.9419845 58.85664 +1.705268 0.9419845 58.85664 +2.292679 0.9419845 58.85664 +3.081414 0.9419845 58.85664 +4.140474 0.9419845 58.85664 +5.562508 0.9419845 58.85664 +7.471917 0.9419845 58.85664 +10.03574 0.9419845 58.85664 +13.47828 0.9419845 58.85664 +18.10068 0.9419845 58.85664 +24.30731 0.9419845 58.85664 +32.64117 0.9419845 58.85664 +43.83129 0.9419845 58.85664 +58.85664 0.9419845 58.85664 +-0.0175068 1.267794 58.85664 +-0.01161267 1.267794 58.85664 +-0.005718534 1.267794 58.85664 +0.0001755984 1.267794 58.85664 +0.006069731 1.267794 58.85664 +0.01197402 1.267794 58.85664 +0.01903886 1.267794 58.85664 +0.02852504 1.267794 58.85664 +0.04126244 1.267794 58.85664 +0.05836535 1.267794 58.85664 +0.08132997 1.267794 58.85664 +0.1121653 1.267794 58.85664 +0.1535689 1.267794 58.85664 +0.2091628 1.267794 58.85664 +0.2838106 1.267794 58.85664 +0.3840425 1.267794 58.85664 +0.518627 1.267794 58.85664 +0.6993381 1.267794 58.85664 +0.9419845 1.267794 58.85664 +1.267794 1.267794 58.85664 +1.705268 1.267794 58.85664 +2.292679 1.267794 58.85664 +3.081414 1.267794 58.85664 +4.140474 1.267794 58.85664 +5.562508 1.267794 58.85664 +7.471917 1.267794 58.85664 +10.03574 1.267794 58.85664 +13.47828 1.267794 58.85664 +18.10068 1.267794 58.85664 +24.30731 1.267794 58.85664 +32.64117 1.267794 58.85664 +43.83129 1.267794 58.85664 +58.85664 1.267794 58.85664 +-0.0175068 1.705268 58.85664 +-0.01161267 1.705268 58.85664 +-0.005718534 1.705268 58.85664 +0.0001755984 1.705268 58.85664 +0.006069731 1.705268 58.85664 +0.01197402 1.705268 58.85664 +0.01903886 1.705268 58.85664 +0.02852504 1.705268 58.85664 +0.04126244 1.705268 58.85664 +0.05836535 1.705268 58.85664 +0.08132997 1.705268 58.85664 +0.1121653 1.705268 58.85664 +0.1535689 1.705268 58.85664 +0.2091628 1.705268 58.85664 +0.2838106 1.705268 58.85664 +0.3840425 1.705268 58.85664 +0.518627 1.705268 58.85664 +0.6993381 1.705268 58.85664 +0.9419845 1.705268 58.85664 +1.267794 1.705268 58.85664 +1.705268 1.705268 58.85664 +2.292679 1.705268 58.85664 +3.081414 1.705268 58.85664 +4.140474 1.705268 58.85664 +5.562508 1.705268 58.85664 +7.471917 1.705268 58.85664 +10.03574 1.705268 58.85664 +13.47828 1.705268 58.85664 +18.10068 1.705268 58.85664 +24.30731 1.705268 58.85664 +32.64117 1.705268 58.85664 +43.83129 1.705268 58.85664 +58.85664 1.705268 58.85664 +-0.0175068 2.292679 58.85664 +-0.01161267 2.292679 58.85664 +-0.005718534 2.292679 58.85664 +0.0001755984 2.292679 58.85664 +0.006069731 2.292679 58.85664 +0.01197402 2.292679 58.85664 +0.01903886 2.292679 58.85664 +0.02852504 2.292679 58.85664 +0.04126244 2.292679 58.85664 +0.05836535 2.292679 58.85664 +0.08132997 2.292679 58.85664 +0.1121653 2.292679 58.85664 +0.1535689 2.292679 58.85664 +0.2091628 2.292679 58.85664 +0.2838106 2.292679 58.85664 +0.3840425 2.292679 58.85664 +0.518627 2.292679 58.85664 +0.6993381 2.292679 58.85664 +0.9419845 2.292679 58.85664 +1.267794 2.292679 58.85664 +1.705268 2.292679 58.85664 +2.292679 2.292679 58.85664 +3.081414 2.292679 58.85664 +4.140474 2.292679 58.85664 +5.562508 2.292679 58.85664 +7.471917 2.292679 58.85664 +10.03574 2.292679 58.85664 +13.47828 2.292679 58.85664 +18.10068 2.292679 58.85664 +24.30731 2.292679 58.85664 +32.64117 2.292679 58.85664 +43.83129 2.292679 58.85664 +58.85664 2.292679 58.85664 +-0.0175068 3.081414 58.85664 +-0.01161267 3.081414 58.85664 +-0.005718534 3.081414 58.85664 +0.0001755984 3.081414 58.85664 +0.006069731 3.081414 58.85664 +0.01197402 3.081414 58.85664 +0.01903886 3.081414 58.85664 +0.02852504 3.081414 58.85664 +0.04126244 3.081414 58.85664 +0.05836535 3.081414 58.85664 +0.08132997 3.081414 58.85664 +0.1121653 3.081414 58.85664 +0.1535689 3.081414 58.85664 +0.2091628 3.081414 58.85664 +0.2838106 3.081414 58.85664 +0.3840425 3.081414 58.85664 +0.518627 3.081414 58.85664 +0.6993381 3.081414 58.85664 +0.9419845 3.081414 58.85664 +1.267794 3.081414 58.85664 +1.705268 3.081414 58.85664 +2.292679 3.081414 58.85664 +3.081414 3.081414 58.85664 +4.140474 3.081414 58.85664 +5.562508 3.081414 58.85664 +7.471917 3.081414 58.85664 +10.03574 3.081414 58.85664 +13.47828 3.081414 58.85664 +18.10068 3.081414 58.85664 +24.30731 3.081414 58.85664 +32.64117 3.081414 58.85664 +43.83129 3.081414 58.85664 +58.85664 3.081414 58.85664 +-0.0175068 4.140474 58.85664 +-0.01161267 4.140474 58.85664 +-0.005718534 4.140474 58.85664 +0.0001755984 4.140474 58.85664 +0.006069731 4.140474 58.85664 +0.01197402 4.140474 58.85664 +0.01903886 4.140474 58.85664 +0.02852504 4.140474 58.85664 +0.04126244 4.140474 58.85664 +0.05836535 4.140474 58.85664 +0.08132997 4.140474 58.85664 +0.1121653 4.140474 58.85664 +0.1535689 4.140474 58.85664 +0.2091628 4.140474 58.85664 +0.2838106 4.140474 58.85664 +0.3840425 4.140474 58.85664 +0.518627 4.140474 58.85664 +0.6993381 4.140474 58.85664 +0.9419845 4.140474 58.85664 +1.267794 4.140474 58.85664 +1.705268 4.140474 58.85664 +2.292679 4.140474 58.85664 +3.081414 4.140474 58.85664 +4.140474 4.140474 58.85664 +5.562508 4.140474 58.85664 +7.471917 4.140474 58.85664 +10.03574 4.140474 58.85664 +13.47828 4.140474 58.85664 +18.10068 4.140474 58.85664 +24.30731 4.140474 58.85664 +32.64117 4.140474 58.85664 +43.83129 4.140474 58.85664 +58.85664 4.140474 58.85664 +-0.0175068 5.562508 58.85664 +-0.01161267 5.562508 58.85664 +-0.005718534 5.562508 58.85664 +0.0001755984 5.562508 58.85664 +0.006069731 5.562508 58.85664 +0.01197402 5.562508 58.85664 +0.01903886 5.562508 58.85664 +0.02852504 5.562508 58.85664 +0.04126244 5.562508 58.85664 +0.05836535 5.562508 58.85664 +0.08132997 5.562508 58.85664 +0.1121653 5.562508 58.85664 +0.1535689 5.562508 58.85664 +0.2091628 5.562508 58.85664 +0.2838106 5.562508 58.85664 +0.3840425 5.562508 58.85664 +0.518627 5.562508 58.85664 +0.6993381 5.562508 58.85664 +0.9419845 5.562508 58.85664 +1.267794 5.562508 58.85664 +1.705268 5.562508 58.85664 +2.292679 5.562508 58.85664 +3.081414 5.562508 58.85664 +4.140474 5.562508 58.85664 +5.562508 5.562508 58.85664 +7.471917 5.562508 58.85664 +10.03574 5.562508 58.85664 +13.47828 5.562508 58.85664 +18.10068 5.562508 58.85664 +24.30731 5.562508 58.85664 +32.64117 5.562508 58.85664 +43.83129 5.562508 58.85664 +58.85664 5.562508 58.85664 +-0.0175068 7.471917 58.85664 +-0.01161267 7.471917 58.85664 +-0.005718534 7.471917 58.85664 +0.0001755984 7.471917 58.85664 +0.006069731 7.471917 58.85664 +0.01197402 7.471917 58.85664 +0.01903886 7.471917 58.85664 +0.02852504 7.471917 58.85664 +0.04126244 7.471917 58.85664 +0.05836535 7.471917 58.85664 +0.08132997 7.471917 58.85664 +0.1121653 7.471917 58.85664 +0.1535689 7.471917 58.85664 +0.2091628 7.471917 58.85664 +0.2838106 7.471917 58.85664 +0.3840425 7.471917 58.85664 +0.518627 7.471917 58.85664 +0.6993381 7.471917 58.85664 +0.9419845 7.471917 58.85664 +1.267794 7.471917 58.85664 +1.705268 7.471917 58.85664 +2.292679 7.471917 58.85664 +3.081414 7.471917 58.85664 +4.140474 7.471917 58.85664 +5.562508 7.471917 58.85664 +7.471917 7.471917 58.85664 +10.03574 7.471917 58.85664 +13.47828 7.471917 58.85664 +18.10068 7.471917 58.85664 +24.30731 7.471917 58.85664 +32.64117 7.471917 58.85664 +43.83129 7.471917 58.85664 +58.85664 7.471917 58.85664 +-0.0175068 10.03574 58.85664 +-0.01161267 10.03574 58.85664 +-0.005718534 10.03574 58.85664 +0.0001755984 10.03574 58.85664 +0.006069731 10.03574 58.85664 +0.01197402 10.03574 58.85664 +0.01903886 10.03574 58.85664 +0.02852504 10.03574 58.85664 +0.04126244 10.03574 58.85664 +0.05836535 10.03574 58.85664 +0.08132997 10.03574 58.85664 +0.1121653 10.03574 58.85664 +0.1535689 10.03574 58.85664 +0.2091628 10.03574 58.85664 +0.2838106 10.03574 58.85664 +0.3840425 10.03574 58.85664 +0.518627 10.03574 58.85664 +0.6993381 10.03574 58.85664 +0.9419845 10.03574 58.85664 +1.267794 10.03574 58.85664 +1.705268 10.03574 58.85664 +2.292679 10.03574 58.85664 +3.081414 10.03574 58.85664 +4.140474 10.03574 58.85664 +5.562508 10.03574 58.85664 +7.471917 10.03574 58.85664 +10.03574 10.03574 58.85664 +13.47828 10.03574 58.85664 +18.10068 10.03574 58.85664 +24.30731 10.03574 58.85664 +32.64117 10.03574 58.85664 +43.83129 10.03574 58.85664 +58.85664 10.03574 58.85664 +-0.0175068 13.47828 58.85664 +-0.01161267 13.47828 58.85664 +-0.005718534 13.47828 58.85664 +0.0001755984 13.47828 58.85664 +0.006069731 13.47828 58.85664 +0.01197402 13.47828 58.85664 +0.01903886 13.47828 58.85664 +0.02852504 13.47828 58.85664 +0.04126244 13.47828 58.85664 +0.05836535 13.47828 58.85664 +0.08132997 13.47828 58.85664 +0.1121653 13.47828 58.85664 +0.1535689 13.47828 58.85664 +0.2091628 13.47828 58.85664 +0.2838106 13.47828 58.85664 +0.3840425 13.47828 58.85664 +0.518627 13.47828 58.85664 +0.6993381 13.47828 58.85664 +0.9419845 13.47828 58.85664 +1.267794 13.47828 58.85664 +1.705268 13.47828 58.85664 +2.292679 13.47828 58.85664 +3.081414 13.47828 58.85664 +4.140474 13.47828 58.85664 +5.562508 13.47828 58.85664 +7.471917 13.47828 58.85664 +10.03574 13.47828 58.85664 +13.47828 13.47828 58.85664 +18.10068 13.47828 58.85664 +24.30731 13.47828 58.85664 +32.64117 13.47828 58.85664 +43.83129 13.47828 58.85664 +58.85664 13.47828 58.85664 +-0.0175068 18.10068 58.85664 +-0.01161267 18.10068 58.85664 +-0.005718534 18.10068 58.85664 +0.0001755984 18.10068 58.85664 +0.006069731 18.10068 58.85664 +0.01197402 18.10068 58.85664 +0.01903886 18.10068 58.85664 +0.02852504 18.10068 58.85664 +0.04126244 18.10068 58.85664 +0.05836535 18.10068 58.85664 +0.08132997 18.10068 58.85664 +0.1121653 18.10068 58.85664 +0.1535689 18.10068 58.85664 +0.2091628 18.10068 58.85664 +0.2838106 18.10068 58.85664 +0.3840425 18.10068 58.85664 +0.518627 18.10068 58.85664 +0.6993381 18.10068 58.85664 +0.9419845 18.10068 58.85664 +1.267794 18.10068 58.85664 +1.705268 18.10068 58.85664 +2.292679 18.10068 58.85664 +3.081414 18.10068 58.85664 +4.140474 18.10068 58.85664 +5.562508 18.10068 58.85664 +7.471917 18.10068 58.85664 +10.03574 18.10068 58.85664 +13.47828 18.10068 58.85664 +18.10068 18.10068 58.85664 +24.30731 18.10068 58.85664 +32.64117 18.10068 58.85664 +43.83129 18.10068 58.85664 +58.85664 18.10068 58.85664 +-0.0175068 24.30731 58.85664 +-0.01161267 24.30731 58.85664 +-0.005718534 24.30731 58.85664 +0.0001755984 24.30731 58.85664 +0.006069731 24.30731 58.85664 +0.01197402 24.30731 58.85664 +0.01903886 24.30731 58.85664 +0.02852504 24.30731 58.85664 +0.04126244 24.30731 58.85664 +0.05836535 24.30731 58.85664 +0.08132997 24.30731 58.85664 +0.1121653 24.30731 58.85664 +0.1535689 24.30731 58.85664 +0.2091628 24.30731 58.85664 +0.2838106 24.30731 58.85664 +0.3840425 24.30731 58.85664 +0.518627 24.30731 58.85664 +0.6993381 24.30731 58.85664 +0.9419845 24.30731 58.85664 +1.267794 24.30731 58.85664 +1.705268 24.30731 58.85664 +2.292679 24.30731 58.85664 +3.081414 24.30731 58.85664 +4.140474 24.30731 58.85664 +5.562508 24.30731 58.85664 +7.471917 24.30731 58.85664 +10.03574 24.30731 58.85664 +13.47828 24.30731 58.85664 +18.10068 24.30731 58.85664 +24.30731 24.30731 58.85664 +32.64117 24.30731 58.85664 +43.83129 24.30731 58.85664 +58.85664 24.30731 58.85664 +-0.0175068 32.64117 58.85664 +-0.01161267 32.64117 58.85664 +-0.005718534 32.64117 58.85664 +0.0001755984 32.64117 58.85664 +0.006069731 32.64117 58.85664 +0.01197402 32.64117 58.85664 +0.01903886 32.64117 58.85664 +0.02852504 32.64117 58.85664 +0.04126244 32.64117 58.85664 +0.05836535 32.64117 58.85664 +0.08132997 32.64117 58.85664 +0.1121653 32.64117 58.85664 +0.1535689 32.64117 58.85664 +0.2091628 32.64117 58.85664 +0.2838106 32.64117 58.85664 +0.3840425 32.64117 58.85664 +0.518627 32.64117 58.85664 +0.6993381 32.64117 58.85664 +0.9419845 32.64117 58.85664 +1.267794 32.64117 58.85664 +1.705268 32.64117 58.85664 +2.292679 32.64117 58.85664 +3.081414 32.64117 58.85664 +4.140474 32.64117 58.85664 +5.562508 32.64117 58.85664 +7.471917 32.64117 58.85664 +10.03574 32.64117 58.85664 +13.47828 32.64117 58.85664 +18.10068 32.64117 58.85664 +24.30731 32.64117 58.85664 +32.64117 32.64117 58.85664 +43.83129 32.64117 58.85664 +58.85664 32.64117 58.85664 +-0.0175068 43.83129 58.85664 +-0.01161267 43.83129 58.85664 +-0.005718534 43.83129 58.85664 +0.0001755984 43.83129 58.85664 +0.006069731 43.83129 58.85664 +0.01197402 43.83129 58.85664 +0.01903886 43.83129 58.85664 +0.02852504 43.83129 58.85664 +0.04126244 43.83129 58.85664 +0.05836535 43.83129 58.85664 +0.08132997 43.83129 58.85664 +0.1121653 43.83129 58.85664 +0.1535689 43.83129 58.85664 +0.2091628 43.83129 58.85664 +0.2838106 43.83129 58.85664 +0.3840425 43.83129 58.85664 +0.518627 43.83129 58.85664 +0.6993381 43.83129 58.85664 +0.9419845 43.83129 58.85664 +1.267794 43.83129 58.85664 +1.705268 43.83129 58.85664 +2.292679 43.83129 58.85664 +3.081414 43.83129 58.85664 +4.140474 43.83129 58.85664 +5.562508 43.83129 58.85664 +7.471917 43.83129 58.85664 +10.03574 43.83129 58.85664 +13.47828 43.83129 58.85664 +18.10068 43.83129 58.85664 +24.30731 43.83129 58.85664 +32.64117 43.83129 58.85664 +43.83129 43.83129 58.85664 +58.85664 43.83129 58.85664 +-0.0175068 58.85664 58.85664 +-0.01161267 58.85664 58.85664 +-0.005718534 58.85664 58.85664 +0.0001755984 58.85664 58.85664 +0.006069731 58.85664 58.85664 +0.01197402 58.85664 58.85664 +0.01903886 58.85664 58.85664 +0.02852504 58.85664 58.85664 +0.04126244 58.85664 58.85664 +0.05836535 58.85664 58.85664 +0.08132997 58.85664 58.85664 +0.1121653 58.85664 58.85664 +0.1535689 58.85664 58.85664 +0.2091628 58.85664 58.85664 +0.2838106 58.85664 58.85664 +0.3840425 58.85664 58.85664 +0.518627 58.85664 58.85664 +0.6993381 58.85664 58.85664 +0.9419845 58.85664 58.85664 +1.267794 58.85664 58.85664 +1.705268 58.85664 58.85664 +2.292679 58.85664 58.85664 +3.081414 58.85664 58.85664 +4.140474 58.85664 58.85664 +5.562508 58.85664 58.85664 +7.471917 58.85664 58.85664 +10.03574 58.85664 58.85664 +13.47828 58.85664 58.85664 +18.10068 58.85664 58.85664 +24.30731 58.85664 58.85664 +32.64117 58.85664 58.85664 +43.83129 58.85664 58.85664 +58.85664 58.85664 58.85664 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube.meta new file mode 100644 index 0000000..805fe9c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_Linear_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b853726bb222aa4e86ef5f7633d2c15 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube new file mode 100644 index 0000000..351ef50 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube @@ -0,0 +1,35941 @@ +TITLE "Unity Log to sRGB r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0.002268731 0.002268731 +0 0.002268731 0.002268731 +0 0.002268731 0.002268731 +0.002268731 0.002268731 0.002268731 +0.07076883 0.002268731 0.002268731 +0.1119241 0.002268731 0.002268731 +0.1475052 0.002268731 0.002268731 +0.1846606 0.002268731 0.002268731 +0.2245119 0.002268731 0.002268731 +0.2679612 0.002268731 0.002268731 +0.3158431 0.002268731 0.002268731 +0.3689944 0.002268731 0.002268731 +0.4282948 0.002268731 0.002268731 +0.494694 0.002268731 0.002268731 +0.5692344 0.002268731 0.002268731 +0.6530715 0.002268731 0.002268731 +0.7474945 0.002268731 0.002268731 +0.8539475 0.002268731 0.002268731 +0.974052 0.002268731 0.002268731 +1.113885 0.002268731 0.002268731 +1.27456 0.002268731 0.002268731 +1.458117 0.002268731 0.002268731 +1.667858 0.002268731 0.002268731 +1.907556 0.002268731 0.002268731 +2.181521 0.002268731 0.002268731 +2.494678 0.002268731 0.002268731 +2.852659 0.002268731 0.002268731 +3.261896 0.002268731 0.002268731 +3.729748 0.002268731 0.002268731 +4.264621 0.002268731 0.002268731 +4.876131 0.002268731 0.002268731 +5.575266 0.002268731 0.002268731 +6.374593 0.002268731 0.002268731 +0 0.07076883 0.002268731 +0 0.07076883 0.002268731 +0 0.07076883 0.002268731 +0.002268731 0.07076883 0.002268731 +0.07076883 0.07076883 0.002268731 +0.1119241 0.07076883 0.002268731 +0.1475052 0.07076883 0.002268731 +0.1846606 0.07076883 0.002268731 +0.2245119 0.07076883 0.002268731 +0.2679612 0.07076883 0.002268731 +0.3158431 0.07076883 0.002268731 +0.3689944 0.07076883 0.002268731 +0.4282948 0.07076883 0.002268731 +0.494694 0.07076883 0.002268731 +0.5692344 0.07076883 0.002268731 +0.6530715 0.07076883 0.002268731 +0.7474945 0.07076883 0.002268731 +0.8539475 0.07076883 0.002268731 +0.974052 0.07076883 0.002268731 +1.113885 0.07076883 0.002268731 +1.27456 0.07076883 0.002268731 +1.458117 0.07076883 0.002268731 +1.667858 0.07076883 0.002268731 +1.907556 0.07076883 0.002268731 +2.181521 0.07076883 0.002268731 +2.494678 0.07076883 0.002268731 +2.852659 0.07076883 0.002268731 +3.261896 0.07076883 0.002268731 +3.729748 0.07076883 0.002268731 +4.264621 0.07076883 0.002268731 +4.876131 0.07076883 0.002268731 +5.575266 0.07076883 0.002268731 +6.374593 0.07076883 0.002268731 +0 0.1119241 0.002268731 +0 0.1119241 0.002268731 +0 0.1119241 0.002268731 +0.002268731 0.1119241 0.002268731 +0.07076883 0.1119241 0.002268731 +0.1119241 0.1119241 0.002268731 +0.1475052 0.1119241 0.002268731 +0.1846606 0.1119241 0.002268731 +0.2245119 0.1119241 0.002268731 +0.2679612 0.1119241 0.002268731 +0.3158431 0.1119241 0.002268731 +0.3689944 0.1119241 0.002268731 +0.4282948 0.1119241 0.002268731 +0.494694 0.1119241 0.002268731 +0.5692344 0.1119241 0.002268731 +0.6530715 0.1119241 0.002268731 +0.7474945 0.1119241 0.002268731 +0.8539475 0.1119241 0.002268731 +0.974052 0.1119241 0.002268731 +1.113885 0.1119241 0.002268731 +1.27456 0.1119241 0.002268731 +1.458117 0.1119241 0.002268731 +1.667858 0.1119241 0.002268731 +1.907556 0.1119241 0.002268731 +2.181521 0.1119241 0.002268731 +2.494678 0.1119241 0.002268731 +2.852659 0.1119241 0.002268731 +3.261896 0.1119241 0.002268731 +3.729748 0.1119241 0.002268731 +4.264621 0.1119241 0.002268731 +4.876131 0.1119241 0.002268731 +5.575266 0.1119241 0.002268731 +6.374593 0.1119241 0.002268731 +0 0.1475052 0.002268731 +0 0.1475052 0.002268731 +0 0.1475052 0.002268731 +0.002268731 0.1475052 0.002268731 +0.07076883 0.1475052 0.002268731 +0.1119241 0.1475052 0.002268731 +0.1475052 0.1475052 0.002268731 +0.1846606 0.1475052 0.002268731 +0.2245119 0.1475052 0.002268731 +0.2679612 0.1475052 0.002268731 +0.3158431 0.1475052 0.002268731 +0.3689944 0.1475052 0.002268731 +0.4282948 0.1475052 0.002268731 +0.494694 0.1475052 0.002268731 +0.5692344 0.1475052 0.002268731 +0.6530715 0.1475052 0.002268731 +0.7474945 0.1475052 0.002268731 +0.8539475 0.1475052 0.002268731 +0.974052 0.1475052 0.002268731 +1.113885 0.1475052 0.002268731 +1.27456 0.1475052 0.002268731 +1.458117 0.1475052 0.002268731 +1.667858 0.1475052 0.002268731 +1.907556 0.1475052 0.002268731 +2.181521 0.1475052 0.002268731 +2.494678 0.1475052 0.002268731 +2.852659 0.1475052 0.002268731 +3.261896 0.1475052 0.002268731 +3.729748 0.1475052 0.002268731 +4.264621 0.1475052 0.002268731 +4.876131 0.1475052 0.002268731 +5.575266 0.1475052 0.002268731 +6.374593 0.1475052 0.002268731 +0 0.1846606 0.002268731 +0 0.1846606 0.002268731 +0 0.1846606 0.002268731 +0.002268731 0.1846606 0.002268731 +0.07076883 0.1846606 0.002268731 +0.1119241 0.1846606 0.002268731 +0.1475052 0.1846606 0.002268731 +0.1846606 0.1846606 0.002268731 +0.2245119 0.1846606 0.002268731 +0.2679612 0.1846606 0.002268731 +0.3158431 0.1846606 0.002268731 +0.3689944 0.1846606 0.002268731 +0.4282948 0.1846606 0.002268731 +0.494694 0.1846606 0.002268731 +0.5692344 0.1846606 0.002268731 +0.6530715 0.1846606 0.002268731 +0.7474945 0.1846606 0.002268731 +0.8539475 0.1846606 0.002268731 +0.974052 0.1846606 0.002268731 +1.113885 0.1846606 0.002268731 +1.27456 0.1846606 0.002268731 +1.458117 0.1846606 0.002268731 +1.667858 0.1846606 0.002268731 +1.907556 0.1846606 0.002268731 +2.181521 0.1846606 0.002268731 +2.494678 0.1846606 0.002268731 +2.852659 0.1846606 0.002268731 +3.261896 0.1846606 0.002268731 +3.729748 0.1846606 0.002268731 +4.264621 0.1846606 0.002268731 +4.876131 0.1846606 0.002268731 +5.575266 0.1846606 0.002268731 +6.374593 0.1846606 0.002268731 +0 0.2245119 0.002268731 +0 0.2245119 0.002268731 +0 0.2245119 0.002268731 +0.002268731 0.2245119 0.002268731 +0.07076883 0.2245119 0.002268731 +0.1119241 0.2245119 0.002268731 +0.1475052 0.2245119 0.002268731 +0.1846606 0.2245119 0.002268731 +0.2245119 0.2245119 0.002268731 +0.2679612 0.2245119 0.002268731 +0.3158431 0.2245119 0.002268731 +0.3689944 0.2245119 0.002268731 +0.4282948 0.2245119 0.002268731 +0.494694 0.2245119 0.002268731 +0.5692344 0.2245119 0.002268731 +0.6530715 0.2245119 0.002268731 +0.7474945 0.2245119 0.002268731 +0.8539475 0.2245119 0.002268731 +0.974052 0.2245119 0.002268731 +1.113885 0.2245119 0.002268731 +1.27456 0.2245119 0.002268731 +1.458117 0.2245119 0.002268731 +1.667858 0.2245119 0.002268731 +1.907556 0.2245119 0.002268731 +2.181521 0.2245119 0.002268731 +2.494678 0.2245119 0.002268731 +2.852659 0.2245119 0.002268731 +3.261896 0.2245119 0.002268731 +3.729748 0.2245119 0.002268731 +4.264621 0.2245119 0.002268731 +4.876131 0.2245119 0.002268731 +5.575266 0.2245119 0.002268731 +6.374593 0.2245119 0.002268731 +0 0.2679612 0.002268731 +0 0.2679612 0.002268731 +0 0.2679612 0.002268731 +0.002268731 0.2679612 0.002268731 +0.07076883 0.2679612 0.002268731 +0.1119241 0.2679612 0.002268731 +0.1475052 0.2679612 0.002268731 +0.1846606 0.2679612 0.002268731 +0.2245119 0.2679612 0.002268731 +0.2679612 0.2679612 0.002268731 +0.3158431 0.2679612 0.002268731 +0.3689944 0.2679612 0.002268731 +0.4282948 0.2679612 0.002268731 +0.494694 0.2679612 0.002268731 +0.5692344 0.2679612 0.002268731 +0.6530715 0.2679612 0.002268731 +0.7474945 0.2679612 0.002268731 +0.8539475 0.2679612 0.002268731 +0.974052 0.2679612 0.002268731 +1.113885 0.2679612 0.002268731 +1.27456 0.2679612 0.002268731 +1.458117 0.2679612 0.002268731 +1.667858 0.2679612 0.002268731 +1.907556 0.2679612 0.002268731 +2.181521 0.2679612 0.002268731 +2.494678 0.2679612 0.002268731 +2.852659 0.2679612 0.002268731 +3.261896 0.2679612 0.002268731 +3.729748 0.2679612 0.002268731 +4.264621 0.2679612 0.002268731 +4.876131 0.2679612 0.002268731 +5.575266 0.2679612 0.002268731 +6.374593 0.2679612 0.002268731 +0 0.3158431 0.002268731 +0 0.3158431 0.002268731 +0 0.3158431 0.002268731 +0.002268731 0.3158431 0.002268731 +0.07076883 0.3158431 0.002268731 +0.1119241 0.3158431 0.002268731 +0.1475052 0.3158431 0.002268731 +0.1846606 0.3158431 0.002268731 +0.2245119 0.3158431 0.002268731 +0.2679612 0.3158431 0.002268731 +0.3158431 0.3158431 0.002268731 +0.3689944 0.3158431 0.002268731 +0.4282948 0.3158431 0.002268731 +0.494694 0.3158431 0.002268731 +0.5692344 0.3158431 0.002268731 +0.6530715 0.3158431 0.002268731 +0.7474945 0.3158431 0.002268731 +0.8539475 0.3158431 0.002268731 +0.974052 0.3158431 0.002268731 +1.113885 0.3158431 0.002268731 +1.27456 0.3158431 0.002268731 +1.458117 0.3158431 0.002268731 +1.667858 0.3158431 0.002268731 +1.907556 0.3158431 0.002268731 +2.181521 0.3158431 0.002268731 +2.494678 0.3158431 0.002268731 +2.852659 0.3158431 0.002268731 +3.261896 0.3158431 0.002268731 +3.729748 0.3158431 0.002268731 +4.264621 0.3158431 0.002268731 +4.876131 0.3158431 0.002268731 +5.575266 0.3158431 0.002268731 +6.374593 0.3158431 0.002268731 +0 0.3689944 0.002268731 +0 0.3689944 0.002268731 +0 0.3689944 0.002268731 +0.002268731 0.3689944 0.002268731 +0.07076883 0.3689944 0.002268731 +0.1119241 0.3689944 0.002268731 +0.1475052 0.3689944 0.002268731 +0.1846606 0.3689944 0.002268731 +0.2245119 0.3689944 0.002268731 +0.2679612 0.3689944 0.002268731 +0.3158431 0.3689944 0.002268731 +0.3689944 0.3689944 0.002268731 +0.4282948 0.3689944 0.002268731 +0.494694 0.3689944 0.002268731 +0.5692344 0.3689944 0.002268731 +0.6530715 0.3689944 0.002268731 +0.7474945 0.3689944 0.002268731 +0.8539475 0.3689944 0.002268731 +0.974052 0.3689944 0.002268731 +1.113885 0.3689944 0.002268731 +1.27456 0.3689944 0.002268731 +1.458117 0.3689944 0.002268731 +1.667858 0.3689944 0.002268731 +1.907556 0.3689944 0.002268731 +2.181521 0.3689944 0.002268731 +2.494678 0.3689944 0.002268731 +2.852659 0.3689944 0.002268731 +3.261896 0.3689944 0.002268731 +3.729748 0.3689944 0.002268731 +4.264621 0.3689944 0.002268731 +4.876131 0.3689944 0.002268731 +5.575266 0.3689944 0.002268731 +6.374593 0.3689944 0.002268731 +0 0.4282948 0.002268731 +0 0.4282948 0.002268731 +0 0.4282948 0.002268731 +0.002268731 0.4282948 0.002268731 +0.07076883 0.4282948 0.002268731 +0.1119241 0.4282948 0.002268731 +0.1475052 0.4282948 0.002268731 +0.1846606 0.4282948 0.002268731 +0.2245119 0.4282948 0.002268731 +0.2679612 0.4282948 0.002268731 +0.3158431 0.4282948 0.002268731 +0.3689944 0.4282948 0.002268731 +0.4282948 0.4282948 0.002268731 +0.494694 0.4282948 0.002268731 +0.5692344 0.4282948 0.002268731 +0.6530715 0.4282948 0.002268731 +0.7474945 0.4282948 0.002268731 +0.8539475 0.4282948 0.002268731 +0.974052 0.4282948 0.002268731 +1.113885 0.4282948 0.002268731 +1.27456 0.4282948 0.002268731 +1.458117 0.4282948 0.002268731 +1.667858 0.4282948 0.002268731 +1.907556 0.4282948 0.002268731 +2.181521 0.4282948 0.002268731 +2.494678 0.4282948 0.002268731 +2.852659 0.4282948 0.002268731 +3.261896 0.4282948 0.002268731 +3.729748 0.4282948 0.002268731 +4.264621 0.4282948 0.002268731 +4.876131 0.4282948 0.002268731 +5.575266 0.4282948 0.002268731 +6.374593 0.4282948 0.002268731 +0 0.494694 0.002268731 +0 0.494694 0.002268731 +0 0.494694 0.002268731 +0.002268731 0.494694 0.002268731 +0.07076883 0.494694 0.002268731 +0.1119241 0.494694 0.002268731 +0.1475052 0.494694 0.002268731 +0.1846606 0.494694 0.002268731 +0.2245119 0.494694 0.002268731 +0.2679612 0.494694 0.002268731 +0.3158431 0.494694 0.002268731 +0.3689944 0.494694 0.002268731 +0.4282948 0.494694 0.002268731 +0.494694 0.494694 0.002268731 +0.5692344 0.494694 0.002268731 +0.6530715 0.494694 0.002268731 +0.7474945 0.494694 0.002268731 +0.8539475 0.494694 0.002268731 +0.974052 0.494694 0.002268731 +1.113885 0.494694 0.002268731 +1.27456 0.494694 0.002268731 +1.458117 0.494694 0.002268731 +1.667858 0.494694 0.002268731 +1.907556 0.494694 0.002268731 +2.181521 0.494694 0.002268731 +2.494678 0.494694 0.002268731 +2.852659 0.494694 0.002268731 +3.261896 0.494694 0.002268731 +3.729748 0.494694 0.002268731 +4.264621 0.494694 0.002268731 +4.876131 0.494694 0.002268731 +5.575266 0.494694 0.002268731 +6.374593 0.494694 0.002268731 +0 0.5692344 0.002268731 +0 0.5692344 0.002268731 +0 0.5692344 0.002268731 +0.002268731 0.5692344 0.002268731 +0.07076883 0.5692344 0.002268731 +0.1119241 0.5692344 0.002268731 +0.1475052 0.5692344 0.002268731 +0.1846606 0.5692344 0.002268731 +0.2245119 0.5692344 0.002268731 +0.2679612 0.5692344 0.002268731 +0.3158431 0.5692344 0.002268731 +0.3689944 0.5692344 0.002268731 +0.4282948 0.5692344 0.002268731 +0.494694 0.5692344 0.002268731 +0.5692344 0.5692344 0.002268731 +0.6530715 0.5692344 0.002268731 +0.7474945 0.5692344 0.002268731 +0.8539475 0.5692344 0.002268731 +0.974052 0.5692344 0.002268731 +1.113885 0.5692344 0.002268731 +1.27456 0.5692344 0.002268731 +1.458117 0.5692344 0.002268731 +1.667858 0.5692344 0.002268731 +1.907556 0.5692344 0.002268731 +2.181521 0.5692344 0.002268731 +2.494678 0.5692344 0.002268731 +2.852659 0.5692344 0.002268731 +3.261896 0.5692344 0.002268731 +3.729748 0.5692344 0.002268731 +4.264621 0.5692344 0.002268731 +4.876131 0.5692344 0.002268731 +5.575266 0.5692344 0.002268731 +6.374593 0.5692344 0.002268731 +0 0.6530715 0.002268731 +0 0.6530715 0.002268731 +0 0.6530715 0.002268731 +0.002268731 0.6530715 0.002268731 +0.07076883 0.6530715 0.002268731 +0.1119241 0.6530715 0.002268731 +0.1475052 0.6530715 0.002268731 +0.1846606 0.6530715 0.002268731 +0.2245119 0.6530715 0.002268731 +0.2679612 0.6530715 0.002268731 +0.3158431 0.6530715 0.002268731 +0.3689944 0.6530715 0.002268731 +0.4282948 0.6530715 0.002268731 +0.494694 0.6530715 0.002268731 +0.5692344 0.6530715 0.002268731 +0.6530715 0.6530715 0.002268731 +0.7474945 0.6530715 0.002268731 +0.8539475 0.6530715 0.002268731 +0.974052 0.6530715 0.002268731 +1.113885 0.6530715 0.002268731 +1.27456 0.6530715 0.002268731 +1.458117 0.6530715 0.002268731 +1.667858 0.6530715 0.002268731 +1.907556 0.6530715 0.002268731 +2.181521 0.6530715 0.002268731 +2.494678 0.6530715 0.002268731 +2.852659 0.6530715 0.002268731 +3.261896 0.6530715 0.002268731 +3.729748 0.6530715 0.002268731 +4.264621 0.6530715 0.002268731 +4.876131 0.6530715 0.002268731 +5.575266 0.6530715 0.002268731 +6.374593 0.6530715 0.002268731 +0 0.7474945 0.002268731 +0 0.7474945 0.002268731 +0 0.7474945 0.002268731 +0.002268731 0.7474945 0.002268731 +0.07076883 0.7474945 0.002268731 +0.1119241 0.7474945 0.002268731 +0.1475052 0.7474945 0.002268731 +0.1846606 0.7474945 0.002268731 +0.2245119 0.7474945 0.002268731 +0.2679612 0.7474945 0.002268731 +0.3158431 0.7474945 0.002268731 +0.3689944 0.7474945 0.002268731 +0.4282948 0.7474945 0.002268731 +0.494694 0.7474945 0.002268731 +0.5692344 0.7474945 0.002268731 +0.6530715 0.7474945 0.002268731 +0.7474945 0.7474945 0.002268731 +0.8539475 0.7474945 0.002268731 +0.974052 0.7474945 0.002268731 +1.113885 0.7474945 0.002268731 +1.27456 0.7474945 0.002268731 +1.458117 0.7474945 0.002268731 +1.667858 0.7474945 0.002268731 +1.907556 0.7474945 0.002268731 +2.181521 0.7474945 0.002268731 +2.494678 0.7474945 0.002268731 +2.852659 0.7474945 0.002268731 +3.261896 0.7474945 0.002268731 +3.729748 0.7474945 0.002268731 +4.264621 0.7474945 0.002268731 +4.876131 0.7474945 0.002268731 +5.575266 0.7474945 0.002268731 +6.374593 0.7474945 0.002268731 +0 0.8539475 0.002268731 +0 0.8539475 0.002268731 +0 0.8539475 0.002268731 +0.002268731 0.8539475 0.002268731 +0.07076883 0.8539475 0.002268731 +0.1119241 0.8539475 0.002268731 +0.1475052 0.8539475 0.002268731 +0.1846606 0.8539475 0.002268731 +0.2245119 0.8539475 0.002268731 +0.2679612 0.8539475 0.002268731 +0.3158431 0.8539475 0.002268731 +0.3689944 0.8539475 0.002268731 +0.4282948 0.8539475 0.002268731 +0.494694 0.8539475 0.002268731 +0.5692344 0.8539475 0.002268731 +0.6530715 0.8539475 0.002268731 +0.7474945 0.8539475 0.002268731 +0.8539475 0.8539475 0.002268731 +0.974052 0.8539475 0.002268731 +1.113885 0.8539475 0.002268731 +1.27456 0.8539475 0.002268731 +1.458117 0.8539475 0.002268731 +1.667858 0.8539475 0.002268731 +1.907556 0.8539475 0.002268731 +2.181521 0.8539475 0.002268731 +2.494678 0.8539475 0.002268731 +2.852659 0.8539475 0.002268731 +3.261896 0.8539475 0.002268731 +3.729748 0.8539475 0.002268731 +4.264621 0.8539475 0.002268731 +4.876131 0.8539475 0.002268731 +5.575266 0.8539475 0.002268731 +6.374593 0.8539475 0.002268731 +0 0.974052 0.002268731 +0 0.974052 0.002268731 +0 0.974052 0.002268731 +0.002268731 0.974052 0.002268731 +0.07076883 0.974052 0.002268731 +0.1119241 0.974052 0.002268731 +0.1475052 0.974052 0.002268731 +0.1846606 0.974052 0.002268731 +0.2245119 0.974052 0.002268731 +0.2679612 0.974052 0.002268731 +0.3158431 0.974052 0.002268731 +0.3689944 0.974052 0.002268731 +0.4282948 0.974052 0.002268731 +0.494694 0.974052 0.002268731 +0.5692344 0.974052 0.002268731 +0.6530715 0.974052 0.002268731 +0.7474945 0.974052 0.002268731 +0.8539475 0.974052 0.002268731 +0.974052 0.974052 0.002268731 +1.113885 0.974052 0.002268731 +1.27456 0.974052 0.002268731 +1.458117 0.974052 0.002268731 +1.667858 0.974052 0.002268731 +1.907556 0.974052 0.002268731 +2.181521 0.974052 0.002268731 +2.494678 0.974052 0.002268731 +2.852659 0.974052 0.002268731 +3.261896 0.974052 0.002268731 +3.729748 0.974052 0.002268731 +4.264621 0.974052 0.002268731 +4.876131 0.974052 0.002268731 +5.575266 0.974052 0.002268731 +6.374593 0.974052 0.002268731 +0 1.113885 0.002268731 +0 1.113885 0.002268731 +0 1.113885 0.002268731 +0.002268731 1.113885 0.002268731 +0.07076883 1.113885 0.002268731 +0.1119241 1.113885 0.002268731 +0.1475052 1.113885 0.002268731 +0.1846606 1.113885 0.002268731 +0.2245119 1.113885 0.002268731 +0.2679612 1.113885 0.002268731 +0.3158431 1.113885 0.002268731 +0.3689944 1.113885 0.002268731 +0.4282948 1.113885 0.002268731 +0.494694 1.113885 0.002268731 +0.5692344 1.113885 0.002268731 +0.6530715 1.113885 0.002268731 +0.7474945 1.113885 0.002268731 +0.8539475 1.113885 0.002268731 +0.974052 1.113885 0.002268731 +1.113885 1.113885 0.002268731 +1.27456 1.113885 0.002268731 +1.458117 1.113885 0.002268731 +1.667858 1.113885 0.002268731 +1.907556 1.113885 0.002268731 +2.181521 1.113885 0.002268731 +2.494678 1.113885 0.002268731 +2.852659 1.113885 0.002268731 +3.261896 1.113885 0.002268731 +3.729748 1.113885 0.002268731 +4.264621 1.113885 0.002268731 +4.876131 1.113885 0.002268731 +5.575266 1.113885 0.002268731 +6.374593 1.113885 0.002268731 +0 1.27456 0.002268731 +0 1.27456 0.002268731 +0 1.27456 0.002268731 +0.002268731 1.27456 0.002268731 +0.07076883 1.27456 0.002268731 +0.1119241 1.27456 0.002268731 +0.1475052 1.27456 0.002268731 +0.1846606 1.27456 0.002268731 +0.2245119 1.27456 0.002268731 +0.2679612 1.27456 0.002268731 +0.3158431 1.27456 0.002268731 +0.3689944 1.27456 0.002268731 +0.4282948 1.27456 0.002268731 +0.494694 1.27456 0.002268731 +0.5692344 1.27456 0.002268731 +0.6530715 1.27456 0.002268731 +0.7474945 1.27456 0.002268731 +0.8539475 1.27456 0.002268731 +0.974052 1.27456 0.002268731 +1.113885 1.27456 0.002268731 +1.27456 1.27456 0.002268731 +1.458117 1.27456 0.002268731 +1.667858 1.27456 0.002268731 +1.907556 1.27456 0.002268731 +2.181521 1.27456 0.002268731 +2.494678 1.27456 0.002268731 +2.852659 1.27456 0.002268731 +3.261896 1.27456 0.002268731 +3.729748 1.27456 0.002268731 +4.264621 1.27456 0.002268731 +4.876131 1.27456 0.002268731 +5.575266 1.27456 0.002268731 +6.374593 1.27456 0.002268731 +0 1.458117 0.002268731 +0 1.458117 0.002268731 +0 1.458117 0.002268731 +0.002268731 1.458117 0.002268731 +0.07076883 1.458117 0.002268731 +0.1119241 1.458117 0.002268731 +0.1475052 1.458117 0.002268731 +0.1846606 1.458117 0.002268731 +0.2245119 1.458117 0.002268731 +0.2679612 1.458117 0.002268731 +0.3158431 1.458117 0.002268731 +0.3689944 1.458117 0.002268731 +0.4282948 1.458117 0.002268731 +0.494694 1.458117 0.002268731 +0.5692344 1.458117 0.002268731 +0.6530715 1.458117 0.002268731 +0.7474945 1.458117 0.002268731 +0.8539475 1.458117 0.002268731 +0.974052 1.458117 0.002268731 +1.113885 1.458117 0.002268731 +1.27456 1.458117 0.002268731 +1.458117 1.458117 0.002268731 +1.667858 1.458117 0.002268731 +1.907556 1.458117 0.002268731 +2.181521 1.458117 0.002268731 +2.494678 1.458117 0.002268731 +2.852659 1.458117 0.002268731 +3.261896 1.458117 0.002268731 +3.729748 1.458117 0.002268731 +4.264621 1.458117 0.002268731 +4.876131 1.458117 0.002268731 +5.575266 1.458117 0.002268731 +6.374593 1.458117 0.002268731 +0 1.667858 0.002268731 +0 1.667858 0.002268731 +0 1.667858 0.002268731 +0.002268731 1.667858 0.002268731 +0.07076883 1.667858 0.002268731 +0.1119241 1.667858 0.002268731 +0.1475052 1.667858 0.002268731 +0.1846606 1.667858 0.002268731 +0.2245119 1.667858 0.002268731 +0.2679612 1.667858 0.002268731 +0.3158431 1.667858 0.002268731 +0.3689944 1.667858 0.002268731 +0.4282948 1.667858 0.002268731 +0.494694 1.667858 0.002268731 +0.5692344 1.667858 0.002268731 +0.6530715 1.667858 0.002268731 +0.7474945 1.667858 0.002268731 +0.8539475 1.667858 0.002268731 +0.974052 1.667858 0.002268731 +1.113885 1.667858 0.002268731 +1.27456 1.667858 0.002268731 +1.458117 1.667858 0.002268731 +1.667858 1.667858 0.002268731 +1.907556 1.667858 0.002268731 +2.181521 1.667858 0.002268731 +2.494678 1.667858 0.002268731 +2.852659 1.667858 0.002268731 +3.261896 1.667858 0.002268731 +3.729748 1.667858 0.002268731 +4.264621 1.667858 0.002268731 +4.876131 1.667858 0.002268731 +5.575266 1.667858 0.002268731 +6.374593 1.667858 0.002268731 +0 1.907556 0.002268731 +0 1.907556 0.002268731 +0 1.907556 0.002268731 +0.002268731 1.907556 0.002268731 +0.07076883 1.907556 0.002268731 +0.1119241 1.907556 0.002268731 +0.1475052 1.907556 0.002268731 +0.1846606 1.907556 0.002268731 +0.2245119 1.907556 0.002268731 +0.2679612 1.907556 0.002268731 +0.3158431 1.907556 0.002268731 +0.3689944 1.907556 0.002268731 +0.4282948 1.907556 0.002268731 +0.494694 1.907556 0.002268731 +0.5692344 1.907556 0.002268731 +0.6530715 1.907556 0.002268731 +0.7474945 1.907556 0.002268731 +0.8539475 1.907556 0.002268731 +0.974052 1.907556 0.002268731 +1.113885 1.907556 0.002268731 +1.27456 1.907556 0.002268731 +1.458117 1.907556 0.002268731 +1.667858 1.907556 0.002268731 +1.907556 1.907556 0.002268731 +2.181521 1.907556 0.002268731 +2.494678 1.907556 0.002268731 +2.852659 1.907556 0.002268731 +3.261896 1.907556 0.002268731 +3.729748 1.907556 0.002268731 +4.264621 1.907556 0.002268731 +4.876131 1.907556 0.002268731 +5.575266 1.907556 0.002268731 +6.374593 1.907556 0.002268731 +0 2.181521 0.002268731 +0 2.181521 0.002268731 +0 2.181521 0.002268731 +0.002268731 2.181521 0.002268731 +0.07076883 2.181521 0.002268731 +0.1119241 2.181521 0.002268731 +0.1475052 2.181521 0.002268731 +0.1846606 2.181521 0.002268731 +0.2245119 2.181521 0.002268731 +0.2679612 2.181521 0.002268731 +0.3158431 2.181521 0.002268731 +0.3689944 2.181521 0.002268731 +0.4282948 2.181521 0.002268731 +0.494694 2.181521 0.002268731 +0.5692344 2.181521 0.002268731 +0.6530715 2.181521 0.002268731 +0.7474945 2.181521 0.002268731 +0.8539475 2.181521 0.002268731 +0.974052 2.181521 0.002268731 +1.113885 2.181521 0.002268731 +1.27456 2.181521 0.002268731 +1.458117 2.181521 0.002268731 +1.667858 2.181521 0.002268731 +1.907556 2.181521 0.002268731 +2.181521 2.181521 0.002268731 +2.494678 2.181521 0.002268731 +2.852659 2.181521 0.002268731 +3.261896 2.181521 0.002268731 +3.729748 2.181521 0.002268731 +4.264621 2.181521 0.002268731 +4.876131 2.181521 0.002268731 +5.575266 2.181521 0.002268731 +6.374593 2.181521 0.002268731 +0 2.494678 0.002268731 +0 2.494678 0.002268731 +0 2.494678 0.002268731 +0.002268731 2.494678 0.002268731 +0.07076883 2.494678 0.002268731 +0.1119241 2.494678 0.002268731 +0.1475052 2.494678 0.002268731 +0.1846606 2.494678 0.002268731 +0.2245119 2.494678 0.002268731 +0.2679612 2.494678 0.002268731 +0.3158431 2.494678 0.002268731 +0.3689944 2.494678 0.002268731 +0.4282948 2.494678 0.002268731 +0.494694 2.494678 0.002268731 +0.5692344 2.494678 0.002268731 +0.6530715 2.494678 0.002268731 +0.7474945 2.494678 0.002268731 +0.8539475 2.494678 0.002268731 +0.974052 2.494678 0.002268731 +1.113885 2.494678 0.002268731 +1.27456 2.494678 0.002268731 +1.458117 2.494678 0.002268731 +1.667858 2.494678 0.002268731 +1.907556 2.494678 0.002268731 +2.181521 2.494678 0.002268731 +2.494678 2.494678 0.002268731 +2.852659 2.494678 0.002268731 +3.261896 2.494678 0.002268731 +3.729748 2.494678 0.002268731 +4.264621 2.494678 0.002268731 +4.876131 2.494678 0.002268731 +5.575266 2.494678 0.002268731 +6.374593 2.494678 0.002268731 +0 2.852659 0.002268731 +0 2.852659 0.002268731 +0 2.852659 0.002268731 +0.002268731 2.852659 0.002268731 +0.07076883 2.852659 0.002268731 +0.1119241 2.852659 0.002268731 +0.1475052 2.852659 0.002268731 +0.1846606 2.852659 0.002268731 +0.2245119 2.852659 0.002268731 +0.2679612 2.852659 0.002268731 +0.3158431 2.852659 0.002268731 +0.3689944 2.852659 0.002268731 +0.4282948 2.852659 0.002268731 +0.494694 2.852659 0.002268731 +0.5692344 2.852659 0.002268731 +0.6530715 2.852659 0.002268731 +0.7474945 2.852659 0.002268731 +0.8539475 2.852659 0.002268731 +0.974052 2.852659 0.002268731 +1.113885 2.852659 0.002268731 +1.27456 2.852659 0.002268731 +1.458117 2.852659 0.002268731 +1.667858 2.852659 0.002268731 +1.907556 2.852659 0.002268731 +2.181521 2.852659 0.002268731 +2.494678 2.852659 0.002268731 +2.852659 2.852659 0.002268731 +3.261896 2.852659 0.002268731 +3.729748 2.852659 0.002268731 +4.264621 2.852659 0.002268731 +4.876131 2.852659 0.002268731 +5.575266 2.852659 0.002268731 +6.374593 2.852659 0.002268731 +0 3.261896 0.002268731 +0 3.261896 0.002268731 +0 3.261896 0.002268731 +0.002268731 3.261896 0.002268731 +0.07076883 3.261896 0.002268731 +0.1119241 3.261896 0.002268731 +0.1475052 3.261896 0.002268731 +0.1846606 3.261896 0.002268731 +0.2245119 3.261896 0.002268731 +0.2679612 3.261896 0.002268731 +0.3158431 3.261896 0.002268731 +0.3689944 3.261896 0.002268731 +0.4282948 3.261896 0.002268731 +0.494694 3.261896 0.002268731 +0.5692344 3.261896 0.002268731 +0.6530715 3.261896 0.002268731 +0.7474945 3.261896 0.002268731 +0.8539475 3.261896 0.002268731 +0.974052 3.261896 0.002268731 +1.113885 3.261896 0.002268731 +1.27456 3.261896 0.002268731 +1.458117 3.261896 0.002268731 +1.667858 3.261896 0.002268731 +1.907556 3.261896 0.002268731 +2.181521 3.261896 0.002268731 +2.494678 3.261896 0.002268731 +2.852659 3.261896 0.002268731 +3.261896 3.261896 0.002268731 +3.729748 3.261896 0.002268731 +4.264621 3.261896 0.002268731 +4.876131 3.261896 0.002268731 +5.575266 3.261896 0.002268731 +6.374593 3.261896 0.002268731 +0 3.729748 0.002268731 +0 3.729748 0.002268731 +0 3.729748 0.002268731 +0.002268731 3.729748 0.002268731 +0.07076883 3.729748 0.002268731 +0.1119241 3.729748 0.002268731 +0.1475052 3.729748 0.002268731 +0.1846606 3.729748 0.002268731 +0.2245119 3.729748 0.002268731 +0.2679612 3.729748 0.002268731 +0.3158431 3.729748 0.002268731 +0.3689944 3.729748 0.002268731 +0.4282948 3.729748 0.002268731 +0.494694 3.729748 0.002268731 +0.5692344 3.729748 0.002268731 +0.6530715 3.729748 0.002268731 +0.7474945 3.729748 0.002268731 +0.8539475 3.729748 0.002268731 +0.974052 3.729748 0.002268731 +1.113885 3.729748 0.002268731 +1.27456 3.729748 0.002268731 +1.458117 3.729748 0.002268731 +1.667858 3.729748 0.002268731 +1.907556 3.729748 0.002268731 +2.181521 3.729748 0.002268731 +2.494678 3.729748 0.002268731 +2.852659 3.729748 0.002268731 +3.261896 3.729748 0.002268731 +3.729748 3.729748 0.002268731 +4.264621 3.729748 0.002268731 +4.876131 3.729748 0.002268731 +5.575266 3.729748 0.002268731 +6.374593 3.729748 0.002268731 +0 4.264621 0.002268731 +0 4.264621 0.002268731 +0 4.264621 0.002268731 +0.002268731 4.264621 0.002268731 +0.07076883 4.264621 0.002268731 +0.1119241 4.264621 0.002268731 +0.1475052 4.264621 0.002268731 +0.1846606 4.264621 0.002268731 +0.2245119 4.264621 0.002268731 +0.2679612 4.264621 0.002268731 +0.3158431 4.264621 0.002268731 +0.3689944 4.264621 0.002268731 +0.4282948 4.264621 0.002268731 +0.494694 4.264621 0.002268731 +0.5692344 4.264621 0.002268731 +0.6530715 4.264621 0.002268731 +0.7474945 4.264621 0.002268731 +0.8539475 4.264621 0.002268731 +0.974052 4.264621 0.002268731 +1.113885 4.264621 0.002268731 +1.27456 4.264621 0.002268731 +1.458117 4.264621 0.002268731 +1.667858 4.264621 0.002268731 +1.907556 4.264621 0.002268731 +2.181521 4.264621 0.002268731 +2.494678 4.264621 0.002268731 +2.852659 4.264621 0.002268731 +3.261896 4.264621 0.002268731 +3.729748 4.264621 0.002268731 +4.264621 4.264621 0.002268731 +4.876131 4.264621 0.002268731 +5.575266 4.264621 0.002268731 +6.374593 4.264621 0.002268731 +0 4.876131 0.002268731 +0 4.876131 0.002268731 +0 4.876131 0.002268731 +0.002268731 4.876131 0.002268731 +0.07076883 4.876131 0.002268731 +0.1119241 4.876131 0.002268731 +0.1475052 4.876131 0.002268731 +0.1846606 4.876131 0.002268731 +0.2245119 4.876131 0.002268731 +0.2679612 4.876131 0.002268731 +0.3158431 4.876131 0.002268731 +0.3689944 4.876131 0.002268731 +0.4282948 4.876131 0.002268731 +0.494694 4.876131 0.002268731 +0.5692344 4.876131 0.002268731 +0.6530715 4.876131 0.002268731 +0.7474945 4.876131 0.002268731 +0.8539475 4.876131 0.002268731 +0.974052 4.876131 0.002268731 +1.113885 4.876131 0.002268731 +1.27456 4.876131 0.002268731 +1.458117 4.876131 0.002268731 +1.667858 4.876131 0.002268731 +1.907556 4.876131 0.002268731 +2.181521 4.876131 0.002268731 +2.494678 4.876131 0.002268731 +2.852659 4.876131 0.002268731 +3.261896 4.876131 0.002268731 +3.729748 4.876131 0.002268731 +4.264621 4.876131 0.002268731 +4.876131 4.876131 0.002268731 +5.575266 4.876131 0.002268731 +6.374593 4.876131 0.002268731 +0 5.575266 0.002268731 +0 5.575266 0.002268731 +0 5.575266 0.002268731 +0.002268731 5.575266 0.002268731 +0.07076883 5.575266 0.002268731 +0.1119241 5.575266 0.002268731 +0.1475052 5.575266 0.002268731 +0.1846606 5.575266 0.002268731 +0.2245119 5.575266 0.002268731 +0.2679612 5.575266 0.002268731 +0.3158431 5.575266 0.002268731 +0.3689944 5.575266 0.002268731 +0.4282948 5.575266 0.002268731 +0.494694 5.575266 0.002268731 +0.5692344 5.575266 0.002268731 +0.6530715 5.575266 0.002268731 +0.7474945 5.575266 0.002268731 +0.8539475 5.575266 0.002268731 +0.974052 5.575266 0.002268731 +1.113885 5.575266 0.002268731 +1.27456 5.575266 0.002268731 +1.458117 5.575266 0.002268731 +1.667858 5.575266 0.002268731 +1.907556 5.575266 0.002268731 +2.181521 5.575266 0.002268731 +2.494678 5.575266 0.002268731 +2.852659 5.575266 0.002268731 +3.261896 5.575266 0.002268731 +3.729748 5.575266 0.002268731 +4.264621 5.575266 0.002268731 +4.876131 5.575266 0.002268731 +5.575266 5.575266 0.002268731 +6.374593 5.575266 0.002268731 +0 6.374593 0.002268731 +0 6.374593 0.002268731 +0 6.374593 0.002268731 +0.002268731 6.374593 0.002268731 +0.07076883 6.374593 0.002268731 +0.1119241 6.374593 0.002268731 +0.1475052 6.374593 0.002268731 +0.1846606 6.374593 0.002268731 +0.2245119 6.374593 0.002268731 +0.2679612 6.374593 0.002268731 +0.3158431 6.374593 0.002268731 +0.3689944 6.374593 0.002268731 +0.4282948 6.374593 0.002268731 +0.494694 6.374593 0.002268731 +0.5692344 6.374593 0.002268731 +0.6530715 6.374593 0.002268731 +0.7474945 6.374593 0.002268731 +0.8539475 6.374593 0.002268731 +0.974052 6.374593 0.002268731 +1.113885 6.374593 0.002268731 +1.27456 6.374593 0.002268731 +1.458117 6.374593 0.002268731 +1.667858 6.374593 0.002268731 +1.907556 6.374593 0.002268731 +2.181521 6.374593 0.002268731 +2.494678 6.374593 0.002268731 +2.852659 6.374593 0.002268731 +3.261896 6.374593 0.002268731 +3.729748 6.374593 0.002268731 +4.264621 6.374593 0.002268731 +4.876131 6.374593 0.002268731 +5.575266 6.374593 0.002268731 +6.374593 6.374593 0.002268731 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0.002268731 0.07076883 +0 0.002268731 0.07076883 +0 0.002268731 0.07076883 +0.002268731 0.002268731 0.07076883 +0.07076883 0.002268731 0.07076883 +0.1119241 0.002268731 0.07076883 +0.1475052 0.002268731 0.07076883 +0.1846606 0.002268731 0.07076883 +0.2245119 0.002268731 0.07076883 +0.2679612 0.002268731 0.07076883 +0.3158431 0.002268731 0.07076883 +0.3689944 0.002268731 0.07076883 +0.4282948 0.002268731 0.07076883 +0.494694 0.002268731 0.07076883 +0.5692344 0.002268731 0.07076883 +0.6530715 0.002268731 0.07076883 +0.7474945 0.002268731 0.07076883 +0.8539475 0.002268731 0.07076883 +0.974052 0.002268731 0.07076883 +1.113885 0.002268731 0.07076883 +1.27456 0.002268731 0.07076883 +1.458117 0.002268731 0.07076883 +1.667858 0.002268731 0.07076883 +1.907556 0.002268731 0.07076883 +2.181521 0.002268731 0.07076883 +2.494678 0.002268731 0.07076883 +2.852659 0.002268731 0.07076883 +3.261896 0.002268731 0.07076883 +3.729748 0.002268731 0.07076883 +4.264621 0.002268731 0.07076883 +4.876131 0.002268731 0.07076883 +5.575266 0.002268731 0.07076883 +6.374593 0.002268731 0.07076883 +0 0.07076883 0.07076883 +0 0.07076883 0.07076883 +0 0.07076883 0.07076883 +0.002268731 0.07076883 0.07076883 +0.07076883 0.07076883 0.07076883 +0.1119241 0.07076883 0.07076883 +0.1475052 0.07076883 0.07076883 +0.1846606 0.07076883 0.07076883 +0.2245119 0.07076883 0.07076883 +0.2679612 0.07076883 0.07076883 +0.3158431 0.07076883 0.07076883 +0.3689944 0.07076883 0.07076883 +0.4282948 0.07076883 0.07076883 +0.494694 0.07076883 0.07076883 +0.5692344 0.07076883 0.07076883 +0.6530715 0.07076883 0.07076883 +0.7474945 0.07076883 0.07076883 +0.8539475 0.07076883 0.07076883 +0.974052 0.07076883 0.07076883 +1.113885 0.07076883 0.07076883 +1.27456 0.07076883 0.07076883 +1.458117 0.07076883 0.07076883 +1.667858 0.07076883 0.07076883 +1.907556 0.07076883 0.07076883 +2.181521 0.07076883 0.07076883 +2.494678 0.07076883 0.07076883 +2.852659 0.07076883 0.07076883 +3.261896 0.07076883 0.07076883 +3.729748 0.07076883 0.07076883 +4.264621 0.07076883 0.07076883 +4.876131 0.07076883 0.07076883 +5.575266 0.07076883 0.07076883 +6.374593 0.07076883 0.07076883 +0 0.1119241 0.07076883 +0 0.1119241 0.07076883 +0 0.1119241 0.07076883 +0.002268731 0.1119241 0.07076883 +0.07076883 0.1119241 0.07076883 +0.1119241 0.1119241 0.07076883 +0.1475052 0.1119241 0.07076883 +0.1846606 0.1119241 0.07076883 +0.2245119 0.1119241 0.07076883 +0.2679612 0.1119241 0.07076883 +0.3158431 0.1119241 0.07076883 +0.3689944 0.1119241 0.07076883 +0.4282948 0.1119241 0.07076883 +0.494694 0.1119241 0.07076883 +0.5692344 0.1119241 0.07076883 +0.6530715 0.1119241 0.07076883 +0.7474945 0.1119241 0.07076883 +0.8539475 0.1119241 0.07076883 +0.974052 0.1119241 0.07076883 +1.113885 0.1119241 0.07076883 +1.27456 0.1119241 0.07076883 +1.458117 0.1119241 0.07076883 +1.667858 0.1119241 0.07076883 +1.907556 0.1119241 0.07076883 +2.181521 0.1119241 0.07076883 +2.494678 0.1119241 0.07076883 +2.852659 0.1119241 0.07076883 +3.261896 0.1119241 0.07076883 +3.729748 0.1119241 0.07076883 +4.264621 0.1119241 0.07076883 +4.876131 0.1119241 0.07076883 +5.575266 0.1119241 0.07076883 +6.374593 0.1119241 0.07076883 +0 0.1475052 0.07076883 +0 0.1475052 0.07076883 +0 0.1475052 0.07076883 +0.002268731 0.1475052 0.07076883 +0.07076883 0.1475052 0.07076883 +0.1119241 0.1475052 0.07076883 +0.1475052 0.1475052 0.07076883 +0.1846606 0.1475052 0.07076883 +0.2245119 0.1475052 0.07076883 +0.2679612 0.1475052 0.07076883 +0.3158431 0.1475052 0.07076883 +0.3689944 0.1475052 0.07076883 +0.4282948 0.1475052 0.07076883 +0.494694 0.1475052 0.07076883 +0.5692344 0.1475052 0.07076883 +0.6530715 0.1475052 0.07076883 +0.7474945 0.1475052 0.07076883 +0.8539475 0.1475052 0.07076883 +0.974052 0.1475052 0.07076883 +1.113885 0.1475052 0.07076883 +1.27456 0.1475052 0.07076883 +1.458117 0.1475052 0.07076883 +1.667858 0.1475052 0.07076883 +1.907556 0.1475052 0.07076883 +2.181521 0.1475052 0.07076883 +2.494678 0.1475052 0.07076883 +2.852659 0.1475052 0.07076883 +3.261896 0.1475052 0.07076883 +3.729748 0.1475052 0.07076883 +4.264621 0.1475052 0.07076883 +4.876131 0.1475052 0.07076883 +5.575266 0.1475052 0.07076883 +6.374593 0.1475052 0.07076883 +0 0.1846606 0.07076883 +0 0.1846606 0.07076883 +0 0.1846606 0.07076883 +0.002268731 0.1846606 0.07076883 +0.07076883 0.1846606 0.07076883 +0.1119241 0.1846606 0.07076883 +0.1475052 0.1846606 0.07076883 +0.1846606 0.1846606 0.07076883 +0.2245119 0.1846606 0.07076883 +0.2679612 0.1846606 0.07076883 +0.3158431 0.1846606 0.07076883 +0.3689944 0.1846606 0.07076883 +0.4282948 0.1846606 0.07076883 +0.494694 0.1846606 0.07076883 +0.5692344 0.1846606 0.07076883 +0.6530715 0.1846606 0.07076883 +0.7474945 0.1846606 0.07076883 +0.8539475 0.1846606 0.07076883 +0.974052 0.1846606 0.07076883 +1.113885 0.1846606 0.07076883 +1.27456 0.1846606 0.07076883 +1.458117 0.1846606 0.07076883 +1.667858 0.1846606 0.07076883 +1.907556 0.1846606 0.07076883 +2.181521 0.1846606 0.07076883 +2.494678 0.1846606 0.07076883 +2.852659 0.1846606 0.07076883 +3.261896 0.1846606 0.07076883 +3.729748 0.1846606 0.07076883 +4.264621 0.1846606 0.07076883 +4.876131 0.1846606 0.07076883 +5.575266 0.1846606 0.07076883 +6.374593 0.1846606 0.07076883 +0 0.2245119 0.07076883 +0 0.2245119 0.07076883 +0 0.2245119 0.07076883 +0.002268731 0.2245119 0.07076883 +0.07076883 0.2245119 0.07076883 +0.1119241 0.2245119 0.07076883 +0.1475052 0.2245119 0.07076883 +0.1846606 0.2245119 0.07076883 +0.2245119 0.2245119 0.07076883 +0.2679612 0.2245119 0.07076883 +0.3158431 0.2245119 0.07076883 +0.3689944 0.2245119 0.07076883 +0.4282948 0.2245119 0.07076883 +0.494694 0.2245119 0.07076883 +0.5692344 0.2245119 0.07076883 +0.6530715 0.2245119 0.07076883 +0.7474945 0.2245119 0.07076883 +0.8539475 0.2245119 0.07076883 +0.974052 0.2245119 0.07076883 +1.113885 0.2245119 0.07076883 +1.27456 0.2245119 0.07076883 +1.458117 0.2245119 0.07076883 +1.667858 0.2245119 0.07076883 +1.907556 0.2245119 0.07076883 +2.181521 0.2245119 0.07076883 +2.494678 0.2245119 0.07076883 +2.852659 0.2245119 0.07076883 +3.261896 0.2245119 0.07076883 +3.729748 0.2245119 0.07076883 +4.264621 0.2245119 0.07076883 +4.876131 0.2245119 0.07076883 +5.575266 0.2245119 0.07076883 +6.374593 0.2245119 0.07076883 +0 0.2679612 0.07076883 +0 0.2679612 0.07076883 +0 0.2679612 0.07076883 +0.002268731 0.2679612 0.07076883 +0.07076883 0.2679612 0.07076883 +0.1119241 0.2679612 0.07076883 +0.1475052 0.2679612 0.07076883 +0.1846606 0.2679612 0.07076883 +0.2245119 0.2679612 0.07076883 +0.2679612 0.2679612 0.07076883 +0.3158431 0.2679612 0.07076883 +0.3689944 0.2679612 0.07076883 +0.4282948 0.2679612 0.07076883 +0.494694 0.2679612 0.07076883 +0.5692344 0.2679612 0.07076883 +0.6530715 0.2679612 0.07076883 +0.7474945 0.2679612 0.07076883 +0.8539475 0.2679612 0.07076883 +0.974052 0.2679612 0.07076883 +1.113885 0.2679612 0.07076883 +1.27456 0.2679612 0.07076883 +1.458117 0.2679612 0.07076883 +1.667858 0.2679612 0.07076883 +1.907556 0.2679612 0.07076883 +2.181521 0.2679612 0.07076883 +2.494678 0.2679612 0.07076883 +2.852659 0.2679612 0.07076883 +3.261896 0.2679612 0.07076883 +3.729748 0.2679612 0.07076883 +4.264621 0.2679612 0.07076883 +4.876131 0.2679612 0.07076883 +5.575266 0.2679612 0.07076883 +6.374593 0.2679612 0.07076883 +0 0.3158431 0.07076883 +0 0.3158431 0.07076883 +0 0.3158431 0.07076883 +0.002268731 0.3158431 0.07076883 +0.07076883 0.3158431 0.07076883 +0.1119241 0.3158431 0.07076883 +0.1475052 0.3158431 0.07076883 +0.1846606 0.3158431 0.07076883 +0.2245119 0.3158431 0.07076883 +0.2679612 0.3158431 0.07076883 +0.3158431 0.3158431 0.07076883 +0.3689944 0.3158431 0.07076883 +0.4282948 0.3158431 0.07076883 +0.494694 0.3158431 0.07076883 +0.5692344 0.3158431 0.07076883 +0.6530715 0.3158431 0.07076883 +0.7474945 0.3158431 0.07076883 +0.8539475 0.3158431 0.07076883 +0.974052 0.3158431 0.07076883 +1.113885 0.3158431 0.07076883 +1.27456 0.3158431 0.07076883 +1.458117 0.3158431 0.07076883 +1.667858 0.3158431 0.07076883 +1.907556 0.3158431 0.07076883 +2.181521 0.3158431 0.07076883 +2.494678 0.3158431 0.07076883 +2.852659 0.3158431 0.07076883 +3.261896 0.3158431 0.07076883 +3.729748 0.3158431 0.07076883 +4.264621 0.3158431 0.07076883 +4.876131 0.3158431 0.07076883 +5.575266 0.3158431 0.07076883 +6.374593 0.3158431 0.07076883 +0 0.3689944 0.07076883 +0 0.3689944 0.07076883 +0 0.3689944 0.07076883 +0.002268731 0.3689944 0.07076883 +0.07076883 0.3689944 0.07076883 +0.1119241 0.3689944 0.07076883 +0.1475052 0.3689944 0.07076883 +0.1846606 0.3689944 0.07076883 +0.2245119 0.3689944 0.07076883 +0.2679612 0.3689944 0.07076883 +0.3158431 0.3689944 0.07076883 +0.3689944 0.3689944 0.07076883 +0.4282948 0.3689944 0.07076883 +0.494694 0.3689944 0.07076883 +0.5692344 0.3689944 0.07076883 +0.6530715 0.3689944 0.07076883 +0.7474945 0.3689944 0.07076883 +0.8539475 0.3689944 0.07076883 +0.974052 0.3689944 0.07076883 +1.113885 0.3689944 0.07076883 +1.27456 0.3689944 0.07076883 +1.458117 0.3689944 0.07076883 +1.667858 0.3689944 0.07076883 +1.907556 0.3689944 0.07076883 +2.181521 0.3689944 0.07076883 +2.494678 0.3689944 0.07076883 +2.852659 0.3689944 0.07076883 +3.261896 0.3689944 0.07076883 +3.729748 0.3689944 0.07076883 +4.264621 0.3689944 0.07076883 +4.876131 0.3689944 0.07076883 +5.575266 0.3689944 0.07076883 +6.374593 0.3689944 0.07076883 +0 0.4282948 0.07076883 +0 0.4282948 0.07076883 +0 0.4282948 0.07076883 +0.002268731 0.4282948 0.07076883 +0.07076883 0.4282948 0.07076883 +0.1119241 0.4282948 0.07076883 +0.1475052 0.4282948 0.07076883 +0.1846606 0.4282948 0.07076883 +0.2245119 0.4282948 0.07076883 +0.2679612 0.4282948 0.07076883 +0.3158431 0.4282948 0.07076883 +0.3689944 0.4282948 0.07076883 +0.4282948 0.4282948 0.07076883 +0.494694 0.4282948 0.07076883 +0.5692344 0.4282948 0.07076883 +0.6530715 0.4282948 0.07076883 +0.7474945 0.4282948 0.07076883 +0.8539475 0.4282948 0.07076883 +0.974052 0.4282948 0.07076883 +1.113885 0.4282948 0.07076883 +1.27456 0.4282948 0.07076883 +1.458117 0.4282948 0.07076883 +1.667858 0.4282948 0.07076883 +1.907556 0.4282948 0.07076883 +2.181521 0.4282948 0.07076883 +2.494678 0.4282948 0.07076883 +2.852659 0.4282948 0.07076883 +3.261896 0.4282948 0.07076883 +3.729748 0.4282948 0.07076883 +4.264621 0.4282948 0.07076883 +4.876131 0.4282948 0.07076883 +5.575266 0.4282948 0.07076883 +6.374593 0.4282948 0.07076883 +0 0.494694 0.07076883 +0 0.494694 0.07076883 +0 0.494694 0.07076883 +0.002268731 0.494694 0.07076883 +0.07076883 0.494694 0.07076883 +0.1119241 0.494694 0.07076883 +0.1475052 0.494694 0.07076883 +0.1846606 0.494694 0.07076883 +0.2245119 0.494694 0.07076883 +0.2679612 0.494694 0.07076883 +0.3158431 0.494694 0.07076883 +0.3689944 0.494694 0.07076883 +0.4282948 0.494694 0.07076883 +0.494694 0.494694 0.07076883 +0.5692344 0.494694 0.07076883 +0.6530715 0.494694 0.07076883 +0.7474945 0.494694 0.07076883 +0.8539475 0.494694 0.07076883 +0.974052 0.494694 0.07076883 +1.113885 0.494694 0.07076883 +1.27456 0.494694 0.07076883 +1.458117 0.494694 0.07076883 +1.667858 0.494694 0.07076883 +1.907556 0.494694 0.07076883 +2.181521 0.494694 0.07076883 +2.494678 0.494694 0.07076883 +2.852659 0.494694 0.07076883 +3.261896 0.494694 0.07076883 +3.729748 0.494694 0.07076883 +4.264621 0.494694 0.07076883 +4.876131 0.494694 0.07076883 +5.575266 0.494694 0.07076883 +6.374593 0.494694 0.07076883 +0 0.5692344 0.07076883 +0 0.5692344 0.07076883 +0 0.5692344 0.07076883 +0.002268731 0.5692344 0.07076883 +0.07076883 0.5692344 0.07076883 +0.1119241 0.5692344 0.07076883 +0.1475052 0.5692344 0.07076883 +0.1846606 0.5692344 0.07076883 +0.2245119 0.5692344 0.07076883 +0.2679612 0.5692344 0.07076883 +0.3158431 0.5692344 0.07076883 +0.3689944 0.5692344 0.07076883 +0.4282948 0.5692344 0.07076883 +0.494694 0.5692344 0.07076883 +0.5692344 0.5692344 0.07076883 +0.6530715 0.5692344 0.07076883 +0.7474945 0.5692344 0.07076883 +0.8539475 0.5692344 0.07076883 +0.974052 0.5692344 0.07076883 +1.113885 0.5692344 0.07076883 +1.27456 0.5692344 0.07076883 +1.458117 0.5692344 0.07076883 +1.667858 0.5692344 0.07076883 +1.907556 0.5692344 0.07076883 +2.181521 0.5692344 0.07076883 +2.494678 0.5692344 0.07076883 +2.852659 0.5692344 0.07076883 +3.261896 0.5692344 0.07076883 +3.729748 0.5692344 0.07076883 +4.264621 0.5692344 0.07076883 +4.876131 0.5692344 0.07076883 +5.575266 0.5692344 0.07076883 +6.374593 0.5692344 0.07076883 +0 0.6530715 0.07076883 +0 0.6530715 0.07076883 +0 0.6530715 0.07076883 +0.002268731 0.6530715 0.07076883 +0.07076883 0.6530715 0.07076883 +0.1119241 0.6530715 0.07076883 +0.1475052 0.6530715 0.07076883 +0.1846606 0.6530715 0.07076883 +0.2245119 0.6530715 0.07076883 +0.2679612 0.6530715 0.07076883 +0.3158431 0.6530715 0.07076883 +0.3689944 0.6530715 0.07076883 +0.4282948 0.6530715 0.07076883 +0.494694 0.6530715 0.07076883 +0.5692344 0.6530715 0.07076883 +0.6530715 0.6530715 0.07076883 +0.7474945 0.6530715 0.07076883 +0.8539475 0.6530715 0.07076883 +0.974052 0.6530715 0.07076883 +1.113885 0.6530715 0.07076883 +1.27456 0.6530715 0.07076883 +1.458117 0.6530715 0.07076883 +1.667858 0.6530715 0.07076883 +1.907556 0.6530715 0.07076883 +2.181521 0.6530715 0.07076883 +2.494678 0.6530715 0.07076883 +2.852659 0.6530715 0.07076883 +3.261896 0.6530715 0.07076883 +3.729748 0.6530715 0.07076883 +4.264621 0.6530715 0.07076883 +4.876131 0.6530715 0.07076883 +5.575266 0.6530715 0.07076883 +6.374593 0.6530715 0.07076883 +0 0.7474945 0.07076883 +0 0.7474945 0.07076883 +0 0.7474945 0.07076883 +0.002268731 0.7474945 0.07076883 +0.07076883 0.7474945 0.07076883 +0.1119241 0.7474945 0.07076883 +0.1475052 0.7474945 0.07076883 +0.1846606 0.7474945 0.07076883 +0.2245119 0.7474945 0.07076883 +0.2679612 0.7474945 0.07076883 +0.3158431 0.7474945 0.07076883 +0.3689944 0.7474945 0.07076883 +0.4282948 0.7474945 0.07076883 +0.494694 0.7474945 0.07076883 +0.5692344 0.7474945 0.07076883 +0.6530715 0.7474945 0.07076883 +0.7474945 0.7474945 0.07076883 +0.8539475 0.7474945 0.07076883 +0.974052 0.7474945 0.07076883 +1.113885 0.7474945 0.07076883 +1.27456 0.7474945 0.07076883 +1.458117 0.7474945 0.07076883 +1.667858 0.7474945 0.07076883 +1.907556 0.7474945 0.07076883 +2.181521 0.7474945 0.07076883 +2.494678 0.7474945 0.07076883 +2.852659 0.7474945 0.07076883 +3.261896 0.7474945 0.07076883 +3.729748 0.7474945 0.07076883 +4.264621 0.7474945 0.07076883 +4.876131 0.7474945 0.07076883 +5.575266 0.7474945 0.07076883 +6.374593 0.7474945 0.07076883 +0 0.8539475 0.07076883 +0 0.8539475 0.07076883 +0 0.8539475 0.07076883 +0.002268731 0.8539475 0.07076883 +0.07076883 0.8539475 0.07076883 +0.1119241 0.8539475 0.07076883 +0.1475052 0.8539475 0.07076883 +0.1846606 0.8539475 0.07076883 +0.2245119 0.8539475 0.07076883 +0.2679612 0.8539475 0.07076883 +0.3158431 0.8539475 0.07076883 +0.3689944 0.8539475 0.07076883 +0.4282948 0.8539475 0.07076883 +0.494694 0.8539475 0.07076883 +0.5692344 0.8539475 0.07076883 +0.6530715 0.8539475 0.07076883 +0.7474945 0.8539475 0.07076883 +0.8539475 0.8539475 0.07076883 +0.974052 0.8539475 0.07076883 +1.113885 0.8539475 0.07076883 +1.27456 0.8539475 0.07076883 +1.458117 0.8539475 0.07076883 +1.667858 0.8539475 0.07076883 +1.907556 0.8539475 0.07076883 +2.181521 0.8539475 0.07076883 +2.494678 0.8539475 0.07076883 +2.852659 0.8539475 0.07076883 +3.261896 0.8539475 0.07076883 +3.729748 0.8539475 0.07076883 +4.264621 0.8539475 0.07076883 +4.876131 0.8539475 0.07076883 +5.575266 0.8539475 0.07076883 +6.374593 0.8539475 0.07076883 +0 0.974052 0.07076883 +0 0.974052 0.07076883 +0 0.974052 0.07076883 +0.002268731 0.974052 0.07076883 +0.07076883 0.974052 0.07076883 +0.1119241 0.974052 0.07076883 +0.1475052 0.974052 0.07076883 +0.1846606 0.974052 0.07076883 +0.2245119 0.974052 0.07076883 +0.2679612 0.974052 0.07076883 +0.3158431 0.974052 0.07076883 +0.3689944 0.974052 0.07076883 +0.4282948 0.974052 0.07076883 +0.494694 0.974052 0.07076883 +0.5692344 0.974052 0.07076883 +0.6530715 0.974052 0.07076883 +0.7474945 0.974052 0.07076883 +0.8539475 0.974052 0.07076883 +0.974052 0.974052 0.07076883 +1.113885 0.974052 0.07076883 +1.27456 0.974052 0.07076883 +1.458117 0.974052 0.07076883 +1.667858 0.974052 0.07076883 +1.907556 0.974052 0.07076883 +2.181521 0.974052 0.07076883 +2.494678 0.974052 0.07076883 +2.852659 0.974052 0.07076883 +3.261896 0.974052 0.07076883 +3.729748 0.974052 0.07076883 +4.264621 0.974052 0.07076883 +4.876131 0.974052 0.07076883 +5.575266 0.974052 0.07076883 +6.374593 0.974052 0.07076883 +0 1.113885 0.07076883 +0 1.113885 0.07076883 +0 1.113885 0.07076883 +0.002268731 1.113885 0.07076883 +0.07076883 1.113885 0.07076883 +0.1119241 1.113885 0.07076883 +0.1475052 1.113885 0.07076883 +0.1846606 1.113885 0.07076883 +0.2245119 1.113885 0.07076883 +0.2679612 1.113885 0.07076883 +0.3158431 1.113885 0.07076883 +0.3689944 1.113885 0.07076883 +0.4282948 1.113885 0.07076883 +0.494694 1.113885 0.07076883 +0.5692344 1.113885 0.07076883 +0.6530715 1.113885 0.07076883 +0.7474945 1.113885 0.07076883 +0.8539475 1.113885 0.07076883 +0.974052 1.113885 0.07076883 +1.113885 1.113885 0.07076883 +1.27456 1.113885 0.07076883 +1.458117 1.113885 0.07076883 +1.667858 1.113885 0.07076883 +1.907556 1.113885 0.07076883 +2.181521 1.113885 0.07076883 +2.494678 1.113885 0.07076883 +2.852659 1.113885 0.07076883 +3.261896 1.113885 0.07076883 +3.729748 1.113885 0.07076883 +4.264621 1.113885 0.07076883 +4.876131 1.113885 0.07076883 +5.575266 1.113885 0.07076883 +6.374593 1.113885 0.07076883 +0 1.27456 0.07076883 +0 1.27456 0.07076883 +0 1.27456 0.07076883 +0.002268731 1.27456 0.07076883 +0.07076883 1.27456 0.07076883 +0.1119241 1.27456 0.07076883 +0.1475052 1.27456 0.07076883 +0.1846606 1.27456 0.07076883 +0.2245119 1.27456 0.07076883 +0.2679612 1.27456 0.07076883 +0.3158431 1.27456 0.07076883 +0.3689944 1.27456 0.07076883 +0.4282948 1.27456 0.07076883 +0.494694 1.27456 0.07076883 +0.5692344 1.27456 0.07076883 +0.6530715 1.27456 0.07076883 +0.7474945 1.27456 0.07076883 +0.8539475 1.27456 0.07076883 +0.974052 1.27456 0.07076883 +1.113885 1.27456 0.07076883 +1.27456 1.27456 0.07076883 +1.458117 1.27456 0.07076883 +1.667858 1.27456 0.07076883 +1.907556 1.27456 0.07076883 +2.181521 1.27456 0.07076883 +2.494678 1.27456 0.07076883 +2.852659 1.27456 0.07076883 +3.261896 1.27456 0.07076883 +3.729748 1.27456 0.07076883 +4.264621 1.27456 0.07076883 +4.876131 1.27456 0.07076883 +5.575266 1.27456 0.07076883 +6.374593 1.27456 0.07076883 +0 1.458117 0.07076883 +0 1.458117 0.07076883 +0 1.458117 0.07076883 +0.002268731 1.458117 0.07076883 +0.07076883 1.458117 0.07076883 +0.1119241 1.458117 0.07076883 +0.1475052 1.458117 0.07076883 +0.1846606 1.458117 0.07076883 +0.2245119 1.458117 0.07076883 +0.2679612 1.458117 0.07076883 +0.3158431 1.458117 0.07076883 +0.3689944 1.458117 0.07076883 +0.4282948 1.458117 0.07076883 +0.494694 1.458117 0.07076883 +0.5692344 1.458117 0.07076883 +0.6530715 1.458117 0.07076883 +0.7474945 1.458117 0.07076883 +0.8539475 1.458117 0.07076883 +0.974052 1.458117 0.07076883 +1.113885 1.458117 0.07076883 +1.27456 1.458117 0.07076883 +1.458117 1.458117 0.07076883 +1.667858 1.458117 0.07076883 +1.907556 1.458117 0.07076883 +2.181521 1.458117 0.07076883 +2.494678 1.458117 0.07076883 +2.852659 1.458117 0.07076883 +3.261896 1.458117 0.07076883 +3.729748 1.458117 0.07076883 +4.264621 1.458117 0.07076883 +4.876131 1.458117 0.07076883 +5.575266 1.458117 0.07076883 +6.374593 1.458117 0.07076883 +0 1.667858 0.07076883 +0 1.667858 0.07076883 +0 1.667858 0.07076883 +0.002268731 1.667858 0.07076883 +0.07076883 1.667858 0.07076883 +0.1119241 1.667858 0.07076883 +0.1475052 1.667858 0.07076883 +0.1846606 1.667858 0.07076883 +0.2245119 1.667858 0.07076883 +0.2679612 1.667858 0.07076883 +0.3158431 1.667858 0.07076883 +0.3689944 1.667858 0.07076883 +0.4282948 1.667858 0.07076883 +0.494694 1.667858 0.07076883 +0.5692344 1.667858 0.07076883 +0.6530715 1.667858 0.07076883 +0.7474945 1.667858 0.07076883 +0.8539475 1.667858 0.07076883 +0.974052 1.667858 0.07076883 +1.113885 1.667858 0.07076883 +1.27456 1.667858 0.07076883 +1.458117 1.667858 0.07076883 +1.667858 1.667858 0.07076883 +1.907556 1.667858 0.07076883 +2.181521 1.667858 0.07076883 +2.494678 1.667858 0.07076883 +2.852659 1.667858 0.07076883 +3.261896 1.667858 0.07076883 +3.729748 1.667858 0.07076883 +4.264621 1.667858 0.07076883 +4.876131 1.667858 0.07076883 +5.575266 1.667858 0.07076883 +6.374593 1.667858 0.07076883 +0 1.907556 0.07076883 +0 1.907556 0.07076883 +0 1.907556 0.07076883 +0.002268731 1.907556 0.07076883 +0.07076883 1.907556 0.07076883 +0.1119241 1.907556 0.07076883 +0.1475052 1.907556 0.07076883 +0.1846606 1.907556 0.07076883 +0.2245119 1.907556 0.07076883 +0.2679612 1.907556 0.07076883 +0.3158431 1.907556 0.07076883 +0.3689944 1.907556 0.07076883 +0.4282948 1.907556 0.07076883 +0.494694 1.907556 0.07076883 +0.5692344 1.907556 0.07076883 +0.6530715 1.907556 0.07076883 +0.7474945 1.907556 0.07076883 +0.8539475 1.907556 0.07076883 +0.974052 1.907556 0.07076883 +1.113885 1.907556 0.07076883 +1.27456 1.907556 0.07076883 +1.458117 1.907556 0.07076883 +1.667858 1.907556 0.07076883 +1.907556 1.907556 0.07076883 +2.181521 1.907556 0.07076883 +2.494678 1.907556 0.07076883 +2.852659 1.907556 0.07076883 +3.261896 1.907556 0.07076883 +3.729748 1.907556 0.07076883 +4.264621 1.907556 0.07076883 +4.876131 1.907556 0.07076883 +5.575266 1.907556 0.07076883 +6.374593 1.907556 0.07076883 +0 2.181521 0.07076883 +0 2.181521 0.07076883 +0 2.181521 0.07076883 +0.002268731 2.181521 0.07076883 +0.07076883 2.181521 0.07076883 +0.1119241 2.181521 0.07076883 +0.1475052 2.181521 0.07076883 +0.1846606 2.181521 0.07076883 +0.2245119 2.181521 0.07076883 +0.2679612 2.181521 0.07076883 +0.3158431 2.181521 0.07076883 +0.3689944 2.181521 0.07076883 +0.4282948 2.181521 0.07076883 +0.494694 2.181521 0.07076883 +0.5692344 2.181521 0.07076883 +0.6530715 2.181521 0.07076883 +0.7474945 2.181521 0.07076883 +0.8539475 2.181521 0.07076883 +0.974052 2.181521 0.07076883 +1.113885 2.181521 0.07076883 +1.27456 2.181521 0.07076883 +1.458117 2.181521 0.07076883 +1.667858 2.181521 0.07076883 +1.907556 2.181521 0.07076883 +2.181521 2.181521 0.07076883 +2.494678 2.181521 0.07076883 +2.852659 2.181521 0.07076883 +3.261896 2.181521 0.07076883 +3.729748 2.181521 0.07076883 +4.264621 2.181521 0.07076883 +4.876131 2.181521 0.07076883 +5.575266 2.181521 0.07076883 +6.374593 2.181521 0.07076883 +0 2.494678 0.07076883 +0 2.494678 0.07076883 +0 2.494678 0.07076883 +0.002268731 2.494678 0.07076883 +0.07076883 2.494678 0.07076883 +0.1119241 2.494678 0.07076883 +0.1475052 2.494678 0.07076883 +0.1846606 2.494678 0.07076883 +0.2245119 2.494678 0.07076883 +0.2679612 2.494678 0.07076883 +0.3158431 2.494678 0.07076883 +0.3689944 2.494678 0.07076883 +0.4282948 2.494678 0.07076883 +0.494694 2.494678 0.07076883 +0.5692344 2.494678 0.07076883 +0.6530715 2.494678 0.07076883 +0.7474945 2.494678 0.07076883 +0.8539475 2.494678 0.07076883 +0.974052 2.494678 0.07076883 +1.113885 2.494678 0.07076883 +1.27456 2.494678 0.07076883 +1.458117 2.494678 0.07076883 +1.667858 2.494678 0.07076883 +1.907556 2.494678 0.07076883 +2.181521 2.494678 0.07076883 +2.494678 2.494678 0.07076883 +2.852659 2.494678 0.07076883 +3.261896 2.494678 0.07076883 +3.729748 2.494678 0.07076883 +4.264621 2.494678 0.07076883 +4.876131 2.494678 0.07076883 +5.575266 2.494678 0.07076883 +6.374593 2.494678 0.07076883 +0 2.852659 0.07076883 +0 2.852659 0.07076883 +0 2.852659 0.07076883 +0.002268731 2.852659 0.07076883 +0.07076883 2.852659 0.07076883 +0.1119241 2.852659 0.07076883 +0.1475052 2.852659 0.07076883 +0.1846606 2.852659 0.07076883 +0.2245119 2.852659 0.07076883 +0.2679612 2.852659 0.07076883 +0.3158431 2.852659 0.07076883 +0.3689944 2.852659 0.07076883 +0.4282948 2.852659 0.07076883 +0.494694 2.852659 0.07076883 +0.5692344 2.852659 0.07076883 +0.6530715 2.852659 0.07076883 +0.7474945 2.852659 0.07076883 +0.8539475 2.852659 0.07076883 +0.974052 2.852659 0.07076883 +1.113885 2.852659 0.07076883 +1.27456 2.852659 0.07076883 +1.458117 2.852659 0.07076883 +1.667858 2.852659 0.07076883 +1.907556 2.852659 0.07076883 +2.181521 2.852659 0.07076883 +2.494678 2.852659 0.07076883 +2.852659 2.852659 0.07076883 +3.261896 2.852659 0.07076883 +3.729748 2.852659 0.07076883 +4.264621 2.852659 0.07076883 +4.876131 2.852659 0.07076883 +5.575266 2.852659 0.07076883 +6.374593 2.852659 0.07076883 +0 3.261896 0.07076883 +0 3.261896 0.07076883 +0 3.261896 0.07076883 +0.002268731 3.261896 0.07076883 +0.07076883 3.261896 0.07076883 +0.1119241 3.261896 0.07076883 +0.1475052 3.261896 0.07076883 +0.1846606 3.261896 0.07076883 +0.2245119 3.261896 0.07076883 +0.2679612 3.261896 0.07076883 +0.3158431 3.261896 0.07076883 +0.3689944 3.261896 0.07076883 +0.4282948 3.261896 0.07076883 +0.494694 3.261896 0.07076883 +0.5692344 3.261896 0.07076883 +0.6530715 3.261896 0.07076883 +0.7474945 3.261896 0.07076883 +0.8539475 3.261896 0.07076883 +0.974052 3.261896 0.07076883 +1.113885 3.261896 0.07076883 +1.27456 3.261896 0.07076883 +1.458117 3.261896 0.07076883 +1.667858 3.261896 0.07076883 +1.907556 3.261896 0.07076883 +2.181521 3.261896 0.07076883 +2.494678 3.261896 0.07076883 +2.852659 3.261896 0.07076883 +3.261896 3.261896 0.07076883 +3.729748 3.261896 0.07076883 +4.264621 3.261896 0.07076883 +4.876131 3.261896 0.07076883 +5.575266 3.261896 0.07076883 +6.374593 3.261896 0.07076883 +0 3.729748 0.07076883 +0 3.729748 0.07076883 +0 3.729748 0.07076883 +0.002268731 3.729748 0.07076883 +0.07076883 3.729748 0.07076883 +0.1119241 3.729748 0.07076883 +0.1475052 3.729748 0.07076883 +0.1846606 3.729748 0.07076883 +0.2245119 3.729748 0.07076883 +0.2679612 3.729748 0.07076883 +0.3158431 3.729748 0.07076883 +0.3689944 3.729748 0.07076883 +0.4282948 3.729748 0.07076883 +0.494694 3.729748 0.07076883 +0.5692344 3.729748 0.07076883 +0.6530715 3.729748 0.07076883 +0.7474945 3.729748 0.07076883 +0.8539475 3.729748 0.07076883 +0.974052 3.729748 0.07076883 +1.113885 3.729748 0.07076883 +1.27456 3.729748 0.07076883 +1.458117 3.729748 0.07076883 +1.667858 3.729748 0.07076883 +1.907556 3.729748 0.07076883 +2.181521 3.729748 0.07076883 +2.494678 3.729748 0.07076883 +2.852659 3.729748 0.07076883 +3.261896 3.729748 0.07076883 +3.729748 3.729748 0.07076883 +4.264621 3.729748 0.07076883 +4.876131 3.729748 0.07076883 +5.575266 3.729748 0.07076883 +6.374593 3.729748 0.07076883 +0 4.264621 0.07076883 +0 4.264621 0.07076883 +0 4.264621 0.07076883 +0.002268731 4.264621 0.07076883 +0.07076883 4.264621 0.07076883 +0.1119241 4.264621 0.07076883 +0.1475052 4.264621 0.07076883 +0.1846606 4.264621 0.07076883 +0.2245119 4.264621 0.07076883 +0.2679612 4.264621 0.07076883 +0.3158431 4.264621 0.07076883 +0.3689944 4.264621 0.07076883 +0.4282948 4.264621 0.07076883 +0.494694 4.264621 0.07076883 +0.5692344 4.264621 0.07076883 +0.6530715 4.264621 0.07076883 +0.7474945 4.264621 0.07076883 +0.8539475 4.264621 0.07076883 +0.974052 4.264621 0.07076883 +1.113885 4.264621 0.07076883 +1.27456 4.264621 0.07076883 +1.458117 4.264621 0.07076883 +1.667858 4.264621 0.07076883 +1.907556 4.264621 0.07076883 +2.181521 4.264621 0.07076883 +2.494678 4.264621 0.07076883 +2.852659 4.264621 0.07076883 +3.261896 4.264621 0.07076883 +3.729748 4.264621 0.07076883 +4.264621 4.264621 0.07076883 +4.876131 4.264621 0.07076883 +5.575266 4.264621 0.07076883 +6.374593 4.264621 0.07076883 +0 4.876131 0.07076883 +0 4.876131 0.07076883 +0 4.876131 0.07076883 +0.002268731 4.876131 0.07076883 +0.07076883 4.876131 0.07076883 +0.1119241 4.876131 0.07076883 +0.1475052 4.876131 0.07076883 +0.1846606 4.876131 0.07076883 +0.2245119 4.876131 0.07076883 +0.2679612 4.876131 0.07076883 +0.3158431 4.876131 0.07076883 +0.3689944 4.876131 0.07076883 +0.4282948 4.876131 0.07076883 +0.494694 4.876131 0.07076883 +0.5692344 4.876131 0.07076883 +0.6530715 4.876131 0.07076883 +0.7474945 4.876131 0.07076883 +0.8539475 4.876131 0.07076883 +0.974052 4.876131 0.07076883 +1.113885 4.876131 0.07076883 +1.27456 4.876131 0.07076883 +1.458117 4.876131 0.07076883 +1.667858 4.876131 0.07076883 +1.907556 4.876131 0.07076883 +2.181521 4.876131 0.07076883 +2.494678 4.876131 0.07076883 +2.852659 4.876131 0.07076883 +3.261896 4.876131 0.07076883 +3.729748 4.876131 0.07076883 +4.264621 4.876131 0.07076883 +4.876131 4.876131 0.07076883 +5.575266 4.876131 0.07076883 +6.374593 4.876131 0.07076883 +0 5.575266 0.07076883 +0 5.575266 0.07076883 +0 5.575266 0.07076883 +0.002268731 5.575266 0.07076883 +0.07076883 5.575266 0.07076883 +0.1119241 5.575266 0.07076883 +0.1475052 5.575266 0.07076883 +0.1846606 5.575266 0.07076883 +0.2245119 5.575266 0.07076883 +0.2679612 5.575266 0.07076883 +0.3158431 5.575266 0.07076883 +0.3689944 5.575266 0.07076883 +0.4282948 5.575266 0.07076883 +0.494694 5.575266 0.07076883 +0.5692344 5.575266 0.07076883 +0.6530715 5.575266 0.07076883 +0.7474945 5.575266 0.07076883 +0.8539475 5.575266 0.07076883 +0.974052 5.575266 0.07076883 +1.113885 5.575266 0.07076883 +1.27456 5.575266 0.07076883 +1.458117 5.575266 0.07076883 +1.667858 5.575266 0.07076883 +1.907556 5.575266 0.07076883 +2.181521 5.575266 0.07076883 +2.494678 5.575266 0.07076883 +2.852659 5.575266 0.07076883 +3.261896 5.575266 0.07076883 +3.729748 5.575266 0.07076883 +4.264621 5.575266 0.07076883 +4.876131 5.575266 0.07076883 +5.575266 5.575266 0.07076883 +6.374593 5.575266 0.07076883 +0 6.374593 0.07076883 +0 6.374593 0.07076883 +0 6.374593 0.07076883 +0.002268731 6.374593 0.07076883 +0.07076883 6.374593 0.07076883 +0.1119241 6.374593 0.07076883 +0.1475052 6.374593 0.07076883 +0.1846606 6.374593 0.07076883 +0.2245119 6.374593 0.07076883 +0.2679612 6.374593 0.07076883 +0.3158431 6.374593 0.07076883 +0.3689944 6.374593 0.07076883 +0.4282948 6.374593 0.07076883 +0.494694 6.374593 0.07076883 +0.5692344 6.374593 0.07076883 +0.6530715 6.374593 0.07076883 +0.7474945 6.374593 0.07076883 +0.8539475 6.374593 0.07076883 +0.974052 6.374593 0.07076883 +1.113885 6.374593 0.07076883 +1.27456 6.374593 0.07076883 +1.458117 6.374593 0.07076883 +1.667858 6.374593 0.07076883 +1.907556 6.374593 0.07076883 +2.181521 6.374593 0.07076883 +2.494678 6.374593 0.07076883 +2.852659 6.374593 0.07076883 +3.261896 6.374593 0.07076883 +3.729748 6.374593 0.07076883 +4.264621 6.374593 0.07076883 +4.876131 6.374593 0.07076883 +5.575266 6.374593 0.07076883 +6.374593 6.374593 0.07076883 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0.002268731 0.1119241 +0 0.002268731 0.1119241 +0 0.002268731 0.1119241 +0.002268731 0.002268731 0.1119241 +0.07076883 0.002268731 0.1119241 +0.1119241 0.002268731 0.1119241 +0.1475052 0.002268731 0.1119241 +0.1846606 0.002268731 0.1119241 +0.2245119 0.002268731 0.1119241 +0.2679612 0.002268731 0.1119241 +0.3158431 0.002268731 0.1119241 +0.3689944 0.002268731 0.1119241 +0.4282948 0.002268731 0.1119241 +0.494694 0.002268731 0.1119241 +0.5692344 0.002268731 0.1119241 +0.6530715 0.002268731 0.1119241 +0.7474945 0.002268731 0.1119241 +0.8539475 0.002268731 0.1119241 +0.974052 0.002268731 0.1119241 +1.113885 0.002268731 0.1119241 +1.27456 0.002268731 0.1119241 +1.458117 0.002268731 0.1119241 +1.667858 0.002268731 0.1119241 +1.907556 0.002268731 0.1119241 +2.181521 0.002268731 0.1119241 +2.494678 0.002268731 0.1119241 +2.852659 0.002268731 0.1119241 +3.261896 0.002268731 0.1119241 +3.729748 0.002268731 0.1119241 +4.264621 0.002268731 0.1119241 +4.876131 0.002268731 0.1119241 +5.575266 0.002268731 0.1119241 +6.374593 0.002268731 0.1119241 +0 0.07076883 0.1119241 +0 0.07076883 0.1119241 +0 0.07076883 0.1119241 +0.002268731 0.07076883 0.1119241 +0.07076883 0.07076883 0.1119241 +0.1119241 0.07076883 0.1119241 +0.1475052 0.07076883 0.1119241 +0.1846606 0.07076883 0.1119241 +0.2245119 0.07076883 0.1119241 +0.2679612 0.07076883 0.1119241 +0.3158431 0.07076883 0.1119241 +0.3689944 0.07076883 0.1119241 +0.4282948 0.07076883 0.1119241 +0.494694 0.07076883 0.1119241 +0.5692344 0.07076883 0.1119241 +0.6530715 0.07076883 0.1119241 +0.7474945 0.07076883 0.1119241 +0.8539475 0.07076883 0.1119241 +0.974052 0.07076883 0.1119241 +1.113885 0.07076883 0.1119241 +1.27456 0.07076883 0.1119241 +1.458117 0.07076883 0.1119241 +1.667858 0.07076883 0.1119241 +1.907556 0.07076883 0.1119241 +2.181521 0.07076883 0.1119241 +2.494678 0.07076883 0.1119241 +2.852659 0.07076883 0.1119241 +3.261896 0.07076883 0.1119241 +3.729748 0.07076883 0.1119241 +4.264621 0.07076883 0.1119241 +4.876131 0.07076883 0.1119241 +5.575266 0.07076883 0.1119241 +6.374593 0.07076883 0.1119241 +0 0.1119241 0.1119241 +0 0.1119241 0.1119241 +0 0.1119241 0.1119241 +0.002268731 0.1119241 0.1119241 +0.07076883 0.1119241 0.1119241 +0.1119241 0.1119241 0.1119241 +0.1475052 0.1119241 0.1119241 +0.1846606 0.1119241 0.1119241 +0.2245119 0.1119241 0.1119241 +0.2679612 0.1119241 0.1119241 +0.3158431 0.1119241 0.1119241 +0.3689944 0.1119241 0.1119241 +0.4282948 0.1119241 0.1119241 +0.494694 0.1119241 0.1119241 +0.5692344 0.1119241 0.1119241 +0.6530715 0.1119241 0.1119241 +0.7474945 0.1119241 0.1119241 +0.8539475 0.1119241 0.1119241 +0.974052 0.1119241 0.1119241 +1.113885 0.1119241 0.1119241 +1.27456 0.1119241 0.1119241 +1.458117 0.1119241 0.1119241 +1.667858 0.1119241 0.1119241 +1.907556 0.1119241 0.1119241 +2.181521 0.1119241 0.1119241 +2.494678 0.1119241 0.1119241 +2.852659 0.1119241 0.1119241 +3.261896 0.1119241 0.1119241 +3.729748 0.1119241 0.1119241 +4.264621 0.1119241 0.1119241 +4.876131 0.1119241 0.1119241 +5.575266 0.1119241 0.1119241 +6.374593 0.1119241 0.1119241 +0 0.1475052 0.1119241 +0 0.1475052 0.1119241 +0 0.1475052 0.1119241 +0.002268731 0.1475052 0.1119241 +0.07076883 0.1475052 0.1119241 +0.1119241 0.1475052 0.1119241 +0.1475052 0.1475052 0.1119241 +0.1846606 0.1475052 0.1119241 +0.2245119 0.1475052 0.1119241 +0.2679612 0.1475052 0.1119241 +0.3158431 0.1475052 0.1119241 +0.3689944 0.1475052 0.1119241 +0.4282948 0.1475052 0.1119241 +0.494694 0.1475052 0.1119241 +0.5692344 0.1475052 0.1119241 +0.6530715 0.1475052 0.1119241 +0.7474945 0.1475052 0.1119241 +0.8539475 0.1475052 0.1119241 +0.974052 0.1475052 0.1119241 +1.113885 0.1475052 0.1119241 +1.27456 0.1475052 0.1119241 +1.458117 0.1475052 0.1119241 +1.667858 0.1475052 0.1119241 +1.907556 0.1475052 0.1119241 +2.181521 0.1475052 0.1119241 +2.494678 0.1475052 0.1119241 +2.852659 0.1475052 0.1119241 +3.261896 0.1475052 0.1119241 +3.729748 0.1475052 0.1119241 +4.264621 0.1475052 0.1119241 +4.876131 0.1475052 0.1119241 +5.575266 0.1475052 0.1119241 +6.374593 0.1475052 0.1119241 +0 0.1846606 0.1119241 +0 0.1846606 0.1119241 +0 0.1846606 0.1119241 +0.002268731 0.1846606 0.1119241 +0.07076883 0.1846606 0.1119241 +0.1119241 0.1846606 0.1119241 +0.1475052 0.1846606 0.1119241 +0.1846606 0.1846606 0.1119241 +0.2245119 0.1846606 0.1119241 +0.2679612 0.1846606 0.1119241 +0.3158431 0.1846606 0.1119241 +0.3689944 0.1846606 0.1119241 +0.4282948 0.1846606 0.1119241 +0.494694 0.1846606 0.1119241 +0.5692344 0.1846606 0.1119241 +0.6530715 0.1846606 0.1119241 +0.7474945 0.1846606 0.1119241 +0.8539475 0.1846606 0.1119241 +0.974052 0.1846606 0.1119241 +1.113885 0.1846606 0.1119241 +1.27456 0.1846606 0.1119241 +1.458117 0.1846606 0.1119241 +1.667858 0.1846606 0.1119241 +1.907556 0.1846606 0.1119241 +2.181521 0.1846606 0.1119241 +2.494678 0.1846606 0.1119241 +2.852659 0.1846606 0.1119241 +3.261896 0.1846606 0.1119241 +3.729748 0.1846606 0.1119241 +4.264621 0.1846606 0.1119241 +4.876131 0.1846606 0.1119241 +5.575266 0.1846606 0.1119241 +6.374593 0.1846606 0.1119241 +0 0.2245119 0.1119241 +0 0.2245119 0.1119241 +0 0.2245119 0.1119241 +0.002268731 0.2245119 0.1119241 +0.07076883 0.2245119 0.1119241 +0.1119241 0.2245119 0.1119241 +0.1475052 0.2245119 0.1119241 +0.1846606 0.2245119 0.1119241 +0.2245119 0.2245119 0.1119241 +0.2679612 0.2245119 0.1119241 +0.3158431 0.2245119 0.1119241 +0.3689944 0.2245119 0.1119241 +0.4282948 0.2245119 0.1119241 +0.494694 0.2245119 0.1119241 +0.5692344 0.2245119 0.1119241 +0.6530715 0.2245119 0.1119241 +0.7474945 0.2245119 0.1119241 +0.8539475 0.2245119 0.1119241 +0.974052 0.2245119 0.1119241 +1.113885 0.2245119 0.1119241 +1.27456 0.2245119 0.1119241 +1.458117 0.2245119 0.1119241 +1.667858 0.2245119 0.1119241 +1.907556 0.2245119 0.1119241 +2.181521 0.2245119 0.1119241 +2.494678 0.2245119 0.1119241 +2.852659 0.2245119 0.1119241 +3.261896 0.2245119 0.1119241 +3.729748 0.2245119 0.1119241 +4.264621 0.2245119 0.1119241 +4.876131 0.2245119 0.1119241 +5.575266 0.2245119 0.1119241 +6.374593 0.2245119 0.1119241 +0 0.2679612 0.1119241 +0 0.2679612 0.1119241 +0 0.2679612 0.1119241 +0.002268731 0.2679612 0.1119241 +0.07076883 0.2679612 0.1119241 +0.1119241 0.2679612 0.1119241 +0.1475052 0.2679612 0.1119241 +0.1846606 0.2679612 0.1119241 +0.2245119 0.2679612 0.1119241 +0.2679612 0.2679612 0.1119241 +0.3158431 0.2679612 0.1119241 +0.3689944 0.2679612 0.1119241 +0.4282948 0.2679612 0.1119241 +0.494694 0.2679612 0.1119241 +0.5692344 0.2679612 0.1119241 +0.6530715 0.2679612 0.1119241 +0.7474945 0.2679612 0.1119241 +0.8539475 0.2679612 0.1119241 +0.974052 0.2679612 0.1119241 +1.113885 0.2679612 0.1119241 +1.27456 0.2679612 0.1119241 +1.458117 0.2679612 0.1119241 +1.667858 0.2679612 0.1119241 +1.907556 0.2679612 0.1119241 +2.181521 0.2679612 0.1119241 +2.494678 0.2679612 0.1119241 +2.852659 0.2679612 0.1119241 +3.261896 0.2679612 0.1119241 +3.729748 0.2679612 0.1119241 +4.264621 0.2679612 0.1119241 +4.876131 0.2679612 0.1119241 +5.575266 0.2679612 0.1119241 +6.374593 0.2679612 0.1119241 +0 0.3158431 0.1119241 +0 0.3158431 0.1119241 +0 0.3158431 0.1119241 +0.002268731 0.3158431 0.1119241 +0.07076883 0.3158431 0.1119241 +0.1119241 0.3158431 0.1119241 +0.1475052 0.3158431 0.1119241 +0.1846606 0.3158431 0.1119241 +0.2245119 0.3158431 0.1119241 +0.2679612 0.3158431 0.1119241 +0.3158431 0.3158431 0.1119241 +0.3689944 0.3158431 0.1119241 +0.4282948 0.3158431 0.1119241 +0.494694 0.3158431 0.1119241 +0.5692344 0.3158431 0.1119241 +0.6530715 0.3158431 0.1119241 +0.7474945 0.3158431 0.1119241 +0.8539475 0.3158431 0.1119241 +0.974052 0.3158431 0.1119241 +1.113885 0.3158431 0.1119241 +1.27456 0.3158431 0.1119241 +1.458117 0.3158431 0.1119241 +1.667858 0.3158431 0.1119241 +1.907556 0.3158431 0.1119241 +2.181521 0.3158431 0.1119241 +2.494678 0.3158431 0.1119241 +2.852659 0.3158431 0.1119241 +3.261896 0.3158431 0.1119241 +3.729748 0.3158431 0.1119241 +4.264621 0.3158431 0.1119241 +4.876131 0.3158431 0.1119241 +5.575266 0.3158431 0.1119241 +6.374593 0.3158431 0.1119241 +0 0.3689944 0.1119241 +0 0.3689944 0.1119241 +0 0.3689944 0.1119241 +0.002268731 0.3689944 0.1119241 +0.07076883 0.3689944 0.1119241 +0.1119241 0.3689944 0.1119241 +0.1475052 0.3689944 0.1119241 +0.1846606 0.3689944 0.1119241 +0.2245119 0.3689944 0.1119241 +0.2679612 0.3689944 0.1119241 +0.3158431 0.3689944 0.1119241 +0.3689944 0.3689944 0.1119241 +0.4282948 0.3689944 0.1119241 +0.494694 0.3689944 0.1119241 +0.5692344 0.3689944 0.1119241 +0.6530715 0.3689944 0.1119241 +0.7474945 0.3689944 0.1119241 +0.8539475 0.3689944 0.1119241 +0.974052 0.3689944 0.1119241 +1.113885 0.3689944 0.1119241 +1.27456 0.3689944 0.1119241 +1.458117 0.3689944 0.1119241 +1.667858 0.3689944 0.1119241 +1.907556 0.3689944 0.1119241 +2.181521 0.3689944 0.1119241 +2.494678 0.3689944 0.1119241 +2.852659 0.3689944 0.1119241 +3.261896 0.3689944 0.1119241 +3.729748 0.3689944 0.1119241 +4.264621 0.3689944 0.1119241 +4.876131 0.3689944 0.1119241 +5.575266 0.3689944 0.1119241 +6.374593 0.3689944 0.1119241 +0 0.4282948 0.1119241 +0 0.4282948 0.1119241 +0 0.4282948 0.1119241 +0.002268731 0.4282948 0.1119241 +0.07076883 0.4282948 0.1119241 +0.1119241 0.4282948 0.1119241 +0.1475052 0.4282948 0.1119241 +0.1846606 0.4282948 0.1119241 +0.2245119 0.4282948 0.1119241 +0.2679612 0.4282948 0.1119241 +0.3158431 0.4282948 0.1119241 +0.3689944 0.4282948 0.1119241 +0.4282948 0.4282948 0.1119241 +0.494694 0.4282948 0.1119241 +0.5692344 0.4282948 0.1119241 +0.6530715 0.4282948 0.1119241 +0.7474945 0.4282948 0.1119241 +0.8539475 0.4282948 0.1119241 +0.974052 0.4282948 0.1119241 +1.113885 0.4282948 0.1119241 +1.27456 0.4282948 0.1119241 +1.458117 0.4282948 0.1119241 +1.667858 0.4282948 0.1119241 +1.907556 0.4282948 0.1119241 +2.181521 0.4282948 0.1119241 +2.494678 0.4282948 0.1119241 +2.852659 0.4282948 0.1119241 +3.261896 0.4282948 0.1119241 +3.729748 0.4282948 0.1119241 +4.264621 0.4282948 0.1119241 +4.876131 0.4282948 0.1119241 +5.575266 0.4282948 0.1119241 +6.374593 0.4282948 0.1119241 +0 0.494694 0.1119241 +0 0.494694 0.1119241 +0 0.494694 0.1119241 +0.002268731 0.494694 0.1119241 +0.07076883 0.494694 0.1119241 +0.1119241 0.494694 0.1119241 +0.1475052 0.494694 0.1119241 +0.1846606 0.494694 0.1119241 +0.2245119 0.494694 0.1119241 +0.2679612 0.494694 0.1119241 +0.3158431 0.494694 0.1119241 +0.3689944 0.494694 0.1119241 +0.4282948 0.494694 0.1119241 +0.494694 0.494694 0.1119241 +0.5692344 0.494694 0.1119241 +0.6530715 0.494694 0.1119241 +0.7474945 0.494694 0.1119241 +0.8539475 0.494694 0.1119241 +0.974052 0.494694 0.1119241 +1.113885 0.494694 0.1119241 +1.27456 0.494694 0.1119241 +1.458117 0.494694 0.1119241 +1.667858 0.494694 0.1119241 +1.907556 0.494694 0.1119241 +2.181521 0.494694 0.1119241 +2.494678 0.494694 0.1119241 +2.852659 0.494694 0.1119241 +3.261896 0.494694 0.1119241 +3.729748 0.494694 0.1119241 +4.264621 0.494694 0.1119241 +4.876131 0.494694 0.1119241 +5.575266 0.494694 0.1119241 +6.374593 0.494694 0.1119241 +0 0.5692344 0.1119241 +0 0.5692344 0.1119241 +0 0.5692344 0.1119241 +0.002268731 0.5692344 0.1119241 +0.07076883 0.5692344 0.1119241 +0.1119241 0.5692344 0.1119241 +0.1475052 0.5692344 0.1119241 +0.1846606 0.5692344 0.1119241 +0.2245119 0.5692344 0.1119241 +0.2679612 0.5692344 0.1119241 +0.3158431 0.5692344 0.1119241 +0.3689944 0.5692344 0.1119241 +0.4282948 0.5692344 0.1119241 +0.494694 0.5692344 0.1119241 +0.5692344 0.5692344 0.1119241 +0.6530715 0.5692344 0.1119241 +0.7474945 0.5692344 0.1119241 +0.8539475 0.5692344 0.1119241 +0.974052 0.5692344 0.1119241 +1.113885 0.5692344 0.1119241 +1.27456 0.5692344 0.1119241 +1.458117 0.5692344 0.1119241 +1.667858 0.5692344 0.1119241 +1.907556 0.5692344 0.1119241 +2.181521 0.5692344 0.1119241 +2.494678 0.5692344 0.1119241 +2.852659 0.5692344 0.1119241 +3.261896 0.5692344 0.1119241 +3.729748 0.5692344 0.1119241 +4.264621 0.5692344 0.1119241 +4.876131 0.5692344 0.1119241 +5.575266 0.5692344 0.1119241 +6.374593 0.5692344 0.1119241 +0 0.6530715 0.1119241 +0 0.6530715 0.1119241 +0 0.6530715 0.1119241 +0.002268731 0.6530715 0.1119241 +0.07076883 0.6530715 0.1119241 +0.1119241 0.6530715 0.1119241 +0.1475052 0.6530715 0.1119241 +0.1846606 0.6530715 0.1119241 +0.2245119 0.6530715 0.1119241 +0.2679612 0.6530715 0.1119241 +0.3158431 0.6530715 0.1119241 +0.3689944 0.6530715 0.1119241 +0.4282948 0.6530715 0.1119241 +0.494694 0.6530715 0.1119241 +0.5692344 0.6530715 0.1119241 +0.6530715 0.6530715 0.1119241 +0.7474945 0.6530715 0.1119241 +0.8539475 0.6530715 0.1119241 +0.974052 0.6530715 0.1119241 +1.113885 0.6530715 0.1119241 +1.27456 0.6530715 0.1119241 +1.458117 0.6530715 0.1119241 +1.667858 0.6530715 0.1119241 +1.907556 0.6530715 0.1119241 +2.181521 0.6530715 0.1119241 +2.494678 0.6530715 0.1119241 +2.852659 0.6530715 0.1119241 +3.261896 0.6530715 0.1119241 +3.729748 0.6530715 0.1119241 +4.264621 0.6530715 0.1119241 +4.876131 0.6530715 0.1119241 +5.575266 0.6530715 0.1119241 +6.374593 0.6530715 0.1119241 +0 0.7474945 0.1119241 +0 0.7474945 0.1119241 +0 0.7474945 0.1119241 +0.002268731 0.7474945 0.1119241 +0.07076883 0.7474945 0.1119241 +0.1119241 0.7474945 0.1119241 +0.1475052 0.7474945 0.1119241 +0.1846606 0.7474945 0.1119241 +0.2245119 0.7474945 0.1119241 +0.2679612 0.7474945 0.1119241 +0.3158431 0.7474945 0.1119241 +0.3689944 0.7474945 0.1119241 +0.4282948 0.7474945 0.1119241 +0.494694 0.7474945 0.1119241 +0.5692344 0.7474945 0.1119241 +0.6530715 0.7474945 0.1119241 +0.7474945 0.7474945 0.1119241 +0.8539475 0.7474945 0.1119241 +0.974052 0.7474945 0.1119241 +1.113885 0.7474945 0.1119241 +1.27456 0.7474945 0.1119241 +1.458117 0.7474945 0.1119241 +1.667858 0.7474945 0.1119241 +1.907556 0.7474945 0.1119241 +2.181521 0.7474945 0.1119241 +2.494678 0.7474945 0.1119241 +2.852659 0.7474945 0.1119241 +3.261896 0.7474945 0.1119241 +3.729748 0.7474945 0.1119241 +4.264621 0.7474945 0.1119241 +4.876131 0.7474945 0.1119241 +5.575266 0.7474945 0.1119241 +6.374593 0.7474945 0.1119241 +0 0.8539475 0.1119241 +0 0.8539475 0.1119241 +0 0.8539475 0.1119241 +0.002268731 0.8539475 0.1119241 +0.07076883 0.8539475 0.1119241 +0.1119241 0.8539475 0.1119241 +0.1475052 0.8539475 0.1119241 +0.1846606 0.8539475 0.1119241 +0.2245119 0.8539475 0.1119241 +0.2679612 0.8539475 0.1119241 +0.3158431 0.8539475 0.1119241 +0.3689944 0.8539475 0.1119241 +0.4282948 0.8539475 0.1119241 +0.494694 0.8539475 0.1119241 +0.5692344 0.8539475 0.1119241 +0.6530715 0.8539475 0.1119241 +0.7474945 0.8539475 0.1119241 +0.8539475 0.8539475 0.1119241 +0.974052 0.8539475 0.1119241 +1.113885 0.8539475 0.1119241 +1.27456 0.8539475 0.1119241 +1.458117 0.8539475 0.1119241 +1.667858 0.8539475 0.1119241 +1.907556 0.8539475 0.1119241 +2.181521 0.8539475 0.1119241 +2.494678 0.8539475 0.1119241 +2.852659 0.8539475 0.1119241 +3.261896 0.8539475 0.1119241 +3.729748 0.8539475 0.1119241 +4.264621 0.8539475 0.1119241 +4.876131 0.8539475 0.1119241 +5.575266 0.8539475 0.1119241 +6.374593 0.8539475 0.1119241 +0 0.974052 0.1119241 +0 0.974052 0.1119241 +0 0.974052 0.1119241 +0.002268731 0.974052 0.1119241 +0.07076883 0.974052 0.1119241 +0.1119241 0.974052 0.1119241 +0.1475052 0.974052 0.1119241 +0.1846606 0.974052 0.1119241 +0.2245119 0.974052 0.1119241 +0.2679612 0.974052 0.1119241 +0.3158431 0.974052 0.1119241 +0.3689944 0.974052 0.1119241 +0.4282948 0.974052 0.1119241 +0.494694 0.974052 0.1119241 +0.5692344 0.974052 0.1119241 +0.6530715 0.974052 0.1119241 +0.7474945 0.974052 0.1119241 +0.8539475 0.974052 0.1119241 +0.974052 0.974052 0.1119241 +1.113885 0.974052 0.1119241 +1.27456 0.974052 0.1119241 +1.458117 0.974052 0.1119241 +1.667858 0.974052 0.1119241 +1.907556 0.974052 0.1119241 +2.181521 0.974052 0.1119241 +2.494678 0.974052 0.1119241 +2.852659 0.974052 0.1119241 +3.261896 0.974052 0.1119241 +3.729748 0.974052 0.1119241 +4.264621 0.974052 0.1119241 +4.876131 0.974052 0.1119241 +5.575266 0.974052 0.1119241 +6.374593 0.974052 0.1119241 +0 1.113885 0.1119241 +0 1.113885 0.1119241 +0 1.113885 0.1119241 +0.002268731 1.113885 0.1119241 +0.07076883 1.113885 0.1119241 +0.1119241 1.113885 0.1119241 +0.1475052 1.113885 0.1119241 +0.1846606 1.113885 0.1119241 +0.2245119 1.113885 0.1119241 +0.2679612 1.113885 0.1119241 +0.3158431 1.113885 0.1119241 +0.3689944 1.113885 0.1119241 +0.4282948 1.113885 0.1119241 +0.494694 1.113885 0.1119241 +0.5692344 1.113885 0.1119241 +0.6530715 1.113885 0.1119241 +0.7474945 1.113885 0.1119241 +0.8539475 1.113885 0.1119241 +0.974052 1.113885 0.1119241 +1.113885 1.113885 0.1119241 +1.27456 1.113885 0.1119241 +1.458117 1.113885 0.1119241 +1.667858 1.113885 0.1119241 +1.907556 1.113885 0.1119241 +2.181521 1.113885 0.1119241 +2.494678 1.113885 0.1119241 +2.852659 1.113885 0.1119241 +3.261896 1.113885 0.1119241 +3.729748 1.113885 0.1119241 +4.264621 1.113885 0.1119241 +4.876131 1.113885 0.1119241 +5.575266 1.113885 0.1119241 +6.374593 1.113885 0.1119241 +0 1.27456 0.1119241 +0 1.27456 0.1119241 +0 1.27456 0.1119241 +0.002268731 1.27456 0.1119241 +0.07076883 1.27456 0.1119241 +0.1119241 1.27456 0.1119241 +0.1475052 1.27456 0.1119241 +0.1846606 1.27456 0.1119241 +0.2245119 1.27456 0.1119241 +0.2679612 1.27456 0.1119241 +0.3158431 1.27456 0.1119241 +0.3689944 1.27456 0.1119241 +0.4282948 1.27456 0.1119241 +0.494694 1.27456 0.1119241 +0.5692344 1.27456 0.1119241 +0.6530715 1.27456 0.1119241 +0.7474945 1.27456 0.1119241 +0.8539475 1.27456 0.1119241 +0.974052 1.27456 0.1119241 +1.113885 1.27456 0.1119241 +1.27456 1.27456 0.1119241 +1.458117 1.27456 0.1119241 +1.667858 1.27456 0.1119241 +1.907556 1.27456 0.1119241 +2.181521 1.27456 0.1119241 +2.494678 1.27456 0.1119241 +2.852659 1.27456 0.1119241 +3.261896 1.27456 0.1119241 +3.729748 1.27456 0.1119241 +4.264621 1.27456 0.1119241 +4.876131 1.27456 0.1119241 +5.575266 1.27456 0.1119241 +6.374593 1.27456 0.1119241 +0 1.458117 0.1119241 +0 1.458117 0.1119241 +0 1.458117 0.1119241 +0.002268731 1.458117 0.1119241 +0.07076883 1.458117 0.1119241 +0.1119241 1.458117 0.1119241 +0.1475052 1.458117 0.1119241 +0.1846606 1.458117 0.1119241 +0.2245119 1.458117 0.1119241 +0.2679612 1.458117 0.1119241 +0.3158431 1.458117 0.1119241 +0.3689944 1.458117 0.1119241 +0.4282948 1.458117 0.1119241 +0.494694 1.458117 0.1119241 +0.5692344 1.458117 0.1119241 +0.6530715 1.458117 0.1119241 +0.7474945 1.458117 0.1119241 +0.8539475 1.458117 0.1119241 +0.974052 1.458117 0.1119241 +1.113885 1.458117 0.1119241 +1.27456 1.458117 0.1119241 +1.458117 1.458117 0.1119241 +1.667858 1.458117 0.1119241 +1.907556 1.458117 0.1119241 +2.181521 1.458117 0.1119241 +2.494678 1.458117 0.1119241 +2.852659 1.458117 0.1119241 +3.261896 1.458117 0.1119241 +3.729748 1.458117 0.1119241 +4.264621 1.458117 0.1119241 +4.876131 1.458117 0.1119241 +5.575266 1.458117 0.1119241 +6.374593 1.458117 0.1119241 +0 1.667858 0.1119241 +0 1.667858 0.1119241 +0 1.667858 0.1119241 +0.002268731 1.667858 0.1119241 +0.07076883 1.667858 0.1119241 +0.1119241 1.667858 0.1119241 +0.1475052 1.667858 0.1119241 +0.1846606 1.667858 0.1119241 +0.2245119 1.667858 0.1119241 +0.2679612 1.667858 0.1119241 +0.3158431 1.667858 0.1119241 +0.3689944 1.667858 0.1119241 +0.4282948 1.667858 0.1119241 +0.494694 1.667858 0.1119241 +0.5692344 1.667858 0.1119241 +0.6530715 1.667858 0.1119241 +0.7474945 1.667858 0.1119241 +0.8539475 1.667858 0.1119241 +0.974052 1.667858 0.1119241 +1.113885 1.667858 0.1119241 +1.27456 1.667858 0.1119241 +1.458117 1.667858 0.1119241 +1.667858 1.667858 0.1119241 +1.907556 1.667858 0.1119241 +2.181521 1.667858 0.1119241 +2.494678 1.667858 0.1119241 +2.852659 1.667858 0.1119241 +3.261896 1.667858 0.1119241 +3.729748 1.667858 0.1119241 +4.264621 1.667858 0.1119241 +4.876131 1.667858 0.1119241 +5.575266 1.667858 0.1119241 +6.374593 1.667858 0.1119241 +0 1.907556 0.1119241 +0 1.907556 0.1119241 +0 1.907556 0.1119241 +0.002268731 1.907556 0.1119241 +0.07076883 1.907556 0.1119241 +0.1119241 1.907556 0.1119241 +0.1475052 1.907556 0.1119241 +0.1846606 1.907556 0.1119241 +0.2245119 1.907556 0.1119241 +0.2679612 1.907556 0.1119241 +0.3158431 1.907556 0.1119241 +0.3689944 1.907556 0.1119241 +0.4282948 1.907556 0.1119241 +0.494694 1.907556 0.1119241 +0.5692344 1.907556 0.1119241 +0.6530715 1.907556 0.1119241 +0.7474945 1.907556 0.1119241 +0.8539475 1.907556 0.1119241 +0.974052 1.907556 0.1119241 +1.113885 1.907556 0.1119241 +1.27456 1.907556 0.1119241 +1.458117 1.907556 0.1119241 +1.667858 1.907556 0.1119241 +1.907556 1.907556 0.1119241 +2.181521 1.907556 0.1119241 +2.494678 1.907556 0.1119241 +2.852659 1.907556 0.1119241 +3.261896 1.907556 0.1119241 +3.729748 1.907556 0.1119241 +4.264621 1.907556 0.1119241 +4.876131 1.907556 0.1119241 +5.575266 1.907556 0.1119241 +6.374593 1.907556 0.1119241 +0 2.181521 0.1119241 +0 2.181521 0.1119241 +0 2.181521 0.1119241 +0.002268731 2.181521 0.1119241 +0.07076883 2.181521 0.1119241 +0.1119241 2.181521 0.1119241 +0.1475052 2.181521 0.1119241 +0.1846606 2.181521 0.1119241 +0.2245119 2.181521 0.1119241 +0.2679612 2.181521 0.1119241 +0.3158431 2.181521 0.1119241 +0.3689944 2.181521 0.1119241 +0.4282948 2.181521 0.1119241 +0.494694 2.181521 0.1119241 +0.5692344 2.181521 0.1119241 +0.6530715 2.181521 0.1119241 +0.7474945 2.181521 0.1119241 +0.8539475 2.181521 0.1119241 +0.974052 2.181521 0.1119241 +1.113885 2.181521 0.1119241 +1.27456 2.181521 0.1119241 +1.458117 2.181521 0.1119241 +1.667858 2.181521 0.1119241 +1.907556 2.181521 0.1119241 +2.181521 2.181521 0.1119241 +2.494678 2.181521 0.1119241 +2.852659 2.181521 0.1119241 +3.261896 2.181521 0.1119241 +3.729748 2.181521 0.1119241 +4.264621 2.181521 0.1119241 +4.876131 2.181521 0.1119241 +5.575266 2.181521 0.1119241 +6.374593 2.181521 0.1119241 +0 2.494678 0.1119241 +0 2.494678 0.1119241 +0 2.494678 0.1119241 +0.002268731 2.494678 0.1119241 +0.07076883 2.494678 0.1119241 +0.1119241 2.494678 0.1119241 +0.1475052 2.494678 0.1119241 +0.1846606 2.494678 0.1119241 +0.2245119 2.494678 0.1119241 +0.2679612 2.494678 0.1119241 +0.3158431 2.494678 0.1119241 +0.3689944 2.494678 0.1119241 +0.4282948 2.494678 0.1119241 +0.494694 2.494678 0.1119241 +0.5692344 2.494678 0.1119241 +0.6530715 2.494678 0.1119241 +0.7474945 2.494678 0.1119241 +0.8539475 2.494678 0.1119241 +0.974052 2.494678 0.1119241 +1.113885 2.494678 0.1119241 +1.27456 2.494678 0.1119241 +1.458117 2.494678 0.1119241 +1.667858 2.494678 0.1119241 +1.907556 2.494678 0.1119241 +2.181521 2.494678 0.1119241 +2.494678 2.494678 0.1119241 +2.852659 2.494678 0.1119241 +3.261896 2.494678 0.1119241 +3.729748 2.494678 0.1119241 +4.264621 2.494678 0.1119241 +4.876131 2.494678 0.1119241 +5.575266 2.494678 0.1119241 +6.374593 2.494678 0.1119241 +0 2.852659 0.1119241 +0 2.852659 0.1119241 +0 2.852659 0.1119241 +0.002268731 2.852659 0.1119241 +0.07076883 2.852659 0.1119241 +0.1119241 2.852659 0.1119241 +0.1475052 2.852659 0.1119241 +0.1846606 2.852659 0.1119241 +0.2245119 2.852659 0.1119241 +0.2679612 2.852659 0.1119241 +0.3158431 2.852659 0.1119241 +0.3689944 2.852659 0.1119241 +0.4282948 2.852659 0.1119241 +0.494694 2.852659 0.1119241 +0.5692344 2.852659 0.1119241 +0.6530715 2.852659 0.1119241 +0.7474945 2.852659 0.1119241 +0.8539475 2.852659 0.1119241 +0.974052 2.852659 0.1119241 +1.113885 2.852659 0.1119241 +1.27456 2.852659 0.1119241 +1.458117 2.852659 0.1119241 +1.667858 2.852659 0.1119241 +1.907556 2.852659 0.1119241 +2.181521 2.852659 0.1119241 +2.494678 2.852659 0.1119241 +2.852659 2.852659 0.1119241 +3.261896 2.852659 0.1119241 +3.729748 2.852659 0.1119241 +4.264621 2.852659 0.1119241 +4.876131 2.852659 0.1119241 +5.575266 2.852659 0.1119241 +6.374593 2.852659 0.1119241 +0 3.261896 0.1119241 +0 3.261896 0.1119241 +0 3.261896 0.1119241 +0.002268731 3.261896 0.1119241 +0.07076883 3.261896 0.1119241 +0.1119241 3.261896 0.1119241 +0.1475052 3.261896 0.1119241 +0.1846606 3.261896 0.1119241 +0.2245119 3.261896 0.1119241 +0.2679612 3.261896 0.1119241 +0.3158431 3.261896 0.1119241 +0.3689944 3.261896 0.1119241 +0.4282948 3.261896 0.1119241 +0.494694 3.261896 0.1119241 +0.5692344 3.261896 0.1119241 +0.6530715 3.261896 0.1119241 +0.7474945 3.261896 0.1119241 +0.8539475 3.261896 0.1119241 +0.974052 3.261896 0.1119241 +1.113885 3.261896 0.1119241 +1.27456 3.261896 0.1119241 +1.458117 3.261896 0.1119241 +1.667858 3.261896 0.1119241 +1.907556 3.261896 0.1119241 +2.181521 3.261896 0.1119241 +2.494678 3.261896 0.1119241 +2.852659 3.261896 0.1119241 +3.261896 3.261896 0.1119241 +3.729748 3.261896 0.1119241 +4.264621 3.261896 0.1119241 +4.876131 3.261896 0.1119241 +5.575266 3.261896 0.1119241 +6.374593 3.261896 0.1119241 +0 3.729748 0.1119241 +0 3.729748 0.1119241 +0 3.729748 0.1119241 +0.002268731 3.729748 0.1119241 +0.07076883 3.729748 0.1119241 +0.1119241 3.729748 0.1119241 +0.1475052 3.729748 0.1119241 +0.1846606 3.729748 0.1119241 +0.2245119 3.729748 0.1119241 +0.2679612 3.729748 0.1119241 +0.3158431 3.729748 0.1119241 +0.3689944 3.729748 0.1119241 +0.4282948 3.729748 0.1119241 +0.494694 3.729748 0.1119241 +0.5692344 3.729748 0.1119241 +0.6530715 3.729748 0.1119241 +0.7474945 3.729748 0.1119241 +0.8539475 3.729748 0.1119241 +0.974052 3.729748 0.1119241 +1.113885 3.729748 0.1119241 +1.27456 3.729748 0.1119241 +1.458117 3.729748 0.1119241 +1.667858 3.729748 0.1119241 +1.907556 3.729748 0.1119241 +2.181521 3.729748 0.1119241 +2.494678 3.729748 0.1119241 +2.852659 3.729748 0.1119241 +3.261896 3.729748 0.1119241 +3.729748 3.729748 0.1119241 +4.264621 3.729748 0.1119241 +4.876131 3.729748 0.1119241 +5.575266 3.729748 0.1119241 +6.374593 3.729748 0.1119241 +0 4.264621 0.1119241 +0 4.264621 0.1119241 +0 4.264621 0.1119241 +0.002268731 4.264621 0.1119241 +0.07076883 4.264621 0.1119241 +0.1119241 4.264621 0.1119241 +0.1475052 4.264621 0.1119241 +0.1846606 4.264621 0.1119241 +0.2245119 4.264621 0.1119241 +0.2679612 4.264621 0.1119241 +0.3158431 4.264621 0.1119241 +0.3689944 4.264621 0.1119241 +0.4282948 4.264621 0.1119241 +0.494694 4.264621 0.1119241 +0.5692344 4.264621 0.1119241 +0.6530715 4.264621 0.1119241 +0.7474945 4.264621 0.1119241 +0.8539475 4.264621 0.1119241 +0.974052 4.264621 0.1119241 +1.113885 4.264621 0.1119241 +1.27456 4.264621 0.1119241 +1.458117 4.264621 0.1119241 +1.667858 4.264621 0.1119241 +1.907556 4.264621 0.1119241 +2.181521 4.264621 0.1119241 +2.494678 4.264621 0.1119241 +2.852659 4.264621 0.1119241 +3.261896 4.264621 0.1119241 +3.729748 4.264621 0.1119241 +4.264621 4.264621 0.1119241 +4.876131 4.264621 0.1119241 +5.575266 4.264621 0.1119241 +6.374593 4.264621 0.1119241 +0 4.876131 0.1119241 +0 4.876131 0.1119241 +0 4.876131 0.1119241 +0.002268731 4.876131 0.1119241 +0.07076883 4.876131 0.1119241 +0.1119241 4.876131 0.1119241 +0.1475052 4.876131 0.1119241 +0.1846606 4.876131 0.1119241 +0.2245119 4.876131 0.1119241 +0.2679612 4.876131 0.1119241 +0.3158431 4.876131 0.1119241 +0.3689944 4.876131 0.1119241 +0.4282948 4.876131 0.1119241 +0.494694 4.876131 0.1119241 +0.5692344 4.876131 0.1119241 +0.6530715 4.876131 0.1119241 +0.7474945 4.876131 0.1119241 +0.8539475 4.876131 0.1119241 +0.974052 4.876131 0.1119241 +1.113885 4.876131 0.1119241 +1.27456 4.876131 0.1119241 +1.458117 4.876131 0.1119241 +1.667858 4.876131 0.1119241 +1.907556 4.876131 0.1119241 +2.181521 4.876131 0.1119241 +2.494678 4.876131 0.1119241 +2.852659 4.876131 0.1119241 +3.261896 4.876131 0.1119241 +3.729748 4.876131 0.1119241 +4.264621 4.876131 0.1119241 +4.876131 4.876131 0.1119241 +5.575266 4.876131 0.1119241 +6.374593 4.876131 0.1119241 +0 5.575266 0.1119241 +0 5.575266 0.1119241 +0 5.575266 0.1119241 +0.002268731 5.575266 0.1119241 +0.07076883 5.575266 0.1119241 +0.1119241 5.575266 0.1119241 +0.1475052 5.575266 0.1119241 +0.1846606 5.575266 0.1119241 +0.2245119 5.575266 0.1119241 +0.2679612 5.575266 0.1119241 +0.3158431 5.575266 0.1119241 +0.3689944 5.575266 0.1119241 +0.4282948 5.575266 0.1119241 +0.494694 5.575266 0.1119241 +0.5692344 5.575266 0.1119241 +0.6530715 5.575266 0.1119241 +0.7474945 5.575266 0.1119241 +0.8539475 5.575266 0.1119241 +0.974052 5.575266 0.1119241 +1.113885 5.575266 0.1119241 +1.27456 5.575266 0.1119241 +1.458117 5.575266 0.1119241 +1.667858 5.575266 0.1119241 +1.907556 5.575266 0.1119241 +2.181521 5.575266 0.1119241 +2.494678 5.575266 0.1119241 +2.852659 5.575266 0.1119241 +3.261896 5.575266 0.1119241 +3.729748 5.575266 0.1119241 +4.264621 5.575266 0.1119241 +4.876131 5.575266 0.1119241 +5.575266 5.575266 0.1119241 +6.374593 5.575266 0.1119241 +0 6.374593 0.1119241 +0 6.374593 0.1119241 +0 6.374593 0.1119241 +0.002268731 6.374593 0.1119241 +0.07076883 6.374593 0.1119241 +0.1119241 6.374593 0.1119241 +0.1475052 6.374593 0.1119241 +0.1846606 6.374593 0.1119241 +0.2245119 6.374593 0.1119241 +0.2679612 6.374593 0.1119241 +0.3158431 6.374593 0.1119241 +0.3689944 6.374593 0.1119241 +0.4282948 6.374593 0.1119241 +0.494694 6.374593 0.1119241 +0.5692344 6.374593 0.1119241 +0.6530715 6.374593 0.1119241 +0.7474945 6.374593 0.1119241 +0.8539475 6.374593 0.1119241 +0.974052 6.374593 0.1119241 +1.113885 6.374593 0.1119241 +1.27456 6.374593 0.1119241 +1.458117 6.374593 0.1119241 +1.667858 6.374593 0.1119241 +1.907556 6.374593 0.1119241 +2.181521 6.374593 0.1119241 +2.494678 6.374593 0.1119241 +2.852659 6.374593 0.1119241 +3.261896 6.374593 0.1119241 +3.729748 6.374593 0.1119241 +4.264621 6.374593 0.1119241 +4.876131 6.374593 0.1119241 +5.575266 6.374593 0.1119241 +6.374593 6.374593 0.1119241 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0.002268731 0.1475052 +0 0.002268731 0.1475052 +0 0.002268731 0.1475052 +0.002268731 0.002268731 0.1475052 +0.07076883 0.002268731 0.1475052 +0.1119241 0.002268731 0.1475052 +0.1475052 0.002268731 0.1475052 +0.1846606 0.002268731 0.1475052 +0.2245119 0.002268731 0.1475052 +0.2679612 0.002268731 0.1475052 +0.3158431 0.002268731 0.1475052 +0.3689944 0.002268731 0.1475052 +0.4282948 0.002268731 0.1475052 +0.494694 0.002268731 0.1475052 +0.5692344 0.002268731 0.1475052 +0.6530715 0.002268731 0.1475052 +0.7474945 0.002268731 0.1475052 +0.8539475 0.002268731 0.1475052 +0.974052 0.002268731 0.1475052 +1.113885 0.002268731 0.1475052 +1.27456 0.002268731 0.1475052 +1.458117 0.002268731 0.1475052 +1.667858 0.002268731 0.1475052 +1.907556 0.002268731 0.1475052 +2.181521 0.002268731 0.1475052 +2.494678 0.002268731 0.1475052 +2.852659 0.002268731 0.1475052 +3.261896 0.002268731 0.1475052 +3.729748 0.002268731 0.1475052 +4.264621 0.002268731 0.1475052 +4.876131 0.002268731 0.1475052 +5.575266 0.002268731 0.1475052 +6.374593 0.002268731 0.1475052 +0 0.07076883 0.1475052 +0 0.07076883 0.1475052 +0 0.07076883 0.1475052 +0.002268731 0.07076883 0.1475052 +0.07076883 0.07076883 0.1475052 +0.1119241 0.07076883 0.1475052 +0.1475052 0.07076883 0.1475052 +0.1846606 0.07076883 0.1475052 +0.2245119 0.07076883 0.1475052 +0.2679612 0.07076883 0.1475052 +0.3158431 0.07076883 0.1475052 +0.3689944 0.07076883 0.1475052 +0.4282948 0.07076883 0.1475052 +0.494694 0.07076883 0.1475052 +0.5692344 0.07076883 0.1475052 +0.6530715 0.07076883 0.1475052 +0.7474945 0.07076883 0.1475052 +0.8539475 0.07076883 0.1475052 +0.974052 0.07076883 0.1475052 +1.113885 0.07076883 0.1475052 +1.27456 0.07076883 0.1475052 +1.458117 0.07076883 0.1475052 +1.667858 0.07076883 0.1475052 +1.907556 0.07076883 0.1475052 +2.181521 0.07076883 0.1475052 +2.494678 0.07076883 0.1475052 +2.852659 0.07076883 0.1475052 +3.261896 0.07076883 0.1475052 +3.729748 0.07076883 0.1475052 +4.264621 0.07076883 0.1475052 +4.876131 0.07076883 0.1475052 +5.575266 0.07076883 0.1475052 +6.374593 0.07076883 0.1475052 +0 0.1119241 0.1475052 +0 0.1119241 0.1475052 +0 0.1119241 0.1475052 +0.002268731 0.1119241 0.1475052 +0.07076883 0.1119241 0.1475052 +0.1119241 0.1119241 0.1475052 +0.1475052 0.1119241 0.1475052 +0.1846606 0.1119241 0.1475052 +0.2245119 0.1119241 0.1475052 +0.2679612 0.1119241 0.1475052 +0.3158431 0.1119241 0.1475052 +0.3689944 0.1119241 0.1475052 +0.4282948 0.1119241 0.1475052 +0.494694 0.1119241 0.1475052 +0.5692344 0.1119241 0.1475052 +0.6530715 0.1119241 0.1475052 +0.7474945 0.1119241 0.1475052 +0.8539475 0.1119241 0.1475052 +0.974052 0.1119241 0.1475052 +1.113885 0.1119241 0.1475052 +1.27456 0.1119241 0.1475052 +1.458117 0.1119241 0.1475052 +1.667858 0.1119241 0.1475052 +1.907556 0.1119241 0.1475052 +2.181521 0.1119241 0.1475052 +2.494678 0.1119241 0.1475052 +2.852659 0.1119241 0.1475052 +3.261896 0.1119241 0.1475052 +3.729748 0.1119241 0.1475052 +4.264621 0.1119241 0.1475052 +4.876131 0.1119241 0.1475052 +5.575266 0.1119241 0.1475052 +6.374593 0.1119241 0.1475052 +0 0.1475052 0.1475052 +0 0.1475052 0.1475052 +0 0.1475052 0.1475052 +0.002268731 0.1475052 0.1475052 +0.07076883 0.1475052 0.1475052 +0.1119241 0.1475052 0.1475052 +0.1475052 0.1475052 0.1475052 +0.1846606 0.1475052 0.1475052 +0.2245119 0.1475052 0.1475052 +0.2679612 0.1475052 0.1475052 +0.3158431 0.1475052 0.1475052 +0.3689944 0.1475052 0.1475052 +0.4282948 0.1475052 0.1475052 +0.494694 0.1475052 0.1475052 +0.5692344 0.1475052 0.1475052 +0.6530715 0.1475052 0.1475052 +0.7474945 0.1475052 0.1475052 +0.8539475 0.1475052 0.1475052 +0.974052 0.1475052 0.1475052 +1.113885 0.1475052 0.1475052 +1.27456 0.1475052 0.1475052 +1.458117 0.1475052 0.1475052 +1.667858 0.1475052 0.1475052 +1.907556 0.1475052 0.1475052 +2.181521 0.1475052 0.1475052 +2.494678 0.1475052 0.1475052 +2.852659 0.1475052 0.1475052 +3.261896 0.1475052 0.1475052 +3.729748 0.1475052 0.1475052 +4.264621 0.1475052 0.1475052 +4.876131 0.1475052 0.1475052 +5.575266 0.1475052 0.1475052 +6.374593 0.1475052 0.1475052 +0 0.1846606 0.1475052 +0 0.1846606 0.1475052 +0 0.1846606 0.1475052 +0.002268731 0.1846606 0.1475052 +0.07076883 0.1846606 0.1475052 +0.1119241 0.1846606 0.1475052 +0.1475052 0.1846606 0.1475052 +0.1846606 0.1846606 0.1475052 +0.2245119 0.1846606 0.1475052 +0.2679612 0.1846606 0.1475052 +0.3158431 0.1846606 0.1475052 +0.3689944 0.1846606 0.1475052 +0.4282948 0.1846606 0.1475052 +0.494694 0.1846606 0.1475052 +0.5692344 0.1846606 0.1475052 +0.6530715 0.1846606 0.1475052 +0.7474945 0.1846606 0.1475052 +0.8539475 0.1846606 0.1475052 +0.974052 0.1846606 0.1475052 +1.113885 0.1846606 0.1475052 +1.27456 0.1846606 0.1475052 +1.458117 0.1846606 0.1475052 +1.667858 0.1846606 0.1475052 +1.907556 0.1846606 0.1475052 +2.181521 0.1846606 0.1475052 +2.494678 0.1846606 0.1475052 +2.852659 0.1846606 0.1475052 +3.261896 0.1846606 0.1475052 +3.729748 0.1846606 0.1475052 +4.264621 0.1846606 0.1475052 +4.876131 0.1846606 0.1475052 +5.575266 0.1846606 0.1475052 +6.374593 0.1846606 0.1475052 +0 0.2245119 0.1475052 +0 0.2245119 0.1475052 +0 0.2245119 0.1475052 +0.002268731 0.2245119 0.1475052 +0.07076883 0.2245119 0.1475052 +0.1119241 0.2245119 0.1475052 +0.1475052 0.2245119 0.1475052 +0.1846606 0.2245119 0.1475052 +0.2245119 0.2245119 0.1475052 +0.2679612 0.2245119 0.1475052 +0.3158431 0.2245119 0.1475052 +0.3689944 0.2245119 0.1475052 +0.4282948 0.2245119 0.1475052 +0.494694 0.2245119 0.1475052 +0.5692344 0.2245119 0.1475052 +0.6530715 0.2245119 0.1475052 +0.7474945 0.2245119 0.1475052 +0.8539475 0.2245119 0.1475052 +0.974052 0.2245119 0.1475052 +1.113885 0.2245119 0.1475052 +1.27456 0.2245119 0.1475052 +1.458117 0.2245119 0.1475052 +1.667858 0.2245119 0.1475052 +1.907556 0.2245119 0.1475052 +2.181521 0.2245119 0.1475052 +2.494678 0.2245119 0.1475052 +2.852659 0.2245119 0.1475052 +3.261896 0.2245119 0.1475052 +3.729748 0.2245119 0.1475052 +4.264621 0.2245119 0.1475052 +4.876131 0.2245119 0.1475052 +5.575266 0.2245119 0.1475052 +6.374593 0.2245119 0.1475052 +0 0.2679612 0.1475052 +0 0.2679612 0.1475052 +0 0.2679612 0.1475052 +0.002268731 0.2679612 0.1475052 +0.07076883 0.2679612 0.1475052 +0.1119241 0.2679612 0.1475052 +0.1475052 0.2679612 0.1475052 +0.1846606 0.2679612 0.1475052 +0.2245119 0.2679612 0.1475052 +0.2679612 0.2679612 0.1475052 +0.3158431 0.2679612 0.1475052 +0.3689944 0.2679612 0.1475052 +0.4282948 0.2679612 0.1475052 +0.494694 0.2679612 0.1475052 +0.5692344 0.2679612 0.1475052 +0.6530715 0.2679612 0.1475052 +0.7474945 0.2679612 0.1475052 +0.8539475 0.2679612 0.1475052 +0.974052 0.2679612 0.1475052 +1.113885 0.2679612 0.1475052 +1.27456 0.2679612 0.1475052 +1.458117 0.2679612 0.1475052 +1.667858 0.2679612 0.1475052 +1.907556 0.2679612 0.1475052 +2.181521 0.2679612 0.1475052 +2.494678 0.2679612 0.1475052 +2.852659 0.2679612 0.1475052 +3.261896 0.2679612 0.1475052 +3.729748 0.2679612 0.1475052 +4.264621 0.2679612 0.1475052 +4.876131 0.2679612 0.1475052 +5.575266 0.2679612 0.1475052 +6.374593 0.2679612 0.1475052 +0 0.3158431 0.1475052 +0 0.3158431 0.1475052 +0 0.3158431 0.1475052 +0.002268731 0.3158431 0.1475052 +0.07076883 0.3158431 0.1475052 +0.1119241 0.3158431 0.1475052 +0.1475052 0.3158431 0.1475052 +0.1846606 0.3158431 0.1475052 +0.2245119 0.3158431 0.1475052 +0.2679612 0.3158431 0.1475052 +0.3158431 0.3158431 0.1475052 +0.3689944 0.3158431 0.1475052 +0.4282948 0.3158431 0.1475052 +0.494694 0.3158431 0.1475052 +0.5692344 0.3158431 0.1475052 +0.6530715 0.3158431 0.1475052 +0.7474945 0.3158431 0.1475052 +0.8539475 0.3158431 0.1475052 +0.974052 0.3158431 0.1475052 +1.113885 0.3158431 0.1475052 +1.27456 0.3158431 0.1475052 +1.458117 0.3158431 0.1475052 +1.667858 0.3158431 0.1475052 +1.907556 0.3158431 0.1475052 +2.181521 0.3158431 0.1475052 +2.494678 0.3158431 0.1475052 +2.852659 0.3158431 0.1475052 +3.261896 0.3158431 0.1475052 +3.729748 0.3158431 0.1475052 +4.264621 0.3158431 0.1475052 +4.876131 0.3158431 0.1475052 +5.575266 0.3158431 0.1475052 +6.374593 0.3158431 0.1475052 +0 0.3689944 0.1475052 +0 0.3689944 0.1475052 +0 0.3689944 0.1475052 +0.002268731 0.3689944 0.1475052 +0.07076883 0.3689944 0.1475052 +0.1119241 0.3689944 0.1475052 +0.1475052 0.3689944 0.1475052 +0.1846606 0.3689944 0.1475052 +0.2245119 0.3689944 0.1475052 +0.2679612 0.3689944 0.1475052 +0.3158431 0.3689944 0.1475052 +0.3689944 0.3689944 0.1475052 +0.4282948 0.3689944 0.1475052 +0.494694 0.3689944 0.1475052 +0.5692344 0.3689944 0.1475052 +0.6530715 0.3689944 0.1475052 +0.7474945 0.3689944 0.1475052 +0.8539475 0.3689944 0.1475052 +0.974052 0.3689944 0.1475052 +1.113885 0.3689944 0.1475052 +1.27456 0.3689944 0.1475052 +1.458117 0.3689944 0.1475052 +1.667858 0.3689944 0.1475052 +1.907556 0.3689944 0.1475052 +2.181521 0.3689944 0.1475052 +2.494678 0.3689944 0.1475052 +2.852659 0.3689944 0.1475052 +3.261896 0.3689944 0.1475052 +3.729748 0.3689944 0.1475052 +4.264621 0.3689944 0.1475052 +4.876131 0.3689944 0.1475052 +5.575266 0.3689944 0.1475052 +6.374593 0.3689944 0.1475052 +0 0.4282948 0.1475052 +0 0.4282948 0.1475052 +0 0.4282948 0.1475052 +0.002268731 0.4282948 0.1475052 +0.07076883 0.4282948 0.1475052 +0.1119241 0.4282948 0.1475052 +0.1475052 0.4282948 0.1475052 +0.1846606 0.4282948 0.1475052 +0.2245119 0.4282948 0.1475052 +0.2679612 0.4282948 0.1475052 +0.3158431 0.4282948 0.1475052 +0.3689944 0.4282948 0.1475052 +0.4282948 0.4282948 0.1475052 +0.494694 0.4282948 0.1475052 +0.5692344 0.4282948 0.1475052 +0.6530715 0.4282948 0.1475052 +0.7474945 0.4282948 0.1475052 +0.8539475 0.4282948 0.1475052 +0.974052 0.4282948 0.1475052 +1.113885 0.4282948 0.1475052 +1.27456 0.4282948 0.1475052 +1.458117 0.4282948 0.1475052 +1.667858 0.4282948 0.1475052 +1.907556 0.4282948 0.1475052 +2.181521 0.4282948 0.1475052 +2.494678 0.4282948 0.1475052 +2.852659 0.4282948 0.1475052 +3.261896 0.4282948 0.1475052 +3.729748 0.4282948 0.1475052 +4.264621 0.4282948 0.1475052 +4.876131 0.4282948 0.1475052 +5.575266 0.4282948 0.1475052 +6.374593 0.4282948 0.1475052 +0 0.494694 0.1475052 +0 0.494694 0.1475052 +0 0.494694 0.1475052 +0.002268731 0.494694 0.1475052 +0.07076883 0.494694 0.1475052 +0.1119241 0.494694 0.1475052 +0.1475052 0.494694 0.1475052 +0.1846606 0.494694 0.1475052 +0.2245119 0.494694 0.1475052 +0.2679612 0.494694 0.1475052 +0.3158431 0.494694 0.1475052 +0.3689944 0.494694 0.1475052 +0.4282948 0.494694 0.1475052 +0.494694 0.494694 0.1475052 +0.5692344 0.494694 0.1475052 +0.6530715 0.494694 0.1475052 +0.7474945 0.494694 0.1475052 +0.8539475 0.494694 0.1475052 +0.974052 0.494694 0.1475052 +1.113885 0.494694 0.1475052 +1.27456 0.494694 0.1475052 +1.458117 0.494694 0.1475052 +1.667858 0.494694 0.1475052 +1.907556 0.494694 0.1475052 +2.181521 0.494694 0.1475052 +2.494678 0.494694 0.1475052 +2.852659 0.494694 0.1475052 +3.261896 0.494694 0.1475052 +3.729748 0.494694 0.1475052 +4.264621 0.494694 0.1475052 +4.876131 0.494694 0.1475052 +5.575266 0.494694 0.1475052 +6.374593 0.494694 0.1475052 +0 0.5692344 0.1475052 +0 0.5692344 0.1475052 +0 0.5692344 0.1475052 +0.002268731 0.5692344 0.1475052 +0.07076883 0.5692344 0.1475052 +0.1119241 0.5692344 0.1475052 +0.1475052 0.5692344 0.1475052 +0.1846606 0.5692344 0.1475052 +0.2245119 0.5692344 0.1475052 +0.2679612 0.5692344 0.1475052 +0.3158431 0.5692344 0.1475052 +0.3689944 0.5692344 0.1475052 +0.4282948 0.5692344 0.1475052 +0.494694 0.5692344 0.1475052 +0.5692344 0.5692344 0.1475052 +0.6530715 0.5692344 0.1475052 +0.7474945 0.5692344 0.1475052 +0.8539475 0.5692344 0.1475052 +0.974052 0.5692344 0.1475052 +1.113885 0.5692344 0.1475052 +1.27456 0.5692344 0.1475052 +1.458117 0.5692344 0.1475052 +1.667858 0.5692344 0.1475052 +1.907556 0.5692344 0.1475052 +2.181521 0.5692344 0.1475052 +2.494678 0.5692344 0.1475052 +2.852659 0.5692344 0.1475052 +3.261896 0.5692344 0.1475052 +3.729748 0.5692344 0.1475052 +4.264621 0.5692344 0.1475052 +4.876131 0.5692344 0.1475052 +5.575266 0.5692344 0.1475052 +6.374593 0.5692344 0.1475052 +0 0.6530715 0.1475052 +0 0.6530715 0.1475052 +0 0.6530715 0.1475052 +0.002268731 0.6530715 0.1475052 +0.07076883 0.6530715 0.1475052 +0.1119241 0.6530715 0.1475052 +0.1475052 0.6530715 0.1475052 +0.1846606 0.6530715 0.1475052 +0.2245119 0.6530715 0.1475052 +0.2679612 0.6530715 0.1475052 +0.3158431 0.6530715 0.1475052 +0.3689944 0.6530715 0.1475052 +0.4282948 0.6530715 0.1475052 +0.494694 0.6530715 0.1475052 +0.5692344 0.6530715 0.1475052 +0.6530715 0.6530715 0.1475052 +0.7474945 0.6530715 0.1475052 +0.8539475 0.6530715 0.1475052 +0.974052 0.6530715 0.1475052 +1.113885 0.6530715 0.1475052 +1.27456 0.6530715 0.1475052 +1.458117 0.6530715 0.1475052 +1.667858 0.6530715 0.1475052 +1.907556 0.6530715 0.1475052 +2.181521 0.6530715 0.1475052 +2.494678 0.6530715 0.1475052 +2.852659 0.6530715 0.1475052 +3.261896 0.6530715 0.1475052 +3.729748 0.6530715 0.1475052 +4.264621 0.6530715 0.1475052 +4.876131 0.6530715 0.1475052 +5.575266 0.6530715 0.1475052 +6.374593 0.6530715 0.1475052 +0 0.7474945 0.1475052 +0 0.7474945 0.1475052 +0 0.7474945 0.1475052 +0.002268731 0.7474945 0.1475052 +0.07076883 0.7474945 0.1475052 +0.1119241 0.7474945 0.1475052 +0.1475052 0.7474945 0.1475052 +0.1846606 0.7474945 0.1475052 +0.2245119 0.7474945 0.1475052 +0.2679612 0.7474945 0.1475052 +0.3158431 0.7474945 0.1475052 +0.3689944 0.7474945 0.1475052 +0.4282948 0.7474945 0.1475052 +0.494694 0.7474945 0.1475052 +0.5692344 0.7474945 0.1475052 +0.6530715 0.7474945 0.1475052 +0.7474945 0.7474945 0.1475052 +0.8539475 0.7474945 0.1475052 +0.974052 0.7474945 0.1475052 +1.113885 0.7474945 0.1475052 +1.27456 0.7474945 0.1475052 +1.458117 0.7474945 0.1475052 +1.667858 0.7474945 0.1475052 +1.907556 0.7474945 0.1475052 +2.181521 0.7474945 0.1475052 +2.494678 0.7474945 0.1475052 +2.852659 0.7474945 0.1475052 +3.261896 0.7474945 0.1475052 +3.729748 0.7474945 0.1475052 +4.264621 0.7474945 0.1475052 +4.876131 0.7474945 0.1475052 +5.575266 0.7474945 0.1475052 +6.374593 0.7474945 0.1475052 +0 0.8539475 0.1475052 +0 0.8539475 0.1475052 +0 0.8539475 0.1475052 +0.002268731 0.8539475 0.1475052 +0.07076883 0.8539475 0.1475052 +0.1119241 0.8539475 0.1475052 +0.1475052 0.8539475 0.1475052 +0.1846606 0.8539475 0.1475052 +0.2245119 0.8539475 0.1475052 +0.2679612 0.8539475 0.1475052 +0.3158431 0.8539475 0.1475052 +0.3689944 0.8539475 0.1475052 +0.4282948 0.8539475 0.1475052 +0.494694 0.8539475 0.1475052 +0.5692344 0.8539475 0.1475052 +0.6530715 0.8539475 0.1475052 +0.7474945 0.8539475 0.1475052 +0.8539475 0.8539475 0.1475052 +0.974052 0.8539475 0.1475052 +1.113885 0.8539475 0.1475052 +1.27456 0.8539475 0.1475052 +1.458117 0.8539475 0.1475052 +1.667858 0.8539475 0.1475052 +1.907556 0.8539475 0.1475052 +2.181521 0.8539475 0.1475052 +2.494678 0.8539475 0.1475052 +2.852659 0.8539475 0.1475052 +3.261896 0.8539475 0.1475052 +3.729748 0.8539475 0.1475052 +4.264621 0.8539475 0.1475052 +4.876131 0.8539475 0.1475052 +5.575266 0.8539475 0.1475052 +6.374593 0.8539475 0.1475052 +0 0.974052 0.1475052 +0 0.974052 0.1475052 +0 0.974052 0.1475052 +0.002268731 0.974052 0.1475052 +0.07076883 0.974052 0.1475052 +0.1119241 0.974052 0.1475052 +0.1475052 0.974052 0.1475052 +0.1846606 0.974052 0.1475052 +0.2245119 0.974052 0.1475052 +0.2679612 0.974052 0.1475052 +0.3158431 0.974052 0.1475052 +0.3689944 0.974052 0.1475052 +0.4282948 0.974052 0.1475052 +0.494694 0.974052 0.1475052 +0.5692344 0.974052 0.1475052 +0.6530715 0.974052 0.1475052 +0.7474945 0.974052 0.1475052 +0.8539475 0.974052 0.1475052 +0.974052 0.974052 0.1475052 +1.113885 0.974052 0.1475052 +1.27456 0.974052 0.1475052 +1.458117 0.974052 0.1475052 +1.667858 0.974052 0.1475052 +1.907556 0.974052 0.1475052 +2.181521 0.974052 0.1475052 +2.494678 0.974052 0.1475052 +2.852659 0.974052 0.1475052 +3.261896 0.974052 0.1475052 +3.729748 0.974052 0.1475052 +4.264621 0.974052 0.1475052 +4.876131 0.974052 0.1475052 +5.575266 0.974052 0.1475052 +6.374593 0.974052 0.1475052 +0 1.113885 0.1475052 +0 1.113885 0.1475052 +0 1.113885 0.1475052 +0.002268731 1.113885 0.1475052 +0.07076883 1.113885 0.1475052 +0.1119241 1.113885 0.1475052 +0.1475052 1.113885 0.1475052 +0.1846606 1.113885 0.1475052 +0.2245119 1.113885 0.1475052 +0.2679612 1.113885 0.1475052 +0.3158431 1.113885 0.1475052 +0.3689944 1.113885 0.1475052 +0.4282948 1.113885 0.1475052 +0.494694 1.113885 0.1475052 +0.5692344 1.113885 0.1475052 +0.6530715 1.113885 0.1475052 +0.7474945 1.113885 0.1475052 +0.8539475 1.113885 0.1475052 +0.974052 1.113885 0.1475052 +1.113885 1.113885 0.1475052 +1.27456 1.113885 0.1475052 +1.458117 1.113885 0.1475052 +1.667858 1.113885 0.1475052 +1.907556 1.113885 0.1475052 +2.181521 1.113885 0.1475052 +2.494678 1.113885 0.1475052 +2.852659 1.113885 0.1475052 +3.261896 1.113885 0.1475052 +3.729748 1.113885 0.1475052 +4.264621 1.113885 0.1475052 +4.876131 1.113885 0.1475052 +5.575266 1.113885 0.1475052 +6.374593 1.113885 0.1475052 +0 1.27456 0.1475052 +0 1.27456 0.1475052 +0 1.27456 0.1475052 +0.002268731 1.27456 0.1475052 +0.07076883 1.27456 0.1475052 +0.1119241 1.27456 0.1475052 +0.1475052 1.27456 0.1475052 +0.1846606 1.27456 0.1475052 +0.2245119 1.27456 0.1475052 +0.2679612 1.27456 0.1475052 +0.3158431 1.27456 0.1475052 +0.3689944 1.27456 0.1475052 +0.4282948 1.27456 0.1475052 +0.494694 1.27456 0.1475052 +0.5692344 1.27456 0.1475052 +0.6530715 1.27456 0.1475052 +0.7474945 1.27456 0.1475052 +0.8539475 1.27456 0.1475052 +0.974052 1.27456 0.1475052 +1.113885 1.27456 0.1475052 +1.27456 1.27456 0.1475052 +1.458117 1.27456 0.1475052 +1.667858 1.27456 0.1475052 +1.907556 1.27456 0.1475052 +2.181521 1.27456 0.1475052 +2.494678 1.27456 0.1475052 +2.852659 1.27456 0.1475052 +3.261896 1.27456 0.1475052 +3.729748 1.27456 0.1475052 +4.264621 1.27456 0.1475052 +4.876131 1.27456 0.1475052 +5.575266 1.27456 0.1475052 +6.374593 1.27456 0.1475052 +0 1.458117 0.1475052 +0 1.458117 0.1475052 +0 1.458117 0.1475052 +0.002268731 1.458117 0.1475052 +0.07076883 1.458117 0.1475052 +0.1119241 1.458117 0.1475052 +0.1475052 1.458117 0.1475052 +0.1846606 1.458117 0.1475052 +0.2245119 1.458117 0.1475052 +0.2679612 1.458117 0.1475052 +0.3158431 1.458117 0.1475052 +0.3689944 1.458117 0.1475052 +0.4282948 1.458117 0.1475052 +0.494694 1.458117 0.1475052 +0.5692344 1.458117 0.1475052 +0.6530715 1.458117 0.1475052 +0.7474945 1.458117 0.1475052 +0.8539475 1.458117 0.1475052 +0.974052 1.458117 0.1475052 +1.113885 1.458117 0.1475052 +1.27456 1.458117 0.1475052 +1.458117 1.458117 0.1475052 +1.667858 1.458117 0.1475052 +1.907556 1.458117 0.1475052 +2.181521 1.458117 0.1475052 +2.494678 1.458117 0.1475052 +2.852659 1.458117 0.1475052 +3.261896 1.458117 0.1475052 +3.729748 1.458117 0.1475052 +4.264621 1.458117 0.1475052 +4.876131 1.458117 0.1475052 +5.575266 1.458117 0.1475052 +6.374593 1.458117 0.1475052 +0 1.667858 0.1475052 +0 1.667858 0.1475052 +0 1.667858 0.1475052 +0.002268731 1.667858 0.1475052 +0.07076883 1.667858 0.1475052 +0.1119241 1.667858 0.1475052 +0.1475052 1.667858 0.1475052 +0.1846606 1.667858 0.1475052 +0.2245119 1.667858 0.1475052 +0.2679612 1.667858 0.1475052 +0.3158431 1.667858 0.1475052 +0.3689944 1.667858 0.1475052 +0.4282948 1.667858 0.1475052 +0.494694 1.667858 0.1475052 +0.5692344 1.667858 0.1475052 +0.6530715 1.667858 0.1475052 +0.7474945 1.667858 0.1475052 +0.8539475 1.667858 0.1475052 +0.974052 1.667858 0.1475052 +1.113885 1.667858 0.1475052 +1.27456 1.667858 0.1475052 +1.458117 1.667858 0.1475052 +1.667858 1.667858 0.1475052 +1.907556 1.667858 0.1475052 +2.181521 1.667858 0.1475052 +2.494678 1.667858 0.1475052 +2.852659 1.667858 0.1475052 +3.261896 1.667858 0.1475052 +3.729748 1.667858 0.1475052 +4.264621 1.667858 0.1475052 +4.876131 1.667858 0.1475052 +5.575266 1.667858 0.1475052 +6.374593 1.667858 0.1475052 +0 1.907556 0.1475052 +0 1.907556 0.1475052 +0 1.907556 0.1475052 +0.002268731 1.907556 0.1475052 +0.07076883 1.907556 0.1475052 +0.1119241 1.907556 0.1475052 +0.1475052 1.907556 0.1475052 +0.1846606 1.907556 0.1475052 +0.2245119 1.907556 0.1475052 +0.2679612 1.907556 0.1475052 +0.3158431 1.907556 0.1475052 +0.3689944 1.907556 0.1475052 +0.4282948 1.907556 0.1475052 +0.494694 1.907556 0.1475052 +0.5692344 1.907556 0.1475052 +0.6530715 1.907556 0.1475052 +0.7474945 1.907556 0.1475052 +0.8539475 1.907556 0.1475052 +0.974052 1.907556 0.1475052 +1.113885 1.907556 0.1475052 +1.27456 1.907556 0.1475052 +1.458117 1.907556 0.1475052 +1.667858 1.907556 0.1475052 +1.907556 1.907556 0.1475052 +2.181521 1.907556 0.1475052 +2.494678 1.907556 0.1475052 +2.852659 1.907556 0.1475052 +3.261896 1.907556 0.1475052 +3.729748 1.907556 0.1475052 +4.264621 1.907556 0.1475052 +4.876131 1.907556 0.1475052 +5.575266 1.907556 0.1475052 +6.374593 1.907556 0.1475052 +0 2.181521 0.1475052 +0 2.181521 0.1475052 +0 2.181521 0.1475052 +0.002268731 2.181521 0.1475052 +0.07076883 2.181521 0.1475052 +0.1119241 2.181521 0.1475052 +0.1475052 2.181521 0.1475052 +0.1846606 2.181521 0.1475052 +0.2245119 2.181521 0.1475052 +0.2679612 2.181521 0.1475052 +0.3158431 2.181521 0.1475052 +0.3689944 2.181521 0.1475052 +0.4282948 2.181521 0.1475052 +0.494694 2.181521 0.1475052 +0.5692344 2.181521 0.1475052 +0.6530715 2.181521 0.1475052 +0.7474945 2.181521 0.1475052 +0.8539475 2.181521 0.1475052 +0.974052 2.181521 0.1475052 +1.113885 2.181521 0.1475052 +1.27456 2.181521 0.1475052 +1.458117 2.181521 0.1475052 +1.667858 2.181521 0.1475052 +1.907556 2.181521 0.1475052 +2.181521 2.181521 0.1475052 +2.494678 2.181521 0.1475052 +2.852659 2.181521 0.1475052 +3.261896 2.181521 0.1475052 +3.729748 2.181521 0.1475052 +4.264621 2.181521 0.1475052 +4.876131 2.181521 0.1475052 +5.575266 2.181521 0.1475052 +6.374593 2.181521 0.1475052 +0 2.494678 0.1475052 +0 2.494678 0.1475052 +0 2.494678 0.1475052 +0.002268731 2.494678 0.1475052 +0.07076883 2.494678 0.1475052 +0.1119241 2.494678 0.1475052 +0.1475052 2.494678 0.1475052 +0.1846606 2.494678 0.1475052 +0.2245119 2.494678 0.1475052 +0.2679612 2.494678 0.1475052 +0.3158431 2.494678 0.1475052 +0.3689944 2.494678 0.1475052 +0.4282948 2.494678 0.1475052 +0.494694 2.494678 0.1475052 +0.5692344 2.494678 0.1475052 +0.6530715 2.494678 0.1475052 +0.7474945 2.494678 0.1475052 +0.8539475 2.494678 0.1475052 +0.974052 2.494678 0.1475052 +1.113885 2.494678 0.1475052 +1.27456 2.494678 0.1475052 +1.458117 2.494678 0.1475052 +1.667858 2.494678 0.1475052 +1.907556 2.494678 0.1475052 +2.181521 2.494678 0.1475052 +2.494678 2.494678 0.1475052 +2.852659 2.494678 0.1475052 +3.261896 2.494678 0.1475052 +3.729748 2.494678 0.1475052 +4.264621 2.494678 0.1475052 +4.876131 2.494678 0.1475052 +5.575266 2.494678 0.1475052 +6.374593 2.494678 0.1475052 +0 2.852659 0.1475052 +0 2.852659 0.1475052 +0 2.852659 0.1475052 +0.002268731 2.852659 0.1475052 +0.07076883 2.852659 0.1475052 +0.1119241 2.852659 0.1475052 +0.1475052 2.852659 0.1475052 +0.1846606 2.852659 0.1475052 +0.2245119 2.852659 0.1475052 +0.2679612 2.852659 0.1475052 +0.3158431 2.852659 0.1475052 +0.3689944 2.852659 0.1475052 +0.4282948 2.852659 0.1475052 +0.494694 2.852659 0.1475052 +0.5692344 2.852659 0.1475052 +0.6530715 2.852659 0.1475052 +0.7474945 2.852659 0.1475052 +0.8539475 2.852659 0.1475052 +0.974052 2.852659 0.1475052 +1.113885 2.852659 0.1475052 +1.27456 2.852659 0.1475052 +1.458117 2.852659 0.1475052 +1.667858 2.852659 0.1475052 +1.907556 2.852659 0.1475052 +2.181521 2.852659 0.1475052 +2.494678 2.852659 0.1475052 +2.852659 2.852659 0.1475052 +3.261896 2.852659 0.1475052 +3.729748 2.852659 0.1475052 +4.264621 2.852659 0.1475052 +4.876131 2.852659 0.1475052 +5.575266 2.852659 0.1475052 +6.374593 2.852659 0.1475052 +0 3.261896 0.1475052 +0 3.261896 0.1475052 +0 3.261896 0.1475052 +0.002268731 3.261896 0.1475052 +0.07076883 3.261896 0.1475052 +0.1119241 3.261896 0.1475052 +0.1475052 3.261896 0.1475052 +0.1846606 3.261896 0.1475052 +0.2245119 3.261896 0.1475052 +0.2679612 3.261896 0.1475052 +0.3158431 3.261896 0.1475052 +0.3689944 3.261896 0.1475052 +0.4282948 3.261896 0.1475052 +0.494694 3.261896 0.1475052 +0.5692344 3.261896 0.1475052 +0.6530715 3.261896 0.1475052 +0.7474945 3.261896 0.1475052 +0.8539475 3.261896 0.1475052 +0.974052 3.261896 0.1475052 +1.113885 3.261896 0.1475052 +1.27456 3.261896 0.1475052 +1.458117 3.261896 0.1475052 +1.667858 3.261896 0.1475052 +1.907556 3.261896 0.1475052 +2.181521 3.261896 0.1475052 +2.494678 3.261896 0.1475052 +2.852659 3.261896 0.1475052 +3.261896 3.261896 0.1475052 +3.729748 3.261896 0.1475052 +4.264621 3.261896 0.1475052 +4.876131 3.261896 0.1475052 +5.575266 3.261896 0.1475052 +6.374593 3.261896 0.1475052 +0 3.729748 0.1475052 +0 3.729748 0.1475052 +0 3.729748 0.1475052 +0.002268731 3.729748 0.1475052 +0.07076883 3.729748 0.1475052 +0.1119241 3.729748 0.1475052 +0.1475052 3.729748 0.1475052 +0.1846606 3.729748 0.1475052 +0.2245119 3.729748 0.1475052 +0.2679612 3.729748 0.1475052 +0.3158431 3.729748 0.1475052 +0.3689944 3.729748 0.1475052 +0.4282948 3.729748 0.1475052 +0.494694 3.729748 0.1475052 +0.5692344 3.729748 0.1475052 +0.6530715 3.729748 0.1475052 +0.7474945 3.729748 0.1475052 +0.8539475 3.729748 0.1475052 +0.974052 3.729748 0.1475052 +1.113885 3.729748 0.1475052 +1.27456 3.729748 0.1475052 +1.458117 3.729748 0.1475052 +1.667858 3.729748 0.1475052 +1.907556 3.729748 0.1475052 +2.181521 3.729748 0.1475052 +2.494678 3.729748 0.1475052 +2.852659 3.729748 0.1475052 +3.261896 3.729748 0.1475052 +3.729748 3.729748 0.1475052 +4.264621 3.729748 0.1475052 +4.876131 3.729748 0.1475052 +5.575266 3.729748 0.1475052 +6.374593 3.729748 0.1475052 +0 4.264621 0.1475052 +0 4.264621 0.1475052 +0 4.264621 0.1475052 +0.002268731 4.264621 0.1475052 +0.07076883 4.264621 0.1475052 +0.1119241 4.264621 0.1475052 +0.1475052 4.264621 0.1475052 +0.1846606 4.264621 0.1475052 +0.2245119 4.264621 0.1475052 +0.2679612 4.264621 0.1475052 +0.3158431 4.264621 0.1475052 +0.3689944 4.264621 0.1475052 +0.4282948 4.264621 0.1475052 +0.494694 4.264621 0.1475052 +0.5692344 4.264621 0.1475052 +0.6530715 4.264621 0.1475052 +0.7474945 4.264621 0.1475052 +0.8539475 4.264621 0.1475052 +0.974052 4.264621 0.1475052 +1.113885 4.264621 0.1475052 +1.27456 4.264621 0.1475052 +1.458117 4.264621 0.1475052 +1.667858 4.264621 0.1475052 +1.907556 4.264621 0.1475052 +2.181521 4.264621 0.1475052 +2.494678 4.264621 0.1475052 +2.852659 4.264621 0.1475052 +3.261896 4.264621 0.1475052 +3.729748 4.264621 0.1475052 +4.264621 4.264621 0.1475052 +4.876131 4.264621 0.1475052 +5.575266 4.264621 0.1475052 +6.374593 4.264621 0.1475052 +0 4.876131 0.1475052 +0 4.876131 0.1475052 +0 4.876131 0.1475052 +0.002268731 4.876131 0.1475052 +0.07076883 4.876131 0.1475052 +0.1119241 4.876131 0.1475052 +0.1475052 4.876131 0.1475052 +0.1846606 4.876131 0.1475052 +0.2245119 4.876131 0.1475052 +0.2679612 4.876131 0.1475052 +0.3158431 4.876131 0.1475052 +0.3689944 4.876131 0.1475052 +0.4282948 4.876131 0.1475052 +0.494694 4.876131 0.1475052 +0.5692344 4.876131 0.1475052 +0.6530715 4.876131 0.1475052 +0.7474945 4.876131 0.1475052 +0.8539475 4.876131 0.1475052 +0.974052 4.876131 0.1475052 +1.113885 4.876131 0.1475052 +1.27456 4.876131 0.1475052 +1.458117 4.876131 0.1475052 +1.667858 4.876131 0.1475052 +1.907556 4.876131 0.1475052 +2.181521 4.876131 0.1475052 +2.494678 4.876131 0.1475052 +2.852659 4.876131 0.1475052 +3.261896 4.876131 0.1475052 +3.729748 4.876131 0.1475052 +4.264621 4.876131 0.1475052 +4.876131 4.876131 0.1475052 +5.575266 4.876131 0.1475052 +6.374593 4.876131 0.1475052 +0 5.575266 0.1475052 +0 5.575266 0.1475052 +0 5.575266 0.1475052 +0.002268731 5.575266 0.1475052 +0.07076883 5.575266 0.1475052 +0.1119241 5.575266 0.1475052 +0.1475052 5.575266 0.1475052 +0.1846606 5.575266 0.1475052 +0.2245119 5.575266 0.1475052 +0.2679612 5.575266 0.1475052 +0.3158431 5.575266 0.1475052 +0.3689944 5.575266 0.1475052 +0.4282948 5.575266 0.1475052 +0.494694 5.575266 0.1475052 +0.5692344 5.575266 0.1475052 +0.6530715 5.575266 0.1475052 +0.7474945 5.575266 0.1475052 +0.8539475 5.575266 0.1475052 +0.974052 5.575266 0.1475052 +1.113885 5.575266 0.1475052 +1.27456 5.575266 0.1475052 +1.458117 5.575266 0.1475052 +1.667858 5.575266 0.1475052 +1.907556 5.575266 0.1475052 +2.181521 5.575266 0.1475052 +2.494678 5.575266 0.1475052 +2.852659 5.575266 0.1475052 +3.261896 5.575266 0.1475052 +3.729748 5.575266 0.1475052 +4.264621 5.575266 0.1475052 +4.876131 5.575266 0.1475052 +5.575266 5.575266 0.1475052 +6.374593 5.575266 0.1475052 +0 6.374593 0.1475052 +0 6.374593 0.1475052 +0 6.374593 0.1475052 +0.002268731 6.374593 0.1475052 +0.07076883 6.374593 0.1475052 +0.1119241 6.374593 0.1475052 +0.1475052 6.374593 0.1475052 +0.1846606 6.374593 0.1475052 +0.2245119 6.374593 0.1475052 +0.2679612 6.374593 0.1475052 +0.3158431 6.374593 0.1475052 +0.3689944 6.374593 0.1475052 +0.4282948 6.374593 0.1475052 +0.494694 6.374593 0.1475052 +0.5692344 6.374593 0.1475052 +0.6530715 6.374593 0.1475052 +0.7474945 6.374593 0.1475052 +0.8539475 6.374593 0.1475052 +0.974052 6.374593 0.1475052 +1.113885 6.374593 0.1475052 +1.27456 6.374593 0.1475052 +1.458117 6.374593 0.1475052 +1.667858 6.374593 0.1475052 +1.907556 6.374593 0.1475052 +2.181521 6.374593 0.1475052 +2.494678 6.374593 0.1475052 +2.852659 6.374593 0.1475052 +3.261896 6.374593 0.1475052 +3.729748 6.374593 0.1475052 +4.264621 6.374593 0.1475052 +4.876131 6.374593 0.1475052 +5.575266 6.374593 0.1475052 +6.374593 6.374593 0.1475052 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0.002268731 0.1846606 +0 0.002268731 0.1846606 +0 0.002268731 0.1846606 +0.002268731 0.002268731 0.1846606 +0.07076883 0.002268731 0.1846606 +0.1119241 0.002268731 0.1846606 +0.1475052 0.002268731 0.1846606 +0.1846606 0.002268731 0.1846606 +0.2245119 0.002268731 0.1846606 +0.2679612 0.002268731 0.1846606 +0.3158431 0.002268731 0.1846606 +0.3689944 0.002268731 0.1846606 +0.4282948 0.002268731 0.1846606 +0.494694 0.002268731 0.1846606 +0.5692344 0.002268731 0.1846606 +0.6530715 0.002268731 0.1846606 +0.7474945 0.002268731 0.1846606 +0.8539475 0.002268731 0.1846606 +0.974052 0.002268731 0.1846606 +1.113885 0.002268731 0.1846606 +1.27456 0.002268731 0.1846606 +1.458117 0.002268731 0.1846606 +1.667858 0.002268731 0.1846606 +1.907556 0.002268731 0.1846606 +2.181521 0.002268731 0.1846606 +2.494678 0.002268731 0.1846606 +2.852659 0.002268731 0.1846606 +3.261896 0.002268731 0.1846606 +3.729748 0.002268731 0.1846606 +4.264621 0.002268731 0.1846606 +4.876131 0.002268731 0.1846606 +5.575266 0.002268731 0.1846606 +6.374593 0.002268731 0.1846606 +0 0.07076883 0.1846606 +0 0.07076883 0.1846606 +0 0.07076883 0.1846606 +0.002268731 0.07076883 0.1846606 +0.07076883 0.07076883 0.1846606 +0.1119241 0.07076883 0.1846606 +0.1475052 0.07076883 0.1846606 +0.1846606 0.07076883 0.1846606 +0.2245119 0.07076883 0.1846606 +0.2679612 0.07076883 0.1846606 +0.3158431 0.07076883 0.1846606 +0.3689944 0.07076883 0.1846606 +0.4282948 0.07076883 0.1846606 +0.494694 0.07076883 0.1846606 +0.5692344 0.07076883 0.1846606 +0.6530715 0.07076883 0.1846606 +0.7474945 0.07076883 0.1846606 +0.8539475 0.07076883 0.1846606 +0.974052 0.07076883 0.1846606 +1.113885 0.07076883 0.1846606 +1.27456 0.07076883 0.1846606 +1.458117 0.07076883 0.1846606 +1.667858 0.07076883 0.1846606 +1.907556 0.07076883 0.1846606 +2.181521 0.07076883 0.1846606 +2.494678 0.07076883 0.1846606 +2.852659 0.07076883 0.1846606 +3.261896 0.07076883 0.1846606 +3.729748 0.07076883 0.1846606 +4.264621 0.07076883 0.1846606 +4.876131 0.07076883 0.1846606 +5.575266 0.07076883 0.1846606 +6.374593 0.07076883 0.1846606 +0 0.1119241 0.1846606 +0 0.1119241 0.1846606 +0 0.1119241 0.1846606 +0.002268731 0.1119241 0.1846606 +0.07076883 0.1119241 0.1846606 +0.1119241 0.1119241 0.1846606 +0.1475052 0.1119241 0.1846606 +0.1846606 0.1119241 0.1846606 +0.2245119 0.1119241 0.1846606 +0.2679612 0.1119241 0.1846606 +0.3158431 0.1119241 0.1846606 +0.3689944 0.1119241 0.1846606 +0.4282948 0.1119241 0.1846606 +0.494694 0.1119241 0.1846606 +0.5692344 0.1119241 0.1846606 +0.6530715 0.1119241 0.1846606 +0.7474945 0.1119241 0.1846606 +0.8539475 0.1119241 0.1846606 +0.974052 0.1119241 0.1846606 +1.113885 0.1119241 0.1846606 +1.27456 0.1119241 0.1846606 +1.458117 0.1119241 0.1846606 +1.667858 0.1119241 0.1846606 +1.907556 0.1119241 0.1846606 +2.181521 0.1119241 0.1846606 +2.494678 0.1119241 0.1846606 +2.852659 0.1119241 0.1846606 +3.261896 0.1119241 0.1846606 +3.729748 0.1119241 0.1846606 +4.264621 0.1119241 0.1846606 +4.876131 0.1119241 0.1846606 +5.575266 0.1119241 0.1846606 +6.374593 0.1119241 0.1846606 +0 0.1475052 0.1846606 +0 0.1475052 0.1846606 +0 0.1475052 0.1846606 +0.002268731 0.1475052 0.1846606 +0.07076883 0.1475052 0.1846606 +0.1119241 0.1475052 0.1846606 +0.1475052 0.1475052 0.1846606 +0.1846606 0.1475052 0.1846606 +0.2245119 0.1475052 0.1846606 +0.2679612 0.1475052 0.1846606 +0.3158431 0.1475052 0.1846606 +0.3689944 0.1475052 0.1846606 +0.4282948 0.1475052 0.1846606 +0.494694 0.1475052 0.1846606 +0.5692344 0.1475052 0.1846606 +0.6530715 0.1475052 0.1846606 +0.7474945 0.1475052 0.1846606 +0.8539475 0.1475052 0.1846606 +0.974052 0.1475052 0.1846606 +1.113885 0.1475052 0.1846606 +1.27456 0.1475052 0.1846606 +1.458117 0.1475052 0.1846606 +1.667858 0.1475052 0.1846606 +1.907556 0.1475052 0.1846606 +2.181521 0.1475052 0.1846606 +2.494678 0.1475052 0.1846606 +2.852659 0.1475052 0.1846606 +3.261896 0.1475052 0.1846606 +3.729748 0.1475052 0.1846606 +4.264621 0.1475052 0.1846606 +4.876131 0.1475052 0.1846606 +5.575266 0.1475052 0.1846606 +6.374593 0.1475052 0.1846606 +0 0.1846606 0.1846606 +0 0.1846606 0.1846606 +0 0.1846606 0.1846606 +0.002268731 0.1846606 0.1846606 +0.07076883 0.1846606 0.1846606 +0.1119241 0.1846606 0.1846606 +0.1475052 0.1846606 0.1846606 +0.1846606 0.1846606 0.1846606 +0.2245119 0.1846606 0.1846606 +0.2679612 0.1846606 0.1846606 +0.3158431 0.1846606 0.1846606 +0.3689944 0.1846606 0.1846606 +0.4282948 0.1846606 0.1846606 +0.494694 0.1846606 0.1846606 +0.5692344 0.1846606 0.1846606 +0.6530715 0.1846606 0.1846606 +0.7474945 0.1846606 0.1846606 +0.8539475 0.1846606 0.1846606 +0.974052 0.1846606 0.1846606 +1.113885 0.1846606 0.1846606 +1.27456 0.1846606 0.1846606 +1.458117 0.1846606 0.1846606 +1.667858 0.1846606 0.1846606 +1.907556 0.1846606 0.1846606 +2.181521 0.1846606 0.1846606 +2.494678 0.1846606 0.1846606 +2.852659 0.1846606 0.1846606 +3.261896 0.1846606 0.1846606 +3.729748 0.1846606 0.1846606 +4.264621 0.1846606 0.1846606 +4.876131 0.1846606 0.1846606 +5.575266 0.1846606 0.1846606 +6.374593 0.1846606 0.1846606 +0 0.2245119 0.1846606 +0 0.2245119 0.1846606 +0 0.2245119 0.1846606 +0.002268731 0.2245119 0.1846606 +0.07076883 0.2245119 0.1846606 +0.1119241 0.2245119 0.1846606 +0.1475052 0.2245119 0.1846606 +0.1846606 0.2245119 0.1846606 +0.2245119 0.2245119 0.1846606 +0.2679612 0.2245119 0.1846606 +0.3158431 0.2245119 0.1846606 +0.3689944 0.2245119 0.1846606 +0.4282948 0.2245119 0.1846606 +0.494694 0.2245119 0.1846606 +0.5692344 0.2245119 0.1846606 +0.6530715 0.2245119 0.1846606 +0.7474945 0.2245119 0.1846606 +0.8539475 0.2245119 0.1846606 +0.974052 0.2245119 0.1846606 +1.113885 0.2245119 0.1846606 +1.27456 0.2245119 0.1846606 +1.458117 0.2245119 0.1846606 +1.667858 0.2245119 0.1846606 +1.907556 0.2245119 0.1846606 +2.181521 0.2245119 0.1846606 +2.494678 0.2245119 0.1846606 +2.852659 0.2245119 0.1846606 +3.261896 0.2245119 0.1846606 +3.729748 0.2245119 0.1846606 +4.264621 0.2245119 0.1846606 +4.876131 0.2245119 0.1846606 +5.575266 0.2245119 0.1846606 +6.374593 0.2245119 0.1846606 +0 0.2679612 0.1846606 +0 0.2679612 0.1846606 +0 0.2679612 0.1846606 +0.002268731 0.2679612 0.1846606 +0.07076883 0.2679612 0.1846606 +0.1119241 0.2679612 0.1846606 +0.1475052 0.2679612 0.1846606 +0.1846606 0.2679612 0.1846606 +0.2245119 0.2679612 0.1846606 +0.2679612 0.2679612 0.1846606 +0.3158431 0.2679612 0.1846606 +0.3689944 0.2679612 0.1846606 +0.4282948 0.2679612 0.1846606 +0.494694 0.2679612 0.1846606 +0.5692344 0.2679612 0.1846606 +0.6530715 0.2679612 0.1846606 +0.7474945 0.2679612 0.1846606 +0.8539475 0.2679612 0.1846606 +0.974052 0.2679612 0.1846606 +1.113885 0.2679612 0.1846606 +1.27456 0.2679612 0.1846606 +1.458117 0.2679612 0.1846606 +1.667858 0.2679612 0.1846606 +1.907556 0.2679612 0.1846606 +2.181521 0.2679612 0.1846606 +2.494678 0.2679612 0.1846606 +2.852659 0.2679612 0.1846606 +3.261896 0.2679612 0.1846606 +3.729748 0.2679612 0.1846606 +4.264621 0.2679612 0.1846606 +4.876131 0.2679612 0.1846606 +5.575266 0.2679612 0.1846606 +6.374593 0.2679612 0.1846606 +0 0.3158431 0.1846606 +0 0.3158431 0.1846606 +0 0.3158431 0.1846606 +0.002268731 0.3158431 0.1846606 +0.07076883 0.3158431 0.1846606 +0.1119241 0.3158431 0.1846606 +0.1475052 0.3158431 0.1846606 +0.1846606 0.3158431 0.1846606 +0.2245119 0.3158431 0.1846606 +0.2679612 0.3158431 0.1846606 +0.3158431 0.3158431 0.1846606 +0.3689944 0.3158431 0.1846606 +0.4282948 0.3158431 0.1846606 +0.494694 0.3158431 0.1846606 +0.5692344 0.3158431 0.1846606 +0.6530715 0.3158431 0.1846606 +0.7474945 0.3158431 0.1846606 +0.8539475 0.3158431 0.1846606 +0.974052 0.3158431 0.1846606 +1.113885 0.3158431 0.1846606 +1.27456 0.3158431 0.1846606 +1.458117 0.3158431 0.1846606 +1.667858 0.3158431 0.1846606 +1.907556 0.3158431 0.1846606 +2.181521 0.3158431 0.1846606 +2.494678 0.3158431 0.1846606 +2.852659 0.3158431 0.1846606 +3.261896 0.3158431 0.1846606 +3.729748 0.3158431 0.1846606 +4.264621 0.3158431 0.1846606 +4.876131 0.3158431 0.1846606 +5.575266 0.3158431 0.1846606 +6.374593 0.3158431 0.1846606 +0 0.3689944 0.1846606 +0 0.3689944 0.1846606 +0 0.3689944 0.1846606 +0.002268731 0.3689944 0.1846606 +0.07076883 0.3689944 0.1846606 +0.1119241 0.3689944 0.1846606 +0.1475052 0.3689944 0.1846606 +0.1846606 0.3689944 0.1846606 +0.2245119 0.3689944 0.1846606 +0.2679612 0.3689944 0.1846606 +0.3158431 0.3689944 0.1846606 +0.3689944 0.3689944 0.1846606 +0.4282948 0.3689944 0.1846606 +0.494694 0.3689944 0.1846606 +0.5692344 0.3689944 0.1846606 +0.6530715 0.3689944 0.1846606 +0.7474945 0.3689944 0.1846606 +0.8539475 0.3689944 0.1846606 +0.974052 0.3689944 0.1846606 +1.113885 0.3689944 0.1846606 +1.27456 0.3689944 0.1846606 +1.458117 0.3689944 0.1846606 +1.667858 0.3689944 0.1846606 +1.907556 0.3689944 0.1846606 +2.181521 0.3689944 0.1846606 +2.494678 0.3689944 0.1846606 +2.852659 0.3689944 0.1846606 +3.261896 0.3689944 0.1846606 +3.729748 0.3689944 0.1846606 +4.264621 0.3689944 0.1846606 +4.876131 0.3689944 0.1846606 +5.575266 0.3689944 0.1846606 +6.374593 0.3689944 0.1846606 +0 0.4282948 0.1846606 +0 0.4282948 0.1846606 +0 0.4282948 0.1846606 +0.002268731 0.4282948 0.1846606 +0.07076883 0.4282948 0.1846606 +0.1119241 0.4282948 0.1846606 +0.1475052 0.4282948 0.1846606 +0.1846606 0.4282948 0.1846606 +0.2245119 0.4282948 0.1846606 +0.2679612 0.4282948 0.1846606 +0.3158431 0.4282948 0.1846606 +0.3689944 0.4282948 0.1846606 +0.4282948 0.4282948 0.1846606 +0.494694 0.4282948 0.1846606 +0.5692344 0.4282948 0.1846606 +0.6530715 0.4282948 0.1846606 +0.7474945 0.4282948 0.1846606 +0.8539475 0.4282948 0.1846606 +0.974052 0.4282948 0.1846606 +1.113885 0.4282948 0.1846606 +1.27456 0.4282948 0.1846606 +1.458117 0.4282948 0.1846606 +1.667858 0.4282948 0.1846606 +1.907556 0.4282948 0.1846606 +2.181521 0.4282948 0.1846606 +2.494678 0.4282948 0.1846606 +2.852659 0.4282948 0.1846606 +3.261896 0.4282948 0.1846606 +3.729748 0.4282948 0.1846606 +4.264621 0.4282948 0.1846606 +4.876131 0.4282948 0.1846606 +5.575266 0.4282948 0.1846606 +6.374593 0.4282948 0.1846606 +0 0.494694 0.1846606 +0 0.494694 0.1846606 +0 0.494694 0.1846606 +0.002268731 0.494694 0.1846606 +0.07076883 0.494694 0.1846606 +0.1119241 0.494694 0.1846606 +0.1475052 0.494694 0.1846606 +0.1846606 0.494694 0.1846606 +0.2245119 0.494694 0.1846606 +0.2679612 0.494694 0.1846606 +0.3158431 0.494694 0.1846606 +0.3689944 0.494694 0.1846606 +0.4282948 0.494694 0.1846606 +0.494694 0.494694 0.1846606 +0.5692344 0.494694 0.1846606 +0.6530715 0.494694 0.1846606 +0.7474945 0.494694 0.1846606 +0.8539475 0.494694 0.1846606 +0.974052 0.494694 0.1846606 +1.113885 0.494694 0.1846606 +1.27456 0.494694 0.1846606 +1.458117 0.494694 0.1846606 +1.667858 0.494694 0.1846606 +1.907556 0.494694 0.1846606 +2.181521 0.494694 0.1846606 +2.494678 0.494694 0.1846606 +2.852659 0.494694 0.1846606 +3.261896 0.494694 0.1846606 +3.729748 0.494694 0.1846606 +4.264621 0.494694 0.1846606 +4.876131 0.494694 0.1846606 +5.575266 0.494694 0.1846606 +6.374593 0.494694 0.1846606 +0 0.5692344 0.1846606 +0 0.5692344 0.1846606 +0 0.5692344 0.1846606 +0.002268731 0.5692344 0.1846606 +0.07076883 0.5692344 0.1846606 +0.1119241 0.5692344 0.1846606 +0.1475052 0.5692344 0.1846606 +0.1846606 0.5692344 0.1846606 +0.2245119 0.5692344 0.1846606 +0.2679612 0.5692344 0.1846606 +0.3158431 0.5692344 0.1846606 +0.3689944 0.5692344 0.1846606 +0.4282948 0.5692344 0.1846606 +0.494694 0.5692344 0.1846606 +0.5692344 0.5692344 0.1846606 +0.6530715 0.5692344 0.1846606 +0.7474945 0.5692344 0.1846606 +0.8539475 0.5692344 0.1846606 +0.974052 0.5692344 0.1846606 +1.113885 0.5692344 0.1846606 +1.27456 0.5692344 0.1846606 +1.458117 0.5692344 0.1846606 +1.667858 0.5692344 0.1846606 +1.907556 0.5692344 0.1846606 +2.181521 0.5692344 0.1846606 +2.494678 0.5692344 0.1846606 +2.852659 0.5692344 0.1846606 +3.261896 0.5692344 0.1846606 +3.729748 0.5692344 0.1846606 +4.264621 0.5692344 0.1846606 +4.876131 0.5692344 0.1846606 +5.575266 0.5692344 0.1846606 +6.374593 0.5692344 0.1846606 +0 0.6530715 0.1846606 +0 0.6530715 0.1846606 +0 0.6530715 0.1846606 +0.002268731 0.6530715 0.1846606 +0.07076883 0.6530715 0.1846606 +0.1119241 0.6530715 0.1846606 +0.1475052 0.6530715 0.1846606 +0.1846606 0.6530715 0.1846606 +0.2245119 0.6530715 0.1846606 +0.2679612 0.6530715 0.1846606 +0.3158431 0.6530715 0.1846606 +0.3689944 0.6530715 0.1846606 +0.4282948 0.6530715 0.1846606 +0.494694 0.6530715 0.1846606 +0.5692344 0.6530715 0.1846606 +0.6530715 0.6530715 0.1846606 +0.7474945 0.6530715 0.1846606 +0.8539475 0.6530715 0.1846606 +0.974052 0.6530715 0.1846606 +1.113885 0.6530715 0.1846606 +1.27456 0.6530715 0.1846606 +1.458117 0.6530715 0.1846606 +1.667858 0.6530715 0.1846606 +1.907556 0.6530715 0.1846606 +2.181521 0.6530715 0.1846606 +2.494678 0.6530715 0.1846606 +2.852659 0.6530715 0.1846606 +3.261896 0.6530715 0.1846606 +3.729748 0.6530715 0.1846606 +4.264621 0.6530715 0.1846606 +4.876131 0.6530715 0.1846606 +5.575266 0.6530715 0.1846606 +6.374593 0.6530715 0.1846606 +0 0.7474945 0.1846606 +0 0.7474945 0.1846606 +0 0.7474945 0.1846606 +0.002268731 0.7474945 0.1846606 +0.07076883 0.7474945 0.1846606 +0.1119241 0.7474945 0.1846606 +0.1475052 0.7474945 0.1846606 +0.1846606 0.7474945 0.1846606 +0.2245119 0.7474945 0.1846606 +0.2679612 0.7474945 0.1846606 +0.3158431 0.7474945 0.1846606 +0.3689944 0.7474945 0.1846606 +0.4282948 0.7474945 0.1846606 +0.494694 0.7474945 0.1846606 +0.5692344 0.7474945 0.1846606 +0.6530715 0.7474945 0.1846606 +0.7474945 0.7474945 0.1846606 +0.8539475 0.7474945 0.1846606 +0.974052 0.7474945 0.1846606 +1.113885 0.7474945 0.1846606 +1.27456 0.7474945 0.1846606 +1.458117 0.7474945 0.1846606 +1.667858 0.7474945 0.1846606 +1.907556 0.7474945 0.1846606 +2.181521 0.7474945 0.1846606 +2.494678 0.7474945 0.1846606 +2.852659 0.7474945 0.1846606 +3.261896 0.7474945 0.1846606 +3.729748 0.7474945 0.1846606 +4.264621 0.7474945 0.1846606 +4.876131 0.7474945 0.1846606 +5.575266 0.7474945 0.1846606 +6.374593 0.7474945 0.1846606 +0 0.8539475 0.1846606 +0 0.8539475 0.1846606 +0 0.8539475 0.1846606 +0.002268731 0.8539475 0.1846606 +0.07076883 0.8539475 0.1846606 +0.1119241 0.8539475 0.1846606 +0.1475052 0.8539475 0.1846606 +0.1846606 0.8539475 0.1846606 +0.2245119 0.8539475 0.1846606 +0.2679612 0.8539475 0.1846606 +0.3158431 0.8539475 0.1846606 +0.3689944 0.8539475 0.1846606 +0.4282948 0.8539475 0.1846606 +0.494694 0.8539475 0.1846606 +0.5692344 0.8539475 0.1846606 +0.6530715 0.8539475 0.1846606 +0.7474945 0.8539475 0.1846606 +0.8539475 0.8539475 0.1846606 +0.974052 0.8539475 0.1846606 +1.113885 0.8539475 0.1846606 +1.27456 0.8539475 0.1846606 +1.458117 0.8539475 0.1846606 +1.667858 0.8539475 0.1846606 +1.907556 0.8539475 0.1846606 +2.181521 0.8539475 0.1846606 +2.494678 0.8539475 0.1846606 +2.852659 0.8539475 0.1846606 +3.261896 0.8539475 0.1846606 +3.729748 0.8539475 0.1846606 +4.264621 0.8539475 0.1846606 +4.876131 0.8539475 0.1846606 +5.575266 0.8539475 0.1846606 +6.374593 0.8539475 0.1846606 +0 0.974052 0.1846606 +0 0.974052 0.1846606 +0 0.974052 0.1846606 +0.002268731 0.974052 0.1846606 +0.07076883 0.974052 0.1846606 +0.1119241 0.974052 0.1846606 +0.1475052 0.974052 0.1846606 +0.1846606 0.974052 0.1846606 +0.2245119 0.974052 0.1846606 +0.2679612 0.974052 0.1846606 +0.3158431 0.974052 0.1846606 +0.3689944 0.974052 0.1846606 +0.4282948 0.974052 0.1846606 +0.494694 0.974052 0.1846606 +0.5692344 0.974052 0.1846606 +0.6530715 0.974052 0.1846606 +0.7474945 0.974052 0.1846606 +0.8539475 0.974052 0.1846606 +0.974052 0.974052 0.1846606 +1.113885 0.974052 0.1846606 +1.27456 0.974052 0.1846606 +1.458117 0.974052 0.1846606 +1.667858 0.974052 0.1846606 +1.907556 0.974052 0.1846606 +2.181521 0.974052 0.1846606 +2.494678 0.974052 0.1846606 +2.852659 0.974052 0.1846606 +3.261896 0.974052 0.1846606 +3.729748 0.974052 0.1846606 +4.264621 0.974052 0.1846606 +4.876131 0.974052 0.1846606 +5.575266 0.974052 0.1846606 +6.374593 0.974052 0.1846606 +0 1.113885 0.1846606 +0 1.113885 0.1846606 +0 1.113885 0.1846606 +0.002268731 1.113885 0.1846606 +0.07076883 1.113885 0.1846606 +0.1119241 1.113885 0.1846606 +0.1475052 1.113885 0.1846606 +0.1846606 1.113885 0.1846606 +0.2245119 1.113885 0.1846606 +0.2679612 1.113885 0.1846606 +0.3158431 1.113885 0.1846606 +0.3689944 1.113885 0.1846606 +0.4282948 1.113885 0.1846606 +0.494694 1.113885 0.1846606 +0.5692344 1.113885 0.1846606 +0.6530715 1.113885 0.1846606 +0.7474945 1.113885 0.1846606 +0.8539475 1.113885 0.1846606 +0.974052 1.113885 0.1846606 +1.113885 1.113885 0.1846606 +1.27456 1.113885 0.1846606 +1.458117 1.113885 0.1846606 +1.667858 1.113885 0.1846606 +1.907556 1.113885 0.1846606 +2.181521 1.113885 0.1846606 +2.494678 1.113885 0.1846606 +2.852659 1.113885 0.1846606 +3.261896 1.113885 0.1846606 +3.729748 1.113885 0.1846606 +4.264621 1.113885 0.1846606 +4.876131 1.113885 0.1846606 +5.575266 1.113885 0.1846606 +6.374593 1.113885 0.1846606 +0 1.27456 0.1846606 +0 1.27456 0.1846606 +0 1.27456 0.1846606 +0.002268731 1.27456 0.1846606 +0.07076883 1.27456 0.1846606 +0.1119241 1.27456 0.1846606 +0.1475052 1.27456 0.1846606 +0.1846606 1.27456 0.1846606 +0.2245119 1.27456 0.1846606 +0.2679612 1.27456 0.1846606 +0.3158431 1.27456 0.1846606 +0.3689944 1.27456 0.1846606 +0.4282948 1.27456 0.1846606 +0.494694 1.27456 0.1846606 +0.5692344 1.27456 0.1846606 +0.6530715 1.27456 0.1846606 +0.7474945 1.27456 0.1846606 +0.8539475 1.27456 0.1846606 +0.974052 1.27456 0.1846606 +1.113885 1.27456 0.1846606 +1.27456 1.27456 0.1846606 +1.458117 1.27456 0.1846606 +1.667858 1.27456 0.1846606 +1.907556 1.27456 0.1846606 +2.181521 1.27456 0.1846606 +2.494678 1.27456 0.1846606 +2.852659 1.27456 0.1846606 +3.261896 1.27456 0.1846606 +3.729748 1.27456 0.1846606 +4.264621 1.27456 0.1846606 +4.876131 1.27456 0.1846606 +5.575266 1.27456 0.1846606 +6.374593 1.27456 0.1846606 +0 1.458117 0.1846606 +0 1.458117 0.1846606 +0 1.458117 0.1846606 +0.002268731 1.458117 0.1846606 +0.07076883 1.458117 0.1846606 +0.1119241 1.458117 0.1846606 +0.1475052 1.458117 0.1846606 +0.1846606 1.458117 0.1846606 +0.2245119 1.458117 0.1846606 +0.2679612 1.458117 0.1846606 +0.3158431 1.458117 0.1846606 +0.3689944 1.458117 0.1846606 +0.4282948 1.458117 0.1846606 +0.494694 1.458117 0.1846606 +0.5692344 1.458117 0.1846606 +0.6530715 1.458117 0.1846606 +0.7474945 1.458117 0.1846606 +0.8539475 1.458117 0.1846606 +0.974052 1.458117 0.1846606 +1.113885 1.458117 0.1846606 +1.27456 1.458117 0.1846606 +1.458117 1.458117 0.1846606 +1.667858 1.458117 0.1846606 +1.907556 1.458117 0.1846606 +2.181521 1.458117 0.1846606 +2.494678 1.458117 0.1846606 +2.852659 1.458117 0.1846606 +3.261896 1.458117 0.1846606 +3.729748 1.458117 0.1846606 +4.264621 1.458117 0.1846606 +4.876131 1.458117 0.1846606 +5.575266 1.458117 0.1846606 +6.374593 1.458117 0.1846606 +0 1.667858 0.1846606 +0 1.667858 0.1846606 +0 1.667858 0.1846606 +0.002268731 1.667858 0.1846606 +0.07076883 1.667858 0.1846606 +0.1119241 1.667858 0.1846606 +0.1475052 1.667858 0.1846606 +0.1846606 1.667858 0.1846606 +0.2245119 1.667858 0.1846606 +0.2679612 1.667858 0.1846606 +0.3158431 1.667858 0.1846606 +0.3689944 1.667858 0.1846606 +0.4282948 1.667858 0.1846606 +0.494694 1.667858 0.1846606 +0.5692344 1.667858 0.1846606 +0.6530715 1.667858 0.1846606 +0.7474945 1.667858 0.1846606 +0.8539475 1.667858 0.1846606 +0.974052 1.667858 0.1846606 +1.113885 1.667858 0.1846606 +1.27456 1.667858 0.1846606 +1.458117 1.667858 0.1846606 +1.667858 1.667858 0.1846606 +1.907556 1.667858 0.1846606 +2.181521 1.667858 0.1846606 +2.494678 1.667858 0.1846606 +2.852659 1.667858 0.1846606 +3.261896 1.667858 0.1846606 +3.729748 1.667858 0.1846606 +4.264621 1.667858 0.1846606 +4.876131 1.667858 0.1846606 +5.575266 1.667858 0.1846606 +6.374593 1.667858 0.1846606 +0 1.907556 0.1846606 +0 1.907556 0.1846606 +0 1.907556 0.1846606 +0.002268731 1.907556 0.1846606 +0.07076883 1.907556 0.1846606 +0.1119241 1.907556 0.1846606 +0.1475052 1.907556 0.1846606 +0.1846606 1.907556 0.1846606 +0.2245119 1.907556 0.1846606 +0.2679612 1.907556 0.1846606 +0.3158431 1.907556 0.1846606 +0.3689944 1.907556 0.1846606 +0.4282948 1.907556 0.1846606 +0.494694 1.907556 0.1846606 +0.5692344 1.907556 0.1846606 +0.6530715 1.907556 0.1846606 +0.7474945 1.907556 0.1846606 +0.8539475 1.907556 0.1846606 +0.974052 1.907556 0.1846606 +1.113885 1.907556 0.1846606 +1.27456 1.907556 0.1846606 +1.458117 1.907556 0.1846606 +1.667858 1.907556 0.1846606 +1.907556 1.907556 0.1846606 +2.181521 1.907556 0.1846606 +2.494678 1.907556 0.1846606 +2.852659 1.907556 0.1846606 +3.261896 1.907556 0.1846606 +3.729748 1.907556 0.1846606 +4.264621 1.907556 0.1846606 +4.876131 1.907556 0.1846606 +5.575266 1.907556 0.1846606 +6.374593 1.907556 0.1846606 +0 2.181521 0.1846606 +0 2.181521 0.1846606 +0 2.181521 0.1846606 +0.002268731 2.181521 0.1846606 +0.07076883 2.181521 0.1846606 +0.1119241 2.181521 0.1846606 +0.1475052 2.181521 0.1846606 +0.1846606 2.181521 0.1846606 +0.2245119 2.181521 0.1846606 +0.2679612 2.181521 0.1846606 +0.3158431 2.181521 0.1846606 +0.3689944 2.181521 0.1846606 +0.4282948 2.181521 0.1846606 +0.494694 2.181521 0.1846606 +0.5692344 2.181521 0.1846606 +0.6530715 2.181521 0.1846606 +0.7474945 2.181521 0.1846606 +0.8539475 2.181521 0.1846606 +0.974052 2.181521 0.1846606 +1.113885 2.181521 0.1846606 +1.27456 2.181521 0.1846606 +1.458117 2.181521 0.1846606 +1.667858 2.181521 0.1846606 +1.907556 2.181521 0.1846606 +2.181521 2.181521 0.1846606 +2.494678 2.181521 0.1846606 +2.852659 2.181521 0.1846606 +3.261896 2.181521 0.1846606 +3.729748 2.181521 0.1846606 +4.264621 2.181521 0.1846606 +4.876131 2.181521 0.1846606 +5.575266 2.181521 0.1846606 +6.374593 2.181521 0.1846606 +0 2.494678 0.1846606 +0 2.494678 0.1846606 +0 2.494678 0.1846606 +0.002268731 2.494678 0.1846606 +0.07076883 2.494678 0.1846606 +0.1119241 2.494678 0.1846606 +0.1475052 2.494678 0.1846606 +0.1846606 2.494678 0.1846606 +0.2245119 2.494678 0.1846606 +0.2679612 2.494678 0.1846606 +0.3158431 2.494678 0.1846606 +0.3689944 2.494678 0.1846606 +0.4282948 2.494678 0.1846606 +0.494694 2.494678 0.1846606 +0.5692344 2.494678 0.1846606 +0.6530715 2.494678 0.1846606 +0.7474945 2.494678 0.1846606 +0.8539475 2.494678 0.1846606 +0.974052 2.494678 0.1846606 +1.113885 2.494678 0.1846606 +1.27456 2.494678 0.1846606 +1.458117 2.494678 0.1846606 +1.667858 2.494678 0.1846606 +1.907556 2.494678 0.1846606 +2.181521 2.494678 0.1846606 +2.494678 2.494678 0.1846606 +2.852659 2.494678 0.1846606 +3.261896 2.494678 0.1846606 +3.729748 2.494678 0.1846606 +4.264621 2.494678 0.1846606 +4.876131 2.494678 0.1846606 +5.575266 2.494678 0.1846606 +6.374593 2.494678 0.1846606 +0 2.852659 0.1846606 +0 2.852659 0.1846606 +0 2.852659 0.1846606 +0.002268731 2.852659 0.1846606 +0.07076883 2.852659 0.1846606 +0.1119241 2.852659 0.1846606 +0.1475052 2.852659 0.1846606 +0.1846606 2.852659 0.1846606 +0.2245119 2.852659 0.1846606 +0.2679612 2.852659 0.1846606 +0.3158431 2.852659 0.1846606 +0.3689944 2.852659 0.1846606 +0.4282948 2.852659 0.1846606 +0.494694 2.852659 0.1846606 +0.5692344 2.852659 0.1846606 +0.6530715 2.852659 0.1846606 +0.7474945 2.852659 0.1846606 +0.8539475 2.852659 0.1846606 +0.974052 2.852659 0.1846606 +1.113885 2.852659 0.1846606 +1.27456 2.852659 0.1846606 +1.458117 2.852659 0.1846606 +1.667858 2.852659 0.1846606 +1.907556 2.852659 0.1846606 +2.181521 2.852659 0.1846606 +2.494678 2.852659 0.1846606 +2.852659 2.852659 0.1846606 +3.261896 2.852659 0.1846606 +3.729748 2.852659 0.1846606 +4.264621 2.852659 0.1846606 +4.876131 2.852659 0.1846606 +5.575266 2.852659 0.1846606 +6.374593 2.852659 0.1846606 +0 3.261896 0.1846606 +0 3.261896 0.1846606 +0 3.261896 0.1846606 +0.002268731 3.261896 0.1846606 +0.07076883 3.261896 0.1846606 +0.1119241 3.261896 0.1846606 +0.1475052 3.261896 0.1846606 +0.1846606 3.261896 0.1846606 +0.2245119 3.261896 0.1846606 +0.2679612 3.261896 0.1846606 +0.3158431 3.261896 0.1846606 +0.3689944 3.261896 0.1846606 +0.4282948 3.261896 0.1846606 +0.494694 3.261896 0.1846606 +0.5692344 3.261896 0.1846606 +0.6530715 3.261896 0.1846606 +0.7474945 3.261896 0.1846606 +0.8539475 3.261896 0.1846606 +0.974052 3.261896 0.1846606 +1.113885 3.261896 0.1846606 +1.27456 3.261896 0.1846606 +1.458117 3.261896 0.1846606 +1.667858 3.261896 0.1846606 +1.907556 3.261896 0.1846606 +2.181521 3.261896 0.1846606 +2.494678 3.261896 0.1846606 +2.852659 3.261896 0.1846606 +3.261896 3.261896 0.1846606 +3.729748 3.261896 0.1846606 +4.264621 3.261896 0.1846606 +4.876131 3.261896 0.1846606 +5.575266 3.261896 0.1846606 +6.374593 3.261896 0.1846606 +0 3.729748 0.1846606 +0 3.729748 0.1846606 +0 3.729748 0.1846606 +0.002268731 3.729748 0.1846606 +0.07076883 3.729748 0.1846606 +0.1119241 3.729748 0.1846606 +0.1475052 3.729748 0.1846606 +0.1846606 3.729748 0.1846606 +0.2245119 3.729748 0.1846606 +0.2679612 3.729748 0.1846606 +0.3158431 3.729748 0.1846606 +0.3689944 3.729748 0.1846606 +0.4282948 3.729748 0.1846606 +0.494694 3.729748 0.1846606 +0.5692344 3.729748 0.1846606 +0.6530715 3.729748 0.1846606 +0.7474945 3.729748 0.1846606 +0.8539475 3.729748 0.1846606 +0.974052 3.729748 0.1846606 +1.113885 3.729748 0.1846606 +1.27456 3.729748 0.1846606 +1.458117 3.729748 0.1846606 +1.667858 3.729748 0.1846606 +1.907556 3.729748 0.1846606 +2.181521 3.729748 0.1846606 +2.494678 3.729748 0.1846606 +2.852659 3.729748 0.1846606 +3.261896 3.729748 0.1846606 +3.729748 3.729748 0.1846606 +4.264621 3.729748 0.1846606 +4.876131 3.729748 0.1846606 +5.575266 3.729748 0.1846606 +6.374593 3.729748 0.1846606 +0 4.264621 0.1846606 +0 4.264621 0.1846606 +0 4.264621 0.1846606 +0.002268731 4.264621 0.1846606 +0.07076883 4.264621 0.1846606 +0.1119241 4.264621 0.1846606 +0.1475052 4.264621 0.1846606 +0.1846606 4.264621 0.1846606 +0.2245119 4.264621 0.1846606 +0.2679612 4.264621 0.1846606 +0.3158431 4.264621 0.1846606 +0.3689944 4.264621 0.1846606 +0.4282948 4.264621 0.1846606 +0.494694 4.264621 0.1846606 +0.5692344 4.264621 0.1846606 +0.6530715 4.264621 0.1846606 +0.7474945 4.264621 0.1846606 +0.8539475 4.264621 0.1846606 +0.974052 4.264621 0.1846606 +1.113885 4.264621 0.1846606 +1.27456 4.264621 0.1846606 +1.458117 4.264621 0.1846606 +1.667858 4.264621 0.1846606 +1.907556 4.264621 0.1846606 +2.181521 4.264621 0.1846606 +2.494678 4.264621 0.1846606 +2.852659 4.264621 0.1846606 +3.261896 4.264621 0.1846606 +3.729748 4.264621 0.1846606 +4.264621 4.264621 0.1846606 +4.876131 4.264621 0.1846606 +5.575266 4.264621 0.1846606 +6.374593 4.264621 0.1846606 +0 4.876131 0.1846606 +0 4.876131 0.1846606 +0 4.876131 0.1846606 +0.002268731 4.876131 0.1846606 +0.07076883 4.876131 0.1846606 +0.1119241 4.876131 0.1846606 +0.1475052 4.876131 0.1846606 +0.1846606 4.876131 0.1846606 +0.2245119 4.876131 0.1846606 +0.2679612 4.876131 0.1846606 +0.3158431 4.876131 0.1846606 +0.3689944 4.876131 0.1846606 +0.4282948 4.876131 0.1846606 +0.494694 4.876131 0.1846606 +0.5692344 4.876131 0.1846606 +0.6530715 4.876131 0.1846606 +0.7474945 4.876131 0.1846606 +0.8539475 4.876131 0.1846606 +0.974052 4.876131 0.1846606 +1.113885 4.876131 0.1846606 +1.27456 4.876131 0.1846606 +1.458117 4.876131 0.1846606 +1.667858 4.876131 0.1846606 +1.907556 4.876131 0.1846606 +2.181521 4.876131 0.1846606 +2.494678 4.876131 0.1846606 +2.852659 4.876131 0.1846606 +3.261896 4.876131 0.1846606 +3.729748 4.876131 0.1846606 +4.264621 4.876131 0.1846606 +4.876131 4.876131 0.1846606 +5.575266 4.876131 0.1846606 +6.374593 4.876131 0.1846606 +0 5.575266 0.1846606 +0 5.575266 0.1846606 +0 5.575266 0.1846606 +0.002268731 5.575266 0.1846606 +0.07076883 5.575266 0.1846606 +0.1119241 5.575266 0.1846606 +0.1475052 5.575266 0.1846606 +0.1846606 5.575266 0.1846606 +0.2245119 5.575266 0.1846606 +0.2679612 5.575266 0.1846606 +0.3158431 5.575266 0.1846606 +0.3689944 5.575266 0.1846606 +0.4282948 5.575266 0.1846606 +0.494694 5.575266 0.1846606 +0.5692344 5.575266 0.1846606 +0.6530715 5.575266 0.1846606 +0.7474945 5.575266 0.1846606 +0.8539475 5.575266 0.1846606 +0.974052 5.575266 0.1846606 +1.113885 5.575266 0.1846606 +1.27456 5.575266 0.1846606 +1.458117 5.575266 0.1846606 +1.667858 5.575266 0.1846606 +1.907556 5.575266 0.1846606 +2.181521 5.575266 0.1846606 +2.494678 5.575266 0.1846606 +2.852659 5.575266 0.1846606 +3.261896 5.575266 0.1846606 +3.729748 5.575266 0.1846606 +4.264621 5.575266 0.1846606 +4.876131 5.575266 0.1846606 +5.575266 5.575266 0.1846606 +6.374593 5.575266 0.1846606 +0 6.374593 0.1846606 +0 6.374593 0.1846606 +0 6.374593 0.1846606 +0.002268731 6.374593 0.1846606 +0.07076883 6.374593 0.1846606 +0.1119241 6.374593 0.1846606 +0.1475052 6.374593 0.1846606 +0.1846606 6.374593 0.1846606 +0.2245119 6.374593 0.1846606 +0.2679612 6.374593 0.1846606 +0.3158431 6.374593 0.1846606 +0.3689944 6.374593 0.1846606 +0.4282948 6.374593 0.1846606 +0.494694 6.374593 0.1846606 +0.5692344 6.374593 0.1846606 +0.6530715 6.374593 0.1846606 +0.7474945 6.374593 0.1846606 +0.8539475 6.374593 0.1846606 +0.974052 6.374593 0.1846606 +1.113885 6.374593 0.1846606 +1.27456 6.374593 0.1846606 +1.458117 6.374593 0.1846606 +1.667858 6.374593 0.1846606 +1.907556 6.374593 0.1846606 +2.181521 6.374593 0.1846606 +2.494678 6.374593 0.1846606 +2.852659 6.374593 0.1846606 +3.261896 6.374593 0.1846606 +3.729748 6.374593 0.1846606 +4.264621 6.374593 0.1846606 +4.876131 6.374593 0.1846606 +5.575266 6.374593 0.1846606 +6.374593 6.374593 0.1846606 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0.002268731 0.2245119 +0 0.002268731 0.2245119 +0 0.002268731 0.2245119 +0.002268731 0.002268731 0.2245119 +0.07076883 0.002268731 0.2245119 +0.1119241 0.002268731 0.2245119 +0.1475052 0.002268731 0.2245119 +0.1846606 0.002268731 0.2245119 +0.2245119 0.002268731 0.2245119 +0.2679612 0.002268731 0.2245119 +0.3158431 0.002268731 0.2245119 +0.3689944 0.002268731 0.2245119 +0.4282948 0.002268731 0.2245119 +0.494694 0.002268731 0.2245119 +0.5692344 0.002268731 0.2245119 +0.6530715 0.002268731 0.2245119 +0.7474945 0.002268731 0.2245119 +0.8539475 0.002268731 0.2245119 +0.974052 0.002268731 0.2245119 +1.113885 0.002268731 0.2245119 +1.27456 0.002268731 0.2245119 +1.458117 0.002268731 0.2245119 +1.667858 0.002268731 0.2245119 +1.907556 0.002268731 0.2245119 +2.181521 0.002268731 0.2245119 +2.494678 0.002268731 0.2245119 +2.852659 0.002268731 0.2245119 +3.261896 0.002268731 0.2245119 +3.729748 0.002268731 0.2245119 +4.264621 0.002268731 0.2245119 +4.876131 0.002268731 0.2245119 +5.575266 0.002268731 0.2245119 +6.374593 0.002268731 0.2245119 +0 0.07076883 0.2245119 +0 0.07076883 0.2245119 +0 0.07076883 0.2245119 +0.002268731 0.07076883 0.2245119 +0.07076883 0.07076883 0.2245119 +0.1119241 0.07076883 0.2245119 +0.1475052 0.07076883 0.2245119 +0.1846606 0.07076883 0.2245119 +0.2245119 0.07076883 0.2245119 +0.2679612 0.07076883 0.2245119 +0.3158431 0.07076883 0.2245119 +0.3689944 0.07076883 0.2245119 +0.4282948 0.07076883 0.2245119 +0.494694 0.07076883 0.2245119 +0.5692344 0.07076883 0.2245119 +0.6530715 0.07076883 0.2245119 +0.7474945 0.07076883 0.2245119 +0.8539475 0.07076883 0.2245119 +0.974052 0.07076883 0.2245119 +1.113885 0.07076883 0.2245119 +1.27456 0.07076883 0.2245119 +1.458117 0.07076883 0.2245119 +1.667858 0.07076883 0.2245119 +1.907556 0.07076883 0.2245119 +2.181521 0.07076883 0.2245119 +2.494678 0.07076883 0.2245119 +2.852659 0.07076883 0.2245119 +3.261896 0.07076883 0.2245119 +3.729748 0.07076883 0.2245119 +4.264621 0.07076883 0.2245119 +4.876131 0.07076883 0.2245119 +5.575266 0.07076883 0.2245119 +6.374593 0.07076883 0.2245119 +0 0.1119241 0.2245119 +0 0.1119241 0.2245119 +0 0.1119241 0.2245119 +0.002268731 0.1119241 0.2245119 +0.07076883 0.1119241 0.2245119 +0.1119241 0.1119241 0.2245119 +0.1475052 0.1119241 0.2245119 +0.1846606 0.1119241 0.2245119 +0.2245119 0.1119241 0.2245119 +0.2679612 0.1119241 0.2245119 +0.3158431 0.1119241 0.2245119 +0.3689944 0.1119241 0.2245119 +0.4282948 0.1119241 0.2245119 +0.494694 0.1119241 0.2245119 +0.5692344 0.1119241 0.2245119 +0.6530715 0.1119241 0.2245119 +0.7474945 0.1119241 0.2245119 +0.8539475 0.1119241 0.2245119 +0.974052 0.1119241 0.2245119 +1.113885 0.1119241 0.2245119 +1.27456 0.1119241 0.2245119 +1.458117 0.1119241 0.2245119 +1.667858 0.1119241 0.2245119 +1.907556 0.1119241 0.2245119 +2.181521 0.1119241 0.2245119 +2.494678 0.1119241 0.2245119 +2.852659 0.1119241 0.2245119 +3.261896 0.1119241 0.2245119 +3.729748 0.1119241 0.2245119 +4.264621 0.1119241 0.2245119 +4.876131 0.1119241 0.2245119 +5.575266 0.1119241 0.2245119 +6.374593 0.1119241 0.2245119 +0 0.1475052 0.2245119 +0 0.1475052 0.2245119 +0 0.1475052 0.2245119 +0.002268731 0.1475052 0.2245119 +0.07076883 0.1475052 0.2245119 +0.1119241 0.1475052 0.2245119 +0.1475052 0.1475052 0.2245119 +0.1846606 0.1475052 0.2245119 +0.2245119 0.1475052 0.2245119 +0.2679612 0.1475052 0.2245119 +0.3158431 0.1475052 0.2245119 +0.3689944 0.1475052 0.2245119 +0.4282948 0.1475052 0.2245119 +0.494694 0.1475052 0.2245119 +0.5692344 0.1475052 0.2245119 +0.6530715 0.1475052 0.2245119 +0.7474945 0.1475052 0.2245119 +0.8539475 0.1475052 0.2245119 +0.974052 0.1475052 0.2245119 +1.113885 0.1475052 0.2245119 +1.27456 0.1475052 0.2245119 +1.458117 0.1475052 0.2245119 +1.667858 0.1475052 0.2245119 +1.907556 0.1475052 0.2245119 +2.181521 0.1475052 0.2245119 +2.494678 0.1475052 0.2245119 +2.852659 0.1475052 0.2245119 +3.261896 0.1475052 0.2245119 +3.729748 0.1475052 0.2245119 +4.264621 0.1475052 0.2245119 +4.876131 0.1475052 0.2245119 +5.575266 0.1475052 0.2245119 +6.374593 0.1475052 0.2245119 +0 0.1846606 0.2245119 +0 0.1846606 0.2245119 +0 0.1846606 0.2245119 +0.002268731 0.1846606 0.2245119 +0.07076883 0.1846606 0.2245119 +0.1119241 0.1846606 0.2245119 +0.1475052 0.1846606 0.2245119 +0.1846606 0.1846606 0.2245119 +0.2245119 0.1846606 0.2245119 +0.2679612 0.1846606 0.2245119 +0.3158431 0.1846606 0.2245119 +0.3689944 0.1846606 0.2245119 +0.4282948 0.1846606 0.2245119 +0.494694 0.1846606 0.2245119 +0.5692344 0.1846606 0.2245119 +0.6530715 0.1846606 0.2245119 +0.7474945 0.1846606 0.2245119 +0.8539475 0.1846606 0.2245119 +0.974052 0.1846606 0.2245119 +1.113885 0.1846606 0.2245119 +1.27456 0.1846606 0.2245119 +1.458117 0.1846606 0.2245119 +1.667858 0.1846606 0.2245119 +1.907556 0.1846606 0.2245119 +2.181521 0.1846606 0.2245119 +2.494678 0.1846606 0.2245119 +2.852659 0.1846606 0.2245119 +3.261896 0.1846606 0.2245119 +3.729748 0.1846606 0.2245119 +4.264621 0.1846606 0.2245119 +4.876131 0.1846606 0.2245119 +5.575266 0.1846606 0.2245119 +6.374593 0.1846606 0.2245119 +0 0.2245119 0.2245119 +0 0.2245119 0.2245119 +0 0.2245119 0.2245119 +0.002268731 0.2245119 0.2245119 +0.07076883 0.2245119 0.2245119 +0.1119241 0.2245119 0.2245119 +0.1475052 0.2245119 0.2245119 +0.1846606 0.2245119 0.2245119 +0.2245119 0.2245119 0.2245119 +0.2679612 0.2245119 0.2245119 +0.3158431 0.2245119 0.2245119 +0.3689944 0.2245119 0.2245119 +0.4282948 0.2245119 0.2245119 +0.494694 0.2245119 0.2245119 +0.5692344 0.2245119 0.2245119 +0.6530715 0.2245119 0.2245119 +0.7474945 0.2245119 0.2245119 +0.8539475 0.2245119 0.2245119 +0.974052 0.2245119 0.2245119 +1.113885 0.2245119 0.2245119 +1.27456 0.2245119 0.2245119 +1.458117 0.2245119 0.2245119 +1.667858 0.2245119 0.2245119 +1.907556 0.2245119 0.2245119 +2.181521 0.2245119 0.2245119 +2.494678 0.2245119 0.2245119 +2.852659 0.2245119 0.2245119 +3.261896 0.2245119 0.2245119 +3.729748 0.2245119 0.2245119 +4.264621 0.2245119 0.2245119 +4.876131 0.2245119 0.2245119 +5.575266 0.2245119 0.2245119 +6.374593 0.2245119 0.2245119 +0 0.2679612 0.2245119 +0 0.2679612 0.2245119 +0 0.2679612 0.2245119 +0.002268731 0.2679612 0.2245119 +0.07076883 0.2679612 0.2245119 +0.1119241 0.2679612 0.2245119 +0.1475052 0.2679612 0.2245119 +0.1846606 0.2679612 0.2245119 +0.2245119 0.2679612 0.2245119 +0.2679612 0.2679612 0.2245119 +0.3158431 0.2679612 0.2245119 +0.3689944 0.2679612 0.2245119 +0.4282948 0.2679612 0.2245119 +0.494694 0.2679612 0.2245119 +0.5692344 0.2679612 0.2245119 +0.6530715 0.2679612 0.2245119 +0.7474945 0.2679612 0.2245119 +0.8539475 0.2679612 0.2245119 +0.974052 0.2679612 0.2245119 +1.113885 0.2679612 0.2245119 +1.27456 0.2679612 0.2245119 +1.458117 0.2679612 0.2245119 +1.667858 0.2679612 0.2245119 +1.907556 0.2679612 0.2245119 +2.181521 0.2679612 0.2245119 +2.494678 0.2679612 0.2245119 +2.852659 0.2679612 0.2245119 +3.261896 0.2679612 0.2245119 +3.729748 0.2679612 0.2245119 +4.264621 0.2679612 0.2245119 +4.876131 0.2679612 0.2245119 +5.575266 0.2679612 0.2245119 +6.374593 0.2679612 0.2245119 +0 0.3158431 0.2245119 +0 0.3158431 0.2245119 +0 0.3158431 0.2245119 +0.002268731 0.3158431 0.2245119 +0.07076883 0.3158431 0.2245119 +0.1119241 0.3158431 0.2245119 +0.1475052 0.3158431 0.2245119 +0.1846606 0.3158431 0.2245119 +0.2245119 0.3158431 0.2245119 +0.2679612 0.3158431 0.2245119 +0.3158431 0.3158431 0.2245119 +0.3689944 0.3158431 0.2245119 +0.4282948 0.3158431 0.2245119 +0.494694 0.3158431 0.2245119 +0.5692344 0.3158431 0.2245119 +0.6530715 0.3158431 0.2245119 +0.7474945 0.3158431 0.2245119 +0.8539475 0.3158431 0.2245119 +0.974052 0.3158431 0.2245119 +1.113885 0.3158431 0.2245119 +1.27456 0.3158431 0.2245119 +1.458117 0.3158431 0.2245119 +1.667858 0.3158431 0.2245119 +1.907556 0.3158431 0.2245119 +2.181521 0.3158431 0.2245119 +2.494678 0.3158431 0.2245119 +2.852659 0.3158431 0.2245119 +3.261896 0.3158431 0.2245119 +3.729748 0.3158431 0.2245119 +4.264621 0.3158431 0.2245119 +4.876131 0.3158431 0.2245119 +5.575266 0.3158431 0.2245119 +6.374593 0.3158431 0.2245119 +0 0.3689944 0.2245119 +0 0.3689944 0.2245119 +0 0.3689944 0.2245119 +0.002268731 0.3689944 0.2245119 +0.07076883 0.3689944 0.2245119 +0.1119241 0.3689944 0.2245119 +0.1475052 0.3689944 0.2245119 +0.1846606 0.3689944 0.2245119 +0.2245119 0.3689944 0.2245119 +0.2679612 0.3689944 0.2245119 +0.3158431 0.3689944 0.2245119 +0.3689944 0.3689944 0.2245119 +0.4282948 0.3689944 0.2245119 +0.494694 0.3689944 0.2245119 +0.5692344 0.3689944 0.2245119 +0.6530715 0.3689944 0.2245119 +0.7474945 0.3689944 0.2245119 +0.8539475 0.3689944 0.2245119 +0.974052 0.3689944 0.2245119 +1.113885 0.3689944 0.2245119 +1.27456 0.3689944 0.2245119 +1.458117 0.3689944 0.2245119 +1.667858 0.3689944 0.2245119 +1.907556 0.3689944 0.2245119 +2.181521 0.3689944 0.2245119 +2.494678 0.3689944 0.2245119 +2.852659 0.3689944 0.2245119 +3.261896 0.3689944 0.2245119 +3.729748 0.3689944 0.2245119 +4.264621 0.3689944 0.2245119 +4.876131 0.3689944 0.2245119 +5.575266 0.3689944 0.2245119 +6.374593 0.3689944 0.2245119 +0 0.4282948 0.2245119 +0 0.4282948 0.2245119 +0 0.4282948 0.2245119 +0.002268731 0.4282948 0.2245119 +0.07076883 0.4282948 0.2245119 +0.1119241 0.4282948 0.2245119 +0.1475052 0.4282948 0.2245119 +0.1846606 0.4282948 0.2245119 +0.2245119 0.4282948 0.2245119 +0.2679612 0.4282948 0.2245119 +0.3158431 0.4282948 0.2245119 +0.3689944 0.4282948 0.2245119 +0.4282948 0.4282948 0.2245119 +0.494694 0.4282948 0.2245119 +0.5692344 0.4282948 0.2245119 +0.6530715 0.4282948 0.2245119 +0.7474945 0.4282948 0.2245119 +0.8539475 0.4282948 0.2245119 +0.974052 0.4282948 0.2245119 +1.113885 0.4282948 0.2245119 +1.27456 0.4282948 0.2245119 +1.458117 0.4282948 0.2245119 +1.667858 0.4282948 0.2245119 +1.907556 0.4282948 0.2245119 +2.181521 0.4282948 0.2245119 +2.494678 0.4282948 0.2245119 +2.852659 0.4282948 0.2245119 +3.261896 0.4282948 0.2245119 +3.729748 0.4282948 0.2245119 +4.264621 0.4282948 0.2245119 +4.876131 0.4282948 0.2245119 +5.575266 0.4282948 0.2245119 +6.374593 0.4282948 0.2245119 +0 0.494694 0.2245119 +0 0.494694 0.2245119 +0 0.494694 0.2245119 +0.002268731 0.494694 0.2245119 +0.07076883 0.494694 0.2245119 +0.1119241 0.494694 0.2245119 +0.1475052 0.494694 0.2245119 +0.1846606 0.494694 0.2245119 +0.2245119 0.494694 0.2245119 +0.2679612 0.494694 0.2245119 +0.3158431 0.494694 0.2245119 +0.3689944 0.494694 0.2245119 +0.4282948 0.494694 0.2245119 +0.494694 0.494694 0.2245119 +0.5692344 0.494694 0.2245119 +0.6530715 0.494694 0.2245119 +0.7474945 0.494694 0.2245119 +0.8539475 0.494694 0.2245119 +0.974052 0.494694 0.2245119 +1.113885 0.494694 0.2245119 +1.27456 0.494694 0.2245119 +1.458117 0.494694 0.2245119 +1.667858 0.494694 0.2245119 +1.907556 0.494694 0.2245119 +2.181521 0.494694 0.2245119 +2.494678 0.494694 0.2245119 +2.852659 0.494694 0.2245119 +3.261896 0.494694 0.2245119 +3.729748 0.494694 0.2245119 +4.264621 0.494694 0.2245119 +4.876131 0.494694 0.2245119 +5.575266 0.494694 0.2245119 +6.374593 0.494694 0.2245119 +0 0.5692344 0.2245119 +0 0.5692344 0.2245119 +0 0.5692344 0.2245119 +0.002268731 0.5692344 0.2245119 +0.07076883 0.5692344 0.2245119 +0.1119241 0.5692344 0.2245119 +0.1475052 0.5692344 0.2245119 +0.1846606 0.5692344 0.2245119 +0.2245119 0.5692344 0.2245119 +0.2679612 0.5692344 0.2245119 +0.3158431 0.5692344 0.2245119 +0.3689944 0.5692344 0.2245119 +0.4282948 0.5692344 0.2245119 +0.494694 0.5692344 0.2245119 +0.5692344 0.5692344 0.2245119 +0.6530715 0.5692344 0.2245119 +0.7474945 0.5692344 0.2245119 +0.8539475 0.5692344 0.2245119 +0.974052 0.5692344 0.2245119 +1.113885 0.5692344 0.2245119 +1.27456 0.5692344 0.2245119 +1.458117 0.5692344 0.2245119 +1.667858 0.5692344 0.2245119 +1.907556 0.5692344 0.2245119 +2.181521 0.5692344 0.2245119 +2.494678 0.5692344 0.2245119 +2.852659 0.5692344 0.2245119 +3.261896 0.5692344 0.2245119 +3.729748 0.5692344 0.2245119 +4.264621 0.5692344 0.2245119 +4.876131 0.5692344 0.2245119 +5.575266 0.5692344 0.2245119 +6.374593 0.5692344 0.2245119 +0 0.6530715 0.2245119 +0 0.6530715 0.2245119 +0 0.6530715 0.2245119 +0.002268731 0.6530715 0.2245119 +0.07076883 0.6530715 0.2245119 +0.1119241 0.6530715 0.2245119 +0.1475052 0.6530715 0.2245119 +0.1846606 0.6530715 0.2245119 +0.2245119 0.6530715 0.2245119 +0.2679612 0.6530715 0.2245119 +0.3158431 0.6530715 0.2245119 +0.3689944 0.6530715 0.2245119 +0.4282948 0.6530715 0.2245119 +0.494694 0.6530715 0.2245119 +0.5692344 0.6530715 0.2245119 +0.6530715 0.6530715 0.2245119 +0.7474945 0.6530715 0.2245119 +0.8539475 0.6530715 0.2245119 +0.974052 0.6530715 0.2245119 +1.113885 0.6530715 0.2245119 +1.27456 0.6530715 0.2245119 +1.458117 0.6530715 0.2245119 +1.667858 0.6530715 0.2245119 +1.907556 0.6530715 0.2245119 +2.181521 0.6530715 0.2245119 +2.494678 0.6530715 0.2245119 +2.852659 0.6530715 0.2245119 +3.261896 0.6530715 0.2245119 +3.729748 0.6530715 0.2245119 +4.264621 0.6530715 0.2245119 +4.876131 0.6530715 0.2245119 +5.575266 0.6530715 0.2245119 +6.374593 0.6530715 0.2245119 +0 0.7474945 0.2245119 +0 0.7474945 0.2245119 +0 0.7474945 0.2245119 +0.002268731 0.7474945 0.2245119 +0.07076883 0.7474945 0.2245119 +0.1119241 0.7474945 0.2245119 +0.1475052 0.7474945 0.2245119 +0.1846606 0.7474945 0.2245119 +0.2245119 0.7474945 0.2245119 +0.2679612 0.7474945 0.2245119 +0.3158431 0.7474945 0.2245119 +0.3689944 0.7474945 0.2245119 +0.4282948 0.7474945 0.2245119 +0.494694 0.7474945 0.2245119 +0.5692344 0.7474945 0.2245119 +0.6530715 0.7474945 0.2245119 +0.7474945 0.7474945 0.2245119 +0.8539475 0.7474945 0.2245119 +0.974052 0.7474945 0.2245119 +1.113885 0.7474945 0.2245119 +1.27456 0.7474945 0.2245119 +1.458117 0.7474945 0.2245119 +1.667858 0.7474945 0.2245119 +1.907556 0.7474945 0.2245119 +2.181521 0.7474945 0.2245119 +2.494678 0.7474945 0.2245119 +2.852659 0.7474945 0.2245119 +3.261896 0.7474945 0.2245119 +3.729748 0.7474945 0.2245119 +4.264621 0.7474945 0.2245119 +4.876131 0.7474945 0.2245119 +5.575266 0.7474945 0.2245119 +6.374593 0.7474945 0.2245119 +0 0.8539475 0.2245119 +0 0.8539475 0.2245119 +0 0.8539475 0.2245119 +0.002268731 0.8539475 0.2245119 +0.07076883 0.8539475 0.2245119 +0.1119241 0.8539475 0.2245119 +0.1475052 0.8539475 0.2245119 +0.1846606 0.8539475 0.2245119 +0.2245119 0.8539475 0.2245119 +0.2679612 0.8539475 0.2245119 +0.3158431 0.8539475 0.2245119 +0.3689944 0.8539475 0.2245119 +0.4282948 0.8539475 0.2245119 +0.494694 0.8539475 0.2245119 +0.5692344 0.8539475 0.2245119 +0.6530715 0.8539475 0.2245119 +0.7474945 0.8539475 0.2245119 +0.8539475 0.8539475 0.2245119 +0.974052 0.8539475 0.2245119 +1.113885 0.8539475 0.2245119 +1.27456 0.8539475 0.2245119 +1.458117 0.8539475 0.2245119 +1.667858 0.8539475 0.2245119 +1.907556 0.8539475 0.2245119 +2.181521 0.8539475 0.2245119 +2.494678 0.8539475 0.2245119 +2.852659 0.8539475 0.2245119 +3.261896 0.8539475 0.2245119 +3.729748 0.8539475 0.2245119 +4.264621 0.8539475 0.2245119 +4.876131 0.8539475 0.2245119 +5.575266 0.8539475 0.2245119 +6.374593 0.8539475 0.2245119 +0 0.974052 0.2245119 +0 0.974052 0.2245119 +0 0.974052 0.2245119 +0.002268731 0.974052 0.2245119 +0.07076883 0.974052 0.2245119 +0.1119241 0.974052 0.2245119 +0.1475052 0.974052 0.2245119 +0.1846606 0.974052 0.2245119 +0.2245119 0.974052 0.2245119 +0.2679612 0.974052 0.2245119 +0.3158431 0.974052 0.2245119 +0.3689944 0.974052 0.2245119 +0.4282948 0.974052 0.2245119 +0.494694 0.974052 0.2245119 +0.5692344 0.974052 0.2245119 +0.6530715 0.974052 0.2245119 +0.7474945 0.974052 0.2245119 +0.8539475 0.974052 0.2245119 +0.974052 0.974052 0.2245119 +1.113885 0.974052 0.2245119 +1.27456 0.974052 0.2245119 +1.458117 0.974052 0.2245119 +1.667858 0.974052 0.2245119 +1.907556 0.974052 0.2245119 +2.181521 0.974052 0.2245119 +2.494678 0.974052 0.2245119 +2.852659 0.974052 0.2245119 +3.261896 0.974052 0.2245119 +3.729748 0.974052 0.2245119 +4.264621 0.974052 0.2245119 +4.876131 0.974052 0.2245119 +5.575266 0.974052 0.2245119 +6.374593 0.974052 0.2245119 +0 1.113885 0.2245119 +0 1.113885 0.2245119 +0 1.113885 0.2245119 +0.002268731 1.113885 0.2245119 +0.07076883 1.113885 0.2245119 +0.1119241 1.113885 0.2245119 +0.1475052 1.113885 0.2245119 +0.1846606 1.113885 0.2245119 +0.2245119 1.113885 0.2245119 +0.2679612 1.113885 0.2245119 +0.3158431 1.113885 0.2245119 +0.3689944 1.113885 0.2245119 +0.4282948 1.113885 0.2245119 +0.494694 1.113885 0.2245119 +0.5692344 1.113885 0.2245119 +0.6530715 1.113885 0.2245119 +0.7474945 1.113885 0.2245119 +0.8539475 1.113885 0.2245119 +0.974052 1.113885 0.2245119 +1.113885 1.113885 0.2245119 +1.27456 1.113885 0.2245119 +1.458117 1.113885 0.2245119 +1.667858 1.113885 0.2245119 +1.907556 1.113885 0.2245119 +2.181521 1.113885 0.2245119 +2.494678 1.113885 0.2245119 +2.852659 1.113885 0.2245119 +3.261896 1.113885 0.2245119 +3.729748 1.113885 0.2245119 +4.264621 1.113885 0.2245119 +4.876131 1.113885 0.2245119 +5.575266 1.113885 0.2245119 +6.374593 1.113885 0.2245119 +0 1.27456 0.2245119 +0 1.27456 0.2245119 +0 1.27456 0.2245119 +0.002268731 1.27456 0.2245119 +0.07076883 1.27456 0.2245119 +0.1119241 1.27456 0.2245119 +0.1475052 1.27456 0.2245119 +0.1846606 1.27456 0.2245119 +0.2245119 1.27456 0.2245119 +0.2679612 1.27456 0.2245119 +0.3158431 1.27456 0.2245119 +0.3689944 1.27456 0.2245119 +0.4282948 1.27456 0.2245119 +0.494694 1.27456 0.2245119 +0.5692344 1.27456 0.2245119 +0.6530715 1.27456 0.2245119 +0.7474945 1.27456 0.2245119 +0.8539475 1.27456 0.2245119 +0.974052 1.27456 0.2245119 +1.113885 1.27456 0.2245119 +1.27456 1.27456 0.2245119 +1.458117 1.27456 0.2245119 +1.667858 1.27456 0.2245119 +1.907556 1.27456 0.2245119 +2.181521 1.27456 0.2245119 +2.494678 1.27456 0.2245119 +2.852659 1.27456 0.2245119 +3.261896 1.27456 0.2245119 +3.729748 1.27456 0.2245119 +4.264621 1.27456 0.2245119 +4.876131 1.27456 0.2245119 +5.575266 1.27456 0.2245119 +6.374593 1.27456 0.2245119 +0 1.458117 0.2245119 +0 1.458117 0.2245119 +0 1.458117 0.2245119 +0.002268731 1.458117 0.2245119 +0.07076883 1.458117 0.2245119 +0.1119241 1.458117 0.2245119 +0.1475052 1.458117 0.2245119 +0.1846606 1.458117 0.2245119 +0.2245119 1.458117 0.2245119 +0.2679612 1.458117 0.2245119 +0.3158431 1.458117 0.2245119 +0.3689944 1.458117 0.2245119 +0.4282948 1.458117 0.2245119 +0.494694 1.458117 0.2245119 +0.5692344 1.458117 0.2245119 +0.6530715 1.458117 0.2245119 +0.7474945 1.458117 0.2245119 +0.8539475 1.458117 0.2245119 +0.974052 1.458117 0.2245119 +1.113885 1.458117 0.2245119 +1.27456 1.458117 0.2245119 +1.458117 1.458117 0.2245119 +1.667858 1.458117 0.2245119 +1.907556 1.458117 0.2245119 +2.181521 1.458117 0.2245119 +2.494678 1.458117 0.2245119 +2.852659 1.458117 0.2245119 +3.261896 1.458117 0.2245119 +3.729748 1.458117 0.2245119 +4.264621 1.458117 0.2245119 +4.876131 1.458117 0.2245119 +5.575266 1.458117 0.2245119 +6.374593 1.458117 0.2245119 +0 1.667858 0.2245119 +0 1.667858 0.2245119 +0 1.667858 0.2245119 +0.002268731 1.667858 0.2245119 +0.07076883 1.667858 0.2245119 +0.1119241 1.667858 0.2245119 +0.1475052 1.667858 0.2245119 +0.1846606 1.667858 0.2245119 +0.2245119 1.667858 0.2245119 +0.2679612 1.667858 0.2245119 +0.3158431 1.667858 0.2245119 +0.3689944 1.667858 0.2245119 +0.4282948 1.667858 0.2245119 +0.494694 1.667858 0.2245119 +0.5692344 1.667858 0.2245119 +0.6530715 1.667858 0.2245119 +0.7474945 1.667858 0.2245119 +0.8539475 1.667858 0.2245119 +0.974052 1.667858 0.2245119 +1.113885 1.667858 0.2245119 +1.27456 1.667858 0.2245119 +1.458117 1.667858 0.2245119 +1.667858 1.667858 0.2245119 +1.907556 1.667858 0.2245119 +2.181521 1.667858 0.2245119 +2.494678 1.667858 0.2245119 +2.852659 1.667858 0.2245119 +3.261896 1.667858 0.2245119 +3.729748 1.667858 0.2245119 +4.264621 1.667858 0.2245119 +4.876131 1.667858 0.2245119 +5.575266 1.667858 0.2245119 +6.374593 1.667858 0.2245119 +0 1.907556 0.2245119 +0 1.907556 0.2245119 +0 1.907556 0.2245119 +0.002268731 1.907556 0.2245119 +0.07076883 1.907556 0.2245119 +0.1119241 1.907556 0.2245119 +0.1475052 1.907556 0.2245119 +0.1846606 1.907556 0.2245119 +0.2245119 1.907556 0.2245119 +0.2679612 1.907556 0.2245119 +0.3158431 1.907556 0.2245119 +0.3689944 1.907556 0.2245119 +0.4282948 1.907556 0.2245119 +0.494694 1.907556 0.2245119 +0.5692344 1.907556 0.2245119 +0.6530715 1.907556 0.2245119 +0.7474945 1.907556 0.2245119 +0.8539475 1.907556 0.2245119 +0.974052 1.907556 0.2245119 +1.113885 1.907556 0.2245119 +1.27456 1.907556 0.2245119 +1.458117 1.907556 0.2245119 +1.667858 1.907556 0.2245119 +1.907556 1.907556 0.2245119 +2.181521 1.907556 0.2245119 +2.494678 1.907556 0.2245119 +2.852659 1.907556 0.2245119 +3.261896 1.907556 0.2245119 +3.729748 1.907556 0.2245119 +4.264621 1.907556 0.2245119 +4.876131 1.907556 0.2245119 +5.575266 1.907556 0.2245119 +6.374593 1.907556 0.2245119 +0 2.181521 0.2245119 +0 2.181521 0.2245119 +0 2.181521 0.2245119 +0.002268731 2.181521 0.2245119 +0.07076883 2.181521 0.2245119 +0.1119241 2.181521 0.2245119 +0.1475052 2.181521 0.2245119 +0.1846606 2.181521 0.2245119 +0.2245119 2.181521 0.2245119 +0.2679612 2.181521 0.2245119 +0.3158431 2.181521 0.2245119 +0.3689944 2.181521 0.2245119 +0.4282948 2.181521 0.2245119 +0.494694 2.181521 0.2245119 +0.5692344 2.181521 0.2245119 +0.6530715 2.181521 0.2245119 +0.7474945 2.181521 0.2245119 +0.8539475 2.181521 0.2245119 +0.974052 2.181521 0.2245119 +1.113885 2.181521 0.2245119 +1.27456 2.181521 0.2245119 +1.458117 2.181521 0.2245119 +1.667858 2.181521 0.2245119 +1.907556 2.181521 0.2245119 +2.181521 2.181521 0.2245119 +2.494678 2.181521 0.2245119 +2.852659 2.181521 0.2245119 +3.261896 2.181521 0.2245119 +3.729748 2.181521 0.2245119 +4.264621 2.181521 0.2245119 +4.876131 2.181521 0.2245119 +5.575266 2.181521 0.2245119 +6.374593 2.181521 0.2245119 +0 2.494678 0.2245119 +0 2.494678 0.2245119 +0 2.494678 0.2245119 +0.002268731 2.494678 0.2245119 +0.07076883 2.494678 0.2245119 +0.1119241 2.494678 0.2245119 +0.1475052 2.494678 0.2245119 +0.1846606 2.494678 0.2245119 +0.2245119 2.494678 0.2245119 +0.2679612 2.494678 0.2245119 +0.3158431 2.494678 0.2245119 +0.3689944 2.494678 0.2245119 +0.4282948 2.494678 0.2245119 +0.494694 2.494678 0.2245119 +0.5692344 2.494678 0.2245119 +0.6530715 2.494678 0.2245119 +0.7474945 2.494678 0.2245119 +0.8539475 2.494678 0.2245119 +0.974052 2.494678 0.2245119 +1.113885 2.494678 0.2245119 +1.27456 2.494678 0.2245119 +1.458117 2.494678 0.2245119 +1.667858 2.494678 0.2245119 +1.907556 2.494678 0.2245119 +2.181521 2.494678 0.2245119 +2.494678 2.494678 0.2245119 +2.852659 2.494678 0.2245119 +3.261896 2.494678 0.2245119 +3.729748 2.494678 0.2245119 +4.264621 2.494678 0.2245119 +4.876131 2.494678 0.2245119 +5.575266 2.494678 0.2245119 +6.374593 2.494678 0.2245119 +0 2.852659 0.2245119 +0 2.852659 0.2245119 +0 2.852659 0.2245119 +0.002268731 2.852659 0.2245119 +0.07076883 2.852659 0.2245119 +0.1119241 2.852659 0.2245119 +0.1475052 2.852659 0.2245119 +0.1846606 2.852659 0.2245119 +0.2245119 2.852659 0.2245119 +0.2679612 2.852659 0.2245119 +0.3158431 2.852659 0.2245119 +0.3689944 2.852659 0.2245119 +0.4282948 2.852659 0.2245119 +0.494694 2.852659 0.2245119 +0.5692344 2.852659 0.2245119 +0.6530715 2.852659 0.2245119 +0.7474945 2.852659 0.2245119 +0.8539475 2.852659 0.2245119 +0.974052 2.852659 0.2245119 +1.113885 2.852659 0.2245119 +1.27456 2.852659 0.2245119 +1.458117 2.852659 0.2245119 +1.667858 2.852659 0.2245119 +1.907556 2.852659 0.2245119 +2.181521 2.852659 0.2245119 +2.494678 2.852659 0.2245119 +2.852659 2.852659 0.2245119 +3.261896 2.852659 0.2245119 +3.729748 2.852659 0.2245119 +4.264621 2.852659 0.2245119 +4.876131 2.852659 0.2245119 +5.575266 2.852659 0.2245119 +6.374593 2.852659 0.2245119 +0 3.261896 0.2245119 +0 3.261896 0.2245119 +0 3.261896 0.2245119 +0.002268731 3.261896 0.2245119 +0.07076883 3.261896 0.2245119 +0.1119241 3.261896 0.2245119 +0.1475052 3.261896 0.2245119 +0.1846606 3.261896 0.2245119 +0.2245119 3.261896 0.2245119 +0.2679612 3.261896 0.2245119 +0.3158431 3.261896 0.2245119 +0.3689944 3.261896 0.2245119 +0.4282948 3.261896 0.2245119 +0.494694 3.261896 0.2245119 +0.5692344 3.261896 0.2245119 +0.6530715 3.261896 0.2245119 +0.7474945 3.261896 0.2245119 +0.8539475 3.261896 0.2245119 +0.974052 3.261896 0.2245119 +1.113885 3.261896 0.2245119 +1.27456 3.261896 0.2245119 +1.458117 3.261896 0.2245119 +1.667858 3.261896 0.2245119 +1.907556 3.261896 0.2245119 +2.181521 3.261896 0.2245119 +2.494678 3.261896 0.2245119 +2.852659 3.261896 0.2245119 +3.261896 3.261896 0.2245119 +3.729748 3.261896 0.2245119 +4.264621 3.261896 0.2245119 +4.876131 3.261896 0.2245119 +5.575266 3.261896 0.2245119 +6.374593 3.261896 0.2245119 +0 3.729748 0.2245119 +0 3.729748 0.2245119 +0 3.729748 0.2245119 +0.002268731 3.729748 0.2245119 +0.07076883 3.729748 0.2245119 +0.1119241 3.729748 0.2245119 +0.1475052 3.729748 0.2245119 +0.1846606 3.729748 0.2245119 +0.2245119 3.729748 0.2245119 +0.2679612 3.729748 0.2245119 +0.3158431 3.729748 0.2245119 +0.3689944 3.729748 0.2245119 +0.4282948 3.729748 0.2245119 +0.494694 3.729748 0.2245119 +0.5692344 3.729748 0.2245119 +0.6530715 3.729748 0.2245119 +0.7474945 3.729748 0.2245119 +0.8539475 3.729748 0.2245119 +0.974052 3.729748 0.2245119 +1.113885 3.729748 0.2245119 +1.27456 3.729748 0.2245119 +1.458117 3.729748 0.2245119 +1.667858 3.729748 0.2245119 +1.907556 3.729748 0.2245119 +2.181521 3.729748 0.2245119 +2.494678 3.729748 0.2245119 +2.852659 3.729748 0.2245119 +3.261896 3.729748 0.2245119 +3.729748 3.729748 0.2245119 +4.264621 3.729748 0.2245119 +4.876131 3.729748 0.2245119 +5.575266 3.729748 0.2245119 +6.374593 3.729748 0.2245119 +0 4.264621 0.2245119 +0 4.264621 0.2245119 +0 4.264621 0.2245119 +0.002268731 4.264621 0.2245119 +0.07076883 4.264621 0.2245119 +0.1119241 4.264621 0.2245119 +0.1475052 4.264621 0.2245119 +0.1846606 4.264621 0.2245119 +0.2245119 4.264621 0.2245119 +0.2679612 4.264621 0.2245119 +0.3158431 4.264621 0.2245119 +0.3689944 4.264621 0.2245119 +0.4282948 4.264621 0.2245119 +0.494694 4.264621 0.2245119 +0.5692344 4.264621 0.2245119 +0.6530715 4.264621 0.2245119 +0.7474945 4.264621 0.2245119 +0.8539475 4.264621 0.2245119 +0.974052 4.264621 0.2245119 +1.113885 4.264621 0.2245119 +1.27456 4.264621 0.2245119 +1.458117 4.264621 0.2245119 +1.667858 4.264621 0.2245119 +1.907556 4.264621 0.2245119 +2.181521 4.264621 0.2245119 +2.494678 4.264621 0.2245119 +2.852659 4.264621 0.2245119 +3.261896 4.264621 0.2245119 +3.729748 4.264621 0.2245119 +4.264621 4.264621 0.2245119 +4.876131 4.264621 0.2245119 +5.575266 4.264621 0.2245119 +6.374593 4.264621 0.2245119 +0 4.876131 0.2245119 +0 4.876131 0.2245119 +0 4.876131 0.2245119 +0.002268731 4.876131 0.2245119 +0.07076883 4.876131 0.2245119 +0.1119241 4.876131 0.2245119 +0.1475052 4.876131 0.2245119 +0.1846606 4.876131 0.2245119 +0.2245119 4.876131 0.2245119 +0.2679612 4.876131 0.2245119 +0.3158431 4.876131 0.2245119 +0.3689944 4.876131 0.2245119 +0.4282948 4.876131 0.2245119 +0.494694 4.876131 0.2245119 +0.5692344 4.876131 0.2245119 +0.6530715 4.876131 0.2245119 +0.7474945 4.876131 0.2245119 +0.8539475 4.876131 0.2245119 +0.974052 4.876131 0.2245119 +1.113885 4.876131 0.2245119 +1.27456 4.876131 0.2245119 +1.458117 4.876131 0.2245119 +1.667858 4.876131 0.2245119 +1.907556 4.876131 0.2245119 +2.181521 4.876131 0.2245119 +2.494678 4.876131 0.2245119 +2.852659 4.876131 0.2245119 +3.261896 4.876131 0.2245119 +3.729748 4.876131 0.2245119 +4.264621 4.876131 0.2245119 +4.876131 4.876131 0.2245119 +5.575266 4.876131 0.2245119 +6.374593 4.876131 0.2245119 +0 5.575266 0.2245119 +0 5.575266 0.2245119 +0 5.575266 0.2245119 +0.002268731 5.575266 0.2245119 +0.07076883 5.575266 0.2245119 +0.1119241 5.575266 0.2245119 +0.1475052 5.575266 0.2245119 +0.1846606 5.575266 0.2245119 +0.2245119 5.575266 0.2245119 +0.2679612 5.575266 0.2245119 +0.3158431 5.575266 0.2245119 +0.3689944 5.575266 0.2245119 +0.4282948 5.575266 0.2245119 +0.494694 5.575266 0.2245119 +0.5692344 5.575266 0.2245119 +0.6530715 5.575266 0.2245119 +0.7474945 5.575266 0.2245119 +0.8539475 5.575266 0.2245119 +0.974052 5.575266 0.2245119 +1.113885 5.575266 0.2245119 +1.27456 5.575266 0.2245119 +1.458117 5.575266 0.2245119 +1.667858 5.575266 0.2245119 +1.907556 5.575266 0.2245119 +2.181521 5.575266 0.2245119 +2.494678 5.575266 0.2245119 +2.852659 5.575266 0.2245119 +3.261896 5.575266 0.2245119 +3.729748 5.575266 0.2245119 +4.264621 5.575266 0.2245119 +4.876131 5.575266 0.2245119 +5.575266 5.575266 0.2245119 +6.374593 5.575266 0.2245119 +0 6.374593 0.2245119 +0 6.374593 0.2245119 +0 6.374593 0.2245119 +0.002268731 6.374593 0.2245119 +0.07076883 6.374593 0.2245119 +0.1119241 6.374593 0.2245119 +0.1475052 6.374593 0.2245119 +0.1846606 6.374593 0.2245119 +0.2245119 6.374593 0.2245119 +0.2679612 6.374593 0.2245119 +0.3158431 6.374593 0.2245119 +0.3689944 6.374593 0.2245119 +0.4282948 6.374593 0.2245119 +0.494694 6.374593 0.2245119 +0.5692344 6.374593 0.2245119 +0.6530715 6.374593 0.2245119 +0.7474945 6.374593 0.2245119 +0.8539475 6.374593 0.2245119 +0.974052 6.374593 0.2245119 +1.113885 6.374593 0.2245119 +1.27456 6.374593 0.2245119 +1.458117 6.374593 0.2245119 +1.667858 6.374593 0.2245119 +1.907556 6.374593 0.2245119 +2.181521 6.374593 0.2245119 +2.494678 6.374593 0.2245119 +2.852659 6.374593 0.2245119 +3.261896 6.374593 0.2245119 +3.729748 6.374593 0.2245119 +4.264621 6.374593 0.2245119 +4.876131 6.374593 0.2245119 +5.575266 6.374593 0.2245119 +6.374593 6.374593 0.2245119 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0.002268731 0.2679612 +0 0.002268731 0.2679612 +0 0.002268731 0.2679612 +0.002268731 0.002268731 0.2679612 +0.07076883 0.002268731 0.2679612 +0.1119241 0.002268731 0.2679612 +0.1475052 0.002268731 0.2679612 +0.1846606 0.002268731 0.2679612 +0.2245119 0.002268731 0.2679612 +0.2679612 0.002268731 0.2679612 +0.3158431 0.002268731 0.2679612 +0.3689944 0.002268731 0.2679612 +0.4282948 0.002268731 0.2679612 +0.494694 0.002268731 0.2679612 +0.5692344 0.002268731 0.2679612 +0.6530715 0.002268731 0.2679612 +0.7474945 0.002268731 0.2679612 +0.8539475 0.002268731 0.2679612 +0.974052 0.002268731 0.2679612 +1.113885 0.002268731 0.2679612 +1.27456 0.002268731 0.2679612 +1.458117 0.002268731 0.2679612 +1.667858 0.002268731 0.2679612 +1.907556 0.002268731 0.2679612 +2.181521 0.002268731 0.2679612 +2.494678 0.002268731 0.2679612 +2.852659 0.002268731 0.2679612 +3.261896 0.002268731 0.2679612 +3.729748 0.002268731 0.2679612 +4.264621 0.002268731 0.2679612 +4.876131 0.002268731 0.2679612 +5.575266 0.002268731 0.2679612 +6.374593 0.002268731 0.2679612 +0 0.07076883 0.2679612 +0 0.07076883 0.2679612 +0 0.07076883 0.2679612 +0.002268731 0.07076883 0.2679612 +0.07076883 0.07076883 0.2679612 +0.1119241 0.07076883 0.2679612 +0.1475052 0.07076883 0.2679612 +0.1846606 0.07076883 0.2679612 +0.2245119 0.07076883 0.2679612 +0.2679612 0.07076883 0.2679612 +0.3158431 0.07076883 0.2679612 +0.3689944 0.07076883 0.2679612 +0.4282948 0.07076883 0.2679612 +0.494694 0.07076883 0.2679612 +0.5692344 0.07076883 0.2679612 +0.6530715 0.07076883 0.2679612 +0.7474945 0.07076883 0.2679612 +0.8539475 0.07076883 0.2679612 +0.974052 0.07076883 0.2679612 +1.113885 0.07076883 0.2679612 +1.27456 0.07076883 0.2679612 +1.458117 0.07076883 0.2679612 +1.667858 0.07076883 0.2679612 +1.907556 0.07076883 0.2679612 +2.181521 0.07076883 0.2679612 +2.494678 0.07076883 0.2679612 +2.852659 0.07076883 0.2679612 +3.261896 0.07076883 0.2679612 +3.729748 0.07076883 0.2679612 +4.264621 0.07076883 0.2679612 +4.876131 0.07076883 0.2679612 +5.575266 0.07076883 0.2679612 +6.374593 0.07076883 0.2679612 +0 0.1119241 0.2679612 +0 0.1119241 0.2679612 +0 0.1119241 0.2679612 +0.002268731 0.1119241 0.2679612 +0.07076883 0.1119241 0.2679612 +0.1119241 0.1119241 0.2679612 +0.1475052 0.1119241 0.2679612 +0.1846606 0.1119241 0.2679612 +0.2245119 0.1119241 0.2679612 +0.2679612 0.1119241 0.2679612 +0.3158431 0.1119241 0.2679612 +0.3689944 0.1119241 0.2679612 +0.4282948 0.1119241 0.2679612 +0.494694 0.1119241 0.2679612 +0.5692344 0.1119241 0.2679612 +0.6530715 0.1119241 0.2679612 +0.7474945 0.1119241 0.2679612 +0.8539475 0.1119241 0.2679612 +0.974052 0.1119241 0.2679612 +1.113885 0.1119241 0.2679612 +1.27456 0.1119241 0.2679612 +1.458117 0.1119241 0.2679612 +1.667858 0.1119241 0.2679612 +1.907556 0.1119241 0.2679612 +2.181521 0.1119241 0.2679612 +2.494678 0.1119241 0.2679612 +2.852659 0.1119241 0.2679612 +3.261896 0.1119241 0.2679612 +3.729748 0.1119241 0.2679612 +4.264621 0.1119241 0.2679612 +4.876131 0.1119241 0.2679612 +5.575266 0.1119241 0.2679612 +6.374593 0.1119241 0.2679612 +0 0.1475052 0.2679612 +0 0.1475052 0.2679612 +0 0.1475052 0.2679612 +0.002268731 0.1475052 0.2679612 +0.07076883 0.1475052 0.2679612 +0.1119241 0.1475052 0.2679612 +0.1475052 0.1475052 0.2679612 +0.1846606 0.1475052 0.2679612 +0.2245119 0.1475052 0.2679612 +0.2679612 0.1475052 0.2679612 +0.3158431 0.1475052 0.2679612 +0.3689944 0.1475052 0.2679612 +0.4282948 0.1475052 0.2679612 +0.494694 0.1475052 0.2679612 +0.5692344 0.1475052 0.2679612 +0.6530715 0.1475052 0.2679612 +0.7474945 0.1475052 0.2679612 +0.8539475 0.1475052 0.2679612 +0.974052 0.1475052 0.2679612 +1.113885 0.1475052 0.2679612 +1.27456 0.1475052 0.2679612 +1.458117 0.1475052 0.2679612 +1.667858 0.1475052 0.2679612 +1.907556 0.1475052 0.2679612 +2.181521 0.1475052 0.2679612 +2.494678 0.1475052 0.2679612 +2.852659 0.1475052 0.2679612 +3.261896 0.1475052 0.2679612 +3.729748 0.1475052 0.2679612 +4.264621 0.1475052 0.2679612 +4.876131 0.1475052 0.2679612 +5.575266 0.1475052 0.2679612 +6.374593 0.1475052 0.2679612 +0 0.1846606 0.2679612 +0 0.1846606 0.2679612 +0 0.1846606 0.2679612 +0.002268731 0.1846606 0.2679612 +0.07076883 0.1846606 0.2679612 +0.1119241 0.1846606 0.2679612 +0.1475052 0.1846606 0.2679612 +0.1846606 0.1846606 0.2679612 +0.2245119 0.1846606 0.2679612 +0.2679612 0.1846606 0.2679612 +0.3158431 0.1846606 0.2679612 +0.3689944 0.1846606 0.2679612 +0.4282948 0.1846606 0.2679612 +0.494694 0.1846606 0.2679612 +0.5692344 0.1846606 0.2679612 +0.6530715 0.1846606 0.2679612 +0.7474945 0.1846606 0.2679612 +0.8539475 0.1846606 0.2679612 +0.974052 0.1846606 0.2679612 +1.113885 0.1846606 0.2679612 +1.27456 0.1846606 0.2679612 +1.458117 0.1846606 0.2679612 +1.667858 0.1846606 0.2679612 +1.907556 0.1846606 0.2679612 +2.181521 0.1846606 0.2679612 +2.494678 0.1846606 0.2679612 +2.852659 0.1846606 0.2679612 +3.261896 0.1846606 0.2679612 +3.729748 0.1846606 0.2679612 +4.264621 0.1846606 0.2679612 +4.876131 0.1846606 0.2679612 +5.575266 0.1846606 0.2679612 +6.374593 0.1846606 0.2679612 +0 0.2245119 0.2679612 +0 0.2245119 0.2679612 +0 0.2245119 0.2679612 +0.002268731 0.2245119 0.2679612 +0.07076883 0.2245119 0.2679612 +0.1119241 0.2245119 0.2679612 +0.1475052 0.2245119 0.2679612 +0.1846606 0.2245119 0.2679612 +0.2245119 0.2245119 0.2679612 +0.2679612 0.2245119 0.2679612 +0.3158431 0.2245119 0.2679612 +0.3689944 0.2245119 0.2679612 +0.4282948 0.2245119 0.2679612 +0.494694 0.2245119 0.2679612 +0.5692344 0.2245119 0.2679612 +0.6530715 0.2245119 0.2679612 +0.7474945 0.2245119 0.2679612 +0.8539475 0.2245119 0.2679612 +0.974052 0.2245119 0.2679612 +1.113885 0.2245119 0.2679612 +1.27456 0.2245119 0.2679612 +1.458117 0.2245119 0.2679612 +1.667858 0.2245119 0.2679612 +1.907556 0.2245119 0.2679612 +2.181521 0.2245119 0.2679612 +2.494678 0.2245119 0.2679612 +2.852659 0.2245119 0.2679612 +3.261896 0.2245119 0.2679612 +3.729748 0.2245119 0.2679612 +4.264621 0.2245119 0.2679612 +4.876131 0.2245119 0.2679612 +5.575266 0.2245119 0.2679612 +6.374593 0.2245119 0.2679612 +0 0.2679612 0.2679612 +0 0.2679612 0.2679612 +0 0.2679612 0.2679612 +0.002268731 0.2679612 0.2679612 +0.07076883 0.2679612 0.2679612 +0.1119241 0.2679612 0.2679612 +0.1475052 0.2679612 0.2679612 +0.1846606 0.2679612 0.2679612 +0.2245119 0.2679612 0.2679612 +0.2679612 0.2679612 0.2679612 +0.3158431 0.2679612 0.2679612 +0.3689944 0.2679612 0.2679612 +0.4282948 0.2679612 0.2679612 +0.494694 0.2679612 0.2679612 +0.5692344 0.2679612 0.2679612 +0.6530715 0.2679612 0.2679612 +0.7474945 0.2679612 0.2679612 +0.8539475 0.2679612 0.2679612 +0.974052 0.2679612 0.2679612 +1.113885 0.2679612 0.2679612 +1.27456 0.2679612 0.2679612 +1.458117 0.2679612 0.2679612 +1.667858 0.2679612 0.2679612 +1.907556 0.2679612 0.2679612 +2.181521 0.2679612 0.2679612 +2.494678 0.2679612 0.2679612 +2.852659 0.2679612 0.2679612 +3.261896 0.2679612 0.2679612 +3.729748 0.2679612 0.2679612 +4.264621 0.2679612 0.2679612 +4.876131 0.2679612 0.2679612 +5.575266 0.2679612 0.2679612 +6.374593 0.2679612 0.2679612 +0 0.3158431 0.2679612 +0 0.3158431 0.2679612 +0 0.3158431 0.2679612 +0.002268731 0.3158431 0.2679612 +0.07076883 0.3158431 0.2679612 +0.1119241 0.3158431 0.2679612 +0.1475052 0.3158431 0.2679612 +0.1846606 0.3158431 0.2679612 +0.2245119 0.3158431 0.2679612 +0.2679612 0.3158431 0.2679612 +0.3158431 0.3158431 0.2679612 +0.3689944 0.3158431 0.2679612 +0.4282948 0.3158431 0.2679612 +0.494694 0.3158431 0.2679612 +0.5692344 0.3158431 0.2679612 +0.6530715 0.3158431 0.2679612 +0.7474945 0.3158431 0.2679612 +0.8539475 0.3158431 0.2679612 +0.974052 0.3158431 0.2679612 +1.113885 0.3158431 0.2679612 +1.27456 0.3158431 0.2679612 +1.458117 0.3158431 0.2679612 +1.667858 0.3158431 0.2679612 +1.907556 0.3158431 0.2679612 +2.181521 0.3158431 0.2679612 +2.494678 0.3158431 0.2679612 +2.852659 0.3158431 0.2679612 +3.261896 0.3158431 0.2679612 +3.729748 0.3158431 0.2679612 +4.264621 0.3158431 0.2679612 +4.876131 0.3158431 0.2679612 +5.575266 0.3158431 0.2679612 +6.374593 0.3158431 0.2679612 +0 0.3689944 0.2679612 +0 0.3689944 0.2679612 +0 0.3689944 0.2679612 +0.002268731 0.3689944 0.2679612 +0.07076883 0.3689944 0.2679612 +0.1119241 0.3689944 0.2679612 +0.1475052 0.3689944 0.2679612 +0.1846606 0.3689944 0.2679612 +0.2245119 0.3689944 0.2679612 +0.2679612 0.3689944 0.2679612 +0.3158431 0.3689944 0.2679612 +0.3689944 0.3689944 0.2679612 +0.4282948 0.3689944 0.2679612 +0.494694 0.3689944 0.2679612 +0.5692344 0.3689944 0.2679612 +0.6530715 0.3689944 0.2679612 +0.7474945 0.3689944 0.2679612 +0.8539475 0.3689944 0.2679612 +0.974052 0.3689944 0.2679612 +1.113885 0.3689944 0.2679612 +1.27456 0.3689944 0.2679612 +1.458117 0.3689944 0.2679612 +1.667858 0.3689944 0.2679612 +1.907556 0.3689944 0.2679612 +2.181521 0.3689944 0.2679612 +2.494678 0.3689944 0.2679612 +2.852659 0.3689944 0.2679612 +3.261896 0.3689944 0.2679612 +3.729748 0.3689944 0.2679612 +4.264621 0.3689944 0.2679612 +4.876131 0.3689944 0.2679612 +5.575266 0.3689944 0.2679612 +6.374593 0.3689944 0.2679612 +0 0.4282948 0.2679612 +0 0.4282948 0.2679612 +0 0.4282948 0.2679612 +0.002268731 0.4282948 0.2679612 +0.07076883 0.4282948 0.2679612 +0.1119241 0.4282948 0.2679612 +0.1475052 0.4282948 0.2679612 +0.1846606 0.4282948 0.2679612 +0.2245119 0.4282948 0.2679612 +0.2679612 0.4282948 0.2679612 +0.3158431 0.4282948 0.2679612 +0.3689944 0.4282948 0.2679612 +0.4282948 0.4282948 0.2679612 +0.494694 0.4282948 0.2679612 +0.5692344 0.4282948 0.2679612 +0.6530715 0.4282948 0.2679612 +0.7474945 0.4282948 0.2679612 +0.8539475 0.4282948 0.2679612 +0.974052 0.4282948 0.2679612 +1.113885 0.4282948 0.2679612 +1.27456 0.4282948 0.2679612 +1.458117 0.4282948 0.2679612 +1.667858 0.4282948 0.2679612 +1.907556 0.4282948 0.2679612 +2.181521 0.4282948 0.2679612 +2.494678 0.4282948 0.2679612 +2.852659 0.4282948 0.2679612 +3.261896 0.4282948 0.2679612 +3.729748 0.4282948 0.2679612 +4.264621 0.4282948 0.2679612 +4.876131 0.4282948 0.2679612 +5.575266 0.4282948 0.2679612 +6.374593 0.4282948 0.2679612 +0 0.494694 0.2679612 +0 0.494694 0.2679612 +0 0.494694 0.2679612 +0.002268731 0.494694 0.2679612 +0.07076883 0.494694 0.2679612 +0.1119241 0.494694 0.2679612 +0.1475052 0.494694 0.2679612 +0.1846606 0.494694 0.2679612 +0.2245119 0.494694 0.2679612 +0.2679612 0.494694 0.2679612 +0.3158431 0.494694 0.2679612 +0.3689944 0.494694 0.2679612 +0.4282948 0.494694 0.2679612 +0.494694 0.494694 0.2679612 +0.5692344 0.494694 0.2679612 +0.6530715 0.494694 0.2679612 +0.7474945 0.494694 0.2679612 +0.8539475 0.494694 0.2679612 +0.974052 0.494694 0.2679612 +1.113885 0.494694 0.2679612 +1.27456 0.494694 0.2679612 +1.458117 0.494694 0.2679612 +1.667858 0.494694 0.2679612 +1.907556 0.494694 0.2679612 +2.181521 0.494694 0.2679612 +2.494678 0.494694 0.2679612 +2.852659 0.494694 0.2679612 +3.261896 0.494694 0.2679612 +3.729748 0.494694 0.2679612 +4.264621 0.494694 0.2679612 +4.876131 0.494694 0.2679612 +5.575266 0.494694 0.2679612 +6.374593 0.494694 0.2679612 +0 0.5692344 0.2679612 +0 0.5692344 0.2679612 +0 0.5692344 0.2679612 +0.002268731 0.5692344 0.2679612 +0.07076883 0.5692344 0.2679612 +0.1119241 0.5692344 0.2679612 +0.1475052 0.5692344 0.2679612 +0.1846606 0.5692344 0.2679612 +0.2245119 0.5692344 0.2679612 +0.2679612 0.5692344 0.2679612 +0.3158431 0.5692344 0.2679612 +0.3689944 0.5692344 0.2679612 +0.4282948 0.5692344 0.2679612 +0.494694 0.5692344 0.2679612 +0.5692344 0.5692344 0.2679612 +0.6530715 0.5692344 0.2679612 +0.7474945 0.5692344 0.2679612 +0.8539475 0.5692344 0.2679612 +0.974052 0.5692344 0.2679612 +1.113885 0.5692344 0.2679612 +1.27456 0.5692344 0.2679612 +1.458117 0.5692344 0.2679612 +1.667858 0.5692344 0.2679612 +1.907556 0.5692344 0.2679612 +2.181521 0.5692344 0.2679612 +2.494678 0.5692344 0.2679612 +2.852659 0.5692344 0.2679612 +3.261896 0.5692344 0.2679612 +3.729748 0.5692344 0.2679612 +4.264621 0.5692344 0.2679612 +4.876131 0.5692344 0.2679612 +5.575266 0.5692344 0.2679612 +6.374593 0.5692344 0.2679612 +0 0.6530715 0.2679612 +0 0.6530715 0.2679612 +0 0.6530715 0.2679612 +0.002268731 0.6530715 0.2679612 +0.07076883 0.6530715 0.2679612 +0.1119241 0.6530715 0.2679612 +0.1475052 0.6530715 0.2679612 +0.1846606 0.6530715 0.2679612 +0.2245119 0.6530715 0.2679612 +0.2679612 0.6530715 0.2679612 +0.3158431 0.6530715 0.2679612 +0.3689944 0.6530715 0.2679612 +0.4282948 0.6530715 0.2679612 +0.494694 0.6530715 0.2679612 +0.5692344 0.6530715 0.2679612 +0.6530715 0.6530715 0.2679612 +0.7474945 0.6530715 0.2679612 +0.8539475 0.6530715 0.2679612 +0.974052 0.6530715 0.2679612 +1.113885 0.6530715 0.2679612 +1.27456 0.6530715 0.2679612 +1.458117 0.6530715 0.2679612 +1.667858 0.6530715 0.2679612 +1.907556 0.6530715 0.2679612 +2.181521 0.6530715 0.2679612 +2.494678 0.6530715 0.2679612 +2.852659 0.6530715 0.2679612 +3.261896 0.6530715 0.2679612 +3.729748 0.6530715 0.2679612 +4.264621 0.6530715 0.2679612 +4.876131 0.6530715 0.2679612 +5.575266 0.6530715 0.2679612 +6.374593 0.6530715 0.2679612 +0 0.7474945 0.2679612 +0 0.7474945 0.2679612 +0 0.7474945 0.2679612 +0.002268731 0.7474945 0.2679612 +0.07076883 0.7474945 0.2679612 +0.1119241 0.7474945 0.2679612 +0.1475052 0.7474945 0.2679612 +0.1846606 0.7474945 0.2679612 +0.2245119 0.7474945 0.2679612 +0.2679612 0.7474945 0.2679612 +0.3158431 0.7474945 0.2679612 +0.3689944 0.7474945 0.2679612 +0.4282948 0.7474945 0.2679612 +0.494694 0.7474945 0.2679612 +0.5692344 0.7474945 0.2679612 +0.6530715 0.7474945 0.2679612 +0.7474945 0.7474945 0.2679612 +0.8539475 0.7474945 0.2679612 +0.974052 0.7474945 0.2679612 +1.113885 0.7474945 0.2679612 +1.27456 0.7474945 0.2679612 +1.458117 0.7474945 0.2679612 +1.667858 0.7474945 0.2679612 +1.907556 0.7474945 0.2679612 +2.181521 0.7474945 0.2679612 +2.494678 0.7474945 0.2679612 +2.852659 0.7474945 0.2679612 +3.261896 0.7474945 0.2679612 +3.729748 0.7474945 0.2679612 +4.264621 0.7474945 0.2679612 +4.876131 0.7474945 0.2679612 +5.575266 0.7474945 0.2679612 +6.374593 0.7474945 0.2679612 +0 0.8539475 0.2679612 +0 0.8539475 0.2679612 +0 0.8539475 0.2679612 +0.002268731 0.8539475 0.2679612 +0.07076883 0.8539475 0.2679612 +0.1119241 0.8539475 0.2679612 +0.1475052 0.8539475 0.2679612 +0.1846606 0.8539475 0.2679612 +0.2245119 0.8539475 0.2679612 +0.2679612 0.8539475 0.2679612 +0.3158431 0.8539475 0.2679612 +0.3689944 0.8539475 0.2679612 +0.4282948 0.8539475 0.2679612 +0.494694 0.8539475 0.2679612 +0.5692344 0.8539475 0.2679612 +0.6530715 0.8539475 0.2679612 +0.7474945 0.8539475 0.2679612 +0.8539475 0.8539475 0.2679612 +0.974052 0.8539475 0.2679612 +1.113885 0.8539475 0.2679612 +1.27456 0.8539475 0.2679612 +1.458117 0.8539475 0.2679612 +1.667858 0.8539475 0.2679612 +1.907556 0.8539475 0.2679612 +2.181521 0.8539475 0.2679612 +2.494678 0.8539475 0.2679612 +2.852659 0.8539475 0.2679612 +3.261896 0.8539475 0.2679612 +3.729748 0.8539475 0.2679612 +4.264621 0.8539475 0.2679612 +4.876131 0.8539475 0.2679612 +5.575266 0.8539475 0.2679612 +6.374593 0.8539475 0.2679612 +0 0.974052 0.2679612 +0 0.974052 0.2679612 +0 0.974052 0.2679612 +0.002268731 0.974052 0.2679612 +0.07076883 0.974052 0.2679612 +0.1119241 0.974052 0.2679612 +0.1475052 0.974052 0.2679612 +0.1846606 0.974052 0.2679612 +0.2245119 0.974052 0.2679612 +0.2679612 0.974052 0.2679612 +0.3158431 0.974052 0.2679612 +0.3689944 0.974052 0.2679612 +0.4282948 0.974052 0.2679612 +0.494694 0.974052 0.2679612 +0.5692344 0.974052 0.2679612 +0.6530715 0.974052 0.2679612 +0.7474945 0.974052 0.2679612 +0.8539475 0.974052 0.2679612 +0.974052 0.974052 0.2679612 +1.113885 0.974052 0.2679612 +1.27456 0.974052 0.2679612 +1.458117 0.974052 0.2679612 +1.667858 0.974052 0.2679612 +1.907556 0.974052 0.2679612 +2.181521 0.974052 0.2679612 +2.494678 0.974052 0.2679612 +2.852659 0.974052 0.2679612 +3.261896 0.974052 0.2679612 +3.729748 0.974052 0.2679612 +4.264621 0.974052 0.2679612 +4.876131 0.974052 0.2679612 +5.575266 0.974052 0.2679612 +6.374593 0.974052 0.2679612 +0 1.113885 0.2679612 +0 1.113885 0.2679612 +0 1.113885 0.2679612 +0.002268731 1.113885 0.2679612 +0.07076883 1.113885 0.2679612 +0.1119241 1.113885 0.2679612 +0.1475052 1.113885 0.2679612 +0.1846606 1.113885 0.2679612 +0.2245119 1.113885 0.2679612 +0.2679612 1.113885 0.2679612 +0.3158431 1.113885 0.2679612 +0.3689944 1.113885 0.2679612 +0.4282948 1.113885 0.2679612 +0.494694 1.113885 0.2679612 +0.5692344 1.113885 0.2679612 +0.6530715 1.113885 0.2679612 +0.7474945 1.113885 0.2679612 +0.8539475 1.113885 0.2679612 +0.974052 1.113885 0.2679612 +1.113885 1.113885 0.2679612 +1.27456 1.113885 0.2679612 +1.458117 1.113885 0.2679612 +1.667858 1.113885 0.2679612 +1.907556 1.113885 0.2679612 +2.181521 1.113885 0.2679612 +2.494678 1.113885 0.2679612 +2.852659 1.113885 0.2679612 +3.261896 1.113885 0.2679612 +3.729748 1.113885 0.2679612 +4.264621 1.113885 0.2679612 +4.876131 1.113885 0.2679612 +5.575266 1.113885 0.2679612 +6.374593 1.113885 0.2679612 +0 1.27456 0.2679612 +0 1.27456 0.2679612 +0 1.27456 0.2679612 +0.002268731 1.27456 0.2679612 +0.07076883 1.27456 0.2679612 +0.1119241 1.27456 0.2679612 +0.1475052 1.27456 0.2679612 +0.1846606 1.27456 0.2679612 +0.2245119 1.27456 0.2679612 +0.2679612 1.27456 0.2679612 +0.3158431 1.27456 0.2679612 +0.3689944 1.27456 0.2679612 +0.4282948 1.27456 0.2679612 +0.494694 1.27456 0.2679612 +0.5692344 1.27456 0.2679612 +0.6530715 1.27456 0.2679612 +0.7474945 1.27456 0.2679612 +0.8539475 1.27456 0.2679612 +0.974052 1.27456 0.2679612 +1.113885 1.27456 0.2679612 +1.27456 1.27456 0.2679612 +1.458117 1.27456 0.2679612 +1.667858 1.27456 0.2679612 +1.907556 1.27456 0.2679612 +2.181521 1.27456 0.2679612 +2.494678 1.27456 0.2679612 +2.852659 1.27456 0.2679612 +3.261896 1.27456 0.2679612 +3.729748 1.27456 0.2679612 +4.264621 1.27456 0.2679612 +4.876131 1.27456 0.2679612 +5.575266 1.27456 0.2679612 +6.374593 1.27456 0.2679612 +0 1.458117 0.2679612 +0 1.458117 0.2679612 +0 1.458117 0.2679612 +0.002268731 1.458117 0.2679612 +0.07076883 1.458117 0.2679612 +0.1119241 1.458117 0.2679612 +0.1475052 1.458117 0.2679612 +0.1846606 1.458117 0.2679612 +0.2245119 1.458117 0.2679612 +0.2679612 1.458117 0.2679612 +0.3158431 1.458117 0.2679612 +0.3689944 1.458117 0.2679612 +0.4282948 1.458117 0.2679612 +0.494694 1.458117 0.2679612 +0.5692344 1.458117 0.2679612 +0.6530715 1.458117 0.2679612 +0.7474945 1.458117 0.2679612 +0.8539475 1.458117 0.2679612 +0.974052 1.458117 0.2679612 +1.113885 1.458117 0.2679612 +1.27456 1.458117 0.2679612 +1.458117 1.458117 0.2679612 +1.667858 1.458117 0.2679612 +1.907556 1.458117 0.2679612 +2.181521 1.458117 0.2679612 +2.494678 1.458117 0.2679612 +2.852659 1.458117 0.2679612 +3.261896 1.458117 0.2679612 +3.729748 1.458117 0.2679612 +4.264621 1.458117 0.2679612 +4.876131 1.458117 0.2679612 +5.575266 1.458117 0.2679612 +6.374593 1.458117 0.2679612 +0 1.667858 0.2679612 +0 1.667858 0.2679612 +0 1.667858 0.2679612 +0.002268731 1.667858 0.2679612 +0.07076883 1.667858 0.2679612 +0.1119241 1.667858 0.2679612 +0.1475052 1.667858 0.2679612 +0.1846606 1.667858 0.2679612 +0.2245119 1.667858 0.2679612 +0.2679612 1.667858 0.2679612 +0.3158431 1.667858 0.2679612 +0.3689944 1.667858 0.2679612 +0.4282948 1.667858 0.2679612 +0.494694 1.667858 0.2679612 +0.5692344 1.667858 0.2679612 +0.6530715 1.667858 0.2679612 +0.7474945 1.667858 0.2679612 +0.8539475 1.667858 0.2679612 +0.974052 1.667858 0.2679612 +1.113885 1.667858 0.2679612 +1.27456 1.667858 0.2679612 +1.458117 1.667858 0.2679612 +1.667858 1.667858 0.2679612 +1.907556 1.667858 0.2679612 +2.181521 1.667858 0.2679612 +2.494678 1.667858 0.2679612 +2.852659 1.667858 0.2679612 +3.261896 1.667858 0.2679612 +3.729748 1.667858 0.2679612 +4.264621 1.667858 0.2679612 +4.876131 1.667858 0.2679612 +5.575266 1.667858 0.2679612 +6.374593 1.667858 0.2679612 +0 1.907556 0.2679612 +0 1.907556 0.2679612 +0 1.907556 0.2679612 +0.002268731 1.907556 0.2679612 +0.07076883 1.907556 0.2679612 +0.1119241 1.907556 0.2679612 +0.1475052 1.907556 0.2679612 +0.1846606 1.907556 0.2679612 +0.2245119 1.907556 0.2679612 +0.2679612 1.907556 0.2679612 +0.3158431 1.907556 0.2679612 +0.3689944 1.907556 0.2679612 +0.4282948 1.907556 0.2679612 +0.494694 1.907556 0.2679612 +0.5692344 1.907556 0.2679612 +0.6530715 1.907556 0.2679612 +0.7474945 1.907556 0.2679612 +0.8539475 1.907556 0.2679612 +0.974052 1.907556 0.2679612 +1.113885 1.907556 0.2679612 +1.27456 1.907556 0.2679612 +1.458117 1.907556 0.2679612 +1.667858 1.907556 0.2679612 +1.907556 1.907556 0.2679612 +2.181521 1.907556 0.2679612 +2.494678 1.907556 0.2679612 +2.852659 1.907556 0.2679612 +3.261896 1.907556 0.2679612 +3.729748 1.907556 0.2679612 +4.264621 1.907556 0.2679612 +4.876131 1.907556 0.2679612 +5.575266 1.907556 0.2679612 +6.374593 1.907556 0.2679612 +0 2.181521 0.2679612 +0 2.181521 0.2679612 +0 2.181521 0.2679612 +0.002268731 2.181521 0.2679612 +0.07076883 2.181521 0.2679612 +0.1119241 2.181521 0.2679612 +0.1475052 2.181521 0.2679612 +0.1846606 2.181521 0.2679612 +0.2245119 2.181521 0.2679612 +0.2679612 2.181521 0.2679612 +0.3158431 2.181521 0.2679612 +0.3689944 2.181521 0.2679612 +0.4282948 2.181521 0.2679612 +0.494694 2.181521 0.2679612 +0.5692344 2.181521 0.2679612 +0.6530715 2.181521 0.2679612 +0.7474945 2.181521 0.2679612 +0.8539475 2.181521 0.2679612 +0.974052 2.181521 0.2679612 +1.113885 2.181521 0.2679612 +1.27456 2.181521 0.2679612 +1.458117 2.181521 0.2679612 +1.667858 2.181521 0.2679612 +1.907556 2.181521 0.2679612 +2.181521 2.181521 0.2679612 +2.494678 2.181521 0.2679612 +2.852659 2.181521 0.2679612 +3.261896 2.181521 0.2679612 +3.729748 2.181521 0.2679612 +4.264621 2.181521 0.2679612 +4.876131 2.181521 0.2679612 +5.575266 2.181521 0.2679612 +6.374593 2.181521 0.2679612 +0 2.494678 0.2679612 +0 2.494678 0.2679612 +0 2.494678 0.2679612 +0.002268731 2.494678 0.2679612 +0.07076883 2.494678 0.2679612 +0.1119241 2.494678 0.2679612 +0.1475052 2.494678 0.2679612 +0.1846606 2.494678 0.2679612 +0.2245119 2.494678 0.2679612 +0.2679612 2.494678 0.2679612 +0.3158431 2.494678 0.2679612 +0.3689944 2.494678 0.2679612 +0.4282948 2.494678 0.2679612 +0.494694 2.494678 0.2679612 +0.5692344 2.494678 0.2679612 +0.6530715 2.494678 0.2679612 +0.7474945 2.494678 0.2679612 +0.8539475 2.494678 0.2679612 +0.974052 2.494678 0.2679612 +1.113885 2.494678 0.2679612 +1.27456 2.494678 0.2679612 +1.458117 2.494678 0.2679612 +1.667858 2.494678 0.2679612 +1.907556 2.494678 0.2679612 +2.181521 2.494678 0.2679612 +2.494678 2.494678 0.2679612 +2.852659 2.494678 0.2679612 +3.261896 2.494678 0.2679612 +3.729748 2.494678 0.2679612 +4.264621 2.494678 0.2679612 +4.876131 2.494678 0.2679612 +5.575266 2.494678 0.2679612 +6.374593 2.494678 0.2679612 +0 2.852659 0.2679612 +0 2.852659 0.2679612 +0 2.852659 0.2679612 +0.002268731 2.852659 0.2679612 +0.07076883 2.852659 0.2679612 +0.1119241 2.852659 0.2679612 +0.1475052 2.852659 0.2679612 +0.1846606 2.852659 0.2679612 +0.2245119 2.852659 0.2679612 +0.2679612 2.852659 0.2679612 +0.3158431 2.852659 0.2679612 +0.3689944 2.852659 0.2679612 +0.4282948 2.852659 0.2679612 +0.494694 2.852659 0.2679612 +0.5692344 2.852659 0.2679612 +0.6530715 2.852659 0.2679612 +0.7474945 2.852659 0.2679612 +0.8539475 2.852659 0.2679612 +0.974052 2.852659 0.2679612 +1.113885 2.852659 0.2679612 +1.27456 2.852659 0.2679612 +1.458117 2.852659 0.2679612 +1.667858 2.852659 0.2679612 +1.907556 2.852659 0.2679612 +2.181521 2.852659 0.2679612 +2.494678 2.852659 0.2679612 +2.852659 2.852659 0.2679612 +3.261896 2.852659 0.2679612 +3.729748 2.852659 0.2679612 +4.264621 2.852659 0.2679612 +4.876131 2.852659 0.2679612 +5.575266 2.852659 0.2679612 +6.374593 2.852659 0.2679612 +0 3.261896 0.2679612 +0 3.261896 0.2679612 +0 3.261896 0.2679612 +0.002268731 3.261896 0.2679612 +0.07076883 3.261896 0.2679612 +0.1119241 3.261896 0.2679612 +0.1475052 3.261896 0.2679612 +0.1846606 3.261896 0.2679612 +0.2245119 3.261896 0.2679612 +0.2679612 3.261896 0.2679612 +0.3158431 3.261896 0.2679612 +0.3689944 3.261896 0.2679612 +0.4282948 3.261896 0.2679612 +0.494694 3.261896 0.2679612 +0.5692344 3.261896 0.2679612 +0.6530715 3.261896 0.2679612 +0.7474945 3.261896 0.2679612 +0.8539475 3.261896 0.2679612 +0.974052 3.261896 0.2679612 +1.113885 3.261896 0.2679612 +1.27456 3.261896 0.2679612 +1.458117 3.261896 0.2679612 +1.667858 3.261896 0.2679612 +1.907556 3.261896 0.2679612 +2.181521 3.261896 0.2679612 +2.494678 3.261896 0.2679612 +2.852659 3.261896 0.2679612 +3.261896 3.261896 0.2679612 +3.729748 3.261896 0.2679612 +4.264621 3.261896 0.2679612 +4.876131 3.261896 0.2679612 +5.575266 3.261896 0.2679612 +6.374593 3.261896 0.2679612 +0 3.729748 0.2679612 +0 3.729748 0.2679612 +0 3.729748 0.2679612 +0.002268731 3.729748 0.2679612 +0.07076883 3.729748 0.2679612 +0.1119241 3.729748 0.2679612 +0.1475052 3.729748 0.2679612 +0.1846606 3.729748 0.2679612 +0.2245119 3.729748 0.2679612 +0.2679612 3.729748 0.2679612 +0.3158431 3.729748 0.2679612 +0.3689944 3.729748 0.2679612 +0.4282948 3.729748 0.2679612 +0.494694 3.729748 0.2679612 +0.5692344 3.729748 0.2679612 +0.6530715 3.729748 0.2679612 +0.7474945 3.729748 0.2679612 +0.8539475 3.729748 0.2679612 +0.974052 3.729748 0.2679612 +1.113885 3.729748 0.2679612 +1.27456 3.729748 0.2679612 +1.458117 3.729748 0.2679612 +1.667858 3.729748 0.2679612 +1.907556 3.729748 0.2679612 +2.181521 3.729748 0.2679612 +2.494678 3.729748 0.2679612 +2.852659 3.729748 0.2679612 +3.261896 3.729748 0.2679612 +3.729748 3.729748 0.2679612 +4.264621 3.729748 0.2679612 +4.876131 3.729748 0.2679612 +5.575266 3.729748 0.2679612 +6.374593 3.729748 0.2679612 +0 4.264621 0.2679612 +0 4.264621 0.2679612 +0 4.264621 0.2679612 +0.002268731 4.264621 0.2679612 +0.07076883 4.264621 0.2679612 +0.1119241 4.264621 0.2679612 +0.1475052 4.264621 0.2679612 +0.1846606 4.264621 0.2679612 +0.2245119 4.264621 0.2679612 +0.2679612 4.264621 0.2679612 +0.3158431 4.264621 0.2679612 +0.3689944 4.264621 0.2679612 +0.4282948 4.264621 0.2679612 +0.494694 4.264621 0.2679612 +0.5692344 4.264621 0.2679612 +0.6530715 4.264621 0.2679612 +0.7474945 4.264621 0.2679612 +0.8539475 4.264621 0.2679612 +0.974052 4.264621 0.2679612 +1.113885 4.264621 0.2679612 +1.27456 4.264621 0.2679612 +1.458117 4.264621 0.2679612 +1.667858 4.264621 0.2679612 +1.907556 4.264621 0.2679612 +2.181521 4.264621 0.2679612 +2.494678 4.264621 0.2679612 +2.852659 4.264621 0.2679612 +3.261896 4.264621 0.2679612 +3.729748 4.264621 0.2679612 +4.264621 4.264621 0.2679612 +4.876131 4.264621 0.2679612 +5.575266 4.264621 0.2679612 +6.374593 4.264621 0.2679612 +0 4.876131 0.2679612 +0 4.876131 0.2679612 +0 4.876131 0.2679612 +0.002268731 4.876131 0.2679612 +0.07076883 4.876131 0.2679612 +0.1119241 4.876131 0.2679612 +0.1475052 4.876131 0.2679612 +0.1846606 4.876131 0.2679612 +0.2245119 4.876131 0.2679612 +0.2679612 4.876131 0.2679612 +0.3158431 4.876131 0.2679612 +0.3689944 4.876131 0.2679612 +0.4282948 4.876131 0.2679612 +0.494694 4.876131 0.2679612 +0.5692344 4.876131 0.2679612 +0.6530715 4.876131 0.2679612 +0.7474945 4.876131 0.2679612 +0.8539475 4.876131 0.2679612 +0.974052 4.876131 0.2679612 +1.113885 4.876131 0.2679612 +1.27456 4.876131 0.2679612 +1.458117 4.876131 0.2679612 +1.667858 4.876131 0.2679612 +1.907556 4.876131 0.2679612 +2.181521 4.876131 0.2679612 +2.494678 4.876131 0.2679612 +2.852659 4.876131 0.2679612 +3.261896 4.876131 0.2679612 +3.729748 4.876131 0.2679612 +4.264621 4.876131 0.2679612 +4.876131 4.876131 0.2679612 +5.575266 4.876131 0.2679612 +6.374593 4.876131 0.2679612 +0 5.575266 0.2679612 +0 5.575266 0.2679612 +0 5.575266 0.2679612 +0.002268731 5.575266 0.2679612 +0.07076883 5.575266 0.2679612 +0.1119241 5.575266 0.2679612 +0.1475052 5.575266 0.2679612 +0.1846606 5.575266 0.2679612 +0.2245119 5.575266 0.2679612 +0.2679612 5.575266 0.2679612 +0.3158431 5.575266 0.2679612 +0.3689944 5.575266 0.2679612 +0.4282948 5.575266 0.2679612 +0.494694 5.575266 0.2679612 +0.5692344 5.575266 0.2679612 +0.6530715 5.575266 0.2679612 +0.7474945 5.575266 0.2679612 +0.8539475 5.575266 0.2679612 +0.974052 5.575266 0.2679612 +1.113885 5.575266 0.2679612 +1.27456 5.575266 0.2679612 +1.458117 5.575266 0.2679612 +1.667858 5.575266 0.2679612 +1.907556 5.575266 0.2679612 +2.181521 5.575266 0.2679612 +2.494678 5.575266 0.2679612 +2.852659 5.575266 0.2679612 +3.261896 5.575266 0.2679612 +3.729748 5.575266 0.2679612 +4.264621 5.575266 0.2679612 +4.876131 5.575266 0.2679612 +5.575266 5.575266 0.2679612 +6.374593 5.575266 0.2679612 +0 6.374593 0.2679612 +0 6.374593 0.2679612 +0 6.374593 0.2679612 +0.002268731 6.374593 0.2679612 +0.07076883 6.374593 0.2679612 +0.1119241 6.374593 0.2679612 +0.1475052 6.374593 0.2679612 +0.1846606 6.374593 0.2679612 +0.2245119 6.374593 0.2679612 +0.2679612 6.374593 0.2679612 +0.3158431 6.374593 0.2679612 +0.3689944 6.374593 0.2679612 +0.4282948 6.374593 0.2679612 +0.494694 6.374593 0.2679612 +0.5692344 6.374593 0.2679612 +0.6530715 6.374593 0.2679612 +0.7474945 6.374593 0.2679612 +0.8539475 6.374593 0.2679612 +0.974052 6.374593 0.2679612 +1.113885 6.374593 0.2679612 +1.27456 6.374593 0.2679612 +1.458117 6.374593 0.2679612 +1.667858 6.374593 0.2679612 +1.907556 6.374593 0.2679612 +2.181521 6.374593 0.2679612 +2.494678 6.374593 0.2679612 +2.852659 6.374593 0.2679612 +3.261896 6.374593 0.2679612 +3.729748 6.374593 0.2679612 +4.264621 6.374593 0.2679612 +4.876131 6.374593 0.2679612 +5.575266 6.374593 0.2679612 +6.374593 6.374593 0.2679612 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0.002268731 0.3158431 +0 0.002268731 0.3158431 +0 0.002268731 0.3158431 +0.002268731 0.002268731 0.3158431 +0.07076883 0.002268731 0.3158431 +0.1119241 0.002268731 0.3158431 +0.1475052 0.002268731 0.3158431 +0.1846606 0.002268731 0.3158431 +0.2245119 0.002268731 0.3158431 +0.2679612 0.002268731 0.3158431 +0.3158431 0.002268731 0.3158431 +0.3689944 0.002268731 0.3158431 +0.4282948 0.002268731 0.3158431 +0.494694 0.002268731 0.3158431 +0.5692344 0.002268731 0.3158431 +0.6530715 0.002268731 0.3158431 +0.7474945 0.002268731 0.3158431 +0.8539475 0.002268731 0.3158431 +0.974052 0.002268731 0.3158431 +1.113885 0.002268731 0.3158431 +1.27456 0.002268731 0.3158431 +1.458117 0.002268731 0.3158431 +1.667858 0.002268731 0.3158431 +1.907556 0.002268731 0.3158431 +2.181521 0.002268731 0.3158431 +2.494678 0.002268731 0.3158431 +2.852659 0.002268731 0.3158431 +3.261896 0.002268731 0.3158431 +3.729748 0.002268731 0.3158431 +4.264621 0.002268731 0.3158431 +4.876131 0.002268731 0.3158431 +5.575266 0.002268731 0.3158431 +6.374593 0.002268731 0.3158431 +0 0.07076883 0.3158431 +0 0.07076883 0.3158431 +0 0.07076883 0.3158431 +0.002268731 0.07076883 0.3158431 +0.07076883 0.07076883 0.3158431 +0.1119241 0.07076883 0.3158431 +0.1475052 0.07076883 0.3158431 +0.1846606 0.07076883 0.3158431 +0.2245119 0.07076883 0.3158431 +0.2679612 0.07076883 0.3158431 +0.3158431 0.07076883 0.3158431 +0.3689944 0.07076883 0.3158431 +0.4282948 0.07076883 0.3158431 +0.494694 0.07076883 0.3158431 +0.5692344 0.07076883 0.3158431 +0.6530715 0.07076883 0.3158431 +0.7474945 0.07076883 0.3158431 +0.8539475 0.07076883 0.3158431 +0.974052 0.07076883 0.3158431 +1.113885 0.07076883 0.3158431 +1.27456 0.07076883 0.3158431 +1.458117 0.07076883 0.3158431 +1.667858 0.07076883 0.3158431 +1.907556 0.07076883 0.3158431 +2.181521 0.07076883 0.3158431 +2.494678 0.07076883 0.3158431 +2.852659 0.07076883 0.3158431 +3.261896 0.07076883 0.3158431 +3.729748 0.07076883 0.3158431 +4.264621 0.07076883 0.3158431 +4.876131 0.07076883 0.3158431 +5.575266 0.07076883 0.3158431 +6.374593 0.07076883 0.3158431 +0 0.1119241 0.3158431 +0 0.1119241 0.3158431 +0 0.1119241 0.3158431 +0.002268731 0.1119241 0.3158431 +0.07076883 0.1119241 0.3158431 +0.1119241 0.1119241 0.3158431 +0.1475052 0.1119241 0.3158431 +0.1846606 0.1119241 0.3158431 +0.2245119 0.1119241 0.3158431 +0.2679612 0.1119241 0.3158431 +0.3158431 0.1119241 0.3158431 +0.3689944 0.1119241 0.3158431 +0.4282948 0.1119241 0.3158431 +0.494694 0.1119241 0.3158431 +0.5692344 0.1119241 0.3158431 +0.6530715 0.1119241 0.3158431 +0.7474945 0.1119241 0.3158431 +0.8539475 0.1119241 0.3158431 +0.974052 0.1119241 0.3158431 +1.113885 0.1119241 0.3158431 +1.27456 0.1119241 0.3158431 +1.458117 0.1119241 0.3158431 +1.667858 0.1119241 0.3158431 +1.907556 0.1119241 0.3158431 +2.181521 0.1119241 0.3158431 +2.494678 0.1119241 0.3158431 +2.852659 0.1119241 0.3158431 +3.261896 0.1119241 0.3158431 +3.729748 0.1119241 0.3158431 +4.264621 0.1119241 0.3158431 +4.876131 0.1119241 0.3158431 +5.575266 0.1119241 0.3158431 +6.374593 0.1119241 0.3158431 +0 0.1475052 0.3158431 +0 0.1475052 0.3158431 +0 0.1475052 0.3158431 +0.002268731 0.1475052 0.3158431 +0.07076883 0.1475052 0.3158431 +0.1119241 0.1475052 0.3158431 +0.1475052 0.1475052 0.3158431 +0.1846606 0.1475052 0.3158431 +0.2245119 0.1475052 0.3158431 +0.2679612 0.1475052 0.3158431 +0.3158431 0.1475052 0.3158431 +0.3689944 0.1475052 0.3158431 +0.4282948 0.1475052 0.3158431 +0.494694 0.1475052 0.3158431 +0.5692344 0.1475052 0.3158431 +0.6530715 0.1475052 0.3158431 +0.7474945 0.1475052 0.3158431 +0.8539475 0.1475052 0.3158431 +0.974052 0.1475052 0.3158431 +1.113885 0.1475052 0.3158431 +1.27456 0.1475052 0.3158431 +1.458117 0.1475052 0.3158431 +1.667858 0.1475052 0.3158431 +1.907556 0.1475052 0.3158431 +2.181521 0.1475052 0.3158431 +2.494678 0.1475052 0.3158431 +2.852659 0.1475052 0.3158431 +3.261896 0.1475052 0.3158431 +3.729748 0.1475052 0.3158431 +4.264621 0.1475052 0.3158431 +4.876131 0.1475052 0.3158431 +5.575266 0.1475052 0.3158431 +6.374593 0.1475052 0.3158431 +0 0.1846606 0.3158431 +0 0.1846606 0.3158431 +0 0.1846606 0.3158431 +0.002268731 0.1846606 0.3158431 +0.07076883 0.1846606 0.3158431 +0.1119241 0.1846606 0.3158431 +0.1475052 0.1846606 0.3158431 +0.1846606 0.1846606 0.3158431 +0.2245119 0.1846606 0.3158431 +0.2679612 0.1846606 0.3158431 +0.3158431 0.1846606 0.3158431 +0.3689944 0.1846606 0.3158431 +0.4282948 0.1846606 0.3158431 +0.494694 0.1846606 0.3158431 +0.5692344 0.1846606 0.3158431 +0.6530715 0.1846606 0.3158431 +0.7474945 0.1846606 0.3158431 +0.8539475 0.1846606 0.3158431 +0.974052 0.1846606 0.3158431 +1.113885 0.1846606 0.3158431 +1.27456 0.1846606 0.3158431 +1.458117 0.1846606 0.3158431 +1.667858 0.1846606 0.3158431 +1.907556 0.1846606 0.3158431 +2.181521 0.1846606 0.3158431 +2.494678 0.1846606 0.3158431 +2.852659 0.1846606 0.3158431 +3.261896 0.1846606 0.3158431 +3.729748 0.1846606 0.3158431 +4.264621 0.1846606 0.3158431 +4.876131 0.1846606 0.3158431 +5.575266 0.1846606 0.3158431 +6.374593 0.1846606 0.3158431 +0 0.2245119 0.3158431 +0 0.2245119 0.3158431 +0 0.2245119 0.3158431 +0.002268731 0.2245119 0.3158431 +0.07076883 0.2245119 0.3158431 +0.1119241 0.2245119 0.3158431 +0.1475052 0.2245119 0.3158431 +0.1846606 0.2245119 0.3158431 +0.2245119 0.2245119 0.3158431 +0.2679612 0.2245119 0.3158431 +0.3158431 0.2245119 0.3158431 +0.3689944 0.2245119 0.3158431 +0.4282948 0.2245119 0.3158431 +0.494694 0.2245119 0.3158431 +0.5692344 0.2245119 0.3158431 +0.6530715 0.2245119 0.3158431 +0.7474945 0.2245119 0.3158431 +0.8539475 0.2245119 0.3158431 +0.974052 0.2245119 0.3158431 +1.113885 0.2245119 0.3158431 +1.27456 0.2245119 0.3158431 +1.458117 0.2245119 0.3158431 +1.667858 0.2245119 0.3158431 +1.907556 0.2245119 0.3158431 +2.181521 0.2245119 0.3158431 +2.494678 0.2245119 0.3158431 +2.852659 0.2245119 0.3158431 +3.261896 0.2245119 0.3158431 +3.729748 0.2245119 0.3158431 +4.264621 0.2245119 0.3158431 +4.876131 0.2245119 0.3158431 +5.575266 0.2245119 0.3158431 +6.374593 0.2245119 0.3158431 +0 0.2679612 0.3158431 +0 0.2679612 0.3158431 +0 0.2679612 0.3158431 +0.002268731 0.2679612 0.3158431 +0.07076883 0.2679612 0.3158431 +0.1119241 0.2679612 0.3158431 +0.1475052 0.2679612 0.3158431 +0.1846606 0.2679612 0.3158431 +0.2245119 0.2679612 0.3158431 +0.2679612 0.2679612 0.3158431 +0.3158431 0.2679612 0.3158431 +0.3689944 0.2679612 0.3158431 +0.4282948 0.2679612 0.3158431 +0.494694 0.2679612 0.3158431 +0.5692344 0.2679612 0.3158431 +0.6530715 0.2679612 0.3158431 +0.7474945 0.2679612 0.3158431 +0.8539475 0.2679612 0.3158431 +0.974052 0.2679612 0.3158431 +1.113885 0.2679612 0.3158431 +1.27456 0.2679612 0.3158431 +1.458117 0.2679612 0.3158431 +1.667858 0.2679612 0.3158431 +1.907556 0.2679612 0.3158431 +2.181521 0.2679612 0.3158431 +2.494678 0.2679612 0.3158431 +2.852659 0.2679612 0.3158431 +3.261896 0.2679612 0.3158431 +3.729748 0.2679612 0.3158431 +4.264621 0.2679612 0.3158431 +4.876131 0.2679612 0.3158431 +5.575266 0.2679612 0.3158431 +6.374593 0.2679612 0.3158431 +0 0.3158431 0.3158431 +0 0.3158431 0.3158431 +0 0.3158431 0.3158431 +0.002268731 0.3158431 0.3158431 +0.07076883 0.3158431 0.3158431 +0.1119241 0.3158431 0.3158431 +0.1475052 0.3158431 0.3158431 +0.1846606 0.3158431 0.3158431 +0.2245119 0.3158431 0.3158431 +0.2679612 0.3158431 0.3158431 +0.3158431 0.3158431 0.3158431 +0.3689944 0.3158431 0.3158431 +0.4282948 0.3158431 0.3158431 +0.494694 0.3158431 0.3158431 +0.5692344 0.3158431 0.3158431 +0.6530715 0.3158431 0.3158431 +0.7474945 0.3158431 0.3158431 +0.8539475 0.3158431 0.3158431 +0.974052 0.3158431 0.3158431 +1.113885 0.3158431 0.3158431 +1.27456 0.3158431 0.3158431 +1.458117 0.3158431 0.3158431 +1.667858 0.3158431 0.3158431 +1.907556 0.3158431 0.3158431 +2.181521 0.3158431 0.3158431 +2.494678 0.3158431 0.3158431 +2.852659 0.3158431 0.3158431 +3.261896 0.3158431 0.3158431 +3.729748 0.3158431 0.3158431 +4.264621 0.3158431 0.3158431 +4.876131 0.3158431 0.3158431 +5.575266 0.3158431 0.3158431 +6.374593 0.3158431 0.3158431 +0 0.3689944 0.3158431 +0 0.3689944 0.3158431 +0 0.3689944 0.3158431 +0.002268731 0.3689944 0.3158431 +0.07076883 0.3689944 0.3158431 +0.1119241 0.3689944 0.3158431 +0.1475052 0.3689944 0.3158431 +0.1846606 0.3689944 0.3158431 +0.2245119 0.3689944 0.3158431 +0.2679612 0.3689944 0.3158431 +0.3158431 0.3689944 0.3158431 +0.3689944 0.3689944 0.3158431 +0.4282948 0.3689944 0.3158431 +0.494694 0.3689944 0.3158431 +0.5692344 0.3689944 0.3158431 +0.6530715 0.3689944 0.3158431 +0.7474945 0.3689944 0.3158431 +0.8539475 0.3689944 0.3158431 +0.974052 0.3689944 0.3158431 +1.113885 0.3689944 0.3158431 +1.27456 0.3689944 0.3158431 +1.458117 0.3689944 0.3158431 +1.667858 0.3689944 0.3158431 +1.907556 0.3689944 0.3158431 +2.181521 0.3689944 0.3158431 +2.494678 0.3689944 0.3158431 +2.852659 0.3689944 0.3158431 +3.261896 0.3689944 0.3158431 +3.729748 0.3689944 0.3158431 +4.264621 0.3689944 0.3158431 +4.876131 0.3689944 0.3158431 +5.575266 0.3689944 0.3158431 +6.374593 0.3689944 0.3158431 +0 0.4282948 0.3158431 +0 0.4282948 0.3158431 +0 0.4282948 0.3158431 +0.002268731 0.4282948 0.3158431 +0.07076883 0.4282948 0.3158431 +0.1119241 0.4282948 0.3158431 +0.1475052 0.4282948 0.3158431 +0.1846606 0.4282948 0.3158431 +0.2245119 0.4282948 0.3158431 +0.2679612 0.4282948 0.3158431 +0.3158431 0.4282948 0.3158431 +0.3689944 0.4282948 0.3158431 +0.4282948 0.4282948 0.3158431 +0.494694 0.4282948 0.3158431 +0.5692344 0.4282948 0.3158431 +0.6530715 0.4282948 0.3158431 +0.7474945 0.4282948 0.3158431 +0.8539475 0.4282948 0.3158431 +0.974052 0.4282948 0.3158431 +1.113885 0.4282948 0.3158431 +1.27456 0.4282948 0.3158431 +1.458117 0.4282948 0.3158431 +1.667858 0.4282948 0.3158431 +1.907556 0.4282948 0.3158431 +2.181521 0.4282948 0.3158431 +2.494678 0.4282948 0.3158431 +2.852659 0.4282948 0.3158431 +3.261896 0.4282948 0.3158431 +3.729748 0.4282948 0.3158431 +4.264621 0.4282948 0.3158431 +4.876131 0.4282948 0.3158431 +5.575266 0.4282948 0.3158431 +6.374593 0.4282948 0.3158431 +0 0.494694 0.3158431 +0 0.494694 0.3158431 +0 0.494694 0.3158431 +0.002268731 0.494694 0.3158431 +0.07076883 0.494694 0.3158431 +0.1119241 0.494694 0.3158431 +0.1475052 0.494694 0.3158431 +0.1846606 0.494694 0.3158431 +0.2245119 0.494694 0.3158431 +0.2679612 0.494694 0.3158431 +0.3158431 0.494694 0.3158431 +0.3689944 0.494694 0.3158431 +0.4282948 0.494694 0.3158431 +0.494694 0.494694 0.3158431 +0.5692344 0.494694 0.3158431 +0.6530715 0.494694 0.3158431 +0.7474945 0.494694 0.3158431 +0.8539475 0.494694 0.3158431 +0.974052 0.494694 0.3158431 +1.113885 0.494694 0.3158431 +1.27456 0.494694 0.3158431 +1.458117 0.494694 0.3158431 +1.667858 0.494694 0.3158431 +1.907556 0.494694 0.3158431 +2.181521 0.494694 0.3158431 +2.494678 0.494694 0.3158431 +2.852659 0.494694 0.3158431 +3.261896 0.494694 0.3158431 +3.729748 0.494694 0.3158431 +4.264621 0.494694 0.3158431 +4.876131 0.494694 0.3158431 +5.575266 0.494694 0.3158431 +6.374593 0.494694 0.3158431 +0 0.5692344 0.3158431 +0 0.5692344 0.3158431 +0 0.5692344 0.3158431 +0.002268731 0.5692344 0.3158431 +0.07076883 0.5692344 0.3158431 +0.1119241 0.5692344 0.3158431 +0.1475052 0.5692344 0.3158431 +0.1846606 0.5692344 0.3158431 +0.2245119 0.5692344 0.3158431 +0.2679612 0.5692344 0.3158431 +0.3158431 0.5692344 0.3158431 +0.3689944 0.5692344 0.3158431 +0.4282948 0.5692344 0.3158431 +0.494694 0.5692344 0.3158431 +0.5692344 0.5692344 0.3158431 +0.6530715 0.5692344 0.3158431 +0.7474945 0.5692344 0.3158431 +0.8539475 0.5692344 0.3158431 +0.974052 0.5692344 0.3158431 +1.113885 0.5692344 0.3158431 +1.27456 0.5692344 0.3158431 +1.458117 0.5692344 0.3158431 +1.667858 0.5692344 0.3158431 +1.907556 0.5692344 0.3158431 +2.181521 0.5692344 0.3158431 +2.494678 0.5692344 0.3158431 +2.852659 0.5692344 0.3158431 +3.261896 0.5692344 0.3158431 +3.729748 0.5692344 0.3158431 +4.264621 0.5692344 0.3158431 +4.876131 0.5692344 0.3158431 +5.575266 0.5692344 0.3158431 +6.374593 0.5692344 0.3158431 +0 0.6530715 0.3158431 +0 0.6530715 0.3158431 +0 0.6530715 0.3158431 +0.002268731 0.6530715 0.3158431 +0.07076883 0.6530715 0.3158431 +0.1119241 0.6530715 0.3158431 +0.1475052 0.6530715 0.3158431 +0.1846606 0.6530715 0.3158431 +0.2245119 0.6530715 0.3158431 +0.2679612 0.6530715 0.3158431 +0.3158431 0.6530715 0.3158431 +0.3689944 0.6530715 0.3158431 +0.4282948 0.6530715 0.3158431 +0.494694 0.6530715 0.3158431 +0.5692344 0.6530715 0.3158431 +0.6530715 0.6530715 0.3158431 +0.7474945 0.6530715 0.3158431 +0.8539475 0.6530715 0.3158431 +0.974052 0.6530715 0.3158431 +1.113885 0.6530715 0.3158431 +1.27456 0.6530715 0.3158431 +1.458117 0.6530715 0.3158431 +1.667858 0.6530715 0.3158431 +1.907556 0.6530715 0.3158431 +2.181521 0.6530715 0.3158431 +2.494678 0.6530715 0.3158431 +2.852659 0.6530715 0.3158431 +3.261896 0.6530715 0.3158431 +3.729748 0.6530715 0.3158431 +4.264621 0.6530715 0.3158431 +4.876131 0.6530715 0.3158431 +5.575266 0.6530715 0.3158431 +6.374593 0.6530715 0.3158431 +0 0.7474945 0.3158431 +0 0.7474945 0.3158431 +0 0.7474945 0.3158431 +0.002268731 0.7474945 0.3158431 +0.07076883 0.7474945 0.3158431 +0.1119241 0.7474945 0.3158431 +0.1475052 0.7474945 0.3158431 +0.1846606 0.7474945 0.3158431 +0.2245119 0.7474945 0.3158431 +0.2679612 0.7474945 0.3158431 +0.3158431 0.7474945 0.3158431 +0.3689944 0.7474945 0.3158431 +0.4282948 0.7474945 0.3158431 +0.494694 0.7474945 0.3158431 +0.5692344 0.7474945 0.3158431 +0.6530715 0.7474945 0.3158431 +0.7474945 0.7474945 0.3158431 +0.8539475 0.7474945 0.3158431 +0.974052 0.7474945 0.3158431 +1.113885 0.7474945 0.3158431 +1.27456 0.7474945 0.3158431 +1.458117 0.7474945 0.3158431 +1.667858 0.7474945 0.3158431 +1.907556 0.7474945 0.3158431 +2.181521 0.7474945 0.3158431 +2.494678 0.7474945 0.3158431 +2.852659 0.7474945 0.3158431 +3.261896 0.7474945 0.3158431 +3.729748 0.7474945 0.3158431 +4.264621 0.7474945 0.3158431 +4.876131 0.7474945 0.3158431 +5.575266 0.7474945 0.3158431 +6.374593 0.7474945 0.3158431 +0 0.8539475 0.3158431 +0 0.8539475 0.3158431 +0 0.8539475 0.3158431 +0.002268731 0.8539475 0.3158431 +0.07076883 0.8539475 0.3158431 +0.1119241 0.8539475 0.3158431 +0.1475052 0.8539475 0.3158431 +0.1846606 0.8539475 0.3158431 +0.2245119 0.8539475 0.3158431 +0.2679612 0.8539475 0.3158431 +0.3158431 0.8539475 0.3158431 +0.3689944 0.8539475 0.3158431 +0.4282948 0.8539475 0.3158431 +0.494694 0.8539475 0.3158431 +0.5692344 0.8539475 0.3158431 +0.6530715 0.8539475 0.3158431 +0.7474945 0.8539475 0.3158431 +0.8539475 0.8539475 0.3158431 +0.974052 0.8539475 0.3158431 +1.113885 0.8539475 0.3158431 +1.27456 0.8539475 0.3158431 +1.458117 0.8539475 0.3158431 +1.667858 0.8539475 0.3158431 +1.907556 0.8539475 0.3158431 +2.181521 0.8539475 0.3158431 +2.494678 0.8539475 0.3158431 +2.852659 0.8539475 0.3158431 +3.261896 0.8539475 0.3158431 +3.729748 0.8539475 0.3158431 +4.264621 0.8539475 0.3158431 +4.876131 0.8539475 0.3158431 +5.575266 0.8539475 0.3158431 +6.374593 0.8539475 0.3158431 +0 0.974052 0.3158431 +0 0.974052 0.3158431 +0 0.974052 0.3158431 +0.002268731 0.974052 0.3158431 +0.07076883 0.974052 0.3158431 +0.1119241 0.974052 0.3158431 +0.1475052 0.974052 0.3158431 +0.1846606 0.974052 0.3158431 +0.2245119 0.974052 0.3158431 +0.2679612 0.974052 0.3158431 +0.3158431 0.974052 0.3158431 +0.3689944 0.974052 0.3158431 +0.4282948 0.974052 0.3158431 +0.494694 0.974052 0.3158431 +0.5692344 0.974052 0.3158431 +0.6530715 0.974052 0.3158431 +0.7474945 0.974052 0.3158431 +0.8539475 0.974052 0.3158431 +0.974052 0.974052 0.3158431 +1.113885 0.974052 0.3158431 +1.27456 0.974052 0.3158431 +1.458117 0.974052 0.3158431 +1.667858 0.974052 0.3158431 +1.907556 0.974052 0.3158431 +2.181521 0.974052 0.3158431 +2.494678 0.974052 0.3158431 +2.852659 0.974052 0.3158431 +3.261896 0.974052 0.3158431 +3.729748 0.974052 0.3158431 +4.264621 0.974052 0.3158431 +4.876131 0.974052 0.3158431 +5.575266 0.974052 0.3158431 +6.374593 0.974052 0.3158431 +0 1.113885 0.3158431 +0 1.113885 0.3158431 +0 1.113885 0.3158431 +0.002268731 1.113885 0.3158431 +0.07076883 1.113885 0.3158431 +0.1119241 1.113885 0.3158431 +0.1475052 1.113885 0.3158431 +0.1846606 1.113885 0.3158431 +0.2245119 1.113885 0.3158431 +0.2679612 1.113885 0.3158431 +0.3158431 1.113885 0.3158431 +0.3689944 1.113885 0.3158431 +0.4282948 1.113885 0.3158431 +0.494694 1.113885 0.3158431 +0.5692344 1.113885 0.3158431 +0.6530715 1.113885 0.3158431 +0.7474945 1.113885 0.3158431 +0.8539475 1.113885 0.3158431 +0.974052 1.113885 0.3158431 +1.113885 1.113885 0.3158431 +1.27456 1.113885 0.3158431 +1.458117 1.113885 0.3158431 +1.667858 1.113885 0.3158431 +1.907556 1.113885 0.3158431 +2.181521 1.113885 0.3158431 +2.494678 1.113885 0.3158431 +2.852659 1.113885 0.3158431 +3.261896 1.113885 0.3158431 +3.729748 1.113885 0.3158431 +4.264621 1.113885 0.3158431 +4.876131 1.113885 0.3158431 +5.575266 1.113885 0.3158431 +6.374593 1.113885 0.3158431 +0 1.27456 0.3158431 +0 1.27456 0.3158431 +0 1.27456 0.3158431 +0.002268731 1.27456 0.3158431 +0.07076883 1.27456 0.3158431 +0.1119241 1.27456 0.3158431 +0.1475052 1.27456 0.3158431 +0.1846606 1.27456 0.3158431 +0.2245119 1.27456 0.3158431 +0.2679612 1.27456 0.3158431 +0.3158431 1.27456 0.3158431 +0.3689944 1.27456 0.3158431 +0.4282948 1.27456 0.3158431 +0.494694 1.27456 0.3158431 +0.5692344 1.27456 0.3158431 +0.6530715 1.27456 0.3158431 +0.7474945 1.27456 0.3158431 +0.8539475 1.27456 0.3158431 +0.974052 1.27456 0.3158431 +1.113885 1.27456 0.3158431 +1.27456 1.27456 0.3158431 +1.458117 1.27456 0.3158431 +1.667858 1.27456 0.3158431 +1.907556 1.27456 0.3158431 +2.181521 1.27456 0.3158431 +2.494678 1.27456 0.3158431 +2.852659 1.27456 0.3158431 +3.261896 1.27456 0.3158431 +3.729748 1.27456 0.3158431 +4.264621 1.27456 0.3158431 +4.876131 1.27456 0.3158431 +5.575266 1.27456 0.3158431 +6.374593 1.27456 0.3158431 +0 1.458117 0.3158431 +0 1.458117 0.3158431 +0 1.458117 0.3158431 +0.002268731 1.458117 0.3158431 +0.07076883 1.458117 0.3158431 +0.1119241 1.458117 0.3158431 +0.1475052 1.458117 0.3158431 +0.1846606 1.458117 0.3158431 +0.2245119 1.458117 0.3158431 +0.2679612 1.458117 0.3158431 +0.3158431 1.458117 0.3158431 +0.3689944 1.458117 0.3158431 +0.4282948 1.458117 0.3158431 +0.494694 1.458117 0.3158431 +0.5692344 1.458117 0.3158431 +0.6530715 1.458117 0.3158431 +0.7474945 1.458117 0.3158431 +0.8539475 1.458117 0.3158431 +0.974052 1.458117 0.3158431 +1.113885 1.458117 0.3158431 +1.27456 1.458117 0.3158431 +1.458117 1.458117 0.3158431 +1.667858 1.458117 0.3158431 +1.907556 1.458117 0.3158431 +2.181521 1.458117 0.3158431 +2.494678 1.458117 0.3158431 +2.852659 1.458117 0.3158431 +3.261896 1.458117 0.3158431 +3.729748 1.458117 0.3158431 +4.264621 1.458117 0.3158431 +4.876131 1.458117 0.3158431 +5.575266 1.458117 0.3158431 +6.374593 1.458117 0.3158431 +0 1.667858 0.3158431 +0 1.667858 0.3158431 +0 1.667858 0.3158431 +0.002268731 1.667858 0.3158431 +0.07076883 1.667858 0.3158431 +0.1119241 1.667858 0.3158431 +0.1475052 1.667858 0.3158431 +0.1846606 1.667858 0.3158431 +0.2245119 1.667858 0.3158431 +0.2679612 1.667858 0.3158431 +0.3158431 1.667858 0.3158431 +0.3689944 1.667858 0.3158431 +0.4282948 1.667858 0.3158431 +0.494694 1.667858 0.3158431 +0.5692344 1.667858 0.3158431 +0.6530715 1.667858 0.3158431 +0.7474945 1.667858 0.3158431 +0.8539475 1.667858 0.3158431 +0.974052 1.667858 0.3158431 +1.113885 1.667858 0.3158431 +1.27456 1.667858 0.3158431 +1.458117 1.667858 0.3158431 +1.667858 1.667858 0.3158431 +1.907556 1.667858 0.3158431 +2.181521 1.667858 0.3158431 +2.494678 1.667858 0.3158431 +2.852659 1.667858 0.3158431 +3.261896 1.667858 0.3158431 +3.729748 1.667858 0.3158431 +4.264621 1.667858 0.3158431 +4.876131 1.667858 0.3158431 +5.575266 1.667858 0.3158431 +6.374593 1.667858 0.3158431 +0 1.907556 0.3158431 +0 1.907556 0.3158431 +0 1.907556 0.3158431 +0.002268731 1.907556 0.3158431 +0.07076883 1.907556 0.3158431 +0.1119241 1.907556 0.3158431 +0.1475052 1.907556 0.3158431 +0.1846606 1.907556 0.3158431 +0.2245119 1.907556 0.3158431 +0.2679612 1.907556 0.3158431 +0.3158431 1.907556 0.3158431 +0.3689944 1.907556 0.3158431 +0.4282948 1.907556 0.3158431 +0.494694 1.907556 0.3158431 +0.5692344 1.907556 0.3158431 +0.6530715 1.907556 0.3158431 +0.7474945 1.907556 0.3158431 +0.8539475 1.907556 0.3158431 +0.974052 1.907556 0.3158431 +1.113885 1.907556 0.3158431 +1.27456 1.907556 0.3158431 +1.458117 1.907556 0.3158431 +1.667858 1.907556 0.3158431 +1.907556 1.907556 0.3158431 +2.181521 1.907556 0.3158431 +2.494678 1.907556 0.3158431 +2.852659 1.907556 0.3158431 +3.261896 1.907556 0.3158431 +3.729748 1.907556 0.3158431 +4.264621 1.907556 0.3158431 +4.876131 1.907556 0.3158431 +5.575266 1.907556 0.3158431 +6.374593 1.907556 0.3158431 +0 2.181521 0.3158431 +0 2.181521 0.3158431 +0 2.181521 0.3158431 +0.002268731 2.181521 0.3158431 +0.07076883 2.181521 0.3158431 +0.1119241 2.181521 0.3158431 +0.1475052 2.181521 0.3158431 +0.1846606 2.181521 0.3158431 +0.2245119 2.181521 0.3158431 +0.2679612 2.181521 0.3158431 +0.3158431 2.181521 0.3158431 +0.3689944 2.181521 0.3158431 +0.4282948 2.181521 0.3158431 +0.494694 2.181521 0.3158431 +0.5692344 2.181521 0.3158431 +0.6530715 2.181521 0.3158431 +0.7474945 2.181521 0.3158431 +0.8539475 2.181521 0.3158431 +0.974052 2.181521 0.3158431 +1.113885 2.181521 0.3158431 +1.27456 2.181521 0.3158431 +1.458117 2.181521 0.3158431 +1.667858 2.181521 0.3158431 +1.907556 2.181521 0.3158431 +2.181521 2.181521 0.3158431 +2.494678 2.181521 0.3158431 +2.852659 2.181521 0.3158431 +3.261896 2.181521 0.3158431 +3.729748 2.181521 0.3158431 +4.264621 2.181521 0.3158431 +4.876131 2.181521 0.3158431 +5.575266 2.181521 0.3158431 +6.374593 2.181521 0.3158431 +0 2.494678 0.3158431 +0 2.494678 0.3158431 +0 2.494678 0.3158431 +0.002268731 2.494678 0.3158431 +0.07076883 2.494678 0.3158431 +0.1119241 2.494678 0.3158431 +0.1475052 2.494678 0.3158431 +0.1846606 2.494678 0.3158431 +0.2245119 2.494678 0.3158431 +0.2679612 2.494678 0.3158431 +0.3158431 2.494678 0.3158431 +0.3689944 2.494678 0.3158431 +0.4282948 2.494678 0.3158431 +0.494694 2.494678 0.3158431 +0.5692344 2.494678 0.3158431 +0.6530715 2.494678 0.3158431 +0.7474945 2.494678 0.3158431 +0.8539475 2.494678 0.3158431 +0.974052 2.494678 0.3158431 +1.113885 2.494678 0.3158431 +1.27456 2.494678 0.3158431 +1.458117 2.494678 0.3158431 +1.667858 2.494678 0.3158431 +1.907556 2.494678 0.3158431 +2.181521 2.494678 0.3158431 +2.494678 2.494678 0.3158431 +2.852659 2.494678 0.3158431 +3.261896 2.494678 0.3158431 +3.729748 2.494678 0.3158431 +4.264621 2.494678 0.3158431 +4.876131 2.494678 0.3158431 +5.575266 2.494678 0.3158431 +6.374593 2.494678 0.3158431 +0 2.852659 0.3158431 +0 2.852659 0.3158431 +0 2.852659 0.3158431 +0.002268731 2.852659 0.3158431 +0.07076883 2.852659 0.3158431 +0.1119241 2.852659 0.3158431 +0.1475052 2.852659 0.3158431 +0.1846606 2.852659 0.3158431 +0.2245119 2.852659 0.3158431 +0.2679612 2.852659 0.3158431 +0.3158431 2.852659 0.3158431 +0.3689944 2.852659 0.3158431 +0.4282948 2.852659 0.3158431 +0.494694 2.852659 0.3158431 +0.5692344 2.852659 0.3158431 +0.6530715 2.852659 0.3158431 +0.7474945 2.852659 0.3158431 +0.8539475 2.852659 0.3158431 +0.974052 2.852659 0.3158431 +1.113885 2.852659 0.3158431 +1.27456 2.852659 0.3158431 +1.458117 2.852659 0.3158431 +1.667858 2.852659 0.3158431 +1.907556 2.852659 0.3158431 +2.181521 2.852659 0.3158431 +2.494678 2.852659 0.3158431 +2.852659 2.852659 0.3158431 +3.261896 2.852659 0.3158431 +3.729748 2.852659 0.3158431 +4.264621 2.852659 0.3158431 +4.876131 2.852659 0.3158431 +5.575266 2.852659 0.3158431 +6.374593 2.852659 0.3158431 +0 3.261896 0.3158431 +0 3.261896 0.3158431 +0 3.261896 0.3158431 +0.002268731 3.261896 0.3158431 +0.07076883 3.261896 0.3158431 +0.1119241 3.261896 0.3158431 +0.1475052 3.261896 0.3158431 +0.1846606 3.261896 0.3158431 +0.2245119 3.261896 0.3158431 +0.2679612 3.261896 0.3158431 +0.3158431 3.261896 0.3158431 +0.3689944 3.261896 0.3158431 +0.4282948 3.261896 0.3158431 +0.494694 3.261896 0.3158431 +0.5692344 3.261896 0.3158431 +0.6530715 3.261896 0.3158431 +0.7474945 3.261896 0.3158431 +0.8539475 3.261896 0.3158431 +0.974052 3.261896 0.3158431 +1.113885 3.261896 0.3158431 +1.27456 3.261896 0.3158431 +1.458117 3.261896 0.3158431 +1.667858 3.261896 0.3158431 +1.907556 3.261896 0.3158431 +2.181521 3.261896 0.3158431 +2.494678 3.261896 0.3158431 +2.852659 3.261896 0.3158431 +3.261896 3.261896 0.3158431 +3.729748 3.261896 0.3158431 +4.264621 3.261896 0.3158431 +4.876131 3.261896 0.3158431 +5.575266 3.261896 0.3158431 +6.374593 3.261896 0.3158431 +0 3.729748 0.3158431 +0 3.729748 0.3158431 +0 3.729748 0.3158431 +0.002268731 3.729748 0.3158431 +0.07076883 3.729748 0.3158431 +0.1119241 3.729748 0.3158431 +0.1475052 3.729748 0.3158431 +0.1846606 3.729748 0.3158431 +0.2245119 3.729748 0.3158431 +0.2679612 3.729748 0.3158431 +0.3158431 3.729748 0.3158431 +0.3689944 3.729748 0.3158431 +0.4282948 3.729748 0.3158431 +0.494694 3.729748 0.3158431 +0.5692344 3.729748 0.3158431 +0.6530715 3.729748 0.3158431 +0.7474945 3.729748 0.3158431 +0.8539475 3.729748 0.3158431 +0.974052 3.729748 0.3158431 +1.113885 3.729748 0.3158431 +1.27456 3.729748 0.3158431 +1.458117 3.729748 0.3158431 +1.667858 3.729748 0.3158431 +1.907556 3.729748 0.3158431 +2.181521 3.729748 0.3158431 +2.494678 3.729748 0.3158431 +2.852659 3.729748 0.3158431 +3.261896 3.729748 0.3158431 +3.729748 3.729748 0.3158431 +4.264621 3.729748 0.3158431 +4.876131 3.729748 0.3158431 +5.575266 3.729748 0.3158431 +6.374593 3.729748 0.3158431 +0 4.264621 0.3158431 +0 4.264621 0.3158431 +0 4.264621 0.3158431 +0.002268731 4.264621 0.3158431 +0.07076883 4.264621 0.3158431 +0.1119241 4.264621 0.3158431 +0.1475052 4.264621 0.3158431 +0.1846606 4.264621 0.3158431 +0.2245119 4.264621 0.3158431 +0.2679612 4.264621 0.3158431 +0.3158431 4.264621 0.3158431 +0.3689944 4.264621 0.3158431 +0.4282948 4.264621 0.3158431 +0.494694 4.264621 0.3158431 +0.5692344 4.264621 0.3158431 +0.6530715 4.264621 0.3158431 +0.7474945 4.264621 0.3158431 +0.8539475 4.264621 0.3158431 +0.974052 4.264621 0.3158431 +1.113885 4.264621 0.3158431 +1.27456 4.264621 0.3158431 +1.458117 4.264621 0.3158431 +1.667858 4.264621 0.3158431 +1.907556 4.264621 0.3158431 +2.181521 4.264621 0.3158431 +2.494678 4.264621 0.3158431 +2.852659 4.264621 0.3158431 +3.261896 4.264621 0.3158431 +3.729748 4.264621 0.3158431 +4.264621 4.264621 0.3158431 +4.876131 4.264621 0.3158431 +5.575266 4.264621 0.3158431 +6.374593 4.264621 0.3158431 +0 4.876131 0.3158431 +0 4.876131 0.3158431 +0 4.876131 0.3158431 +0.002268731 4.876131 0.3158431 +0.07076883 4.876131 0.3158431 +0.1119241 4.876131 0.3158431 +0.1475052 4.876131 0.3158431 +0.1846606 4.876131 0.3158431 +0.2245119 4.876131 0.3158431 +0.2679612 4.876131 0.3158431 +0.3158431 4.876131 0.3158431 +0.3689944 4.876131 0.3158431 +0.4282948 4.876131 0.3158431 +0.494694 4.876131 0.3158431 +0.5692344 4.876131 0.3158431 +0.6530715 4.876131 0.3158431 +0.7474945 4.876131 0.3158431 +0.8539475 4.876131 0.3158431 +0.974052 4.876131 0.3158431 +1.113885 4.876131 0.3158431 +1.27456 4.876131 0.3158431 +1.458117 4.876131 0.3158431 +1.667858 4.876131 0.3158431 +1.907556 4.876131 0.3158431 +2.181521 4.876131 0.3158431 +2.494678 4.876131 0.3158431 +2.852659 4.876131 0.3158431 +3.261896 4.876131 0.3158431 +3.729748 4.876131 0.3158431 +4.264621 4.876131 0.3158431 +4.876131 4.876131 0.3158431 +5.575266 4.876131 0.3158431 +6.374593 4.876131 0.3158431 +0 5.575266 0.3158431 +0 5.575266 0.3158431 +0 5.575266 0.3158431 +0.002268731 5.575266 0.3158431 +0.07076883 5.575266 0.3158431 +0.1119241 5.575266 0.3158431 +0.1475052 5.575266 0.3158431 +0.1846606 5.575266 0.3158431 +0.2245119 5.575266 0.3158431 +0.2679612 5.575266 0.3158431 +0.3158431 5.575266 0.3158431 +0.3689944 5.575266 0.3158431 +0.4282948 5.575266 0.3158431 +0.494694 5.575266 0.3158431 +0.5692344 5.575266 0.3158431 +0.6530715 5.575266 0.3158431 +0.7474945 5.575266 0.3158431 +0.8539475 5.575266 0.3158431 +0.974052 5.575266 0.3158431 +1.113885 5.575266 0.3158431 +1.27456 5.575266 0.3158431 +1.458117 5.575266 0.3158431 +1.667858 5.575266 0.3158431 +1.907556 5.575266 0.3158431 +2.181521 5.575266 0.3158431 +2.494678 5.575266 0.3158431 +2.852659 5.575266 0.3158431 +3.261896 5.575266 0.3158431 +3.729748 5.575266 0.3158431 +4.264621 5.575266 0.3158431 +4.876131 5.575266 0.3158431 +5.575266 5.575266 0.3158431 +6.374593 5.575266 0.3158431 +0 6.374593 0.3158431 +0 6.374593 0.3158431 +0 6.374593 0.3158431 +0.002268731 6.374593 0.3158431 +0.07076883 6.374593 0.3158431 +0.1119241 6.374593 0.3158431 +0.1475052 6.374593 0.3158431 +0.1846606 6.374593 0.3158431 +0.2245119 6.374593 0.3158431 +0.2679612 6.374593 0.3158431 +0.3158431 6.374593 0.3158431 +0.3689944 6.374593 0.3158431 +0.4282948 6.374593 0.3158431 +0.494694 6.374593 0.3158431 +0.5692344 6.374593 0.3158431 +0.6530715 6.374593 0.3158431 +0.7474945 6.374593 0.3158431 +0.8539475 6.374593 0.3158431 +0.974052 6.374593 0.3158431 +1.113885 6.374593 0.3158431 +1.27456 6.374593 0.3158431 +1.458117 6.374593 0.3158431 +1.667858 6.374593 0.3158431 +1.907556 6.374593 0.3158431 +2.181521 6.374593 0.3158431 +2.494678 6.374593 0.3158431 +2.852659 6.374593 0.3158431 +3.261896 6.374593 0.3158431 +3.729748 6.374593 0.3158431 +4.264621 6.374593 0.3158431 +4.876131 6.374593 0.3158431 +5.575266 6.374593 0.3158431 +6.374593 6.374593 0.3158431 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0.002268731 0.3689944 +0 0.002268731 0.3689944 +0 0.002268731 0.3689944 +0.002268731 0.002268731 0.3689944 +0.07076883 0.002268731 0.3689944 +0.1119241 0.002268731 0.3689944 +0.1475052 0.002268731 0.3689944 +0.1846606 0.002268731 0.3689944 +0.2245119 0.002268731 0.3689944 +0.2679612 0.002268731 0.3689944 +0.3158431 0.002268731 0.3689944 +0.3689944 0.002268731 0.3689944 +0.4282948 0.002268731 0.3689944 +0.494694 0.002268731 0.3689944 +0.5692344 0.002268731 0.3689944 +0.6530715 0.002268731 0.3689944 +0.7474945 0.002268731 0.3689944 +0.8539475 0.002268731 0.3689944 +0.974052 0.002268731 0.3689944 +1.113885 0.002268731 0.3689944 +1.27456 0.002268731 0.3689944 +1.458117 0.002268731 0.3689944 +1.667858 0.002268731 0.3689944 +1.907556 0.002268731 0.3689944 +2.181521 0.002268731 0.3689944 +2.494678 0.002268731 0.3689944 +2.852659 0.002268731 0.3689944 +3.261896 0.002268731 0.3689944 +3.729748 0.002268731 0.3689944 +4.264621 0.002268731 0.3689944 +4.876131 0.002268731 0.3689944 +5.575266 0.002268731 0.3689944 +6.374593 0.002268731 0.3689944 +0 0.07076883 0.3689944 +0 0.07076883 0.3689944 +0 0.07076883 0.3689944 +0.002268731 0.07076883 0.3689944 +0.07076883 0.07076883 0.3689944 +0.1119241 0.07076883 0.3689944 +0.1475052 0.07076883 0.3689944 +0.1846606 0.07076883 0.3689944 +0.2245119 0.07076883 0.3689944 +0.2679612 0.07076883 0.3689944 +0.3158431 0.07076883 0.3689944 +0.3689944 0.07076883 0.3689944 +0.4282948 0.07076883 0.3689944 +0.494694 0.07076883 0.3689944 +0.5692344 0.07076883 0.3689944 +0.6530715 0.07076883 0.3689944 +0.7474945 0.07076883 0.3689944 +0.8539475 0.07076883 0.3689944 +0.974052 0.07076883 0.3689944 +1.113885 0.07076883 0.3689944 +1.27456 0.07076883 0.3689944 +1.458117 0.07076883 0.3689944 +1.667858 0.07076883 0.3689944 +1.907556 0.07076883 0.3689944 +2.181521 0.07076883 0.3689944 +2.494678 0.07076883 0.3689944 +2.852659 0.07076883 0.3689944 +3.261896 0.07076883 0.3689944 +3.729748 0.07076883 0.3689944 +4.264621 0.07076883 0.3689944 +4.876131 0.07076883 0.3689944 +5.575266 0.07076883 0.3689944 +6.374593 0.07076883 0.3689944 +0 0.1119241 0.3689944 +0 0.1119241 0.3689944 +0 0.1119241 0.3689944 +0.002268731 0.1119241 0.3689944 +0.07076883 0.1119241 0.3689944 +0.1119241 0.1119241 0.3689944 +0.1475052 0.1119241 0.3689944 +0.1846606 0.1119241 0.3689944 +0.2245119 0.1119241 0.3689944 +0.2679612 0.1119241 0.3689944 +0.3158431 0.1119241 0.3689944 +0.3689944 0.1119241 0.3689944 +0.4282948 0.1119241 0.3689944 +0.494694 0.1119241 0.3689944 +0.5692344 0.1119241 0.3689944 +0.6530715 0.1119241 0.3689944 +0.7474945 0.1119241 0.3689944 +0.8539475 0.1119241 0.3689944 +0.974052 0.1119241 0.3689944 +1.113885 0.1119241 0.3689944 +1.27456 0.1119241 0.3689944 +1.458117 0.1119241 0.3689944 +1.667858 0.1119241 0.3689944 +1.907556 0.1119241 0.3689944 +2.181521 0.1119241 0.3689944 +2.494678 0.1119241 0.3689944 +2.852659 0.1119241 0.3689944 +3.261896 0.1119241 0.3689944 +3.729748 0.1119241 0.3689944 +4.264621 0.1119241 0.3689944 +4.876131 0.1119241 0.3689944 +5.575266 0.1119241 0.3689944 +6.374593 0.1119241 0.3689944 +0 0.1475052 0.3689944 +0 0.1475052 0.3689944 +0 0.1475052 0.3689944 +0.002268731 0.1475052 0.3689944 +0.07076883 0.1475052 0.3689944 +0.1119241 0.1475052 0.3689944 +0.1475052 0.1475052 0.3689944 +0.1846606 0.1475052 0.3689944 +0.2245119 0.1475052 0.3689944 +0.2679612 0.1475052 0.3689944 +0.3158431 0.1475052 0.3689944 +0.3689944 0.1475052 0.3689944 +0.4282948 0.1475052 0.3689944 +0.494694 0.1475052 0.3689944 +0.5692344 0.1475052 0.3689944 +0.6530715 0.1475052 0.3689944 +0.7474945 0.1475052 0.3689944 +0.8539475 0.1475052 0.3689944 +0.974052 0.1475052 0.3689944 +1.113885 0.1475052 0.3689944 +1.27456 0.1475052 0.3689944 +1.458117 0.1475052 0.3689944 +1.667858 0.1475052 0.3689944 +1.907556 0.1475052 0.3689944 +2.181521 0.1475052 0.3689944 +2.494678 0.1475052 0.3689944 +2.852659 0.1475052 0.3689944 +3.261896 0.1475052 0.3689944 +3.729748 0.1475052 0.3689944 +4.264621 0.1475052 0.3689944 +4.876131 0.1475052 0.3689944 +5.575266 0.1475052 0.3689944 +6.374593 0.1475052 0.3689944 +0 0.1846606 0.3689944 +0 0.1846606 0.3689944 +0 0.1846606 0.3689944 +0.002268731 0.1846606 0.3689944 +0.07076883 0.1846606 0.3689944 +0.1119241 0.1846606 0.3689944 +0.1475052 0.1846606 0.3689944 +0.1846606 0.1846606 0.3689944 +0.2245119 0.1846606 0.3689944 +0.2679612 0.1846606 0.3689944 +0.3158431 0.1846606 0.3689944 +0.3689944 0.1846606 0.3689944 +0.4282948 0.1846606 0.3689944 +0.494694 0.1846606 0.3689944 +0.5692344 0.1846606 0.3689944 +0.6530715 0.1846606 0.3689944 +0.7474945 0.1846606 0.3689944 +0.8539475 0.1846606 0.3689944 +0.974052 0.1846606 0.3689944 +1.113885 0.1846606 0.3689944 +1.27456 0.1846606 0.3689944 +1.458117 0.1846606 0.3689944 +1.667858 0.1846606 0.3689944 +1.907556 0.1846606 0.3689944 +2.181521 0.1846606 0.3689944 +2.494678 0.1846606 0.3689944 +2.852659 0.1846606 0.3689944 +3.261896 0.1846606 0.3689944 +3.729748 0.1846606 0.3689944 +4.264621 0.1846606 0.3689944 +4.876131 0.1846606 0.3689944 +5.575266 0.1846606 0.3689944 +6.374593 0.1846606 0.3689944 +0 0.2245119 0.3689944 +0 0.2245119 0.3689944 +0 0.2245119 0.3689944 +0.002268731 0.2245119 0.3689944 +0.07076883 0.2245119 0.3689944 +0.1119241 0.2245119 0.3689944 +0.1475052 0.2245119 0.3689944 +0.1846606 0.2245119 0.3689944 +0.2245119 0.2245119 0.3689944 +0.2679612 0.2245119 0.3689944 +0.3158431 0.2245119 0.3689944 +0.3689944 0.2245119 0.3689944 +0.4282948 0.2245119 0.3689944 +0.494694 0.2245119 0.3689944 +0.5692344 0.2245119 0.3689944 +0.6530715 0.2245119 0.3689944 +0.7474945 0.2245119 0.3689944 +0.8539475 0.2245119 0.3689944 +0.974052 0.2245119 0.3689944 +1.113885 0.2245119 0.3689944 +1.27456 0.2245119 0.3689944 +1.458117 0.2245119 0.3689944 +1.667858 0.2245119 0.3689944 +1.907556 0.2245119 0.3689944 +2.181521 0.2245119 0.3689944 +2.494678 0.2245119 0.3689944 +2.852659 0.2245119 0.3689944 +3.261896 0.2245119 0.3689944 +3.729748 0.2245119 0.3689944 +4.264621 0.2245119 0.3689944 +4.876131 0.2245119 0.3689944 +5.575266 0.2245119 0.3689944 +6.374593 0.2245119 0.3689944 +0 0.2679612 0.3689944 +0 0.2679612 0.3689944 +0 0.2679612 0.3689944 +0.002268731 0.2679612 0.3689944 +0.07076883 0.2679612 0.3689944 +0.1119241 0.2679612 0.3689944 +0.1475052 0.2679612 0.3689944 +0.1846606 0.2679612 0.3689944 +0.2245119 0.2679612 0.3689944 +0.2679612 0.2679612 0.3689944 +0.3158431 0.2679612 0.3689944 +0.3689944 0.2679612 0.3689944 +0.4282948 0.2679612 0.3689944 +0.494694 0.2679612 0.3689944 +0.5692344 0.2679612 0.3689944 +0.6530715 0.2679612 0.3689944 +0.7474945 0.2679612 0.3689944 +0.8539475 0.2679612 0.3689944 +0.974052 0.2679612 0.3689944 +1.113885 0.2679612 0.3689944 +1.27456 0.2679612 0.3689944 +1.458117 0.2679612 0.3689944 +1.667858 0.2679612 0.3689944 +1.907556 0.2679612 0.3689944 +2.181521 0.2679612 0.3689944 +2.494678 0.2679612 0.3689944 +2.852659 0.2679612 0.3689944 +3.261896 0.2679612 0.3689944 +3.729748 0.2679612 0.3689944 +4.264621 0.2679612 0.3689944 +4.876131 0.2679612 0.3689944 +5.575266 0.2679612 0.3689944 +6.374593 0.2679612 0.3689944 +0 0.3158431 0.3689944 +0 0.3158431 0.3689944 +0 0.3158431 0.3689944 +0.002268731 0.3158431 0.3689944 +0.07076883 0.3158431 0.3689944 +0.1119241 0.3158431 0.3689944 +0.1475052 0.3158431 0.3689944 +0.1846606 0.3158431 0.3689944 +0.2245119 0.3158431 0.3689944 +0.2679612 0.3158431 0.3689944 +0.3158431 0.3158431 0.3689944 +0.3689944 0.3158431 0.3689944 +0.4282948 0.3158431 0.3689944 +0.494694 0.3158431 0.3689944 +0.5692344 0.3158431 0.3689944 +0.6530715 0.3158431 0.3689944 +0.7474945 0.3158431 0.3689944 +0.8539475 0.3158431 0.3689944 +0.974052 0.3158431 0.3689944 +1.113885 0.3158431 0.3689944 +1.27456 0.3158431 0.3689944 +1.458117 0.3158431 0.3689944 +1.667858 0.3158431 0.3689944 +1.907556 0.3158431 0.3689944 +2.181521 0.3158431 0.3689944 +2.494678 0.3158431 0.3689944 +2.852659 0.3158431 0.3689944 +3.261896 0.3158431 0.3689944 +3.729748 0.3158431 0.3689944 +4.264621 0.3158431 0.3689944 +4.876131 0.3158431 0.3689944 +5.575266 0.3158431 0.3689944 +6.374593 0.3158431 0.3689944 +0 0.3689944 0.3689944 +0 0.3689944 0.3689944 +0 0.3689944 0.3689944 +0.002268731 0.3689944 0.3689944 +0.07076883 0.3689944 0.3689944 +0.1119241 0.3689944 0.3689944 +0.1475052 0.3689944 0.3689944 +0.1846606 0.3689944 0.3689944 +0.2245119 0.3689944 0.3689944 +0.2679612 0.3689944 0.3689944 +0.3158431 0.3689944 0.3689944 +0.3689944 0.3689944 0.3689944 +0.4282948 0.3689944 0.3689944 +0.494694 0.3689944 0.3689944 +0.5692344 0.3689944 0.3689944 +0.6530715 0.3689944 0.3689944 +0.7474945 0.3689944 0.3689944 +0.8539475 0.3689944 0.3689944 +0.974052 0.3689944 0.3689944 +1.113885 0.3689944 0.3689944 +1.27456 0.3689944 0.3689944 +1.458117 0.3689944 0.3689944 +1.667858 0.3689944 0.3689944 +1.907556 0.3689944 0.3689944 +2.181521 0.3689944 0.3689944 +2.494678 0.3689944 0.3689944 +2.852659 0.3689944 0.3689944 +3.261896 0.3689944 0.3689944 +3.729748 0.3689944 0.3689944 +4.264621 0.3689944 0.3689944 +4.876131 0.3689944 0.3689944 +5.575266 0.3689944 0.3689944 +6.374593 0.3689944 0.3689944 +0 0.4282948 0.3689944 +0 0.4282948 0.3689944 +0 0.4282948 0.3689944 +0.002268731 0.4282948 0.3689944 +0.07076883 0.4282948 0.3689944 +0.1119241 0.4282948 0.3689944 +0.1475052 0.4282948 0.3689944 +0.1846606 0.4282948 0.3689944 +0.2245119 0.4282948 0.3689944 +0.2679612 0.4282948 0.3689944 +0.3158431 0.4282948 0.3689944 +0.3689944 0.4282948 0.3689944 +0.4282948 0.4282948 0.3689944 +0.494694 0.4282948 0.3689944 +0.5692344 0.4282948 0.3689944 +0.6530715 0.4282948 0.3689944 +0.7474945 0.4282948 0.3689944 +0.8539475 0.4282948 0.3689944 +0.974052 0.4282948 0.3689944 +1.113885 0.4282948 0.3689944 +1.27456 0.4282948 0.3689944 +1.458117 0.4282948 0.3689944 +1.667858 0.4282948 0.3689944 +1.907556 0.4282948 0.3689944 +2.181521 0.4282948 0.3689944 +2.494678 0.4282948 0.3689944 +2.852659 0.4282948 0.3689944 +3.261896 0.4282948 0.3689944 +3.729748 0.4282948 0.3689944 +4.264621 0.4282948 0.3689944 +4.876131 0.4282948 0.3689944 +5.575266 0.4282948 0.3689944 +6.374593 0.4282948 0.3689944 +0 0.494694 0.3689944 +0 0.494694 0.3689944 +0 0.494694 0.3689944 +0.002268731 0.494694 0.3689944 +0.07076883 0.494694 0.3689944 +0.1119241 0.494694 0.3689944 +0.1475052 0.494694 0.3689944 +0.1846606 0.494694 0.3689944 +0.2245119 0.494694 0.3689944 +0.2679612 0.494694 0.3689944 +0.3158431 0.494694 0.3689944 +0.3689944 0.494694 0.3689944 +0.4282948 0.494694 0.3689944 +0.494694 0.494694 0.3689944 +0.5692344 0.494694 0.3689944 +0.6530715 0.494694 0.3689944 +0.7474945 0.494694 0.3689944 +0.8539475 0.494694 0.3689944 +0.974052 0.494694 0.3689944 +1.113885 0.494694 0.3689944 +1.27456 0.494694 0.3689944 +1.458117 0.494694 0.3689944 +1.667858 0.494694 0.3689944 +1.907556 0.494694 0.3689944 +2.181521 0.494694 0.3689944 +2.494678 0.494694 0.3689944 +2.852659 0.494694 0.3689944 +3.261896 0.494694 0.3689944 +3.729748 0.494694 0.3689944 +4.264621 0.494694 0.3689944 +4.876131 0.494694 0.3689944 +5.575266 0.494694 0.3689944 +6.374593 0.494694 0.3689944 +0 0.5692344 0.3689944 +0 0.5692344 0.3689944 +0 0.5692344 0.3689944 +0.002268731 0.5692344 0.3689944 +0.07076883 0.5692344 0.3689944 +0.1119241 0.5692344 0.3689944 +0.1475052 0.5692344 0.3689944 +0.1846606 0.5692344 0.3689944 +0.2245119 0.5692344 0.3689944 +0.2679612 0.5692344 0.3689944 +0.3158431 0.5692344 0.3689944 +0.3689944 0.5692344 0.3689944 +0.4282948 0.5692344 0.3689944 +0.494694 0.5692344 0.3689944 +0.5692344 0.5692344 0.3689944 +0.6530715 0.5692344 0.3689944 +0.7474945 0.5692344 0.3689944 +0.8539475 0.5692344 0.3689944 +0.974052 0.5692344 0.3689944 +1.113885 0.5692344 0.3689944 +1.27456 0.5692344 0.3689944 +1.458117 0.5692344 0.3689944 +1.667858 0.5692344 0.3689944 +1.907556 0.5692344 0.3689944 +2.181521 0.5692344 0.3689944 +2.494678 0.5692344 0.3689944 +2.852659 0.5692344 0.3689944 +3.261896 0.5692344 0.3689944 +3.729748 0.5692344 0.3689944 +4.264621 0.5692344 0.3689944 +4.876131 0.5692344 0.3689944 +5.575266 0.5692344 0.3689944 +6.374593 0.5692344 0.3689944 +0 0.6530715 0.3689944 +0 0.6530715 0.3689944 +0 0.6530715 0.3689944 +0.002268731 0.6530715 0.3689944 +0.07076883 0.6530715 0.3689944 +0.1119241 0.6530715 0.3689944 +0.1475052 0.6530715 0.3689944 +0.1846606 0.6530715 0.3689944 +0.2245119 0.6530715 0.3689944 +0.2679612 0.6530715 0.3689944 +0.3158431 0.6530715 0.3689944 +0.3689944 0.6530715 0.3689944 +0.4282948 0.6530715 0.3689944 +0.494694 0.6530715 0.3689944 +0.5692344 0.6530715 0.3689944 +0.6530715 0.6530715 0.3689944 +0.7474945 0.6530715 0.3689944 +0.8539475 0.6530715 0.3689944 +0.974052 0.6530715 0.3689944 +1.113885 0.6530715 0.3689944 +1.27456 0.6530715 0.3689944 +1.458117 0.6530715 0.3689944 +1.667858 0.6530715 0.3689944 +1.907556 0.6530715 0.3689944 +2.181521 0.6530715 0.3689944 +2.494678 0.6530715 0.3689944 +2.852659 0.6530715 0.3689944 +3.261896 0.6530715 0.3689944 +3.729748 0.6530715 0.3689944 +4.264621 0.6530715 0.3689944 +4.876131 0.6530715 0.3689944 +5.575266 0.6530715 0.3689944 +6.374593 0.6530715 0.3689944 +0 0.7474945 0.3689944 +0 0.7474945 0.3689944 +0 0.7474945 0.3689944 +0.002268731 0.7474945 0.3689944 +0.07076883 0.7474945 0.3689944 +0.1119241 0.7474945 0.3689944 +0.1475052 0.7474945 0.3689944 +0.1846606 0.7474945 0.3689944 +0.2245119 0.7474945 0.3689944 +0.2679612 0.7474945 0.3689944 +0.3158431 0.7474945 0.3689944 +0.3689944 0.7474945 0.3689944 +0.4282948 0.7474945 0.3689944 +0.494694 0.7474945 0.3689944 +0.5692344 0.7474945 0.3689944 +0.6530715 0.7474945 0.3689944 +0.7474945 0.7474945 0.3689944 +0.8539475 0.7474945 0.3689944 +0.974052 0.7474945 0.3689944 +1.113885 0.7474945 0.3689944 +1.27456 0.7474945 0.3689944 +1.458117 0.7474945 0.3689944 +1.667858 0.7474945 0.3689944 +1.907556 0.7474945 0.3689944 +2.181521 0.7474945 0.3689944 +2.494678 0.7474945 0.3689944 +2.852659 0.7474945 0.3689944 +3.261896 0.7474945 0.3689944 +3.729748 0.7474945 0.3689944 +4.264621 0.7474945 0.3689944 +4.876131 0.7474945 0.3689944 +5.575266 0.7474945 0.3689944 +6.374593 0.7474945 0.3689944 +0 0.8539475 0.3689944 +0 0.8539475 0.3689944 +0 0.8539475 0.3689944 +0.002268731 0.8539475 0.3689944 +0.07076883 0.8539475 0.3689944 +0.1119241 0.8539475 0.3689944 +0.1475052 0.8539475 0.3689944 +0.1846606 0.8539475 0.3689944 +0.2245119 0.8539475 0.3689944 +0.2679612 0.8539475 0.3689944 +0.3158431 0.8539475 0.3689944 +0.3689944 0.8539475 0.3689944 +0.4282948 0.8539475 0.3689944 +0.494694 0.8539475 0.3689944 +0.5692344 0.8539475 0.3689944 +0.6530715 0.8539475 0.3689944 +0.7474945 0.8539475 0.3689944 +0.8539475 0.8539475 0.3689944 +0.974052 0.8539475 0.3689944 +1.113885 0.8539475 0.3689944 +1.27456 0.8539475 0.3689944 +1.458117 0.8539475 0.3689944 +1.667858 0.8539475 0.3689944 +1.907556 0.8539475 0.3689944 +2.181521 0.8539475 0.3689944 +2.494678 0.8539475 0.3689944 +2.852659 0.8539475 0.3689944 +3.261896 0.8539475 0.3689944 +3.729748 0.8539475 0.3689944 +4.264621 0.8539475 0.3689944 +4.876131 0.8539475 0.3689944 +5.575266 0.8539475 0.3689944 +6.374593 0.8539475 0.3689944 +0 0.974052 0.3689944 +0 0.974052 0.3689944 +0 0.974052 0.3689944 +0.002268731 0.974052 0.3689944 +0.07076883 0.974052 0.3689944 +0.1119241 0.974052 0.3689944 +0.1475052 0.974052 0.3689944 +0.1846606 0.974052 0.3689944 +0.2245119 0.974052 0.3689944 +0.2679612 0.974052 0.3689944 +0.3158431 0.974052 0.3689944 +0.3689944 0.974052 0.3689944 +0.4282948 0.974052 0.3689944 +0.494694 0.974052 0.3689944 +0.5692344 0.974052 0.3689944 +0.6530715 0.974052 0.3689944 +0.7474945 0.974052 0.3689944 +0.8539475 0.974052 0.3689944 +0.974052 0.974052 0.3689944 +1.113885 0.974052 0.3689944 +1.27456 0.974052 0.3689944 +1.458117 0.974052 0.3689944 +1.667858 0.974052 0.3689944 +1.907556 0.974052 0.3689944 +2.181521 0.974052 0.3689944 +2.494678 0.974052 0.3689944 +2.852659 0.974052 0.3689944 +3.261896 0.974052 0.3689944 +3.729748 0.974052 0.3689944 +4.264621 0.974052 0.3689944 +4.876131 0.974052 0.3689944 +5.575266 0.974052 0.3689944 +6.374593 0.974052 0.3689944 +0 1.113885 0.3689944 +0 1.113885 0.3689944 +0 1.113885 0.3689944 +0.002268731 1.113885 0.3689944 +0.07076883 1.113885 0.3689944 +0.1119241 1.113885 0.3689944 +0.1475052 1.113885 0.3689944 +0.1846606 1.113885 0.3689944 +0.2245119 1.113885 0.3689944 +0.2679612 1.113885 0.3689944 +0.3158431 1.113885 0.3689944 +0.3689944 1.113885 0.3689944 +0.4282948 1.113885 0.3689944 +0.494694 1.113885 0.3689944 +0.5692344 1.113885 0.3689944 +0.6530715 1.113885 0.3689944 +0.7474945 1.113885 0.3689944 +0.8539475 1.113885 0.3689944 +0.974052 1.113885 0.3689944 +1.113885 1.113885 0.3689944 +1.27456 1.113885 0.3689944 +1.458117 1.113885 0.3689944 +1.667858 1.113885 0.3689944 +1.907556 1.113885 0.3689944 +2.181521 1.113885 0.3689944 +2.494678 1.113885 0.3689944 +2.852659 1.113885 0.3689944 +3.261896 1.113885 0.3689944 +3.729748 1.113885 0.3689944 +4.264621 1.113885 0.3689944 +4.876131 1.113885 0.3689944 +5.575266 1.113885 0.3689944 +6.374593 1.113885 0.3689944 +0 1.27456 0.3689944 +0 1.27456 0.3689944 +0 1.27456 0.3689944 +0.002268731 1.27456 0.3689944 +0.07076883 1.27456 0.3689944 +0.1119241 1.27456 0.3689944 +0.1475052 1.27456 0.3689944 +0.1846606 1.27456 0.3689944 +0.2245119 1.27456 0.3689944 +0.2679612 1.27456 0.3689944 +0.3158431 1.27456 0.3689944 +0.3689944 1.27456 0.3689944 +0.4282948 1.27456 0.3689944 +0.494694 1.27456 0.3689944 +0.5692344 1.27456 0.3689944 +0.6530715 1.27456 0.3689944 +0.7474945 1.27456 0.3689944 +0.8539475 1.27456 0.3689944 +0.974052 1.27456 0.3689944 +1.113885 1.27456 0.3689944 +1.27456 1.27456 0.3689944 +1.458117 1.27456 0.3689944 +1.667858 1.27456 0.3689944 +1.907556 1.27456 0.3689944 +2.181521 1.27456 0.3689944 +2.494678 1.27456 0.3689944 +2.852659 1.27456 0.3689944 +3.261896 1.27456 0.3689944 +3.729748 1.27456 0.3689944 +4.264621 1.27456 0.3689944 +4.876131 1.27456 0.3689944 +5.575266 1.27456 0.3689944 +6.374593 1.27456 0.3689944 +0 1.458117 0.3689944 +0 1.458117 0.3689944 +0 1.458117 0.3689944 +0.002268731 1.458117 0.3689944 +0.07076883 1.458117 0.3689944 +0.1119241 1.458117 0.3689944 +0.1475052 1.458117 0.3689944 +0.1846606 1.458117 0.3689944 +0.2245119 1.458117 0.3689944 +0.2679612 1.458117 0.3689944 +0.3158431 1.458117 0.3689944 +0.3689944 1.458117 0.3689944 +0.4282948 1.458117 0.3689944 +0.494694 1.458117 0.3689944 +0.5692344 1.458117 0.3689944 +0.6530715 1.458117 0.3689944 +0.7474945 1.458117 0.3689944 +0.8539475 1.458117 0.3689944 +0.974052 1.458117 0.3689944 +1.113885 1.458117 0.3689944 +1.27456 1.458117 0.3689944 +1.458117 1.458117 0.3689944 +1.667858 1.458117 0.3689944 +1.907556 1.458117 0.3689944 +2.181521 1.458117 0.3689944 +2.494678 1.458117 0.3689944 +2.852659 1.458117 0.3689944 +3.261896 1.458117 0.3689944 +3.729748 1.458117 0.3689944 +4.264621 1.458117 0.3689944 +4.876131 1.458117 0.3689944 +5.575266 1.458117 0.3689944 +6.374593 1.458117 0.3689944 +0 1.667858 0.3689944 +0 1.667858 0.3689944 +0 1.667858 0.3689944 +0.002268731 1.667858 0.3689944 +0.07076883 1.667858 0.3689944 +0.1119241 1.667858 0.3689944 +0.1475052 1.667858 0.3689944 +0.1846606 1.667858 0.3689944 +0.2245119 1.667858 0.3689944 +0.2679612 1.667858 0.3689944 +0.3158431 1.667858 0.3689944 +0.3689944 1.667858 0.3689944 +0.4282948 1.667858 0.3689944 +0.494694 1.667858 0.3689944 +0.5692344 1.667858 0.3689944 +0.6530715 1.667858 0.3689944 +0.7474945 1.667858 0.3689944 +0.8539475 1.667858 0.3689944 +0.974052 1.667858 0.3689944 +1.113885 1.667858 0.3689944 +1.27456 1.667858 0.3689944 +1.458117 1.667858 0.3689944 +1.667858 1.667858 0.3689944 +1.907556 1.667858 0.3689944 +2.181521 1.667858 0.3689944 +2.494678 1.667858 0.3689944 +2.852659 1.667858 0.3689944 +3.261896 1.667858 0.3689944 +3.729748 1.667858 0.3689944 +4.264621 1.667858 0.3689944 +4.876131 1.667858 0.3689944 +5.575266 1.667858 0.3689944 +6.374593 1.667858 0.3689944 +0 1.907556 0.3689944 +0 1.907556 0.3689944 +0 1.907556 0.3689944 +0.002268731 1.907556 0.3689944 +0.07076883 1.907556 0.3689944 +0.1119241 1.907556 0.3689944 +0.1475052 1.907556 0.3689944 +0.1846606 1.907556 0.3689944 +0.2245119 1.907556 0.3689944 +0.2679612 1.907556 0.3689944 +0.3158431 1.907556 0.3689944 +0.3689944 1.907556 0.3689944 +0.4282948 1.907556 0.3689944 +0.494694 1.907556 0.3689944 +0.5692344 1.907556 0.3689944 +0.6530715 1.907556 0.3689944 +0.7474945 1.907556 0.3689944 +0.8539475 1.907556 0.3689944 +0.974052 1.907556 0.3689944 +1.113885 1.907556 0.3689944 +1.27456 1.907556 0.3689944 +1.458117 1.907556 0.3689944 +1.667858 1.907556 0.3689944 +1.907556 1.907556 0.3689944 +2.181521 1.907556 0.3689944 +2.494678 1.907556 0.3689944 +2.852659 1.907556 0.3689944 +3.261896 1.907556 0.3689944 +3.729748 1.907556 0.3689944 +4.264621 1.907556 0.3689944 +4.876131 1.907556 0.3689944 +5.575266 1.907556 0.3689944 +6.374593 1.907556 0.3689944 +0 2.181521 0.3689944 +0 2.181521 0.3689944 +0 2.181521 0.3689944 +0.002268731 2.181521 0.3689944 +0.07076883 2.181521 0.3689944 +0.1119241 2.181521 0.3689944 +0.1475052 2.181521 0.3689944 +0.1846606 2.181521 0.3689944 +0.2245119 2.181521 0.3689944 +0.2679612 2.181521 0.3689944 +0.3158431 2.181521 0.3689944 +0.3689944 2.181521 0.3689944 +0.4282948 2.181521 0.3689944 +0.494694 2.181521 0.3689944 +0.5692344 2.181521 0.3689944 +0.6530715 2.181521 0.3689944 +0.7474945 2.181521 0.3689944 +0.8539475 2.181521 0.3689944 +0.974052 2.181521 0.3689944 +1.113885 2.181521 0.3689944 +1.27456 2.181521 0.3689944 +1.458117 2.181521 0.3689944 +1.667858 2.181521 0.3689944 +1.907556 2.181521 0.3689944 +2.181521 2.181521 0.3689944 +2.494678 2.181521 0.3689944 +2.852659 2.181521 0.3689944 +3.261896 2.181521 0.3689944 +3.729748 2.181521 0.3689944 +4.264621 2.181521 0.3689944 +4.876131 2.181521 0.3689944 +5.575266 2.181521 0.3689944 +6.374593 2.181521 0.3689944 +0 2.494678 0.3689944 +0 2.494678 0.3689944 +0 2.494678 0.3689944 +0.002268731 2.494678 0.3689944 +0.07076883 2.494678 0.3689944 +0.1119241 2.494678 0.3689944 +0.1475052 2.494678 0.3689944 +0.1846606 2.494678 0.3689944 +0.2245119 2.494678 0.3689944 +0.2679612 2.494678 0.3689944 +0.3158431 2.494678 0.3689944 +0.3689944 2.494678 0.3689944 +0.4282948 2.494678 0.3689944 +0.494694 2.494678 0.3689944 +0.5692344 2.494678 0.3689944 +0.6530715 2.494678 0.3689944 +0.7474945 2.494678 0.3689944 +0.8539475 2.494678 0.3689944 +0.974052 2.494678 0.3689944 +1.113885 2.494678 0.3689944 +1.27456 2.494678 0.3689944 +1.458117 2.494678 0.3689944 +1.667858 2.494678 0.3689944 +1.907556 2.494678 0.3689944 +2.181521 2.494678 0.3689944 +2.494678 2.494678 0.3689944 +2.852659 2.494678 0.3689944 +3.261896 2.494678 0.3689944 +3.729748 2.494678 0.3689944 +4.264621 2.494678 0.3689944 +4.876131 2.494678 0.3689944 +5.575266 2.494678 0.3689944 +6.374593 2.494678 0.3689944 +0 2.852659 0.3689944 +0 2.852659 0.3689944 +0 2.852659 0.3689944 +0.002268731 2.852659 0.3689944 +0.07076883 2.852659 0.3689944 +0.1119241 2.852659 0.3689944 +0.1475052 2.852659 0.3689944 +0.1846606 2.852659 0.3689944 +0.2245119 2.852659 0.3689944 +0.2679612 2.852659 0.3689944 +0.3158431 2.852659 0.3689944 +0.3689944 2.852659 0.3689944 +0.4282948 2.852659 0.3689944 +0.494694 2.852659 0.3689944 +0.5692344 2.852659 0.3689944 +0.6530715 2.852659 0.3689944 +0.7474945 2.852659 0.3689944 +0.8539475 2.852659 0.3689944 +0.974052 2.852659 0.3689944 +1.113885 2.852659 0.3689944 +1.27456 2.852659 0.3689944 +1.458117 2.852659 0.3689944 +1.667858 2.852659 0.3689944 +1.907556 2.852659 0.3689944 +2.181521 2.852659 0.3689944 +2.494678 2.852659 0.3689944 +2.852659 2.852659 0.3689944 +3.261896 2.852659 0.3689944 +3.729748 2.852659 0.3689944 +4.264621 2.852659 0.3689944 +4.876131 2.852659 0.3689944 +5.575266 2.852659 0.3689944 +6.374593 2.852659 0.3689944 +0 3.261896 0.3689944 +0 3.261896 0.3689944 +0 3.261896 0.3689944 +0.002268731 3.261896 0.3689944 +0.07076883 3.261896 0.3689944 +0.1119241 3.261896 0.3689944 +0.1475052 3.261896 0.3689944 +0.1846606 3.261896 0.3689944 +0.2245119 3.261896 0.3689944 +0.2679612 3.261896 0.3689944 +0.3158431 3.261896 0.3689944 +0.3689944 3.261896 0.3689944 +0.4282948 3.261896 0.3689944 +0.494694 3.261896 0.3689944 +0.5692344 3.261896 0.3689944 +0.6530715 3.261896 0.3689944 +0.7474945 3.261896 0.3689944 +0.8539475 3.261896 0.3689944 +0.974052 3.261896 0.3689944 +1.113885 3.261896 0.3689944 +1.27456 3.261896 0.3689944 +1.458117 3.261896 0.3689944 +1.667858 3.261896 0.3689944 +1.907556 3.261896 0.3689944 +2.181521 3.261896 0.3689944 +2.494678 3.261896 0.3689944 +2.852659 3.261896 0.3689944 +3.261896 3.261896 0.3689944 +3.729748 3.261896 0.3689944 +4.264621 3.261896 0.3689944 +4.876131 3.261896 0.3689944 +5.575266 3.261896 0.3689944 +6.374593 3.261896 0.3689944 +0 3.729748 0.3689944 +0 3.729748 0.3689944 +0 3.729748 0.3689944 +0.002268731 3.729748 0.3689944 +0.07076883 3.729748 0.3689944 +0.1119241 3.729748 0.3689944 +0.1475052 3.729748 0.3689944 +0.1846606 3.729748 0.3689944 +0.2245119 3.729748 0.3689944 +0.2679612 3.729748 0.3689944 +0.3158431 3.729748 0.3689944 +0.3689944 3.729748 0.3689944 +0.4282948 3.729748 0.3689944 +0.494694 3.729748 0.3689944 +0.5692344 3.729748 0.3689944 +0.6530715 3.729748 0.3689944 +0.7474945 3.729748 0.3689944 +0.8539475 3.729748 0.3689944 +0.974052 3.729748 0.3689944 +1.113885 3.729748 0.3689944 +1.27456 3.729748 0.3689944 +1.458117 3.729748 0.3689944 +1.667858 3.729748 0.3689944 +1.907556 3.729748 0.3689944 +2.181521 3.729748 0.3689944 +2.494678 3.729748 0.3689944 +2.852659 3.729748 0.3689944 +3.261896 3.729748 0.3689944 +3.729748 3.729748 0.3689944 +4.264621 3.729748 0.3689944 +4.876131 3.729748 0.3689944 +5.575266 3.729748 0.3689944 +6.374593 3.729748 0.3689944 +0 4.264621 0.3689944 +0 4.264621 0.3689944 +0 4.264621 0.3689944 +0.002268731 4.264621 0.3689944 +0.07076883 4.264621 0.3689944 +0.1119241 4.264621 0.3689944 +0.1475052 4.264621 0.3689944 +0.1846606 4.264621 0.3689944 +0.2245119 4.264621 0.3689944 +0.2679612 4.264621 0.3689944 +0.3158431 4.264621 0.3689944 +0.3689944 4.264621 0.3689944 +0.4282948 4.264621 0.3689944 +0.494694 4.264621 0.3689944 +0.5692344 4.264621 0.3689944 +0.6530715 4.264621 0.3689944 +0.7474945 4.264621 0.3689944 +0.8539475 4.264621 0.3689944 +0.974052 4.264621 0.3689944 +1.113885 4.264621 0.3689944 +1.27456 4.264621 0.3689944 +1.458117 4.264621 0.3689944 +1.667858 4.264621 0.3689944 +1.907556 4.264621 0.3689944 +2.181521 4.264621 0.3689944 +2.494678 4.264621 0.3689944 +2.852659 4.264621 0.3689944 +3.261896 4.264621 0.3689944 +3.729748 4.264621 0.3689944 +4.264621 4.264621 0.3689944 +4.876131 4.264621 0.3689944 +5.575266 4.264621 0.3689944 +6.374593 4.264621 0.3689944 +0 4.876131 0.3689944 +0 4.876131 0.3689944 +0 4.876131 0.3689944 +0.002268731 4.876131 0.3689944 +0.07076883 4.876131 0.3689944 +0.1119241 4.876131 0.3689944 +0.1475052 4.876131 0.3689944 +0.1846606 4.876131 0.3689944 +0.2245119 4.876131 0.3689944 +0.2679612 4.876131 0.3689944 +0.3158431 4.876131 0.3689944 +0.3689944 4.876131 0.3689944 +0.4282948 4.876131 0.3689944 +0.494694 4.876131 0.3689944 +0.5692344 4.876131 0.3689944 +0.6530715 4.876131 0.3689944 +0.7474945 4.876131 0.3689944 +0.8539475 4.876131 0.3689944 +0.974052 4.876131 0.3689944 +1.113885 4.876131 0.3689944 +1.27456 4.876131 0.3689944 +1.458117 4.876131 0.3689944 +1.667858 4.876131 0.3689944 +1.907556 4.876131 0.3689944 +2.181521 4.876131 0.3689944 +2.494678 4.876131 0.3689944 +2.852659 4.876131 0.3689944 +3.261896 4.876131 0.3689944 +3.729748 4.876131 0.3689944 +4.264621 4.876131 0.3689944 +4.876131 4.876131 0.3689944 +5.575266 4.876131 0.3689944 +6.374593 4.876131 0.3689944 +0 5.575266 0.3689944 +0 5.575266 0.3689944 +0 5.575266 0.3689944 +0.002268731 5.575266 0.3689944 +0.07076883 5.575266 0.3689944 +0.1119241 5.575266 0.3689944 +0.1475052 5.575266 0.3689944 +0.1846606 5.575266 0.3689944 +0.2245119 5.575266 0.3689944 +0.2679612 5.575266 0.3689944 +0.3158431 5.575266 0.3689944 +0.3689944 5.575266 0.3689944 +0.4282948 5.575266 0.3689944 +0.494694 5.575266 0.3689944 +0.5692344 5.575266 0.3689944 +0.6530715 5.575266 0.3689944 +0.7474945 5.575266 0.3689944 +0.8539475 5.575266 0.3689944 +0.974052 5.575266 0.3689944 +1.113885 5.575266 0.3689944 +1.27456 5.575266 0.3689944 +1.458117 5.575266 0.3689944 +1.667858 5.575266 0.3689944 +1.907556 5.575266 0.3689944 +2.181521 5.575266 0.3689944 +2.494678 5.575266 0.3689944 +2.852659 5.575266 0.3689944 +3.261896 5.575266 0.3689944 +3.729748 5.575266 0.3689944 +4.264621 5.575266 0.3689944 +4.876131 5.575266 0.3689944 +5.575266 5.575266 0.3689944 +6.374593 5.575266 0.3689944 +0 6.374593 0.3689944 +0 6.374593 0.3689944 +0 6.374593 0.3689944 +0.002268731 6.374593 0.3689944 +0.07076883 6.374593 0.3689944 +0.1119241 6.374593 0.3689944 +0.1475052 6.374593 0.3689944 +0.1846606 6.374593 0.3689944 +0.2245119 6.374593 0.3689944 +0.2679612 6.374593 0.3689944 +0.3158431 6.374593 0.3689944 +0.3689944 6.374593 0.3689944 +0.4282948 6.374593 0.3689944 +0.494694 6.374593 0.3689944 +0.5692344 6.374593 0.3689944 +0.6530715 6.374593 0.3689944 +0.7474945 6.374593 0.3689944 +0.8539475 6.374593 0.3689944 +0.974052 6.374593 0.3689944 +1.113885 6.374593 0.3689944 +1.27456 6.374593 0.3689944 +1.458117 6.374593 0.3689944 +1.667858 6.374593 0.3689944 +1.907556 6.374593 0.3689944 +2.181521 6.374593 0.3689944 +2.494678 6.374593 0.3689944 +2.852659 6.374593 0.3689944 +3.261896 6.374593 0.3689944 +3.729748 6.374593 0.3689944 +4.264621 6.374593 0.3689944 +4.876131 6.374593 0.3689944 +5.575266 6.374593 0.3689944 +6.374593 6.374593 0.3689944 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0.002268731 0.4282948 +0 0.002268731 0.4282948 +0 0.002268731 0.4282948 +0.002268731 0.002268731 0.4282948 +0.07076883 0.002268731 0.4282948 +0.1119241 0.002268731 0.4282948 +0.1475052 0.002268731 0.4282948 +0.1846606 0.002268731 0.4282948 +0.2245119 0.002268731 0.4282948 +0.2679612 0.002268731 0.4282948 +0.3158431 0.002268731 0.4282948 +0.3689944 0.002268731 0.4282948 +0.4282948 0.002268731 0.4282948 +0.494694 0.002268731 0.4282948 +0.5692344 0.002268731 0.4282948 +0.6530715 0.002268731 0.4282948 +0.7474945 0.002268731 0.4282948 +0.8539475 0.002268731 0.4282948 +0.974052 0.002268731 0.4282948 +1.113885 0.002268731 0.4282948 +1.27456 0.002268731 0.4282948 +1.458117 0.002268731 0.4282948 +1.667858 0.002268731 0.4282948 +1.907556 0.002268731 0.4282948 +2.181521 0.002268731 0.4282948 +2.494678 0.002268731 0.4282948 +2.852659 0.002268731 0.4282948 +3.261896 0.002268731 0.4282948 +3.729748 0.002268731 0.4282948 +4.264621 0.002268731 0.4282948 +4.876131 0.002268731 0.4282948 +5.575266 0.002268731 0.4282948 +6.374593 0.002268731 0.4282948 +0 0.07076883 0.4282948 +0 0.07076883 0.4282948 +0 0.07076883 0.4282948 +0.002268731 0.07076883 0.4282948 +0.07076883 0.07076883 0.4282948 +0.1119241 0.07076883 0.4282948 +0.1475052 0.07076883 0.4282948 +0.1846606 0.07076883 0.4282948 +0.2245119 0.07076883 0.4282948 +0.2679612 0.07076883 0.4282948 +0.3158431 0.07076883 0.4282948 +0.3689944 0.07076883 0.4282948 +0.4282948 0.07076883 0.4282948 +0.494694 0.07076883 0.4282948 +0.5692344 0.07076883 0.4282948 +0.6530715 0.07076883 0.4282948 +0.7474945 0.07076883 0.4282948 +0.8539475 0.07076883 0.4282948 +0.974052 0.07076883 0.4282948 +1.113885 0.07076883 0.4282948 +1.27456 0.07076883 0.4282948 +1.458117 0.07076883 0.4282948 +1.667858 0.07076883 0.4282948 +1.907556 0.07076883 0.4282948 +2.181521 0.07076883 0.4282948 +2.494678 0.07076883 0.4282948 +2.852659 0.07076883 0.4282948 +3.261896 0.07076883 0.4282948 +3.729748 0.07076883 0.4282948 +4.264621 0.07076883 0.4282948 +4.876131 0.07076883 0.4282948 +5.575266 0.07076883 0.4282948 +6.374593 0.07076883 0.4282948 +0 0.1119241 0.4282948 +0 0.1119241 0.4282948 +0 0.1119241 0.4282948 +0.002268731 0.1119241 0.4282948 +0.07076883 0.1119241 0.4282948 +0.1119241 0.1119241 0.4282948 +0.1475052 0.1119241 0.4282948 +0.1846606 0.1119241 0.4282948 +0.2245119 0.1119241 0.4282948 +0.2679612 0.1119241 0.4282948 +0.3158431 0.1119241 0.4282948 +0.3689944 0.1119241 0.4282948 +0.4282948 0.1119241 0.4282948 +0.494694 0.1119241 0.4282948 +0.5692344 0.1119241 0.4282948 +0.6530715 0.1119241 0.4282948 +0.7474945 0.1119241 0.4282948 +0.8539475 0.1119241 0.4282948 +0.974052 0.1119241 0.4282948 +1.113885 0.1119241 0.4282948 +1.27456 0.1119241 0.4282948 +1.458117 0.1119241 0.4282948 +1.667858 0.1119241 0.4282948 +1.907556 0.1119241 0.4282948 +2.181521 0.1119241 0.4282948 +2.494678 0.1119241 0.4282948 +2.852659 0.1119241 0.4282948 +3.261896 0.1119241 0.4282948 +3.729748 0.1119241 0.4282948 +4.264621 0.1119241 0.4282948 +4.876131 0.1119241 0.4282948 +5.575266 0.1119241 0.4282948 +6.374593 0.1119241 0.4282948 +0 0.1475052 0.4282948 +0 0.1475052 0.4282948 +0 0.1475052 0.4282948 +0.002268731 0.1475052 0.4282948 +0.07076883 0.1475052 0.4282948 +0.1119241 0.1475052 0.4282948 +0.1475052 0.1475052 0.4282948 +0.1846606 0.1475052 0.4282948 +0.2245119 0.1475052 0.4282948 +0.2679612 0.1475052 0.4282948 +0.3158431 0.1475052 0.4282948 +0.3689944 0.1475052 0.4282948 +0.4282948 0.1475052 0.4282948 +0.494694 0.1475052 0.4282948 +0.5692344 0.1475052 0.4282948 +0.6530715 0.1475052 0.4282948 +0.7474945 0.1475052 0.4282948 +0.8539475 0.1475052 0.4282948 +0.974052 0.1475052 0.4282948 +1.113885 0.1475052 0.4282948 +1.27456 0.1475052 0.4282948 +1.458117 0.1475052 0.4282948 +1.667858 0.1475052 0.4282948 +1.907556 0.1475052 0.4282948 +2.181521 0.1475052 0.4282948 +2.494678 0.1475052 0.4282948 +2.852659 0.1475052 0.4282948 +3.261896 0.1475052 0.4282948 +3.729748 0.1475052 0.4282948 +4.264621 0.1475052 0.4282948 +4.876131 0.1475052 0.4282948 +5.575266 0.1475052 0.4282948 +6.374593 0.1475052 0.4282948 +0 0.1846606 0.4282948 +0 0.1846606 0.4282948 +0 0.1846606 0.4282948 +0.002268731 0.1846606 0.4282948 +0.07076883 0.1846606 0.4282948 +0.1119241 0.1846606 0.4282948 +0.1475052 0.1846606 0.4282948 +0.1846606 0.1846606 0.4282948 +0.2245119 0.1846606 0.4282948 +0.2679612 0.1846606 0.4282948 +0.3158431 0.1846606 0.4282948 +0.3689944 0.1846606 0.4282948 +0.4282948 0.1846606 0.4282948 +0.494694 0.1846606 0.4282948 +0.5692344 0.1846606 0.4282948 +0.6530715 0.1846606 0.4282948 +0.7474945 0.1846606 0.4282948 +0.8539475 0.1846606 0.4282948 +0.974052 0.1846606 0.4282948 +1.113885 0.1846606 0.4282948 +1.27456 0.1846606 0.4282948 +1.458117 0.1846606 0.4282948 +1.667858 0.1846606 0.4282948 +1.907556 0.1846606 0.4282948 +2.181521 0.1846606 0.4282948 +2.494678 0.1846606 0.4282948 +2.852659 0.1846606 0.4282948 +3.261896 0.1846606 0.4282948 +3.729748 0.1846606 0.4282948 +4.264621 0.1846606 0.4282948 +4.876131 0.1846606 0.4282948 +5.575266 0.1846606 0.4282948 +6.374593 0.1846606 0.4282948 +0 0.2245119 0.4282948 +0 0.2245119 0.4282948 +0 0.2245119 0.4282948 +0.002268731 0.2245119 0.4282948 +0.07076883 0.2245119 0.4282948 +0.1119241 0.2245119 0.4282948 +0.1475052 0.2245119 0.4282948 +0.1846606 0.2245119 0.4282948 +0.2245119 0.2245119 0.4282948 +0.2679612 0.2245119 0.4282948 +0.3158431 0.2245119 0.4282948 +0.3689944 0.2245119 0.4282948 +0.4282948 0.2245119 0.4282948 +0.494694 0.2245119 0.4282948 +0.5692344 0.2245119 0.4282948 +0.6530715 0.2245119 0.4282948 +0.7474945 0.2245119 0.4282948 +0.8539475 0.2245119 0.4282948 +0.974052 0.2245119 0.4282948 +1.113885 0.2245119 0.4282948 +1.27456 0.2245119 0.4282948 +1.458117 0.2245119 0.4282948 +1.667858 0.2245119 0.4282948 +1.907556 0.2245119 0.4282948 +2.181521 0.2245119 0.4282948 +2.494678 0.2245119 0.4282948 +2.852659 0.2245119 0.4282948 +3.261896 0.2245119 0.4282948 +3.729748 0.2245119 0.4282948 +4.264621 0.2245119 0.4282948 +4.876131 0.2245119 0.4282948 +5.575266 0.2245119 0.4282948 +6.374593 0.2245119 0.4282948 +0 0.2679612 0.4282948 +0 0.2679612 0.4282948 +0 0.2679612 0.4282948 +0.002268731 0.2679612 0.4282948 +0.07076883 0.2679612 0.4282948 +0.1119241 0.2679612 0.4282948 +0.1475052 0.2679612 0.4282948 +0.1846606 0.2679612 0.4282948 +0.2245119 0.2679612 0.4282948 +0.2679612 0.2679612 0.4282948 +0.3158431 0.2679612 0.4282948 +0.3689944 0.2679612 0.4282948 +0.4282948 0.2679612 0.4282948 +0.494694 0.2679612 0.4282948 +0.5692344 0.2679612 0.4282948 +0.6530715 0.2679612 0.4282948 +0.7474945 0.2679612 0.4282948 +0.8539475 0.2679612 0.4282948 +0.974052 0.2679612 0.4282948 +1.113885 0.2679612 0.4282948 +1.27456 0.2679612 0.4282948 +1.458117 0.2679612 0.4282948 +1.667858 0.2679612 0.4282948 +1.907556 0.2679612 0.4282948 +2.181521 0.2679612 0.4282948 +2.494678 0.2679612 0.4282948 +2.852659 0.2679612 0.4282948 +3.261896 0.2679612 0.4282948 +3.729748 0.2679612 0.4282948 +4.264621 0.2679612 0.4282948 +4.876131 0.2679612 0.4282948 +5.575266 0.2679612 0.4282948 +6.374593 0.2679612 0.4282948 +0 0.3158431 0.4282948 +0 0.3158431 0.4282948 +0 0.3158431 0.4282948 +0.002268731 0.3158431 0.4282948 +0.07076883 0.3158431 0.4282948 +0.1119241 0.3158431 0.4282948 +0.1475052 0.3158431 0.4282948 +0.1846606 0.3158431 0.4282948 +0.2245119 0.3158431 0.4282948 +0.2679612 0.3158431 0.4282948 +0.3158431 0.3158431 0.4282948 +0.3689944 0.3158431 0.4282948 +0.4282948 0.3158431 0.4282948 +0.494694 0.3158431 0.4282948 +0.5692344 0.3158431 0.4282948 +0.6530715 0.3158431 0.4282948 +0.7474945 0.3158431 0.4282948 +0.8539475 0.3158431 0.4282948 +0.974052 0.3158431 0.4282948 +1.113885 0.3158431 0.4282948 +1.27456 0.3158431 0.4282948 +1.458117 0.3158431 0.4282948 +1.667858 0.3158431 0.4282948 +1.907556 0.3158431 0.4282948 +2.181521 0.3158431 0.4282948 +2.494678 0.3158431 0.4282948 +2.852659 0.3158431 0.4282948 +3.261896 0.3158431 0.4282948 +3.729748 0.3158431 0.4282948 +4.264621 0.3158431 0.4282948 +4.876131 0.3158431 0.4282948 +5.575266 0.3158431 0.4282948 +6.374593 0.3158431 0.4282948 +0 0.3689944 0.4282948 +0 0.3689944 0.4282948 +0 0.3689944 0.4282948 +0.002268731 0.3689944 0.4282948 +0.07076883 0.3689944 0.4282948 +0.1119241 0.3689944 0.4282948 +0.1475052 0.3689944 0.4282948 +0.1846606 0.3689944 0.4282948 +0.2245119 0.3689944 0.4282948 +0.2679612 0.3689944 0.4282948 +0.3158431 0.3689944 0.4282948 +0.3689944 0.3689944 0.4282948 +0.4282948 0.3689944 0.4282948 +0.494694 0.3689944 0.4282948 +0.5692344 0.3689944 0.4282948 +0.6530715 0.3689944 0.4282948 +0.7474945 0.3689944 0.4282948 +0.8539475 0.3689944 0.4282948 +0.974052 0.3689944 0.4282948 +1.113885 0.3689944 0.4282948 +1.27456 0.3689944 0.4282948 +1.458117 0.3689944 0.4282948 +1.667858 0.3689944 0.4282948 +1.907556 0.3689944 0.4282948 +2.181521 0.3689944 0.4282948 +2.494678 0.3689944 0.4282948 +2.852659 0.3689944 0.4282948 +3.261896 0.3689944 0.4282948 +3.729748 0.3689944 0.4282948 +4.264621 0.3689944 0.4282948 +4.876131 0.3689944 0.4282948 +5.575266 0.3689944 0.4282948 +6.374593 0.3689944 0.4282948 +0 0.4282948 0.4282948 +0 0.4282948 0.4282948 +0 0.4282948 0.4282948 +0.002268731 0.4282948 0.4282948 +0.07076883 0.4282948 0.4282948 +0.1119241 0.4282948 0.4282948 +0.1475052 0.4282948 0.4282948 +0.1846606 0.4282948 0.4282948 +0.2245119 0.4282948 0.4282948 +0.2679612 0.4282948 0.4282948 +0.3158431 0.4282948 0.4282948 +0.3689944 0.4282948 0.4282948 +0.4282948 0.4282948 0.4282948 +0.494694 0.4282948 0.4282948 +0.5692344 0.4282948 0.4282948 +0.6530715 0.4282948 0.4282948 +0.7474945 0.4282948 0.4282948 +0.8539475 0.4282948 0.4282948 +0.974052 0.4282948 0.4282948 +1.113885 0.4282948 0.4282948 +1.27456 0.4282948 0.4282948 +1.458117 0.4282948 0.4282948 +1.667858 0.4282948 0.4282948 +1.907556 0.4282948 0.4282948 +2.181521 0.4282948 0.4282948 +2.494678 0.4282948 0.4282948 +2.852659 0.4282948 0.4282948 +3.261896 0.4282948 0.4282948 +3.729748 0.4282948 0.4282948 +4.264621 0.4282948 0.4282948 +4.876131 0.4282948 0.4282948 +5.575266 0.4282948 0.4282948 +6.374593 0.4282948 0.4282948 +0 0.494694 0.4282948 +0 0.494694 0.4282948 +0 0.494694 0.4282948 +0.002268731 0.494694 0.4282948 +0.07076883 0.494694 0.4282948 +0.1119241 0.494694 0.4282948 +0.1475052 0.494694 0.4282948 +0.1846606 0.494694 0.4282948 +0.2245119 0.494694 0.4282948 +0.2679612 0.494694 0.4282948 +0.3158431 0.494694 0.4282948 +0.3689944 0.494694 0.4282948 +0.4282948 0.494694 0.4282948 +0.494694 0.494694 0.4282948 +0.5692344 0.494694 0.4282948 +0.6530715 0.494694 0.4282948 +0.7474945 0.494694 0.4282948 +0.8539475 0.494694 0.4282948 +0.974052 0.494694 0.4282948 +1.113885 0.494694 0.4282948 +1.27456 0.494694 0.4282948 +1.458117 0.494694 0.4282948 +1.667858 0.494694 0.4282948 +1.907556 0.494694 0.4282948 +2.181521 0.494694 0.4282948 +2.494678 0.494694 0.4282948 +2.852659 0.494694 0.4282948 +3.261896 0.494694 0.4282948 +3.729748 0.494694 0.4282948 +4.264621 0.494694 0.4282948 +4.876131 0.494694 0.4282948 +5.575266 0.494694 0.4282948 +6.374593 0.494694 0.4282948 +0 0.5692344 0.4282948 +0 0.5692344 0.4282948 +0 0.5692344 0.4282948 +0.002268731 0.5692344 0.4282948 +0.07076883 0.5692344 0.4282948 +0.1119241 0.5692344 0.4282948 +0.1475052 0.5692344 0.4282948 +0.1846606 0.5692344 0.4282948 +0.2245119 0.5692344 0.4282948 +0.2679612 0.5692344 0.4282948 +0.3158431 0.5692344 0.4282948 +0.3689944 0.5692344 0.4282948 +0.4282948 0.5692344 0.4282948 +0.494694 0.5692344 0.4282948 +0.5692344 0.5692344 0.4282948 +0.6530715 0.5692344 0.4282948 +0.7474945 0.5692344 0.4282948 +0.8539475 0.5692344 0.4282948 +0.974052 0.5692344 0.4282948 +1.113885 0.5692344 0.4282948 +1.27456 0.5692344 0.4282948 +1.458117 0.5692344 0.4282948 +1.667858 0.5692344 0.4282948 +1.907556 0.5692344 0.4282948 +2.181521 0.5692344 0.4282948 +2.494678 0.5692344 0.4282948 +2.852659 0.5692344 0.4282948 +3.261896 0.5692344 0.4282948 +3.729748 0.5692344 0.4282948 +4.264621 0.5692344 0.4282948 +4.876131 0.5692344 0.4282948 +5.575266 0.5692344 0.4282948 +6.374593 0.5692344 0.4282948 +0 0.6530715 0.4282948 +0 0.6530715 0.4282948 +0 0.6530715 0.4282948 +0.002268731 0.6530715 0.4282948 +0.07076883 0.6530715 0.4282948 +0.1119241 0.6530715 0.4282948 +0.1475052 0.6530715 0.4282948 +0.1846606 0.6530715 0.4282948 +0.2245119 0.6530715 0.4282948 +0.2679612 0.6530715 0.4282948 +0.3158431 0.6530715 0.4282948 +0.3689944 0.6530715 0.4282948 +0.4282948 0.6530715 0.4282948 +0.494694 0.6530715 0.4282948 +0.5692344 0.6530715 0.4282948 +0.6530715 0.6530715 0.4282948 +0.7474945 0.6530715 0.4282948 +0.8539475 0.6530715 0.4282948 +0.974052 0.6530715 0.4282948 +1.113885 0.6530715 0.4282948 +1.27456 0.6530715 0.4282948 +1.458117 0.6530715 0.4282948 +1.667858 0.6530715 0.4282948 +1.907556 0.6530715 0.4282948 +2.181521 0.6530715 0.4282948 +2.494678 0.6530715 0.4282948 +2.852659 0.6530715 0.4282948 +3.261896 0.6530715 0.4282948 +3.729748 0.6530715 0.4282948 +4.264621 0.6530715 0.4282948 +4.876131 0.6530715 0.4282948 +5.575266 0.6530715 0.4282948 +6.374593 0.6530715 0.4282948 +0 0.7474945 0.4282948 +0 0.7474945 0.4282948 +0 0.7474945 0.4282948 +0.002268731 0.7474945 0.4282948 +0.07076883 0.7474945 0.4282948 +0.1119241 0.7474945 0.4282948 +0.1475052 0.7474945 0.4282948 +0.1846606 0.7474945 0.4282948 +0.2245119 0.7474945 0.4282948 +0.2679612 0.7474945 0.4282948 +0.3158431 0.7474945 0.4282948 +0.3689944 0.7474945 0.4282948 +0.4282948 0.7474945 0.4282948 +0.494694 0.7474945 0.4282948 +0.5692344 0.7474945 0.4282948 +0.6530715 0.7474945 0.4282948 +0.7474945 0.7474945 0.4282948 +0.8539475 0.7474945 0.4282948 +0.974052 0.7474945 0.4282948 +1.113885 0.7474945 0.4282948 +1.27456 0.7474945 0.4282948 +1.458117 0.7474945 0.4282948 +1.667858 0.7474945 0.4282948 +1.907556 0.7474945 0.4282948 +2.181521 0.7474945 0.4282948 +2.494678 0.7474945 0.4282948 +2.852659 0.7474945 0.4282948 +3.261896 0.7474945 0.4282948 +3.729748 0.7474945 0.4282948 +4.264621 0.7474945 0.4282948 +4.876131 0.7474945 0.4282948 +5.575266 0.7474945 0.4282948 +6.374593 0.7474945 0.4282948 +0 0.8539475 0.4282948 +0 0.8539475 0.4282948 +0 0.8539475 0.4282948 +0.002268731 0.8539475 0.4282948 +0.07076883 0.8539475 0.4282948 +0.1119241 0.8539475 0.4282948 +0.1475052 0.8539475 0.4282948 +0.1846606 0.8539475 0.4282948 +0.2245119 0.8539475 0.4282948 +0.2679612 0.8539475 0.4282948 +0.3158431 0.8539475 0.4282948 +0.3689944 0.8539475 0.4282948 +0.4282948 0.8539475 0.4282948 +0.494694 0.8539475 0.4282948 +0.5692344 0.8539475 0.4282948 +0.6530715 0.8539475 0.4282948 +0.7474945 0.8539475 0.4282948 +0.8539475 0.8539475 0.4282948 +0.974052 0.8539475 0.4282948 +1.113885 0.8539475 0.4282948 +1.27456 0.8539475 0.4282948 +1.458117 0.8539475 0.4282948 +1.667858 0.8539475 0.4282948 +1.907556 0.8539475 0.4282948 +2.181521 0.8539475 0.4282948 +2.494678 0.8539475 0.4282948 +2.852659 0.8539475 0.4282948 +3.261896 0.8539475 0.4282948 +3.729748 0.8539475 0.4282948 +4.264621 0.8539475 0.4282948 +4.876131 0.8539475 0.4282948 +5.575266 0.8539475 0.4282948 +6.374593 0.8539475 0.4282948 +0 0.974052 0.4282948 +0 0.974052 0.4282948 +0 0.974052 0.4282948 +0.002268731 0.974052 0.4282948 +0.07076883 0.974052 0.4282948 +0.1119241 0.974052 0.4282948 +0.1475052 0.974052 0.4282948 +0.1846606 0.974052 0.4282948 +0.2245119 0.974052 0.4282948 +0.2679612 0.974052 0.4282948 +0.3158431 0.974052 0.4282948 +0.3689944 0.974052 0.4282948 +0.4282948 0.974052 0.4282948 +0.494694 0.974052 0.4282948 +0.5692344 0.974052 0.4282948 +0.6530715 0.974052 0.4282948 +0.7474945 0.974052 0.4282948 +0.8539475 0.974052 0.4282948 +0.974052 0.974052 0.4282948 +1.113885 0.974052 0.4282948 +1.27456 0.974052 0.4282948 +1.458117 0.974052 0.4282948 +1.667858 0.974052 0.4282948 +1.907556 0.974052 0.4282948 +2.181521 0.974052 0.4282948 +2.494678 0.974052 0.4282948 +2.852659 0.974052 0.4282948 +3.261896 0.974052 0.4282948 +3.729748 0.974052 0.4282948 +4.264621 0.974052 0.4282948 +4.876131 0.974052 0.4282948 +5.575266 0.974052 0.4282948 +6.374593 0.974052 0.4282948 +0 1.113885 0.4282948 +0 1.113885 0.4282948 +0 1.113885 0.4282948 +0.002268731 1.113885 0.4282948 +0.07076883 1.113885 0.4282948 +0.1119241 1.113885 0.4282948 +0.1475052 1.113885 0.4282948 +0.1846606 1.113885 0.4282948 +0.2245119 1.113885 0.4282948 +0.2679612 1.113885 0.4282948 +0.3158431 1.113885 0.4282948 +0.3689944 1.113885 0.4282948 +0.4282948 1.113885 0.4282948 +0.494694 1.113885 0.4282948 +0.5692344 1.113885 0.4282948 +0.6530715 1.113885 0.4282948 +0.7474945 1.113885 0.4282948 +0.8539475 1.113885 0.4282948 +0.974052 1.113885 0.4282948 +1.113885 1.113885 0.4282948 +1.27456 1.113885 0.4282948 +1.458117 1.113885 0.4282948 +1.667858 1.113885 0.4282948 +1.907556 1.113885 0.4282948 +2.181521 1.113885 0.4282948 +2.494678 1.113885 0.4282948 +2.852659 1.113885 0.4282948 +3.261896 1.113885 0.4282948 +3.729748 1.113885 0.4282948 +4.264621 1.113885 0.4282948 +4.876131 1.113885 0.4282948 +5.575266 1.113885 0.4282948 +6.374593 1.113885 0.4282948 +0 1.27456 0.4282948 +0 1.27456 0.4282948 +0 1.27456 0.4282948 +0.002268731 1.27456 0.4282948 +0.07076883 1.27456 0.4282948 +0.1119241 1.27456 0.4282948 +0.1475052 1.27456 0.4282948 +0.1846606 1.27456 0.4282948 +0.2245119 1.27456 0.4282948 +0.2679612 1.27456 0.4282948 +0.3158431 1.27456 0.4282948 +0.3689944 1.27456 0.4282948 +0.4282948 1.27456 0.4282948 +0.494694 1.27456 0.4282948 +0.5692344 1.27456 0.4282948 +0.6530715 1.27456 0.4282948 +0.7474945 1.27456 0.4282948 +0.8539475 1.27456 0.4282948 +0.974052 1.27456 0.4282948 +1.113885 1.27456 0.4282948 +1.27456 1.27456 0.4282948 +1.458117 1.27456 0.4282948 +1.667858 1.27456 0.4282948 +1.907556 1.27456 0.4282948 +2.181521 1.27456 0.4282948 +2.494678 1.27456 0.4282948 +2.852659 1.27456 0.4282948 +3.261896 1.27456 0.4282948 +3.729748 1.27456 0.4282948 +4.264621 1.27456 0.4282948 +4.876131 1.27456 0.4282948 +5.575266 1.27456 0.4282948 +6.374593 1.27456 0.4282948 +0 1.458117 0.4282948 +0 1.458117 0.4282948 +0 1.458117 0.4282948 +0.002268731 1.458117 0.4282948 +0.07076883 1.458117 0.4282948 +0.1119241 1.458117 0.4282948 +0.1475052 1.458117 0.4282948 +0.1846606 1.458117 0.4282948 +0.2245119 1.458117 0.4282948 +0.2679612 1.458117 0.4282948 +0.3158431 1.458117 0.4282948 +0.3689944 1.458117 0.4282948 +0.4282948 1.458117 0.4282948 +0.494694 1.458117 0.4282948 +0.5692344 1.458117 0.4282948 +0.6530715 1.458117 0.4282948 +0.7474945 1.458117 0.4282948 +0.8539475 1.458117 0.4282948 +0.974052 1.458117 0.4282948 +1.113885 1.458117 0.4282948 +1.27456 1.458117 0.4282948 +1.458117 1.458117 0.4282948 +1.667858 1.458117 0.4282948 +1.907556 1.458117 0.4282948 +2.181521 1.458117 0.4282948 +2.494678 1.458117 0.4282948 +2.852659 1.458117 0.4282948 +3.261896 1.458117 0.4282948 +3.729748 1.458117 0.4282948 +4.264621 1.458117 0.4282948 +4.876131 1.458117 0.4282948 +5.575266 1.458117 0.4282948 +6.374593 1.458117 0.4282948 +0 1.667858 0.4282948 +0 1.667858 0.4282948 +0 1.667858 0.4282948 +0.002268731 1.667858 0.4282948 +0.07076883 1.667858 0.4282948 +0.1119241 1.667858 0.4282948 +0.1475052 1.667858 0.4282948 +0.1846606 1.667858 0.4282948 +0.2245119 1.667858 0.4282948 +0.2679612 1.667858 0.4282948 +0.3158431 1.667858 0.4282948 +0.3689944 1.667858 0.4282948 +0.4282948 1.667858 0.4282948 +0.494694 1.667858 0.4282948 +0.5692344 1.667858 0.4282948 +0.6530715 1.667858 0.4282948 +0.7474945 1.667858 0.4282948 +0.8539475 1.667858 0.4282948 +0.974052 1.667858 0.4282948 +1.113885 1.667858 0.4282948 +1.27456 1.667858 0.4282948 +1.458117 1.667858 0.4282948 +1.667858 1.667858 0.4282948 +1.907556 1.667858 0.4282948 +2.181521 1.667858 0.4282948 +2.494678 1.667858 0.4282948 +2.852659 1.667858 0.4282948 +3.261896 1.667858 0.4282948 +3.729748 1.667858 0.4282948 +4.264621 1.667858 0.4282948 +4.876131 1.667858 0.4282948 +5.575266 1.667858 0.4282948 +6.374593 1.667858 0.4282948 +0 1.907556 0.4282948 +0 1.907556 0.4282948 +0 1.907556 0.4282948 +0.002268731 1.907556 0.4282948 +0.07076883 1.907556 0.4282948 +0.1119241 1.907556 0.4282948 +0.1475052 1.907556 0.4282948 +0.1846606 1.907556 0.4282948 +0.2245119 1.907556 0.4282948 +0.2679612 1.907556 0.4282948 +0.3158431 1.907556 0.4282948 +0.3689944 1.907556 0.4282948 +0.4282948 1.907556 0.4282948 +0.494694 1.907556 0.4282948 +0.5692344 1.907556 0.4282948 +0.6530715 1.907556 0.4282948 +0.7474945 1.907556 0.4282948 +0.8539475 1.907556 0.4282948 +0.974052 1.907556 0.4282948 +1.113885 1.907556 0.4282948 +1.27456 1.907556 0.4282948 +1.458117 1.907556 0.4282948 +1.667858 1.907556 0.4282948 +1.907556 1.907556 0.4282948 +2.181521 1.907556 0.4282948 +2.494678 1.907556 0.4282948 +2.852659 1.907556 0.4282948 +3.261896 1.907556 0.4282948 +3.729748 1.907556 0.4282948 +4.264621 1.907556 0.4282948 +4.876131 1.907556 0.4282948 +5.575266 1.907556 0.4282948 +6.374593 1.907556 0.4282948 +0 2.181521 0.4282948 +0 2.181521 0.4282948 +0 2.181521 0.4282948 +0.002268731 2.181521 0.4282948 +0.07076883 2.181521 0.4282948 +0.1119241 2.181521 0.4282948 +0.1475052 2.181521 0.4282948 +0.1846606 2.181521 0.4282948 +0.2245119 2.181521 0.4282948 +0.2679612 2.181521 0.4282948 +0.3158431 2.181521 0.4282948 +0.3689944 2.181521 0.4282948 +0.4282948 2.181521 0.4282948 +0.494694 2.181521 0.4282948 +0.5692344 2.181521 0.4282948 +0.6530715 2.181521 0.4282948 +0.7474945 2.181521 0.4282948 +0.8539475 2.181521 0.4282948 +0.974052 2.181521 0.4282948 +1.113885 2.181521 0.4282948 +1.27456 2.181521 0.4282948 +1.458117 2.181521 0.4282948 +1.667858 2.181521 0.4282948 +1.907556 2.181521 0.4282948 +2.181521 2.181521 0.4282948 +2.494678 2.181521 0.4282948 +2.852659 2.181521 0.4282948 +3.261896 2.181521 0.4282948 +3.729748 2.181521 0.4282948 +4.264621 2.181521 0.4282948 +4.876131 2.181521 0.4282948 +5.575266 2.181521 0.4282948 +6.374593 2.181521 0.4282948 +0 2.494678 0.4282948 +0 2.494678 0.4282948 +0 2.494678 0.4282948 +0.002268731 2.494678 0.4282948 +0.07076883 2.494678 0.4282948 +0.1119241 2.494678 0.4282948 +0.1475052 2.494678 0.4282948 +0.1846606 2.494678 0.4282948 +0.2245119 2.494678 0.4282948 +0.2679612 2.494678 0.4282948 +0.3158431 2.494678 0.4282948 +0.3689944 2.494678 0.4282948 +0.4282948 2.494678 0.4282948 +0.494694 2.494678 0.4282948 +0.5692344 2.494678 0.4282948 +0.6530715 2.494678 0.4282948 +0.7474945 2.494678 0.4282948 +0.8539475 2.494678 0.4282948 +0.974052 2.494678 0.4282948 +1.113885 2.494678 0.4282948 +1.27456 2.494678 0.4282948 +1.458117 2.494678 0.4282948 +1.667858 2.494678 0.4282948 +1.907556 2.494678 0.4282948 +2.181521 2.494678 0.4282948 +2.494678 2.494678 0.4282948 +2.852659 2.494678 0.4282948 +3.261896 2.494678 0.4282948 +3.729748 2.494678 0.4282948 +4.264621 2.494678 0.4282948 +4.876131 2.494678 0.4282948 +5.575266 2.494678 0.4282948 +6.374593 2.494678 0.4282948 +0 2.852659 0.4282948 +0 2.852659 0.4282948 +0 2.852659 0.4282948 +0.002268731 2.852659 0.4282948 +0.07076883 2.852659 0.4282948 +0.1119241 2.852659 0.4282948 +0.1475052 2.852659 0.4282948 +0.1846606 2.852659 0.4282948 +0.2245119 2.852659 0.4282948 +0.2679612 2.852659 0.4282948 +0.3158431 2.852659 0.4282948 +0.3689944 2.852659 0.4282948 +0.4282948 2.852659 0.4282948 +0.494694 2.852659 0.4282948 +0.5692344 2.852659 0.4282948 +0.6530715 2.852659 0.4282948 +0.7474945 2.852659 0.4282948 +0.8539475 2.852659 0.4282948 +0.974052 2.852659 0.4282948 +1.113885 2.852659 0.4282948 +1.27456 2.852659 0.4282948 +1.458117 2.852659 0.4282948 +1.667858 2.852659 0.4282948 +1.907556 2.852659 0.4282948 +2.181521 2.852659 0.4282948 +2.494678 2.852659 0.4282948 +2.852659 2.852659 0.4282948 +3.261896 2.852659 0.4282948 +3.729748 2.852659 0.4282948 +4.264621 2.852659 0.4282948 +4.876131 2.852659 0.4282948 +5.575266 2.852659 0.4282948 +6.374593 2.852659 0.4282948 +0 3.261896 0.4282948 +0 3.261896 0.4282948 +0 3.261896 0.4282948 +0.002268731 3.261896 0.4282948 +0.07076883 3.261896 0.4282948 +0.1119241 3.261896 0.4282948 +0.1475052 3.261896 0.4282948 +0.1846606 3.261896 0.4282948 +0.2245119 3.261896 0.4282948 +0.2679612 3.261896 0.4282948 +0.3158431 3.261896 0.4282948 +0.3689944 3.261896 0.4282948 +0.4282948 3.261896 0.4282948 +0.494694 3.261896 0.4282948 +0.5692344 3.261896 0.4282948 +0.6530715 3.261896 0.4282948 +0.7474945 3.261896 0.4282948 +0.8539475 3.261896 0.4282948 +0.974052 3.261896 0.4282948 +1.113885 3.261896 0.4282948 +1.27456 3.261896 0.4282948 +1.458117 3.261896 0.4282948 +1.667858 3.261896 0.4282948 +1.907556 3.261896 0.4282948 +2.181521 3.261896 0.4282948 +2.494678 3.261896 0.4282948 +2.852659 3.261896 0.4282948 +3.261896 3.261896 0.4282948 +3.729748 3.261896 0.4282948 +4.264621 3.261896 0.4282948 +4.876131 3.261896 0.4282948 +5.575266 3.261896 0.4282948 +6.374593 3.261896 0.4282948 +0 3.729748 0.4282948 +0 3.729748 0.4282948 +0 3.729748 0.4282948 +0.002268731 3.729748 0.4282948 +0.07076883 3.729748 0.4282948 +0.1119241 3.729748 0.4282948 +0.1475052 3.729748 0.4282948 +0.1846606 3.729748 0.4282948 +0.2245119 3.729748 0.4282948 +0.2679612 3.729748 0.4282948 +0.3158431 3.729748 0.4282948 +0.3689944 3.729748 0.4282948 +0.4282948 3.729748 0.4282948 +0.494694 3.729748 0.4282948 +0.5692344 3.729748 0.4282948 +0.6530715 3.729748 0.4282948 +0.7474945 3.729748 0.4282948 +0.8539475 3.729748 0.4282948 +0.974052 3.729748 0.4282948 +1.113885 3.729748 0.4282948 +1.27456 3.729748 0.4282948 +1.458117 3.729748 0.4282948 +1.667858 3.729748 0.4282948 +1.907556 3.729748 0.4282948 +2.181521 3.729748 0.4282948 +2.494678 3.729748 0.4282948 +2.852659 3.729748 0.4282948 +3.261896 3.729748 0.4282948 +3.729748 3.729748 0.4282948 +4.264621 3.729748 0.4282948 +4.876131 3.729748 0.4282948 +5.575266 3.729748 0.4282948 +6.374593 3.729748 0.4282948 +0 4.264621 0.4282948 +0 4.264621 0.4282948 +0 4.264621 0.4282948 +0.002268731 4.264621 0.4282948 +0.07076883 4.264621 0.4282948 +0.1119241 4.264621 0.4282948 +0.1475052 4.264621 0.4282948 +0.1846606 4.264621 0.4282948 +0.2245119 4.264621 0.4282948 +0.2679612 4.264621 0.4282948 +0.3158431 4.264621 0.4282948 +0.3689944 4.264621 0.4282948 +0.4282948 4.264621 0.4282948 +0.494694 4.264621 0.4282948 +0.5692344 4.264621 0.4282948 +0.6530715 4.264621 0.4282948 +0.7474945 4.264621 0.4282948 +0.8539475 4.264621 0.4282948 +0.974052 4.264621 0.4282948 +1.113885 4.264621 0.4282948 +1.27456 4.264621 0.4282948 +1.458117 4.264621 0.4282948 +1.667858 4.264621 0.4282948 +1.907556 4.264621 0.4282948 +2.181521 4.264621 0.4282948 +2.494678 4.264621 0.4282948 +2.852659 4.264621 0.4282948 +3.261896 4.264621 0.4282948 +3.729748 4.264621 0.4282948 +4.264621 4.264621 0.4282948 +4.876131 4.264621 0.4282948 +5.575266 4.264621 0.4282948 +6.374593 4.264621 0.4282948 +0 4.876131 0.4282948 +0 4.876131 0.4282948 +0 4.876131 0.4282948 +0.002268731 4.876131 0.4282948 +0.07076883 4.876131 0.4282948 +0.1119241 4.876131 0.4282948 +0.1475052 4.876131 0.4282948 +0.1846606 4.876131 0.4282948 +0.2245119 4.876131 0.4282948 +0.2679612 4.876131 0.4282948 +0.3158431 4.876131 0.4282948 +0.3689944 4.876131 0.4282948 +0.4282948 4.876131 0.4282948 +0.494694 4.876131 0.4282948 +0.5692344 4.876131 0.4282948 +0.6530715 4.876131 0.4282948 +0.7474945 4.876131 0.4282948 +0.8539475 4.876131 0.4282948 +0.974052 4.876131 0.4282948 +1.113885 4.876131 0.4282948 +1.27456 4.876131 0.4282948 +1.458117 4.876131 0.4282948 +1.667858 4.876131 0.4282948 +1.907556 4.876131 0.4282948 +2.181521 4.876131 0.4282948 +2.494678 4.876131 0.4282948 +2.852659 4.876131 0.4282948 +3.261896 4.876131 0.4282948 +3.729748 4.876131 0.4282948 +4.264621 4.876131 0.4282948 +4.876131 4.876131 0.4282948 +5.575266 4.876131 0.4282948 +6.374593 4.876131 0.4282948 +0 5.575266 0.4282948 +0 5.575266 0.4282948 +0 5.575266 0.4282948 +0.002268731 5.575266 0.4282948 +0.07076883 5.575266 0.4282948 +0.1119241 5.575266 0.4282948 +0.1475052 5.575266 0.4282948 +0.1846606 5.575266 0.4282948 +0.2245119 5.575266 0.4282948 +0.2679612 5.575266 0.4282948 +0.3158431 5.575266 0.4282948 +0.3689944 5.575266 0.4282948 +0.4282948 5.575266 0.4282948 +0.494694 5.575266 0.4282948 +0.5692344 5.575266 0.4282948 +0.6530715 5.575266 0.4282948 +0.7474945 5.575266 0.4282948 +0.8539475 5.575266 0.4282948 +0.974052 5.575266 0.4282948 +1.113885 5.575266 0.4282948 +1.27456 5.575266 0.4282948 +1.458117 5.575266 0.4282948 +1.667858 5.575266 0.4282948 +1.907556 5.575266 0.4282948 +2.181521 5.575266 0.4282948 +2.494678 5.575266 0.4282948 +2.852659 5.575266 0.4282948 +3.261896 5.575266 0.4282948 +3.729748 5.575266 0.4282948 +4.264621 5.575266 0.4282948 +4.876131 5.575266 0.4282948 +5.575266 5.575266 0.4282948 +6.374593 5.575266 0.4282948 +0 6.374593 0.4282948 +0 6.374593 0.4282948 +0 6.374593 0.4282948 +0.002268731 6.374593 0.4282948 +0.07076883 6.374593 0.4282948 +0.1119241 6.374593 0.4282948 +0.1475052 6.374593 0.4282948 +0.1846606 6.374593 0.4282948 +0.2245119 6.374593 0.4282948 +0.2679612 6.374593 0.4282948 +0.3158431 6.374593 0.4282948 +0.3689944 6.374593 0.4282948 +0.4282948 6.374593 0.4282948 +0.494694 6.374593 0.4282948 +0.5692344 6.374593 0.4282948 +0.6530715 6.374593 0.4282948 +0.7474945 6.374593 0.4282948 +0.8539475 6.374593 0.4282948 +0.974052 6.374593 0.4282948 +1.113885 6.374593 0.4282948 +1.27456 6.374593 0.4282948 +1.458117 6.374593 0.4282948 +1.667858 6.374593 0.4282948 +1.907556 6.374593 0.4282948 +2.181521 6.374593 0.4282948 +2.494678 6.374593 0.4282948 +2.852659 6.374593 0.4282948 +3.261896 6.374593 0.4282948 +3.729748 6.374593 0.4282948 +4.264621 6.374593 0.4282948 +4.876131 6.374593 0.4282948 +5.575266 6.374593 0.4282948 +6.374593 6.374593 0.4282948 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0.002268731 0.494694 +0 0.002268731 0.494694 +0 0.002268731 0.494694 +0.002268731 0.002268731 0.494694 +0.07076883 0.002268731 0.494694 +0.1119241 0.002268731 0.494694 +0.1475052 0.002268731 0.494694 +0.1846606 0.002268731 0.494694 +0.2245119 0.002268731 0.494694 +0.2679612 0.002268731 0.494694 +0.3158431 0.002268731 0.494694 +0.3689944 0.002268731 0.494694 +0.4282948 0.002268731 0.494694 +0.494694 0.002268731 0.494694 +0.5692344 0.002268731 0.494694 +0.6530715 0.002268731 0.494694 +0.7474945 0.002268731 0.494694 +0.8539475 0.002268731 0.494694 +0.974052 0.002268731 0.494694 +1.113885 0.002268731 0.494694 +1.27456 0.002268731 0.494694 +1.458117 0.002268731 0.494694 +1.667858 0.002268731 0.494694 +1.907556 0.002268731 0.494694 +2.181521 0.002268731 0.494694 +2.494678 0.002268731 0.494694 +2.852659 0.002268731 0.494694 +3.261896 0.002268731 0.494694 +3.729748 0.002268731 0.494694 +4.264621 0.002268731 0.494694 +4.876131 0.002268731 0.494694 +5.575266 0.002268731 0.494694 +6.374593 0.002268731 0.494694 +0 0.07076883 0.494694 +0 0.07076883 0.494694 +0 0.07076883 0.494694 +0.002268731 0.07076883 0.494694 +0.07076883 0.07076883 0.494694 +0.1119241 0.07076883 0.494694 +0.1475052 0.07076883 0.494694 +0.1846606 0.07076883 0.494694 +0.2245119 0.07076883 0.494694 +0.2679612 0.07076883 0.494694 +0.3158431 0.07076883 0.494694 +0.3689944 0.07076883 0.494694 +0.4282948 0.07076883 0.494694 +0.494694 0.07076883 0.494694 +0.5692344 0.07076883 0.494694 +0.6530715 0.07076883 0.494694 +0.7474945 0.07076883 0.494694 +0.8539475 0.07076883 0.494694 +0.974052 0.07076883 0.494694 +1.113885 0.07076883 0.494694 +1.27456 0.07076883 0.494694 +1.458117 0.07076883 0.494694 +1.667858 0.07076883 0.494694 +1.907556 0.07076883 0.494694 +2.181521 0.07076883 0.494694 +2.494678 0.07076883 0.494694 +2.852659 0.07076883 0.494694 +3.261896 0.07076883 0.494694 +3.729748 0.07076883 0.494694 +4.264621 0.07076883 0.494694 +4.876131 0.07076883 0.494694 +5.575266 0.07076883 0.494694 +6.374593 0.07076883 0.494694 +0 0.1119241 0.494694 +0 0.1119241 0.494694 +0 0.1119241 0.494694 +0.002268731 0.1119241 0.494694 +0.07076883 0.1119241 0.494694 +0.1119241 0.1119241 0.494694 +0.1475052 0.1119241 0.494694 +0.1846606 0.1119241 0.494694 +0.2245119 0.1119241 0.494694 +0.2679612 0.1119241 0.494694 +0.3158431 0.1119241 0.494694 +0.3689944 0.1119241 0.494694 +0.4282948 0.1119241 0.494694 +0.494694 0.1119241 0.494694 +0.5692344 0.1119241 0.494694 +0.6530715 0.1119241 0.494694 +0.7474945 0.1119241 0.494694 +0.8539475 0.1119241 0.494694 +0.974052 0.1119241 0.494694 +1.113885 0.1119241 0.494694 +1.27456 0.1119241 0.494694 +1.458117 0.1119241 0.494694 +1.667858 0.1119241 0.494694 +1.907556 0.1119241 0.494694 +2.181521 0.1119241 0.494694 +2.494678 0.1119241 0.494694 +2.852659 0.1119241 0.494694 +3.261896 0.1119241 0.494694 +3.729748 0.1119241 0.494694 +4.264621 0.1119241 0.494694 +4.876131 0.1119241 0.494694 +5.575266 0.1119241 0.494694 +6.374593 0.1119241 0.494694 +0 0.1475052 0.494694 +0 0.1475052 0.494694 +0 0.1475052 0.494694 +0.002268731 0.1475052 0.494694 +0.07076883 0.1475052 0.494694 +0.1119241 0.1475052 0.494694 +0.1475052 0.1475052 0.494694 +0.1846606 0.1475052 0.494694 +0.2245119 0.1475052 0.494694 +0.2679612 0.1475052 0.494694 +0.3158431 0.1475052 0.494694 +0.3689944 0.1475052 0.494694 +0.4282948 0.1475052 0.494694 +0.494694 0.1475052 0.494694 +0.5692344 0.1475052 0.494694 +0.6530715 0.1475052 0.494694 +0.7474945 0.1475052 0.494694 +0.8539475 0.1475052 0.494694 +0.974052 0.1475052 0.494694 +1.113885 0.1475052 0.494694 +1.27456 0.1475052 0.494694 +1.458117 0.1475052 0.494694 +1.667858 0.1475052 0.494694 +1.907556 0.1475052 0.494694 +2.181521 0.1475052 0.494694 +2.494678 0.1475052 0.494694 +2.852659 0.1475052 0.494694 +3.261896 0.1475052 0.494694 +3.729748 0.1475052 0.494694 +4.264621 0.1475052 0.494694 +4.876131 0.1475052 0.494694 +5.575266 0.1475052 0.494694 +6.374593 0.1475052 0.494694 +0 0.1846606 0.494694 +0 0.1846606 0.494694 +0 0.1846606 0.494694 +0.002268731 0.1846606 0.494694 +0.07076883 0.1846606 0.494694 +0.1119241 0.1846606 0.494694 +0.1475052 0.1846606 0.494694 +0.1846606 0.1846606 0.494694 +0.2245119 0.1846606 0.494694 +0.2679612 0.1846606 0.494694 +0.3158431 0.1846606 0.494694 +0.3689944 0.1846606 0.494694 +0.4282948 0.1846606 0.494694 +0.494694 0.1846606 0.494694 +0.5692344 0.1846606 0.494694 +0.6530715 0.1846606 0.494694 +0.7474945 0.1846606 0.494694 +0.8539475 0.1846606 0.494694 +0.974052 0.1846606 0.494694 +1.113885 0.1846606 0.494694 +1.27456 0.1846606 0.494694 +1.458117 0.1846606 0.494694 +1.667858 0.1846606 0.494694 +1.907556 0.1846606 0.494694 +2.181521 0.1846606 0.494694 +2.494678 0.1846606 0.494694 +2.852659 0.1846606 0.494694 +3.261896 0.1846606 0.494694 +3.729748 0.1846606 0.494694 +4.264621 0.1846606 0.494694 +4.876131 0.1846606 0.494694 +5.575266 0.1846606 0.494694 +6.374593 0.1846606 0.494694 +0 0.2245119 0.494694 +0 0.2245119 0.494694 +0 0.2245119 0.494694 +0.002268731 0.2245119 0.494694 +0.07076883 0.2245119 0.494694 +0.1119241 0.2245119 0.494694 +0.1475052 0.2245119 0.494694 +0.1846606 0.2245119 0.494694 +0.2245119 0.2245119 0.494694 +0.2679612 0.2245119 0.494694 +0.3158431 0.2245119 0.494694 +0.3689944 0.2245119 0.494694 +0.4282948 0.2245119 0.494694 +0.494694 0.2245119 0.494694 +0.5692344 0.2245119 0.494694 +0.6530715 0.2245119 0.494694 +0.7474945 0.2245119 0.494694 +0.8539475 0.2245119 0.494694 +0.974052 0.2245119 0.494694 +1.113885 0.2245119 0.494694 +1.27456 0.2245119 0.494694 +1.458117 0.2245119 0.494694 +1.667858 0.2245119 0.494694 +1.907556 0.2245119 0.494694 +2.181521 0.2245119 0.494694 +2.494678 0.2245119 0.494694 +2.852659 0.2245119 0.494694 +3.261896 0.2245119 0.494694 +3.729748 0.2245119 0.494694 +4.264621 0.2245119 0.494694 +4.876131 0.2245119 0.494694 +5.575266 0.2245119 0.494694 +6.374593 0.2245119 0.494694 +0 0.2679612 0.494694 +0 0.2679612 0.494694 +0 0.2679612 0.494694 +0.002268731 0.2679612 0.494694 +0.07076883 0.2679612 0.494694 +0.1119241 0.2679612 0.494694 +0.1475052 0.2679612 0.494694 +0.1846606 0.2679612 0.494694 +0.2245119 0.2679612 0.494694 +0.2679612 0.2679612 0.494694 +0.3158431 0.2679612 0.494694 +0.3689944 0.2679612 0.494694 +0.4282948 0.2679612 0.494694 +0.494694 0.2679612 0.494694 +0.5692344 0.2679612 0.494694 +0.6530715 0.2679612 0.494694 +0.7474945 0.2679612 0.494694 +0.8539475 0.2679612 0.494694 +0.974052 0.2679612 0.494694 +1.113885 0.2679612 0.494694 +1.27456 0.2679612 0.494694 +1.458117 0.2679612 0.494694 +1.667858 0.2679612 0.494694 +1.907556 0.2679612 0.494694 +2.181521 0.2679612 0.494694 +2.494678 0.2679612 0.494694 +2.852659 0.2679612 0.494694 +3.261896 0.2679612 0.494694 +3.729748 0.2679612 0.494694 +4.264621 0.2679612 0.494694 +4.876131 0.2679612 0.494694 +5.575266 0.2679612 0.494694 +6.374593 0.2679612 0.494694 +0 0.3158431 0.494694 +0 0.3158431 0.494694 +0 0.3158431 0.494694 +0.002268731 0.3158431 0.494694 +0.07076883 0.3158431 0.494694 +0.1119241 0.3158431 0.494694 +0.1475052 0.3158431 0.494694 +0.1846606 0.3158431 0.494694 +0.2245119 0.3158431 0.494694 +0.2679612 0.3158431 0.494694 +0.3158431 0.3158431 0.494694 +0.3689944 0.3158431 0.494694 +0.4282948 0.3158431 0.494694 +0.494694 0.3158431 0.494694 +0.5692344 0.3158431 0.494694 +0.6530715 0.3158431 0.494694 +0.7474945 0.3158431 0.494694 +0.8539475 0.3158431 0.494694 +0.974052 0.3158431 0.494694 +1.113885 0.3158431 0.494694 +1.27456 0.3158431 0.494694 +1.458117 0.3158431 0.494694 +1.667858 0.3158431 0.494694 +1.907556 0.3158431 0.494694 +2.181521 0.3158431 0.494694 +2.494678 0.3158431 0.494694 +2.852659 0.3158431 0.494694 +3.261896 0.3158431 0.494694 +3.729748 0.3158431 0.494694 +4.264621 0.3158431 0.494694 +4.876131 0.3158431 0.494694 +5.575266 0.3158431 0.494694 +6.374593 0.3158431 0.494694 +0 0.3689944 0.494694 +0 0.3689944 0.494694 +0 0.3689944 0.494694 +0.002268731 0.3689944 0.494694 +0.07076883 0.3689944 0.494694 +0.1119241 0.3689944 0.494694 +0.1475052 0.3689944 0.494694 +0.1846606 0.3689944 0.494694 +0.2245119 0.3689944 0.494694 +0.2679612 0.3689944 0.494694 +0.3158431 0.3689944 0.494694 +0.3689944 0.3689944 0.494694 +0.4282948 0.3689944 0.494694 +0.494694 0.3689944 0.494694 +0.5692344 0.3689944 0.494694 +0.6530715 0.3689944 0.494694 +0.7474945 0.3689944 0.494694 +0.8539475 0.3689944 0.494694 +0.974052 0.3689944 0.494694 +1.113885 0.3689944 0.494694 +1.27456 0.3689944 0.494694 +1.458117 0.3689944 0.494694 +1.667858 0.3689944 0.494694 +1.907556 0.3689944 0.494694 +2.181521 0.3689944 0.494694 +2.494678 0.3689944 0.494694 +2.852659 0.3689944 0.494694 +3.261896 0.3689944 0.494694 +3.729748 0.3689944 0.494694 +4.264621 0.3689944 0.494694 +4.876131 0.3689944 0.494694 +5.575266 0.3689944 0.494694 +6.374593 0.3689944 0.494694 +0 0.4282948 0.494694 +0 0.4282948 0.494694 +0 0.4282948 0.494694 +0.002268731 0.4282948 0.494694 +0.07076883 0.4282948 0.494694 +0.1119241 0.4282948 0.494694 +0.1475052 0.4282948 0.494694 +0.1846606 0.4282948 0.494694 +0.2245119 0.4282948 0.494694 +0.2679612 0.4282948 0.494694 +0.3158431 0.4282948 0.494694 +0.3689944 0.4282948 0.494694 +0.4282948 0.4282948 0.494694 +0.494694 0.4282948 0.494694 +0.5692344 0.4282948 0.494694 +0.6530715 0.4282948 0.494694 +0.7474945 0.4282948 0.494694 +0.8539475 0.4282948 0.494694 +0.974052 0.4282948 0.494694 +1.113885 0.4282948 0.494694 +1.27456 0.4282948 0.494694 +1.458117 0.4282948 0.494694 +1.667858 0.4282948 0.494694 +1.907556 0.4282948 0.494694 +2.181521 0.4282948 0.494694 +2.494678 0.4282948 0.494694 +2.852659 0.4282948 0.494694 +3.261896 0.4282948 0.494694 +3.729748 0.4282948 0.494694 +4.264621 0.4282948 0.494694 +4.876131 0.4282948 0.494694 +5.575266 0.4282948 0.494694 +6.374593 0.4282948 0.494694 +0 0.494694 0.494694 +0 0.494694 0.494694 +0 0.494694 0.494694 +0.002268731 0.494694 0.494694 +0.07076883 0.494694 0.494694 +0.1119241 0.494694 0.494694 +0.1475052 0.494694 0.494694 +0.1846606 0.494694 0.494694 +0.2245119 0.494694 0.494694 +0.2679612 0.494694 0.494694 +0.3158431 0.494694 0.494694 +0.3689944 0.494694 0.494694 +0.4282948 0.494694 0.494694 +0.494694 0.494694 0.494694 +0.5692344 0.494694 0.494694 +0.6530715 0.494694 0.494694 +0.7474945 0.494694 0.494694 +0.8539475 0.494694 0.494694 +0.974052 0.494694 0.494694 +1.113885 0.494694 0.494694 +1.27456 0.494694 0.494694 +1.458117 0.494694 0.494694 +1.667858 0.494694 0.494694 +1.907556 0.494694 0.494694 +2.181521 0.494694 0.494694 +2.494678 0.494694 0.494694 +2.852659 0.494694 0.494694 +3.261896 0.494694 0.494694 +3.729748 0.494694 0.494694 +4.264621 0.494694 0.494694 +4.876131 0.494694 0.494694 +5.575266 0.494694 0.494694 +6.374593 0.494694 0.494694 +0 0.5692344 0.494694 +0 0.5692344 0.494694 +0 0.5692344 0.494694 +0.002268731 0.5692344 0.494694 +0.07076883 0.5692344 0.494694 +0.1119241 0.5692344 0.494694 +0.1475052 0.5692344 0.494694 +0.1846606 0.5692344 0.494694 +0.2245119 0.5692344 0.494694 +0.2679612 0.5692344 0.494694 +0.3158431 0.5692344 0.494694 +0.3689944 0.5692344 0.494694 +0.4282948 0.5692344 0.494694 +0.494694 0.5692344 0.494694 +0.5692344 0.5692344 0.494694 +0.6530715 0.5692344 0.494694 +0.7474945 0.5692344 0.494694 +0.8539475 0.5692344 0.494694 +0.974052 0.5692344 0.494694 +1.113885 0.5692344 0.494694 +1.27456 0.5692344 0.494694 +1.458117 0.5692344 0.494694 +1.667858 0.5692344 0.494694 +1.907556 0.5692344 0.494694 +2.181521 0.5692344 0.494694 +2.494678 0.5692344 0.494694 +2.852659 0.5692344 0.494694 +3.261896 0.5692344 0.494694 +3.729748 0.5692344 0.494694 +4.264621 0.5692344 0.494694 +4.876131 0.5692344 0.494694 +5.575266 0.5692344 0.494694 +6.374593 0.5692344 0.494694 +0 0.6530715 0.494694 +0 0.6530715 0.494694 +0 0.6530715 0.494694 +0.002268731 0.6530715 0.494694 +0.07076883 0.6530715 0.494694 +0.1119241 0.6530715 0.494694 +0.1475052 0.6530715 0.494694 +0.1846606 0.6530715 0.494694 +0.2245119 0.6530715 0.494694 +0.2679612 0.6530715 0.494694 +0.3158431 0.6530715 0.494694 +0.3689944 0.6530715 0.494694 +0.4282948 0.6530715 0.494694 +0.494694 0.6530715 0.494694 +0.5692344 0.6530715 0.494694 +0.6530715 0.6530715 0.494694 +0.7474945 0.6530715 0.494694 +0.8539475 0.6530715 0.494694 +0.974052 0.6530715 0.494694 +1.113885 0.6530715 0.494694 +1.27456 0.6530715 0.494694 +1.458117 0.6530715 0.494694 +1.667858 0.6530715 0.494694 +1.907556 0.6530715 0.494694 +2.181521 0.6530715 0.494694 +2.494678 0.6530715 0.494694 +2.852659 0.6530715 0.494694 +3.261896 0.6530715 0.494694 +3.729748 0.6530715 0.494694 +4.264621 0.6530715 0.494694 +4.876131 0.6530715 0.494694 +5.575266 0.6530715 0.494694 +6.374593 0.6530715 0.494694 +0 0.7474945 0.494694 +0 0.7474945 0.494694 +0 0.7474945 0.494694 +0.002268731 0.7474945 0.494694 +0.07076883 0.7474945 0.494694 +0.1119241 0.7474945 0.494694 +0.1475052 0.7474945 0.494694 +0.1846606 0.7474945 0.494694 +0.2245119 0.7474945 0.494694 +0.2679612 0.7474945 0.494694 +0.3158431 0.7474945 0.494694 +0.3689944 0.7474945 0.494694 +0.4282948 0.7474945 0.494694 +0.494694 0.7474945 0.494694 +0.5692344 0.7474945 0.494694 +0.6530715 0.7474945 0.494694 +0.7474945 0.7474945 0.494694 +0.8539475 0.7474945 0.494694 +0.974052 0.7474945 0.494694 +1.113885 0.7474945 0.494694 +1.27456 0.7474945 0.494694 +1.458117 0.7474945 0.494694 +1.667858 0.7474945 0.494694 +1.907556 0.7474945 0.494694 +2.181521 0.7474945 0.494694 +2.494678 0.7474945 0.494694 +2.852659 0.7474945 0.494694 +3.261896 0.7474945 0.494694 +3.729748 0.7474945 0.494694 +4.264621 0.7474945 0.494694 +4.876131 0.7474945 0.494694 +5.575266 0.7474945 0.494694 +6.374593 0.7474945 0.494694 +0 0.8539475 0.494694 +0 0.8539475 0.494694 +0 0.8539475 0.494694 +0.002268731 0.8539475 0.494694 +0.07076883 0.8539475 0.494694 +0.1119241 0.8539475 0.494694 +0.1475052 0.8539475 0.494694 +0.1846606 0.8539475 0.494694 +0.2245119 0.8539475 0.494694 +0.2679612 0.8539475 0.494694 +0.3158431 0.8539475 0.494694 +0.3689944 0.8539475 0.494694 +0.4282948 0.8539475 0.494694 +0.494694 0.8539475 0.494694 +0.5692344 0.8539475 0.494694 +0.6530715 0.8539475 0.494694 +0.7474945 0.8539475 0.494694 +0.8539475 0.8539475 0.494694 +0.974052 0.8539475 0.494694 +1.113885 0.8539475 0.494694 +1.27456 0.8539475 0.494694 +1.458117 0.8539475 0.494694 +1.667858 0.8539475 0.494694 +1.907556 0.8539475 0.494694 +2.181521 0.8539475 0.494694 +2.494678 0.8539475 0.494694 +2.852659 0.8539475 0.494694 +3.261896 0.8539475 0.494694 +3.729748 0.8539475 0.494694 +4.264621 0.8539475 0.494694 +4.876131 0.8539475 0.494694 +5.575266 0.8539475 0.494694 +6.374593 0.8539475 0.494694 +0 0.974052 0.494694 +0 0.974052 0.494694 +0 0.974052 0.494694 +0.002268731 0.974052 0.494694 +0.07076883 0.974052 0.494694 +0.1119241 0.974052 0.494694 +0.1475052 0.974052 0.494694 +0.1846606 0.974052 0.494694 +0.2245119 0.974052 0.494694 +0.2679612 0.974052 0.494694 +0.3158431 0.974052 0.494694 +0.3689944 0.974052 0.494694 +0.4282948 0.974052 0.494694 +0.494694 0.974052 0.494694 +0.5692344 0.974052 0.494694 +0.6530715 0.974052 0.494694 +0.7474945 0.974052 0.494694 +0.8539475 0.974052 0.494694 +0.974052 0.974052 0.494694 +1.113885 0.974052 0.494694 +1.27456 0.974052 0.494694 +1.458117 0.974052 0.494694 +1.667858 0.974052 0.494694 +1.907556 0.974052 0.494694 +2.181521 0.974052 0.494694 +2.494678 0.974052 0.494694 +2.852659 0.974052 0.494694 +3.261896 0.974052 0.494694 +3.729748 0.974052 0.494694 +4.264621 0.974052 0.494694 +4.876131 0.974052 0.494694 +5.575266 0.974052 0.494694 +6.374593 0.974052 0.494694 +0 1.113885 0.494694 +0 1.113885 0.494694 +0 1.113885 0.494694 +0.002268731 1.113885 0.494694 +0.07076883 1.113885 0.494694 +0.1119241 1.113885 0.494694 +0.1475052 1.113885 0.494694 +0.1846606 1.113885 0.494694 +0.2245119 1.113885 0.494694 +0.2679612 1.113885 0.494694 +0.3158431 1.113885 0.494694 +0.3689944 1.113885 0.494694 +0.4282948 1.113885 0.494694 +0.494694 1.113885 0.494694 +0.5692344 1.113885 0.494694 +0.6530715 1.113885 0.494694 +0.7474945 1.113885 0.494694 +0.8539475 1.113885 0.494694 +0.974052 1.113885 0.494694 +1.113885 1.113885 0.494694 +1.27456 1.113885 0.494694 +1.458117 1.113885 0.494694 +1.667858 1.113885 0.494694 +1.907556 1.113885 0.494694 +2.181521 1.113885 0.494694 +2.494678 1.113885 0.494694 +2.852659 1.113885 0.494694 +3.261896 1.113885 0.494694 +3.729748 1.113885 0.494694 +4.264621 1.113885 0.494694 +4.876131 1.113885 0.494694 +5.575266 1.113885 0.494694 +6.374593 1.113885 0.494694 +0 1.27456 0.494694 +0 1.27456 0.494694 +0 1.27456 0.494694 +0.002268731 1.27456 0.494694 +0.07076883 1.27456 0.494694 +0.1119241 1.27456 0.494694 +0.1475052 1.27456 0.494694 +0.1846606 1.27456 0.494694 +0.2245119 1.27456 0.494694 +0.2679612 1.27456 0.494694 +0.3158431 1.27456 0.494694 +0.3689944 1.27456 0.494694 +0.4282948 1.27456 0.494694 +0.494694 1.27456 0.494694 +0.5692344 1.27456 0.494694 +0.6530715 1.27456 0.494694 +0.7474945 1.27456 0.494694 +0.8539475 1.27456 0.494694 +0.974052 1.27456 0.494694 +1.113885 1.27456 0.494694 +1.27456 1.27456 0.494694 +1.458117 1.27456 0.494694 +1.667858 1.27456 0.494694 +1.907556 1.27456 0.494694 +2.181521 1.27456 0.494694 +2.494678 1.27456 0.494694 +2.852659 1.27456 0.494694 +3.261896 1.27456 0.494694 +3.729748 1.27456 0.494694 +4.264621 1.27456 0.494694 +4.876131 1.27456 0.494694 +5.575266 1.27456 0.494694 +6.374593 1.27456 0.494694 +0 1.458117 0.494694 +0 1.458117 0.494694 +0 1.458117 0.494694 +0.002268731 1.458117 0.494694 +0.07076883 1.458117 0.494694 +0.1119241 1.458117 0.494694 +0.1475052 1.458117 0.494694 +0.1846606 1.458117 0.494694 +0.2245119 1.458117 0.494694 +0.2679612 1.458117 0.494694 +0.3158431 1.458117 0.494694 +0.3689944 1.458117 0.494694 +0.4282948 1.458117 0.494694 +0.494694 1.458117 0.494694 +0.5692344 1.458117 0.494694 +0.6530715 1.458117 0.494694 +0.7474945 1.458117 0.494694 +0.8539475 1.458117 0.494694 +0.974052 1.458117 0.494694 +1.113885 1.458117 0.494694 +1.27456 1.458117 0.494694 +1.458117 1.458117 0.494694 +1.667858 1.458117 0.494694 +1.907556 1.458117 0.494694 +2.181521 1.458117 0.494694 +2.494678 1.458117 0.494694 +2.852659 1.458117 0.494694 +3.261896 1.458117 0.494694 +3.729748 1.458117 0.494694 +4.264621 1.458117 0.494694 +4.876131 1.458117 0.494694 +5.575266 1.458117 0.494694 +6.374593 1.458117 0.494694 +0 1.667858 0.494694 +0 1.667858 0.494694 +0 1.667858 0.494694 +0.002268731 1.667858 0.494694 +0.07076883 1.667858 0.494694 +0.1119241 1.667858 0.494694 +0.1475052 1.667858 0.494694 +0.1846606 1.667858 0.494694 +0.2245119 1.667858 0.494694 +0.2679612 1.667858 0.494694 +0.3158431 1.667858 0.494694 +0.3689944 1.667858 0.494694 +0.4282948 1.667858 0.494694 +0.494694 1.667858 0.494694 +0.5692344 1.667858 0.494694 +0.6530715 1.667858 0.494694 +0.7474945 1.667858 0.494694 +0.8539475 1.667858 0.494694 +0.974052 1.667858 0.494694 +1.113885 1.667858 0.494694 +1.27456 1.667858 0.494694 +1.458117 1.667858 0.494694 +1.667858 1.667858 0.494694 +1.907556 1.667858 0.494694 +2.181521 1.667858 0.494694 +2.494678 1.667858 0.494694 +2.852659 1.667858 0.494694 +3.261896 1.667858 0.494694 +3.729748 1.667858 0.494694 +4.264621 1.667858 0.494694 +4.876131 1.667858 0.494694 +5.575266 1.667858 0.494694 +6.374593 1.667858 0.494694 +0 1.907556 0.494694 +0 1.907556 0.494694 +0 1.907556 0.494694 +0.002268731 1.907556 0.494694 +0.07076883 1.907556 0.494694 +0.1119241 1.907556 0.494694 +0.1475052 1.907556 0.494694 +0.1846606 1.907556 0.494694 +0.2245119 1.907556 0.494694 +0.2679612 1.907556 0.494694 +0.3158431 1.907556 0.494694 +0.3689944 1.907556 0.494694 +0.4282948 1.907556 0.494694 +0.494694 1.907556 0.494694 +0.5692344 1.907556 0.494694 +0.6530715 1.907556 0.494694 +0.7474945 1.907556 0.494694 +0.8539475 1.907556 0.494694 +0.974052 1.907556 0.494694 +1.113885 1.907556 0.494694 +1.27456 1.907556 0.494694 +1.458117 1.907556 0.494694 +1.667858 1.907556 0.494694 +1.907556 1.907556 0.494694 +2.181521 1.907556 0.494694 +2.494678 1.907556 0.494694 +2.852659 1.907556 0.494694 +3.261896 1.907556 0.494694 +3.729748 1.907556 0.494694 +4.264621 1.907556 0.494694 +4.876131 1.907556 0.494694 +5.575266 1.907556 0.494694 +6.374593 1.907556 0.494694 +0 2.181521 0.494694 +0 2.181521 0.494694 +0 2.181521 0.494694 +0.002268731 2.181521 0.494694 +0.07076883 2.181521 0.494694 +0.1119241 2.181521 0.494694 +0.1475052 2.181521 0.494694 +0.1846606 2.181521 0.494694 +0.2245119 2.181521 0.494694 +0.2679612 2.181521 0.494694 +0.3158431 2.181521 0.494694 +0.3689944 2.181521 0.494694 +0.4282948 2.181521 0.494694 +0.494694 2.181521 0.494694 +0.5692344 2.181521 0.494694 +0.6530715 2.181521 0.494694 +0.7474945 2.181521 0.494694 +0.8539475 2.181521 0.494694 +0.974052 2.181521 0.494694 +1.113885 2.181521 0.494694 +1.27456 2.181521 0.494694 +1.458117 2.181521 0.494694 +1.667858 2.181521 0.494694 +1.907556 2.181521 0.494694 +2.181521 2.181521 0.494694 +2.494678 2.181521 0.494694 +2.852659 2.181521 0.494694 +3.261896 2.181521 0.494694 +3.729748 2.181521 0.494694 +4.264621 2.181521 0.494694 +4.876131 2.181521 0.494694 +5.575266 2.181521 0.494694 +6.374593 2.181521 0.494694 +0 2.494678 0.494694 +0 2.494678 0.494694 +0 2.494678 0.494694 +0.002268731 2.494678 0.494694 +0.07076883 2.494678 0.494694 +0.1119241 2.494678 0.494694 +0.1475052 2.494678 0.494694 +0.1846606 2.494678 0.494694 +0.2245119 2.494678 0.494694 +0.2679612 2.494678 0.494694 +0.3158431 2.494678 0.494694 +0.3689944 2.494678 0.494694 +0.4282948 2.494678 0.494694 +0.494694 2.494678 0.494694 +0.5692344 2.494678 0.494694 +0.6530715 2.494678 0.494694 +0.7474945 2.494678 0.494694 +0.8539475 2.494678 0.494694 +0.974052 2.494678 0.494694 +1.113885 2.494678 0.494694 +1.27456 2.494678 0.494694 +1.458117 2.494678 0.494694 +1.667858 2.494678 0.494694 +1.907556 2.494678 0.494694 +2.181521 2.494678 0.494694 +2.494678 2.494678 0.494694 +2.852659 2.494678 0.494694 +3.261896 2.494678 0.494694 +3.729748 2.494678 0.494694 +4.264621 2.494678 0.494694 +4.876131 2.494678 0.494694 +5.575266 2.494678 0.494694 +6.374593 2.494678 0.494694 +0 2.852659 0.494694 +0 2.852659 0.494694 +0 2.852659 0.494694 +0.002268731 2.852659 0.494694 +0.07076883 2.852659 0.494694 +0.1119241 2.852659 0.494694 +0.1475052 2.852659 0.494694 +0.1846606 2.852659 0.494694 +0.2245119 2.852659 0.494694 +0.2679612 2.852659 0.494694 +0.3158431 2.852659 0.494694 +0.3689944 2.852659 0.494694 +0.4282948 2.852659 0.494694 +0.494694 2.852659 0.494694 +0.5692344 2.852659 0.494694 +0.6530715 2.852659 0.494694 +0.7474945 2.852659 0.494694 +0.8539475 2.852659 0.494694 +0.974052 2.852659 0.494694 +1.113885 2.852659 0.494694 +1.27456 2.852659 0.494694 +1.458117 2.852659 0.494694 +1.667858 2.852659 0.494694 +1.907556 2.852659 0.494694 +2.181521 2.852659 0.494694 +2.494678 2.852659 0.494694 +2.852659 2.852659 0.494694 +3.261896 2.852659 0.494694 +3.729748 2.852659 0.494694 +4.264621 2.852659 0.494694 +4.876131 2.852659 0.494694 +5.575266 2.852659 0.494694 +6.374593 2.852659 0.494694 +0 3.261896 0.494694 +0 3.261896 0.494694 +0 3.261896 0.494694 +0.002268731 3.261896 0.494694 +0.07076883 3.261896 0.494694 +0.1119241 3.261896 0.494694 +0.1475052 3.261896 0.494694 +0.1846606 3.261896 0.494694 +0.2245119 3.261896 0.494694 +0.2679612 3.261896 0.494694 +0.3158431 3.261896 0.494694 +0.3689944 3.261896 0.494694 +0.4282948 3.261896 0.494694 +0.494694 3.261896 0.494694 +0.5692344 3.261896 0.494694 +0.6530715 3.261896 0.494694 +0.7474945 3.261896 0.494694 +0.8539475 3.261896 0.494694 +0.974052 3.261896 0.494694 +1.113885 3.261896 0.494694 +1.27456 3.261896 0.494694 +1.458117 3.261896 0.494694 +1.667858 3.261896 0.494694 +1.907556 3.261896 0.494694 +2.181521 3.261896 0.494694 +2.494678 3.261896 0.494694 +2.852659 3.261896 0.494694 +3.261896 3.261896 0.494694 +3.729748 3.261896 0.494694 +4.264621 3.261896 0.494694 +4.876131 3.261896 0.494694 +5.575266 3.261896 0.494694 +6.374593 3.261896 0.494694 +0 3.729748 0.494694 +0 3.729748 0.494694 +0 3.729748 0.494694 +0.002268731 3.729748 0.494694 +0.07076883 3.729748 0.494694 +0.1119241 3.729748 0.494694 +0.1475052 3.729748 0.494694 +0.1846606 3.729748 0.494694 +0.2245119 3.729748 0.494694 +0.2679612 3.729748 0.494694 +0.3158431 3.729748 0.494694 +0.3689944 3.729748 0.494694 +0.4282948 3.729748 0.494694 +0.494694 3.729748 0.494694 +0.5692344 3.729748 0.494694 +0.6530715 3.729748 0.494694 +0.7474945 3.729748 0.494694 +0.8539475 3.729748 0.494694 +0.974052 3.729748 0.494694 +1.113885 3.729748 0.494694 +1.27456 3.729748 0.494694 +1.458117 3.729748 0.494694 +1.667858 3.729748 0.494694 +1.907556 3.729748 0.494694 +2.181521 3.729748 0.494694 +2.494678 3.729748 0.494694 +2.852659 3.729748 0.494694 +3.261896 3.729748 0.494694 +3.729748 3.729748 0.494694 +4.264621 3.729748 0.494694 +4.876131 3.729748 0.494694 +5.575266 3.729748 0.494694 +6.374593 3.729748 0.494694 +0 4.264621 0.494694 +0 4.264621 0.494694 +0 4.264621 0.494694 +0.002268731 4.264621 0.494694 +0.07076883 4.264621 0.494694 +0.1119241 4.264621 0.494694 +0.1475052 4.264621 0.494694 +0.1846606 4.264621 0.494694 +0.2245119 4.264621 0.494694 +0.2679612 4.264621 0.494694 +0.3158431 4.264621 0.494694 +0.3689944 4.264621 0.494694 +0.4282948 4.264621 0.494694 +0.494694 4.264621 0.494694 +0.5692344 4.264621 0.494694 +0.6530715 4.264621 0.494694 +0.7474945 4.264621 0.494694 +0.8539475 4.264621 0.494694 +0.974052 4.264621 0.494694 +1.113885 4.264621 0.494694 +1.27456 4.264621 0.494694 +1.458117 4.264621 0.494694 +1.667858 4.264621 0.494694 +1.907556 4.264621 0.494694 +2.181521 4.264621 0.494694 +2.494678 4.264621 0.494694 +2.852659 4.264621 0.494694 +3.261896 4.264621 0.494694 +3.729748 4.264621 0.494694 +4.264621 4.264621 0.494694 +4.876131 4.264621 0.494694 +5.575266 4.264621 0.494694 +6.374593 4.264621 0.494694 +0 4.876131 0.494694 +0 4.876131 0.494694 +0 4.876131 0.494694 +0.002268731 4.876131 0.494694 +0.07076883 4.876131 0.494694 +0.1119241 4.876131 0.494694 +0.1475052 4.876131 0.494694 +0.1846606 4.876131 0.494694 +0.2245119 4.876131 0.494694 +0.2679612 4.876131 0.494694 +0.3158431 4.876131 0.494694 +0.3689944 4.876131 0.494694 +0.4282948 4.876131 0.494694 +0.494694 4.876131 0.494694 +0.5692344 4.876131 0.494694 +0.6530715 4.876131 0.494694 +0.7474945 4.876131 0.494694 +0.8539475 4.876131 0.494694 +0.974052 4.876131 0.494694 +1.113885 4.876131 0.494694 +1.27456 4.876131 0.494694 +1.458117 4.876131 0.494694 +1.667858 4.876131 0.494694 +1.907556 4.876131 0.494694 +2.181521 4.876131 0.494694 +2.494678 4.876131 0.494694 +2.852659 4.876131 0.494694 +3.261896 4.876131 0.494694 +3.729748 4.876131 0.494694 +4.264621 4.876131 0.494694 +4.876131 4.876131 0.494694 +5.575266 4.876131 0.494694 +6.374593 4.876131 0.494694 +0 5.575266 0.494694 +0 5.575266 0.494694 +0 5.575266 0.494694 +0.002268731 5.575266 0.494694 +0.07076883 5.575266 0.494694 +0.1119241 5.575266 0.494694 +0.1475052 5.575266 0.494694 +0.1846606 5.575266 0.494694 +0.2245119 5.575266 0.494694 +0.2679612 5.575266 0.494694 +0.3158431 5.575266 0.494694 +0.3689944 5.575266 0.494694 +0.4282948 5.575266 0.494694 +0.494694 5.575266 0.494694 +0.5692344 5.575266 0.494694 +0.6530715 5.575266 0.494694 +0.7474945 5.575266 0.494694 +0.8539475 5.575266 0.494694 +0.974052 5.575266 0.494694 +1.113885 5.575266 0.494694 +1.27456 5.575266 0.494694 +1.458117 5.575266 0.494694 +1.667858 5.575266 0.494694 +1.907556 5.575266 0.494694 +2.181521 5.575266 0.494694 +2.494678 5.575266 0.494694 +2.852659 5.575266 0.494694 +3.261896 5.575266 0.494694 +3.729748 5.575266 0.494694 +4.264621 5.575266 0.494694 +4.876131 5.575266 0.494694 +5.575266 5.575266 0.494694 +6.374593 5.575266 0.494694 +0 6.374593 0.494694 +0 6.374593 0.494694 +0 6.374593 0.494694 +0.002268731 6.374593 0.494694 +0.07076883 6.374593 0.494694 +0.1119241 6.374593 0.494694 +0.1475052 6.374593 0.494694 +0.1846606 6.374593 0.494694 +0.2245119 6.374593 0.494694 +0.2679612 6.374593 0.494694 +0.3158431 6.374593 0.494694 +0.3689944 6.374593 0.494694 +0.4282948 6.374593 0.494694 +0.494694 6.374593 0.494694 +0.5692344 6.374593 0.494694 +0.6530715 6.374593 0.494694 +0.7474945 6.374593 0.494694 +0.8539475 6.374593 0.494694 +0.974052 6.374593 0.494694 +1.113885 6.374593 0.494694 +1.27456 6.374593 0.494694 +1.458117 6.374593 0.494694 +1.667858 6.374593 0.494694 +1.907556 6.374593 0.494694 +2.181521 6.374593 0.494694 +2.494678 6.374593 0.494694 +2.852659 6.374593 0.494694 +3.261896 6.374593 0.494694 +3.729748 6.374593 0.494694 +4.264621 6.374593 0.494694 +4.876131 6.374593 0.494694 +5.575266 6.374593 0.494694 +6.374593 6.374593 0.494694 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0.002268731 0.5692344 +0 0.002268731 0.5692344 +0 0.002268731 0.5692344 +0.002268731 0.002268731 0.5692344 +0.07076883 0.002268731 0.5692344 +0.1119241 0.002268731 0.5692344 +0.1475052 0.002268731 0.5692344 +0.1846606 0.002268731 0.5692344 +0.2245119 0.002268731 0.5692344 +0.2679612 0.002268731 0.5692344 +0.3158431 0.002268731 0.5692344 +0.3689944 0.002268731 0.5692344 +0.4282948 0.002268731 0.5692344 +0.494694 0.002268731 0.5692344 +0.5692344 0.002268731 0.5692344 +0.6530715 0.002268731 0.5692344 +0.7474945 0.002268731 0.5692344 +0.8539475 0.002268731 0.5692344 +0.974052 0.002268731 0.5692344 +1.113885 0.002268731 0.5692344 +1.27456 0.002268731 0.5692344 +1.458117 0.002268731 0.5692344 +1.667858 0.002268731 0.5692344 +1.907556 0.002268731 0.5692344 +2.181521 0.002268731 0.5692344 +2.494678 0.002268731 0.5692344 +2.852659 0.002268731 0.5692344 +3.261896 0.002268731 0.5692344 +3.729748 0.002268731 0.5692344 +4.264621 0.002268731 0.5692344 +4.876131 0.002268731 0.5692344 +5.575266 0.002268731 0.5692344 +6.374593 0.002268731 0.5692344 +0 0.07076883 0.5692344 +0 0.07076883 0.5692344 +0 0.07076883 0.5692344 +0.002268731 0.07076883 0.5692344 +0.07076883 0.07076883 0.5692344 +0.1119241 0.07076883 0.5692344 +0.1475052 0.07076883 0.5692344 +0.1846606 0.07076883 0.5692344 +0.2245119 0.07076883 0.5692344 +0.2679612 0.07076883 0.5692344 +0.3158431 0.07076883 0.5692344 +0.3689944 0.07076883 0.5692344 +0.4282948 0.07076883 0.5692344 +0.494694 0.07076883 0.5692344 +0.5692344 0.07076883 0.5692344 +0.6530715 0.07076883 0.5692344 +0.7474945 0.07076883 0.5692344 +0.8539475 0.07076883 0.5692344 +0.974052 0.07076883 0.5692344 +1.113885 0.07076883 0.5692344 +1.27456 0.07076883 0.5692344 +1.458117 0.07076883 0.5692344 +1.667858 0.07076883 0.5692344 +1.907556 0.07076883 0.5692344 +2.181521 0.07076883 0.5692344 +2.494678 0.07076883 0.5692344 +2.852659 0.07076883 0.5692344 +3.261896 0.07076883 0.5692344 +3.729748 0.07076883 0.5692344 +4.264621 0.07076883 0.5692344 +4.876131 0.07076883 0.5692344 +5.575266 0.07076883 0.5692344 +6.374593 0.07076883 0.5692344 +0 0.1119241 0.5692344 +0 0.1119241 0.5692344 +0 0.1119241 0.5692344 +0.002268731 0.1119241 0.5692344 +0.07076883 0.1119241 0.5692344 +0.1119241 0.1119241 0.5692344 +0.1475052 0.1119241 0.5692344 +0.1846606 0.1119241 0.5692344 +0.2245119 0.1119241 0.5692344 +0.2679612 0.1119241 0.5692344 +0.3158431 0.1119241 0.5692344 +0.3689944 0.1119241 0.5692344 +0.4282948 0.1119241 0.5692344 +0.494694 0.1119241 0.5692344 +0.5692344 0.1119241 0.5692344 +0.6530715 0.1119241 0.5692344 +0.7474945 0.1119241 0.5692344 +0.8539475 0.1119241 0.5692344 +0.974052 0.1119241 0.5692344 +1.113885 0.1119241 0.5692344 +1.27456 0.1119241 0.5692344 +1.458117 0.1119241 0.5692344 +1.667858 0.1119241 0.5692344 +1.907556 0.1119241 0.5692344 +2.181521 0.1119241 0.5692344 +2.494678 0.1119241 0.5692344 +2.852659 0.1119241 0.5692344 +3.261896 0.1119241 0.5692344 +3.729748 0.1119241 0.5692344 +4.264621 0.1119241 0.5692344 +4.876131 0.1119241 0.5692344 +5.575266 0.1119241 0.5692344 +6.374593 0.1119241 0.5692344 +0 0.1475052 0.5692344 +0 0.1475052 0.5692344 +0 0.1475052 0.5692344 +0.002268731 0.1475052 0.5692344 +0.07076883 0.1475052 0.5692344 +0.1119241 0.1475052 0.5692344 +0.1475052 0.1475052 0.5692344 +0.1846606 0.1475052 0.5692344 +0.2245119 0.1475052 0.5692344 +0.2679612 0.1475052 0.5692344 +0.3158431 0.1475052 0.5692344 +0.3689944 0.1475052 0.5692344 +0.4282948 0.1475052 0.5692344 +0.494694 0.1475052 0.5692344 +0.5692344 0.1475052 0.5692344 +0.6530715 0.1475052 0.5692344 +0.7474945 0.1475052 0.5692344 +0.8539475 0.1475052 0.5692344 +0.974052 0.1475052 0.5692344 +1.113885 0.1475052 0.5692344 +1.27456 0.1475052 0.5692344 +1.458117 0.1475052 0.5692344 +1.667858 0.1475052 0.5692344 +1.907556 0.1475052 0.5692344 +2.181521 0.1475052 0.5692344 +2.494678 0.1475052 0.5692344 +2.852659 0.1475052 0.5692344 +3.261896 0.1475052 0.5692344 +3.729748 0.1475052 0.5692344 +4.264621 0.1475052 0.5692344 +4.876131 0.1475052 0.5692344 +5.575266 0.1475052 0.5692344 +6.374593 0.1475052 0.5692344 +0 0.1846606 0.5692344 +0 0.1846606 0.5692344 +0 0.1846606 0.5692344 +0.002268731 0.1846606 0.5692344 +0.07076883 0.1846606 0.5692344 +0.1119241 0.1846606 0.5692344 +0.1475052 0.1846606 0.5692344 +0.1846606 0.1846606 0.5692344 +0.2245119 0.1846606 0.5692344 +0.2679612 0.1846606 0.5692344 +0.3158431 0.1846606 0.5692344 +0.3689944 0.1846606 0.5692344 +0.4282948 0.1846606 0.5692344 +0.494694 0.1846606 0.5692344 +0.5692344 0.1846606 0.5692344 +0.6530715 0.1846606 0.5692344 +0.7474945 0.1846606 0.5692344 +0.8539475 0.1846606 0.5692344 +0.974052 0.1846606 0.5692344 +1.113885 0.1846606 0.5692344 +1.27456 0.1846606 0.5692344 +1.458117 0.1846606 0.5692344 +1.667858 0.1846606 0.5692344 +1.907556 0.1846606 0.5692344 +2.181521 0.1846606 0.5692344 +2.494678 0.1846606 0.5692344 +2.852659 0.1846606 0.5692344 +3.261896 0.1846606 0.5692344 +3.729748 0.1846606 0.5692344 +4.264621 0.1846606 0.5692344 +4.876131 0.1846606 0.5692344 +5.575266 0.1846606 0.5692344 +6.374593 0.1846606 0.5692344 +0 0.2245119 0.5692344 +0 0.2245119 0.5692344 +0 0.2245119 0.5692344 +0.002268731 0.2245119 0.5692344 +0.07076883 0.2245119 0.5692344 +0.1119241 0.2245119 0.5692344 +0.1475052 0.2245119 0.5692344 +0.1846606 0.2245119 0.5692344 +0.2245119 0.2245119 0.5692344 +0.2679612 0.2245119 0.5692344 +0.3158431 0.2245119 0.5692344 +0.3689944 0.2245119 0.5692344 +0.4282948 0.2245119 0.5692344 +0.494694 0.2245119 0.5692344 +0.5692344 0.2245119 0.5692344 +0.6530715 0.2245119 0.5692344 +0.7474945 0.2245119 0.5692344 +0.8539475 0.2245119 0.5692344 +0.974052 0.2245119 0.5692344 +1.113885 0.2245119 0.5692344 +1.27456 0.2245119 0.5692344 +1.458117 0.2245119 0.5692344 +1.667858 0.2245119 0.5692344 +1.907556 0.2245119 0.5692344 +2.181521 0.2245119 0.5692344 +2.494678 0.2245119 0.5692344 +2.852659 0.2245119 0.5692344 +3.261896 0.2245119 0.5692344 +3.729748 0.2245119 0.5692344 +4.264621 0.2245119 0.5692344 +4.876131 0.2245119 0.5692344 +5.575266 0.2245119 0.5692344 +6.374593 0.2245119 0.5692344 +0 0.2679612 0.5692344 +0 0.2679612 0.5692344 +0 0.2679612 0.5692344 +0.002268731 0.2679612 0.5692344 +0.07076883 0.2679612 0.5692344 +0.1119241 0.2679612 0.5692344 +0.1475052 0.2679612 0.5692344 +0.1846606 0.2679612 0.5692344 +0.2245119 0.2679612 0.5692344 +0.2679612 0.2679612 0.5692344 +0.3158431 0.2679612 0.5692344 +0.3689944 0.2679612 0.5692344 +0.4282948 0.2679612 0.5692344 +0.494694 0.2679612 0.5692344 +0.5692344 0.2679612 0.5692344 +0.6530715 0.2679612 0.5692344 +0.7474945 0.2679612 0.5692344 +0.8539475 0.2679612 0.5692344 +0.974052 0.2679612 0.5692344 +1.113885 0.2679612 0.5692344 +1.27456 0.2679612 0.5692344 +1.458117 0.2679612 0.5692344 +1.667858 0.2679612 0.5692344 +1.907556 0.2679612 0.5692344 +2.181521 0.2679612 0.5692344 +2.494678 0.2679612 0.5692344 +2.852659 0.2679612 0.5692344 +3.261896 0.2679612 0.5692344 +3.729748 0.2679612 0.5692344 +4.264621 0.2679612 0.5692344 +4.876131 0.2679612 0.5692344 +5.575266 0.2679612 0.5692344 +6.374593 0.2679612 0.5692344 +0 0.3158431 0.5692344 +0 0.3158431 0.5692344 +0 0.3158431 0.5692344 +0.002268731 0.3158431 0.5692344 +0.07076883 0.3158431 0.5692344 +0.1119241 0.3158431 0.5692344 +0.1475052 0.3158431 0.5692344 +0.1846606 0.3158431 0.5692344 +0.2245119 0.3158431 0.5692344 +0.2679612 0.3158431 0.5692344 +0.3158431 0.3158431 0.5692344 +0.3689944 0.3158431 0.5692344 +0.4282948 0.3158431 0.5692344 +0.494694 0.3158431 0.5692344 +0.5692344 0.3158431 0.5692344 +0.6530715 0.3158431 0.5692344 +0.7474945 0.3158431 0.5692344 +0.8539475 0.3158431 0.5692344 +0.974052 0.3158431 0.5692344 +1.113885 0.3158431 0.5692344 +1.27456 0.3158431 0.5692344 +1.458117 0.3158431 0.5692344 +1.667858 0.3158431 0.5692344 +1.907556 0.3158431 0.5692344 +2.181521 0.3158431 0.5692344 +2.494678 0.3158431 0.5692344 +2.852659 0.3158431 0.5692344 +3.261896 0.3158431 0.5692344 +3.729748 0.3158431 0.5692344 +4.264621 0.3158431 0.5692344 +4.876131 0.3158431 0.5692344 +5.575266 0.3158431 0.5692344 +6.374593 0.3158431 0.5692344 +0 0.3689944 0.5692344 +0 0.3689944 0.5692344 +0 0.3689944 0.5692344 +0.002268731 0.3689944 0.5692344 +0.07076883 0.3689944 0.5692344 +0.1119241 0.3689944 0.5692344 +0.1475052 0.3689944 0.5692344 +0.1846606 0.3689944 0.5692344 +0.2245119 0.3689944 0.5692344 +0.2679612 0.3689944 0.5692344 +0.3158431 0.3689944 0.5692344 +0.3689944 0.3689944 0.5692344 +0.4282948 0.3689944 0.5692344 +0.494694 0.3689944 0.5692344 +0.5692344 0.3689944 0.5692344 +0.6530715 0.3689944 0.5692344 +0.7474945 0.3689944 0.5692344 +0.8539475 0.3689944 0.5692344 +0.974052 0.3689944 0.5692344 +1.113885 0.3689944 0.5692344 +1.27456 0.3689944 0.5692344 +1.458117 0.3689944 0.5692344 +1.667858 0.3689944 0.5692344 +1.907556 0.3689944 0.5692344 +2.181521 0.3689944 0.5692344 +2.494678 0.3689944 0.5692344 +2.852659 0.3689944 0.5692344 +3.261896 0.3689944 0.5692344 +3.729748 0.3689944 0.5692344 +4.264621 0.3689944 0.5692344 +4.876131 0.3689944 0.5692344 +5.575266 0.3689944 0.5692344 +6.374593 0.3689944 0.5692344 +0 0.4282948 0.5692344 +0 0.4282948 0.5692344 +0 0.4282948 0.5692344 +0.002268731 0.4282948 0.5692344 +0.07076883 0.4282948 0.5692344 +0.1119241 0.4282948 0.5692344 +0.1475052 0.4282948 0.5692344 +0.1846606 0.4282948 0.5692344 +0.2245119 0.4282948 0.5692344 +0.2679612 0.4282948 0.5692344 +0.3158431 0.4282948 0.5692344 +0.3689944 0.4282948 0.5692344 +0.4282948 0.4282948 0.5692344 +0.494694 0.4282948 0.5692344 +0.5692344 0.4282948 0.5692344 +0.6530715 0.4282948 0.5692344 +0.7474945 0.4282948 0.5692344 +0.8539475 0.4282948 0.5692344 +0.974052 0.4282948 0.5692344 +1.113885 0.4282948 0.5692344 +1.27456 0.4282948 0.5692344 +1.458117 0.4282948 0.5692344 +1.667858 0.4282948 0.5692344 +1.907556 0.4282948 0.5692344 +2.181521 0.4282948 0.5692344 +2.494678 0.4282948 0.5692344 +2.852659 0.4282948 0.5692344 +3.261896 0.4282948 0.5692344 +3.729748 0.4282948 0.5692344 +4.264621 0.4282948 0.5692344 +4.876131 0.4282948 0.5692344 +5.575266 0.4282948 0.5692344 +6.374593 0.4282948 0.5692344 +0 0.494694 0.5692344 +0 0.494694 0.5692344 +0 0.494694 0.5692344 +0.002268731 0.494694 0.5692344 +0.07076883 0.494694 0.5692344 +0.1119241 0.494694 0.5692344 +0.1475052 0.494694 0.5692344 +0.1846606 0.494694 0.5692344 +0.2245119 0.494694 0.5692344 +0.2679612 0.494694 0.5692344 +0.3158431 0.494694 0.5692344 +0.3689944 0.494694 0.5692344 +0.4282948 0.494694 0.5692344 +0.494694 0.494694 0.5692344 +0.5692344 0.494694 0.5692344 +0.6530715 0.494694 0.5692344 +0.7474945 0.494694 0.5692344 +0.8539475 0.494694 0.5692344 +0.974052 0.494694 0.5692344 +1.113885 0.494694 0.5692344 +1.27456 0.494694 0.5692344 +1.458117 0.494694 0.5692344 +1.667858 0.494694 0.5692344 +1.907556 0.494694 0.5692344 +2.181521 0.494694 0.5692344 +2.494678 0.494694 0.5692344 +2.852659 0.494694 0.5692344 +3.261896 0.494694 0.5692344 +3.729748 0.494694 0.5692344 +4.264621 0.494694 0.5692344 +4.876131 0.494694 0.5692344 +5.575266 0.494694 0.5692344 +6.374593 0.494694 0.5692344 +0 0.5692344 0.5692344 +0 0.5692344 0.5692344 +0 0.5692344 0.5692344 +0.002268731 0.5692344 0.5692344 +0.07076883 0.5692344 0.5692344 +0.1119241 0.5692344 0.5692344 +0.1475052 0.5692344 0.5692344 +0.1846606 0.5692344 0.5692344 +0.2245119 0.5692344 0.5692344 +0.2679612 0.5692344 0.5692344 +0.3158431 0.5692344 0.5692344 +0.3689944 0.5692344 0.5692344 +0.4282948 0.5692344 0.5692344 +0.494694 0.5692344 0.5692344 +0.5692344 0.5692344 0.5692344 +0.6530715 0.5692344 0.5692344 +0.7474945 0.5692344 0.5692344 +0.8539475 0.5692344 0.5692344 +0.974052 0.5692344 0.5692344 +1.113885 0.5692344 0.5692344 +1.27456 0.5692344 0.5692344 +1.458117 0.5692344 0.5692344 +1.667858 0.5692344 0.5692344 +1.907556 0.5692344 0.5692344 +2.181521 0.5692344 0.5692344 +2.494678 0.5692344 0.5692344 +2.852659 0.5692344 0.5692344 +3.261896 0.5692344 0.5692344 +3.729748 0.5692344 0.5692344 +4.264621 0.5692344 0.5692344 +4.876131 0.5692344 0.5692344 +5.575266 0.5692344 0.5692344 +6.374593 0.5692344 0.5692344 +0 0.6530715 0.5692344 +0 0.6530715 0.5692344 +0 0.6530715 0.5692344 +0.002268731 0.6530715 0.5692344 +0.07076883 0.6530715 0.5692344 +0.1119241 0.6530715 0.5692344 +0.1475052 0.6530715 0.5692344 +0.1846606 0.6530715 0.5692344 +0.2245119 0.6530715 0.5692344 +0.2679612 0.6530715 0.5692344 +0.3158431 0.6530715 0.5692344 +0.3689944 0.6530715 0.5692344 +0.4282948 0.6530715 0.5692344 +0.494694 0.6530715 0.5692344 +0.5692344 0.6530715 0.5692344 +0.6530715 0.6530715 0.5692344 +0.7474945 0.6530715 0.5692344 +0.8539475 0.6530715 0.5692344 +0.974052 0.6530715 0.5692344 +1.113885 0.6530715 0.5692344 +1.27456 0.6530715 0.5692344 +1.458117 0.6530715 0.5692344 +1.667858 0.6530715 0.5692344 +1.907556 0.6530715 0.5692344 +2.181521 0.6530715 0.5692344 +2.494678 0.6530715 0.5692344 +2.852659 0.6530715 0.5692344 +3.261896 0.6530715 0.5692344 +3.729748 0.6530715 0.5692344 +4.264621 0.6530715 0.5692344 +4.876131 0.6530715 0.5692344 +5.575266 0.6530715 0.5692344 +6.374593 0.6530715 0.5692344 +0 0.7474945 0.5692344 +0 0.7474945 0.5692344 +0 0.7474945 0.5692344 +0.002268731 0.7474945 0.5692344 +0.07076883 0.7474945 0.5692344 +0.1119241 0.7474945 0.5692344 +0.1475052 0.7474945 0.5692344 +0.1846606 0.7474945 0.5692344 +0.2245119 0.7474945 0.5692344 +0.2679612 0.7474945 0.5692344 +0.3158431 0.7474945 0.5692344 +0.3689944 0.7474945 0.5692344 +0.4282948 0.7474945 0.5692344 +0.494694 0.7474945 0.5692344 +0.5692344 0.7474945 0.5692344 +0.6530715 0.7474945 0.5692344 +0.7474945 0.7474945 0.5692344 +0.8539475 0.7474945 0.5692344 +0.974052 0.7474945 0.5692344 +1.113885 0.7474945 0.5692344 +1.27456 0.7474945 0.5692344 +1.458117 0.7474945 0.5692344 +1.667858 0.7474945 0.5692344 +1.907556 0.7474945 0.5692344 +2.181521 0.7474945 0.5692344 +2.494678 0.7474945 0.5692344 +2.852659 0.7474945 0.5692344 +3.261896 0.7474945 0.5692344 +3.729748 0.7474945 0.5692344 +4.264621 0.7474945 0.5692344 +4.876131 0.7474945 0.5692344 +5.575266 0.7474945 0.5692344 +6.374593 0.7474945 0.5692344 +0 0.8539475 0.5692344 +0 0.8539475 0.5692344 +0 0.8539475 0.5692344 +0.002268731 0.8539475 0.5692344 +0.07076883 0.8539475 0.5692344 +0.1119241 0.8539475 0.5692344 +0.1475052 0.8539475 0.5692344 +0.1846606 0.8539475 0.5692344 +0.2245119 0.8539475 0.5692344 +0.2679612 0.8539475 0.5692344 +0.3158431 0.8539475 0.5692344 +0.3689944 0.8539475 0.5692344 +0.4282948 0.8539475 0.5692344 +0.494694 0.8539475 0.5692344 +0.5692344 0.8539475 0.5692344 +0.6530715 0.8539475 0.5692344 +0.7474945 0.8539475 0.5692344 +0.8539475 0.8539475 0.5692344 +0.974052 0.8539475 0.5692344 +1.113885 0.8539475 0.5692344 +1.27456 0.8539475 0.5692344 +1.458117 0.8539475 0.5692344 +1.667858 0.8539475 0.5692344 +1.907556 0.8539475 0.5692344 +2.181521 0.8539475 0.5692344 +2.494678 0.8539475 0.5692344 +2.852659 0.8539475 0.5692344 +3.261896 0.8539475 0.5692344 +3.729748 0.8539475 0.5692344 +4.264621 0.8539475 0.5692344 +4.876131 0.8539475 0.5692344 +5.575266 0.8539475 0.5692344 +6.374593 0.8539475 0.5692344 +0 0.974052 0.5692344 +0 0.974052 0.5692344 +0 0.974052 0.5692344 +0.002268731 0.974052 0.5692344 +0.07076883 0.974052 0.5692344 +0.1119241 0.974052 0.5692344 +0.1475052 0.974052 0.5692344 +0.1846606 0.974052 0.5692344 +0.2245119 0.974052 0.5692344 +0.2679612 0.974052 0.5692344 +0.3158431 0.974052 0.5692344 +0.3689944 0.974052 0.5692344 +0.4282948 0.974052 0.5692344 +0.494694 0.974052 0.5692344 +0.5692344 0.974052 0.5692344 +0.6530715 0.974052 0.5692344 +0.7474945 0.974052 0.5692344 +0.8539475 0.974052 0.5692344 +0.974052 0.974052 0.5692344 +1.113885 0.974052 0.5692344 +1.27456 0.974052 0.5692344 +1.458117 0.974052 0.5692344 +1.667858 0.974052 0.5692344 +1.907556 0.974052 0.5692344 +2.181521 0.974052 0.5692344 +2.494678 0.974052 0.5692344 +2.852659 0.974052 0.5692344 +3.261896 0.974052 0.5692344 +3.729748 0.974052 0.5692344 +4.264621 0.974052 0.5692344 +4.876131 0.974052 0.5692344 +5.575266 0.974052 0.5692344 +6.374593 0.974052 0.5692344 +0 1.113885 0.5692344 +0 1.113885 0.5692344 +0 1.113885 0.5692344 +0.002268731 1.113885 0.5692344 +0.07076883 1.113885 0.5692344 +0.1119241 1.113885 0.5692344 +0.1475052 1.113885 0.5692344 +0.1846606 1.113885 0.5692344 +0.2245119 1.113885 0.5692344 +0.2679612 1.113885 0.5692344 +0.3158431 1.113885 0.5692344 +0.3689944 1.113885 0.5692344 +0.4282948 1.113885 0.5692344 +0.494694 1.113885 0.5692344 +0.5692344 1.113885 0.5692344 +0.6530715 1.113885 0.5692344 +0.7474945 1.113885 0.5692344 +0.8539475 1.113885 0.5692344 +0.974052 1.113885 0.5692344 +1.113885 1.113885 0.5692344 +1.27456 1.113885 0.5692344 +1.458117 1.113885 0.5692344 +1.667858 1.113885 0.5692344 +1.907556 1.113885 0.5692344 +2.181521 1.113885 0.5692344 +2.494678 1.113885 0.5692344 +2.852659 1.113885 0.5692344 +3.261896 1.113885 0.5692344 +3.729748 1.113885 0.5692344 +4.264621 1.113885 0.5692344 +4.876131 1.113885 0.5692344 +5.575266 1.113885 0.5692344 +6.374593 1.113885 0.5692344 +0 1.27456 0.5692344 +0 1.27456 0.5692344 +0 1.27456 0.5692344 +0.002268731 1.27456 0.5692344 +0.07076883 1.27456 0.5692344 +0.1119241 1.27456 0.5692344 +0.1475052 1.27456 0.5692344 +0.1846606 1.27456 0.5692344 +0.2245119 1.27456 0.5692344 +0.2679612 1.27456 0.5692344 +0.3158431 1.27456 0.5692344 +0.3689944 1.27456 0.5692344 +0.4282948 1.27456 0.5692344 +0.494694 1.27456 0.5692344 +0.5692344 1.27456 0.5692344 +0.6530715 1.27456 0.5692344 +0.7474945 1.27456 0.5692344 +0.8539475 1.27456 0.5692344 +0.974052 1.27456 0.5692344 +1.113885 1.27456 0.5692344 +1.27456 1.27456 0.5692344 +1.458117 1.27456 0.5692344 +1.667858 1.27456 0.5692344 +1.907556 1.27456 0.5692344 +2.181521 1.27456 0.5692344 +2.494678 1.27456 0.5692344 +2.852659 1.27456 0.5692344 +3.261896 1.27456 0.5692344 +3.729748 1.27456 0.5692344 +4.264621 1.27456 0.5692344 +4.876131 1.27456 0.5692344 +5.575266 1.27456 0.5692344 +6.374593 1.27456 0.5692344 +0 1.458117 0.5692344 +0 1.458117 0.5692344 +0 1.458117 0.5692344 +0.002268731 1.458117 0.5692344 +0.07076883 1.458117 0.5692344 +0.1119241 1.458117 0.5692344 +0.1475052 1.458117 0.5692344 +0.1846606 1.458117 0.5692344 +0.2245119 1.458117 0.5692344 +0.2679612 1.458117 0.5692344 +0.3158431 1.458117 0.5692344 +0.3689944 1.458117 0.5692344 +0.4282948 1.458117 0.5692344 +0.494694 1.458117 0.5692344 +0.5692344 1.458117 0.5692344 +0.6530715 1.458117 0.5692344 +0.7474945 1.458117 0.5692344 +0.8539475 1.458117 0.5692344 +0.974052 1.458117 0.5692344 +1.113885 1.458117 0.5692344 +1.27456 1.458117 0.5692344 +1.458117 1.458117 0.5692344 +1.667858 1.458117 0.5692344 +1.907556 1.458117 0.5692344 +2.181521 1.458117 0.5692344 +2.494678 1.458117 0.5692344 +2.852659 1.458117 0.5692344 +3.261896 1.458117 0.5692344 +3.729748 1.458117 0.5692344 +4.264621 1.458117 0.5692344 +4.876131 1.458117 0.5692344 +5.575266 1.458117 0.5692344 +6.374593 1.458117 0.5692344 +0 1.667858 0.5692344 +0 1.667858 0.5692344 +0 1.667858 0.5692344 +0.002268731 1.667858 0.5692344 +0.07076883 1.667858 0.5692344 +0.1119241 1.667858 0.5692344 +0.1475052 1.667858 0.5692344 +0.1846606 1.667858 0.5692344 +0.2245119 1.667858 0.5692344 +0.2679612 1.667858 0.5692344 +0.3158431 1.667858 0.5692344 +0.3689944 1.667858 0.5692344 +0.4282948 1.667858 0.5692344 +0.494694 1.667858 0.5692344 +0.5692344 1.667858 0.5692344 +0.6530715 1.667858 0.5692344 +0.7474945 1.667858 0.5692344 +0.8539475 1.667858 0.5692344 +0.974052 1.667858 0.5692344 +1.113885 1.667858 0.5692344 +1.27456 1.667858 0.5692344 +1.458117 1.667858 0.5692344 +1.667858 1.667858 0.5692344 +1.907556 1.667858 0.5692344 +2.181521 1.667858 0.5692344 +2.494678 1.667858 0.5692344 +2.852659 1.667858 0.5692344 +3.261896 1.667858 0.5692344 +3.729748 1.667858 0.5692344 +4.264621 1.667858 0.5692344 +4.876131 1.667858 0.5692344 +5.575266 1.667858 0.5692344 +6.374593 1.667858 0.5692344 +0 1.907556 0.5692344 +0 1.907556 0.5692344 +0 1.907556 0.5692344 +0.002268731 1.907556 0.5692344 +0.07076883 1.907556 0.5692344 +0.1119241 1.907556 0.5692344 +0.1475052 1.907556 0.5692344 +0.1846606 1.907556 0.5692344 +0.2245119 1.907556 0.5692344 +0.2679612 1.907556 0.5692344 +0.3158431 1.907556 0.5692344 +0.3689944 1.907556 0.5692344 +0.4282948 1.907556 0.5692344 +0.494694 1.907556 0.5692344 +0.5692344 1.907556 0.5692344 +0.6530715 1.907556 0.5692344 +0.7474945 1.907556 0.5692344 +0.8539475 1.907556 0.5692344 +0.974052 1.907556 0.5692344 +1.113885 1.907556 0.5692344 +1.27456 1.907556 0.5692344 +1.458117 1.907556 0.5692344 +1.667858 1.907556 0.5692344 +1.907556 1.907556 0.5692344 +2.181521 1.907556 0.5692344 +2.494678 1.907556 0.5692344 +2.852659 1.907556 0.5692344 +3.261896 1.907556 0.5692344 +3.729748 1.907556 0.5692344 +4.264621 1.907556 0.5692344 +4.876131 1.907556 0.5692344 +5.575266 1.907556 0.5692344 +6.374593 1.907556 0.5692344 +0 2.181521 0.5692344 +0 2.181521 0.5692344 +0 2.181521 0.5692344 +0.002268731 2.181521 0.5692344 +0.07076883 2.181521 0.5692344 +0.1119241 2.181521 0.5692344 +0.1475052 2.181521 0.5692344 +0.1846606 2.181521 0.5692344 +0.2245119 2.181521 0.5692344 +0.2679612 2.181521 0.5692344 +0.3158431 2.181521 0.5692344 +0.3689944 2.181521 0.5692344 +0.4282948 2.181521 0.5692344 +0.494694 2.181521 0.5692344 +0.5692344 2.181521 0.5692344 +0.6530715 2.181521 0.5692344 +0.7474945 2.181521 0.5692344 +0.8539475 2.181521 0.5692344 +0.974052 2.181521 0.5692344 +1.113885 2.181521 0.5692344 +1.27456 2.181521 0.5692344 +1.458117 2.181521 0.5692344 +1.667858 2.181521 0.5692344 +1.907556 2.181521 0.5692344 +2.181521 2.181521 0.5692344 +2.494678 2.181521 0.5692344 +2.852659 2.181521 0.5692344 +3.261896 2.181521 0.5692344 +3.729748 2.181521 0.5692344 +4.264621 2.181521 0.5692344 +4.876131 2.181521 0.5692344 +5.575266 2.181521 0.5692344 +6.374593 2.181521 0.5692344 +0 2.494678 0.5692344 +0 2.494678 0.5692344 +0 2.494678 0.5692344 +0.002268731 2.494678 0.5692344 +0.07076883 2.494678 0.5692344 +0.1119241 2.494678 0.5692344 +0.1475052 2.494678 0.5692344 +0.1846606 2.494678 0.5692344 +0.2245119 2.494678 0.5692344 +0.2679612 2.494678 0.5692344 +0.3158431 2.494678 0.5692344 +0.3689944 2.494678 0.5692344 +0.4282948 2.494678 0.5692344 +0.494694 2.494678 0.5692344 +0.5692344 2.494678 0.5692344 +0.6530715 2.494678 0.5692344 +0.7474945 2.494678 0.5692344 +0.8539475 2.494678 0.5692344 +0.974052 2.494678 0.5692344 +1.113885 2.494678 0.5692344 +1.27456 2.494678 0.5692344 +1.458117 2.494678 0.5692344 +1.667858 2.494678 0.5692344 +1.907556 2.494678 0.5692344 +2.181521 2.494678 0.5692344 +2.494678 2.494678 0.5692344 +2.852659 2.494678 0.5692344 +3.261896 2.494678 0.5692344 +3.729748 2.494678 0.5692344 +4.264621 2.494678 0.5692344 +4.876131 2.494678 0.5692344 +5.575266 2.494678 0.5692344 +6.374593 2.494678 0.5692344 +0 2.852659 0.5692344 +0 2.852659 0.5692344 +0 2.852659 0.5692344 +0.002268731 2.852659 0.5692344 +0.07076883 2.852659 0.5692344 +0.1119241 2.852659 0.5692344 +0.1475052 2.852659 0.5692344 +0.1846606 2.852659 0.5692344 +0.2245119 2.852659 0.5692344 +0.2679612 2.852659 0.5692344 +0.3158431 2.852659 0.5692344 +0.3689944 2.852659 0.5692344 +0.4282948 2.852659 0.5692344 +0.494694 2.852659 0.5692344 +0.5692344 2.852659 0.5692344 +0.6530715 2.852659 0.5692344 +0.7474945 2.852659 0.5692344 +0.8539475 2.852659 0.5692344 +0.974052 2.852659 0.5692344 +1.113885 2.852659 0.5692344 +1.27456 2.852659 0.5692344 +1.458117 2.852659 0.5692344 +1.667858 2.852659 0.5692344 +1.907556 2.852659 0.5692344 +2.181521 2.852659 0.5692344 +2.494678 2.852659 0.5692344 +2.852659 2.852659 0.5692344 +3.261896 2.852659 0.5692344 +3.729748 2.852659 0.5692344 +4.264621 2.852659 0.5692344 +4.876131 2.852659 0.5692344 +5.575266 2.852659 0.5692344 +6.374593 2.852659 0.5692344 +0 3.261896 0.5692344 +0 3.261896 0.5692344 +0 3.261896 0.5692344 +0.002268731 3.261896 0.5692344 +0.07076883 3.261896 0.5692344 +0.1119241 3.261896 0.5692344 +0.1475052 3.261896 0.5692344 +0.1846606 3.261896 0.5692344 +0.2245119 3.261896 0.5692344 +0.2679612 3.261896 0.5692344 +0.3158431 3.261896 0.5692344 +0.3689944 3.261896 0.5692344 +0.4282948 3.261896 0.5692344 +0.494694 3.261896 0.5692344 +0.5692344 3.261896 0.5692344 +0.6530715 3.261896 0.5692344 +0.7474945 3.261896 0.5692344 +0.8539475 3.261896 0.5692344 +0.974052 3.261896 0.5692344 +1.113885 3.261896 0.5692344 +1.27456 3.261896 0.5692344 +1.458117 3.261896 0.5692344 +1.667858 3.261896 0.5692344 +1.907556 3.261896 0.5692344 +2.181521 3.261896 0.5692344 +2.494678 3.261896 0.5692344 +2.852659 3.261896 0.5692344 +3.261896 3.261896 0.5692344 +3.729748 3.261896 0.5692344 +4.264621 3.261896 0.5692344 +4.876131 3.261896 0.5692344 +5.575266 3.261896 0.5692344 +6.374593 3.261896 0.5692344 +0 3.729748 0.5692344 +0 3.729748 0.5692344 +0 3.729748 0.5692344 +0.002268731 3.729748 0.5692344 +0.07076883 3.729748 0.5692344 +0.1119241 3.729748 0.5692344 +0.1475052 3.729748 0.5692344 +0.1846606 3.729748 0.5692344 +0.2245119 3.729748 0.5692344 +0.2679612 3.729748 0.5692344 +0.3158431 3.729748 0.5692344 +0.3689944 3.729748 0.5692344 +0.4282948 3.729748 0.5692344 +0.494694 3.729748 0.5692344 +0.5692344 3.729748 0.5692344 +0.6530715 3.729748 0.5692344 +0.7474945 3.729748 0.5692344 +0.8539475 3.729748 0.5692344 +0.974052 3.729748 0.5692344 +1.113885 3.729748 0.5692344 +1.27456 3.729748 0.5692344 +1.458117 3.729748 0.5692344 +1.667858 3.729748 0.5692344 +1.907556 3.729748 0.5692344 +2.181521 3.729748 0.5692344 +2.494678 3.729748 0.5692344 +2.852659 3.729748 0.5692344 +3.261896 3.729748 0.5692344 +3.729748 3.729748 0.5692344 +4.264621 3.729748 0.5692344 +4.876131 3.729748 0.5692344 +5.575266 3.729748 0.5692344 +6.374593 3.729748 0.5692344 +0 4.264621 0.5692344 +0 4.264621 0.5692344 +0 4.264621 0.5692344 +0.002268731 4.264621 0.5692344 +0.07076883 4.264621 0.5692344 +0.1119241 4.264621 0.5692344 +0.1475052 4.264621 0.5692344 +0.1846606 4.264621 0.5692344 +0.2245119 4.264621 0.5692344 +0.2679612 4.264621 0.5692344 +0.3158431 4.264621 0.5692344 +0.3689944 4.264621 0.5692344 +0.4282948 4.264621 0.5692344 +0.494694 4.264621 0.5692344 +0.5692344 4.264621 0.5692344 +0.6530715 4.264621 0.5692344 +0.7474945 4.264621 0.5692344 +0.8539475 4.264621 0.5692344 +0.974052 4.264621 0.5692344 +1.113885 4.264621 0.5692344 +1.27456 4.264621 0.5692344 +1.458117 4.264621 0.5692344 +1.667858 4.264621 0.5692344 +1.907556 4.264621 0.5692344 +2.181521 4.264621 0.5692344 +2.494678 4.264621 0.5692344 +2.852659 4.264621 0.5692344 +3.261896 4.264621 0.5692344 +3.729748 4.264621 0.5692344 +4.264621 4.264621 0.5692344 +4.876131 4.264621 0.5692344 +5.575266 4.264621 0.5692344 +6.374593 4.264621 0.5692344 +0 4.876131 0.5692344 +0 4.876131 0.5692344 +0 4.876131 0.5692344 +0.002268731 4.876131 0.5692344 +0.07076883 4.876131 0.5692344 +0.1119241 4.876131 0.5692344 +0.1475052 4.876131 0.5692344 +0.1846606 4.876131 0.5692344 +0.2245119 4.876131 0.5692344 +0.2679612 4.876131 0.5692344 +0.3158431 4.876131 0.5692344 +0.3689944 4.876131 0.5692344 +0.4282948 4.876131 0.5692344 +0.494694 4.876131 0.5692344 +0.5692344 4.876131 0.5692344 +0.6530715 4.876131 0.5692344 +0.7474945 4.876131 0.5692344 +0.8539475 4.876131 0.5692344 +0.974052 4.876131 0.5692344 +1.113885 4.876131 0.5692344 +1.27456 4.876131 0.5692344 +1.458117 4.876131 0.5692344 +1.667858 4.876131 0.5692344 +1.907556 4.876131 0.5692344 +2.181521 4.876131 0.5692344 +2.494678 4.876131 0.5692344 +2.852659 4.876131 0.5692344 +3.261896 4.876131 0.5692344 +3.729748 4.876131 0.5692344 +4.264621 4.876131 0.5692344 +4.876131 4.876131 0.5692344 +5.575266 4.876131 0.5692344 +6.374593 4.876131 0.5692344 +0 5.575266 0.5692344 +0 5.575266 0.5692344 +0 5.575266 0.5692344 +0.002268731 5.575266 0.5692344 +0.07076883 5.575266 0.5692344 +0.1119241 5.575266 0.5692344 +0.1475052 5.575266 0.5692344 +0.1846606 5.575266 0.5692344 +0.2245119 5.575266 0.5692344 +0.2679612 5.575266 0.5692344 +0.3158431 5.575266 0.5692344 +0.3689944 5.575266 0.5692344 +0.4282948 5.575266 0.5692344 +0.494694 5.575266 0.5692344 +0.5692344 5.575266 0.5692344 +0.6530715 5.575266 0.5692344 +0.7474945 5.575266 0.5692344 +0.8539475 5.575266 0.5692344 +0.974052 5.575266 0.5692344 +1.113885 5.575266 0.5692344 +1.27456 5.575266 0.5692344 +1.458117 5.575266 0.5692344 +1.667858 5.575266 0.5692344 +1.907556 5.575266 0.5692344 +2.181521 5.575266 0.5692344 +2.494678 5.575266 0.5692344 +2.852659 5.575266 0.5692344 +3.261896 5.575266 0.5692344 +3.729748 5.575266 0.5692344 +4.264621 5.575266 0.5692344 +4.876131 5.575266 0.5692344 +5.575266 5.575266 0.5692344 +6.374593 5.575266 0.5692344 +0 6.374593 0.5692344 +0 6.374593 0.5692344 +0 6.374593 0.5692344 +0.002268731 6.374593 0.5692344 +0.07076883 6.374593 0.5692344 +0.1119241 6.374593 0.5692344 +0.1475052 6.374593 0.5692344 +0.1846606 6.374593 0.5692344 +0.2245119 6.374593 0.5692344 +0.2679612 6.374593 0.5692344 +0.3158431 6.374593 0.5692344 +0.3689944 6.374593 0.5692344 +0.4282948 6.374593 0.5692344 +0.494694 6.374593 0.5692344 +0.5692344 6.374593 0.5692344 +0.6530715 6.374593 0.5692344 +0.7474945 6.374593 0.5692344 +0.8539475 6.374593 0.5692344 +0.974052 6.374593 0.5692344 +1.113885 6.374593 0.5692344 +1.27456 6.374593 0.5692344 +1.458117 6.374593 0.5692344 +1.667858 6.374593 0.5692344 +1.907556 6.374593 0.5692344 +2.181521 6.374593 0.5692344 +2.494678 6.374593 0.5692344 +2.852659 6.374593 0.5692344 +3.261896 6.374593 0.5692344 +3.729748 6.374593 0.5692344 +4.264621 6.374593 0.5692344 +4.876131 6.374593 0.5692344 +5.575266 6.374593 0.5692344 +6.374593 6.374593 0.5692344 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0.002268731 0.6530715 +0 0.002268731 0.6530715 +0 0.002268731 0.6530715 +0.002268731 0.002268731 0.6530715 +0.07076883 0.002268731 0.6530715 +0.1119241 0.002268731 0.6530715 +0.1475052 0.002268731 0.6530715 +0.1846606 0.002268731 0.6530715 +0.2245119 0.002268731 0.6530715 +0.2679612 0.002268731 0.6530715 +0.3158431 0.002268731 0.6530715 +0.3689944 0.002268731 0.6530715 +0.4282948 0.002268731 0.6530715 +0.494694 0.002268731 0.6530715 +0.5692344 0.002268731 0.6530715 +0.6530715 0.002268731 0.6530715 +0.7474945 0.002268731 0.6530715 +0.8539475 0.002268731 0.6530715 +0.974052 0.002268731 0.6530715 +1.113885 0.002268731 0.6530715 +1.27456 0.002268731 0.6530715 +1.458117 0.002268731 0.6530715 +1.667858 0.002268731 0.6530715 +1.907556 0.002268731 0.6530715 +2.181521 0.002268731 0.6530715 +2.494678 0.002268731 0.6530715 +2.852659 0.002268731 0.6530715 +3.261896 0.002268731 0.6530715 +3.729748 0.002268731 0.6530715 +4.264621 0.002268731 0.6530715 +4.876131 0.002268731 0.6530715 +5.575266 0.002268731 0.6530715 +6.374593 0.002268731 0.6530715 +0 0.07076883 0.6530715 +0 0.07076883 0.6530715 +0 0.07076883 0.6530715 +0.002268731 0.07076883 0.6530715 +0.07076883 0.07076883 0.6530715 +0.1119241 0.07076883 0.6530715 +0.1475052 0.07076883 0.6530715 +0.1846606 0.07076883 0.6530715 +0.2245119 0.07076883 0.6530715 +0.2679612 0.07076883 0.6530715 +0.3158431 0.07076883 0.6530715 +0.3689944 0.07076883 0.6530715 +0.4282948 0.07076883 0.6530715 +0.494694 0.07076883 0.6530715 +0.5692344 0.07076883 0.6530715 +0.6530715 0.07076883 0.6530715 +0.7474945 0.07076883 0.6530715 +0.8539475 0.07076883 0.6530715 +0.974052 0.07076883 0.6530715 +1.113885 0.07076883 0.6530715 +1.27456 0.07076883 0.6530715 +1.458117 0.07076883 0.6530715 +1.667858 0.07076883 0.6530715 +1.907556 0.07076883 0.6530715 +2.181521 0.07076883 0.6530715 +2.494678 0.07076883 0.6530715 +2.852659 0.07076883 0.6530715 +3.261896 0.07076883 0.6530715 +3.729748 0.07076883 0.6530715 +4.264621 0.07076883 0.6530715 +4.876131 0.07076883 0.6530715 +5.575266 0.07076883 0.6530715 +6.374593 0.07076883 0.6530715 +0 0.1119241 0.6530715 +0 0.1119241 0.6530715 +0 0.1119241 0.6530715 +0.002268731 0.1119241 0.6530715 +0.07076883 0.1119241 0.6530715 +0.1119241 0.1119241 0.6530715 +0.1475052 0.1119241 0.6530715 +0.1846606 0.1119241 0.6530715 +0.2245119 0.1119241 0.6530715 +0.2679612 0.1119241 0.6530715 +0.3158431 0.1119241 0.6530715 +0.3689944 0.1119241 0.6530715 +0.4282948 0.1119241 0.6530715 +0.494694 0.1119241 0.6530715 +0.5692344 0.1119241 0.6530715 +0.6530715 0.1119241 0.6530715 +0.7474945 0.1119241 0.6530715 +0.8539475 0.1119241 0.6530715 +0.974052 0.1119241 0.6530715 +1.113885 0.1119241 0.6530715 +1.27456 0.1119241 0.6530715 +1.458117 0.1119241 0.6530715 +1.667858 0.1119241 0.6530715 +1.907556 0.1119241 0.6530715 +2.181521 0.1119241 0.6530715 +2.494678 0.1119241 0.6530715 +2.852659 0.1119241 0.6530715 +3.261896 0.1119241 0.6530715 +3.729748 0.1119241 0.6530715 +4.264621 0.1119241 0.6530715 +4.876131 0.1119241 0.6530715 +5.575266 0.1119241 0.6530715 +6.374593 0.1119241 0.6530715 +0 0.1475052 0.6530715 +0 0.1475052 0.6530715 +0 0.1475052 0.6530715 +0.002268731 0.1475052 0.6530715 +0.07076883 0.1475052 0.6530715 +0.1119241 0.1475052 0.6530715 +0.1475052 0.1475052 0.6530715 +0.1846606 0.1475052 0.6530715 +0.2245119 0.1475052 0.6530715 +0.2679612 0.1475052 0.6530715 +0.3158431 0.1475052 0.6530715 +0.3689944 0.1475052 0.6530715 +0.4282948 0.1475052 0.6530715 +0.494694 0.1475052 0.6530715 +0.5692344 0.1475052 0.6530715 +0.6530715 0.1475052 0.6530715 +0.7474945 0.1475052 0.6530715 +0.8539475 0.1475052 0.6530715 +0.974052 0.1475052 0.6530715 +1.113885 0.1475052 0.6530715 +1.27456 0.1475052 0.6530715 +1.458117 0.1475052 0.6530715 +1.667858 0.1475052 0.6530715 +1.907556 0.1475052 0.6530715 +2.181521 0.1475052 0.6530715 +2.494678 0.1475052 0.6530715 +2.852659 0.1475052 0.6530715 +3.261896 0.1475052 0.6530715 +3.729748 0.1475052 0.6530715 +4.264621 0.1475052 0.6530715 +4.876131 0.1475052 0.6530715 +5.575266 0.1475052 0.6530715 +6.374593 0.1475052 0.6530715 +0 0.1846606 0.6530715 +0 0.1846606 0.6530715 +0 0.1846606 0.6530715 +0.002268731 0.1846606 0.6530715 +0.07076883 0.1846606 0.6530715 +0.1119241 0.1846606 0.6530715 +0.1475052 0.1846606 0.6530715 +0.1846606 0.1846606 0.6530715 +0.2245119 0.1846606 0.6530715 +0.2679612 0.1846606 0.6530715 +0.3158431 0.1846606 0.6530715 +0.3689944 0.1846606 0.6530715 +0.4282948 0.1846606 0.6530715 +0.494694 0.1846606 0.6530715 +0.5692344 0.1846606 0.6530715 +0.6530715 0.1846606 0.6530715 +0.7474945 0.1846606 0.6530715 +0.8539475 0.1846606 0.6530715 +0.974052 0.1846606 0.6530715 +1.113885 0.1846606 0.6530715 +1.27456 0.1846606 0.6530715 +1.458117 0.1846606 0.6530715 +1.667858 0.1846606 0.6530715 +1.907556 0.1846606 0.6530715 +2.181521 0.1846606 0.6530715 +2.494678 0.1846606 0.6530715 +2.852659 0.1846606 0.6530715 +3.261896 0.1846606 0.6530715 +3.729748 0.1846606 0.6530715 +4.264621 0.1846606 0.6530715 +4.876131 0.1846606 0.6530715 +5.575266 0.1846606 0.6530715 +6.374593 0.1846606 0.6530715 +0 0.2245119 0.6530715 +0 0.2245119 0.6530715 +0 0.2245119 0.6530715 +0.002268731 0.2245119 0.6530715 +0.07076883 0.2245119 0.6530715 +0.1119241 0.2245119 0.6530715 +0.1475052 0.2245119 0.6530715 +0.1846606 0.2245119 0.6530715 +0.2245119 0.2245119 0.6530715 +0.2679612 0.2245119 0.6530715 +0.3158431 0.2245119 0.6530715 +0.3689944 0.2245119 0.6530715 +0.4282948 0.2245119 0.6530715 +0.494694 0.2245119 0.6530715 +0.5692344 0.2245119 0.6530715 +0.6530715 0.2245119 0.6530715 +0.7474945 0.2245119 0.6530715 +0.8539475 0.2245119 0.6530715 +0.974052 0.2245119 0.6530715 +1.113885 0.2245119 0.6530715 +1.27456 0.2245119 0.6530715 +1.458117 0.2245119 0.6530715 +1.667858 0.2245119 0.6530715 +1.907556 0.2245119 0.6530715 +2.181521 0.2245119 0.6530715 +2.494678 0.2245119 0.6530715 +2.852659 0.2245119 0.6530715 +3.261896 0.2245119 0.6530715 +3.729748 0.2245119 0.6530715 +4.264621 0.2245119 0.6530715 +4.876131 0.2245119 0.6530715 +5.575266 0.2245119 0.6530715 +6.374593 0.2245119 0.6530715 +0 0.2679612 0.6530715 +0 0.2679612 0.6530715 +0 0.2679612 0.6530715 +0.002268731 0.2679612 0.6530715 +0.07076883 0.2679612 0.6530715 +0.1119241 0.2679612 0.6530715 +0.1475052 0.2679612 0.6530715 +0.1846606 0.2679612 0.6530715 +0.2245119 0.2679612 0.6530715 +0.2679612 0.2679612 0.6530715 +0.3158431 0.2679612 0.6530715 +0.3689944 0.2679612 0.6530715 +0.4282948 0.2679612 0.6530715 +0.494694 0.2679612 0.6530715 +0.5692344 0.2679612 0.6530715 +0.6530715 0.2679612 0.6530715 +0.7474945 0.2679612 0.6530715 +0.8539475 0.2679612 0.6530715 +0.974052 0.2679612 0.6530715 +1.113885 0.2679612 0.6530715 +1.27456 0.2679612 0.6530715 +1.458117 0.2679612 0.6530715 +1.667858 0.2679612 0.6530715 +1.907556 0.2679612 0.6530715 +2.181521 0.2679612 0.6530715 +2.494678 0.2679612 0.6530715 +2.852659 0.2679612 0.6530715 +3.261896 0.2679612 0.6530715 +3.729748 0.2679612 0.6530715 +4.264621 0.2679612 0.6530715 +4.876131 0.2679612 0.6530715 +5.575266 0.2679612 0.6530715 +6.374593 0.2679612 0.6530715 +0 0.3158431 0.6530715 +0 0.3158431 0.6530715 +0 0.3158431 0.6530715 +0.002268731 0.3158431 0.6530715 +0.07076883 0.3158431 0.6530715 +0.1119241 0.3158431 0.6530715 +0.1475052 0.3158431 0.6530715 +0.1846606 0.3158431 0.6530715 +0.2245119 0.3158431 0.6530715 +0.2679612 0.3158431 0.6530715 +0.3158431 0.3158431 0.6530715 +0.3689944 0.3158431 0.6530715 +0.4282948 0.3158431 0.6530715 +0.494694 0.3158431 0.6530715 +0.5692344 0.3158431 0.6530715 +0.6530715 0.3158431 0.6530715 +0.7474945 0.3158431 0.6530715 +0.8539475 0.3158431 0.6530715 +0.974052 0.3158431 0.6530715 +1.113885 0.3158431 0.6530715 +1.27456 0.3158431 0.6530715 +1.458117 0.3158431 0.6530715 +1.667858 0.3158431 0.6530715 +1.907556 0.3158431 0.6530715 +2.181521 0.3158431 0.6530715 +2.494678 0.3158431 0.6530715 +2.852659 0.3158431 0.6530715 +3.261896 0.3158431 0.6530715 +3.729748 0.3158431 0.6530715 +4.264621 0.3158431 0.6530715 +4.876131 0.3158431 0.6530715 +5.575266 0.3158431 0.6530715 +6.374593 0.3158431 0.6530715 +0 0.3689944 0.6530715 +0 0.3689944 0.6530715 +0 0.3689944 0.6530715 +0.002268731 0.3689944 0.6530715 +0.07076883 0.3689944 0.6530715 +0.1119241 0.3689944 0.6530715 +0.1475052 0.3689944 0.6530715 +0.1846606 0.3689944 0.6530715 +0.2245119 0.3689944 0.6530715 +0.2679612 0.3689944 0.6530715 +0.3158431 0.3689944 0.6530715 +0.3689944 0.3689944 0.6530715 +0.4282948 0.3689944 0.6530715 +0.494694 0.3689944 0.6530715 +0.5692344 0.3689944 0.6530715 +0.6530715 0.3689944 0.6530715 +0.7474945 0.3689944 0.6530715 +0.8539475 0.3689944 0.6530715 +0.974052 0.3689944 0.6530715 +1.113885 0.3689944 0.6530715 +1.27456 0.3689944 0.6530715 +1.458117 0.3689944 0.6530715 +1.667858 0.3689944 0.6530715 +1.907556 0.3689944 0.6530715 +2.181521 0.3689944 0.6530715 +2.494678 0.3689944 0.6530715 +2.852659 0.3689944 0.6530715 +3.261896 0.3689944 0.6530715 +3.729748 0.3689944 0.6530715 +4.264621 0.3689944 0.6530715 +4.876131 0.3689944 0.6530715 +5.575266 0.3689944 0.6530715 +6.374593 0.3689944 0.6530715 +0 0.4282948 0.6530715 +0 0.4282948 0.6530715 +0 0.4282948 0.6530715 +0.002268731 0.4282948 0.6530715 +0.07076883 0.4282948 0.6530715 +0.1119241 0.4282948 0.6530715 +0.1475052 0.4282948 0.6530715 +0.1846606 0.4282948 0.6530715 +0.2245119 0.4282948 0.6530715 +0.2679612 0.4282948 0.6530715 +0.3158431 0.4282948 0.6530715 +0.3689944 0.4282948 0.6530715 +0.4282948 0.4282948 0.6530715 +0.494694 0.4282948 0.6530715 +0.5692344 0.4282948 0.6530715 +0.6530715 0.4282948 0.6530715 +0.7474945 0.4282948 0.6530715 +0.8539475 0.4282948 0.6530715 +0.974052 0.4282948 0.6530715 +1.113885 0.4282948 0.6530715 +1.27456 0.4282948 0.6530715 +1.458117 0.4282948 0.6530715 +1.667858 0.4282948 0.6530715 +1.907556 0.4282948 0.6530715 +2.181521 0.4282948 0.6530715 +2.494678 0.4282948 0.6530715 +2.852659 0.4282948 0.6530715 +3.261896 0.4282948 0.6530715 +3.729748 0.4282948 0.6530715 +4.264621 0.4282948 0.6530715 +4.876131 0.4282948 0.6530715 +5.575266 0.4282948 0.6530715 +6.374593 0.4282948 0.6530715 +0 0.494694 0.6530715 +0 0.494694 0.6530715 +0 0.494694 0.6530715 +0.002268731 0.494694 0.6530715 +0.07076883 0.494694 0.6530715 +0.1119241 0.494694 0.6530715 +0.1475052 0.494694 0.6530715 +0.1846606 0.494694 0.6530715 +0.2245119 0.494694 0.6530715 +0.2679612 0.494694 0.6530715 +0.3158431 0.494694 0.6530715 +0.3689944 0.494694 0.6530715 +0.4282948 0.494694 0.6530715 +0.494694 0.494694 0.6530715 +0.5692344 0.494694 0.6530715 +0.6530715 0.494694 0.6530715 +0.7474945 0.494694 0.6530715 +0.8539475 0.494694 0.6530715 +0.974052 0.494694 0.6530715 +1.113885 0.494694 0.6530715 +1.27456 0.494694 0.6530715 +1.458117 0.494694 0.6530715 +1.667858 0.494694 0.6530715 +1.907556 0.494694 0.6530715 +2.181521 0.494694 0.6530715 +2.494678 0.494694 0.6530715 +2.852659 0.494694 0.6530715 +3.261896 0.494694 0.6530715 +3.729748 0.494694 0.6530715 +4.264621 0.494694 0.6530715 +4.876131 0.494694 0.6530715 +5.575266 0.494694 0.6530715 +6.374593 0.494694 0.6530715 +0 0.5692344 0.6530715 +0 0.5692344 0.6530715 +0 0.5692344 0.6530715 +0.002268731 0.5692344 0.6530715 +0.07076883 0.5692344 0.6530715 +0.1119241 0.5692344 0.6530715 +0.1475052 0.5692344 0.6530715 +0.1846606 0.5692344 0.6530715 +0.2245119 0.5692344 0.6530715 +0.2679612 0.5692344 0.6530715 +0.3158431 0.5692344 0.6530715 +0.3689944 0.5692344 0.6530715 +0.4282948 0.5692344 0.6530715 +0.494694 0.5692344 0.6530715 +0.5692344 0.5692344 0.6530715 +0.6530715 0.5692344 0.6530715 +0.7474945 0.5692344 0.6530715 +0.8539475 0.5692344 0.6530715 +0.974052 0.5692344 0.6530715 +1.113885 0.5692344 0.6530715 +1.27456 0.5692344 0.6530715 +1.458117 0.5692344 0.6530715 +1.667858 0.5692344 0.6530715 +1.907556 0.5692344 0.6530715 +2.181521 0.5692344 0.6530715 +2.494678 0.5692344 0.6530715 +2.852659 0.5692344 0.6530715 +3.261896 0.5692344 0.6530715 +3.729748 0.5692344 0.6530715 +4.264621 0.5692344 0.6530715 +4.876131 0.5692344 0.6530715 +5.575266 0.5692344 0.6530715 +6.374593 0.5692344 0.6530715 +0 0.6530715 0.6530715 +0 0.6530715 0.6530715 +0 0.6530715 0.6530715 +0.002268731 0.6530715 0.6530715 +0.07076883 0.6530715 0.6530715 +0.1119241 0.6530715 0.6530715 +0.1475052 0.6530715 0.6530715 +0.1846606 0.6530715 0.6530715 +0.2245119 0.6530715 0.6530715 +0.2679612 0.6530715 0.6530715 +0.3158431 0.6530715 0.6530715 +0.3689944 0.6530715 0.6530715 +0.4282948 0.6530715 0.6530715 +0.494694 0.6530715 0.6530715 +0.5692344 0.6530715 0.6530715 +0.6530715 0.6530715 0.6530715 +0.7474945 0.6530715 0.6530715 +0.8539475 0.6530715 0.6530715 +0.974052 0.6530715 0.6530715 +1.113885 0.6530715 0.6530715 +1.27456 0.6530715 0.6530715 +1.458117 0.6530715 0.6530715 +1.667858 0.6530715 0.6530715 +1.907556 0.6530715 0.6530715 +2.181521 0.6530715 0.6530715 +2.494678 0.6530715 0.6530715 +2.852659 0.6530715 0.6530715 +3.261896 0.6530715 0.6530715 +3.729748 0.6530715 0.6530715 +4.264621 0.6530715 0.6530715 +4.876131 0.6530715 0.6530715 +5.575266 0.6530715 0.6530715 +6.374593 0.6530715 0.6530715 +0 0.7474945 0.6530715 +0 0.7474945 0.6530715 +0 0.7474945 0.6530715 +0.002268731 0.7474945 0.6530715 +0.07076883 0.7474945 0.6530715 +0.1119241 0.7474945 0.6530715 +0.1475052 0.7474945 0.6530715 +0.1846606 0.7474945 0.6530715 +0.2245119 0.7474945 0.6530715 +0.2679612 0.7474945 0.6530715 +0.3158431 0.7474945 0.6530715 +0.3689944 0.7474945 0.6530715 +0.4282948 0.7474945 0.6530715 +0.494694 0.7474945 0.6530715 +0.5692344 0.7474945 0.6530715 +0.6530715 0.7474945 0.6530715 +0.7474945 0.7474945 0.6530715 +0.8539475 0.7474945 0.6530715 +0.974052 0.7474945 0.6530715 +1.113885 0.7474945 0.6530715 +1.27456 0.7474945 0.6530715 +1.458117 0.7474945 0.6530715 +1.667858 0.7474945 0.6530715 +1.907556 0.7474945 0.6530715 +2.181521 0.7474945 0.6530715 +2.494678 0.7474945 0.6530715 +2.852659 0.7474945 0.6530715 +3.261896 0.7474945 0.6530715 +3.729748 0.7474945 0.6530715 +4.264621 0.7474945 0.6530715 +4.876131 0.7474945 0.6530715 +5.575266 0.7474945 0.6530715 +6.374593 0.7474945 0.6530715 +0 0.8539475 0.6530715 +0 0.8539475 0.6530715 +0 0.8539475 0.6530715 +0.002268731 0.8539475 0.6530715 +0.07076883 0.8539475 0.6530715 +0.1119241 0.8539475 0.6530715 +0.1475052 0.8539475 0.6530715 +0.1846606 0.8539475 0.6530715 +0.2245119 0.8539475 0.6530715 +0.2679612 0.8539475 0.6530715 +0.3158431 0.8539475 0.6530715 +0.3689944 0.8539475 0.6530715 +0.4282948 0.8539475 0.6530715 +0.494694 0.8539475 0.6530715 +0.5692344 0.8539475 0.6530715 +0.6530715 0.8539475 0.6530715 +0.7474945 0.8539475 0.6530715 +0.8539475 0.8539475 0.6530715 +0.974052 0.8539475 0.6530715 +1.113885 0.8539475 0.6530715 +1.27456 0.8539475 0.6530715 +1.458117 0.8539475 0.6530715 +1.667858 0.8539475 0.6530715 +1.907556 0.8539475 0.6530715 +2.181521 0.8539475 0.6530715 +2.494678 0.8539475 0.6530715 +2.852659 0.8539475 0.6530715 +3.261896 0.8539475 0.6530715 +3.729748 0.8539475 0.6530715 +4.264621 0.8539475 0.6530715 +4.876131 0.8539475 0.6530715 +5.575266 0.8539475 0.6530715 +6.374593 0.8539475 0.6530715 +0 0.974052 0.6530715 +0 0.974052 0.6530715 +0 0.974052 0.6530715 +0.002268731 0.974052 0.6530715 +0.07076883 0.974052 0.6530715 +0.1119241 0.974052 0.6530715 +0.1475052 0.974052 0.6530715 +0.1846606 0.974052 0.6530715 +0.2245119 0.974052 0.6530715 +0.2679612 0.974052 0.6530715 +0.3158431 0.974052 0.6530715 +0.3689944 0.974052 0.6530715 +0.4282948 0.974052 0.6530715 +0.494694 0.974052 0.6530715 +0.5692344 0.974052 0.6530715 +0.6530715 0.974052 0.6530715 +0.7474945 0.974052 0.6530715 +0.8539475 0.974052 0.6530715 +0.974052 0.974052 0.6530715 +1.113885 0.974052 0.6530715 +1.27456 0.974052 0.6530715 +1.458117 0.974052 0.6530715 +1.667858 0.974052 0.6530715 +1.907556 0.974052 0.6530715 +2.181521 0.974052 0.6530715 +2.494678 0.974052 0.6530715 +2.852659 0.974052 0.6530715 +3.261896 0.974052 0.6530715 +3.729748 0.974052 0.6530715 +4.264621 0.974052 0.6530715 +4.876131 0.974052 0.6530715 +5.575266 0.974052 0.6530715 +6.374593 0.974052 0.6530715 +0 1.113885 0.6530715 +0 1.113885 0.6530715 +0 1.113885 0.6530715 +0.002268731 1.113885 0.6530715 +0.07076883 1.113885 0.6530715 +0.1119241 1.113885 0.6530715 +0.1475052 1.113885 0.6530715 +0.1846606 1.113885 0.6530715 +0.2245119 1.113885 0.6530715 +0.2679612 1.113885 0.6530715 +0.3158431 1.113885 0.6530715 +0.3689944 1.113885 0.6530715 +0.4282948 1.113885 0.6530715 +0.494694 1.113885 0.6530715 +0.5692344 1.113885 0.6530715 +0.6530715 1.113885 0.6530715 +0.7474945 1.113885 0.6530715 +0.8539475 1.113885 0.6530715 +0.974052 1.113885 0.6530715 +1.113885 1.113885 0.6530715 +1.27456 1.113885 0.6530715 +1.458117 1.113885 0.6530715 +1.667858 1.113885 0.6530715 +1.907556 1.113885 0.6530715 +2.181521 1.113885 0.6530715 +2.494678 1.113885 0.6530715 +2.852659 1.113885 0.6530715 +3.261896 1.113885 0.6530715 +3.729748 1.113885 0.6530715 +4.264621 1.113885 0.6530715 +4.876131 1.113885 0.6530715 +5.575266 1.113885 0.6530715 +6.374593 1.113885 0.6530715 +0 1.27456 0.6530715 +0 1.27456 0.6530715 +0 1.27456 0.6530715 +0.002268731 1.27456 0.6530715 +0.07076883 1.27456 0.6530715 +0.1119241 1.27456 0.6530715 +0.1475052 1.27456 0.6530715 +0.1846606 1.27456 0.6530715 +0.2245119 1.27456 0.6530715 +0.2679612 1.27456 0.6530715 +0.3158431 1.27456 0.6530715 +0.3689944 1.27456 0.6530715 +0.4282948 1.27456 0.6530715 +0.494694 1.27456 0.6530715 +0.5692344 1.27456 0.6530715 +0.6530715 1.27456 0.6530715 +0.7474945 1.27456 0.6530715 +0.8539475 1.27456 0.6530715 +0.974052 1.27456 0.6530715 +1.113885 1.27456 0.6530715 +1.27456 1.27456 0.6530715 +1.458117 1.27456 0.6530715 +1.667858 1.27456 0.6530715 +1.907556 1.27456 0.6530715 +2.181521 1.27456 0.6530715 +2.494678 1.27456 0.6530715 +2.852659 1.27456 0.6530715 +3.261896 1.27456 0.6530715 +3.729748 1.27456 0.6530715 +4.264621 1.27456 0.6530715 +4.876131 1.27456 0.6530715 +5.575266 1.27456 0.6530715 +6.374593 1.27456 0.6530715 +0 1.458117 0.6530715 +0 1.458117 0.6530715 +0 1.458117 0.6530715 +0.002268731 1.458117 0.6530715 +0.07076883 1.458117 0.6530715 +0.1119241 1.458117 0.6530715 +0.1475052 1.458117 0.6530715 +0.1846606 1.458117 0.6530715 +0.2245119 1.458117 0.6530715 +0.2679612 1.458117 0.6530715 +0.3158431 1.458117 0.6530715 +0.3689944 1.458117 0.6530715 +0.4282948 1.458117 0.6530715 +0.494694 1.458117 0.6530715 +0.5692344 1.458117 0.6530715 +0.6530715 1.458117 0.6530715 +0.7474945 1.458117 0.6530715 +0.8539475 1.458117 0.6530715 +0.974052 1.458117 0.6530715 +1.113885 1.458117 0.6530715 +1.27456 1.458117 0.6530715 +1.458117 1.458117 0.6530715 +1.667858 1.458117 0.6530715 +1.907556 1.458117 0.6530715 +2.181521 1.458117 0.6530715 +2.494678 1.458117 0.6530715 +2.852659 1.458117 0.6530715 +3.261896 1.458117 0.6530715 +3.729748 1.458117 0.6530715 +4.264621 1.458117 0.6530715 +4.876131 1.458117 0.6530715 +5.575266 1.458117 0.6530715 +6.374593 1.458117 0.6530715 +0 1.667858 0.6530715 +0 1.667858 0.6530715 +0 1.667858 0.6530715 +0.002268731 1.667858 0.6530715 +0.07076883 1.667858 0.6530715 +0.1119241 1.667858 0.6530715 +0.1475052 1.667858 0.6530715 +0.1846606 1.667858 0.6530715 +0.2245119 1.667858 0.6530715 +0.2679612 1.667858 0.6530715 +0.3158431 1.667858 0.6530715 +0.3689944 1.667858 0.6530715 +0.4282948 1.667858 0.6530715 +0.494694 1.667858 0.6530715 +0.5692344 1.667858 0.6530715 +0.6530715 1.667858 0.6530715 +0.7474945 1.667858 0.6530715 +0.8539475 1.667858 0.6530715 +0.974052 1.667858 0.6530715 +1.113885 1.667858 0.6530715 +1.27456 1.667858 0.6530715 +1.458117 1.667858 0.6530715 +1.667858 1.667858 0.6530715 +1.907556 1.667858 0.6530715 +2.181521 1.667858 0.6530715 +2.494678 1.667858 0.6530715 +2.852659 1.667858 0.6530715 +3.261896 1.667858 0.6530715 +3.729748 1.667858 0.6530715 +4.264621 1.667858 0.6530715 +4.876131 1.667858 0.6530715 +5.575266 1.667858 0.6530715 +6.374593 1.667858 0.6530715 +0 1.907556 0.6530715 +0 1.907556 0.6530715 +0 1.907556 0.6530715 +0.002268731 1.907556 0.6530715 +0.07076883 1.907556 0.6530715 +0.1119241 1.907556 0.6530715 +0.1475052 1.907556 0.6530715 +0.1846606 1.907556 0.6530715 +0.2245119 1.907556 0.6530715 +0.2679612 1.907556 0.6530715 +0.3158431 1.907556 0.6530715 +0.3689944 1.907556 0.6530715 +0.4282948 1.907556 0.6530715 +0.494694 1.907556 0.6530715 +0.5692344 1.907556 0.6530715 +0.6530715 1.907556 0.6530715 +0.7474945 1.907556 0.6530715 +0.8539475 1.907556 0.6530715 +0.974052 1.907556 0.6530715 +1.113885 1.907556 0.6530715 +1.27456 1.907556 0.6530715 +1.458117 1.907556 0.6530715 +1.667858 1.907556 0.6530715 +1.907556 1.907556 0.6530715 +2.181521 1.907556 0.6530715 +2.494678 1.907556 0.6530715 +2.852659 1.907556 0.6530715 +3.261896 1.907556 0.6530715 +3.729748 1.907556 0.6530715 +4.264621 1.907556 0.6530715 +4.876131 1.907556 0.6530715 +5.575266 1.907556 0.6530715 +6.374593 1.907556 0.6530715 +0 2.181521 0.6530715 +0 2.181521 0.6530715 +0 2.181521 0.6530715 +0.002268731 2.181521 0.6530715 +0.07076883 2.181521 0.6530715 +0.1119241 2.181521 0.6530715 +0.1475052 2.181521 0.6530715 +0.1846606 2.181521 0.6530715 +0.2245119 2.181521 0.6530715 +0.2679612 2.181521 0.6530715 +0.3158431 2.181521 0.6530715 +0.3689944 2.181521 0.6530715 +0.4282948 2.181521 0.6530715 +0.494694 2.181521 0.6530715 +0.5692344 2.181521 0.6530715 +0.6530715 2.181521 0.6530715 +0.7474945 2.181521 0.6530715 +0.8539475 2.181521 0.6530715 +0.974052 2.181521 0.6530715 +1.113885 2.181521 0.6530715 +1.27456 2.181521 0.6530715 +1.458117 2.181521 0.6530715 +1.667858 2.181521 0.6530715 +1.907556 2.181521 0.6530715 +2.181521 2.181521 0.6530715 +2.494678 2.181521 0.6530715 +2.852659 2.181521 0.6530715 +3.261896 2.181521 0.6530715 +3.729748 2.181521 0.6530715 +4.264621 2.181521 0.6530715 +4.876131 2.181521 0.6530715 +5.575266 2.181521 0.6530715 +6.374593 2.181521 0.6530715 +0 2.494678 0.6530715 +0 2.494678 0.6530715 +0 2.494678 0.6530715 +0.002268731 2.494678 0.6530715 +0.07076883 2.494678 0.6530715 +0.1119241 2.494678 0.6530715 +0.1475052 2.494678 0.6530715 +0.1846606 2.494678 0.6530715 +0.2245119 2.494678 0.6530715 +0.2679612 2.494678 0.6530715 +0.3158431 2.494678 0.6530715 +0.3689944 2.494678 0.6530715 +0.4282948 2.494678 0.6530715 +0.494694 2.494678 0.6530715 +0.5692344 2.494678 0.6530715 +0.6530715 2.494678 0.6530715 +0.7474945 2.494678 0.6530715 +0.8539475 2.494678 0.6530715 +0.974052 2.494678 0.6530715 +1.113885 2.494678 0.6530715 +1.27456 2.494678 0.6530715 +1.458117 2.494678 0.6530715 +1.667858 2.494678 0.6530715 +1.907556 2.494678 0.6530715 +2.181521 2.494678 0.6530715 +2.494678 2.494678 0.6530715 +2.852659 2.494678 0.6530715 +3.261896 2.494678 0.6530715 +3.729748 2.494678 0.6530715 +4.264621 2.494678 0.6530715 +4.876131 2.494678 0.6530715 +5.575266 2.494678 0.6530715 +6.374593 2.494678 0.6530715 +0 2.852659 0.6530715 +0 2.852659 0.6530715 +0 2.852659 0.6530715 +0.002268731 2.852659 0.6530715 +0.07076883 2.852659 0.6530715 +0.1119241 2.852659 0.6530715 +0.1475052 2.852659 0.6530715 +0.1846606 2.852659 0.6530715 +0.2245119 2.852659 0.6530715 +0.2679612 2.852659 0.6530715 +0.3158431 2.852659 0.6530715 +0.3689944 2.852659 0.6530715 +0.4282948 2.852659 0.6530715 +0.494694 2.852659 0.6530715 +0.5692344 2.852659 0.6530715 +0.6530715 2.852659 0.6530715 +0.7474945 2.852659 0.6530715 +0.8539475 2.852659 0.6530715 +0.974052 2.852659 0.6530715 +1.113885 2.852659 0.6530715 +1.27456 2.852659 0.6530715 +1.458117 2.852659 0.6530715 +1.667858 2.852659 0.6530715 +1.907556 2.852659 0.6530715 +2.181521 2.852659 0.6530715 +2.494678 2.852659 0.6530715 +2.852659 2.852659 0.6530715 +3.261896 2.852659 0.6530715 +3.729748 2.852659 0.6530715 +4.264621 2.852659 0.6530715 +4.876131 2.852659 0.6530715 +5.575266 2.852659 0.6530715 +6.374593 2.852659 0.6530715 +0 3.261896 0.6530715 +0 3.261896 0.6530715 +0 3.261896 0.6530715 +0.002268731 3.261896 0.6530715 +0.07076883 3.261896 0.6530715 +0.1119241 3.261896 0.6530715 +0.1475052 3.261896 0.6530715 +0.1846606 3.261896 0.6530715 +0.2245119 3.261896 0.6530715 +0.2679612 3.261896 0.6530715 +0.3158431 3.261896 0.6530715 +0.3689944 3.261896 0.6530715 +0.4282948 3.261896 0.6530715 +0.494694 3.261896 0.6530715 +0.5692344 3.261896 0.6530715 +0.6530715 3.261896 0.6530715 +0.7474945 3.261896 0.6530715 +0.8539475 3.261896 0.6530715 +0.974052 3.261896 0.6530715 +1.113885 3.261896 0.6530715 +1.27456 3.261896 0.6530715 +1.458117 3.261896 0.6530715 +1.667858 3.261896 0.6530715 +1.907556 3.261896 0.6530715 +2.181521 3.261896 0.6530715 +2.494678 3.261896 0.6530715 +2.852659 3.261896 0.6530715 +3.261896 3.261896 0.6530715 +3.729748 3.261896 0.6530715 +4.264621 3.261896 0.6530715 +4.876131 3.261896 0.6530715 +5.575266 3.261896 0.6530715 +6.374593 3.261896 0.6530715 +0 3.729748 0.6530715 +0 3.729748 0.6530715 +0 3.729748 0.6530715 +0.002268731 3.729748 0.6530715 +0.07076883 3.729748 0.6530715 +0.1119241 3.729748 0.6530715 +0.1475052 3.729748 0.6530715 +0.1846606 3.729748 0.6530715 +0.2245119 3.729748 0.6530715 +0.2679612 3.729748 0.6530715 +0.3158431 3.729748 0.6530715 +0.3689944 3.729748 0.6530715 +0.4282948 3.729748 0.6530715 +0.494694 3.729748 0.6530715 +0.5692344 3.729748 0.6530715 +0.6530715 3.729748 0.6530715 +0.7474945 3.729748 0.6530715 +0.8539475 3.729748 0.6530715 +0.974052 3.729748 0.6530715 +1.113885 3.729748 0.6530715 +1.27456 3.729748 0.6530715 +1.458117 3.729748 0.6530715 +1.667858 3.729748 0.6530715 +1.907556 3.729748 0.6530715 +2.181521 3.729748 0.6530715 +2.494678 3.729748 0.6530715 +2.852659 3.729748 0.6530715 +3.261896 3.729748 0.6530715 +3.729748 3.729748 0.6530715 +4.264621 3.729748 0.6530715 +4.876131 3.729748 0.6530715 +5.575266 3.729748 0.6530715 +6.374593 3.729748 0.6530715 +0 4.264621 0.6530715 +0 4.264621 0.6530715 +0 4.264621 0.6530715 +0.002268731 4.264621 0.6530715 +0.07076883 4.264621 0.6530715 +0.1119241 4.264621 0.6530715 +0.1475052 4.264621 0.6530715 +0.1846606 4.264621 0.6530715 +0.2245119 4.264621 0.6530715 +0.2679612 4.264621 0.6530715 +0.3158431 4.264621 0.6530715 +0.3689944 4.264621 0.6530715 +0.4282948 4.264621 0.6530715 +0.494694 4.264621 0.6530715 +0.5692344 4.264621 0.6530715 +0.6530715 4.264621 0.6530715 +0.7474945 4.264621 0.6530715 +0.8539475 4.264621 0.6530715 +0.974052 4.264621 0.6530715 +1.113885 4.264621 0.6530715 +1.27456 4.264621 0.6530715 +1.458117 4.264621 0.6530715 +1.667858 4.264621 0.6530715 +1.907556 4.264621 0.6530715 +2.181521 4.264621 0.6530715 +2.494678 4.264621 0.6530715 +2.852659 4.264621 0.6530715 +3.261896 4.264621 0.6530715 +3.729748 4.264621 0.6530715 +4.264621 4.264621 0.6530715 +4.876131 4.264621 0.6530715 +5.575266 4.264621 0.6530715 +6.374593 4.264621 0.6530715 +0 4.876131 0.6530715 +0 4.876131 0.6530715 +0 4.876131 0.6530715 +0.002268731 4.876131 0.6530715 +0.07076883 4.876131 0.6530715 +0.1119241 4.876131 0.6530715 +0.1475052 4.876131 0.6530715 +0.1846606 4.876131 0.6530715 +0.2245119 4.876131 0.6530715 +0.2679612 4.876131 0.6530715 +0.3158431 4.876131 0.6530715 +0.3689944 4.876131 0.6530715 +0.4282948 4.876131 0.6530715 +0.494694 4.876131 0.6530715 +0.5692344 4.876131 0.6530715 +0.6530715 4.876131 0.6530715 +0.7474945 4.876131 0.6530715 +0.8539475 4.876131 0.6530715 +0.974052 4.876131 0.6530715 +1.113885 4.876131 0.6530715 +1.27456 4.876131 0.6530715 +1.458117 4.876131 0.6530715 +1.667858 4.876131 0.6530715 +1.907556 4.876131 0.6530715 +2.181521 4.876131 0.6530715 +2.494678 4.876131 0.6530715 +2.852659 4.876131 0.6530715 +3.261896 4.876131 0.6530715 +3.729748 4.876131 0.6530715 +4.264621 4.876131 0.6530715 +4.876131 4.876131 0.6530715 +5.575266 4.876131 0.6530715 +6.374593 4.876131 0.6530715 +0 5.575266 0.6530715 +0 5.575266 0.6530715 +0 5.575266 0.6530715 +0.002268731 5.575266 0.6530715 +0.07076883 5.575266 0.6530715 +0.1119241 5.575266 0.6530715 +0.1475052 5.575266 0.6530715 +0.1846606 5.575266 0.6530715 +0.2245119 5.575266 0.6530715 +0.2679612 5.575266 0.6530715 +0.3158431 5.575266 0.6530715 +0.3689944 5.575266 0.6530715 +0.4282948 5.575266 0.6530715 +0.494694 5.575266 0.6530715 +0.5692344 5.575266 0.6530715 +0.6530715 5.575266 0.6530715 +0.7474945 5.575266 0.6530715 +0.8539475 5.575266 0.6530715 +0.974052 5.575266 0.6530715 +1.113885 5.575266 0.6530715 +1.27456 5.575266 0.6530715 +1.458117 5.575266 0.6530715 +1.667858 5.575266 0.6530715 +1.907556 5.575266 0.6530715 +2.181521 5.575266 0.6530715 +2.494678 5.575266 0.6530715 +2.852659 5.575266 0.6530715 +3.261896 5.575266 0.6530715 +3.729748 5.575266 0.6530715 +4.264621 5.575266 0.6530715 +4.876131 5.575266 0.6530715 +5.575266 5.575266 0.6530715 +6.374593 5.575266 0.6530715 +0 6.374593 0.6530715 +0 6.374593 0.6530715 +0 6.374593 0.6530715 +0.002268731 6.374593 0.6530715 +0.07076883 6.374593 0.6530715 +0.1119241 6.374593 0.6530715 +0.1475052 6.374593 0.6530715 +0.1846606 6.374593 0.6530715 +0.2245119 6.374593 0.6530715 +0.2679612 6.374593 0.6530715 +0.3158431 6.374593 0.6530715 +0.3689944 6.374593 0.6530715 +0.4282948 6.374593 0.6530715 +0.494694 6.374593 0.6530715 +0.5692344 6.374593 0.6530715 +0.6530715 6.374593 0.6530715 +0.7474945 6.374593 0.6530715 +0.8539475 6.374593 0.6530715 +0.974052 6.374593 0.6530715 +1.113885 6.374593 0.6530715 +1.27456 6.374593 0.6530715 +1.458117 6.374593 0.6530715 +1.667858 6.374593 0.6530715 +1.907556 6.374593 0.6530715 +2.181521 6.374593 0.6530715 +2.494678 6.374593 0.6530715 +2.852659 6.374593 0.6530715 +3.261896 6.374593 0.6530715 +3.729748 6.374593 0.6530715 +4.264621 6.374593 0.6530715 +4.876131 6.374593 0.6530715 +5.575266 6.374593 0.6530715 +6.374593 6.374593 0.6530715 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0.002268731 0.7474945 +0 0.002268731 0.7474945 +0 0.002268731 0.7474945 +0.002268731 0.002268731 0.7474945 +0.07076883 0.002268731 0.7474945 +0.1119241 0.002268731 0.7474945 +0.1475052 0.002268731 0.7474945 +0.1846606 0.002268731 0.7474945 +0.2245119 0.002268731 0.7474945 +0.2679612 0.002268731 0.7474945 +0.3158431 0.002268731 0.7474945 +0.3689944 0.002268731 0.7474945 +0.4282948 0.002268731 0.7474945 +0.494694 0.002268731 0.7474945 +0.5692344 0.002268731 0.7474945 +0.6530715 0.002268731 0.7474945 +0.7474945 0.002268731 0.7474945 +0.8539475 0.002268731 0.7474945 +0.974052 0.002268731 0.7474945 +1.113885 0.002268731 0.7474945 +1.27456 0.002268731 0.7474945 +1.458117 0.002268731 0.7474945 +1.667858 0.002268731 0.7474945 +1.907556 0.002268731 0.7474945 +2.181521 0.002268731 0.7474945 +2.494678 0.002268731 0.7474945 +2.852659 0.002268731 0.7474945 +3.261896 0.002268731 0.7474945 +3.729748 0.002268731 0.7474945 +4.264621 0.002268731 0.7474945 +4.876131 0.002268731 0.7474945 +5.575266 0.002268731 0.7474945 +6.374593 0.002268731 0.7474945 +0 0.07076883 0.7474945 +0 0.07076883 0.7474945 +0 0.07076883 0.7474945 +0.002268731 0.07076883 0.7474945 +0.07076883 0.07076883 0.7474945 +0.1119241 0.07076883 0.7474945 +0.1475052 0.07076883 0.7474945 +0.1846606 0.07076883 0.7474945 +0.2245119 0.07076883 0.7474945 +0.2679612 0.07076883 0.7474945 +0.3158431 0.07076883 0.7474945 +0.3689944 0.07076883 0.7474945 +0.4282948 0.07076883 0.7474945 +0.494694 0.07076883 0.7474945 +0.5692344 0.07076883 0.7474945 +0.6530715 0.07076883 0.7474945 +0.7474945 0.07076883 0.7474945 +0.8539475 0.07076883 0.7474945 +0.974052 0.07076883 0.7474945 +1.113885 0.07076883 0.7474945 +1.27456 0.07076883 0.7474945 +1.458117 0.07076883 0.7474945 +1.667858 0.07076883 0.7474945 +1.907556 0.07076883 0.7474945 +2.181521 0.07076883 0.7474945 +2.494678 0.07076883 0.7474945 +2.852659 0.07076883 0.7474945 +3.261896 0.07076883 0.7474945 +3.729748 0.07076883 0.7474945 +4.264621 0.07076883 0.7474945 +4.876131 0.07076883 0.7474945 +5.575266 0.07076883 0.7474945 +6.374593 0.07076883 0.7474945 +0 0.1119241 0.7474945 +0 0.1119241 0.7474945 +0 0.1119241 0.7474945 +0.002268731 0.1119241 0.7474945 +0.07076883 0.1119241 0.7474945 +0.1119241 0.1119241 0.7474945 +0.1475052 0.1119241 0.7474945 +0.1846606 0.1119241 0.7474945 +0.2245119 0.1119241 0.7474945 +0.2679612 0.1119241 0.7474945 +0.3158431 0.1119241 0.7474945 +0.3689944 0.1119241 0.7474945 +0.4282948 0.1119241 0.7474945 +0.494694 0.1119241 0.7474945 +0.5692344 0.1119241 0.7474945 +0.6530715 0.1119241 0.7474945 +0.7474945 0.1119241 0.7474945 +0.8539475 0.1119241 0.7474945 +0.974052 0.1119241 0.7474945 +1.113885 0.1119241 0.7474945 +1.27456 0.1119241 0.7474945 +1.458117 0.1119241 0.7474945 +1.667858 0.1119241 0.7474945 +1.907556 0.1119241 0.7474945 +2.181521 0.1119241 0.7474945 +2.494678 0.1119241 0.7474945 +2.852659 0.1119241 0.7474945 +3.261896 0.1119241 0.7474945 +3.729748 0.1119241 0.7474945 +4.264621 0.1119241 0.7474945 +4.876131 0.1119241 0.7474945 +5.575266 0.1119241 0.7474945 +6.374593 0.1119241 0.7474945 +0 0.1475052 0.7474945 +0 0.1475052 0.7474945 +0 0.1475052 0.7474945 +0.002268731 0.1475052 0.7474945 +0.07076883 0.1475052 0.7474945 +0.1119241 0.1475052 0.7474945 +0.1475052 0.1475052 0.7474945 +0.1846606 0.1475052 0.7474945 +0.2245119 0.1475052 0.7474945 +0.2679612 0.1475052 0.7474945 +0.3158431 0.1475052 0.7474945 +0.3689944 0.1475052 0.7474945 +0.4282948 0.1475052 0.7474945 +0.494694 0.1475052 0.7474945 +0.5692344 0.1475052 0.7474945 +0.6530715 0.1475052 0.7474945 +0.7474945 0.1475052 0.7474945 +0.8539475 0.1475052 0.7474945 +0.974052 0.1475052 0.7474945 +1.113885 0.1475052 0.7474945 +1.27456 0.1475052 0.7474945 +1.458117 0.1475052 0.7474945 +1.667858 0.1475052 0.7474945 +1.907556 0.1475052 0.7474945 +2.181521 0.1475052 0.7474945 +2.494678 0.1475052 0.7474945 +2.852659 0.1475052 0.7474945 +3.261896 0.1475052 0.7474945 +3.729748 0.1475052 0.7474945 +4.264621 0.1475052 0.7474945 +4.876131 0.1475052 0.7474945 +5.575266 0.1475052 0.7474945 +6.374593 0.1475052 0.7474945 +0 0.1846606 0.7474945 +0 0.1846606 0.7474945 +0 0.1846606 0.7474945 +0.002268731 0.1846606 0.7474945 +0.07076883 0.1846606 0.7474945 +0.1119241 0.1846606 0.7474945 +0.1475052 0.1846606 0.7474945 +0.1846606 0.1846606 0.7474945 +0.2245119 0.1846606 0.7474945 +0.2679612 0.1846606 0.7474945 +0.3158431 0.1846606 0.7474945 +0.3689944 0.1846606 0.7474945 +0.4282948 0.1846606 0.7474945 +0.494694 0.1846606 0.7474945 +0.5692344 0.1846606 0.7474945 +0.6530715 0.1846606 0.7474945 +0.7474945 0.1846606 0.7474945 +0.8539475 0.1846606 0.7474945 +0.974052 0.1846606 0.7474945 +1.113885 0.1846606 0.7474945 +1.27456 0.1846606 0.7474945 +1.458117 0.1846606 0.7474945 +1.667858 0.1846606 0.7474945 +1.907556 0.1846606 0.7474945 +2.181521 0.1846606 0.7474945 +2.494678 0.1846606 0.7474945 +2.852659 0.1846606 0.7474945 +3.261896 0.1846606 0.7474945 +3.729748 0.1846606 0.7474945 +4.264621 0.1846606 0.7474945 +4.876131 0.1846606 0.7474945 +5.575266 0.1846606 0.7474945 +6.374593 0.1846606 0.7474945 +0 0.2245119 0.7474945 +0 0.2245119 0.7474945 +0 0.2245119 0.7474945 +0.002268731 0.2245119 0.7474945 +0.07076883 0.2245119 0.7474945 +0.1119241 0.2245119 0.7474945 +0.1475052 0.2245119 0.7474945 +0.1846606 0.2245119 0.7474945 +0.2245119 0.2245119 0.7474945 +0.2679612 0.2245119 0.7474945 +0.3158431 0.2245119 0.7474945 +0.3689944 0.2245119 0.7474945 +0.4282948 0.2245119 0.7474945 +0.494694 0.2245119 0.7474945 +0.5692344 0.2245119 0.7474945 +0.6530715 0.2245119 0.7474945 +0.7474945 0.2245119 0.7474945 +0.8539475 0.2245119 0.7474945 +0.974052 0.2245119 0.7474945 +1.113885 0.2245119 0.7474945 +1.27456 0.2245119 0.7474945 +1.458117 0.2245119 0.7474945 +1.667858 0.2245119 0.7474945 +1.907556 0.2245119 0.7474945 +2.181521 0.2245119 0.7474945 +2.494678 0.2245119 0.7474945 +2.852659 0.2245119 0.7474945 +3.261896 0.2245119 0.7474945 +3.729748 0.2245119 0.7474945 +4.264621 0.2245119 0.7474945 +4.876131 0.2245119 0.7474945 +5.575266 0.2245119 0.7474945 +6.374593 0.2245119 0.7474945 +0 0.2679612 0.7474945 +0 0.2679612 0.7474945 +0 0.2679612 0.7474945 +0.002268731 0.2679612 0.7474945 +0.07076883 0.2679612 0.7474945 +0.1119241 0.2679612 0.7474945 +0.1475052 0.2679612 0.7474945 +0.1846606 0.2679612 0.7474945 +0.2245119 0.2679612 0.7474945 +0.2679612 0.2679612 0.7474945 +0.3158431 0.2679612 0.7474945 +0.3689944 0.2679612 0.7474945 +0.4282948 0.2679612 0.7474945 +0.494694 0.2679612 0.7474945 +0.5692344 0.2679612 0.7474945 +0.6530715 0.2679612 0.7474945 +0.7474945 0.2679612 0.7474945 +0.8539475 0.2679612 0.7474945 +0.974052 0.2679612 0.7474945 +1.113885 0.2679612 0.7474945 +1.27456 0.2679612 0.7474945 +1.458117 0.2679612 0.7474945 +1.667858 0.2679612 0.7474945 +1.907556 0.2679612 0.7474945 +2.181521 0.2679612 0.7474945 +2.494678 0.2679612 0.7474945 +2.852659 0.2679612 0.7474945 +3.261896 0.2679612 0.7474945 +3.729748 0.2679612 0.7474945 +4.264621 0.2679612 0.7474945 +4.876131 0.2679612 0.7474945 +5.575266 0.2679612 0.7474945 +6.374593 0.2679612 0.7474945 +0 0.3158431 0.7474945 +0 0.3158431 0.7474945 +0 0.3158431 0.7474945 +0.002268731 0.3158431 0.7474945 +0.07076883 0.3158431 0.7474945 +0.1119241 0.3158431 0.7474945 +0.1475052 0.3158431 0.7474945 +0.1846606 0.3158431 0.7474945 +0.2245119 0.3158431 0.7474945 +0.2679612 0.3158431 0.7474945 +0.3158431 0.3158431 0.7474945 +0.3689944 0.3158431 0.7474945 +0.4282948 0.3158431 0.7474945 +0.494694 0.3158431 0.7474945 +0.5692344 0.3158431 0.7474945 +0.6530715 0.3158431 0.7474945 +0.7474945 0.3158431 0.7474945 +0.8539475 0.3158431 0.7474945 +0.974052 0.3158431 0.7474945 +1.113885 0.3158431 0.7474945 +1.27456 0.3158431 0.7474945 +1.458117 0.3158431 0.7474945 +1.667858 0.3158431 0.7474945 +1.907556 0.3158431 0.7474945 +2.181521 0.3158431 0.7474945 +2.494678 0.3158431 0.7474945 +2.852659 0.3158431 0.7474945 +3.261896 0.3158431 0.7474945 +3.729748 0.3158431 0.7474945 +4.264621 0.3158431 0.7474945 +4.876131 0.3158431 0.7474945 +5.575266 0.3158431 0.7474945 +6.374593 0.3158431 0.7474945 +0 0.3689944 0.7474945 +0 0.3689944 0.7474945 +0 0.3689944 0.7474945 +0.002268731 0.3689944 0.7474945 +0.07076883 0.3689944 0.7474945 +0.1119241 0.3689944 0.7474945 +0.1475052 0.3689944 0.7474945 +0.1846606 0.3689944 0.7474945 +0.2245119 0.3689944 0.7474945 +0.2679612 0.3689944 0.7474945 +0.3158431 0.3689944 0.7474945 +0.3689944 0.3689944 0.7474945 +0.4282948 0.3689944 0.7474945 +0.494694 0.3689944 0.7474945 +0.5692344 0.3689944 0.7474945 +0.6530715 0.3689944 0.7474945 +0.7474945 0.3689944 0.7474945 +0.8539475 0.3689944 0.7474945 +0.974052 0.3689944 0.7474945 +1.113885 0.3689944 0.7474945 +1.27456 0.3689944 0.7474945 +1.458117 0.3689944 0.7474945 +1.667858 0.3689944 0.7474945 +1.907556 0.3689944 0.7474945 +2.181521 0.3689944 0.7474945 +2.494678 0.3689944 0.7474945 +2.852659 0.3689944 0.7474945 +3.261896 0.3689944 0.7474945 +3.729748 0.3689944 0.7474945 +4.264621 0.3689944 0.7474945 +4.876131 0.3689944 0.7474945 +5.575266 0.3689944 0.7474945 +6.374593 0.3689944 0.7474945 +0 0.4282948 0.7474945 +0 0.4282948 0.7474945 +0 0.4282948 0.7474945 +0.002268731 0.4282948 0.7474945 +0.07076883 0.4282948 0.7474945 +0.1119241 0.4282948 0.7474945 +0.1475052 0.4282948 0.7474945 +0.1846606 0.4282948 0.7474945 +0.2245119 0.4282948 0.7474945 +0.2679612 0.4282948 0.7474945 +0.3158431 0.4282948 0.7474945 +0.3689944 0.4282948 0.7474945 +0.4282948 0.4282948 0.7474945 +0.494694 0.4282948 0.7474945 +0.5692344 0.4282948 0.7474945 +0.6530715 0.4282948 0.7474945 +0.7474945 0.4282948 0.7474945 +0.8539475 0.4282948 0.7474945 +0.974052 0.4282948 0.7474945 +1.113885 0.4282948 0.7474945 +1.27456 0.4282948 0.7474945 +1.458117 0.4282948 0.7474945 +1.667858 0.4282948 0.7474945 +1.907556 0.4282948 0.7474945 +2.181521 0.4282948 0.7474945 +2.494678 0.4282948 0.7474945 +2.852659 0.4282948 0.7474945 +3.261896 0.4282948 0.7474945 +3.729748 0.4282948 0.7474945 +4.264621 0.4282948 0.7474945 +4.876131 0.4282948 0.7474945 +5.575266 0.4282948 0.7474945 +6.374593 0.4282948 0.7474945 +0 0.494694 0.7474945 +0 0.494694 0.7474945 +0 0.494694 0.7474945 +0.002268731 0.494694 0.7474945 +0.07076883 0.494694 0.7474945 +0.1119241 0.494694 0.7474945 +0.1475052 0.494694 0.7474945 +0.1846606 0.494694 0.7474945 +0.2245119 0.494694 0.7474945 +0.2679612 0.494694 0.7474945 +0.3158431 0.494694 0.7474945 +0.3689944 0.494694 0.7474945 +0.4282948 0.494694 0.7474945 +0.494694 0.494694 0.7474945 +0.5692344 0.494694 0.7474945 +0.6530715 0.494694 0.7474945 +0.7474945 0.494694 0.7474945 +0.8539475 0.494694 0.7474945 +0.974052 0.494694 0.7474945 +1.113885 0.494694 0.7474945 +1.27456 0.494694 0.7474945 +1.458117 0.494694 0.7474945 +1.667858 0.494694 0.7474945 +1.907556 0.494694 0.7474945 +2.181521 0.494694 0.7474945 +2.494678 0.494694 0.7474945 +2.852659 0.494694 0.7474945 +3.261896 0.494694 0.7474945 +3.729748 0.494694 0.7474945 +4.264621 0.494694 0.7474945 +4.876131 0.494694 0.7474945 +5.575266 0.494694 0.7474945 +6.374593 0.494694 0.7474945 +0 0.5692344 0.7474945 +0 0.5692344 0.7474945 +0 0.5692344 0.7474945 +0.002268731 0.5692344 0.7474945 +0.07076883 0.5692344 0.7474945 +0.1119241 0.5692344 0.7474945 +0.1475052 0.5692344 0.7474945 +0.1846606 0.5692344 0.7474945 +0.2245119 0.5692344 0.7474945 +0.2679612 0.5692344 0.7474945 +0.3158431 0.5692344 0.7474945 +0.3689944 0.5692344 0.7474945 +0.4282948 0.5692344 0.7474945 +0.494694 0.5692344 0.7474945 +0.5692344 0.5692344 0.7474945 +0.6530715 0.5692344 0.7474945 +0.7474945 0.5692344 0.7474945 +0.8539475 0.5692344 0.7474945 +0.974052 0.5692344 0.7474945 +1.113885 0.5692344 0.7474945 +1.27456 0.5692344 0.7474945 +1.458117 0.5692344 0.7474945 +1.667858 0.5692344 0.7474945 +1.907556 0.5692344 0.7474945 +2.181521 0.5692344 0.7474945 +2.494678 0.5692344 0.7474945 +2.852659 0.5692344 0.7474945 +3.261896 0.5692344 0.7474945 +3.729748 0.5692344 0.7474945 +4.264621 0.5692344 0.7474945 +4.876131 0.5692344 0.7474945 +5.575266 0.5692344 0.7474945 +6.374593 0.5692344 0.7474945 +0 0.6530715 0.7474945 +0 0.6530715 0.7474945 +0 0.6530715 0.7474945 +0.002268731 0.6530715 0.7474945 +0.07076883 0.6530715 0.7474945 +0.1119241 0.6530715 0.7474945 +0.1475052 0.6530715 0.7474945 +0.1846606 0.6530715 0.7474945 +0.2245119 0.6530715 0.7474945 +0.2679612 0.6530715 0.7474945 +0.3158431 0.6530715 0.7474945 +0.3689944 0.6530715 0.7474945 +0.4282948 0.6530715 0.7474945 +0.494694 0.6530715 0.7474945 +0.5692344 0.6530715 0.7474945 +0.6530715 0.6530715 0.7474945 +0.7474945 0.6530715 0.7474945 +0.8539475 0.6530715 0.7474945 +0.974052 0.6530715 0.7474945 +1.113885 0.6530715 0.7474945 +1.27456 0.6530715 0.7474945 +1.458117 0.6530715 0.7474945 +1.667858 0.6530715 0.7474945 +1.907556 0.6530715 0.7474945 +2.181521 0.6530715 0.7474945 +2.494678 0.6530715 0.7474945 +2.852659 0.6530715 0.7474945 +3.261896 0.6530715 0.7474945 +3.729748 0.6530715 0.7474945 +4.264621 0.6530715 0.7474945 +4.876131 0.6530715 0.7474945 +5.575266 0.6530715 0.7474945 +6.374593 0.6530715 0.7474945 +0 0.7474945 0.7474945 +0 0.7474945 0.7474945 +0 0.7474945 0.7474945 +0.002268731 0.7474945 0.7474945 +0.07076883 0.7474945 0.7474945 +0.1119241 0.7474945 0.7474945 +0.1475052 0.7474945 0.7474945 +0.1846606 0.7474945 0.7474945 +0.2245119 0.7474945 0.7474945 +0.2679612 0.7474945 0.7474945 +0.3158431 0.7474945 0.7474945 +0.3689944 0.7474945 0.7474945 +0.4282948 0.7474945 0.7474945 +0.494694 0.7474945 0.7474945 +0.5692344 0.7474945 0.7474945 +0.6530715 0.7474945 0.7474945 +0.7474945 0.7474945 0.7474945 +0.8539475 0.7474945 0.7474945 +0.974052 0.7474945 0.7474945 +1.113885 0.7474945 0.7474945 +1.27456 0.7474945 0.7474945 +1.458117 0.7474945 0.7474945 +1.667858 0.7474945 0.7474945 +1.907556 0.7474945 0.7474945 +2.181521 0.7474945 0.7474945 +2.494678 0.7474945 0.7474945 +2.852659 0.7474945 0.7474945 +3.261896 0.7474945 0.7474945 +3.729748 0.7474945 0.7474945 +4.264621 0.7474945 0.7474945 +4.876131 0.7474945 0.7474945 +5.575266 0.7474945 0.7474945 +6.374593 0.7474945 0.7474945 +0 0.8539475 0.7474945 +0 0.8539475 0.7474945 +0 0.8539475 0.7474945 +0.002268731 0.8539475 0.7474945 +0.07076883 0.8539475 0.7474945 +0.1119241 0.8539475 0.7474945 +0.1475052 0.8539475 0.7474945 +0.1846606 0.8539475 0.7474945 +0.2245119 0.8539475 0.7474945 +0.2679612 0.8539475 0.7474945 +0.3158431 0.8539475 0.7474945 +0.3689944 0.8539475 0.7474945 +0.4282948 0.8539475 0.7474945 +0.494694 0.8539475 0.7474945 +0.5692344 0.8539475 0.7474945 +0.6530715 0.8539475 0.7474945 +0.7474945 0.8539475 0.7474945 +0.8539475 0.8539475 0.7474945 +0.974052 0.8539475 0.7474945 +1.113885 0.8539475 0.7474945 +1.27456 0.8539475 0.7474945 +1.458117 0.8539475 0.7474945 +1.667858 0.8539475 0.7474945 +1.907556 0.8539475 0.7474945 +2.181521 0.8539475 0.7474945 +2.494678 0.8539475 0.7474945 +2.852659 0.8539475 0.7474945 +3.261896 0.8539475 0.7474945 +3.729748 0.8539475 0.7474945 +4.264621 0.8539475 0.7474945 +4.876131 0.8539475 0.7474945 +5.575266 0.8539475 0.7474945 +6.374593 0.8539475 0.7474945 +0 0.974052 0.7474945 +0 0.974052 0.7474945 +0 0.974052 0.7474945 +0.002268731 0.974052 0.7474945 +0.07076883 0.974052 0.7474945 +0.1119241 0.974052 0.7474945 +0.1475052 0.974052 0.7474945 +0.1846606 0.974052 0.7474945 +0.2245119 0.974052 0.7474945 +0.2679612 0.974052 0.7474945 +0.3158431 0.974052 0.7474945 +0.3689944 0.974052 0.7474945 +0.4282948 0.974052 0.7474945 +0.494694 0.974052 0.7474945 +0.5692344 0.974052 0.7474945 +0.6530715 0.974052 0.7474945 +0.7474945 0.974052 0.7474945 +0.8539475 0.974052 0.7474945 +0.974052 0.974052 0.7474945 +1.113885 0.974052 0.7474945 +1.27456 0.974052 0.7474945 +1.458117 0.974052 0.7474945 +1.667858 0.974052 0.7474945 +1.907556 0.974052 0.7474945 +2.181521 0.974052 0.7474945 +2.494678 0.974052 0.7474945 +2.852659 0.974052 0.7474945 +3.261896 0.974052 0.7474945 +3.729748 0.974052 0.7474945 +4.264621 0.974052 0.7474945 +4.876131 0.974052 0.7474945 +5.575266 0.974052 0.7474945 +6.374593 0.974052 0.7474945 +0 1.113885 0.7474945 +0 1.113885 0.7474945 +0 1.113885 0.7474945 +0.002268731 1.113885 0.7474945 +0.07076883 1.113885 0.7474945 +0.1119241 1.113885 0.7474945 +0.1475052 1.113885 0.7474945 +0.1846606 1.113885 0.7474945 +0.2245119 1.113885 0.7474945 +0.2679612 1.113885 0.7474945 +0.3158431 1.113885 0.7474945 +0.3689944 1.113885 0.7474945 +0.4282948 1.113885 0.7474945 +0.494694 1.113885 0.7474945 +0.5692344 1.113885 0.7474945 +0.6530715 1.113885 0.7474945 +0.7474945 1.113885 0.7474945 +0.8539475 1.113885 0.7474945 +0.974052 1.113885 0.7474945 +1.113885 1.113885 0.7474945 +1.27456 1.113885 0.7474945 +1.458117 1.113885 0.7474945 +1.667858 1.113885 0.7474945 +1.907556 1.113885 0.7474945 +2.181521 1.113885 0.7474945 +2.494678 1.113885 0.7474945 +2.852659 1.113885 0.7474945 +3.261896 1.113885 0.7474945 +3.729748 1.113885 0.7474945 +4.264621 1.113885 0.7474945 +4.876131 1.113885 0.7474945 +5.575266 1.113885 0.7474945 +6.374593 1.113885 0.7474945 +0 1.27456 0.7474945 +0 1.27456 0.7474945 +0 1.27456 0.7474945 +0.002268731 1.27456 0.7474945 +0.07076883 1.27456 0.7474945 +0.1119241 1.27456 0.7474945 +0.1475052 1.27456 0.7474945 +0.1846606 1.27456 0.7474945 +0.2245119 1.27456 0.7474945 +0.2679612 1.27456 0.7474945 +0.3158431 1.27456 0.7474945 +0.3689944 1.27456 0.7474945 +0.4282948 1.27456 0.7474945 +0.494694 1.27456 0.7474945 +0.5692344 1.27456 0.7474945 +0.6530715 1.27456 0.7474945 +0.7474945 1.27456 0.7474945 +0.8539475 1.27456 0.7474945 +0.974052 1.27456 0.7474945 +1.113885 1.27456 0.7474945 +1.27456 1.27456 0.7474945 +1.458117 1.27456 0.7474945 +1.667858 1.27456 0.7474945 +1.907556 1.27456 0.7474945 +2.181521 1.27456 0.7474945 +2.494678 1.27456 0.7474945 +2.852659 1.27456 0.7474945 +3.261896 1.27456 0.7474945 +3.729748 1.27456 0.7474945 +4.264621 1.27456 0.7474945 +4.876131 1.27456 0.7474945 +5.575266 1.27456 0.7474945 +6.374593 1.27456 0.7474945 +0 1.458117 0.7474945 +0 1.458117 0.7474945 +0 1.458117 0.7474945 +0.002268731 1.458117 0.7474945 +0.07076883 1.458117 0.7474945 +0.1119241 1.458117 0.7474945 +0.1475052 1.458117 0.7474945 +0.1846606 1.458117 0.7474945 +0.2245119 1.458117 0.7474945 +0.2679612 1.458117 0.7474945 +0.3158431 1.458117 0.7474945 +0.3689944 1.458117 0.7474945 +0.4282948 1.458117 0.7474945 +0.494694 1.458117 0.7474945 +0.5692344 1.458117 0.7474945 +0.6530715 1.458117 0.7474945 +0.7474945 1.458117 0.7474945 +0.8539475 1.458117 0.7474945 +0.974052 1.458117 0.7474945 +1.113885 1.458117 0.7474945 +1.27456 1.458117 0.7474945 +1.458117 1.458117 0.7474945 +1.667858 1.458117 0.7474945 +1.907556 1.458117 0.7474945 +2.181521 1.458117 0.7474945 +2.494678 1.458117 0.7474945 +2.852659 1.458117 0.7474945 +3.261896 1.458117 0.7474945 +3.729748 1.458117 0.7474945 +4.264621 1.458117 0.7474945 +4.876131 1.458117 0.7474945 +5.575266 1.458117 0.7474945 +6.374593 1.458117 0.7474945 +0 1.667858 0.7474945 +0 1.667858 0.7474945 +0 1.667858 0.7474945 +0.002268731 1.667858 0.7474945 +0.07076883 1.667858 0.7474945 +0.1119241 1.667858 0.7474945 +0.1475052 1.667858 0.7474945 +0.1846606 1.667858 0.7474945 +0.2245119 1.667858 0.7474945 +0.2679612 1.667858 0.7474945 +0.3158431 1.667858 0.7474945 +0.3689944 1.667858 0.7474945 +0.4282948 1.667858 0.7474945 +0.494694 1.667858 0.7474945 +0.5692344 1.667858 0.7474945 +0.6530715 1.667858 0.7474945 +0.7474945 1.667858 0.7474945 +0.8539475 1.667858 0.7474945 +0.974052 1.667858 0.7474945 +1.113885 1.667858 0.7474945 +1.27456 1.667858 0.7474945 +1.458117 1.667858 0.7474945 +1.667858 1.667858 0.7474945 +1.907556 1.667858 0.7474945 +2.181521 1.667858 0.7474945 +2.494678 1.667858 0.7474945 +2.852659 1.667858 0.7474945 +3.261896 1.667858 0.7474945 +3.729748 1.667858 0.7474945 +4.264621 1.667858 0.7474945 +4.876131 1.667858 0.7474945 +5.575266 1.667858 0.7474945 +6.374593 1.667858 0.7474945 +0 1.907556 0.7474945 +0 1.907556 0.7474945 +0 1.907556 0.7474945 +0.002268731 1.907556 0.7474945 +0.07076883 1.907556 0.7474945 +0.1119241 1.907556 0.7474945 +0.1475052 1.907556 0.7474945 +0.1846606 1.907556 0.7474945 +0.2245119 1.907556 0.7474945 +0.2679612 1.907556 0.7474945 +0.3158431 1.907556 0.7474945 +0.3689944 1.907556 0.7474945 +0.4282948 1.907556 0.7474945 +0.494694 1.907556 0.7474945 +0.5692344 1.907556 0.7474945 +0.6530715 1.907556 0.7474945 +0.7474945 1.907556 0.7474945 +0.8539475 1.907556 0.7474945 +0.974052 1.907556 0.7474945 +1.113885 1.907556 0.7474945 +1.27456 1.907556 0.7474945 +1.458117 1.907556 0.7474945 +1.667858 1.907556 0.7474945 +1.907556 1.907556 0.7474945 +2.181521 1.907556 0.7474945 +2.494678 1.907556 0.7474945 +2.852659 1.907556 0.7474945 +3.261896 1.907556 0.7474945 +3.729748 1.907556 0.7474945 +4.264621 1.907556 0.7474945 +4.876131 1.907556 0.7474945 +5.575266 1.907556 0.7474945 +6.374593 1.907556 0.7474945 +0 2.181521 0.7474945 +0 2.181521 0.7474945 +0 2.181521 0.7474945 +0.002268731 2.181521 0.7474945 +0.07076883 2.181521 0.7474945 +0.1119241 2.181521 0.7474945 +0.1475052 2.181521 0.7474945 +0.1846606 2.181521 0.7474945 +0.2245119 2.181521 0.7474945 +0.2679612 2.181521 0.7474945 +0.3158431 2.181521 0.7474945 +0.3689944 2.181521 0.7474945 +0.4282948 2.181521 0.7474945 +0.494694 2.181521 0.7474945 +0.5692344 2.181521 0.7474945 +0.6530715 2.181521 0.7474945 +0.7474945 2.181521 0.7474945 +0.8539475 2.181521 0.7474945 +0.974052 2.181521 0.7474945 +1.113885 2.181521 0.7474945 +1.27456 2.181521 0.7474945 +1.458117 2.181521 0.7474945 +1.667858 2.181521 0.7474945 +1.907556 2.181521 0.7474945 +2.181521 2.181521 0.7474945 +2.494678 2.181521 0.7474945 +2.852659 2.181521 0.7474945 +3.261896 2.181521 0.7474945 +3.729748 2.181521 0.7474945 +4.264621 2.181521 0.7474945 +4.876131 2.181521 0.7474945 +5.575266 2.181521 0.7474945 +6.374593 2.181521 0.7474945 +0 2.494678 0.7474945 +0 2.494678 0.7474945 +0 2.494678 0.7474945 +0.002268731 2.494678 0.7474945 +0.07076883 2.494678 0.7474945 +0.1119241 2.494678 0.7474945 +0.1475052 2.494678 0.7474945 +0.1846606 2.494678 0.7474945 +0.2245119 2.494678 0.7474945 +0.2679612 2.494678 0.7474945 +0.3158431 2.494678 0.7474945 +0.3689944 2.494678 0.7474945 +0.4282948 2.494678 0.7474945 +0.494694 2.494678 0.7474945 +0.5692344 2.494678 0.7474945 +0.6530715 2.494678 0.7474945 +0.7474945 2.494678 0.7474945 +0.8539475 2.494678 0.7474945 +0.974052 2.494678 0.7474945 +1.113885 2.494678 0.7474945 +1.27456 2.494678 0.7474945 +1.458117 2.494678 0.7474945 +1.667858 2.494678 0.7474945 +1.907556 2.494678 0.7474945 +2.181521 2.494678 0.7474945 +2.494678 2.494678 0.7474945 +2.852659 2.494678 0.7474945 +3.261896 2.494678 0.7474945 +3.729748 2.494678 0.7474945 +4.264621 2.494678 0.7474945 +4.876131 2.494678 0.7474945 +5.575266 2.494678 0.7474945 +6.374593 2.494678 0.7474945 +0 2.852659 0.7474945 +0 2.852659 0.7474945 +0 2.852659 0.7474945 +0.002268731 2.852659 0.7474945 +0.07076883 2.852659 0.7474945 +0.1119241 2.852659 0.7474945 +0.1475052 2.852659 0.7474945 +0.1846606 2.852659 0.7474945 +0.2245119 2.852659 0.7474945 +0.2679612 2.852659 0.7474945 +0.3158431 2.852659 0.7474945 +0.3689944 2.852659 0.7474945 +0.4282948 2.852659 0.7474945 +0.494694 2.852659 0.7474945 +0.5692344 2.852659 0.7474945 +0.6530715 2.852659 0.7474945 +0.7474945 2.852659 0.7474945 +0.8539475 2.852659 0.7474945 +0.974052 2.852659 0.7474945 +1.113885 2.852659 0.7474945 +1.27456 2.852659 0.7474945 +1.458117 2.852659 0.7474945 +1.667858 2.852659 0.7474945 +1.907556 2.852659 0.7474945 +2.181521 2.852659 0.7474945 +2.494678 2.852659 0.7474945 +2.852659 2.852659 0.7474945 +3.261896 2.852659 0.7474945 +3.729748 2.852659 0.7474945 +4.264621 2.852659 0.7474945 +4.876131 2.852659 0.7474945 +5.575266 2.852659 0.7474945 +6.374593 2.852659 0.7474945 +0 3.261896 0.7474945 +0 3.261896 0.7474945 +0 3.261896 0.7474945 +0.002268731 3.261896 0.7474945 +0.07076883 3.261896 0.7474945 +0.1119241 3.261896 0.7474945 +0.1475052 3.261896 0.7474945 +0.1846606 3.261896 0.7474945 +0.2245119 3.261896 0.7474945 +0.2679612 3.261896 0.7474945 +0.3158431 3.261896 0.7474945 +0.3689944 3.261896 0.7474945 +0.4282948 3.261896 0.7474945 +0.494694 3.261896 0.7474945 +0.5692344 3.261896 0.7474945 +0.6530715 3.261896 0.7474945 +0.7474945 3.261896 0.7474945 +0.8539475 3.261896 0.7474945 +0.974052 3.261896 0.7474945 +1.113885 3.261896 0.7474945 +1.27456 3.261896 0.7474945 +1.458117 3.261896 0.7474945 +1.667858 3.261896 0.7474945 +1.907556 3.261896 0.7474945 +2.181521 3.261896 0.7474945 +2.494678 3.261896 0.7474945 +2.852659 3.261896 0.7474945 +3.261896 3.261896 0.7474945 +3.729748 3.261896 0.7474945 +4.264621 3.261896 0.7474945 +4.876131 3.261896 0.7474945 +5.575266 3.261896 0.7474945 +6.374593 3.261896 0.7474945 +0 3.729748 0.7474945 +0 3.729748 0.7474945 +0 3.729748 0.7474945 +0.002268731 3.729748 0.7474945 +0.07076883 3.729748 0.7474945 +0.1119241 3.729748 0.7474945 +0.1475052 3.729748 0.7474945 +0.1846606 3.729748 0.7474945 +0.2245119 3.729748 0.7474945 +0.2679612 3.729748 0.7474945 +0.3158431 3.729748 0.7474945 +0.3689944 3.729748 0.7474945 +0.4282948 3.729748 0.7474945 +0.494694 3.729748 0.7474945 +0.5692344 3.729748 0.7474945 +0.6530715 3.729748 0.7474945 +0.7474945 3.729748 0.7474945 +0.8539475 3.729748 0.7474945 +0.974052 3.729748 0.7474945 +1.113885 3.729748 0.7474945 +1.27456 3.729748 0.7474945 +1.458117 3.729748 0.7474945 +1.667858 3.729748 0.7474945 +1.907556 3.729748 0.7474945 +2.181521 3.729748 0.7474945 +2.494678 3.729748 0.7474945 +2.852659 3.729748 0.7474945 +3.261896 3.729748 0.7474945 +3.729748 3.729748 0.7474945 +4.264621 3.729748 0.7474945 +4.876131 3.729748 0.7474945 +5.575266 3.729748 0.7474945 +6.374593 3.729748 0.7474945 +0 4.264621 0.7474945 +0 4.264621 0.7474945 +0 4.264621 0.7474945 +0.002268731 4.264621 0.7474945 +0.07076883 4.264621 0.7474945 +0.1119241 4.264621 0.7474945 +0.1475052 4.264621 0.7474945 +0.1846606 4.264621 0.7474945 +0.2245119 4.264621 0.7474945 +0.2679612 4.264621 0.7474945 +0.3158431 4.264621 0.7474945 +0.3689944 4.264621 0.7474945 +0.4282948 4.264621 0.7474945 +0.494694 4.264621 0.7474945 +0.5692344 4.264621 0.7474945 +0.6530715 4.264621 0.7474945 +0.7474945 4.264621 0.7474945 +0.8539475 4.264621 0.7474945 +0.974052 4.264621 0.7474945 +1.113885 4.264621 0.7474945 +1.27456 4.264621 0.7474945 +1.458117 4.264621 0.7474945 +1.667858 4.264621 0.7474945 +1.907556 4.264621 0.7474945 +2.181521 4.264621 0.7474945 +2.494678 4.264621 0.7474945 +2.852659 4.264621 0.7474945 +3.261896 4.264621 0.7474945 +3.729748 4.264621 0.7474945 +4.264621 4.264621 0.7474945 +4.876131 4.264621 0.7474945 +5.575266 4.264621 0.7474945 +6.374593 4.264621 0.7474945 +0 4.876131 0.7474945 +0 4.876131 0.7474945 +0 4.876131 0.7474945 +0.002268731 4.876131 0.7474945 +0.07076883 4.876131 0.7474945 +0.1119241 4.876131 0.7474945 +0.1475052 4.876131 0.7474945 +0.1846606 4.876131 0.7474945 +0.2245119 4.876131 0.7474945 +0.2679612 4.876131 0.7474945 +0.3158431 4.876131 0.7474945 +0.3689944 4.876131 0.7474945 +0.4282948 4.876131 0.7474945 +0.494694 4.876131 0.7474945 +0.5692344 4.876131 0.7474945 +0.6530715 4.876131 0.7474945 +0.7474945 4.876131 0.7474945 +0.8539475 4.876131 0.7474945 +0.974052 4.876131 0.7474945 +1.113885 4.876131 0.7474945 +1.27456 4.876131 0.7474945 +1.458117 4.876131 0.7474945 +1.667858 4.876131 0.7474945 +1.907556 4.876131 0.7474945 +2.181521 4.876131 0.7474945 +2.494678 4.876131 0.7474945 +2.852659 4.876131 0.7474945 +3.261896 4.876131 0.7474945 +3.729748 4.876131 0.7474945 +4.264621 4.876131 0.7474945 +4.876131 4.876131 0.7474945 +5.575266 4.876131 0.7474945 +6.374593 4.876131 0.7474945 +0 5.575266 0.7474945 +0 5.575266 0.7474945 +0 5.575266 0.7474945 +0.002268731 5.575266 0.7474945 +0.07076883 5.575266 0.7474945 +0.1119241 5.575266 0.7474945 +0.1475052 5.575266 0.7474945 +0.1846606 5.575266 0.7474945 +0.2245119 5.575266 0.7474945 +0.2679612 5.575266 0.7474945 +0.3158431 5.575266 0.7474945 +0.3689944 5.575266 0.7474945 +0.4282948 5.575266 0.7474945 +0.494694 5.575266 0.7474945 +0.5692344 5.575266 0.7474945 +0.6530715 5.575266 0.7474945 +0.7474945 5.575266 0.7474945 +0.8539475 5.575266 0.7474945 +0.974052 5.575266 0.7474945 +1.113885 5.575266 0.7474945 +1.27456 5.575266 0.7474945 +1.458117 5.575266 0.7474945 +1.667858 5.575266 0.7474945 +1.907556 5.575266 0.7474945 +2.181521 5.575266 0.7474945 +2.494678 5.575266 0.7474945 +2.852659 5.575266 0.7474945 +3.261896 5.575266 0.7474945 +3.729748 5.575266 0.7474945 +4.264621 5.575266 0.7474945 +4.876131 5.575266 0.7474945 +5.575266 5.575266 0.7474945 +6.374593 5.575266 0.7474945 +0 6.374593 0.7474945 +0 6.374593 0.7474945 +0 6.374593 0.7474945 +0.002268731 6.374593 0.7474945 +0.07076883 6.374593 0.7474945 +0.1119241 6.374593 0.7474945 +0.1475052 6.374593 0.7474945 +0.1846606 6.374593 0.7474945 +0.2245119 6.374593 0.7474945 +0.2679612 6.374593 0.7474945 +0.3158431 6.374593 0.7474945 +0.3689944 6.374593 0.7474945 +0.4282948 6.374593 0.7474945 +0.494694 6.374593 0.7474945 +0.5692344 6.374593 0.7474945 +0.6530715 6.374593 0.7474945 +0.7474945 6.374593 0.7474945 +0.8539475 6.374593 0.7474945 +0.974052 6.374593 0.7474945 +1.113885 6.374593 0.7474945 +1.27456 6.374593 0.7474945 +1.458117 6.374593 0.7474945 +1.667858 6.374593 0.7474945 +1.907556 6.374593 0.7474945 +2.181521 6.374593 0.7474945 +2.494678 6.374593 0.7474945 +2.852659 6.374593 0.7474945 +3.261896 6.374593 0.7474945 +3.729748 6.374593 0.7474945 +4.264621 6.374593 0.7474945 +4.876131 6.374593 0.7474945 +5.575266 6.374593 0.7474945 +6.374593 6.374593 0.7474945 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0.002268731 0.8539475 +0 0.002268731 0.8539475 +0 0.002268731 0.8539475 +0.002268731 0.002268731 0.8539475 +0.07076883 0.002268731 0.8539475 +0.1119241 0.002268731 0.8539475 +0.1475052 0.002268731 0.8539475 +0.1846606 0.002268731 0.8539475 +0.2245119 0.002268731 0.8539475 +0.2679612 0.002268731 0.8539475 +0.3158431 0.002268731 0.8539475 +0.3689944 0.002268731 0.8539475 +0.4282948 0.002268731 0.8539475 +0.494694 0.002268731 0.8539475 +0.5692344 0.002268731 0.8539475 +0.6530715 0.002268731 0.8539475 +0.7474945 0.002268731 0.8539475 +0.8539475 0.002268731 0.8539475 +0.974052 0.002268731 0.8539475 +1.113885 0.002268731 0.8539475 +1.27456 0.002268731 0.8539475 +1.458117 0.002268731 0.8539475 +1.667858 0.002268731 0.8539475 +1.907556 0.002268731 0.8539475 +2.181521 0.002268731 0.8539475 +2.494678 0.002268731 0.8539475 +2.852659 0.002268731 0.8539475 +3.261896 0.002268731 0.8539475 +3.729748 0.002268731 0.8539475 +4.264621 0.002268731 0.8539475 +4.876131 0.002268731 0.8539475 +5.575266 0.002268731 0.8539475 +6.374593 0.002268731 0.8539475 +0 0.07076883 0.8539475 +0 0.07076883 0.8539475 +0 0.07076883 0.8539475 +0.002268731 0.07076883 0.8539475 +0.07076883 0.07076883 0.8539475 +0.1119241 0.07076883 0.8539475 +0.1475052 0.07076883 0.8539475 +0.1846606 0.07076883 0.8539475 +0.2245119 0.07076883 0.8539475 +0.2679612 0.07076883 0.8539475 +0.3158431 0.07076883 0.8539475 +0.3689944 0.07076883 0.8539475 +0.4282948 0.07076883 0.8539475 +0.494694 0.07076883 0.8539475 +0.5692344 0.07076883 0.8539475 +0.6530715 0.07076883 0.8539475 +0.7474945 0.07076883 0.8539475 +0.8539475 0.07076883 0.8539475 +0.974052 0.07076883 0.8539475 +1.113885 0.07076883 0.8539475 +1.27456 0.07076883 0.8539475 +1.458117 0.07076883 0.8539475 +1.667858 0.07076883 0.8539475 +1.907556 0.07076883 0.8539475 +2.181521 0.07076883 0.8539475 +2.494678 0.07076883 0.8539475 +2.852659 0.07076883 0.8539475 +3.261896 0.07076883 0.8539475 +3.729748 0.07076883 0.8539475 +4.264621 0.07076883 0.8539475 +4.876131 0.07076883 0.8539475 +5.575266 0.07076883 0.8539475 +6.374593 0.07076883 0.8539475 +0 0.1119241 0.8539475 +0 0.1119241 0.8539475 +0 0.1119241 0.8539475 +0.002268731 0.1119241 0.8539475 +0.07076883 0.1119241 0.8539475 +0.1119241 0.1119241 0.8539475 +0.1475052 0.1119241 0.8539475 +0.1846606 0.1119241 0.8539475 +0.2245119 0.1119241 0.8539475 +0.2679612 0.1119241 0.8539475 +0.3158431 0.1119241 0.8539475 +0.3689944 0.1119241 0.8539475 +0.4282948 0.1119241 0.8539475 +0.494694 0.1119241 0.8539475 +0.5692344 0.1119241 0.8539475 +0.6530715 0.1119241 0.8539475 +0.7474945 0.1119241 0.8539475 +0.8539475 0.1119241 0.8539475 +0.974052 0.1119241 0.8539475 +1.113885 0.1119241 0.8539475 +1.27456 0.1119241 0.8539475 +1.458117 0.1119241 0.8539475 +1.667858 0.1119241 0.8539475 +1.907556 0.1119241 0.8539475 +2.181521 0.1119241 0.8539475 +2.494678 0.1119241 0.8539475 +2.852659 0.1119241 0.8539475 +3.261896 0.1119241 0.8539475 +3.729748 0.1119241 0.8539475 +4.264621 0.1119241 0.8539475 +4.876131 0.1119241 0.8539475 +5.575266 0.1119241 0.8539475 +6.374593 0.1119241 0.8539475 +0 0.1475052 0.8539475 +0 0.1475052 0.8539475 +0 0.1475052 0.8539475 +0.002268731 0.1475052 0.8539475 +0.07076883 0.1475052 0.8539475 +0.1119241 0.1475052 0.8539475 +0.1475052 0.1475052 0.8539475 +0.1846606 0.1475052 0.8539475 +0.2245119 0.1475052 0.8539475 +0.2679612 0.1475052 0.8539475 +0.3158431 0.1475052 0.8539475 +0.3689944 0.1475052 0.8539475 +0.4282948 0.1475052 0.8539475 +0.494694 0.1475052 0.8539475 +0.5692344 0.1475052 0.8539475 +0.6530715 0.1475052 0.8539475 +0.7474945 0.1475052 0.8539475 +0.8539475 0.1475052 0.8539475 +0.974052 0.1475052 0.8539475 +1.113885 0.1475052 0.8539475 +1.27456 0.1475052 0.8539475 +1.458117 0.1475052 0.8539475 +1.667858 0.1475052 0.8539475 +1.907556 0.1475052 0.8539475 +2.181521 0.1475052 0.8539475 +2.494678 0.1475052 0.8539475 +2.852659 0.1475052 0.8539475 +3.261896 0.1475052 0.8539475 +3.729748 0.1475052 0.8539475 +4.264621 0.1475052 0.8539475 +4.876131 0.1475052 0.8539475 +5.575266 0.1475052 0.8539475 +6.374593 0.1475052 0.8539475 +0 0.1846606 0.8539475 +0 0.1846606 0.8539475 +0 0.1846606 0.8539475 +0.002268731 0.1846606 0.8539475 +0.07076883 0.1846606 0.8539475 +0.1119241 0.1846606 0.8539475 +0.1475052 0.1846606 0.8539475 +0.1846606 0.1846606 0.8539475 +0.2245119 0.1846606 0.8539475 +0.2679612 0.1846606 0.8539475 +0.3158431 0.1846606 0.8539475 +0.3689944 0.1846606 0.8539475 +0.4282948 0.1846606 0.8539475 +0.494694 0.1846606 0.8539475 +0.5692344 0.1846606 0.8539475 +0.6530715 0.1846606 0.8539475 +0.7474945 0.1846606 0.8539475 +0.8539475 0.1846606 0.8539475 +0.974052 0.1846606 0.8539475 +1.113885 0.1846606 0.8539475 +1.27456 0.1846606 0.8539475 +1.458117 0.1846606 0.8539475 +1.667858 0.1846606 0.8539475 +1.907556 0.1846606 0.8539475 +2.181521 0.1846606 0.8539475 +2.494678 0.1846606 0.8539475 +2.852659 0.1846606 0.8539475 +3.261896 0.1846606 0.8539475 +3.729748 0.1846606 0.8539475 +4.264621 0.1846606 0.8539475 +4.876131 0.1846606 0.8539475 +5.575266 0.1846606 0.8539475 +6.374593 0.1846606 0.8539475 +0 0.2245119 0.8539475 +0 0.2245119 0.8539475 +0 0.2245119 0.8539475 +0.002268731 0.2245119 0.8539475 +0.07076883 0.2245119 0.8539475 +0.1119241 0.2245119 0.8539475 +0.1475052 0.2245119 0.8539475 +0.1846606 0.2245119 0.8539475 +0.2245119 0.2245119 0.8539475 +0.2679612 0.2245119 0.8539475 +0.3158431 0.2245119 0.8539475 +0.3689944 0.2245119 0.8539475 +0.4282948 0.2245119 0.8539475 +0.494694 0.2245119 0.8539475 +0.5692344 0.2245119 0.8539475 +0.6530715 0.2245119 0.8539475 +0.7474945 0.2245119 0.8539475 +0.8539475 0.2245119 0.8539475 +0.974052 0.2245119 0.8539475 +1.113885 0.2245119 0.8539475 +1.27456 0.2245119 0.8539475 +1.458117 0.2245119 0.8539475 +1.667858 0.2245119 0.8539475 +1.907556 0.2245119 0.8539475 +2.181521 0.2245119 0.8539475 +2.494678 0.2245119 0.8539475 +2.852659 0.2245119 0.8539475 +3.261896 0.2245119 0.8539475 +3.729748 0.2245119 0.8539475 +4.264621 0.2245119 0.8539475 +4.876131 0.2245119 0.8539475 +5.575266 0.2245119 0.8539475 +6.374593 0.2245119 0.8539475 +0 0.2679612 0.8539475 +0 0.2679612 0.8539475 +0 0.2679612 0.8539475 +0.002268731 0.2679612 0.8539475 +0.07076883 0.2679612 0.8539475 +0.1119241 0.2679612 0.8539475 +0.1475052 0.2679612 0.8539475 +0.1846606 0.2679612 0.8539475 +0.2245119 0.2679612 0.8539475 +0.2679612 0.2679612 0.8539475 +0.3158431 0.2679612 0.8539475 +0.3689944 0.2679612 0.8539475 +0.4282948 0.2679612 0.8539475 +0.494694 0.2679612 0.8539475 +0.5692344 0.2679612 0.8539475 +0.6530715 0.2679612 0.8539475 +0.7474945 0.2679612 0.8539475 +0.8539475 0.2679612 0.8539475 +0.974052 0.2679612 0.8539475 +1.113885 0.2679612 0.8539475 +1.27456 0.2679612 0.8539475 +1.458117 0.2679612 0.8539475 +1.667858 0.2679612 0.8539475 +1.907556 0.2679612 0.8539475 +2.181521 0.2679612 0.8539475 +2.494678 0.2679612 0.8539475 +2.852659 0.2679612 0.8539475 +3.261896 0.2679612 0.8539475 +3.729748 0.2679612 0.8539475 +4.264621 0.2679612 0.8539475 +4.876131 0.2679612 0.8539475 +5.575266 0.2679612 0.8539475 +6.374593 0.2679612 0.8539475 +0 0.3158431 0.8539475 +0 0.3158431 0.8539475 +0 0.3158431 0.8539475 +0.002268731 0.3158431 0.8539475 +0.07076883 0.3158431 0.8539475 +0.1119241 0.3158431 0.8539475 +0.1475052 0.3158431 0.8539475 +0.1846606 0.3158431 0.8539475 +0.2245119 0.3158431 0.8539475 +0.2679612 0.3158431 0.8539475 +0.3158431 0.3158431 0.8539475 +0.3689944 0.3158431 0.8539475 +0.4282948 0.3158431 0.8539475 +0.494694 0.3158431 0.8539475 +0.5692344 0.3158431 0.8539475 +0.6530715 0.3158431 0.8539475 +0.7474945 0.3158431 0.8539475 +0.8539475 0.3158431 0.8539475 +0.974052 0.3158431 0.8539475 +1.113885 0.3158431 0.8539475 +1.27456 0.3158431 0.8539475 +1.458117 0.3158431 0.8539475 +1.667858 0.3158431 0.8539475 +1.907556 0.3158431 0.8539475 +2.181521 0.3158431 0.8539475 +2.494678 0.3158431 0.8539475 +2.852659 0.3158431 0.8539475 +3.261896 0.3158431 0.8539475 +3.729748 0.3158431 0.8539475 +4.264621 0.3158431 0.8539475 +4.876131 0.3158431 0.8539475 +5.575266 0.3158431 0.8539475 +6.374593 0.3158431 0.8539475 +0 0.3689944 0.8539475 +0 0.3689944 0.8539475 +0 0.3689944 0.8539475 +0.002268731 0.3689944 0.8539475 +0.07076883 0.3689944 0.8539475 +0.1119241 0.3689944 0.8539475 +0.1475052 0.3689944 0.8539475 +0.1846606 0.3689944 0.8539475 +0.2245119 0.3689944 0.8539475 +0.2679612 0.3689944 0.8539475 +0.3158431 0.3689944 0.8539475 +0.3689944 0.3689944 0.8539475 +0.4282948 0.3689944 0.8539475 +0.494694 0.3689944 0.8539475 +0.5692344 0.3689944 0.8539475 +0.6530715 0.3689944 0.8539475 +0.7474945 0.3689944 0.8539475 +0.8539475 0.3689944 0.8539475 +0.974052 0.3689944 0.8539475 +1.113885 0.3689944 0.8539475 +1.27456 0.3689944 0.8539475 +1.458117 0.3689944 0.8539475 +1.667858 0.3689944 0.8539475 +1.907556 0.3689944 0.8539475 +2.181521 0.3689944 0.8539475 +2.494678 0.3689944 0.8539475 +2.852659 0.3689944 0.8539475 +3.261896 0.3689944 0.8539475 +3.729748 0.3689944 0.8539475 +4.264621 0.3689944 0.8539475 +4.876131 0.3689944 0.8539475 +5.575266 0.3689944 0.8539475 +6.374593 0.3689944 0.8539475 +0 0.4282948 0.8539475 +0 0.4282948 0.8539475 +0 0.4282948 0.8539475 +0.002268731 0.4282948 0.8539475 +0.07076883 0.4282948 0.8539475 +0.1119241 0.4282948 0.8539475 +0.1475052 0.4282948 0.8539475 +0.1846606 0.4282948 0.8539475 +0.2245119 0.4282948 0.8539475 +0.2679612 0.4282948 0.8539475 +0.3158431 0.4282948 0.8539475 +0.3689944 0.4282948 0.8539475 +0.4282948 0.4282948 0.8539475 +0.494694 0.4282948 0.8539475 +0.5692344 0.4282948 0.8539475 +0.6530715 0.4282948 0.8539475 +0.7474945 0.4282948 0.8539475 +0.8539475 0.4282948 0.8539475 +0.974052 0.4282948 0.8539475 +1.113885 0.4282948 0.8539475 +1.27456 0.4282948 0.8539475 +1.458117 0.4282948 0.8539475 +1.667858 0.4282948 0.8539475 +1.907556 0.4282948 0.8539475 +2.181521 0.4282948 0.8539475 +2.494678 0.4282948 0.8539475 +2.852659 0.4282948 0.8539475 +3.261896 0.4282948 0.8539475 +3.729748 0.4282948 0.8539475 +4.264621 0.4282948 0.8539475 +4.876131 0.4282948 0.8539475 +5.575266 0.4282948 0.8539475 +6.374593 0.4282948 0.8539475 +0 0.494694 0.8539475 +0 0.494694 0.8539475 +0 0.494694 0.8539475 +0.002268731 0.494694 0.8539475 +0.07076883 0.494694 0.8539475 +0.1119241 0.494694 0.8539475 +0.1475052 0.494694 0.8539475 +0.1846606 0.494694 0.8539475 +0.2245119 0.494694 0.8539475 +0.2679612 0.494694 0.8539475 +0.3158431 0.494694 0.8539475 +0.3689944 0.494694 0.8539475 +0.4282948 0.494694 0.8539475 +0.494694 0.494694 0.8539475 +0.5692344 0.494694 0.8539475 +0.6530715 0.494694 0.8539475 +0.7474945 0.494694 0.8539475 +0.8539475 0.494694 0.8539475 +0.974052 0.494694 0.8539475 +1.113885 0.494694 0.8539475 +1.27456 0.494694 0.8539475 +1.458117 0.494694 0.8539475 +1.667858 0.494694 0.8539475 +1.907556 0.494694 0.8539475 +2.181521 0.494694 0.8539475 +2.494678 0.494694 0.8539475 +2.852659 0.494694 0.8539475 +3.261896 0.494694 0.8539475 +3.729748 0.494694 0.8539475 +4.264621 0.494694 0.8539475 +4.876131 0.494694 0.8539475 +5.575266 0.494694 0.8539475 +6.374593 0.494694 0.8539475 +0 0.5692344 0.8539475 +0 0.5692344 0.8539475 +0 0.5692344 0.8539475 +0.002268731 0.5692344 0.8539475 +0.07076883 0.5692344 0.8539475 +0.1119241 0.5692344 0.8539475 +0.1475052 0.5692344 0.8539475 +0.1846606 0.5692344 0.8539475 +0.2245119 0.5692344 0.8539475 +0.2679612 0.5692344 0.8539475 +0.3158431 0.5692344 0.8539475 +0.3689944 0.5692344 0.8539475 +0.4282948 0.5692344 0.8539475 +0.494694 0.5692344 0.8539475 +0.5692344 0.5692344 0.8539475 +0.6530715 0.5692344 0.8539475 +0.7474945 0.5692344 0.8539475 +0.8539475 0.5692344 0.8539475 +0.974052 0.5692344 0.8539475 +1.113885 0.5692344 0.8539475 +1.27456 0.5692344 0.8539475 +1.458117 0.5692344 0.8539475 +1.667858 0.5692344 0.8539475 +1.907556 0.5692344 0.8539475 +2.181521 0.5692344 0.8539475 +2.494678 0.5692344 0.8539475 +2.852659 0.5692344 0.8539475 +3.261896 0.5692344 0.8539475 +3.729748 0.5692344 0.8539475 +4.264621 0.5692344 0.8539475 +4.876131 0.5692344 0.8539475 +5.575266 0.5692344 0.8539475 +6.374593 0.5692344 0.8539475 +0 0.6530715 0.8539475 +0 0.6530715 0.8539475 +0 0.6530715 0.8539475 +0.002268731 0.6530715 0.8539475 +0.07076883 0.6530715 0.8539475 +0.1119241 0.6530715 0.8539475 +0.1475052 0.6530715 0.8539475 +0.1846606 0.6530715 0.8539475 +0.2245119 0.6530715 0.8539475 +0.2679612 0.6530715 0.8539475 +0.3158431 0.6530715 0.8539475 +0.3689944 0.6530715 0.8539475 +0.4282948 0.6530715 0.8539475 +0.494694 0.6530715 0.8539475 +0.5692344 0.6530715 0.8539475 +0.6530715 0.6530715 0.8539475 +0.7474945 0.6530715 0.8539475 +0.8539475 0.6530715 0.8539475 +0.974052 0.6530715 0.8539475 +1.113885 0.6530715 0.8539475 +1.27456 0.6530715 0.8539475 +1.458117 0.6530715 0.8539475 +1.667858 0.6530715 0.8539475 +1.907556 0.6530715 0.8539475 +2.181521 0.6530715 0.8539475 +2.494678 0.6530715 0.8539475 +2.852659 0.6530715 0.8539475 +3.261896 0.6530715 0.8539475 +3.729748 0.6530715 0.8539475 +4.264621 0.6530715 0.8539475 +4.876131 0.6530715 0.8539475 +5.575266 0.6530715 0.8539475 +6.374593 0.6530715 0.8539475 +0 0.7474945 0.8539475 +0 0.7474945 0.8539475 +0 0.7474945 0.8539475 +0.002268731 0.7474945 0.8539475 +0.07076883 0.7474945 0.8539475 +0.1119241 0.7474945 0.8539475 +0.1475052 0.7474945 0.8539475 +0.1846606 0.7474945 0.8539475 +0.2245119 0.7474945 0.8539475 +0.2679612 0.7474945 0.8539475 +0.3158431 0.7474945 0.8539475 +0.3689944 0.7474945 0.8539475 +0.4282948 0.7474945 0.8539475 +0.494694 0.7474945 0.8539475 +0.5692344 0.7474945 0.8539475 +0.6530715 0.7474945 0.8539475 +0.7474945 0.7474945 0.8539475 +0.8539475 0.7474945 0.8539475 +0.974052 0.7474945 0.8539475 +1.113885 0.7474945 0.8539475 +1.27456 0.7474945 0.8539475 +1.458117 0.7474945 0.8539475 +1.667858 0.7474945 0.8539475 +1.907556 0.7474945 0.8539475 +2.181521 0.7474945 0.8539475 +2.494678 0.7474945 0.8539475 +2.852659 0.7474945 0.8539475 +3.261896 0.7474945 0.8539475 +3.729748 0.7474945 0.8539475 +4.264621 0.7474945 0.8539475 +4.876131 0.7474945 0.8539475 +5.575266 0.7474945 0.8539475 +6.374593 0.7474945 0.8539475 +0 0.8539475 0.8539475 +0 0.8539475 0.8539475 +0 0.8539475 0.8539475 +0.002268731 0.8539475 0.8539475 +0.07076883 0.8539475 0.8539475 +0.1119241 0.8539475 0.8539475 +0.1475052 0.8539475 0.8539475 +0.1846606 0.8539475 0.8539475 +0.2245119 0.8539475 0.8539475 +0.2679612 0.8539475 0.8539475 +0.3158431 0.8539475 0.8539475 +0.3689944 0.8539475 0.8539475 +0.4282948 0.8539475 0.8539475 +0.494694 0.8539475 0.8539475 +0.5692344 0.8539475 0.8539475 +0.6530715 0.8539475 0.8539475 +0.7474945 0.8539475 0.8539475 +0.8539475 0.8539475 0.8539475 +0.974052 0.8539475 0.8539475 +1.113885 0.8539475 0.8539475 +1.27456 0.8539475 0.8539475 +1.458117 0.8539475 0.8539475 +1.667858 0.8539475 0.8539475 +1.907556 0.8539475 0.8539475 +2.181521 0.8539475 0.8539475 +2.494678 0.8539475 0.8539475 +2.852659 0.8539475 0.8539475 +3.261896 0.8539475 0.8539475 +3.729748 0.8539475 0.8539475 +4.264621 0.8539475 0.8539475 +4.876131 0.8539475 0.8539475 +5.575266 0.8539475 0.8539475 +6.374593 0.8539475 0.8539475 +0 0.974052 0.8539475 +0 0.974052 0.8539475 +0 0.974052 0.8539475 +0.002268731 0.974052 0.8539475 +0.07076883 0.974052 0.8539475 +0.1119241 0.974052 0.8539475 +0.1475052 0.974052 0.8539475 +0.1846606 0.974052 0.8539475 +0.2245119 0.974052 0.8539475 +0.2679612 0.974052 0.8539475 +0.3158431 0.974052 0.8539475 +0.3689944 0.974052 0.8539475 +0.4282948 0.974052 0.8539475 +0.494694 0.974052 0.8539475 +0.5692344 0.974052 0.8539475 +0.6530715 0.974052 0.8539475 +0.7474945 0.974052 0.8539475 +0.8539475 0.974052 0.8539475 +0.974052 0.974052 0.8539475 +1.113885 0.974052 0.8539475 +1.27456 0.974052 0.8539475 +1.458117 0.974052 0.8539475 +1.667858 0.974052 0.8539475 +1.907556 0.974052 0.8539475 +2.181521 0.974052 0.8539475 +2.494678 0.974052 0.8539475 +2.852659 0.974052 0.8539475 +3.261896 0.974052 0.8539475 +3.729748 0.974052 0.8539475 +4.264621 0.974052 0.8539475 +4.876131 0.974052 0.8539475 +5.575266 0.974052 0.8539475 +6.374593 0.974052 0.8539475 +0 1.113885 0.8539475 +0 1.113885 0.8539475 +0 1.113885 0.8539475 +0.002268731 1.113885 0.8539475 +0.07076883 1.113885 0.8539475 +0.1119241 1.113885 0.8539475 +0.1475052 1.113885 0.8539475 +0.1846606 1.113885 0.8539475 +0.2245119 1.113885 0.8539475 +0.2679612 1.113885 0.8539475 +0.3158431 1.113885 0.8539475 +0.3689944 1.113885 0.8539475 +0.4282948 1.113885 0.8539475 +0.494694 1.113885 0.8539475 +0.5692344 1.113885 0.8539475 +0.6530715 1.113885 0.8539475 +0.7474945 1.113885 0.8539475 +0.8539475 1.113885 0.8539475 +0.974052 1.113885 0.8539475 +1.113885 1.113885 0.8539475 +1.27456 1.113885 0.8539475 +1.458117 1.113885 0.8539475 +1.667858 1.113885 0.8539475 +1.907556 1.113885 0.8539475 +2.181521 1.113885 0.8539475 +2.494678 1.113885 0.8539475 +2.852659 1.113885 0.8539475 +3.261896 1.113885 0.8539475 +3.729748 1.113885 0.8539475 +4.264621 1.113885 0.8539475 +4.876131 1.113885 0.8539475 +5.575266 1.113885 0.8539475 +6.374593 1.113885 0.8539475 +0 1.27456 0.8539475 +0 1.27456 0.8539475 +0 1.27456 0.8539475 +0.002268731 1.27456 0.8539475 +0.07076883 1.27456 0.8539475 +0.1119241 1.27456 0.8539475 +0.1475052 1.27456 0.8539475 +0.1846606 1.27456 0.8539475 +0.2245119 1.27456 0.8539475 +0.2679612 1.27456 0.8539475 +0.3158431 1.27456 0.8539475 +0.3689944 1.27456 0.8539475 +0.4282948 1.27456 0.8539475 +0.494694 1.27456 0.8539475 +0.5692344 1.27456 0.8539475 +0.6530715 1.27456 0.8539475 +0.7474945 1.27456 0.8539475 +0.8539475 1.27456 0.8539475 +0.974052 1.27456 0.8539475 +1.113885 1.27456 0.8539475 +1.27456 1.27456 0.8539475 +1.458117 1.27456 0.8539475 +1.667858 1.27456 0.8539475 +1.907556 1.27456 0.8539475 +2.181521 1.27456 0.8539475 +2.494678 1.27456 0.8539475 +2.852659 1.27456 0.8539475 +3.261896 1.27456 0.8539475 +3.729748 1.27456 0.8539475 +4.264621 1.27456 0.8539475 +4.876131 1.27456 0.8539475 +5.575266 1.27456 0.8539475 +6.374593 1.27456 0.8539475 +0 1.458117 0.8539475 +0 1.458117 0.8539475 +0 1.458117 0.8539475 +0.002268731 1.458117 0.8539475 +0.07076883 1.458117 0.8539475 +0.1119241 1.458117 0.8539475 +0.1475052 1.458117 0.8539475 +0.1846606 1.458117 0.8539475 +0.2245119 1.458117 0.8539475 +0.2679612 1.458117 0.8539475 +0.3158431 1.458117 0.8539475 +0.3689944 1.458117 0.8539475 +0.4282948 1.458117 0.8539475 +0.494694 1.458117 0.8539475 +0.5692344 1.458117 0.8539475 +0.6530715 1.458117 0.8539475 +0.7474945 1.458117 0.8539475 +0.8539475 1.458117 0.8539475 +0.974052 1.458117 0.8539475 +1.113885 1.458117 0.8539475 +1.27456 1.458117 0.8539475 +1.458117 1.458117 0.8539475 +1.667858 1.458117 0.8539475 +1.907556 1.458117 0.8539475 +2.181521 1.458117 0.8539475 +2.494678 1.458117 0.8539475 +2.852659 1.458117 0.8539475 +3.261896 1.458117 0.8539475 +3.729748 1.458117 0.8539475 +4.264621 1.458117 0.8539475 +4.876131 1.458117 0.8539475 +5.575266 1.458117 0.8539475 +6.374593 1.458117 0.8539475 +0 1.667858 0.8539475 +0 1.667858 0.8539475 +0 1.667858 0.8539475 +0.002268731 1.667858 0.8539475 +0.07076883 1.667858 0.8539475 +0.1119241 1.667858 0.8539475 +0.1475052 1.667858 0.8539475 +0.1846606 1.667858 0.8539475 +0.2245119 1.667858 0.8539475 +0.2679612 1.667858 0.8539475 +0.3158431 1.667858 0.8539475 +0.3689944 1.667858 0.8539475 +0.4282948 1.667858 0.8539475 +0.494694 1.667858 0.8539475 +0.5692344 1.667858 0.8539475 +0.6530715 1.667858 0.8539475 +0.7474945 1.667858 0.8539475 +0.8539475 1.667858 0.8539475 +0.974052 1.667858 0.8539475 +1.113885 1.667858 0.8539475 +1.27456 1.667858 0.8539475 +1.458117 1.667858 0.8539475 +1.667858 1.667858 0.8539475 +1.907556 1.667858 0.8539475 +2.181521 1.667858 0.8539475 +2.494678 1.667858 0.8539475 +2.852659 1.667858 0.8539475 +3.261896 1.667858 0.8539475 +3.729748 1.667858 0.8539475 +4.264621 1.667858 0.8539475 +4.876131 1.667858 0.8539475 +5.575266 1.667858 0.8539475 +6.374593 1.667858 0.8539475 +0 1.907556 0.8539475 +0 1.907556 0.8539475 +0 1.907556 0.8539475 +0.002268731 1.907556 0.8539475 +0.07076883 1.907556 0.8539475 +0.1119241 1.907556 0.8539475 +0.1475052 1.907556 0.8539475 +0.1846606 1.907556 0.8539475 +0.2245119 1.907556 0.8539475 +0.2679612 1.907556 0.8539475 +0.3158431 1.907556 0.8539475 +0.3689944 1.907556 0.8539475 +0.4282948 1.907556 0.8539475 +0.494694 1.907556 0.8539475 +0.5692344 1.907556 0.8539475 +0.6530715 1.907556 0.8539475 +0.7474945 1.907556 0.8539475 +0.8539475 1.907556 0.8539475 +0.974052 1.907556 0.8539475 +1.113885 1.907556 0.8539475 +1.27456 1.907556 0.8539475 +1.458117 1.907556 0.8539475 +1.667858 1.907556 0.8539475 +1.907556 1.907556 0.8539475 +2.181521 1.907556 0.8539475 +2.494678 1.907556 0.8539475 +2.852659 1.907556 0.8539475 +3.261896 1.907556 0.8539475 +3.729748 1.907556 0.8539475 +4.264621 1.907556 0.8539475 +4.876131 1.907556 0.8539475 +5.575266 1.907556 0.8539475 +6.374593 1.907556 0.8539475 +0 2.181521 0.8539475 +0 2.181521 0.8539475 +0 2.181521 0.8539475 +0.002268731 2.181521 0.8539475 +0.07076883 2.181521 0.8539475 +0.1119241 2.181521 0.8539475 +0.1475052 2.181521 0.8539475 +0.1846606 2.181521 0.8539475 +0.2245119 2.181521 0.8539475 +0.2679612 2.181521 0.8539475 +0.3158431 2.181521 0.8539475 +0.3689944 2.181521 0.8539475 +0.4282948 2.181521 0.8539475 +0.494694 2.181521 0.8539475 +0.5692344 2.181521 0.8539475 +0.6530715 2.181521 0.8539475 +0.7474945 2.181521 0.8539475 +0.8539475 2.181521 0.8539475 +0.974052 2.181521 0.8539475 +1.113885 2.181521 0.8539475 +1.27456 2.181521 0.8539475 +1.458117 2.181521 0.8539475 +1.667858 2.181521 0.8539475 +1.907556 2.181521 0.8539475 +2.181521 2.181521 0.8539475 +2.494678 2.181521 0.8539475 +2.852659 2.181521 0.8539475 +3.261896 2.181521 0.8539475 +3.729748 2.181521 0.8539475 +4.264621 2.181521 0.8539475 +4.876131 2.181521 0.8539475 +5.575266 2.181521 0.8539475 +6.374593 2.181521 0.8539475 +0 2.494678 0.8539475 +0 2.494678 0.8539475 +0 2.494678 0.8539475 +0.002268731 2.494678 0.8539475 +0.07076883 2.494678 0.8539475 +0.1119241 2.494678 0.8539475 +0.1475052 2.494678 0.8539475 +0.1846606 2.494678 0.8539475 +0.2245119 2.494678 0.8539475 +0.2679612 2.494678 0.8539475 +0.3158431 2.494678 0.8539475 +0.3689944 2.494678 0.8539475 +0.4282948 2.494678 0.8539475 +0.494694 2.494678 0.8539475 +0.5692344 2.494678 0.8539475 +0.6530715 2.494678 0.8539475 +0.7474945 2.494678 0.8539475 +0.8539475 2.494678 0.8539475 +0.974052 2.494678 0.8539475 +1.113885 2.494678 0.8539475 +1.27456 2.494678 0.8539475 +1.458117 2.494678 0.8539475 +1.667858 2.494678 0.8539475 +1.907556 2.494678 0.8539475 +2.181521 2.494678 0.8539475 +2.494678 2.494678 0.8539475 +2.852659 2.494678 0.8539475 +3.261896 2.494678 0.8539475 +3.729748 2.494678 0.8539475 +4.264621 2.494678 0.8539475 +4.876131 2.494678 0.8539475 +5.575266 2.494678 0.8539475 +6.374593 2.494678 0.8539475 +0 2.852659 0.8539475 +0 2.852659 0.8539475 +0 2.852659 0.8539475 +0.002268731 2.852659 0.8539475 +0.07076883 2.852659 0.8539475 +0.1119241 2.852659 0.8539475 +0.1475052 2.852659 0.8539475 +0.1846606 2.852659 0.8539475 +0.2245119 2.852659 0.8539475 +0.2679612 2.852659 0.8539475 +0.3158431 2.852659 0.8539475 +0.3689944 2.852659 0.8539475 +0.4282948 2.852659 0.8539475 +0.494694 2.852659 0.8539475 +0.5692344 2.852659 0.8539475 +0.6530715 2.852659 0.8539475 +0.7474945 2.852659 0.8539475 +0.8539475 2.852659 0.8539475 +0.974052 2.852659 0.8539475 +1.113885 2.852659 0.8539475 +1.27456 2.852659 0.8539475 +1.458117 2.852659 0.8539475 +1.667858 2.852659 0.8539475 +1.907556 2.852659 0.8539475 +2.181521 2.852659 0.8539475 +2.494678 2.852659 0.8539475 +2.852659 2.852659 0.8539475 +3.261896 2.852659 0.8539475 +3.729748 2.852659 0.8539475 +4.264621 2.852659 0.8539475 +4.876131 2.852659 0.8539475 +5.575266 2.852659 0.8539475 +6.374593 2.852659 0.8539475 +0 3.261896 0.8539475 +0 3.261896 0.8539475 +0 3.261896 0.8539475 +0.002268731 3.261896 0.8539475 +0.07076883 3.261896 0.8539475 +0.1119241 3.261896 0.8539475 +0.1475052 3.261896 0.8539475 +0.1846606 3.261896 0.8539475 +0.2245119 3.261896 0.8539475 +0.2679612 3.261896 0.8539475 +0.3158431 3.261896 0.8539475 +0.3689944 3.261896 0.8539475 +0.4282948 3.261896 0.8539475 +0.494694 3.261896 0.8539475 +0.5692344 3.261896 0.8539475 +0.6530715 3.261896 0.8539475 +0.7474945 3.261896 0.8539475 +0.8539475 3.261896 0.8539475 +0.974052 3.261896 0.8539475 +1.113885 3.261896 0.8539475 +1.27456 3.261896 0.8539475 +1.458117 3.261896 0.8539475 +1.667858 3.261896 0.8539475 +1.907556 3.261896 0.8539475 +2.181521 3.261896 0.8539475 +2.494678 3.261896 0.8539475 +2.852659 3.261896 0.8539475 +3.261896 3.261896 0.8539475 +3.729748 3.261896 0.8539475 +4.264621 3.261896 0.8539475 +4.876131 3.261896 0.8539475 +5.575266 3.261896 0.8539475 +6.374593 3.261896 0.8539475 +0 3.729748 0.8539475 +0 3.729748 0.8539475 +0 3.729748 0.8539475 +0.002268731 3.729748 0.8539475 +0.07076883 3.729748 0.8539475 +0.1119241 3.729748 0.8539475 +0.1475052 3.729748 0.8539475 +0.1846606 3.729748 0.8539475 +0.2245119 3.729748 0.8539475 +0.2679612 3.729748 0.8539475 +0.3158431 3.729748 0.8539475 +0.3689944 3.729748 0.8539475 +0.4282948 3.729748 0.8539475 +0.494694 3.729748 0.8539475 +0.5692344 3.729748 0.8539475 +0.6530715 3.729748 0.8539475 +0.7474945 3.729748 0.8539475 +0.8539475 3.729748 0.8539475 +0.974052 3.729748 0.8539475 +1.113885 3.729748 0.8539475 +1.27456 3.729748 0.8539475 +1.458117 3.729748 0.8539475 +1.667858 3.729748 0.8539475 +1.907556 3.729748 0.8539475 +2.181521 3.729748 0.8539475 +2.494678 3.729748 0.8539475 +2.852659 3.729748 0.8539475 +3.261896 3.729748 0.8539475 +3.729748 3.729748 0.8539475 +4.264621 3.729748 0.8539475 +4.876131 3.729748 0.8539475 +5.575266 3.729748 0.8539475 +6.374593 3.729748 0.8539475 +0 4.264621 0.8539475 +0 4.264621 0.8539475 +0 4.264621 0.8539475 +0.002268731 4.264621 0.8539475 +0.07076883 4.264621 0.8539475 +0.1119241 4.264621 0.8539475 +0.1475052 4.264621 0.8539475 +0.1846606 4.264621 0.8539475 +0.2245119 4.264621 0.8539475 +0.2679612 4.264621 0.8539475 +0.3158431 4.264621 0.8539475 +0.3689944 4.264621 0.8539475 +0.4282948 4.264621 0.8539475 +0.494694 4.264621 0.8539475 +0.5692344 4.264621 0.8539475 +0.6530715 4.264621 0.8539475 +0.7474945 4.264621 0.8539475 +0.8539475 4.264621 0.8539475 +0.974052 4.264621 0.8539475 +1.113885 4.264621 0.8539475 +1.27456 4.264621 0.8539475 +1.458117 4.264621 0.8539475 +1.667858 4.264621 0.8539475 +1.907556 4.264621 0.8539475 +2.181521 4.264621 0.8539475 +2.494678 4.264621 0.8539475 +2.852659 4.264621 0.8539475 +3.261896 4.264621 0.8539475 +3.729748 4.264621 0.8539475 +4.264621 4.264621 0.8539475 +4.876131 4.264621 0.8539475 +5.575266 4.264621 0.8539475 +6.374593 4.264621 0.8539475 +0 4.876131 0.8539475 +0 4.876131 0.8539475 +0 4.876131 0.8539475 +0.002268731 4.876131 0.8539475 +0.07076883 4.876131 0.8539475 +0.1119241 4.876131 0.8539475 +0.1475052 4.876131 0.8539475 +0.1846606 4.876131 0.8539475 +0.2245119 4.876131 0.8539475 +0.2679612 4.876131 0.8539475 +0.3158431 4.876131 0.8539475 +0.3689944 4.876131 0.8539475 +0.4282948 4.876131 0.8539475 +0.494694 4.876131 0.8539475 +0.5692344 4.876131 0.8539475 +0.6530715 4.876131 0.8539475 +0.7474945 4.876131 0.8539475 +0.8539475 4.876131 0.8539475 +0.974052 4.876131 0.8539475 +1.113885 4.876131 0.8539475 +1.27456 4.876131 0.8539475 +1.458117 4.876131 0.8539475 +1.667858 4.876131 0.8539475 +1.907556 4.876131 0.8539475 +2.181521 4.876131 0.8539475 +2.494678 4.876131 0.8539475 +2.852659 4.876131 0.8539475 +3.261896 4.876131 0.8539475 +3.729748 4.876131 0.8539475 +4.264621 4.876131 0.8539475 +4.876131 4.876131 0.8539475 +5.575266 4.876131 0.8539475 +6.374593 4.876131 0.8539475 +0 5.575266 0.8539475 +0 5.575266 0.8539475 +0 5.575266 0.8539475 +0.002268731 5.575266 0.8539475 +0.07076883 5.575266 0.8539475 +0.1119241 5.575266 0.8539475 +0.1475052 5.575266 0.8539475 +0.1846606 5.575266 0.8539475 +0.2245119 5.575266 0.8539475 +0.2679612 5.575266 0.8539475 +0.3158431 5.575266 0.8539475 +0.3689944 5.575266 0.8539475 +0.4282948 5.575266 0.8539475 +0.494694 5.575266 0.8539475 +0.5692344 5.575266 0.8539475 +0.6530715 5.575266 0.8539475 +0.7474945 5.575266 0.8539475 +0.8539475 5.575266 0.8539475 +0.974052 5.575266 0.8539475 +1.113885 5.575266 0.8539475 +1.27456 5.575266 0.8539475 +1.458117 5.575266 0.8539475 +1.667858 5.575266 0.8539475 +1.907556 5.575266 0.8539475 +2.181521 5.575266 0.8539475 +2.494678 5.575266 0.8539475 +2.852659 5.575266 0.8539475 +3.261896 5.575266 0.8539475 +3.729748 5.575266 0.8539475 +4.264621 5.575266 0.8539475 +4.876131 5.575266 0.8539475 +5.575266 5.575266 0.8539475 +6.374593 5.575266 0.8539475 +0 6.374593 0.8539475 +0 6.374593 0.8539475 +0 6.374593 0.8539475 +0.002268731 6.374593 0.8539475 +0.07076883 6.374593 0.8539475 +0.1119241 6.374593 0.8539475 +0.1475052 6.374593 0.8539475 +0.1846606 6.374593 0.8539475 +0.2245119 6.374593 0.8539475 +0.2679612 6.374593 0.8539475 +0.3158431 6.374593 0.8539475 +0.3689944 6.374593 0.8539475 +0.4282948 6.374593 0.8539475 +0.494694 6.374593 0.8539475 +0.5692344 6.374593 0.8539475 +0.6530715 6.374593 0.8539475 +0.7474945 6.374593 0.8539475 +0.8539475 6.374593 0.8539475 +0.974052 6.374593 0.8539475 +1.113885 6.374593 0.8539475 +1.27456 6.374593 0.8539475 +1.458117 6.374593 0.8539475 +1.667858 6.374593 0.8539475 +1.907556 6.374593 0.8539475 +2.181521 6.374593 0.8539475 +2.494678 6.374593 0.8539475 +2.852659 6.374593 0.8539475 +3.261896 6.374593 0.8539475 +3.729748 6.374593 0.8539475 +4.264621 6.374593 0.8539475 +4.876131 6.374593 0.8539475 +5.575266 6.374593 0.8539475 +6.374593 6.374593 0.8539475 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0.002268731 0.974052 +0 0.002268731 0.974052 +0 0.002268731 0.974052 +0.002268731 0.002268731 0.974052 +0.07076883 0.002268731 0.974052 +0.1119241 0.002268731 0.974052 +0.1475052 0.002268731 0.974052 +0.1846606 0.002268731 0.974052 +0.2245119 0.002268731 0.974052 +0.2679612 0.002268731 0.974052 +0.3158431 0.002268731 0.974052 +0.3689944 0.002268731 0.974052 +0.4282948 0.002268731 0.974052 +0.494694 0.002268731 0.974052 +0.5692344 0.002268731 0.974052 +0.6530715 0.002268731 0.974052 +0.7474945 0.002268731 0.974052 +0.8539475 0.002268731 0.974052 +0.974052 0.002268731 0.974052 +1.113885 0.002268731 0.974052 +1.27456 0.002268731 0.974052 +1.458117 0.002268731 0.974052 +1.667858 0.002268731 0.974052 +1.907556 0.002268731 0.974052 +2.181521 0.002268731 0.974052 +2.494678 0.002268731 0.974052 +2.852659 0.002268731 0.974052 +3.261896 0.002268731 0.974052 +3.729748 0.002268731 0.974052 +4.264621 0.002268731 0.974052 +4.876131 0.002268731 0.974052 +5.575266 0.002268731 0.974052 +6.374593 0.002268731 0.974052 +0 0.07076883 0.974052 +0 0.07076883 0.974052 +0 0.07076883 0.974052 +0.002268731 0.07076883 0.974052 +0.07076883 0.07076883 0.974052 +0.1119241 0.07076883 0.974052 +0.1475052 0.07076883 0.974052 +0.1846606 0.07076883 0.974052 +0.2245119 0.07076883 0.974052 +0.2679612 0.07076883 0.974052 +0.3158431 0.07076883 0.974052 +0.3689944 0.07076883 0.974052 +0.4282948 0.07076883 0.974052 +0.494694 0.07076883 0.974052 +0.5692344 0.07076883 0.974052 +0.6530715 0.07076883 0.974052 +0.7474945 0.07076883 0.974052 +0.8539475 0.07076883 0.974052 +0.974052 0.07076883 0.974052 +1.113885 0.07076883 0.974052 +1.27456 0.07076883 0.974052 +1.458117 0.07076883 0.974052 +1.667858 0.07076883 0.974052 +1.907556 0.07076883 0.974052 +2.181521 0.07076883 0.974052 +2.494678 0.07076883 0.974052 +2.852659 0.07076883 0.974052 +3.261896 0.07076883 0.974052 +3.729748 0.07076883 0.974052 +4.264621 0.07076883 0.974052 +4.876131 0.07076883 0.974052 +5.575266 0.07076883 0.974052 +6.374593 0.07076883 0.974052 +0 0.1119241 0.974052 +0 0.1119241 0.974052 +0 0.1119241 0.974052 +0.002268731 0.1119241 0.974052 +0.07076883 0.1119241 0.974052 +0.1119241 0.1119241 0.974052 +0.1475052 0.1119241 0.974052 +0.1846606 0.1119241 0.974052 +0.2245119 0.1119241 0.974052 +0.2679612 0.1119241 0.974052 +0.3158431 0.1119241 0.974052 +0.3689944 0.1119241 0.974052 +0.4282948 0.1119241 0.974052 +0.494694 0.1119241 0.974052 +0.5692344 0.1119241 0.974052 +0.6530715 0.1119241 0.974052 +0.7474945 0.1119241 0.974052 +0.8539475 0.1119241 0.974052 +0.974052 0.1119241 0.974052 +1.113885 0.1119241 0.974052 +1.27456 0.1119241 0.974052 +1.458117 0.1119241 0.974052 +1.667858 0.1119241 0.974052 +1.907556 0.1119241 0.974052 +2.181521 0.1119241 0.974052 +2.494678 0.1119241 0.974052 +2.852659 0.1119241 0.974052 +3.261896 0.1119241 0.974052 +3.729748 0.1119241 0.974052 +4.264621 0.1119241 0.974052 +4.876131 0.1119241 0.974052 +5.575266 0.1119241 0.974052 +6.374593 0.1119241 0.974052 +0 0.1475052 0.974052 +0 0.1475052 0.974052 +0 0.1475052 0.974052 +0.002268731 0.1475052 0.974052 +0.07076883 0.1475052 0.974052 +0.1119241 0.1475052 0.974052 +0.1475052 0.1475052 0.974052 +0.1846606 0.1475052 0.974052 +0.2245119 0.1475052 0.974052 +0.2679612 0.1475052 0.974052 +0.3158431 0.1475052 0.974052 +0.3689944 0.1475052 0.974052 +0.4282948 0.1475052 0.974052 +0.494694 0.1475052 0.974052 +0.5692344 0.1475052 0.974052 +0.6530715 0.1475052 0.974052 +0.7474945 0.1475052 0.974052 +0.8539475 0.1475052 0.974052 +0.974052 0.1475052 0.974052 +1.113885 0.1475052 0.974052 +1.27456 0.1475052 0.974052 +1.458117 0.1475052 0.974052 +1.667858 0.1475052 0.974052 +1.907556 0.1475052 0.974052 +2.181521 0.1475052 0.974052 +2.494678 0.1475052 0.974052 +2.852659 0.1475052 0.974052 +3.261896 0.1475052 0.974052 +3.729748 0.1475052 0.974052 +4.264621 0.1475052 0.974052 +4.876131 0.1475052 0.974052 +5.575266 0.1475052 0.974052 +6.374593 0.1475052 0.974052 +0 0.1846606 0.974052 +0 0.1846606 0.974052 +0 0.1846606 0.974052 +0.002268731 0.1846606 0.974052 +0.07076883 0.1846606 0.974052 +0.1119241 0.1846606 0.974052 +0.1475052 0.1846606 0.974052 +0.1846606 0.1846606 0.974052 +0.2245119 0.1846606 0.974052 +0.2679612 0.1846606 0.974052 +0.3158431 0.1846606 0.974052 +0.3689944 0.1846606 0.974052 +0.4282948 0.1846606 0.974052 +0.494694 0.1846606 0.974052 +0.5692344 0.1846606 0.974052 +0.6530715 0.1846606 0.974052 +0.7474945 0.1846606 0.974052 +0.8539475 0.1846606 0.974052 +0.974052 0.1846606 0.974052 +1.113885 0.1846606 0.974052 +1.27456 0.1846606 0.974052 +1.458117 0.1846606 0.974052 +1.667858 0.1846606 0.974052 +1.907556 0.1846606 0.974052 +2.181521 0.1846606 0.974052 +2.494678 0.1846606 0.974052 +2.852659 0.1846606 0.974052 +3.261896 0.1846606 0.974052 +3.729748 0.1846606 0.974052 +4.264621 0.1846606 0.974052 +4.876131 0.1846606 0.974052 +5.575266 0.1846606 0.974052 +6.374593 0.1846606 0.974052 +0 0.2245119 0.974052 +0 0.2245119 0.974052 +0 0.2245119 0.974052 +0.002268731 0.2245119 0.974052 +0.07076883 0.2245119 0.974052 +0.1119241 0.2245119 0.974052 +0.1475052 0.2245119 0.974052 +0.1846606 0.2245119 0.974052 +0.2245119 0.2245119 0.974052 +0.2679612 0.2245119 0.974052 +0.3158431 0.2245119 0.974052 +0.3689944 0.2245119 0.974052 +0.4282948 0.2245119 0.974052 +0.494694 0.2245119 0.974052 +0.5692344 0.2245119 0.974052 +0.6530715 0.2245119 0.974052 +0.7474945 0.2245119 0.974052 +0.8539475 0.2245119 0.974052 +0.974052 0.2245119 0.974052 +1.113885 0.2245119 0.974052 +1.27456 0.2245119 0.974052 +1.458117 0.2245119 0.974052 +1.667858 0.2245119 0.974052 +1.907556 0.2245119 0.974052 +2.181521 0.2245119 0.974052 +2.494678 0.2245119 0.974052 +2.852659 0.2245119 0.974052 +3.261896 0.2245119 0.974052 +3.729748 0.2245119 0.974052 +4.264621 0.2245119 0.974052 +4.876131 0.2245119 0.974052 +5.575266 0.2245119 0.974052 +6.374593 0.2245119 0.974052 +0 0.2679612 0.974052 +0 0.2679612 0.974052 +0 0.2679612 0.974052 +0.002268731 0.2679612 0.974052 +0.07076883 0.2679612 0.974052 +0.1119241 0.2679612 0.974052 +0.1475052 0.2679612 0.974052 +0.1846606 0.2679612 0.974052 +0.2245119 0.2679612 0.974052 +0.2679612 0.2679612 0.974052 +0.3158431 0.2679612 0.974052 +0.3689944 0.2679612 0.974052 +0.4282948 0.2679612 0.974052 +0.494694 0.2679612 0.974052 +0.5692344 0.2679612 0.974052 +0.6530715 0.2679612 0.974052 +0.7474945 0.2679612 0.974052 +0.8539475 0.2679612 0.974052 +0.974052 0.2679612 0.974052 +1.113885 0.2679612 0.974052 +1.27456 0.2679612 0.974052 +1.458117 0.2679612 0.974052 +1.667858 0.2679612 0.974052 +1.907556 0.2679612 0.974052 +2.181521 0.2679612 0.974052 +2.494678 0.2679612 0.974052 +2.852659 0.2679612 0.974052 +3.261896 0.2679612 0.974052 +3.729748 0.2679612 0.974052 +4.264621 0.2679612 0.974052 +4.876131 0.2679612 0.974052 +5.575266 0.2679612 0.974052 +6.374593 0.2679612 0.974052 +0 0.3158431 0.974052 +0 0.3158431 0.974052 +0 0.3158431 0.974052 +0.002268731 0.3158431 0.974052 +0.07076883 0.3158431 0.974052 +0.1119241 0.3158431 0.974052 +0.1475052 0.3158431 0.974052 +0.1846606 0.3158431 0.974052 +0.2245119 0.3158431 0.974052 +0.2679612 0.3158431 0.974052 +0.3158431 0.3158431 0.974052 +0.3689944 0.3158431 0.974052 +0.4282948 0.3158431 0.974052 +0.494694 0.3158431 0.974052 +0.5692344 0.3158431 0.974052 +0.6530715 0.3158431 0.974052 +0.7474945 0.3158431 0.974052 +0.8539475 0.3158431 0.974052 +0.974052 0.3158431 0.974052 +1.113885 0.3158431 0.974052 +1.27456 0.3158431 0.974052 +1.458117 0.3158431 0.974052 +1.667858 0.3158431 0.974052 +1.907556 0.3158431 0.974052 +2.181521 0.3158431 0.974052 +2.494678 0.3158431 0.974052 +2.852659 0.3158431 0.974052 +3.261896 0.3158431 0.974052 +3.729748 0.3158431 0.974052 +4.264621 0.3158431 0.974052 +4.876131 0.3158431 0.974052 +5.575266 0.3158431 0.974052 +6.374593 0.3158431 0.974052 +0 0.3689944 0.974052 +0 0.3689944 0.974052 +0 0.3689944 0.974052 +0.002268731 0.3689944 0.974052 +0.07076883 0.3689944 0.974052 +0.1119241 0.3689944 0.974052 +0.1475052 0.3689944 0.974052 +0.1846606 0.3689944 0.974052 +0.2245119 0.3689944 0.974052 +0.2679612 0.3689944 0.974052 +0.3158431 0.3689944 0.974052 +0.3689944 0.3689944 0.974052 +0.4282948 0.3689944 0.974052 +0.494694 0.3689944 0.974052 +0.5692344 0.3689944 0.974052 +0.6530715 0.3689944 0.974052 +0.7474945 0.3689944 0.974052 +0.8539475 0.3689944 0.974052 +0.974052 0.3689944 0.974052 +1.113885 0.3689944 0.974052 +1.27456 0.3689944 0.974052 +1.458117 0.3689944 0.974052 +1.667858 0.3689944 0.974052 +1.907556 0.3689944 0.974052 +2.181521 0.3689944 0.974052 +2.494678 0.3689944 0.974052 +2.852659 0.3689944 0.974052 +3.261896 0.3689944 0.974052 +3.729748 0.3689944 0.974052 +4.264621 0.3689944 0.974052 +4.876131 0.3689944 0.974052 +5.575266 0.3689944 0.974052 +6.374593 0.3689944 0.974052 +0 0.4282948 0.974052 +0 0.4282948 0.974052 +0 0.4282948 0.974052 +0.002268731 0.4282948 0.974052 +0.07076883 0.4282948 0.974052 +0.1119241 0.4282948 0.974052 +0.1475052 0.4282948 0.974052 +0.1846606 0.4282948 0.974052 +0.2245119 0.4282948 0.974052 +0.2679612 0.4282948 0.974052 +0.3158431 0.4282948 0.974052 +0.3689944 0.4282948 0.974052 +0.4282948 0.4282948 0.974052 +0.494694 0.4282948 0.974052 +0.5692344 0.4282948 0.974052 +0.6530715 0.4282948 0.974052 +0.7474945 0.4282948 0.974052 +0.8539475 0.4282948 0.974052 +0.974052 0.4282948 0.974052 +1.113885 0.4282948 0.974052 +1.27456 0.4282948 0.974052 +1.458117 0.4282948 0.974052 +1.667858 0.4282948 0.974052 +1.907556 0.4282948 0.974052 +2.181521 0.4282948 0.974052 +2.494678 0.4282948 0.974052 +2.852659 0.4282948 0.974052 +3.261896 0.4282948 0.974052 +3.729748 0.4282948 0.974052 +4.264621 0.4282948 0.974052 +4.876131 0.4282948 0.974052 +5.575266 0.4282948 0.974052 +6.374593 0.4282948 0.974052 +0 0.494694 0.974052 +0 0.494694 0.974052 +0 0.494694 0.974052 +0.002268731 0.494694 0.974052 +0.07076883 0.494694 0.974052 +0.1119241 0.494694 0.974052 +0.1475052 0.494694 0.974052 +0.1846606 0.494694 0.974052 +0.2245119 0.494694 0.974052 +0.2679612 0.494694 0.974052 +0.3158431 0.494694 0.974052 +0.3689944 0.494694 0.974052 +0.4282948 0.494694 0.974052 +0.494694 0.494694 0.974052 +0.5692344 0.494694 0.974052 +0.6530715 0.494694 0.974052 +0.7474945 0.494694 0.974052 +0.8539475 0.494694 0.974052 +0.974052 0.494694 0.974052 +1.113885 0.494694 0.974052 +1.27456 0.494694 0.974052 +1.458117 0.494694 0.974052 +1.667858 0.494694 0.974052 +1.907556 0.494694 0.974052 +2.181521 0.494694 0.974052 +2.494678 0.494694 0.974052 +2.852659 0.494694 0.974052 +3.261896 0.494694 0.974052 +3.729748 0.494694 0.974052 +4.264621 0.494694 0.974052 +4.876131 0.494694 0.974052 +5.575266 0.494694 0.974052 +6.374593 0.494694 0.974052 +0 0.5692344 0.974052 +0 0.5692344 0.974052 +0 0.5692344 0.974052 +0.002268731 0.5692344 0.974052 +0.07076883 0.5692344 0.974052 +0.1119241 0.5692344 0.974052 +0.1475052 0.5692344 0.974052 +0.1846606 0.5692344 0.974052 +0.2245119 0.5692344 0.974052 +0.2679612 0.5692344 0.974052 +0.3158431 0.5692344 0.974052 +0.3689944 0.5692344 0.974052 +0.4282948 0.5692344 0.974052 +0.494694 0.5692344 0.974052 +0.5692344 0.5692344 0.974052 +0.6530715 0.5692344 0.974052 +0.7474945 0.5692344 0.974052 +0.8539475 0.5692344 0.974052 +0.974052 0.5692344 0.974052 +1.113885 0.5692344 0.974052 +1.27456 0.5692344 0.974052 +1.458117 0.5692344 0.974052 +1.667858 0.5692344 0.974052 +1.907556 0.5692344 0.974052 +2.181521 0.5692344 0.974052 +2.494678 0.5692344 0.974052 +2.852659 0.5692344 0.974052 +3.261896 0.5692344 0.974052 +3.729748 0.5692344 0.974052 +4.264621 0.5692344 0.974052 +4.876131 0.5692344 0.974052 +5.575266 0.5692344 0.974052 +6.374593 0.5692344 0.974052 +0 0.6530715 0.974052 +0 0.6530715 0.974052 +0 0.6530715 0.974052 +0.002268731 0.6530715 0.974052 +0.07076883 0.6530715 0.974052 +0.1119241 0.6530715 0.974052 +0.1475052 0.6530715 0.974052 +0.1846606 0.6530715 0.974052 +0.2245119 0.6530715 0.974052 +0.2679612 0.6530715 0.974052 +0.3158431 0.6530715 0.974052 +0.3689944 0.6530715 0.974052 +0.4282948 0.6530715 0.974052 +0.494694 0.6530715 0.974052 +0.5692344 0.6530715 0.974052 +0.6530715 0.6530715 0.974052 +0.7474945 0.6530715 0.974052 +0.8539475 0.6530715 0.974052 +0.974052 0.6530715 0.974052 +1.113885 0.6530715 0.974052 +1.27456 0.6530715 0.974052 +1.458117 0.6530715 0.974052 +1.667858 0.6530715 0.974052 +1.907556 0.6530715 0.974052 +2.181521 0.6530715 0.974052 +2.494678 0.6530715 0.974052 +2.852659 0.6530715 0.974052 +3.261896 0.6530715 0.974052 +3.729748 0.6530715 0.974052 +4.264621 0.6530715 0.974052 +4.876131 0.6530715 0.974052 +5.575266 0.6530715 0.974052 +6.374593 0.6530715 0.974052 +0 0.7474945 0.974052 +0 0.7474945 0.974052 +0 0.7474945 0.974052 +0.002268731 0.7474945 0.974052 +0.07076883 0.7474945 0.974052 +0.1119241 0.7474945 0.974052 +0.1475052 0.7474945 0.974052 +0.1846606 0.7474945 0.974052 +0.2245119 0.7474945 0.974052 +0.2679612 0.7474945 0.974052 +0.3158431 0.7474945 0.974052 +0.3689944 0.7474945 0.974052 +0.4282948 0.7474945 0.974052 +0.494694 0.7474945 0.974052 +0.5692344 0.7474945 0.974052 +0.6530715 0.7474945 0.974052 +0.7474945 0.7474945 0.974052 +0.8539475 0.7474945 0.974052 +0.974052 0.7474945 0.974052 +1.113885 0.7474945 0.974052 +1.27456 0.7474945 0.974052 +1.458117 0.7474945 0.974052 +1.667858 0.7474945 0.974052 +1.907556 0.7474945 0.974052 +2.181521 0.7474945 0.974052 +2.494678 0.7474945 0.974052 +2.852659 0.7474945 0.974052 +3.261896 0.7474945 0.974052 +3.729748 0.7474945 0.974052 +4.264621 0.7474945 0.974052 +4.876131 0.7474945 0.974052 +5.575266 0.7474945 0.974052 +6.374593 0.7474945 0.974052 +0 0.8539475 0.974052 +0 0.8539475 0.974052 +0 0.8539475 0.974052 +0.002268731 0.8539475 0.974052 +0.07076883 0.8539475 0.974052 +0.1119241 0.8539475 0.974052 +0.1475052 0.8539475 0.974052 +0.1846606 0.8539475 0.974052 +0.2245119 0.8539475 0.974052 +0.2679612 0.8539475 0.974052 +0.3158431 0.8539475 0.974052 +0.3689944 0.8539475 0.974052 +0.4282948 0.8539475 0.974052 +0.494694 0.8539475 0.974052 +0.5692344 0.8539475 0.974052 +0.6530715 0.8539475 0.974052 +0.7474945 0.8539475 0.974052 +0.8539475 0.8539475 0.974052 +0.974052 0.8539475 0.974052 +1.113885 0.8539475 0.974052 +1.27456 0.8539475 0.974052 +1.458117 0.8539475 0.974052 +1.667858 0.8539475 0.974052 +1.907556 0.8539475 0.974052 +2.181521 0.8539475 0.974052 +2.494678 0.8539475 0.974052 +2.852659 0.8539475 0.974052 +3.261896 0.8539475 0.974052 +3.729748 0.8539475 0.974052 +4.264621 0.8539475 0.974052 +4.876131 0.8539475 0.974052 +5.575266 0.8539475 0.974052 +6.374593 0.8539475 0.974052 +0 0.974052 0.974052 +0 0.974052 0.974052 +0 0.974052 0.974052 +0.002268731 0.974052 0.974052 +0.07076883 0.974052 0.974052 +0.1119241 0.974052 0.974052 +0.1475052 0.974052 0.974052 +0.1846606 0.974052 0.974052 +0.2245119 0.974052 0.974052 +0.2679612 0.974052 0.974052 +0.3158431 0.974052 0.974052 +0.3689944 0.974052 0.974052 +0.4282948 0.974052 0.974052 +0.494694 0.974052 0.974052 +0.5692344 0.974052 0.974052 +0.6530715 0.974052 0.974052 +0.7474945 0.974052 0.974052 +0.8539475 0.974052 0.974052 +0.974052 0.974052 0.974052 +1.113885 0.974052 0.974052 +1.27456 0.974052 0.974052 +1.458117 0.974052 0.974052 +1.667858 0.974052 0.974052 +1.907556 0.974052 0.974052 +2.181521 0.974052 0.974052 +2.494678 0.974052 0.974052 +2.852659 0.974052 0.974052 +3.261896 0.974052 0.974052 +3.729748 0.974052 0.974052 +4.264621 0.974052 0.974052 +4.876131 0.974052 0.974052 +5.575266 0.974052 0.974052 +6.374593 0.974052 0.974052 +0 1.113885 0.974052 +0 1.113885 0.974052 +0 1.113885 0.974052 +0.002268731 1.113885 0.974052 +0.07076883 1.113885 0.974052 +0.1119241 1.113885 0.974052 +0.1475052 1.113885 0.974052 +0.1846606 1.113885 0.974052 +0.2245119 1.113885 0.974052 +0.2679612 1.113885 0.974052 +0.3158431 1.113885 0.974052 +0.3689944 1.113885 0.974052 +0.4282948 1.113885 0.974052 +0.494694 1.113885 0.974052 +0.5692344 1.113885 0.974052 +0.6530715 1.113885 0.974052 +0.7474945 1.113885 0.974052 +0.8539475 1.113885 0.974052 +0.974052 1.113885 0.974052 +1.113885 1.113885 0.974052 +1.27456 1.113885 0.974052 +1.458117 1.113885 0.974052 +1.667858 1.113885 0.974052 +1.907556 1.113885 0.974052 +2.181521 1.113885 0.974052 +2.494678 1.113885 0.974052 +2.852659 1.113885 0.974052 +3.261896 1.113885 0.974052 +3.729748 1.113885 0.974052 +4.264621 1.113885 0.974052 +4.876131 1.113885 0.974052 +5.575266 1.113885 0.974052 +6.374593 1.113885 0.974052 +0 1.27456 0.974052 +0 1.27456 0.974052 +0 1.27456 0.974052 +0.002268731 1.27456 0.974052 +0.07076883 1.27456 0.974052 +0.1119241 1.27456 0.974052 +0.1475052 1.27456 0.974052 +0.1846606 1.27456 0.974052 +0.2245119 1.27456 0.974052 +0.2679612 1.27456 0.974052 +0.3158431 1.27456 0.974052 +0.3689944 1.27456 0.974052 +0.4282948 1.27456 0.974052 +0.494694 1.27456 0.974052 +0.5692344 1.27456 0.974052 +0.6530715 1.27456 0.974052 +0.7474945 1.27456 0.974052 +0.8539475 1.27456 0.974052 +0.974052 1.27456 0.974052 +1.113885 1.27456 0.974052 +1.27456 1.27456 0.974052 +1.458117 1.27456 0.974052 +1.667858 1.27456 0.974052 +1.907556 1.27456 0.974052 +2.181521 1.27456 0.974052 +2.494678 1.27456 0.974052 +2.852659 1.27456 0.974052 +3.261896 1.27456 0.974052 +3.729748 1.27456 0.974052 +4.264621 1.27456 0.974052 +4.876131 1.27456 0.974052 +5.575266 1.27456 0.974052 +6.374593 1.27456 0.974052 +0 1.458117 0.974052 +0 1.458117 0.974052 +0 1.458117 0.974052 +0.002268731 1.458117 0.974052 +0.07076883 1.458117 0.974052 +0.1119241 1.458117 0.974052 +0.1475052 1.458117 0.974052 +0.1846606 1.458117 0.974052 +0.2245119 1.458117 0.974052 +0.2679612 1.458117 0.974052 +0.3158431 1.458117 0.974052 +0.3689944 1.458117 0.974052 +0.4282948 1.458117 0.974052 +0.494694 1.458117 0.974052 +0.5692344 1.458117 0.974052 +0.6530715 1.458117 0.974052 +0.7474945 1.458117 0.974052 +0.8539475 1.458117 0.974052 +0.974052 1.458117 0.974052 +1.113885 1.458117 0.974052 +1.27456 1.458117 0.974052 +1.458117 1.458117 0.974052 +1.667858 1.458117 0.974052 +1.907556 1.458117 0.974052 +2.181521 1.458117 0.974052 +2.494678 1.458117 0.974052 +2.852659 1.458117 0.974052 +3.261896 1.458117 0.974052 +3.729748 1.458117 0.974052 +4.264621 1.458117 0.974052 +4.876131 1.458117 0.974052 +5.575266 1.458117 0.974052 +6.374593 1.458117 0.974052 +0 1.667858 0.974052 +0 1.667858 0.974052 +0 1.667858 0.974052 +0.002268731 1.667858 0.974052 +0.07076883 1.667858 0.974052 +0.1119241 1.667858 0.974052 +0.1475052 1.667858 0.974052 +0.1846606 1.667858 0.974052 +0.2245119 1.667858 0.974052 +0.2679612 1.667858 0.974052 +0.3158431 1.667858 0.974052 +0.3689944 1.667858 0.974052 +0.4282948 1.667858 0.974052 +0.494694 1.667858 0.974052 +0.5692344 1.667858 0.974052 +0.6530715 1.667858 0.974052 +0.7474945 1.667858 0.974052 +0.8539475 1.667858 0.974052 +0.974052 1.667858 0.974052 +1.113885 1.667858 0.974052 +1.27456 1.667858 0.974052 +1.458117 1.667858 0.974052 +1.667858 1.667858 0.974052 +1.907556 1.667858 0.974052 +2.181521 1.667858 0.974052 +2.494678 1.667858 0.974052 +2.852659 1.667858 0.974052 +3.261896 1.667858 0.974052 +3.729748 1.667858 0.974052 +4.264621 1.667858 0.974052 +4.876131 1.667858 0.974052 +5.575266 1.667858 0.974052 +6.374593 1.667858 0.974052 +0 1.907556 0.974052 +0 1.907556 0.974052 +0 1.907556 0.974052 +0.002268731 1.907556 0.974052 +0.07076883 1.907556 0.974052 +0.1119241 1.907556 0.974052 +0.1475052 1.907556 0.974052 +0.1846606 1.907556 0.974052 +0.2245119 1.907556 0.974052 +0.2679612 1.907556 0.974052 +0.3158431 1.907556 0.974052 +0.3689944 1.907556 0.974052 +0.4282948 1.907556 0.974052 +0.494694 1.907556 0.974052 +0.5692344 1.907556 0.974052 +0.6530715 1.907556 0.974052 +0.7474945 1.907556 0.974052 +0.8539475 1.907556 0.974052 +0.974052 1.907556 0.974052 +1.113885 1.907556 0.974052 +1.27456 1.907556 0.974052 +1.458117 1.907556 0.974052 +1.667858 1.907556 0.974052 +1.907556 1.907556 0.974052 +2.181521 1.907556 0.974052 +2.494678 1.907556 0.974052 +2.852659 1.907556 0.974052 +3.261896 1.907556 0.974052 +3.729748 1.907556 0.974052 +4.264621 1.907556 0.974052 +4.876131 1.907556 0.974052 +5.575266 1.907556 0.974052 +6.374593 1.907556 0.974052 +0 2.181521 0.974052 +0 2.181521 0.974052 +0 2.181521 0.974052 +0.002268731 2.181521 0.974052 +0.07076883 2.181521 0.974052 +0.1119241 2.181521 0.974052 +0.1475052 2.181521 0.974052 +0.1846606 2.181521 0.974052 +0.2245119 2.181521 0.974052 +0.2679612 2.181521 0.974052 +0.3158431 2.181521 0.974052 +0.3689944 2.181521 0.974052 +0.4282948 2.181521 0.974052 +0.494694 2.181521 0.974052 +0.5692344 2.181521 0.974052 +0.6530715 2.181521 0.974052 +0.7474945 2.181521 0.974052 +0.8539475 2.181521 0.974052 +0.974052 2.181521 0.974052 +1.113885 2.181521 0.974052 +1.27456 2.181521 0.974052 +1.458117 2.181521 0.974052 +1.667858 2.181521 0.974052 +1.907556 2.181521 0.974052 +2.181521 2.181521 0.974052 +2.494678 2.181521 0.974052 +2.852659 2.181521 0.974052 +3.261896 2.181521 0.974052 +3.729748 2.181521 0.974052 +4.264621 2.181521 0.974052 +4.876131 2.181521 0.974052 +5.575266 2.181521 0.974052 +6.374593 2.181521 0.974052 +0 2.494678 0.974052 +0 2.494678 0.974052 +0 2.494678 0.974052 +0.002268731 2.494678 0.974052 +0.07076883 2.494678 0.974052 +0.1119241 2.494678 0.974052 +0.1475052 2.494678 0.974052 +0.1846606 2.494678 0.974052 +0.2245119 2.494678 0.974052 +0.2679612 2.494678 0.974052 +0.3158431 2.494678 0.974052 +0.3689944 2.494678 0.974052 +0.4282948 2.494678 0.974052 +0.494694 2.494678 0.974052 +0.5692344 2.494678 0.974052 +0.6530715 2.494678 0.974052 +0.7474945 2.494678 0.974052 +0.8539475 2.494678 0.974052 +0.974052 2.494678 0.974052 +1.113885 2.494678 0.974052 +1.27456 2.494678 0.974052 +1.458117 2.494678 0.974052 +1.667858 2.494678 0.974052 +1.907556 2.494678 0.974052 +2.181521 2.494678 0.974052 +2.494678 2.494678 0.974052 +2.852659 2.494678 0.974052 +3.261896 2.494678 0.974052 +3.729748 2.494678 0.974052 +4.264621 2.494678 0.974052 +4.876131 2.494678 0.974052 +5.575266 2.494678 0.974052 +6.374593 2.494678 0.974052 +0 2.852659 0.974052 +0 2.852659 0.974052 +0 2.852659 0.974052 +0.002268731 2.852659 0.974052 +0.07076883 2.852659 0.974052 +0.1119241 2.852659 0.974052 +0.1475052 2.852659 0.974052 +0.1846606 2.852659 0.974052 +0.2245119 2.852659 0.974052 +0.2679612 2.852659 0.974052 +0.3158431 2.852659 0.974052 +0.3689944 2.852659 0.974052 +0.4282948 2.852659 0.974052 +0.494694 2.852659 0.974052 +0.5692344 2.852659 0.974052 +0.6530715 2.852659 0.974052 +0.7474945 2.852659 0.974052 +0.8539475 2.852659 0.974052 +0.974052 2.852659 0.974052 +1.113885 2.852659 0.974052 +1.27456 2.852659 0.974052 +1.458117 2.852659 0.974052 +1.667858 2.852659 0.974052 +1.907556 2.852659 0.974052 +2.181521 2.852659 0.974052 +2.494678 2.852659 0.974052 +2.852659 2.852659 0.974052 +3.261896 2.852659 0.974052 +3.729748 2.852659 0.974052 +4.264621 2.852659 0.974052 +4.876131 2.852659 0.974052 +5.575266 2.852659 0.974052 +6.374593 2.852659 0.974052 +0 3.261896 0.974052 +0 3.261896 0.974052 +0 3.261896 0.974052 +0.002268731 3.261896 0.974052 +0.07076883 3.261896 0.974052 +0.1119241 3.261896 0.974052 +0.1475052 3.261896 0.974052 +0.1846606 3.261896 0.974052 +0.2245119 3.261896 0.974052 +0.2679612 3.261896 0.974052 +0.3158431 3.261896 0.974052 +0.3689944 3.261896 0.974052 +0.4282948 3.261896 0.974052 +0.494694 3.261896 0.974052 +0.5692344 3.261896 0.974052 +0.6530715 3.261896 0.974052 +0.7474945 3.261896 0.974052 +0.8539475 3.261896 0.974052 +0.974052 3.261896 0.974052 +1.113885 3.261896 0.974052 +1.27456 3.261896 0.974052 +1.458117 3.261896 0.974052 +1.667858 3.261896 0.974052 +1.907556 3.261896 0.974052 +2.181521 3.261896 0.974052 +2.494678 3.261896 0.974052 +2.852659 3.261896 0.974052 +3.261896 3.261896 0.974052 +3.729748 3.261896 0.974052 +4.264621 3.261896 0.974052 +4.876131 3.261896 0.974052 +5.575266 3.261896 0.974052 +6.374593 3.261896 0.974052 +0 3.729748 0.974052 +0 3.729748 0.974052 +0 3.729748 0.974052 +0.002268731 3.729748 0.974052 +0.07076883 3.729748 0.974052 +0.1119241 3.729748 0.974052 +0.1475052 3.729748 0.974052 +0.1846606 3.729748 0.974052 +0.2245119 3.729748 0.974052 +0.2679612 3.729748 0.974052 +0.3158431 3.729748 0.974052 +0.3689944 3.729748 0.974052 +0.4282948 3.729748 0.974052 +0.494694 3.729748 0.974052 +0.5692344 3.729748 0.974052 +0.6530715 3.729748 0.974052 +0.7474945 3.729748 0.974052 +0.8539475 3.729748 0.974052 +0.974052 3.729748 0.974052 +1.113885 3.729748 0.974052 +1.27456 3.729748 0.974052 +1.458117 3.729748 0.974052 +1.667858 3.729748 0.974052 +1.907556 3.729748 0.974052 +2.181521 3.729748 0.974052 +2.494678 3.729748 0.974052 +2.852659 3.729748 0.974052 +3.261896 3.729748 0.974052 +3.729748 3.729748 0.974052 +4.264621 3.729748 0.974052 +4.876131 3.729748 0.974052 +5.575266 3.729748 0.974052 +6.374593 3.729748 0.974052 +0 4.264621 0.974052 +0 4.264621 0.974052 +0 4.264621 0.974052 +0.002268731 4.264621 0.974052 +0.07076883 4.264621 0.974052 +0.1119241 4.264621 0.974052 +0.1475052 4.264621 0.974052 +0.1846606 4.264621 0.974052 +0.2245119 4.264621 0.974052 +0.2679612 4.264621 0.974052 +0.3158431 4.264621 0.974052 +0.3689944 4.264621 0.974052 +0.4282948 4.264621 0.974052 +0.494694 4.264621 0.974052 +0.5692344 4.264621 0.974052 +0.6530715 4.264621 0.974052 +0.7474945 4.264621 0.974052 +0.8539475 4.264621 0.974052 +0.974052 4.264621 0.974052 +1.113885 4.264621 0.974052 +1.27456 4.264621 0.974052 +1.458117 4.264621 0.974052 +1.667858 4.264621 0.974052 +1.907556 4.264621 0.974052 +2.181521 4.264621 0.974052 +2.494678 4.264621 0.974052 +2.852659 4.264621 0.974052 +3.261896 4.264621 0.974052 +3.729748 4.264621 0.974052 +4.264621 4.264621 0.974052 +4.876131 4.264621 0.974052 +5.575266 4.264621 0.974052 +6.374593 4.264621 0.974052 +0 4.876131 0.974052 +0 4.876131 0.974052 +0 4.876131 0.974052 +0.002268731 4.876131 0.974052 +0.07076883 4.876131 0.974052 +0.1119241 4.876131 0.974052 +0.1475052 4.876131 0.974052 +0.1846606 4.876131 0.974052 +0.2245119 4.876131 0.974052 +0.2679612 4.876131 0.974052 +0.3158431 4.876131 0.974052 +0.3689944 4.876131 0.974052 +0.4282948 4.876131 0.974052 +0.494694 4.876131 0.974052 +0.5692344 4.876131 0.974052 +0.6530715 4.876131 0.974052 +0.7474945 4.876131 0.974052 +0.8539475 4.876131 0.974052 +0.974052 4.876131 0.974052 +1.113885 4.876131 0.974052 +1.27456 4.876131 0.974052 +1.458117 4.876131 0.974052 +1.667858 4.876131 0.974052 +1.907556 4.876131 0.974052 +2.181521 4.876131 0.974052 +2.494678 4.876131 0.974052 +2.852659 4.876131 0.974052 +3.261896 4.876131 0.974052 +3.729748 4.876131 0.974052 +4.264621 4.876131 0.974052 +4.876131 4.876131 0.974052 +5.575266 4.876131 0.974052 +6.374593 4.876131 0.974052 +0 5.575266 0.974052 +0 5.575266 0.974052 +0 5.575266 0.974052 +0.002268731 5.575266 0.974052 +0.07076883 5.575266 0.974052 +0.1119241 5.575266 0.974052 +0.1475052 5.575266 0.974052 +0.1846606 5.575266 0.974052 +0.2245119 5.575266 0.974052 +0.2679612 5.575266 0.974052 +0.3158431 5.575266 0.974052 +0.3689944 5.575266 0.974052 +0.4282948 5.575266 0.974052 +0.494694 5.575266 0.974052 +0.5692344 5.575266 0.974052 +0.6530715 5.575266 0.974052 +0.7474945 5.575266 0.974052 +0.8539475 5.575266 0.974052 +0.974052 5.575266 0.974052 +1.113885 5.575266 0.974052 +1.27456 5.575266 0.974052 +1.458117 5.575266 0.974052 +1.667858 5.575266 0.974052 +1.907556 5.575266 0.974052 +2.181521 5.575266 0.974052 +2.494678 5.575266 0.974052 +2.852659 5.575266 0.974052 +3.261896 5.575266 0.974052 +3.729748 5.575266 0.974052 +4.264621 5.575266 0.974052 +4.876131 5.575266 0.974052 +5.575266 5.575266 0.974052 +6.374593 5.575266 0.974052 +0 6.374593 0.974052 +0 6.374593 0.974052 +0 6.374593 0.974052 +0.002268731 6.374593 0.974052 +0.07076883 6.374593 0.974052 +0.1119241 6.374593 0.974052 +0.1475052 6.374593 0.974052 +0.1846606 6.374593 0.974052 +0.2245119 6.374593 0.974052 +0.2679612 6.374593 0.974052 +0.3158431 6.374593 0.974052 +0.3689944 6.374593 0.974052 +0.4282948 6.374593 0.974052 +0.494694 6.374593 0.974052 +0.5692344 6.374593 0.974052 +0.6530715 6.374593 0.974052 +0.7474945 6.374593 0.974052 +0.8539475 6.374593 0.974052 +0.974052 6.374593 0.974052 +1.113885 6.374593 0.974052 +1.27456 6.374593 0.974052 +1.458117 6.374593 0.974052 +1.667858 6.374593 0.974052 +1.907556 6.374593 0.974052 +2.181521 6.374593 0.974052 +2.494678 6.374593 0.974052 +2.852659 6.374593 0.974052 +3.261896 6.374593 0.974052 +3.729748 6.374593 0.974052 +4.264621 6.374593 0.974052 +4.876131 6.374593 0.974052 +5.575266 6.374593 0.974052 +6.374593 6.374593 0.974052 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0.002268731 1.113885 +0 0.002268731 1.113885 +0 0.002268731 1.113885 +0.002268731 0.002268731 1.113885 +0.07076883 0.002268731 1.113885 +0.1119241 0.002268731 1.113885 +0.1475052 0.002268731 1.113885 +0.1846606 0.002268731 1.113885 +0.2245119 0.002268731 1.113885 +0.2679612 0.002268731 1.113885 +0.3158431 0.002268731 1.113885 +0.3689944 0.002268731 1.113885 +0.4282948 0.002268731 1.113885 +0.494694 0.002268731 1.113885 +0.5692344 0.002268731 1.113885 +0.6530715 0.002268731 1.113885 +0.7474945 0.002268731 1.113885 +0.8539475 0.002268731 1.113885 +0.974052 0.002268731 1.113885 +1.113885 0.002268731 1.113885 +1.27456 0.002268731 1.113885 +1.458117 0.002268731 1.113885 +1.667858 0.002268731 1.113885 +1.907556 0.002268731 1.113885 +2.181521 0.002268731 1.113885 +2.494678 0.002268731 1.113885 +2.852659 0.002268731 1.113885 +3.261896 0.002268731 1.113885 +3.729748 0.002268731 1.113885 +4.264621 0.002268731 1.113885 +4.876131 0.002268731 1.113885 +5.575266 0.002268731 1.113885 +6.374593 0.002268731 1.113885 +0 0.07076883 1.113885 +0 0.07076883 1.113885 +0 0.07076883 1.113885 +0.002268731 0.07076883 1.113885 +0.07076883 0.07076883 1.113885 +0.1119241 0.07076883 1.113885 +0.1475052 0.07076883 1.113885 +0.1846606 0.07076883 1.113885 +0.2245119 0.07076883 1.113885 +0.2679612 0.07076883 1.113885 +0.3158431 0.07076883 1.113885 +0.3689944 0.07076883 1.113885 +0.4282948 0.07076883 1.113885 +0.494694 0.07076883 1.113885 +0.5692344 0.07076883 1.113885 +0.6530715 0.07076883 1.113885 +0.7474945 0.07076883 1.113885 +0.8539475 0.07076883 1.113885 +0.974052 0.07076883 1.113885 +1.113885 0.07076883 1.113885 +1.27456 0.07076883 1.113885 +1.458117 0.07076883 1.113885 +1.667858 0.07076883 1.113885 +1.907556 0.07076883 1.113885 +2.181521 0.07076883 1.113885 +2.494678 0.07076883 1.113885 +2.852659 0.07076883 1.113885 +3.261896 0.07076883 1.113885 +3.729748 0.07076883 1.113885 +4.264621 0.07076883 1.113885 +4.876131 0.07076883 1.113885 +5.575266 0.07076883 1.113885 +6.374593 0.07076883 1.113885 +0 0.1119241 1.113885 +0 0.1119241 1.113885 +0 0.1119241 1.113885 +0.002268731 0.1119241 1.113885 +0.07076883 0.1119241 1.113885 +0.1119241 0.1119241 1.113885 +0.1475052 0.1119241 1.113885 +0.1846606 0.1119241 1.113885 +0.2245119 0.1119241 1.113885 +0.2679612 0.1119241 1.113885 +0.3158431 0.1119241 1.113885 +0.3689944 0.1119241 1.113885 +0.4282948 0.1119241 1.113885 +0.494694 0.1119241 1.113885 +0.5692344 0.1119241 1.113885 +0.6530715 0.1119241 1.113885 +0.7474945 0.1119241 1.113885 +0.8539475 0.1119241 1.113885 +0.974052 0.1119241 1.113885 +1.113885 0.1119241 1.113885 +1.27456 0.1119241 1.113885 +1.458117 0.1119241 1.113885 +1.667858 0.1119241 1.113885 +1.907556 0.1119241 1.113885 +2.181521 0.1119241 1.113885 +2.494678 0.1119241 1.113885 +2.852659 0.1119241 1.113885 +3.261896 0.1119241 1.113885 +3.729748 0.1119241 1.113885 +4.264621 0.1119241 1.113885 +4.876131 0.1119241 1.113885 +5.575266 0.1119241 1.113885 +6.374593 0.1119241 1.113885 +0 0.1475052 1.113885 +0 0.1475052 1.113885 +0 0.1475052 1.113885 +0.002268731 0.1475052 1.113885 +0.07076883 0.1475052 1.113885 +0.1119241 0.1475052 1.113885 +0.1475052 0.1475052 1.113885 +0.1846606 0.1475052 1.113885 +0.2245119 0.1475052 1.113885 +0.2679612 0.1475052 1.113885 +0.3158431 0.1475052 1.113885 +0.3689944 0.1475052 1.113885 +0.4282948 0.1475052 1.113885 +0.494694 0.1475052 1.113885 +0.5692344 0.1475052 1.113885 +0.6530715 0.1475052 1.113885 +0.7474945 0.1475052 1.113885 +0.8539475 0.1475052 1.113885 +0.974052 0.1475052 1.113885 +1.113885 0.1475052 1.113885 +1.27456 0.1475052 1.113885 +1.458117 0.1475052 1.113885 +1.667858 0.1475052 1.113885 +1.907556 0.1475052 1.113885 +2.181521 0.1475052 1.113885 +2.494678 0.1475052 1.113885 +2.852659 0.1475052 1.113885 +3.261896 0.1475052 1.113885 +3.729748 0.1475052 1.113885 +4.264621 0.1475052 1.113885 +4.876131 0.1475052 1.113885 +5.575266 0.1475052 1.113885 +6.374593 0.1475052 1.113885 +0 0.1846606 1.113885 +0 0.1846606 1.113885 +0 0.1846606 1.113885 +0.002268731 0.1846606 1.113885 +0.07076883 0.1846606 1.113885 +0.1119241 0.1846606 1.113885 +0.1475052 0.1846606 1.113885 +0.1846606 0.1846606 1.113885 +0.2245119 0.1846606 1.113885 +0.2679612 0.1846606 1.113885 +0.3158431 0.1846606 1.113885 +0.3689944 0.1846606 1.113885 +0.4282948 0.1846606 1.113885 +0.494694 0.1846606 1.113885 +0.5692344 0.1846606 1.113885 +0.6530715 0.1846606 1.113885 +0.7474945 0.1846606 1.113885 +0.8539475 0.1846606 1.113885 +0.974052 0.1846606 1.113885 +1.113885 0.1846606 1.113885 +1.27456 0.1846606 1.113885 +1.458117 0.1846606 1.113885 +1.667858 0.1846606 1.113885 +1.907556 0.1846606 1.113885 +2.181521 0.1846606 1.113885 +2.494678 0.1846606 1.113885 +2.852659 0.1846606 1.113885 +3.261896 0.1846606 1.113885 +3.729748 0.1846606 1.113885 +4.264621 0.1846606 1.113885 +4.876131 0.1846606 1.113885 +5.575266 0.1846606 1.113885 +6.374593 0.1846606 1.113885 +0 0.2245119 1.113885 +0 0.2245119 1.113885 +0 0.2245119 1.113885 +0.002268731 0.2245119 1.113885 +0.07076883 0.2245119 1.113885 +0.1119241 0.2245119 1.113885 +0.1475052 0.2245119 1.113885 +0.1846606 0.2245119 1.113885 +0.2245119 0.2245119 1.113885 +0.2679612 0.2245119 1.113885 +0.3158431 0.2245119 1.113885 +0.3689944 0.2245119 1.113885 +0.4282948 0.2245119 1.113885 +0.494694 0.2245119 1.113885 +0.5692344 0.2245119 1.113885 +0.6530715 0.2245119 1.113885 +0.7474945 0.2245119 1.113885 +0.8539475 0.2245119 1.113885 +0.974052 0.2245119 1.113885 +1.113885 0.2245119 1.113885 +1.27456 0.2245119 1.113885 +1.458117 0.2245119 1.113885 +1.667858 0.2245119 1.113885 +1.907556 0.2245119 1.113885 +2.181521 0.2245119 1.113885 +2.494678 0.2245119 1.113885 +2.852659 0.2245119 1.113885 +3.261896 0.2245119 1.113885 +3.729748 0.2245119 1.113885 +4.264621 0.2245119 1.113885 +4.876131 0.2245119 1.113885 +5.575266 0.2245119 1.113885 +6.374593 0.2245119 1.113885 +0 0.2679612 1.113885 +0 0.2679612 1.113885 +0 0.2679612 1.113885 +0.002268731 0.2679612 1.113885 +0.07076883 0.2679612 1.113885 +0.1119241 0.2679612 1.113885 +0.1475052 0.2679612 1.113885 +0.1846606 0.2679612 1.113885 +0.2245119 0.2679612 1.113885 +0.2679612 0.2679612 1.113885 +0.3158431 0.2679612 1.113885 +0.3689944 0.2679612 1.113885 +0.4282948 0.2679612 1.113885 +0.494694 0.2679612 1.113885 +0.5692344 0.2679612 1.113885 +0.6530715 0.2679612 1.113885 +0.7474945 0.2679612 1.113885 +0.8539475 0.2679612 1.113885 +0.974052 0.2679612 1.113885 +1.113885 0.2679612 1.113885 +1.27456 0.2679612 1.113885 +1.458117 0.2679612 1.113885 +1.667858 0.2679612 1.113885 +1.907556 0.2679612 1.113885 +2.181521 0.2679612 1.113885 +2.494678 0.2679612 1.113885 +2.852659 0.2679612 1.113885 +3.261896 0.2679612 1.113885 +3.729748 0.2679612 1.113885 +4.264621 0.2679612 1.113885 +4.876131 0.2679612 1.113885 +5.575266 0.2679612 1.113885 +6.374593 0.2679612 1.113885 +0 0.3158431 1.113885 +0 0.3158431 1.113885 +0 0.3158431 1.113885 +0.002268731 0.3158431 1.113885 +0.07076883 0.3158431 1.113885 +0.1119241 0.3158431 1.113885 +0.1475052 0.3158431 1.113885 +0.1846606 0.3158431 1.113885 +0.2245119 0.3158431 1.113885 +0.2679612 0.3158431 1.113885 +0.3158431 0.3158431 1.113885 +0.3689944 0.3158431 1.113885 +0.4282948 0.3158431 1.113885 +0.494694 0.3158431 1.113885 +0.5692344 0.3158431 1.113885 +0.6530715 0.3158431 1.113885 +0.7474945 0.3158431 1.113885 +0.8539475 0.3158431 1.113885 +0.974052 0.3158431 1.113885 +1.113885 0.3158431 1.113885 +1.27456 0.3158431 1.113885 +1.458117 0.3158431 1.113885 +1.667858 0.3158431 1.113885 +1.907556 0.3158431 1.113885 +2.181521 0.3158431 1.113885 +2.494678 0.3158431 1.113885 +2.852659 0.3158431 1.113885 +3.261896 0.3158431 1.113885 +3.729748 0.3158431 1.113885 +4.264621 0.3158431 1.113885 +4.876131 0.3158431 1.113885 +5.575266 0.3158431 1.113885 +6.374593 0.3158431 1.113885 +0 0.3689944 1.113885 +0 0.3689944 1.113885 +0 0.3689944 1.113885 +0.002268731 0.3689944 1.113885 +0.07076883 0.3689944 1.113885 +0.1119241 0.3689944 1.113885 +0.1475052 0.3689944 1.113885 +0.1846606 0.3689944 1.113885 +0.2245119 0.3689944 1.113885 +0.2679612 0.3689944 1.113885 +0.3158431 0.3689944 1.113885 +0.3689944 0.3689944 1.113885 +0.4282948 0.3689944 1.113885 +0.494694 0.3689944 1.113885 +0.5692344 0.3689944 1.113885 +0.6530715 0.3689944 1.113885 +0.7474945 0.3689944 1.113885 +0.8539475 0.3689944 1.113885 +0.974052 0.3689944 1.113885 +1.113885 0.3689944 1.113885 +1.27456 0.3689944 1.113885 +1.458117 0.3689944 1.113885 +1.667858 0.3689944 1.113885 +1.907556 0.3689944 1.113885 +2.181521 0.3689944 1.113885 +2.494678 0.3689944 1.113885 +2.852659 0.3689944 1.113885 +3.261896 0.3689944 1.113885 +3.729748 0.3689944 1.113885 +4.264621 0.3689944 1.113885 +4.876131 0.3689944 1.113885 +5.575266 0.3689944 1.113885 +6.374593 0.3689944 1.113885 +0 0.4282948 1.113885 +0 0.4282948 1.113885 +0 0.4282948 1.113885 +0.002268731 0.4282948 1.113885 +0.07076883 0.4282948 1.113885 +0.1119241 0.4282948 1.113885 +0.1475052 0.4282948 1.113885 +0.1846606 0.4282948 1.113885 +0.2245119 0.4282948 1.113885 +0.2679612 0.4282948 1.113885 +0.3158431 0.4282948 1.113885 +0.3689944 0.4282948 1.113885 +0.4282948 0.4282948 1.113885 +0.494694 0.4282948 1.113885 +0.5692344 0.4282948 1.113885 +0.6530715 0.4282948 1.113885 +0.7474945 0.4282948 1.113885 +0.8539475 0.4282948 1.113885 +0.974052 0.4282948 1.113885 +1.113885 0.4282948 1.113885 +1.27456 0.4282948 1.113885 +1.458117 0.4282948 1.113885 +1.667858 0.4282948 1.113885 +1.907556 0.4282948 1.113885 +2.181521 0.4282948 1.113885 +2.494678 0.4282948 1.113885 +2.852659 0.4282948 1.113885 +3.261896 0.4282948 1.113885 +3.729748 0.4282948 1.113885 +4.264621 0.4282948 1.113885 +4.876131 0.4282948 1.113885 +5.575266 0.4282948 1.113885 +6.374593 0.4282948 1.113885 +0 0.494694 1.113885 +0 0.494694 1.113885 +0 0.494694 1.113885 +0.002268731 0.494694 1.113885 +0.07076883 0.494694 1.113885 +0.1119241 0.494694 1.113885 +0.1475052 0.494694 1.113885 +0.1846606 0.494694 1.113885 +0.2245119 0.494694 1.113885 +0.2679612 0.494694 1.113885 +0.3158431 0.494694 1.113885 +0.3689944 0.494694 1.113885 +0.4282948 0.494694 1.113885 +0.494694 0.494694 1.113885 +0.5692344 0.494694 1.113885 +0.6530715 0.494694 1.113885 +0.7474945 0.494694 1.113885 +0.8539475 0.494694 1.113885 +0.974052 0.494694 1.113885 +1.113885 0.494694 1.113885 +1.27456 0.494694 1.113885 +1.458117 0.494694 1.113885 +1.667858 0.494694 1.113885 +1.907556 0.494694 1.113885 +2.181521 0.494694 1.113885 +2.494678 0.494694 1.113885 +2.852659 0.494694 1.113885 +3.261896 0.494694 1.113885 +3.729748 0.494694 1.113885 +4.264621 0.494694 1.113885 +4.876131 0.494694 1.113885 +5.575266 0.494694 1.113885 +6.374593 0.494694 1.113885 +0 0.5692344 1.113885 +0 0.5692344 1.113885 +0 0.5692344 1.113885 +0.002268731 0.5692344 1.113885 +0.07076883 0.5692344 1.113885 +0.1119241 0.5692344 1.113885 +0.1475052 0.5692344 1.113885 +0.1846606 0.5692344 1.113885 +0.2245119 0.5692344 1.113885 +0.2679612 0.5692344 1.113885 +0.3158431 0.5692344 1.113885 +0.3689944 0.5692344 1.113885 +0.4282948 0.5692344 1.113885 +0.494694 0.5692344 1.113885 +0.5692344 0.5692344 1.113885 +0.6530715 0.5692344 1.113885 +0.7474945 0.5692344 1.113885 +0.8539475 0.5692344 1.113885 +0.974052 0.5692344 1.113885 +1.113885 0.5692344 1.113885 +1.27456 0.5692344 1.113885 +1.458117 0.5692344 1.113885 +1.667858 0.5692344 1.113885 +1.907556 0.5692344 1.113885 +2.181521 0.5692344 1.113885 +2.494678 0.5692344 1.113885 +2.852659 0.5692344 1.113885 +3.261896 0.5692344 1.113885 +3.729748 0.5692344 1.113885 +4.264621 0.5692344 1.113885 +4.876131 0.5692344 1.113885 +5.575266 0.5692344 1.113885 +6.374593 0.5692344 1.113885 +0 0.6530715 1.113885 +0 0.6530715 1.113885 +0 0.6530715 1.113885 +0.002268731 0.6530715 1.113885 +0.07076883 0.6530715 1.113885 +0.1119241 0.6530715 1.113885 +0.1475052 0.6530715 1.113885 +0.1846606 0.6530715 1.113885 +0.2245119 0.6530715 1.113885 +0.2679612 0.6530715 1.113885 +0.3158431 0.6530715 1.113885 +0.3689944 0.6530715 1.113885 +0.4282948 0.6530715 1.113885 +0.494694 0.6530715 1.113885 +0.5692344 0.6530715 1.113885 +0.6530715 0.6530715 1.113885 +0.7474945 0.6530715 1.113885 +0.8539475 0.6530715 1.113885 +0.974052 0.6530715 1.113885 +1.113885 0.6530715 1.113885 +1.27456 0.6530715 1.113885 +1.458117 0.6530715 1.113885 +1.667858 0.6530715 1.113885 +1.907556 0.6530715 1.113885 +2.181521 0.6530715 1.113885 +2.494678 0.6530715 1.113885 +2.852659 0.6530715 1.113885 +3.261896 0.6530715 1.113885 +3.729748 0.6530715 1.113885 +4.264621 0.6530715 1.113885 +4.876131 0.6530715 1.113885 +5.575266 0.6530715 1.113885 +6.374593 0.6530715 1.113885 +0 0.7474945 1.113885 +0 0.7474945 1.113885 +0 0.7474945 1.113885 +0.002268731 0.7474945 1.113885 +0.07076883 0.7474945 1.113885 +0.1119241 0.7474945 1.113885 +0.1475052 0.7474945 1.113885 +0.1846606 0.7474945 1.113885 +0.2245119 0.7474945 1.113885 +0.2679612 0.7474945 1.113885 +0.3158431 0.7474945 1.113885 +0.3689944 0.7474945 1.113885 +0.4282948 0.7474945 1.113885 +0.494694 0.7474945 1.113885 +0.5692344 0.7474945 1.113885 +0.6530715 0.7474945 1.113885 +0.7474945 0.7474945 1.113885 +0.8539475 0.7474945 1.113885 +0.974052 0.7474945 1.113885 +1.113885 0.7474945 1.113885 +1.27456 0.7474945 1.113885 +1.458117 0.7474945 1.113885 +1.667858 0.7474945 1.113885 +1.907556 0.7474945 1.113885 +2.181521 0.7474945 1.113885 +2.494678 0.7474945 1.113885 +2.852659 0.7474945 1.113885 +3.261896 0.7474945 1.113885 +3.729748 0.7474945 1.113885 +4.264621 0.7474945 1.113885 +4.876131 0.7474945 1.113885 +5.575266 0.7474945 1.113885 +6.374593 0.7474945 1.113885 +0 0.8539475 1.113885 +0 0.8539475 1.113885 +0 0.8539475 1.113885 +0.002268731 0.8539475 1.113885 +0.07076883 0.8539475 1.113885 +0.1119241 0.8539475 1.113885 +0.1475052 0.8539475 1.113885 +0.1846606 0.8539475 1.113885 +0.2245119 0.8539475 1.113885 +0.2679612 0.8539475 1.113885 +0.3158431 0.8539475 1.113885 +0.3689944 0.8539475 1.113885 +0.4282948 0.8539475 1.113885 +0.494694 0.8539475 1.113885 +0.5692344 0.8539475 1.113885 +0.6530715 0.8539475 1.113885 +0.7474945 0.8539475 1.113885 +0.8539475 0.8539475 1.113885 +0.974052 0.8539475 1.113885 +1.113885 0.8539475 1.113885 +1.27456 0.8539475 1.113885 +1.458117 0.8539475 1.113885 +1.667858 0.8539475 1.113885 +1.907556 0.8539475 1.113885 +2.181521 0.8539475 1.113885 +2.494678 0.8539475 1.113885 +2.852659 0.8539475 1.113885 +3.261896 0.8539475 1.113885 +3.729748 0.8539475 1.113885 +4.264621 0.8539475 1.113885 +4.876131 0.8539475 1.113885 +5.575266 0.8539475 1.113885 +6.374593 0.8539475 1.113885 +0 0.974052 1.113885 +0 0.974052 1.113885 +0 0.974052 1.113885 +0.002268731 0.974052 1.113885 +0.07076883 0.974052 1.113885 +0.1119241 0.974052 1.113885 +0.1475052 0.974052 1.113885 +0.1846606 0.974052 1.113885 +0.2245119 0.974052 1.113885 +0.2679612 0.974052 1.113885 +0.3158431 0.974052 1.113885 +0.3689944 0.974052 1.113885 +0.4282948 0.974052 1.113885 +0.494694 0.974052 1.113885 +0.5692344 0.974052 1.113885 +0.6530715 0.974052 1.113885 +0.7474945 0.974052 1.113885 +0.8539475 0.974052 1.113885 +0.974052 0.974052 1.113885 +1.113885 0.974052 1.113885 +1.27456 0.974052 1.113885 +1.458117 0.974052 1.113885 +1.667858 0.974052 1.113885 +1.907556 0.974052 1.113885 +2.181521 0.974052 1.113885 +2.494678 0.974052 1.113885 +2.852659 0.974052 1.113885 +3.261896 0.974052 1.113885 +3.729748 0.974052 1.113885 +4.264621 0.974052 1.113885 +4.876131 0.974052 1.113885 +5.575266 0.974052 1.113885 +6.374593 0.974052 1.113885 +0 1.113885 1.113885 +0 1.113885 1.113885 +0 1.113885 1.113885 +0.002268731 1.113885 1.113885 +0.07076883 1.113885 1.113885 +0.1119241 1.113885 1.113885 +0.1475052 1.113885 1.113885 +0.1846606 1.113885 1.113885 +0.2245119 1.113885 1.113885 +0.2679612 1.113885 1.113885 +0.3158431 1.113885 1.113885 +0.3689944 1.113885 1.113885 +0.4282948 1.113885 1.113885 +0.494694 1.113885 1.113885 +0.5692344 1.113885 1.113885 +0.6530715 1.113885 1.113885 +0.7474945 1.113885 1.113885 +0.8539475 1.113885 1.113885 +0.974052 1.113885 1.113885 +1.113885 1.113885 1.113885 +1.27456 1.113885 1.113885 +1.458117 1.113885 1.113885 +1.667858 1.113885 1.113885 +1.907556 1.113885 1.113885 +2.181521 1.113885 1.113885 +2.494678 1.113885 1.113885 +2.852659 1.113885 1.113885 +3.261896 1.113885 1.113885 +3.729748 1.113885 1.113885 +4.264621 1.113885 1.113885 +4.876131 1.113885 1.113885 +5.575266 1.113885 1.113885 +6.374593 1.113885 1.113885 +0 1.27456 1.113885 +0 1.27456 1.113885 +0 1.27456 1.113885 +0.002268731 1.27456 1.113885 +0.07076883 1.27456 1.113885 +0.1119241 1.27456 1.113885 +0.1475052 1.27456 1.113885 +0.1846606 1.27456 1.113885 +0.2245119 1.27456 1.113885 +0.2679612 1.27456 1.113885 +0.3158431 1.27456 1.113885 +0.3689944 1.27456 1.113885 +0.4282948 1.27456 1.113885 +0.494694 1.27456 1.113885 +0.5692344 1.27456 1.113885 +0.6530715 1.27456 1.113885 +0.7474945 1.27456 1.113885 +0.8539475 1.27456 1.113885 +0.974052 1.27456 1.113885 +1.113885 1.27456 1.113885 +1.27456 1.27456 1.113885 +1.458117 1.27456 1.113885 +1.667858 1.27456 1.113885 +1.907556 1.27456 1.113885 +2.181521 1.27456 1.113885 +2.494678 1.27456 1.113885 +2.852659 1.27456 1.113885 +3.261896 1.27456 1.113885 +3.729748 1.27456 1.113885 +4.264621 1.27456 1.113885 +4.876131 1.27456 1.113885 +5.575266 1.27456 1.113885 +6.374593 1.27456 1.113885 +0 1.458117 1.113885 +0 1.458117 1.113885 +0 1.458117 1.113885 +0.002268731 1.458117 1.113885 +0.07076883 1.458117 1.113885 +0.1119241 1.458117 1.113885 +0.1475052 1.458117 1.113885 +0.1846606 1.458117 1.113885 +0.2245119 1.458117 1.113885 +0.2679612 1.458117 1.113885 +0.3158431 1.458117 1.113885 +0.3689944 1.458117 1.113885 +0.4282948 1.458117 1.113885 +0.494694 1.458117 1.113885 +0.5692344 1.458117 1.113885 +0.6530715 1.458117 1.113885 +0.7474945 1.458117 1.113885 +0.8539475 1.458117 1.113885 +0.974052 1.458117 1.113885 +1.113885 1.458117 1.113885 +1.27456 1.458117 1.113885 +1.458117 1.458117 1.113885 +1.667858 1.458117 1.113885 +1.907556 1.458117 1.113885 +2.181521 1.458117 1.113885 +2.494678 1.458117 1.113885 +2.852659 1.458117 1.113885 +3.261896 1.458117 1.113885 +3.729748 1.458117 1.113885 +4.264621 1.458117 1.113885 +4.876131 1.458117 1.113885 +5.575266 1.458117 1.113885 +6.374593 1.458117 1.113885 +0 1.667858 1.113885 +0 1.667858 1.113885 +0 1.667858 1.113885 +0.002268731 1.667858 1.113885 +0.07076883 1.667858 1.113885 +0.1119241 1.667858 1.113885 +0.1475052 1.667858 1.113885 +0.1846606 1.667858 1.113885 +0.2245119 1.667858 1.113885 +0.2679612 1.667858 1.113885 +0.3158431 1.667858 1.113885 +0.3689944 1.667858 1.113885 +0.4282948 1.667858 1.113885 +0.494694 1.667858 1.113885 +0.5692344 1.667858 1.113885 +0.6530715 1.667858 1.113885 +0.7474945 1.667858 1.113885 +0.8539475 1.667858 1.113885 +0.974052 1.667858 1.113885 +1.113885 1.667858 1.113885 +1.27456 1.667858 1.113885 +1.458117 1.667858 1.113885 +1.667858 1.667858 1.113885 +1.907556 1.667858 1.113885 +2.181521 1.667858 1.113885 +2.494678 1.667858 1.113885 +2.852659 1.667858 1.113885 +3.261896 1.667858 1.113885 +3.729748 1.667858 1.113885 +4.264621 1.667858 1.113885 +4.876131 1.667858 1.113885 +5.575266 1.667858 1.113885 +6.374593 1.667858 1.113885 +0 1.907556 1.113885 +0 1.907556 1.113885 +0 1.907556 1.113885 +0.002268731 1.907556 1.113885 +0.07076883 1.907556 1.113885 +0.1119241 1.907556 1.113885 +0.1475052 1.907556 1.113885 +0.1846606 1.907556 1.113885 +0.2245119 1.907556 1.113885 +0.2679612 1.907556 1.113885 +0.3158431 1.907556 1.113885 +0.3689944 1.907556 1.113885 +0.4282948 1.907556 1.113885 +0.494694 1.907556 1.113885 +0.5692344 1.907556 1.113885 +0.6530715 1.907556 1.113885 +0.7474945 1.907556 1.113885 +0.8539475 1.907556 1.113885 +0.974052 1.907556 1.113885 +1.113885 1.907556 1.113885 +1.27456 1.907556 1.113885 +1.458117 1.907556 1.113885 +1.667858 1.907556 1.113885 +1.907556 1.907556 1.113885 +2.181521 1.907556 1.113885 +2.494678 1.907556 1.113885 +2.852659 1.907556 1.113885 +3.261896 1.907556 1.113885 +3.729748 1.907556 1.113885 +4.264621 1.907556 1.113885 +4.876131 1.907556 1.113885 +5.575266 1.907556 1.113885 +6.374593 1.907556 1.113885 +0 2.181521 1.113885 +0 2.181521 1.113885 +0 2.181521 1.113885 +0.002268731 2.181521 1.113885 +0.07076883 2.181521 1.113885 +0.1119241 2.181521 1.113885 +0.1475052 2.181521 1.113885 +0.1846606 2.181521 1.113885 +0.2245119 2.181521 1.113885 +0.2679612 2.181521 1.113885 +0.3158431 2.181521 1.113885 +0.3689944 2.181521 1.113885 +0.4282948 2.181521 1.113885 +0.494694 2.181521 1.113885 +0.5692344 2.181521 1.113885 +0.6530715 2.181521 1.113885 +0.7474945 2.181521 1.113885 +0.8539475 2.181521 1.113885 +0.974052 2.181521 1.113885 +1.113885 2.181521 1.113885 +1.27456 2.181521 1.113885 +1.458117 2.181521 1.113885 +1.667858 2.181521 1.113885 +1.907556 2.181521 1.113885 +2.181521 2.181521 1.113885 +2.494678 2.181521 1.113885 +2.852659 2.181521 1.113885 +3.261896 2.181521 1.113885 +3.729748 2.181521 1.113885 +4.264621 2.181521 1.113885 +4.876131 2.181521 1.113885 +5.575266 2.181521 1.113885 +6.374593 2.181521 1.113885 +0 2.494678 1.113885 +0 2.494678 1.113885 +0 2.494678 1.113885 +0.002268731 2.494678 1.113885 +0.07076883 2.494678 1.113885 +0.1119241 2.494678 1.113885 +0.1475052 2.494678 1.113885 +0.1846606 2.494678 1.113885 +0.2245119 2.494678 1.113885 +0.2679612 2.494678 1.113885 +0.3158431 2.494678 1.113885 +0.3689944 2.494678 1.113885 +0.4282948 2.494678 1.113885 +0.494694 2.494678 1.113885 +0.5692344 2.494678 1.113885 +0.6530715 2.494678 1.113885 +0.7474945 2.494678 1.113885 +0.8539475 2.494678 1.113885 +0.974052 2.494678 1.113885 +1.113885 2.494678 1.113885 +1.27456 2.494678 1.113885 +1.458117 2.494678 1.113885 +1.667858 2.494678 1.113885 +1.907556 2.494678 1.113885 +2.181521 2.494678 1.113885 +2.494678 2.494678 1.113885 +2.852659 2.494678 1.113885 +3.261896 2.494678 1.113885 +3.729748 2.494678 1.113885 +4.264621 2.494678 1.113885 +4.876131 2.494678 1.113885 +5.575266 2.494678 1.113885 +6.374593 2.494678 1.113885 +0 2.852659 1.113885 +0 2.852659 1.113885 +0 2.852659 1.113885 +0.002268731 2.852659 1.113885 +0.07076883 2.852659 1.113885 +0.1119241 2.852659 1.113885 +0.1475052 2.852659 1.113885 +0.1846606 2.852659 1.113885 +0.2245119 2.852659 1.113885 +0.2679612 2.852659 1.113885 +0.3158431 2.852659 1.113885 +0.3689944 2.852659 1.113885 +0.4282948 2.852659 1.113885 +0.494694 2.852659 1.113885 +0.5692344 2.852659 1.113885 +0.6530715 2.852659 1.113885 +0.7474945 2.852659 1.113885 +0.8539475 2.852659 1.113885 +0.974052 2.852659 1.113885 +1.113885 2.852659 1.113885 +1.27456 2.852659 1.113885 +1.458117 2.852659 1.113885 +1.667858 2.852659 1.113885 +1.907556 2.852659 1.113885 +2.181521 2.852659 1.113885 +2.494678 2.852659 1.113885 +2.852659 2.852659 1.113885 +3.261896 2.852659 1.113885 +3.729748 2.852659 1.113885 +4.264621 2.852659 1.113885 +4.876131 2.852659 1.113885 +5.575266 2.852659 1.113885 +6.374593 2.852659 1.113885 +0 3.261896 1.113885 +0 3.261896 1.113885 +0 3.261896 1.113885 +0.002268731 3.261896 1.113885 +0.07076883 3.261896 1.113885 +0.1119241 3.261896 1.113885 +0.1475052 3.261896 1.113885 +0.1846606 3.261896 1.113885 +0.2245119 3.261896 1.113885 +0.2679612 3.261896 1.113885 +0.3158431 3.261896 1.113885 +0.3689944 3.261896 1.113885 +0.4282948 3.261896 1.113885 +0.494694 3.261896 1.113885 +0.5692344 3.261896 1.113885 +0.6530715 3.261896 1.113885 +0.7474945 3.261896 1.113885 +0.8539475 3.261896 1.113885 +0.974052 3.261896 1.113885 +1.113885 3.261896 1.113885 +1.27456 3.261896 1.113885 +1.458117 3.261896 1.113885 +1.667858 3.261896 1.113885 +1.907556 3.261896 1.113885 +2.181521 3.261896 1.113885 +2.494678 3.261896 1.113885 +2.852659 3.261896 1.113885 +3.261896 3.261896 1.113885 +3.729748 3.261896 1.113885 +4.264621 3.261896 1.113885 +4.876131 3.261896 1.113885 +5.575266 3.261896 1.113885 +6.374593 3.261896 1.113885 +0 3.729748 1.113885 +0 3.729748 1.113885 +0 3.729748 1.113885 +0.002268731 3.729748 1.113885 +0.07076883 3.729748 1.113885 +0.1119241 3.729748 1.113885 +0.1475052 3.729748 1.113885 +0.1846606 3.729748 1.113885 +0.2245119 3.729748 1.113885 +0.2679612 3.729748 1.113885 +0.3158431 3.729748 1.113885 +0.3689944 3.729748 1.113885 +0.4282948 3.729748 1.113885 +0.494694 3.729748 1.113885 +0.5692344 3.729748 1.113885 +0.6530715 3.729748 1.113885 +0.7474945 3.729748 1.113885 +0.8539475 3.729748 1.113885 +0.974052 3.729748 1.113885 +1.113885 3.729748 1.113885 +1.27456 3.729748 1.113885 +1.458117 3.729748 1.113885 +1.667858 3.729748 1.113885 +1.907556 3.729748 1.113885 +2.181521 3.729748 1.113885 +2.494678 3.729748 1.113885 +2.852659 3.729748 1.113885 +3.261896 3.729748 1.113885 +3.729748 3.729748 1.113885 +4.264621 3.729748 1.113885 +4.876131 3.729748 1.113885 +5.575266 3.729748 1.113885 +6.374593 3.729748 1.113885 +0 4.264621 1.113885 +0 4.264621 1.113885 +0 4.264621 1.113885 +0.002268731 4.264621 1.113885 +0.07076883 4.264621 1.113885 +0.1119241 4.264621 1.113885 +0.1475052 4.264621 1.113885 +0.1846606 4.264621 1.113885 +0.2245119 4.264621 1.113885 +0.2679612 4.264621 1.113885 +0.3158431 4.264621 1.113885 +0.3689944 4.264621 1.113885 +0.4282948 4.264621 1.113885 +0.494694 4.264621 1.113885 +0.5692344 4.264621 1.113885 +0.6530715 4.264621 1.113885 +0.7474945 4.264621 1.113885 +0.8539475 4.264621 1.113885 +0.974052 4.264621 1.113885 +1.113885 4.264621 1.113885 +1.27456 4.264621 1.113885 +1.458117 4.264621 1.113885 +1.667858 4.264621 1.113885 +1.907556 4.264621 1.113885 +2.181521 4.264621 1.113885 +2.494678 4.264621 1.113885 +2.852659 4.264621 1.113885 +3.261896 4.264621 1.113885 +3.729748 4.264621 1.113885 +4.264621 4.264621 1.113885 +4.876131 4.264621 1.113885 +5.575266 4.264621 1.113885 +6.374593 4.264621 1.113885 +0 4.876131 1.113885 +0 4.876131 1.113885 +0 4.876131 1.113885 +0.002268731 4.876131 1.113885 +0.07076883 4.876131 1.113885 +0.1119241 4.876131 1.113885 +0.1475052 4.876131 1.113885 +0.1846606 4.876131 1.113885 +0.2245119 4.876131 1.113885 +0.2679612 4.876131 1.113885 +0.3158431 4.876131 1.113885 +0.3689944 4.876131 1.113885 +0.4282948 4.876131 1.113885 +0.494694 4.876131 1.113885 +0.5692344 4.876131 1.113885 +0.6530715 4.876131 1.113885 +0.7474945 4.876131 1.113885 +0.8539475 4.876131 1.113885 +0.974052 4.876131 1.113885 +1.113885 4.876131 1.113885 +1.27456 4.876131 1.113885 +1.458117 4.876131 1.113885 +1.667858 4.876131 1.113885 +1.907556 4.876131 1.113885 +2.181521 4.876131 1.113885 +2.494678 4.876131 1.113885 +2.852659 4.876131 1.113885 +3.261896 4.876131 1.113885 +3.729748 4.876131 1.113885 +4.264621 4.876131 1.113885 +4.876131 4.876131 1.113885 +5.575266 4.876131 1.113885 +6.374593 4.876131 1.113885 +0 5.575266 1.113885 +0 5.575266 1.113885 +0 5.575266 1.113885 +0.002268731 5.575266 1.113885 +0.07076883 5.575266 1.113885 +0.1119241 5.575266 1.113885 +0.1475052 5.575266 1.113885 +0.1846606 5.575266 1.113885 +0.2245119 5.575266 1.113885 +0.2679612 5.575266 1.113885 +0.3158431 5.575266 1.113885 +0.3689944 5.575266 1.113885 +0.4282948 5.575266 1.113885 +0.494694 5.575266 1.113885 +0.5692344 5.575266 1.113885 +0.6530715 5.575266 1.113885 +0.7474945 5.575266 1.113885 +0.8539475 5.575266 1.113885 +0.974052 5.575266 1.113885 +1.113885 5.575266 1.113885 +1.27456 5.575266 1.113885 +1.458117 5.575266 1.113885 +1.667858 5.575266 1.113885 +1.907556 5.575266 1.113885 +2.181521 5.575266 1.113885 +2.494678 5.575266 1.113885 +2.852659 5.575266 1.113885 +3.261896 5.575266 1.113885 +3.729748 5.575266 1.113885 +4.264621 5.575266 1.113885 +4.876131 5.575266 1.113885 +5.575266 5.575266 1.113885 +6.374593 5.575266 1.113885 +0 6.374593 1.113885 +0 6.374593 1.113885 +0 6.374593 1.113885 +0.002268731 6.374593 1.113885 +0.07076883 6.374593 1.113885 +0.1119241 6.374593 1.113885 +0.1475052 6.374593 1.113885 +0.1846606 6.374593 1.113885 +0.2245119 6.374593 1.113885 +0.2679612 6.374593 1.113885 +0.3158431 6.374593 1.113885 +0.3689944 6.374593 1.113885 +0.4282948 6.374593 1.113885 +0.494694 6.374593 1.113885 +0.5692344 6.374593 1.113885 +0.6530715 6.374593 1.113885 +0.7474945 6.374593 1.113885 +0.8539475 6.374593 1.113885 +0.974052 6.374593 1.113885 +1.113885 6.374593 1.113885 +1.27456 6.374593 1.113885 +1.458117 6.374593 1.113885 +1.667858 6.374593 1.113885 +1.907556 6.374593 1.113885 +2.181521 6.374593 1.113885 +2.494678 6.374593 1.113885 +2.852659 6.374593 1.113885 +3.261896 6.374593 1.113885 +3.729748 6.374593 1.113885 +4.264621 6.374593 1.113885 +4.876131 6.374593 1.113885 +5.575266 6.374593 1.113885 +6.374593 6.374593 1.113885 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0.002268731 1.27456 +0 0.002268731 1.27456 +0 0.002268731 1.27456 +0.002268731 0.002268731 1.27456 +0.07076883 0.002268731 1.27456 +0.1119241 0.002268731 1.27456 +0.1475052 0.002268731 1.27456 +0.1846606 0.002268731 1.27456 +0.2245119 0.002268731 1.27456 +0.2679612 0.002268731 1.27456 +0.3158431 0.002268731 1.27456 +0.3689944 0.002268731 1.27456 +0.4282948 0.002268731 1.27456 +0.494694 0.002268731 1.27456 +0.5692344 0.002268731 1.27456 +0.6530715 0.002268731 1.27456 +0.7474945 0.002268731 1.27456 +0.8539475 0.002268731 1.27456 +0.974052 0.002268731 1.27456 +1.113885 0.002268731 1.27456 +1.27456 0.002268731 1.27456 +1.458117 0.002268731 1.27456 +1.667858 0.002268731 1.27456 +1.907556 0.002268731 1.27456 +2.181521 0.002268731 1.27456 +2.494678 0.002268731 1.27456 +2.852659 0.002268731 1.27456 +3.261896 0.002268731 1.27456 +3.729748 0.002268731 1.27456 +4.264621 0.002268731 1.27456 +4.876131 0.002268731 1.27456 +5.575266 0.002268731 1.27456 +6.374593 0.002268731 1.27456 +0 0.07076883 1.27456 +0 0.07076883 1.27456 +0 0.07076883 1.27456 +0.002268731 0.07076883 1.27456 +0.07076883 0.07076883 1.27456 +0.1119241 0.07076883 1.27456 +0.1475052 0.07076883 1.27456 +0.1846606 0.07076883 1.27456 +0.2245119 0.07076883 1.27456 +0.2679612 0.07076883 1.27456 +0.3158431 0.07076883 1.27456 +0.3689944 0.07076883 1.27456 +0.4282948 0.07076883 1.27456 +0.494694 0.07076883 1.27456 +0.5692344 0.07076883 1.27456 +0.6530715 0.07076883 1.27456 +0.7474945 0.07076883 1.27456 +0.8539475 0.07076883 1.27456 +0.974052 0.07076883 1.27456 +1.113885 0.07076883 1.27456 +1.27456 0.07076883 1.27456 +1.458117 0.07076883 1.27456 +1.667858 0.07076883 1.27456 +1.907556 0.07076883 1.27456 +2.181521 0.07076883 1.27456 +2.494678 0.07076883 1.27456 +2.852659 0.07076883 1.27456 +3.261896 0.07076883 1.27456 +3.729748 0.07076883 1.27456 +4.264621 0.07076883 1.27456 +4.876131 0.07076883 1.27456 +5.575266 0.07076883 1.27456 +6.374593 0.07076883 1.27456 +0 0.1119241 1.27456 +0 0.1119241 1.27456 +0 0.1119241 1.27456 +0.002268731 0.1119241 1.27456 +0.07076883 0.1119241 1.27456 +0.1119241 0.1119241 1.27456 +0.1475052 0.1119241 1.27456 +0.1846606 0.1119241 1.27456 +0.2245119 0.1119241 1.27456 +0.2679612 0.1119241 1.27456 +0.3158431 0.1119241 1.27456 +0.3689944 0.1119241 1.27456 +0.4282948 0.1119241 1.27456 +0.494694 0.1119241 1.27456 +0.5692344 0.1119241 1.27456 +0.6530715 0.1119241 1.27456 +0.7474945 0.1119241 1.27456 +0.8539475 0.1119241 1.27456 +0.974052 0.1119241 1.27456 +1.113885 0.1119241 1.27456 +1.27456 0.1119241 1.27456 +1.458117 0.1119241 1.27456 +1.667858 0.1119241 1.27456 +1.907556 0.1119241 1.27456 +2.181521 0.1119241 1.27456 +2.494678 0.1119241 1.27456 +2.852659 0.1119241 1.27456 +3.261896 0.1119241 1.27456 +3.729748 0.1119241 1.27456 +4.264621 0.1119241 1.27456 +4.876131 0.1119241 1.27456 +5.575266 0.1119241 1.27456 +6.374593 0.1119241 1.27456 +0 0.1475052 1.27456 +0 0.1475052 1.27456 +0 0.1475052 1.27456 +0.002268731 0.1475052 1.27456 +0.07076883 0.1475052 1.27456 +0.1119241 0.1475052 1.27456 +0.1475052 0.1475052 1.27456 +0.1846606 0.1475052 1.27456 +0.2245119 0.1475052 1.27456 +0.2679612 0.1475052 1.27456 +0.3158431 0.1475052 1.27456 +0.3689944 0.1475052 1.27456 +0.4282948 0.1475052 1.27456 +0.494694 0.1475052 1.27456 +0.5692344 0.1475052 1.27456 +0.6530715 0.1475052 1.27456 +0.7474945 0.1475052 1.27456 +0.8539475 0.1475052 1.27456 +0.974052 0.1475052 1.27456 +1.113885 0.1475052 1.27456 +1.27456 0.1475052 1.27456 +1.458117 0.1475052 1.27456 +1.667858 0.1475052 1.27456 +1.907556 0.1475052 1.27456 +2.181521 0.1475052 1.27456 +2.494678 0.1475052 1.27456 +2.852659 0.1475052 1.27456 +3.261896 0.1475052 1.27456 +3.729748 0.1475052 1.27456 +4.264621 0.1475052 1.27456 +4.876131 0.1475052 1.27456 +5.575266 0.1475052 1.27456 +6.374593 0.1475052 1.27456 +0 0.1846606 1.27456 +0 0.1846606 1.27456 +0 0.1846606 1.27456 +0.002268731 0.1846606 1.27456 +0.07076883 0.1846606 1.27456 +0.1119241 0.1846606 1.27456 +0.1475052 0.1846606 1.27456 +0.1846606 0.1846606 1.27456 +0.2245119 0.1846606 1.27456 +0.2679612 0.1846606 1.27456 +0.3158431 0.1846606 1.27456 +0.3689944 0.1846606 1.27456 +0.4282948 0.1846606 1.27456 +0.494694 0.1846606 1.27456 +0.5692344 0.1846606 1.27456 +0.6530715 0.1846606 1.27456 +0.7474945 0.1846606 1.27456 +0.8539475 0.1846606 1.27456 +0.974052 0.1846606 1.27456 +1.113885 0.1846606 1.27456 +1.27456 0.1846606 1.27456 +1.458117 0.1846606 1.27456 +1.667858 0.1846606 1.27456 +1.907556 0.1846606 1.27456 +2.181521 0.1846606 1.27456 +2.494678 0.1846606 1.27456 +2.852659 0.1846606 1.27456 +3.261896 0.1846606 1.27456 +3.729748 0.1846606 1.27456 +4.264621 0.1846606 1.27456 +4.876131 0.1846606 1.27456 +5.575266 0.1846606 1.27456 +6.374593 0.1846606 1.27456 +0 0.2245119 1.27456 +0 0.2245119 1.27456 +0 0.2245119 1.27456 +0.002268731 0.2245119 1.27456 +0.07076883 0.2245119 1.27456 +0.1119241 0.2245119 1.27456 +0.1475052 0.2245119 1.27456 +0.1846606 0.2245119 1.27456 +0.2245119 0.2245119 1.27456 +0.2679612 0.2245119 1.27456 +0.3158431 0.2245119 1.27456 +0.3689944 0.2245119 1.27456 +0.4282948 0.2245119 1.27456 +0.494694 0.2245119 1.27456 +0.5692344 0.2245119 1.27456 +0.6530715 0.2245119 1.27456 +0.7474945 0.2245119 1.27456 +0.8539475 0.2245119 1.27456 +0.974052 0.2245119 1.27456 +1.113885 0.2245119 1.27456 +1.27456 0.2245119 1.27456 +1.458117 0.2245119 1.27456 +1.667858 0.2245119 1.27456 +1.907556 0.2245119 1.27456 +2.181521 0.2245119 1.27456 +2.494678 0.2245119 1.27456 +2.852659 0.2245119 1.27456 +3.261896 0.2245119 1.27456 +3.729748 0.2245119 1.27456 +4.264621 0.2245119 1.27456 +4.876131 0.2245119 1.27456 +5.575266 0.2245119 1.27456 +6.374593 0.2245119 1.27456 +0 0.2679612 1.27456 +0 0.2679612 1.27456 +0 0.2679612 1.27456 +0.002268731 0.2679612 1.27456 +0.07076883 0.2679612 1.27456 +0.1119241 0.2679612 1.27456 +0.1475052 0.2679612 1.27456 +0.1846606 0.2679612 1.27456 +0.2245119 0.2679612 1.27456 +0.2679612 0.2679612 1.27456 +0.3158431 0.2679612 1.27456 +0.3689944 0.2679612 1.27456 +0.4282948 0.2679612 1.27456 +0.494694 0.2679612 1.27456 +0.5692344 0.2679612 1.27456 +0.6530715 0.2679612 1.27456 +0.7474945 0.2679612 1.27456 +0.8539475 0.2679612 1.27456 +0.974052 0.2679612 1.27456 +1.113885 0.2679612 1.27456 +1.27456 0.2679612 1.27456 +1.458117 0.2679612 1.27456 +1.667858 0.2679612 1.27456 +1.907556 0.2679612 1.27456 +2.181521 0.2679612 1.27456 +2.494678 0.2679612 1.27456 +2.852659 0.2679612 1.27456 +3.261896 0.2679612 1.27456 +3.729748 0.2679612 1.27456 +4.264621 0.2679612 1.27456 +4.876131 0.2679612 1.27456 +5.575266 0.2679612 1.27456 +6.374593 0.2679612 1.27456 +0 0.3158431 1.27456 +0 0.3158431 1.27456 +0 0.3158431 1.27456 +0.002268731 0.3158431 1.27456 +0.07076883 0.3158431 1.27456 +0.1119241 0.3158431 1.27456 +0.1475052 0.3158431 1.27456 +0.1846606 0.3158431 1.27456 +0.2245119 0.3158431 1.27456 +0.2679612 0.3158431 1.27456 +0.3158431 0.3158431 1.27456 +0.3689944 0.3158431 1.27456 +0.4282948 0.3158431 1.27456 +0.494694 0.3158431 1.27456 +0.5692344 0.3158431 1.27456 +0.6530715 0.3158431 1.27456 +0.7474945 0.3158431 1.27456 +0.8539475 0.3158431 1.27456 +0.974052 0.3158431 1.27456 +1.113885 0.3158431 1.27456 +1.27456 0.3158431 1.27456 +1.458117 0.3158431 1.27456 +1.667858 0.3158431 1.27456 +1.907556 0.3158431 1.27456 +2.181521 0.3158431 1.27456 +2.494678 0.3158431 1.27456 +2.852659 0.3158431 1.27456 +3.261896 0.3158431 1.27456 +3.729748 0.3158431 1.27456 +4.264621 0.3158431 1.27456 +4.876131 0.3158431 1.27456 +5.575266 0.3158431 1.27456 +6.374593 0.3158431 1.27456 +0 0.3689944 1.27456 +0 0.3689944 1.27456 +0 0.3689944 1.27456 +0.002268731 0.3689944 1.27456 +0.07076883 0.3689944 1.27456 +0.1119241 0.3689944 1.27456 +0.1475052 0.3689944 1.27456 +0.1846606 0.3689944 1.27456 +0.2245119 0.3689944 1.27456 +0.2679612 0.3689944 1.27456 +0.3158431 0.3689944 1.27456 +0.3689944 0.3689944 1.27456 +0.4282948 0.3689944 1.27456 +0.494694 0.3689944 1.27456 +0.5692344 0.3689944 1.27456 +0.6530715 0.3689944 1.27456 +0.7474945 0.3689944 1.27456 +0.8539475 0.3689944 1.27456 +0.974052 0.3689944 1.27456 +1.113885 0.3689944 1.27456 +1.27456 0.3689944 1.27456 +1.458117 0.3689944 1.27456 +1.667858 0.3689944 1.27456 +1.907556 0.3689944 1.27456 +2.181521 0.3689944 1.27456 +2.494678 0.3689944 1.27456 +2.852659 0.3689944 1.27456 +3.261896 0.3689944 1.27456 +3.729748 0.3689944 1.27456 +4.264621 0.3689944 1.27456 +4.876131 0.3689944 1.27456 +5.575266 0.3689944 1.27456 +6.374593 0.3689944 1.27456 +0 0.4282948 1.27456 +0 0.4282948 1.27456 +0 0.4282948 1.27456 +0.002268731 0.4282948 1.27456 +0.07076883 0.4282948 1.27456 +0.1119241 0.4282948 1.27456 +0.1475052 0.4282948 1.27456 +0.1846606 0.4282948 1.27456 +0.2245119 0.4282948 1.27456 +0.2679612 0.4282948 1.27456 +0.3158431 0.4282948 1.27456 +0.3689944 0.4282948 1.27456 +0.4282948 0.4282948 1.27456 +0.494694 0.4282948 1.27456 +0.5692344 0.4282948 1.27456 +0.6530715 0.4282948 1.27456 +0.7474945 0.4282948 1.27456 +0.8539475 0.4282948 1.27456 +0.974052 0.4282948 1.27456 +1.113885 0.4282948 1.27456 +1.27456 0.4282948 1.27456 +1.458117 0.4282948 1.27456 +1.667858 0.4282948 1.27456 +1.907556 0.4282948 1.27456 +2.181521 0.4282948 1.27456 +2.494678 0.4282948 1.27456 +2.852659 0.4282948 1.27456 +3.261896 0.4282948 1.27456 +3.729748 0.4282948 1.27456 +4.264621 0.4282948 1.27456 +4.876131 0.4282948 1.27456 +5.575266 0.4282948 1.27456 +6.374593 0.4282948 1.27456 +0 0.494694 1.27456 +0 0.494694 1.27456 +0 0.494694 1.27456 +0.002268731 0.494694 1.27456 +0.07076883 0.494694 1.27456 +0.1119241 0.494694 1.27456 +0.1475052 0.494694 1.27456 +0.1846606 0.494694 1.27456 +0.2245119 0.494694 1.27456 +0.2679612 0.494694 1.27456 +0.3158431 0.494694 1.27456 +0.3689944 0.494694 1.27456 +0.4282948 0.494694 1.27456 +0.494694 0.494694 1.27456 +0.5692344 0.494694 1.27456 +0.6530715 0.494694 1.27456 +0.7474945 0.494694 1.27456 +0.8539475 0.494694 1.27456 +0.974052 0.494694 1.27456 +1.113885 0.494694 1.27456 +1.27456 0.494694 1.27456 +1.458117 0.494694 1.27456 +1.667858 0.494694 1.27456 +1.907556 0.494694 1.27456 +2.181521 0.494694 1.27456 +2.494678 0.494694 1.27456 +2.852659 0.494694 1.27456 +3.261896 0.494694 1.27456 +3.729748 0.494694 1.27456 +4.264621 0.494694 1.27456 +4.876131 0.494694 1.27456 +5.575266 0.494694 1.27456 +6.374593 0.494694 1.27456 +0 0.5692344 1.27456 +0 0.5692344 1.27456 +0 0.5692344 1.27456 +0.002268731 0.5692344 1.27456 +0.07076883 0.5692344 1.27456 +0.1119241 0.5692344 1.27456 +0.1475052 0.5692344 1.27456 +0.1846606 0.5692344 1.27456 +0.2245119 0.5692344 1.27456 +0.2679612 0.5692344 1.27456 +0.3158431 0.5692344 1.27456 +0.3689944 0.5692344 1.27456 +0.4282948 0.5692344 1.27456 +0.494694 0.5692344 1.27456 +0.5692344 0.5692344 1.27456 +0.6530715 0.5692344 1.27456 +0.7474945 0.5692344 1.27456 +0.8539475 0.5692344 1.27456 +0.974052 0.5692344 1.27456 +1.113885 0.5692344 1.27456 +1.27456 0.5692344 1.27456 +1.458117 0.5692344 1.27456 +1.667858 0.5692344 1.27456 +1.907556 0.5692344 1.27456 +2.181521 0.5692344 1.27456 +2.494678 0.5692344 1.27456 +2.852659 0.5692344 1.27456 +3.261896 0.5692344 1.27456 +3.729748 0.5692344 1.27456 +4.264621 0.5692344 1.27456 +4.876131 0.5692344 1.27456 +5.575266 0.5692344 1.27456 +6.374593 0.5692344 1.27456 +0 0.6530715 1.27456 +0 0.6530715 1.27456 +0 0.6530715 1.27456 +0.002268731 0.6530715 1.27456 +0.07076883 0.6530715 1.27456 +0.1119241 0.6530715 1.27456 +0.1475052 0.6530715 1.27456 +0.1846606 0.6530715 1.27456 +0.2245119 0.6530715 1.27456 +0.2679612 0.6530715 1.27456 +0.3158431 0.6530715 1.27456 +0.3689944 0.6530715 1.27456 +0.4282948 0.6530715 1.27456 +0.494694 0.6530715 1.27456 +0.5692344 0.6530715 1.27456 +0.6530715 0.6530715 1.27456 +0.7474945 0.6530715 1.27456 +0.8539475 0.6530715 1.27456 +0.974052 0.6530715 1.27456 +1.113885 0.6530715 1.27456 +1.27456 0.6530715 1.27456 +1.458117 0.6530715 1.27456 +1.667858 0.6530715 1.27456 +1.907556 0.6530715 1.27456 +2.181521 0.6530715 1.27456 +2.494678 0.6530715 1.27456 +2.852659 0.6530715 1.27456 +3.261896 0.6530715 1.27456 +3.729748 0.6530715 1.27456 +4.264621 0.6530715 1.27456 +4.876131 0.6530715 1.27456 +5.575266 0.6530715 1.27456 +6.374593 0.6530715 1.27456 +0 0.7474945 1.27456 +0 0.7474945 1.27456 +0 0.7474945 1.27456 +0.002268731 0.7474945 1.27456 +0.07076883 0.7474945 1.27456 +0.1119241 0.7474945 1.27456 +0.1475052 0.7474945 1.27456 +0.1846606 0.7474945 1.27456 +0.2245119 0.7474945 1.27456 +0.2679612 0.7474945 1.27456 +0.3158431 0.7474945 1.27456 +0.3689944 0.7474945 1.27456 +0.4282948 0.7474945 1.27456 +0.494694 0.7474945 1.27456 +0.5692344 0.7474945 1.27456 +0.6530715 0.7474945 1.27456 +0.7474945 0.7474945 1.27456 +0.8539475 0.7474945 1.27456 +0.974052 0.7474945 1.27456 +1.113885 0.7474945 1.27456 +1.27456 0.7474945 1.27456 +1.458117 0.7474945 1.27456 +1.667858 0.7474945 1.27456 +1.907556 0.7474945 1.27456 +2.181521 0.7474945 1.27456 +2.494678 0.7474945 1.27456 +2.852659 0.7474945 1.27456 +3.261896 0.7474945 1.27456 +3.729748 0.7474945 1.27456 +4.264621 0.7474945 1.27456 +4.876131 0.7474945 1.27456 +5.575266 0.7474945 1.27456 +6.374593 0.7474945 1.27456 +0 0.8539475 1.27456 +0 0.8539475 1.27456 +0 0.8539475 1.27456 +0.002268731 0.8539475 1.27456 +0.07076883 0.8539475 1.27456 +0.1119241 0.8539475 1.27456 +0.1475052 0.8539475 1.27456 +0.1846606 0.8539475 1.27456 +0.2245119 0.8539475 1.27456 +0.2679612 0.8539475 1.27456 +0.3158431 0.8539475 1.27456 +0.3689944 0.8539475 1.27456 +0.4282948 0.8539475 1.27456 +0.494694 0.8539475 1.27456 +0.5692344 0.8539475 1.27456 +0.6530715 0.8539475 1.27456 +0.7474945 0.8539475 1.27456 +0.8539475 0.8539475 1.27456 +0.974052 0.8539475 1.27456 +1.113885 0.8539475 1.27456 +1.27456 0.8539475 1.27456 +1.458117 0.8539475 1.27456 +1.667858 0.8539475 1.27456 +1.907556 0.8539475 1.27456 +2.181521 0.8539475 1.27456 +2.494678 0.8539475 1.27456 +2.852659 0.8539475 1.27456 +3.261896 0.8539475 1.27456 +3.729748 0.8539475 1.27456 +4.264621 0.8539475 1.27456 +4.876131 0.8539475 1.27456 +5.575266 0.8539475 1.27456 +6.374593 0.8539475 1.27456 +0 0.974052 1.27456 +0 0.974052 1.27456 +0 0.974052 1.27456 +0.002268731 0.974052 1.27456 +0.07076883 0.974052 1.27456 +0.1119241 0.974052 1.27456 +0.1475052 0.974052 1.27456 +0.1846606 0.974052 1.27456 +0.2245119 0.974052 1.27456 +0.2679612 0.974052 1.27456 +0.3158431 0.974052 1.27456 +0.3689944 0.974052 1.27456 +0.4282948 0.974052 1.27456 +0.494694 0.974052 1.27456 +0.5692344 0.974052 1.27456 +0.6530715 0.974052 1.27456 +0.7474945 0.974052 1.27456 +0.8539475 0.974052 1.27456 +0.974052 0.974052 1.27456 +1.113885 0.974052 1.27456 +1.27456 0.974052 1.27456 +1.458117 0.974052 1.27456 +1.667858 0.974052 1.27456 +1.907556 0.974052 1.27456 +2.181521 0.974052 1.27456 +2.494678 0.974052 1.27456 +2.852659 0.974052 1.27456 +3.261896 0.974052 1.27456 +3.729748 0.974052 1.27456 +4.264621 0.974052 1.27456 +4.876131 0.974052 1.27456 +5.575266 0.974052 1.27456 +6.374593 0.974052 1.27456 +0 1.113885 1.27456 +0 1.113885 1.27456 +0 1.113885 1.27456 +0.002268731 1.113885 1.27456 +0.07076883 1.113885 1.27456 +0.1119241 1.113885 1.27456 +0.1475052 1.113885 1.27456 +0.1846606 1.113885 1.27456 +0.2245119 1.113885 1.27456 +0.2679612 1.113885 1.27456 +0.3158431 1.113885 1.27456 +0.3689944 1.113885 1.27456 +0.4282948 1.113885 1.27456 +0.494694 1.113885 1.27456 +0.5692344 1.113885 1.27456 +0.6530715 1.113885 1.27456 +0.7474945 1.113885 1.27456 +0.8539475 1.113885 1.27456 +0.974052 1.113885 1.27456 +1.113885 1.113885 1.27456 +1.27456 1.113885 1.27456 +1.458117 1.113885 1.27456 +1.667858 1.113885 1.27456 +1.907556 1.113885 1.27456 +2.181521 1.113885 1.27456 +2.494678 1.113885 1.27456 +2.852659 1.113885 1.27456 +3.261896 1.113885 1.27456 +3.729748 1.113885 1.27456 +4.264621 1.113885 1.27456 +4.876131 1.113885 1.27456 +5.575266 1.113885 1.27456 +6.374593 1.113885 1.27456 +0 1.27456 1.27456 +0 1.27456 1.27456 +0 1.27456 1.27456 +0.002268731 1.27456 1.27456 +0.07076883 1.27456 1.27456 +0.1119241 1.27456 1.27456 +0.1475052 1.27456 1.27456 +0.1846606 1.27456 1.27456 +0.2245119 1.27456 1.27456 +0.2679612 1.27456 1.27456 +0.3158431 1.27456 1.27456 +0.3689944 1.27456 1.27456 +0.4282948 1.27456 1.27456 +0.494694 1.27456 1.27456 +0.5692344 1.27456 1.27456 +0.6530715 1.27456 1.27456 +0.7474945 1.27456 1.27456 +0.8539475 1.27456 1.27456 +0.974052 1.27456 1.27456 +1.113885 1.27456 1.27456 +1.27456 1.27456 1.27456 +1.458117 1.27456 1.27456 +1.667858 1.27456 1.27456 +1.907556 1.27456 1.27456 +2.181521 1.27456 1.27456 +2.494678 1.27456 1.27456 +2.852659 1.27456 1.27456 +3.261896 1.27456 1.27456 +3.729748 1.27456 1.27456 +4.264621 1.27456 1.27456 +4.876131 1.27456 1.27456 +5.575266 1.27456 1.27456 +6.374593 1.27456 1.27456 +0 1.458117 1.27456 +0 1.458117 1.27456 +0 1.458117 1.27456 +0.002268731 1.458117 1.27456 +0.07076883 1.458117 1.27456 +0.1119241 1.458117 1.27456 +0.1475052 1.458117 1.27456 +0.1846606 1.458117 1.27456 +0.2245119 1.458117 1.27456 +0.2679612 1.458117 1.27456 +0.3158431 1.458117 1.27456 +0.3689944 1.458117 1.27456 +0.4282948 1.458117 1.27456 +0.494694 1.458117 1.27456 +0.5692344 1.458117 1.27456 +0.6530715 1.458117 1.27456 +0.7474945 1.458117 1.27456 +0.8539475 1.458117 1.27456 +0.974052 1.458117 1.27456 +1.113885 1.458117 1.27456 +1.27456 1.458117 1.27456 +1.458117 1.458117 1.27456 +1.667858 1.458117 1.27456 +1.907556 1.458117 1.27456 +2.181521 1.458117 1.27456 +2.494678 1.458117 1.27456 +2.852659 1.458117 1.27456 +3.261896 1.458117 1.27456 +3.729748 1.458117 1.27456 +4.264621 1.458117 1.27456 +4.876131 1.458117 1.27456 +5.575266 1.458117 1.27456 +6.374593 1.458117 1.27456 +0 1.667858 1.27456 +0 1.667858 1.27456 +0 1.667858 1.27456 +0.002268731 1.667858 1.27456 +0.07076883 1.667858 1.27456 +0.1119241 1.667858 1.27456 +0.1475052 1.667858 1.27456 +0.1846606 1.667858 1.27456 +0.2245119 1.667858 1.27456 +0.2679612 1.667858 1.27456 +0.3158431 1.667858 1.27456 +0.3689944 1.667858 1.27456 +0.4282948 1.667858 1.27456 +0.494694 1.667858 1.27456 +0.5692344 1.667858 1.27456 +0.6530715 1.667858 1.27456 +0.7474945 1.667858 1.27456 +0.8539475 1.667858 1.27456 +0.974052 1.667858 1.27456 +1.113885 1.667858 1.27456 +1.27456 1.667858 1.27456 +1.458117 1.667858 1.27456 +1.667858 1.667858 1.27456 +1.907556 1.667858 1.27456 +2.181521 1.667858 1.27456 +2.494678 1.667858 1.27456 +2.852659 1.667858 1.27456 +3.261896 1.667858 1.27456 +3.729748 1.667858 1.27456 +4.264621 1.667858 1.27456 +4.876131 1.667858 1.27456 +5.575266 1.667858 1.27456 +6.374593 1.667858 1.27456 +0 1.907556 1.27456 +0 1.907556 1.27456 +0 1.907556 1.27456 +0.002268731 1.907556 1.27456 +0.07076883 1.907556 1.27456 +0.1119241 1.907556 1.27456 +0.1475052 1.907556 1.27456 +0.1846606 1.907556 1.27456 +0.2245119 1.907556 1.27456 +0.2679612 1.907556 1.27456 +0.3158431 1.907556 1.27456 +0.3689944 1.907556 1.27456 +0.4282948 1.907556 1.27456 +0.494694 1.907556 1.27456 +0.5692344 1.907556 1.27456 +0.6530715 1.907556 1.27456 +0.7474945 1.907556 1.27456 +0.8539475 1.907556 1.27456 +0.974052 1.907556 1.27456 +1.113885 1.907556 1.27456 +1.27456 1.907556 1.27456 +1.458117 1.907556 1.27456 +1.667858 1.907556 1.27456 +1.907556 1.907556 1.27456 +2.181521 1.907556 1.27456 +2.494678 1.907556 1.27456 +2.852659 1.907556 1.27456 +3.261896 1.907556 1.27456 +3.729748 1.907556 1.27456 +4.264621 1.907556 1.27456 +4.876131 1.907556 1.27456 +5.575266 1.907556 1.27456 +6.374593 1.907556 1.27456 +0 2.181521 1.27456 +0 2.181521 1.27456 +0 2.181521 1.27456 +0.002268731 2.181521 1.27456 +0.07076883 2.181521 1.27456 +0.1119241 2.181521 1.27456 +0.1475052 2.181521 1.27456 +0.1846606 2.181521 1.27456 +0.2245119 2.181521 1.27456 +0.2679612 2.181521 1.27456 +0.3158431 2.181521 1.27456 +0.3689944 2.181521 1.27456 +0.4282948 2.181521 1.27456 +0.494694 2.181521 1.27456 +0.5692344 2.181521 1.27456 +0.6530715 2.181521 1.27456 +0.7474945 2.181521 1.27456 +0.8539475 2.181521 1.27456 +0.974052 2.181521 1.27456 +1.113885 2.181521 1.27456 +1.27456 2.181521 1.27456 +1.458117 2.181521 1.27456 +1.667858 2.181521 1.27456 +1.907556 2.181521 1.27456 +2.181521 2.181521 1.27456 +2.494678 2.181521 1.27456 +2.852659 2.181521 1.27456 +3.261896 2.181521 1.27456 +3.729748 2.181521 1.27456 +4.264621 2.181521 1.27456 +4.876131 2.181521 1.27456 +5.575266 2.181521 1.27456 +6.374593 2.181521 1.27456 +0 2.494678 1.27456 +0 2.494678 1.27456 +0 2.494678 1.27456 +0.002268731 2.494678 1.27456 +0.07076883 2.494678 1.27456 +0.1119241 2.494678 1.27456 +0.1475052 2.494678 1.27456 +0.1846606 2.494678 1.27456 +0.2245119 2.494678 1.27456 +0.2679612 2.494678 1.27456 +0.3158431 2.494678 1.27456 +0.3689944 2.494678 1.27456 +0.4282948 2.494678 1.27456 +0.494694 2.494678 1.27456 +0.5692344 2.494678 1.27456 +0.6530715 2.494678 1.27456 +0.7474945 2.494678 1.27456 +0.8539475 2.494678 1.27456 +0.974052 2.494678 1.27456 +1.113885 2.494678 1.27456 +1.27456 2.494678 1.27456 +1.458117 2.494678 1.27456 +1.667858 2.494678 1.27456 +1.907556 2.494678 1.27456 +2.181521 2.494678 1.27456 +2.494678 2.494678 1.27456 +2.852659 2.494678 1.27456 +3.261896 2.494678 1.27456 +3.729748 2.494678 1.27456 +4.264621 2.494678 1.27456 +4.876131 2.494678 1.27456 +5.575266 2.494678 1.27456 +6.374593 2.494678 1.27456 +0 2.852659 1.27456 +0 2.852659 1.27456 +0 2.852659 1.27456 +0.002268731 2.852659 1.27456 +0.07076883 2.852659 1.27456 +0.1119241 2.852659 1.27456 +0.1475052 2.852659 1.27456 +0.1846606 2.852659 1.27456 +0.2245119 2.852659 1.27456 +0.2679612 2.852659 1.27456 +0.3158431 2.852659 1.27456 +0.3689944 2.852659 1.27456 +0.4282948 2.852659 1.27456 +0.494694 2.852659 1.27456 +0.5692344 2.852659 1.27456 +0.6530715 2.852659 1.27456 +0.7474945 2.852659 1.27456 +0.8539475 2.852659 1.27456 +0.974052 2.852659 1.27456 +1.113885 2.852659 1.27456 +1.27456 2.852659 1.27456 +1.458117 2.852659 1.27456 +1.667858 2.852659 1.27456 +1.907556 2.852659 1.27456 +2.181521 2.852659 1.27456 +2.494678 2.852659 1.27456 +2.852659 2.852659 1.27456 +3.261896 2.852659 1.27456 +3.729748 2.852659 1.27456 +4.264621 2.852659 1.27456 +4.876131 2.852659 1.27456 +5.575266 2.852659 1.27456 +6.374593 2.852659 1.27456 +0 3.261896 1.27456 +0 3.261896 1.27456 +0 3.261896 1.27456 +0.002268731 3.261896 1.27456 +0.07076883 3.261896 1.27456 +0.1119241 3.261896 1.27456 +0.1475052 3.261896 1.27456 +0.1846606 3.261896 1.27456 +0.2245119 3.261896 1.27456 +0.2679612 3.261896 1.27456 +0.3158431 3.261896 1.27456 +0.3689944 3.261896 1.27456 +0.4282948 3.261896 1.27456 +0.494694 3.261896 1.27456 +0.5692344 3.261896 1.27456 +0.6530715 3.261896 1.27456 +0.7474945 3.261896 1.27456 +0.8539475 3.261896 1.27456 +0.974052 3.261896 1.27456 +1.113885 3.261896 1.27456 +1.27456 3.261896 1.27456 +1.458117 3.261896 1.27456 +1.667858 3.261896 1.27456 +1.907556 3.261896 1.27456 +2.181521 3.261896 1.27456 +2.494678 3.261896 1.27456 +2.852659 3.261896 1.27456 +3.261896 3.261896 1.27456 +3.729748 3.261896 1.27456 +4.264621 3.261896 1.27456 +4.876131 3.261896 1.27456 +5.575266 3.261896 1.27456 +6.374593 3.261896 1.27456 +0 3.729748 1.27456 +0 3.729748 1.27456 +0 3.729748 1.27456 +0.002268731 3.729748 1.27456 +0.07076883 3.729748 1.27456 +0.1119241 3.729748 1.27456 +0.1475052 3.729748 1.27456 +0.1846606 3.729748 1.27456 +0.2245119 3.729748 1.27456 +0.2679612 3.729748 1.27456 +0.3158431 3.729748 1.27456 +0.3689944 3.729748 1.27456 +0.4282948 3.729748 1.27456 +0.494694 3.729748 1.27456 +0.5692344 3.729748 1.27456 +0.6530715 3.729748 1.27456 +0.7474945 3.729748 1.27456 +0.8539475 3.729748 1.27456 +0.974052 3.729748 1.27456 +1.113885 3.729748 1.27456 +1.27456 3.729748 1.27456 +1.458117 3.729748 1.27456 +1.667858 3.729748 1.27456 +1.907556 3.729748 1.27456 +2.181521 3.729748 1.27456 +2.494678 3.729748 1.27456 +2.852659 3.729748 1.27456 +3.261896 3.729748 1.27456 +3.729748 3.729748 1.27456 +4.264621 3.729748 1.27456 +4.876131 3.729748 1.27456 +5.575266 3.729748 1.27456 +6.374593 3.729748 1.27456 +0 4.264621 1.27456 +0 4.264621 1.27456 +0 4.264621 1.27456 +0.002268731 4.264621 1.27456 +0.07076883 4.264621 1.27456 +0.1119241 4.264621 1.27456 +0.1475052 4.264621 1.27456 +0.1846606 4.264621 1.27456 +0.2245119 4.264621 1.27456 +0.2679612 4.264621 1.27456 +0.3158431 4.264621 1.27456 +0.3689944 4.264621 1.27456 +0.4282948 4.264621 1.27456 +0.494694 4.264621 1.27456 +0.5692344 4.264621 1.27456 +0.6530715 4.264621 1.27456 +0.7474945 4.264621 1.27456 +0.8539475 4.264621 1.27456 +0.974052 4.264621 1.27456 +1.113885 4.264621 1.27456 +1.27456 4.264621 1.27456 +1.458117 4.264621 1.27456 +1.667858 4.264621 1.27456 +1.907556 4.264621 1.27456 +2.181521 4.264621 1.27456 +2.494678 4.264621 1.27456 +2.852659 4.264621 1.27456 +3.261896 4.264621 1.27456 +3.729748 4.264621 1.27456 +4.264621 4.264621 1.27456 +4.876131 4.264621 1.27456 +5.575266 4.264621 1.27456 +6.374593 4.264621 1.27456 +0 4.876131 1.27456 +0 4.876131 1.27456 +0 4.876131 1.27456 +0.002268731 4.876131 1.27456 +0.07076883 4.876131 1.27456 +0.1119241 4.876131 1.27456 +0.1475052 4.876131 1.27456 +0.1846606 4.876131 1.27456 +0.2245119 4.876131 1.27456 +0.2679612 4.876131 1.27456 +0.3158431 4.876131 1.27456 +0.3689944 4.876131 1.27456 +0.4282948 4.876131 1.27456 +0.494694 4.876131 1.27456 +0.5692344 4.876131 1.27456 +0.6530715 4.876131 1.27456 +0.7474945 4.876131 1.27456 +0.8539475 4.876131 1.27456 +0.974052 4.876131 1.27456 +1.113885 4.876131 1.27456 +1.27456 4.876131 1.27456 +1.458117 4.876131 1.27456 +1.667858 4.876131 1.27456 +1.907556 4.876131 1.27456 +2.181521 4.876131 1.27456 +2.494678 4.876131 1.27456 +2.852659 4.876131 1.27456 +3.261896 4.876131 1.27456 +3.729748 4.876131 1.27456 +4.264621 4.876131 1.27456 +4.876131 4.876131 1.27456 +5.575266 4.876131 1.27456 +6.374593 4.876131 1.27456 +0 5.575266 1.27456 +0 5.575266 1.27456 +0 5.575266 1.27456 +0.002268731 5.575266 1.27456 +0.07076883 5.575266 1.27456 +0.1119241 5.575266 1.27456 +0.1475052 5.575266 1.27456 +0.1846606 5.575266 1.27456 +0.2245119 5.575266 1.27456 +0.2679612 5.575266 1.27456 +0.3158431 5.575266 1.27456 +0.3689944 5.575266 1.27456 +0.4282948 5.575266 1.27456 +0.494694 5.575266 1.27456 +0.5692344 5.575266 1.27456 +0.6530715 5.575266 1.27456 +0.7474945 5.575266 1.27456 +0.8539475 5.575266 1.27456 +0.974052 5.575266 1.27456 +1.113885 5.575266 1.27456 +1.27456 5.575266 1.27456 +1.458117 5.575266 1.27456 +1.667858 5.575266 1.27456 +1.907556 5.575266 1.27456 +2.181521 5.575266 1.27456 +2.494678 5.575266 1.27456 +2.852659 5.575266 1.27456 +3.261896 5.575266 1.27456 +3.729748 5.575266 1.27456 +4.264621 5.575266 1.27456 +4.876131 5.575266 1.27456 +5.575266 5.575266 1.27456 +6.374593 5.575266 1.27456 +0 6.374593 1.27456 +0 6.374593 1.27456 +0 6.374593 1.27456 +0.002268731 6.374593 1.27456 +0.07076883 6.374593 1.27456 +0.1119241 6.374593 1.27456 +0.1475052 6.374593 1.27456 +0.1846606 6.374593 1.27456 +0.2245119 6.374593 1.27456 +0.2679612 6.374593 1.27456 +0.3158431 6.374593 1.27456 +0.3689944 6.374593 1.27456 +0.4282948 6.374593 1.27456 +0.494694 6.374593 1.27456 +0.5692344 6.374593 1.27456 +0.6530715 6.374593 1.27456 +0.7474945 6.374593 1.27456 +0.8539475 6.374593 1.27456 +0.974052 6.374593 1.27456 +1.113885 6.374593 1.27456 +1.27456 6.374593 1.27456 +1.458117 6.374593 1.27456 +1.667858 6.374593 1.27456 +1.907556 6.374593 1.27456 +2.181521 6.374593 1.27456 +2.494678 6.374593 1.27456 +2.852659 6.374593 1.27456 +3.261896 6.374593 1.27456 +3.729748 6.374593 1.27456 +4.264621 6.374593 1.27456 +4.876131 6.374593 1.27456 +5.575266 6.374593 1.27456 +6.374593 6.374593 1.27456 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0.002268731 1.458117 +0 0.002268731 1.458117 +0 0.002268731 1.458117 +0.002268731 0.002268731 1.458117 +0.07076883 0.002268731 1.458117 +0.1119241 0.002268731 1.458117 +0.1475052 0.002268731 1.458117 +0.1846606 0.002268731 1.458117 +0.2245119 0.002268731 1.458117 +0.2679612 0.002268731 1.458117 +0.3158431 0.002268731 1.458117 +0.3689944 0.002268731 1.458117 +0.4282948 0.002268731 1.458117 +0.494694 0.002268731 1.458117 +0.5692344 0.002268731 1.458117 +0.6530715 0.002268731 1.458117 +0.7474945 0.002268731 1.458117 +0.8539475 0.002268731 1.458117 +0.974052 0.002268731 1.458117 +1.113885 0.002268731 1.458117 +1.27456 0.002268731 1.458117 +1.458117 0.002268731 1.458117 +1.667858 0.002268731 1.458117 +1.907556 0.002268731 1.458117 +2.181521 0.002268731 1.458117 +2.494678 0.002268731 1.458117 +2.852659 0.002268731 1.458117 +3.261896 0.002268731 1.458117 +3.729748 0.002268731 1.458117 +4.264621 0.002268731 1.458117 +4.876131 0.002268731 1.458117 +5.575266 0.002268731 1.458117 +6.374593 0.002268731 1.458117 +0 0.07076883 1.458117 +0 0.07076883 1.458117 +0 0.07076883 1.458117 +0.002268731 0.07076883 1.458117 +0.07076883 0.07076883 1.458117 +0.1119241 0.07076883 1.458117 +0.1475052 0.07076883 1.458117 +0.1846606 0.07076883 1.458117 +0.2245119 0.07076883 1.458117 +0.2679612 0.07076883 1.458117 +0.3158431 0.07076883 1.458117 +0.3689944 0.07076883 1.458117 +0.4282948 0.07076883 1.458117 +0.494694 0.07076883 1.458117 +0.5692344 0.07076883 1.458117 +0.6530715 0.07076883 1.458117 +0.7474945 0.07076883 1.458117 +0.8539475 0.07076883 1.458117 +0.974052 0.07076883 1.458117 +1.113885 0.07076883 1.458117 +1.27456 0.07076883 1.458117 +1.458117 0.07076883 1.458117 +1.667858 0.07076883 1.458117 +1.907556 0.07076883 1.458117 +2.181521 0.07076883 1.458117 +2.494678 0.07076883 1.458117 +2.852659 0.07076883 1.458117 +3.261896 0.07076883 1.458117 +3.729748 0.07076883 1.458117 +4.264621 0.07076883 1.458117 +4.876131 0.07076883 1.458117 +5.575266 0.07076883 1.458117 +6.374593 0.07076883 1.458117 +0 0.1119241 1.458117 +0 0.1119241 1.458117 +0 0.1119241 1.458117 +0.002268731 0.1119241 1.458117 +0.07076883 0.1119241 1.458117 +0.1119241 0.1119241 1.458117 +0.1475052 0.1119241 1.458117 +0.1846606 0.1119241 1.458117 +0.2245119 0.1119241 1.458117 +0.2679612 0.1119241 1.458117 +0.3158431 0.1119241 1.458117 +0.3689944 0.1119241 1.458117 +0.4282948 0.1119241 1.458117 +0.494694 0.1119241 1.458117 +0.5692344 0.1119241 1.458117 +0.6530715 0.1119241 1.458117 +0.7474945 0.1119241 1.458117 +0.8539475 0.1119241 1.458117 +0.974052 0.1119241 1.458117 +1.113885 0.1119241 1.458117 +1.27456 0.1119241 1.458117 +1.458117 0.1119241 1.458117 +1.667858 0.1119241 1.458117 +1.907556 0.1119241 1.458117 +2.181521 0.1119241 1.458117 +2.494678 0.1119241 1.458117 +2.852659 0.1119241 1.458117 +3.261896 0.1119241 1.458117 +3.729748 0.1119241 1.458117 +4.264621 0.1119241 1.458117 +4.876131 0.1119241 1.458117 +5.575266 0.1119241 1.458117 +6.374593 0.1119241 1.458117 +0 0.1475052 1.458117 +0 0.1475052 1.458117 +0 0.1475052 1.458117 +0.002268731 0.1475052 1.458117 +0.07076883 0.1475052 1.458117 +0.1119241 0.1475052 1.458117 +0.1475052 0.1475052 1.458117 +0.1846606 0.1475052 1.458117 +0.2245119 0.1475052 1.458117 +0.2679612 0.1475052 1.458117 +0.3158431 0.1475052 1.458117 +0.3689944 0.1475052 1.458117 +0.4282948 0.1475052 1.458117 +0.494694 0.1475052 1.458117 +0.5692344 0.1475052 1.458117 +0.6530715 0.1475052 1.458117 +0.7474945 0.1475052 1.458117 +0.8539475 0.1475052 1.458117 +0.974052 0.1475052 1.458117 +1.113885 0.1475052 1.458117 +1.27456 0.1475052 1.458117 +1.458117 0.1475052 1.458117 +1.667858 0.1475052 1.458117 +1.907556 0.1475052 1.458117 +2.181521 0.1475052 1.458117 +2.494678 0.1475052 1.458117 +2.852659 0.1475052 1.458117 +3.261896 0.1475052 1.458117 +3.729748 0.1475052 1.458117 +4.264621 0.1475052 1.458117 +4.876131 0.1475052 1.458117 +5.575266 0.1475052 1.458117 +6.374593 0.1475052 1.458117 +0 0.1846606 1.458117 +0 0.1846606 1.458117 +0 0.1846606 1.458117 +0.002268731 0.1846606 1.458117 +0.07076883 0.1846606 1.458117 +0.1119241 0.1846606 1.458117 +0.1475052 0.1846606 1.458117 +0.1846606 0.1846606 1.458117 +0.2245119 0.1846606 1.458117 +0.2679612 0.1846606 1.458117 +0.3158431 0.1846606 1.458117 +0.3689944 0.1846606 1.458117 +0.4282948 0.1846606 1.458117 +0.494694 0.1846606 1.458117 +0.5692344 0.1846606 1.458117 +0.6530715 0.1846606 1.458117 +0.7474945 0.1846606 1.458117 +0.8539475 0.1846606 1.458117 +0.974052 0.1846606 1.458117 +1.113885 0.1846606 1.458117 +1.27456 0.1846606 1.458117 +1.458117 0.1846606 1.458117 +1.667858 0.1846606 1.458117 +1.907556 0.1846606 1.458117 +2.181521 0.1846606 1.458117 +2.494678 0.1846606 1.458117 +2.852659 0.1846606 1.458117 +3.261896 0.1846606 1.458117 +3.729748 0.1846606 1.458117 +4.264621 0.1846606 1.458117 +4.876131 0.1846606 1.458117 +5.575266 0.1846606 1.458117 +6.374593 0.1846606 1.458117 +0 0.2245119 1.458117 +0 0.2245119 1.458117 +0 0.2245119 1.458117 +0.002268731 0.2245119 1.458117 +0.07076883 0.2245119 1.458117 +0.1119241 0.2245119 1.458117 +0.1475052 0.2245119 1.458117 +0.1846606 0.2245119 1.458117 +0.2245119 0.2245119 1.458117 +0.2679612 0.2245119 1.458117 +0.3158431 0.2245119 1.458117 +0.3689944 0.2245119 1.458117 +0.4282948 0.2245119 1.458117 +0.494694 0.2245119 1.458117 +0.5692344 0.2245119 1.458117 +0.6530715 0.2245119 1.458117 +0.7474945 0.2245119 1.458117 +0.8539475 0.2245119 1.458117 +0.974052 0.2245119 1.458117 +1.113885 0.2245119 1.458117 +1.27456 0.2245119 1.458117 +1.458117 0.2245119 1.458117 +1.667858 0.2245119 1.458117 +1.907556 0.2245119 1.458117 +2.181521 0.2245119 1.458117 +2.494678 0.2245119 1.458117 +2.852659 0.2245119 1.458117 +3.261896 0.2245119 1.458117 +3.729748 0.2245119 1.458117 +4.264621 0.2245119 1.458117 +4.876131 0.2245119 1.458117 +5.575266 0.2245119 1.458117 +6.374593 0.2245119 1.458117 +0 0.2679612 1.458117 +0 0.2679612 1.458117 +0 0.2679612 1.458117 +0.002268731 0.2679612 1.458117 +0.07076883 0.2679612 1.458117 +0.1119241 0.2679612 1.458117 +0.1475052 0.2679612 1.458117 +0.1846606 0.2679612 1.458117 +0.2245119 0.2679612 1.458117 +0.2679612 0.2679612 1.458117 +0.3158431 0.2679612 1.458117 +0.3689944 0.2679612 1.458117 +0.4282948 0.2679612 1.458117 +0.494694 0.2679612 1.458117 +0.5692344 0.2679612 1.458117 +0.6530715 0.2679612 1.458117 +0.7474945 0.2679612 1.458117 +0.8539475 0.2679612 1.458117 +0.974052 0.2679612 1.458117 +1.113885 0.2679612 1.458117 +1.27456 0.2679612 1.458117 +1.458117 0.2679612 1.458117 +1.667858 0.2679612 1.458117 +1.907556 0.2679612 1.458117 +2.181521 0.2679612 1.458117 +2.494678 0.2679612 1.458117 +2.852659 0.2679612 1.458117 +3.261896 0.2679612 1.458117 +3.729748 0.2679612 1.458117 +4.264621 0.2679612 1.458117 +4.876131 0.2679612 1.458117 +5.575266 0.2679612 1.458117 +6.374593 0.2679612 1.458117 +0 0.3158431 1.458117 +0 0.3158431 1.458117 +0 0.3158431 1.458117 +0.002268731 0.3158431 1.458117 +0.07076883 0.3158431 1.458117 +0.1119241 0.3158431 1.458117 +0.1475052 0.3158431 1.458117 +0.1846606 0.3158431 1.458117 +0.2245119 0.3158431 1.458117 +0.2679612 0.3158431 1.458117 +0.3158431 0.3158431 1.458117 +0.3689944 0.3158431 1.458117 +0.4282948 0.3158431 1.458117 +0.494694 0.3158431 1.458117 +0.5692344 0.3158431 1.458117 +0.6530715 0.3158431 1.458117 +0.7474945 0.3158431 1.458117 +0.8539475 0.3158431 1.458117 +0.974052 0.3158431 1.458117 +1.113885 0.3158431 1.458117 +1.27456 0.3158431 1.458117 +1.458117 0.3158431 1.458117 +1.667858 0.3158431 1.458117 +1.907556 0.3158431 1.458117 +2.181521 0.3158431 1.458117 +2.494678 0.3158431 1.458117 +2.852659 0.3158431 1.458117 +3.261896 0.3158431 1.458117 +3.729748 0.3158431 1.458117 +4.264621 0.3158431 1.458117 +4.876131 0.3158431 1.458117 +5.575266 0.3158431 1.458117 +6.374593 0.3158431 1.458117 +0 0.3689944 1.458117 +0 0.3689944 1.458117 +0 0.3689944 1.458117 +0.002268731 0.3689944 1.458117 +0.07076883 0.3689944 1.458117 +0.1119241 0.3689944 1.458117 +0.1475052 0.3689944 1.458117 +0.1846606 0.3689944 1.458117 +0.2245119 0.3689944 1.458117 +0.2679612 0.3689944 1.458117 +0.3158431 0.3689944 1.458117 +0.3689944 0.3689944 1.458117 +0.4282948 0.3689944 1.458117 +0.494694 0.3689944 1.458117 +0.5692344 0.3689944 1.458117 +0.6530715 0.3689944 1.458117 +0.7474945 0.3689944 1.458117 +0.8539475 0.3689944 1.458117 +0.974052 0.3689944 1.458117 +1.113885 0.3689944 1.458117 +1.27456 0.3689944 1.458117 +1.458117 0.3689944 1.458117 +1.667858 0.3689944 1.458117 +1.907556 0.3689944 1.458117 +2.181521 0.3689944 1.458117 +2.494678 0.3689944 1.458117 +2.852659 0.3689944 1.458117 +3.261896 0.3689944 1.458117 +3.729748 0.3689944 1.458117 +4.264621 0.3689944 1.458117 +4.876131 0.3689944 1.458117 +5.575266 0.3689944 1.458117 +6.374593 0.3689944 1.458117 +0 0.4282948 1.458117 +0 0.4282948 1.458117 +0 0.4282948 1.458117 +0.002268731 0.4282948 1.458117 +0.07076883 0.4282948 1.458117 +0.1119241 0.4282948 1.458117 +0.1475052 0.4282948 1.458117 +0.1846606 0.4282948 1.458117 +0.2245119 0.4282948 1.458117 +0.2679612 0.4282948 1.458117 +0.3158431 0.4282948 1.458117 +0.3689944 0.4282948 1.458117 +0.4282948 0.4282948 1.458117 +0.494694 0.4282948 1.458117 +0.5692344 0.4282948 1.458117 +0.6530715 0.4282948 1.458117 +0.7474945 0.4282948 1.458117 +0.8539475 0.4282948 1.458117 +0.974052 0.4282948 1.458117 +1.113885 0.4282948 1.458117 +1.27456 0.4282948 1.458117 +1.458117 0.4282948 1.458117 +1.667858 0.4282948 1.458117 +1.907556 0.4282948 1.458117 +2.181521 0.4282948 1.458117 +2.494678 0.4282948 1.458117 +2.852659 0.4282948 1.458117 +3.261896 0.4282948 1.458117 +3.729748 0.4282948 1.458117 +4.264621 0.4282948 1.458117 +4.876131 0.4282948 1.458117 +5.575266 0.4282948 1.458117 +6.374593 0.4282948 1.458117 +0 0.494694 1.458117 +0 0.494694 1.458117 +0 0.494694 1.458117 +0.002268731 0.494694 1.458117 +0.07076883 0.494694 1.458117 +0.1119241 0.494694 1.458117 +0.1475052 0.494694 1.458117 +0.1846606 0.494694 1.458117 +0.2245119 0.494694 1.458117 +0.2679612 0.494694 1.458117 +0.3158431 0.494694 1.458117 +0.3689944 0.494694 1.458117 +0.4282948 0.494694 1.458117 +0.494694 0.494694 1.458117 +0.5692344 0.494694 1.458117 +0.6530715 0.494694 1.458117 +0.7474945 0.494694 1.458117 +0.8539475 0.494694 1.458117 +0.974052 0.494694 1.458117 +1.113885 0.494694 1.458117 +1.27456 0.494694 1.458117 +1.458117 0.494694 1.458117 +1.667858 0.494694 1.458117 +1.907556 0.494694 1.458117 +2.181521 0.494694 1.458117 +2.494678 0.494694 1.458117 +2.852659 0.494694 1.458117 +3.261896 0.494694 1.458117 +3.729748 0.494694 1.458117 +4.264621 0.494694 1.458117 +4.876131 0.494694 1.458117 +5.575266 0.494694 1.458117 +6.374593 0.494694 1.458117 +0 0.5692344 1.458117 +0 0.5692344 1.458117 +0 0.5692344 1.458117 +0.002268731 0.5692344 1.458117 +0.07076883 0.5692344 1.458117 +0.1119241 0.5692344 1.458117 +0.1475052 0.5692344 1.458117 +0.1846606 0.5692344 1.458117 +0.2245119 0.5692344 1.458117 +0.2679612 0.5692344 1.458117 +0.3158431 0.5692344 1.458117 +0.3689944 0.5692344 1.458117 +0.4282948 0.5692344 1.458117 +0.494694 0.5692344 1.458117 +0.5692344 0.5692344 1.458117 +0.6530715 0.5692344 1.458117 +0.7474945 0.5692344 1.458117 +0.8539475 0.5692344 1.458117 +0.974052 0.5692344 1.458117 +1.113885 0.5692344 1.458117 +1.27456 0.5692344 1.458117 +1.458117 0.5692344 1.458117 +1.667858 0.5692344 1.458117 +1.907556 0.5692344 1.458117 +2.181521 0.5692344 1.458117 +2.494678 0.5692344 1.458117 +2.852659 0.5692344 1.458117 +3.261896 0.5692344 1.458117 +3.729748 0.5692344 1.458117 +4.264621 0.5692344 1.458117 +4.876131 0.5692344 1.458117 +5.575266 0.5692344 1.458117 +6.374593 0.5692344 1.458117 +0 0.6530715 1.458117 +0 0.6530715 1.458117 +0 0.6530715 1.458117 +0.002268731 0.6530715 1.458117 +0.07076883 0.6530715 1.458117 +0.1119241 0.6530715 1.458117 +0.1475052 0.6530715 1.458117 +0.1846606 0.6530715 1.458117 +0.2245119 0.6530715 1.458117 +0.2679612 0.6530715 1.458117 +0.3158431 0.6530715 1.458117 +0.3689944 0.6530715 1.458117 +0.4282948 0.6530715 1.458117 +0.494694 0.6530715 1.458117 +0.5692344 0.6530715 1.458117 +0.6530715 0.6530715 1.458117 +0.7474945 0.6530715 1.458117 +0.8539475 0.6530715 1.458117 +0.974052 0.6530715 1.458117 +1.113885 0.6530715 1.458117 +1.27456 0.6530715 1.458117 +1.458117 0.6530715 1.458117 +1.667858 0.6530715 1.458117 +1.907556 0.6530715 1.458117 +2.181521 0.6530715 1.458117 +2.494678 0.6530715 1.458117 +2.852659 0.6530715 1.458117 +3.261896 0.6530715 1.458117 +3.729748 0.6530715 1.458117 +4.264621 0.6530715 1.458117 +4.876131 0.6530715 1.458117 +5.575266 0.6530715 1.458117 +6.374593 0.6530715 1.458117 +0 0.7474945 1.458117 +0 0.7474945 1.458117 +0 0.7474945 1.458117 +0.002268731 0.7474945 1.458117 +0.07076883 0.7474945 1.458117 +0.1119241 0.7474945 1.458117 +0.1475052 0.7474945 1.458117 +0.1846606 0.7474945 1.458117 +0.2245119 0.7474945 1.458117 +0.2679612 0.7474945 1.458117 +0.3158431 0.7474945 1.458117 +0.3689944 0.7474945 1.458117 +0.4282948 0.7474945 1.458117 +0.494694 0.7474945 1.458117 +0.5692344 0.7474945 1.458117 +0.6530715 0.7474945 1.458117 +0.7474945 0.7474945 1.458117 +0.8539475 0.7474945 1.458117 +0.974052 0.7474945 1.458117 +1.113885 0.7474945 1.458117 +1.27456 0.7474945 1.458117 +1.458117 0.7474945 1.458117 +1.667858 0.7474945 1.458117 +1.907556 0.7474945 1.458117 +2.181521 0.7474945 1.458117 +2.494678 0.7474945 1.458117 +2.852659 0.7474945 1.458117 +3.261896 0.7474945 1.458117 +3.729748 0.7474945 1.458117 +4.264621 0.7474945 1.458117 +4.876131 0.7474945 1.458117 +5.575266 0.7474945 1.458117 +6.374593 0.7474945 1.458117 +0 0.8539475 1.458117 +0 0.8539475 1.458117 +0 0.8539475 1.458117 +0.002268731 0.8539475 1.458117 +0.07076883 0.8539475 1.458117 +0.1119241 0.8539475 1.458117 +0.1475052 0.8539475 1.458117 +0.1846606 0.8539475 1.458117 +0.2245119 0.8539475 1.458117 +0.2679612 0.8539475 1.458117 +0.3158431 0.8539475 1.458117 +0.3689944 0.8539475 1.458117 +0.4282948 0.8539475 1.458117 +0.494694 0.8539475 1.458117 +0.5692344 0.8539475 1.458117 +0.6530715 0.8539475 1.458117 +0.7474945 0.8539475 1.458117 +0.8539475 0.8539475 1.458117 +0.974052 0.8539475 1.458117 +1.113885 0.8539475 1.458117 +1.27456 0.8539475 1.458117 +1.458117 0.8539475 1.458117 +1.667858 0.8539475 1.458117 +1.907556 0.8539475 1.458117 +2.181521 0.8539475 1.458117 +2.494678 0.8539475 1.458117 +2.852659 0.8539475 1.458117 +3.261896 0.8539475 1.458117 +3.729748 0.8539475 1.458117 +4.264621 0.8539475 1.458117 +4.876131 0.8539475 1.458117 +5.575266 0.8539475 1.458117 +6.374593 0.8539475 1.458117 +0 0.974052 1.458117 +0 0.974052 1.458117 +0 0.974052 1.458117 +0.002268731 0.974052 1.458117 +0.07076883 0.974052 1.458117 +0.1119241 0.974052 1.458117 +0.1475052 0.974052 1.458117 +0.1846606 0.974052 1.458117 +0.2245119 0.974052 1.458117 +0.2679612 0.974052 1.458117 +0.3158431 0.974052 1.458117 +0.3689944 0.974052 1.458117 +0.4282948 0.974052 1.458117 +0.494694 0.974052 1.458117 +0.5692344 0.974052 1.458117 +0.6530715 0.974052 1.458117 +0.7474945 0.974052 1.458117 +0.8539475 0.974052 1.458117 +0.974052 0.974052 1.458117 +1.113885 0.974052 1.458117 +1.27456 0.974052 1.458117 +1.458117 0.974052 1.458117 +1.667858 0.974052 1.458117 +1.907556 0.974052 1.458117 +2.181521 0.974052 1.458117 +2.494678 0.974052 1.458117 +2.852659 0.974052 1.458117 +3.261896 0.974052 1.458117 +3.729748 0.974052 1.458117 +4.264621 0.974052 1.458117 +4.876131 0.974052 1.458117 +5.575266 0.974052 1.458117 +6.374593 0.974052 1.458117 +0 1.113885 1.458117 +0 1.113885 1.458117 +0 1.113885 1.458117 +0.002268731 1.113885 1.458117 +0.07076883 1.113885 1.458117 +0.1119241 1.113885 1.458117 +0.1475052 1.113885 1.458117 +0.1846606 1.113885 1.458117 +0.2245119 1.113885 1.458117 +0.2679612 1.113885 1.458117 +0.3158431 1.113885 1.458117 +0.3689944 1.113885 1.458117 +0.4282948 1.113885 1.458117 +0.494694 1.113885 1.458117 +0.5692344 1.113885 1.458117 +0.6530715 1.113885 1.458117 +0.7474945 1.113885 1.458117 +0.8539475 1.113885 1.458117 +0.974052 1.113885 1.458117 +1.113885 1.113885 1.458117 +1.27456 1.113885 1.458117 +1.458117 1.113885 1.458117 +1.667858 1.113885 1.458117 +1.907556 1.113885 1.458117 +2.181521 1.113885 1.458117 +2.494678 1.113885 1.458117 +2.852659 1.113885 1.458117 +3.261896 1.113885 1.458117 +3.729748 1.113885 1.458117 +4.264621 1.113885 1.458117 +4.876131 1.113885 1.458117 +5.575266 1.113885 1.458117 +6.374593 1.113885 1.458117 +0 1.27456 1.458117 +0 1.27456 1.458117 +0 1.27456 1.458117 +0.002268731 1.27456 1.458117 +0.07076883 1.27456 1.458117 +0.1119241 1.27456 1.458117 +0.1475052 1.27456 1.458117 +0.1846606 1.27456 1.458117 +0.2245119 1.27456 1.458117 +0.2679612 1.27456 1.458117 +0.3158431 1.27456 1.458117 +0.3689944 1.27456 1.458117 +0.4282948 1.27456 1.458117 +0.494694 1.27456 1.458117 +0.5692344 1.27456 1.458117 +0.6530715 1.27456 1.458117 +0.7474945 1.27456 1.458117 +0.8539475 1.27456 1.458117 +0.974052 1.27456 1.458117 +1.113885 1.27456 1.458117 +1.27456 1.27456 1.458117 +1.458117 1.27456 1.458117 +1.667858 1.27456 1.458117 +1.907556 1.27456 1.458117 +2.181521 1.27456 1.458117 +2.494678 1.27456 1.458117 +2.852659 1.27456 1.458117 +3.261896 1.27456 1.458117 +3.729748 1.27456 1.458117 +4.264621 1.27456 1.458117 +4.876131 1.27456 1.458117 +5.575266 1.27456 1.458117 +6.374593 1.27456 1.458117 +0 1.458117 1.458117 +0 1.458117 1.458117 +0 1.458117 1.458117 +0.002268731 1.458117 1.458117 +0.07076883 1.458117 1.458117 +0.1119241 1.458117 1.458117 +0.1475052 1.458117 1.458117 +0.1846606 1.458117 1.458117 +0.2245119 1.458117 1.458117 +0.2679612 1.458117 1.458117 +0.3158431 1.458117 1.458117 +0.3689944 1.458117 1.458117 +0.4282948 1.458117 1.458117 +0.494694 1.458117 1.458117 +0.5692344 1.458117 1.458117 +0.6530715 1.458117 1.458117 +0.7474945 1.458117 1.458117 +0.8539475 1.458117 1.458117 +0.974052 1.458117 1.458117 +1.113885 1.458117 1.458117 +1.27456 1.458117 1.458117 +1.458117 1.458117 1.458117 +1.667858 1.458117 1.458117 +1.907556 1.458117 1.458117 +2.181521 1.458117 1.458117 +2.494678 1.458117 1.458117 +2.852659 1.458117 1.458117 +3.261896 1.458117 1.458117 +3.729748 1.458117 1.458117 +4.264621 1.458117 1.458117 +4.876131 1.458117 1.458117 +5.575266 1.458117 1.458117 +6.374593 1.458117 1.458117 +0 1.667858 1.458117 +0 1.667858 1.458117 +0 1.667858 1.458117 +0.002268731 1.667858 1.458117 +0.07076883 1.667858 1.458117 +0.1119241 1.667858 1.458117 +0.1475052 1.667858 1.458117 +0.1846606 1.667858 1.458117 +0.2245119 1.667858 1.458117 +0.2679612 1.667858 1.458117 +0.3158431 1.667858 1.458117 +0.3689944 1.667858 1.458117 +0.4282948 1.667858 1.458117 +0.494694 1.667858 1.458117 +0.5692344 1.667858 1.458117 +0.6530715 1.667858 1.458117 +0.7474945 1.667858 1.458117 +0.8539475 1.667858 1.458117 +0.974052 1.667858 1.458117 +1.113885 1.667858 1.458117 +1.27456 1.667858 1.458117 +1.458117 1.667858 1.458117 +1.667858 1.667858 1.458117 +1.907556 1.667858 1.458117 +2.181521 1.667858 1.458117 +2.494678 1.667858 1.458117 +2.852659 1.667858 1.458117 +3.261896 1.667858 1.458117 +3.729748 1.667858 1.458117 +4.264621 1.667858 1.458117 +4.876131 1.667858 1.458117 +5.575266 1.667858 1.458117 +6.374593 1.667858 1.458117 +0 1.907556 1.458117 +0 1.907556 1.458117 +0 1.907556 1.458117 +0.002268731 1.907556 1.458117 +0.07076883 1.907556 1.458117 +0.1119241 1.907556 1.458117 +0.1475052 1.907556 1.458117 +0.1846606 1.907556 1.458117 +0.2245119 1.907556 1.458117 +0.2679612 1.907556 1.458117 +0.3158431 1.907556 1.458117 +0.3689944 1.907556 1.458117 +0.4282948 1.907556 1.458117 +0.494694 1.907556 1.458117 +0.5692344 1.907556 1.458117 +0.6530715 1.907556 1.458117 +0.7474945 1.907556 1.458117 +0.8539475 1.907556 1.458117 +0.974052 1.907556 1.458117 +1.113885 1.907556 1.458117 +1.27456 1.907556 1.458117 +1.458117 1.907556 1.458117 +1.667858 1.907556 1.458117 +1.907556 1.907556 1.458117 +2.181521 1.907556 1.458117 +2.494678 1.907556 1.458117 +2.852659 1.907556 1.458117 +3.261896 1.907556 1.458117 +3.729748 1.907556 1.458117 +4.264621 1.907556 1.458117 +4.876131 1.907556 1.458117 +5.575266 1.907556 1.458117 +6.374593 1.907556 1.458117 +0 2.181521 1.458117 +0 2.181521 1.458117 +0 2.181521 1.458117 +0.002268731 2.181521 1.458117 +0.07076883 2.181521 1.458117 +0.1119241 2.181521 1.458117 +0.1475052 2.181521 1.458117 +0.1846606 2.181521 1.458117 +0.2245119 2.181521 1.458117 +0.2679612 2.181521 1.458117 +0.3158431 2.181521 1.458117 +0.3689944 2.181521 1.458117 +0.4282948 2.181521 1.458117 +0.494694 2.181521 1.458117 +0.5692344 2.181521 1.458117 +0.6530715 2.181521 1.458117 +0.7474945 2.181521 1.458117 +0.8539475 2.181521 1.458117 +0.974052 2.181521 1.458117 +1.113885 2.181521 1.458117 +1.27456 2.181521 1.458117 +1.458117 2.181521 1.458117 +1.667858 2.181521 1.458117 +1.907556 2.181521 1.458117 +2.181521 2.181521 1.458117 +2.494678 2.181521 1.458117 +2.852659 2.181521 1.458117 +3.261896 2.181521 1.458117 +3.729748 2.181521 1.458117 +4.264621 2.181521 1.458117 +4.876131 2.181521 1.458117 +5.575266 2.181521 1.458117 +6.374593 2.181521 1.458117 +0 2.494678 1.458117 +0 2.494678 1.458117 +0 2.494678 1.458117 +0.002268731 2.494678 1.458117 +0.07076883 2.494678 1.458117 +0.1119241 2.494678 1.458117 +0.1475052 2.494678 1.458117 +0.1846606 2.494678 1.458117 +0.2245119 2.494678 1.458117 +0.2679612 2.494678 1.458117 +0.3158431 2.494678 1.458117 +0.3689944 2.494678 1.458117 +0.4282948 2.494678 1.458117 +0.494694 2.494678 1.458117 +0.5692344 2.494678 1.458117 +0.6530715 2.494678 1.458117 +0.7474945 2.494678 1.458117 +0.8539475 2.494678 1.458117 +0.974052 2.494678 1.458117 +1.113885 2.494678 1.458117 +1.27456 2.494678 1.458117 +1.458117 2.494678 1.458117 +1.667858 2.494678 1.458117 +1.907556 2.494678 1.458117 +2.181521 2.494678 1.458117 +2.494678 2.494678 1.458117 +2.852659 2.494678 1.458117 +3.261896 2.494678 1.458117 +3.729748 2.494678 1.458117 +4.264621 2.494678 1.458117 +4.876131 2.494678 1.458117 +5.575266 2.494678 1.458117 +6.374593 2.494678 1.458117 +0 2.852659 1.458117 +0 2.852659 1.458117 +0 2.852659 1.458117 +0.002268731 2.852659 1.458117 +0.07076883 2.852659 1.458117 +0.1119241 2.852659 1.458117 +0.1475052 2.852659 1.458117 +0.1846606 2.852659 1.458117 +0.2245119 2.852659 1.458117 +0.2679612 2.852659 1.458117 +0.3158431 2.852659 1.458117 +0.3689944 2.852659 1.458117 +0.4282948 2.852659 1.458117 +0.494694 2.852659 1.458117 +0.5692344 2.852659 1.458117 +0.6530715 2.852659 1.458117 +0.7474945 2.852659 1.458117 +0.8539475 2.852659 1.458117 +0.974052 2.852659 1.458117 +1.113885 2.852659 1.458117 +1.27456 2.852659 1.458117 +1.458117 2.852659 1.458117 +1.667858 2.852659 1.458117 +1.907556 2.852659 1.458117 +2.181521 2.852659 1.458117 +2.494678 2.852659 1.458117 +2.852659 2.852659 1.458117 +3.261896 2.852659 1.458117 +3.729748 2.852659 1.458117 +4.264621 2.852659 1.458117 +4.876131 2.852659 1.458117 +5.575266 2.852659 1.458117 +6.374593 2.852659 1.458117 +0 3.261896 1.458117 +0 3.261896 1.458117 +0 3.261896 1.458117 +0.002268731 3.261896 1.458117 +0.07076883 3.261896 1.458117 +0.1119241 3.261896 1.458117 +0.1475052 3.261896 1.458117 +0.1846606 3.261896 1.458117 +0.2245119 3.261896 1.458117 +0.2679612 3.261896 1.458117 +0.3158431 3.261896 1.458117 +0.3689944 3.261896 1.458117 +0.4282948 3.261896 1.458117 +0.494694 3.261896 1.458117 +0.5692344 3.261896 1.458117 +0.6530715 3.261896 1.458117 +0.7474945 3.261896 1.458117 +0.8539475 3.261896 1.458117 +0.974052 3.261896 1.458117 +1.113885 3.261896 1.458117 +1.27456 3.261896 1.458117 +1.458117 3.261896 1.458117 +1.667858 3.261896 1.458117 +1.907556 3.261896 1.458117 +2.181521 3.261896 1.458117 +2.494678 3.261896 1.458117 +2.852659 3.261896 1.458117 +3.261896 3.261896 1.458117 +3.729748 3.261896 1.458117 +4.264621 3.261896 1.458117 +4.876131 3.261896 1.458117 +5.575266 3.261896 1.458117 +6.374593 3.261896 1.458117 +0 3.729748 1.458117 +0 3.729748 1.458117 +0 3.729748 1.458117 +0.002268731 3.729748 1.458117 +0.07076883 3.729748 1.458117 +0.1119241 3.729748 1.458117 +0.1475052 3.729748 1.458117 +0.1846606 3.729748 1.458117 +0.2245119 3.729748 1.458117 +0.2679612 3.729748 1.458117 +0.3158431 3.729748 1.458117 +0.3689944 3.729748 1.458117 +0.4282948 3.729748 1.458117 +0.494694 3.729748 1.458117 +0.5692344 3.729748 1.458117 +0.6530715 3.729748 1.458117 +0.7474945 3.729748 1.458117 +0.8539475 3.729748 1.458117 +0.974052 3.729748 1.458117 +1.113885 3.729748 1.458117 +1.27456 3.729748 1.458117 +1.458117 3.729748 1.458117 +1.667858 3.729748 1.458117 +1.907556 3.729748 1.458117 +2.181521 3.729748 1.458117 +2.494678 3.729748 1.458117 +2.852659 3.729748 1.458117 +3.261896 3.729748 1.458117 +3.729748 3.729748 1.458117 +4.264621 3.729748 1.458117 +4.876131 3.729748 1.458117 +5.575266 3.729748 1.458117 +6.374593 3.729748 1.458117 +0 4.264621 1.458117 +0 4.264621 1.458117 +0 4.264621 1.458117 +0.002268731 4.264621 1.458117 +0.07076883 4.264621 1.458117 +0.1119241 4.264621 1.458117 +0.1475052 4.264621 1.458117 +0.1846606 4.264621 1.458117 +0.2245119 4.264621 1.458117 +0.2679612 4.264621 1.458117 +0.3158431 4.264621 1.458117 +0.3689944 4.264621 1.458117 +0.4282948 4.264621 1.458117 +0.494694 4.264621 1.458117 +0.5692344 4.264621 1.458117 +0.6530715 4.264621 1.458117 +0.7474945 4.264621 1.458117 +0.8539475 4.264621 1.458117 +0.974052 4.264621 1.458117 +1.113885 4.264621 1.458117 +1.27456 4.264621 1.458117 +1.458117 4.264621 1.458117 +1.667858 4.264621 1.458117 +1.907556 4.264621 1.458117 +2.181521 4.264621 1.458117 +2.494678 4.264621 1.458117 +2.852659 4.264621 1.458117 +3.261896 4.264621 1.458117 +3.729748 4.264621 1.458117 +4.264621 4.264621 1.458117 +4.876131 4.264621 1.458117 +5.575266 4.264621 1.458117 +6.374593 4.264621 1.458117 +0 4.876131 1.458117 +0 4.876131 1.458117 +0 4.876131 1.458117 +0.002268731 4.876131 1.458117 +0.07076883 4.876131 1.458117 +0.1119241 4.876131 1.458117 +0.1475052 4.876131 1.458117 +0.1846606 4.876131 1.458117 +0.2245119 4.876131 1.458117 +0.2679612 4.876131 1.458117 +0.3158431 4.876131 1.458117 +0.3689944 4.876131 1.458117 +0.4282948 4.876131 1.458117 +0.494694 4.876131 1.458117 +0.5692344 4.876131 1.458117 +0.6530715 4.876131 1.458117 +0.7474945 4.876131 1.458117 +0.8539475 4.876131 1.458117 +0.974052 4.876131 1.458117 +1.113885 4.876131 1.458117 +1.27456 4.876131 1.458117 +1.458117 4.876131 1.458117 +1.667858 4.876131 1.458117 +1.907556 4.876131 1.458117 +2.181521 4.876131 1.458117 +2.494678 4.876131 1.458117 +2.852659 4.876131 1.458117 +3.261896 4.876131 1.458117 +3.729748 4.876131 1.458117 +4.264621 4.876131 1.458117 +4.876131 4.876131 1.458117 +5.575266 4.876131 1.458117 +6.374593 4.876131 1.458117 +0 5.575266 1.458117 +0 5.575266 1.458117 +0 5.575266 1.458117 +0.002268731 5.575266 1.458117 +0.07076883 5.575266 1.458117 +0.1119241 5.575266 1.458117 +0.1475052 5.575266 1.458117 +0.1846606 5.575266 1.458117 +0.2245119 5.575266 1.458117 +0.2679612 5.575266 1.458117 +0.3158431 5.575266 1.458117 +0.3689944 5.575266 1.458117 +0.4282948 5.575266 1.458117 +0.494694 5.575266 1.458117 +0.5692344 5.575266 1.458117 +0.6530715 5.575266 1.458117 +0.7474945 5.575266 1.458117 +0.8539475 5.575266 1.458117 +0.974052 5.575266 1.458117 +1.113885 5.575266 1.458117 +1.27456 5.575266 1.458117 +1.458117 5.575266 1.458117 +1.667858 5.575266 1.458117 +1.907556 5.575266 1.458117 +2.181521 5.575266 1.458117 +2.494678 5.575266 1.458117 +2.852659 5.575266 1.458117 +3.261896 5.575266 1.458117 +3.729748 5.575266 1.458117 +4.264621 5.575266 1.458117 +4.876131 5.575266 1.458117 +5.575266 5.575266 1.458117 +6.374593 5.575266 1.458117 +0 6.374593 1.458117 +0 6.374593 1.458117 +0 6.374593 1.458117 +0.002268731 6.374593 1.458117 +0.07076883 6.374593 1.458117 +0.1119241 6.374593 1.458117 +0.1475052 6.374593 1.458117 +0.1846606 6.374593 1.458117 +0.2245119 6.374593 1.458117 +0.2679612 6.374593 1.458117 +0.3158431 6.374593 1.458117 +0.3689944 6.374593 1.458117 +0.4282948 6.374593 1.458117 +0.494694 6.374593 1.458117 +0.5692344 6.374593 1.458117 +0.6530715 6.374593 1.458117 +0.7474945 6.374593 1.458117 +0.8539475 6.374593 1.458117 +0.974052 6.374593 1.458117 +1.113885 6.374593 1.458117 +1.27456 6.374593 1.458117 +1.458117 6.374593 1.458117 +1.667858 6.374593 1.458117 +1.907556 6.374593 1.458117 +2.181521 6.374593 1.458117 +2.494678 6.374593 1.458117 +2.852659 6.374593 1.458117 +3.261896 6.374593 1.458117 +3.729748 6.374593 1.458117 +4.264621 6.374593 1.458117 +4.876131 6.374593 1.458117 +5.575266 6.374593 1.458117 +6.374593 6.374593 1.458117 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0.002268731 1.667858 +0 0.002268731 1.667858 +0 0.002268731 1.667858 +0.002268731 0.002268731 1.667858 +0.07076883 0.002268731 1.667858 +0.1119241 0.002268731 1.667858 +0.1475052 0.002268731 1.667858 +0.1846606 0.002268731 1.667858 +0.2245119 0.002268731 1.667858 +0.2679612 0.002268731 1.667858 +0.3158431 0.002268731 1.667858 +0.3689944 0.002268731 1.667858 +0.4282948 0.002268731 1.667858 +0.494694 0.002268731 1.667858 +0.5692344 0.002268731 1.667858 +0.6530715 0.002268731 1.667858 +0.7474945 0.002268731 1.667858 +0.8539475 0.002268731 1.667858 +0.974052 0.002268731 1.667858 +1.113885 0.002268731 1.667858 +1.27456 0.002268731 1.667858 +1.458117 0.002268731 1.667858 +1.667858 0.002268731 1.667858 +1.907556 0.002268731 1.667858 +2.181521 0.002268731 1.667858 +2.494678 0.002268731 1.667858 +2.852659 0.002268731 1.667858 +3.261896 0.002268731 1.667858 +3.729748 0.002268731 1.667858 +4.264621 0.002268731 1.667858 +4.876131 0.002268731 1.667858 +5.575266 0.002268731 1.667858 +6.374593 0.002268731 1.667858 +0 0.07076883 1.667858 +0 0.07076883 1.667858 +0 0.07076883 1.667858 +0.002268731 0.07076883 1.667858 +0.07076883 0.07076883 1.667858 +0.1119241 0.07076883 1.667858 +0.1475052 0.07076883 1.667858 +0.1846606 0.07076883 1.667858 +0.2245119 0.07076883 1.667858 +0.2679612 0.07076883 1.667858 +0.3158431 0.07076883 1.667858 +0.3689944 0.07076883 1.667858 +0.4282948 0.07076883 1.667858 +0.494694 0.07076883 1.667858 +0.5692344 0.07076883 1.667858 +0.6530715 0.07076883 1.667858 +0.7474945 0.07076883 1.667858 +0.8539475 0.07076883 1.667858 +0.974052 0.07076883 1.667858 +1.113885 0.07076883 1.667858 +1.27456 0.07076883 1.667858 +1.458117 0.07076883 1.667858 +1.667858 0.07076883 1.667858 +1.907556 0.07076883 1.667858 +2.181521 0.07076883 1.667858 +2.494678 0.07076883 1.667858 +2.852659 0.07076883 1.667858 +3.261896 0.07076883 1.667858 +3.729748 0.07076883 1.667858 +4.264621 0.07076883 1.667858 +4.876131 0.07076883 1.667858 +5.575266 0.07076883 1.667858 +6.374593 0.07076883 1.667858 +0 0.1119241 1.667858 +0 0.1119241 1.667858 +0 0.1119241 1.667858 +0.002268731 0.1119241 1.667858 +0.07076883 0.1119241 1.667858 +0.1119241 0.1119241 1.667858 +0.1475052 0.1119241 1.667858 +0.1846606 0.1119241 1.667858 +0.2245119 0.1119241 1.667858 +0.2679612 0.1119241 1.667858 +0.3158431 0.1119241 1.667858 +0.3689944 0.1119241 1.667858 +0.4282948 0.1119241 1.667858 +0.494694 0.1119241 1.667858 +0.5692344 0.1119241 1.667858 +0.6530715 0.1119241 1.667858 +0.7474945 0.1119241 1.667858 +0.8539475 0.1119241 1.667858 +0.974052 0.1119241 1.667858 +1.113885 0.1119241 1.667858 +1.27456 0.1119241 1.667858 +1.458117 0.1119241 1.667858 +1.667858 0.1119241 1.667858 +1.907556 0.1119241 1.667858 +2.181521 0.1119241 1.667858 +2.494678 0.1119241 1.667858 +2.852659 0.1119241 1.667858 +3.261896 0.1119241 1.667858 +3.729748 0.1119241 1.667858 +4.264621 0.1119241 1.667858 +4.876131 0.1119241 1.667858 +5.575266 0.1119241 1.667858 +6.374593 0.1119241 1.667858 +0 0.1475052 1.667858 +0 0.1475052 1.667858 +0 0.1475052 1.667858 +0.002268731 0.1475052 1.667858 +0.07076883 0.1475052 1.667858 +0.1119241 0.1475052 1.667858 +0.1475052 0.1475052 1.667858 +0.1846606 0.1475052 1.667858 +0.2245119 0.1475052 1.667858 +0.2679612 0.1475052 1.667858 +0.3158431 0.1475052 1.667858 +0.3689944 0.1475052 1.667858 +0.4282948 0.1475052 1.667858 +0.494694 0.1475052 1.667858 +0.5692344 0.1475052 1.667858 +0.6530715 0.1475052 1.667858 +0.7474945 0.1475052 1.667858 +0.8539475 0.1475052 1.667858 +0.974052 0.1475052 1.667858 +1.113885 0.1475052 1.667858 +1.27456 0.1475052 1.667858 +1.458117 0.1475052 1.667858 +1.667858 0.1475052 1.667858 +1.907556 0.1475052 1.667858 +2.181521 0.1475052 1.667858 +2.494678 0.1475052 1.667858 +2.852659 0.1475052 1.667858 +3.261896 0.1475052 1.667858 +3.729748 0.1475052 1.667858 +4.264621 0.1475052 1.667858 +4.876131 0.1475052 1.667858 +5.575266 0.1475052 1.667858 +6.374593 0.1475052 1.667858 +0 0.1846606 1.667858 +0 0.1846606 1.667858 +0 0.1846606 1.667858 +0.002268731 0.1846606 1.667858 +0.07076883 0.1846606 1.667858 +0.1119241 0.1846606 1.667858 +0.1475052 0.1846606 1.667858 +0.1846606 0.1846606 1.667858 +0.2245119 0.1846606 1.667858 +0.2679612 0.1846606 1.667858 +0.3158431 0.1846606 1.667858 +0.3689944 0.1846606 1.667858 +0.4282948 0.1846606 1.667858 +0.494694 0.1846606 1.667858 +0.5692344 0.1846606 1.667858 +0.6530715 0.1846606 1.667858 +0.7474945 0.1846606 1.667858 +0.8539475 0.1846606 1.667858 +0.974052 0.1846606 1.667858 +1.113885 0.1846606 1.667858 +1.27456 0.1846606 1.667858 +1.458117 0.1846606 1.667858 +1.667858 0.1846606 1.667858 +1.907556 0.1846606 1.667858 +2.181521 0.1846606 1.667858 +2.494678 0.1846606 1.667858 +2.852659 0.1846606 1.667858 +3.261896 0.1846606 1.667858 +3.729748 0.1846606 1.667858 +4.264621 0.1846606 1.667858 +4.876131 0.1846606 1.667858 +5.575266 0.1846606 1.667858 +6.374593 0.1846606 1.667858 +0 0.2245119 1.667858 +0 0.2245119 1.667858 +0 0.2245119 1.667858 +0.002268731 0.2245119 1.667858 +0.07076883 0.2245119 1.667858 +0.1119241 0.2245119 1.667858 +0.1475052 0.2245119 1.667858 +0.1846606 0.2245119 1.667858 +0.2245119 0.2245119 1.667858 +0.2679612 0.2245119 1.667858 +0.3158431 0.2245119 1.667858 +0.3689944 0.2245119 1.667858 +0.4282948 0.2245119 1.667858 +0.494694 0.2245119 1.667858 +0.5692344 0.2245119 1.667858 +0.6530715 0.2245119 1.667858 +0.7474945 0.2245119 1.667858 +0.8539475 0.2245119 1.667858 +0.974052 0.2245119 1.667858 +1.113885 0.2245119 1.667858 +1.27456 0.2245119 1.667858 +1.458117 0.2245119 1.667858 +1.667858 0.2245119 1.667858 +1.907556 0.2245119 1.667858 +2.181521 0.2245119 1.667858 +2.494678 0.2245119 1.667858 +2.852659 0.2245119 1.667858 +3.261896 0.2245119 1.667858 +3.729748 0.2245119 1.667858 +4.264621 0.2245119 1.667858 +4.876131 0.2245119 1.667858 +5.575266 0.2245119 1.667858 +6.374593 0.2245119 1.667858 +0 0.2679612 1.667858 +0 0.2679612 1.667858 +0 0.2679612 1.667858 +0.002268731 0.2679612 1.667858 +0.07076883 0.2679612 1.667858 +0.1119241 0.2679612 1.667858 +0.1475052 0.2679612 1.667858 +0.1846606 0.2679612 1.667858 +0.2245119 0.2679612 1.667858 +0.2679612 0.2679612 1.667858 +0.3158431 0.2679612 1.667858 +0.3689944 0.2679612 1.667858 +0.4282948 0.2679612 1.667858 +0.494694 0.2679612 1.667858 +0.5692344 0.2679612 1.667858 +0.6530715 0.2679612 1.667858 +0.7474945 0.2679612 1.667858 +0.8539475 0.2679612 1.667858 +0.974052 0.2679612 1.667858 +1.113885 0.2679612 1.667858 +1.27456 0.2679612 1.667858 +1.458117 0.2679612 1.667858 +1.667858 0.2679612 1.667858 +1.907556 0.2679612 1.667858 +2.181521 0.2679612 1.667858 +2.494678 0.2679612 1.667858 +2.852659 0.2679612 1.667858 +3.261896 0.2679612 1.667858 +3.729748 0.2679612 1.667858 +4.264621 0.2679612 1.667858 +4.876131 0.2679612 1.667858 +5.575266 0.2679612 1.667858 +6.374593 0.2679612 1.667858 +0 0.3158431 1.667858 +0 0.3158431 1.667858 +0 0.3158431 1.667858 +0.002268731 0.3158431 1.667858 +0.07076883 0.3158431 1.667858 +0.1119241 0.3158431 1.667858 +0.1475052 0.3158431 1.667858 +0.1846606 0.3158431 1.667858 +0.2245119 0.3158431 1.667858 +0.2679612 0.3158431 1.667858 +0.3158431 0.3158431 1.667858 +0.3689944 0.3158431 1.667858 +0.4282948 0.3158431 1.667858 +0.494694 0.3158431 1.667858 +0.5692344 0.3158431 1.667858 +0.6530715 0.3158431 1.667858 +0.7474945 0.3158431 1.667858 +0.8539475 0.3158431 1.667858 +0.974052 0.3158431 1.667858 +1.113885 0.3158431 1.667858 +1.27456 0.3158431 1.667858 +1.458117 0.3158431 1.667858 +1.667858 0.3158431 1.667858 +1.907556 0.3158431 1.667858 +2.181521 0.3158431 1.667858 +2.494678 0.3158431 1.667858 +2.852659 0.3158431 1.667858 +3.261896 0.3158431 1.667858 +3.729748 0.3158431 1.667858 +4.264621 0.3158431 1.667858 +4.876131 0.3158431 1.667858 +5.575266 0.3158431 1.667858 +6.374593 0.3158431 1.667858 +0 0.3689944 1.667858 +0 0.3689944 1.667858 +0 0.3689944 1.667858 +0.002268731 0.3689944 1.667858 +0.07076883 0.3689944 1.667858 +0.1119241 0.3689944 1.667858 +0.1475052 0.3689944 1.667858 +0.1846606 0.3689944 1.667858 +0.2245119 0.3689944 1.667858 +0.2679612 0.3689944 1.667858 +0.3158431 0.3689944 1.667858 +0.3689944 0.3689944 1.667858 +0.4282948 0.3689944 1.667858 +0.494694 0.3689944 1.667858 +0.5692344 0.3689944 1.667858 +0.6530715 0.3689944 1.667858 +0.7474945 0.3689944 1.667858 +0.8539475 0.3689944 1.667858 +0.974052 0.3689944 1.667858 +1.113885 0.3689944 1.667858 +1.27456 0.3689944 1.667858 +1.458117 0.3689944 1.667858 +1.667858 0.3689944 1.667858 +1.907556 0.3689944 1.667858 +2.181521 0.3689944 1.667858 +2.494678 0.3689944 1.667858 +2.852659 0.3689944 1.667858 +3.261896 0.3689944 1.667858 +3.729748 0.3689944 1.667858 +4.264621 0.3689944 1.667858 +4.876131 0.3689944 1.667858 +5.575266 0.3689944 1.667858 +6.374593 0.3689944 1.667858 +0 0.4282948 1.667858 +0 0.4282948 1.667858 +0 0.4282948 1.667858 +0.002268731 0.4282948 1.667858 +0.07076883 0.4282948 1.667858 +0.1119241 0.4282948 1.667858 +0.1475052 0.4282948 1.667858 +0.1846606 0.4282948 1.667858 +0.2245119 0.4282948 1.667858 +0.2679612 0.4282948 1.667858 +0.3158431 0.4282948 1.667858 +0.3689944 0.4282948 1.667858 +0.4282948 0.4282948 1.667858 +0.494694 0.4282948 1.667858 +0.5692344 0.4282948 1.667858 +0.6530715 0.4282948 1.667858 +0.7474945 0.4282948 1.667858 +0.8539475 0.4282948 1.667858 +0.974052 0.4282948 1.667858 +1.113885 0.4282948 1.667858 +1.27456 0.4282948 1.667858 +1.458117 0.4282948 1.667858 +1.667858 0.4282948 1.667858 +1.907556 0.4282948 1.667858 +2.181521 0.4282948 1.667858 +2.494678 0.4282948 1.667858 +2.852659 0.4282948 1.667858 +3.261896 0.4282948 1.667858 +3.729748 0.4282948 1.667858 +4.264621 0.4282948 1.667858 +4.876131 0.4282948 1.667858 +5.575266 0.4282948 1.667858 +6.374593 0.4282948 1.667858 +0 0.494694 1.667858 +0 0.494694 1.667858 +0 0.494694 1.667858 +0.002268731 0.494694 1.667858 +0.07076883 0.494694 1.667858 +0.1119241 0.494694 1.667858 +0.1475052 0.494694 1.667858 +0.1846606 0.494694 1.667858 +0.2245119 0.494694 1.667858 +0.2679612 0.494694 1.667858 +0.3158431 0.494694 1.667858 +0.3689944 0.494694 1.667858 +0.4282948 0.494694 1.667858 +0.494694 0.494694 1.667858 +0.5692344 0.494694 1.667858 +0.6530715 0.494694 1.667858 +0.7474945 0.494694 1.667858 +0.8539475 0.494694 1.667858 +0.974052 0.494694 1.667858 +1.113885 0.494694 1.667858 +1.27456 0.494694 1.667858 +1.458117 0.494694 1.667858 +1.667858 0.494694 1.667858 +1.907556 0.494694 1.667858 +2.181521 0.494694 1.667858 +2.494678 0.494694 1.667858 +2.852659 0.494694 1.667858 +3.261896 0.494694 1.667858 +3.729748 0.494694 1.667858 +4.264621 0.494694 1.667858 +4.876131 0.494694 1.667858 +5.575266 0.494694 1.667858 +6.374593 0.494694 1.667858 +0 0.5692344 1.667858 +0 0.5692344 1.667858 +0 0.5692344 1.667858 +0.002268731 0.5692344 1.667858 +0.07076883 0.5692344 1.667858 +0.1119241 0.5692344 1.667858 +0.1475052 0.5692344 1.667858 +0.1846606 0.5692344 1.667858 +0.2245119 0.5692344 1.667858 +0.2679612 0.5692344 1.667858 +0.3158431 0.5692344 1.667858 +0.3689944 0.5692344 1.667858 +0.4282948 0.5692344 1.667858 +0.494694 0.5692344 1.667858 +0.5692344 0.5692344 1.667858 +0.6530715 0.5692344 1.667858 +0.7474945 0.5692344 1.667858 +0.8539475 0.5692344 1.667858 +0.974052 0.5692344 1.667858 +1.113885 0.5692344 1.667858 +1.27456 0.5692344 1.667858 +1.458117 0.5692344 1.667858 +1.667858 0.5692344 1.667858 +1.907556 0.5692344 1.667858 +2.181521 0.5692344 1.667858 +2.494678 0.5692344 1.667858 +2.852659 0.5692344 1.667858 +3.261896 0.5692344 1.667858 +3.729748 0.5692344 1.667858 +4.264621 0.5692344 1.667858 +4.876131 0.5692344 1.667858 +5.575266 0.5692344 1.667858 +6.374593 0.5692344 1.667858 +0 0.6530715 1.667858 +0 0.6530715 1.667858 +0 0.6530715 1.667858 +0.002268731 0.6530715 1.667858 +0.07076883 0.6530715 1.667858 +0.1119241 0.6530715 1.667858 +0.1475052 0.6530715 1.667858 +0.1846606 0.6530715 1.667858 +0.2245119 0.6530715 1.667858 +0.2679612 0.6530715 1.667858 +0.3158431 0.6530715 1.667858 +0.3689944 0.6530715 1.667858 +0.4282948 0.6530715 1.667858 +0.494694 0.6530715 1.667858 +0.5692344 0.6530715 1.667858 +0.6530715 0.6530715 1.667858 +0.7474945 0.6530715 1.667858 +0.8539475 0.6530715 1.667858 +0.974052 0.6530715 1.667858 +1.113885 0.6530715 1.667858 +1.27456 0.6530715 1.667858 +1.458117 0.6530715 1.667858 +1.667858 0.6530715 1.667858 +1.907556 0.6530715 1.667858 +2.181521 0.6530715 1.667858 +2.494678 0.6530715 1.667858 +2.852659 0.6530715 1.667858 +3.261896 0.6530715 1.667858 +3.729748 0.6530715 1.667858 +4.264621 0.6530715 1.667858 +4.876131 0.6530715 1.667858 +5.575266 0.6530715 1.667858 +6.374593 0.6530715 1.667858 +0 0.7474945 1.667858 +0 0.7474945 1.667858 +0 0.7474945 1.667858 +0.002268731 0.7474945 1.667858 +0.07076883 0.7474945 1.667858 +0.1119241 0.7474945 1.667858 +0.1475052 0.7474945 1.667858 +0.1846606 0.7474945 1.667858 +0.2245119 0.7474945 1.667858 +0.2679612 0.7474945 1.667858 +0.3158431 0.7474945 1.667858 +0.3689944 0.7474945 1.667858 +0.4282948 0.7474945 1.667858 +0.494694 0.7474945 1.667858 +0.5692344 0.7474945 1.667858 +0.6530715 0.7474945 1.667858 +0.7474945 0.7474945 1.667858 +0.8539475 0.7474945 1.667858 +0.974052 0.7474945 1.667858 +1.113885 0.7474945 1.667858 +1.27456 0.7474945 1.667858 +1.458117 0.7474945 1.667858 +1.667858 0.7474945 1.667858 +1.907556 0.7474945 1.667858 +2.181521 0.7474945 1.667858 +2.494678 0.7474945 1.667858 +2.852659 0.7474945 1.667858 +3.261896 0.7474945 1.667858 +3.729748 0.7474945 1.667858 +4.264621 0.7474945 1.667858 +4.876131 0.7474945 1.667858 +5.575266 0.7474945 1.667858 +6.374593 0.7474945 1.667858 +0 0.8539475 1.667858 +0 0.8539475 1.667858 +0 0.8539475 1.667858 +0.002268731 0.8539475 1.667858 +0.07076883 0.8539475 1.667858 +0.1119241 0.8539475 1.667858 +0.1475052 0.8539475 1.667858 +0.1846606 0.8539475 1.667858 +0.2245119 0.8539475 1.667858 +0.2679612 0.8539475 1.667858 +0.3158431 0.8539475 1.667858 +0.3689944 0.8539475 1.667858 +0.4282948 0.8539475 1.667858 +0.494694 0.8539475 1.667858 +0.5692344 0.8539475 1.667858 +0.6530715 0.8539475 1.667858 +0.7474945 0.8539475 1.667858 +0.8539475 0.8539475 1.667858 +0.974052 0.8539475 1.667858 +1.113885 0.8539475 1.667858 +1.27456 0.8539475 1.667858 +1.458117 0.8539475 1.667858 +1.667858 0.8539475 1.667858 +1.907556 0.8539475 1.667858 +2.181521 0.8539475 1.667858 +2.494678 0.8539475 1.667858 +2.852659 0.8539475 1.667858 +3.261896 0.8539475 1.667858 +3.729748 0.8539475 1.667858 +4.264621 0.8539475 1.667858 +4.876131 0.8539475 1.667858 +5.575266 0.8539475 1.667858 +6.374593 0.8539475 1.667858 +0 0.974052 1.667858 +0 0.974052 1.667858 +0 0.974052 1.667858 +0.002268731 0.974052 1.667858 +0.07076883 0.974052 1.667858 +0.1119241 0.974052 1.667858 +0.1475052 0.974052 1.667858 +0.1846606 0.974052 1.667858 +0.2245119 0.974052 1.667858 +0.2679612 0.974052 1.667858 +0.3158431 0.974052 1.667858 +0.3689944 0.974052 1.667858 +0.4282948 0.974052 1.667858 +0.494694 0.974052 1.667858 +0.5692344 0.974052 1.667858 +0.6530715 0.974052 1.667858 +0.7474945 0.974052 1.667858 +0.8539475 0.974052 1.667858 +0.974052 0.974052 1.667858 +1.113885 0.974052 1.667858 +1.27456 0.974052 1.667858 +1.458117 0.974052 1.667858 +1.667858 0.974052 1.667858 +1.907556 0.974052 1.667858 +2.181521 0.974052 1.667858 +2.494678 0.974052 1.667858 +2.852659 0.974052 1.667858 +3.261896 0.974052 1.667858 +3.729748 0.974052 1.667858 +4.264621 0.974052 1.667858 +4.876131 0.974052 1.667858 +5.575266 0.974052 1.667858 +6.374593 0.974052 1.667858 +0 1.113885 1.667858 +0 1.113885 1.667858 +0 1.113885 1.667858 +0.002268731 1.113885 1.667858 +0.07076883 1.113885 1.667858 +0.1119241 1.113885 1.667858 +0.1475052 1.113885 1.667858 +0.1846606 1.113885 1.667858 +0.2245119 1.113885 1.667858 +0.2679612 1.113885 1.667858 +0.3158431 1.113885 1.667858 +0.3689944 1.113885 1.667858 +0.4282948 1.113885 1.667858 +0.494694 1.113885 1.667858 +0.5692344 1.113885 1.667858 +0.6530715 1.113885 1.667858 +0.7474945 1.113885 1.667858 +0.8539475 1.113885 1.667858 +0.974052 1.113885 1.667858 +1.113885 1.113885 1.667858 +1.27456 1.113885 1.667858 +1.458117 1.113885 1.667858 +1.667858 1.113885 1.667858 +1.907556 1.113885 1.667858 +2.181521 1.113885 1.667858 +2.494678 1.113885 1.667858 +2.852659 1.113885 1.667858 +3.261896 1.113885 1.667858 +3.729748 1.113885 1.667858 +4.264621 1.113885 1.667858 +4.876131 1.113885 1.667858 +5.575266 1.113885 1.667858 +6.374593 1.113885 1.667858 +0 1.27456 1.667858 +0 1.27456 1.667858 +0 1.27456 1.667858 +0.002268731 1.27456 1.667858 +0.07076883 1.27456 1.667858 +0.1119241 1.27456 1.667858 +0.1475052 1.27456 1.667858 +0.1846606 1.27456 1.667858 +0.2245119 1.27456 1.667858 +0.2679612 1.27456 1.667858 +0.3158431 1.27456 1.667858 +0.3689944 1.27456 1.667858 +0.4282948 1.27456 1.667858 +0.494694 1.27456 1.667858 +0.5692344 1.27456 1.667858 +0.6530715 1.27456 1.667858 +0.7474945 1.27456 1.667858 +0.8539475 1.27456 1.667858 +0.974052 1.27456 1.667858 +1.113885 1.27456 1.667858 +1.27456 1.27456 1.667858 +1.458117 1.27456 1.667858 +1.667858 1.27456 1.667858 +1.907556 1.27456 1.667858 +2.181521 1.27456 1.667858 +2.494678 1.27456 1.667858 +2.852659 1.27456 1.667858 +3.261896 1.27456 1.667858 +3.729748 1.27456 1.667858 +4.264621 1.27456 1.667858 +4.876131 1.27456 1.667858 +5.575266 1.27456 1.667858 +6.374593 1.27456 1.667858 +0 1.458117 1.667858 +0 1.458117 1.667858 +0 1.458117 1.667858 +0.002268731 1.458117 1.667858 +0.07076883 1.458117 1.667858 +0.1119241 1.458117 1.667858 +0.1475052 1.458117 1.667858 +0.1846606 1.458117 1.667858 +0.2245119 1.458117 1.667858 +0.2679612 1.458117 1.667858 +0.3158431 1.458117 1.667858 +0.3689944 1.458117 1.667858 +0.4282948 1.458117 1.667858 +0.494694 1.458117 1.667858 +0.5692344 1.458117 1.667858 +0.6530715 1.458117 1.667858 +0.7474945 1.458117 1.667858 +0.8539475 1.458117 1.667858 +0.974052 1.458117 1.667858 +1.113885 1.458117 1.667858 +1.27456 1.458117 1.667858 +1.458117 1.458117 1.667858 +1.667858 1.458117 1.667858 +1.907556 1.458117 1.667858 +2.181521 1.458117 1.667858 +2.494678 1.458117 1.667858 +2.852659 1.458117 1.667858 +3.261896 1.458117 1.667858 +3.729748 1.458117 1.667858 +4.264621 1.458117 1.667858 +4.876131 1.458117 1.667858 +5.575266 1.458117 1.667858 +6.374593 1.458117 1.667858 +0 1.667858 1.667858 +0 1.667858 1.667858 +0 1.667858 1.667858 +0.002268731 1.667858 1.667858 +0.07076883 1.667858 1.667858 +0.1119241 1.667858 1.667858 +0.1475052 1.667858 1.667858 +0.1846606 1.667858 1.667858 +0.2245119 1.667858 1.667858 +0.2679612 1.667858 1.667858 +0.3158431 1.667858 1.667858 +0.3689944 1.667858 1.667858 +0.4282948 1.667858 1.667858 +0.494694 1.667858 1.667858 +0.5692344 1.667858 1.667858 +0.6530715 1.667858 1.667858 +0.7474945 1.667858 1.667858 +0.8539475 1.667858 1.667858 +0.974052 1.667858 1.667858 +1.113885 1.667858 1.667858 +1.27456 1.667858 1.667858 +1.458117 1.667858 1.667858 +1.667858 1.667858 1.667858 +1.907556 1.667858 1.667858 +2.181521 1.667858 1.667858 +2.494678 1.667858 1.667858 +2.852659 1.667858 1.667858 +3.261896 1.667858 1.667858 +3.729748 1.667858 1.667858 +4.264621 1.667858 1.667858 +4.876131 1.667858 1.667858 +5.575266 1.667858 1.667858 +6.374593 1.667858 1.667858 +0 1.907556 1.667858 +0 1.907556 1.667858 +0 1.907556 1.667858 +0.002268731 1.907556 1.667858 +0.07076883 1.907556 1.667858 +0.1119241 1.907556 1.667858 +0.1475052 1.907556 1.667858 +0.1846606 1.907556 1.667858 +0.2245119 1.907556 1.667858 +0.2679612 1.907556 1.667858 +0.3158431 1.907556 1.667858 +0.3689944 1.907556 1.667858 +0.4282948 1.907556 1.667858 +0.494694 1.907556 1.667858 +0.5692344 1.907556 1.667858 +0.6530715 1.907556 1.667858 +0.7474945 1.907556 1.667858 +0.8539475 1.907556 1.667858 +0.974052 1.907556 1.667858 +1.113885 1.907556 1.667858 +1.27456 1.907556 1.667858 +1.458117 1.907556 1.667858 +1.667858 1.907556 1.667858 +1.907556 1.907556 1.667858 +2.181521 1.907556 1.667858 +2.494678 1.907556 1.667858 +2.852659 1.907556 1.667858 +3.261896 1.907556 1.667858 +3.729748 1.907556 1.667858 +4.264621 1.907556 1.667858 +4.876131 1.907556 1.667858 +5.575266 1.907556 1.667858 +6.374593 1.907556 1.667858 +0 2.181521 1.667858 +0 2.181521 1.667858 +0 2.181521 1.667858 +0.002268731 2.181521 1.667858 +0.07076883 2.181521 1.667858 +0.1119241 2.181521 1.667858 +0.1475052 2.181521 1.667858 +0.1846606 2.181521 1.667858 +0.2245119 2.181521 1.667858 +0.2679612 2.181521 1.667858 +0.3158431 2.181521 1.667858 +0.3689944 2.181521 1.667858 +0.4282948 2.181521 1.667858 +0.494694 2.181521 1.667858 +0.5692344 2.181521 1.667858 +0.6530715 2.181521 1.667858 +0.7474945 2.181521 1.667858 +0.8539475 2.181521 1.667858 +0.974052 2.181521 1.667858 +1.113885 2.181521 1.667858 +1.27456 2.181521 1.667858 +1.458117 2.181521 1.667858 +1.667858 2.181521 1.667858 +1.907556 2.181521 1.667858 +2.181521 2.181521 1.667858 +2.494678 2.181521 1.667858 +2.852659 2.181521 1.667858 +3.261896 2.181521 1.667858 +3.729748 2.181521 1.667858 +4.264621 2.181521 1.667858 +4.876131 2.181521 1.667858 +5.575266 2.181521 1.667858 +6.374593 2.181521 1.667858 +0 2.494678 1.667858 +0 2.494678 1.667858 +0 2.494678 1.667858 +0.002268731 2.494678 1.667858 +0.07076883 2.494678 1.667858 +0.1119241 2.494678 1.667858 +0.1475052 2.494678 1.667858 +0.1846606 2.494678 1.667858 +0.2245119 2.494678 1.667858 +0.2679612 2.494678 1.667858 +0.3158431 2.494678 1.667858 +0.3689944 2.494678 1.667858 +0.4282948 2.494678 1.667858 +0.494694 2.494678 1.667858 +0.5692344 2.494678 1.667858 +0.6530715 2.494678 1.667858 +0.7474945 2.494678 1.667858 +0.8539475 2.494678 1.667858 +0.974052 2.494678 1.667858 +1.113885 2.494678 1.667858 +1.27456 2.494678 1.667858 +1.458117 2.494678 1.667858 +1.667858 2.494678 1.667858 +1.907556 2.494678 1.667858 +2.181521 2.494678 1.667858 +2.494678 2.494678 1.667858 +2.852659 2.494678 1.667858 +3.261896 2.494678 1.667858 +3.729748 2.494678 1.667858 +4.264621 2.494678 1.667858 +4.876131 2.494678 1.667858 +5.575266 2.494678 1.667858 +6.374593 2.494678 1.667858 +0 2.852659 1.667858 +0 2.852659 1.667858 +0 2.852659 1.667858 +0.002268731 2.852659 1.667858 +0.07076883 2.852659 1.667858 +0.1119241 2.852659 1.667858 +0.1475052 2.852659 1.667858 +0.1846606 2.852659 1.667858 +0.2245119 2.852659 1.667858 +0.2679612 2.852659 1.667858 +0.3158431 2.852659 1.667858 +0.3689944 2.852659 1.667858 +0.4282948 2.852659 1.667858 +0.494694 2.852659 1.667858 +0.5692344 2.852659 1.667858 +0.6530715 2.852659 1.667858 +0.7474945 2.852659 1.667858 +0.8539475 2.852659 1.667858 +0.974052 2.852659 1.667858 +1.113885 2.852659 1.667858 +1.27456 2.852659 1.667858 +1.458117 2.852659 1.667858 +1.667858 2.852659 1.667858 +1.907556 2.852659 1.667858 +2.181521 2.852659 1.667858 +2.494678 2.852659 1.667858 +2.852659 2.852659 1.667858 +3.261896 2.852659 1.667858 +3.729748 2.852659 1.667858 +4.264621 2.852659 1.667858 +4.876131 2.852659 1.667858 +5.575266 2.852659 1.667858 +6.374593 2.852659 1.667858 +0 3.261896 1.667858 +0 3.261896 1.667858 +0 3.261896 1.667858 +0.002268731 3.261896 1.667858 +0.07076883 3.261896 1.667858 +0.1119241 3.261896 1.667858 +0.1475052 3.261896 1.667858 +0.1846606 3.261896 1.667858 +0.2245119 3.261896 1.667858 +0.2679612 3.261896 1.667858 +0.3158431 3.261896 1.667858 +0.3689944 3.261896 1.667858 +0.4282948 3.261896 1.667858 +0.494694 3.261896 1.667858 +0.5692344 3.261896 1.667858 +0.6530715 3.261896 1.667858 +0.7474945 3.261896 1.667858 +0.8539475 3.261896 1.667858 +0.974052 3.261896 1.667858 +1.113885 3.261896 1.667858 +1.27456 3.261896 1.667858 +1.458117 3.261896 1.667858 +1.667858 3.261896 1.667858 +1.907556 3.261896 1.667858 +2.181521 3.261896 1.667858 +2.494678 3.261896 1.667858 +2.852659 3.261896 1.667858 +3.261896 3.261896 1.667858 +3.729748 3.261896 1.667858 +4.264621 3.261896 1.667858 +4.876131 3.261896 1.667858 +5.575266 3.261896 1.667858 +6.374593 3.261896 1.667858 +0 3.729748 1.667858 +0 3.729748 1.667858 +0 3.729748 1.667858 +0.002268731 3.729748 1.667858 +0.07076883 3.729748 1.667858 +0.1119241 3.729748 1.667858 +0.1475052 3.729748 1.667858 +0.1846606 3.729748 1.667858 +0.2245119 3.729748 1.667858 +0.2679612 3.729748 1.667858 +0.3158431 3.729748 1.667858 +0.3689944 3.729748 1.667858 +0.4282948 3.729748 1.667858 +0.494694 3.729748 1.667858 +0.5692344 3.729748 1.667858 +0.6530715 3.729748 1.667858 +0.7474945 3.729748 1.667858 +0.8539475 3.729748 1.667858 +0.974052 3.729748 1.667858 +1.113885 3.729748 1.667858 +1.27456 3.729748 1.667858 +1.458117 3.729748 1.667858 +1.667858 3.729748 1.667858 +1.907556 3.729748 1.667858 +2.181521 3.729748 1.667858 +2.494678 3.729748 1.667858 +2.852659 3.729748 1.667858 +3.261896 3.729748 1.667858 +3.729748 3.729748 1.667858 +4.264621 3.729748 1.667858 +4.876131 3.729748 1.667858 +5.575266 3.729748 1.667858 +6.374593 3.729748 1.667858 +0 4.264621 1.667858 +0 4.264621 1.667858 +0 4.264621 1.667858 +0.002268731 4.264621 1.667858 +0.07076883 4.264621 1.667858 +0.1119241 4.264621 1.667858 +0.1475052 4.264621 1.667858 +0.1846606 4.264621 1.667858 +0.2245119 4.264621 1.667858 +0.2679612 4.264621 1.667858 +0.3158431 4.264621 1.667858 +0.3689944 4.264621 1.667858 +0.4282948 4.264621 1.667858 +0.494694 4.264621 1.667858 +0.5692344 4.264621 1.667858 +0.6530715 4.264621 1.667858 +0.7474945 4.264621 1.667858 +0.8539475 4.264621 1.667858 +0.974052 4.264621 1.667858 +1.113885 4.264621 1.667858 +1.27456 4.264621 1.667858 +1.458117 4.264621 1.667858 +1.667858 4.264621 1.667858 +1.907556 4.264621 1.667858 +2.181521 4.264621 1.667858 +2.494678 4.264621 1.667858 +2.852659 4.264621 1.667858 +3.261896 4.264621 1.667858 +3.729748 4.264621 1.667858 +4.264621 4.264621 1.667858 +4.876131 4.264621 1.667858 +5.575266 4.264621 1.667858 +6.374593 4.264621 1.667858 +0 4.876131 1.667858 +0 4.876131 1.667858 +0 4.876131 1.667858 +0.002268731 4.876131 1.667858 +0.07076883 4.876131 1.667858 +0.1119241 4.876131 1.667858 +0.1475052 4.876131 1.667858 +0.1846606 4.876131 1.667858 +0.2245119 4.876131 1.667858 +0.2679612 4.876131 1.667858 +0.3158431 4.876131 1.667858 +0.3689944 4.876131 1.667858 +0.4282948 4.876131 1.667858 +0.494694 4.876131 1.667858 +0.5692344 4.876131 1.667858 +0.6530715 4.876131 1.667858 +0.7474945 4.876131 1.667858 +0.8539475 4.876131 1.667858 +0.974052 4.876131 1.667858 +1.113885 4.876131 1.667858 +1.27456 4.876131 1.667858 +1.458117 4.876131 1.667858 +1.667858 4.876131 1.667858 +1.907556 4.876131 1.667858 +2.181521 4.876131 1.667858 +2.494678 4.876131 1.667858 +2.852659 4.876131 1.667858 +3.261896 4.876131 1.667858 +3.729748 4.876131 1.667858 +4.264621 4.876131 1.667858 +4.876131 4.876131 1.667858 +5.575266 4.876131 1.667858 +6.374593 4.876131 1.667858 +0 5.575266 1.667858 +0 5.575266 1.667858 +0 5.575266 1.667858 +0.002268731 5.575266 1.667858 +0.07076883 5.575266 1.667858 +0.1119241 5.575266 1.667858 +0.1475052 5.575266 1.667858 +0.1846606 5.575266 1.667858 +0.2245119 5.575266 1.667858 +0.2679612 5.575266 1.667858 +0.3158431 5.575266 1.667858 +0.3689944 5.575266 1.667858 +0.4282948 5.575266 1.667858 +0.494694 5.575266 1.667858 +0.5692344 5.575266 1.667858 +0.6530715 5.575266 1.667858 +0.7474945 5.575266 1.667858 +0.8539475 5.575266 1.667858 +0.974052 5.575266 1.667858 +1.113885 5.575266 1.667858 +1.27456 5.575266 1.667858 +1.458117 5.575266 1.667858 +1.667858 5.575266 1.667858 +1.907556 5.575266 1.667858 +2.181521 5.575266 1.667858 +2.494678 5.575266 1.667858 +2.852659 5.575266 1.667858 +3.261896 5.575266 1.667858 +3.729748 5.575266 1.667858 +4.264621 5.575266 1.667858 +4.876131 5.575266 1.667858 +5.575266 5.575266 1.667858 +6.374593 5.575266 1.667858 +0 6.374593 1.667858 +0 6.374593 1.667858 +0 6.374593 1.667858 +0.002268731 6.374593 1.667858 +0.07076883 6.374593 1.667858 +0.1119241 6.374593 1.667858 +0.1475052 6.374593 1.667858 +0.1846606 6.374593 1.667858 +0.2245119 6.374593 1.667858 +0.2679612 6.374593 1.667858 +0.3158431 6.374593 1.667858 +0.3689944 6.374593 1.667858 +0.4282948 6.374593 1.667858 +0.494694 6.374593 1.667858 +0.5692344 6.374593 1.667858 +0.6530715 6.374593 1.667858 +0.7474945 6.374593 1.667858 +0.8539475 6.374593 1.667858 +0.974052 6.374593 1.667858 +1.113885 6.374593 1.667858 +1.27456 6.374593 1.667858 +1.458117 6.374593 1.667858 +1.667858 6.374593 1.667858 +1.907556 6.374593 1.667858 +2.181521 6.374593 1.667858 +2.494678 6.374593 1.667858 +2.852659 6.374593 1.667858 +3.261896 6.374593 1.667858 +3.729748 6.374593 1.667858 +4.264621 6.374593 1.667858 +4.876131 6.374593 1.667858 +5.575266 6.374593 1.667858 +6.374593 6.374593 1.667858 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0.002268731 1.907556 +0 0.002268731 1.907556 +0 0.002268731 1.907556 +0.002268731 0.002268731 1.907556 +0.07076883 0.002268731 1.907556 +0.1119241 0.002268731 1.907556 +0.1475052 0.002268731 1.907556 +0.1846606 0.002268731 1.907556 +0.2245119 0.002268731 1.907556 +0.2679612 0.002268731 1.907556 +0.3158431 0.002268731 1.907556 +0.3689944 0.002268731 1.907556 +0.4282948 0.002268731 1.907556 +0.494694 0.002268731 1.907556 +0.5692344 0.002268731 1.907556 +0.6530715 0.002268731 1.907556 +0.7474945 0.002268731 1.907556 +0.8539475 0.002268731 1.907556 +0.974052 0.002268731 1.907556 +1.113885 0.002268731 1.907556 +1.27456 0.002268731 1.907556 +1.458117 0.002268731 1.907556 +1.667858 0.002268731 1.907556 +1.907556 0.002268731 1.907556 +2.181521 0.002268731 1.907556 +2.494678 0.002268731 1.907556 +2.852659 0.002268731 1.907556 +3.261896 0.002268731 1.907556 +3.729748 0.002268731 1.907556 +4.264621 0.002268731 1.907556 +4.876131 0.002268731 1.907556 +5.575266 0.002268731 1.907556 +6.374593 0.002268731 1.907556 +0 0.07076883 1.907556 +0 0.07076883 1.907556 +0 0.07076883 1.907556 +0.002268731 0.07076883 1.907556 +0.07076883 0.07076883 1.907556 +0.1119241 0.07076883 1.907556 +0.1475052 0.07076883 1.907556 +0.1846606 0.07076883 1.907556 +0.2245119 0.07076883 1.907556 +0.2679612 0.07076883 1.907556 +0.3158431 0.07076883 1.907556 +0.3689944 0.07076883 1.907556 +0.4282948 0.07076883 1.907556 +0.494694 0.07076883 1.907556 +0.5692344 0.07076883 1.907556 +0.6530715 0.07076883 1.907556 +0.7474945 0.07076883 1.907556 +0.8539475 0.07076883 1.907556 +0.974052 0.07076883 1.907556 +1.113885 0.07076883 1.907556 +1.27456 0.07076883 1.907556 +1.458117 0.07076883 1.907556 +1.667858 0.07076883 1.907556 +1.907556 0.07076883 1.907556 +2.181521 0.07076883 1.907556 +2.494678 0.07076883 1.907556 +2.852659 0.07076883 1.907556 +3.261896 0.07076883 1.907556 +3.729748 0.07076883 1.907556 +4.264621 0.07076883 1.907556 +4.876131 0.07076883 1.907556 +5.575266 0.07076883 1.907556 +6.374593 0.07076883 1.907556 +0 0.1119241 1.907556 +0 0.1119241 1.907556 +0 0.1119241 1.907556 +0.002268731 0.1119241 1.907556 +0.07076883 0.1119241 1.907556 +0.1119241 0.1119241 1.907556 +0.1475052 0.1119241 1.907556 +0.1846606 0.1119241 1.907556 +0.2245119 0.1119241 1.907556 +0.2679612 0.1119241 1.907556 +0.3158431 0.1119241 1.907556 +0.3689944 0.1119241 1.907556 +0.4282948 0.1119241 1.907556 +0.494694 0.1119241 1.907556 +0.5692344 0.1119241 1.907556 +0.6530715 0.1119241 1.907556 +0.7474945 0.1119241 1.907556 +0.8539475 0.1119241 1.907556 +0.974052 0.1119241 1.907556 +1.113885 0.1119241 1.907556 +1.27456 0.1119241 1.907556 +1.458117 0.1119241 1.907556 +1.667858 0.1119241 1.907556 +1.907556 0.1119241 1.907556 +2.181521 0.1119241 1.907556 +2.494678 0.1119241 1.907556 +2.852659 0.1119241 1.907556 +3.261896 0.1119241 1.907556 +3.729748 0.1119241 1.907556 +4.264621 0.1119241 1.907556 +4.876131 0.1119241 1.907556 +5.575266 0.1119241 1.907556 +6.374593 0.1119241 1.907556 +0 0.1475052 1.907556 +0 0.1475052 1.907556 +0 0.1475052 1.907556 +0.002268731 0.1475052 1.907556 +0.07076883 0.1475052 1.907556 +0.1119241 0.1475052 1.907556 +0.1475052 0.1475052 1.907556 +0.1846606 0.1475052 1.907556 +0.2245119 0.1475052 1.907556 +0.2679612 0.1475052 1.907556 +0.3158431 0.1475052 1.907556 +0.3689944 0.1475052 1.907556 +0.4282948 0.1475052 1.907556 +0.494694 0.1475052 1.907556 +0.5692344 0.1475052 1.907556 +0.6530715 0.1475052 1.907556 +0.7474945 0.1475052 1.907556 +0.8539475 0.1475052 1.907556 +0.974052 0.1475052 1.907556 +1.113885 0.1475052 1.907556 +1.27456 0.1475052 1.907556 +1.458117 0.1475052 1.907556 +1.667858 0.1475052 1.907556 +1.907556 0.1475052 1.907556 +2.181521 0.1475052 1.907556 +2.494678 0.1475052 1.907556 +2.852659 0.1475052 1.907556 +3.261896 0.1475052 1.907556 +3.729748 0.1475052 1.907556 +4.264621 0.1475052 1.907556 +4.876131 0.1475052 1.907556 +5.575266 0.1475052 1.907556 +6.374593 0.1475052 1.907556 +0 0.1846606 1.907556 +0 0.1846606 1.907556 +0 0.1846606 1.907556 +0.002268731 0.1846606 1.907556 +0.07076883 0.1846606 1.907556 +0.1119241 0.1846606 1.907556 +0.1475052 0.1846606 1.907556 +0.1846606 0.1846606 1.907556 +0.2245119 0.1846606 1.907556 +0.2679612 0.1846606 1.907556 +0.3158431 0.1846606 1.907556 +0.3689944 0.1846606 1.907556 +0.4282948 0.1846606 1.907556 +0.494694 0.1846606 1.907556 +0.5692344 0.1846606 1.907556 +0.6530715 0.1846606 1.907556 +0.7474945 0.1846606 1.907556 +0.8539475 0.1846606 1.907556 +0.974052 0.1846606 1.907556 +1.113885 0.1846606 1.907556 +1.27456 0.1846606 1.907556 +1.458117 0.1846606 1.907556 +1.667858 0.1846606 1.907556 +1.907556 0.1846606 1.907556 +2.181521 0.1846606 1.907556 +2.494678 0.1846606 1.907556 +2.852659 0.1846606 1.907556 +3.261896 0.1846606 1.907556 +3.729748 0.1846606 1.907556 +4.264621 0.1846606 1.907556 +4.876131 0.1846606 1.907556 +5.575266 0.1846606 1.907556 +6.374593 0.1846606 1.907556 +0 0.2245119 1.907556 +0 0.2245119 1.907556 +0 0.2245119 1.907556 +0.002268731 0.2245119 1.907556 +0.07076883 0.2245119 1.907556 +0.1119241 0.2245119 1.907556 +0.1475052 0.2245119 1.907556 +0.1846606 0.2245119 1.907556 +0.2245119 0.2245119 1.907556 +0.2679612 0.2245119 1.907556 +0.3158431 0.2245119 1.907556 +0.3689944 0.2245119 1.907556 +0.4282948 0.2245119 1.907556 +0.494694 0.2245119 1.907556 +0.5692344 0.2245119 1.907556 +0.6530715 0.2245119 1.907556 +0.7474945 0.2245119 1.907556 +0.8539475 0.2245119 1.907556 +0.974052 0.2245119 1.907556 +1.113885 0.2245119 1.907556 +1.27456 0.2245119 1.907556 +1.458117 0.2245119 1.907556 +1.667858 0.2245119 1.907556 +1.907556 0.2245119 1.907556 +2.181521 0.2245119 1.907556 +2.494678 0.2245119 1.907556 +2.852659 0.2245119 1.907556 +3.261896 0.2245119 1.907556 +3.729748 0.2245119 1.907556 +4.264621 0.2245119 1.907556 +4.876131 0.2245119 1.907556 +5.575266 0.2245119 1.907556 +6.374593 0.2245119 1.907556 +0 0.2679612 1.907556 +0 0.2679612 1.907556 +0 0.2679612 1.907556 +0.002268731 0.2679612 1.907556 +0.07076883 0.2679612 1.907556 +0.1119241 0.2679612 1.907556 +0.1475052 0.2679612 1.907556 +0.1846606 0.2679612 1.907556 +0.2245119 0.2679612 1.907556 +0.2679612 0.2679612 1.907556 +0.3158431 0.2679612 1.907556 +0.3689944 0.2679612 1.907556 +0.4282948 0.2679612 1.907556 +0.494694 0.2679612 1.907556 +0.5692344 0.2679612 1.907556 +0.6530715 0.2679612 1.907556 +0.7474945 0.2679612 1.907556 +0.8539475 0.2679612 1.907556 +0.974052 0.2679612 1.907556 +1.113885 0.2679612 1.907556 +1.27456 0.2679612 1.907556 +1.458117 0.2679612 1.907556 +1.667858 0.2679612 1.907556 +1.907556 0.2679612 1.907556 +2.181521 0.2679612 1.907556 +2.494678 0.2679612 1.907556 +2.852659 0.2679612 1.907556 +3.261896 0.2679612 1.907556 +3.729748 0.2679612 1.907556 +4.264621 0.2679612 1.907556 +4.876131 0.2679612 1.907556 +5.575266 0.2679612 1.907556 +6.374593 0.2679612 1.907556 +0 0.3158431 1.907556 +0 0.3158431 1.907556 +0 0.3158431 1.907556 +0.002268731 0.3158431 1.907556 +0.07076883 0.3158431 1.907556 +0.1119241 0.3158431 1.907556 +0.1475052 0.3158431 1.907556 +0.1846606 0.3158431 1.907556 +0.2245119 0.3158431 1.907556 +0.2679612 0.3158431 1.907556 +0.3158431 0.3158431 1.907556 +0.3689944 0.3158431 1.907556 +0.4282948 0.3158431 1.907556 +0.494694 0.3158431 1.907556 +0.5692344 0.3158431 1.907556 +0.6530715 0.3158431 1.907556 +0.7474945 0.3158431 1.907556 +0.8539475 0.3158431 1.907556 +0.974052 0.3158431 1.907556 +1.113885 0.3158431 1.907556 +1.27456 0.3158431 1.907556 +1.458117 0.3158431 1.907556 +1.667858 0.3158431 1.907556 +1.907556 0.3158431 1.907556 +2.181521 0.3158431 1.907556 +2.494678 0.3158431 1.907556 +2.852659 0.3158431 1.907556 +3.261896 0.3158431 1.907556 +3.729748 0.3158431 1.907556 +4.264621 0.3158431 1.907556 +4.876131 0.3158431 1.907556 +5.575266 0.3158431 1.907556 +6.374593 0.3158431 1.907556 +0 0.3689944 1.907556 +0 0.3689944 1.907556 +0 0.3689944 1.907556 +0.002268731 0.3689944 1.907556 +0.07076883 0.3689944 1.907556 +0.1119241 0.3689944 1.907556 +0.1475052 0.3689944 1.907556 +0.1846606 0.3689944 1.907556 +0.2245119 0.3689944 1.907556 +0.2679612 0.3689944 1.907556 +0.3158431 0.3689944 1.907556 +0.3689944 0.3689944 1.907556 +0.4282948 0.3689944 1.907556 +0.494694 0.3689944 1.907556 +0.5692344 0.3689944 1.907556 +0.6530715 0.3689944 1.907556 +0.7474945 0.3689944 1.907556 +0.8539475 0.3689944 1.907556 +0.974052 0.3689944 1.907556 +1.113885 0.3689944 1.907556 +1.27456 0.3689944 1.907556 +1.458117 0.3689944 1.907556 +1.667858 0.3689944 1.907556 +1.907556 0.3689944 1.907556 +2.181521 0.3689944 1.907556 +2.494678 0.3689944 1.907556 +2.852659 0.3689944 1.907556 +3.261896 0.3689944 1.907556 +3.729748 0.3689944 1.907556 +4.264621 0.3689944 1.907556 +4.876131 0.3689944 1.907556 +5.575266 0.3689944 1.907556 +6.374593 0.3689944 1.907556 +0 0.4282948 1.907556 +0 0.4282948 1.907556 +0 0.4282948 1.907556 +0.002268731 0.4282948 1.907556 +0.07076883 0.4282948 1.907556 +0.1119241 0.4282948 1.907556 +0.1475052 0.4282948 1.907556 +0.1846606 0.4282948 1.907556 +0.2245119 0.4282948 1.907556 +0.2679612 0.4282948 1.907556 +0.3158431 0.4282948 1.907556 +0.3689944 0.4282948 1.907556 +0.4282948 0.4282948 1.907556 +0.494694 0.4282948 1.907556 +0.5692344 0.4282948 1.907556 +0.6530715 0.4282948 1.907556 +0.7474945 0.4282948 1.907556 +0.8539475 0.4282948 1.907556 +0.974052 0.4282948 1.907556 +1.113885 0.4282948 1.907556 +1.27456 0.4282948 1.907556 +1.458117 0.4282948 1.907556 +1.667858 0.4282948 1.907556 +1.907556 0.4282948 1.907556 +2.181521 0.4282948 1.907556 +2.494678 0.4282948 1.907556 +2.852659 0.4282948 1.907556 +3.261896 0.4282948 1.907556 +3.729748 0.4282948 1.907556 +4.264621 0.4282948 1.907556 +4.876131 0.4282948 1.907556 +5.575266 0.4282948 1.907556 +6.374593 0.4282948 1.907556 +0 0.494694 1.907556 +0 0.494694 1.907556 +0 0.494694 1.907556 +0.002268731 0.494694 1.907556 +0.07076883 0.494694 1.907556 +0.1119241 0.494694 1.907556 +0.1475052 0.494694 1.907556 +0.1846606 0.494694 1.907556 +0.2245119 0.494694 1.907556 +0.2679612 0.494694 1.907556 +0.3158431 0.494694 1.907556 +0.3689944 0.494694 1.907556 +0.4282948 0.494694 1.907556 +0.494694 0.494694 1.907556 +0.5692344 0.494694 1.907556 +0.6530715 0.494694 1.907556 +0.7474945 0.494694 1.907556 +0.8539475 0.494694 1.907556 +0.974052 0.494694 1.907556 +1.113885 0.494694 1.907556 +1.27456 0.494694 1.907556 +1.458117 0.494694 1.907556 +1.667858 0.494694 1.907556 +1.907556 0.494694 1.907556 +2.181521 0.494694 1.907556 +2.494678 0.494694 1.907556 +2.852659 0.494694 1.907556 +3.261896 0.494694 1.907556 +3.729748 0.494694 1.907556 +4.264621 0.494694 1.907556 +4.876131 0.494694 1.907556 +5.575266 0.494694 1.907556 +6.374593 0.494694 1.907556 +0 0.5692344 1.907556 +0 0.5692344 1.907556 +0 0.5692344 1.907556 +0.002268731 0.5692344 1.907556 +0.07076883 0.5692344 1.907556 +0.1119241 0.5692344 1.907556 +0.1475052 0.5692344 1.907556 +0.1846606 0.5692344 1.907556 +0.2245119 0.5692344 1.907556 +0.2679612 0.5692344 1.907556 +0.3158431 0.5692344 1.907556 +0.3689944 0.5692344 1.907556 +0.4282948 0.5692344 1.907556 +0.494694 0.5692344 1.907556 +0.5692344 0.5692344 1.907556 +0.6530715 0.5692344 1.907556 +0.7474945 0.5692344 1.907556 +0.8539475 0.5692344 1.907556 +0.974052 0.5692344 1.907556 +1.113885 0.5692344 1.907556 +1.27456 0.5692344 1.907556 +1.458117 0.5692344 1.907556 +1.667858 0.5692344 1.907556 +1.907556 0.5692344 1.907556 +2.181521 0.5692344 1.907556 +2.494678 0.5692344 1.907556 +2.852659 0.5692344 1.907556 +3.261896 0.5692344 1.907556 +3.729748 0.5692344 1.907556 +4.264621 0.5692344 1.907556 +4.876131 0.5692344 1.907556 +5.575266 0.5692344 1.907556 +6.374593 0.5692344 1.907556 +0 0.6530715 1.907556 +0 0.6530715 1.907556 +0 0.6530715 1.907556 +0.002268731 0.6530715 1.907556 +0.07076883 0.6530715 1.907556 +0.1119241 0.6530715 1.907556 +0.1475052 0.6530715 1.907556 +0.1846606 0.6530715 1.907556 +0.2245119 0.6530715 1.907556 +0.2679612 0.6530715 1.907556 +0.3158431 0.6530715 1.907556 +0.3689944 0.6530715 1.907556 +0.4282948 0.6530715 1.907556 +0.494694 0.6530715 1.907556 +0.5692344 0.6530715 1.907556 +0.6530715 0.6530715 1.907556 +0.7474945 0.6530715 1.907556 +0.8539475 0.6530715 1.907556 +0.974052 0.6530715 1.907556 +1.113885 0.6530715 1.907556 +1.27456 0.6530715 1.907556 +1.458117 0.6530715 1.907556 +1.667858 0.6530715 1.907556 +1.907556 0.6530715 1.907556 +2.181521 0.6530715 1.907556 +2.494678 0.6530715 1.907556 +2.852659 0.6530715 1.907556 +3.261896 0.6530715 1.907556 +3.729748 0.6530715 1.907556 +4.264621 0.6530715 1.907556 +4.876131 0.6530715 1.907556 +5.575266 0.6530715 1.907556 +6.374593 0.6530715 1.907556 +0 0.7474945 1.907556 +0 0.7474945 1.907556 +0 0.7474945 1.907556 +0.002268731 0.7474945 1.907556 +0.07076883 0.7474945 1.907556 +0.1119241 0.7474945 1.907556 +0.1475052 0.7474945 1.907556 +0.1846606 0.7474945 1.907556 +0.2245119 0.7474945 1.907556 +0.2679612 0.7474945 1.907556 +0.3158431 0.7474945 1.907556 +0.3689944 0.7474945 1.907556 +0.4282948 0.7474945 1.907556 +0.494694 0.7474945 1.907556 +0.5692344 0.7474945 1.907556 +0.6530715 0.7474945 1.907556 +0.7474945 0.7474945 1.907556 +0.8539475 0.7474945 1.907556 +0.974052 0.7474945 1.907556 +1.113885 0.7474945 1.907556 +1.27456 0.7474945 1.907556 +1.458117 0.7474945 1.907556 +1.667858 0.7474945 1.907556 +1.907556 0.7474945 1.907556 +2.181521 0.7474945 1.907556 +2.494678 0.7474945 1.907556 +2.852659 0.7474945 1.907556 +3.261896 0.7474945 1.907556 +3.729748 0.7474945 1.907556 +4.264621 0.7474945 1.907556 +4.876131 0.7474945 1.907556 +5.575266 0.7474945 1.907556 +6.374593 0.7474945 1.907556 +0 0.8539475 1.907556 +0 0.8539475 1.907556 +0 0.8539475 1.907556 +0.002268731 0.8539475 1.907556 +0.07076883 0.8539475 1.907556 +0.1119241 0.8539475 1.907556 +0.1475052 0.8539475 1.907556 +0.1846606 0.8539475 1.907556 +0.2245119 0.8539475 1.907556 +0.2679612 0.8539475 1.907556 +0.3158431 0.8539475 1.907556 +0.3689944 0.8539475 1.907556 +0.4282948 0.8539475 1.907556 +0.494694 0.8539475 1.907556 +0.5692344 0.8539475 1.907556 +0.6530715 0.8539475 1.907556 +0.7474945 0.8539475 1.907556 +0.8539475 0.8539475 1.907556 +0.974052 0.8539475 1.907556 +1.113885 0.8539475 1.907556 +1.27456 0.8539475 1.907556 +1.458117 0.8539475 1.907556 +1.667858 0.8539475 1.907556 +1.907556 0.8539475 1.907556 +2.181521 0.8539475 1.907556 +2.494678 0.8539475 1.907556 +2.852659 0.8539475 1.907556 +3.261896 0.8539475 1.907556 +3.729748 0.8539475 1.907556 +4.264621 0.8539475 1.907556 +4.876131 0.8539475 1.907556 +5.575266 0.8539475 1.907556 +6.374593 0.8539475 1.907556 +0 0.974052 1.907556 +0 0.974052 1.907556 +0 0.974052 1.907556 +0.002268731 0.974052 1.907556 +0.07076883 0.974052 1.907556 +0.1119241 0.974052 1.907556 +0.1475052 0.974052 1.907556 +0.1846606 0.974052 1.907556 +0.2245119 0.974052 1.907556 +0.2679612 0.974052 1.907556 +0.3158431 0.974052 1.907556 +0.3689944 0.974052 1.907556 +0.4282948 0.974052 1.907556 +0.494694 0.974052 1.907556 +0.5692344 0.974052 1.907556 +0.6530715 0.974052 1.907556 +0.7474945 0.974052 1.907556 +0.8539475 0.974052 1.907556 +0.974052 0.974052 1.907556 +1.113885 0.974052 1.907556 +1.27456 0.974052 1.907556 +1.458117 0.974052 1.907556 +1.667858 0.974052 1.907556 +1.907556 0.974052 1.907556 +2.181521 0.974052 1.907556 +2.494678 0.974052 1.907556 +2.852659 0.974052 1.907556 +3.261896 0.974052 1.907556 +3.729748 0.974052 1.907556 +4.264621 0.974052 1.907556 +4.876131 0.974052 1.907556 +5.575266 0.974052 1.907556 +6.374593 0.974052 1.907556 +0 1.113885 1.907556 +0 1.113885 1.907556 +0 1.113885 1.907556 +0.002268731 1.113885 1.907556 +0.07076883 1.113885 1.907556 +0.1119241 1.113885 1.907556 +0.1475052 1.113885 1.907556 +0.1846606 1.113885 1.907556 +0.2245119 1.113885 1.907556 +0.2679612 1.113885 1.907556 +0.3158431 1.113885 1.907556 +0.3689944 1.113885 1.907556 +0.4282948 1.113885 1.907556 +0.494694 1.113885 1.907556 +0.5692344 1.113885 1.907556 +0.6530715 1.113885 1.907556 +0.7474945 1.113885 1.907556 +0.8539475 1.113885 1.907556 +0.974052 1.113885 1.907556 +1.113885 1.113885 1.907556 +1.27456 1.113885 1.907556 +1.458117 1.113885 1.907556 +1.667858 1.113885 1.907556 +1.907556 1.113885 1.907556 +2.181521 1.113885 1.907556 +2.494678 1.113885 1.907556 +2.852659 1.113885 1.907556 +3.261896 1.113885 1.907556 +3.729748 1.113885 1.907556 +4.264621 1.113885 1.907556 +4.876131 1.113885 1.907556 +5.575266 1.113885 1.907556 +6.374593 1.113885 1.907556 +0 1.27456 1.907556 +0 1.27456 1.907556 +0 1.27456 1.907556 +0.002268731 1.27456 1.907556 +0.07076883 1.27456 1.907556 +0.1119241 1.27456 1.907556 +0.1475052 1.27456 1.907556 +0.1846606 1.27456 1.907556 +0.2245119 1.27456 1.907556 +0.2679612 1.27456 1.907556 +0.3158431 1.27456 1.907556 +0.3689944 1.27456 1.907556 +0.4282948 1.27456 1.907556 +0.494694 1.27456 1.907556 +0.5692344 1.27456 1.907556 +0.6530715 1.27456 1.907556 +0.7474945 1.27456 1.907556 +0.8539475 1.27456 1.907556 +0.974052 1.27456 1.907556 +1.113885 1.27456 1.907556 +1.27456 1.27456 1.907556 +1.458117 1.27456 1.907556 +1.667858 1.27456 1.907556 +1.907556 1.27456 1.907556 +2.181521 1.27456 1.907556 +2.494678 1.27456 1.907556 +2.852659 1.27456 1.907556 +3.261896 1.27456 1.907556 +3.729748 1.27456 1.907556 +4.264621 1.27456 1.907556 +4.876131 1.27456 1.907556 +5.575266 1.27456 1.907556 +6.374593 1.27456 1.907556 +0 1.458117 1.907556 +0 1.458117 1.907556 +0 1.458117 1.907556 +0.002268731 1.458117 1.907556 +0.07076883 1.458117 1.907556 +0.1119241 1.458117 1.907556 +0.1475052 1.458117 1.907556 +0.1846606 1.458117 1.907556 +0.2245119 1.458117 1.907556 +0.2679612 1.458117 1.907556 +0.3158431 1.458117 1.907556 +0.3689944 1.458117 1.907556 +0.4282948 1.458117 1.907556 +0.494694 1.458117 1.907556 +0.5692344 1.458117 1.907556 +0.6530715 1.458117 1.907556 +0.7474945 1.458117 1.907556 +0.8539475 1.458117 1.907556 +0.974052 1.458117 1.907556 +1.113885 1.458117 1.907556 +1.27456 1.458117 1.907556 +1.458117 1.458117 1.907556 +1.667858 1.458117 1.907556 +1.907556 1.458117 1.907556 +2.181521 1.458117 1.907556 +2.494678 1.458117 1.907556 +2.852659 1.458117 1.907556 +3.261896 1.458117 1.907556 +3.729748 1.458117 1.907556 +4.264621 1.458117 1.907556 +4.876131 1.458117 1.907556 +5.575266 1.458117 1.907556 +6.374593 1.458117 1.907556 +0 1.667858 1.907556 +0 1.667858 1.907556 +0 1.667858 1.907556 +0.002268731 1.667858 1.907556 +0.07076883 1.667858 1.907556 +0.1119241 1.667858 1.907556 +0.1475052 1.667858 1.907556 +0.1846606 1.667858 1.907556 +0.2245119 1.667858 1.907556 +0.2679612 1.667858 1.907556 +0.3158431 1.667858 1.907556 +0.3689944 1.667858 1.907556 +0.4282948 1.667858 1.907556 +0.494694 1.667858 1.907556 +0.5692344 1.667858 1.907556 +0.6530715 1.667858 1.907556 +0.7474945 1.667858 1.907556 +0.8539475 1.667858 1.907556 +0.974052 1.667858 1.907556 +1.113885 1.667858 1.907556 +1.27456 1.667858 1.907556 +1.458117 1.667858 1.907556 +1.667858 1.667858 1.907556 +1.907556 1.667858 1.907556 +2.181521 1.667858 1.907556 +2.494678 1.667858 1.907556 +2.852659 1.667858 1.907556 +3.261896 1.667858 1.907556 +3.729748 1.667858 1.907556 +4.264621 1.667858 1.907556 +4.876131 1.667858 1.907556 +5.575266 1.667858 1.907556 +6.374593 1.667858 1.907556 +0 1.907556 1.907556 +0 1.907556 1.907556 +0 1.907556 1.907556 +0.002268731 1.907556 1.907556 +0.07076883 1.907556 1.907556 +0.1119241 1.907556 1.907556 +0.1475052 1.907556 1.907556 +0.1846606 1.907556 1.907556 +0.2245119 1.907556 1.907556 +0.2679612 1.907556 1.907556 +0.3158431 1.907556 1.907556 +0.3689944 1.907556 1.907556 +0.4282948 1.907556 1.907556 +0.494694 1.907556 1.907556 +0.5692344 1.907556 1.907556 +0.6530715 1.907556 1.907556 +0.7474945 1.907556 1.907556 +0.8539475 1.907556 1.907556 +0.974052 1.907556 1.907556 +1.113885 1.907556 1.907556 +1.27456 1.907556 1.907556 +1.458117 1.907556 1.907556 +1.667858 1.907556 1.907556 +1.907556 1.907556 1.907556 +2.181521 1.907556 1.907556 +2.494678 1.907556 1.907556 +2.852659 1.907556 1.907556 +3.261896 1.907556 1.907556 +3.729748 1.907556 1.907556 +4.264621 1.907556 1.907556 +4.876131 1.907556 1.907556 +5.575266 1.907556 1.907556 +6.374593 1.907556 1.907556 +0 2.181521 1.907556 +0 2.181521 1.907556 +0 2.181521 1.907556 +0.002268731 2.181521 1.907556 +0.07076883 2.181521 1.907556 +0.1119241 2.181521 1.907556 +0.1475052 2.181521 1.907556 +0.1846606 2.181521 1.907556 +0.2245119 2.181521 1.907556 +0.2679612 2.181521 1.907556 +0.3158431 2.181521 1.907556 +0.3689944 2.181521 1.907556 +0.4282948 2.181521 1.907556 +0.494694 2.181521 1.907556 +0.5692344 2.181521 1.907556 +0.6530715 2.181521 1.907556 +0.7474945 2.181521 1.907556 +0.8539475 2.181521 1.907556 +0.974052 2.181521 1.907556 +1.113885 2.181521 1.907556 +1.27456 2.181521 1.907556 +1.458117 2.181521 1.907556 +1.667858 2.181521 1.907556 +1.907556 2.181521 1.907556 +2.181521 2.181521 1.907556 +2.494678 2.181521 1.907556 +2.852659 2.181521 1.907556 +3.261896 2.181521 1.907556 +3.729748 2.181521 1.907556 +4.264621 2.181521 1.907556 +4.876131 2.181521 1.907556 +5.575266 2.181521 1.907556 +6.374593 2.181521 1.907556 +0 2.494678 1.907556 +0 2.494678 1.907556 +0 2.494678 1.907556 +0.002268731 2.494678 1.907556 +0.07076883 2.494678 1.907556 +0.1119241 2.494678 1.907556 +0.1475052 2.494678 1.907556 +0.1846606 2.494678 1.907556 +0.2245119 2.494678 1.907556 +0.2679612 2.494678 1.907556 +0.3158431 2.494678 1.907556 +0.3689944 2.494678 1.907556 +0.4282948 2.494678 1.907556 +0.494694 2.494678 1.907556 +0.5692344 2.494678 1.907556 +0.6530715 2.494678 1.907556 +0.7474945 2.494678 1.907556 +0.8539475 2.494678 1.907556 +0.974052 2.494678 1.907556 +1.113885 2.494678 1.907556 +1.27456 2.494678 1.907556 +1.458117 2.494678 1.907556 +1.667858 2.494678 1.907556 +1.907556 2.494678 1.907556 +2.181521 2.494678 1.907556 +2.494678 2.494678 1.907556 +2.852659 2.494678 1.907556 +3.261896 2.494678 1.907556 +3.729748 2.494678 1.907556 +4.264621 2.494678 1.907556 +4.876131 2.494678 1.907556 +5.575266 2.494678 1.907556 +6.374593 2.494678 1.907556 +0 2.852659 1.907556 +0 2.852659 1.907556 +0 2.852659 1.907556 +0.002268731 2.852659 1.907556 +0.07076883 2.852659 1.907556 +0.1119241 2.852659 1.907556 +0.1475052 2.852659 1.907556 +0.1846606 2.852659 1.907556 +0.2245119 2.852659 1.907556 +0.2679612 2.852659 1.907556 +0.3158431 2.852659 1.907556 +0.3689944 2.852659 1.907556 +0.4282948 2.852659 1.907556 +0.494694 2.852659 1.907556 +0.5692344 2.852659 1.907556 +0.6530715 2.852659 1.907556 +0.7474945 2.852659 1.907556 +0.8539475 2.852659 1.907556 +0.974052 2.852659 1.907556 +1.113885 2.852659 1.907556 +1.27456 2.852659 1.907556 +1.458117 2.852659 1.907556 +1.667858 2.852659 1.907556 +1.907556 2.852659 1.907556 +2.181521 2.852659 1.907556 +2.494678 2.852659 1.907556 +2.852659 2.852659 1.907556 +3.261896 2.852659 1.907556 +3.729748 2.852659 1.907556 +4.264621 2.852659 1.907556 +4.876131 2.852659 1.907556 +5.575266 2.852659 1.907556 +6.374593 2.852659 1.907556 +0 3.261896 1.907556 +0 3.261896 1.907556 +0 3.261896 1.907556 +0.002268731 3.261896 1.907556 +0.07076883 3.261896 1.907556 +0.1119241 3.261896 1.907556 +0.1475052 3.261896 1.907556 +0.1846606 3.261896 1.907556 +0.2245119 3.261896 1.907556 +0.2679612 3.261896 1.907556 +0.3158431 3.261896 1.907556 +0.3689944 3.261896 1.907556 +0.4282948 3.261896 1.907556 +0.494694 3.261896 1.907556 +0.5692344 3.261896 1.907556 +0.6530715 3.261896 1.907556 +0.7474945 3.261896 1.907556 +0.8539475 3.261896 1.907556 +0.974052 3.261896 1.907556 +1.113885 3.261896 1.907556 +1.27456 3.261896 1.907556 +1.458117 3.261896 1.907556 +1.667858 3.261896 1.907556 +1.907556 3.261896 1.907556 +2.181521 3.261896 1.907556 +2.494678 3.261896 1.907556 +2.852659 3.261896 1.907556 +3.261896 3.261896 1.907556 +3.729748 3.261896 1.907556 +4.264621 3.261896 1.907556 +4.876131 3.261896 1.907556 +5.575266 3.261896 1.907556 +6.374593 3.261896 1.907556 +0 3.729748 1.907556 +0 3.729748 1.907556 +0 3.729748 1.907556 +0.002268731 3.729748 1.907556 +0.07076883 3.729748 1.907556 +0.1119241 3.729748 1.907556 +0.1475052 3.729748 1.907556 +0.1846606 3.729748 1.907556 +0.2245119 3.729748 1.907556 +0.2679612 3.729748 1.907556 +0.3158431 3.729748 1.907556 +0.3689944 3.729748 1.907556 +0.4282948 3.729748 1.907556 +0.494694 3.729748 1.907556 +0.5692344 3.729748 1.907556 +0.6530715 3.729748 1.907556 +0.7474945 3.729748 1.907556 +0.8539475 3.729748 1.907556 +0.974052 3.729748 1.907556 +1.113885 3.729748 1.907556 +1.27456 3.729748 1.907556 +1.458117 3.729748 1.907556 +1.667858 3.729748 1.907556 +1.907556 3.729748 1.907556 +2.181521 3.729748 1.907556 +2.494678 3.729748 1.907556 +2.852659 3.729748 1.907556 +3.261896 3.729748 1.907556 +3.729748 3.729748 1.907556 +4.264621 3.729748 1.907556 +4.876131 3.729748 1.907556 +5.575266 3.729748 1.907556 +6.374593 3.729748 1.907556 +0 4.264621 1.907556 +0 4.264621 1.907556 +0 4.264621 1.907556 +0.002268731 4.264621 1.907556 +0.07076883 4.264621 1.907556 +0.1119241 4.264621 1.907556 +0.1475052 4.264621 1.907556 +0.1846606 4.264621 1.907556 +0.2245119 4.264621 1.907556 +0.2679612 4.264621 1.907556 +0.3158431 4.264621 1.907556 +0.3689944 4.264621 1.907556 +0.4282948 4.264621 1.907556 +0.494694 4.264621 1.907556 +0.5692344 4.264621 1.907556 +0.6530715 4.264621 1.907556 +0.7474945 4.264621 1.907556 +0.8539475 4.264621 1.907556 +0.974052 4.264621 1.907556 +1.113885 4.264621 1.907556 +1.27456 4.264621 1.907556 +1.458117 4.264621 1.907556 +1.667858 4.264621 1.907556 +1.907556 4.264621 1.907556 +2.181521 4.264621 1.907556 +2.494678 4.264621 1.907556 +2.852659 4.264621 1.907556 +3.261896 4.264621 1.907556 +3.729748 4.264621 1.907556 +4.264621 4.264621 1.907556 +4.876131 4.264621 1.907556 +5.575266 4.264621 1.907556 +6.374593 4.264621 1.907556 +0 4.876131 1.907556 +0 4.876131 1.907556 +0 4.876131 1.907556 +0.002268731 4.876131 1.907556 +0.07076883 4.876131 1.907556 +0.1119241 4.876131 1.907556 +0.1475052 4.876131 1.907556 +0.1846606 4.876131 1.907556 +0.2245119 4.876131 1.907556 +0.2679612 4.876131 1.907556 +0.3158431 4.876131 1.907556 +0.3689944 4.876131 1.907556 +0.4282948 4.876131 1.907556 +0.494694 4.876131 1.907556 +0.5692344 4.876131 1.907556 +0.6530715 4.876131 1.907556 +0.7474945 4.876131 1.907556 +0.8539475 4.876131 1.907556 +0.974052 4.876131 1.907556 +1.113885 4.876131 1.907556 +1.27456 4.876131 1.907556 +1.458117 4.876131 1.907556 +1.667858 4.876131 1.907556 +1.907556 4.876131 1.907556 +2.181521 4.876131 1.907556 +2.494678 4.876131 1.907556 +2.852659 4.876131 1.907556 +3.261896 4.876131 1.907556 +3.729748 4.876131 1.907556 +4.264621 4.876131 1.907556 +4.876131 4.876131 1.907556 +5.575266 4.876131 1.907556 +6.374593 4.876131 1.907556 +0 5.575266 1.907556 +0 5.575266 1.907556 +0 5.575266 1.907556 +0.002268731 5.575266 1.907556 +0.07076883 5.575266 1.907556 +0.1119241 5.575266 1.907556 +0.1475052 5.575266 1.907556 +0.1846606 5.575266 1.907556 +0.2245119 5.575266 1.907556 +0.2679612 5.575266 1.907556 +0.3158431 5.575266 1.907556 +0.3689944 5.575266 1.907556 +0.4282948 5.575266 1.907556 +0.494694 5.575266 1.907556 +0.5692344 5.575266 1.907556 +0.6530715 5.575266 1.907556 +0.7474945 5.575266 1.907556 +0.8539475 5.575266 1.907556 +0.974052 5.575266 1.907556 +1.113885 5.575266 1.907556 +1.27456 5.575266 1.907556 +1.458117 5.575266 1.907556 +1.667858 5.575266 1.907556 +1.907556 5.575266 1.907556 +2.181521 5.575266 1.907556 +2.494678 5.575266 1.907556 +2.852659 5.575266 1.907556 +3.261896 5.575266 1.907556 +3.729748 5.575266 1.907556 +4.264621 5.575266 1.907556 +4.876131 5.575266 1.907556 +5.575266 5.575266 1.907556 +6.374593 5.575266 1.907556 +0 6.374593 1.907556 +0 6.374593 1.907556 +0 6.374593 1.907556 +0.002268731 6.374593 1.907556 +0.07076883 6.374593 1.907556 +0.1119241 6.374593 1.907556 +0.1475052 6.374593 1.907556 +0.1846606 6.374593 1.907556 +0.2245119 6.374593 1.907556 +0.2679612 6.374593 1.907556 +0.3158431 6.374593 1.907556 +0.3689944 6.374593 1.907556 +0.4282948 6.374593 1.907556 +0.494694 6.374593 1.907556 +0.5692344 6.374593 1.907556 +0.6530715 6.374593 1.907556 +0.7474945 6.374593 1.907556 +0.8539475 6.374593 1.907556 +0.974052 6.374593 1.907556 +1.113885 6.374593 1.907556 +1.27456 6.374593 1.907556 +1.458117 6.374593 1.907556 +1.667858 6.374593 1.907556 +1.907556 6.374593 1.907556 +2.181521 6.374593 1.907556 +2.494678 6.374593 1.907556 +2.852659 6.374593 1.907556 +3.261896 6.374593 1.907556 +3.729748 6.374593 1.907556 +4.264621 6.374593 1.907556 +4.876131 6.374593 1.907556 +5.575266 6.374593 1.907556 +6.374593 6.374593 1.907556 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0.002268731 2.181521 +0 0.002268731 2.181521 +0 0.002268731 2.181521 +0.002268731 0.002268731 2.181521 +0.07076883 0.002268731 2.181521 +0.1119241 0.002268731 2.181521 +0.1475052 0.002268731 2.181521 +0.1846606 0.002268731 2.181521 +0.2245119 0.002268731 2.181521 +0.2679612 0.002268731 2.181521 +0.3158431 0.002268731 2.181521 +0.3689944 0.002268731 2.181521 +0.4282948 0.002268731 2.181521 +0.494694 0.002268731 2.181521 +0.5692344 0.002268731 2.181521 +0.6530715 0.002268731 2.181521 +0.7474945 0.002268731 2.181521 +0.8539475 0.002268731 2.181521 +0.974052 0.002268731 2.181521 +1.113885 0.002268731 2.181521 +1.27456 0.002268731 2.181521 +1.458117 0.002268731 2.181521 +1.667858 0.002268731 2.181521 +1.907556 0.002268731 2.181521 +2.181521 0.002268731 2.181521 +2.494678 0.002268731 2.181521 +2.852659 0.002268731 2.181521 +3.261896 0.002268731 2.181521 +3.729748 0.002268731 2.181521 +4.264621 0.002268731 2.181521 +4.876131 0.002268731 2.181521 +5.575266 0.002268731 2.181521 +6.374593 0.002268731 2.181521 +0 0.07076883 2.181521 +0 0.07076883 2.181521 +0 0.07076883 2.181521 +0.002268731 0.07076883 2.181521 +0.07076883 0.07076883 2.181521 +0.1119241 0.07076883 2.181521 +0.1475052 0.07076883 2.181521 +0.1846606 0.07076883 2.181521 +0.2245119 0.07076883 2.181521 +0.2679612 0.07076883 2.181521 +0.3158431 0.07076883 2.181521 +0.3689944 0.07076883 2.181521 +0.4282948 0.07076883 2.181521 +0.494694 0.07076883 2.181521 +0.5692344 0.07076883 2.181521 +0.6530715 0.07076883 2.181521 +0.7474945 0.07076883 2.181521 +0.8539475 0.07076883 2.181521 +0.974052 0.07076883 2.181521 +1.113885 0.07076883 2.181521 +1.27456 0.07076883 2.181521 +1.458117 0.07076883 2.181521 +1.667858 0.07076883 2.181521 +1.907556 0.07076883 2.181521 +2.181521 0.07076883 2.181521 +2.494678 0.07076883 2.181521 +2.852659 0.07076883 2.181521 +3.261896 0.07076883 2.181521 +3.729748 0.07076883 2.181521 +4.264621 0.07076883 2.181521 +4.876131 0.07076883 2.181521 +5.575266 0.07076883 2.181521 +6.374593 0.07076883 2.181521 +0 0.1119241 2.181521 +0 0.1119241 2.181521 +0 0.1119241 2.181521 +0.002268731 0.1119241 2.181521 +0.07076883 0.1119241 2.181521 +0.1119241 0.1119241 2.181521 +0.1475052 0.1119241 2.181521 +0.1846606 0.1119241 2.181521 +0.2245119 0.1119241 2.181521 +0.2679612 0.1119241 2.181521 +0.3158431 0.1119241 2.181521 +0.3689944 0.1119241 2.181521 +0.4282948 0.1119241 2.181521 +0.494694 0.1119241 2.181521 +0.5692344 0.1119241 2.181521 +0.6530715 0.1119241 2.181521 +0.7474945 0.1119241 2.181521 +0.8539475 0.1119241 2.181521 +0.974052 0.1119241 2.181521 +1.113885 0.1119241 2.181521 +1.27456 0.1119241 2.181521 +1.458117 0.1119241 2.181521 +1.667858 0.1119241 2.181521 +1.907556 0.1119241 2.181521 +2.181521 0.1119241 2.181521 +2.494678 0.1119241 2.181521 +2.852659 0.1119241 2.181521 +3.261896 0.1119241 2.181521 +3.729748 0.1119241 2.181521 +4.264621 0.1119241 2.181521 +4.876131 0.1119241 2.181521 +5.575266 0.1119241 2.181521 +6.374593 0.1119241 2.181521 +0 0.1475052 2.181521 +0 0.1475052 2.181521 +0 0.1475052 2.181521 +0.002268731 0.1475052 2.181521 +0.07076883 0.1475052 2.181521 +0.1119241 0.1475052 2.181521 +0.1475052 0.1475052 2.181521 +0.1846606 0.1475052 2.181521 +0.2245119 0.1475052 2.181521 +0.2679612 0.1475052 2.181521 +0.3158431 0.1475052 2.181521 +0.3689944 0.1475052 2.181521 +0.4282948 0.1475052 2.181521 +0.494694 0.1475052 2.181521 +0.5692344 0.1475052 2.181521 +0.6530715 0.1475052 2.181521 +0.7474945 0.1475052 2.181521 +0.8539475 0.1475052 2.181521 +0.974052 0.1475052 2.181521 +1.113885 0.1475052 2.181521 +1.27456 0.1475052 2.181521 +1.458117 0.1475052 2.181521 +1.667858 0.1475052 2.181521 +1.907556 0.1475052 2.181521 +2.181521 0.1475052 2.181521 +2.494678 0.1475052 2.181521 +2.852659 0.1475052 2.181521 +3.261896 0.1475052 2.181521 +3.729748 0.1475052 2.181521 +4.264621 0.1475052 2.181521 +4.876131 0.1475052 2.181521 +5.575266 0.1475052 2.181521 +6.374593 0.1475052 2.181521 +0 0.1846606 2.181521 +0 0.1846606 2.181521 +0 0.1846606 2.181521 +0.002268731 0.1846606 2.181521 +0.07076883 0.1846606 2.181521 +0.1119241 0.1846606 2.181521 +0.1475052 0.1846606 2.181521 +0.1846606 0.1846606 2.181521 +0.2245119 0.1846606 2.181521 +0.2679612 0.1846606 2.181521 +0.3158431 0.1846606 2.181521 +0.3689944 0.1846606 2.181521 +0.4282948 0.1846606 2.181521 +0.494694 0.1846606 2.181521 +0.5692344 0.1846606 2.181521 +0.6530715 0.1846606 2.181521 +0.7474945 0.1846606 2.181521 +0.8539475 0.1846606 2.181521 +0.974052 0.1846606 2.181521 +1.113885 0.1846606 2.181521 +1.27456 0.1846606 2.181521 +1.458117 0.1846606 2.181521 +1.667858 0.1846606 2.181521 +1.907556 0.1846606 2.181521 +2.181521 0.1846606 2.181521 +2.494678 0.1846606 2.181521 +2.852659 0.1846606 2.181521 +3.261896 0.1846606 2.181521 +3.729748 0.1846606 2.181521 +4.264621 0.1846606 2.181521 +4.876131 0.1846606 2.181521 +5.575266 0.1846606 2.181521 +6.374593 0.1846606 2.181521 +0 0.2245119 2.181521 +0 0.2245119 2.181521 +0 0.2245119 2.181521 +0.002268731 0.2245119 2.181521 +0.07076883 0.2245119 2.181521 +0.1119241 0.2245119 2.181521 +0.1475052 0.2245119 2.181521 +0.1846606 0.2245119 2.181521 +0.2245119 0.2245119 2.181521 +0.2679612 0.2245119 2.181521 +0.3158431 0.2245119 2.181521 +0.3689944 0.2245119 2.181521 +0.4282948 0.2245119 2.181521 +0.494694 0.2245119 2.181521 +0.5692344 0.2245119 2.181521 +0.6530715 0.2245119 2.181521 +0.7474945 0.2245119 2.181521 +0.8539475 0.2245119 2.181521 +0.974052 0.2245119 2.181521 +1.113885 0.2245119 2.181521 +1.27456 0.2245119 2.181521 +1.458117 0.2245119 2.181521 +1.667858 0.2245119 2.181521 +1.907556 0.2245119 2.181521 +2.181521 0.2245119 2.181521 +2.494678 0.2245119 2.181521 +2.852659 0.2245119 2.181521 +3.261896 0.2245119 2.181521 +3.729748 0.2245119 2.181521 +4.264621 0.2245119 2.181521 +4.876131 0.2245119 2.181521 +5.575266 0.2245119 2.181521 +6.374593 0.2245119 2.181521 +0 0.2679612 2.181521 +0 0.2679612 2.181521 +0 0.2679612 2.181521 +0.002268731 0.2679612 2.181521 +0.07076883 0.2679612 2.181521 +0.1119241 0.2679612 2.181521 +0.1475052 0.2679612 2.181521 +0.1846606 0.2679612 2.181521 +0.2245119 0.2679612 2.181521 +0.2679612 0.2679612 2.181521 +0.3158431 0.2679612 2.181521 +0.3689944 0.2679612 2.181521 +0.4282948 0.2679612 2.181521 +0.494694 0.2679612 2.181521 +0.5692344 0.2679612 2.181521 +0.6530715 0.2679612 2.181521 +0.7474945 0.2679612 2.181521 +0.8539475 0.2679612 2.181521 +0.974052 0.2679612 2.181521 +1.113885 0.2679612 2.181521 +1.27456 0.2679612 2.181521 +1.458117 0.2679612 2.181521 +1.667858 0.2679612 2.181521 +1.907556 0.2679612 2.181521 +2.181521 0.2679612 2.181521 +2.494678 0.2679612 2.181521 +2.852659 0.2679612 2.181521 +3.261896 0.2679612 2.181521 +3.729748 0.2679612 2.181521 +4.264621 0.2679612 2.181521 +4.876131 0.2679612 2.181521 +5.575266 0.2679612 2.181521 +6.374593 0.2679612 2.181521 +0 0.3158431 2.181521 +0 0.3158431 2.181521 +0 0.3158431 2.181521 +0.002268731 0.3158431 2.181521 +0.07076883 0.3158431 2.181521 +0.1119241 0.3158431 2.181521 +0.1475052 0.3158431 2.181521 +0.1846606 0.3158431 2.181521 +0.2245119 0.3158431 2.181521 +0.2679612 0.3158431 2.181521 +0.3158431 0.3158431 2.181521 +0.3689944 0.3158431 2.181521 +0.4282948 0.3158431 2.181521 +0.494694 0.3158431 2.181521 +0.5692344 0.3158431 2.181521 +0.6530715 0.3158431 2.181521 +0.7474945 0.3158431 2.181521 +0.8539475 0.3158431 2.181521 +0.974052 0.3158431 2.181521 +1.113885 0.3158431 2.181521 +1.27456 0.3158431 2.181521 +1.458117 0.3158431 2.181521 +1.667858 0.3158431 2.181521 +1.907556 0.3158431 2.181521 +2.181521 0.3158431 2.181521 +2.494678 0.3158431 2.181521 +2.852659 0.3158431 2.181521 +3.261896 0.3158431 2.181521 +3.729748 0.3158431 2.181521 +4.264621 0.3158431 2.181521 +4.876131 0.3158431 2.181521 +5.575266 0.3158431 2.181521 +6.374593 0.3158431 2.181521 +0 0.3689944 2.181521 +0 0.3689944 2.181521 +0 0.3689944 2.181521 +0.002268731 0.3689944 2.181521 +0.07076883 0.3689944 2.181521 +0.1119241 0.3689944 2.181521 +0.1475052 0.3689944 2.181521 +0.1846606 0.3689944 2.181521 +0.2245119 0.3689944 2.181521 +0.2679612 0.3689944 2.181521 +0.3158431 0.3689944 2.181521 +0.3689944 0.3689944 2.181521 +0.4282948 0.3689944 2.181521 +0.494694 0.3689944 2.181521 +0.5692344 0.3689944 2.181521 +0.6530715 0.3689944 2.181521 +0.7474945 0.3689944 2.181521 +0.8539475 0.3689944 2.181521 +0.974052 0.3689944 2.181521 +1.113885 0.3689944 2.181521 +1.27456 0.3689944 2.181521 +1.458117 0.3689944 2.181521 +1.667858 0.3689944 2.181521 +1.907556 0.3689944 2.181521 +2.181521 0.3689944 2.181521 +2.494678 0.3689944 2.181521 +2.852659 0.3689944 2.181521 +3.261896 0.3689944 2.181521 +3.729748 0.3689944 2.181521 +4.264621 0.3689944 2.181521 +4.876131 0.3689944 2.181521 +5.575266 0.3689944 2.181521 +6.374593 0.3689944 2.181521 +0 0.4282948 2.181521 +0 0.4282948 2.181521 +0 0.4282948 2.181521 +0.002268731 0.4282948 2.181521 +0.07076883 0.4282948 2.181521 +0.1119241 0.4282948 2.181521 +0.1475052 0.4282948 2.181521 +0.1846606 0.4282948 2.181521 +0.2245119 0.4282948 2.181521 +0.2679612 0.4282948 2.181521 +0.3158431 0.4282948 2.181521 +0.3689944 0.4282948 2.181521 +0.4282948 0.4282948 2.181521 +0.494694 0.4282948 2.181521 +0.5692344 0.4282948 2.181521 +0.6530715 0.4282948 2.181521 +0.7474945 0.4282948 2.181521 +0.8539475 0.4282948 2.181521 +0.974052 0.4282948 2.181521 +1.113885 0.4282948 2.181521 +1.27456 0.4282948 2.181521 +1.458117 0.4282948 2.181521 +1.667858 0.4282948 2.181521 +1.907556 0.4282948 2.181521 +2.181521 0.4282948 2.181521 +2.494678 0.4282948 2.181521 +2.852659 0.4282948 2.181521 +3.261896 0.4282948 2.181521 +3.729748 0.4282948 2.181521 +4.264621 0.4282948 2.181521 +4.876131 0.4282948 2.181521 +5.575266 0.4282948 2.181521 +6.374593 0.4282948 2.181521 +0 0.494694 2.181521 +0 0.494694 2.181521 +0 0.494694 2.181521 +0.002268731 0.494694 2.181521 +0.07076883 0.494694 2.181521 +0.1119241 0.494694 2.181521 +0.1475052 0.494694 2.181521 +0.1846606 0.494694 2.181521 +0.2245119 0.494694 2.181521 +0.2679612 0.494694 2.181521 +0.3158431 0.494694 2.181521 +0.3689944 0.494694 2.181521 +0.4282948 0.494694 2.181521 +0.494694 0.494694 2.181521 +0.5692344 0.494694 2.181521 +0.6530715 0.494694 2.181521 +0.7474945 0.494694 2.181521 +0.8539475 0.494694 2.181521 +0.974052 0.494694 2.181521 +1.113885 0.494694 2.181521 +1.27456 0.494694 2.181521 +1.458117 0.494694 2.181521 +1.667858 0.494694 2.181521 +1.907556 0.494694 2.181521 +2.181521 0.494694 2.181521 +2.494678 0.494694 2.181521 +2.852659 0.494694 2.181521 +3.261896 0.494694 2.181521 +3.729748 0.494694 2.181521 +4.264621 0.494694 2.181521 +4.876131 0.494694 2.181521 +5.575266 0.494694 2.181521 +6.374593 0.494694 2.181521 +0 0.5692344 2.181521 +0 0.5692344 2.181521 +0 0.5692344 2.181521 +0.002268731 0.5692344 2.181521 +0.07076883 0.5692344 2.181521 +0.1119241 0.5692344 2.181521 +0.1475052 0.5692344 2.181521 +0.1846606 0.5692344 2.181521 +0.2245119 0.5692344 2.181521 +0.2679612 0.5692344 2.181521 +0.3158431 0.5692344 2.181521 +0.3689944 0.5692344 2.181521 +0.4282948 0.5692344 2.181521 +0.494694 0.5692344 2.181521 +0.5692344 0.5692344 2.181521 +0.6530715 0.5692344 2.181521 +0.7474945 0.5692344 2.181521 +0.8539475 0.5692344 2.181521 +0.974052 0.5692344 2.181521 +1.113885 0.5692344 2.181521 +1.27456 0.5692344 2.181521 +1.458117 0.5692344 2.181521 +1.667858 0.5692344 2.181521 +1.907556 0.5692344 2.181521 +2.181521 0.5692344 2.181521 +2.494678 0.5692344 2.181521 +2.852659 0.5692344 2.181521 +3.261896 0.5692344 2.181521 +3.729748 0.5692344 2.181521 +4.264621 0.5692344 2.181521 +4.876131 0.5692344 2.181521 +5.575266 0.5692344 2.181521 +6.374593 0.5692344 2.181521 +0 0.6530715 2.181521 +0 0.6530715 2.181521 +0 0.6530715 2.181521 +0.002268731 0.6530715 2.181521 +0.07076883 0.6530715 2.181521 +0.1119241 0.6530715 2.181521 +0.1475052 0.6530715 2.181521 +0.1846606 0.6530715 2.181521 +0.2245119 0.6530715 2.181521 +0.2679612 0.6530715 2.181521 +0.3158431 0.6530715 2.181521 +0.3689944 0.6530715 2.181521 +0.4282948 0.6530715 2.181521 +0.494694 0.6530715 2.181521 +0.5692344 0.6530715 2.181521 +0.6530715 0.6530715 2.181521 +0.7474945 0.6530715 2.181521 +0.8539475 0.6530715 2.181521 +0.974052 0.6530715 2.181521 +1.113885 0.6530715 2.181521 +1.27456 0.6530715 2.181521 +1.458117 0.6530715 2.181521 +1.667858 0.6530715 2.181521 +1.907556 0.6530715 2.181521 +2.181521 0.6530715 2.181521 +2.494678 0.6530715 2.181521 +2.852659 0.6530715 2.181521 +3.261896 0.6530715 2.181521 +3.729748 0.6530715 2.181521 +4.264621 0.6530715 2.181521 +4.876131 0.6530715 2.181521 +5.575266 0.6530715 2.181521 +6.374593 0.6530715 2.181521 +0 0.7474945 2.181521 +0 0.7474945 2.181521 +0 0.7474945 2.181521 +0.002268731 0.7474945 2.181521 +0.07076883 0.7474945 2.181521 +0.1119241 0.7474945 2.181521 +0.1475052 0.7474945 2.181521 +0.1846606 0.7474945 2.181521 +0.2245119 0.7474945 2.181521 +0.2679612 0.7474945 2.181521 +0.3158431 0.7474945 2.181521 +0.3689944 0.7474945 2.181521 +0.4282948 0.7474945 2.181521 +0.494694 0.7474945 2.181521 +0.5692344 0.7474945 2.181521 +0.6530715 0.7474945 2.181521 +0.7474945 0.7474945 2.181521 +0.8539475 0.7474945 2.181521 +0.974052 0.7474945 2.181521 +1.113885 0.7474945 2.181521 +1.27456 0.7474945 2.181521 +1.458117 0.7474945 2.181521 +1.667858 0.7474945 2.181521 +1.907556 0.7474945 2.181521 +2.181521 0.7474945 2.181521 +2.494678 0.7474945 2.181521 +2.852659 0.7474945 2.181521 +3.261896 0.7474945 2.181521 +3.729748 0.7474945 2.181521 +4.264621 0.7474945 2.181521 +4.876131 0.7474945 2.181521 +5.575266 0.7474945 2.181521 +6.374593 0.7474945 2.181521 +0 0.8539475 2.181521 +0 0.8539475 2.181521 +0 0.8539475 2.181521 +0.002268731 0.8539475 2.181521 +0.07076883 0.8539475 2.181521 +0.1119241 0.8539475 2.181521 +0.1475052 0.8539475 2.181521 +0.1846606 0.8539475 2.181521 +0.2245119 0.8539475 2.181521 +0.2679612 0.8539475 2.181521 +0.3158431 0.8539475 2.181521 +0.3689944 0.8539475 2.181521 +0.4282948 0.8539475 2.181521 +0.494694 0.8539475 2.181521 +0.5692344 0.8539475 2.181521 +0.6530715 0.8539475 2.181521 +0.7474945 0.8539475 2.181521 +0.8539475 0.8539475 2.181521 +0.974052 0.8539475 2.181521 +1.113885 0.8539475 2.181521 +1.27456 0.8539475 2.181521 +1.458117 0.8539475 2.181521 +1.667858 0.8539475 2.181521 +1.907556 0.8539475 2.181521 +2.181521 0.8539475 2.181521 +2.494678 0.8539475 2.181521 +2.852659 0.8539475 2.181521 +3.261896 0.8539475 2.181521 +3.729748 0.8539475 2.181521 +4.264621 0.8539475 2.181521 +4.876131 0.8539475 2.181521 +5.575266 0.8539475 2.181521 +6.374593 0.8539475 2.181521 +0 0.974052 2.181521 +0 0.974052 2.181521 +0 0.974052 2.181521 +0.002268731 0.974052 2.181521 +0.07076883 0.974052 2.181521 +0.1119241 0.974052 2.181521 +0.1475052 0.974052 2.181521 +0.1846606 0.974052 2.181521 +0.2245119 0.974052 2.181521 +0.2679612 0.974052 2.181521 +0.3158431 0.974052 2.181521 +0.3689944 0.974052 2.181521 +0.4282948 0.974052 2.181521 +0.494694 0.974052 2.181521 +0.5692344 0.974052 2.181521 +0.6530715 0.974052 2.181521 +0.7474945 0.974052 2.181521 +0.8539475 0.974052 2.181521 +0.974052 0.974052 2.181521 +1.113885 0.974052 2.181521 +1.27456 0.974052 2.181521 +1.458117 0.974052 2.181521 +1.667858 0.974052 2.181521 +1.907556 0.974052 2.181521 +2.181521 0.974052 2.181521 +2.494678 0.974052 2.181521 +2.852659 0.974052 2.181521 +3.261896 0.974052 2.181521 +3.729748 0.974052 2.181521 +4.264621 0.974052 2.181521 +4.876131 0.974052 2.181521 +5.575266 0.974052 2.181521 +6.374593 0.974052 2.181521 +0 1.113885 2.181521 +0 1.113885 2.181521 +0 1.113885 2.181521 +0.002268731 1.113885 2.181521 +0.07076883 1.113885 2.181521 +0.1119241 1.113885 2.181521 +0.1475052 1.113885 2.181521 +0.1846606 1.113885 2.181521 +0.2245119 1.113885 2.181521 +0.2679612 1.113885 2.181521 +0.3158431 1.113885 2.181521 +0.3689944 1.113885 2.181521 +0.4282948 1.113885 2.181521 +0.494694 1.113885 2.181521 +0.5692344 1.113885 2.181521 +0.6530715 1.113885 2.181521 +0.7474945 1.113885 2.181521 +0.8539475 1.113885 2.181521 +0.974052 1.113885 2.181521 +1.113885 1.113885 2.181521 +1.27456 1.113885 2.181521 +1.458117 1.113885 2.181521 +1.667858 1.113885 2.181521 +1.907556 1.113885 2.181521 +2.181521 1.113885 2.181521 +2.494678 1.113885 2.181521 +2.852659 1.113885 2.181521 +3.261896 1.113885 2.181521 +3.729748 1.113885 2.181521 +4.264621 1.113885 2.181521 +4.876131 1.113885 2.181521 +5.575266 1.113885 2.181521 +6.374593 1.113885 2.181521 +0 1.27456 2.181521 +0 1.27456 2.181521 +0 1.27456 2.181521 +0.002268731 1.27456 2.181521 +0.07076883 1.27456 2.181521 +0.1119241 1.27456 2.181521 +0.1475052 1.27456 2.181521 +0.1846606 1.27456 2.181521 +0.2245119 1.27456 2.181521 +0.2679612 1.27456 2.181521 +0.3158431 1.27456 2.181521 +0.3689944 1.27456 2.181521 +0.4282948 1.27456 2.181521 +0.494694 1.27456 2.181521 +0.5692344 1.27456 2.181521 +0.6530715 1.27456 2.181521 +0.7474945 1.27456 2.181521 +0.8539475 1.27456 2.181521 +0.974052 1.27456 2.181521 +1.113885 1.27456 2.181521 +1.27456 1.27456 2.181521 +1.458117 1.27456 2.181521 +1.667858 1.27456 2.181521 +1.907556 1.27456 2.181521 +2.181521 1.27456 2.181521 +2.494678 1.27456 2.181521 +2.852659 1.27456 2.181521 +3.261896 1.27456 2.181521 +3.729748 1.27456 2.181521 +4.264621 1.27456 2.181521 +4.876131 1.27456 2.181521 +5.575266 1.27456 2.181521 +6.374593 1.27456 2.181521 +0 1.458117 2.181521 +0 1.458117 2.181521 +0 1.458117 2.181521 +0.002268731 1.458117 2.181521 +0.07076883 1.458117 2.181521 +0.1119241 1.458117 2.181521 +0.1475052 1.458117 2.181521 +0.1846606 1.458117 2.181521 +0.2245119 1.458117 2.181521 +0.2679612 1.458117 2.181521 +0.3158431 1.458117 2.181521 +0.3689944 1.458117 2.181521 +0.4282948 1.458117 2.181521 +0.494694 1.458117 2.181521 +0.5692344 1.458117 2.181521 +0.6530715 1.458117 2.181521 +0.7474945 1.458117 2.181521 +0.8539475 1.458117 2.181521 +0.974052 1.458117 2.181521 +1.113885 1.458117 2.181521 +1.27456 1.458117 2.181521 +1.458117 1.458117 2.181521 +1.667858 1.458117 2.181521 +1.907556 1.458117 2.181521 +2.181521 1.458117 2.181521 +2.494678 1.458117 2.181521 +2.852659 1.458117 2.181521 +3.261896 1.458117 2.181521 +3.729748 1.458117 2.181521 +4.264621 1.458117 2.181521 +4.876131 1.458117 2.181521 +5.575266 1.458117 2.181521 +6.374593 1.458117 2.181521 +0 1.667858 2.181521 +0 1.667858 2.181521 +0 1.667858 2.181521 +0.002268731 1.667858 2.181521 +0.07076883 1.667858 2.181521 +0.1119241 1.667858 2.181521 +0.1475052 1.667858 2.181521 +0.1846606 1.667858 2.181521 +0.2245119 1.667858 2.181521 +0.2679612 1.667858 2.181521 +0.3158431 1.667858 2.181521 +0.3689944 1.667858 2.181521 +0.4282948 1.667858 2.181521 +0.494694 1.667858 2.181521 +0.5692344 1.667858 2.181521 +0.6530715 1.667858 2.181521 +0.7474945 1.667858 2.181521 +0.8539475 1.667858 2.181521 +0.974052 1.667858 2.181521 +1.113885 1.667858 2.181521 +1.27456 1.667858 2.181521 +1.458117 1.667858 2.181521 +1.667858 1.667858 2.181521 +1.907556 1.667858 2.181521 +2.181521 1.667858 2.181521 +2.494678 1.667858 2.181521 +2.852659 1.667858 2.181521 +3.261896 1.667858 2.181521 +3.729748 1.667858 2.181521 +4.264621 1.667858 2.181521 +4.876131 1.667858 2.181521 +5.575266 1.667858 2.181521 +6.374593 1.667858 2.181521 +0 1.907556 2.181521 +0 1.907556 2.181521 +0 1.907556 2.181521 +0.002268731 1.907556 2.181521 +0.07076883 1.907556 2.181521 +0.1119241 1.907556 2.181521 +0.1475052 1.907556 2.181521 +0.1846606 1.907556 2.181521 +0.2245119 1.907556 2.181521 +0.2679612 1.907556 2.181521 +0.3158431 1.907556 2.181521 +0.3689944 1.907556 2.181521 +0.4282948 1.907556 2.181521 +0.494694 1.907556 2.181521 +0.5692344 1.907556 2.181521 +0.6530715 1.907556 2.181521 +0.7474945 1.907556 2.181521 +0.8539475 1.907556 2.181521 +0.974052 1.907556 2.181521 +1.113885 1.907556 2.181521 +1.27456 1.907556 2.181521 +1.458117 1.907556 2.181521 +1.667858 1.907556 2.181521 +1.907556 1.907556 2.181521 +2.181521 1.907556 2.181521 +2.494678 1.907556 2.181521 +2.852659 1.907556 2.181521 +3.261896 1.907556 2.181521 +3.729748 1.907556 2.181521 +4.264621 1.907556 2.181521 +4.876131 1.907556 2.181521 +5.575266 1.907556 2.181521 +6.374593 1.907556 2.181521 +0 2.181521 2.181521 +0 2.181521 2.181521 +0 2.181521 2.181521 +0.002268731 2.181521 2.181521 +0.07076883 2.181521 2.181521 +0.1119241 2.181521 2.181521 +0.1475052 2.181521 2.181521 +0.1846606 2.181521 2.181521 +0.2245119 2.181521 2.181521 +0.2679612 2.181521 2.181521 +0.3158431 2.181521 2.181521 +0.3689944 2.181521 2.181521 +0.4282948 2.181521 2.181521 +0.494694 2.181521 2.181521 +0.5692344 2.181521 2.181521 +0.6530715 2.181521 2.181521 +0.7474945 2.181521 2.181521 +0.8539475 2.181521 2.181521 +0.974052 2.181521 2.181521 +1.113885 2.181521 2.181521 +1.27456 2.181521 2.181521 +1.458117 2.181521 2.181521 +1.667858 2.181521 2.181521 +1.907556 2.181521 2.181521 +2.181521 2.181521 2.181521 +2.494678 2.181521 2.181521 +2.852659 2.181521 2.181521 +3.261896 2.181521 2.181521 +3.729748 2.181521 2.181521 +4.264621 2.181521 2.181521 +4.876131 2.181521 2.181521 +5.575266 2.181521 2.181521 +6.374593 2.181521 2.181521 +0 2.494678 2.181521 +0 2.494678 2.181521 +0 2.494678 2.181521 +0.002268731 2.494678 2.181521 +0.07076883 2.494678 2.181521 +0.1119241 2.494678 2.181521 +0.1475052 2.494678 2.181521 +0.1846606 2.494678 2.181521 +0.2245119 2.494678 2.181521 +0.2679612 2.494678 2.181521 +0.3158431 2.494678 2.181521 +0.3689944 2.494678 2.181521 +0.4282948 2.494678 2.181521 +0.494694 2.494678 2.181521 +0.5692344 2.494678 2.181521 +0.6530715 2.494678 2.181521 +0.7474945 2.494678 2.181521 +0.8539475 2.494678 2.181521 +0.974052 2.494678 2.181521 +1.113885 2.494678 2.181521 +1.27456 2.494678 2.181521 +1.458117 2.494678 2.181521 +1.667858 2.494678 2.181521 +1.907556 2.494678 2.181521 +2.181521 2.494678 2.181521 +2.494678 2.494678 2.181521 +2.852659 2.494678 2.181521 +3.261896 2.494678 2.181521 +3.729748 2.494678 2.181521 +4.264621 2.494678 2.181521 +4.876131 2.494678 2.181521 +5.575266 2.494678 2.181521 +6.374593 2.494678 2.181521 +0 2.852659 2.181521 +0 2.852659 2.181521 +0 2.852659 2.181521 +0.002268731 2.852659 2.181521 +0.07076883 2.852659 2.181521 +0.1119241 2.852659 2.181521 +0.1475052 2.852659 2.181521 +0.1846606 2.852659 2.181521 +0.2245119 2.852659 2.181521 +0.2679612 2.852659 2.181521 +0.3158431 2.852659 2.181521 +0.3689944 2.852659 2.181521 +0.4282948 2.852659 2.181521 +0.494694 2.852659 2.181521 +0.5692344 2.852659 2.181521 +0.6530715 2.852659 2.181521 +0.7474945 2.852659 2.181521 +0.8539475 2.852659 2.181521 +0.974052 2.852659 2.181521 +1.113885 2.852659 2.181521 +1.27456 2.852659 2.181521 +1.458117 2.852659 2.181521 +1.667858 2.852659 2.181521 +1.907556 2.852659 2.181521 +2.181521 2.852659 2.181521 +2.494678 2.852659 2.181521 +2.852659 2.852659 2.181521 +3.261896 2.852659 2.181521 +3.729748 2.852659 2.181521 +4.264621 2.852659 2.181521 +4.876131 2.852659 2.181521 +5.575266 2.852659 2.181521 +6.374593 2.852659 2.181521 +0 3.261896 2.181521 +0 3.261896 2.181521 +0 3.261896 2.181521 +0.002268731 3.261896 2.181521 +0.07076883 3.261896 2.181521 +0.1119241 3.261896 2.181521 +0.1475052 3.261896 2.181521 +0.1846606 3.261896 2.181521 +0.2245119 3.261896 2.181521 +0.2679612 3.261896 2.181521 +0.3158431 3.261896 2.181521 +0.3689944 3.261896 2.181521 +0.4282948 3.261896 2.181521 +0.494694 3.261896 2.181521 +0.5692344 3.261896 2.181521 +0.6530715 3.261896 2.181521 +0.7474945 3.261896 2.181521 +0.8539475 3.261896 2.181521 +0.974052 3.261896 2.181521 +1.113885 3.261896 2.181521 +1.27456 3.261896 2.181521 +1.458117 3.261896 2.181521 +1.667858 3.261896 2.181521 +1.907556 3.261896 2.181521 +2.181521 3.261896 2.181521 +2.494678 3.261896 2.181521 +2.852659 3.261896 2.181521 +3.261896 3.261896 2.181521 +3.729748 3.261896 2.181521 +4.264621 3.261896 2.181521 +4.876131 3.261896 2.181521 +5.575266 3.261896 2.181521 +6.374593 3.261896 2.181521 +0 3.729748 2.181521 +0 3.729748 2.181521 +0 3.729748 2.181521 +0.002268731 3.729748 2.181521 +0.07076883 3.729748 2.181521 +0.1119241 3.729748 2.181521 +0.1475052 3.729748 2.181521 +0.1846606 3.729748 2.181521 +0.2245119 3.729748 2.181521 +0.2679612 3.729748 2.181521 +0.3158431 3.729748 2.181521 +0.3689944 3.729748 2.181521 +0.4282948 3.729748 2.181521 +0.494694 3.729748 2.181521 +0.5692344 3.729748 2.181521 +0.6530715 3.729748 2.181521 +0.7474945 3.729748 2.181521 +0.8539475 3.729748 2.181521 +0.974052 3.729748 2.181521 +1.113885 3.729748 2.181521 +1.27456 3.729748 2.181521 +1.458117 3.729748 2.181521 +1.667858 3.729748 2.181521 +1.907556 3.729748 2.181521 +2.181521 3.729748 2.181521 +2.494678 3.729748 2.181521 +2.852659 3.729748 2.181521 +3.261896 3.729748 2.181521 +3.729748 3.729748 2.181521 +4.264621 3.729748 2.181521 +4.876131 3.729748 2.181521 +5.575266 3.729748 2.181521 +6.374593 3.729748 2.181521 +0 4.264621 2.181521 +0 4.264621 2.181521 +0 4.264621 2.181521 +0.002268731 4.264621 2.181521 +0.07076883 4.264621 2.181521 +0.1119241 4.264621 2.181521 +0.1475052 4.264621 2.181521 +0.1846606 4.264621 2.181521 +0.2245119 4.264621 2.181521 +0.2679612 4.264621 2.181521 +0.3158431 4.264621 2.181521 +0.3689944 4.264621 2.181521 +0.4282948 4.264621 2.181521 +0.494694 4.264621 2.181521 +0.5692344 4.264621 2.181521 +0.6530715 4.264621 2.181521 +0.7474945 4.264621 2.181521 +0.8539475 4.264621 2.181521 +0.974052 4.264621 2.181521 +1.113885 4.264621 2.181521 +1.27456 4.264621 2.181521 +1.458117 4.264621 2.181521 +1.667858 4.264621 2.181521 +1.907556 4.264621 2.181521 +2.181521 4.264621 2.181521 +2.494678 4.264621 2.181521 +2.852659 4.264621 2.181521 +3.261896 4.264621 2.181521 +3.729748 4.264621 2.181521 +4.264621 4.264621 2.181521 +4.876131 4.264621 2.181521 +5.575266 4.264621 2.181521 +6.374593 4.264621 2.181521 +0 4.876131 2.181521 +0 4.876131 2.181521 +0 4.876131 2.181521 +0.002268731 4.876131 2.181521 +0.07076883 4.876131 2.181521 +0.1119241 4.876131 2.181521 +0.1475052 4.876131 2.181521 +0.1846606 4.876131 2.181521 +0.2245119 4.876131 2.181521 +0.2679612 4.876131 2.181521 +0.3158431 4.876131 2.181521 +0.3689944 4.876131 2.181521 +0.4282948 4.876131 2.181521 +0.494694 4.876131 2.181521 +0.5692344 4.876131 2.181521 +0.6530715 4.876131 2.181521 +0.7474945 4.876131 2.181521 +0.8539475 4.876131 2.181521 +0.974052 4.876131 2.181521 +1.113885 4.876131 2.181521 +1.27456 4.876131 2.181521 +1.458117 4.876131 2.181521 +1.667858 4.876131 2.181521 +1.907556 4.876131 2.181521 +2.181521 4.876131 2.181521 +2.494678 4.876131 2.181521 +2.852659 4.876131 2.181521 +3.261896 4.876131 2.181521 +3.729748 4.876131 2.181521 +4.264621 4.876131 2.181521 +4.876131 4.876131 2.181521 +5.575266 4.876131 2.181521 +6.374593 4.876131 2.181521 +0 5.575266 2.181521 +0 5.575266 2.181521 +0 5.575266 2.181521 +0.002268731 5.575266 2.181521 +0.07076883 5.575266 2.181521 +0.1119241 5.575266 2.181521 +0.1475052 5.575266 2.181521 +0.1846606 5.575266 2.181521 +0.2245119 5.575266 2.181521 +0.2679612 5.575266 2.181521 +0.3158431 5.575266 2.181521 +0.3689944 5.575266 2.181521 +0.4282948 5.575266 2.181521 +0.494694 5.575266 2.181521 +0.5692344 5.575266 2.181521 +0.6530715 5.575266 2.181521 +0.7474945 5.575266 2.181521 +0.8539475 5.575266 2.181521 +0.974052 5.575266 2.181521 +1.113885 5.575266 2.181521 +1.27456 5.575266 2.181521 +1.458117 5.575266 2.181521 +1.667858 5.575266 2.181521 +1.907556 5.575266 2.181521 +2.181521 5.575266 2.181521 +2.494678 5.575266 2.181521 +2.852659 5.575266 2.181521 +3.261896 5.575266 2.181521 +3.729748 5.575266 2.181521 +4.264621 5.575266 2.181521 +4.876131 5.575266 2.181521 +5.575266 5.575266 2.181521 +6.374593 5.575266 2.181521 +0 6.374593 2.181521 +0 6.374593 2.181521 +0 6.374593 2.181521 +0.002268731 6.374593 2.181521 +0.07076883 6.374593 2.181521 +0.1119241 6.374593 2.181521 +0.1475052 6.374593 2.181521 +0.1846606 6.374593 2.181521 +0.2245119 6.374593 2.181521 +0.2679612 6.374593 2.181521 +0.3158431 6.374593 2.181521 +0.3689944 6.374593 2.181521 +0.4282948 6.374593 2.181521 +0.494694 6.374593 2.181521 +0.5692344 6.374593 2.181521 +0.6530715 6.374593 2.181521 +0.7474945 6.374593 2.181521 +0.8539475 6.374593 2.181521 +0.974052 6.374593 2.181521 +1.113885 6.374593 2.181521 +1.27456 6.374593 2.181521 +1.458117 6.374593 2.181521 +1.667858 6.374593 2.181521 +1.907556 6.374593 2.181521 +2.181521 6.374593 2.181521 +2.494678 6.374593 2.181521 +2.852659 6.374593 2.181521 +3.261896 6.374593 2.181521 +3.729748 6.374593 2.181521 +4.264621 6.374593 2.181521 +4.876131 6.374593 2.181521 +5.575266 6.374593 2.181521 +6.374593 6.374593 2.181521 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0.002268731 2.494678 +0 0.002268731 2.494678 +0 0.002268731 2.494678 +0.002268731 0.002268731 2.494678 +0.07076883 0.002268731 2.494678 +0.1119241 0.002268731 2.494678 +0.1475052 0.002268731 2.494678 +0.1846606 0.002268731 2.494678 +0.2245119 0.002268731 2.494678 +0.2679612 0.002268731 2.494678 +0.3158431 0.002268731 2.494678 +0.3689944 0.002268731 2.494678 +0.4282948 0.002268731 2.494678 +0.494694 0.002268731 2.494678 +0.5692344 0.002268731 2.494678 +0.6530715 0.002268731 2.494678 +0.7474945 0.002268731 2.494678 +0.8539475 0.002268731 2.494678 +0.974052 0.002268731 2.494678 +1.113885 0.002268731 2.494678 +1.27456 0.002268731 2.494678 +1.458117 0.002268731 2.494678 +1.667858 0.002268731 2.494678 +1.907556 0.002268731 2.494678 +2.181521 0.002268731 2.494678 +2.494678 0.002268731 2.494678 +2.852659 0.002268731 2.494678 +3.261896 0.002268731 2.494678 +3.729748 0.002268731 2.494678 +4.264621 0.002268731 2.494678 +4.876131 0.002268731 2.494678 +5.575266 0.002268731 2.494678 +6.374593 0.002268731 2.494678 +0 0.07076883 2.494678 +0 0.07076883 2.494678 +0 0.07076883 2.494678 +0.002268731 0.07076883 2.494678 +0.07076883 0.07076883 2.494678 +0.1119241 0.07076883 2.494678 +0.1475052 0.07076883 2.494678 +0.1846606 0.07076883 2.494678 +0.2245119 0.07076883 2.494678 +0.2679612 0.07076883 2.494678 +0.3158431 0.07076883 2.494678 +0.3689944 0.07076883 2.494678 +0.4282948 0.07076883 2.494678 +0.494694 0.07076883 2.494678 +0.5692344 0.07076883 2.494678 +0.6530715 0.07076883 2.494678 +0.7474945 0.07076883 2.494678 +0.8539475 0.07076883 2.494678 +0.974052 0.07076883 2.494678 +1.113885 0.07076883 2.494678 +1.27456 0.07076883 2.494678 +1.458117 0.07076883 2.494678 +1.667858 0.07076883 2.494678 +1.907556 0.07076883 2.494678 +2.181521 0.07076883 2.494678 +2.494678 0.07076883 2.494678 +2.852659 0.07076883 2.494678 +3.261896 0.07076883 2.494678 +3.729748 0.07076883 2.494678 +4.264621 0.07076883 2.494678 +4.876131 0.07076883 2.494678 +5.575266 0.07076883 2.494678 +6.374593 0.07076883 2.494678 +0 0.1119241 2.494678 +0 0.1119241 2.494678 +0 0.1119241 2.494678 +0.002268731 0.1119241 2.494678 +0.07076883 0.1119241 2.494678 +0.1119241 0.1119241 2.494678 +0.1475052 0.1119241 2.494678 +0.1846606 0.1119241 2.494678 +0.2245119 0.1119241 2.494678 +0.2679612 0.1119241 2.494678 +0.3158431 0.1119241 2.494678 +0.3689944 0.1119241 2.494678 +0.4282948 0.1119241 2.494678 +0.494694 0.1119241 2.494678 +0.5692344 0.1119241 2.494678 +0.6530715 0.1119241 2.494678 +0.7474945 0.1119241 2.494678 +0.8539475 0.1119241 2.494678 +0.974052 0.1119241 2.494678 +1.113885 0.1119241 2.494678 +1.27456 0.1119241 2.494678 +1.458117 0.1119241 2.494678 +1.667858 0.1119241 2.494678 +1.907556 0.1119241 2.494678 +2.181521 0.1119241 2.494678 +2.494678 0.1119241 2.494678 +2.852659 0.1119241 2.494678 +3.261896 0.1119241 2.494678 +3.729748 0.1119241 2.494678 +4.264621 0.1119241 2.494678 +4.876131 0.1119241 2.494678 +5.575266 0.1119241 2.494678 +6.374593 0.1119241 2.494678 +0 0.1475052 2.494678 +0 0.1475052 2.494678 +0 0.1475052 2.494678 +0.002268731 0.1475052 2.494678 +0.07076883 0.1475052 2.494678 +0.1119241 0.1475052 2.494678 +0.1475052 0.1475052 2.494678 +0.1846606 0.1475052 2.494678 +0.2245119 0.1475052 2.494678 +0.2679612 0.1475052 2.494678 +0.3158431 0.1475052 2.494678 +0.3689944 0.1475052 2.494678 +0.4282948 0.1475052 2.494678 +0.494694 0.1475052 2.494678 +0.5692344 0.1475052 2.494678 +0.6530715 0.1475052 2.494678 +0.7474945 0.1475052 2.494678 +0.8539475 0.1475052 2.494678 +0.974052 0.1475052 2.494678 +1.113885 0.1475052 2.494678 +1.27456 0.1475052 2.494678 +1.458117 0.1475052 2.494678 +1.667858 0.1475052 2.494678 +1.907556 0.1475052 2.494678 +2.181521 0.1475052 2.494678 +2.494678 0.1475052 2.494678 +2.852659 0.1475052 2.494678 +3.261896 0.1475052 2.494678 +3.729748 0.1475052 2.494678 +4.264621 0.1475052 2.494678 +4.876131 0.1475052 2.494678 +5.575266 0.1475052 2.494678 +6.374593 0.1475052 2.494678 +0 0.1846606 2.494678 +0 0.1846606 2.494678 +0 0.1846606 2.494678 +0.002268731 0.1846606 2.494678 +0.07076883 0.1846606 2.494678 +0.1119241 0.1846606 2.494678 +0.1475052 0.1846606 2.494678 +0.1846606 0.1846606 2.494678 +0.2245119 0.1846606 2.494678 +0.2679612 0.1846606 2.494678 +0.3158431 0.1846606 2.494678 +0.3689944 0.1846606 2.494678 +0.4282948 0.1846606 2.494678 +0.494694 0.1846606 2.494678 +0.5692344 0.1846606 2.494678 +0.6530715 0.1846606 2.494678 +0.7474945 0.1846606 2.494678 +0.8539475 0.1846606 2.494678 +0.974052 0.1846606 2.494678 +1.113885 0.1846606 2.494678 +1.27456 0.1846606 2.494678 +1.458117 0.1846606 2.494678 +1.667858 0.1846606 2.494678 +1.907556 0.1846606 2.494678 +2.181521 0.1846606 2.494678 +2.494678 0.1846606 2.494678 +2.852659 0.1846606 2.494678 +3.261896 0.1846606 2.494678 +3.729748 0.1846606 2.494678 +4.264621 0.1846606 2.494678 +4.876131 0.1846606 2.494678 +5.575266 0.1846606 2.494678 +6.374593 0.1846606 2.494678 +0 0.2245119 2.494678 +0 0.2245119 2.494678 +0 0.2245119 2.494678 +0.002268731 0.2245119 2.494678 +0.07076883 0.2245119 2.494678 +0.1119241 0.2245119 2.494678 +0.1475052 0.2245119 2.494678 +0.1846606 0.2245119 2.494678 +0.2245119 0.2245119 2.494678 +0.2679612 0.2245119 2.494678 +0.3158431 0.2245119 2.494678 +0.3689944 0.2245119 2.494678 +0.4282948 0.2245119 2.494678 +0.494694 0.2245119 2.494678 +0.5692344 0.2245119 2.494678 +0.6530715 0.2245119 2.494678 +0.7474945 0.2245119 2.494678 +0.8539475 0.2245119 2.494678 +0.974052 0.2245119 2.494678 +1.113885 0.2245119 2.494678 +1.27456 0.2245119 2.494678 +1.458117 0.2245119 2.494678 +1.667858 0.2245119 2.494678 +1.907556 0.2245119 2.494678 +2.181521 0.2245119 2.494678 +2.494678 0.2245119 2.494678 +2.852659 0.2245119 2.494678 +3.261896 0.2245119 2.494678 +3.729748 0.2245119 2.494678 +4.264621 0.2245119 2.494678 +4.876131 0.2245119 2.494678 +5.575266 0.2245119 2.494678 +6.374593 0.2245119 2.494678 +0 0.2679612 2.494678 +0 0.2679612 2.494678 +0 0.2679612 2.494678 +0.002268731 0.2679612 2.494678 +0.07076883 0.2679612 2.494678 +0.1119241 0.2679612 2.494678 +0.1475052 0.2679612 2.494678 +0.1846606 0.2679612 2.494678 +0.2245119 0.2679612 2.494678 +0.2679612 0.2679612 2.494678 +0.3158431 0.2679612 2.494678 +0.3689944 0.2679612 2.494678 +0.4282948 0.2679612 2.494678 +0.494694 0.2679612 2.494678 +0.5692344 0.2679612 2.494678 +0.6530715 0.2679612 2.494678 +0.7474945 0.2679612 2.494678 +0.8539475 0.2679612 2.494678 +0.974052 0.2679612 2.494678 +1.113885 0.2679612 2.494678 +1.27456 0.2679612 2.494678 +1.458117 0.2679612 2.494678 +1.667858 0.2679612 2.494678 +1.907556 0.2679612 2.494678 +2.181521 0.2679612 2.494678 +2.494678 0.2679612 2.494678 +2.852659 0.2679612 2.494678 +3.261896 0.2679612 2.494678 +3.729748 0.2679612 2.494678 +4.264621 0.2679612 2.494678 +4.876131 0.2679612 2.494678 +5.575266 0.2679612 2.494678 +6.374593 0.2679612 2.494678 +0 0.3158431 2.494678 +0 0.3158431 2.494678 +0 0.3158431 2.494678 +0.002268731 0.3158431 2.494678 +0.07076883 0.3158431 2.494678 +0.1119241 0.3158431 2.494678 +0.1475052 0.3158431 2.494678 +0.1846606 0.3158431 2.494678 +0.2245119 0.3158431 2.494678 +0.2679612 0.3158431 2.494678 +0.3158431 0.3158431 2.494678 +0.3689944 0.3158431 2.494678 +0.4282948 0.3158431 2.494678 +0.494694 0.3158431 2.494678 +0.5692344 0.3158431 2.494678 +0.6530715 0.3158431 2.494678 +0.7474945 0.3158431 2.494678 +0.8539475 0.3158431 2.494678 +0.974052 0.3158431 2.494678 +1.113885 0.3158431 2.494678 +1.27456 0.3158431 2.494678 +1.458117 0.3158431 2.494678 +1.667858 0.3158431 2.494678 +1.907556 0.3158431 2.494678 +2.181521 0.3158431 2.494678 +2.494678 0.3158431 2.494678 +2.852659 0.3158431 2.494678 +3.261896 0.3158431 2.494678 +3.729748 0.3158431 2.494678 +4.264621 0.3158431 2.494678 +4.876131 0.3158431 2.494678 +5.575266 0.3158431 2.494678 +6.374593 0.3158431 2.494678 +0 0.3689944 2.494678 +0 0.3689944 2.494678 +0 0.3689944 2.494678 +0.002268731 0.3689944 2.494678 +0.07076883 0.3689944 2.494678 +0.1119241 0.3689944 2.494678 +0.1475052 0.3689944 2.494678 +0.1846606 0.3689944 2.494678 +0.2245119 0.3689944 2.494678 +0.2679612 0.3689944 2.494678 +0.3158431 0.3689944 2.494678 +0.3689944 0.3689944 2.494678 +0.4282948 0.3689944 2.494678 +0.494694 0.3689944 2.494678 +0.5692344 0.3689944 2.494678 +0.6530715 0.3689944 2.494678 +0.7474945 0.3689944 2.494678 +0.8539475 0.3689944 2.494678 +0.974052 0.3689944 2.494678 +1.113885 0.3689944 2.494678 +1.27456 0.3689944 2.494678 +1.458117 0.3689944 2.494678 +1.667858 0.3689944 2.494678 +1.907556 0.3689944 2.494678 +2.181521 0.3689944 2.494678 +2.494678 0.3689944 2.494678 +2.852659 0.3689944 2.494678 +3.261896 0.3689944 2.494678 +3.729748 0.3689944 2.494678 +4.264621 0.3689944 2.494678 +4.876131 0.3689944 2.494678 +5.575266 0.3689944 2.494678 +6.374593 0.3689944 2.494678 +0 0.4282948 2.494678 +0 0.4282948 2.494678 +0 0.4282948 2.494678 +0.002268731 0.4282948 2.494678 +0.07076883 0.4282948 2.494678 +0.1119241 0.4282948 2.494678 +0.1475052 0.4282948 2.494678 +0.1846606 0.4282948 2.494678 +0.2245119 0.4282948 2.494678 +0.2679612 0.4282948 2.494678 +0.3158431 0.4282948 2.494678 +0.3689944 0.4282948 2.494678 +0.4282948 0.4282948 2.494678 +0.494694 0.4282948 2.494678 +0.5692344 0.4282948 2.494678 +0.6530715 0.4282948 2.494678 +0.7474945 0.4282948 2.494678 +0.8539475 0.4282948 2.494678 +0.974052 0.4282948 2.494678 +1.113885 0.4282948 2.494678 +1.27456 0.4282948 2.494678 +1.458117 0.4282948 2.494678 +1.667858 0.4282948 2.494678 +1.907556 0.4282948 2.494678 +2.181521 0.4282948 2.494678 +2.494678 0.4282948 2.494678 +2.852659 0.4282948 2.494678 +3.261896 0.4282948 2.494678 +3.729748 0.4282948 2.494678 +4.264621 0.4282948 2.494678 +4.876131 0.4282948 2.494678 +5.575266 0.4282948 2.494678 +6.374593 0.4282948 2.494678 +0 0.494694 2.494678 +0 0.494694 2.494678 +0 0.494694 2.494678 +0.002268731 0.494694 2.494678 +0.07076883 0.494694 2.494678 +0.1119241 0.494694 2.494678 +0.1475052 0.494694 2.494678 +0.1846606 0.494694 2.494678 +0.2245119 0.494694 2.494678 +0.2679612 0.494694 2.494678 +0.3158431 0.494694 2.494678 +0.3689944 0.494694 2.494678 +0.4282948 0.494694 2.494678 +0.494694 0.494694 2.494678 +0.5692344 0.494694 2.494678 +0.6530715 0.494694 2.494678 +0.7474945 0.494694 2.494678 +0.8539475 0.494694 2.494678 +0.974052 0.494694 2.494678 +1.113885 0.494694 2.494678 +1.27456 0.494694 2.494678 +1.458117 0.494694 2.494678 +1.667858 0.494694 2.494678 +1.907556 0.494694 2.494678 +2.181521 0.494694 2.494678 +2.494678 0.494694 2.494678 +2.852659 0.494694 2.494678 +3.261896 0.494694 2.494678 +3.729748 0.494694 2.494678 +4.264621 0.494694 2.494678 +4.876131 0.494694 2.494678 +5.575266 0.494694 2.494678 +6.374593 0.494694 2.494678 +0 0.5692344 2.494678 +0 0.5692344 2.494678 +0 0.5692344 2.494678 +0.002268731 0.5692344 2.494678 +0.07076883 0.5692344 2.494678 +0.1119241 0.5692344 2.494678 +0.1475052 0.5692344 2.494678 +0.1846606 0.5692344 2.494678 +0.2245119 0.5692344 2.494678 +0.2679612 0.5692344 2.494678 +0.3158431 0.5692344 2.494678 +0.3689944 0.5692344 2.494678 +0.4282948 0.5692344 2.494678 +0.494694 0.5692344 2.494678 +0.5692344 0.5692344 2.494678 +0.6530715 0.5692344 2.494678 +0.7474945 0.5692344 2.494678 +0.8539475 0.5692344 2.494678 +0.974052 0.5692344 2.494678 +1.113885 0.5692344 2.494678 +1.27456 0.5692344 2.494678 +1.458117 0.5692344 2.494678 +1.667858 0.5692344 2.494678 +1.907556 0.5692344 2.494678 +2.181521 0.5692344 2.494678 +2.494678 0.5692344 2.494678 +2.852659 0.5692344 2.494678 +3.261896 0.5692344 2.494678 +3.729748 0.5692344 2.494678 +4.264621 0.5692344 2.494678 +4.876131 0.5692344 2.494678 +5.575266 0.5692344 2.494678 +6.374593 0.5692344 2.494678 +0 0.6530715 2.494678 +0 0.6530715 2.494678 +0 0.6530715 2.494678 +0.002268731 0.6530715 2.494678 +0.07076883 0.6530715 2.494678 +0.1119241 0.6530715 2.494678 +0.1475052 0.6530715 2.494678 +0.1846606 0.6530715 2.494678 +0.2245119 0.6530715 2.494678 +0.2679612 0.6530715 2.494678 +0.3158431 0.6530715 2.494678 +0.3689944 0.6530715 2.494678 +0.4282948 0.6530715 2.494678 +0.494694 0.6530715 2.494678 +0.5692344 0.6530715 2.494678 +0.6530715 0.6530715 2.494678 +0.7474945 0.6530715 2.494678 +0.8539475 0.6530715 2.494678 +0.974052 0.6530715 2.494678 +1.113885 0.6530715 2.494678 +1.27456 0.6530715 2.494678 +1.458117 0.6530715 2.494678 +1.667858 0.6530715 2.494678 +1.907556 0.6530715 2.494678 +2.181521 0.6530715 2.494678 +2.494678 0.6530715 2.494678 +2.852659 0.6530715 2.494678 +3.261896 0.6530715 2.494678 +3.729748 0.6530715 2.494678 +4.264621 0.6530715 2.494678 +4.876131 0.6530715 2.494678 +5.575266 0.6530715 2.494678 +6.374593 0.6530715 2.494678 +0 0.7474945 2.494678 +0 0.7474945 2.494678 +0 0.7474945 2.494678 +0.002268731 0.7474945 2.494678 +0.07076883 0.7474945 2.494678 +0.1119241 0.7474945 2.494678 +0.1475052 0.7474945 2.494678 +0.1846606 0.7474945 2.494678 +0.2245119 0.7474945 2.494678 +0.2679612 0.7474945 2.494678 +0.3158431 0.7474945 2.494678 +0.3689944 0.7474945 2.494678 +0.4282948 0.7474945 2.494678 +0.494694 0.7474945 2.494678 +0.5692344 0.7474945 2.494678 +0.6530715 0.7474945 2.494678 +0.7474945 0.7474945 2.494678 +0.8539475 0.7474945 2.494678 +0.974052 0.7474945 2.494678 +1.113885 0.7474945 2.494678 +1.27456 0.7474945 2.494678 +1.458117 0.7474945 2.494678 +1.667858 0.7474945 2.494678 +1.907556 0.7474945 2.494678 +2.181521 0.7474945 2.494678 +2.494678 0.7474945 2.494678 +2.852659 0.7474945 2.494678 +3.261896 0.7474945 2.494678 +3.729748 0.7474945 2.494678 +4.264621 0.7474945 2.494678 +4.876131 0.7474945 2.494678 +5.575266 0.7474945 2.494678 +6.374593 0.7474945 2.494678 +0 0.8539475 2.494678 +0 0.8539475 2.494678 +0 0.8539475 2.494678 +0.002268731 0.8539475 2.494678 +0.07076883 0.8539475 2.494678 +0.1119241 0.8539475 2.494678 +0.1475052 0.8539475 2.494678 +0.1846606 0.8539475 2.494678 +0.2245119 0.8539475 2.494678 +0.2679612 0.8539475 2.494678 +0.3158431 0.8539475 2.494678 +0.3689944 0.8539475 2.494678 +0.4282948 0.8539475 2.494678 +0.494694 0.8539475 2.494678 +0.5692344 0.8539475 2.494678 +0.6530715 0.8539475 2.494678 +0.7474945 0.8539475 2.494678 +0.8539475 0.8539475 2.494678 +0.974052 0.8539475 2.494678 +1.113885 0.8539475 2.494678 +1.27456 0.8539475 2.494678 +1.458117 0.8539475 2.494678 +1.667858 0.8539475 2.494678 +1.907556 0.8539475 2.494678 +2.181521 0.8539475 2.494678 +2.494678 0.8539475 2.494678 +2.852659 0.8539475 2.494678 +3.261896 0.8539475 2.494678 +3.729748 0.8539475 2.494678 +4.264621 0.8539475 2.494678 +4.876131 0.8539475 2.494678 +5.575266 0.8539475 2.494678 +6.374593 0.8539475 2.494678 +0 0.974052 2.494678 +0 0.974052 2.494678 +0 0.974052 2.494678 +0.002268731 0.974052 2.494678 +0.07076883 0.974052 2.494678 +0.1119241 0.974052 2.494678 +0.1475052 0.974052 2.494678 +0.1846606 0.974052 2.494678 +0.2245119 0.974052 2.494678 +0.2679612 0.974052 2.494678 +0.3158431 0.974052 2.494678 +0.3689944 0.974052 2.494678 +0.4282948 0.974052 2.494678 +0.494694 0.974052 2.494678 +0.5692344 0.974052 2.494678 +0.6530715 0.974052 2.494678 +0.7474945 0.974052 2.494678 +0.8539475 0.974052 2.494678 +0.974052 0.974052 2.494678 +1.113885 0.974052 2.494678 +1.27456 0.974052 2.494678 +1.458117 0.974052 2.494678 +1.667858 0.974052 2.494678 +1.907556 0.974052 2.494678 +2.181521 0.974052 2.494678 +2.494678 0.974052 2.494678 +2.852659 0.974052 2.494678 +3.261896 0.974052 2.494678 +3.729748 0.974052 2.494678 +4.264621 0.974052 2.494678 +4.876131 0.974052 2.494678 +5.575266 0.974052 2.494678 +6.374593 0.974052 2.494678 +0 1.113885 2.494678 +0 1.113885 2.494678 +0 1.113885 2.494678 +0.002268731 1.113885 2.494678 +0.07076883 1.113885 2.494678 +0.1119241 1.113885 2.494678 +0.1475052 1.113885 2.494678 +0.1846606 1.113885 2.494678 +0.2245119 1.113885 2.494678 +0.2679612 1.113885 2.494678 +0.3158431 1.113885 2.494678 +0.3689944 1.113885 2.494678 +0.4282948 1.113885 2.494678 +0.494694 1.113885 2.494678 +0.5692344 1.113885 2.494678 +0.6530715 1.113885 2.494678 +0.7474945 1.113885 2.494678 +0.8539475 1.113885 2.494678 +0.974052 1.113885 2.494678 +1.113885 1.113885 2.494678 +1.27456 1.113885 2.494678 +1.458117 1.113885 2.494678 +1.667858 1.113885 2.494678 +1.907556 1.113885 2.494678 +2.181521 1.113885 2.494678 +2.494678 1.113885 2.494678 +2.852659 1.113885 2.494678 +3.261896 1.113885 2.494678 +3.729748 1.113885 2.494678 +4.264621 1.113885 2.494678 +4.876131 1.113885 2.494678 +5.575266 1.113885 2.494678 +6.374593 1.113885 2.494678 +0 1.27456 2.494678 +0 1.27456 2.494678 +0 1.27456 2.494678 +0.002268731 1.27456 2.494678 +0.07076883 1.27456 2.494678 +0.1119241 1.27456 2.494678 +0.1475052 1.27456 2.494678 +0.1846606 1.27456 2.494678 +0.2245119 1.27456 2.494678 +0.2679612 1.27456 2.494678 +0.3158431 1.27456 2.494678 +0.3689944 1.27456 2.494678 +0.4282948 1.27456 2.494678 +0.494694 1.27456 2.494678 +0.5692344 1.27456 2.494678 +0.6530715 1.27456 2.494678 +0.7474945 1.27456 2.494678 +0.8539475 1.27456 2.494678 +0.974052 1.27456 2.494678 +1.113885 1.27456 2.494678 +1.27456 1.27456 2.494678 +1.458117 1.27456 2.494678 +1.667858 1.27456 2.494678 +1.907556 1.27456 2.494678 +2.181521 1.27456 2.494678 +2.494678 1.27456 2.494678 +2.852659 1.27456 2.494678 +3.261896 1.27456 2.494678 +3.729748 1.27456 2.494678 +4.264621 1.27456 2.494678 +4.876131 1.27456 2.494678 +5.575266 1.27456 2.494678 +6.374593 1.27456 2.494678 +0 1.458117 2.494678 +0 1.458117 2.494678 +0 1.458117 2.494678 +0.002268731 1.458117 2.494678 +0.07076883 1.458117 2.494678 +0.1119241 1.458117 2.494678 +0.1475052 1.458117 2.494678 +0.1846606 1.458117 2.494678 +0.2245119 1.458117 2.494678 +0.2679612 1.458117 2.494678 +0.3158431 1.458117 2.494678 +0.3689944 1.458117 2.494678 +0.4282948 1.458117 2.494678 +0.494694 1.458117 2.494678 +0.5692344 1.458117 2.494678 +0.6530715 1.458117 2.494678 +0.7474945 1.458117 2.494678 +0.8539475 1.458117 2.494678 +0.974052 1.458117 2.494678 +1.113885 1.458117 2.494678 +1.27456 1.458117 2.494678 +1.458117 1.458117 2.494678 +1.667858 1.458117 2.494678 +1.907556 1.458117 2.494678 +2.181521 1.458117 2.494678 +2.494678 1.458117 2.494678 +2.852659 1.458117 2.494678 +3.261896 1.458117 2.494678 +3.729748 1.458117 2.494678 +4.264621 1.458117 2.494678 +4.876131 1.458117 2.494678 +5.575266 1.458117 2.494678 +6.374593 1.458117 2.494678 +0 1.667858 2.494678 +0 1.667858 2.494678 +0 1.667858 2.494678 +0.002268731 1.667858 2.494678 +0.07076883 1.667858 2.494678 +0.1119241 1.667858 2.494678 +0.1475052 1.667858 2.494678 +0.1846606 1.667858 2.494678 +0.2245119 1.667858 2.494678 +0.2679612 1.667858 2.494678 +0.3158431 1.667858 2.494678 +0.3689944 1.667858 2.494678 +0.4282948 1.667858 2.494678 +0.494694 1.667858 2.494678 +0.5692344 1.667858 2.494678 +0.6530715 1.667858 2.494678 +0.7474945 1.667858 2.494678 +0.8539475 1.667858 2.494678 +0.974052 1.667858 2.494678 +1.113885 1.667858 2.494678 +1.27456 1.667858 2.494678 +1.458117 1.667858 2.494678 +1.667858 1.667858 2.494678 +1.907556 1.667858 2.494678 +2.181521 1.667858 2.494678 +2.494678 1.667858 2.494678 +2.852659 1.667858 2.494678 +3.261896 1.667858 2.494678 +3.729748 1.667858 2.494678 +4.264621 1.667858 2.494678 +4.876131 1.667858 2.494678 +5.575266 1.667858 2.494678 +6.374593 1.667858 2.494678 +0 1.907556 2.494678 +0 1.907556 2.494678 +0 1.907556 2.494678 +0.002268731 1.907556 2.494678 +0.07076883 1.907556 2.494678 +0.1119241 1.907556 2.494678 +0.1475052 1.907556 2.494678 +0.1846606 1.907556 2.494678 +0.2245119 1.907556 2.494678 +0.2679612 1.907556 2.494678 +0.3158431 1.907556 2.494678 +0.3689944 1.907556 2.494678 +0.4282948 1.907556 2.494678 +0.494694 1.907556 2.494678 +0.5692344 1.907556 2.494678 +0.6530715 1.907556 2.494678 +0.7474945 1.907556 2.494678 +0.8539475 1.907556 2.494678 +0.974052 1.907556 2.494678 +1.113885 1.907556 2.494678 +1.27456 1.907556 2.494678 +1.458117 1.907556 2.494678 +1.667858 1.907556 2.494678 +1.907556 1.907556 2.494678 +2.181521 1.907556 2.494678 +2.494678 1.907556 2.494678 +2.852659 1.907556 2.494678 +3.261896 1.907556 2.494678 +3.729748 1.907556 2.494678 +4.264621 1.907556 2.494678 +4.876131 1.907556 2.494678 +5.575266 1.907556 2.494678 +6.374593 1.907556 2.494678 +0 2.181521 2.494678 +0 2.181521 2.494678 +0 2.181521 2.494678 +0.002268731 2.181521 2.494678 +0.07076883 2.181521 2.494678 +0.1119241 2.181521 2.494678 +0.1475052 2.181521 2.494678 +0.1846606 2.181521 2.494678 +0.2245119 2.181521 2.494678 +0.2679612 2.181521 2.494678 +0.3158431 2.181521 2.494678 +0.3689944 2.181521 2.494678 +0.4282948 2.181521 2.494678 +0.494694 2.181521 2.494678 +0.5692344 2.181521 2.494678 +0.6530715 2.181521 2.494678 +0.7474945 2.181521 2.494678 +0.8539475 2.181521 2.494678 +0.974052 2.181521 2.494678 +1.113885 2.181521 2.494678 +1.27456 2.181521 2.494678 +1.458117 2.181521 2.494678 +1.667858 2.181521 2.494678 +1.907556 2.181521 2.494678 +2.181521 2.181521 2.494678 +2.494678 2.181521 2.494678 +2.852659 2.181521 2.494678 +3.261896 2.181521 2.494678 +3.729748 2.181521 2.494678 +4.264621 2.181521 2.494678 +4.876131 2.181521 2.494678 +5.575266 2.181521 2.494678 +6.374593 2.181521 2.494678 +0 2.494678 2.494678 +0 2.494678 2.494678 +0 2.494678 2.494678 +0.002268731 2.494678 2.494678 +0.07076883 2.494678 2.494678 +0.1119241 2.494678 2.494678 +0.1475052 2.494678 2.494678 +0.1846606 2.494678 2.494678 +0.2245119 2.494678 2.494678 +0.2679612 2.494678 2.494678 +0.3158431 2.494678 2.494678 +0.3689944 2.494678 2.494678 +0.4282948 2.494678 2.494678 +0.494694 2.494678 2.494678 +0.5692344 2.494678 2.494678 +0.6530715 2.494678 2.494678 +0.7474945 2.494678 2.494678 +0.8539475 2.494678 2.494678 +0.974052 2.494678 2.494678 +1.113885 2.494678 2.494678 +1.27456 2.494678 2.494678 +1.458117 2.494678 2.494678 +1.667858 2.494678 2.494678 +1.907556 2.494678 2.494678 +2.181521 2.494678 2.494678 +2.494678 2.494678 2.494678 +2.852659 2.494678 2.494678 +3.261896 2.494678 2.494678 +3.729748 2.494678 2.494678 +4.264621 2.494678 2.494678 +4.876131 2.494678 2.494678 +5.575266 2.494678 2.494678 +6.374593 2.494678 2.494678 +0 2.852659 2.494678 +0 2.852659 2.494678 +0 2.852659 2.494678 +0.002268731 2.852659 2.494678 +0.07076883 2.852659 2.494678 +0.1119241 2.852659 2.494678 +0.1475052 2.852659 2.494678 +0.1846606 2.852659 2.494678 +0.2245119 2.852659 2.494678 +0.2679612 2.852659 2.494678 +0.3158431 2.852659 2.494678 +0.3689944 2.852659 2.494678 +0.4282948 2.852659 2.494678 +0.494694 2.852659 2.494678 +0.5692344 2.852659 2.494678 +0.6530715 2.852659 2.494678 +0.7474945 2.852659 2.494678 +0.8539475 2.852659 2.494678 +0.974052 2.852659 2.494678 +1.113885 2.852659 2.494678 +1.27456 2.852659 2.494678 +1.458117 2.852659 2.494678 +1.667858 2.852659 2.494678 +1.907556 2.852659 2.494678 +2.181521 2.852659 2.494678 +2.494678 2.852659 2.494678 +2.852659 2.852659 2.494678 +3.261896 2.852659 2.494678 +3.729748 2.852659 2.494678 +4.264621 2.852659 2.494678 +4.876131 2.852659 2.494678 +5.575266 2.852659 2.494678 +6.374593 2.852659 2.494678 +0 3.261896 2.494678 +0 3.261896 2.494678 +0 3.261896 2.494678 +0.002268731 3.261896 2.494678 +0.07076883 3.261896 2.494678 +0.1119241 3.261896 2.494678 +0.1475052 3.261896 2.494678 +0.1846606 3.261896 2.494678 +0.2245119 3.261896 2.494678 +0.2679612 3.261896 2.494678 +0.3158431 3.261896 2.494678 +0.3689944 3.261896 2.494678 +0.4282948 3.261896 2.494678 +0.494694 3.261896 2.494678 +0.5692344 3.261896 2.494678 +0.6530715 3.261896 2.494678 +0.7474945 3.261896 2.494678 +0.8539475 3.261896 2.494678 +0.974052 3.261896 2.494678 +1.113885 3.261896 2.494678 +1.27456 3.261896 2.494678 +1.458117 3.261896 2.494678 +1.667858 3.261896 2.494678 +1.907556 3.261896 2.494678 +2.181521 3.261896 2.494678 +2.494678 3.261896 2.494678 +2.852659 3.261896 2.494678 +3.261896 3.261896 2.494678 +3.729748 3.261896 2.494678 +4.264621 3.261896 2.494678 +4.876131 3.261896 2.494678 +5.575266 3.261896 2.494678 +6.374593 3.261896 2.494678 +0 3.729748 2.494678 +0 3.729748 2.494678 +0 3.729748 2.494678 +0.002268731 3.729748 2.494678 +0.07076883 3.729748 2.494678 +0.1119241 3.729748 2.494678 +0.1475052 3.729748 2.494678 +0.1846606 3.729748 2.494678 +0.2245119 3.729748 2.494678 +0.2679612 3.729748 2.494678 +0.3158431 3.729748 2.494678 +0.3689944 3.729748 2.494678 +0.4282948 3.729748 2.494678 +0.494694 3.729748 2.494678 +0.5692344 3.729748 2.494678 +0.6530715 3.729748 2.494678 +0.7474945 3.729748 2.494678 +0.8539475 3.729748 2.494678 +0.974052 3.729748 2.494678 +1.113885 3.729748 2.494678 +1.27456 3.729748 2.494678 +1.458117 3.729748 2.494678 +1.667858 3.729748 2.494678 +1.907556 3.729748 2.494678 +2.181521 3.729748 2.494678 +2.494678 3.729748 2.494678 +2.852659 3.729748 2.494678 +3.261896 3.729748 2.494678 +3.729748 3.729748 2.494678 +4.264621 3.729748 2.494678 +4.876131 3.729748 2.494678 +5.575266 3.729748 2.494678 +6.374593 3.729748 2.494678 +0 4.264621 2.494678 +0 4.264621 2.494678 +0 4.264621 2.494678 +0.002268731 4.264621 2.494678 +0.07076883 4.264621 2.494678 +0.1119241 4.264621 2.494678 +0.1475052 4.264621 2.494678 +0.1846606 4.264621 2.494678 +0.2245119 4.264621 2.494678 +0.2679612 4.264621 2.494678 +0.3158431 4.264621 2.494678 +0.3689944 4.264621 2.494678 +0.4282948 4.264621 2.494678 +0.494694 4.264621 2.494678 +0.5692344 4.264621 2.494678 +0.6530715 4.264621 2.494678 +0.7474945 4.264621 2.494678 +0.8539475 4.264621 2.494678 +0.974052 4.264621 2.494678 +1.113885 4.264621 2.494678 +1.27456 4.264621 2.494678 +1.458117 4.264621 2.494678 +1.667858 4.264621 2.494678 +1.907556 4.264621 2.494678 +2.181521 4.264621 2.494678 +2.494678 4.264621 2.494678 +2.852659 4.264621 2.494678 +3.261896 4.264621 2.494678 +3.729748 4.264621 2.494678 +4.264621 4.264621 2.494678 +4.876131 4.264621 2.494678 +5.575266 4.264621 2.494678 +6.374593 4.264621 2.494678 +0 4.876131 2.494678 +0 4.876131 2.494678 +0 4.876131 2.494678 +0.002268731 4.876131 2.494678 +0.07076883 4.876131 2.494678 +0.1119241 4.876131 2.494678 +0.1475052 4.876131 2.494678 +0.1846606 4.876131 2.494678 +0.2245119 4.876131 2.494678 +0.2679612 4.876131 2.494678 +0.3158431 4.876131 2.494678 +0.3689944 4.876131 2.494678 +0.4282948 4.876131 2.494678 +0.494694 4.876131 2.494678 +0.5692344 4.876131 2.494678 +0.6530715 4.876131 2.494678 +0.7474945 4.876131 2.494678 +0.8539475 4.876131 2.494678 +0.974052 4.876131 2.494678 +1.113885 4.876131 2.494678 +1.27456 4.876131 2.494678 +1.458117 4.876131 2.494678 +1.667858 4.876131 2.494678 +1.907556 4.876131 2.494678 +2.181521 4.876131 2.494678 +2.494678 4.876131 2.494678 +2.852659 4.876131 2.494678 +3.261896 4.876131 2.494678 +3.729748 4.876131 2.494678 +4.264621 4.876131 2.494678 +4.876131 4.876131 2.494678 +5.575266 4.876131 2.494678 +6.374593 4.876131 2.494678 +0 5.575266 2.494678 +0 5.575266 2.494678 +0 5.575266 2.494678 +0.002268731 5.575266 2.494678 +0.07076883 5.575266 2.494678 +0.1119241 5.575266 2.494678 +0.1475052 5.575266 2.494678 +0.1846606 5.575266 2.494678 +0.2245119 5.575266 2.494678 +0.2679612 5.575266 2.494678 +0.3158431 5.575266 2.494678 +0.3689944 5.575266 2.494678 +0.4282948 5.575266 2.494678 +0.494694 5.575266 2.494678 +0.5692344 5.575266 2.494678 +0.6530715 5.575266 2.494678 +0.7474945 5.575266 2.494678 +0.8539475 5.575266 2.494678 +0.974052 5.575266 2.494678 +1.113885 5.575266 2.494678 +1.27456 5.575266 2.494678 +1.458117 5.575266 2.494678 +1.667858 5.575266 2.494678 +1.907556 5.575266 2.494678 +2.181521 5.575266 2.494678 +2.494678 5.575266 2.494678 +2.852659 5.575266 2.494678 +3.261896 5.575266 2.494678 +3.729748 5.575266 2.494678 +4.264621 5.575266 2.494678 +4.876131 5.575266 2.494678 +5.575266 5.575266 2.494678 +6.374593 5.575266 2.494678 +0 6.374593 2.494678 +0 6.374593 2.494678 +0 6.374593 2.494678 +0.002268731 6.374593 2.494678 +0.07076883 6.374593 2.494678 +0.1119241 6.374593 2.494678 +0.1475052 6.374593 2.494678 +0.1846606 6.374593 2.494678 +0.2245119 6.374593 2.494678 +0.2679612 6.374593 2.494678 +0.3158431 6.374593 2.494678 +0.3689944 6.374593 2.494678 +0.4282948 6.374593 2.494678 +0.494694 6.374593 2.494678 +0.5692344 6.374593 2.494678 +0.6530715 6.374593 2.494678 +0.7474945 6.374593 2.494678 +0.8539475 6.374593 2.494678 +0.974052 6.374593 2.494678 +1.113885 6.374593 2.494678 +1.27456 6.374593 2.494678 +1.458117 6.374593 2.494678 +1.667858 6.374593 2.494678 +1.907556 6.374593 2.494678 +2.181521 6.374593 2.494678 +2.494678 6.374593 2.494678 +2.852659 6.374593 2.494678 +3.261896 6.374593 2.494678 +3.729748 6.374593 2.494678 +4.264621 6.374593 2.494678 +4.876131 6.374593 2.494678 +5.575266 6.374593 2.494678 +6.374593 6.374593 2.494678 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0.002268731 2.852659 +0 0.002268731 2.852659 +0 0.002268731 2.852659 +0.002268731 0.002268731 2.852659 +0.07076883 0.002268731 2.852659 +0.1119241 0.002268731 2.852659 +0.1475052 0.002268731 2.852659 +0.1846606 0.002268731 2.852659 +0.2245119 0.002268731 2.852659 +0.2679612 0.002268731 2.852659 +0.3158431 0.002268731 2.852659 +0.3689944 0.002268731 2.852659 +0.4282948 0.002268731 2.852659 +0.494694 0.002268731 2.852659 +0.5692344 0.002268731 2.852659 +0.6530715 0.002268731 2.852659 +0.7474945 0.002268731 2.852659 +0.8539475 0.002268731 2.852659 +0.974052 0.002268731 2.852659 +1.113885 0.002268731 2.852659 +1.27456 0.002268731 2.852659 +1.458117 0.002268731 2.852659 +1.667858 0.002268731 2.852659 +1.907556 0.002268731 2.852659 +2.181521 0.002268731 2.852659 +2.494678 0.002268731 2.852659 +2.852659 0.002268731 2.852659 +3.261896 0.002268731 2.852659 +3.729748 0.002268731 2.852659 +4.264621 0.002268731 2.852659 +4.876131 0.002268731 2.852659 +5.575266 0.002268731 2.852659 +6.374593 0.002268731 2.852659 +0 0.07076883 2.852659 +0 0.07076883 2.852659 +0 0.07076883 2.852659 +0.002268731 0.07076883 2.852659 +0.07076883 0.07076883 2.852659 +0.1119241 0.07076883 2.852659 +0.1475052 0.07076883 2.852659 +0.1846606 0.07076883 2.852659 +0.2245119 0.07076883 2.852659 +0.2679612 0.07076883 2.852659 +0.3158431 0.07076883 2.852659 +0.3689944 0.07076883 2.852659 +0.4282948 0.07076883 2.852659 +0.494694 0.07076883 2.852659 +0.5692344 0.07076883 2.852659 +0.6530715 0.07076883 2.852659 +0.7474945 0.07076883 2.852659 +0.8539475 0.07076883 2.852659 +0.974052 0.07076883 2.852659 +1.113885 0.07076883 2.852659 +1.27456 0.07076883 2.852659 +1.458117 0.07076883 2.852659 +1.667858 0.07076883 2.852659 +1.907556 0.07076883 2.852659 +2.181521 0.07076883 2.852659 +2.494678 0.07076883 2.852659 +2.852659 0.07076883 2.852659 +3.261896 0.07076883 2.852659 +3.729748 0.07076883 2.852659 +4.264621 0.07076883 2.852659 +4.876131 0.07076883 2.852659 +5.575266 0.07076883 2.852659 +6.374593 0.07076883 2.852659 +0 0.1119241 2.852659 +0 0.1119241 2.852659 +0 0.1119241 2.852659 +0.002268731 0.1119241 2.852659 +0.07076883 0.1119241 2.852659 +0.1119241 0.1119241 2.852659 +0.1475052 0.1119241 2.852659 +0.1846606 0.1119241 2.852659 +0.2245119 0.1119241 2.852659 +0.2679612 0.1119241 2.852659 +0.3158431 0.1119241 2.852659 +0.3689944 0.1119241 2.852659 +0.4282948 0.1119241 2.852659 +0.494694 0.1119241 2.852659 +0.5692344 0.1119241 2.852659 +0.6530715 0.1119241 2.852659 +0.7474945 0.1119241 2.852659 +0.8539475 0.1119241 2.852659 +0.974052 0.1119241 2.852659 +1.113885 0.1119241 2.852659 +1.27456 0.1119241 2.852659 +1.458117 0.1119241 2.852659 +1.667858 0.1119241 2.852659 +1.907556 0.1119241 2.852659 +2.181521 0.1119241 2.852659 +2.494678 0.1119241 2.852659 +2.852659 0.1119241 2.852659 +3.261896 0.1119241 2.852659 +3.729748 0.1119241 2.852659 +4.264621 0.1119241 2.852659 +4.876131 0.1119241 2.852659 +5.575266 0.1119241 2.852659 +6.374593 0.1119241 2.852659 +0 0.1475052 2.852659 +0 0.1475052 2.852659 +0 0.1475052 2.852659 +0.002268731 0.1475052 2.852659 +0.07076883 0.1475052 2.852659 +0.1119241 0.1475052 2.852659 +0.1475052 0.1475052 2.852659 +0.1846606 0.1475052 2.852659 +0.2245119 0.1475052 2.852659 +0.2679612 0.1475052 2.852659 +0.3158431 0.1475052 2.852659 +0.3689944 0.1475052 2.852659 +0.4282948 0.1475052 2.852659 +0.494694 0.1475052 2.852659 +0.5692344 0.1475052 2.852659 +0.6530715 0.1475052 2.852659 +0.7474945 0.1475052 2.852659 +0.8539475 0.1475052 2.852659 +0.974052 0.1475052 2.852659 +1.113885 0.1475052 2.852659 +1.27456 0.1475052 2.852659 +1.458117 0.1475052 2.852659 +1.667858 0.1475052 2.852659 +1.907556 0.1475052 2.852659 +2.181521 0.1475052 2.852659 +2.494678 0.1475052 2.852659 +2.852659 0.1475052 2.852659 +3.261896 0.1475052 2.852659 +3.729748 0.1475052 2.852659 +4.264621 0.1475052 2.852659 +4.876131 0.1475052 2.852659 +5.575266 0.1475052 2.852659 +6.374593 0.1475052 2.852659 +0 0.1846606 2.852659 +0 0.1846606 2.852659 +0 0.1846606 2.852659 +0.002268731 0.1846606 2.852659 +0.07076883 0.1846606 2.852659 +0.1119241 0.1846606 2.852659 +0.1475052 0.1846606 2.852659 +0.1846606 0.1846606 2.852659 +0.2245119 0.1846606 2.852659 +0.2679612 0.1846606 2.852659 +0.3158431 0.1846606 2.852659 +0.3689944 0.1846606 2.852659 +0.4282948 0.1846606 2.852659 +0.494694 0.1846606 2.852659 +0.5692344 0.1846606 2.852659 +0.6530715 0.1846606 2.852659 +0.7474945 0.1846606 2.852659 +0.8539475 0.1846606 2.852659 +0.974052 0.1846606 2.852659 +1.113885 0.1846606 2.852659 +1.27456 0.1846606 2.852659 +1.458117 0.1846606 2.852659 +1.667858 0.1846606 2.852659 +1.907556 0.1846606 2.852659 +2.181521 0.1846606 2.852659 +2.494678 0.1846606 2.852659 +2.852659 0.1846606 2.852659 +3.261896 0.1846606 2.852659 +3.729748 0.1846606 2.852659 +4.264621 0.1846606 2.852659 +4.876131 0.1846606 2.852659 +5.575266 0.1846606 2.852659 +6.374593 0.1846606 2.852659 +0 0.2245119 2.852659 +0 0.2245119 2.852659 +0 0.2245119 2.852659 +0.002268731 0.2245119 2.852659 +0.07076883 0.2245119 2.852659 +0.1119241 0.2245119 2.852659 +0.1475052 0.2245119 2.852659 +0.1846606 0.2245119 2.852659 +0.2245119 0.2245119 2.852659 +0.2679612 0.2245119 2.852659 +0.3158431 0.2245119 2.852659 +0.3689944 0.2245119 2.852659 +0.4282948 0.2245119 2.852659 +0.494694 0.2245119 2.852659 +0.5692344 0.2245119 2.852659 +0.6530715 0.2245119 2.852659 +0.7474945 0.2245119 2.852659 +0.8539475 0.2245119 2.852659 +0.974052 0.2245119 2.852659 +1.113885 0.2245119 2.852659 +1.27456 0.2245119 2.852659 +1.458117 0.2245119 2.852659 +1.667858 0.2245119 2.852659 +1.907556 0.2245119 2.852659 +2.181521 0.2245119 2.852659 +2.494678 0.2245119 2.852659 +2.852659 0.2245119 2.852659 +3.261896 0.2245119 2.852659 +3.729748 0.2245119 2.852659 +4.264621 0.2245119 2.852659 +4.876131 0.2245119 2.852659 +5.575266 0.2245119 2.852659 +6.374593 0.2245119 2.852659 +0 0.2679612 2.852659 +0 0.2679612 2.852659 +0 0.2679612 2.852659 +0.002268731 0.2679612 2.852659 +0.07076883 0.2679612 2.852659 +0.1119241 0.2679612 2.852659 +0.1475052 0.2679612 2.852659 +0.1846606 0.2679612 2.852659 +0.2245119 0.2679612 2.852659 +0.2679612 0.2679612 2.852659 +0.3158431 0.2679612 2.852659 +0.3689944 0.2679612 2.852659 +0.4282948 0.2679612 2.852659 +0.494694 0.2679612 2.852659 +0.5692344 0.2679612 2.852659 +0.6530715 0.2679612 2.852659 +0.7474945 0.2679612 2.852659 +0.8539475 0.2679612 2.852659 +0.974052 0.2679612 2.852659 +1.113885 0.2679612 2.852659 +1.27456 0.2679612 2.852659 +1.458117 0.2679612 2.852659 +1.667858 0.2679612 2.852659 +1.907556 0.2679612 2.852659 +2.181521 0.2679612 2.852659 +2.494678 0.2679612 2.852659 +2.852659 0.2679612 2.852659 +3.261896 0.2679612 2.852659 +3.729748 0.2679612 2.852659 +4.264621 0.2679612 2.852659 +4.876131 0.2679612 2.852659 +5.575266 0.2679612 2.852659 +6.374593 0.2679612 2.852659 +0 0.3158431 2.852659 +0 0.3158431 2.852659 +0 0.3158431 2.852659 +0.002268731 0.3158431 2.852659 +0.07076883 0.3158431 2.852659 +0.1119241 0.3158431 2.852659 +0.1475052 0.3158431 2.852659 +0.1846606 0.3158431 2.852659 +0.2245119 0.3158431 2.852659 +0.2679612 0.3158431 2.852659 +0.3158431 0.3158431 2.852659 +0.3689944 0.3158431 2.852659 +0.4282948 0.3158431 2.852659 +0.494694 0.3158431 2.852659 +0.5692344 0.3158431 2.852659 +0.6530715 0.3158431 2.852659 +0.7474945 0.3158431 2.852659 +0.8539475 0.3158431 2.852659 +0.974052 0.3158431 2.852659 +1.113885 0.3158431 2.852659 +1.27456 0.3158431 2.852659 +1.458117 0.3158431 2.852659 +1.667858 0.3158431 2.852659 +1.907556 0.3158431 2.852659 +2.181521 0.3158431 2.852659 +2.494678 0.3158431 2.852659 +2.852659 0.3158431 2.852659 +3.261896 0.3158431 2.852659 +3.729748 0.3158431 2.852659 +4.264621 0.3158431 2.852659 +4.876131 0.3158431 2.852659 +5.575266 0.3158431 2.852659 +6.374593 0.3158431 2.852659 +0 0.3689944 2.852659 +0 0.3689944 2.852659 +0 0.3689944 2.852659 +0.002268731 0.3689944 2.852659 +0.07076883 0.3689944 2.852659 +0.1119241 0.3689944 2.852659 +0.1475052 0.3689944 2.852659 +0.1846606 0.3689944 2.852659 +0.2245119 0.3689944 2.852659 +0.2679612 0.3689944 2.852659 +0.3158431 0.3689944 2.852659 +0.3689944 0.3689944 2.852659 +0.4282948 0.3689944 2.852659 +0.494694 0.3689944 2.852659 +0.5692344 0.3689944 2.852659 +0.6530715 0.3689944 2.852659 +0.7474945 0.3689944 2.852659 +0.8539475 0.3689944 2.852659 +0.974052 0.3689944 2.852659 +1.113885 0.3689944 2.852659 +1.27456 0.3689944 2.852659 +1.458117 0.3689944 2.852659 +1.667858 0.3689944 2.852659 +1.907556 0.3689944 2.852659 +2.181521 0.3689944 2.852659 +2.494678 0.3689944 2.852659 +2.852659 0.3689944 2.852659 +3.261896 0.3689944 2.852659 +3.729748 0.3689944 2.852659 +4.264621 0.3689944 2.852659 +4.876131 0.3689944 2.852659 +5.575266 0.3689944 2.852659 +6.374593 0.3689944 2.852659 +0 0.4282948 2.852659 +0 0.4282948 2.852659 +0 0.4282948 2.852659 +0.002268731 0.4282948 2.852659 +0.07076883 0.4282948 2.852659 +0.1119241 0.4282948 2.852659 +0.1475052 0.4282948 2.852659 +0.1846606 0.4282948 2.852659 +0.2245119 0.4282948 2.852659 +0.2679612 0.4282948 2.852659 +0.3158431 0.4282948 2.852659 +0.3689944 0.4282948 2.852659 +0.4282948 0.4282948 2.852659 +0.494694 0.4282948 2.852659 +0.5692344 0.4282948 2.852659 +0.6530715 0.4282948 2.852659 +0.7474945 0.4282948 2.852659 +0.8539475 0.4282948 2.852659 +0.974052 0.4282948 2.852659 +1.113885 0.4282948 2.852659 +1.27456 0.4282948 2.852659 +1.458117 0.4282948 2.852659 +1.667858 0.4282948 2.852659 +1.907556 0.4282948 2.852659 +2.181521 0.4282948 2.852659 +2.494678 0.4282948 2.852659 +2.852659 0.4282948 2.852659 +3.261896 0.4282948 2.852659 +3.729748 0.4282948 2.852659 +4.264621 0.4282948 2.852659 +4.876131 0.4282948 2.852659 +5.575266 0.4282948 2.852659 +6.374593 0.4282948 2.852659 +0 0.494694 2.852659 +0 0.494694 2.852659 +0 0.494694 2.852659 +0.002268731 0.494694 2.852659 +0.07076883 0.494694 2.852659 +0.1119241 0.494694 2.852659 +0.1475052 0.494694 2.852659 +0.1846606 0.494694 2.852659 +0.2245119 0.494694 2.852659 +0.2679612 0.494694 2.852659 +0.3158431 0.494694 2.852659 +0.3689944 0.494694 2.852659 +0.4282948 0.494694 2.852659 +0.494694 0.494694 2.852659 +0.5692344 0.494694 2.852659 +0.6530715 0.494694 2.852659 +0.7474945 0.494694 2.852659 +0.8539475 0.494694 2.852659 +0.974052 0.494694 2.852659 +1.113885 0.494694 2.852659 +1.27456 0.494694 2.852659 +1.458117 0.494694 2.852659 +1.667858 0.494694 2.852659 +1.907556 0.494694 2.852659 +2.181521 0.494694 2.852659 +2.494678 0.494694 2.852659 +2.852659 0.494694 2.852659 +3.261896 0.494694 2.852659 +3.729748 0.494694 2.852659 +4.264621 0.494694 2.852659 +4.876131 0.494694 2.852659 +5.575266 0.494694 2.852659 +6.374593 0.494694 2.852659 +0 0.5692344 2.852659 +0 0.5692344 2.852659 +0 0.5692344 2.852659 +0.002268731 0.5692344 2.852659 +0.07076883 0.5692344 2.852659 +0.1119241 0.5692344 2.852659 +0.1475052 0.5692344 2.852659 +0.1846606 0.5692344 2.852659 +0.2245119 0.5692344 2.852659 +0.2679612 0.5692344 2.852659 +0.3158431 0.5692344 2.852659 +0.3689944 0.5692344 2.852659 +0.4282948 0.5692344 2.852659 +0.494694 0.5692344 2.852659 +0.5692344 0.5692344 2.852659 +0.6530715 0.5692344 2.852659 +0.7474945 0.5692344 2.852659 +0.8539475 0.5692344 2.852659 +0.974052 0.5692344 2.852659 +1.113885 0.5692344 2.852659 +1.27456 0.5692344 2.852659 +1.458117 0.5692344 2.852659 +1.667858 0.5692344 2.852659 +1.907556 0.5692344 2.852659 +2.181521 0.5692344 2.852659 +2.494678 0.5692344 2.852659 +2.852659 0.5692344 2.852659 +3.261896 0.5692344 2.852659 +3.729748 0.5692344 2.852659 +4.264621 0.5692344 2.852659 +4.876131 0.5692344 2.852659 +5.575266 0.5692344 2.852659 +6.374593 0.5692344 2.852659 +0 0.6530715 2.852659 +0 0.6530715 2.852659 +0 0.6530715 2.852659 +0.002268731 0.6530715 2.852659 +0.07076883 0.6530715 2.852659 +0.1119241 0.6530715 2.852659 +0.1475052 0.6530715 2.852659 +0.1846606 0.6530715 2.852659 +0.2245119 0.6530715 2.852659 +0.2679612 0.6530715 2.852659 +0.3158431 0.6530715 2.852659 +0.3689944 0.6530715 2.852659 +0.4282948 0.6530715 2.852659 +0.494694 0.6530715 2.852659 +0.5692344 0.6530715 2.852659 +0.6530715 0.6530715 2.852659 +0.7474945 0.6530715 2.852659 +0.8539475 0.6530715 2.852659 +0.974052 0.6530715 2.852659 +1.113885 0.6530715 2.852659 +1.27456 0.6530715 2.852659 +1.458117 0.6530715 2.852659 +1.667858 0.6530715 2.852659 +1.907556 0.6530715 2.852659 +2.181521 0.6530715 2.852659 +2.494678 0.6530715 2.852659 +2.852659 0.6530715 2.852659 +3.261896 0.6530715 2.852659 +3.729748 0.6530715 2.852659 +4.264621 0.6530715 2.852659 +4.876131 0.6530715 2.852659 +5.575266 0.6530715 2.852659 +6.374593 0.6530715 2.852659 +0 0.7474945 2.852659 +0 0.7474945 2.852659 +0 0.7474945 2.852659 +0.002268731 0.7474945 2.852659 +0.07076883 0.7474945 2.852659 +0.1119241 0.7474945 2.852659 +0.1475052 0.7474945 2.852659 +0.1846606 0.7474945 2.852659 +0.2245119 0.7474945 2.852659 +0.2679612 0.7474945 2.852659 +0.3158431 0.7474945 2.852659 +0.3689944 0.7474945 2.852659 +0.4282948 0.7474945 2.852659 +0.494694 0.7474945 2.852659 +0.5692344 0.7474945 2.852659 +0.6530715 0.7474945 2.852659 +0.7474945 0.7474945 2.852659 +0.8539475 0.7474945 2.852659 +0.974052 0.7474945 2.852659 +1.113885 0.7474945 2.852659 +1.27456 0.7474945 2.852659 +1.458117 0.7474945 2.852659 +1.667858 0.7474945 2.852659 +1.907556 0.7474945 2.852659 +2.181521 0.7474945 2.852659 +2.494678 0.7474945 2.852659 +2.852659 0.7474945 2.852659 +3.261896 0.7474945 2.852659 +3.729748 0.7474945 2.852659 +4.264621 0.7474945 2.852659 +4.876131 0.7474945 2.852659 +5.575266 0.7474945 2.852659 +6.374593 0.7474945 2.852659 +0 0.8539475 2.852659 +0 0.8539475 2.852659 +0 0.8539475 2.852659 +0.002268731 0.8539475 2.852659 +0.07076883 0.8539475 2.852659 +0.1119241 0.8539475 2.852659 +0.1475052 0.8539475 2.852659 +0.1846606 0.8539475 2.852659 +0.2245119 0.8539475 2.852659 +0.2679612 0.8539475 2.852659 +0.3158431 0.8539475 2.852659 +0.3689944 0.8539475 2.852659 +0.4282948 0.8539475 2.852659 +0.494694 0.8539475 2.852659 +0.5692344 0.8539475 2.852659 +0.6530715 0.8539475 2.852659 +0.7474945 0.8539475 2.852659 +0.8539475 0.8539475 2.852659 +0.974052 0.8539475 2.852659 +1.113885 0.8539475 2.852659 +1.27456 0.8539475 2.852659 +1.458117 0.8539475 2.852659 +1.667858 0.8539475 2.852659 +1.907556 0.8539475 2.852659 +2.181521 0.8539475 2.852659 +2.494678 0.8539475 2.852659 +2.852659 0.8539475 2.852659 +3.261896 0.8539475 2.852659 +3.729748 0.8539475 2.852659 +4.264621 0.8539475 2.852659 +4.876131 0.8539475 2.852659 +5.575266 0.8539475 2.852659 +6.374593 0.8539475 2.852659 +0 0.974052 2.852659 +0 0.974052 2.852659 +0 0.974052 2.852659 +0.002268731 0.974052 2.852659 +0.07076883 0.974052 2.852659 +0.1119241 0.974052 2.852659 +0.1475052 0.974052 2.852659 +0.1846606 0.974052 2.852659 +0.2245119 0.974052 2.852659 +0.2679612 0.974052 2.852659 +0.3158431 0.974052 2.852659 +0.3689944 0.974052 2.852659 +0.4282948 0.974052 2.852659 +0.494694 0.974052 2.852659 +0.5692344 0.974052 2.852659 +0.6530715 0.974052 2.852659 +0.7474945 0.974052 2.852659 +0.8539475 0.974052 2.852659 +0.974052 0.974052 2.852659 +1.113885 0.974052 2.852659 +1.27456 0.974052 2.852659 +1.458117 0.974052 2.852659 +1.667858 0.974052 2.852659 +1.907556 0.974052 2.852659 +2.181521 0.974052 2.852659 +2.494678 0.974052 2.852659 +2.852659 0.974052 2.852659 +3.261896 0.974052 2.852659 +3.729748 0.974052 2.852659 +4.264621 0.974052 2.852659 +4.876131 0.974052 2.852659 +5.575266 0.974052 2.852659 +6.374593 0.974052 2.852659 +0 1.113885 2.852659 +0 1.113885 2.852659 +0 1.113885 2.852659 +0.002268731 1.113885 2.852659 +0.07076883 1.113885 2.852659 +0.1119241 1.113885 2.852659 +0.1475052 1.113885 2.852659 +0.1846606 1.113885 2.852659 +0.2245119 1.113885 2.852659 +0.2679612 1.113885 2.852659 +0.3158431 1.113885 2.852659 +0.3689944 1.113885 2.852659 +0.4282948 1.113885 2.852659 +0.494694 1.113885 2.852659 +0.5692344 1.113885 2.852659 +0.6530715 1.113885 2.852659 +0.7474945 1.113885 2.852659 +0.8539475 1.113885 2.852659 +0.974052 1.113885 2.852659 +1.113885 1.113885 2.852659 +1.27456 1.113885 2.852659 +1.458117 1.113885 2.852659 +1.667858 1.113885 2.852659 +1.907556 1.113885 2.852659 +2.181521 1.113885 2.852659 +2.494678 1.113885 2.852659 +2.852659 1.113885 2.852659 +3.261896 1.113885 2.852659 +3.729748 1.113885 2.852659 +4.264621 1.113885 2.852659 +4.876131 1.113885 2.852659 +5.575266 1.113885 2.852659 +6.374593 1.113885 2.852659 +0 1.27456 2.852659 +0 1.27456 2.852659 +0 1.27456 2.852659 +0.002268731 1.27456 2.852659 +0.07076883 1.27456 2.852659 +0.1119241 1.27456 2.852659 +0.1475052 1.27456 2.852659 +0.1846606 1.27456 2.852659 +0.2245119 1.27456 2.852659 +0.2679612 1.27456 2.852659 +0.3158431 1.27456 2.852659 +0.3689944 1.27456 2.852659 +0.4282948 1.27456 2.852659 +0.494694 1.27456 2.852659 +0.5692344 1.27456 2.852659 +0.6530715 1.27456 2.852659 +0.7474945 1.27456 2.852659 +0.8539475 1.27456 2.852659 +0.974052 1.27456 2.852659 +1.113885 1.27456 2.852659 +1.27456 1.27456 2.852659 +1.458117 1.27456 2.852659 +1.667858 1.27456 2.852659 +1.907556 1.27456 2.852659 +2.181521 1.27456 2.852659 +2.494678 1.27456 2.852659 +2.852659 1.27456 2.852659 +3.261896 1.27456 2.852659 +3.729748 1.27456 2.852659 +4.264621 1.27456 2.852659 +4.876131 1.27456 2.852659 +5.575266 1.27456 2.852659 +6.374593 1.27456 2.852659 +0 1.458117 2.852659 +0 1.458117 2.852659 +0 1.458117 2.852659 +0.002268731 1.458117 2.852659 +0.07076883 1.458117 2.852659 +0.1119241 1.458117 2.852659 +0.1475052 1.458117 2.852659 +0.1846606 1.458117 2.852659 +0.2245119 1.458117 2.852659 +0.2679612 1.458117 2.852659 +0.3158431 1.458117 2.852659 +0.3689944 1.458117 2.852659 +0.4282948 1.458117 2.852659 +0.494694 1.458117 2.852659 +0.5692344 1.458117 2.852659 +0.6530715 1.458117 2.852659 +0.7474945 1.458117 2.852659 +0.8539475 1.458117 2.852659 +0.974052 1.458117 2.852659 +1.113885 1.458117 2.852659 +1.27456 1.458117 2.852659 +1.458117 1.458117 2.852659 +1.667858 1.458117 2.852659 +1.907556 1.458117 2.852659 +2.181521 1.458117 2.852659 +2.494678 1.458117 2.852659 +2.852659 1.458117 2.852659 +3.261896 1.458117 2.852659 +3.729748 1.458117 2.852659 +4.264621 1.458117 2.852659 +4.876131 1.458117 2.852659 +5.575266 1.458117 2.852659 +6.374593 1.458117 2.852659 +0 1.667858 2.852659 +0 1.667858 2.852659 +0 1.667858 2.852659 +0.002268731 1.667858 2.852659 +0.07076883 1.667858 2.852659 +0.1119241 1.667858 2.852659 +0.1475052 1.667858 2.852659 +0.1846606 1.667858 2.852659 +0.2245119 1.667858 2.852659 +0.2679612 1.667858 2.852659 +0.3158431 1.667858 2.852659 +0.3689944 1.667858 2.852659 +0.4282948 1.667858 2.852659 +0.494694 1.667858 2.852659 +0.5692344 1.667858 2.852659 +0.6530715 1.667858 2.852659 +0.7474945 1.667858 2.852659 +0.8539475 1.667858 2.852659 +0.974052 1.667858 2.852659 +1.113885 1.667858 2.852659 +1.27456 1.667858 2.852659 +1.458117 1.667858 2.852659 +1.667858 1.667858 2.852659 +1.907556 1.667858 2.852659 +2.181521 1.667858 2.852659 +2.494678 1.667858 2.852659 +2.852659 1.667858 2.852659 +3.261896 1.667858 2.852659 +3.729748 1.667858 2.852659 +4.264621 1.667858 2.852659 +4.876131 1.667858 2.852659 +5.575266 1.667858 2.852659 +6.374593 1.667858 2.852659 +0 1.907556 2.852659 +0 1.907556 2.852659 +0 1.907556 2.852659 +0.002268731 1.907556 2.852659 +0.07076883 1.907556 2.852659 +0.1119241 1.907556 2.852659 +0.1475052 1.907556 2.852659 +0.1846606 1.907556 2.852659 +0.2245119 1.907556 2.852659 +0.2679612 1.907556 2.852659 +0.3158431 1.907556 2.852659 +0.3689944 1.907556 2.852659 +0.4282948 1.907556 2.852659 +0.494694 1.907556 2.852659 +0.5692344 1.907556 2.852659 +0.6530715 1.907556 2.852659 +0.7474945 1.907556 2.852659 +0.8539475 1.907556 2.852659 +0.974052 1.907556 2.852659 +1.113885 1.907556 2.852659 +1.27456 1.907556 2.852659 +1.458117 1.907556 2.852659 +1.667858 1.907556 2.852659 +1.907556 1.907556 2.852659 +2.181521 1.907556 2.852659 +2.494678 1.907556 2.852659 +2.852659 1.907556 2.852659 +3.261896 1.907556 2.852659 +3.729748 1.907556 2.852659 +4.264621 1.907556 2.852659 +4.876131 1.907556 2.852659 +5.575266 1.907556 2.852659 +6.374593 1.907556 2.852659 +0 2.181521 2.852659 +0 2.181521 2.852659 +0 2.181521 2.852659 +0.002268731 2.181521 2.852659 +0.07076883 2.181521 2.852659 +0.1119241 2.181521 2.852659 +0.1475052 2.181521 2.852659 +0.1846606 2.181521 2.852659 +0.2245119 2.181521 2.852659 +0.2679612 2.181521 2.852659 +0.3158431 2.181521 2.852659 +0.3689944 2.181521 2.852659 +0.4282948 2.181521 2.852659 +0.494694 2.181521 2.852659 +0.5692344 2.181521 2.852659 +0.6530715 2.181521 2.852659 +0.7474945 2.181521 2.852659 +0.8539475 2.181521 2.852659 +0.974052 2.181521 2.852659 +1.113885 2.181521 2.852659 +1.27456 2.181521 2.852659 +1.458117 2.181521 2.852659 +1.667858 2.181521 2.852659 +1.907556 2.181521 2.852659 +2.181521 2.181521 2.852659 +2.494678 2.181521 2.852659 +2.852659 2.181521 2.852659 +3.261896 2.181521 2.852659 +3.729748 2.181521 2.852659 +4.264621 2.181521 2.852659 +4.876131 2.181521 2.852659 +5.575266 2.181521 2.852659 +6.374593 2.181521 2.852659 +0 2.494678 2.852659 +0 2.494678 2.852659 +0 2.494678 2.852659 +0.002268731 2.494678 2.852659 +0.07076883 2.494678 2.852659 +0.1119241 2.494678 2.852659 +0.1475052 2.494678 2.852659 +0.1846606 2.494678 2.852659 +0.2245119 2.494678 2.852659 +0.2679612 2.494678 2.852659 +0.3158431 2.494678 2.852659 +0.3689944 2.494678 2.852659 +0.4282948 2.494678 2.852659 +0.494694 2.494678 2.852659 +0.5692344 2.494678 2.852659 +0.6530715 2.494678 2.852659 +0.7474945 2.494678 2.852659 +0.8539475 2.494678 2.852659 +0.974052 2.494678 2.852659 +1.113885 2.494678 2.852659 +1.27456 2.494678 2.852659 +1.458117 2.494678 2.852659 +1.667858 2.494678 2.852659 +1.907556 2.494678 2.852659 +2.181521 2.494678 2.852659 +2.494678 2.494678 2.852659 +2.852659 2.494678 2.852659 +3.261896 2.494678 2.852659 +3.729748 2.494678 2.852659 +4.264621 2.494678 2.852659 +4.876131 2.494678 2.852659 +5.575266 2.494678 2.852659 +6.374593 2.494678 2.852659 +0 2.852659 2.852659 +0 2.852659 2.852659 +0 2.852659 2.852659 +0.002268731 2.852659 2.852659 +0.07076883 2.852659 2.852659 +0.1119241 2.852659 2.852659 +0.1475052 2.852659 2.852659 +0.1846606 2.852659 2.852659 +0.2245119 2.852659 2.852659 +0.2679612 2.852659 2.852659 +0.3158431 2.852659 2.852659 +0.3689944 2.852659 2.852659 +0.4282948 2.852659 2.852659 +0.494694 2.852659 2.852659 +0.5692344 2.852659 2.852659 +0.6530715 2.852659 2.852659 +0.7474945 2.852659 2.852659 +0.8539475 2.852659 2.852659 +0.974052 2.852659 2.852659 +1.113885 2.852659 2.852659 +1.27456 2.852659 2.852659 +1.458117 2.852659 2.852659 +1.667858 2.852659 2.852659 +1.907556 2.852659 2.852659 +2.181521 2.852659 2.852659 +2.494678 2.852659 2.852659 +2.852659 2.852659 2.852659 +3.261896 2.852659 2.852659 +3.729748 2.852659 2.852659 +4.264621 2.852659 2.852659 +4.876131 2.852659 2.852659 +5.575266 2.852659 2.852659 +6.374593 2.852659 2.852659 +0 3.261896 2.852659 +0 3.261896 2.852659 +0 3.261896 2.852659 +0.002268731 3.261896 2.852659 +0.07076883 3.261896 2.852659 +0.1119241 3.261896 2.852659 +0.1475052 3.261896 2.852659 +0.1846606 3.261896 2.852659 +0.2245119 3.261896 2.852659 +0.2679612 3.261896 2.852659 +0.3158431 3.261896 2.852659 +0.3689944 3.261896 2.852659 +0.4282948 3.261896 2.852659 +0.494694 3.261896 2.852659 +0.5692344 3.261896 2.852659 +0.6530715 3.261896 2.852659 +0.7474945 3.261896 2.852659 +0.8539475 3.261896 2.852659 +0.974052 3.261896 2.852659 +1.113885 3.261896 2.852659 +1.27456 3.261896 2.852659 +1.458117 3.261896 2.852659 +1.667858 3.261896 2.852659 +1.907556 3.261896 2.852659 +2.181521 3.261896 2.852659 +2.494678 3.261896 2.852659 +2.852659 3.261896 2.852659 +3.261896 3.261896 2.852659 +3.729748 3.261896 2.852659 +4.264621 3.261896 2.852659 +4.876131 3.261896 2.852659 +5.575266 3.261896 2.852659 +6.374593 3.261896 2.852659 +0 3.729748 2.852659 +0 3.729748 2.852659 +0 3.729748 2.852659 +0.002268731 3.729748 2.852659 +0.07076883 3.729748 2.852659 +0.1119241 3.729748 2.852659 +0.1475052 3.729748 2.852659 +0.1846606 3.729748 2.852659 +0.2245119 3.729748 2.852659 +0.2679612 3.729748 2.852659 +0.3158431 3.729748 2.852659 +0.3689944 3.729748 2.852659 +0.4282948 3.729748 2.852659 +0.494694 3.729748 2.852659 +0.5692344 3.729748 2.852659 +0.6530715 3.729748 2.852659 +0.7474945 3.729748 2.852659 +0.8539475 3.729748 2.852659 +0.974052 3.729748 2.852659 +1.113885 3.729748 2.852659 +1.27456 3.729748 2.852659 +1.458117 3.729748 2.852659 +1.667858 3.729748 2.852659 +1.907556 3.729748 2.852659 +2.181521 3.729748 2.852659 +2.494678 3.729748 2.852659 +2.852659 3.729748 2.852659 +3.261896 3.729748 2.852659 +3.729748 3.729748 2.852659 +4.264621 3.729748 2.852659 +4.876131 3.729748 2.852659 +5.575266 3.729748 2.852659 +6.374593 3.729748 2.852659 +0 4.264621 2.852659 +0 4.264621 2.852659 +0 4.264621 2.852659 +0.002268731 4.264621 2.852659 +0.07076883 4.264621 2.852659 +0.1119241 4.264621 2.852659 +0.1475052 4.264621 2.852659 +0.1846606 4.264621 2.852659 +0.2245119 4.264621 2.852659 +0.2679612 4.264621 2.852659 +0.3158431 4.264621 2.852659 +0.3689944 4.264621 2.852659 +0.4282948 4.264621 2.852659 +0.494694 4.264621 2.852659 +0.5692344 4.264621 2.852659 +0.6530715 4.264621 2.852659 +0.7474945 4.264621 2.852659 +0.8539475 4.264621 2.852659 +0.974052 4.264621 2.852659 +1.113885 4.264621 2.852659 +1.27456 4.264621 2.852659 +1.458117 4.264621 2.852659 +1.667858 4.264621 2.852659 +1.907556 4.264621 2.852659 +2.181521 4.264621 2.852659 +2.494678 4.264621 2.852659 +2.852659 4.264621 2.852659 +3.261896 4.264621 2.852659 +3.729748 4.264621 2.852659 +4.264621 4.264621 2.852659 +4.876131 4.264621 2.852659 +5.575266 4.264621 2.852659 +6.374593 4.264621 2.852659 +0 4.876131 2.852659 +0 4.876131 2.852659 +0 4.876131 2.852659 +0.002268731 4.876131 2.852659 +0.07076883 4.876131 2.852659 +0.1119241 4.876131 2.852659 +0.1475052 4.876131 2.852659 +0.1846606 4.876131 2.852659 +0.2245119 4.876131 2.852659 +0.2679612 4.876131 2.852659 +0.3158431 4.876131 2.852659 +0.3689944 4.876131 2.852659 +0.4282948 4.876131 2.852659 +0.494694 4.876131 2.852659 +0.5692344 4.876131 2.852659 +0.6530715 4.876131 2.852659 +0.7474945 4.876131 2.852659 +0.8539475 4.876131 2.852659 +0.974052 4.876131 2.852659 +1.113885 4.876131 2.852659 +1.27456 4.876131 2.852659 +1.458117 4.876131 2.852659 +1.667858 4.876131 2.852659 +1.907556 4.876131 2.852659 +2.181521 4.876131 2.852659 +2.494678 4.876131 2.852659 +2.852659 4.876131 2.852659 +3.261896 4.876131 2.852659 +3.729748 4.876131 2.852659 +4.264621 4.876131 2.852659 +4.876131 4.876131 2.852659 +5.575266 4.876131 2.852659 +6.374593 4.876131 2.852659 +0 5.575266 2.852659 +0 5.575266 2.852659 +0 5.575266 2.852659 +0.002268731 5.575266 2.852659 +0.07076883 5.575266 2.852659 +0.1119241 5.575266 2.852659 +0.1475052 5.575266 2.852659 +0.1846606 5.575266 2.852659 +0.2245119 5.575266 2.852659 +0.2679612 5.575266 2.852659 +0.3158431 5.575266 2.852659 +0.3689944 5.575266 2.852659 +0.4282948 5.575266 2.852659 +0.494694 5.575266 2.852659 +0.5692344 5.575266 2.852659 +0.6530715 5.575266 2.852659 +0.7474945 5.575266 2.852659 +0.8539475 5.575266 2.852659 +0.974052 5.575266 2.852659 +1.113885 5.575266 2.852659 +1.27456 5.575266 2.852659 +1.458117 5.575266 2.852659 +1.667858 5.575266 2.852659 +1.907556 5.575266 2.852659 +2.181521 5.575266 2.852659 +2.494678 5.575266 2.852659 +2.852659 5.575266 2.852659 +3.261896 5.575266 2.852659 +3.729748 5.575266 2.852659 +4.264621 5.575266 2.852659 +4.876131 5.575266 2.852659 +5.575266 5.575266 2.852659 +6.374593 5.575266 2.852659 +0 6.374593 2.852659 +0 6.374593 2.852659 +0 6.374593 2.852659 +0.002268731 6.374593 2.852659 +0.07076883 6.374593 2.852659 +0.1119241 6.374593 2.852659 +0.1475052 6.374593 2.852659 +0.1846606 6.374593 2.852659 +0.2245119 6.374593 2.852659 +0.2679612 6.374593 2.852659 +0.3158431 6.374593 2.852659 +0.3689944 6.374593 2.852659 +0.4282948 6.374593 2.852659 +0.494694 6.374593 2.852659 +0.5692344 6.374593 2.852659 +0.6530715 6.374593 2.852659 +0.7474945 6.374593 2.852659 +0.8539475 6.374593 2.852659 +0.974052 6.374593 2.852659 +1.113885 6.374593 2.852659 +1.27456 6.374593 2.852659 +1.458117 6.374593 2.852659 +1.667858 6.374593 2.852659 +1.907556 6.374593 2.852659 +2.181521 6.374593 2.852659 +2.494678 6.374593 2.852659 +2.852659 6.374593 2.852659 +3.261896 6.374593 2.852659 +3.729748 6.374593 2.852659 +4.264621 6.374593 2.852659 +4.876131 6.374593 2.852659 +5.575266 6.374593 2.852659 +6.374593 6.374593 2.852659 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0.002268731 3.261896 +0 0.002268731 3.261896 +0 0.002268731 3.261896 +0.002268731 0.002268731 3.261896 +0.07076883 0.002268731 3.261896 +0.1119241 0.002268731 3.261896 +0.1475052 0.002268731 3.261896 +0.1846606 0.002268731 3.261896 +0.2245119 0.002268731 3.261896 +0.2679612 0.002268731 3.261896 +0.3158431 0.002268731 3.261896 +0.3689944 0.002268731 3.261896 +0.4282948 0.002268731 3.261896 +0.494694 0.002268731 3.261896 +0.5692344 0.002268731 3.261896 +0.6530715 0.002268731 3.261896 +0.7474945 0.002268731 3.261896 +0.8539475 0.002268731 3.261896 +0.974052 0.002268731 3.261896 +1.113885 0.002268731 3.261896 +1.27456 0.002268731 3.261896 +1.458117 0.002268731 3.261896 +1.667858 0.002268731 3.261896 +1.907556 0.002268731 3.261896 +2.181521 0.002268731 3.261896 +2.494678 0.002268731 3.261896 +2.852659 0.002268731 3.261896 +3.261896 0.002268731 3.261896 +3.729748 0.002268731 3.261896 +4.264621 0.002268731 3.261896 +4.876131 0.002268731 3.261896 +5.575266 0.002268731 3.261896 +6.374593 0.002268731 3.261896 +0 0.07076883 3.261896 +0 0.07076883 3.261896 +0 0.07076883 3.261896 +0.002268731 0.07076883 3.261896 +0.07076883 0.07076883 3.261896 +0.1119241 0.07076883 3.261896 +0.1475052 0.07076883 3.261896 +0.1846606 0.07076883 3.261896 +0.2245119 0.07076883 3.261896 +0.2679612 0.07076883 3.261896 +0.3158431 0.07076883 3.261896 +0.3689944 0.07076883 3.261896 +0.4282948 0.07076883 3.261896 +0.494694 0.07076883 3.261896 +0.5692344 0.07076883 3.261896 +0.6530715 0.07076883 3.261896 +0.7474945 0.07076883 3.261896 +0.8539475 0.07076883 3.261896 +0.974052 0.07076883 3.261896 +1.113885 0.07076883 3.261896 +1.27456 0.07076883 3.261896 +1.458117 0.07076883 3.261896 +1.667858 0.07076883 3.261896 +1.907556 0.07076883 3.261896 +2.181521 0.07076883 3.261896 +2.494678 0.07076883 3.261896 +2.852659 0.07076883 3.261896 +3.261896 0.07076883 3.261896 +3.729748 0.07076883 3.261896 +4.264621 0.07076883 3.261896 +4.876131 0.07076883 3.261896 +5.575266 0.07076883 3.261896 +6.374593 0.07076883 3.261896 +0 0.1119241 3.261896 +0 0.1119241 3.261896 +0 0.1119241 3.261896 +0.002268731 0.1119241 3.261896 +0.07076883 0.1119241 3.261896 +0.1119241 0.1119241 3.261896 +0.1475052 0.1119241 3.261896 +0.1846606 0.1119241 3.261896 +0.2245119 0.1119241 3.261896 +0.2679612 0.1119241 3.261896 +0.3158431 0.1119241 3.261896 +0.3689944 0.1119241 3.261896 +0.4282948 0.1119241 3.261896 +0.494694 0.1119241 3.261896 +0.5692344 0.1119241 3.261896 +0.6530715 0.1119241 3.261896 +0.7474945 0.1119241 3.261896 +0.8539475 0.1119241 3.261896 +0.974052 0.1119241 3.261896 +1.113885 0.1119241 3.261896 +1.27456 0.1119241 3.261896 +1.458117 0.1119241 3.261896 +1.667858 0.1119241 3.261896 +1.907556 0.1119241 3.261896 +2.181521 0.1119241 3.261896 +2.494678 0.1119241 3.261896 +2.852659 0.1119241 3.261896 +3.261896 0.1119241 3.261896 +3.729748 0.1119241 3.261896 +4.264621 0.1119241 3.261896 +4.876131 0.1119241 3.261896 +5.575266 0.1119241 3.261896 +6.374593 0.1119241 3.261896 +0 0.1475052 3.261896 +0 0.1475052 3.261896 +0 0.1475052 3.261896 +0.002268731 0.1475052 3.261896 +0.07076883 0.1475052 3.261896 +0.1119241 0.1475052 3.261896 +0.1475052 0.1475052 3.261896 +0.1846606 0.1475052 3.261896 +0.2245119 0.1475052 3.261896 +0.2679612 0.1475052 3.261896 +0.3158431 0.1475052 3.261896 +0.3689944 0.1475052 3.261896 +0.4282948 0.1475052 3.261896 +0.494694 0.1475052 3.261896 +0.5692344 0.1475052 3.261896 +0.6530715 0.1475052 3.261896 +0.7474945 0.1475052 3.261896 +0.8539475 0.1475052 3.261896 +0.974052 0.1475052 3.261896 +1.113885 0.1475052 3.261896 +1.27456 0.1475052 3.261896 +1.458117 0.1475052 3.261896 +1.667858 0.1475052 3.261896 +1.907556 0.1475052 3.261896 +2.181521 0.1475052 3.261896 +2.494678 0.1475052 3.261896 +2.852659 0.1475052 3.261896 +3.261896 0.1475052 3.261896 +3.729748 0.1475052 3.261896 +4.264621 0.1475052 3.261896 +4.876131 0.1475052 3.261896 +5.575266 0.1475052 3.261896 +6.374593 0.1475052 3.261896 +0 0.1846606 3.261896 +0 0.1846606 3.261896 +0 0.1846606 3.261896 +0.002268731 0.1846606 3.261896 +0.07076883 0.1846606 3.261896 +0.1119241 0.1846606 3.261896 +0.1475052 0.1846606 3.261896 +0.1846606 0.1846606 3.261896 +0.2245119 0.1846606 3.261896 +0.2679612 0.1846606 3.261896 +0.3158431 0.1846606 3.261896 +0.3689944 0.1846606 3.261896 +0.4282948 0.1846606 3.261896 +0.494694 0.1846606 3.261896 +0.5692344 0.1846606 3.261896 +0.6530715 0.1846606 3.261896 +0.7474945 0.1846606 3.261896 +0.8539475 0.1846606 3.261896 +0.974052 0.1846606 3.261896 +1.113885 0.1846606 3.261896 +1.27456 0.1846606 3.261896 +1.458117 0.1846606 3.261896 +1.667858 0.1846606 3.261896 +1.907556 0.1846606 3.261896 +2.181521 0.1846606 3.261896 +2.494678 0.1846606 3.261896 +2.852659 0.1846606 3.261896 +3.261896 0.1846606 3.261896 +3.729748 0.1846606 3.261896 +4.264621 0.1846606 3.261896 +4.876131 0.1846606 3.261896 +5.575266 0.1846606 3.261896 +6.374593 0.1846606 3.261896 +0 0.2245119 3.261896 +0 0.2245119 3.261896 +0 0.2245119 3.261896 +0.002268731 0.2245119 3.261896 +0.07076883 0.2245119 3.261896 +0.1119241 0.2245119 3.261896 +0.1475052 0.2245119 3.261896 +0.1846606 0.2245119 3.261896 +0.2245119 0.2245119 3.261896 +0.2679612 0.2245119 3.261896 +0.3158431 0.2245119 3.261896 +0.3689944 0.2245119 3.261896 +0.4282948 0.2245119 3.261896 +0.494694 0.2245119 3.261896 +0.5692344 0.2245119 3.261896 +0.6530715 0.2245119 3.261896 +0.7474945 0.2245119 3.261896 +0.8539475 0.2245119 3.261896 +0.974052 0.2245119 3.261896 +1.113885 0.2245119 3.261896 +1.27456 0.2245119 3.261896 +1.458117 0.2245119 3.261896 +1.667858 0.2245119 3.261896 +1.907556 0.2245119 3.261896 +2.181521 0.2245119 3.261896 +2.494678 0.2245119 3.261896 +2.852659 0.2245119 3.261896 +3.261896 0.2245119 3.261896 +3.729748 0.2245119 3.261896 +4.264621 0.2245119 3.261896 +4.876131 0.2245119 3.261896 +5.575266 0.2245119 3.261896 +6.374593 0.2245119 3.261896 +0 0.2679612 3.261896 +0 0.2679612 3.261896 +0 0.2679612 3.261896 +0.002268731 0.2679612 3.261896 +0.07076883 0.2679612 3.261896 +0.1119241 0.2679612 3.261896 +0.1475052 0.2679612 3.261896 +0.1846606 0.2679612 3.261896 +0.2245119 0.2679612 3.261896 +0.2679612 0.2679612 3.261896 +0.3158431 0.2679612 3.261896 +0.3689944 0.2679612 3.261896 +0.4282948 0.2679612 3.261896 +0.494694 0.2679612 3.261896 +0.5692344 0.2679612 3.261896 +0.6530715 0.2679612 3.261896 +0.7474945 0.2679612 3.261896 +0.8539475 0.2679612 3.261896 +0.974052 0.2679612 3.261896 +1.113885 0.2679612 3.261896 +1.27456 0.2679612 3.261896 +1.458117 0.2679612 3.261896 +1.667858 0.2679612 3.261896 +1.907556 0.2679612 3.261896 +2.181521 0.2679612 3.261896 +2.494678 0.2679612 3.261896 +2.852659 0.2679612 3.261896 +3.261896 0.2679612 3.261896 +3.729748 0.2679612 3.261896 +4.264621 0.2679612 3.261896 +4.876131 0.2679612 3.261896 +5.575266 0.2679612 3.261896 +6.374593 0.2679612 3.261896 +0 0.3158431 3.261896 +0 0.3158431 3.261896 +0 0.3158431 3.261896 +0.002268731 0.3158431 3.261896 +0.07076883 0.3158431 3.261896 +0.1119241 0.3158431 3.261896 +0.1475052 0.3158431 3.261896 +0.1846606 0.3158431 3.261896 +0.2245119 0.3158431 3.261896 +0.2679612 0.3158431 3.261896 +0.3158431 0.3158431 3.261896 +0.3689944 0.3158431 3.261896 +0.4282948 0.3158431 3.261896 +0.494694 0.3158431 3.261896 +0.5692344 0.3158431 3.261896 +0.6530715 0.3158431 3.261896 +0.7474945 0.3158431 3.261896 +0.8539475 0.3158431 3.261896 +0.974052 0.3158431 3.261896 +1.113885 0.3158431 3.261896 +1.27456 0.3158431 3.261896 +1.458117 0.3158431 3.261896 +1.667858 0.3158431 3.261896 +1.907556 0.3158431 3.261896 +2.181521 0.3158431 3.261896 +2.494678 0.3158431 3.261896 +2.852659 0.3158431 3.261896 +3.261896 0.3158431 3.261896 +3.729748 0.3158431 3.261896 +4.264621 0.3158431 3.261896 +4.876131 0.3158431 3.261896 +5.575266 0.3158431 3.261896 +6.374593 0.3158431 3.261896 +0 0.3689944 3.261896 +0 0.3689944 3.261896 +0 0.3689944 3.261896 +0.002268731 0.3689944 3.261896 +0.07076883 0.3689944 3.261896 +0.1119241 0.3689944 3.261896 +0.1475052 0.3689944 3.261896 +0.1846606 0.3689944 3.261896 +0.2245119 0.3689944 3.261896 +0.2679612 0.3689944 3.261896 +0.3158431 0.3689944 3.261896 +0.3689944 0.3689944 3.261896 +0.4282948 0.3689944 3.261896 +0.494694 0.3689944 3.261896 +0.5692344 0.3689944 3.261896 +0.6530715 0.3689944 3.261896 +0.7474945 0.3689944 3.261896 +0.8539475 0.3689944 3.261896 +0.974052 0.3689944 3.261896 +1.113885 0.3689944 3.261896 +1.27456 0.3689944 3.261896 +1.458117 0.3689944 3.261896 +1.667858 0.3689944 3.261896 +1.907556 0.3689944 3.261896 +2.181521 0.3689944 3.261896 +2.494678 0.3689944 3.261896 +2.852659 0.3689944 3.261896 +3.261896 0.3689944 3.261896 +3.729748 0.3689944 3.261896 +4.264621 0.3689944 3.261896 +4.876131 0.3689944 3.261896 +5.575266 0.3689944 3.261896 +6.374593 0.3689944 3.261896 +0 0.4282948 3.261896 +0 0.4282948 3.261896 +0 0.4282948 3.261896 +0.002268731 0.4282948 3.261896 +0.07076883 0.4282948 3.261896 +0.1119241 0.4282948 3.261896 +0.1475052 0.4282948 3.261896 +0.1846606 0.4282948 3.261896 +0.2245119 0.4282948 3.261896 +0.2679612 0.4282948 3.261896 +0.3158431 0.4282948 3.261896 +0.3689944 0.4282948 3.261896 +0.4282948 0.4282948 3.261896 +0.494694 0.4282948 3.261896 +0.5692344 0.4282948 3.261896 +0.6530715 0.4282948 3.261896 +0.7474945 0.4282948 3.261896 +0.8539475 0.4282948 3.261896 +0.974052 0.4282948 3.261896 +1.113885 0.4282948 3.261896 +1.27456 0.4282948 3.261896 +1.458117 0.4282948 3.261896 +1.667858 0.4282948 3.261896 +1.907556 0.4282948 3.261896 +2.181521 0.4282948 3.261896 +2.494678 0.4282948 3.261896 +2.852659 0.4282948 3.261896 +3.261896 0.4282948 3.261896 +3.729748 0.4282948 3.261896 +4.264621 0.4282948 3.261896 +4.876131 0.4282948 3.261896 +5.575266 0.4282948 3.261896 +6.374593 0.4282948 3.261896 +0 0.494694 3.261896 +0 0.494694 3.261896 +0 0.494694 3.261896 +0.002268731 0.494694 3.261896 +0.07076883 0.494694 3.261896 +0.1119241 0.494694 3.261896 +0.1475052 0.494694 3.261896 +0.1846606 0.494694 3.261896 +0.2245119 0.494694 3.261896 +0.2679612 0.494694 3.261896 +0.3158431 0.494694 3.261896 +0.3689944 0.494694 3.261896 +0.4282948 0.494694 3.261896 +0.494694 0.494694 3.261896 +0.5692344 0.494694 3.261896 +0.6530715 0.494694 3.261896 +0.7474945 0.494694 3.261896 +0.8539475 0.494694 3.261896 +0.974052 0.494694 3.261896 +1.113885 0.494694 3.261896 +1.27456 0.494694 3.261896 +1.458117 0.494694 3.261896 +1.667858 0.494694 3.261896 +1.907556 0.494694 3.261896 +2.181521 0.494694 3.261896 +2.494678 0.494694 3.261896 +2.852659 0.494694 3.261896 +3.261896 0.494694 3.261896 +3.729748 0.494694 3.261896 +4.264621 0.494694 3.261896 +4.876131 0.494694 3.261896 +5.575266 0.494694 3.261896 +6.374593 0.494694 3.261896 +0 0.5692344 3.261896 +0 0.5692344 3.261896 +0 0.5692344 3.261896 +0.002268731 0.5692344 3.261896 +0.07076883 0.5692344 3.261896 +0.1119241 0.5692344 3.261896 +0.1475052 0.5692344 3.261896 +0.1846606 0.5692344 3.261896 +0.2245119 0.5692344 3.261896 +0.2679612 0.5692344 3.261896 +0.3158431 0.5692344 3.261896 +0.3689944 0.5692344 3.261896 +0.4282948 0.5692344 3.261896 +0.494694 0.5692344 3.261896 +0.5692344 0.5692344 3.261896 +0.6530715 0.5692344 3.261896 +0.7474945 0.5692344 3.261896 +0.8539475 0.5692344 3.261896 +0.974052 0.5692344 3.261896 +1.113885 0.5692344 3.261896 +1.27456 0.5692344 3.261896 +1.458117 0.5692344 3.261896 +1.667858 0.5692344 3.261896 +1.907556 0.5692344 3.261896 +2.181521 0.5692344 3.261896 +2.494678 0.5692344 3.261896 +2.852659 0.5692344 3.261896 +3.261896 0.5692344 3.261896 +3.729748 0.5692344 3.261896 +4.264621 0.5692344 3.261896 +4.876131 0.5692344 3.261896 +5.575266 0.5692344 3.261896 +6.374593 0.5692344 3.261896 +0 0.6530715 3.261896 +0 0.6530715 3.261896 +0 0.6530715 3.261896 +0.002268731 0.6530715 3.261896 +0.07076883 0.6530715 3.261896 +0.1119241 0.6530715 3.261896 +0.1475052 0.6530715 3.261896 +0.1846606 0.6530715 3.261896 +0.2245119 0.6530715 3.261896 +0.2679612 0.6530715 3.261896 +0.3158431 0.6530715 3.261896 +0.3689944 0.6530715 3.261896 +0.4282948 0.6530715 3.261896 +0.494694 0.6530715 3.261896 +0.5692344 0.6530715 3.261896 +0.6530715 0.6530715 3.261896 +0.7474945 0.6530715 3.261896 +0.8539475 0.6530715 3.261896 +0.974052 0.6530715 3.261896 +1.113885 0.6530715 3.261896 +1.27456 0.6530715 3.261896 +1.458117 0.6530715 3.261896 +1.667858 0.6530715 3.261896 +1.907556 0.6530715 3.261896 +2.181521 0.6530715 3.261896 +2.494678 0.6530715 3.261896 +2.852659 0.6530715 3.261896 +3.261896 0.6530715 3.261896 +3.729748 0.6530715 3.261896 +4.264621 0.6530715 3.261896 +4.876131 0.6530715 3.261896 +5.575266 0.6530715 3.261896 +6.374593 0.6530715 3.261896 +0 0.7474945 3.261896 +0 0.7474945 3.261896 +0 0.7474945 3.261896 +0.002268731 0.7474945 3.261896 +0.07076883 0.7474945 3.261896 +0.1119241 0.7474945 3.261896 +0.1475052 0.7474945 3.261896 +0.1846606 0.7474945 3.261896 +0.2245119 0.7474945 3.261896 +0.2679612 0.7474945 3.261896 +0.3158431 0.7474945 3.261896 +0.3689944 0.7474945 3.261896 +0.4282948 0.7474945 3.261896 +0.494694 0.7474945 3.261896 +0.5692344 0.7474945 3.261896 +0.6530715 0.7474945 3.261896 +0.7474945 0.7474945 3.261896 +0.8539475 0.7474945 3.261896 +0.974052 0.7474945 3.261896 +1.113885 0.7474945 3.261896 +1.27456 0.7474945 3.261896 +1.458117 0.7474945 3.261896 +1.667858 0.7474945 3.261896 +1.907556 0.7474945 3.261896 +2.181521 0.7474945 3.261896 +2.494678 0.7474945 3.261896 +2.852659 0.7474945 3.261896 +3.261896 0.7474945 3.261896 +3.729748 0.7474945 3.261896 +4.264621 0.7474945 3.261896 +4.876131 0.7474945 3.261896 +5.575266 0.7474945 3.261896 +6.374593 0.7474945 3.261896 +0 0.8539475 3.261896 +0 0.8539475 3.261896 +0 0.8539475 3.261896 +0.002268731 0.8539475 3.261896 +0.07076883 0.8539475 3.261896 +0.1119241 0.8539475 3.261896 +0.1475052 0.8539475 3.261896 +0.1846606 0.8539475 3.261896 +0.2245119 0.8539475 3.261896 +0.2679612 0.8539475 3.261896 +0.3158431 0.8539475 3.261896 +0.3689944 0.8539475 3.261896 +0.4282948 0.8539475 3.261896 +0.494694 0.8539475 3.261896 +0.5692344 0.8539475 3.261896 +0.6530715 0.8539475 3.261896 +0.7474945 0.8539475 3.261896 +0.8539475 0.8539475 3.261896 +0.974052 0.8539475 3.261896 +1.113885 0.8539475 3.261896 +1.27456 0.8539475 3.261896 +1.458117 0.8539475 3.261896 +1.667858 0.8539475 3.261896 +1.907556 0.8539475 3.261896 +2.181521 0.8539475 3.261896 +2.494678 0.8539475 3.261896 +2.852659 0.8539475 3.261896 +3.261896 0.8539475 3.261896 +3.729748 0.8539475 3.261896 +4.264621 0.8539475 3.261896 +4.876131 0.8539475 3.261896 +5.575266 0.8539475 3.261896 +6.374593 0.8539475 3.261896 +0 0.974052 3.261896 +0 0.974052 3.261896 +0 0.974052 3.261896 +0.002268731 0.974052 3.261896 +0.07076883 0.974052 3.261896 +0.1119241 0.974052 3.261896 +0.1475052 0.974052 3.261896 +0.1846606 0.974052 3.261896 +0.2245119 0.974052 3.261896 +0.2679612 0.974052 3.261896 +0.3158431 0.974052 3.261896 +0.3689944 0.974052 3.261896 +0.4282948 0.974052 3.261896 +0.494694 0.974052 3.261896 +0.5692344 0.974052 3.261896 +0.6530715 0.974052 3.261896 +0.7474945 0.974052 3.261896 +0.8539475 0.974052 3.261896 +0.974052 0.974052 3.261896 +1.113885 0.974052 3.261896 +1.27456 0.974052 3.261896 +1.458117 0.974052 3.261896 +1.667858 0.974052 3.261896 +1.907556 0.974052 3.261896 +2.181521 0.974052 3.261896 +2.494678 0.974052 3.261896 +2.852659 0.974052 3.261896 +3.261896 0.974052 3.261896 +3.729748 0.974052 3.261896 +4.264621 0.974052 3.261896 +4.876131 0.974052 3.261896 +5.575266 0.974052 3.261896 +6.374593 0.974052 3.261896 +0 1.113885 3.261896 +0 1.113885 3.261896 +0 1.113885 3.261896 +0.002268731 1.113885 3.261896 +0.07076883 1.113885 3.261896 +0.1119241 1.113885 3.261896 +0.1475052 1.113885 3.261896 +0.1846606 1.113885 3.261896 +0.2245119 1.113885 3.261896 +0.2679612 1.113885 3.261896 +0.3158431 1.113885 3.261896 +0.3689944 1.113885 3.261896 +0.4282948 1.113885 3.261896 +0.494694 1.113885 3.261896 +0.5692344 1.113885 3.261896 +0.6530715 1.113885 3.261896 +0.7474945 1.113885 3.261896 +0.8539475 1.113885 3.261896 +0.974052 1.113885 3.261896 +1.113885 1.113885 3.261896 +1.27456 1.113885 3.261896 +1.458117 1.113885 3.261896 +1.667858 1.113885 3.261896 +1.907556 1.113885 3.261896 +2.181521 1.113885 3.261896 +2.494678 1.113885 3.261896 +2.852659 1.113885 3.261896 +3.261896 1.113885 3.261896 +3.729748 1.113885 3.261896 +4.264621 1.113885 3.261896 +4.876131 1.113885 3.261896 +5.575266 1.113885 3.261896 +6.374593 1.113885 3.261896 +0 1.27456 3.261896 +0 1.27456 3.261896 +0 1.27456 3.261896 +0.002268731 1.27456 3.261896 +0.07076883 1.27456 3.261896 +0.1119241 1.27456 3.261896 +0.1475052 1.27456 3.261896 +0.1846606 1.27456 3.261896 +0.2245119 1.27456 3.261896 +0.2679612 1.27456 3.261896 +0.3158431 1.27456 3.261896 +0.3689944 1.27456 3.261896 +0.4282948 1.27456 3.261896 +0.494694 1.27456 3.261896 +0.5692344 1.27456 3.261896 +0.6530715 1.27456 3.261896 +0.7474945 1.27456 3.261896 +0.8539475 1.27456 3.261896 +0.974052 1.27456 3.261896 +1.113885 1.27456 3.261896 +1.27456 1.27456 3.261896 +1.458117 1.27456 3.261896 +1.667858 1.27456 3.261896 +1.907556 1.27456 3.261896 +2.181521 1.27456 3.261896 +2.494678 1.27456 3.261896 +2.852659 1.27456 3.261896 +3.261896 1.27456 3.261896 +3.729748 1.27456 3.261896 +4.264621 1.27456 3.261896 +4.876131 1.27456 3.261896 +5.575266 1.27456 3.261896 +6.374593 1.27456 3.261896 +0 1.458117 3.261896 +0 1.458117 3.261896 +0 1.458117 3.261896 +0.002268731 1.458117 3.261896 +0.07076883 1.458117 3.261896 +0.1119241 1.458117 3.261896 +0.1475052 1.458117 3.261896 +0.1846606 1.458117 3.261896 +0.2245119 1.458117 3.261896 +0.2679612 1.458117 3.261896 +0.3158431 1.458117 3.261896 +0.3689944 1.458117 3.261896 +0.4282948 1.458117 3.261896 +0.494694 1.458117 3.261896 +0.5692344 1.458117 3.261896 +0.6530715 1.458117 3.261896 +0.7474945 1.458117 3.261896 +0.8539475 1.458117 3.261896 +0.974052 1.458117 3.261896 +1.113885 1.458117 3.261896 +1.27456 1.458117 3.261896 +1.458117 1.458117 3.261896 +1.667858 1.458117 3.261896 +1.907556 1.458117 3.261896 +2.181521 1.458117 3.261896 +2.494678 1.458117 3.261896 +2.852659 1.458117 3.261896 +3.261896 1.458117 3.261896 +3.729748 1.458117 3.261896 +4.264621 1.458117 3.261896 +4.876131 1.458117 3.261896 +5.575266 1.458117 3.261896 +6.374593 1.458117 3.261896 +0 1.667858 3.261896 +0 1.667858 3.261896 +0 1.667858 3.261896 +0.002268731 1.667858 3.261896 +0.07076883 1.667858 3.261896 +0.1119241 1.667858 3.261896 +0.1475052 1.667858 3.261896 +0.1846606 1.667858 3.261896 +0.2245119 1.667858 3.261896 +0.2679612 1.667858 3.261896 +0.3158431 1.667858 3.261896 +0.3689944 1.667858 3.261896 +0.4282948 1.667858 3.261896 +0.494694 1.667858 3.261896 +0.5692344 1.667858 3.261896 +0.6530715 1.667858 3.261896 +0.7474945 1.667858 3.261896 +0.8539475 1.667858 3.261896 +0.974052 1.667858 3.261896 +1.113885 1.667858 3.261896 +1.27456 1.667858 3.261896 +1.458117 1.667858 3.261896 +1.667858 1.667858 3.261896 +1.907556 1.667858 3.261896 +2.181521 1.667858 3.261896 +2.494678 1.667858 3.261896 +2.852659 1.667858 3.261896 +3.261896 1.667858 3.261896 +3.729748 1.667858 3.261896 +4.264621 1.667858 3.261896 +4.876131 1.667858 3.261896 +5.575266 1.667858 3.261896 +6.374593 1.667858 3.261896 +0 1.907556 3.261896 +0 1.907556 3.261896 +0 1.907556 3.261896 +0.002268731 1.907556 3.261896 +0.07076883 1.907556 3.261896 +0.1119241 1.907556 3.261896 +0.1475052 1.907556 3.261896 +0.1846606 1.907556 3.261896 +0.2245119 1.907556 3.261896 +0.2679612 1.907556 3.261896 +0.3158431 1.907556 3.261896 +0.3689944 1.907556 3.261896 +0.4282948 1.907556 3.261896 +0.494694 1.907556 3.261896 +0.5692344 1.907556 3.261896 +0.6530715 1.907556 3.261896 +0.7474945 1.907556 3.261896 +0.8539475 1.907556 3.261896 +0.974052 1.907556 3.261896 +1.113885 1.907556 3.261896 +1.27456 1.907556 3.261896 +1.458117 1.907556 3.261896 +1.667858 1.907556 3.261896 +1.907556 1.907556 3.261896 +2.181521 1.907556 3.261896 +2.494678 1.907556 3.261896 +2.852659 1.907556 3.261896 +3.261896 1.907556 3.261896 +3.729748 1.907556 3.261896 +4.264621 1.907556 3.261896 +4.876131 1.907556 3.261896 +5.575266 1.907556 3.261896 +6.374593 1.907556 3.261896 +0 2.181521 3.261896 +0 2.181521 3.261896 +0 2.181521 3.261896 +0.002268731 2.181521 3.261896 +0.07076883 2.181521 3.261896 +0.1119241 2.181521 3.261896 +0.1475052 2.181521 3.261896 +0.1846606 2.181521 3.261896 +0.2245119 2.181521 3.261896 +0.2679612 2.181521 3.261896 +0.3158431 2.181521 3.261896 +0.3689944 2.181521 3.261896 +0.4282948 2.181521 3.261896 +0.494694 2.181521 3.261896 +0.5692344 2.181521 3.261896 +0.6530715 2.181521 3.261896 +0.7474945 2.181521 3.261896 +0.8539475 2.181521 3.261896 +0.974052 2.181521 3.261896 +1.113885 2.181521 3.261896 +1.27456 2.181521 3.261896 +1.458117 2.181521 3.261896 +1.667858 2.181521 3.261896 +1.907556 2.181521 3.261896 +2.181521 2.181521 3.261896 +2.494678 2.181521 3.261896 +2.852659 2.181521 3.261896 +3.261896 2.181521 3.261896 +3.729748 2.181521 3.261896 +4.264621 2.181521 3.261896 +4.876131 2.181521 3.261896 +5.575266 2.181521 3.261896 +6.374593 2.181521 3.261896 +0 2.494678 3.261896 +0 2.494678 3.261896 +0 2.494678 3.261896 +0.002268731 2.494678 3.261896 +0.07076883 2.494678 3.261896 +0.1119241 2.494678 3.261896 +0.1475052 2.494678 3.261896 +0.1846606 2.494678 3.261896 +0.2245119 2.494678 3.261896 +0.2679612 2.494678 3.261896 +0.3158431 2.494678 3.261896 +0.3689944 2.494678 3.261896 +0.4282948 2.494678 3.261896 +0.494694 2.494678 3.261896 +0.5692344 2.494678 3.261896 +0.6530715 2.494678 3.261896 +0.7474945 2.494678 3.261896 +0.8539475 2.494678 3.261896 +0.974052 2.494678 3.261896 +1.113885 2.494678 3.261896 +1.27456 2.494678 3.261896 +1.458117 2.494678 3.261896 +1.667858 2.494678 3.261896 +1.907556 2.494678 3.261896 +2.181521 2.494678 3.261896 +2.494678 2.494678 3.261896 +2.852659 2.494678 3.261896 +3.261896 2.494678 3.261896 +3.729748 2.494678 3.261896 +4.264621 2.494678 3.261896 +4.876131 2.494678 3.261896 +5.575266 2.494678 3.261896 +6.374593 2.494678 3.261896 +0 2.852659 3.261896 +0 2.852659 3.261896 +0 2.852659 3.261896 +0.002268731 2.852659 3.261896 +0.07076883 2.852659 3.261896 +0.1119241 2.852659 3.261896 +0.1475052 2.852659 3.261896 +0.1846606 2.852659 3.261896 +0.2245119 2.852659 3.261896 +0.2679612 2.852659 3.261896 +0.3158431 2.852659 3.261896 +0.3689944 2.852659 3.261896 +0.4282948 2.852659 3.261896 +0.494694 2.852659 3.261896 +0.5692344 2.852659 3.261896 +0.6530715 2.852659 3.261896 +0.7474945 2.852659 3.261896 +0.8539475 2.852659 3.261896 +0.974052 2.852659 3.261896 +1.113885 2.852659 3.261896 +1.27456 2.852659 3.261896 +1.458117 2.852659 3.261896 +1.667858 2.852659 3.261896 +1.907556 2.852659 3.261896 +2.181521 2.852659 3.261896 +2.494678 2.852659 3.261896 +2.852659 2.852659 3.261896 +3.261896 2.852659 3.261896 +3.729748 2.852659 3.261896 +4.264621 2.852659 3.261896 +4.876131 2.852659 3.261896 +5.575266 2.852659 3.261896 +6.374593 2.852659 3.261896 +0 3.261896 3.261896 +0 3.261896 3.261896 +0 3.261896 3.261896 +0.002268731 3.261896 3.261896 +0.07076883 3.261896 3.261896 +0.1119241 3.261896 3.261896 +0.1475052 3.261896 3.261896 +0.1846606 3.261896 3.261896 +0.2245119 3.261896 3.261896 +0.2679612 3.261896 3.261896 +0.3158431 3.261896 3.261896 +0.3689944 3.261896 3.261896 +0.4282948 3.261896 3.261896 +0.494694 3.261896 3.261896 +0.5692344 3.261896 3.261896 +0.6530715 3.261896 3.261896 +0.7474945 3.261896 3.261896 +0.8539475 3.261896 3.261896 +0.974052 3.261896 3.261896 +1.113885 3.261896 3.261896 +1.27456 3.261896 3.261896 +1.458117 3.261896 3.261896 +1.667858 3.261896 3.261896 +1.907556 3.261896 3.261896 +2.181521 3.261896 3.261896 +2.494678 3.261896 3.261896 +2.852659 3.261896 3.261896 +3.261896 3.261896 3.261896 +3.729748 3.261896 3.261896 +4.264621 3.261896 3.261896 +4.876131 3.261896 3.261896 +5.575266 3.261896 3.261896 +6.374593 3.261896 3.261896 +0 3.729748 3.261896 +0 3.729748 3.261896 +0 3.729748 3.261896 +0.002268731 3.729748 3.261896 +0.07076883 3.729748 3.261896 +0.1119241 3.729748 3.261896 +0.1475052 3.729748 3.261896 +0.1846606 3.729748 3.261896 +0.2245119 3.729748 3.261896 +0.2679612 3.729748 3.261896 +0.3158431 3.729748 3.261896 +0.3689944 3.729748 3.261896 +0.4282948 3.729748 3.261896 +0.494694 3.729748 3.261896 +0.5692344 3.729748 3.261896 +0.6530715 3.729748 3.261896 +0.7474945 3.729748 3.261896 +0.8539475 3.729748 3.261896 +0.974052 3.729748 3.261896 +1.113885 3.729748 3.261896 +1.27456 3.729748 3.261896 +1.458117 3.729748 3.261896 +1.667858 3.729748 3.261896 +1.907556 3.729748 3.261896 +2.181521 3.729748 3.261896 +2.494678 3.729748 3.261896 +2.852659 3.729748 3.261896 +3.261896 3.729748 3.261896 +3.729748 3.729748 3.261896 +4.264621 3.729748 3.261896 +4.876131 3.729748 3.261896 +5.575266 3.729748 3.261896 +6.374593 3.729748 3.261896 +0 4.264621 3.261896 +0 4.264621 3.261896 +0 4.264621 3.261896 +0.002268731 4.264621 3.261896 +0.07076883 4.264621 3.261896 +0.1119241 4.264621 3.261896 +0.1475052 4.264621 3.261896 +0.1846606 4.264621 3.261896 +0.2245119 4.264621 3.261896 +0.2679612 4.264621 3.261896 +0.3158431 4.264621 3.261896 +0.3689944 4.264621 3.261896 +0.4282948 4.264621 3.261896 +0.494694 4.264621 3.261896 +0.5692344 4.264621 3.261896 +0.6530715 4.264621 3.261896 +0.7474945 4.264621 3.261896 +0.8539475 4.264621 3.261896 +0.974052 4.264621 3.261896 +1.113885 4.264621 3.261896 +1.27456 4.264621 3.261896 +1.458117 4.264621 3.261896 +1.667858 4.264621 3.261896 +1.907556 4.264621 3.261896 +2.181521 4.264621 3.261896 +2.494678 4.264621 3.261896 +2.852659 4.264621 3.261896 +3.261896 4.264621 3.261896 +3.729748 4.264621 3.261896 +4.264621 4.264621 3.261896 +4.876131 4.264621 3.261896 +5.575266 4.264621 3.261896 +6.374593 4.264621 3.261896 +0 4.876131 3.261896 +0 4.876131 3.261896 +0 4.876131 3.261896 +0.002268731 4.876131 3.261896 +0.07076883 4.876131 3.261896 +0.1119241 4.876131 3.261896 +0.1475052 4.876131 3.261896 +0.1846606 4.876131 3.261896 +0.2245119 4.876131 3.261896 +0.2679612 4.876131 3.261896 +0.3158431 4.876131 3.261896 +0.3689944 4.876131 3.261896 +0.4282948 4.876131 3.261896 +0.494694 4.876131 3.261896 +0.5692344 4.876131 3.261896 +0.6530715 4.876131 3.261896 +0.7474945 4.876131 3.261896 +0.8539475 4.876131 3.261896 +0.974052 4.876131 3.261896 +1.113885 4.876131 3.261896 +1.27456 4.876131 3.261896 +1.458117 4.876131 3.261896 +1.667858 4.876131 3.261896 +1.907556 4.876131 3.261896 +2.181521 4.876131 3.261896 +2.494678 4.876131 3.261896 +2.852659 4.876131 3.261896 +3.261896 4.876131 3.261896 +3.729748 4.876131 3.261896 +4.264621 4.876131 3.261896 +4.876131 4.876131 3.261896 +5.575266 4.876131 3.261896 +6.374593 4.876131 3.261896 +0 5.575266 3.261896 +0 5.575266 3.261896 +0 5.575266 3.261896 +0.002268731 5.575266 3.261896 +0.07076883 5.575266 3.261896 +0.1119241 5.575266 3.261896 +0.1475052 5.575266 3.261896 +0.1846606 5.575266 3.261896 +0.2245119 5.575266 3.261896 +0.2679612 5.575266 3.261896 +0.3158431 5.575266 3.261896 +0.3689944 5.575266 3.261896 +0.4282948 5.575266 3.261896 +0.494694 5.575266 3.261896 +0.5692344 5.575266 3.261896 +0.6530715 5.575266 3.261896 +0.7474945 5.575266 3.261896 +0.8539475 5.575266 3.261896 +0.974052 5.575266 3.261896 +1.113885 5.575266 3.261896 +1.27456 5.575266 3.261896 +1.458117 5.575266 3.261896 +1.667858 5.575266 3.261896 +1.907556 5.575266 3.261896 +2.181521 5.575266 3.261896 +2.494678 5.575266 3.261896 +2.852659 5.575266 3.261896 +3.261896 5.575266 3.261896 +3.729748 5.575266 3.261896 +4.264621 5.575266 3.261896 +4.876131 5.575266 3.261896 +5.575266 5.575266 3.261896 +6.374593 5.575266 3.261896 +0 6.374593 3.261896 +0 6.374593 3.261896 +0 6.374593 3.261896 +0.002268731 6.374593 3.261896 +0.07076883 6.374593 3.261896 +0.1119241 6.374593 3.261896 +0.1475052 6.374593 3.261896 +0.1846606 6.374593 3.261896 +0.2245119 6.374593 3.261896 +0.2679612 6.374593 3.261896 +0.3158431 6.374593 3.261896 +0.3689944 6.374593 3.261896 +0.4282948 6.374593 3.261896 +0.494694 6.374593 3.261896 +0.5692344 6.374593 3.261896 +0.6530715 6.374593 3.261896 +0.7474945 6.374593 3.261896 +0.8539475 6.374593 3.261896 +0.974052 6.374593 3.261896 +1.113885 6.374593 3.261896 +1.27456 6.374593 3.261896 +1.458117 6.374593 3.261896 +1.667858 6.374593 3.261896 +1.907556 6.374593 3.261896 +2.181521 6.374593 3.261896 +2.494678 6.374593 3.261896 +2.852659 6.374593 3.261896 +3.261896 6.374593 3.261896 +3.729748 6.374593 3.261896 +4.264621 6.374593 3.261896 +4.876131 6.374593 3.261896 +5.575266 6.374593 3.261896 +6.374593 6.374593 3.261896 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0.002268731 3.729748 +0 0.002268731 3.729748 +0 0.002268731 3.729748 +0.002268731 0.002268731 3.729748 +0.07076883 0.002268731 3.729748 +0.1119241 0.002268731 3.729748 +0.1475052 0.002268731 3.729748 +0.1846606 0.002268731 3.729748 +0.2245119 0.002268731 3.729748 +0.2679612 0.002268731 3.729748 +0.3158431 0.002268731 3.729748 +0.3689944 0.002268731 3.729748 +0.4282948 0.002268731 3.729748 +0.494694 0.002268731 3.729748 +0.5692344 0.002268731 3.729748 +0.6530715 0.002268731 3.729748 +0.7474945 0.002268731 3.729748 +0.8539475 0.002268731 3.729748 +0.974052 0.002268731 3.729748 +1.113885 0.002268731 3.729748 +1.27456 0.002268731 3.729748 +1.458117 0.002268731 3.729748 +1.667858 0.002268731 3.729748 +1.907556 0.002268731 3.729748 +2.181521 0.002268731 3.729748 +2.494678 0.002268731 3.729748 +2.852659 0.002268731 3.729748 +3.261896 0.002268731 3.729748 +3.729748 0.002268731 3.729748 +4.264621 0.002268731 3.729748 +4.876131 0.002268731 3.729748 +5.575266 0.002268731 3.729748 +6.374593 0.002268731 3.729748 +0 0.07076883 3.729748 +0 0.07076883 3.729748 +0 0.07076883 3.729748 +0.002268731 0.07076883 3.729748 +0.07076883 0.07076883 3.729748 +0.1119241 0.07076883 3.729748 +0.1475052 0.07076883 3.729748 +0.1846606 0.07076883 3.729748 +0.2245119 0.07076883 3.729748 +0.2679612 0.07076883 3.729748 +0.3158431 0.07076883 3.729748 +0.3689944 0.07076883 3.729748 +0.4282948 0.07076883 3.729748 +0.494694 0.07076883 3.729748 +0.5692344 0.07076883 3.729748 +0.6530715 0.07076883 3.729748 +0.7474945 0.07076883 3.729748 +0.8539475 0.07076883 3.729748 +0.974052 0.07076883 3.729748 +1.113885 0.07076883 3.729748 +1.27456 0.07076883 3.729748 +1.458117 0.07076883 3.729748 +1.667858 0.07076883 3.729748 +1.907556 0.07076883 3.729748 +2.181521 0.07076883 3.729748 +2.494678 0.07076883 3.729748 +2.852659 0.07076883 3.729748 +3.261896 0.07076883 3.729748 +3.729748 0.07076883 3.729748 +4.264621 0.07076883 3.729748 +4.876131 0.07076883 3.729748 +5.575266 0.07076883 3.729748 +6.374593 0.07076883 3.729748 +0 0.1119241 3.729748 +0 0.1119241 3.729748 +0 0.1119241 3.729748 +0.002268731 0.1119241 3.729748 +0.07076883 0.1119241 3.729748 +0.1119241 0.1119241 3.729748 +0.1475052 0.1119241 3.729748 +0.1846606 0.1119241 3.729748 +0.2245119 0.1119241 3.729748 +0.2679612 0.1119241 3.729748 +0.3158431 0.1119241 3.729748 +0.3689944 0.1119241 3.729748 +0.4282948 0.1119241 3.729748 +0.494694 0.1119241 3.729748 +0.5692344 0.1119241 3.729748 +0.6530715 0.1119241 3.729748 +0.7474945 0.1119241 3.729748 +0.8539475 0.1119241 3.729748 +0.974052 0.1119241 3.729748 +1.113885 0.1119241 3.729748 +1.27456 0.1119241 3.729748 +1.458117 0.1119241 3.729748 +1.667858 0.1119241 3.729748 +1.907556 0.1119241 3.729748 +2.181521 0.1119241 3.729748 +2.494678 0.1119241 3.729748 +2.852659 0.1119241 3.729748 +3.261896 0.1119241 3.729748 +3.729748 0.1119241 3.729748 +4.264621 0.1119241 3.729748 +4.876131 0.1119241 3.729748 +5.575266 0.1119241 3.729748 +6.374593 0.1119241 3.729748 +0 0.1475052 3.729748 +0 0.1475052 3.729748 +0 0.1475052 3.729748 +0.002268731 0.1475052 3.729748 +0.07076883 0.1475052 3.729748 +0.1119241 0.1475052 3.729748 +0.1475052 0.1475052 3.729748 +0.1846606 0.1475052 3.729748 +0.2245119 0.1475052 3.729748 +0.2679612 0.1475052 3.729748 +0.3158431 0.1475052 3.729748 +0.3689944 0.1475052 3.729748 +0.4282948 0.1475052 3.729748 +0.494694 0.1475052 3.729748 +0.5692344 0.1475052 3.729748 +0.6530715 0.1475052 3.729748 +0.7474945 0.1475052 3.729748 +0.8539475 0.1475052 3.729748 +0.974052 0.1475052 3.729748 +1.113885 0.1475052 3.729748 +1.27456 0.1475052 3.729748 +1.458117 0.1475052 3.729748 +1.667858 0.1475052 3.729748 +1.907556 0.1475052 3.729748 +2.181521 0.1475052 3.729748 +2.494678 0.1475052 3.729748 +2.852659 0.1475052 3.729748 +3.261896 0.1475052 3.729748 +3.729748 0.1475052 3.729748 +4.264621 0.1475052 3.729748 +4.876131 0.1475052 3.729748 +5.575266 0.1475052 3.729748 +6.374593 0.1475052 3.729748 +0 0.1846606 3.729748 +0 0.1846606 3.729748 +0 0.1846606 3.729748 +0.002268731 0.1846606 3.729748 +0.07076883 0.1846606 3.729748 +0.1119241 0.1846606 3.729748 +0.1475052 0.1846606 3.729748 +0.1846606 0.1846606 3.729748 +0.2245119 0.1846606 3.729748 +0.2679612 0.1846606 3.729748 +0.3158431 0.1846606 3.729748 +0.3689944 0.1846606 3.729748 +0.4282948 0.1846606 3.729748 +0.494694 0.1846606 3.729748 +0.5692344 0.1846606 3.729748 +0.6530715 0.1846606 3.729748 +0.7474945 0.1846606 3.729748 +0.8539475 0.1846606 3.729748 +0.974052 0.1846606 3.729748 +1.113885 0.1846606 3.729748 +1.27456 0.1846606 3.729748 +1.458117 0.1846606 3.729748 +1.667858 0.1846606 3.729748 +1.907556 0.1846606 3.729748 +2.181521 0.1846606 3.729748 +2.494678 0.1846606 3.729748 +2.852659 0.1846606 3.729748 +3.261896 0.1846606 3.729748 +3.729748 0.1846606 3.729748 +4.264621 0.1846606 3.729748 +4.876131 0.1846606 3.729748 +5.575266 0.1846606 3.729748 +6.374593 0.1846606 3.729748 +0 0.2245119 3.729748 +0 0.2245119 3.729748 +0 0.2245119 3.729748 +0.002268731 0.2245119 3.729748 +0.07076883 0.2245119 3.729748 +0.1119241 0.2245119 3.729748 +0.1475052 0.2245119 3.729748 +0.1846606 0.2245119 3.729748 +0.2245119 0.2245119 3.729748 +0.2679612 0.2245119 3.729748 +0.3158431 0.2245119 3.729748 +0.3689944 0.2245119 3.729748 +0.4282948 0.2245119 3.729748 +0.494694 0.2245119 3.729748 +0.5692344 0.2245119 3.729748 +0.6530715 0.2245119 3.729748 +0.7474945 0.2245119 3.729748 +0.8539475 0.2245119 3.729748 +0.974052 0.2245119 3.729748 +1.113885 0.2245119 3.729748 +1.27456 0.2245119 3.729748 +1.458117 0.2245119 3.729748 +1.667858 0.2245119 3.729748 +1.907556 0.2245119 3.729748 +2.181521 0.2245119 3.729748 +2.494678 0.2245119 3.729748 +2.852659 0.2245119 3.729748 +3.261896 0.2245119 3.729748 +3.729748 0.2245119 3.729748 +4.264621 0.2245119 3.729748 +4.876131 0.2245119 3.729748 +5.575266 0.2245119 3.729748 +6.374593 0.2245119 3.729748 +0 0.2679612 3.729748 +0 0.2679612 3.729748 +0 0.2679612 3.729748 +0.002268731 0.2679612 3.729748 +0.07076883 0.2679612 3.729748 +0.1119241 0.2679612 3.729748 +0.1475052 0.2679612 3.729748 +0.1846606 0.2679612 3.729748 +0.2245119 0.2679612 3.729748 +0.2679612 0.2679612 3.729748 +0.3158431 0.2679612 3.729748 +0.3689944 0.2679612 3.729748 +0.4282948 0.2679612 3.729748 +0.494694 0.2679612 3.729748 +0.5692344 0.2679612 3.729748 +0.6530715 0.2679612 3.729748 +0.7474945 0.2679612 3.729748 +0.8539475 0.2679612 3.729748 +0.974052 0.2679612 3.729748 +1.113885 0.2679612 3.729748 +1.27456 0.2679612 3.729748 +1.458117 0.2679612 3.729748 +1.667858 0.2679612 3.729748 +1.907556 0.2679612 3.729748 +2.181521 0.2679612 3.729748 +2.494678 0.2679612 3.729748 +2.852659 0.2679612 3.729748 +3.261896 0.2679612 3.729748 +3.729748 0.2679612 3.729748 +4.264621 0.2679612 3.729748 +4.876131 0.2679612 3.729748 +5.575266 0.2679612 3.729748 +6.374593 0.2679612 3.729748 +0 0.3158431 3.729748 +0 0.3158431 3.729748 +0 0.3158431 3.729748 +0.002268731 0.3158431 3.729748 +0.07076883 0.3158431 3.729748 +0.1119241 0.3158431 3.729748 +0.1475052 0.3158431 3.729748 +0.1846606 0.3158431 3.729748 +0.2245119 0.3158431 3.729748 +0.2679612 0.3158431 3.729748 +0.3158431 0.3158431 3.729748 +0.3689944 0.3158431 3.729748 +0.4282948 0.3158431 3.729748 +0.494694 0.3158431 3.729748 +0.5692344 0.3158431 3.729748 +0.6530715 0.3158431 3.729748 +0.7474945 0.3158431 3.729748 +0.8539475 0.3158431 3.729748 +0.974052 0.3158431 3.729748 +1.113885 0.3158431 3.729748 +1.27456 0.3158431 3.729748 +1.458117 0.3158431 3.729748 +1.667858 0.3158431 3.729748 +1.907556 0.3158431 3.729748 +2.181521 0.3158431 3.729748 +2.494678 0.3158431 3.729748 +2.852659 0.3158431 3.729748 +3.261896 0.3158431 3.729748 +3.729748 0.3158431 3.729748 +4.264621 0.3158431 3.729748 +4.876131 0.3158431 3.729748 +5.575266 0.3158431 3.729748 +6.374593 0.3158431 3.729748 +0 0.3689944 3.729748 +0 0.3689944 3.729748 +0 0.3689944 3.729748 +0.002268731 0.3689944 3.729748 +0.07076883 0.3689944 3.729748 +0.1119241 0.3689944 3.729748 +0.1475052 0.3689944 3.729748 +0.1846606 0.3689944 3.729748 +0.2245119 0.3689944 3.729748 +0.2679612 0.3689944 3.729748 +0.3158431 0.3689944 3.729748 +0.3689944 0.3689944 3.729748 +0.4282948 0.3689944 3.729748 +0.494694 0.3689944 3.729748 +0.5692344 0.3689944 3.729748 +0.6530715 0.3689944 3.729748 +0.7474945 0.3689944 3.729748 +0.8539475 0.3689944 3.729748 +0.974052 0.3689944 3.729748 +1.113885 0.3689944 3.729748 +1.27456 0.3689944 3.729748 +1.458117 0.3689944 3.729748 +1.667858 0.3689944 3.729748 +1.907556 0.3689944 3.729748 +2.181521 0.3689944 3.729748 +2.494678 0.3689944 3.729748 +2.852659 0.3689944 3.729748 +3.261896 0.3689944 3.729748 +3.729748 0.3689944 3.729748 +4.264621 0.3689944 3.729748 +4.876131 0.3689944 3.729748 +5.575266 0.3689944 3.729748 +6.374593 0.3689944 3.729748 +0 0.4282948 3.729748 +0 0.4282948 3.729748 +0 0.4282948 3.729748 +0.002268731 0.4282948 3.729748 +0.07076883 0.4282948 3.729748 +0.1119241 0.4282948 3.729748 +0.1475052 0.4282948 3.729748 +0.1846606 0.4282948 3.729748 +0.2245119 0.4282948 3.729748 +0.2679612 0.4282948 3.729748 +0.3158431 0.4282948 3.729748 +0.3689944 0.4282948 3.729748 +0.4282948 0.4282948 3.729748 +0.494694 0.4282948 3.729748 +0.5692344 0.4282948 3.729748 +0.6530715 0.4282948 3.729748 +0.7474945 0.4282948 3.729748 +0.8539475 0.4282948 3.729748 +0.974052 0.4282948 3.729748 +1.113885 0.4282948 3.729748 +1.27456 0.4282948 3.729748 +1.458117 0.4282948 3.729748 +1.667858 0.4282948 3.729748 +1.907556 0.4282948 3.729748 +2.181521 0.4282948 3.729748 +2.494678 0.4282948 3.729748 +2.852659 0.4282948 3.729748 +3.261896 0.4282948 3.729748 +3.729748 0.4282948 3.729748 +4.264621 0.4282948 3.729748 +4.876131 0.4282948 3.729748 +5.575266 0.4282948 3.729748 +6.374593 0.4282948 3.729748 +0 0.494694 3.729748 +0 0.494694 3.729748 +0 0.494694 3.729748 +0.002268731 0.494694 3.729748 +0.07076883 0.494694 3.729748 +0.1119241 0.494694 3.729748 +0.1475052 0.494694 3.729748 +0.1846606 0.494694 3.729748 +0.2245119 0.494694 3.729748 +0.2679612 0.494694 3.729748 +0.3158431 0.494694 3.729748 +0.3689944 0.494694 3.729748 +0.4282948 0.494694 3.729748 +0.494694 0.494694 3.729748 +0.5692344 0.494694 3.729748 +0.6530715 0.494694 3.729748 +0.7474945 0.494694 3.729748 +0.8539475 0.494694 3.729748 +0.974052 0.494694 3.729748 +1.113885 0.494694 3.729748 +1.27456 0.494694 3.729748 +1.458117 0.494694 3.729748 +1.667858 0.494694 3.729748 +1.907556 0.494694 3.729748 +2.181521 0.494694 3.729748 +2.494678 0.494694 3.729748 +2.852659 0.494694 3.729748 +3.261896 0.494694 3.729748 +3.729748 0.494694 3.729748 +4.264621 0.494694 3.729748 +4.876131 0.494694 3.729748 +5.575266 0.494694 3.729748 +6.374593 0.494694 3.729748 +0 0.5692344 3.729748 +0 0.5692344 3.729748 +0 0.5692344 3.729748 +0.002268731 0.5692344 3.729748 +0.07076883 0.5692344 3.729748 +0.1119241 0.5692344 3.729748 +0.1475052 0.5692344 3.729748 +0.1846606 0.5692344 3.729748 +0.2245119 0.5692344 3.729748 +0.2679612 0.5692344 3.729748 +0.3158431 0.5692344 3.729748 +0.3689944 0.5692344 3.729748 +0.4282948 0.5692344 3.729748 +0.494694 0.5692344 3.729748 +0.5692344 0.5692344 3.729748 +0.6530715 0.5692344 3.729748 +0.7474945 0.5692344 3.729748 +0.8539475 0.5692344 3.729748 +0.974052 0.5692344 3.729748 +1.113885 0.5692344 3.729748 +1.27456 0.5692344 3.729748 +1.458117 0.5692344 3.729748 +1.667858 0.5692344 3.729748 +1.907556 0.5692344 3.729748 +2.181521 0.5692344 3.729748 +2.494678 0.5692344 3.729748 +2.852659 0.5692344 3.729748 +3.261896 0.5692344 3.729748 +3.729748 0.5692344 3.729748 +4.264621 0.5692344 3.729748 +4.876131 0.5692344 3.729748 +5.575266 0.5692344 3.729748 +6.374593 0.5692344 3.729748 +0 0.6530715 3.729748 +0 0.6530715 3.729748 +0 0.6530715 3.729748 +0.002268731 0.6530715 3.729748 +0.07076883 0.6530715 3.729748 +0.1119241 0.6530715 3.729748 +0.1475052 0.6530715 3.729748 +0.1846606 0.6530715 3.729748 +0.2245119 0.6530715 3.729748 +0.2679612 0.6530715 3.729748 +0.3158431 0.6530715 3.729748 +0.3689944 0.6530715 3.729748 +0.4282948 0.6530715 3.729748 +0.494694 0.6530715 3.729748 +0.5692344 0.6530715 3.729748 +0.6530715 0.6530715 3.729748 +0.7474945 0.6530715 3.729748 +0.8539475 0.6530715 3.729748 +0.974052 0.6530715 3.729748 +1.113885 0.6530715 3.729748 +1.27456 0.6530715 3.729748 +1.458117 0.6530715 3.729748 +1.667858 0.6530715 3.729748 +1.907556 0.6530715 3.729748 +2.181521 0.6530715 3.729748 +2.494678 0.6530715 3.729748 +2.852659 0.6530715 3.729748 +3.261896 0.6530715 3.729748 +3.729748 0.6530715 3.729748 +4.264621 0.6530715 3.729748 +4.876131 0.6530715 3.729748 +5.575266 0.6530715 3.729748 +6.374593 0.6530715 3.729748 +0 0.7474945 3.729748 +0 0.7474945 3.729748 +0 0.7474945 3.729748 +0.002268731 0.7474945 3.729748 +0.07076883 0.7474945 3.729748 +0.1119241 0.7474945 3.729748 +0.1475052 0.7474945 3.729748 +0.1846606 0.7474945 3.729748 +0.2245119 0.7474945 3.729748 +0.2679612 0.7474945 3.729748 +0.3158431 0.7474945 3.729748 +0.3689944 0.7474945 3.729748 +0.4282948 0.7474945 3.729748 +0.494694 0.7474945 3.729748 +0.5692344 0.7474945 3.729748 +0.6530715 0.7474945 3.729748 +0.7474945 0.7474945 3.729748 +0.8539475 0.7474945 3.729748 +0.974052 0.7474945 3.729748 +1.113885 0.7474945 3.729748 +1.27456 0.7474945 3.729748 +1.458117 0.7474945 3.729748 +1.667858 0.7474945 3.729748 +1.907556 0.7474945 3.729748 +2.181521 0.7474945 3.729748 +2.494678 0.7474945 3.729748 +2.852659 0.7474945 3.729748 +3.261896 0.7474945 3.729748 +3.729748 0.7474945 3.729748 +4.264621 0.7474945 3.729748 +4.876131 0.7474945 3.729748 +5.575266 0.7474945 3.729748 +6.374593 0.7474945 3.729748 +0 0.8539475 3.729748 +0 0.8539475 3.729748 +0 0.8539475 3.729748 +0.002268731 0.8539475 3.729748 +0.07076883 0.8539475 3.729748 +0.1119241 0.8539475 3.729748 +0.1475052 0.8539475 3.729748 +0.1846606 0.8539475 3.729748 +0.2245119 0.8539475 3.729748 +0.2679612 0.8539475 3.729748 +0.3158431 0.8539475 3.729748 +0.3689944 0.8539475 3.729748 +0.4282948 0.8539475 3.729748 +0.494694 0.8539475 3.729748 +0.5692344 0.8539475 3.729748 +0.6530715 0.8539475 3.729748 +0.7474945 0.8539475 3.729748 +0.8539475 0.8539475 3.729748 +0.974052 0.8539475 3.729748 +1.113885 0.8539475 3.729748 +1.27456 0.8539475 3.729748 +1.458117 0.8539475 3.729748 +1.667858 0.8539475 3.729748 +1.907556 0.8539475 3.729748 +2.181521 0.8539475 3.729748 +2.494678 0.8539475 3.729748 +2.852659 0.8539475 3.729748 +3.261896 0.8539475 3.729748 +3.729748 0.8539475 3.729748 +4.264621 0.8539475 3.729748 +4.876131 0.8539475 3.729748 +5.575266 0.8539475 3.729748 +6.374593 0.8539475 3.729748 +0 0.974052 3.729748 +0 0.974052 3.729748 +0 0.974052 3.729748 +0.002268731 0.974052 3.729748 +0.07076883 0.974052 3.729748 +0.1119241 0.974052 3.729748 +0.1475052 0.974052 3.729748 +0.1846606 0.974052 3.729748 +0.2245119 0.974052 3.729748 +0.2679612 0.974052 3.729748 +0.3158431 0.974052 3.729748 +0.3689944 0.974052 3.729748 +0.4282948 0.974052 3.729748 +0.494694 0.974052 3.729748 +0.5692344 0.974052 3.729748 +0.6530715 0.974052 3.729748 +0.7474945 0.974052 3.729748 +0.8539475 0.974052 3.729748 +0.974052 0.974052 3.729748 +1.113885 0.974052 3.729748 +1.27456 0.974052 3.729748 +1.458117 0.974052 3.729748 +1.667858 0.974052 3.729748 +1.907556 0.974052 3.729748 +2.181521 0.974052 3.729748 +2.494678 0.974052 3.729748 +2.852659 0.974052 3.729748 +3.261896 0.974052 3.729748 +3.729748 0.974052 3.729748 +4.264621 0.974052 3.729748 +4.876131 0.974052 3.729748 +5.575266 0.974052 3.729748 +6.374593 0.974052 3.729748 +0 1.113885 3.729748 +0 1.113885 3.729748 +0 1.113885 3.729748 +0.002268731 1.113885 3.729748 +0.07076883 1.113885 3.729748 +0.1119241 1.113885 3.729748 +0.1475052 1.113885 3.729748 +0.1846606 1.113885 3.729748 +0.2245119 1.113885 3.729748 +0.2679612 1.113885 3.729748 +0.3158431 1.113885 3.729748 +0.3689944 1.113885 3.729748 +0.4282948 1.113885 3.729748 +0.494694 1.113885 3.729748 +0.5692344 1.113885 3.729748 +0.6530715 1.113885 3.729748 +0.7474945 1.113885 3.729748 +0.8539475 1.113885 3.729748 +0.974052 1.113885 3.729748 +1.113885 1.113885 3.729748 +1.27456 1.113885 3.729748 +1.458117 1.113885 3.729748 +1.667858 1.113885 3.729748 +1.907556 1.113885 3.729748 +2.181521 1.113885 3.729748 +2.494678 1.113885 3.729748 +2.852659 1.113885 3.729748 +3.261896 1.113885 3.729748 +3.729748 1.113885 3.729748 +4.264621 1.113885 3.729748 +4.876131 1.113885 3.729748 +5.575266 1.113885 3.729748 +6.374593 1.113885 3.729748 +0 1.27456 3.729748 +0 1.27456 3.729748 +0 1.27456 3.729748 +0.002268731 1.27456 3.729748 +0.07076883 1.27456 3.729748 +0.1119241 1.27456 3.729748 +0.1475052 1.27456 3.729748 +0.1846606 1.27456 3.729748 +0.2245119 1.27456 3.729748 +0.2679612 1.27456 3.729748 +0.3158431 1.27456 3.729748 +0.3689944 1.27456 3.729748 +0.4282948 1.27456 3.729748 +0.494694 1.27456 3.729748 +0.5692344 1.27456 3.729748 +0.6530715 1.27456 3.729748 +0.7474945 1.27456 3.729748 +0.8539475 1.27456 3.729748 +0.974052 1.27456 3.729748 +1.113885 1.27456 3.729748 +1.27456 1.27456 3.729748 +1.458117 1.27456 3.729748 +1.667858 1.27456 3.729748 +1.907556 1.27456 3.729748 +2.181521 1.27456 3.729748 +2.494678 1.27456 3.729748 +2.852659 1.27456 3.729748 +3.261896 1.27456 3.729748 +3.729748 1.27456 3.729748 +4.264621 1.27456 3.729748 +4.876131 1.27456 3.729748 +5.575266 1.27456 3.729748 +6.374593 1.27456 3.729748 +0 1.458117 3.729748 +0 1.458117 3.729748 +0 1.458117 3.729748 +0.002268731 1.458117 3.729748 +0.07076883 1.458117 3.729748 +0.1119241 1.458117 3.729748 +0.1475052 1.458117 3.729748 +0.1846606 1.458117 3.729748 +0.2245119 1.458117 3.729748 +0.2679612 1.458117 3.729748 +0.3158431 1.458117 3.729748 +0.3689944 1.458117 3.729748 +0.4282948 1.458117 3.729748 +0.494694 1.458117 3.729748 +0.5692344 1.458117 3.729748 +0.6530715 1.458117 3.729748 +0.7474945 1.458117 3.729748 +0.8539475 1.458117 3.729748 +0.974052 1.458117 3.729748 +1.113885 1.458117 3.729748 +1.27456 1.458117 3.729748 +1.458117 1.458117 3.729748 +1.667858 1.458117 3.729748 +1.907556 1.458117 3.729748 +2.181521 1.458117 3.729748 +2.494678 1.458117 3.729748 +2.852659 1.458117 3.729748 +3.261896 1.458117 3.729748 +3.729748 1.458117 3.729748 +4.264621 1.458117 3.729748 +4.876131 1.458117 3.729748 +5.575266 1.458117 3.729748 +6.374593 1.458117 3.729748 +0 1.667858 3.729748 +0 1.667858 3.729748 +0 1.667858 3.729748 +0.002268731 1.667858 3.729748 +0.07076883 1.667858 3.729748 +0.1119241 1.667858 3.729748 +0.1475052 1.667858 3.729748 +0.1846606 1.667858 3.729748 +0.2245119 1.667858 3.729748 +0.2679612 1.667858 3.729748 +0.3158431 1.667858 3.729748 +0.3689944 1.667858 3.729748 +0.4282948 1.667858 3.729748 +0.494694 1.667858 3.729748 +0.5692344 1.667858 3.729748 +0.6530715 1.667858 3.729748 +0.7474945 1.667858 3.729748 +0.8539475 1.667858 3.729748 +0.974052 1.667858 3.729748 +1.113885 1.667858 3.729748 +1.27456 1.667858 3.729748 +1.458117 1.667858 3.729748 +1.667858 1.667858 3.729748 +1.907556 1.667858 3.729748 +2.181521 1.667858 3.729748 +2.494678 1.667858 3.729748 +2.852659 1.667858 3.729748 +3.261896 1.667858 3.729748 +3.729748 1.667858 3.729748 +4.264621 1.667858 3.729748 +4.876131 1.667858 3.729748 +5.575266 1.667858 3.729748 +6.374593 1.667858 3.729748 +0 1.907556 3.729748 +0 1.907556 3.729748 +0 1.907556 3.729748 +0.002268731 1.907556 3.729748 +0.07076883 1.907556 3.729748 +0.1119241 1.907556 3.729748 +0.1475052 1.907556 3.729748 +0.1846606 1.907556 3.729748 +0.2245119 1.907556 3.729748 +0.2679612 1.907556 3.729748 +0.3158431 1.907556 3.729748 +0.3689944 1.907556 3.729748 +0.4282948 1.907556 3.729748 +0.494694 1.907556 3.729748 +0.5692344 1.907556 3.729748 +0.6530715 1.907556 3.729748 +0.7474945 1.907556 3.729748 +0.8539475 1.907556 3.729748 +0.974052 1.907556 3.729748 +1.113885 1.907556 3.729748 +1.27456 1.907556 3.729748 +1.458117 1.907556 3.729748 +1.667858 1.907556 3.729748 +1.907556 1.907556 3.729748 +2.181521 1.907556 3.729748 +2.494678 1.907556 3.729748 +2.852659 1.907556 3.729748 +3.261896 1.907556 3.729748 +3.729748 1.907556 3.729748 +4.264621 1.907556 3.729748 +4.876131 1.907556 3.729748 +5.575266 1.907556 3.729748 +6.374593 1.907556 3.729748 +0 2.181521 3.729748 +0 2.181521 3.729748 +0 2.181521 3.729748 +0.002268731 2.181521 3.729748 +0.07076883 2.181521 3.729748 +0.1119241 2.181521 3.729748 +0.1475052 2.181521 3.729748 +0.1846606 2.181521 3.729748 +0.2245119 2.181521 3.729748 +0.2679612 2.181521 3.729748 +0.3158431 2.181521 3.729748 +0.3689944 2.181521 3.729748 +0.4282948 2.181521 3.729748 +0.494694 2.181521 3.729748 +0.5692344 2.181521 3.729748 +0.6530715 2.181521 3.729748 +0.7474945 2.181521 3.729748 +0.8539475 2.181521 3.729748 +0.974052 2.181521 3.729748 +1.113885 2.181521 3.729748 +1.27456 2.181521 3.729748 +1.458117 2.181521 3.729748 +1.667858 2.181521 3.729748 +1.907556 2.181521 3.729748 +2.181521 2.181521 3.729748 +2.494678 2.181521 3.729748 +2.852659 2.181521 3.729748 +3.261896 2.181521 3.729748 +3.729748 2.181521 3.729748 +4.264621 2.181521 3.729748 +4.876131 2.181521 3.729748 +5.575266 2.181521 3.729748 +6.374593 2.181521 3.729748 +0 2.494678 3.729748 +0 2.494678 3.729748 +0 2.494678 3.729748 +0.002268731 2.494678 3.729748 +0.07076883 2.494678 3.729748 +0.1119241 2.494678 3.729748 +0.1475052 2.494678 3.729748 +0.1846606 2.494678 3.729748 +0.2245119 2.494678 3.729748 +0.2679612 2.494678 3.729748 +0.3158431 2.494678 3.729748 +0.3689944 2.494678 3.729748 +0.4282948 2.494678 3.729748 +0.494694 2.494678 3.729748 +0.5692344 2.494678 3.729748 +0.6530715 2.494678 3.729748 +0.7474945 2.494678 3.729748 +0.8539475 2.494678 3.729748 +0.974052 2.494678 3.729748 +1.113885 2.494678 3.729748 +1.27456 2.494678 3.729748 +1.458117 2.494678 3.729748 +1.667858 2.494678 3.729748 +1.907556 2.494678 3.729748 +2.181521 2.494678 3.729748 +2.494678 2.494678 3.729748 +2.852659 2.494678 3.729748 +3.261896 2.494678 3.729748 +3.729748 2.494678 3.729748 +4.264621 2.494678 3.729748 +4.876131 2.494678 3.729748 +5.575266 2.494678 3.729748 +6.374593 2.494678 3.729748 +0 2.852659 3.729748 +0 2.852659 3.729748 +0 2.852659 3.729748 +0.002268731 2.852659 3.729748 +0.07076883 2.852659 3.729748 +0.1119241 2.852659 3.729748 +0.1475052 2.852659 3.729748 +0.1846606 2.852659 3.729748 +0.2245119 2.852659 3.729748 +0.2679612 2.852659 3.729748 +0.3158431 2.852659 3.729748 +0.3689944 2.852659 3.729748 +0.4282948 2.852659 3.729748 +0.494694 2.852659 3.729748 +0.5692344 2.852659 3.729748 +0.6530715 2.852659 3.729748 +0.7474945 2.852659 3.729748 +0.8539475 2.852659 3.729748 +0.974052 2.852659 3.729748 +1.113885 2.852659 3.729748 +1.27456 2.852659 3.729748 +1.458117 2.852659 3.729748 +1.667858 2.852659 3.729748 +1.907556 2.852659 3.729748 +2.181521 2.852659 3.729748 +2.494678 2.852659 3.729748 +2.852659 2.852659 3.729748 +3.261896 2.852659 3.729748 +3.729748 2.852659 3.729748 +4.264621 2.852659 3.729748 +4.876131 2.852659 3.729748 +5.575266 2.852659 3.729748 +6.374593 2.852659 3.729748 +0 3.261896 3.729748 +0 3.261896 3.729748 +0 3.261896 3.729748 +0.002268731 3.261896 3.729748 +0.07076883 3.261896 3.729748 +0.1119241 3.261896 3.729748 +0.1475052 3.261896 3.729748 +0.1846606 3.261896 3.729748 +0.2245119 3.261896 3.729748 +0.2679612 3.261896 3.729748 +0.3158431 3.261896 3.729748 +0.3689944 3.261896 3.729748 +0.4282948 3.261896 3.729748 +0.494694 3.261896 3.729748 +0.5692344 3.261896 3.729748 +0.6530715 3.261896 3.729748 +0.7474945 3.261896 3.729748 +0.8539475 3.261896 3.729748 +0.974052 3.261896 3.729748 +1.113885 3.261896 3.729748 +1.27456 3.261896 3.729748 +1.458117 3.261896 3.729748 +1.667858 3.261896 3.729748 +1.907556 3.261896 3.729748 +2.181521 3.261896 3.729748 +2.494678 3.261896 3.729748 +2.852659 3.261896 3.729748 +3.261896 3.261896 3.729748 +3.729748 3.261896 3.729748 +4.264621 3.261896 3.729748 +4.876131 3.261896 3.729748 +5.575266 3.261896 3.729748 +6.374593 3.261896 3.729748 +0 3.729748 3.729748 +0 3.729748 3.729748 +0 3.729748 3.729748 +0.002268731 3.729748 3.729748 +0.07076883 3.729748 3.729748 +0.1119241 3.729748 3.729748 +0.1475052 3.729748 3.729748 +0.1846606 3.729748 3.729748 +0.2245119 3.729748 3.729748 +0.2679612 3.729748 3.729748 +0.3158431 3.729748 3.729748 +0.3689944 3.729748 3.729748 +0.4282948 3.729748 3.729748 +0.494694 3.729748 3.729748 +0.5692344 3.729748 3.729748 +0.6530715 3.729748 3.729748 +0.7474945 3.729748 3.729748 +0.8539475 3.729748 3.729748 +0.974052 3.729748 3.729748 +1.113885 3.729748 3.729748 +1.27456 3.729748 3.729748 +1.458117 3.729748 3.729748 +1.667858 3.729748 3.729748 +1.907556 3.729748 3.729748 +2.181521 3.729748 3.729748 +2.494678 3.729748 3.729748 +2.852659 3.729748 3.729748 +3.261896 3.729748 3.729748 +3.729748 3.729748 3.729748 +4.264621 3.729748 3.729748 +4.876131 3.729748 3.729748 +5.575266 3.729748 3.729748 +6.374593 3.729748 3.729748 +0 4.264621 3.729748 +0 4.264621 3.729748 +0 4.264621 3.729748 +0.002268731 4.264621 3.729748 +0.07076883 4.264621 3.729748 +0.1119241 4.264621 3.729748 +0.1475052 4.264621 3.729748 +0.1846606 4.264621 3.729748 +0.2245119 4.264621 3.729748 +0.2679612 4.264621 3.729748 +0.3158431 4.264621 3.729748 +0.3689944 4.264621 3.729748 +0.4282948 4.264621 3.729748 +0.494694 4.264621 3.729748 +0.5692344 4.264621 3.729748 +0.6530715 4.264621 3.729748 +0.7474945 4.264621 3.729748 +0.8539475 4.264621 3.729748 +0.974052 4.264621 3.729748 +1.113885 4.264621 3.729748 +1.27456 4.264621 3.729748 +1.458117 4.264621 3.729748 +1.667858 4.264621 3.729748 +1.907556 4.264621 3.729748 +2.181521 4.264621 3.729748 +2.494678 4.264621 3.729748 +2.852659 4.264621 3.729748 +3.261896 4.264621 3.729748 +3.729748 4.264621 3.729748 +4.264621 4.264621 3.729748 +4.876131 4.264621 3.729748 +5.575266 4.264621 3.729748 +6.374593 4.264621 3.729748 +0 4.876131 3.729748 +0 4.876131 3.729748 +0 4.876131 3.729748 +0.002268731 4.876131 3.729748 +0.07076883 4.876131 3.729748 +0.1119241 4.876131 3.729748 +0.1475052 4.876131 3.729748 +0.1846606 4.876131 3.729748 +0.2245119 4.876131 3.729748 +0.2679612 4.876131 3.729748 +0.3158431 4.876131 3.729748 +0.3689944 4.876131 3.729748 +0.4282948 4.876131 3.729748 +0.494694 4.876131 3.729748 +0.5692344 4.876131 3.729748 +0.6530715 4.876131 3.729748 +0.7474945 4.876131 3.729748 +0.8539475 4.876131 3.729748 +0.974052 4.876131 3.729748 +1.113885 4.876131 3.729748 +1.27456 4.876131 3.729748 +1.458117 4.876131 3.729748 +1.667858 4.876131 3.729748 +1.907556 4.876131 3.729748 +2.181521 4.876131 3.729748 +2.494678 4.876131 3.729748 +2.852659 4.876131 3.729748 +3.261896 4.876131 3.729748 +3.729748 4.876131 3.729748 +4.264621 4.876131 3.729748 +4.876131 4.876131 3.729748 +5.575266 4.876131 3.729748 +6.374593 4.876131 3.729748 +0 5.575266 3.729748 +0 5.575266 3.729748 +0 5.575266 3.729748 +0.002268731 5.575266 3.729748 +0.07076883 5.575266 3.729748 +0.1119241 5.575266 3.729748 +0.1475052 5.575266 3.729748 +0.1846606 5.575266 3.729748 +0.2245119 5.575266 3.729748 +0.2679612 5.575266 3.729748 +0.3158431 5.575266 3.729748 +0.3689944 5.575266 3.729748 +0.4282948 5.575266 3.729748 +0.494694 5.575266 3.729748 +0.5692344 5.575266 3.729748 +0.6530715 5.575266 3.729748 +0.7474945 5.575266 3.729748 +0.8539475 5.575266 3.729748 +0.974052 5.575266 3.729748 +1.113885 5.575266 3.729748 +1.27456 5.575266 3.729748 +1.458117 5.575266 3.729748 +1.667858 5.575266 3.729748 +1.907556 5.575266 3.729748 +2.181521 5.575266 3.729748 +2.494678 5.575266 3.729748 +2.852659 5.575266 3.729748 +3.261896 5.575266 3.729748 +3.729748 5.575266 3.729748 +4.264621 5.575266 3.729748 +4.876131 5.575266 3.729748 +5.575266 5.575266 3.729748 +6.374593 5.575266 3.729748 +0 6.374593 3.729748 +0 6.374593 3.729748 +0 6.374593 3.729748 +0.002268731 6.374593 3.729748 +0.07076883 6.374593 3.729748 +0.1119241 6.374593 3.729748 +0.1475052 6.374593 3.729748 +0.1846606 6.374593 3.729748 +0.2245119 6.374593 3.729748 +0.2679612 6.374593 3.729748 +0.3158431 6.374593 3.729748 +0.3689944 6.374593 3.729748 +0.4282948 6.374593 3.729748 +0.494694 6.374593 3.729748 +0.5692344 6.374593 3.729748 +0.6530715 6.374593 3.729748 +0.7474945 6.374593 3.729748 +0.8539475 6.374593 3.729748 +0.974052 6.374593 3.729748 +1.113885 6.374593 3.729748 +1.27456 6.374593 3.729748 +1.458117 6.374593 3.729748 +1.667858 6.374593 3.729748 +1.907556 6.374593 3.729748 +2.181521 6.374593 3.729748 +2.494678 6.374593 3.729748 +2.852659 6.374593 3.729748 +3.261896 6.374593 3.729748 +3.729748 6.374593 3.729748 +4.264621 6.374593 3.729748 +4.876131 6.374593 3.729748 +5.575266 6.374593 3.729748 +6.374593 6.374593 3.729748 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0.002268731 4.264621 +0 0.002268731 4.264621 +0 0.002268731 4.264621 +0.002268731 0.002268731 4.264621 +0.07076883 0.002268731 4.264621 +0.1119241 0.002268731 4.264621 +0.1475052 0.002268731 4.264621 +0.1846606 0.002268731 4.264621 +0.2245119 0.002268731 4.264621 +0.2679612 0.002268731 4.264621 +0.3158431 0.002268731 4.264621 +0.3689944 0.002268731 4.264621 +0.4282948 0.002268731 4.264621 +0.494694 0.002268731 4.264621 +0.5692344 0.002268731 4.264621 +0.6530715 0.002268731 4.264621 +0.7474945 0.002268731 4.264621 +0.8539475 0.002268731 4.264621 +0.974052 0.002268731 4.264621 +1.113885 0.002268731 4.264621 +1.27456 0.002268731 4.264621 +1.458117 0.002268731 4.264621 +1.667858 0.002268731 4.264621 +1.907556 0.002268731 4.264621 +2.181521 0.002268731 4.264621 +2.494678 0.002268731 4.264621 +2.852659 0.002268731 4.264621 +3.261896 0.002268731 4.264621 +3.729748 0.002268731 4.264621 +4.264621 0.002268731 4.264621 +4.876131 0.002268731 4.264621 +5.575266 0.002268731 4.264621 +6.374593 0.002268731 4.264621 +0 0.07076883 4.264621 +0 0.07076883 4.264621 +0 0.07076883 4.264621 +0.002268731 0.07076883 4.264621 +0.07076883 0.07076883 4.264621 +0.1119241 0.07076883 4.264621 +0.1475052 0.07076883 4.264621 +0.1846606 0.07076883 4.264621 +0.2245119 0.07076883 4.264621 +0.2679612 0.07076883 4.264621 +0.3158431 0.07076883 4.264621 +0.3689944 0.07076883 4.264621 +0.4282948 0.07076883 4.264621 +0.494694 0.07076883 4.264621 +0.5692344 0.07076883 4.264621 +0.6530715 0.07076883 4.264621 +0.7474945 0.07076883 4.264621 +0.8539475 0.07076883 4.264621 +0.974052 0.07076883 4.264621 +1.113885 0.07076883 4.264621 +1.27456 0.07076883 4.264621 +1.458117 0.07076883 4.264621 +1.667858 0.07076883 4.264621 +1.907556 0.07076883 4.264621 +2.181521 0.07076883 4.264621 +2.494678 0.07076883 4.264621 +2.852659 0.07076883 4.264621 +3.261896 0.07076883 4.264621 +3.729748 0.07076883 4.264621 +4.264621 0.07076883 4.264621 +4.876131 0.07076883 4.264621 +5.575266 0.07076883 4.264621 +6.374593 0.07076883 4.264621 +0 0.1119241 4.264621 +0 0.1119241 4.264621 +0 0.1119241 4.264621 +0.002268731 0.1119241 4.264621 +0.07076883 0.1119241 4.264621 +0.1119241 0.1119241 4.264621 +0.1475052 0.1119241 4.264621 +0.1846606 0.1119241 4.264621 +0.2245119 0.1119241 4.264621 +0.2679612 0.1119241 4.264621 +0.3158431 0.1119241 4.264621 +0.3689944 0.1119241 4.264621 +0.4282948 0.1119241 4.264621 +0.494694 0.1119241 4.264621 +0.5692344 0.1119241 4.264621 +0.6530715 0.1119241 4.264621 +0.7474945 0.1119241 4.264621 +0.8539475 0.1119241 4.264621 +0.974052 0.1119241 4.264621 +1.113885 0.1119241 4.264621 +1.27456 0.1119241 4.264621 +1.458117 0.1119241 4.264621 +1.667858 0.1119241 4.264621 +1.907556 0.1119241 4.264621 +2.181521 0.1119241 4.264621 +2.494678 0.1119241 4.264621 +2.852659 0.1119241 4.264621 +3.261896 0.1119241 4.264621 +3.729748 0.1119241 4.264621 +4.264621 0.1119241 4.264621 +4.876131 0.1119241 4.264621 +5.575266 0.1119241 4.264621 +6.374593 0.1119241 4.264621 +0 0.1475052 4.264621 +0 0.1475052 4.264621 +0 0.1475052 4.264621 +0.002268731 0.1475052 4.264621 +0.07076883 0.1475052 4.264621 +0.1119241 0.1475052 4.264621 +0.1475052 0.1475052 4.264621 +0.1846606 0.1475052 4.264621 +0.2245119 0.1475052 4.264621 +0.2679612 0.1475052 4.264621 +0.3158431 0.1475052 4.264621 +0.3689944 0.1475052 4.264621 +0.4282948 0.1475052 4.264621 +0.494694 0.1475052 4.264621 +0.5692344 0.1475052 4.264621 +0.6530715 0.1475052 4.264621 +0.7474945 0.1475052 4.264621 +0.8539475 0.1475052 4.264621 +0.974052 0.1475052 4.264621 +1.113885 0.1475052 4.264621 +1.27456 0.1475052 4.264621 +1.458117 0.1475052 4.264621 +1.667858 0.1475052 4.264621 +1.907556 0.1475052 4.264621 +2.181521 0.1475052 4.264621 +2.494678 0.1475052 4.264621 +2.852659 0.1475052 4.264621 +3.261896 0.1475052 4.264621 +3.729748 0.1475052 4.264621 +4.264621 0.1475052 4.264621 +4.876131 0.1475052 4.264621 +5.575266 0.1475052 4.264621 +6.374593 0.1475052 4.264621 +0 0.1846606 4.264621 +0 0.1846606 4.264621 +0 0.1846606 4.264621 +0.002268731 0.1846606 4.264621 +0.07076883 0.1846606 4.264621 +0.1119241 0.1846606 4.264621 +0.1475052 0.1846606 4.264621 +0.1846606 0.1846606 4.264621 +0.2245119 0.1846606 4.264621 +0.2679612 0.1846606 4.264621 +0.3158431 0.1846606 4.264621 +0.3689944 0.1846606 4.264621 +0.4282948 0.1846606 4.264621 +0.494694 0.1846606 4.264621 +0.5692344 0.1846606 4.264621 +0.6530715 0.1846606 4.264621 +0.7474945 0.1846606 4.264621 +0.8539475 0.1846606 4.264621 +0.974052 0.1846606 4.264621 +1.113885 0.1846606 4.264621 +1.27456 0.1846606 4.264621 +1.458117 0.1846606 4.264621 +1.667858 0.1846606 4.264621 +1.907556 0.1846606 4.264621 +2.181521 0.1846606 4.264621 +2.494678 0.1846606 4.264621 +2.852659 0.1846606 4.264621 +3.261896 0.1846606 4.264621 +3.729748 0.1846606 4.264621 +4.264621 0.1846606 4.264621 +4.876131 0.1846606 4.264621 +5.575266 0.1846606 4.264621 +6.374593 0.1846606 4.264621 +0 0.2245119 4.264621 +0 0.2245119 4.264621 +0 0.2245119 4.264621 +0.002268731 0.2245119 4.264621 +0.07076883 0.2245119 4.264621 +0.1119241 0.2245119 4.264621 +0.1475052 0.2245119 4.264621 +0.1846606 0.2245119 4.264621 +0.2245119 0.2245119 4.264621 +0.2679612 0.2245119 4.264621 +0.3158431 0.2245119 4.264621 +0.3689944 0.2245119 4.264621 +0.4282948 0.2245119 4.264621 +0.494694 0.2245119 4.264621 +0.5692344 0.2245119 4.264621 +0.6530715 0.2245119 4.264621 +0.7474945 0.2245119 4.264621 +0.8539475 0.2245119 4.264621 +0.974052 0.2245119 4.264621 +1.113885 0.2245119 4.264621 +1.27456 0.2245119 4.264621 +1.458117 0.2245119 4.264621 +1.667858 0.2245119 4.264621 +1.907556 0.2245119 4.264621 +2.181521 0.2245119 4.264621 +2.494678 0.2245119 4.264621 +2.852659 0.2245119 4.264621 +3.261896 0.2245119 4.264621 +3.729748 0.2245119 4.264621 +4.264621 0.2245119 4.264621 +4.876131 0.2245119 4.264621 +5.575266 0.2245119 4.264621 +6.374593 0.2245119 4.264621 +0 0.2679612 4.264621 +0 0.2679612 4.264621 +0 0.2679612 4.264621 +0.002268731 0.2679612 4.264621 +0.07076883 0.2679612 4.264621 +0.1119241 0.2679612 4.264621 +0.1475052 0.2679612 4.264621 +0.1846606 0.2679612 4.264621 +0.2245119 0.2679612 4.264621 +0.2679612 0.2679612 4.264621 +0.3158431 0.2679612 4.264621 +0.3689944 0.2679612 4.264621 +0.4282948 0.2679612 4.264621 +0.494694 0.2679612 4.264621 +0.5692344 0.2679612 4.264621 +0.6530715 0.2679612 4.264621 +0.7474945 0.2679612 4.264621 +0.8539475 0.2679612 4.264621 +0.974052 0.2679612 4.264621 +1.113885 0.2679612 4.264621 +1.27456 0.2679612 4.264621 +1.458117 0.2679612 4.264621 +1.667858 0.2679612 4.264621 +1.907556 0.2679612 4.264621 +2.181521 0.2679612 4.264621 +2.494678 0.2679612 4.264621 +2.852659 0.2679612 4.264621 +3.261896 0.2679612 4.264621 +3.729748 0.2679612 4.264621 +4.264621 0.2679612 4.264621 +4.876131 0.2679612 4.264621 +5.575266 0.2679612 4.264621 +6.374593 0.2679612 4.264621 +0 0.3158431 4.264621 +0 0.3158431 4.264621 +0 0.3158431 4.264621 +0.002268731 0.3158431 4.264621 +0.07076883 0.3158431 4.264621 +0.1119241 0.3158431 4.264621 +0.1475052 0.3158431 4.264621 +0.1846606 0.3158431 4.264621 +0.2245119 0.3158431 4.264621 +0.2679612 0.3158431 4.264621 +0.3158431 0.3158431 4.264621 +0.3689944 0.3158431 4.264621 +0.4282948 0.3158431 4.264621 +0.494694 0.3158431 4.264621 +0.5692344 0.3158431 4.264621 +0.6530715 0.3158431 4.264621 +0.7474945 0.3158431 4.264621 +0.8539475 0.3158431 4.264621 +0.974052 0.3158431 4.264621 +1.113885 0.3158431 4.264621 +1.27456 0.3158431 4.264621 +1.458117 0.3158431 4.264621 +1.667858 0.3158431 4.264621 +1.907556 0.3158431 4.264621 +2.181521 0.3158431 4.264621 +2.494678 0.3158431 4.264621 +2.852659 0.3158431 4.264621 +3.261896 0.3158431 4.264621 +3.729748 0.3158431 4.264621 +4.264621 0.3158431 4.264621 +4.876131 0.3158431 4.264621 +5.575266 0.3158431 4.264621 +6.374593 0.3158431 4.264621 +0 0.3689944 4.264621 +0 0.3689944 4.264621 +0 0.3689944 4.264621 +0.002268731 0.3689944 4.264621 +0.07076883 0.3689944 4.264621 +0.1119241 0.3689944 4.264621 +0.1475052 0.3689944 4.264621 +0.1846606 0.3689944 4.264621 +0.2245119 0.3689944 4.264621 +0.2679612 0.3689944 4.264621 +0.3158431 0.3689944 4.264621 +0.3689944 0.3689944 4.264621 +0.4282948 0.3689944 4.264621 +0.494694 0.3689944 4.264621 +0.5692344 0.3689944 4.264621 +0.6530715 0.3689944 4.264621 +0.7474945 0.3689944 4.264621 +0.8539475 0.3689944 4.264621 +0.974052 0.3689944 4.264621 +1.113885 0.3689944 4.264621 +1.27456 0.3689944 4.264621 +1.458117 0.3689944 4.264621 +1.667858 0.3689944 4.264621 +1.907556 0.3689944 4.264621 +2.181521 0.3689944 4.264621 +2.494678 0.3689944 4.264621 +2.852659 0.3689944 4.264621 +3.261896 0.3689944 4.264621 +3.729748 0.3689944 4.264621 +4.264621 0.3689944 4.264621 +4.876131 0.3689944 4.264621 +5.575266 0.3689944 4.264621 +6.374593 0.3689944 4.264621 +0 0.4282948 4.264621 +0 0.4282948 4.264621 +0 0.4282948 4.264621 +0.002268731 0.4282948 4.264621 +0.07076883 0.4282948 4.264621 +0.1119241 0.4282948 4.264621 +0.1475052 0.4282948 4.264621 +0.1846606 0.4282948 4.264621 +0.2245119 0.4282948 4.264621 +0.2679612 0.4282948 4.264621 +0.3158431 0.4282948 4.264621 +0.3689944 0.4282948 4.264621 +0.4282948 0.4282948 4.264621 +0.494694 0.4282948 4.264621 +0.5692344 0.4282948 4.264621 +0.6530715 0.4282948 4.264621 +0.7474945 0.4282948 4.264621 +0.8539475 0.4282948 4.264621 +0.974052 0.4282948 4.264621 +1.113885 0.4282948 4.264621 +1.27456 0.4282948 4.264621 +1.458117 0.4282948 4.264621 +1.667858 0.4282948 4.264621 +1.907556 0.4282948 4.264621 +2.181521 0.4282948 4.264621 +2.494678 0.4282948 4.264621 +2.852659 0.4282948 4.264621 +3.261896 0.4282948 4.264621 +3.729748 0.4282948 4.264621 +4.264621 0.4282948 4.264621 +4.876131 0.4282948 4.264621 +5.575266 0.4282948 4.264621 +6.374593 0.4282948 4.264621 +0 0.494694 4.264621 +0 0.494694 4.264621 +0 0.494694 4.264621 +0.002268731 0.494694 4.264621 +0.07076883 0.494694 4.264621 +0.1119241 0.494694 4.264621 +0.1475052 0.494694 4.264621 +0.1846606 0.494694 4.264621 +0.2245119 0.494694 4.264621 +0.2679612 0.494694 4.264621 +0.3158431 0.494694 4.264621 +0.3689944 0.494694 4.264621 +0.4282948 0.494694 4.264621 +0.494694 0.494694 4.264621 +0.5692344 0.494694 4.264621 +0.6530715 0.494694 4.264621 +0.7474945 0.494694 4.264621 +0.8539475 0.494694 4.264621 +0.974052 0.494694 4.264621 +1.113885 0.494694 4.264621 +1.27456 0.494694 4.264621 +1.458117 0.494694 4.264621 +1.667858 0.494694 4.264621 +1.907556 0.494694 4.264621 +2.181521 0.494694 4.264621 +2.494678 0.494694 4.264621 +2.852659 0.494694 4.264621 +3.261896 0.494694 4.264621 +3.729748 0.494694 4.264621 +4.264621 0.494694 4.264621 +4.876131 0.494694 4.264621 +5.575266 0.494694 4.264621 +6.374593 0.494694 4.264621 +0 0.5692344 4.264621 +0 0.5692344 4.264621 +0 0.5692344 4.264621 +0.002268731 0.5692344 4.264621 +0.07076883 0.5692344 4.264621 +0.1119241 0.5692344 4.264621 +0.1475052 0.5692344 4.264621 +0.1846606 0.5692344 4.264621 +0.2245119 0.5692344 4.264621 +0.2679612 0.5692344 4.264621 +0.3158431 0.5692344 4.264621 +0.3689944 0.5692344 4.264621 +0.4282948 0.5692344 4.264621 +0.494694 0.5692344 4.264621 +0.5692344 0.5692344 4.264621 +0.6530715 0.5692344 4.264621 +0.7474945 0.5692344 4.264621 +0.8539475 0.5692344 4.264621 +0.974052 0.5692344 4.264621 +1.113885 0.5692344 4.264621 +1.27456 0.5692344 4.264621 +1.458117 0.5692344 4.264621 +1.667858 0.5692344 4.264621 +1.907556 0.5692344 4.264621 +2.181521 0.5692344 4.264621 +2.494678 0.5692344 4.264621 +2.852659 0.5692344 4.264621 +3.261896 0.5692344 4.264621 +3.729748 0.5692344 4.264621 +4.264621 0.5692344 4.264621 +4.876131 0.5692344 4.264621 +5.575266 0.5692344 4.264621 +6.374593 0.5692344 4.264621 +0 0.6530715 4.264621 +0 0.6530715 4.264621 +0 0.6530715 4.264621 +0.002268731 0.6530715 4.264621 +0.07076883 0.6530715 4.264621 +0.1119241 0.6530715 4.264621 +0.1475052 0.6530715 4.264621 +0.1846606 0.6530715 4.264621 +0.2245119 0.6530715 4.264621 +0.2679612 0.6530715 4.264621 +0.3158431 0.6530715 4.264621 +0.3689944 0.6530715 4.264621 +0.4282948 0.6530715 4.264621 +0.494694 0.6530715 4.264621 +0.5692344 0.6530715 4.264621 +0.6530715 0.6530715 4.264621 +0.7474945 0.6530715 4.264621 +0.8539475 0.6530715 4.264621 +0.974052 0.6530715 4.264621 +1.113885 0.6530715 4.264621 +1.27456 0.6530715 4.264621 +1.458117 0.6530715 4.264621 +1.667858 0.6530715 4.264621 +1.907556 0.6530715 4.264621 +2.181521 0.6530715 4.264621 +2.494678 0.6530715 4.264621 +2.852659 0.6530715 4.264621 +3.261896 0.6530715 4.264621 +3.729748 0.6530715 4.264621 +4.264621 0.6530715 4.264621 +4.876131 0.6530715 4.264621 +5.575266 0.6530715 4.264621 +6.374593 0.6530715 4.264621 +0 0.7474945 4.264621 +0 0.7474945 4.264621 +0 0.7474945 4.264621 +0.002268731 0.7474945 4.264621 +0.07076883 0.7474945 4.264621 +0.1119241 0.7474945 4.264621 +0.1475052 0.7474945 4.264621 +0.1846606 0.7474945 4.264621 +0.2245119 0.7474945 4.264621 +0.2679612 0.7474945 4.264621 +0.3158431 0.7474945 4.264621 +0.3689944 0.7474945 4.264621 +0.4282948 0.7474945 4.264621 +0.494694 0.7474945 4.264621 +0.5692344 0.7474945 4.264621 +0.6530715 0.7474945 4.264621 +0.7474945 0.7474945 4.264621 +0.8539475 0.7474945 4.264621 +0.974052 0.7474945 4.264621 +1.113885 0.7474945 4.264621 +1.27456 0.7474945 4.264621 +1.458117 0.7474945 4.264621 +1.667858 0.7474945 4.264621 +1.907556 0.7474945 4.264621 +2.181521 0.7474945 4.264621 +2.494678 0.7474945 4.264621 +2.852659 0.7474945 4.264621 +3.261896 0.7474945 4.264621 +3.729748 0.7474945 4.264621 +4.264621 0.7474945 4.264621 +4.876131 0.7474945 4.264621 +5.575266 0.7474945 4.264621 +6.374593 0.7474945 4.264621 +0 0.8539475 4.264621 +0 0.8539475 4.264621 +0 0.8539475 4.264621 +0.002268731 0.8539475 4.264621 +0.07076883 0.8539475 4.264621 +0.1119241 0.8539475 4.264621 +0.1475052 0.8539475 4.264621 +0.1846606 0.8539475 4.264621 +0.2245119 0.8539475 4.264621 +0.2679612 0.8539475 4.264621 +0.3158431 0.8539475 4.264621 +0.3689944 0.8539475 4.264621 +0.4282948 0.8539475 4.264621 +0.494694 0.8539475 4.264621 +0.5692344 0.8539475 4.264621 +0.6530715 0.8539475 4.264621 +0.7474945 0.8539475 4.264621 +0.8539475 0.8539475 4.264621 +0.974052 0.8539475 4.264621 +1.113885 0.8539475 4.264621 +1.27456 0.8539475 4.264621 +1.458117 0.8539475 4.264621 +1.667858 0.8539475 4.264621 +1.907556 0.8539475 4.264621 +2.181521 0.8539475 4.264621 +2.494678 0.8539475 4.264621 +2.852659 0.8539475 4.264621 +3.261896 0.8539475 4.264621 +3.729748 0.8539475 4.264621 +4.264621 0.8539475 4.264621 +4.876131 0.8539475 4.264621 +5.575266 0.8539475 4.264621 +6.374593 0.8539475 4.264621 +0 0.974052 4.264621 +0 0.974052 4.264621 +0 0.974052 4.264621 +0.002268731 0.974052 4.264621 +0.07076883 0.974052 4.264621 +0.1119241 0.974052 4.264621 +0.1475052 0.974052 4.264621 +0.1846606 0.974052 4.264621 +0.2245119 0.974052 4.264621 +0.2679612 0.974052 4.264621 +0.3158431 0.974052 4.264621 +0.3689944 0.974052 4.264621 +0.4282948 0.974052 4.264621 +0.494694 0.974052 4.264621 +0.5692344 0.974052 4.264621 +0.6530715 0.974052 4.264621 +0.7474945 0.974052 4.264621 +0.8539475 0.974052 4.264621 +0.974052 0.974052 4.264621 +1.113885 0.974052 4.264621 +1.27456 0.974052 4.264621 +1.458117 0.974052 4.264621 +1.667858 0.974052 4.264621 +1.907556 0.974052 4.264621 +2.181521 0.974052 4.264621 +2.494678 0.974052 4.264621 +2.852659 0.974052 4.264621 +3.261896 0.974052 4.264621 +3.729748 0.974052 4.264621 +4.264621 0.974052 4.264621 +4.876131 0.974052 4.264621 +5.575266 0.974052 4.264621 +6.374593 0.974052 4.264621 +0 1.113885 4.264621 +0 1.113885 4.264621 +0 1.113885 4.264621 +0.002268731 1.113885 4.264621 +0.07076883 1.113885 4.264621 +0.1119241 1.113885 4.264621 +0.1475052 1.113885 4.264621 +0.1846606 1.113885 4.264621 +0.2245119 1.113885 4.264621 +0.2679612 1.113885 4.264621 +0.3158431 1.113885 4.264621 +0.3689944 1.113885 4.264621 +0.4282948 1.113885 4.264621 +0.494694 1.113885 4.264621 +0.5692344 1.113885 4.264621 +0.6530715 1.113885 4.264621 +0.7474945 1.113885 4.264621 +0.8539475 1.113885 4.264621 +0.974052 1.113885 4.264621 +1.113885 1.113885 4.264621 +1.27456 1.113885 4.264621 +1.458117 1.113885 4.264621 +1.667858 1.113885 4.264621 +1.907556 1.113885 4.264621 +2.181521 1.113885 4.264621 +2.494678 1.113885 4.264621 +2.852659 1.113885 4.264621 +3.261896 1.113885 4.264621 +3.729748 1.113885 4.264621 +4.264621 1.113885 4.264621 +4.876131 1.113885 4.264621 +5.575266 1.113885 4.264621 +6.374593 1.113885 4.264621 +0 1.27456 4.264621 +0 1.27456 4.264621 +0 1.27456 4.264621 +0.002268731 1.27456 4.264621 +0.07076883 1.27456 4.264621 +0.1119241 1.27456 4.264621 +0.1475052 1.27456 4.264621 +0.1846606 1.27456 4.264621 +0.2245119 1.27456 4.264621 +0.2679612 1.27456 4.264621 +0.3158431 1.27456 4.264621 +0.3689944 1.27456 4.264621 +0.4282948 1.27456 4.264621 +0.494694 1.27456 4.264621 +0.5692344 1.27456 4.264621 +0.6530715 1.27456 4.264621 +0.7474945 1.27456 4.264621 +0.8539475 1.27456 4.264621 +0.974052 1.27456 4.264621 +1.113885 1.27456 4.264621 +1.27456 1.27456 4.264621 +1.458117 1.27456 4.264621 +1.667858 1.27456 4.264621 +1.907556 1.27456 4.264621 +2.181521 1.27456 4.264621 +2.494678 1.27456 4.264621 +2.852659 1.27456 4.264621 +3.261896 1.27456 4.264621 +3.729748 1.27456 4.264621 +4.264621 1.27456 4.264621 +4.876131 1.27456 4.264621 +5.575266 1.27456 4.264621 +6.374593 1.27456 4.264621 +0 1.458117 4.264621 +0 1.458117 4.264621 +0 1.458117 4.264621 +0.002268731 1.458117 4.264621 +0.07076883 1.458117 4.264621 +0.1119241 1.458117 4.264621 +0.1475052 1.458117 4.264621 +0.1846606 1.458117 4.264621 +0.2245119 1.458117 4.264621 +0.2679612 1.458117 4.264621 +0.3158431 1.458117 4.264621 +0.3689944 1.458117 4.264621 +0.4282948 1.458117 4.264621 +0.494694 1.458117 4.264621 +0.5692344 1.458117 4.264621 +0.6530715 1.458117 4.264621 +0.7474945 1.458117 4.264621 +0.8539475 1.458117 4.264621 +0.974052 1.458117 4.264621 +1.113885 1.458117 4.264621 +1.27456 1.458117 4.264621 +1.458117 1.458117 4.264621 +1.667858 1.458117 4.264621 +1.907556 1.458117 4.264621 +2.181521 1.458117 4.264621 +2.494678 1.458117 4.264621 +2.852659 1.458117 4.264621 +3.261896 1.458117 4.264621 +3.729748 1.458117 4.264621 +4.264621 1.458117 4.264621 +4.876131 1.458117 4.264621 +5.575266 1.458117 4.264621 +6.374593 1.458117 4.264621 +0 1.667858 4.264621 +0 1.667858 4.264621 +0 1.667858 4.264621 +0.002268731 1.667858 4.264621 +0.07076883 1.667858 4.264621 +0.1119241 1.667858 4.264621 +0.1475052 1.667858 4.264621 +0.1846606 1.667858 4.264621 +0.2245119 1.667858 4.264621 +0.2679612 1.667858 4.264621 +0.3158431 1.667858 4.264621 +0.3689944 1.667858 4.264621 +0.4282948 1.667858 4.264621 +0.494694 1.667858 4.264621 +0.5692344 1.667858 4.264621 +0.6530715 1.667858 4.264621 +0.7474945 1.667858 4.264621 +0.8539475 1.667858 4.264621 +0.974052 1.667858 4.264621 +1.113885 1.667858 4.264621 +1.27456 1.667858 4.264621 +1.458117 1.667858 4.264621 +1.667858 1.667858 4.264621 +1.907556 1.667858 4.264621 +2.181521 1.667858 4.264621 +2.494678 1.667858 4.264621 +2.852659 1.667858 4.264621 +3.261896 1.667858 4.264621 +3.729748 1.667858 4.264621 +4.264621 1.667858 4.264621 +4.876131 1.667858 4.264621 +5.575266 1.667858 4.264621 +6.374593 1.667858 4.264621 +0 1.907556 4.264621 +0 1.907556 4.264621 +0 1.907556 4.264621 +0.002268731 1.907556 4.264621 +0.07076883 1.907556 4.264621 +0.1119241 1.907556 4.264621 +0.1475052 1.907556 4.264621 +0.1846606 1.907556 4.264621 +0.2245119 1.907556 4.264621 +0.2679612 1.907556 4.264621 +0.3158431 1.907556 4.264621 +0.3689944 1.907556 4.264621 +0.4282948 1.907556 4.264621 +0.494694 1.907556 4.264621 +0.5692344 1.907556 4.264621 +0.6530715 1.907556 4.264621 +0.7474945 1.907556 4.264621 +0.8539475 1.907556 4.264621 +0.974052 1.907556 4.264621 +1.113885 1.907556 4.264621 +1.27456 1.907556 4.264621 +1.458117 1.907556 4.264621 +1.667858 1.907556 4.264621 +1.907556 1.907556 4.264621 +2.181521 1.907556 4.264621 +2.494678 1.907556 4.264621 +2.852659 1.907556 4.264621 +3.261896 1.907556 4.264621 +3.729748 1.907556 4.264621 +4.264621 1.907556 4.264621 +4.876131 1.907556 4.264621 +5.575266 1.907556 4.264621 +6.374593 1.907556 4.264621 +0 2.181521 4.264621 +0 2.181521 4.264621 +0 2.181521 4.264621 +0.002268731 2.181521 4.264621 +0.07076883 2.181521 4.264621 +0.1119241 2.181521 4.264621 +0.1475052 2.181521 4.264621 +0.1846606 2.181521 4.264621 +0.2245119 2.181521 4.264621 +0.2679612 2.181521 4.264621 +0.3158431 2.181521 4.264621 +0.3689944 2.181521 4.264621 +0.4282948 2.181521 4.264621 +0.494694 2.181521 4.264621 +0.5692344 2.181521 4.264621 +0.6530715 2.181521 4.264621 +0.7474945 2.181521 4.264621 +0.8539475 2.181521 4.264621 +0.974052 2.181521 4.264621 +1.113885 2.181521 4.264621 +1.27456 2.181521 4.264621 +1.458117 2.181521 4.264621 +1.667858 2.181521 4.264621 +1.907556 2.181521 4.264621 +2.181521 2.181521 4.264621 +2.494678 2.181521 4.264621 +2.852659 2.181521 4.264621 +3.261896 2.181521 4.264621 +3.729748 2.181521 4.264621 +4.264621 2.181521 4.264621 +4.876131 2.181521 4.264621 +5.575266 2.181521 4.264621 +6.374593 2.181521 4.264621 +0 2.494678 4.264621 +0 2.494678 4.264621 +0 2.494678 4.264621 +0.002268731 2.494678 4.264621 +0.07076883 2.494678 4.264621 +0.1119241 2.494678 4.264621 +0.1475052 2.494678 4.264621 +0.1846606 2.494678 4.264621 +0.2245119 2.494678 4.264621 +0.2679612 2.494678 4.264621 +0.3158431 2.494678 4.264621 +0.3689944 2.494678 4.264621 +0.4282948 2.494678 4.264621 +0.494694 2.494678 4.264621 +0.5692344 2.494678 4.264621 +0.6530715 2.494678 4.264621 +0.7474945 2.494678 4.264621 +0.8539475 2.494678 4.264621 +0.974052 2.494678 4.264621 +1.113885 2.494678 4.264621 +1.27456 2.494678 4.264621 +1.458117 2.494678 4.264621 +1.667858 2.494678 4.264621 +1.907556 2.494678 4.264621 +2.181521 2.494678 4.264621 +2.494678 2.494678 4.264621 +2.852659 2.494678 4.264621 +3.261896 2.494678 4.264621 +3.729748 2.494678 4.264621 +4.264621 2.494678 4.264621 +4.876131 2.494678 4.264621 +5.575266 2.494678 4.264621 +6.374593 2.494678 4.264621 +0 2.852659 4.264621 +0 2.852659 4.264621 +0 2.852659 4.264621 +0.002268731 2.852659 4.264621 +0.07076883 2.852659 4.264621 +0.1119241 2.852659 4.264621 +0.1475052 2.852659 4.264621 +0.1846606 2.852659 4.264621 +0.2245119 2.852659 4.264621 +0.2679612 2.852659 4.264621 +0.3158431 2.852659 4.264621 +0.3689944 2.852659 4.264621 +0.4282948 2.852659 4.264621 +0.494694 2.852659 4.264621 +0.5692344 2.852659 4.264621 +0.6530715 2.852659 4.264621 +0.7474945 2.852659 4.264621 +0.8539475 2.852659 4.264621 +0.974052 2.852659 4.264621 +1.113885 2.852659 4.264621 +1.27456 2.852659 4.264621 +1.458117 2.852659 4.264621 +1.667858 2.852659 4.264621 +1.907556 2.852659 4.264621 +2.181521 2.852659 4.264621 +2.494678 2.852659 4.264621 +2.852659 2.852659 4.264621 +3.261896 2.852659 4.264621 +3.729748 2.852659 4.264621 +4.264621 2.852659 4.264621 +4.876131 2.852659 4.264621 +5.575266 2.852659 4.264621 +6.374593 2.852659 4.264621 +0 3.261896 4.264621 +0 3.261896 4.264621 +0 3.261896 4.264621 +0.002268731 3.261896 4.264621 +0.07076883 3.261896 4.264621 +0.1119241 3.261896 4.264621 +0.1475052 3.261896 4.264621 +0.1846606 3.261896 4.264621 +0.2245119 3.261896 4.264621 +0.2679612 3.261896 4.264621 +0.3158431 3.261896 4.264621 +0.3689944 3.261896 4.264621 +0.4282948 3.261896 4.264621 +0.494694 3.261896 4.264621 +0.5692344 3.261896 4.264621 +0.6530715 3.261896 4.264621 +0.7474945 3.261896 4.264621 +0.8539475 3.261896 4.264621 +0.974052 3.261896 4.264621 +1.113885 3.261896 4.264621 +1.27456 3.261896 4.264621 +1.458117 3.261896 4.264621 +1.667858 3.261896 4.264621 +1.907556 3.261896 4.264621 +2.181521 3.261896 4.264621 +2.494678 3.261896 4.264621 +2.852659 3.261896 4.264621 +3.261896 3.261896 4.264621 +3.729748 3.261896 4.264621 +4.264621 3.261896 4.264621 +4.876131 3.261896 4.264621 +5.575266 3.261896 4.264621 +6.374593 3.261896 4.264621 +0 3.729748 4.264621 +0 3.729748 4.264621 +0 3.729748 4.264621 +0.002268731 3.729748 4.264621 +0.07076883 3.729748 4.264621 +0.1119241 3.729748 4.264621 +0.1475052 3.729748 4.264621 +0.1846606 3.729748 4.264621 +0.2245119 3.729748 4.264621 +0.2679612 3.729748 4.264621 +0.3158431 3.729748 4.264621 +0.3689944 3.729748 4.264621 +0.4282948 3.729748 4.264621 +0.494694 3.729748 4.264621 +0.5692344 3.729748 4.264621 +0.6530715 3.729748 4.264621 +0.7474945 3.729748 4.264621 +0.8539475 3.729748 4.264621 +0.974052 3.729748 4.264621 +1.113885 3.729748 4.264621 +1.27456 3.729748 4.264621 +1.458117 3.729748 4.264621 +1.667858 3.729748 4.264621 +1.907556 3.729748 4.264621 +2.181521 3.729748 4.264621 +2.494678 3.729748 4.264621 +2.852659 3.729748 4.264621 +3.261896 3.729748 4.264621 +3.729748 3.729748 4.264621 +4.264621 3.729748 4.264621 +4.876131 3.729748 4.264621 +5.575266 3.729748 4.264621 +6.374593 3.729748 4.264621 +0 4.264621 4.264621 +0 4.264621 4.264621 +0 4.264621 4.264621 +0.002268731 4.264621 4.264621 +0.07076883 4.264621 4.264621 +0.1119241 4.264621 4.264621 +0.1475052 4.264621 4.264621 +0.1846606 4.264621 4.264621 +0.2245119 4.264621 4.264621 +0.2679612 4.264621 4.264621 +0.3158431 4.264621 4.264621 +0.3689944 4.264621 4.264621 +0.4282948 4.264621 4.264621 +0.494694 4.264621 4.264621 +0.5692344 4.264621 4.264621 +0.6530715 4.264621 4.264621 +0.7474945 4.264621 4.264621 +0.8539475 4.264621 4.264621 +0.974052 4.264621 4.264621 +1.113885 4.264621 4.264621 +1.27456 4.264621 4.264621 +1.458117 4.264621 4.264621 +1.667858 4.264621 4.264621 +1.907556 4.264621 4.264621 +2.181521 4.264621 4.264621 +2.494678 4.264621 4.264621 +2.852659 4.264621 4.264621 +3.261896 4.264621 4.264621 +3.729748 4.264621 4.264621 +4.264621 4.264621 4.264621 +4.876131 4.264621 4.264621 +5.575266 4.264621 4.264621 +6.374593 4.264621 4.264621 +0 4.876131 4.264621 +0 4.876131 4.264621 +0 4.876131 4.264621 +0.002268731 4.876131 4.264621 +0.07076883 4.876131 4.264621 +0.1119241 4.876131 4.264621 +0.1475052 4.876131 4.264621 +0.1846606 4.876131 4.264621 +0.2245119 4.876131 4.264621 +0.2679612 4.876131 4.264621 +0.3158431 4.876131 4.264621 +0.3689944 4.876131 4.264621 +0.4282948 4.876131 4.264621 +0.494694 4.876131 4.264621 +0.5692344 4.876131 4.264621 +0.6530715 4.876131 4.264621 +0.7474945 4.876131 4.264621 +0.8539475 4.876131 4.264621 +0.974052 4.876131 4.264621 +1.113885 4.876131 4.264621 +1.27456 4.876131 4.264621 +1.458117 4.876131 4.264621 +1.667858 4.876131 4.264621 +1.907556 4.876131 4.264621 +2.181521 4.876131 4.264621 +2.494678 4.876131 4.264621 +2.852659 4.876131 4.264621 +3.261896 4.876131 4.264621 +3.729748 4.876131 4.264621 +4.264621 4.876131 4.264621 +4.876131 4.876131 4.264621 +5.575266 4.876131 4.264621 +6.374593 4.876131 4.264621 +0 5.575266 4.264621 +0 5.575266 4.264621 +0 5.575266 4.264621 +0.002268731 5.575266 4.264621 +0.07076883 5.575266 4.264621 +0.1119241 5.575266 4.264621 +0.1475052 5.575266 4.264621 +0.1846606 5.575266 4.264621 +0.2245119 5.575266 4.264621 +0.2679612 5.575266 4.264621 +0.3158431 5.575266 4.264621 +0.3689944 5.575266 4.264621 +0.4282948 5.575266 4.264621 +0.494694 5.575266 4.264621 +0.5692344 5.575266 4.264621 +0.6530715 5.575266 4.264621 +0.7474945 5.575266 4.264621 +0.8539475 5.575266 4.264621 +0.974052 5.575266 4.264621 +1.113885 5.575266 4.264621 +1.27456 5.575266 4.264621 +1.458117 5.575266 4.264621 +1.667858 5.575266 4.264621 +1.907556 5.575266 4.264621 +2.181521 5.575266 4.264621 +2.494678 5.575266 4.264621 +2.852659 5.575266 4.264621 +3.261896 5.575266 4.264621 +3.729748 5.575266 4.264621 +4.264621 5.575266 4.264621 +4.876131 5.575266 4.264621 +5.575266 5.575266 4.264621 +6.374593 5.575266 4.264621 +0 6.374593 4.264621 +0 6.374593 4.264621 +0 6.374593 4.264621 +0.002268731 6.374593 4.264621 +0.07076883 6.374593 4.264621 +0.1119241 6.374593 4.264621 +0.1475052 6.374593 4.264621 +0.1846606 6.374593 4.264621 +0.2245119 6.374593 4.264621 +0.2679612 6.374593 4.264621 +0.3158431 6.374593 4.264621 +0.3689944 6.374593 4.264621 +0.4282948 6.374593 4.264621 +0.494694 6.374593 4.264621 +0.5692344 6.374593 4.264621 +0.6530715 6.374593 4.264621 +0.7474945 6.374593 4.264621 +0.8539475 6.374593 4.264621 +0.974052 6.374593 4.264621 +1.113885 6.374593 4.264621 +1.27456 6.374593 4.264621 +1.458117 6.374593 4.264621 +1.667858 6.374593 4.264621 +1.907556 6.374593 4.264621 +2.181521 6.374593 4.264621 +2.494678 6.374593 4.264621 +2.852659 6.374593 4.264621 +3.261896 6.374593 4.264621 +3.729748 6.374593 4.264621 +4.264621 6.374593 4.264621 +4.876131 6.374593 4.264621 +5.575266 6.374593 4.264621 +6.374593 6.374593 4.264621 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0.002268731 4.876131 +0 0.002268731 4.876131 +0 0.002268731 4.876131 +0.002268731 0.002268731 4.876131 +0.07076883 0.002268731 4.876131 +0.1119241 0.002268731 4.876131 +0.1475052 0.002268731 4.876131 +0.1846606 0.002268731 4.876131 +0.2245119 0.002268731 4.876131 +0.2679612 0.002268731 4.876131 +0.3158431 0.002268731 4.876131 +0.3689944 0.002268731 4.876131 +0.4282948 0.002268731 4.876131 +0.494694 0.002268731 4.876131 +0.5692344 0.002268731 4.876131 +0.6530715 0.002268731 4.876131 +0.7474945 0.002268731 4.876131 +0.8539475 0.002268731 4.876131 +0.974052 0.002268731 4.876131 +1.113885 0.002268731 4.876131 +1.27456 0.002268731 4.876131 +1.458117 0.002268731 4.876131 +1.667858 0.002268731 4.876131 +1.907556 0.002268731 4.876131 +2.181521 0.002268731 4.876131 +2.494678 0.002268731 4.876131 +2.852659 0.002268731 4.876131 +3.261896 0.002268731 4.876131 +3.729748 0.002268731 4.876131 +4.264621 0.002268731 4.876131 +4.876131 0.002268731 4.876131 +5.575266 0.002268731 4.876131 +6.374593 0.002268731 4.876131 +0 0.07076883 4.876131 +0 0.07076883 4.876131 +0 0.07076883 4.876131 +0.002268731 0.07076883 4.876131 +0.07076883 0.07076883 4.876131 +0.1119241 0.07076883 4.876131 +0.1475052 0.07076883 4.876131 +0.1846606 0.07076883 4.876131 +0.2245119 0.07076883 4.876131 +0.2679612 0.07076883 4.876131 +0.3158431 0.07076883 4.876131 +0.3689944 0.07076883 4.876131 +0.4282948 0.07076883 4.876131 +0.494694 0.07076883 4.876131 +0.5692344 0.07076883 4.876131 +0.6530715 0.07076883 4.876131 +0.7474945 0.07076883 4.876131 +0.8539475 0.07076883 4.876131 +0.974052 0.07076883 4.876131 +1.113885 0.07076883 4.876131 +1.27456 0.07076883 4.876131 +1.458117 0.07076883 4.876131 +1.667858 0.07076883 4.876131 +1.907556 0.07076883 4.876131 +2.181521 0.07076883 4.876131 +2.494678 0.07076883 4.876131 +2.852659 0.07076883 4.876131 +3.261896 0.07076883 4.876131 +3.729748 0.07076883 4.876131 +4.264621 0.07076883 4.876131 +4.876131 0.07076883 4.876131 +5.575266 0.07076883 4.876131 +6.374593 0.07076883 4.876131 +0 0.1119241 4.876131 +0 0.1119241 4.876131 +0 0.1119241 4.876131 +0.002268731 0.1119241 4.876131 +0.07076883 0.1119241 4.876131 +0.1119241 0.1119241 4.876131 +0.1475052 0.1119241 4.876131 +0.1846606 0.1119241 4.876131 +0.2245119 0.1119241 4.876131 +0.2679612 0.1119241 4.876131 +0.3158431 0.1119241 4.876131 +0.3689944 0.1119241 4.876131 +0.4282948 0.1119241 4.876131 +0.494694 0.1119241 4.876131 +0.5692344 0.1119241 4.876131 +0.6530715 0.1119241 4.876131 +0.7474945 0.1119241 4.876131 +0.8539475 0.1119241 4.876131 +0.974052 0.1119241 4.876131 +1.113885 0.1119241 4.876131 +1.27456 0.1119241 4.876131 +1.458117 0.1119241 4.876131 +1.667858 0.1119241 4.876131 +1.907556 0.1119241 4.876131 +2.181521 0.1119241 4.876131 +2.494678 0.1119241 4.876131 +2.852659 0.1119241 4.876131 +3.261896 0.1119241 4.876131 +3.729748 0.1119241 4.876131 +4.264621 0.1119241 4.876131 +4.876131 0.1119241 4.876131 +5.575266 0.1119241 4.876131 +6.374593 0.1119241 4.876131 +0 0.1475052 4.876131 +0 0.1475052 4.876131 +0 0.1475052 4.876131 +0.002268731 0.1475052 4.876131 +0.07076883 0.1475052 4.876131 +0.1119241 0.1475052 4.876131 +0.1475052 0.1475052 4.876131 +0.1846606 0.1475052 4.876131 +0.2245119 0.1475052 4.876131 +0.2679612 0.1475052 4.876131 +0.3158431 0.1475052 4.876131 +0.3689944 0.1475052 4.876131 +0.4282948 0.1475052 4.876131 +0.494694 0.1475052 4.876131 +0.5692344 0.1475052 4.876131 +0.6530715 0.1475052 4.876131 +0.7474945 0.1475052 4.876131 +0.8539475 0.1475052 4.876131 +0.974052 0.1475052 4.876131 +1.113885 0.1475052 4.876131 +1.27456 0.1475052 4.876131 +1.458117 0.1475052 4.876131 +1.667858 0.1475052 4.876131 +1.907556 0.1475052 4.876131 +2.181521 0.1475052 4.876131 +2.494678 0.1475052 4.876131 +2.852659 0.1475052 4.876131 +3.261896 0.1475052 4.876131 +3.729748 0.1475052 4.876131 +4.264621 0.1475052 4.876131 +4.876131 0.1475052 4.876131 +5.575266 0.1475052 4.876131 +6.374593 0.1475052 4.876131 +0 0.1846606 4.876131 +0 0.1846606 4.876131 +0 0.1846606 4.876131 +0.002268731 0.1846606 4.876131 +0.07076883 0.1846606 4.876131 +0.1119241 0.1846606 4.876131 +0.1475052 0.1846606 4.876131 +0.1846606 0.1846606 4.876131 +0.2245119 0.1846606 4.876131 +0.2679612 0.1846606 4.876131 +0.3158431 0.1846606 4.876131 +0.3689944 0.1846606 4.876131 +0.4282948 0.1846606 4.876131 +0.494694 0.1846606 4.876131 +0.5692344 0.1846606 4.876131 +0.6530715 0.1846606 4.876131 +0.7474945 0.1846606 4.876131 +0.8539475 0.1846606 4.876131 +0.974052 0.1846606 4.876131 +1.113885 0.1846606 4.876131 +1.27456 0.1846606 4.876131 +1.458117 0.1846606 4.876131 +1.667858 0.1846606 4.876131 +1.907556 0.1846606 4.876131 +2.181521 0.1846606 4.876131 +2.494678 0.1846606 4.876131 +2.852659 0.1846606 4.876131 +3.261896 0.1846606 4.876131 +3.729748 0.1846606 4.876131 +4.264621 0.1846606 4.876131 +4.876131 0.1846606 4.876131 +5.575266 0.1846606 4.876131 +6.374593 0.1846606 4.876131 +0 0.2245119 4.876131 +0 0.2245119 4.876131 +0 0.2245119 4.876131 +0.002268731 0.2245119 4.876131 +0.07076883 0.2245119 4.876131 +0.1119241 0.2245119 4.876131 +0.1475052 0.2245119 4.876131 +0.1846606 0.2245119 4.876131 +0.2245119 0.2245119 4.876131 +0.2679612 0.2245119 4.876131 +0.3158431 0.2245119 4.876131 +0.3689944 0.2245119 4.876131 +0.4282948 0.2245119 4.876131 +0.494694 0.2245119 4.876131 +0.5692344 0.2245119 4.876131 +0.6530715 0.2245119 4.876131 +0.7474945 0.2245119 4.876131 +0.8539475 0.2245119 4.876131 +0.974052 0.2245119 4.876131 +1.113885 0.2245119 4.876131 +1.27456 0.2245119 4.876131 +1.458117 0.2245119 4.876131 +1.667858 0.2245119 4.876131 +1.907556 0.2245119 4.876131 +2.181521 0.2245119 4.876131 +2.494678 0.2245119 4.876131 +2.852659 0.2245119 4.876131 +3.261896 0.2245119 4.876131 +3.729748 0.2245119 4.876131 +4.264621 0.2245119 4.876131 +4.876131 0.2245119 4.876131 +5.575266 0.2245119 4.876131 +6.374593 0.2245119 4.876131 +0 0.2679612 4.876131 +0 0.2679612 4.876131 +0 0.2679612 4.876131 +0.002268731 0.2679612 4.876131 +0.07076883 0.2679612 4.876131 +0.1119241 0.2679612 4.876131 +0.1475052 0.2679612 4.876131 +0.1846606 0.2679612 4.876131 +0.2245119 0.2679612 4.876131 +0.2679612 0.2679612 4.876131 +0.3158431 0.2679612 4.876131 +0.3689944 0.2679612 4.876131 +0.4282948 0.2679612 4.876131 +0.494694 0.2679612 4.876131 +0.5692344 0.2679612 4.876131 +0.6530715 0.2679612 4.876131 +0.7474945 0.2679612 4.876131 +0.8539475 0.2679612 4.876131 +0.974052 0.2679612 4.876131 +1.113885 0.2679612 4.876131 +1.27456 0.2679612 4.876131 +1.458117 0.2679612 4.876131 +1.667858 0.2679612 4.876131 +1.907556 0.2679612 4.876131 +2.181521 0.2679612 4.876131 +2.494678 0.2679612 4.876131 +2.852659 0.2679612 4.876131 +3.261896 0.2679612 4.876131 +3.729748 0.2679612 4.876131 +4.264621 0.2679612 4.876131 +4.876131 0.2679612 4.876131 +5.575266 0.2679612 4.876131 +6.374593 0.2679612 4.876131 +0 0.3158431 4.876131 +0 0.3158431 4.876131 +0 0.3158431 4.876131 +0.002268731 0.3158431 4.876131 +0.07076883 0.3158431 4.876131 +0.1119241 0.3158431 4.876131 +0.1475052 0.3158431 4.876131 +0.1846606 0.3158431 4.876131 +0.2245119 0.3158431 4.876131 +0.2679612 0.3158431 4.876131 +0.3158431 0.3158431 4.876131 +0.3689944 0.3158431 4.876131 +0.4282948 0.3158431 4.876131 +0.494694 0.3158431 4.876131 +0.5692344 0.3158431 4.876131 +0.6530715 0.3158431 4.876131 +0.7474945 0.3158431 4.876131 +0.8539475 0.3158431 4.876131 +0.974052 0.3158431 4.876131 +1.113885 0.3158431 4.876131 +1.27456 0.3158431 4.876131 +1.458117 0.3158431 4.876131 +1.667858 0.3158431 4.876131 +1.907556 0.3158431 4.876131 +2.181521 0.3158431 4.876131 +2.494678 0.3158431 4.876131 +2.852659 0.3158431 4.876131 +3.261896 0.3158431 4.876131 +3.729748 0.3158431 4.876131 +4.264621 0.3158431 4.876131 +4.876131 0.3158431 4.876131 +5.575266 0.3158431 4.876131 +6.374593 0.3158431 4.876131 +0 0.3689944 4.876131 +0 0.3689944 4.876131 +0 0.3689944 4.876131 +0.002268731 0.3689944 4.876131 +0.07076883 0.3689944 4.876131 +0.1119241 0.3689944 4.876131 +0.1475052 0.3689944 4.876131 +0.1846606 0.3689944 4.876131 +0.2245119 0.3689944 4.876131 +0.2679612 0.3689944 4.876131 +0.3158431 0.3689944 4.876131 +0.3689944 0.3689944 4.876131 +0.4282948 0.3689944 4.876131 +0.494694 0.3689944 4.876131 +0.5692344 0.3689944 4.876131 +0.6530715 0.3689944 4.876131 +0.7474945 0.3689944 4.876131 +0.8539475 0.3689944 4.876131 +0.974052 0.3689944 4.876131 +1.113885 0.3689944 4.876131 +1.27456 0.3689944 4.876131 +1.458117 0.3689944 4.876131 +1.667858 0.3689944 4.876131 +1.907556 0.3689944 4.876131 +2.181521 0.3689944 4.876131 +2.494678 0.3689944 4.876131 +2.852659 0.3689944 4.876131 +3.261896 0.3689944 4.876131 +3.729748 0.3689944 4.876131 +4.264621 0.3689944 4.876131 +4.876131 0.3689944 4.876131 +5.575266 0.3689944 4.876131 +6.374593 0.3689944 4.876131 +0 0.4282948 4.876131 +0 0.4282948 4.876131 +0 0.4282948 4.876131 +0.002268731 0.4282948 4.876131 +0.07076883 0.4282948 4.876131 +0.1119241 0.4282948 4.876131 +0.1475052 0.4282948 4.876131 +0.1846606 0.4282948 4.876131 +0.2245119 0.4282948 4.876131 +0.2679612 0.4282948 4.876131 +0.3158431 0.4282948 4.876131 +0.3689944 0.4282948 4.876131 +0.4282948 0.4282948 4.876131 +0.494694 0.4282948 4.876131 +0.5692344 0.4282948 4.876131 +0.6530715 0.4282948 4.876131 +0.7474945 0.4282948 4.876131 +0.8539475 0.4282948 4.876131 +0.974052 0.4282948 4.876131 +1.113885 0.4282948 4.876131 +1.27456 0.4282948 4.876131 +1.458117 0.4282948 4.876131 +1.667858 0.4282948 4.876131 +1.907556 0.4282948 4.876131 +2.181521 0.4282948 4.876131 +2.494678 0.4282948 4.876131 +2.852659 0.4282948 4.876131 +3.261896 0.4282948 4.876131 +3.729748 0.4282948 4.876131 +4.264621 0.4282948 4.876131 +4.876131 0.4282948 4.876131 +5.575266 0.4282948 4.876131 +6.374593 0.4282948 4.876131 +0 0.494694 4.876131 +0 0.494694 4.876131 +0 0.494694 4.876131 +0.002268731 0.494694 4.876131 +0.07076883 0.494694 4.876131 +0.1119241 0.494694 4.876131 +0.1475052 0.494694 4.876131 +0.1846606 0.494694 4.876131 +0.2245119 0.494694 4.876131 +0.2679612 0.494694 4.876131 +0.3158431 0.494694 4.876131 +0.3689944 0.494694 4.876131 +0.4282948 0.494694 4.876131 +0.494694 0.494694 4.876131 +0.5692344 0.494694 4.876131 +0.6530715 0.494694 4.876131 +0.7474945 0.494694 4.876131 +0.8539475 0.494694 4.876131 +0.974052 0.494694 4.876131 +1.113885 0.494694 4.876131 +1.27456 0.494694 4.876131 +1.458117 0.494694 4.876131 +1.667858 0.494694 4.876131 +1.907556 0.494694 4.876131 +2.181521 0.494694 4.876131 +2.494678 0.494694 4.876131 +2.852659 0.494694 4.876131 +3.261896 0.494694 4.876131 +3.729748 0.494694 4.876131 +4.264621 0.494694 4.876131 +4.876131 0.494694 4.876131 +5.575266 0.494694 4.876131 +6.374593 0.494694 4.876131 +0 0.5692344 4.876131 +0 0.5692344 4.876131 +0 0.5692344 4.876131 +0.002268731 0.5692344 4.876131 +0.07076883 0.5692344 4.876131 +0.1119241 0.5692344 4.876131 +0.1475052 0.5692344 4.876131 +0.1846606 0.5692344 4.876131 +0.2245119 0.5692344 4.876131 +0.2679612 0.5692344 4.876131 +0.3158431 0.5692344 4.876131 +0.3689944 0.5692344 4.876131 +0.4282948 0.5692344 4.876131 +0.494694 0.5692344 4.876131 +0.5692344 0.5692344 4.876131 +0.6530715 0.5692344 4.876131 +0.7474945 0.5692344 4.876131 +0.8539475 0.5692344 4.876131 +0.974052 0.5692344 4.876131 +1.113885 0.5692344 4.876131 +1.27456 0.5692344 4.876131 +1.458117 0.5692344 4.876131 +1.667858 0.5692344 4.876131 +1.907556 0.5692344 4.876131 +2.181521 0.5692344 4.876131 +2.494678 0.5692344 4.876131 +2.852659 0.5692344 4.876131 +3.261896 0.5692344 4.876131 +3.729748 0.5692344 4.876131 +4.264621 0.5692344 4.876131 +4.876131 0.5692344 4.876131 +5.575266 0.5692344 4.876131 +6.374593 0.5692344 4.876131 +0 0.6530715 4.876131 +0 0.6530715 4.876131 +0 0.6530715 4.876131 +0.002268731 0.6530715 4.876131 +0.07076883 0.6530715 4.876131 +0.1119241 0.6530715 4.876131 +0.1475052 0.6530715 4.876131 +0.1846606 0.6530715 4.876131 +0.2245119 0.6530715 4.876131 +0.2679612 0.6530715 4.876131 +0.3158431 0.6530715 4.876131 +0.3689944 0.6530715 4.876131 +0.4282948 0.6530715 4.876131 +0.494694 0.6530715 4.876131 +0.5692344 0.6530715 4.876131 +0.6530715 0.6530715 4.876131 +0.7474945 0.6530715 4.876131 +0.8539475 0.6530715 4.876131 +0.974052 0.6530715 4.876131 +1.113885 0.6530715 4.876131 +1.27456 0.6530715 4.876131 +1.458117 0.6530715 4.876131 +1.667858 0.6530715 4.876131 +1.907556 0.6530715 4.876131 +2.181521 0.6530715 4.876131 +2.494678 0.6530715 4.876131 +2.852659 0.6530715 4.876131 +3.261896 0.6530715 4.876131 +3.729748 0.6530715 4.876131 +4.264621 0.6530715 4.876131 +4.876131 0.6530715 4.876131 +5.575266 0.6530715 4.876131 +6.374593 0.6530715 4.876131 +0 0.7474945 4.876131 +0 0.7474945 4.876131 +0 0.7474945 4.876131 +0.002268731 0.7474945 4.876131 +0.07076883 0.7474945 4.876131 +0.1119241 0.7474945 4.876131 +0.1475052 0.7474945 4.876131 +0.1846606 0.7474945 4.876131 +0.2245119 0.7474945 4.876131 +0.2679612 0.7474945 4.876131 +0.3158431 0.7474945 4.876131 +0.3689944 0.7474945 4.876131 +0.4282948 0.7474945 4.876131 +0.494694 0.7474945 4.876131 +0.5692344 0.7474945 4.876131 +0.6530715 0.7474945 4.876131 +0.7474945 0.7474945 4.876131 +0.8539475 0.7474945 4.876131 +0.974052 0.7474945 4.876131 +1.113885 0.7474945 4.876131 +1.27456 0.7474945 4.876131 +1.458117 0.7474945 4.876131 +1.667858 0.7474945 4.876131 +1.907556 0.7474945 4.876131 +2.181521 0.7474945 4.876131 +2.494678 0.7474945 4.876131 +2.852659 0.7474945 4.876131 +3.261896 0.7474945 4.876131 +3.729748 0.7474945 4.876131 +4.264621 0.7474945 4.876131 +4.876131 0.7474945 4.876131 +5.575266 0.7474945 4.876131 +6.374593 0.7474945 4.876131 +0 0.8539475 4.876131 +0 0.8539475 4.876131 +0 0.8539475 4.876131 +0.002268731 0.8539475 4.876131 +0.07076883 0.8539475 4.876131 +0.1119241 0.8539475 4.876131 +0.1475052 0.8539475 4.876131 +0.1846606 0.8539475 4.876131 +0.2245119 0.8539475 4.876131 +0.2679612 0.8539475 4.876131 +0.3158431 0.8539475 4.876131 +0.3689944 0.8539475 4.876131 +0.4282948 0.8539475 4.876131 +0.494694 0.8539475 4.876131 +0.5692344 0.8539475 4.876131 +0.6530715 0.8539475 4.876131 +0.7474945 0.8539475 4.876131 +0.8539475 0.8539475 4.876131 +0.974052 0.8539475 4.876131 +1.113885 0.8539475 4.876131 +1.27456 0.8539475 4.876131 +1.458117 0.8539475 4.876131 +1.667858 0.8539475 4.876131 +1.907556 0.8539475 4.876131 +2.181521 0.8539475 4.876131 +2.494678 0.8539475 4.876131 +2.852659 0.8539475 4.876131 +3.261896 0.8539475 4.876131 +3.729748 0.8539475 4.876131 +4.264621 0.8539475 4.876131 +4.876131 0.8539475 4.876131 +5.575266 0.8539475 4.876131 +6.374593 0.8539475 4.876131 +0 0.974052 4.876131 +0 0.974052 4.876131 +0 0.974052 4.876131 +0.002268731 0.974052 4.876131 +0.07076883 0.974052 4.876131 +0.1119241 0.974052 4.876131 +0.1475052 0.974052 4.876131 +0.1846606 0.974052 4.876131 +0.2245119 0.974052 4.876131 +0.2679612 0.974052 4.876131 +0.3158431 0.974052 4.876131 +0.3689944 0.974052 4.876131 +0.4282948 0.974052 4.876131 +0.494694 0.974052 4.876131 +0.5692344 0.974052 4.876131 +0.6530715 0.974052 4.876131 +0.7474945 0.974052 4.876131 +0.8539475 0.974052 4.876131 +0.974052 0.974052 4.876131 +1.113885 0.974052 4.876131 +1.27456 0.974052 4.876131 +1.458117 0.974052 4.876131 +1.667858 0.974052 4.876131 +1.907556 0.974052 4.876131 +2.181521 0.974052 4.876131 +2.494678 0.974052 4.876131 +2.852659 0.974052 4.876131 +3.261896 0.974052 4.876131 +3.729748 0.974052 4.876131 +4.264621 0.974052 4.876131 +4.876131 0.974052 4.876131 +5.575266 0.974052 4.876131 +6.374593 0.974052 4.876131 +0 1.113885 4.876131 +0 1.113885 4.876131 +0 1.113885 4.876131 +0.002268731 1.113885 4.876131 +0.07076883 1.113885 4.876131 +0.1119241 1.113885 4.876131 +0.1475052 1.113885 4.876131 +0.1846606 1.113885 4.876131 +0.2245119 1.113885 4.876131 +0.2679612 1.113885 4.876131 +0.3158431 1.113885 4.876131 +0.3689944 1.113885 4.876131 +0.4282948 1.113885 4.876131 +0.494694 1.113885 4.876131 +0.5692344 1.113885 4.876131 +0.6530715 1.113885 4.876131 +0.7474945 1.113885 4.876131 +0.8539475 1.113885 4.876131 +0.974052 1.113885 4.876131 +1.113885 1.113885 4.876131 +1.27456 1.113885 4.876131 +1.458117 1.113885 4.876131 +1.667858 1.113885 4.876131 +1.907556 1.113885 4.876131 +2.181521 1.113885 4.876131 +2.494678 1.113885 4.876131 +2.852659 1.113885 4.876131 +3.261896 1.113885 4.876131 +3.729748 1.113885 4.876131 +4.264621 1.113885 4.876131 +4.876131 1.113885 4.876131 +5.575266 1.113885 4.876131 +6.374593 1.113885 4.876131 +0 1.27456 4.876131 +0 1.27456 4.876131 +0 1.27456 4.876131 +0.002268731 1.27456 4.876131 +0.07076883 1.27456 4.876131 +0.1119241 1.27456 4.876131 +0.1475052 1.27456 4.876131 +0.1846606 1.27456 4.876131 +0.2245119 1.27456 4.876131 +0.2679612 1.27456 4.876131 +0.3158431 1.27456 4.876131 +0.3689944 1.27456 4.876131 +0.4282948 1.27456 4.876131 +0.494694 1.27456 4.876131 +0.5692344 1.27456 4.876131 +0.6530715 1.27456 4.876131 +0.7474945 1.27456 4.876131 +0.8539475 1.27456 4.876131 +0.974052 1.27456 4.876131 +1.113885 1.27456 4.876131 +1.27456 1.27456 4.876131 +1.458117 1.27456 4.876131 +1.667858 1.27456 4.876131 +1.907556 1.27456 4.876131 +2.181521 1.27456 4.876131 +2.494678 1.27456 4.876131 +2.852659 1.27456 4.876131 +3.261896 1.27456 4.876131 +3.729748 1.27456 4.876131 +4.264621 1.27456 4.876131 +4.876131 1.27456 4.876131 +5.575266 1.27456 4.876131 +6.374593 1.27456 4.876131 +0 1.458117 4.876131 +0 1.458117 4.876131 +0 1.458117 4.876131 +0.002268731 1.458117 4.876131 +0.07076883 1.458117 4.876131 +0.1119241 1.458117 4.876131 +0.1475052 1.458117 4.876131 +0.1846606 1.458117 4.876131 +0.2245119 1.458117 4.876131 +0.2679612 1.458117 4.876131 +0.3158431 1.458117 4.876131 +0.3689944 1.458117 4.876131 +0.4282948 1.458117 4.876131 +0.494694 1.458117 4.876131 +0.5692344 1.458117 4.876131 +0.6530715 1.458117 4.876131 +0.7474945 1.458117 4.876131 +0.8539475 1.458117 4.876131 +0.974052 1.458117 4.876131 +1.113885 1.458117 4.876131 +1.27456 1.458117 4.876131 +1.458117 1.458117 4.876131 +1.667858 1.458117 4.876131 +1.907556 1.458117 4.876131 +2.181521 1.458117 4.876131 +2.494678 1.458117 4.876131 +2.852659 1.458117 4.876131 +3.261896 1.458117 4.876131 +3.729748 1.458117 4.876131 +4.264621 1.458117 4.876131 +4.876131 1.458117 4.876131 +5.575266 1.458117 4.876131 +6.374593 1.458117 4.876131 +0 1.667858 4.876131 +0 1.667858 4.876131 +0 1.667858 4.876131 +0.002268731 1.667858 4.876131 +0.07076883 1.667858 4.876131 +0.1119241 1.667858 4.876131 +0.1475052 1.667858 4.876131 +0.1846606 1.667858 4.876131 +0.2245119 1.667858 4.876131 +0.2679612 1.667858 4.876131 +0.3158431 1.667858 4.876131 +0.3689944 1.667858 4.876131 +0.4282948 1.667858 4.876131 +0.494694 1.667858 4.876131 +0.5692344 1.667858 4.876131 +0.6530715 1.667858 4.876131 +0.7474945 1.667858 4.876131 +0.8539475 1.667858 4.876131 +0.974052 1.667858 4.876131 +1.113885 1.667858 4.876131 +1.27456 1.667858 4.876131 +1.458117 1.667858 4.876131 +1.667858 1.667858 4.876131 +1.907556 1.667858 4.876131 +2.181521 1.667858 4.876131 +2.494678 1.667858 4.876131 +2.852659 1.667858 4.876131 +3.261896 1.667858 4.876131 +3.729748 1.667858 4.876131 +4.264621 1.667858 4.876131 +4.876131 1.667858 4.876131 +5.575266 1.667858 4.876131 +6.374593 1.667858 4.876131 +0 1.907556 4.876131 +0 1.907556 4.876131 +0 1.907556 4.876131 +0.002268731 1.907556 4.876131 +0.07076883 1.907556 4.876131 +0.1119241 1.907556 4.876131 +0.1475052 1.907556 4.876131 +0.1846606 1.907556 4.876131 +0.2245119 1.907556 4.876131 +0.2679612 1.907556 4.876131 +0.3158431 1.907556 4.876131 +0.3689944 1.907556 4.876131 +0.4282948 1.907556 4.876131 +0.494694 1.907556 4.876131 +0.5692344 1.907556 4.876131 +0.6530715 1.907556 4.876131 +0.7474945 1.907556 4.876131 +0.8539475 1.907556 4.876131 +0.974052 1.907556 4.876131 +1.113885 1.907556 4.876131 +1.27456 1.907556 4.876131 +1.458117 1.907556 4.876131 +1.667858 1.907556 4.876131 +1.907556 1.907556 4.876131 +2.181521 1.907556 4.876131 +2.494678 1.907556 4.876131 +2.852659 1.907556 4.876131 +3.261896 1.907556 4.876131 +3.729748 1.907556 4.876131 +4.264621 1.907556 4.876131 +4.876131 1.907556 4.876131 +5.575266 1.907556 4.876131 +6.374593 1.907556 4.876131 +0 2.181521 4.876131 +0 2.181521 4.876131 +0 2.181521 4.876131 +0.002268731 2.181521 4.876131 +0.07076883 2.181521 4.876131 +0.1119241 2.181521 4.876131 +0.1475052 2.181521 4.876131 +0.1846606 2.181521 4.876131 +0.2245119 2.181521 4.876131 +0.2679612 2.181521 4.876131 +0.3158431 2.181521 4.876131 +0.3689944 2.181521 4.876131 +0.4282948 2.181521 4.876131 +0.494694 2.181521 4.876131 +0.5692344 2.181521 4.876131 +0.6530715 2.181521 4.876131 +0.7474945 2.181521 4.876131 +0.8539475 2.181521 4.876131 +0.974052 2.181521 4.876131 +1.113885 2.181521 4.876131 +1.27456 2.181521 4.876131 +1.458117 2.181521 4.876131 +1.667858 2.181521 4.876131 +1.907556 2.181521 4.876131 +2.181521 2.181521 4.876131 +2.494678 2.181521 4.876131 +2.852659 2.181521 4.876131 +3.261896 2.181521 4.876131 +3.729748 2.181521 4.876131 +4.264621 2.181521 4.876131 +4.876131 2.181521 4.876131 +5.575266 2.181521 4.876131 +6.374593 2.181521 4.876131 +0 2.494678 4.876131 +0 2.494678 4.876131 +0 2.494678 4.876131 +0.002268731 2.494678 4.876131 +0.07076883 2.494678 4.876131 +0.1119241 2.494678 4.876131 +0.1475052 2.494678 4.876131 +0.1846606 2.494678 4.876131 +0.2245119 2.494678 4.876131 +0.2679612 2.494678 4.876131 +0.3158431 2.494678 4.876131 +0.3689944 2.494678 4.876131 +0.4282948 2.494678 4.876131 +0.494694 2.494678 4.876131 +0.5692344 2.494678 4.876131 +0.6530715 2.494678 4.876131 +0.7474945 2.494678 4.876131 +0.8539475 2.494678 4.876131 +0.974052 2.494678 4.876131 +1.113885 2.494678 4.876131 +1.27456 2.494678 4.876131 +1.458117 2.494678 4.876131 +1.667858 2.494678 4.876131 +1.907556 2.494678 4.876131 +2.181521 2.494678 4.876131 +2.494678 2.494678 4.876131 +2.852659 2.494678 4.876131 +3.261896 2.494678 4.876131 +3.729748 2.494678 4.876131 +4.264621 2.494678 4.876131 +4.876131 2.494678 4.876131 +5.575266 2.494678 4.876131 +6.374593 2.494678 4.876131 +0 2.852659 4.876131 +0 2.852659 4.876131 +0 2.852659 4.876131 +0.002268731 2.852659 4.876131 +0.07076883 2.852659 4.876131 +0.1119241 2.852659 4.876131 +0.1475052 2.852659 4.876131 +0.1846606 2.852659 4.876131 +0.2245119 2.852659 4.876131 +0.2679612 2.852659 4.876131 +0.3158431 2.852659 4.876131 +0.3689944 2.852659 4.876131 +0.4282948 2.852659 4.876131 +0.494694 2.852659 4.876131 +0.5692344 2.852659 4.876131 +0.6530715 2.852659 4.876131 +0.7474945 2.852659 4.876131 +0.8539475 2.852659 4.876131 +0.974052 2.852659 4.876131 +1.113885 2.852659 4.876131 +1.27456 2.852659 4.876131 +1.458117 2.852659 4.876131 +1.667858 2.852659 4.876131 +1.907556 2.852659 4.876131 +2.181521 2.852659 4.876131 +2.494678 2.852659 4.876131 +2.852659 2.852659 4.876131 +3.261896 2.852659 4.876131 +3.729748 2.852659 4.876131 +4.264621 2.852659 4.876131 +4.876131 2.852659 4.876131 +5.575266 2.852659 4.876131 +6.374593 2.852659 4.876131 +0 3.261896 4.876131 +0 3.261896 4.876131 +0 3.261896 4.876131 +0.002268731 3.261896 4.876131 +0.07076883 3.261896 4.876131 +0.1119241 3.261896 4.876131 +0.1475052 3.261896 4.876131 +0.1846606 3.261896 4.876131 +0.2245119 3.261896 4.876131 +0.2679612 3.261896 4.876131 +0.3158431 3.261896 4.876131 +0.3689944 3.261896 4.876131 +0.4282948 3.261896 4.876131 +0.494694 3.261896 4.876131 +0.5692344 3.261896 4.876131 +0.6530715 3.261896 4.876131 +0.7474945 3.261896 4.876131 +0.8539475 3.261896 4.876131 +0.974052 3.261896 4.876131 +1.113885 3.261896 4.876131 +1.27456 3.261896 4.876131 +1.458117 3.261896 4.876131 +1.667858 3.261896 4.876131 +1.907556 3.261896 4.876131 +2.181521 3.261896 4.876131 +2.494678 3.261896 4.876131 +2.852659 3.261896 4.876131 +3.261896 3.261896 4.876131 +3.729748 3.261896 4.876131 +4.264621 3.261896 4.876131 +4.876131 3.261896 4.876131 +5.575266 3.261896 4.876131 +6.374593 3.261896 4.876131 +0 3.729748 4.876131 +0 3.729748 4.876131 +0 3.729748 4.876131 +0.002268731 3.729748 4.876131 +0.07076883 3.729748 4.876131 +0.1119241 3.729748 4.876131 +0.1475052 3.729748 4.876131 +0.1846606 3.729748 4.876131 +0.2245119 3.729748 4.876131 +0.2679612 3.729748 4.876131 +0.3158431 3.729748 4.876131 +0.3689944 3.729748 4.876131 +0.4282948 3.729748 4.876131 +0.494694 3.729748 4.876131 +0.5692344 3.729748 4.876131 +0.6530715 3.729748 4.876131 +0.7474945 3.729748 4.876131 +0.8539475 3.729748 4.876131 +0.974052 3.729748 4.876131 +1.113885 3.729748 4.876131 +1.27456 3.729748 4.876131 +1.458117 3.729748 4.876131 +1.667858 3.729748 4.876131 +1.907556 3.729748 4.876131 +2.181521 3.729748 4.876131 +2.494678 3.729748 4.876131 +2.852659 3.729748 4.876131 +3.261896 3.729748 4.876131 +3.729748 3.729748 4.876131 +4.264621 3.729748 4.876131 +4.876131 3.729748 4.876131 +5.575266 3.729748 4.876131 +6.374593 3.729748 4.876131 +0 4.264621 4.876131 +0 4.264621 4.876131 +0 4.264621 4.876131 +0.002268731 4.264621 4.876131 +0.07076883 4.264621 4.876131 +0.1119241 4.264621 4.876131 +0.1475052 4.264621 4.876131 +0.1846606 4.264621 4.876131 +0.2245119 4.264621 4.876131 +0.2679612 4.264621 4.876131 +0.3158431 4.264621 4.876131 +0.3689944 4.264621 4.876131 +0.4282948 4.264621 4.876131 +0.494694 4.264621 4.876131 +0.5692344 4.264621 4.876131 +0.6530715 4.264621 4.876131 +0.7474945 4.264621 4.876131 +0.8539475 4.264621 4.876131 +0.974052 4.264621 4.876131 +1.113885 4.264621 4.876131 +1.27456 4.264621 4.876131 +1.458117 4.264621 4.876131 +1.667858 4.264621 4.876131 +1.907556 4.264621 4.876131 +2.181521 4.264621 4.876131 +2.494678 4.264621 4.876131 +2.852659 4.264621 4.876131 +3.261896 4.264621 4.876131 +3.729748 4.264621 4.876131 +4.264621 4.264621 4.876131 +4.876131 4.264621 4.876131 +5.575266 4.264621 4.876131 +6.374593 4.264621 4.876131 +0 4.876131 4.876131 +0 4.876131 4.876131 +0 4.876131 4.876131 +0.002268731 4.876131 4.876131 +0.07076883 4.876131 4.876131 +0.1119241 4.876131 4.876131 +0.1475052 4.876131 4.876131 +0.1846606 4.876131 4.876131 +0.2245119 4.876131 4.876131 +0.2679612 4.876131 4.876131 +0.3158431 4.876131 4.876131 +0.3689944 4.876131 4.876131 +0.4282948 4.876131 4.876131 +0.494694 4.876131 4.876131 +0.5692344 4.876131 4.876131 +0.6530715 4.876131 4.876131 +0.7474945 4.876131 4.876131 +0.8539475 4.876131 4.876131 +0.974052 4.876131 4.876131 +1.113885 4.876131 4.876131 +1.27456 4.876131 4.876131 +1.458117 4.876131 4.876131 +1.667858 4.876131 4.876131 +1.907556 4.876131 4.876131 +2.181521 4.876131 4.876131 +2.494678 4.876131 4.876131 +2.852659 4.876131 4.876131 +3.261896 4.876131 4.876131 +3.729748 4.876131 4.876131 +4.264621 4.876131 4.876131 +4.876131 4.876131 4.876131 +5.575266 4.876131 4.876131 +6.374593 4.876131 4.876131 +0 5.575266 4.876131 +0 5.575266 4.876131 +0 5.575266 4.876131 +0.002268731 5.575266 4.876131 +0.07076883 5.575266 4.876131 +0.1119241 5.575266 4.876131 +0.1475052 5.575266 4.876131 +0.1846606 5.575266 4.876131 +0.2245119 5.575266 4.876131 +0.2679612 5.575266 4.876131 +0.3158431 5.575266 4.876131 +0.3689944 5.575266 4.876131 +0.4282948 5.575266 4.876131 +0.494694 5.575266 4.876131 +0.5692344 5.575266 4.876131 +0.6530715 5.575266 4.876131 +0.7474945 5.575266 4.876131 +0.8539475 5.575266 4.876131 +0.974052 5.575266 4.876131 +1.113885 5.575266 4.876131 +1.27456 5.575266 4.876131 +1.458117 5.575266 4.876131 +1.667858 5.575266 4.876131 +1.907556 5.575266 4.876131 +2.181521 5.575266 4.876131 +2.494678 5.575266 4.876131 +2.852659 5.575266 4.876131 +3.261896 5.575266 4.876131 +3.729748 5.575266 4.876131 +4.264621 5.575266 4.876131 +4.876131 5.575266 4.876131 +5.575266 5.575266 4.876131 +6.374593 5.575266 4.876131 +0 6.374593 4.876131 +0 6.374593 4.876131 +0 6.374593 4.876131 +0.002268731 6.374593 4.876131 +0.07076883 6.374593 4.876131 +0.1119241 6.374593 4.876131 +0.1475052 6.374593 4.876131 +0.1846606 6.374593 4.876131 +0.2245119 6.374593 4.876131 +0.2679612 6.374593 4.876131 +0.3158431 6.374593 4.876131 +0.3689944 6.374593 4.876131 +0.4282948 6.374593 4.876131 +0.494694 6.374593 4.876131 +0.5692344 6.374593 4.876131 +0.6530715 6.374593 4.876131 +0.7474945 6.374593 4.876131 +0.8539475 6.374593 4.876131 +0.974052 6.374593 4.876131 +1.113885 6.374593 4.876131 +1.27456 6.374593 4.876131 +1.458117 6.374593 4.876131 +1.667858 6.374593 4.876131 +1.907556 6.374593 4.876131 +2.181521 6.374593 4.876131 +2.494678 6.374593 4.876131 +2.852659 6.374593 4.876131 +3.261896 6.374593 4.876131 +3.729748 6.374593 4.876131 +4.264621 6.374593 4.876131 +4.876131 6.374593 4.876131 +5.575266 6.374593 4.876131 +6.374593 6.374593 4.876131 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0.002268731 5.575266 +0 0.002268731 5.575266 +0 0.002268731 5.575266 +0.002268731 0.002268731 5.575266 +0.07076883 0.002268731 5.575266 +0.1119241 0.002268731 5.575266 +0.1475052 0.002268731 5.575266 +0.1846606 0.002268731 5.575266 +0.2245119 0.002268731 5.575266 +0.2679612 0.002268731 5.575266 +0.3158431 0.002268731 5.575266 +0.3689944 0.002268731 5.575266 +0.4282948 0.002268731 5.575266 +0.494694 0.002268731 5.575266 +0.5692344 0.002268731 5.575266 +0.6530715 0.002268731 5.575266 +0.7474945 0.002268731 5.575266 +0.8539475 0.002268731 5.575266 +0.974052 0.002268731 5.575266 +1.113885 0.002268731 5.575266 +1.27456 0.002268731 5.575266 +1.458117 0.002268731 5.575266 +1.667858 0.002268731 5.575266 +1.907556 0.002268731 5.575266 +2.181521 0.002268731 5.575266 +2.494678 0.002268731 5.575266 +2.852659 0.002268731 5.575266 +3.261896 0.002268731 5.575266 +3.729748 0.002268731 5.575266 +4.264621 0.002268731 5.575266 +4.876131 0.002268731 5.575266 +5.575266 0.002268731 5.575266 +6.374593 0.002268731 5.575266 +0 0.07076883 5.575266 +0 0.07076883 5.575266 +0 0.07076883 5.575266 +0.002268731 0.07076883 5.575266 +0.07076883 0.07076883 5.575266 +0.1119241 0.07076883 5.575266 +0.1475052 0.07076883 5.575266 +0.1846606 0.07076883 5.575266 +0.2245119 0.07076883 5.575266 +0.2679612 0.07076883 5.575266 +0.3158431 0.07076883 5.575266 +0.3689944 0.07076883 5.575266 +0.4282948 0.07076883 5.575266 +0.494694 0.07076883 5.575266 +0.5692344 0.07076883 5.575266 +0.6530715 0.07076883 5.575266 +0.7474945 0.07076883 5.575266 +0.8539475 0.07076883 5.575266 +0.974052 0.07076883 5.575266 +1.113885 0.07076883 5.575266 +1.27456 0.07076883 5.575266 +1.458117 0.07076883 5.575266 +1.667858 0.07076883 5.575266 +1.907556 0.07076883 5.575266 +2.181521 0.07076883 5.575266 +2.494678 0.07076883 5.575266 +2.852659 0.07076883 5.575266 +3.261896 0.07076883 5.575266 +3.729748 0.07076883 5.575266 +4.264621 0.07076883 5.575266 +4.876131 0.07076883 5.575266 +5.575266 0.07076883 5.575266 +6.374593 0.07076883 5.575266 +0 0.1119241 5.575266 +0 0.1119241 5.575266 +0 0.1119241 5.575266 +0.002268731 0.1119241 5.575266 +0.07076883 0.1119241 5.575266 +0.1119241 0.1119241 5.575266 +0.1475052 0.1119241 5.575266 +0.1846606 0.1119241 5.575266 +0.2245119 0.1119241 5.575266 +0.2679612 0.1119241 5.575266 +0.3158431 0.1119241 5.575266 +0.3689944 0.1119241 5.575266 +0.4282948 0.1119241 5.575266 +0.494694 0.1119241 5.575266 +0.5692344 0.1119241 5.575266 +0.6530715 0.1119241 5.575266 +0.7474945 0.1119241 5.575266 +0.8539475 0.1119241 5.575266 +0.974052 0.1119241 5.575266 +1.113885 0.1119241 5.575266 +1.27456 0.1119241 5.575266 +1.458117 0.1119241 5.575266 +1.667858 0.1119241 5.575266 +1.907556 0.1119241 5.575266 +2.181521 0.1119241 5.575266 +2.494678 0.1119241 5.575266 +2.852659 0.1119241 5.575266 +3.261896 0.1119241 5.575266 +3.729748 0.1119241 5.575266 +4.264621 0.1119241 5.575266 +4.876131 0.1119241 5.575266 +5.575266 0.1119241 5.575266 +6.374593 0.1119241 5.575266 +0 0.1475052 5.575266 +0 0.1475052 5.575266 +0 0.1475052 5.575266 +0.002268731 0.1475052 5.575266 +0.07076883 0.1475052 5.575266 +0.1119241 0.1475052 5.575266 +0.1475052 0.1475052 5.575266 +0.1846606 0.1475052 5.575266 +0.2245119 0.1475052 5.575266 +0.2679612 0.1475052 5.575266 +0.3158431 0.1475052 5.575266 +0.3689944 0.1475052 5.575266 +0.4282948 0.1475052 5.575266 +0.494694 0.1475052 5.575266 +0.5692344 0.1475052 5.575266 +0.6530715 0.1475052 5.575266 +0.7474945 0.1475052 5.575266 +0.8539475 0.1475052 5.575266 +0.974052 0.1475052 5.575266 +1.113885 0.1475052 5.575266 +1.27456 0.1475052 5.575266 +1.458117 0.1475052 5.575266 +1.667858 0.1475052 5.575266 +1.907556 0.1475052 5.575266 +2.181521 0.1475052 5.575266 +2.494678 0.1475052 5.575266 +2.852659 0.1475052 5.575266 +3.261896 0.1475052 5.575266 +3.729748 0.1475052 5.575266 +4.264621 0.1475052 5.575266 +4.876131 0.1475052 5.575266 +5.575266 0.1475052 5.575266 +6.374593 0.1475052 5.575266 +0 0.1846606 5.575266 +0 0.1846606 5.575266 +0 0.1846606 5.575266 +0.002268731 0.1846606 5.575266 +0.07076883 0.1846606 5.575266 +0.1119241 0.1846606 5.575266 +0.1475052 0.1846606 5.575266 +0.1846606 0.1846606 5.575266 +0.2245119 0.1846606 5.575266 +0.2679612 0.1846606 5.575266 +0.3158431 0.1846606 5.575266 +0.3689944 0.1846606 5.575266 +0.4282948 0.1846606 5.575266 +0.494694 0.1846606 5.575266 +0.5692344 0.1846606 5.575266 +0.6530715 0.1846606 5.575266 +0.7474945 0.1846606 5.575266 +0.8539475 0.1846606 5.575266 +0.974052 0.1846606 5.575266 +1.113885 0.1846606 5.575266 +1.27456 0.1846606 5.575266 +1.458117 0.1846606 5.575266 +1.667858 0.1846606 5.575266 +1.907556 0.1846606 5.575266 +2.181521 0.1846606 5.575266 +2.494678 0.1846606 5.575266 +2.852659 0.1846606 5.575266 +3.261896 0.1846606 5.575266 +3.729748 0.1846606 5.575266 +4.264621 0.1846606 5.575266 +4.876131 0.1846606 5.575266 +5.575266 0.1846606 5.575266 +6.374593 0.1846606 5.575266 +0 0.2245119 5.575266 +0 0.2245119 5.575266 +0 0.2245119 5.575266 +0.002268731 0.2245119 5.575266 +0.07076883 0.2245119 5.575266 +0.1119241 0.2245119 5.575266 +0.1475052 0.2245119 5.575266 +0.1846606 0.2245119 5.575266 +0.2245119 0.2245119 5.575266 +0.2679612 0.2245119 5.575266 +0.3158431 0.2245119 5.575266 +0.3689944 0.2245119 5.575266 +0.4282948 0.2245119 5.575266 +0.494694 0.2245119 5.575266 +0.5692344 0.2245119 5.575266 +0.6530715 0.2245119 5.575266 +0.7474945 0.2245119 5.575266 +0.8539475 0.2245119 5.575266 +0.974052 0.2245119 5.575266 +1.113885 0.2245119 5.575266 +1.27456 0.2245119 5.575266 +1.458117 0.2245119 5.575266 +1.667858 0.2245119 5.575266 +1.907556 0.2245119 5.575266 +2.181521 0.2245119 5.575266 +2.494678 0.2245119 5.575266 +2.852659 0.2245119 5.575266 +3.261896 0.2245119 5.575266 +3.729748 0.2245119 5.575266 +4.264621 0.2245119 5.575266 +4.876131 0.2245119 5.575266 +5.575266 0.2245119 5.575266 +6.374593 0.2245119 5.575266 +0 0.2679612 5.575266 +0 0.2679612 5.575266 +0 0.2679612 5.575266 +0.002268731 0.2679612 5.575266 +0.07076883 0.2679612 5.575266 +0.1119241 0.2679612 5.575266 +0.1475052 0.2679612 5.575266 +0.1846606 0.2679612 5.575266 +0.2245119 0.2679612 5.575266 +0.2679612 0.2679612 5.575266 +0.3158431 0.2679612 5.575266 +0.3689944 0.2679612 5.575266 +0.4282948 0.2679612 5.575266 +0.494694 0.2679612 5.575266 +0.5692344 0.2679612 5.575266 +0.6530715 0.2679612 5.575266 +0.7474945 0.2679612 5.575266 +0.8539475 0.2679612 5.575266 +0.974052 0.2679612 5.575266 +1.113885 0.2679612 5.575266 +1.27456 0.2679612 5.575266 +1.458117 0.2679612 5.575266 +1.667858 0.2679612 5.575266 +1.907556 0.2679612 5.575266 +2.181521 0.2679612 5.575266 +2.494678 0.2679612 5.575266 +2.852659 0.2679612 5.575266 +3.261896 0.2679612 5.575266 +3.729748 0.2679612 5.575266 +4.264621 0.2679612 5.575266 +4.876131 0.2679612 5.575266 +5.575266 0.2679612 5.575266 +6.374593 0.2679612 5.575266 +0 0.3158431 5.575266 +0 0.3158431 5.575266 +0 0.3158431 5.575266 +0.002268731 0.3158431 5.575266 +0.07076883 0.3158431 5.575266 +0.1119241 0.3158431 5.575266 +0.1475052 0.3158431 5.575266 +0.1846606 0.3158431 5.575266 +0.2245119 0.3158431 5.575266 +0.2679612 0.3158431 5.575266 +0.3158431 0.3158431 5.575266 +0.3689944 0.3158431 5.575266 +0.4282948 0.3158431 5.575266 +0.494694 0.3158431 5.575266 +0.5692344 0.3158431 5.575266 +0.6530715 0.3158431 5.575266 +0.7474945 0.3158431 5.575266 +0.8539475 0.3158431 5.575266 +0.974052 0.3158431 5.575266 +1.113885 0.3158431 5.575266 +1.27456 0.3158431 5.575266 +1.458117 0.3158431 5.575266 +1.667858 0.3158431 5.575266 +1.907556 0.3158431 5.575266 +2.181521 0.3158431 5.575266 +2.494678 0.3158431 5.575266 +2.852659 0.3158431 5.575266 +3.261896 0.3158431 5.575266 +3.729748 0.3158431 5.575266 +4.264621 0.3158431 5.575266 +4.876131 0.3158431 5.575266 +5.575266 0.3158431 5.575266 +6.374593 0.3158431 5.575266 +0 0.3689944 5.575266 +0 0.3689944 5.575266 +0 0.3689944 5.575266 +0.002268731 0.3689944 5.575266 +0.07076883 0.3689944 5.575266 +0.1119241 0.3689944 5.575266 +0.1475052 0.3689944 5.575266 +0.1846606 0.3689944 5.575266 +0.2245119 0.3689944 5.575266 +0.2679612 0.3689944 5.575266 +0.3158431 0.3689944 5.575266 +0.3689944 0.3689944 5.575266 +0.4282948 0.3689944 5.575266 +0.494694 0.3689944 5.575266 +0.5692344 0.3689944 5.575266 +0.6530715 0.3689944 5.575266 +0.7474945 0.3689944 5.575266 +0.8539475 0.3689944 5.575266 +0.974052 0.3689944 5.575266 +1.113885 0.3689944 5.575266 +1.27456 0.3689944 5.575266 +1.458117 0.3689944 5.575266 +1.667858 0.3689944 5.575266 +1.907556 0.3689944 5.575266 +2.181521 0.3689944 5.575266 +2.494678 0.3689944 5.575266 +2.852659 0.3689944 5.575266 +3.261896 0.3689944 5.575266 +3.729748 0.3689944 5.575266 +4.264621 0.3689944 5.575266 +4.876131 0.3689944 5.575266 +5.575266 0.3689944 5.575266 +6.374593 0.3689944 5.575266 +0 0.4282948 5.575266 +0 0.4282948 5.575266 +0 0.4282948 5.575266 +0.002268731 0.4282948 5.575266 +0.07076883 0.4282948 5.575266 +0.1119241 0.4282948 5.575266 +0.1475052 0.4282948 5.575266 +0.1846606 0.4282948 5.575266 +0.2245119 0.4282948 5.575266 +0.2679612 0.4282948 5.575266 +0.3158431 0.4282948 5.575266 +0.3689944 0.4282948 5.575266 +0.4282948 0.4282948 5.575266 +0.494694 0.4282948 5.575266 +0.5692344 0.4282948 5.575266 +0.6530715 0.4282948 5.575266 +0.7474945 0.4282948 5.575266 +0.8539475 0.4282948 5.575266 +0.974052 0.4282948 5.575266 +1.113885 0.4282948 5.575266 +1.27456 0.4282948 5.575266 +1.458117 0.4282948 5.575266 +1.667858 0.4282948 5.575266 +1.907556 0.4282948 5.575266 +2.181521 0.4282948 5.575266 +2.494678 0.4282948 5.575266 +2.852659 0.4282948 5.575266 +3.261896 0.4282948 5.575266 +3.729748 0.4282948 5.575266 +4.264621 0.4282948 5.575266 +4.876131 0.4282948 5.575266 +5.575266 0.4282948 5.575266 +6.374593 0.4282948 5.575266 +0 0.494694 5.575266 +0 0.494694 5.575266 +0 0.494694 5.575266 +0.002268731 0.494694 5.575266 +0.07076883 0.494694 5.575266 +0.1119241 0.494694 5.575266 +0.1475052 0.494694 5.575266 +0.1846606 0.494694 5.575266 +0.2245119 0.494694 5.575266 +0.2679612 0.494694 5.575266 +0.3158431 0.494694 5.575266 +0.3689944 0.494694 5.575266 +0.4282948 0.494694 5.575266 +0.494694 0.494694 5.575266 +0.5692344 0.494694 5.575266 +0.6530715 0.494694 5.575266 +0.7474945 0.494694 5.575266 +0.8539475 0.494694 5.575266 +0.974052 0.494694 5.575266 +1.113885 0.494694 5.575266 +1.27456 0.494694 5.575266 +1.458117 0.494694 5.575266 +1.667858 0.494694 5.575266 +1.907556 0.494694 5.575266 +2.181521 0.494694 5.575266 +2.494678 0.494694 5.575266 +2.852659 0.494694 5.575266 +3.261896 0.494694 5.575266 +3.729748 0.494694 5.575266 +4.264621 0.494694 5.575266 +4.876131 0.494694 5.575266 +5.575266 0.494694 5.575266 +6.374593 0.494694 5.575266 +0 0.5692344 5.575266 +0 0.5692344 5.575266 +0 0.5692344 5.575266 +0.002268731 0.5692344 5.575266 +0.07076883 0.5692344 5.575266 +0.1119241 0.5692344 5.575266 +0.1475052 0.5692344 5.575266 +0.1846606 0.5692344 5.575266 +0.2245119 0.5692344 5.575266 +0.2679612 0.5692344 5.575266 +0.3158431 0.5692344 5.575266 +0.3689944 0.5692344 5.575266 +0.4282948 0.5692344 5.575266 +0.494694 0.5692344 5.575266 +0.5692344 0.5692344 5.575266 +0.6530715 0.5692344 5.575266 +0.7474945 0.5692344 5.575266 +0.8539475 0.5692344 5.575266 +0.974052 0.5692344 5.575266 +1.113885 0.5692344 5.575266 +1.27456 0.5692344 5.575266 +1.458117 0.5692344 5.575266 +1.667858 0.5692344 5.575266 +1.907556 0.5692344 5.575266 +2.181521 0.5692344 5.575266 +2.494678 0.5692344 5.575266 +2.852659 0.5692344 5.575266 +3.261896 0.5692344 5.575266 +3.729748 0.5692344 5.575266 +4.264621 0.5692344 5.575266 +4.876131 0.5692344 5.575266 +5.575266 0.5692344 5.575266 +6.374593 0.5692344 5.575266 +0 0.6530715 5.575266 +0 0.6530715 5.575266 +0 0.6530715 5.575266 +0.002268731 0.6530715 5.575266 +0.07076883 0.6530715 5.575266 +0.1119241 0.6530715 5.575266 +0.1475052 0.6530715 5.575266 +0.1846606 0.6530715 5.575266 +0.2245119 0.6530715 5.575266 +0.2679612 0.6530715 5.575266 +0.3158431 0.6530715 5.575266 +0.3689944 0.6530715 5.575266 +0.4282948 0.6530715 5.575266 +0.494694 0.6530715 5.575266 +0.5692344 0.6530715 5.575266 +0.6530715 0.6530715 5.575266 +0.7474945 0.6530715 5.575266 +0.8539475 0.6530715 5.575266 +0.974052 0.6530715 5.575266 +1.113885 0.6530715 5.575266 +1.27456 0.6530715 5.575266 +1.458117 0.6530715 5.575266 +1.667858 0.6530715 5.575266 +1.907556 0.6530715 5.575266 +2.181521 0.6530715 5.575266 +2.494678 0.6530715 5.575266 +2.852659 0.6530715 5.575266 +3.261896 0.6530715 5.575266 +3.729748 0.6530715 5.575266 +4.264621 0.6530715 5.575266 +4.876131 0.6530715 5.575266 +5.575266 0.6530715 5.575266 +6.374593 0.6530715 5.575266 +0 0.7474945 5.575266 +0 0.7474945 5.575266 +0 0.7474945 5.575266 +0.002268731 0.7474945 5.575266 +0.07076883 0.7474945 5.575266 +0.1119241 0.7474945 5.575266 +0.1475052 0.7474945 5.575266 +0.1846606 0.7474945 5.575266 +0.2245119 0.7474945 5.575266 +0.2679612 0.7474945 5.575266 +0.3158431 0.7474945 5.575266 +0.3689944 0.7474945 5.575266 +0.4282948 0.7474945 5.575266 +0.494694 0.7474945 5.575266 +0.5692344 0.7474945 5.575266 +0.6530715 0.7474945 5.575266 +0.7474945 0.7474945 5.575266 +0.8539475 0.7474945 5.575266 +0.974052 0.7474945 5.575266 +1.113885 0.7474945 5.575266 +1.27456 0.7474945 5.575266 +1.458117 0.7474945 5.575266 +1.667858 0.7474945 5.575266 +1.907556 0.7474945 5.575266 +2.181521 0.7474945 5.575266 +2.494678 0.7474945 5.575266 +2.852659 0.7474945 5.575266 +3.261896 0.7474945 5.575266 +3.729748 0.7474945 5.575266 +4.264621 0.7474945 5.575266 +4.876131 0.7474945 5.575266 +5.575266 0.7474945 5.575266 +6.374593 0.7474945 5.575266 +0 0.8539475 5.575266 +0 0.8539475 5.575266 +0 0.8539475 5.575266 +0.002268731 0.8539475 5.575266 +0.07076883 0.8539475 5.575266 +0.1119241 0.8539475 5.575266 +0.1475052 0.8539475 5.575266 +0.1846606 0.8539475 5.575266 +0.2245119 0.8539475 5.575266 +0.2679612 0.8539475 5.575266 +0.3158431 0.8539475 5.575266 +0.3689944 0.8539475 5.575266 +0.4282948 0.8539475 5.575266 +0.494694 0.8539475 5.575266 +0.5692344 0.8539475 5.575266 +0.6530715 0.8539475 5.575266 +0.7474945 0.8539475 5.575266 +0.8539475 0.8539475 5.575266 +0.974052 0.8539475 5.575266 +1.113885 0.8539475 5.575266 +1.27456 0.8539475 5.575266 +1.458117 0.8539475 5.575266 +1.667858 0.8539475 5.575266 +1.907556 0.8539475 5.575266 +2.181521 0.8539475 5.575266 +2.494678 0.8539475 5.575266 +2.852659 0.8539475 5.575266 +3.261896 0.8539475 5.575266 +3.729748 0.8539475 5.575266 +4.264621 0.8539475 5.575266 +4.876131 0.8539475 5.575266 +5.575266 0.8539475 5.575266 +6.374593 0.8539475 5.575266 +0 0.974052 5.575266 +0 0.974052 5.575266 +0 0.974052 5.575266 +0.002268731 0.974052 5.575266 +0.07076883 0.974052 5.575266 +0.1119241 0.974052 5.575266 +0.1475052 0.974052 5.575266 +0.1846606 0.974052 5.575266 +0.2245119 0.974052 5.575266 +0.2679612 0.974052 5.575266 +0.3158431 0.974052 5.575266 +0.3689944 0.974052 5.575266 +0.4282948 0.974052 5.575266 +0.494694 0.974052 5.575266 +0.5692344 0.974052 5.575266 +0.6530715 0.974052 5.575266 +0.7474945 0.974052 5.575266 +0.8539475 0.974052 5.575266 +0.974052 0.974052 5.575266 +1.113885 0.974052 5.575266 +1.27456 0.974052 5.575266 +1.458117 0.974052 5.575266 +1.667858 0.974052 5.575266 +1.907556 0.974052 5.575266 +2.181521 0.974052 5.575266 +2.494678 0.974052 5.575266 +2.852659 0.974052 5.575266 +3.261896 0.974052 5.575266 +3.729748 0.974052 5.575266 +4.264621 0.974052 5.575266 +4.876131 0.974052 5.575266 +5.575266 0.974052 5.575266 +6.374593 0.974052 5.575266 +0 1.113885 5.575266 +0 1.113885 5.575266 +0 1.113885 5.575266 +0.002268731 1.113885 5.575266 +0.07076883 1.113885 5.575266 +0.1119241 1.113885 5.575266 +0.1475052 1.113885 5.575266 +0.1846606 1.113885 5.575266 +0.2245119 1.113885 5.575266 +0.2679612 1.113885 5.575266 +0.3158431 1.113885 5.575266 +0.3689944 1.113885 5.575266 +0.4282948 1.113885 5.575266 +0.494694 1.113885 5.575266 +0.5692344 1.113885 5.575266 +0.6530715 1.113885 5.575266 +0.7474945 1.113885 5.575266 +0.8539475 1.113885 5.575266 +0.974052 1.113885 5.575266 +1.113885 1.113885 5.575266 +1.27456 1.113885 5.575266 +1.458117 1.113885 5.575266 +1.667858 1.113885 5.575266 +1.907556 1.113885 5.575266 +2.181521 1.113885 5.575266 +2.494678 1.113885 5.575266 +2.852659 1.113885 5.575266 +3.261896 1.113885 5.575266 +3.729748 1.113885 5.575266 +4.264621 1.113885 5.575266 +4.876131 1.113885 5.575266 +5.575266 1.113885 5.575266 +6.374593 1.113885 5.575266 +0 1.27456 5.575266 +0 1.27456 5.575266 +0 1.27456 5.575266 +0.002268731 1.27456 5.575266 +0.07076883 1.27456 5.575266 +0.1119241 1.27456 5.575266 +0.1475052 1.27456 5.575266 +0.1846606 1.27456 5.575266 +0.2245119 1.27456 5.575266 +0.2679612 1.27456 5.575266 +0.3158431 1.27456 5.575266 +0.3689944 1.27456 5.575266 +0.4282948 1.27456 5.575266 +0.494694 1.27456 5.575266 +0.5692344 1.27456 5.575266 +0.6530715 1.27456 5.575266 +0.7474945 1.27456 5.575266 +0.8539475 1.27456 5.575266 +0.974052 1.27456 5.575266 +1.113885 1.27456 5.575266 +1.27456 1.27456 5.575266 +1.458117 1.27456 5.575266 +1.667858 1.27456 5.575266 +1.907556 1.27456 5.575266 +2.181521 1.27456 5.575266 +2.494678 1.27456 5.575266 +2.852659 1.27456 5.575266 +3.261896 1.27456 5.575266 +3.729748 1.27456 5.575266 +4.264621 1.27456 5.575266 +4.876131 1.27456 5.575266 +5.575266 1.27456 5.575266 +6.374593 1.27456 5.575266 +0 1.458117 5.575266 +0 1.458117 5.575266 +0 1.458117 5.575266 +0.002268731 1.458117 5.575266 +0.07076883 1.458117 5.575266 +0.1119241 1.458117 5.575266 +0.1475052 1.458117 5.575266 +0.1846606 1.458117 5.575266 +0.2245119 1.458117 5.575266 +0.2679612 1.458117 5.575266 +0.3158431 1.458117 5.575266 +0.3689944 1.458117 5.575266 +0.4282948 1.458117 5.575266 +0.494694 1.458117 5.575266 +0.5692344 1.458117 5.575266 +0.6530715 1.458117 5.575266 +0.7474945 1.458117 5.575266 +0.8539475 1.458117 5.575266 +0.974052 1.458117 5.575266 +1.113885 1.458117 5.575266 +1.27456 1.458117 5.575266 +1.458117 1.458117 5.575266 +1.667858 1.458117 5.575266 +1.907556 1.458117 5.575266 +2.181521 1.458117 5.575266 +2.494678 1.458117 5.575266 +2.852659 1.458117 5.575266 +3.261896 1.458117 5.575266 +3.729748 1.458117 5.575266 +4.264621 1.458117 5.575266 +4.876131 1.458117 5.575266 +5.575266 1.458117 5.575266 +6.374593 1.458117 5.575266 +0 1.667858 5.575266 +0 1.667858 5.575266 +0 1.667858 5.575266 +0.002268731 1.667858 5.575266 +0.07076883 1.667858 5.575266 +0.1119241 1.667858 5.575266 +0.1475052 1.667858 5.575266 +0.1846606 1.667858 5.575266 +0.2245119 1.667858 5.575266 +0.2679612 1.667858 5.575266 +0.3158431 1.667858 5.575266 +0.3689944 1.667858 5.575266 +0.4282948 1.667858 5.575266 +0.494694 1.667858 5.575266 +0.5692344 1.667858 5.575266 +0.6530715 1.667858 5.575266 +0.7474945 1.667858 5.575266 +0.8539475 1.667858 5.575266 +0.974052 1.667858 5.575266 +1.113885 1.667858 5.575266 +1.27456 1.667858 5.575266 +1.458117 1.667858 5.575266 +1.667858 1.667858 5.575266 +1.907556 1.667858 5.575266 +2.181521 1.667858 5.575266 +2.494678 1.667858 5.575266 +2.852659 1.667858 5.575266 +3.261896 1.667858 5.575266 +3.729748 1.667858 5.575266 +4.264621 1.667858 5.575266 +4.876131 1.667858 5.575266 +5.575266 1.667858 5.575266 +6.374593 1.667858 5.575266 +0 1.907556 5.575266 +0 1.907556 5.575266 +0 1.907556 5.575266 +0.002268731 1.907556 5.575266 +0.07076883 1.907556 5.575266 +0.1119241 1.907556 5.575266 +0.1475052 1.907556 5.575266 +0.1846606 1.907556 5.575266 +0.2245119 1.907556 5.575266 +0.2679612 1.907556 5.575266 +0.3158431 1.907556 5.575266 +0.3689944 1.907556 5.575266 +0.4282948 1.907556 5.575266 +0.494694 1.907556 5.575266 +0.5692344 1.907556 5.575266 +0.6530715 1.907556 5.575266 +0.7474945 1.907556 5.575266 +0.8539475 1.907556 5.575266 +0.974052 1.907556 5.575266 +1.113885 1.907556 5.575266 +1.27456 1.907556 5.575266 +1.458117 1.907556 5.575266 +1.667858 1.907556 5.575266 +1.907556 1.907556 5.575266 +2.181521 1.907556 5.575266 +2.494678 1.907556 5.575266 +2.852659 1.907556 5.575266 +3.261896 1.907556 5.575266 +3.729748 1.907556 5.575266 +4.264621 1.907556 5.575266 +4.876131 1.907556 5.575266 +5.575266 1.907556 5.575266 +6.374593 1.907556 5.575266 +0 2.181521 5.575266 +0 2.181521 5.575266 +0 2.181521 5.575266 +0.002268731 2.181521 5.575266 +0.07076883 2.181521 5.575266 +0.1119241 2.181521 5.575266 +0.1475052 2.181521 5.575266 +0.1846606 2.181521 5.575266 +0.2245119 2.181521 5.575266 +0.2679612 2.181521 5.575266 +0.3158431 2.181521 5.575266 +0.3689944 2.181521 5.575266 +0.4282948 2.181521 5.575266 +0.494694 2.181521 5.575266 +0.5692344 2.181521 5.575266 +0.6530715 2.181521 5.575266 +0.7474945 2.181521 5.575266 +0.8539475 2.181521 5.575266 +0.974052 2.181521 5.575266 +1.113885 2.181521 5.575266 +1.27456 2.181521 5.575266 +1.458117 2.181521 5.575266 +1.667858 2.181521 5.575266 +1.907556 2.181521 5.575266 +2.181521 2.181521 5.575266 +2.494678 2.181521 5.575266 +2.852659 2.181521 5.575266 +3.261896 2.181521 5.575266 +3.729748 2.181521 5.575266 +4.264621 2.181521 5.575266 +4.876131 2.181521 5.575266 +5.575266 2.181521 5.575266 +6.374593 2.181521 5.575266 +0 2.494678 5.575266 +0 2.494678 5.575266 +0 2.494678 5.575266 +0.002268731 2.494678 5.575266 +0.07076883 2.494678 5.575266 +0.1119241 2.494678 5.575266 +0.1475052 2.494678 5.575266 +0.1846606 2.494678 5.575266 +0.2245119 2.494678 5.575266 +0.2679612 2.494678 5.575266 +0.3158431 2.494678 5.575266 +0.3689944 2.494678 5.575266 +0.4282948 2.494678 5.575266 +0.494694 2.494678 5.575266 +0.5692344 2.494678 5.575266 +0.6530715 2.494678 5.575266 +0.7474945 2.494678 5.575266 +0.8539475 2.494678 5.575266 +0.974052 2.494678 5.575266 +1.113885 2.494678 5.575266 +1.27456 2.494678 5.575266 +1.458117 2.494678 5.575266 +1.667858 2.494678 5.575266 +1.907556 2.494678 5.575266 +2.181521 2.494678 5.575266 +2.494678 2.494678 5.575266 +2.852659 2.494678 5.575266 +3.261896 2.494678 5.575266 +3.729748 2.494678 5.575266 +4.264621 2.494678 5.575266 +4.876131 2.494678 5.575266 +5.575266 2.494678 5.575266 +6.374593 2.494678 5.575266 +0 2.852659 5.575266 +0 2.852659 5.575266 +0 2.852659 5.575266 +0.002268731 2.852659 5.575266 +0.07076883 2.852659 5.575266 +0.1119241 2.852659 5.575266 +0.1475052 2.852659 5.575266 +0.1846606 2.852659 5.575266 +0.2245119 2.852659 5.575266 +0.2679612 2.852659 5.575266 +0.3158431 2.852659 5.575266 +0.3689944 2.852659 5.575266 +0.4282948 2.852659 5.575266 +0.494694 2.852659 5.575266 +0.5692344 2.852659 5.575266 +0.6530715 2.852659 5.575266 +0.7474945 2.852659 5.575266 +0.8539475 2.852659 5.575266 +0.974052 2.852659 5.575266 +1.113885 2.852659 5.575266 +1.27456 2.852659 5.575266 +1.458117 2.852659 5.575266 +1.667858 2.852659 5.575266 +1.907556 2.852659 5.575266 +2.181521 2.852659 5.575266 +2.494678 2.852659 5.575266 +2.852659 2.852659 5.575266 +3.261896 2.852659 5.575266 +3.729748 2.852659 5.575266 +4.264621 2.852659 5.575266 +4.876131 2.852659 5.575266 +5.575266 2.852659 5.575266 +6.374593 2.852659 5.575266 +0 3.261896 5.575266 +0 3.261896 5.575266 +0 3.261896 5.575266 +0.002268731 3.261896 5.575266 +0.07076883 3.261896 5.575266 +0.1119241 3.261896 5.575266 +0.1475052 3.261896 5.575266 +0.1846606 3.261896 5.575266 +0.2245119 3.261896 5.575266 +0.2679612 3.261896 5.575266 +0.3158431 3.261896 5.575266 +0.3689944 3.261896 5.575266 +0.4282948 3.261896 5.575266 +0.494694 3.261896 5.575266 +0.5692344 3.261896 5.575266 +0.6530715 3.261896 5.575266 +0.7474945 3.261896 5.575266 +0.8539475 3.261896 5.575266 +0.974052 3.261896 5.575266 +1.113885 3.261896 5.575266 +1.27456 3.261896 5.575266 +1.458117 3.261896 5.575266 +1.667858 3.261896 5.575266 +1.907556 3.261896 5.575266 +2.181521 3.261896 5.575266 +2.494678 3.261896 5.575266 +2.852659 3.261896 5.575266 +3.261896 3.261896 5.575266 +3.729748 3.261896 5.575266 +4.264621 3.261896 5.575266 +4.876131 3.261896 5.575266 +5.575266 3.261896 5.575266 +6.374593 3.261896 5.575266 +0 3.729748 5.575266 +0 3.729748 5.575266 +0 3.729748 5.575266 +0.002268731 3.729748 5.575266 +0.07076883 3.729748 5.575266 +0.1119241 3.729748 5.575266 +0.1475052 3.729748 5.575266 +0.1846606 3.729748 5.575266 +0.2245119 3.729748 5.575266 +0.2679612 3.729748 5.575266 +0.3158431 3.729748 5.575266 +0.3689944 3.729748 5.575266 +0.4282948 3.729748 5.575266 +0.494694 3.729748 5.575266 +0.5692344 3.729748 5.575266 +0.6530715 3.729748 5.575266 +0.7474945 3.729748 5.575266 +0.8539475 3.729748 5.575266 +0.974052 3.729748 5.575266 +1.113885 3.729748 5.575266 +1.27456 3.729748 5.575266 +1.458117 3.729748 5.575266 +1.667858 3.729748 5.575266 +1.907556 3.729748 5.575266 +2.181521 3.729748 5.575266 +2.494678 3.729748 5.575266 +2.852659 3.729748 5.575266 +3.261896 3.729748 5.575266 +3.729748 3.729748 5.575266 +4.264621 3.729748 5.575266 +4.876131 3.729748 5.575266 +5.575266 3.729748 5.575266 +6.374593 3.729748 5.575266 +0 4.264621 5.575266 +0 4.264621 5.575266 +0 4.264621 5.575266 +0.002268731 4.264621 5.575266 +0.07076883 4.264621 5.575266 +0.1119241 4.264621 5.575266 +0.1475052 4.264621 5.575266 +0.1846606 4.264621 5.575266 +0.2245119 4.264621 5.575266 +0.2679612 4.264621 5.575266 +0.3158431 4.264621 5.575266 +0.3689944 4.264621 5.575266 +0.4282948 4.264621 5.575266 +0.494694 4.264621 5.575266 +0.5692344 4.264621 5.575266 +0.6530715 4.264621 5.575266 +0.7474945 4.264621 5.575266 +0.8539475 4.264621 5.575266 +0.974052 4.264621 5.575266 +1.113885 4.264621 5.575266 +1.27456 4.264621 5.575266 +1.458117 4.264621 5.575266 +1.667858 4.264621 5.575266 +1.907556 4.264621 5.575266 +2.181521 4.264621 5.575266 +2.494678 4.264621 5.575266 +2.852659 4.264621 5.575266 +3.261896 4.264621 5.575266 +3.729748 4.264621 5.575266 +4.264621 4.264621 5.575266 +4.876131 4.264621 5.575266 +5.575266 4.264621 5.575266 +6.374593 4.264621 5.575266 +0 4.876131 5.575266 +0 4.876131 5.575266 +0 4.876131 5.575266 +0.002268731 4.876131 5.575266 +0.07076883 4.876131 5.575266 +0.1119241 4.876131 5.575266 +0.1475052 4.876131 5.575266 +0.1846606 4.876131 5.575266 +0.2245119 4.876131 5.575266 +0.2679612 4.876131 5.575266 +0.3158431 4.876131 5.575266 +0.3689944 4.876131 5.575266 +0.4282948 4.876131 5.575266 +0.494694 4.876131 5.575266 +0.5692344 4.876131 5.575266 +0.6530715 4.876131 5.575266 +0.7474945 4.876131 5.575266 +0.8539475 4.876131 5.575266 +0.974052 4.876131 5.575266 +1.113885 4.876131 5.575266 +1.27456 4.876131 5.575266 +1.458117 4.876131 5.575266 +1.667858 4.876131 5.575266 +1.907556 4.876131 5.575266 +2.181521 4.876131 5.575266 +2.494678 4.876131 5.575266 +2.852659 4.876131 5.575266 +3.261896 4.876131 5.575266 +3.729748 4.876131 5.575266 +4.264621 4.876131 5.575266 +4.876131 4.876131 5.575266 +5.575266 4.876131 5.575266 +6.374593 4.876131 5.575266 +0 5.575266 5.575266 +0 5.575266 5.575266 +0 5.575266 5.575266 +0.002268731 5.575266 5.575266 +0.07076883 5.575266 5.575266 +0.1119241 5.575266 5.575266 +0.1475052 5.575266 5.575266 +0.1846606 5.575266 5.575266 +0.2245119 5.575266 5.575266 +0.2679612 5.575266 5.575266 +0.3158431 5.575266 5.575266 +0.3689944 5.575266 5.575266 +0.4282948 5.575266 5.575266 +0.494694 5.575266 5.575266 +0.5692344 5.575266 5.575266 +0.6530715 5.575266 5.575266 +0.7474945 5.575266 5.575266 +0.8539475 5.575266 5.575266 +0.974052 5.575266 5.575266 +1.113885 5.575266 5.575266 +1.27456 5.575266 5.575266 +1.458117 5.575266 5.575266 +1.667858 5.575266 5.575266 +1.907556 5.575266 5.575266 +2.181521 5.575266 5.575266 +2.494678 5.575266 5.575266 +2.852659 5.575266 5.575266 +3.261896 5.575266 5.575266 +3.729748 5.575266 5.575266 +4.264621 5.575266 5.575266 +4.876131 5.575266 5.575266 +5.575266 5.575266 5.575266 +6.374593 5.575266 5.575266 +0 6.374593 5.575266 +0 6.374593 5.575266 +0 6.374593 5.575266 +0.002268731 6.374593 5.575266 +0.07076883 6.374593 5.575266 +0.1119241 6.374593 5.575266 +0.1475052 6.374593 5.575266 +0.1846606 6.374593 5.575266 +0.2245119 6.374593 5.575266 +0.2679612 6.374593 5.575266 +0.3158431 6.374593 5.575266 +0.3689944 6.374593 5.575266 +0.4282948 6.374593 5.575266 +0.494694 6.374593 5.575266 +0.5692344 6.374593 5.575266 +0.6530715 6.374593 5.575266 +0.7474945 6.374593 5.575266 +0.8539475 6.374593 5.575266 +0.974052 6.374593 5.575266 +1.113885 6.374593 5.575266 +1.27456 6.374593 5.575266 +1.458117 6.374593 5.575266 +1.667858 6.374593 5.575266 +1.907556 6.374593 5.575266 +2.181521 6.374593 5.575266 +2.494678 6.374593 5.575266 +2.852659 6.374593 5.575266 +3.261896 6.374593 5.575266 +3.729748 6.374593 5.575266 +4.264621 6.374593 5.575266 +4.876131 6.374593 5.575266 +5.575266 6.374593 5.575266 +6.374593 6.374593 5.575266 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0.002268731 6.374593 +0 0.002268731 6.374593 +0 0.002268731 6.374593 +0.002268731 0.002268731 6.374593 +0.07076883 0.002268731 6.374593 +0.1119241 0.002268731 6.374593 +0.1475052 0.002268731 6.374593 +0.1846606 0.002268731 6.374593 +0.2245119 0.002268731 6.374593 +0.2679612 0.002268731 6.374593 +0.3158431 0.002268731 6.374593 +0.3689944 0.002268731 6.374593 +0.4282948 0.002268731 6.374593 +0.494694 0.002268731 6.374593 +0.5692344 0.002268731 6.374593 +0.6530715 0.002268731 6.374593 +0.7474945 0.002268731 6.374593 +0.8539475 0.002268731 6.374593 +0.974052 0.002268731 6.374593 +1.113885 0.002268731 6.374593 +1.27456 0.002268731 6.374593 +1.458117 0.002268731 6.374593 +1.667858 0.002268731 6.374593 +1.907556 0.002268731 6.374593 +2.181521 0.002268731 6.374593 +2.494678 0.002268731 6.374593 +2.852659 0.002268731 6.374593 +3.261896 0.002268731 6.374593 +3.729748 0.002268731 6.374593 +4.264621 0.002268731 6.374593 +4.876131 0.002268731 6.374593 +5.575266 0.002268731 6.374593 +6.374593 0.002268731 6.374593 +0 0.07076883 6.374593 +0 0.07076883 6.374593 +0 0.07076883 6.374593 +0.002268731 0.07076883 6.374593 +0.07076883 0.07076883 6.374593 +0.1119241 0.07076883 6.374593 +0.1475052 0.07076883 6.374593 +0.1846606 0.07076883 6.374593 +0.2245119 0.07076883 6.374593 +0.2679612 0.07076883 6.374593 +0.3158431 0.07076883 6.374593 +0.3689944 0.07076883 6.374593 +0.4282948 0.07076883 6.374593 +0.494694 0.07076883 6.374593 +0.5692344 0.07076883 6.374593 +0.6530715 0.07076883 6.374593 +0.7474945 0.07076883 6.374593 +0.8539475 0.07076883 6.374593 +0.974052 0.07076883 6.374593 +1.113885 0.07076883 6.374593 +1.27456 0.07076883 6.374593 +1.458117 0.07076883 6.374593 +1.667858 0.07076883 6.374593 +1.907556 0.07076883 6.374593 +2.181521 0.07076883 6.374593 +2.494678 0.07076883 6.374593 +2.852659 0.07076883 6.374593 +3.261896 0.07076883 6.374593 +3.729748 0.07076883 6.374593 +4.264621 0.07076883 6.374593 +4.876131 0.07076883 6.374593 +5.575266 0.07076883 6.374593 +6.374593 0.07076883 6.374593 +0 0.1119241 6.374593 +0 0.1119241 6.374593 +0 0.1119241 6.374593 +0.002268731 0.1119241 6.374593 +0.07076883 0.1119241 6.374593 +0.1119241 0.1119241 6.374593 +0.1475052 0.1119241 6.374593 +0.1846606 0.1119241 6.374593 +0.2245119 0.1119241 6.374593 +0.2679612 0.1119241 6.374593 +0.3158431 0.1119241 6.374593 +0.3689944 0.1119241 6.374593 +0.4282948 0.1119241 6.374593 +0.494694 0.1119241 6.374593 +0.5692344 0.1119241 6.374593 +0.6530715 0.1119241 6.374593 +0.7474945 0.1119241 6.374593 +0.8539475 0.1119241 6.374593 +0.974052 0.1119241 6.374593 +1.113885 0.1119241 6.374593 +1.27456 0.1119241 6.374593 +1.458117 0.1119241 6.374593 +1.667858 0.1119241 6.374593 +1.907556 0.1119241 6.374593 +2.181521 0.1119241 6.374593 +2.494678 0.1119241 6.374593 +2.852659 0.1119241 6.374593 +3.261896 0.1119241 6.374593 +3.729748 0.1119241 6.374593 +4.264621 0.1119241 6.374593 +4.876131 0.1119241 6.374593 +5.575266 0.1119241 6.374593 +6.374593 0.1119241 6.374593 +0 0.1475052 6.374593 +0 0.1475052 6.374593 +0 0.1475052 6.374593 +0.002268731 0.1475052 6.374593 +0.07076883 0.1475052 6.374593 +0.1119241 0.1475052 6.374593 +0.1475052 0.1475052 6.374593 +0.1846606 0.1475052 6.374593 +0.2245119 0.1475052 6.374593 +0.2679612 0.1475052 6.374593 +0.3158431 0.1475052 6.374593 +0.3689944 0.1475052 6.374593 +0.4282948 0.1475052 6.374593 +0.494694 0.1475052 6.374593 +0.5692344 0.1475052 6.374593 +0.6530715 0.1475052 6.374593 +0.7474945 0.1475052 6.374593 +0.8539475 0.1475052 6.374593 +0.974052 0.1475052 6.374593 +1.113885 0.1475052 6.374593 +1.27456 0.1475052 6.374593 +1.458117 0.1475052 6.374593 +1.667858 0.1475052 6.374593 +1.907556 0.1475052 6.374593 +2.181521 0.1475052 6.374593 +2.494678 0.1475052 6.374593 +2.852659 0.1475052 6.374593 +3.261896 0.1475052 6.374593 +3.729748 0.1475052 6.374593 +4.264621 0.1475052 6.374593 +4.876131 0.1475052 6.374593 +5.575266 0.1475052 6.374593 +6.374593 0.1475052 6.374593 +0 0.1846606 6.374593 +0 0.1846606 6.374593 +0 0.1846606 6.374593 +0.002268731 0.1846606 6.374593 +0.07076883 0.1846606 6.374593 +0.1119241 0.1846606 6.374593 +0.1475052 0.1846606 6.374593 +0.1846606 0.1846606 6.374593 +0.2245119 0.1846606 6.374593 +0.2679612 0.1846606 6.374593 +0.3158431 0.1846606 6.374593 +0.3689944 0.1846606 6.374593 +0.4282948 0.1846606 6.374593 +0.494694 0.1846606 6.374593 +0.5692344 0.1846606 6.374593 +0.6530715 0.1846606 6.374593 +0.7474945 0.1846606 6.374593 +0.8539475 0.1846606 6.374593 +0.974052 0.1846606 6.374593 +1.113885 0.1846606 6.374593 +1.27456 0.1846606 6.374593 +1.458117 0.1846606 6.374593 +1.667858 0.1846606 6.374593 +1.907556 0.1846606 6.374593 +2.181521 0.1846606 6.374593 +2.494678 0.1846606 6.374593 +2.852659 0.1846606 6.374593 +3.261896 0.1846606 6.374593 +3.729748 0.1846606 6.374593 +4.264621 0.1846606 6.374593 +4.876131 0.1846606 6.374593 +5.575266 0.1846606 6.374593 +6.374593 0.1846606 6.374593 +0 0.2245119 6.374593 +0 0.2245119 6.374593 +0 0.2245119 6.374593 +0.002268731 0.2245119 6.374593 +0.07076883 0.2245119 6.374593 +0.1119241 0.2245119 6.374593 +0.1475052 0.2245119 6.374593 +0.1846606 0.2245119 6.374593 +0.2245119 0.2245119 6.374593 +0.2679612 0.2245119 6.374593 +0.3158431 0.2245119 6.374593 +0.3689944 0.2245119 6.374593 +0.4282948 0.2245119 6.374593 +0.494694 0.2245119 6.374593 +0.5692344 0.2245119 6.374593 +0.6530715 0.2245119 6.374593 +0.7474945 0.2245119 6.374593 +0.8539475 0.2245119 6.374593 +0.974052 0.2245119 6.374593 +1.113885 0.2245119 6.374593 +1.27456 0.2245119 6.374593 +1.458117 0.2245119 6.374593 +1.667858 0.2245119 6.374593 +1.907556 0.2245119 6.374593 +2.181521 0.2245119 6.374593 +2.494678 0.2245119 6.374593 +2.852659 0.2245119 6.374593 +3.261896 0.2245119 6.374593 +3.729748 0.2245119 6.374593 +4.264621 0.2245119 6.374593 +4.876131 0.2245119 6.374593 +5.575266 0.2245119 6.374593 +6.374593 0.2245119 6.374593 +0 0.2679612 6.374593 +0 0.2679612 6.374593 +0 0.2679612 6.374593 +0.002268731 0.2679612 6.374593 +0.07076883 0.2679612 6.374593 +0.1119241 0.2679612 6.374593 +0.1475052 0.2679612 6.374593 +0.1846606 0.2679612 6.374593 +0.2245119 0.2679612 6.374593 +0.2679612 0.2679612 6.374593 +0.3158431 0.2679612 6.374593 +0.3689944 0.2679612 6.374593 +0.4282948 0.2679612 6.374593 +0.494694 0.2679612 6.374593 +0.5692344 0.2679612 6.374593 +0.6530715 0.2679612 6.374593 +0.7474945 0.2679612 6.374593 +0.8539475 0.2679612 6.374593 +0.974052 0.2679612 6.374593 +1.113885 0.2679612 6.374593 +1.27456 0.2679612 6.374593 +1.458117 0.2679612 6.374593 +1.667858 0.2679612 6.374593 +1.907556 0.2679612 6.374593 +2.181521 0.2679612 6.374593 +2.494678 0.2679612 6.374593 +2.852659 0.2679612 6.374593 +3.261896 0.2679612 6.374593 +3.729748 0.2679612 6.374593 +4.264621 0.2679612 6.374593 +4.876131 0.2679612 6.374593 +5.575266 0.2679612 6.374593 +6.374593 0.2679612 6.374593 +0 0.3158431 6.374593 +0 0.3158431 6.374593 +0 0.3158431 6.374593 +0.002268731 0.3158431 6.374593 +0.07076883 0.3158431 6.374593 +0.1119241 0.3158431 6.374593 +0.1475052 0.3158431 6.374593 +0.1846606 0.3158431 6.374593 +0.2245119 0.3158431 6.374593 +0.2679612 0.3158431 6.374593 +0.3158431 0.3158431 6.374593 +0.3689944 0.3158431 6.374593 +0.4282948 0.3158431 6.374593 +0.494694 0.3158431 6.374593 +0.5692344 0.3158431 6.374593 +0.6530715 0.3158431 6.374593 +0.7474945 0.3158431 6.374593 +0.8539475 0.3158431 6.374593 +0.974052 0.3158431 6.374593 +1.113885 0.3158431 6.374593 +1.27456 0.3158431 6.374593 +1.458117 0.3158431 6.374593 +1.667858 0.3158431 6.374593 +1.907556 0.3158431 6.374593 +2.181521 0.3158431 6.374593 +2.494678 0.3158431 6.374593 +2.852659 0.3158431 6.374593 +3.261896 0.3158431 6.374593 +3.729748 0.3158431 6.374593 +4.264621 0.3158431 6.374593 +4.876131 0.3158431 6.374593 +5.575266 0.3158431 6.374593 +6.374593 0.3158431 6.374593 +0 0.3689944 6.374593 +0 0.3689944 6.374593 +0 0.3689944 6.374593 +0.002268731 0.3689944 6.374593 +0.07076883 0.3689944 6.374593 +0.1119241 0.3689944 6.374593 +0.1475052 0.3689944 6.374593 +0.1846606 0.3689944 6.374593 +0.2245119 0.3689944 6.374593 +0.2679612 0.3689944 6.374593 +0.3158431 0.3689944 6.374593 +0.3689944 0.3689944 6.374593 +0.4282948 0.3689944 6.374593 +0.494694 0.3689944 6.374593 +0.5692344 0.3689944 6.374593 +0.6530715 0.3689944 6.374593 +0.7474945 0.3689944 6.374593 +0.8539475 0.3689944 6.374593 +0.974052 0.3689944 6.374593 +1.113885 0.3689944 6.374593 +1.27456 0.3689944 6.374593 +1.458117 0.3689944 6.374593 +1.667858 0.3689944 6.374593 +1.907556 0.3689944 6.374593 +2.181521 0.3689944 6.374593 +2.494678 0.3689944 6.374593 +2.852659 0.3689944 6.374593 +3.261896 0.3689944 6.374593 +3.729748 0.3689944 6.374593 +4.264621 0.3689944 6.374593 +4.876131 0.3689944 6.374593 +5.575266 0.3689944 6.374593 +6.374593 0.3689944 6.374593 +0 0.4282948 6.374593 +0 0.4282948 6.374593 +0 0.4282948 6.374593 +0.002268731 0.4282948 6.374593 +0.07076883 0.4282948 6.374593 +0.1119241 0.4282948 6.374593 +0.1475052 0.4282948 6.374593 +0.1846606 0.4282948 6.374593 +0.2245119 0.4282948 6.374593 +0.2679612 0.4282948 6.374593 +0.3158431 0.4282948 6.374593 +0.3689944 0.4282948 6.374593 +0.4282948 0.4282948 6.374593 +0.494694 0.4282948 6.374593 +0.5692344 0.4282948 6.374593 +0.6530715 0.4282948 6.374593 +0.7474945 0.4282948 6.374593 +0.8539475 0.4282948 6.374593 +0.974052 0.4282948 6.374593 +1.113885 0.4282948 6.374593 +1.27456 0.4282948 6.374593 +1.458117 0.4282948 6.374593 +1.667858 0.4282948 6.374593 +1.907556 0.4282948 6.374593 +2.181521 0.4282948 6.374593 +2.494678 0.4282948 6.374593 +2.852659 0.4282948 6.374593 +3.261896 0.4282948 6.374593 +3.729748 0.4282948 6.374593 +4.264621 0.4282948 6.374593 +4.876131 0.4282948 6.374593 +5.575266 0.4282948 6.374593 +6.374593 0.4282948 6.374593 +0 0.494694 6.374593 +0 0.494694 6.374593 +0 0.494694 6.374593 +0.002268731 0.494694 6.374593 +0.07076883 0.494694 6.374593 +0.1119241 0.494694 6.374593 +0.1475052 0.494694 6.374593 +0.1846606 0.494694 6.374593 +0.2245119 0.494694 6.374593 +0.2679612 0.494694 6.374593 +0.3158431 0.494694 6.374593 +0.3689944 0.494694 6.374593 +0.4282948 0.494694 6.374593 +0.494694 0.494694 6.374593 +0.5692344 0.494694 6.374593 +0.6530715 0.494694 6.374593 +0.7474945 0.494694 6.374593 +0.8539475 0.494694 6.374593 +0.974052 0.494694 6.374593 +1.113885 0.494694 6.374593 +1.27456 0.494694 6.374593 +1.458117 0.494694 6.374593 +1.667858 0.494694 6.374593 +1.907556 0.494694 6.374593 +2.181521 0.494694 6.374593 +2.494678 0.494694 6.374593 +2.852659 0.494694 6.374593 +3.261896 0.494694 6.374593 +3.729748 0.494694 6.374593 +4.264621 0.494694 6.374593 +4.876131 0.494694 6.374593 +5.575266 0.494694 6.374593 +6.374593 0.494694 6.374593 +0 0.5692344 6.374593 +0 0.5692344 6.374593 +0 0.5692344 6.374593 +0.002268731 0.5692344 6.374593 +0.07076883 0.5692344 6.374593 +0.1119241 0.5692344 6.374593 +0.1475052 0.5692344 6.374593 +0.1846606 0.5692344 6.374593 +0.2245119 0.5692344 6.374593 +0.2679612 0.5692344 6.374593 +0.3158431 0.5692344 6.374593 +0.3689944 0.5692344 6.374593 +0.4282948 0.5692344 6.374593 +0.494694 0.5692344 6.374593 +0.5692344 0.5692344 6.374593 +0.6530715 0.5692344 6.374593 +0.7474945 0.5692344 6.374593 +0.8539475 0.5692344 6.374593 +0.974052 0.5692344 6.374593 +1.113885 0.5692344 6.374593 +1.27456 0.5692344 6.374593 +1.458117 0.5692344 6.374593 +1.667858 0.5692344 6.374593 +1.907556 0.5692344 6.374593 +2.181521 0.5692344 6.374593 +2.494678 0.5692344 6.374593 +2.852659 0.5692344 6.374593 +3.261896 0.5692344 6.374593 +3.729748 0.5692344 6.374593 +4.264621 0.5692344 6.374593 +4.876131 0.5692344 6.374593 +5.575266 0.5692344 6.374593 +6.374593 0.5692344 6.374593 +0 0.6530715 6.374593 +0 0.6530715 6.374593 +0 0.6530715 6.374593 +0.002268731 0.6530715 6.374593 +0.07076883 0.6530715 6.374593 +0.1119241 0.6530715 6.374593 +0.1475052 0.6530715 6.374593 +0.1846606 0.6530715 6.374593 +0.2245119 0.6530715 6.374593 +0.2679612 0.6530715 6.374593 +0.3158431 0.6530715 6.374593 +0.3689944 0.6530715 6.374593 +0.4282948 0.6530715 6.374593 +0.494694 0.6530715 6.374593 +0.5692344 0.6530715 6.374593 +0.6530715 0.6530715 6.374593 +0.7474945 0.6530715 6.374593 +0.8539475 0.6530715 6.374593 +0.974052 0.6530715 6.374593 +1.113885 0.6530715 6.374593 +1.27456 0.6530715 6.374593 +1.458117 0.6530715 6.374593 +1.667858 0.6530715 6.374593 +1.907556 0.6530715 6.374593 +2.181521 0.6530715 6.374593 +2.494678 0.6530715 6.374593 +2.852659 0.6530715 6.374593 +3.261896 0.6530715 6.374593 +3.729748 0.6530715 6.374593 +4.264621 0.6530715 6.374593 +4.876131 0.6530715 6.374593 +5.575266 0.6530715 6.374593 +6.374593 0.6530715 6.374593 +0 0.7474945 6.374593 +0 0.7474945 6.374593 +0 0.7474945 6.374593 +0.002268731 0.7474945 6.374593 +0.07076883 0.7474945 6.374593 +0.1119241 0.7474945 6.374593 +0.1475052 0.7474945 6.374593 +0.1846606 0.7474945 6.374593 +0.2245119 0.7474945 6.374593 +0.2679612 0.7474945 6.374593 +0.3158431 0.7474945 6.374593 +0.3689944 0.7474945 6.374593 +0.4282948 0.7474945 6.374593 +0.494694 0.7474945 6.374593 +0.5692344 0.7474945 6.374593 +0.6530715 0.7474945 6.374593 +0.7474945 0.7474945 6.374593 +0.8539475 0.7474945 6.374593 +0.974052 0.7474945 6.374593 +1.113885 0.7474945 6.374593 +1.27456 0.7474945 6.374593 +1.458117 0.7474945 6.374593 +1.667858 0.7474945 6.374593 +1.907556 0.7474945 6.374593 +2.181521 0.7474945 6.374593 +2.494678 0.7474945 6.374593 +2.852659 0.7474945 6.374593 +3.261896 0.7474945 6.374593 +3.729748 0.7474945 6.374593 +4.264621 0.7474945 6.374593 +4.876131 0.7474945 6.374593 +5.575266 0.7474945 6.374593 +6.374593 0.7474945 6.374593 +0 0.8539475 6.374593 +0 0.8539475 6.374593 +0 0.8539475 6.374593 +0.002268731 0.8539475 6.374593 +0.07076883 0.8539475 6.374593 +0.1119241 0.8539475 6.374593 +0.1475052 0.8539475 6.374593 +0.1846606 0.8539475 6.374593 +0.2245119 0.8539475 6.374593 +0.2679612 0.8539475 6.374593 +0.3158431 0.8539475 6.374593 +0.3689944 0.8539475 6.374593 +0.4282948 0.8539475 6.374593 +0.494694 0.8539475 6.374593 +0.5692344 0.8539475 6.374593 +0.6530715 0.8539475 6.374593 +0.7474945 0.8539475 6.374593 +0.8539475 0.8539475 6.374593 +0.974052 0.8539475 6.374593 +1.113885 0.8539475 6.374593 +1.27456 0.8539475 6.374593 +1.458117 0.8539475 6.374593 +1.667858 0.8539475 6.374593 +1.907556 0.8539475 6.374593 +2.181521 0.8539475 6.374593 +2.494678 0.8539475 6.374593 +2.852659 0.8539475 6.374593 +3.261896 0.8539475 6.374593 +3.729748 0.8539475 6.374593 +4.264621 0.8539475 6.374593 +4.876131 0.8539475 6.374593 +5.575266 0.8539475 6.374593 +6.374593 0.8539475 6.374593 +0 0.974052 6.374593 +0 0.974052 6.374593 +0 0.974052 6.374593 +0.002268731 0.974052 6.374593 +0.07076883 0.974052 6.374593 +0.1119241 0.974052 6.374593 +0.1475052 0.974052 6.374593 +0.1846606 0.974052 6.374593 +0.2245119 0.974052 6.374593 +0.2679612 0.974052 6.374593 +0.3158431 0.974052 6.374593 +0.3689944 0.974052 6.374593 +0.4282948 0.974052 6.374593 +0.494694 0.974052 6.374593 +0.5692344 0.974052 6.374593 +0.6530715 0.974052 6.374593 +0.7474945 0.974052 6.374593 +0.8539475 0.974052 6.374593 +0.974052 0.974052 6.374593 +1.113885 0.974052 6.374593 +1.27456 0.974052 6.374593 +1.458117 0.974052 6.374593 +1.667858 0.974052 6.374593 +1.907556 0.974052 6.374593 +2.181521 0.974052 6.374593 +2.494678 0.974052 6.374593 +2.852659 0.974052 6.374593 +3.261896 0.974052 6.374593 +3.729748 0.974052 6.374593 +4.264621 0.974052 6.374593 +4.876131 0.974052 6.374593 +5.575266 0.974052 6.374593 +6.374593 0.974052 6.374593 +0 1.113885 6.374593 +0 1.113885 6.374593 +0 1.113885 6.374593 +0.002268731 1.113885 6.374593 +0.07076883 1.113885 6.374593 +0.1119241 1.113885 6.374593 +0.1475052 1.113885 6.374593 +0.1846606 1.113885 6.374593 +0.2245119 1.113885 6.374593 +0.2679612 1.113885 6.374593 +0.3158431 1.113885 6.374593 +0.3689944 1.113885 6.374593 +0.4282948 1.113885 6.374593 +0.494694 1.113885 6.374593 +0.5692344 1.113885 6.374593 +0.6530715 1.113885 6.374593 +0.7474945 1.113885 6.374593 +0.8539475 1.113885 6.374593 +0.974052 1.113885 6.374593 +1.113885 1.113885 6.374593 +1.27456 1.113885 6.374593 +1.458117 1.113885 6.374593 +1.667858 1.113885 6.374593 +1.907556 1.113885 6.374593 +2.181521 1.113885 6.374593 +2.494678 1.113885 6.374593 +2.852659 1.113885 6.374593 +3.261896 1.113885 6.374593 +3.729748 1.113885 6.374593 +4.264621 1.113885 6.374593 +4.876131 1.113885 6.374593 +5.575266 1.113885 6.374593 +6.374593 1.113885 6.374593 +0 1.27456 6.374593 +0 1.27456 6.374593 +0 1.27456 6.374593 +0.002268731 1.27456 6.374593 +0.07076883 1.27456 6.374593 +0.1119241 1.27456 6.374593 +0.1475052 1.27456 6.374593 +0.1846606 1.27456 6.374593 +0.2245119 1.27456 6.374593 +0.2679612 1.27456 6.374593 +0.3158431 1.27456 6.374593 +0.3689944 1.27456 6.374593 +0.4282948 1.27456 6.374593 +0.494694 1.27456 6.374593 +0.5692344 1.27456 6.374593 +0.6530715 1.27456 6.374593 +0.7474945 1.27456 6.374593 +0.8539475 1.27456 6.374593 +0.974052 1.27456 6.374593 +1.113885 1.27456 6.374593 +1.27456 1.27456 6.374593 +1.458117 1.27456 6.374593 +1.667858 1.27456 6.374593 +1.907556 1.27456 6.374593 +2.181521 1.27456 6.374593 +2.494678 1.27456 6.374593 +2.852659 1.27456 6.374593 +3.261896 1.27456 6.374593 +3.729748 1.27456 6.374593 +4.264621 1.27456 6.374593 +4.876131 1.27456 6.374593 +5.575266 1.27456 6.374593 +6.374593 1.27456 6.374593 +0 1.458117 6.374593 +0 1.458117 6.374593 +0 1.458117 6.374593 +0.002268731 1.458117 6.374593 +0.07076883 1.458117 6.374593 +0.1119241 1.458117 6.374593 +0.1475052 1.458117 6.374593 +0.1846606 1.458117 6.374593 +0.2245119 1.458117 6.374593 +0.2679612 1.458117 6.374593 +0.3158431 1.458117 6.374593 +0.3689944 1.458117 6.374593 +0.4282948 1.458117 6.374593 +0.494694 1.458117 6.374593 +0.5692344 1.458117 6.374593 +0.6530715 1.458117 6.374593 +0.7474945 1.458117 6.374593 +0.8539475 1.458117 6.374593 +0.974052 1.458117 6.374593 +1.113885 1.458117 6.374593 +1.27456 1.458117 6.374593 +1.458117 1.458117 6.374593 +1.667858 1.458117 6.374593 +1.907556 1.458117 6.374593 +2.181521 1.458117 6.374593 +2.494678 1.458117 6.374593 +2.852659 1.458117 6.374593 +3.261896 1.458117 6.374593 +3.729748 1.458117 6.374593 +4.264621 1.458117 6.374593 +4.876131 1.458117 6.374593 +5.575266 1.458117 6.374593 +6.374593 1.458117 6.374593 +0 1.667858 6.374593 +0 1.667858 6.374593 +0 1.667858 6.374593 +0.002268731 1.667858 6.374593 +0.07076883 1.667858 6.374593 +0.1119241 1.667858 6.374593 +0.1475052 1.667858 6.374593 +0.1846606 1.667858 6.374593 +0.2245119 1.667858 6.374593 +0.2679612 1.667858 6.374593 +0.3158431 1.667858 6.374593 +0.3689944 1.667858 6.374593 +0.4282948 1.667858 6.374593 +0.494694 1.667858 6.374593 +0.5692344 1.667858 6.374593 +0.6530715 1.667858 6.374593 +0.7474945 1.667858 6.374593 +0.8539475 1.667858 6.374593 +0.974052 1.667858 6.374593 +1.113885 1.667858 6.374593 +1.27456 1.667858 6.374593 +1.458117 1.667858 6.374593 +1.667858 1.667858 6.374593 +1.907556 1.667858 6.374593 +2.181521 1.667858 6.374593 +2.494678 1.667858 6.374593 +2.852659 1.667858 6.374593 +3.261896 1.667858 6.374593 +3.729748 1.667858 6.374593 +4.264621 1.667858 6.374593 +4.876131 1.667858 6.374593 +5.575266 1.667858 6.374593 +6.374593 1.667858 6.374593 +0 1.907556 6.374593 +0 1.907556 6.374593 +0 1.907556 6.374593 +0.002268731 1.907556 6.374593 +0.07076883 1.907556 6.374593 +0.1119241 1.907556 6.374593 +0.1475052 1.907556 6.374593 +0.1846606 1.907556 6.374593 +0.2245119 1.907556 6.374593 +0.2679612 1.907556 6.374593 +0.3158431 1.907556 6.374593 +0.3689944 1.907556 6.374593 +0.4282948 1.907556 6.374593 +0.494694 1.907556 6.374593 +0.5692344 1.907556 6.374593 +0.6530715 1.907556 6.374593 +0.7474945 1.907556 6.374593 +0.8539475 1.907556 6.374593 +0.974052 1.907556 6.374593 +1.113885 1.907556 6.374593 +1.27456 1.907556 6.374593 +1.458117 1.907556 6.374593 +1.667858 1.907556 6.374593 +1.907556 1.907556 6.374593 +2.181521 1.907556 6.374593 +2.494678 1.907556 6.374593 +2.852659 1.907556 6.374593 +3.261896 1.907556 6.374593 +3.729748 1.907556 6.374593 +4.264621 1.907556 6.374593 +4.876131 1.907556 6.374593 +5.575266 1.907556 6.374593 +6.374593 1.907556 6.374593 +0 2.181521 6.374593 +0 2.181521 6.374593 +0 2.181521 6.374593 +0.002268731 2.181521 6.374593 +0.07076883 2.181521 6.374593 +0.1119241 2.181521 6.374593 +0.1475052 2.181521 6.374593 +0.1846606 2.181521 6.374593 +0.2245119 2.181521 6.374593 +0.2679612 2.181521 6.374593 +0.3158431 2.181521 6.374593 +0.3689944 2.181521 6.374593 +0.4282948 2.181521 6.374593 +0.494694 2.181521 6.374593 +0.5692344 2.181521 6.374593 +0.6530715 2.181521 6.374593 +0.7474945 2.181521 6.374593 +0.8539475 2.181521 6.374593 +0.974052 2.181521 6.374593 +1.113885 2.181521 6.374593 +1.27456 2.181521 6.374593 +1.458117 2.181521 6.374593 +1.667858 2.181521 6.374593 +1.907556 2.181521 6.374593 +2.181521 2.181521 6.374593 +2.494678 2.181521 6.374593 +2.852659 2.181521 6.374593 +3.261896 2.181521 6.374593 +3.729748 2.181521 6.374593 +4.264621 2.181521 6.374593 +4.876131 2.181521 6.374593 +5.575266 2.181521 6.374593 +6.374593 2.181521 6.374593 +0 2.494678 6.374593 +0 2.494678 6.374593 +0 2.494678 6.374593 +0.002268731 2.494678 6.374593 +0.07076883 2.494678 6.374593 +0.1119241 2.494678 6.374593 +0.1475052 2.494678 6.374593 +0.1846606 2.494678 6.374593 +0.2245119 2.494678 6.374593 +0.2679612 2.494678 6.374593 +0.3158431 2.494678 6.374593 +0.3689944 2.494678 6.374593 +0.4282948 2.494678 6.374593 +0.494694 2.494678 6.374593 +0.5692344 2.494678 6.374593 +0.6530715 2.494678 6.374593 +0.7474945 2.494678 6.374593 +0.8539475 2.494678 6.374593 +0.974052 2.494678 6.374593 +1.113885 2.494678 6.374593 +1.27456 2.494678 6.374593 +1.458117 2.494678 6.374593 +1.667858 2.494678 6.374593 +1.907556 2.494678 6.374593 +2.181521 2.494678 6.374593 +2.494678 2.494678 6.374593 +2.852659 2.494678 6.374593 +3.261896 2.494678 6.374593 +3.729748 2.494678 6.374593 +4.264621 2.494678 6.374593 +4.876131 2.494678 6.374593 +5.575266 2.494678 6.374593 +6.374593 2.494678 6.374593 +0 2.852659 6.374593 +0 2.852659 6.374593 +0 2.852659 6.374593 +0.002268731 2.852659 6.374593 +0.07076883 2.852659 6.374593 +0.1119241 2.852659 6.374593 +0.1475052 2.852659 6.374593 +0.1846606 2.852659 6.374593 +0.2245119 2.852659 6.374593 +0.2679612 2.852659 6.374593 +0.3158431 2.852659 6.374593 +0.3689944 2.852659 6.374593 +0.4282948 2.852659 6.374593 +0.494694 2.852659 6.374593 +0.5692344 2.852659 6.374593 +0.6530715 2.852659 6.374593 +0.7474945 2.852659 6.374593 +0.8539475 2.852659 6.374593 +0.974052 2.852659 6.374593 +1.113885 2.852659 6.374593 +1.27456 2.852659 6.374593 +1.458117 2.852659 6.374593 +1.667858 2.852659 6.374593 +1.907556 2.852659 6.374593 +2.181521 2.852659 6.374593 +2.494678 2.852659 6.374593 +2.852659 2.852659 6.374593 +3.261896 2.852659 6.374593 +3.729748 2.852659 6.374593 +4.264621 2.852659 6.374593 +4.876131 2.852659 6.374593 +5.575266 2.852659 6.374593 +6.374593 2.852659 6.374593 +0 3.261896 6.374593 +0 3.261896 6.374593 +0 3.261896 6.374593 +0.002268731 3.261896 6.374593 +0.07076883 3.261896 6.374593 +0.1119241 3.261896 6.374593 +0.1475052 3.261896 6.374593 +0.1846606 3.261896 6.374593 +0.2245119 3.261896 6.374593 +0.2679612 3.261896 6.374593 +0.3158431 3.261896 6.374593 +0.3689944 3.261896 6.374593 +0.4282948 3.261896 6.374593 +0.494694 3.261896 6.374593 +0.5692344 3.261896 6.374593 +0.6530715 3.261896 6.374593 +0.7474945 3.261896 6.374593 +0.8539475 3.261896 6.374593 +0.974052 3.261896 6.374593 +1.113885 3.261896 6.374593 +1.27456 3.261896 6.374593 +1.458117 3.261896 6.374593 +1.667858 3.261896 6.374593 +1.907556 3.261896 6.374593 +2.181521 3.261896 6.374593 +2.494678 3.261896 6.374593 +2.852659 3.261896 6.374593 +3.261896 3.261896 6.374593 +3.729748 3.261896 6.374593 +4.264621 3.261896 6.374593 +4.876131 3.261896 6.374593 +5.575266 3.261896 6.374593 +6.374593 3.261896 6.374593 +0 3.729748 6.374593 +0 3.729748 6.374593 +0 3.729748 6.374593 +0.002268731 3.729748 6.374593 +0.07076883 3.729748 6.374593 +0.1119241 3.729748 6.374593 +0.1475052 3.729748 6.374593 +0.1846606 3.729748 6.374593 +0.2245119 3.729748 6.374593 +0.2679612 3.729748 6.374593 +0.3158431 3.729748 6.374593 +0.3689944 3.729748 6.374593 +0.4282948 3.729748 6.374593 +0.494694 3.729748 6.374593 +0.5692344 3.729748 6.374593 +0.6530715 3.729748 6.374593 +0.7474945 3.729748 6.374593 +0.8539475 3.729748 6.374593 +0.974052 3.729748 6.374593 +1.113885 3.729748 6.374593 +1.27456 3.729748 6.374593 +1.458117 3.729748 6.374593 +1.667858 3.729748 6.374593 +1.907556 3.729748 6.374593 +2.181521 3.729748 6.374593 +2.494678 3.729748 6.374593 +2.852659 3.729748 6.374593 +3.261896 3.729748 6.374593 +3.729748 3.729748 6.374593 +4.264621 3.729748 6.374593 +4.876131 3.729748 6.374593 +5.575266 3.729748 6.374593 +6.374593 3.729748 6.374593 +0 4.264621 6.374593 +0 4.264621 6.374593 +0 4.264621 6.374593 +0.002268731 4.264621 6.374593 +0.07076883 4.264621 6.374593 +0.1119241 4.264621 6.374593 +0.1475052 4.264621 6.374593 +0.1846606 4.264621 6.374593 +0.2245119 4.264621 6.374593 +0.2679612 4.264621 6.374593 +0.3158431 4.264621 6.374593 +0.3689944 4.264621 6.374593 +0.4282948 4.264621 6.374593 +0.494694 4.264621 6.374593 +0.5692344 4.264621 6.374593 +0.6530715 4.264621 6.374593 +0.7474945 4.264621 6.374593 +0.8539475 4.264621 6.374593 +0.974052 4.264621 6.374593 +1.113885 4.264621 6.374593 +1.27456 4.264621 6.374593 +1.458117 4.264621 6.374593 +1.667858 4.264621 6.374593 +1.907556 4.264621 6.374593 +2.181521 4.264621 6.374593 +2.494678 4.264621 6.374593 +2.852659 4.264621 6.374593 +3.261896 4.264621 6.374593 +3.729748 4.264621 6.374593 +4.264621 4.264621 6.374593 +4.876131 4.264621 6.374593 +5.575266 4.264621 6.374593 +6.374593 4.264621 6.374593 +0 4.876131 6.374593 +0 4.876131 6.374593 +0 4.876131 6.374593 +0.002268731 4.876131 6.374593 +0.07076883 4.876131 6.374593 +0.1119241 4.876131 6.374593 +0.1475052 4.876131 6.374593 +0.1846606 4.876131 6.374593 +0.2245119 4.876131 6.374593 +0.2679612 4.876131 6.374593 +0.3158431 4.876131 6.374593 +0.3689944 4.876131 6.374593 +0.4282948 4.876131 6.374593 +0.494694 4.876131 6.374593 +0.5692344 4.876131 6.374593 +0.6530715 4.876131 6.374593 +0.7474945 4.876131 6.374593 +0.8539475 4.876131 6.374593 +0.974052 4.876131 6.374593 +1.113885 4.876131 6.374593 +1.27456 4.876131 6.374593 +1.458117 4.876131 6.374593 +1.667858 4.876131 6.374593 +1.907556 4.876131 6.374593 +2.181521 4.876131 6.374593 +2.494678 4.876131 6.374593 +2.852659 4.876131 6.374593 +3.261896 4.876131 6.374593 +3.729748 4.876131 6.374593 +4.264621 4.876131 6.374593 +4.876131 4.876131 6.374593 +5.575266 4.876131 6.374593 +6.374593 4.876131 6.374593 +0 5.575266 6.374593 +0 5.575266 6.374593 +0 5.575266 6.374593 +0.002268731 5.575266 6.374593 +0.07076883 5.575266 6.374593 +0.1119241 5.575266 6.374593 +0.1475052 5.575266 6.374593 +0.1846606 5.575266 6.374593 +0.2245119 5.575266 6.374593 +0.2679612 5.575266 6.374593 +0.3158431 5.575266 6.374593 +0.3689944 5.575266 6.374593 +0.4282948 5.575266 6.374593 +0.494694 5.575266 6.374593 +0.5692344 5.575266 6.374593 +0.6530715 5.575266 6.374593 +0.7474945 5.575266 6.374593 +0.8539475 5.575266 6.374593 +0.974052 5.575266 6.374593 +1.113885 5.575266 6.374593 +1.27456 5.575266 6.374593 +1.458117 5.575266 6.374593 +1.667858 5.575266 6.374593 +1.907556 5.575266 6.374593 +2.181521 5.575266 6.374593 +2.494678 5.575266 6.374593 +2.852659 5.575266 6.374593 +3.261896 5.575266 6.374593 +3.729748 5.575266 6.374593 +4.264621 5.575266 6.374593 +4.876131 5.575266 6.374593 +5.575266 5.575266 6.374593 +6.374593 5.575266 6.374593 +0 6.374593 6.374593 +0 6.374593 6.374593 +0 6.374593 6.374593 +0.002268731 6.374593 6.374593 +0.07076883 6.374593 6.374593 +0.1119241 6.374593 6.374593 +0.1475052 6.374593 6.374593 +0.1846606 6.374593 6.374593 +0.2245119 6.374593 6.374593 +0.2679612 6.374593 6.374593 +0.3158431 6.374593 6.374593 +0.3689944 6.374593 6.374593 +0.4282948 6.374593 6.374593 +0.494694 6.374593 6.374593 +0.5692344 6.374593 6.374593 +0.6530715 6.374593 6.374593 +0.7474945 6.374593 6.374593 +0.8539475 6.374593 6.374593 +0.974052 6.374593 6.374593 +1.113885 6.374593 6.374593 +1.27456 6.374593 6.374593 +1.458117 6.374593 6.374593 +1.667858 6.374593 6.374593 +1.907556 6.374593 6.374593 +2.181521 6.374593 6.374593 +2.494678 6.374593 6.374593 +2.852659 6.374593 6.374593 +3.261896 6.374593 6.374593 +3.729748 6.374593 6.374593 +4.264621 6.374593 6.374593 +4.876131 6.374593 6.374593 +5.575266 6.374593 6.374593 +6.374593 6.374593 6.374593 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube.meta new file mode 100644 index 0000000..3431857 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/Unity_Log_to_sRGB_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 302dae2302d23ac49bbec3e17c0530b9 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube new file mode 100644 index 0000000..972592d --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube @@ -0,0 +1,35941 @@ +TITLE "sRGB to Linear r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0.002418731 0 0 +0.005155668 0 0 +0.009080105 0 0 +0.01434988 0 0 +0.02107202 0 0 +0.02934285 0 0 +0.03925039 0 0 +0.05087609 0 0 +0.06429595 0 0 +0.07958143 0 0 +0.0968001 0 0 +0.1160161 0 0 +0.1372908 0 0 +0.1606827 0 0 +0.1862481 0 0 +0.2140411 0 0 +0.2441142 0 0 +0.2765176 0 0 +0.3113005 0 0 +0.3485102 0 0 +0.388193 0 0 +0.4303934 0 0 +0.4751555 0 0 +0.5225216 0 0 +0.5725335 0 0 +0.6252316 0 0 +0.6806558 0 0 +0.7388448 0 0 +0.7998369 0 0 +0.8636691 0 0 +0.9303782 0 0 +1 0 0 +0 0.002418731 0 +0.002418731 0.002418731 0 +0.005155668 0.002418731 0 +0.009080105 0.002418731 0 +0.01434988 0.002418731 0 +0.02107202 0.002418731 0 +0.02934285 0.002418731 0 +0.03925039 0.002418731 0 +0.05087609 0.002418731 0 +0.06429595 0.002418731 0 +0.07958143 0.002418731 0 +0.0968001 0.002418731 0 +0.1160161 0.002418731 0 +0.1372908 0.002418731 0 +0.1606827 0.002418731 0 +0.1862481 0.002418731 0 +0.2140411 0.002418731 0 +0.2441142 0.002418731 0 +0.2765176 0.002418731 0 +0.3113005 0.002418731 0 +0.3485102 0.002418731 0 +0.388193 0.002418731 0 +0.4303934 0.002418731 0 +0.4751555 0.002418731 0 +0.5225216 0.002418731 0 +0.5725335 0.002418731 0 +0.6252316 0.002418731 0 +0.6806558 0.002418731 0 +0.7388448 0.002418731 0 +0.7998369 0.002418731 0 +0.8636691 0.002418731 0 +0.9303782 0.002418731 0 +1 0.002418731 0 +0 0.005155668 0 +0.002418731 0.005155668 0 +0.005155668 0.005155668 0 +0.009080105 0.005155668 0 +0.01434988 0.005155668 0 +0.02107202 0.005155668 0 +0.02934285 0.005155668 0 +0.03925039 0.005155668 0 +0.05087609 0.005155668 0 +0.06429595 0.005155668 0 +0.07958143 0.005155668 0 +0.0968001 0.005155668 0 +0.1160161 0.005155668 0 +0.1372908 0.005155668 0 +0.1606827 0.005155668 0 +0.1862481 0.005155668 0 +0.2140411 0.005155668 0 +0.2441142 0.005155668 0 +0.2765176 0.005155668 0 +0.3113005 0.005155668 0 +0.3485102 0.005155668 0 +0.388193 0.005155668 0 +0.4303934 0.005155668 0 +0.4751555 0.005155668 0 +0.5225216 0.005155668 0 +0.5725335 0.005155668 0 +0.6252316 0.005155668 0 +0.6806558 0.005155668 0 +0.7388448 0.005155668 0 +0.7998369 0.005155668 0 +0.8636691 0.005155668 0 +0.9303782 0.005155668 0 +1 0.005155668 0 +0 0.009080105 0 +0.002418731 0.009080105 0 +0.005155668 0.009080105 0 +0.009080105 0.009080105 0 +0.01434988 0.009080105 0 +0.02107202 0.009080105 0 +0.02934285 0.009080105 0 +0.03925039 0.009080105 0 +0.05087609 0.009080105 0 +0.06429595 0.009080105 0 +0.07958143 0.009080105 0 +0.0968001 0.009080105 0 +0.1160161 0.009080105 0 +0.1372908 0.009080105 0 +0.1606827 0.009080105 0 +0.1862481 0.009080105 0 +0.2140411 0.009080105 0 +0.2441142 0.009080105 0 +0.2765176 0.009080105 0 +0.3113005 0.009080105 0 +0.3485102 0.009080105 0 +0.388193 0.009080105 0 +0.4303934 0.009080105 0 +0.4751555 0.009080105 0 +0.5225216 0.009080105 0 +0.5725335 0.009080105 0 +0.6252316 0.009080105 0 +0.6806558 0.009080105 0 +0.7388448 0.009080105 0 +0.7998369 0.009080105 0 +0.8636691 0.009080105 0 +0.9303782 0.009080105 0 +1 0.009080105 0 +0 0.01434988 0 +0.002418731 0.01434988 0 +0.005155668 0.01434988 0 +0.009080105 0.01434988 0 +0.01434988 0.01434988 0 +0.02107202 0.01434988 0 +0.02934285 0.01434988 0 +0.03925039 0.01434988 0 +0.05087609 0.01434988 0 +0.06429595 0.01434988 0 +0.07958143 0.01434988 0 +0.0968001 0.01434988 0 +0.1160161 0.01434988 0 +0.1372908 0.01434988 0 +0.1606827 0.01434988 0 +0.1862481 0.01434988 0 +0.2140411 0.01434988 0 +0.2441142 0.01434988 0 +0.2765176 0.01434988 0 +0.3113005 0.01434988 0 +0.3485102 0.01434988 0 +0.388193 0.01434988 0 +0.4303934 0.01434988 0 +0.4751555 0.01434988 0 +0.5225216 0.01434988 0 +0.5725335 0.01434988 0 +0.6252316 0.01434988 0 +0.6806558 0.01434988 0 +0.7388448 0.01434988 0 +0.7998369 0.01434988 0 +0.8636691 0.01434988 0 +0.9303782 0.01434988 0 +1 0.01434988 0 +0 0.02107202 0 +0.002418731 0.02107202 0 +0.005155668 0.02107202 0 +0.009080105 0.02107202 0 +0.01434988 0.02107202 0 +0.02107202 0.02107202 0 +0.02934285 0.02107202 0 +0.03925039 0.02107202 0 +0.05087609 0.02107202 0 +0.06429595 0.02107202 0 +0.07958143 0.02107202 0 +0.0968001 0.02107202 0 +0.1160161 0.02107202 0 +0.1372908 0.02107202 0 +0.1606827 0.02107202 0 +0.1862481 0.02107202 0 +0.2140411 0.02107202 0 +0.2441142 0.02107202 0 +0.2765176 0.02107202 0 +0.3113005 0.02107202 0 +0.3485102 0.02107202 0 +0.388193 0.02107202 0 +0.4303934 0.02107202 0 +0.4751555 0.02107202 0 +0.5225216 0.02107202 0 +0.5725335 0.02107202 0 +0.6252316 0.02107202 0 +0.6806558 0.02107202 0 +0.7388448 0.02107202 0 +0.7998369 0.02107202 0 +0.8636691 0.02107202 0 +0.9303782 0.02107202 0 +1 0.02107202 0 +0 0.02934285 0 +0.002418731 0.02934285 0 +0.005155668 0.02934285 0 +0.009080105 0.02934285 0 +0.01434988 0.02934285 0 +0.02107202 0.02934285 0 +0.02934285 0.02934285 0 +0.03925039 0.02934285 0 +0.05087609 0.02934285 0 +0.06429595 0.02934285 0 +0.07958143 0.02934285 0 +0.0968001 0.02934285 0 +0.1160161 0.02934285 0 +0.1372908 0.02934285 0 +0.1606827 0.02934285 0 +0.1862481 0.02934285 0 +0.2140411 0.02934285 0 +0.2441142 0.02934285 0 +0.2765176 0.02934285 0 +0.3113005 0.02934285 0 +0.3485102 0.02934285 0 +0.388193 0.02934285 0 +0.4303934 0.02934285 0 +0.4751555 0.02934285 0 +0.5225216 0.02934285 0 +0.5725335 0.02934285 0 +0.6252316 0.02934285 0 +0.6806558 0.02934285 0 +0.7388448 0.02934285 0 +0.7998369 0.02934285 0 +0.8636691 0.02934285 0 +0.9303782 0.02934285 0 +1 0.02934285 0 +0 0.03925039 0 +0.002418731 0.03925039 0 +0.005155668 0.03925039 0 +0.009080105 0.03925039 0 +0.01434988 0.03925039 0 +0.02107202 0.03925039 0 +0.02934285 0.03925039 0 +0.03925039 0.03925039 0 +0.05087609 0.03925039 0 +0.06429595 0.03925039 0 +0.07958143 0.03925039 0 +0.0968001 0.03925039 0 +0.1160161 0.03925039 0 +0.1372908 0.03925039 0 +0.1606827 0.03925039 0 +0.1862481 0.03925039 0 +0.2140411 0.03925039 0 +0.2441142 0.03925039 0 +0.2765176 0.03925039 0 +0.3113005 0.03925039 0 +0.3485102 0.03925039 0 +0.388193 0.03925039 0 +0.4303934 0.03925039 0 +0.4751555 0.03925039 0 +0.5225216 0.03925039 0 +0.5725335 0.03925039 0 +0.6252316 0.03925039 0 +0.6806558 0.03925039 0 +0.7388448 0.03925039 0 +0.7998369 0.03925039 0 +0.8636691 0.03925039 0 +0.9303782 0.03925039 0 +1 0.03925039 0 +0 0.05087609 0 +0.002418731 0.05087609 0 +0.005155668 0.05087609 0 +0.009080105 0.05087609 0 +0.01434988 0.05087609 0 +0.02107202 0.05087609 0 +0.02934285 0.05087609 0 +0.03925039 0.05087609 0 +0.05087609 0.05087609 0 +0.06429595 0.05087609 0 +0.07958143 0.05087609 0 +0.0968001 0.05087609 0 +0.1160161 0.05087609 0 +0.1372908 0.05087609 0 +0.1606827 0.05087609 0 +0.1862481 0.05087609 0 +0.2140411 0.05087609 0 +0.2441142 0.05087609 0 +0.2765176 0.05087609 0 +0.3113005 0.05087609 0 +0.3485102 0.05087609 0 +0.388193 0.05087609 0 +0.4303934 0.05087609 0 +0.4751555 0.05087609 0 +0.5225216 0.05087609 0 +0.5725335 0.05087609 0 +0.6252316 0.05087609 0 +0.6806558 0.05087609 0 +0.7388448 0.05087609 0 +0.7998369 0.05087609 0 +0.8636691 0.05087609 0 +0.9303782 0.05087609 0 +1 0.05087609 0 +0 0.06429595 0 +0.002418731 0.06429595 0 +0.005155668 0.06429595 0 +0.009080105 0.06429595 0 +0.01434988 0.06429595 0 +0.02107202 0.06429595 0 +0.02934285 0.06429595 0 +0.03925039 0.06429595 0 +0.05087609 0.06429595 0 +0.06429595 0.06429595 0 +0.07958143 0.06429595 0 +0.0968001 0.06429595 0 +0.1160161 0.06429595 0 +0.1372908 0.06429595 0 +0.1606827 0.06429595 0 +0.1862481 0.06429595 0 +0.2140411 0.06429595 0 +0.2441142 0.06429595 0 +0.2765176 0.06429595 0 +0.3113005 0.06429595 0 +0.3485102 0.06429595 0 +0.388193 0.06429595 0 +0.4303934 0.06429595 0 +0.4751555 0.06429595 0 +0.5225216 0.06429595 0 +0.5725335 0.06429595 0 +0.6252316 0.06429595 0 +0.6806558 0.06429595 0 +0.7388448 0.06429595 0 +0.7998369 0.06429595 0 +0.8636691 0.06429595 0 +0.9303782 0.06429595 0 +1 0.06429595 0 +0 0.07958143 0 +0.002418731 0.07958143 0 +0.005155668 0.07958143 0 +0.009080105 0.07958143 0 +0.01434988 0.07958143 0 +0.02107202 0.07958143 0 +0.02934285 0.07958143 0 +0.03925039 0.07958143 0 +0.05087609 0.07958143 0 +0.06429595 0.07958143 0 +0.07958143 0.07958143 0 +0.0968001 0.07958143 0 +0.1160161 0.07958143 0 +0.1372908 0.07958143 0 +0.1606827 0.07958143 0 +0.1862481 0.07958143 0 +0.2140411 0.07958143 0 +0.2441142 0.07958143 0 +0.2765176 0.07958143 0 +0.3113005 0.07958143 0 +0.3485102 0.07958143 0 +0.388193 0.07958143 0 +0.4303934 0.07958143 0 +0.4751555 0.07958143 0 +0.5225216 0.07958143 0 +0.5725335 0.07958143 0 +0.6252316 0.07958143 0 +0.6806558 0.07958143 0 +0.7388448 0.07958143 0 +0.7998369 0.07958143 0 +0.8636691 0.07958143 0 +0.9303782 0.07958143 0 +1 0.07958143 0 +0 0.0968001 0 +0.002418731 0.0968001 0 +0.005155668 0.0968001 0 +0.009080105 0.0968001 0 +0.01434988 0.0968001 0 +0.02107202 0.0968001 0 +0.02934285 0.0968001 0 +0.03925039 0.0968001 0 +0.05087609 0.0968001 0 +0.06429595 0.0968001 0 +0.07958143 0.0968001 0 +0.0968001 0.0968001 0 +0.1160161 0.0968001 0 +0.1372908 0.0968001 0 +0.1606827 0.0968001 0 +0.1862481 0.0968001 0 +0.2140411 0.0968001 0 +0.2441142 0.0968001 0 +0.2765176 0.0968001 0 +0.3113005 0.0968001 0 +0.3485102 0.0968001 0 +0.388193 0.0968001 0 +0.4303934 0.0968001 0 +0.4751555 0.0968001 0 +0.5225216 0.0968001 0 +0.5725335 0.0968001 0 +0.6252316 0.0968001 0 +0.6806558 0.0968001 0 +0.7388448 0.0968001 0 +0.7998369 0.0968001 0 +0.8636691 0.0968001 0 +0.9303782 0.0968001 0 +1 0.0968001 0 +0 0.1160161 0 +0.002418731 0.1160161 0 +0.005155668 0.1160161 0 +0.009080105 0.1160161 0 +0.01434988 0.1160161 0 +0.02107202 0.1160161 0 +0.02934285 0.1160161 0 +0.03925039 0.1160161 0 +0.05087609 0.1160161 0 +0.06429595 0.1160161 0 +0.07958143 0.1160161 0 +0.0968001 0.1160161 0 +0.1160161 0.1160161 0 +0.1372908 0.1160161 0 +0.1606827 0.1160161 0 +0.1862481 0.1160161 0 +0.2140411 0.1160161 0 +0.2441142 0.1160161 0 +0.2765176 0.1160161 0 +0.3113005 0.1160161 0 +0.3485102 0.1160161 0 +0.388193 0.1160161 0 +0.4303934 0.1160161 0 +0.4751555 0.1160161 0 +0.5225216 0.1160161 0 +0.5725335 0.1160161 0 +0.6252316 0.1160161 0 +0.6806558 0.1160161 0 +0.7388448 0.1160161 0 +0.7998369 0.1160161 0 +0.8636691 0.1160161 0 +0.9303782 0.1160161 0 +1 0.1160161 0 +0 0.1372908 0 +0.002418731 0.1372908 0 +0.005155668 0.1372908 0 +0.009080105 0.1372908 0 +0.01434988 0.1372908 0 +0.02107202 0.1372908 0 +0.02934285 0.1372908 0 +0.03925039 0.1372908 0 +0.05087609 0.1372908 0 +0.06429595 0.1372908 0 +0.07958143 0.1372908 0 +0.0968001 0.1372908 0 +0.1160161 0.1372908 0 +0.1372908 0.1372908 0 +0.1606827 0.1372908 0 +0.1862481 0.1372908 0 +0.2140411 0.1372908 0 +0.2441142 0.1372908 0 +0.2765176 0.1372908 0 +0.3113005 0.1372908 0 +0.3485102 0.1372908 0 +0.388193 0.1372908 0 +0.4303934 0.1372908 0 +0.4751555 0.1372908 0 +0.5225216 0.1372908 0 +0.5725335 0.1372908 0 +0.6252316 0.1372908 0 +0.6806558 0.1372908 0 +0.7388448 0.1372908 0 +0.7998369 0.1372908 0 +0.8636691 0.1372908 0 +0.9303782 0.1372908 0 +1 0.1372908 0 +0 0.1606827 0 +0.002418731 0.1606827 0 +0.005155668 0.1606827 0 +0.009080105 0.1606827 0 +0.01434988 0.1606827 0 +0.02107202 0.1606827 0 +0.02934285 0.1606827 0 +0.03925039 0.1606827 0 +0.05087609 0.1606827 0 +0.06429595 0.1606827 0 +0.07958143 0.1606827 0 +0.0968001 0.1606827 0 +0.1160161 0.1606827 0 +0.1372908 0.1606827 0 +0.1606827 0.1606827 0 +0.1862481 0.1606827 0 +0.2140411 0.1606827 0 +0.2441142 0.1606827 0 +0.2765176 0.1606827 0 +0.3113005 0.1606827 0 +0.3485102 0.1606827 0 +0.388193 0.1606827 0 +0.4303934 0.1606827 0 +0.4751555 0.1606827 0 +0.5225216 0.1606827 0 +0.5725335 0.1606827 0 +0.6252316 0.1606827 0 +0.6806558 0.1606827 0 +0.7388448 0.1606827 0 +0.7998369 0.1606827 0 +0.8636691 0.1606827 0 +0.9303782 0.1606827 0 +1 0.1606827 0 +0 0.1862481 0 +0.002418731 0.1862481 0 +0.005155668 0.1862481 0 +0.009080105 0.1862481 0 +0.01434988 0.1862481 0 +0.02107202 0.1862481 0 +0.02934285 0.1862481 0 +0.03925039 0.1862481 0 +0.05087609 0.1862481 0 +0.06429595 0.1862481 0 +0.07958143 0.1862481 0 +0.0968001 0.1862481 0 +0.1160161 0.1862481 0 +0.1372908 0.1862481 0 +0.1606827 0.1862481 0 +0.1862481 0.1862481 0 +0.2140411 0.1862481 0 +0.2441142 0.1862481 0 +0.2765176 0.1862481 0 +0.3113005 0.1862481 0 +0.3485102 0.1862481 0 +0.388193 0.1862481 0 +0.4303934 0.1862481 0 +0.4751555 0.1862481 0 +0.5225216 0.1862481 0 +0.5725335 0.1862481 0 +0.6252316 0.1862481 0 +0.6806558 0.1862481 0 +0.7388448 0.1862481 0 +0.7998369 0.1862481 0 +0.8636691 0.1862481 0 +0.9303782 0.1862481 0 +1 0.1862481 0 +0 0.2140411 0 +0.002418731 0.2140411 0 +0.005155668 0.2140411 0 +0.009080105 0.2140411 0 +0.01434988 0.2140411 0 +0.02107202 0.2140411 0 +0.02934285 0.2140411 0 +0.03925039 0.2140411 0 +0.05087609 0.2140411 0 +0.06429595 0.2140411 0 +0.07958143 0.2140411 0 +0.0968001 0.2140411 0 +0.1160161 0.2140411 0 +0.1372908 0.2140411 0 +0.1606827 0.2140411 0 +0.1862481 0.2140411 0 +0.2140411 0.2140411 0 +0.2441142 0.2140411 0 +0.2765176 0.2140411 0 +0.3113005 0.2140411 0 +0.3485102 0.2140411 0 +0.388193 0.2140411 0 +0.4303934 0.2140411 0 +0.4751555 0.2140411 0 +0.5225216 0.2140411 0 +0.5725335 0.2140411 0 +0.6252316 0.2140411 0 +0.6806558 0.2140411 0 +0.7388448 0.2140411 0 +0.7998369 0.2140411 0 +0.8636691 0.2140411 0 +0.9303782 0.2140411 0 +1 0.2140411 0 +0 0.2441142 0 +0.002418731 0.2441142 0 +0.005155668 0.2441142 0 +0.009080105 0.2441142 0 +0.01434988 0.2441142 0 +0.02107202 0.2441142 0 +0.02934285 0.2441142 0 +0.03925039 0.2441142 0 +0.05087609 0.2441142 0 +0.06429595 0.2441142 0 +0.07958143 0.2441142 0 +0.0968001 0.2441142 0 +0.1160161 0.2441142 0 +0.1372908 0.2441142 0 +0.1606827 0.2441142 0 +0.1862481 0.2441142 0 +0.2140411 0.2441142 0 +0.2441142 0.2441142 0 +0.2765176 0.2441142 0 +0.3113005 0.2441142 0 +0.3485102 0.2441142 0 +0.388193 0.2441142 0 +0.4303934 0.2441142 0 +0.4751555 0.2441142 0 +0.5225216 0.2441142 0 +0.5725335 0.2441142 0 +0.6252316 0.2441142 0 +0.6806558 0.2441142 0 +0.7388448 0.2441142 0 +0.7998369 0.2441142 0 +0.8636691 0.2441142 0 +0.9303782 0.2441142 0 +1 0.2441142 0 +0 0.2765176 0 +0.002418731 0.2765176 0 +0.005155668 0.2765176 0 +0.009080105 0.2765176 0 +0.01434988 0.2765176 0 +0.02107202 0.2765176 0 +0.02934285 0.2765176 0 +0.03925039 0.2765176 0 +0.05087609 0.2765176 0 +0.06429595 0.2765176 0 +0.07958143 0.2765176 0 +0.0968001 0.2765176 0 +0.1160161 0.2765176 0 +0.1372908 0.2765176 0 +0.1606827 0.2765176 0 +0.1862481 0.2765176 0 +0.2140411 0.2765176 0 +0.2441142 0.2765176 0 +0.2765176 0.2765176 0 +0.3113005 0.2765176 0 +0.3485102 0.2765176 0 +0.388193 0.2765176 0 +0.4303934 0.2765176 0 +0.4751555 0.2765176 0 +0.5225216 0.2765176 0 +0.5725335 0.2765176 0 +0.6252316 0.2765176 0 +0.6806558 0.2765176 0 +0.7388448 0.2765176 0 +0.7998369 0.2765176 0 +0.8636691 0.2765176 0 +0.9303782 0.2765176 0 +1 0.2765176 0 +0 0.3113005 0 +0.002418731 0.3113005 0 +0.005155668 0.3113005 0 +0.009080105 0.3113005 0 +0.01434988 0.3113005 0 +0.02107202 0.3113005 0 +0.02934285 0.3113005 0 +0.03925039 0.3113005 0 +0.05087609 0.3113005 0 +0.06429595 0.3113005 0 +0.07958143 0.3113005 0 +0.0968001 0.3113005 0 +0.1160161 0.3113005 0 +0.1372908 0.3113005 0 +0.1606827 0.3113005 0 +0.1862481 0.3113005 0 +0.2140411 0.3113005 0 +0.2441142 0.3113005 0 +0.2765176 0.3113005 0 +0.3113005 0.3113005 0 +0.3485102 0.3113005 0 +0.388193 0.3113005 0 +0.4303934 0.3113005 0 +0.4751555 0.3113005 0 +0.5225216 0.3113005 0 +0.5725335 0.3113005 0 +0.6252316 0.3113005 0 +0.6806558 0.3113005 0 +0.7388448 0.3113005 0 +0.7998369 0.3113005 0 +0.8636691 0.3113005 0 +0.9303782 0.3113005 0 +1 0.3113005 0 +0 0.3485102 0 +0.002418731 0.3485102 0 +0.005155668 0.3485102 0 +0.009080105 0.3485102 0 +0.01434988 0.3485102 0 +0.02107202 0.3485102 0 +0.02934285 0.3485102 0 +0.03925039 0.3485102 0 +0.05087609 0.3485102 0 +0.06429595 0.3485102 0 +0.07958143 0.3485102 0 +0.0968001 0.3485102 0 +0.1160161 0.3485102 0 +0.1372908 0.3485102 0 +0.1606827 0.3485102 0 +0.1862481 0.3485102 0 +0.2140411 0.3485102 0 +0.2441142 0.3485102 0 +0.2765176 0.3485102 0 +0.3113005 0.3485102 0 +0.3485102 0.3485102 0 +0.388193 0.3485102 0 +0.4303934 0.3485102 0 +0.4751555 0.3485102 0 +0.5225216 0.3485102 0 +0.5725335 0.3485102 0 +0.6252316 0.3485102 0 +0.6806558 0.3485102 0 +0.7388448 0.3485102 0 +0.7998369 0.3485102 0 +0.8636691 0.3485102 0 +0.9303782 0.3485102 0 +1 0.3485102 0 +0 0.388193 0 +0.002418731 0.388193 0 +0.005155668 0.388193 0 +0.009080105 0.388193 0 +0.01434988 0.388193 0 +0.02107202 0.388193 0 +0.02934285 0.388193 0 +0.03925039 0.388193 0 +0.05087609 0.388193 0 +0.06429595 0.388193 0 +0.07958143 0.388193 0 +0.0968001 0.388193 0 +0.1160161 0.388193 0 +0.1372908 0.388193 0 +0.1606827 0.388193 0 +0.1862481 0.388193 0 +0.2140411 0.388193 0 +0.2441142 0.388193 0 +0.2765176 0.388193 0 +0.3113005 0.388193 0 +0.3485102 0.388193 0 +0.388193 0.388193 0 +0.4303934 0.388193 0 +0.4751555 0.388193 0 +0.5225216 0.388193 0 +0.5725335 0.388193 0 +0.6252316 0.388193 0 +0.6806558 0.388193 0 +0.7388448 0.388193 0 +0.7998369 0.388193 0 +0.8636691 0.388193 0 +0.9303782 0.388193 0 +1 0.388193 0 +0 0.4303934 0 +0.002418731 0.4303934 0 +0.005155668 0.4303934 0 +0.009080105 0.4303934 0 +0.01434988 0.4303934 0 +0.02107202 0.4303934 0 +0.02934285 0.4303934 0 +0.03925039 0.4303934 0 +0.05087609 0.4303934 0 +0.06429595 0.4303934 0 +0.07958143 0.4303934 0 +0.0968001 0.4303934 0 +0.1160161 0.4303934 0 +0.1372908 0.4303934 0 +0.1606827 0.4303934 0 +0.1862481 0.4303934 0 +0.2140411 0.4303934 0 +0.2441142 0.4303934 0 +0.2765176 0.4303934 0 +0.3113005 0.4303934 0 +0.3485102 0.4303934 0 +0.388193 0.4303934 0 +0.4303934 0.4303934 0 +0.4751555 0.4303934 0 +0.5225216 0.4303934 0 +0.5725335 0.4303934 0 +0.6252316 0.4303934 0 +0.6806558 0.4303934 0 +0.7388448 0.4303934 0 +0.7998369 0.4303934 0 +0.8636691 0.4303934 0 +0.9303782 0.4303934 0 +1 0.4303934 0 +0 0.4751555 0 +0.002418731 0.4751555 0 +0.005155668 0.4751555 0 +0.009080105 0.4751555 0 +0.01434988 0.4751555 0 +0.02107202 0.4751555 0 +0.02934285 0.4751555 0 +0.03925039 0.4751555 0 +0.05087609 0.4751555 0 +0.06429595 0.4751555 0 +0.07958143 0.4751555 0 +0.0968001 0.4751555 0 +0.1160161 0.4751555 0 +0.1372908 0.4751555 0 +0.1606827 0.4751555 0 +0.1862481 0.4751555 0 +0.2140411 0.4751555 0 +0.2441142 0.4751555 0 +0.2765176 0.4751555 0 +0.3113005 0.4751555 0 +0.3485102 0.4751555 0 +0.388193 0.4751555 0 +0.4303934 0.4751555 0 +0.4751555 0.4751555 0 +0.5225216 0.4751555 0 +0.5725335 0.4751555 0 +0.6252316 0.4751555 0 +0.6806558 0.4751555 0 +0.7388448 0.4751555 0 +0.7998369 0.4751555 0 +0.8636691 0.4751555 0 +0.9303782 0.4751555 0 +1 0.4751555 0 +0 0.5225216 0 +0.002418731 0.5225216 0 +0.005155668 0.5225216 0 +0.009080105 0.5225216 0 +0.01434988 0.5225216 0 +0.02107202 0.5225216 0 +0.02934285 0.5225216 0 +0.03925039 0.5225216 0 +0.05087609 0.5225216 0 +0.06429595 0.5225216 0 +0.07958143 0.5225216 0 +0.0968001 0.5225216 0 +0.1160161 0.5225216 0 +0.1372908 0.5225216 0 +0.1606827 0.5225216 0 +0.1862481 0.5225216 0 +0.2140411 0.5225216 0 +0.2441142 0.5225216 0 +0.2765176 0.5225216 0 +0.3113005 0.5225216 0 +0.3485102 0.5225216 0 +0.388193 0.5225216 0 +0.4303934 0.5225216 0 +0.4751555 0.5225216 0 +0.5225216 0.5225216 0 +0.5725335 0.5225216 0 +0.6252316 0.5225216 0 +0.6806558 0.5225216 0 +0.7388448 0.5225216 0 +0.7998369 0.5225216 0 +0.8636691 0.5225216 0 +0.9303782 0.5225216 0 +1 0.5225216 0 +0 0.5725335 0 +0.002418731 0.5725335 0 +0.005155668 0.5725335 0 +0.009080105 0.5725335 0 +0.01434988 0.5725335 0 +0.02107202 0.5725335 0 +0.02934285 0.5725335 0 +0.03925039 0.5725335 0 +0.05087609 0.5725335 0 +0.06429595 0.5725335 0 +0.07958143 0.5725335 0 +0.0968001 0.5725335 0 +0.1160161 0.5725335 0 +0.1372908 0.5725335 0 +0.1606827 0.5725335 0 +0.1862481 0.5725335 0 +0.2140411 0.5725335 0 +0.2441142 0.5725335 0 +0.2765176 0.5725335 0 +0.3113005 0.5725335 0 +0.3485102 0.5725335 0 +0.388193 0.5725335 0 +0.4303934 0.5725335 0 +0.4751555 0.5725335 0 +0.5225216 0.5725335 0 +0.5725335 0.5725335 0 +0.6252316 0.5725335 0 +0.6806558 0.5725335 0 +0.7388448 0.5725335 0 +0.7998369 0.5725335 0 +0.8636691 0.5725335 0 +0.9303782 0.5725335 0 +1 0.5725335 0 +0 0.6252316 0 +0.002418731 0.6252316 0 +0.005155668 0.6252316 0 +0.009080105 0.6252316 0 +0.01434988 0.6252316 0 +0.02107202 0.6252316 0 +0.02934285 0.6252316 0 +0.03925039 0.6252316 0 +0.05087609 0.6252316 0 +0.06429595 0.6252316 0 +0.07958143 0.6252316 0 +0.0968001 0.6252316 0 +0.1160161 0.6252316 0 +0.1372908 0.6252316 0 +0.1606827 0.6252316 0 +0.1862481 0.6252316 0 +0.2140411 0.6252316 0 +0.2441142 0.6252316 0 +0.2765176 0.6252316 0 +0.3113005 0.6252316 0 +0.3485102 0.6252316 0 +0.388193 0.6252316 0 +0.4303934 0.6252316 0 +0.4751555 0.6252316 0 +0.5225216 0.6252316 0 +0.5725335 0.6252316 0 +0.6252316 0.6252316 0 +0.6806558 0.6252316 0 +0.7388448 0.6252316 0 +0.7998369 0.6252316 0 +0.8636691 0.6252316 0 +0.9303782 0.6252316 0 +1 0.6252316 0 +0 0.6806558 0 +0.002418731 0.6806558 0 +0.005155668 0.6806558 0 +0.009080105 0.6806558 0 +0.01434988 0.6806558 0 +0.02107202 0.6806558 0 +0.02934285 0.6806558 0 +0.03925039 0.6806558 0 +0.05087609 0.6806558 0 +0.06429595 0.6806558 0 +0.07958143 0.6806558 0 +0.0968001 0.6806558 0 +0.1160161 0.6806558 0 +0.1372908 0.6806558 0 +0.1606827 0.6806558 0 +0.1862481 0.6806558 0 +0.2140411 0.6806558 0 +0.2441142 0.6806558 0 +0.2765176 0.6806558 0 +0.3113005 0.6806558 0 +0.3485102 0.6806558 0 +0.388193 0.6806558 0 +0.4303934 0.6806558 0 +0.4751555 0.6806558 0 +0.5225216 0.6806558 0 +0.5725335 0.6806558 0 +0.6252316 0.6806558 0 +0.6806558 0.6806558 0 +0.7388448 0.6806558 0 +0.7998369 0.6806558 0 +0.8636691 0.6806558 0 +0.9303782 0.6806558 0 +1 0.6806558 0 +0 0.7388448 0 +0.002418731 0.7388448 0 +0.005155668 0.7388448 0 +0.009080105 0.7388448 0 +0.01434988 0.7388448 0 +0.02107202 0.7388448 0 +0.02934285 0.7388448 0 +0.03925039 0.7388448 0 +0.05087609 0.7388448 0 +0.06429595 0.7388448 0 +0.07958143 0.7388448 0 +0.0968001 0.7388448 0 +0.1160161 0.7388448 0 +0.1372908 0.7388448 0 +0.1606827 0.7388448 0 +0.1862481 0.7388448 0 +0.2140411 0.7388448 0 +0.2441142 0.7388448 0 +0.2765176 0.7388448 0 +0.3113005 0.7388448 0 +0.3485102 0.7388448 0 +0.388193 0.7388448 0 +0.4303934 0.7388448 0 +0.4751555 0.7388448 0 +0.5225216 0.7388448 0 +0.5725335 0.7388448 0 +0.6252316 0.7388448 0 +0.6806558 0.7388448 0 +0.7388448 0.7388448 0 +0.7998369 0.7388448 0 +0.8636691 0.7388448 0 +0.9303782 0.7388448 0 +1 0.7388448 0 +0 0.7998369 0 +0.002418731 0.7998369 0 +0.005155668 0.7998369 0 +0.009080105 0.7998369 0 +0.01434988 0.7998369 0 +0.02107202 0.7998369 0 +0.02934285 0.7998369 0 +0.03925039 0.7998369 0 +0.05087609 0.7998369 0 +0.06429595 0.7998369 0 +0.07958143 0.7998369 0 +0.0968001 0.7998369 0 +0.1160161 0.7998369 0 +0.1372908 0.7998369 0 +0.1606827 0.7998369 0 +0.1862481 0.7998369 0 +0.2140411 0.7998369 0 +0.2441142 0.7998369 0 +0.2765176 0.7998369 0 +0.3113005 0.7998369 0 +0.3485102 0.7998369 0 +0.388193 0.7998369 0 +0.4303934 0.7998369 0 +0.4751555 0.7998369 0 +0.5225216 0.7998369 0 +0.5725335 0.7998369 0 +0.6252316 0.7998369 0 +0.6806558 0.7998369 0 +0.7388448 0.7998369 0 +0.7998369 0.7998369 0 +0.8636691 0.7998369 0 +0.9303782 0.7998369 0 +1 0.7998369 0 +0 0.8636691 0 +0.002418731 0.8636691 0 +0.005155668 0.8636691 0 +0.009080105 0.8636691 0 +0.01434988 0.8636691 0 +0.02107202 0.8636691 0 +0.02934285 0.8636691 0 +0.03925039 0.8636691 0 +0.05087609 0.8636691 0 +0.06429595 0.8636691 0 +0.07958143 0.8636691 0 +0.0968001 0.8636691 0 +0.1160161 0.8636691 0 +0.1372908 0.8636691 0 +0.1606827 0.8636691 0 +0.1862481 0.8636691 0 +0.2140411 0.8636691 0 +0.2441142 0.8636691 0 +0.2765176 0.8636691 0 +0.3113005 0.8636691 0 +0.3485102 0.8636691 0 +0.388193 0.8636691 0 +0.4303934 0.8636691 0 +0.4751555 0.8636691 0 +0.5225216 0.8636691 0 +0.5725335 0.8636691 0 +0.6252316 0.8636691 0 +0.6806558 0.8636691 0 +0.7388448 0.8636691 0 +0.7998369 0.8636691 0 +0.8636691 0.8636691 0 +0.9303782 0.8636691 0 +1 0.8636691 0 +0 0.9303782 0 +0.002418731 0.9303782 0 +0.005155668 0.9303782 0 +0.009080105 0.9303782 0 +0.01434988 0.9303782 0 +0.02107202 0.9303782 0 +0.02934285 0.9303782 0 +0.03925039 0.9303782 0 +0.05087609 0.9303782 0 +0.06429595 0.9303782 0 +0.07958143 0.9303782 0 +0.0968001 0.9303782 0 +0.1160161 0.9303782 0 +0.1372908 0.9303782 0 +0.1606827 0.9303782 0 +0.1862481 0.9303782 0 +0.2140411 0.9303782 0 +0.2441142 0.9303782 0 +0.2765176 0.9303782 0 +0.3113005 0.9303782 0 +0.3485102 0.9303782 0 +0.388193 0.9303782 0 +0.4303934 0.9303782 0 +0.4751555 0.9303782 0 +0.5225216 0.9303782 0 +0.5725335 0.9303782 0 +0.6252316 0.9303782 0 +0.6806558 0.9303782 0 +0.7388448 0.9303782 0 +0.7998369 0.9303782 0 +0.8636691 0.9303782 0 +0.9303782 0.9303782 0 +1 0.9303782 0 +0 1 0 +0.002418731 1 0 +0.005155668 1 0 +0.009080105 1 0 +0.01434988 1 0 +0.02107202 1 0 +0.02934285 1 0 +0.03925039 1 0 +0.05087609 1 0 +0.06429595 1 0 +0.07958143 1 0 +0.0968001 1 0 +0.1160161 1 0 +0.1372908 1 0 +0.1606827 1 0 +0.1862481 1 0 +0.2140411 1 0 +0.2441142 1 0 +0.2765176 1 0 +0.3113005 1 0 +0.3485102 1 0 +0.388193 1 0 +0.4303934 1 0 +0.4751555 1 0 +0.5225216 1 0 +0.5725335 1 0 +0.6252316 1 0 +0.6806558 1 0 +0.7388448 1 0 +0.7998369 1 0 +0.8636691 1 0 +0.9303782 1 0 +1 1 0 +0 0 0.002418731 +0.002418731 0 0.002418731 +0.005155668 0 0.002418731 +0.009080105 0 0.002418731 +0.01434988 0 0.002418731 +0.02107202 0 0.002418731 +0.02934285 0 0.002418731 +0.03925039 0 0.002418731 +0.05087609 0 0.002418731 +0.06429595 0 0.002418731 +0.07958143 0 0.002418731 +0.0968001 0 0.002418731 +0.1160161 0 0.002418731 +0.1372908 0 0.002418731 +0.1606827 0 0.002418731 +0.1862481 0 0.002418731 +0.2140411 0 0.002418731 +0.2441142 0 0.002418731 +0.2765176 0 0.002418731 +0.3113005 0 0.002418731 +0.3485102 0 0.002418731 +0.388193 0 0.002418731 +0.4303934 0 0.002418731 +0.4751555 0 0.002418731 +0.5225216 0 0.002418731 +0.5725335 0 0.002418731 +0.6252316 0 0.002418731 +0.6806558 0 0.002418731 +0.7388448 0 0.002418731 +0.7998369 0 0.002418731 +0.8636691 0 0.002418731 +0.9303782 0 0.002418731 +1 0 0.002418731 +0 0.002418731 0.002418731 +0.002418731 0.002418731 0.002418731 +0.005155668 0.002418731 0.002418731 +0.009080105 0.002418731 0.002418731 +0.01434988 0.002418731 0.002418731 +0.02107202 0.002418731 0.002418731 +0.02934285 0.002418731 0.002418731 +0.03925039 0.002418731 0.002418731 +0.05087609 0.002418731 0.002418731 +0.06429595 0.002418731 0.002418731 +0.07958143 0.002418731 0.002418731 +0.0968001 0.002418731 0.002418731 +0.1160161 0.002418731 0.002418731 +0.1372908 0.002418731 0.002418731 +0.1606827 0.002418731 0.002418731 +0.1862481 0.002418731 0.002418731 +0.2140411 0.002418731 0.002418731 +0.2441142 0.002418731 0.002418731 +0.2765176 0.002418731 0.002418731 +0.3113005 0.002418731 0.002418731 +0.3485102 0.002418731 0.002418731 +0.388193 0.002418731 0.002418731 +0.4303934 0.002418731 0.002418731 +0.4751555 0.002418731 0.002418731 +0.5225216 0.002418731 0.002418731 +0.5725335 0.002418731 0.002418731 +0.6252316 0.002418731 0.002418731 +0.6806558 0.002418731 0.002418731 +0.7388448 0.002418731 0.002418731 +0.7998369 0.002418731 0.002418731 +0.8636691 0.002418731 0.002418731 +0.9303782 0.002418731 0.002418731 +1 0.002418731 0.002418731 +0 0.005155668 0.002418731 +0.002418731 0.005155668 0.002418731 +0.005155668 0.005155668 0.002418731 +0.009080105 0.005155668 0.002418731 +0.01434988 0.005155668 0.002418731 +0.02107202 0.005155668 0.002418731 +0.02934285 0.005155668 0.002418731 +0.03925039 0.005155668 0.002418731 +0.05087609 0.005155668 0.002418731 +0.06429595 0.005155668 0.002418731 +0.07958143 0.005155668 0.002418731 +0.0968001 0.005155668 0.002418731 +0.1160161 0.005155668 0.002418731 +0.1372908 0.005155668 0.002418731 +0.1606827 0.005155668 0.002418731 +0.1862481 0.005155668 0.002418731 +0.2140411 0.005155668 0.002418731 +0.2441142 0.005155668 0.002418731 +0.2765176 0.005155668 0.002418731 +0.3113005 0.005155668 0.002418731 +0.3485102 0.005155668 0.002418731 +0.388193 0.005155668 0.002418731 +0.4303934 0.005155668 0.002418731 +0.4751555 0.005155668 0.002418731 +0.5225216 0.005155668 0.002418731 +0.5725335 0.005155668 0.002418731 +0.6252316 0.005155668 0.002418731 +0.6806558 0.005155668 0.002418731 +0.7388448 0.005155668 0.002418731 +0.7998369 0.005155668 0.002418731 +0.8636691 0.005155668 0.002418731 +0.9303782 0.005155668 0.002418731 +1 0.005155668 0.002418731 +0 0.009080105 0.002418731 +0.002418731 0.009080105 0.002418731 +0.005155668 0.009080105 0.002418731 +0.009080105 0.009080105 0.002418731 +0.01434988 0.009080105 0.002418731 +0.02107202 0.009080105 0.002418731 +0.02934285 0.009080105 0.002418731 +0.03925039 0.009080105 0.002418731 +0.05087609 0.009080105 0.002418731 +0.06429595 0.009080105 0.002418731 +0.07958143 0.009080105 0.002418731 +0.0968001 0.009080105 0.002418731 +0.1160161 0.009080105 0.002418731 +0.1372908 0.009080105 0.002418731 +0.1606827 0.009080105 0.002418731 +0.1862481 0.009080105 0.002418731 +0.2140411 0.009080105 0.002418731 +0.2441142 0.009080105 0.002418731 +0.2765176 0.009080105 0.002418731 +0.3113005 0.009080105 0.002418731 +0.3485102 0.009080105 0.002418731 +0.388193 0.009080105 0.002418731 +0.4303934 0.009080105 0.002418731 +0.4751555 0.009080105 0.002418731 +0.5225216 0.009080105 0.002418731 +0.5725335 0.009080105 0.002418731 +0.6252316 0.009080105 0.002418731 +0.6806558 0.009080105 0.002418731 +0.7388448 0.009080105 0.002418731 +0.7998369 0.009080105 0.002418731 +0.8636691 0.009080105 0.002418731 +0.9303782 0.009080105 0.002418731 +1 0.009080105 0.002418731 +0 0.01434988 0.002418731 +0.002418731 0.01434988 0.002418731 +0.005155668 0.01434988 0.002418731 +0.009080105 0.01434988 0.002418731 +0.01434988 0.01434988 0.002418731 +0.02107202 0.01434988 0.002418731 +0.02934285 0.01434988 0.002418731 +0.03925039 0.01434988 0.002418731 +0.05087609 0.01434988 0.002418731 +0.06429595 0.01434988 0.002418731 +0.07958143 0.01434988 0.002418731 +0.0968001 0.01434988 0.002418731 +0.1160161 0.01434988 0.002418731 +0.1372908 0.01434988 0.002418731 +0.1606827 0.01434988 0.002418731 +0.1862481 0.01434988 0.002418731 +0.2140411 0.01434988 0.002418731 +0.2441142 0.01434988 0.002418731 +0.2765176 0.01434988 0.002418731 +0.3113005 0.01434988 0.002418731 +0.3485102 0.01434988 0.002418731 +0.388193 0.01434988 0.002418731 +0.4303934 0.01434988 0.002418731 +0.4751555 0.01434988 0.002418731 +0.5225216 0.01434988 0.002418731 +0.5725335 0.01434988 0.002418731 +0.6252316 0.01434988 0.002418731 +0.6806558 0.01434988 0.002418731 +0.7388448 0.01434988 0.002418731 +0.7998369 0.01434988 0.002418731 +0.8636691 0.01434988 0.002418731 +0.9303782 0.01434988 0.002418731 +1 0.01434988 0.002418731 +0 0.02107202 0.002418731 +0.002418731 0.02107202 0.002418731 +0.005155668 0.02107202 0.002418731 +0.009080105 0.02107202 0.002418731 +0.01434988 0.02107202 0.002418731 +0.02107202 0.02107202 0.002418731 +0.02934285 0.02107202 0.002418731 +0.03925039 0.02107202 0.002418731 +0.05087609 0.02107202 0.002418731 +0.06429595 0.02107202 0.002418731 +0.07958143 0.02107202 0.002418731 +0.0968001 0.02107202 0.002418731 +0.1160161 0.02107202 0.002418731 +0.1372908 0.02107202 0.002418731 +0.1606827 0.02107202 0.002418731 +0.1862481 0.02107202 0.002418731 +0.2140411 0.02107202 0.002418731 +0.2441142 0.02107202 0.002418731 +0.2765176 0.02107202 0.002418731 +0.3113005 0.02107202 0.002418731 +0.3485102 0.02107202 0.002418731 +0.388193 0.02107202 0.002418731 +0.4303934 0.02107202 0.002418731 +0.4751555 0.02107202 0.002418731 +0.5225216 0.02107202 0.002418731 +0.5725335 0.02107202 0.002418731 +0.6252316 0.02107202 0.002418731 +0.6806558 0.02107202 0.002418731 +0.7388448 0.02107202 0.002418731 +0.7998369 0.02107202 0.002418731 +0.8636691 0.02107202 0.002418731 +0.9303782 0.02107202 0.002418731 +1 0.02107202 0.002418731 +0 0.02934285 0.002418731 +0.002418731 0.02934285 0.002418731 +0.005155668 0.02934285 0.002418731 +0.009080105 0.02934285 0.002418731 +0.01434988 0.02934285 0.002418731 +0.02107202 0.02934285 0.002418731 +0.02934285 0.02934285 0.002418731 +0.03925039 0.02934285 0.002418731 +0.05087609 0.02934285 0.002418731 +0.06429595 0.02934285 0.002418731 +0.07958143 0.02934285 0.002418731 +0.0968001 0.02934285 0.002418731 +0.1160161 0.02934285 0.002418731 +0.1372908 0.02934285 0.002418731 +0.1606827 0.02934285 0.002418731 +0.1862481 0.02934285 0.002418731 +0.2140411 0.02934285 0.002418731 +0.2441142 0.02934285 0.002418731 +0.2765176 0.02934285 0.002418731 +0.3113005 0.02934285 0.002418731 +0.3485102 0.02934285 0.002418731 +0.388193 0.02934285 0.002418731 +0.4303934 0.02934285 0.002418731 +0.4751555 0.02934285 0.002418731 +0.5225216 0.02934285 0.002418731 +0.5725335 0.02934285 0.002418731 +0.6252316 0.02934285 0.002418731 +0.6806558 0.02934285 0.002418731 +0.7388448 0.02934285 0.002418731 +0.7998369 0.02934285 0.002418731 +0.8636691 0.02934285 0.002418731 +0.9303782 0.02934285 0.002418731 +1 0.02934285 0.002418731 +0 0.03925039 0.002418731 +0.002418731 0.03925039 0.002418731 +0.005155668 0.03925039 0.002418731 +0.009080105 0.03925039 0.002418731 +0.01434988 0.03925039 0.002418731 +0.02107202 0.03925039 0.002418731 +0.02934285 0.03925039 0.002418731 +0.03925039 0.03925039 0.002418731 +0.05087609 0.03925039 0.002418731 +0.06429595 0.03925039 0.002418731 +0.07958143 0.03925039 0.002418731 +0.0968001 0.03925039 0.002418731 +0.1160161 0.03925039 0.002418731 +0.1372908 0.03925039 0.002418731 +0.1606827 0.03925039 0.002418731 +0.1862481 0.03925039 0.002418731 +0.2140411 0.03925039 0.002418731 +0.2441142 0.03925039 0.002418731 +0.2765176 0.03925039 0.002418731 +0.3113005 0.03925039 0.002418731 +0.3485102 0.03925039 0.002418731 +0.388193 0.03925039 0.002418731 +0.4303934 0.03925039 0.002418731 +0.4751555 0.03925039 0.002418731 +0.5225216 0.03925039 0.002418731 +0.5725335 0.03925039 0.002418731 +0.6252316 0.03925039 0.002418731 +0.6806558 0.03925039 0.002418731 +0.7388448 0.03925039 0.002418731 +0.7998369 0.03925039 0.002418731 +0.8636691 0.03925039 0.002418731 +0.9303782 0.03925039 0.002418731 +1 0.03925039 0.002418731 +0 0.05087609 0.002418731 +0.002418731 0.05087609 0.002418731 +0.005155668 0.05087609 0.002418731 +0.009080105 0.05087609 0.002418731 +0.01434988 0.05087609 0.002418731 +0.02107202 0.05087609 0.002418731 +0.02934285 0.05087609 0.002418731 +0.03925039 0.05087609 0.002418731 +0.05087609 0.05087609 0.002418731 +0.06429595 0.05087609 0.002418731 +0.07958143 0.05087609 0.002418731 +0.0968001 0.05087609 0.002418731 +0.1160161 0.05087609 0.002418731 +0.1372908 0.05087609 0.002418731 +0.1606827 0.05087609 0.002418731 +0.1862481 0.05087609 0.002418731 +0.2140411 0.05087609 0.002418731 +0.2441142 0.05087609 0.002418731 +0.2765176 0.05087609 0.002418731 +0.3113005 0.05087609 0.002418731 +0.3485102 0.05087609 0.002418731 +0.388193 0.05087609 0.002418731 +0.4303934 0.05087609 0.002418731 +0.4751555 0.05087609 0.002418731 +0.5225216 0.05087609 0.002418731 +0.5725335 0.05087609 0.002418731 +0.6252316 0.05087609 0.002418731 +0.6806558 0.05087609 0.002418731 +0.7388448 0.05087609 0.002418731 +0.7998369 0.05087609 0.002418731 +0.8636691 0.05087609 0.002418731 +0.9303782 0.05087609 0.002418731 +1 0.05087609 0.002418731 +0 0.06429595 0.002418731 +0.002418731 0.06429595 0.002418731 +0.005155668 0.06429595 0.002418731 +0.009080105 0.06429595 0.002418731 +0.01434988 0.06429595 0.002418731 +0.02107202 0.06429595 0.002418731 +0.02934285 0.06429595 0.002418731 +0.03925039 0.06429595 0.002418731 +0.05087609 0.06429595 0.002418731 +0.06429595 0.06429595 0.002418731 +0.07958143 0.06429595 0.002418731 +0.0968001 0.06429595 0.002418731 +0.1160161 0.06429595 0.002418731 +0.1372908 0.06429595 0.002418731 +0.1606827 0.06429595 0.002418731 +0.1862481 0.06429595 0.002418731 +0.2140411 0.06429595 0.002418731 +0.2441142 0.06429595 0.002418731 +0.2765176 0.06429595 0.002418731 +0.3113005 0.06429595 0.002418731 +0.3485102 0.06429595 0.002418731 +0.388193 0.06429595 0.002418731 +0.4303934 0.06429595 0.002418731 +0.4751555 0.06429595 0.002418731 +0.5225216 0.06429595 0.002418731 +0.5725335 0.06429595 0.002418731 +0.6252316 0.06429595 0.002418731 +0.6806558 0.06429595 0.002418731 +0.7388448 0.06429595 0.002418731 +0.7998369 0.06429595 0.002418731 +0.8636691 0.06429595 0.002418731 +0.9303782 0.06429595 0.002418731 +1 0.06429595 0.002418731 +0 0.07958143 0.002418731 +0.002418731 0.07958143 0.002418731 +0.005155668 0.07958143 0.002418731 +0.009080105 0.07958143 0.002418731 +0.01434988 0.07958143 0.002418731 +0.02107202 0.07958143 0.002418731 +0.02934285 0.07958143 0.002418731 +0.03925039 0.07958143 0.002418731 +0.05087609 0.07958143 0.002418731 +0.06429595 0.07958143 0.002418731 +0.07958143 0.07958143 0.002418731 +0.0968001 0.07958143 0.002418731 +0.1160161 0.07958143 0.002418731 +0.1372908 0.07958143 0.002418731 +0.1606827 0.07958143 0.002418731 +0.1862481 0.07958143 0.002418731 +0.2140411 0.07958143 0.002418731 +0.2441142 0.07958143 0.002418731 +0.2765176 0.07958143 0.002418731 +0.3113005 0.07958143 0.002418731 +0.3485102 0.07958143 0.002418731 +0.388193 0.07958143 0.002418731 +0.4303934 0.07958143 0.002418731 +0.4751555 0.07958143 0.002418731 +0.5225216 0.07958143 0.002418731 +0.5725335 0.07958143 0.002418731 +0.6252316 0.07958143 0.002418731 +0.6806558 0.07958143 0.002418731 +0.7388448 0.07958143 0.002418731 +0.7998369 0.07958143 0.002418731 +0.8636691 0.07958143 0.002418731 +0.9303782 0.07958143 0.002418731 +1 0.07958143 0.002418731 +0 0.0968001 0.002418731 +0.002418731 0.0968001 0.002418731 +0.005155668 0.0968001 0.002418731 +0.009080105 0.0968001 0.002418731 +0.01434988 0.0968001 0.002418731 +0.02107202 0.0968001 0.002418731 +0.02934285 0.0968001 0.002418731 +0.03925039 0.0968001 0.002418731 +0.05087609 0.0968001 0.002418731 +0.06429595 0.0968001 0.002418731 +0.07958143 0.0968001 0.002418731 +0.0968001 0.0968001 0.002418731 +0.1160161 0.0968001 0.002418731 +0.1372908 0.0968001 0.002418731 +0.1606827 0.0968001 0.002418731 +0.1862481 0.0968001 0.002418731 +0.2140411 0.0968001 0.002418731 +0.2441142 0.0968001 0.002418731 +0.2765176 0.0968001 0.002418731 +0.3113005 0.0968001 0.002418731 +0.3485102 0.0968001 0.002418731 +0.388193 0.0968001 0.002418731 +0.4303934 0.0968001 0.002418731 +0.4751555 0.0968001 0.002418731 +0.5225216 0.0968001 0.002418731 +0.5725335 0.0968001 0.002418731 +0.6252316 0.0968001 0.002418731 +0.6806558 0.0968001 0.002418731 +0.7388448 0.0968001 0.002418731 +0.7998369 0.0968001 0.002418731 +0.8636691 0.0968001 0.002418731 +0.9303782 0.0968001 0.002418731 +1 0.0968001 0.002418731 +0 0.1160161 0.002418731 +0.002418731 0.1160161 0.002418731 +0.005155668 0.1160161 0.002418731 +0.009080105 0.1160161 0.002418731 +0.01434988 0.1160161 0.002418731 +0.02107202 0.1160161 0.002418731 +0.02934285 0.1160161 0.002418731 +0.03925039 0.1160161 0.002418731 +0.05087609 0.1160161 0.002418731 +0.06429595 0.1160161 0.002418731 +0.07958143 0.1160161 0.002418731 +0.0968001 0.1160161 0.002418731 +0.1160161 0.1160161 0.002418731 +0.1372908 0.1160161 0.002418731 +0.1606827 0.1160161 0.002418731 +0.1862481 0.1160161 0.002418731 +0.2140411 0.1160161 0.002418731 +0.2441142 0.1160161 0.002418731 +0.2765176 0.1160161 0.002418731 +0.3113005 0.1160161 0.002418731 +0.3485102 0.1160161 0.002418731 +0.388193 0.1160161 0.002418731 +0.4303934 0.1160161 0.002418731 +0.4751555 0.1160161 0.002418731 +0.5225216 0.1160161 0.002418731 +0.5725335 0.1160161 0.002418731 +0.6252316 0.1160161 0.002418731 +0.6806558 0.1160161 0.002418731 +0.7388448 0.1160161 0.002418731 +0.7998369 0.1160161 0.002418731 +0.8636691 0.1160161 0.002418731 +0.9303782 0.1160161 0.002418731 +1 0.1160161 0.002418731 +0 0.1372908 0.002418731 +0.002418731 0.1372908 0.002418731 +0.005155668 0.1372908 0.002418731 +0.009080105 0.1372908 0.002418731 +0.01434988 0.1372908 0.002418731 +0.02107202 0.1372908 0.002418731 +0.02934285 0.1372908 0.002418731 +0.03925039 0.1372908 0.002418731 +0.05087609 0.1372908 0.002418731 +0.06429595 0.1372908 0.002418731 +0.07958143 0.1372908 0.002418731 +0.0968001 0.1372908 0.002418731 +0.1160161 0.1372908 0.002418731 +0.1372908 0.1372908 0.002418731 +0.1606827 0.1372908 0.002418731 +0.1862481 0.1372908 0.002418731 +0.2140411 0.1372908 0.002418731 +0.2441142 0.1372908 0.002418731 +0.2765176 0.1372908 0.002418731 +0.3113005 0.1372908 0.002418731 +0.3485102 0.1372908 0.002418731 +0.388193 0.1372908 0.002418731 +0.4303934 0.1372908 0.002418731 +0.4751555 0.1372908 0.002418731 +0.5225216 0.1372908 0.002418731 +0.5725335 0.1372908 0.002418731 +0.6252316 0.1372908 0.002418731 +0.6806558 0.1372908 0.002418731 +0.7388448 0.1372908 0.002418731 +0.7998369 0.1372908 0.002418731 +0.8636691 0.1372908 0.002418731 +0.9303782 0.1372908 0.002418731 +1 0.1372908 0.002418731 +0 0.1606827 0.002418731 +0.002418731 0.1606827 0.002418731 +0.005155668 0.1606827 0.002418731 +0.009080105 0.1606827 0.002418731 +0.01434988 0.1606827 0.002418731 +0.02107202 0.1606827 0.002418731 +0.02934285 0.1606827 0.002418731 +0.03925039 0.1606827 0.002418731 +0.05087609 0.1606827 0.002418731 +0.06429595 0.1606827 0.002418731 +0.07958143 0.1606827 0.002418731 +0.0968001 0.1606827 0.002418731 +0.1160161 0.1606827 0.002418731 +0.1372908 0.1606827 0.002418731 +0.1606827 0.1606827 0.002418731 +0.1862481 0.1606827 0.002418731 +0.2140411 0.1606827 0.002418731 +0.2441142 0.1606827 0.002418731 +0.2765176 0.1606827 0.002418731 +0.3113005 0.1606827 0.002418731 +0.3485102 0.1606827 0.002418731 +0.388193 0.1606827 0.002418731 +0.4303934 0.1606827 0.002418731 +0.4751555 0.1606827 0.002418731 +0.5225216 0.1606827 0.002418731 +0.5725335 0.1606827 0.002418731 +0.6252316 0.1606827 0.002418731 +0.6806558 0.1606827 0.002418731 +0.7388448 0.1606827 0.002418731 +0.7998369 0.1606827 0.002418731 +0.8636691 0.1606827 0.002418731 +0.9303782 0.1606827 0.002418731 +1 0.1606827 0.002418731 +0 0.1862481 0.002418731 +0.002418731 0.1862481 0.002418731 +0.005155668 0.1862481 0.002418731 +0.009080105 0.1862481 0.002418731 +0.01434988 0.1862481 0.002418731 +0.02107202 0.1862481 0.002418731 +0.02934285 0.1862481 0.002418731 +0.03925039 0.1862481 0.002418731 +0.05087609 0.1862481 0.002418731 +0.06429595 0.1862481 0.002418731 +0.07958143 0.1862481 0.002418731 +0.0968001 0.1862481 0.002418731 +0.1160161 0.1862481 0.002418731 +0.1372908 0.1862481 0.002418731 +0.1606827 0.1862481 0.002418731 +0.1862481 0.1862481 0.002418731 +0.2140411 0.1862481 0.002418731 +0.2441142 0.1862481 0.002418731 +0.2765176 0.1862481 0.002418731 +0.3113005 0.1862481 0.002418731 +0.3485102 0.1862481 0.002418731 +0.388193 0.1862481 0.002418731 +0.4303934 0.1862481 0.002418731 +0.4751555 0.1862481 0.002418731 +0.5225216 0.1862481 0.002418731 +0.5725335 0.1862481 0.002418731 +0.6252316 0.1862481 0.002418731 +0.6806558 0.1862481 0.002418731 +0.7388448 0.1862481 0.002418731 +0.7998369 0.1862481 0.002418731 +0.8636691 0.1862481 0.002418731 +0.9303782 0.1862481 0.002418731 +1 0.1862481 0.002418731 +0 0.2140411 0.002418731 +0.002418731 0.2140411 0.002418731 +0.005155668 0.2140411 0.002418731 +0.009080105 0.2140411 0.002418731 +0.01434988 0.2140411 0.002418731 +0.02107202 0.2140411 0.002418731 +0.02934285 0.2140411 0.002418731 +0.03925039 0.2140411 0.002418731 +0.05087609 0.2140411 0.002418731 +0.06429595 0.2140411 0.002418731 +0.07958143 0.2140411 0.002418731 +0.0968001 0.2140411 0.002418731 +0.1160161 0.2140411 0.002418731 +0.1372908 0.2140411 0.002418731 +0.1606827 0.2140411 0.002418731 +0.1862481 0.2140411 0.002418731 +0.2140411 0.2140411 0.002418731 +0.2441142 0.2140411 0.002418731 +0.2765176 0.2140411 0.002418731 +0.3113005 0.2140411 0.002418731 +0.3485102 0.2140411 0.002418731 +0.388193 0.2140411 0.002418731 +0.4303934 0.2140411 0.002418731 +0.4751555 0.2140411 0.002418731 +0.5225216 0.2140411 0.002418731 +0.5725335 0.2140411 0.002418731 +0.6252316 0.2140411 0.002418731 +0.6806558 0.2140411 0.002418731 +0.7388448 0.2140411 0.002418731 +0.7998369 0.2140411 0.002418731 +0.8636691 0.2140411 0.002418731 +0.9303782 0.2140411 0.002418731 +1 0.2140411 0.002418731 +0 0.2441142 0.002418731 +0.002418731 0.2441142 0.002418731 +0.005155668 0.2441142 0.002418731 +0.009080105 0.2441142 0.002418731 +0.01434988 0.2441142 0.002418731 +0.02107202 0.2441142 0.002418731 +0.02934285 0.2441142 0.002418731 +0.03925039 0.2441142 0.002418731 +0.05087609 0.2441142 0.002418731 +0.06429595 0.2441142 0.002418731 +0.07958143 0.2441142 0.002418731 +0.0968001 0.2441142 0.002418731 +0.1160161 0.2441142 0.002418731 +0.1372908 0.2441142 0.002418731 +0.1606827 0.2441142 0.002418731 +0.1862481 0.2441142 0.002418731 +0.2140411 0.2441142 0.002418731 +0.2441142 0.2441142 0.002418731 +0.2765176 0.2441142 0.002418731 +0.3113005 0.2441142 0.002418731 +0.3485102 0.2441142 0.002418731 +0.388193 0.2441142 0.002418731 +0.4303934 0.2441142 0.002418731 +0.4751555 0.2441142 0.002418731 +0.5225216 0.2441142 0.002418731 +0.5725335 0.2441142 0.002418731 +0.6252316 0.2441142 0.002418731 +0.6806558 0.2441142 0.002418731 +0.7388448 0.2441142 0.002418731 +0.7998369 0.2441142 0.002418731 +0.8636691 0.2441142 0.002418731 +0.9303782 0.2441142 0.002418731 +1 0.2441142 0.002418731 +0 0.2765176 0.002418731 +0.002418731 0.2765176 0.002418731 +0.005155668 0.2765176 0.002418731 +0.009080105 0.2765176 0.002418731 +0.01434988 0.2765176 0.002418731 +0.02107202 0.2765176 0.002418731 +0.02934285 0.2765176 0.002418731 +0.03925039 0.2765176 0.002418731 +0.05087609 0.2765176 0.002418731 +0.06429595 0.2765176 0.002418731 +0.07958143 0.2765176 0.002418731 +0.0968001 0.2765176 0.002418731 +0.1160161 0.2765176 0.002418731 +0.1372908 0.2765176 0.002418731 +0.1606827 0.2765176 0.002418731 +0.1862481 0.2765176 0.002418731 +0.2140411 0.2765176 0.002418731 +0.2441142 0.2765176 0.002418731 +0.2765176 0.2765176 0.002418731 +0.3113005 0.2765176 0.002418731 +0.3485102 0.2765176 0.002418731 +0.388193 0.2765176 0.002418731 +0.4303934 0.2765176 0.002418731 +0.4751555 0.2765176 0.002418731 +0.5225216 0.2765176 0.002418731 +0.5725335 0.2765176 0.002418731 +0.6252316 0.2765176 0.002418731 +0.6806558 0.2765176 0.002418731 +0.7388448 0.2765176 0.002418731 +0.7998369 0.2765176 0.002418731 +0.8636691 0.2765176 0.002418731 +0.9303782 0.2765176 0.002418731 +1 0.2765176 0.002418731 +0 0.3113005 0.002418731 +0.002418731 0.3113005 0.002418731 +0.005155668 0.3113005 0.002418731 +0.009080105 0.3113005 0.002418731 +0.01434988 0.3113005 0.002418731 +0.02107202 0.3113005 0.002418731 +0.02934285 0.3113005 0.002418731 +0.03925039 0.3113005 0.002418731 +0.05087609 0.3113005 0.002418731 +0.06429595 0.3113005 0.002418731 +0.07958143 0.3113005 0.002418731 +0.0968001 0.3113005 0.002418731 +0.1160161 0.3113005 0.002418731 +0.1372908 0.3113005 0.002418731 +0.1606827 0.3113005 0.002418731 +0.1862481 0.3113005 0.002418731 +0.2140411 0.3113005 0.002418731 +0.2441142 0.3113005 0.002418731 +0.2765176 0.3113005 0.002418731 +0.3113005 0.3113005 0.002418731 +0.3485102 0.3113005 0.002418731 +0.388193 0.3113005 0.002418731 +0.4303934 0.3113005 0.002418731 +0.4751555 0.3113005 0.002418731 +0.5225216 0.3113005 0.002418731 +0.5725335 0.3113005 0.002418731 +0.6252316 0.3113005 0.002418731 +0.6806558 0.3113005 0.002418731 +0.7388448 0.3113005 0.002418731 +0.7998369 0.3113005 0.002418731 +0.8636691 0.3113005 0.002418731 +0.9303782 0.3113005 0.002418731 +1 0.3113005 0.002418731 +0 0.3485102 0.002418731 +0.002418731 0.3485102 0.002418731 +0.005155668 0.3485102 0.002418731 +0.009080105 0.3485102 0.002418731 +0.01434988 0.3485102 0.002418731 +0.02107202 0.3485102 0.002418731 +0.02934285 0.3485102 0.002418731 +0.03925039 0.3485102 0.002418731 +0.05087609 0.3485102 0.002418731 +0.06429595 0.3485102 0.002418731 +0.07958143 0.3485102 0.002418731 +0.0968001 0.3485102 0.002418731 +0.1160161 0.3485102 0.002418731 +0.1372908 0.3485102 0.002418731 +0.1606827 0.3485102 0.002418731 +0.1862481 0.3485102 0.002418731 +0.2140411 0.3485102 0.002418731 +0.2441142 0.3485102 0.002418731 +0.2765176 0.3485102 0.002418731 +0.3113005 0.3485102 0.002418731 +0.3485102 0.3485102 0.002418731 +0.388193 0.3485102 0.002418731 +0.4303934 0.3485102 0.002418731 +0.4751555 0.3485102 0.002418731 +0.5225216 0.3485102 0.002418731 +0.5725335 0.3485102 0.002418731 +0.6252316 0.3485102 0.002418731 +0.6806558 0.3485102 0.002418731 +0.7388448 0.3485102 0.002418731 +0.7998369 0.3485102 0.002418731 +0.8636691 0.3485102 0.002418731 +0.9303782 0.3485102 0.002418731 +1 0.3485102 0.002418731 +0 0.388193 0.002418731 +0.002418731 0.388193 0.002418731 +0.005155668 0.388193 0.002418731 +0.009080105 0.388193 0.002418731 +0.01434988 0.388193 0.002418731 +0.02107202 0.388193 0.002418731 +0.02934285 0.388193 0.002418731 +0.03925039 0.388193 0.002418731 +0.05087609 0.388193 0.002418731 +0.06429595 0.388193 0.002418731 +0.07958143 0.388193 0.002418731 +0.0968001 0.388193 0.002418731 +0.1160161 0.388193 0.002418731 +0.1372908 0.388193 0.002418731 +0.1606827 0.388193 0.002418731 +0.1862481 0.388193 0.002418731 +0.2140411 0.388193 0.002418731 +0.2441142 0.388193 0.002418731 +0.2765176 0.388193 0.002418731 +0.3113005 0.388193 0.002418731 +0.3485102 0.388193 0.002418731 +0.388193 0.388193 0.002418731 +0.4303934 0.388193 0.002418731 +0.4751555 0.388193 0.002418731 +0.5225216 0.388193 0.002418731 +0.5725335 0.388193 0.002418731 +0.6252316 0.388193 0.002418731 +0.6806558 0.388193 0.002418731 +0.7388448 0.388193 0.002418731 +0.7998369 0.388193 0.002418731 +0.8636691 0.388193 0.002418731 +0.9303782 0.388193 0.002418731 +1 0.388193 0.002418731 +0 0.4303934 0.002418731 +0.002418731 0.4303934 0.002418731 +0.005155668 0.4303934 0.002418731 +0.009080105 0.4303934 0.002418731 +0.01434988 0.4303934 0.002418731 +0.02107202 0.4303934 0.002418731 +0.02934285 0.4303934 0.002418731 +0.03925039 0.4303934 0.002418731 +0.05087609 0.4303934 0.002418731 +0.06429595 0.4303934 0.002418731 +0.07958143 0.4303934 0.002418731 +0.0968001 0.4303934 0.002418731 +0.1160161 0.4303934 0.002418731 +0.1372908 0.4303934 0.002418731 +0.1606827 0.4303934 0.002418731 +0.1862481 0.4303934 0.002418731 +0.2140411 0.4303934 0.002418731 +0.2441142 0.4303934 0.002418731 +0.2765176 0.4303934 0.002418731 +0.3113005 0.4303934 0.002418731 +0.3485102 0.4303934 0.002418731 +0.388193 0.4303934 0.002418731 +0.4303934 0.4303934 0.002418731 +0.4751555 0.4303934 0.002418731 +0.5225216 0.4303934 0.002418731 +0.5725335 0.4303934 0.002418731 +0.6252316 0.4303934 0.002418731 +0.6806558 0.4303934 0.002418731 +0.7388448 0.4303934 0.002418731 +0.7998369 0.4303934 0.002418731 +0.8636691 0.4303934 0.002418731 +0.9303782 0.4303934 0.002418731 +1 0.4303934 0.002418731 +0 0.4751555 0.002418731 +0.002418731 0.4751555 0.002418731 +0.005155668 0.4751555 0.002418731 +0.009080105 0.4751555 0.002418731 +0.01434988 0.4751555 0.002418731 +0.02107202 0.4751555 0.002418731 +0.02934285 0.4751555 0.002418731 +0.03925039 0.4751555 0.002418731 +0.05087609 0.4751555 0.002418731 +0.06429595 0.4751555 0.002418731 +0.07958143 0.4751555 0.002418731 +0.0968001 0.4751555 0.002418731 +0.1160161 0.4751555 0.002418731 +0.1372908 0.4751555 0.002418731 +0.1606827 0.4751555 0.002418731 +0.1862481 0.4751555 0.002418731 +0.2140411 0.4751555 0.002418731 +0.2441142 0.4751555 0.002418731 +0.2765176 0.4751555 0.002418731 +0.3113005 0.4751555 0.002418731 +0.3485102 0.4751555 0.002418731 +0.388193 0.4751555 0.002418731 +0.4303934 0.4751555 0.002418731 +0.4751555 0.4751555 0.002418731 +0.5225216 0.4751555 0.002418731 +0.5725335 0.4751555 0.002418731 +0.6252316 0.4751555 0.002418731 +0.6806558 0.4751555 0.002418731 +0.7388448 0.4751555 0.002418731 +0.7998369 0.4751555 0.002418731 +0.8636691 0.4751555 0.002418731 +0.9303782 0.4751555 0.002418731 +1 0.4751555 0.002418731 +0 0.5225216 0.002418731 +0.002418731 0.5225216 0.002418731 +0.005155668 0.5225216 0.002418731 +0.009080105 0.5225216 0.002418731 +0.01434988 0.5225216 0.002418731 +0.02107202 0.5225216 0.002418731 +0.02934285 0.5225216 0.002418731 +0.03925039 0.5225216 0.002418731 +0.05087609 0.5225216 0.002418731 +0.06429595 0.5225216 0.002418731 +0.07958143 0.5225216 0.002418731 +0.0968001 0.5225216 0.002418731 +0.1160161 0.5225216 0.002418731 +0.1372908 0.5225216 0.002418731 +0.1606827 0.5225216 0.002418731 +0.1862481 0.5225216 0.002418731 +0.2140411 0.5225216 0.002418731 +0.2441142 0.5225216 0.002418731 +0.2765176 0.5225216 0.002418731 +0.3113005 0.5225216 0.002418731 +0.3485102 0.5225216 0.002418731 +0.388193 0.5225216 0.002418731 +0.4303934 0.5225216 0.002418731 +0.4751555 0.5225216 0.002418731 +0.5225216 0.5225216 0.002418731 +0.5725335 0.5225216 0.002418731 +0.6252316 0.5225216 0.002418731 +0.6806558 0.5225216 0.002418731 +0.7388448 0.5225216 0.002418731 +0.7998369 0.5225216 0.002418731 +0.8636691 0.5225216 0.002418731 +0.9303782 0.5225216 0.002418731 +1 0.5225216 0.002418731 +0 0.5725335 0.002418731 +0.002418731 0.5725335 0.002418731 +0.005155668 0.5725335 0.002418731 +0.009080105 0.5725335 0.002418731 +0.01434988 0.5725335 0.002418731 +0.02107202 0.5725335 0.002418731 +0.02934285 0.5725335 0.002418731 +0.03925039 0.5725335 0.002418731 +0.05087609 0.5725335 0.002418731 +0.06429595 0.5725335 0.002418731 +0.07958143 0.5725335 0.002418731 +0.0968001 0.5725335 0.002418731 +0.1160161 0.5725335 0.002418731 +0.1372908 0.5725335 0.002418731 +0.1606827 0.5725335 0.002418731 +0.1862481 0.5725335 0.002418731 +0.2140411 0.5725335 0.002418731 +0.2441142 0.5725335 0.002418731 +0.2765176 0.5725335 0.002418731 +0.3113005 0.5725335 0.002418731 +0.3485102 0.5725335 0.002418731 +0.388193 0.5725335 0.002418731 +0.4303934 0.5725335 0.002418731 +0.4751555 0.5725335 0.002418731 +0.5225216 0.5725335 0.002418731 +0.5725335 0.5725335 0.002418731 +0.6252316 0.5725335 0.002418731 +0.6806558 0.5725335 0.002418731 +0.7388448 0.5725335 0.002418731 +0.7998369 0.5725335 0.002418731 +0.8636691 0.5725335 0.002418731 +0.9303782 0.5725335 0.002418731 +1 0.5725335 0.002418731 +0 0.6252316 0.002418731 +0.002418731 0.6252316 0.002418731 +0.005155668 0.6252316 0.002418731 +0.009080105 0.6252316 0.002418731 +0.01434988 0.6252316 0.002418731 +0.02107202 0.6252316 0.002418731 +0.02934285 0.6252316 0.002418731 +0.03925039 0.6252316 0.002418731 +0.05087609 0.6252316 0.002418731 +0.06429595 0.6252316 0.002418731 +0.07958143 0.6252316 0.002418731 +0.0968001 0.6252316 0.002418731 +0.1160161 0.6252316 0.002418731 +0.1372908 0.6252316 0.002418731 +0.1606827 0.6252316 0.002418731 +0.1862481 0.6252316 0.002418731 +0.2140411 0.6252316 0.002418731 +0.2441142 0.6252316 0.002418731 +0.2765176 0.6252316 0.002418731 +0.3113005 0.6252316 0.002418731 +0.3485102 0.6252316 0.002418731 +0.388193 0.6252316 0.002418731 +0.4303934 0.6252316 0.002418731 +0.4751555 0.6252316 0.002418731 +0.5225216 0.6252316 0.002418731 +0.5725335 0.6252316 0.002418731 +0.6252316 0.6252316 0.002418731 +0.6806558 0.6252316 0.002418731 +0.7388448 0.6252316 0.002418731 +0.7998369 0.6252316 0.002418731 +0.8636691 0.6252316 0.002418731 +0.9303782 0.6252316 0.002418731 +1 0.6252316 0.002418731 +0 0.6806558 0.002418731 +0.002418731 0.6806558 0.002418731 +0.005155668 0.6806558 0.002418731 +0.009080105 0.6806558 0.002418731 +0.01434988 0.6806558 0.002418731 +0.02107202 0.6806558 0.002418731 +0.02934285 0.6806558 0.002418731 +0.03925039 0.6806558 0.002418731 +0.05087609 0.6806558 0.002418731 +0.06429595 0.6806558 0.002418731 +0.07958143 0.6806558 0.002418731 +0.0968001 0.6806558 0.002418731 +0.1160161 0.6806558 0.002418731 +0.1372908 0.6806558 0.002418731 +0.1606827 0.6806558 0.002418731 +0.1862481 0.6806558 0.002418731 +0.2140411 0.6806558 0.002418731 +0.2441142 0.6806558 0.002418731 +0.2765176 0.6806558 0.002418731 +0.3113005 0.6806558 0.002418731 +0.3485102 0.6806558 0.002418731 +0.388193 0.6806558 0.002418731 +0.4303934 0.6806558 0.002418731 +0.4751555 0.6806558 0.002418731 +0.5225216 0.6806558 0.002418731 +0.5725335 0.6806558 0.002418731 +0.6252316 0.6806558 0.002418731 +0.6806558 0.6806558 0.002418731 +0.7388448 0.6806558 0.002418731 +0.7998369 0.6806558 0.002418731 +0.8636691 0.6806558 0.002418731 +0.9303782 0.6806558 0.002418731 +1 0.6806558 0.002418731 +0 0.7388448 0.002418731 +0.002418731 0.7388448 0.002418731 +0.005155668 0.7388448 0.002418731 +0.009080105 0.7388448 0.002418731 +0.01434988 0.7388448 0.002418731 +0.02107202 0.7388448 0.002418731 +0.02934285 0.7388448 0.002418731 +0.03925039 0.7388448 0.002418731 +0.05087609 0.7388448 0.002418731 +0.06429595 0.7388448 0.002418731 +0.07958143 0.7388448 0.002418731 +0.0968001 0.7388448 0.002418731 +0.1160161 0.7388448 0.002418731 +0.1372908 0.7388448 0.002418731 +0.1606827 0.7388448 0.002418731 +0.1862481 0.7388448 0.002418731 +0.2140411 0.7388448 0.002418731 +0.2441142 0.7388448 0.002418731 +0.2765176 0.7388448 0.002418731 +0.3113005 0.7388448 0.002418731 +0.3485102 0.7388448 0.002418731 +0.388193 0.7388448 0.002418731 +0.4303934 0.7388448 0.002418731 +0.4751555 0.7388448 0.002418731 +0.5225216 0.7388448 0.002418731 +0.5725335 0.7388448 0.002418731 +0.6252316 0.7388448 0.002418731 +0.6806558 0.7388448 0.002418731 +0.7388448 0.7388448 0.002418731 +0.7998369 0.7388448 0.002418731 +0.8636691 0.7388448 0.002418731 +0.9303782 0.7388448 0.002418731 +1 0.7388448 0.002418731 +0 0.7998369 0.002418731 +0.002418731 0.7998369 0.002418731 +0.005155668 0.7998369 0.002418731 +0.009080105 0.7998369 0.002418731 +0.01434988 0.7998369 0.002418731 +0.02107202 0.7998369 0.002418731 +0.02934285 0.7998369 0.002418731 +0.03925039 0.7998369 0.002418731 +0.05087609 0.7998369 0.002418731 +0.06429595 0.7998369 0.002418731 +0.07958143 0.7998369 0.002418731 +0.0968001 0.7998369 0.002418731 +0.1160161 0.7998369 0.002418731 +0.1372908 0.7998369 0.002418731 +0.1606827 0.7998369 0.002418731 +0.1862481 0.7998369 0.002418731 +0.2140411 0.7998369 0.002418731 +0.2441142 0.7998369 0.002418731 +0.2765176 0.7998369 0.002418731 +0.3113005 0.7998369 0.002418731 +0.3485102 0.7998369 0.002418731 +0.388193 0.7998369 0.002418731 +0.4303934 0.7998369 0.002418731 +0.4751555 0.7998369 0.002418731 +0.5225216 0.7998369 0.002418731 +0.5725335 0.7998369 0.002418731 +0.6252316 0.7998369 0.002418731 +0.6806558 0.7998369 0.002418731 +0.7388448 0.7998369 0.002418731 +0.7998369 0.7998369 0.002418731 +0.8636691 0.7998369 0.002418731 +0.9303782 0.7998369 0.002418731 +1 0.7998369 0.002418731 +0 0.8636691 0.002418731 +0.002418731 0.8636691 0.002418731 +0.005155668 0.8636691 0.002418731 +0.009080105 0.8636691 0.002418731 +0.01434988 0.8636691 0.002418731 +0.02107202 0.8636691 0.002418731 +0.02934285 0.8636691 0.002418731 +0.03925039 0.8636691 0.002418731 +0.05087609 0.8636691 0.002418731 +0.06429595 0.8636691 0.002418731 +0.07958143 0.8636691 0.002418731 +0.0968001 0.8636691 0.002418731 +0.1160161 0.8636691 0.002418731 +0.1372908 0.8636691 0.002418731 +0.1606827 0.8636691 0.002418731 +0.1862481 0.8636691 0.002418731 +0.2140411 0.8636691 0.002418731 +0.2441142 0.8636691 0.002418731 +0.2765176 0.8636691 0.002418731 +0.3113005 0.8636691 0.002418731 +0.3485102 0.8636691 0.002418731 +0.388193 0.8636691 0.002418731 +0.4303934 0.8636691 0.002418731 +0.4751555 0.8636691 0.002418731 +0.5225216 0.8636691 0.002418731 +0.5725335 0.8636691 0.002418731 +0.6252316 0.8636691 0.002418731 +0.6806558 0.8636691 0.002418731 +0.7388448 0.8636691 0.002418731 +0.7998369 0.8636691 0.002418731 +0.8636691 0.8636691 0.002418731 +0.9303782 0.8636691 0.002418731 +1 0.8636691 0.002418731 +0 0.9303782 0.002418731 +0.002418731 0.9303782 0.002418731 +0.005155668 0.9303782 0.002418731 +0.009080105 0.9303782 0.002418731 +0.01434988 0.9303782 0.002418731 +0.02107202 0.9303782 0.002418731 +0.02934285 0.9303782 0.002418731 +0.03925039 0.9303782 0.002418731 +0.05087609 0.9303782 0.002418731 +0.06429595 0.9303782 0.002418731 +0.07958143 0.9303782 0.002418731 +0.0968001 0.9303782 0.002418731 +0.1160161 0.9303782 0.002418731 +0.1372908 0.9303782 0.002418731 +0.1606827 0.9303782 0.002418731 +0.1862481 0.9303782 0.002418731 +0.2140411 0.9303782 0.002418731 +0.2441142 0.9303782 0.002418731 +0.2765176 0.9303782 0.002418731 +0.3113005 0.9303782 0.002418731 +0.3485102 0.9303782 0.002418731 +0.388193 0.9303782 0.002418731 +0.4303934 0.9303782 0.002418731 +0.4751555 0.9303782 0.002418731 +0.5225216 0.9303782 0.002418731 +0.5725335 0.9303782 0.002418731 +0.6252316 0.9303782 0.002418731 +0.6806558 0.9303782 0.002418731 +0.7388448 0.9303782 0.002418731 +0.7998369 0.9303782 0.002418731 +0.8636691 0.9303782 0.002418731 +0.9303782 0.9303782 0.002418731 +1 0.9303782 0.002418731 +0 1 0.002418731 +0.002418731 1 0.002418731 +0.005155668 1 0.002418731 +0.009080105 1 0.002418731 +0.01434988 1 0.002418731 +0.02107202 1 0.002418731 +0.02934285 1 0.002418731 +0.03925039 1 0.002418731 +0.05087609 1 0.002418731 +0.06429595 1 0.002418731 +0.07958143 1 0.002418731 +0.0968001 1 0.002418731 +0.1160161 1 0.002418731 +0.1372908 1 0.002418731 +0.1606827 1 0.002418731 +0.1862481 1 0.002418731 +0.2140411 1 0.002418731 +0.2441142 1 0.002418731 +0.2765176 1 0.002418731 +0.3113005 1 0.002418731 +0.3485102 1 0.002418731 +0.388193 1 0.002418731 +0.4303934 1 0.002418731 +0.4751555 1 0.002418731 +0.5225216 1 0.002418731 +0.5725335 1 0.002418731 +0.6252316 1 0.002418731 +0.6806558 1 0.002418731 +0.7388448 1 0.002418731 +0.7998369 1 0.002418731 +0.8636691 1 0.002418731 +0.9303782 1 0.002418731 +1 1 0.002418731 +0 0 0.005155668 +0.002418731 0 0.005155668 +0.005155668 0 0.005155668 +0.009080105 0 0.005155668 +0.01434988 0 0.005155668 +0.02107202 0 0.005155668 +0.02934285 0 0.005155668 +0.03925039 0 0.005155668 +0.05087609 0 0.005155668 +0.06429595 0 0.005155668 +0.07958143 0 0.005155668 +0.0968001 0 0.005155668 +0.1160161 0 0.005155668 +0.1372908 0 0.005155668 +0.1606827 0 0.005155668 +0.1862481 0 0.005155668 +0.2140411 0 0.005155668 +0.2441142 0 0.005155668 +0.2765176 0 0.005155668 +0.3113005 0 0.005155668 +0.3485102 0 0.005155668 +0.388193 0 0.005155668 +0.4303934 0 0.005155668 +0.4751555 0 0.005155668 +0.5225216 0 0.005155668 +0.5725335 0 0.005155668 +0.6252316 0 0.005155668 +0.6806558 0 0.005155668 +0.7388448 0 0.005155668 +0.7998369 0 0.005155668 +0.8636691 0 0.005155668 +0.9303782 0 0.005155668 +1 0 0.005155668 +0 0.002418731 0.005155668 +0.002418731 0.002418731 0.005155668 +0.005155668 0.002418731 0.005155668 +0.009080105 0.002418731 0.005155668 +0.01434988 0.002418731 0.005155668 +0.02107202 0.002418731 0.005155668 +0.02934285 0.002418731 0.005155668 +0.03925039 0.002418731 0.005155668 +0.05087609 0.002418731 0.005155668 +0.06429595 0.002418731 0.005155668 +0.07958143 0.002418731 0.005155668 +0.0968001 0.002418731 0.005155668 +0.1160161 0.002418731 0.005155668 +0.1372908 0.002418731 0.005155668 +0.1606827 0.002418731 0.005155668 +0.1862481 0.002418731 0.005155668 +0.2140411 0.002418731 0.005155668 +0.2441142 0.002418731 0.005155668 +0.2765176 0.002418731 0.005155668 +0.3113005 0.002418731 0.005155668 +0.3485102 0.002418731 0.005155668 +0.388193 0.002418731 0.005155668 +0.4303934 0.002418731 0.005155668 +0.4751555 0.002418731 0.005155668 +0.5225216 0.002418731 0.005155668 +0.5725335 0.002418731 0.005155668 +0.6252316 0.002418731 0.005155668 +0.6806558 0.002418731 0.005155668 +0.7388448 0.002418731 0.005155668 +0.7998369 0.002418731 0.005155668 +0.8636691 0.002418731 0.005155668 +0.9303782 0.002418731 0.005155668 +1 0.002418731 0.005155668 +0 0.005155668 0.005155668 +0.002418731 0.005155668 0.005155668 +0.005155668 0.005155668 0.005155668 +0.009080105 0.005155668 0.005155668 +0.01434988 0.005155668 0.005155668 +0.02107202 0.005155668 0.005155668 +0.02934285 0.005155668 0.005155668 +0.03925039 0.005155668 0.005155668 +0.05087609 0.005155668 0.005155668 +0.06429595 0.005155668 0.005155668 +0.07958143 0.005155668 0.005155668 +0.0968001 0.005155668 0.005155668 +0.1160161 0.005155668 0.005155668 +0.1372908 0.005155668 0.005155668 +0.1606827 0.005155668 0.005155668 +0.1862481 0.005155668 0.005155668 +0.2140411 0.005155668 0.005155668 +0.2441142 0.005155668 0.005155668 +0.2765176 0.005155668 0.005155668 +0.3113005 0.005155668 0.005155668 +0.3485102 0.005155668 0.005155668 +0.388193 0.005155668 0.005155668 +0.4303934 0.005155668 0.005155668 +0.4751555 0.005155668 0.005155668 +0.5225216 0.005155668 0.005155668 +0.5725335 0.005155668 0.005155668 +0.6252316 0.005155668 0.005155668 +0.6806558 0.005155668 0.005155668 +0.7388448 0.005155668 0.005155668 +0.7998369 0.005155668 0.005155668 +0.8636691 0.005155668 0.005155668 +0.9303782 0.005155668 0.005155668 +1 0.005155668 0.005155668 +0 0.009080105 0.005155668 +0.002418731 0.009080105 0.005155668 +0.005155668 0.009080105 0.005155668 +0.009080105 0.009080105 0.005155668 +0.01434988 0.009080105 0.005155668 +0.02107202 0.009080105 0.005155668 +0.02934285 0.009080105 0.005155668 +0.03925039 0.009080105 0.005155668 +0.05087609 0.009080105 0.005155668 +0.06429595 0.009080105 0.005155668 +0.07958143 0.009080105 0.005155668 +0.0968001 0.009080105 0.005155668 +0.1160161 0.009080105 0.005155668 +0.1372908 0.009080105 0.005155668 +0.1606827 0.009080105 0.005155668 +0.1862481 0.009080105 0.005155668 +0.2140411 0.009080105 0.005155668 +0.2441142 0.009080105 0.005155668 +0.2765176 0.009080105 0.005155668 +0.3113005 0.009080105 0.005155668 +0.3485102 0.009080105 0.005155668 +0.388193 0.009080105 0.005155668 +0.4303934 0.009080105 0.005155668 +0.4751555 0.009080105 0.005155668 +0.5225216 0.009080105 0.005155668 +0.5725335 0.009080105 0.005155668 +0.6252316 0.009080105 0.005155668 +0.6806558 0.009080105 0.005155668 +0.7388448 0.009080105 0.005155668 +0.7998369 0.009080105 0.005155668 +0.8636691 0.009080105 0.005155668 +0.9303782 0.009080105 0.005155668 +1 0.009080105 0.005155668 +0 0.01434988 0.005155668 +0.002418731 0.01434988 0.005155668 +0.005155668 0.01434988 0.005155668 +0.009080105 0.01434988 0.005155668 +0.01434988 0.01434988 0.005155668 +0.02107202 0.01434988 0.005155668 +0.02934285 0.01434988 0.005155668 +0.03925039 0.01434988 0.005155668 +0.05087609 0.01434988 0.005155668 +0.06429595 0.01434988 0.005155668 +0.07958143 0.01434988 0.005155668 +0.0968001 0.01434988 0.005155668 +0.1160161 0.01434988 0.005155668 +0.1372908 0.01434988 0.005155668 +0.1606827 0.01434988 0.005155668 +0.1862481 0.01434988 0.005155668 +0.2140411 0.01434988 0.005155668 +0.2441142 0.01434988 0.005155668 +0.2765176 0.01434988 0.005155668 +0.3113005 0.01434988 0.005155668 +0.3485102 0.01434988 0.005155668 +0.388193 0.01434988 0.005155668 +0.4303934 0.01434988 0.005155668 +0.4751555 0.01434988 0.005155668 +0.5225216 0.01434988 0.005155668 +0.5725335 0.01434988 0.005155668 +0.6252316 0.01434988 0.005155668 +0.6806558 0.01434988 0.005155668 +0.7388448 0.01434988 0.005155668 +0.7998369 0.01434988 0.005155668 +0.8636691 0.01434988 0.005155668 +0.9303782 0.01434988 0.005155668 +1 0.01434988 0.005155668 +0 0.02107202 0.005155668 +0.002418731 0.02107202 0.005155668 +0.005155668 0.02107202 0.005155668 +0.009080105 0.02107202 0.005155668 +0.01434988 0.02107202 0.005155668 +0.02107202 0.02107202 0.005155668 +0.02934285 0.02107202 0.005155668 +0.03925039 0.02107202 0.005155668 +0.05087609 0.02107202 0.005155668 +0.06429595 0.02107202 0.005155668 +0.07958143 0.02107202 0.005155668 +0.0968001 0.02107202 0.005155668 +0.1160161 0.02107202 0.005155668 +0.1372908 0.02107202 0.005155668 +0.1606827 0.02107202 0.005155668 +0.1862481 0.02107202 0.005155668 +0.2140411 0.02107202 0.005155668 +0.2441142 0.02107202 0.005155668 +0.2765176 0.02107202 0.005155668 +0.3113005 0.02107202 0.005155668 +0.3485102 0.02107202 0.005155668 +0.388193 0.02107202 0.005155668 +0.4303934 0.02107202 0.005155668 +0.4751555 0.02107202 0.005155668 +0.5225216 0.02107202 0.005155668 +0.5725335 0.02107202 0.005155668 +0.6252316 0.02107202 0.005155668 +0.6806558 0.02107202 0.005155668 +0.7388448 0.02107202 0.005155668 +0.7998369 0.02107202 0.005155668 +0.8636691 0.02107202 0.005155668 +0.9303782 0.02107202 0.005155668 +1 0.02107202 0.005155668 +0 0.02934285 0.005155668 +0.002418731 0.02934285 0.005155668 +0.005155668 0.02934285 0.005155668 +0.009080105 0.02934285 0.005155668 +0.01434988 0.02934285 0.005155668 +0.02107202 0.02934285 0.005155668 +0.02934285 0.02934285 0.005155668 +0.03925039 0.02934285 0.005155668 +0.05087609 0.02934285 0.005155668 +0.06429595 0.02934285 0.005155668 +0.07958143 0.02934285 0.005155668 +0.0968001 0.02934285 0.005155668 +0.1160161 0.02934285 0.005155668 +0.1372908 0.02934285 0.005155668 +0.1606827 0.02934285 0.005155668 +0.1862481 0.02934285 0.005155668 +0.2140411 0.02934285 0.005155668 +0.2441142 0.02934285 0.005155668 +0.2765176 0.02934285 0.005155668 +0.3113005 0.02934285 0.005155668 +0.3485102 0.02934285 0.005155668 +0.388193 0.02934285 0.005155668 +0.4303934 0.02934285 0.005155668 +0.4751555 0.02934285 0.005155668 +0.5225216 0.02934285 0.005155668 +0.5725335 0.02934285 0.005155668 +0.6252316 0.02934285 0.005155668 +0.6806558 0.02934285 0.005155668 +0.7388448 0.02934285 0.005155668 +0.7998369 0.02934285 0.005155668 +0.8636691 0.02934285 0.005155668 +0.9303782 0.02934285 0.005155668 +1 0.02934285 0.005155668 +0 0.03925039 0.005155668 +0.002418731 0.03925039 0.005155668 +0.005155668 0.03925039 0.005155668 +0.009080105 0.03925039 0.005155668 +0.01434988 0.03925039 0.005155668 +0.02107202 0.03925039 0.005155668 +0.02934285 0.03925039 0.005155668 +0.03925039 0.03925039 0.005155668 +0.05087609 0.03925039 0.005155668 +0.06429595 0.03925039 0.005155668 +0.07958143 0.03925039 0.005155668 +0.0968001 0.03925039 0.005155668 +0.1160161 0.03925039 0.005155668 +0.1372908 0.03925039 0.005155668 +0.1606827 0.03925039 0.005155668 +0.1862481 0.03925039 0.005155668 +0.2140411 0.03925039 0.005155668 +0.2441142 0.03925039 0.005155668 +0.2765176 0.03925039 0.005155668 +0.3113005 0.03925039 0.005155668 +0.3485102 0.03925039 0.005155668 +0.388193 0.03925039 0.005155668 +0.4303934 0.03925039 0.005155668 +0.4751555 0.03925039 0.005155668 +0.5225216 0.03925039 0.005155668 +0.5725335 0.03925039 0.005155668 +0.6252316 0.03925039 0.005155668 +0.6806558 0.03925039 0.005155668 +0.7388448 0.03925039 0.005155668 +0.7998369 0.03925039 0.005155668 +0.8636691 0.03925039 0.005155668 +0.9303782 0.03925039 0.005155668 +1 0.03925039 0.005155668 +0 0.05087609 0.005155668 +0.002418731 0.05087609 0.005155668 +0.005155668 0.05087609 0.005155668 +0.009080105 0.05087609 0.005155668 +0.01434988 0.05087609 0.005155668 +0.02107202 0.05087609 0.005155668 +0.02934285 0.05087609 0.005155668 +0.03925039 0.05087609 0.005155668 +0.05087609 0.05087609 0.005155668 +0.06429595 0.05087609 0.005155668 +0.07958143 0.05087609 0.005155668 +0.0968001 0.05087609 0.005155668 +0.1160161 0.05087609 0.005155668 +0.1372908 0.05087609 0.005155668 +0.1606827 0.05087609 0.005155668 +0.1862481 0.05087609 0.005155668 +0.2140411 0.05087609 0.005155668 +0.2441142 0.05087609 0.005155668 +0.2765176 0.05087609 0.005155668 +0.3113005 0.05087609 0.005155668 +0.3485102 0.05087609 0.005155668 +0.388193 0.05087609 0.005155668 +0.4303934 0.05087609 0.005155668 +0.4751555 0.05087609 0.005155668 +0.5225216 0.05087609 0.005155668 +0.5725335 0.05087609 0.005155668 +0.6252316 0.05087609 0.005155668 +0.6806558 0.05087609 0.005155668 +0.7388448 0.05087609 0.005155668 +0.7998369 0.05087609 0.005155668 +0.8636691 0.05087609 0.005155668 +0.9303782 0.05087609 0.005155668 +1 0.05087609 0.005155668 +0 0.06429595 0.005155668 +0.002418731 0.06429595 0.005155668 +0.005155668 0.06429595 0.005155668 +0.009080105 0.06429595 0.005155668 +0.01434988 0.06429595 0.005155668 +0.02107202 0.06429595 0.005155668 +0.02934285 0.06429595 0.005155668 +0.03925039 0.06429595 0.005155668 +0.05087609 0.06429595 0.005155668 +0.06429595 0.06429595 0.005155668 +0.07958143 0.06429595 0.005155668 +0.0968001 0.06429595 0.005155668 +0.1160161 0.06429595 0.005155668 +0.1372908 0.06429595 0.005155668 +0.1606827 0.06429595 0.005155668 +0.1862481 0.06429595 0.005155668 +0.2140411 0.06429595 0.005155668 +0.2441142 0.06429595 0.005155668 +0.2765176 0.06429595 0.005155668 +0.3113005 0.06429595 0.005155668 +0.3485102 0.06429595 0.005155668 +0.388193 0.06429595 0.005155668 +0.4303934 0.06429595 0.005155668 +0.4751555 0.06429595 0.005155668 +0.5225216 0.06429595 0.005155668 +0.5725335 0.06429595 0.005155668 +0.6252316 0.06429595 0.005155668 +0.6806558 0.06429595 0.005155668 +0.7388448 0.06429595 0.005155668 +0.7998369 0.06429595 0.005155668 +0.8636691 0.06429595 0.005155668 +0.9303782 0.06429595 0.005155668 +1 0.06429595 0.005155668 +0 0.07958143 0.005155668 +0.002418731 0.07958143 0.005155668 +0.005155668 0.07958143 0.005155668 +0.009080105 0.07958143 0.005155668 +0.01434988 0.07958143 0.005155668 +0.02107202 0.07958143 0.005155668 +0.02934285 0.07958143 0.005155668 +0.03925039 0.07958143 0.005155668 +0.05087609 0.07958143 0.005155668 +0.06429595 0.07958143 0.005155668 +0.07958143 0.07958143 0.005155668 +0.0968001 0.07958143 0.005155668 +0.1160161 0.07958143 0.005155668 +0.1372908 0.07958143 0.005155668 +0.1606827 0.07958143 0.005155668 +0.1862481 0.07958143 0.005155668 +0.2140411 0.07958143 0.005155668 +0.2441142 0.07958143 0.005155668 +0.2765176 0.07958143 0.005155668 +0.3113005 0.07958143 0.005155668 +0.3485102 0.07958143 0.005155668 +0.388193 0.07958143 0.005155668 +0.4303934 0.07958143 0.005155668 +0.4751555 0.07958143 0.005155668 +0.5225216 0.07958143 0.005155668 +0.5725335 0.07958143 0.005155668 +0.6252316 0.07958143 0.005155668 +0.6806558 0.07958143 0.005155668 +0.7388448 0.07958143 0.005155668 +0.7998369 0.07958143 0.005155668 +0.8636691 0.07958143 0.005155668 +0.9303782 0.07958143 0.005155668 +1 0.07958143 0.005155668 +0 0.0968001 0.005155668 +0.002418731 0.0968001 0.005155668 +0.005155668 0.0968001 0.005155668 +0.009080105 0.0968001 0.005155668 +0.01434988 0.0968001 0.005155668 +0.02107202 0.0968001 0.005155668 +0.02934285 0.0968001 0.005155668 +0.03925039 0.0968001 0.005155668 +0.05087609 0.0968001 0.005155668 +0.06429595 0.0968001 0.005155668 +0.07958143 0.0968001 0.005155668 +0.0968001 0.0968001 0.005155668 +0.1160161 0.0968001 0.005155668 +0.1372908 0.0968001 0.005155668 +0.1606827 0.0968001 0.005155668 +0.1862481 0.0968001 0.005155668 +0.2140411 0.0968001 0.005155668 +0.2441142 0.0968001 0.005155668 +0.2765176 0.0968001 0.005155668 +0.3113005 0.0968001 0.005155668 +0.3485102 0.0968001 0.005155668 +0.388193 0.0968001 0.005155668 +0.4303934 0.0968001 0.005155668 +0.4751555 0.0968001 0.005155668 +0.5225216 0.0968001 0.005155668 +0.5725335 0.0968001 0.005155668 +0.6252316 0.0968001 0.005155668 +0.6806558 0.0968001 0.005155668 +0.7388448 0.0968001 0.005155668 +0.7998369 0.0968001 0.005155668 +0.8636691 0.0968001 0.005155668 +0.9303782 0.0968001 0.005155668 +1 0.0968001 0.005155668 +0 0.1160161 0.005155668 +0.002418731 0.1160161 0.005155668 +0.005155668 0.1160161 0.005155668 +0.009080105 0.1160161 0.005155668 +0.01434988 0.1160161 0.005155668 +0.02107202 0.1160161 0.005155668 +0.02934285 0.1160161 0.005155668 +0.03925039 0.1160161 0.005155668 +0.05087609 0.1160161 0.005155668 +0.06429595 0.1160161 0.005155668 +0.07958143 0.1160161 0.005155668 +0.0968001 0.1160161 0.005155668 +0.1160161 0.1160161 0.005155668 +0.1372908 0.1160161 0.005155668 +0.1606827 0.1160161 0.005155668 +0.1862481 0.1160161 0.005155668 +0.2140411 0.1160161 0.005155668 +0.2441142 0.1160161 0.005155668 +0.2765176 0.1160161 0.005155668 +0.3113005 0.1160161 0.005155668 +0.3485102 0.1160161 0.005155668 +0.388193 0.1160161 0.005155668 +0.4303934 0.1160161 0.005155668 +0.4751555 0.1160161 0.005155668 +0.5225216 0.1160161 0.005155668 +0.5725335 0.1160161 0.005155668 +0.6252316 0.1160161 0.005155668 +0.6806558 0.1160161 0.005155668 +0.7388448 0.1160161 0.005155668 +0.7998369 0.1160161 0.005155668 +0.8636691 0.1160161 0.005155668 +0.9303782 0.1160161 0.005155668 +1 0.1160161 0.005155668 +0 0.1372908 0.005155668 +0.002418731 0.1372908 0.005155668 +0.005155668 0.1372908 0.005155668 +0.009080105 0.1372908 0.005155668 +0.01434988 0.1372908 0.005155668 +0.02107202 0.1372908 0.005155668 +0.02934285 0.1372908 0.005155668 +0.03925039 0.1372908 0.005155668 +0.05087609 0.1372908 0.005155668 +0.06429595 0.1372908 0.005155668 +0.07958143 0.1372908 0.005155668 +0.0968001 0.1372908 0.005155668 +0.1160161 0.1372908 0.005155668 +0.1372908 0.1372908 0.005155668 +0.1606827 0.1372908 0.005155668 +0.1862481 0.1372908 0.005155668 +0.2140411 0.1372908 0.005155668 +0.2441142 0.1372908 0.005155668 +0.2765176 0.1372908 0.005155668 +0.3113005 0.1372908 0.005155668 +0.3485102 0.1372908 0.005155668 +0.388193 0.1372908 0.005155668 +0.4303934 0.1372908 0.005155668 +0.4751555 0.1372908 0.005155668 +0.5225216 0.1372908 0.005155668 +0.5725335 0.1372908 0.005155668 +0.6252316 0.1372908 0.005155668 +0.6806558 0.1372908 0.005155668 +0.7388448 0.1372908 0.005155668 +0.7998369 0.1372908 0.005155668 +0.8636691 0.1372908 0.005155668 +0.9303782 0.1372908 0.005155668 +1 0.1372908 0.005155668 +0 0.1606827 0.005155668 +0.002418731 0.1606827 0.005155668 +0.005155668 0.1606827 0.005155668 +0.009080105 0.1606827 0.005155668 +0.01434988 0.1606827 0.005155668 +0.02107202 0.1606827 0.005155668 +0.02934285 0.1606827 0.005155668 +0.03925039 0.1606827 0.005155668 +0.05087609 0.1606827 0.005155668 +0.06429595 0.1606827 0.005155668 +0.07958143 0.1606827 0.005155668 +0.0968001 0.1606827 0.005155668 +0.1160161 0.1606827 0.005155668 +0.1372908 0.1606827 0.005155668 +0.1606827 0.1606827 0.005155668 +0.1862481 0.1606827 0.005155668 +0.2140411 0.1606827 0.005155668 +0.2441142 0.1606827 0.005155668 +0.2765176 0.1606827 0.005155668 +0.3113005 0.1606827 0.005155668 +0.3485102 0.1606827 0.005155668 +0.388193 0.1606827 0.005155668 +0.4303934 0.1606827 0.005155668 +0.4751555 0.1606827 0.005155668 +0.5225216 0.1606827 0.005155668 +0.5725335 0.1606827 0.005155668 +0.6252316 0.1606827 0.005155668 +0.6806558 0.1606827 0.005155668 +0.7388448 0.1606827 0.005155668 +0.7998369 0.1606827 0.005155668 +0.8636691 0.1606827 0.005155668 +0.9303782 0.1606827 0.005155668 +1 0.1606827 0.005155668 +0 0.1862481 0.005155668 +0.002418731 0.1862481 0.005155668 +0.005155668 0.1862481 0.005155668 +0.009080105 0.1862481 0.005155668 +0.01434988 0.1862481 0.005155668 +0.02107202 0.1862481 0.005155668 +0.02934285 0.1862481 0.005155668 +0.03925039 0.1862481 0.005155668 +0.05087609 0.1862481 0.005155668 +0.06429595 0.1862481 0.005155668 +0.07958143 0.1862481 0.005155668 +0.0968001 0.1862481 0.005155668 +0.1160161 0.1862481 0.005155668 +0.1372908 0.1862481 0.005155668 +0.1606827 0.1862481 0.005155668 +0.1862481 0.1862481 0.005155668 +0.2140411 0.1862481 0.005155668 +0.2441142 0.1862481 0.005155668 +0.2765176 0.1862481 0.005155668 +0.3113005 0.1862481 0.005155668 +0.3485102 0.1862481 0.005155668 +0.388193 0.1862481 0.005155668 +0.4303934 0.1862481 0.005155668 +0.4751555 0.1862481 0.005155668 +0.5225216 0.1862481 0.005155668 +0.5725335 0.1862481 0.005155668 +0.6252316 0.1862481 0.005155668 +0.6806558 0.1862481 0.005155668 +0.7388448 0.1862481 0.005155668 +0.7998369 0.1862481 0.005155668 +0.8636691 0.1862481 0.005155668 +0.9303782 0.1862481 0.005155668 +1 0.1862481 0.005155668 +0 0.2140411 0.005155668 +0.002418731 0.2140411 0.005155668 +0.005155668 0.2140411 0.005155668 +0.009080105 0.2140411 0.005155668 +0.01434988 0.2140411 0.005155668 +0.02107202 0.2140411 0.005155668 +0.02934285 0.2140411 0.005155668 +0.03925039 0.2140411 0.005155668 +0.05087609 0.2140411 0.005155668 +0.06429595 0.2140411 0.005155668 +0.07958143 0.2140411 0.005155668 +0.0968001 0.2140411 0.005155668 +0.1160161 0.2140411 0.005155668 +0.1372908 0.2140411 0.005155668 +0.1606827 0.2140411 0.005155668 +0.1862481 0.2140411 0.005155668 +0.2140411 0.2140411 0.005155668 +0.2441142 0.2140411 0.005155668 +0.2765176 0.2140411 0.005155668 +0.3113005 0.2140411 0.005155668 +0.3485102 0.2140411 0.005155668 +0.388193 0.2140411 0.005155668 +0.4303934 0.2140411 0.005155668 +0.4751555 0.2140411 0.005155668 +0.5225216 0.2140411 0.005155668 +0.5725335 0.2140411 0.005155668 +0.6252316 0.2140411 0.005155668 +0.6806558 0.2140411 0.005155668 +0.7388448 0.2140411 0.005155668 +0.7998369 0.2140411 0.005155668 +0.8636691 0.2140411 0.005155668 +0.9303782 0.2140411 0.005155668 +1 0.2140411 0.005155668 +0 0.2441142 0.005155668 +0.002418731 0.2441142 0.005155668 +0.005155668 0.2441142 0.005155668 +0.009080105 0.2441142 0.005155668 +0.01434988 0.2441142 0.005155668 +0.02107202 0.2441142 0.005155668 +0.02934285 0.2441142 0.005155668 +0.03925039 0.2441142 0.005155668 +0.05087609 0.2441142 0.005155668 +0.06429595 0.2441142 0.005155668 +0.07958143 0.2441142 0.005155668 +0.0968001 0.2441142 0.005155668 +0.1160161 0.2441142 0.005155668 +0.1372908 0.2441142 0.005155668 +0.1606827 0.2441142 0.005155668 +0.1862481 0.2441142 0.005155668 +0.2140411 0.2441142 0.005155668 +0.2441142 0.2441142 0.005155668 +0.2765176 0.2441142 0.005155668 +0.3113005 0.2441142 0.005155668 +0.3485102 0.2441142 0.005155668 +0.388193 0.2441142 0.005155668 +0.4303934 0.2441142 0.005155668 +0.4751555 0.2441142 0.005155668 +0.5225216 0.2441142 0.005155668 +0.5725335 0.2441142 0.005155668 +0.6252316 0.2441142 0.005155668 +0.6806558 0.2441142 0.005155668 +0.7388448 0.2441142 0.005155668 +0.7998369 0.2441142 0.005155668 +0.8636691 0.2441142 0.005155668 +0.9303782 0.2441142 0.005155668 +1 0.2441142 0.005155668 +0 0.2765176 0.005155668 +0.002418731 0.2765176 0.005155668 +0.005155668 0.2765176 0.005155668 +0.009080105 0.2765176 0.005155668 +0.01434988 0.2765176 0.005155668 +0.02107202 0.2765176 0.005155668 +0.02934285 0.2765176 0.005155668 +0.03925039 0.2765176 0.005155668 +0.05087609 0.2765176 0.005155668 +0.06429595 0.2765176 0.005155668 +0.07958143 0.2765176 0.005155668 +0.0968001 0.2765176 0.005155668 +0.1160161 0.2765176 0.005155668 +0.1372908 0.2765176 0.005155668 +0.1606827 0.2765176 0.005155668 +0.1862481 0.2765176 0.005155668 +0.2140411 0.2765176 0.005155668 +0.2441142 0.2765176 0.005155668 +0.2765176 0.2765176 0.005155668 +0.3113005 0.2765176 0.005155668 +0.3485102 0.2765176 0.005155668 +0.388193 0.2765176 0.005155668 +0.4303934 0.2765176 0.005155668 +0.4751555 0.2765176 0.005155668 +0.5225216 0.2765176 0.005155668 +0.5725335 0.2765176 0.005155668 +0.6252316 0.2765176 0.005155668 +0.6806558 0.2765176 0.005155668 +0.7388448 0.2765176 0.005155668 +0.7998369 0.2765176 0.005155668 +0.8636691 0.2765176 0.005155668 +0.9303782 0.2765176 0.005155668 +1 0.2765176 0.005155668 +0 0.3113005 0.005155668 +0.002418731 0.3113005 0.005155668 +0.005155668 0.3113005 0.005155668 +0.009080105 0.3113005 0.005155668 +0.01434988 0.3113005 0.005155668 +0.02107202 0.3113005 0.005155668 +0.02934285 0.3113005 0.005155668 +0.03925039 0.3113005 0.005155668 +0.05087609 0.3113005 0.005155668 +0.06429595 0.3113005 0.005155668 +0.07958143 0.3113005 0.005155668 +0.0968001 0.3113005 0.005155668 +0.1160161 0.3113005 0.005155668 +0.1372908 0.3113005 0.005155668 +0.1606827 0.3113005 0.005155668 +0.1862481 0.3113005 0.005155668 +0.2140411 0.3113005 0.005155668 +0.2441142 0.3113005 0.005155668 +0.2765176 0.3113005 0.005155668 +0.3113005 0.3113005 0.005155668 +0.3485102 0.3113005 0.005155668 +0.388193 0.3113005 0.005155668 +0.4303934 0.3113005 0.005155668 +0.4751555 0.3113005 0.005155668 +0.5225216 0.3113005 0.005155668 +0.5725335 0.3113005 0.005155668 +0.6252316 0.3113005 0.005155668 +0.6806558 0.3113005 0.005155668 +0.7388448 0.3113005 0.005155668 +0.7998369 0.3113005 0.005155668 +0.8636691 0.3113005 0.005155668 +0.9303782 0.3113005 0.005155668 +1 0.3113005 0.005155668 +0 0.3485102 0.005155668 +0.002418731 0.3485102 0.005155668 +0.005155668 0.3485102 0.005155668 +0.009080105 0.3485102 0.005155668 +0.01434988 0.3485102 0.005155668 +0.02107202 0.3485102 0.005155668 +0.02934285 0.3485102 0.005155668 +0.03925039 0.3485102 0.005155668 +0.05087609 0.3485102 0.005155668 +0.06429595 0.3485102 0.005155668 +0.07958143 0.3485102 0.005155668 +0.0968001 0.3485102 0.005155668 +0.1160161 0.3485102 0.005155668 +0.1372908 0.3485102 0.005155668 +0.1606827 0.3485102 0.005155668 +0.1862481 0.3485102 0.005155668 +0.2140411 0.3485102 0.005155668 +0.2441142 0.3485102 0.005155668 +0.2765176 0.3485102 0.005155668 +0.3113005 0.3485102 0.005155668 +0.3485102 0.3485102 0.005155668 +0.388193 0.3485102 0.005155668 +0.4303934 0.3485102 0.005155668 +0.4751555 0.3485102 0.005155668 +0.5225216 0.3485102 0.005155668 +0.5725335 0.3485102 0.005155668 +0.6252316 0.3485102 0.005155668 +0.6806558 0.3485102 0.005155668 +0.7388448 0.3485102 0.005155668 +0.7998369 0.3485102 0.005155668 +0.8636691 0.3485102 0.005155668 +0.9303782 0.3485102 0.005155668 +1 0.3485102 0.005155668 +0 0.388193 0.005155668 +0.002418731 0.388193 0.005155668 +0.005155668 0.388193 0.005155668 +0.009080105 0.388193 0.005155668 +0.01434988 0.388193 0.005155668 +0.02107202 0.388193 0.005155668 +0.02934285 0.388193 0.005155668 +0.03925039 0.388193 0.005155668 +0.05087609 0.388193 0.005155668 +0.06429595 0.388193 0.005155668 +0.07958143 0.388193 0.005155668 +0.0968001 0.388193 0.005155668 +0.1160161 0.388193 0.005155668 +0.1372908 0.388193 0.005155668 +0.1606827 0.388193 0.005155668 +0.1862481 0.388193 0.005155668 +0.2140411 0.388193 0.005155668 +0.2441142 0.388193 0.005155668 +0.2765176 0.388193 0.005155668 +0.3113005 0.388193 0.005155668 +0.3485102 0.388193 0.005155668 +0.388193 0.388193 0.005155668 +0.4303934 0.388193 0.005155668 +0.4751555 0.388193 0.005155668 +0.5225216 0.388193 0.005155668 +0.5725335 0.388193 0.005155668 +0.6252316 0.388193 0.005155668 +0.6806558 0.388193 0.005155668 +0.7388448 0.388193 0.005155668 +0.7998369 0.388193 0.005155668 +0.8636691 0.388193 0.005155668 +0.9303782 0.388193 0.005155668 +1 0.388193 0.005155668 +0 0.4303934 0.005155668 +0.002418731 0.4303934 0.005155668 +0.005155668 0.4303934 0.005155668 +0.009080105 0.4303934 0.005155668 +0.01434988 0.4303934 0.005155668 +0.02107202 0.4303934 0.005155668 +0.02934285 0.4303934 0.005155668 +0.03925039 0.4303934 0.005155668 +0.05087609 0.4303934 0.005155668 +0.06429595 0.4303934 0.005155668 +0.07958143 0.4303934 0.005155668 +0.0968001 0.4303934 0.005155668 +0.1160161 0.4303934 0.005155668 +0.1372908 0.4303934 0.005155668 +0.1606827 0.4303934 0.005155668 +0.1862481 0.4303934 0.005155668 +0.2140411 0.4303934 0.005155668 +0.2441142 0.4303934 0.005155668 +0.2765176 0.4303934 0.005155668 +0.3113005 0.4303934 0.005155668 +0.3485102 0.4303934 0.005155668 +0.388193 0.4303934 0.005155668 +0.4303934 0.4303934 0.005155668 +0.4751555 0.4303934 0.005155668 +0.5225216 0.4303934 0.005155668 +0.5725335 0.4303934 0.005155668 +0.6252316 0.4303934 0.005155668 +0.6806558 0.4303934 0.005155668 +0.7388448 0.4303934 0.005155668 +0.7998369 0.4303934 0.005155668 +0.8636691 0.4303934 0.005155668 +0.9303782 0.4303934 0.005155668 +1 0.4303934 0.005155668 +0 0.4751555 0.005155668 +0.002418731 0.4751555 0.005155668 +0.005155668 0.4751555 0.005155668 +0.009080105 0.4751555 0.005155668 +0.01434988 0.4751555 0.005155668 +0.02107202 0.4751555 0.005155668 +0.02934285 0.4751555 0.005155668 +0.03925039 0.4751555 0.005155668 +0.05087609 0.4751555 0.005155668 +0.06429595 0.4751555 0.005155668 +0.07958143 0.4751555 0.005155668 +0.0968001 0.4751555 0.005155668 +0.1160161 0.4751555 0.005155668 +0.1372908 0.4751555 0.005155668 +0.1606827 0.4751555 0.005155668 +0.1862481 0.4751555 0.005155668 +0.2140411 0.4751555 0.005155668 +0.2441142 0.4751555 0.005155668 +0.2765176 0.4751555 0.005155668 +0.3113005 0.4751555 0.005155668 +0.3485102 0.4751555 0.005155668 +0.388193 0.4751555 0.005155668 +0.4303934 0.4751555 0.005155668 +0.4751555 0.4751555 0.005155668 +0.5225216 0.4751555 0.005155668 +0.5725335 0.4751555 0.005155668 +0.6252316 0.4751555 0.005155668 +0.6806558 0.4751555 0.005155668 +0.7388448 0.4751555 0.005155668 +0.7998369 0.4751555 0.005155668 +0.8636691 0.4751555 0.005155668 +0.9303782 0.4751555 0.005155668 +1 0.4751555 0.005155668 +0 0.5225216 0.005155668 +0.002418731 0.5225216 0.005155668 +0.005155668 0.5225216 0.005155668 +0.009080105 0.5225216 0.005155668 +0.01434988 0.5225216 0.005155668 +0.02107202 0.5225216 0.005155668 +0.02934285 0.5225216 0.005155668 +0.03925039 0.5225216 0.005155668 +0.05087609 0.5225216 0.005155668 +0.06429595 0.5225216 0.005155668 +0.07958143 0.5225216 0.005155668 +0.0968001 0.5225216 0.005155668 +0.1160161 0.5225216 0.005155668 +0.1372908 0.5225216 0.005155668 +0.1606827 0.5225216 0.005155668 +0.1862481 0.5225216 0.005155668 +0.2140411 0.5225216 0.005155668 +0.2441142 0.5225216 0.005155668 +0.2765176 0.5225216 0.005155668 +0.3113005 0.5225216 0.005155668 +0.3485102 0.5225216 0.005155668 +0.388193 0.5225216 0.005155668 +0.4303934 0.5225216 0.005155668 +0.4751555 0.5225216 0.005155668 +0.5225216 0.5225216 0.005155668 +0.5725335 0.5225216 0.005155668 +0.6252316 0.5225216 0.005155668 +0.6806558 0.5225216 0.005155668 +0.7388448 0.5225216 0.005155668 +0.7998369 0.5225216 0.005155668 +0.8636691 0.5225216 0.005155668 +0.9303782 0.5225216 0.005155668 +1 0.5225216 0.005155668 +0 0.5725335 0.005155668 +0.002418731 0.5725335 0.005155668 +0.005155668 0.5725335 0.005155668 +0.009080105 0.5725335 0.005155668 +0.01434988 0.5725335 0.005155668 +0.02107202 0.5725335 0.005155668 +0.02934285 0.5725335 0.005155668 +0.03925039 0.5725335 0.005155668 +0.05087609 0.5725335 0.005155668 +0.06429595 0.5725335 0.005155668 +0.07958143 0.5725335 0.005155668 +0.0968001 0.5725335 0.005155668 +0.1160161 0.5725335 0.005155668 +0.1372908 0.5725335 0.005155668 +0.1606827 0.5725335 0.005155668 +0.1862481 0.5725335 0.005155668 +0.2140411 0.5725335 0.005155668 +0.2441142 0.5725335 0.005155668 +0.2765176 0.5725335 0.005155668 +0.3113005 0.5725335 0.005155668 +0.3485102 0.5725335 0.005155668 +0.388193 0.5725335 0.005155668 +0.4303934 0.5725335 0.005155668 +0.4751555 0.5725335 0.005155668 +0.5225216 0.5725335 0.005155668 +0.5725335 0.5725335 0.005155668 +0.6252316 0.5725335 0.005155668 +0.6806558 0.5725335 0.005155668 +0.7388448 0.5725335 0.005155668 +0.7998369 0.5725335 0.005155668 +0.8636691 0.5725335 0.005155668 +0.9303782 0.5725335 0.005155668 +1 0.5725335 0.005155668 +0 0.6252316 0.005155668 +0.002418731 0.6252316 0.005155668 +0.005155668 0.6252316 0.005155668 +0.009080105 0.6252316 0.005155668 +0.01434988 0.6252316 0.005155668 +0.02107202 0.6252316 0.005155668 +0.02934285 0.6252316 0.005155668 +0.03925039 0.6252316 0.005155668 +0.05087609 0.6252316 0.005155668 +0.06429595 0.6252316 0.005155668 +0.07958143 0.6252316 0.005155668 +0.0968001 0.6252316 0.005155668 +0.1160161 0.6252316 0.005155668 +0.1372908 0.6252316 0.005155668 +0.1606827 0.6252316 0.005155668 +0.1862481 0.6252316 0.005155668 +0.2140411 0.6252316 0.005155668 +0.2441142 0.6252316 0.005155668 +0.2765176 0.6252316 0.005155668 +0.3113005 0.6252316 0.005155668 +0.3485102 0.6252316 0.005155668 +0.388193 0.6252316 0.005155668 +0.4303934 0.6252316 0.005155668 +0.4751555 0.6252316 0.005155668 +0.5225216 0.6252316 0.005155668 +0.5725335 0.6252316 0.005155668 +0.6252316 0.6252316 0.005155668 +0.6806558 0.6252316 0.005155668 +0.7388448 0.6252316 0.005155668 +0.7998369 0.6252316 0.005155668 +0.8636691 0.6252316 0.005155668 +0.9303782 0.6252316 0.005155668 +1 0.6252316 0.005155668 +0 0.6806558 0.005155668 +0.002418731 0.6806558 0.005155668 +0.005155668 0.6806558 0.005155668 +0.009080105 0.6806558 0.005155668 +0.01434988 0.6806558 0.005155668 +0.02107202 0.6806558 0.005155668 +0.02934285 0.6806558 0.005155668 +0.03925039 0.6806558 0.005155668 +0.05087609 0.6806558 0.005155668 +0.06429595 0.6806558 0.005155668 +0.07958143 0.6806558 0.005155668 +0.0968001 0.6806558 0.005155668 +0.1160161 0.6806558 0.005155668 +0.1372908 0.6806558 0.005155668 +0.1606827 0.6806558 0.005155668 +0.1862481 0.6806558 0.005155668 +0.2140411 0.6806558 0.005155668 +0.2441142 0.6806558 0.005155668 +0.2765176 0.6806558 0.005155668 +0.3113005 0.6806558 0.005155668 +0.3485102 0.6806558 0.005155668 +0.388193 0.6806558 0.005155668 +0.4303934 0.6806558 0.005155668 +0.4751555 0.6806558 0.005155668 +0.5225216 0.6806558 0.005155668 +0.5725335 0.6806558 0.005155668 +0.6252316 0.6806558 0.005155668 +0.6806558 0.6806558 0.005155668 +0.7388448 0.6806558 0.005155668 +0.7998369 0.6806558 0.005155668 +0.8636691 0.6806558 0.005155668 +0.9303782 0.6806558 0.005155668 +1 0.6806558 0.005155668 +0 0.7388448 0.005155668 +0.002418731 0.7388448 0.005155668 +0.005155668 0.7388448 0.005155668 +0.009080105 0.7388448 0.005155668 +0.01434988 0.7388448 0.005155668 +0.02107202 0.7388448 0.005155668 +0.02934285 0.7388448 0.005155668 +0.03925039 0.7388448 0.005155668 +0.05087609 0.7388448 0.005155668 +0.06429595 0.7388448 0.005155668 +0.07958143 0.7388448 0.005155668 +0.0968001 0.7388448 0.005155668 +0.1160161 0.7388448 0.005155668 +0.1372908 0.7388448 0.005155668 +0.1606827 0.7388448 0.005155668 +0.1862481 0.7388448 0.005155668 +0.2140411 0.7388448 0.005155668 +0.2441142 0.7388448 0.005155668 +0.2765176 0.7388448 0.005155668 +0.3113005 0.7388448 0.005155668 +0.3485102 0.7388448 0.005155668 +0.388193 0.7388448 0.005155668 +0.4303934 0.7388448 0.005155668 +0.4751555 0.7388448 0.005155668 +0.5225216 0.7388448 0.005155668 +0.5725335 0.7388448 0.005155668 +0.6252316 0.7388448 0.005155668 +0.6806558 0.7388448 0.005155668 +0.7388448 0.7388448 0.005155668 +0.7998369 0.7388448 0.005155668 +0.8636691 0.7388448 0.005155668 +0.9303782 0.7388448 0.005155668 +1 0.7388448 0.005155668 +0 0.7998369 0.005155668 +0.002418731 0.7998369 0.005155668 +0.005155668 0.7998369 0.005155668 +0.009080105 0.7998369 0.005155668 +0.01434988 0.7998369 0.005155668 +0.02107202 0.7998369 0.005155668 +0.02934285 0.7998369 0.005155668 +0.03925039 0.7998369 0.005155668 +0.05087609 0.7998369 0.005155668 +0.06429595 0.7998369 0.005155668 +0.07958143 0.7998369 0.005155668 +0.0968001 0.7998369 0.005155668 +0.1160161 0.7998369 0.005155668 +0.1372908 0.7998369 0.005155668 +0.1606827 0.7998369 0.005155668 +0.1862481 0.7998369 0.005155668 +0.2140411 0.7998369 0.005155668 +0.2441142 0.7998369 0.005155668 +0.2765176 0.7998369 0.005155668 +0.3113005 0.7998369 0.005155668 +0.3485102 0.7998369 0.005155668 +0.388193 0.7998369 0.005155668 +0.4303934 0.7998369 0.005155668 +0.4751555 0.7998369 0.005155668 +0.5225216 0.7998369 0.005155668 +0.5725335 0.7998369 0.005155668 +0.6252316 0.7998369 0.005155668 +0.6806558 0.7998369 0.005155668 +0.7388448 0.7998369 0.005155668 +0.7998369 0.7998369 0.005155668 +0.8636691 0.7998369 0.005155668 +0.9303782 0.7998369 0.005155668 +1 0.7998369 0.005155668 +0 0.8636691 0.005155668 +0.002418731 0.8636691 0.005155668 +0.005155668 0.8636691 0.005155668 +0.009080105 0.8636691 0.005155668 +0.01434988 0.8636691 0.005155668 +0.02107202 0.8636691 0.005155668 +0.02934285 0.8636691 0.005155668 +0.03925039 0.8636691 0.005155668 +0.05087609 0.8636691 0.005155668 +0.06429595 0.8636691 0.005155668 +0.07958143 0.8636691 0.005155668 +0.0968001 0.8636691 0.005155668 +0.1160161 0.8636691 0.005155668 +0.1372908 0.8636691 0.005155668 +0.1606827 0.8636691 0.005155668 +0.1862481 0.8636691 0.005155668 +0.2140411 0.8636691 0.005155668 +0.2441142 0.8636691 0.005155668 +0.2765176 0.8636691 0.005155668 +0.3113005 0.8636691 0.005155668 +0.3485102 0.8636691 0.005155668 +0.388193 0.8636691 0.005155668 +0.4303934 0.8636691 0.005155668 +0.4751555 0.8636691 0.005155668 +0.5225216 0.8636691 0.005155668 +0.5725335 0.8636691 0.005155668 +0.6252316 0.8636691 0.005155668 +0.6806558 0.8636691 0.005155668 +0.7388448 0.8636691 0.005155668 +0.7998369 0.8636691 0.005155668 +0.8636691 0.8636691 0.005155668 +0.9303782 0.8636691 0.005155668 +1 0.8636691 0.005155668 +0 0.9303782 0.005155668 +0.002418731 0.9303782 0.005155668 +0.005155668 0.9303782 0.005155668 +0.009080105 0.9303782 0.005155668 +0.01434988 0.9303782 0.005155668 +0.02107202 0.9303782 0.005155668 +0.02934285 0.9303782 0.005155668 +0.03925039 0.9303782 0.005155668 +0.05087609 0.9303782 0.005155668 +0.06429595 0.9303782 0.005155668 +0.07958143 0.9303782 0.005155668 +0.0968001 0.9303782 0.005155668 +0.1160161 0.9303782 0.005155668 +0.1372908 0.9303782 0.005155668 +0.1606827 0.9303782 0.005155668 +0.1862481 0.9303782 0.005155668 +0.2140411 0.9303782 0.005155668 +0.2441142 0.9303782 0.005155668 +0.2765176 0.9303782 0.005155668 +0.3113005 0.9303782 0.005155668 +0.3485102 0.9303782 0.005155668 +0.388193 0.9303782 0.005155668 +0.4303934 0.9303782 0.005155668 +0.4751555 0.9303782 0.005155668 +0.5225216 0.9303782 0.005155668 +0.5725335 0.9303782 0.005155668 +0.6252316 0.9303782 0.005155668 +0.6806558 0.9303782 0.005155668 +0.7388448 0.9303782 0.005155668 +0.7998369 0.9303782 0.005155668 +0.8636691 0.9303782 0.005155668 +0.9303782 0.9303782 0.005155668 +1 0.9303782 0.005155668 +0 1 0.005155668 +0.002418731 1 0.005155668 +0.005155668 1 0.005155668 +0.009080105 1 0.005155668 +0.01434988 1 0.005155668 +0.02107202 1 0.005155668 +0.02934285 1 0.005155668 +0.03925039 1 0.005155668 +0.05087609 1 0.005155668 +0.06429595 1 0.005155668 +0.07958143 1 0.005155668 +0.0968001 1 0.005155668 +0.1160161 1 0.005155668 +0.1372908 1 0.005155668 +0.1606827 1 0.005155668 +0.1862481 1 0.005155668 +0.2140411 1 0.005155668 +0.2441142 1 0.005155668 +0.2765176 1 0.005155668 +0.3113005 1 0.005155668 +0.3485102 1 0.005155668 +0.388193 1 0.005155668 +0.4303934 1 0.005155668 +0.4751555 1 0.005155668 +0.5225216 1 0.005155668 +0.5725335 1 0.005155668 +0.6252316 1 0.005155668 +0.6806558 1 0.005155668 +0.7388448 1 0.005155668 +0.7998369 1 0.005155668 +0.8636691 1 0.005155668 +0.9303782 1 0.005155668 +1 1 0.005155668 +0 0 0.009080105 +0.002418731 0 0.009080105 +0.005155668 0 0.009080105 +0.009080105 0 0.009080105 +0.01434988 0 0.009080105 +0.02107202 0 0.009080105 +0.02934285 0 0.009080105 +0.03925039 0 0.009080105 +0.05087609 0 0.009080105 +0.06429595 0 0.009080105 +0.07958143 0 0.009080105 +0.0968001 0 0.009080105 +0.1160161 0 0.009080105 +0.1372908 0 0.009080105 +0.1606827 0 0.009080105 +0.1862481 0 0.009080105 +0.2140411 0 0.009080105 +0.2441142 0 0.009080105 +0.2765176 0 0.009080105 +0.3113005 0 0.009080105 +0.3485102 0 0.009080105 +0.388193 0 0.009080105 +0.4303934 0 0.009080105 +0.4751555 0 0.009080105 +0.5225216 0 0.009080105 +0.5725335 0 0.009080105 +0.6252316 0 0.009080105 +0.6806558 0 0.009080105 +0.7388448 0 0.009080105 +0.7998369 0 0.009080105 +0.8636691 0 0.009080105 +0.9303782 0 0.009080105 +1 0 0.009080105 +0 0.002418731 0.009080105 +0.002418731 0.002418731 0.009080105 +0.005155668 0.002418731 0.009080105 +0.009080105 0.002418731 0.009080105 +0.01434988 0.002418731 0.009080105 +0.02107202 0.002418731 0.009080105 +0.02934285 0.002418731 0.009080105 +0.03925039 0.002418731 0.009080105 +0.05087609 0.002418731 0.009080105 +0.06429595 0.002418731 0.009080105 +0.07958143 0.002418731 0.009080105 +0.0968001 0.002418731 0.009080105 +0.1160161 0.002418731 0.009080105 +0.1372908 0.002418731 0.009080105 +0.1606827 0.002418731 0.009080105 +0.1862481 0.002418731 0.009080105 +0.2140411 0.002418731 0.009080105 +0.2441142 0.002418731 0.009080105 +0.2765176 0.002418731 0.009080105 +0.3113005 0.002418731 0.009080105 +0.3485102 0.002418731 0.009080105 +0.388193 0.002418731 0.009080105 +0.4303934 0.002418731 0.009080105 +0.4751555 0.002418731 0.009080105 +0.5225216 0.002418731 0.009080105 +0.5725335 0.002418731 0.009080105 +0.6252316 0.002418731 0.009080105 +0.6806558 0.002418731 0.009080105 +0.7388448 0.002418731 0.009080105 +0.7998369 0.002418731 0.009080105 +0.8636691 0.002418731 0.009080105 +0.9303782 0.002418731 0.009080105 +1 0.002418731 0.009080105 +0 0.005155668 0.009080105 +0.002418731 0.005155668 0.009080105 +0.005155668 0.005155668 0.009080105 +0.009080105 0.005155668 0.009080105 +0.01434988 0.005155668 0.009080105 +0.02107202 0.005155668 0.009080105 +0.02934285 0.005155668 0.009080105 +0.03925039 0.005155668 0.009080105 +0.05087609 0.005155668 0.009080105 +0.06429595 0.005155668 0.009080105 +0.07958143 0.005155668 0.009080105 +0.0968001 0.005155668 0.009080105 +0.1160161 0.005155668 0.009080105 +0.1372908 0.005155668 0.009080105 +0.1606827 0.005155668 0.009080105 +0.1862481 0.005155668 0.009080105 +0.2140411 0.005155668 0.009080105 +0.2441142 0.005155668 0.009080105 +0.2765176 0.005155668 0.009080105 +0.3113005 0.005155668 0.009080105 +0.3485102 0.005155668 0.009080105 +0.388193 0.005155668 0.009080105 +0.4303934 0.005155668 0.009080105 +0.4751555 0.005155668 0.009080105 +0.5225216 0.005155668 0.009080105 +0.5725335 0.005155668 0.009080105 +0.6252316 0.005155668 0.009080105 +0.6806558 0.005155668 0.009080105 +0.7388448 0.005155668 0.009080105 +0.7998369 0.005155668 0.009080105 +0.8636691 0.005155668 0.009080105 +0.9303782 0.005155668 0.009080105 +1 0.005155668 0.009080105 +0 0.009080105 0.009080105 +0.002418731 0.009080105 0.009080105 +0.005155668 0.009080105 0.009080105 +0.009080105 0.009080105 0.009080105 +0.01434988 0.009080105 0.009080105 +0.02107202 0.009080105 0.009080105 +0.02934285 0.009080105 0.009080105 +0.03925039 0.009080105 0.009080105 +0.05087609 0.009080105 0.009080105 +0.06429595 0.009080105 0.009080105 +0.07958143 0.009080105 0.009080105 +0.0968001 0.009080105 0.009080105 +0.1160161 0.009080105 0.009080105 +0.1372908 0.009080105 0.009080105 +0.1606827 0.009080105 0.009080105 +0.1862481 0.009080105 0.009080105 +0.2140411 0.009080105 0.009080105 +0.2441142 0.009080105 0.009080105 +0.2765176 0.009080105 0.009080105 +0.3113005 0.009080105 0.009080105 +0.3485102 0.009080105 0.009080105 +0.388193 0.009080105 0.009080105 +0.4303934 0.009080105 0.009080105 +0.4751555 0.009080105 0.009080105 +0.5225216 0.009080105 0.009080105 +0.5725335 0.009080105 0.009080105 +0.6252316 0.009080105 0.009080105 +0.6806558 0.009080105 0.009080105 +0.7388448 0.009080105 0.009080105 +0.7998369 0.009080105 0.009080105 +0.8636691 0.009080105 0.009080105 +0.9303782 0.009080105 0.009080105 +1 0.009080105 0.009080105 +0 0.01434988 0.009080105 +0.002418731 0.01434988 0.009080105 +0.005155668 0.01434988 0.009080105 +0.009080105 0.01434988 0.009080105 +0.01434988 0.01434988 0.009080105 +0.02107202 0.01434988 0.009080105 +0.02934285 0.01434988 0.009080105 +0.03925039 0.01434988 0.009080105 +0.05087609 0.01434988 0.009080105 +0.06429595 0.01434988 0.009080105 +0.07958143 0.01434988 0.009080105 +0.0968001 0.01434988 0.009080105 +0.1160161 0.01434988 0.009080105 +0.1372908 0.01434988 0.009080105 +0.1606827 0.01434988 0.009080105 +0.1862481 0.01434988 0.009080105 +0.2140411 0.01434988 0.009080105 +0.2441142 0.01434988 0.009080105 +0.2765176 0.01434988 0.009080105 +0.3113005 0.01434988 0.009080105 +0.3485102 0.01434988 0.009080105 +0.388193 0.01434988 0.009080105 +0.4303934 0.01434988 0.009080105 +0.4751555 0.01434988 0.009080105 +0.5225216 0.01434988 0.009080105 +0.5725335 0.01434988 0.009080105 +0.6252316 0.01434988 0.009080105 +0.6806558 0.01434988 0.009080105 +0.7388448 0.01434988 0.009080105 +0.7998369 0.01434988 0.009080105 +0.8636691 0.01434988 0.009080105 +0.9303782 0.01434988 0.009080105 +1 0.01434988 0.009080105 +0 0.02107202 0.009080105 +0.002418731 0.02107202 0.009080105 +0.005155668 0.02107202 0.009080105 +0.009080105 0.02107202 0.009080105 +0.01434988 0.02107202 0.009080105 +0.02107202 0.02107202 0.009080105 +0.02934285 0.02107202 0.009080105 +0.03925039 0.02107202 0.009080105 +0.05087609 0.02107202 0.009080105 +0.06429595 0.02107202 0.009080105 +0.07958143 0.02107202 0.009080105 +0.0968001 0.02107202 0.009080105 +0.1160161 0.02107202 0.009080105 +0.1372908 0.02107202 0.009080105 +0.1606827 0.02107202 0.009080105 +0.1862481 0.02107202 0.009080105 +0.2140411 0.02107202 0.009080105 +0.2441142 0.02107202 0.009080105 +0.2765176 0.02107202 0.009080105 +0.3113005 0.02107202 0.009080105 +0.3485102 0.02107202 0.009080105 +0.388193 0.02107202 0.009080105 +0.4303934 0.02107202 0.009080105 +0.4751555 0.02107202 0.009080105 +0.5225216 0.02107202 0.009080105 +0.5725335 0.02107202 0.009080105 +0.6252316 0.02107202 0.009080105 +0.6806558 0.02107202 0.009080105 +0.7388448 0.02107202 0.009080105 +0.7998369 0.02107202 0.009080105 +0.8636691 0.02107202 0.009080105 +0.9303782 0.02107202 0.009080105 +1 0.02107202 0.009080105 +0 0.02934285 0.009080105 +0.002418731 0.02934285 0.009080105 +0.005155668 0.02934285 0.009080105 +0.009080105 0.02934285 0.009080105 +0.01434988 0.02934285 0.009080105 +0.02107202 0.02934285 0.009080105 +0.02934285 0.02934285 0.009080105 +0.03925039 0.02934285 0.009080105 +0.05087609 0.02934285 0.009080105 +0.06429595 0.02934285 0.009080105 +0.07958143 0.02934285 0.009080105 +0.0968001 0.02934285 0.009080105 +0.1160161 0.02934285 0.009080105 +0.1372908 0.02934285 0.009080105 +0.1606827 0.02934285 0.009080105 +0.1862481 0.02934285 0.009080105 +0.2140411 0.02934285 0.009080105 +0.2441142 0.02934285 0.009080105 +0.2765176 0.02934285 0.009080105 +0.3113005 0.02934285 0.009080105 +0.3485102 0.02934285 0.009080105 +0.388193 0.02934285 0.009080105 +0.4303934 0.02934285 0.009080105 +0.4751555 0.02934285 0.009080105 +0.5225216 0.02934285 0.009080105 +0.5725335 0.02934285 0.009080105 +0.6252316 0.02934285 0.009080105 +0.6806558 0.02934285 0.009080105 +0.7388448 0.02934285 0.009080105 +0.7998369 0.02934285 0.009080105 +0.8636691 0.02934285 0.009080105 +0.9303782 0.02934285 0.009080105 +1 0.02934285 0.009080105 +0 0.03925039 0.009080105 +0.002418731 0.03925039 0.009080105 +0.005155668 0.03925039 0.009080105 +0.009080105 0.03925039 0.009080105 +0.01434988 0.03925039 0.009080105 +0.02107202 0.03925039 0.009080105 +0.02934285 0.03925039 0.009080105 +0.03925039 0.03925039 0.009080105 +0.05087609 0.03925039 0.009080105 +0.06429595 0.03925039 0.009080105 +0.07958143 0.03925039 0.009080105 +0.0968001 0.03925039 0.009080105 +0.1160161 0.03925039 0.009080105 +0.1372908 0.03925039 0.009080105 +0.1606827 0.03925039 0.009080105 +0.1862481 0.03925039 0.009080105 +0.2140411 0.03925039 0.009080105 +0.2441142 0.03925039 0.009080105 +0.2765176 0.03925039 0.009080105 +0.3113005 0.03925039 0.009080105 +0.3485102 0.03925039 0.009080105 +0.388193 0.03925039 0.009080105 +0.4303934 0.03925039 0.009080105 +0.4751555 0.03925039 0.009080105 +0.5225216 0.03925039 0.009080105 +0.5725335 0.03925039 0.009080105 +0.6252316 0.03925039 0.009080105 +0.6806558 0.03925039 0.009080105 +0.7388448 0.03925039 0.009080105 +0.7998369 0.03925039 0.009080105 +0.8636691 0.03925039 0.009080105 +0.9303782 0.03925039 0.009080105 +1 0.03925039 0.009080105 +0 0.05087609 0.009080105 +0.002418731 0.05087609 0.009080105 +0.005155668 0.05087609 0.009080105 +0.009080105 0.05087609 0.009080105 +0.01434988 0.05087609 0.009080105 +0.02107202 0.05087609 0.009080105 +0.02934285 0.05087609 0.009080105 +0.03925039 0.05087609 0.009080105 +0.05087609 0.05087609 0.009080105 +0.06429595 0.05087609 0.009080105 +0.07958143 0.05087609 0.009080105 +0.0968001 0.05087609 0.009080105 +0.1160161 0.05087609 0.009080105 +0.1372908 0.05087609 0.009080105 +0.1606827 0.05087609 0.009080105 +0.1862481 0.05087609 0.009080105 +0.2140411 0.05087609 0.009080105 +0.2441142 0.05087609 0.009080105 +0.2765176 0.05087609 0.009080105 +0.3113005 0.05087609 0.009080105 +0.3485102 0.05087609 0.009080105 +0.388193 0.05087609 0.009080105 +0.4303934 0.05087609 0.009080105 +0.4751555 0.05087609 0.009080105 +0.5225216 0.05087609 0.009080105 +0.5725335 0.05087609 0.009080105 +0.6252316 0.05087609 0.009080105 +0.6806558 0.05087609 0.009080105 +0.7388448 0.05087609 0.009080105 +0.7998369 0.05087609 0.009080105 +0.8636691 0.05087609 0.009080105 +0.9303782 0.05087609 0.009080105 +1 0.05087609 0.009080105 +0 0.06429595 0.009080105 +0.002418731 0.06429595 0.009080105 +0.005155668 0.06429595 0.009080105 +0.009080105 0.06429595 0.009080105 +0.01434988 0.06429595 0.009080105 +0.02107202 0.06429595 0.009080105 +0.02934285 0.06429595 0.009080105 +0.03925039 0.06429595 0.009080105 +0.05087609 0.06429595 0.009080105 +0.06429595 0.06429595 0.009080105 +0.07958143 0.06429595 0.009080105 +0.0968001 0.06429595 0.009080105 +0.1160161 0.06429595 0.009080105 +0.1372908 0.06429595 0.009080105 +0.1606827 0.06429595 0.009080105 +0.1862481 0.06429595 0.009080105 +0.2140411 0.06429595 0.009080105 +0.2441142 0.06429595 0.009080105 +0.2765176 0.06429595 0.009080105 +0.3113005 0.06429595 0.009080105 +0.3485102 0.06429595 0.009080105 +0.388193 0.06429595 0.009080105 +0.4303934 0.06429595 0.009080105 +0.4751555 0.06429595 0.009080105 +0.5225216 0.06429595 0.009080105 +0.5725335 0.06429595 0.009080105 +0.6252316 0.06429595 0.009080105 +0.6806558 0.06429595 0.009080105 +0.7388448 0.06429595 0.009080105 +0.7998369 0.06429595 0.009080105 +0.8636691 0.06429595 0.009080105 +0.9303782 0.06429595 0.009080105 +1 0.06429595 0.009080105 +0 0.07958143 0.009080105 +0.002418731 0.07958143 0.009080105 +0.005155668 0.07958143 0.009080105 +0.009080105 0.07958143 0.009080105 +0.01434988 0.07958143 0.009080105 +0.02107202 0.07958143 0.009080105 +0.02934285 0.07958143 0.009080105 +0.03925039 0.07958143 0.009080105 +0.05087609 0.07958143 0.009080105 +0.06429595 0.07958143 0.009080105 +0.07958143 0.07958143 0.009080105 +0.0968001 0.07958143 0.009080105 +0.1160161 0.07958143 0.009080105 +0.1372908 0.07958143 0.009080105 +0.1606827 0.07958143 0.009080105 +0.1862481 0.07958143 0.009080105 +0.2140411 0.07958143 0.009080105 +0.2441142 0.07958143 0.009080105 +0.2765176 0.07958143 0.009080105 +0.3113005 0.07958143 0.009080105 +0.3485102 0.07958143 0.009080105 +0.388193 0.07958143 0.009080105 +0.4303934 0.07958143 0.009080105 +0.4751555 0.07958143 0.009080105 +0.5225216 0.07958143 0.009080105 +0.5725335 0.07958143 0.009080105 +0.6252316 0.07958143 0.009080105 +0.6806558 0.07958143 0.009080105 +0.7388448 0.07958143 0.009080105 +0.7998369 0.07958143 0.009080105 +0.8636691 0.07958143 0.009080105 +0.9303782 0.07958143 0.009080105 +1 0.07958143 0.009080105 +0 0.0968001 0.009080105 +0.002418731 0.0968001 0.009080105 +0.005155668 0.0968001 0.009080105 +0.009080105 0.0968001 0.009080105 +0.01434988 0.0968001 0.009080105 +0.02107202 0.0968001 0.009080105 +0.02934285 0.0968001 0.009080105 +0.03925039 0.0968001 0.009080105 +0.05087609 0.0968001 0.009080105 +0.06429595 0.0968001 0.009080105 +0.07958143 0.0968001 0.009080105 +0.0968001 0.0968001 0.009080105 +0.1160161 0.0968001 0.009080105 +0.1372908 0.0968001 0.009080105 +0.1606827 0.0968001 0.009080105 +0.1862481 0.0968001 0.009080105 +0.2140411 0.0968001 0.009080105 +0.2441142 0.0968001 0.009080105 +0.2765176 0.0968001 0.009080105 +0.3113005 0.0968001 0.009080105 +0.3485102 0.0968001 0.009080105 +0.388193 0.0968001 0.009080105 +0.4303934 0.0968001 0.009080105 +0.4751555 0.0968001 0.009080105 +0.5225216 0.0968001 0.009080105 +0.5725335 0.0968001 0.009080105 +0.6252316 0.0968001 0.009080105 +0.6806558 0.0968001 0.009080105 +0.7388448 0.0968001 0.009080105 +0.7998369 0.0968001 0.009080105 +0.8636691 0.0968001 0.009080105 +0.9303782 0.0968001 0.009080105 +1 0.0968001 0.009080105 +0 0.1160161 0.009080105 +0.002418731 0.1160161 0.009080105 +0.005155668 0.1160161 0.009080105 +0.009080105 0.1160161 0.009080105 +0.01434988 0.1160161 0.009080105 +0.02107202 0.1160161 0.009080105 +0.02934285 0.1160161 0.009080105 +0.03925039 0.1160161 0.009080105 +0.05087609 0.1160161 0.009080105 +0.06429595 0.1160161 0.009080105 +0.07958143 0.1160161 0.009080105 +0.0968001 0.1160161 0.009080105 +0.1160161 0.1160161 0.009080105 +0.1372908 0.1160161 0.009080105 +0.1606827 0.1160161 0.009080105 +0.1862481 0.1160161 0.009080105 +0.2140411 0.1160161 0.009080105 +0.2441142 0.1160161 0.009080105 +0.2765176 0.1160161 0.009080105 +0.3113005 0.1160161 0.009080105 +0.3485102 0.1160161 0.009080105 +0.388193 0.1160161 0.009080105 +0.4303934 0.1160161 0.009080105 +0.4751555 0.1160161 0.009080105 +0.5225216 0.1160161 0.009080105 +0.5725335 0.1160161 0.009080105 +0.6252316 0.1160161 0.009080105 +0.6806558 0.1160161 0.009080105 +0.7388448 0.1160161 0.009080105 +0.7998369 0.1160161 0.009080105 +0.8636691 0.1160161 0.009080105 +0.9303782 0.1160161 0.009080105 +1 0.1160161 0.009080105 +0 0.1372908 0.009080105 +0.002418731 0.1372908 0.009080105 +0.005155668 0.1372908 0.009080105 +0.009080105 0.1372908 0.009080105 +0.01434988 0.1372908 0.009080105 +0.02107202 0.1372908 0.009080105 +0.02934285 0.1372908 0.009080105 +0.03925039 0.1372908 0.009080105 +0.05087609 0.1372908 0.009080105 +0.06429595 0.1372908 0.009080105 +0.07958143 0.1372908 0.009080105 +0.0968001 0.1372908 0.009080105 +0.1160161 0.1372908 0.009080105 +0.1372908 0.1372908 0.009080105 +0.1606827 0.1372908 0.009080105 +0.1862481 0.1372908 0.009080105 +0.2140411 0.1372908 0.009080105 +0.2441142 0.1372908 0.009080105 +0.2765176 0.1372908 0.009080105 +0.3113005 0.1372908 0.009080105 +0.3485102 0.1372908 0.009080105 +0.388193 0.1372908 0.009080105 +0.4303934 0.1372908 0.009080105 +0.4751555 0.1372908 0.009080105 +0.5225216 0.1372908 0.009080105 +0.5725335 0.1372908 0.009080105 +0.6252316 0.1372908 0.009080105 +0.6806558 0.1372908 0.009080105 +0.7388448 0.1372908 0.009080105 +0.7998369 0.1372908 0.009080105 +0.8636691 0.1372908 0.009080105 +0.9303782 0.1372908 0.009080105 +1 0.1372908 0.009080105 +0 0.1606827 0.009080105 +0.002418731 0.1606827 0.009080105 +0.005155668 0.1606827 0.009080105 +0.009080105 0.1606827 0.009080105 +0.01434988 0.1606827 0.009080105 +0.02107202 0.1606827 0.009080105 +0.02934285 0.1606827 0.009080105 +0.03925039 0.1606827 0.009080105 +0.05087609 0.1606827 0.009080105 +0.06429595 0.1606827 0.009080105 +0.07958143 0.1606827 0.009080105 +0.0968001 0.1606827 0.009080105 +0.1160161 0.1606827 0.009080105 +0.1372908 0.1606827 0.009080105 +0.1606827 0.1606827 0.009080105 +0.1862481 0.1606827 0.009080105 +0.2140411 0.1606827 0.009080105 +0.2441142 0.1606827 0.009080105 +0.2765176 0.1606827 0.009080105 +0.3113005 0.1606827 0.009080105 +0.3485102 0.1606827 0.009080105 +0.388193 0.1606827 0.009080105 +0.4303934 0.1606827 0.009080105 +0.4751555 0.1606827 0.009080105 +0.5225216 0.1606827 0.009080105 +0.5725335 0.1606827 0.009080105 +0.6252316 0.1606827 0.009080105 +0.6806558 0.1606827 0.009080105 +0.7388448 0.1606827 0.009080105 +0.7998369 0.1606827 0.009080105 +0.8636691 0.1606827 0.009080105 +0.9303782 0.1606827 0.009080105 +1 0.1606827 0.009080105 +0 0.1862481 0.009080105 +0.002418731 0.1862481 0.009080105 +0.005155668 0.1862481 0.009080105 +0.009080105 0.1862481 0.009080105 +0.01434988 0.1862481 0.009080105 +0.02107202 0.1862481 0.009080105 +0.02934285 0.1862481 0.009080105 +0.03925039 0.1862481 0.009080105 +0.05087609 0.1862481 0.009080105 +0.06429595 0.1862481 0.009080105 +0.07958143 0.1862481 0.009080105 +0.0968001 0.1862481 0.009080105 +0.1160161 0.1862481 0.009080105 +0.1372908 0.1862481 0.009080105 +0.1606827 0.1862481 0.009080105 +0.1862481 0.1862481 0.009080105 +0.2140411 0.1862481 0.009080105 +0.2441142 0.1862481 0.009080105 +0.2765176 0.1862481 0.009080105 +0.3113005 0.1862481 0.009080105 +0.3485102 0.1862481 0.009080105 +0.388193 0.1862481 0.009080105 +0.4303934 0.1862481 0.009080105 +0.4751555 0.1862481 0.009080105 +0.5225216 0.1862481 0.009080105 +0.5725335 0.1862481 0.009080105 +0.6252316 0.1862481 0.009080105 +0.6806558 0.1862481 0.009080105 +0.7388448 0.1862481 0.009080105 +0.7998369 0.1862481 0.009080105 +0.8636691 0.1862481 0.009080105 +0.9303782 0.1862481 0.009080105 +1 0.1862481 0.009080105 +0 0.2140411 0.009080105 +0.002418731 0.2140411 0.009080105 +0.005155668 0.2140411 0.009080105 +0.009080105 0.2140411 0.009080105 +0.01434988 0.2140411 0.009080105 +0.02107202 0.2140411 0.009080105 +0.02934285 0.2140411 0.009080105 +0.03925039 0.2140411 0.009080105 +0.05087609 0.2140411 0.009080105 +0.06429595 0.2140411 0.009080105 +0.07958143 0.2140411 0.009080105 +0.0968001 0.2140411 0.009080105 +0.1160161 0.2140411 0.009080105 +0.1372908 0.2140411 0.009080105 +0.1606827 0.2140411 0.009080105 +0.1862481 0.2140411 0.009080105 +0.2140411 0.2140411 0.009080105 +0.2441142 0.2140411 0.009080105 +0.2765176 0.2140411 0.009080105 +0.3113005 0.2140411 0.009080105 +0.3485102 0.2140411 0.009080105 +0.388193 0.2140411 0.009080105 +0.4303934 0.2140411 0.009080105 +0.4751555 0.2140411 0.009080105 +0.5225216 0.2140411 0.009080105 +0.5725335 0.2140411 0.009080105 +0.6252316 0.2140411 0.009080105 +0.6806558 0.2140411 0.009080105 +0.7388448 0.2140411 0.009080105 +0.7998369 0.2140411 0.009080105 +0.8636691 0.2140411 0.009080105 +0.9303782 0.2140411 0.009080105 +1 0.2140411 0.009080105 +0 0.2441142 0.009080105 +0.002418731 0.2441142 0.009080105 +0.005155668 0.2441142 0.009080105 +0.009080105 0.2441142 0.009080105 +0.01434988 0.2441142 0.009080105 +0.02107202 0.2441142 0.009080105 +0.02934285 0.2441142 0.009080105 +0.03925039 0.2441142 0.009080105 +0.05087609 0.2441142 0.009080105 +0.06429595 0.2441142 0.009080105 +0.07958143 0.2441142 0.009080105 +0.0968001 0.2441142 0.009080105 +0.1160161 0.2441142 0.009080105 +0.1372908 0.2441142 0.009080105 +0.1606827 0.2441142 0.009080105 +0.1862481 0.2441142 0.009080105 +0.2140411 0.2441142 0.009080105 +0.2441142 0.2441142 0.009080105 +0.2765176 0.2441142 0.009080105 +0.3113005 0.2441142 0.009080105 +0.3485102 0.2441142 0.009080105 +0.388193 0.2441142 0.009080105 +0.4303934 0.2441142 0.009080105 +0.4751555 0.2441142 0.009080105 +0.5225216 0.2441142 0.009080105 +0.5725335 0.2441142 0.009080105 +0.6252316 0.2441142 0.009080105 +0.6806558 0.2441142 0.009080105 +0.7388448 0.2441142 0.009080105 +0.7998369 0.2441142 0.009080105 +0.8636691 0.2441142 0.009080105 +0.9303782 0.2441142 0.009080105 +1 0.2441142 0.009080105 +0 0.2765176 0.009080105 +0.002418731 0.2765176 0.009080105 +0.005155668 0.2765176 0.009080105 +0.009080105 0.2765176 0.009080105 +0.01434988 0.2765176 0.009080105 +0.02107202 0.2765176 0.009080105 +0.02934285 0.2765176 0.009080105 +0.03925039 0.2765176 0.009080105 +0.05087609 0.2765176 0.009080105 +0.06429595 0.2765176 0.009080105 +0.07958143 0.2765176 0.009080105 +0.0968001 0.2765176 0.009080105 +0.1160161 0.2765176 0.009080105 +0.1372908 0.2765176 0.009080105 +0.1606827 0.2765176 0.009080105 +0.1862481 0.2765176 0.009080105 +0.2140411 0.2765176 0.009080105 +0.2441142 0.2765176 0.009080105 +0.2765176 0.2765176 0.009080105 +0.3113005 0.2765176 0.009080105 +0.3485102 0.2765176 0.009080105 +0.388193 0.2765176 0.009080105 +0.4303934 0.2765176 0.009080105 +0.4751555 0.2765176 0.009080105 +0.5225216 0.2765176 0.009080105 +0.5725335 0.2765176 0.009080105 +0.6252316 0.2765176 0.009080105 +0.6806558 0.2765176 0.009080105 +0.7388448 0.2765176 0.009080105 +0.7998369 0.2765176 0.009080105 +0.8636691 0.2765176 0.009080105 +0.9303782 0.2765176 0.009080105 +1 0.2765176 0.009080105 +0 0.3113005 0.009080105 +0.002418731 0.3113005 0.009080105 +0.005155668 0.3113005 0.009080105 +0.009080105 0.3113005 0.009080105 +0.01434988 0.3113005 0.009080105 +0.02107202 0.3113005 0.009080105 +0.02934285 0.3113005 0.009080105 +0.03925039 0.3113005 0.009080105 +0.05087609 0.3113005 0.009080105 +0.06429595 0.3113005 0.009080105 +0.07958143 0.3113005 0.009080105 +0.0968001 0.3113005 0.009080105 +0.1160161 0.3113005 0.009080105 +0.1372908 0.3113005 0.009080105 +0.1606827 0.3113005 0.009080105 +0.1862481 0.3113005 0.009080105 +0.2140411 0.3113005 0.009080105 +0.2441142 0.3113005 0.009080105 +0.2765176 0.3113005 0.009080105 +0.3113005 0.3113005 0.009080105 +0.3485102 0.3113005 0.009080105 +0.388193 0.3113005 0.009080105 +0.4303934 0.3113005 0.009080105 +0.4751555 0.3113005 0.009080105 +0.5225216 0.3113005 0.009080105 +0.5725335 0.3113005 0.009080105 +0.6252316 0.3113005 0.009080105 +0.6806558 0.3113005 0.009080105 +0.7388448 0.3113005 0.009080105 +0.7998369 0.3113005 0.009080105 +0.8636691 0.3113005 0.009080105 +0.9303782 0.3113005 0.009080105 +1 0.3113005 0.009080105 +0 0.3485102 0.009080105 +0.002418731 0.3485102 0.009080105 +0.005155668 0.3485102 0.009080105 +0.009080105 0.3485102 0.009080105 +0.01434988 0.3485102 0.009080105 +0.02107202 0.3485102 0.009080105 +0.02934285 0.3485102 0.009080105 +0.03925039 0.3485102 0.009080105 +0.05087609 0.3485102 0.009080105 +0.06429595 0.3485102 0.009080105 +0.07958143 0.3485102 0.009080105 +0.0968001 0.3485102 0.009080105 +0.1160161 0.3485102 0.009080105 +0.1372908 0.3485102 0.009080105 +0.1606827 0.3485102 0.009080105 +0.1862481 0.3485102 0.009080105 +0.2140411 0.3485102 0.009080105 +0.2441142 0.3485102 0.009080105 +0.2765176 0.3485102 0.009080105 +0.3113005 0.3485102 0.009080105 +0.3485102 0.3485102 0.009080105 +0.388193 0.3485102 0.009080105 +0.4303934 0.3485102 0.009080105 +0.4751555 0.3485102 0.009080105 +0.5225216 0.3485102 0.009080105 +0.5725335 0.3485102 0.009080105 +0.6252316 0.3485102 0.009080105 +0.6806558 0.3485102 0.009080105 +0.7388448 0.3485102 0.009080105 +0.7998369 0.3485102 0.009080105 +0.8636691 0.3485102 0.009080105 +0.9303782 0.3485102 0.009080105 +1 0.3485102 0.009080105 +0 0.388193 0.009080105 +0.002418731 0.388193 0.009080105 +0.005155668 0.388193 0.009080105 +0.009080105 0.388193 0.009080105 +0.01434988 0.388193 0.009080105 +0.02107202 0.388193 0.009080105 +0.02934285 0.388193 0.009080105 +0.03925039 0.388193 0.009080105 +0.05087609 0.388193 0.009080105 +0.06429595 0.388193 0.009080105 +0.07958143 0.388193 0.009080105 +0.0968001 0.388193 0.009080105 +0.1160161 0.388193 0.009080105 +0.1372908 0.388193 0.009080105 +0.1606827 0.388193 0.009080105 +0.1862481 0.388193 0.009080105 +0.2140411 0.388193 0.009080105 +0.2441142 0.388193 0.009080105 +0.2765176 0.388193 0.009080105 +0.3113005 0.388193 0.009080105 +0.3485102 0.388193 0.009080105 +0.388193 0.388193 0.009080105 +0.4303934 0.388193 0.009080105 +0.4751555 0.388193 0.009080105 +0.5225216 0.388193 0.009080105 +0.5725335 0.388193 0.009080105 +0.6252316 0.388193 0.009080105 +0.6806558 0.388193 0.009080105 +0.7388448 0.388193 0.009080105 +0.7998369 0.388193 0.009080105 +0.8636691 0.388193 0.009080105 +0.9303782 0.388193 0.009080105 +1 0.388193 0.009080105 +0 0.4303934 0.009080105 +0.002418731 0.4303934 0.009080105 +0.005155668 0.4303934 0.009080105 +0.009080105 0.4303934 0.009080105 +0.01434988 0.4303934 0.009080105 +0.02107202 0.4303934 0.009080105 +0.02934285 0.4303934 0.009080105 +0.03925039 0.4303934 0.009080105 +0.05087609 0.4303934 0.009080105 +0.06429595 0.4303934 0.009080105 +0.07958143 0.4303934 0.009080105 +0.0968001 0.4303934 0.009080105 +0.1160161 0.4303934 0.009080105 +0.1372908 0.4303934 0.009080105 +0.1606827 0.4303934 0.009080105 +0.1862481 0.4303934 0.009080105 +0.2140411 0.4303934 0.009080105 +0.2441142 0.4303934 0.009080105 +0.2765176 0.4303934 0.009080105 +0.3113005 0.4303934 0.009080105 +0.3485102 0.4303934 0.009080105 +0.388193 0.4303934 0.009080105 +0.4303934 0.4303934 0.009080105 +0.4751555 0.4303934 0.009080105 +0.5225216 0.4303934 0.009080105 +0.5725335 0.4303934 0.009080105 +0.6252316 0.4303934 0.009080105 +0.6806558 0.4303934 0.009080105 +0.7388448 0.4303934 0.009080105 +0.7998369 0.4303934 0.009080105 +0.8636691 0.4303934 0.009080105 +0.9303782 0.4303934 0.009080105 +1 0.4303934 0.009080105 +0 0.4751555 0.009080105 +0.002418731 0.4751555 0.009080105 +0.005155668 0.4751555 0.009080105 +0.009080105 0.4751555 0.009080105 +0.01434988 0.4751555 0.009080105 +0.02107202 0.4751555 0.009080105 +0.02934285 0.4751555 0.009080105 +0.03925039 0.4751555 0.009080105 +0.05087609 0.4751555 0.009080105 +0.06429595 0.4751555 0.009080105 +0.07958143 0.4751555 0.009080105 +0.0968001 0.4751555 0.009080105 +0.1160161 0.4751555 0.009080105 +0.1372908 0.4751555 0.009080105 +0.1606827 0.4751555 0.009080105 +0.1862481 0.4751555 0.009080105 +0.2140411 0.4751555 0.009080105 +0.2441142 0.4751555 0.009080105 +0.2765176 0.4751555 0.009080105 +0.3113005 0.4751555 0.009080105 +0.3485102 0.4751555 0.009080105 +0.388193 0.4751555 0.009080105 +0.4303934 0.4751555 0.009080105 +0.4751555 0.4751555 0.009080105 +0.5225216 0.4751555 0.009080105 +0.5725335 0.4751555 0.009080105 +0.6252316 0.4751555 0.009080105 +0.6806558 0.4751555 0.009080105 +0.7388448 0.4751555 0.009080105 +0.7998369 0.4751555 0.009080105 +0.8636691 0.4751555 0.009080105 +0.9303782 0.4751555 0.009080105 +1 0.4751555 0.009080105 +0 0.5225216 0.009080105 +0.002418731 0.5225216 0.009080105 +0.005155668 0.5225216 0.009080105 +0.009080105 0.5225216 0.009080105 +0.01434988 0.5225216 0.009080105 +0.02107202 0.5225216 0.009080105 +0.02934285 0.5225216 0.009080105 +0.03925039 0.5225216 0.009080105 +0.05087609 0.5225216 0.009080105 +0.06429595 0.5225216 0.009080105 +0.07958143 0.5225216 0.009080105 +0.0968001 0.5225216 0.009080105 +0.1160161 0.5225216 0.009080105 +0.1372908 0.5225216 0.009080105 +0.1606827 0.5225216 0.009080105 +0.1862481 0.5225216 0.009080105 +0.2140411 0.5225216 0.009080105 +0.2441142 0.5225216 0.009080105 +0.2765176 0.5225216 0.009080105 +0.3113005 0.5225216 0.009080105 +0.3485102 0.5225216 0.009080105 +0.388193 0.5225216 0.009080105 +0.4303934 0.5225216 0.009080105 +0.4751555 0.5225216 0.009080105 +0.5225216 0.5225216 0.009080105 +0.5725335 0.5225216 0.009080105 +0.6252316 0.5225216 0.009080105 +0.6806558 0.5225216 0.009080105 +0.7388448 0.5225216 0.009080105 +0.7998369 0.5225216 0.009080105 +0.8636691 0.5225216 0.009080105 +0.9303782 0.5225216 0.009080105 +1 0.5225216 0.009080105 +0 0.5725335 0.009080105 +0.002418731 0.5725335 0.009080105 +0.005155668 0.5725335 0.009080105 +0.009080105 0.5725335 0.009080105 +0.01434988 0.5725335 0.009080105 +0.02107202 0.5725335 0.009080105 +0.02934285 0.5725335 0.009080105 +0.03925039 0.5725335 0.009080105 +0.05087609 0.5725335 0.009080105 +0.06429595 0.5725335 0.009080105 +0.07958143 0.5725335 0.009080105 +0.0968001 0.5725335 0.009080105 +0.1160161 0.5725335 0.009080105 +0.1372908 0.5725335 0.009080105 +0.1606827 0.5725335 0.009080105 +0.1862481 0.5725335 0.009080105 +0.2140411 0.5725335 0.009080105 +0.2441142 0.5725335 0.009080105 +0.2765176 0.5725335 0.009080105 +0.3113005 0.5725335 0.009080105 +0.3485102 0.5725335 0.009080105 +0.388193 0.5725335 0.009080105 +0.4303934 0.5725335 0.009080105 +0.4751555 0.5725335 0.009080105 +0.5225216 0.5725335 0.009080105 +0.5725335 0.5725335 0.009080105 +0.6252316 0.5725335 0.009080105 +0.6806558 0.5725335 0.009080105 +0.7388448 0.5725335 0.009080105 +0.7998369 0.5725335 0.009080105 +0.8636691 0.5725335 0.009080105 +0.9303782 0.5725335 0.009080105 +1 0.5725335 0.009080105 +0 0.6252316 0.009080105 +0.002418731 0.6252316 0.009080105 +0.005155668 0.6252316 0.009080105 +0.009080105 0.6252316 0.009080105 +0.01434988 0.6252316 0.009080105 +0.02107202 0.6252316 0.009080105 +0.02934285 0.6252316 0.009080105 +0.03925039 0.6252316 0.009080105 +0.05087609 0.6252316 0.009080105 +0.06429595 0.6252316 0.009080105 +0.07958143 0.6252316 0.009080105 +0.0968001 0.6252316 0.009080105 +0.1160161 0.6252316 0.009080105 +0.1372908 0.6252316 0.009080105 +0.1606827 0.6252316 0.009080105 +0.1862481 0.6252316 0.009080105 +0.2140411 0.6252316 0.009080105 +0.2441142 0.6252316 0.009080105 +0.2765176 0.6252316 0.009080105 +0.3113005 0.6252316 0.009080105 +0.3485102 0.6252316 0.009080105 +0.388193 0.6252316 0.009080105 +0.4303934 0.6252316 0.009080105 +0.4751555 0.6252316 0.009080105 +0.5225216 0.6252316 0.009080105 +0.5725335 0.6252316 0.009080105 +0.6252316 0.6252316 0.009080105 +0.6806558 0.6252316 0.009080105 +0.7388448 0.6252316 0.009080105 +0.7998369 0.6252316 0.009080105 +0.8636691 0.6252316 0.009080105 +0.9303782 0.6252316 0.009080105 +1 0.6252316 0.009080105 +0 0.6806558 0.009080105 +0.002418731 0.6806558 0.009080105 +0.005155668 0.6806558 0.009080105 +0.009080105 0.6806558 0.009080105 +0.01434988 0.6806558 0.009080105 +0.02107202 0.6806558 0.009080105 +0.02934285 0.6806558 0.009080105 +0.03925039 0.6806558 0.009080105 +0.05087609 0.6806558 0.009080105 +0.06429595 0.6806558 0.009080105 +0.07958143 0.6806558 0.009080105 +0.0968001 0.6806558 0.009080105 +0.1160161 0.6806558 0.009080105 +0.1372908 0.6806558 0.009080105 +0.1606827 0.6806558 0.009080105 +0.1862481 0.6806558 0.009080105 +0.2140411 0.6806558 0.009080105 +0.2441142 0.6806558 0.009080105 +0.2765176 0.6806558 0.009080105 +0.3113005 0.6806558 0.009080105 +0.3485102 0.6806558 0.009080105 +0.388193 0.6806558 0.009080105 +0.4303934 0.6806558 0.009080105 +0.4751555 0.6806558 0.009080105 +0.5225216 0.6806558 0.009080105 +0.5725335 0.6806558 0.009080105 +0.6252316 0.6806558 0.009080105 +0.6806558 0.6806558 0.009080105 +0.7388448 0.6806558 0.009080105 +0.7998369 0.6806558 0.009080105 +0.8636691 0.6806558 0.009080105 +0.9303782 0.6806558 0.009080105 +1 0.6806558 0.009080105 +0 0.7388448 0.009080105 +0.002418731 0.7388448 0.009080105 +0.005155668 0.7388448 0.009080105 +0.009080105 0.7388448 0.009080105 +0.01434988 0.7388448 0.009080105 +0.02107202 0.7388448 0.009080105 +0.02934285 0.7388448 0.009080105 +0.03925039 0.7388448 0.009080105 +0.05087609 0.7388448 0.009080105 +0.06429595 0.7388448 0.009080105 +0.07958143 0.7388448 0.009080105 +0.0968001 0.7388448 0.009080105 +0.1160161 0.7388448 0.009080105 +0.1372908 0.7388448 0.009080105 +0.1606827 0.7388448 0.009080105 +0.1862481 0.7388448 0.009080105 +0.2140411 0.7388448 0.009080105 +0.2441142 0.7388448 0.009080105 +0.2765176 0.7388448 0.009080105 +0.3113005 0.7388448 0.009080105 +0.3485102 0.7388448 0.009080105 +0.388193 0.7388448 0.009080105 +0.4303934 0.7388448 0.009080105 +0.4751555 0.7388448 0.009080105 +0.5225216 0.7388448 0.009080105 +0.5725335 0.7388448 0.009080105 +0.6252316 0.7388448 0.009080105 +0.6806558 0.7388448 0.009080105 +0.7388448 0.7388448 0.009080105 +0.7998369 0.7388448 0.009080105 +0.8636691 0.7388448 0.009080105 +0.9303782 0.7388448 0.009080105 +1 0.7388448 0.009080105 +0 0.7998369 0.009080105 +0.002418731 0.7998369 0.009080105 +0.005155668 0.7998369 0.009080105 +0.009080105 0.7998369 0.009080105 +0.01434988 0.7998369 0.009080105 +0.02107202 0.7998369 0.009080105 +0.02934285 0.7998369 0.009080105 +0.03925039 0.7998369 0.009080105 +0.05087609 0.7998369 0.009080105 +0.06429595 0.7998369 0.009080105 +0.07958143 0.7998369 0.009080105 +0.0968001 0.7998369 0.009080105 +0.1160161 0.7998369 0.009080105 +0.1372908 0.7998369 0.009080105 +0.1606827 0.7998369 0.009080105 +0.1862481 0.7998369 0.009080105 +0.2140411 0.7998369 0.009080105 +0.2441142 0.7998369 0.009080105 +0.2765176 0.7998369 0.009080105 +0.3113005 0.7998369 0.009080105 +0.3485102 0.7998369 0.009080105 +0.388193 0.7998369 0.009080105 +0.4303934 0.7998369 0.009080105 +0.4751555 0.7998369 0.009080105 +0.5225216 0.7998369 0.009080105 +0.5725335 0.7998369 0.009080105 +0.6252316 0.7998369 0.009080105 +0.6806558 0.7998369 0.009080105 +0.7388448 0.7998369 0.009080105 +0.7998369 0.7998369 0.009080105 +0.8636691 0.7998369 0.009080105 +0.9303782 0.7998369 0.009080105 +1 0.7998369 0.009080105 +0 0.8636691 0.009080105 +0.002418731 0.8636691 0.009080105 +0.005155668 0.8636691 0.009080105 +0.009080105 0.8636691 0.009080105 +0.01434988 0.8636691 0.009080105 +0.02107202 0.8636691 0.009080105 +0.02934285 0.8636691 0.009080105 +0.03925039 0.8636691 0.009080105 +0.05087609 0.8636691 0.009080105 +0.06429595 0.8636691 0.009080105 +0.07958143 0.8636691 0.009080105 +0.0968001 0.8636691 0.009080105 +0.1160161 0.8636691 0.009080105 +0.1372908 0.8636691 0.009080105 +0.1606827 0.8636691 0.009080105 +0.1862481 0.8636691 0.009080105 +0.2140411 0.8636691 0.009080105 +0.2441142 0.8636691 0.009080105 +0.2765176 0.8636691 0.009080105 +0.3113005 0.8636691 0.009080105 +0.3485102 0.8636691 0.009080105 +0.388193 0.8636691 0.009080105 +0.4303934 0.8636691 0.009080105 +0.4751555 0.8636691 0.009080105 +0.5225216 0.8636691 0.009080105 +0.5725335 0.8636691 0.009080105 +0.6252316 0.8636691 0.009080105 +0.6806558 0.8636691 0.009080105 +0.7388448 0.8636691 0.009080105 +0.7998369 0.8636691 0.009080105 +0.8636691 0.8636691 0.009080105 +0.9303782 0.8636691 0.009080105 +1 0.8636691 0.009080105 +0 0.9303782 0.009080105 +0.002418731 0.9303782 0.009080105 +0.005155668 0.9303782 0.009080105 +0.009080105 0.9303782 0.009080105 +0.01434988 0.9303782 0.009080105 +0.02107202 0.9303782 0.009080105 +0.02934285 0.9303782 0.009080105 +0.03925039 0.9303782 0.009080105 +0.05087609 0.9303782 0.009080105 +0.06429595 0.9303782 0.009080105 +0.07958143 0.9303782 0.009080105 +0.0968001 0.9303782 0.009080105 +0.1160161 0.9303782 0.009080105 +0.1372908 0.9303782 0.009080105 +0.1606827 0.9303782 0.009080105 +0.1862481 0.9303782 0.009080105 +0.2140411 0.9303782 0.009080105 +0.2441142 0.9303782 0.009080105 +0.2765176 0.9303782 0.009080105 +0.3113005 0.9303782 0.009080105 +0.3485102 0.9303782 0.009080105 +0.388193 0.9303782 0.009080105 +0.4303934 0.9303782 0.009080105 +0.4751555 0.9303782 0.009080105 +0.5225216 0.9303782 0.009080105 +0.5725335 0.9303782 0.009080105 +0.6252316 0.9303782 0.009080105 +0.6806558 0.9303782 0.009080105 +0.7388448 0.9303782 0.009080105 +0.7998369 0.9303782 0.009080105 +0.8636691 0.9303782 0.009080105 +0.9303782 0.9303782 0.009080105 +1 0.9303782 0.009080105 +0 1 0.009080105 +0.002418731 1 0.009080105 +0.005155668 1 0.009080105 +0.009080105 1 0.009080105 +0.01434988 1 0.009080105 +0.02107202 1 0.009080105 +0.02934285 1 0.009080105 +0.03925039 1 0.009080105 +0.05087609 1 0.009080105 +0.06429595 1 0.009080105 +0.07958143 1 0.009080105 +0.0968001 1 0.009080105 +0.1160161 1 0.009080105 +0.1372908 1 0.009080105 +0.1606827 1 0.009080105 +0.1862481 1 0.009080105 +0.2140411 1 0.009080105 +0.2441142 1 0.009080105 +0.2765176 1 0.009080105 +0.3113005 1 0.009080105 +0.3485102 1 0.009080105 +0.388193 1 0.009080105 +0.4303934 1 0.009080105 +0.4751555 1 0.009080105 +0.5225216 1 0.009080105 +0.5725335 1 0.009080105 +0.6252316 1 0.009080105 +0.6806558 1 0.009080105 +0.7388448 1 0.009080105 +0.7998369 1 0.009080105 +0.8636691 1 0.009080105 +0.9303782 1 0.009080105 +1 1 0.009080105 +0 0 0.01434988 +0.002418731 0 0.01434988 +0.005155668 0 0.01434988 +0.009080105 0 0.01434988 +0.01434988 0 0.01434988 +0.02107202 0 0.01434988 +0.02934285 0 0.01434988 +0.03925039 0 0.01434988 +0.05087609 0 0.01434988 +0.06429595 0 0.01434988 +0.07958143 0 0.01434988 +0.0968001 0 0.01434988 +0.1160161 0 0.01434988 +0.1372908 0 0.01434988 +0.1606827 0 0.01434988 +0.1862481 0 0.01434988 +0.2140411 0 0.01434988 +0.2441142 0 0.01434988 +0.2765176 0 0.01434988 +0.3113005 0 0.01434988 +0.3485102 0 0.01434988 +0.388193 0 0.01434988 +0.4303934 0 0.01434988 +0.4751555 0 0.01434988 +0.5225216 0 0.01434988 +0.5725335 0 0.01434988 +0.6252316 0 0.01434988 +0.6806558 0 0.01434988 +0.7388448 0 0.01434988 +0.7998369 0 0.01434988 +0.8636691 0 0.01434988 +0.9303782 0 0.01434988 +1 0 0.01434988 +0 0.002418731 0.01434988 +0.002418731 0.002418731 0.01434988 +0.005155668 0.002418731 0.01434988 +0.009080105 0.002418731 0.01434988 +0.01434988 0.002418731 0.01434988 +0.02107202 0.002418731 0.01434988 +0.02934285 0.002418731 0.01434988 +0.03925039 0.002418731 0.01434988 +0.05087609 0.002418731 0.01434988 +0.06429595 0.002418731 0.01434988 +0.07958143 0.002418731 0.01434988 +0.0968001 0.002418731 0.01434988 +0.1160161 0.002418731 0.01434988 +0.1372908 0.002418731 0.01434988 +0.1606827 0.002418731 0.01434988 +0.1862481 0.002418731 0.01434988 +0.2140411 0.002418731 0.01434988 +0.2441142 0.002418731 0.01434988 +0.2765176 0.002418731 0.01434988 +0.3113005 0.002418731 0.01434988 +0.3485102 0.002418731 0.01434988 +0.388193 0.002418731 0.01434988 +0.4303934 0.002418731 0.01434988 +0.4751555 0.002418731 0.01434988 +0.5225216 0.002418731 0.01434988 +0.5725335 0.002418731 0.01434988 +0.6252316 0.002418731 0.01434988 +0.6806558 0.002418731 0.01434988 +0.7388448 0.002418731 0.01434988 +0.7998369 0.002418731 0.01434988 +0.8636691 0.002418731 0.01434988 +0.9303782 0.002418731 0.01434988 +1 0.002418731 0.01434988 +0 0.005155668 0.01434988 +0.002418731 0.005155668 0.01434988 +0.005155668 0.005155668 0.01434988 +0.009080105 0.005155668 0.01434988 +0.01434988 0.005155668 0.01434988 +0.02107202 0.005155668 0.01434988 +0.02934285 0.005155668 0.01434988 +0.03925039 0.005155668 0.01434988 +0.05087609 0.005155668 0.01434988 +0.06429595 0.005155668 0.01434988 +0.07958143 0.005155668 0.01434988 +0.0968001 0.005155668 0.01434988 +0.1160161 0.005155668 0.01434988 +0.1372908 0.005155668 0.01434988 +0.1606827 0.005155668 0.01434988 +0.1862481 0.005155668 0.01434988 +0.2140411 0.005155668 0.01434988 +0.2441142 0.005155668 0.01434988 +0.2765176 0.005155668 0.01434988 +0.3113005 0.005155668 0.01434988 +0.3485102 0.005155668 0.01434988 +0.388193 0.005155668 0.01434988 +0.4303934 0.005155668 0.01434988 +0.4751555 0.005155668 0.01434988 +0.5225216 0.005155668 0.01434988 +0.5725335 0.005155668 0.01434988 +0.6252316 0.005155668 0.01434988 +0.6806558 0.005155668 0.01434988 +0.7388448 0.005155668 0.01434988 +0.7998369 0.005155668 0.01434988 +0.8636691 0.005155668 0.01434988 +0.9303782 0.005155668 0.01434988 +1 0.005155668 0.01434988 +0 0.009080105 0.01434988 +0.002418731 0.009080105 0.01434988 +0.005155668 0.009080105 0.01434988 +0.009080105 0.009080105 0.01434988 +0.01434988 0.009080105 0.01434988 +0.02107202 0.009080105 0.01434988 +0.02934285 0.009080105 0.01434988 +0.03925039 0.009080105 0.01434988 +0.05087609 0.009080105 0.01434988 +0.06429595 0.009080105 0.01434988 +0.07958143 0.009080105 0.01434988 +0.0968001 0.009080105 0.01434988 +0.1160161 0.009080105 0.01434988 +0.1372908 0.009080105 0.01434988 +0.1606827 0.009080105 0.01434988 +0.1862481 0.009080105 0.01434988 +0.2140411 0.009080105 0.01434988 +0.2441142 0.009080105 0.01434988 +0.2765176 0.009080105 0.01434988 +0.3113005 0.009080105 0.01434988 +0.3485102 0.009080105 0.01434988 +0.388193 0.009080105 0.01434988 +0.4303934 0.009080105 0.01434988 +0.4751555 0.009080105 0.01434988 +0.5225216 0.009080105 0.01434988 +0.5725335 0.009080105 0.01434988 +0.6252316 0.009080105 0.01434988 +0.6806558 0.009080105 0.01434988 +0.7388448 0.009080105 0.01434988 +0.7998369 0.009080105 0.01434988 +0.8636691 0.009080105 0.01434988 +0.9303782 0.009080105 0.01434988 +1 0.009080105 0.01434988 +0 0.01434988 0.01434988 +0.002418731 0.01434988 0.01434988 +0.005155668 0.01434988 0.01434988 +0.009080105 0.01434988 0.01434988 +0.01434988 0.01434988 0.01434988 +0.02107202 0.01434988 0.01434988 +0.02934285 0.01434988 0.01434988 +0.03925039 0.01434988 0.01434988 +0.05087609 0.01434988 0.01434988 +0.06429595 0.01434988 0.01434988 +0.07958143 0.01434988 0.01434988 +0.0968001 0.01434988 0.01434988 +0.1160161 0.01434988 0.01434988 +0.1372908 0.01434988 0.01434988 +0.1606827 0.01434988 0.01434988 +0.1862481 0.01434988 0.01434988 +0.2140411 0.01434988 0.01434988 +0.2441142 0.01434988 0.01434988 +0.2765176 0.01434988 0.01434988 +0.3113005 0.01434988 0.01434988 +0.3485102 0.01434988 0.01434988 +0.388193 0.01434988 0.01434988 +0.4303934 0.01434988 0.01434988 +0.4751555 0.01434988 0.01434988 +0.5225216 0.01434988 0.01434988 +0.5725335 0.01434988 0.01434988 +0.6252316 0.01434988 0.01434988 +0.6806558 0.01434988 0.01434988 +0.7388448 0.01434988 0.01434988 +0.7998369 0.01434988 0.01434988 +0.8636691 0.01434988 0.01434988 +0.9303782 0.01434988 0.01434988 +1 0.01434988 0.01434988 +0 0.02107202 0.01434988 +0.002418731 0.02107202 0.01434988 +0.005155668 0.02107202 0.01434988 +0.009080105 0.02107202 0.01434988 +0.01434988 0.02107202 0.01434988 +0.02107202 0.02107202 0.01434988 +0.02934285 0.02107202 0.01434988 +0.03925039 0.02107202 0.01434988 +0.05087609 0.02107202 0.01434988 +0.06429595 0.02107202 0.01434988 +0.07958143 0.02107202 0.01434988 +0.0968001 0.02107202 0.01434988 +0.1160161 0.02107202 0.01434988 +0.1372908 0.02107202 0.01434988 +0.1606827 0.02107202 0.01434988 +0.1862481 0.02107202 0.01434988 +0.2140411 0.02107202 0.01434988 +0.2441142 0.02107202 0.01434988 +0.2765176 0.02107202 0.01434988 +0.3113005 0.02107202 0.01434988 +0.3485102 0.02107202 0.01434988 +0.388193 0.02107202 0.01434988 +0.4303934 0.02107202 0.01434988 +0.4751555 0.02107202 0.01434988 +0.5225216 0.02107202 0.01434988 +0.5725335 0.02107202 0.01434988 +0.6252316 0.02107202 0.01434988 +0.6806558 0.02107202 0.01434988 +0.7388448 0.02107202 0.01434988 +0.7998369 0.02107202 0.01434988 +0.8636691 0.02107202 0.01434988 +0.9303782 0.02107202 0.01434988 +1 0.02107202 0.01434988 +0 0.02934285 0.01434988 +0.002418731 0.02934285 0.01434988 +0.005155668 0.02934285 0.01434988 +0.009080105 0.02934285 0.01434988 +0.01434988 0.02934285 0.01434988 +0.02107202 0.02934285 0.01434988 +0.02934285 0.02934285 0.01434988 +0.03925039 0.02934285 0.01434988 +0.05087609 0.02934285 0.01434988 +0.06429595 0.02934285 0.01434988 +0.07958143 0.02934285 0.01434988 +0.0968001 0.02934285 0.01434988 +0.1160161 0.02934285 0.01434988 +0.1372908 0.02934285 0.01434988 +0.1606827 0.02934285 0.01434988 +0.1862481 0.02934285 0.01434988 +0.2140411 0.02934285 0.01434988 +0.2441142 0.02934285 0.01434988 +0.2765176 0.02934285 0.01434988 +0.3113005 0.02934285 0.01434988 +0.3485102 0.02934285 0.01434988 +0.388193 0.02934285 0.01434988 +0.4303934 0.02934285 0.01434988 +0.4751555 0.02934285 0.01434988 +0.5225216 0.02934285 0.01434988 +0.5725335 0.02934285 0.01434988 +0.6252316 0.02934285 0.01434988 +0.6806558 0.02934285 0.01434988 +0.7388448 0.02934285 0.01434988 +0.7998369 0.02934285 0.01434988 +0.8636691 0.02934285 0.01434988 +0.9303782 0.02934285 0.01434988 +1 0.02934285 0.01434988 +0 0.03925039 0.01434988 +0.002418731 0.03925039 0.01434988 +0.005155668 0.03925039 0.01434988 +0.009080105 0.03925039 0.01434988 +0.01434988 0.03925039 0.01434988 +0.02107202 0.03925039 0.01434988 +0.02934285 0.03925039 0.01434988 +0.03925039 0.03925039 0.01434988 +0.05087609 0.03925039 0.01434988 +0.06429595 0.03925039 0.01434988 +0.07958143 0.03925039 0.01434988 +0.0968001 0.03925039 0.01434988 +0.1160161 0.03925039 0.01434988 +0.1372908 0.03925039 0.01434988 +0.1606827 0.03925039 0.01434988 +0.1862481 0.03925039 0.01434988 +0.2140411 0.03925039 0.01434988 +0.2441142 0.03925039 0.01434988 +0.2765176 0.03925039 0.01434988 +0.3113005 0.03925039 0.01434988 +0.3485102 0.03925039 0.01434988 +0.388193 0.03925039 0.01434988 +0.4303934 0.03925039 0.01434988 +0.4751555 0.03925039 0.01434988 +0.5225216 0.03925039 0.01434988 +0.5725335 0.03925039 0.01434988 +0.6252316 0.03925039 0.01434988 +0.6806558 0.03925039 0.01434988 +0.7388448 0.03925039 0.01434988 +0.7998369 0.03925039 0.01434988 +0.8636691 0.03925039 0.01434988 +0.9303782 0.03925039 0.01434988 +1 0.03925039 0.01434988 +0 0.05087609 0.01434988 +0.002418731 0.05087609 0.01434988 +0.005155668 0.05087609 0.01434988 +0.009080105 0.05087609 0.01434988 +0.01434988 0.05087609 0.01434988 +0.02107202 0.05087609 0.01434988 +0.02934285 0.05087609 0.01434988 +0.03925039 0.05087609 0.01434988 +0.05087609 0.05087609 0.01434988 +0.06429595 0.05087609 0.01434988 +0.07958143 0.05087609 0.01434988 +0.0968001 0.05087609 0.01434988 +0.1160161 0.05087609 0.01434988 +0.1372908 0.05087609 0.01434988 +0.1606827 0.05087609 0.01434988 +0.1862481 0.05087609 0.01434988 +0.2140411 0.05087609 0.01434988 +0.2441142 0.05087609 0.01434988 +0.2765176 0.05087609 0.01434988 +0.3113005 0.05087609 0.01434988 +0.3485102 0.05087609 0.01434988 +0.388193 0.05087609 0.01434988 +0.4303934 0.05087609 0.01434988 +0.4751555 0.05087609 0.01434988 +0.5225216 0.05087609 0.01434988 +0.5725335 0.05087609 0.01434988 +0.6252316 0.05087609 0.01434988 +0.6806558 0.05087609 0.01434988 +0.7388448 0.05087609 0.01434988 +0.7998369 0.05087609 0.01434988 +0.8636691 0.05087609 0.01434988 +0.9303782 0.05087609 0.01434988 +1 0.05087609 0.01434988 +0 0.06429595 0.01434988 +0.002418731 0.06429595 0.01434988 +0.005155668 0.06429595 0.01434988 +0.009080105 0.06429595 0.01434988 +0.01434988 0.06429595 0.01434988 +0.02107202 0.06429595 0.01434988 +0.02934285 0.06429595 0.01434988 +0.03925039 0.06429595 0.01434988 +0.05087609 0.06429595 0.01434988 +0.06429595 0.06429595 0.01434988 +0.07958143 0.06429595 0.01434988 +0.0968001 0.06429595 0.01434988 +0.1160161 0.06429595 0.01434988 +0.1372908 0.06429595 0.01434988 +0.1606827 0.06429595 0.01434988 +0.1862481 0.06429595 0.01434988 +0.2140411 0.06429595 0.01434988 +0.2441142 0.06429595 0.01434988 +0.2765176 0.06429595 0.01434988 +0.3113005 0.06429595 0.01434988 +0.3485102 0.06429595 0.01434988 +0.388193 0.06429595 0.01434988 +0.4303934 0.06429595 0.01434988 +0.4751555 0.06429595 0.01434988 +0.5225216 0.06429595 0.01434988 +0.5725335 0.06429595 0.01434988 +0.6252316 0.06429595 0.01434988 +0.6806558 0.06429595 0.01434988 +0.7388448 0.06429595 0.01434988 +0.7998369 0.06429595 0.01434988 +0.8636691 0.06429595 0.01434988 +0.9303782 0.06429595 0.01434988 +1 0.06429595 0.01434988 +0 0.07958143 0.01434988 +0.002418731 0.07958143 0.01434988 +0.005155668 0.07958143 0.01434988 +0.009080105 0.07958143 0.01434988 +0.01434988 0.07958143 0.01434988 +0.02107202 0.07958143 0.01434988 +0.02934285 0.07958143 0.01434988 +0.03925039 0.07958143 0.01434988 +0.05087609 0.07958143 0.01434988 +0.06429595 0.07958143 0.01434988 +0.07958143 0.07958143 0.01434988 +0.0968001 0.07958143 0.01434988 +0.1160161 0.07958143 0.01434988 +0.1372908 0.07958143 0.01434988 +0.1606827 0.07958143 0.01434988 +0.1862481 0.07958143 0.01434988 +0.2140411 0.07958143 0.01434988 +0.2441142 0.07958143 0.01434988 +0.2765176 0.07958143 0.01434988 +0.3113005 0.07958143 0.01434988 +0.3485102 0.07958143 0.01434988 +0.388193 0.07958143 0.01434988 +0.4303934 0.07958143 0.01434988 +0.4751555 0.07958143 0.01434988 +0.5225216 0.07958143 0.01434988 +0.5725335 0.07958143 0.01434988 +0.6252316 0.07958143 0.01434988 +0.6806558 0.07958143 0.01434988 +0.7388448 0.07958143 0.01434988 +0.7998369 0.07958143 0.01434988 +0.8636691 0.07958143 0.01434988 +0.9303782 0.07958143 0.01434988 +1 0.07958143 0.01434988 +0 0.0968001 0.01434988 +0.002418731 0.0968001 0.01434988 +0.005155668 0.0968001 0.01434988 +0.009080105 0.0968001 0.01434988 +0.01434988 0.0968001 0.01434988 +0.02107202 0.0968001 0.01434988 +0.02934285 0.0968001 0.01434988 +0.03925039 0.0968001 0.01434988 +0.05087609 0.0968001 0.01434988 +0.06429595 0.0968001 0.01434988 +0.07958143 0.0968001 0.01434988 +0.0968001 0.0968001 0.01434988 +0.1160161 0.0968001 0.01434988 +0.1372908 0.0968001 0.01434988 +0.1606827 0.0968001 0.01434988 +0.1862481 0.0968001 0.01434988 +0.2140411 0.0968001 0.01434988 +0.2441142 0.0968001 0.01434988 +0.2765176 0.0968001 0.01434988 +0.3113005 0.0968001 0.01434988 +0.3485102 0.0968001 0.01434988 +0.388193 0.0968001 0.01434988 +0.4303934 0.0968001 0.01434988 +0.4751555 0.0968001 0.01434988 +0.5225216 0.0968001 0.01434988 +0.5725335 0.0968001 0.01434988 +0.6252316 0.0968001 0.01434988 +0.6806558 0.0968001 0.01434988 +0.7388448 0.0968001 0.01434988 +0.7998369 0.0968001 0.01434988 +0.8636691 0.0968001 0.01434988 +0.9303782 0.0968001 0.01434988 +1 0.0968001 0.01434988 +0 0.1160161 0.01434988 +0.002418731 0.1160161 0.01434988 +0.005155668 0.1160161 0.01434988 +0.009080105 0.1160161 0.01434988 +0.01434988 0.1160161 0.01434988 +0.02107202 0.1160161 0.01434988 +0.02934285 0.1160161 0.01434988 +0.03925039 0.1160161 0.01434988 +0.05087609 0.1160161 0.01434988 +0.06429595 0.1160161 0.01434988 +0.07958143 0.1160161 0.01434988 +0.0968001 0.1160161 0.01434988 +0.1160161 0.1160161 0.01434988 +0.1372908 0.1160161 0.01434988 +0.1606827 0.1160161 0.01434988 +0.1862481 0.1160161 0.01434988 +0.2140411 0.1160161 0.01434988 +0.2441142 0.1160161 0.01434988 +0.2765176 0.1160161 0.01434988 +0.3113005 0.1160161 0.01434988 +0.3485102 0.1160161 0.01434988 +0.388193 0.1160161 0.01434988 +0.4303934 0.1160161 0.01434988 +0.4751555 0.1160161 0.01434988 +0.5225216 0.1160161 0.01434988 +0.5725335 0.1160161 0.01434988 +0.6252316 0.1160161 0.01434988 +0.6806558 0.1160161 0.01434988 +0.7388448 0.1160161 0.01434988 +0.7998369 0.1160161 0.01434988 +0.8636691 0.1160161 0.01434988 +0.9303782 0.1160161 0.01434988 +1 0.1160161 0.01434988 +0 0.1372908 0.01434988 +0.002418731 0.1372908 0.01434988 +0.005155668 0.1372908 0.01434988 +0.009080105 0.1372908 0.01434988 +0.01434988 0.1372908 0.01434988 +0.02107202 0.1372908 0.01434988 +0.02934285 0.1372908 0.01434988 +0.03925039 0.1372908 0.01434988 +0.05087609 0.1372908 0.01434988 +0.06429595 0.1372908 0.01434988 +0.07958143 0.1372908 0.01434988 +0.0968001 0.1372908 0.01434988 +0.1160161 0.1372908 0.01434988 +0.1372908 0.1372908 0.01434988 +0.1606827 0.1372908 0.01434988 +0.1862481 0.1372908 0.01434988 +0.2140411 0.1372908 0.01434988 +0.2441142 0.1372908 0.01434988 +0.2765176 0.1372908 0.01434988 +0.3113005 0.1372908 0.01434988 +0.3485102 0.1372908 0.01434988 +0.388193 0.1372908 0.01434988 +0.4303934 0.1372908 0.01434988 +0.4751555 0.1372908 0.01434988 +0.5225216 0.1372908 0.01434988 +0.5725335 0.1372908 0.01434988 +0.6252316 0.1372908 0.01434988 +0.6806558 0.1372908 0.01434988 +0.7388448 0.1372908 0.01434988 +0.7998369 0.1372908 0.01434988 +0.8636691 0.1372908 0.01434988 +0.9303782 0.1372908 0.01434988 +1 0.1372908 0.01434988 +0 0.1606827 0.01434988 +0.002418731 0.1606827 0.01434988 +0.005155668 0.1606827 0.01434988 +0.009080105 0.1606827 0.01434988 +0.01434988 0.1606827 0.01434988 +0.02107202 0.1606827 0.01434988 +0.02934285 0.1606827 0.01434988 +0.03925039 0.1606827 0.01434988 +0.05087609 0.1606827 0.01434988 +0.06429595 0.1606827 0.01434988 +0.07958143 0.1606827 0.01434988 +0.0968001 0.1606827 0.01434988 +0.1160161 0.1606827 0.01434988 +0.1372908 0.1606827 0.01434988 +0.1606827 0.1606827 0.01434988 +0.1862481 0.1606827 0.01434988 +0.2140411 0.1606827 0.01434988 +0.2441142 0.1606827 0.01434988 +0.2765176 0.1606827 0.01434988 +0.3113005 0.1606827 0.01434988 +0.3485102 0.1606827 0.01434988 +0.388193 0.1606827 0.01434988 +0.4303934 0.1606827 0.01434988 +0.4751555 0.1606827 0.01434988 +0.5225216 0.1606827 0.01434988 +0.5725335 0.1606827 0.01434988 +0.6252316 0.1606827 0.01434988 +0.6806558 0.1606827 0.01434988 +0.7388448 0.1606827 0.01434988 +0.7998369 0.1606827 0.01434988 +0.8636691 0.1606827 0.01434988 +0.9303782 0.1606827 0.01434988 +1 0.1606827 0.01434988 +0 0.1862481 0.01434988 +0.002418731 0.1862481 0.01434988 +0.005155668 0.1862481 0.01434988 +0.009080105 0.1862481 0.01434988 +0.01434988 0.1862481 0.01434988 +0.02107202 0.1862481 0.01434988 +0.02934285 0.1862481 0.01434988 +0.03925039 0.1862481 0.01434988 +0.05087609 0.1862481 0.01434988 +0.06429595 0.1862481 0.01434988 +0.07958143 0.1862481 0.01434988 +0.0968001 0.1862481 0.01434988 +0.1160161 0.1862481 0.01434988 +0.1372908 0.1862481 0.01434988 +0.1606827 0.1862481 0.01434988 +0.1862481 0.1862481 0.01434988 +0.2140411 0.1862481 0.01434988 +0.2441142 0.1862481 0.01434988 +0.2765176 0.1862481 0.01434988 +0.3113005 0.1862481 0.01434988 +0.3485102 0.1862481 0.01434988 +0.388193 0.1862481 0.01434988 +0.4303934 0.1862481 0.01434988 +0.4751555 0.1862481 0.01434988 +0.5225216 0.1862481 0.01434988 +0.5725335 0.1862481 0.01434988 +0.6252316 0.1862481 0.01434988 +0.6806558 0.1862481 0.01434988 +0.7388448 0.1862481 0.01434988 +0.7998369 0.1862481 0.01434988 +0.8636691 0.1862481 0.01434988 +0.9303782 0.1862481 0.01434988 +1 0.1862481 0.01434988 +0 0.2140411 0.01434988 +0.002418731 0.2140411 0.01434988 +0.005155668 0.2140411 0.01434988 +0.009080105 0.2140411 0.01434988 +0.01434988 0.2140411 0.01434988 +0.02107202 0.2140411 0.01434988 +0.02934285 0.2140411 0.01434988 +0.03925039 0.2140411 0.01434988 +0.05087609 0.2140411 0.01434988 +0.06429595 0.2140411 0.01434988 +0.07958143 0.2140411 0.01434988 +0.0968001 0.2140411 0.01434988 +0.1160161 0.2140411 0.01434988 +0.1372908 0.2140411 0.01434988 +0.1606827 0.2140411 0.01434988 +0.1862481 0.2140411 0.01434988 +0.2140411 0.2140411 0.01434988 +0.2441142 0.2140411 0.01434988 +0.2765176 0.2140411 0.01434988 +0.3113005 0.2140411 0.01434988 +0.3485102 0.2140411 0.01434988 +0.388193 0.2140411 0.01434988 +0.4303934 0.2140411 0.01434988 +0.4751555 0.2140411 0.01434988 +0.5225216 0.2140411 0.01434988 +0.5725335 0.2140411 0.01434988 +0.6252316 0.2140411 0.01434988 +0.6806558 0.2140411 0.01434988 +0.7388448 0.2140411 0.01434988 +0.7998369 0.2140411 0.01434988 +0.8636691 0.2140411 0.01434988 +0.9303782 0.2140411 0.01434988 +1 0.2140411 0.01434988 +0 0.2441142 0.01434988 +0.002418731 0.2441142 0.01434988 +0.005155668 0.2441142 0.01434988 +0.009080105 0.2441142 0.01434988 +0.01434988 0.2441142 0.01434988 +0.02107202 0.2441142 0.01434988 +0.02934285 0.2441142 0.01434988 +0.03925039 0.2441142 0.01434988 +0.05087609 0.2441142 0.01434988 +0.06429595 0.2441142 0.01434988 +0.07958143 0.2441142 0.01434988 +0.0968001 0.2441142 0.01434988 +0.1160161 0.2441142 0.01434988 +0.1372908 0.2441142 0.01434988 +0.1606827 0.2441142 0.01434988 +0.1862481 0.2441142 0.01434988 +0.2140411 0.2441142 0.01434988 +0.2441142 0.2441142 0.01434988 +0.2765176 0.2441142 0.01434988 +0.3113005 0.2441142 0.01434988 +0.3485102 0.2441142 0.01434988 +0.388193 0.2441142 0.01434988 +0.4303934 0.2441142 0.01434988 +0.4751555 0.2441142 0.01434988 +0.5225216 0.2441142 0.01434988 +0.5725335 0.2441142 0.01434988 +0.6252316 0.2441142 0.01434988 +0.6806558 0.2441142 0.01434988 +0.7388448 0.2441142 0.01434988 +0.7998369 0.2441142 0.01434988 +0.8636691 0.2441142 0.01434988 +0.9303782 0.2441142 0.01434988 +1 0.2441142 0.01434988 +0 0.2765176 0.01434988 +0.002418731 0.2765176 0.01434988 +0.005155668 0.2765176 0.01434988 +0.009080105 0.2765176 0.01434988 +0.01434988 0.2765176 0.01434988 +0.02107202 0.2765176 0.01434988 +0.02934285 0.2765176 0.01434988 +0.03925039 0.2765176 0.01434988 +0.05087609 0.2765176 0.01434988 +0.06429595 0.2765176 0.01434988 +0.07958143 0.2765176 0.01434988 +0.0968001 0.2765176 0.01434988 +0.1160161 0.2765176 0.01434988 +0.1372908 0.2765176 0.01434988 +0.1606827 0.2765176 0.01434988 +0.1862481 0.2765176 0.01434988 +0.2140411 0.2765176 0.01434988 +0.2441142 0.2765176 0.01434988 +0.2765176 0.2765176 0.01434988 +0.3113005 0.2765176 0.01434988 +0.3485102 0.2765176 0.01434988 +0.388193 0.2765176 0.01434988 +0.4303934 0.2765176 0.01434988 +0.4751555 0.2765176 0.01434988 +0.5225216 0.2765176 0.01434988 +0.5725335 0.2765176 0.01434988 +0.6252316 0.2765176 0.01434988 +0.6806558 0.2765176 0.01434988 +0.7388448 0.2765176 0.01434988 +0.7998369 0.2765176 0.01434988 +0.8636691 0.2765176 0.01434988 +0.9303782 0.2765176 0.01434988 +1 0.2765176 0.01434988 +0 0.3113005 0.01434988 +0.002418731 0.3113005 0.01434988 +0.005155668 0.3113005 0.01434988 +0.009080105 0.3113005 0.01434988 +0.01434988 0.3113005 0.01434988 +0.02107202 0.3113005 0.01434988 +0.02934285 0.3113005 0.01434988 +0.03925039 0.3113005 0.01434988 +0.05087609 0.3113005 0.01434988 +0.06429595 0.3113005 0.01434988 +0.07958143 0.3113005 0.01434988 +0.0968001 0.3113005 0.01434988 +0.1160161 0.3113005 0.01434988 +0.1372908 0.3113005 0.01434988 +0.1606827 0.3113005 0.01434988 +0.1862481 0.3113005 0.01434988 +0.2140411 0.3113005 0.01434988 +0.2441142 0.3113005 0.01434988 +0.2765176 0.3113005 0.01434988 +0.3113005 0.3113005 0.01434988 +0.3485102 0.3113005 0.01434988 +0.388193 0.3113005 0.01434988 +0.4303934 0.3113005 0.01434988 +0.4751555 0.3113005 0.01434988 +0.5225216 0.3113005 0.01434988 +0.5725335 0.3113005 0.01434988 +0.6252316 0.3113005 0.01434988 +0.6806558 0.3113005 0.01434988 +0.7388448 0.3113005 0.01434988 +0.7998369 0.3113005 0.01434988 +0.8636691 0.3113005 0.01434988 +0.9303782 0.3113005 0.01434988 +1 0.3113005 0.01434988 +0 0.3485102 0.01434988 +0.002418731 0.3485102 0.01434988 +0.005155668 0.3485102 0.01434988 +0.009080105 0.3485102 0.01434988 +0.01434988 0.3485102 0.01434988 +0.02107202 0.3485102 0.01434988 +0.02934285 0.3485102 0.01434988 +0.03925039 0.3485102 0.01434988 +0.05087609 0.3485102 0.01434988 +0.06429595 0.3485102 0.01434988 +0.07958143 0.3485102 0.01434988 +0.0968001 0.3485102 0.01434988 +0.1160161 0.3485102 0.01434988 +0.1372908 0.3485102 0.01434988 +0.1606827 0.3485102 0.01434988 +0.1862481 0.3485102 0.01434988 +0.2140411 0.3485102 0.01434988 +0.2441142 0.3485102 0.01434988 +0.2765176 0.3485102 0.01434988 +0.3113005 0.3485102 0.01434988 +0.3485102 0.3485102 0.01434988 +0.388193 0.3485102 0.01434988 +0.4303934 0.3485102 0.01434988 +0.4751555 0.3485102 0.01434988 +0.5225216 0.3485102 0.01434988 +0.5725335 0.3485102 0.01434988 +0.6252316 0.3485102 0.01434988 +0.6806558 0.3485102 0.01434988 +0.7388448 0.3485102 0.01434988 +0.7998369 0.3485102 0.01434988 +0.8636691 0.3485102 0.01434988 +0.9303782 0.3485102 0.01434988 +1 0.3485102 0.01434988 +0 0.388193 0.01434988 +0.002418731 0.388193 0.01434988 +0.005155668 0.388193 0.01434988 +0.009080105 0.388193 0.01434988 +0.01434988 0.388193 0.01434988 +0.02107202 0.388193 0.01434988 +0.02934285 0.388193 0.01434988 +0.03925039 0.388193 0.01434988 +0.05087609 0.388193 0.01434988 +0.06429595 0.388193 0.01434988 +0.07958143 0.388193 0.01434988 +0.0968001 0.388193 0.01434988 +0.1160161 0.388193 0.01434988 +0.1372908 0.388193 0.01434988 +0.1606827 0.388193 0.01434988 +0.1862481 0.388193 0.01434988 +0.2140411 0.388193 0.01434988 +0.2441142 0.388193 0.01434988 +0.2765176 0.388193 0.01434988 +0.3113005 0.388193 0.01434988 +0.3485102 0.388193 0.01434988 +0.388193 0.388193 0.01434988 +0.4303934 0.388193 0.01434988 +0.4751555 0.388193 0.01434988 +0.5225216 0.388193 0.01434988 +0.5725335 0.388193 0.01434988 +0.6252316 0.388193 0.01434988 +0.6806558 0.388193 0.01434988 +0.7388448 0.388193 0.01434988 +0.7998369 0.388193 0.01434988 +0.8636691 0.388193 0.01434988 +0.9303782 0.388193 0.01434988 +1 0.388193 0.01434988 +0 0.4303934 0.01434988 +0.002418731 0.4303934 0.01434988 +0.005155668 0.4303934 0.01434988 +0.009080105 0.4303934 0.01434988 +0.01434988 0.4303934 0.01434988 +0.02107202 0.4303934 0.01434988 +0.02934285 0.4303934 0.01434988 +0.03925039 0.4303934 0.01434988 +0.05087609 0.4303934 0.01434988 +0.06429595 0.4303934 0.01434988 +0.07958143 0.4303934 0.01434988 +0.0968001 0.4303934 0.01434988 +0.1160161 0.4303934 0.01434988 +0.1372908 0.4303934 0.01434988 +0.1606827 0.4303934 0.01434988 +0.1862481 0.4303934 0.01434988 +0.2140411 0.4303934 0.01434988 +0.2441142 0.4303934 0.01434988 +0.2765176 0.4303934 0.01434988 +0.3113005 0.4303934 0.01434988 +0.3485102 0.4303934 0.01434988 +0.388193 0.4303934 0.01434988 +0.4303934 0.4303934 0.01434988 +0.4751555 0.4303934 0.01434988 +0.5225216 0.4303934 0.01434988 +0.5725335 0.4303934 0.01434988 +0.6252316 0.4303934 0.01434988 +0.6806558 0.4303934 0.01434988 +0.7388448 0.4303934 0.01434988 +0.7998369 0.4303934 0.01434988 +0.8636691 0.4303934 0.01434988 +0.9303782 0.4303934 0.01434988 +1 0.4303934 0.01434988 +0 0.4751555 0.01434988 +0.002418731 0.4751555 0.01434988 +0.005155668 0.4751555 0.01434988 +0.009080105 0.4751555 0.01434988 +0.01434988 0.4751555 0.01434988 +0.02107202 0.4751555 0.01434988 +0.02934285 0.4751555 0.01434988 +0.03925039 0.4751555 0.01434988 +0.05087609 0.4751555 0.01434988 +0.06429595 0.4751555 0.01434988 +0.07958143 0.4751555 0.01434988 +0.0968001 0.4751555 0.01434988 +0.1160161 0.4751555 0.01434988 +0.1372908 0.4751555 0.01434988 +0.1606827 0.4751555 0.01434988 +0.1862481 0.4751555 0.01434988 +0.2140411 0.4751555 0.01434988 +0.2441142 0.4751555 0.01434988 +0.2765176 0.4751555 0.01434988 +0.3113005 0.4751555 0.01434988 +0.3485102 0.4751555 0.01434988 +0.388193 0.4751555 0.01434988 +0.4303934 0.4751555 0.01434988 +0.4751555 0.4751555 0.01434988 +0.5225216 0.4751555 0.01434988 +0.5725335 0.4751555 0.01434988 +0.6252316 0.4751555 0.01434988 +0.6806558 0.4751555 0.01434988 +0.7388448 0.4751555 0.01434988 +0.7998369 0.4751555 0.01434988 +0.8636691 0.4751555 0.01434988 +0.9303782 0.4751555 0.01434988 +1 0.4751555 0.01434988 +0 0.5225216 0.01434988 +0.002418731 0.5225216 0.01434988 +0.005155668 0.5225216 0.01434988 +0.009080105 0.5225216 0.01434988 +0.01434988 0.5225216 0.01434988 +0.02107202 0.5225216 0.01434988 +0.02934285 0.5225216 0.01434988 +0.03925039 0.5225216 0.01434988 +0.05087609 0.5225216 0.01434988 +0.06429595 0.5225216 0.01434988 +0.07958143 0.5225216 0.01434988 +0.0968001 0.5225216 0.01434988 +0.1160161 0.5225216 0.01434988 +0.1372908 0.5225216 0.01434988 +0.1606827 0.5225216 0.01434988 +0.1862481 0.5225216 0.01434988 +0.2140411 0.5225216 0.01434988 +0.2441142 0.5225216 0.01434988 +0.2765176 0.5225216 0.01434988 +0.3113005 0.5225216 0.01434988 +0.3485102 0.5225216 0.01434988 +0.388193 0.5225216 0.01434988 +0.4303934 0.5225216 0.01434988 +0.4751555 0.5225216 0.01434988 +0.5225216 0.5225216 0.01434988 +0.5725335 0.5225216 0.01434988 +0.6252316 0.5225216 0.01434988 +0.6806558 0.5225216 0.01434988 +0.7388448 0.5225216 0.01434988 +0.7998369 0.5225216 0.01434988 +0.8636691 0.5225216 0.01434988 +0.9303782 0.5225216 0.01434988 +1 0.5225216 0.01434988 +0 0.5725335 0.01434988 +0.002418731 0.5725335 0.01434988 +0.005155668 0.5725335 0.01434988 +0.009080105 0.5725335 0.01434988 +0.01434988 0.5725335 0.01434988 +0.02107202 0.5725335 0.01434988 +0.02934285 0.5725335 0.01434988 +0.03925039 0.5725335 0.01434988 +0.05087609 0.5725335 0.01434988 +0.06429595 0.5725335 0.01434988 +0.07958143 0.5725335 0.01434988 +0.0968001 0.5725335 0.01434988 +0.1160161 0.5725335 0.01434988 +0.1372908 0.5725335 0.01434988 +0.1606827 0.5725335 0.01434988 +0.1862481 0.5725335 0.01434988 +0.2140411 0.5725335 0.01434988 +0.2441142 0.5725335 0.01434988 +0.2765176 0.5725335 0.01434988 +0.3113005 0.5725335 0.01434988 +0.3485102 0.5725335 0.01434988 +0.388193 0.5725335 0.01434988 +0.4303934 0.5725335 0.01434988 +0.4751555 0.5725335 0.01434988 +0.5225216 0.5725335 0.01434988 +0.5725335 0.5725335 0.01434988 +0.6252316 0.5725335 0.01434988 +0.6806558 0.5725335 0.01434988 +0.7388448 0.5725335 0.01434988 +0.7998369 0.5725335 0.01434988 +0.8636691 0.5725335 0.01434988 +0.9303782 0.5725335 0.01434988 +1 0.5725335 0.01434988 +0 0.6252316 0.01434988 +0.002418731 0.6252316 0.01434988 +0.005155668 0.6252316 0.01434988 +0.009080105 0.6252316 0.01434988 +0.01434988 0.6252316 0.01434988 +0.02107202 0.6252316 0.01434988 +0.02934285 0.6252316 0.01434988 +0.03925039 0.6252316 0.01434988 +0.05087609 0.6252316 0.01434988 +0.06429595 0.6252316 0.01434988 +0.07958143 0.6252316 0.01434988 +0.0968001 0.6252316 0.01434988 +0.1160161 0.6252316 0.01434988 +0.1372908 0.6252316 0.01434988 +0.1606827 0.6252316 0.01434988 +0.1862481 0.6252316 0.01434988 +0.2140411 0.6252316 0.01434988 +0.2441142 0.6252316 0.01434988 +0.2765176 0.6252316 0.01434988 +0.3113005 0.6252316 0.01434988 +0.3485102 0.6252316 0.01434988 +0.388193 0.6252316 0.01434988 +0.4303934 0.6252316 0.01434988 +0.4751555 0.6252316 0.01434988 +0.5225216 0.6252316 0.01434988 +0.5725335 0.6252316 0.01434988 +0.6252316 0.6252316 0.01434988 +0.6806558 0.6252316 0.01434988 +0.7388448 0.6252316 0.01434988 +0.7998369 0.6252316 0.01434988 +0.8636691 0.6252316 0.01434988 +0.9303782 0.6252316 0.01434988 +1 0.6252316 0.01434988 +0 0.6806558 0.01434988 +0.002418731 0.6806558 0.01434988 +0.005155668 0.6806558 0.01434988 +0.009080105 0.6806558 0.01434988 +0.01434988 0.6806558 0.01434988 +0.02107202 0.6806558 0.01434988 +0.02934285 0.6806558 0.01434988 +0.03925039 0.6806558 0.01434988 +0.05087609 0.6806558 0.01434988 +0.06429595 0.6806558 0.01434988 +0.07958143 0.6806558 0.01434988 +0.0968001 0.6806558 0.01434988 +0.1160161 0.6806558 0.01434988 +0.1372908 0.6806558 0.01434988 +0.1606827 0.6806558 0.01434988 +0.1862481 0.6806558 0.01434988 +0.2140411 0.6806558 0.01434988 +0.2441142 0.6806558 0.01434988 +0.2765176 0.6806558 0.01434988 +0.3113005 0.6806558 0.01434988 +0.3485102 0.6806558 0.01434988 +0.388193 0.6806558 0.01434988 +0.4303934 0.6806558 0.01434988 +0.4751555 0.6806558 0.01434988 +0.5225216 0.6806558 0.01434988 +0.5725335 0.6806558 0.01434988 +0.6252316 0.6806558 0.01434988 +0.6806558 0.6806558 0.01434988 +0.7388448 0.6806558 0.01434988 +0.7998369 0.6806558 0.01434988 +0.8636691 0.6806558 0.01434988 +0.9303782 0.6806558 0.01434988 +1 0.6806558 0.01434988 +0 0.7388448 0.01434988 +0.002418731 0.7388448 0.01434988 +0.005155668 0.7388448 0.01434988 +0.009080105 0.7388448 0.01434988 +0.01434988 0.7388448 0.01434988 +0.02107202 0.7388448 0.01434988 +0.02934285 0.7388448 0.01434988 +0.03925039 0.7388448 0.01434988 +0.05087609 0.7388448 0.01434988 +0.06429595 0.7388448 0.01434988 +0.07958143 0.7388448 0.01434988 +0.0968001 0.7388448 0.01434988 +0.1160161 0.7388448 0.01434988 +0.1372908 0.7388448 0.01434988 +0.1606827 0.7388448 0.01434988 +0.1862481 0.7388448 0.01434988 +0.2140411 0.7388448 0.01434988 +0.2441142 0.7388448 0.01434988 +0.2765176 0.7388448 0.01434988 +0.3113005 0.7388448 0.01434988 +0.3485102 0.7388448 0.01434988 +0.388193 0.7388448 0.01434988 +0.4303934 0.7388448 0.01434988 +0.4751555 0.7388448 0.01434988 +0.5225216 0.7388448 0.01434988 +0.5725335 0.7388448 0.01434988 +0.6252316 0.7388448 0.01434988 +0.6806558 0.7388448 0.01434988 +0.7388448 0.7388448 0.01434988 +0.7998369 0.7388448 0.01434988 +0.8636691 0.7388448 0.01434988 +0.9303782 0.7388448 0.01434988 +1 0.7388448 0.01434988 +0 0.7998369 0.01434988 +0.002418731 0.7998369 0.01434988 +0.005155668 0.7998369 0.01434988 +0.009080105 0.7998369 0.01434988 +0.01434988 0.7998369 0.01434988 +0.02107202 0.7998369 0.01434988 +0.02934285 0.7998369 0.01434988 +0.03925039 0.7998369 0.01434988 +0.05087609 0.7998369 0.01434988 +0.06429595 0.7998369 0.01434988 +0.07958143 0.7998369 0.01434988 +0.0968001 0.7998369 0.01434988 +0.1160161 0.7998369 0.01434988 +0.1372908 0.7998369 0.01434988 +0.1606827 0.7998369 0.01434988 +0.1862481 0.7998369 0.01434988 +0.2140411 0.7998369 0.01434988 +0.2441142 0.7998369 0.01434988 +0.2765176 0.7998369 0.01434988 +0.3113005 0.7998369 0.01434988 +0.3485102 0.7998369 0.01434988 +0.388193 0.7998369 0.01434988 +0.4303934 0.7998369 0.01434988 +0.4751555 0.7998369 0.01434988 +0.5225216 0.7998369 0.01434988 +0.5725335 0.7998369 0.01434988 +0.6252316 0.7998369 0.01434988 +0.6806558 0.7998369 0.01434988 +0.7388448 0.7998369 0.01434988 +0.7998369 0.7998369 0.01434988 +0.8636691 0.7998369 0.01434988 +0.9303782 0.7998369 0.01434988 +1 0.7998369 0.01434988 +0 0.8636691 0.01434988 +0.002418731 0.8636691 0.01434988 +0.005155668 0.8636691 0.01434988 +0.009080105 0.8636691 0.01434988 +0.01434988 0.8636691 0.01434988 +0.02107202 0.8636691 0.01434988 +0.02934285 0.8636691 0.01434988 +0.03925039 0.8636691 0.01434988 +0.05087609 0.8636691 0.01434988 +0.06429595 0.8636691 0.01434988 +0.07958143 0.8636691 0.01434988 +0.0968001 0.8636691 0.01434988 +0.1160161 0.8636691 0.01434988 +0.1372908 0.8636691 0.01434988 +0.1606827 0.8636691 0.01434988 +0.1862481 0.8636691 0.01434988 +0.2140411 0.8636691 0.01434988 +0.2441142 0.8636691 0.01434988 +0.2765176 0.8636691 0.01434988 +0.3113005 0.8636691 0.01434988 +0.3485102 0.8636691 0.01434988 +0.388193 0.8636691 0.01434988 +0.4303934 0.8636691 0.01434988 +0.4751555 0.8636691 0.01434988 +0.5225216 0.8636691 0.01434988 +0.5725335 0.8636691 0.01434988 +0.6252316 0.8636691 0.01434988 +0.6806558 0.8636691 0.01434988 +0.7388448 0.8636691 0.01434988 +0.7998369 0.8636691 0.01434988 +0.8636691 0.8636691 0.01434988 +0.9303782 0.8636691 0.01434988 +1 0.8636691 0.01434988 +0 0.9303782 0.01434988 +0.002418731 0.9303782 0.01434988 +0.005155668 0.9303782 0.01434988 +0.009080105 0.9303782 0.01434988 +0.01434988 0.9303782 0.01434988 +0.02107202 0.9303782 0.01434988 +0.02934285 0.9303782 0.01434988 +0.03925039 0.9303782 0.01434988 +0.05087609 0.9303782 0.01434988 +0.06429595 0.9303782 0.01434988 +0.07958143 0.9303782 0.01434988 +0.0968001 0.9303782 0.01434988 +0.1160161 0.9303782 0.01434988 +0.1372908 0.9303782 0.01434988 +0.1606827 0.9303782 0.01434988 +0.1862481 0.9303782 0.01434988 +0.2140411 0.9303782 0.01434988 +0.2441142 0.9303782 0.01434988 +0.2765176 0.9303782 0.01434988 +0.3113005 0.9303782 0.01434988 +0.3485102 0.9303782 0.01434988 +0.388193 0.9303782 0.01434988 +0.4303934 0.9303782 0.01434988 +0.4751555 0.9303782 0.01434988 +0.5225216 0.9303782 0.01434988 +0.5725335 0.9303782 0.01434988 +0.6252316 0.9303782 0.01434988 +0.6806558 0.9303782 0.01434988 +0.7388448 0.9303782 0.01434988 +0.7998369 0.9303782 0.01434988 +0.8636691 0.9303782 0.01434988 +0.9303782 0.9303782 0.01434988 +1 0.9303782 0.01434988 +0 1 0.01434988 +0.002418731 1 0.01434988 +0.005155668 1 0.01434988 +0.009080105 1 0.01434988 +0.01434988 1 0.01434988 +0.02107202 1 0.01434988 +0.02934285 1 0.01434988 +0.03925039 1 0.01434988 +0.05087609 1 0.01434988 +0.06429595 1 0.01434988 +0.07958143 1 0.01434988 +0.0968001 1 0.01434988 +0.1160161 1 0.01434988 +0.1372908 1 0.01434988 +0.1606827 1 0.01434988 +0.1862481 1 0.01434988 +0.2140411 1 0.01434988 +0.2441142 1 0.01434988 +0.2765176 1 0.01434988 +0.3113005 1 0.01434988 +0.3485102 1 0.01434988 +0.388193 1 0.01434988 +0.4303934 1 0.01434988 +0.4751555 1 0.01434988 +0.5225216 1 0.01434988 +0.5725335 1 0.01434988 +0.6252316 1 0.01434988 +0.6806558 1 0.01434988 +0.7388448 1 0.01434988 +0.7998369 1 0.01434988 +0.8636691 1 0.01434988 +0.9303782 1 0.01434988 +1 1 0.01434988 +0 0 0.02107202 +0.002418731 0 0.02107202 +0.005155668 0 0.02107202 +0.009080105 0 0.02107202 +0.01434988 0 0.02107202 +0.02107202 0 0.02107202 +0.02934285 0 0.02107202 +0.03925039 0 0.02107202 +0.05087609 0 0.02107202 +0.06429595 0 0.02107202 +0.07958143 0 0.02107202 +0.0968001 0 0.02107202 +0.1160161 0 0.02107202 +0.1372908 0 0.02107202 +0.1606827 0 0.02107202 +0.1862481 0 0.02107202 +0.2140411 0 0.02107202 +0.2441142 0 0.02107202 +0.2765176 0 0.02107202 +0.3113005 0 0.02107202 +0.3485102 0 0.02107202 +0.388193 0 0.02107202 +0.4303934 0 0.02107202 +0.4751555 0 0.02107202 +0.5225216 0 0.02107202 +0.5725335 0 0.02107202 +0.6252316 0 0.02107202 +0.6806558 0 0.02107202 +0.7388448 0 0.02107202 +0.7998369 0 0.02107202 +0.8636691 0 0.02107202 +0.9303782 0 0.02107202 +1 0 0.02107202 +0 0.002418731 0.02107202 +0.002418731 0.002418731 0.02107202 +0.005155668 0.002418731 0.02107202 +0.009080105 0.002418731 0.02107202 +0.01434988 0.002418731 0.02107202 +0.02107202 0.002418731 0.02107202 +0.02934285 0.002418731 0.02107202 +0.03925039 0.002418731 0.02107202 +0.05087609 0.002418731 0.02107202 +0.06429595 0.002418731 0.02107202 +0.07958143 0.002418731 0.02107202 +0.0968001 0.002418731 0.02107202 +0.1160161 0.002418731 0.02107202 +0.1372908 0.002418731 0.02107202 +0.1606827 0.002418731 0.02107202 +0.1862481 0.002418731 0.02107202 +0.2140411 0.002418731 0.02107202 +0.2441142 0.002418731 0.02107202 +0.2765176 0.002418731 0.02107202 +0.3113005 0.002418731 0.02107202 +0.3485102 0.002418731 0.02107202 +0.388193 0.002418731 0.02107202 +0.4303934 0.002418731 0.02107202 +0.4751555 0.002418731 0.02107202 +0.5225216 0.002418731 0.02107202 +0.5725335 0.002418731 0.02107202 +0.6252316 0.002418731 0.02107202 +0.6806558 0.002418731 0.02107202 +0.7388448 0.002418731 0.02107202 +0.7998369 0.002418731 0.02107202 +0.8636691 0.002418731 0.02107202 +0.9303782 0.002418731 0.02107202 +1 0.002418731 0.02107202 +0 0.005155668 0.02107202 +0.002418731 0.005155668 0.02107202 +0.005155668 0.005155668 0.02107202 +0.009080105 0.005155668 0.02107202 +0.01434988 0.005155668 0.02107202 +0.02107202 0.005155668 0.02107202 +0.02934285 0.005155668 0.02107202 +0.03925039 0.005155668 0.02107202 +0.05087609 0.005155668 0.02107202 +0.06429595 0.005155668 0.02107202 +0.07958143 0.005155668 0.02107202 +0.0968001 0.005155668 0.02107202 +0.1160161 0.005155668 0.02107202 +0.1372908 0.005155668 0.02107202 +0.1606827 0.005155668 0.02107202 +0.1862481 0.005155668 0.02107202 +0.2140411 0.005155668 0.02107202 +0.2441142 0.005155668 0.02107202 +0.2765176 0.005155668 0.02107202 +0.3113005 0.005155668 0.02107202 +0.3485102 0.005155668 0.02107202 +0.388193 0.005155668 0.02107202 +0.4303934 0.005155668 0.02107202 +0.4751555 0.005155668 0.02107202 +0.5225216 0.005155668 0.02107202 +0.5725335 0.005155668 0.02107202 +0.6252316 0.005155668 0.02107202 +0.6806558 0.005155668 0.02107202 +0.7388448 0.005155668 0.02107202 +0.7998369 0.005155668 0.02107202 +0.8636691 0.005155668 0.02107202 +0.9303782 0.005155668 0.02107202 +1 0.005155668 0.02107202 +0 0.009080105 0.02107202 +0.002418731 0.009080105 0.02107202 +0.005155668 0.009080105 0.02107202 +0.009080105 0.009080105 0.02107202 +0.01434988 0.009080105 0.02107202 +0.02107202 0.009080105 0.02107202 +0.02934285 0.009080105 0.02107202 +0.03925039 0.009080105 0.02107202 +0.05087609 0.009080105 0.02107202 +0.06429595 0.009080105 0.02107202 +0.07958143 0.009080105 0.02107202 +0.0968001 0.009080105 0.02107202 +0.1160161 0.009080105 0.02107202 +0.1372908 0.009080105 0.02107202 +0.1606827 0.009080105 0.02107202 +0.1862481 0.009080105 0.02107202 +0.2140411 0.009080105 0.02107202 +0.2441142 0.009080105 0.02107202 +0.2765176 0.009080105 0.02107202 +0.3113005 0.009080105 0.02107202 +0.3485102 0.009080105 0.02107202 +0.388193 0.009080105 0.02107202 +0.4303934 0.009080105 0.02107202 +0.4751555 0.009080105 0.02107202 +0.5225216 0.009080105 0.02107202 +0.5725335 0.009080105 0.02107202 +0.6252316 0.009080105 0.02107202 +0.6806558 0.009080105 0.02107202 +0.7388448 0.009080105 0.02107202 +0.7998369 0.009080105 0.02107202 +0.8636691 0.009080105 0.02107202 +0.9303782 0.009080105 0.02107202 +1 0.009080105 0.02107202 +0 0.01434988 0.02107202 +0.002418731 0.01434988 0.02107202 +0.005155668 0.01434988 0.02107202 +0.009080105 0.01434988 0.02107202 +0.01434988 0.01434988 0.02107202 +0.02107202 0.01434988 0.02107202 +0.02934285 0.01434988 0.02107202 +0.03925039 0.01434988 0.02107202 +0.05087609 0.01434988 0.02107202 +0.06429595 0.01434988 0.02107202 +0.07958143 0.01434988 0.02107202 +0.0968001 0.01434988 0.02107202 +0.1160161 0.01434988 0.02107202 +0.1372908 0.01434988 0.02107202 +0.1606827 0.01434988 0.02107202 +0.1862481 0.01434988 0.02107202 +0.2140411 0.01434988 0.02107202 +0.2441142 0.01434988 0.02107202 +0.2765176 0.01434988 0.02107202 +0.3113005 0.01434988 0.02107202 +0.3485102 0.01434988 0.02107202 +0.388193 0.01434988 0.02107202 +0.4303934 0.01434988 0.02107202 +0.4751555 0.01434988 0.02107202 +0.5225216 0.01434988 0.02107202 +0.5725335 0.01434988 0.02107202 +0.6252316 0.01434988 0.02107202 +0.6806558 0.01434988 0.02107202 +0.7388448 0.01434988 0.02107202 +0.7998369 0.01434988 0.02107202 +0.8636691 0.01434988 0.02107202 +0.9303782 0.01434988 0.02107202 +1 0.01434988 0.02107202 +0 0.02107202 0.02107202 +0.002418731 0.02107202 0.02107202 +0.005155668 0.02107202 0.02107202 +0.009080105 0.02107202 0.02107202 +0.01434988 0.02107202 0.02107202 +0.02107202 0.02107202 0.02107202 +0.02934285 0.02107202 0.02107202 +0.03925039 0.02107202 0.02107202 +0.05087609 0.02107202 0.02107202 +0.06429595 0.02107202 0.02107202 +0.07958143 0.02107202 0.02107202 +0.0968001 0.02107202 0.02107202 +0.1160161 0.02107202 0.02107202 +0.1372908 0.02107202 0.02107202 +0.1606827 0.02107202 0.02107202 +0.1862481 0.02107202 0.02107202 +0.2140411 0.02107202 0.02107202 +0.2441142 0.02107202 0.02107202 +0.2765176 0.02107202 0.02107202 +0.3113005 0.02107202 0.02107202 +0.3485102 0.02107202 0.02107202 +0.388193 0.02107202 0.02107202 +0.4303934 0.02107202 0.02107202 +0.4751555 0.02107202 0.02107202 +0.5225216 0.02107202 0.02107202 +0.5725335 0.02107202 0.02107202 +0.6252316 0.02107202 0.02107202 +0.6806558 0.02107202 0.02107202 +0.7388448 0.02107202 0.02107202 +0.7998369 0.02107202 0.02107202 +0.8636691 0.02107202 0.02107202 +0.9303782 0.02107202 0.02107202 +1 0.02107202 0.02107202 +0 0.02934285 0.02107202 +0.002418731 0.02934285 0.02107202 +0.005155668 0.02934285 0.02107202 +0.009080105 0.02934285 0.02107202 +0.01434988 0.02934285 0.02107202 +0.02107202 0.02934285 0.02107202 +0.02934285 0.02934285 0.02107202 +0.03925039 0.02934285 0.02107202 +0.05087609 0.02934285 0.02107202 +0.06429595 0.02934285 0.02107202 +0.07958143 0.02934285 0.02107202 +0.0968001 0.02934285 0.02107202 +0.1160161 0.02934285 0.02107202 +0.1372908 0.02934285 0.02107202 +0.1606827 0.02934285 0.02107202 +0.1862481 0.02934285 0.02107202 +0.2140411 0.02934285 0.02107202 +0.2441142 0.02934285 0.02107202 +0.2765176 0.02934285 0.02107202 +0.3113005 0.02934285 0.02107202 +0.3485102 0.02934285 0.02107202 +0.388193 0.02934285 0.02107202 +0.4303934 0.02934285 0.02107202 +0.4751555 0.02934285 0.02107202 +0.5225216 0.02934285 0.02107202 +0.5725335 0.02934285 0.02107202 +0.6252316 0.02934285 0.02107202 +0.6806558 0.02934285 0.02107202 +0.7388448 0.02934285 0.02107202 +0.7998369 0.02934285 0.02107202 +0.8636691 0.02934285 0.02107202 +0.9303782 0.02934285 0.02107202 +1 0.02934285 0.02107202 +0 0.03925039 0.02107202 +0.002418731 0.03925039 0.02107202 +0.005155668 0.03925039 0.02107202 +0.009080105 0.03925039 0.02107202 +0.01434988 0.03925039 0.02107202 +0.02107202 0.03925039 0.02107202 +0.02934285 0.03925039 0.02107202 +0.03925039 0.03925039 0.02107202 +0.05087609 0.03925039 0.02107202 +0.06429595 0.03925039 0.02107202 +0.07958143 0.03925039 0.02107202 +0.0968001 0.03925039 0.02107202 +0.1160161 0.03925039 0.02107202 +0.1372908 0.03925039 0.02107202 +0.1606827 0.03925039 0.02107202 +0.1862481 0.03925039 0.02107202 +0.2140411 0.03925039 0.02107202 +0.2441142 0.03925039 0.02107202 +0.2765176 0.03925039 0.02107202 +0.3113005 0.03925039 0.02107202 +0.3485102 0.03925039 0.02107202 +0.388193 0.03925039 0.02107202 +0.4303934 0.03925039 0.02107202 +0.4751555 0.03925039 0.02107202 +0.5225216 0.03925039 0.02107202 +0.5725335 0.03925039 0.02107202 +0.6252316 0.03925039 0.02107202 +0.6806558 0.03925039 0.02107202 +0.7388448 0.03925039 0.02107202 +0.7998369 0.03925039 0.02107202 +0.8636691 0.03925039 0.02107202 +0.9303782 0.03925039 0.02107202 +1 0.03925039 0.02107202 +0 0.05087609 0.02107202 +0.002418731 0.05087609 0.02107202 +0.005155668 0.05087609 0.02107202 +0.009080105 0.05087609 0.02107202 +0.01434988 0.05087609 0.02107202 +0.02107202 0.05087609 0.02107202 +0.02934285 0.05087609 0.02107202 +0.03925039 0.05087609 0.02107202 +0.05087609 0.05087609 0.02107202 +0.06429595 0.05087609 0.02107202 +0.07958143 0.05087609 0.02107202 +0.0968001 0.05087609 0.02107202 +0.1160161 0.05087609 0.02107202 +0.1372908 0.05087609 0.02107202 +0.1606827 0.05087609 0.02107202 +0.1862481 0.05087609 0.02107202 +0.2140411 0.05087609 0.02107202 +0.2441142 0.05087609 0.02107202 +0.2765176 0.05087609 0.02107202 +0.3113005 0.05087609 0.02107202 +0.3485102 0.05087609 0.02107202 +0.388193 0.05087609 0.02107202 +0.4303934 0.05087609 0.02107202 +0.4751555 0.05087609 0.02107202 +0.5225216 0.05087609 0.02107202 +0.5725335 0.05087609 0.02107202 +0.6252316 0.05087609 0.02107202 +0.6806558 0.05087609 0.02107202 +0.7388448 0.05087609 0.02107202 +0.7998369 0.05087609 0.02107202 +0.8636691 0.05087609 0.02107202 +0.9303782 0.05087609 0.02107202 +1 0.05087609 0.02107202 +0 0.06429595 0.02107202 +0.002418731 0.06429595 0.02107202 +0.005155668 0.06429595 0.02107202 +0.009080105 0.06429595 0.02107202 +0.01434988 0.06429595 0.02107202 +0.02107202 0.06429595 0.02107202 +0.02934285 0.06429595 0.02107202 +0.03925039 0.06429595 0.02107202 +0.05087609 0.06429595 0.02107202 +0.06429595 0.06429595 0.02107202 +0.07958143 0.06429595 0.02107202 +0.0968001 0.06429595 0.02107202 +0.1160161 0.06429595 0.02107202 +0.1372908 0.06429595 0.02107202 +0.1606827 0.06429595 0.02107202 +0.1862481 0.06429595 0.02107202 +0.2140411 0.06429595 0.02107202 +0.2441142 0.06429595 0.02107202 +0.2765176 0.06429595 0.02107202 +0.3113005 0.06429595 0.02107202 +0.3485102 0.06429595 0.02107202 +0.388193 0.06429595 0.02107202 +0.4303934 0.06429595 0.02107202 +0.4751555 0.06429595 0.02107202 +0.5225216 0.06429595 0.02107202 +0.5725335 0.06429595 0.02107202 +0.6252316 0.06429595 0.02107202 +0.6806558 0.06429595 0.02107202 +0.7388448 0.06429595 0.02107202 +0.7998369 0.06429595 0.02107202 +0.8636691 0.06429595 0.02107202 +0.9303782 0.06429595 0.02107202 +1 0.06429595 0.02107202 +0 0.07958143 0.02107202 +0.002418731 0.07958143 0.02107202 +0.005155668 0.07958143 0.02107202 +0.009080105 0.07958143 0.02107202 +0.01434988 0.07958143 0.02107202 +0.02107202 0.07958143 0.02107202 +0.02934285 0.07958143 0.02107202 +0.03925039 0.07958143 0.02107202 +0.05087609 0.07958143 0.02107202 +0.06429595 0.07958143 0.02107202 +0.07958143 0.07958143 0.02107202 +0.0968001 0.07958143 0.02107202 +0.1160161 0.07958143 0.02107202 +0.1372908 0.07958143 0.02107202 +0.1606827 0.07958143 0.02107202 +0.1862481 0.07958143 0.02107202 +0.2140411 0.07958143 0.02107202 +0.2441142 0.07958143 0.02107202 +0.2765176 0.07958143 0.02107202 +0.3113005 0.07958143 0.02107202 +0.3485102 0.07958143 0.02107202 +0.388193 0.07958143 0.02107202 +0.4303934 0.07958143 0.02107202 +0.4751555 0.07958143 0.02107202 +0.5225216 0.07958143 0.02107202 +0.5725335 0.07958143 0.02107202 +0.6252316 0.07958143 0.02107202 +0.6806558 0.07958143 0.02107202 +0.7388448 0.07958143 0.02107202 +0.7998369 0.07958143 0.02107202 +0.8636691 0.07958143 0.02107202 +0.9303782 0.07958143 0.02107202 +1 0.07958143 0.02107202 +0 0.0968001 0.02107202 +0.002418731 0.0968001 0.02107202 +0.005155668 0.0968001 0.02107202 +0.009080105 0.0968001 0.02107202 +0.01434988 0.0968001 0.02107202 +0.02107202 0.0968001 0.02107202 +0.02934285 0.0968001 0.02107202 +0.03925039 0.0968001 0.02107202 +0.05087609 0.0968001 0.02107202 +0.06429595 0.0968001 0.02107202 +0.07958143 0.0968001 0.02107202 +0.0968001 0.0968001 0.02107202 +0.1160161 0.0968001 0.02107202 +0.1372908 0.0968001 0.02107202 +0.1606827 0.0968001 0.02107202 +0.1862481 0.0968001 0.02107202 +0.2140411 0.0968001 0.02107202 +0.2441142 0.0968001 0.02107202 +0.2765176 0.0968001 0.02107202 +0.3113005 0.0968001 0.02107202 +0.3485102 0.0968001 0.02107202 +0.388193 0.0968001 0.02107202 +0.4303934 0.0968001 0.02107202 +0.4751555 0.0968001 0.02107202 +0.5225216 0.0968001 0.02107202 +0.5725335 0.0968001 0.02107202 +0.6252316 0.0968001 0.02107202 +0.6806558 0.0968001 0.02107202 +0.7388448 0.0968001 0.02107202 +0.7998369 0.0968001 0.02107202 +0.8636691 0.0968001 0.02107202 +0.9303782 0.0968001 0.02107202 +1 0.0968001 0.02107202 +0 0.1160161 0.02107202 +0.002418731 0.1160161 0.02107202 +0.005155668 0.1160161 0.02107202 +0.009080105 0.1160161 0.02107202 +0.01434988 0.1160161 0.02107202 +0.02107202 0.1160161 0.02107202 +0.02934285 0.1160161 0.02107202 +0.03925039 0.1160161 0.02107202 +0.05087609 0.1160161 0.02107202 +0.06429595 0.1160161 0.02107202 +0.07958143 0.1160161 0.02107202 +0.0968001 0.1160161 0.02107202 +0.1160161 0.1160161 0.02107202 +0.1372908 0.1160161 0.02107202 +0.1606827 0.1160161 0.02107202 +0.1862481 0.1160161 0.02107202 +0.2140411 0.1160161 0.02107202 +0.2441142 0.1160161 0.02107202 +0.2765176 0.1160161 0.02107202 +0.3113005 0.1160161 0.02107202 +0.3485102 0.1160161 0.02107202 +0.388193 0.1160161 0.02107202 +0.4303934 0.1160161 0.02107202 +0.4751555 0.1160161 0.02107202 +0.5225216 0.1160161 0.02107202 +0.5725335 0.1160161 0.02107202 +0.6252316 0.1160161 0.02107202 +0.6806558 0.1160161 0.02107202 +0.7388448 0.1160161 0.02107202 +0.7998369 0.1160161 0.02107202 +0.8636691 0.1160161 0.02107202 +0.9303782 0.1160161 0.02107202 +1 0.1160161 0.02107202 +0 0.1372908 0.02107202 +0.002418731 0.1372908 0.02107202 +0.005155668 0.1372908 0.02107202 +0.009080105 0.1372908 0.02107202 +0.01434988 0.1372908 0.02107202 +0.02107202 0.1372908 0.02107202 +0.02934285 0.1372908 0.02107202 +0.03925039 0.1372908 0.02107202 +0.05087609 0.1372908 0.02107202 +0.06429595 0.1372908 0.02107202 +0.07958143 0.1372908 0.02107202 +0.0968001 0.1372908 0.02107202 +0.1160161 0.1372908 0.02107202 +0.1372908 0.1372908 0.02107202 +0.1606827 0.1372908 0.02107202 +0.1862481 0.1372908 0.02107202 +0.2140411 0.1372908 0.02107202 +0.2441142 0.1372908 0.02107202 +0.2765176 0.1372908 0.02107202 +0.3113005 0.1372908 0.02107202 +0.3485102 0.1372908 0.02107202 +0.388193 0.1372908 0.02107202 +0.4303934 0.1372908 0.02107202 +0.4751555 0.1372908 0.02107202 +0.5225216 0.1372908 0.02107202 +0.5725335 0.1372908 0.02107202 +0.6252316 0.1372908 0.02107202 +0.6806558 0.1372908 0.02107202 +0.7388448 0.1372908 0.02107202 +0.7998369 0.1372908 0.02107202 +0.8636691 0.1372908 0.02107202 +0.9303782 0.1372908 0.02107202 +1 0.1372908 0.02107202 +0 0.1606827 0.02107202 +0.002418731 0.1606827 0.02107202 +0.005155668 0.1606827 0.02107202 +0.009080105 0.1606827 0.02107202 +0.01434988 0.1606827 0.02107202 +0.02107202 0.1606827 0.02107202 +0.02934285 0.1606827 0.02107202 +0.03925039 0.1606827 0.02107202 +0.05087609 0.1606827 0.02107202 +0.06429595 0.1606827 0.02107202 +0.07958143 0.1606827 0.02107202 +0.0968001 0.1606827 0.02107202 +0.1160161 0.1606827 0.02107202 +0.1372908 0.1606827 0.02107202 +0.1606827 0.1606827 0.02107202 +0.1862481 0.1606827 0.02107202 +0.2140411 0.1606827 0.02107202 +0.2441142 0.1606827 0.02107202 +0.2765176 0.1606827 0.02107202 +0.3113005 0.1606827 0.02107202 +0.3485102 0.1606827 0.02107202 +0.388193 0.1606827 0.02107202 +0.4303934 0.1606827 0.02107202 +0.4751555 0.1606827 0.02107202 +0.5225216 0.1606827 0.02107202 +0.5725335 0.1606827 0.02107202 +0.6252316 0.1606827 0.02107202 +0.6806558 0.1606827 0.02107202 +0.7388448 0.1606827 0.02107202 +0.7998369 0.1606827 0.02107202 +0.8636691 0.1606827 0.02107202 +0.9303782 0.1606827 0.02107202 +1 0.1606827 0.02107202 +0 0.1862481 0.02107202 +0.002418731 0.1862481 0.02107202 +0.005155668 0.1862481 0.02107202 +0.009080105 0.1862481 0.02107202 +0.01434988 0.1862481 0.02107202 +0.02107202 0.1862481 0.02107202 +0.02934285 0.1862481 0.02107202 +0.03925039 0.1862481 0.02107202 +0.05087609 0.1862481 0.02107202 +0.06429595 0.1862481 0.02107202 +0.07958143 0.1862481 0.02107202 +0.0968001 0.1862481 0.02107202 +0.1160161 0.1862481 0.02107202 +0.1372908 0.1862481 0.02107202 +0.1606827 0.1862481 0.02107202 +0.1862481 0.1862481 0.02107202 +0.2140411 0.1862481 0.02107202 +0.2441142 0.1862481 0.02107202 +0.2765176 0.1862481 0.02107202 +0.3113005 0.1862481 0.02107202 +0.3485102 0.1862481 0.02107202 +0.388193 0.1862481 0.02107202 +0.4303934 0.1862481 0.02107202 +0.4751555 0.1862481 0.02107202 +0.5225216 0.1862481 0.02107202 +0.5725335 0.1862481 0.02107202 +0.6252316 0.1862481 0.02107202 +0.6806558 0.1862481 0.02107202 +0.7388448 0.1862481 0.02107202 +0.7998369 0.1862481 0.02107202 +0.8636691 0.1862481 0.02107202 +0.9303782 0.1862481 0.02107202 +1 0.1862481 0.02107202 +0 0.2140411 0.02107202 +0.002418731 0.2140411 0.02107202 +0.005155668 0.2140411 0.02107202 +0.009080105 0.2140411 0.02107202 +0.01434988 0.2140411 0.02107202 +0.02107202 0.2140411 0.02107202 +0.02934285 0.2140411 0.02107202 +0.03925039 0.2140411 0.02107202 +0.05087609 0.2140411 0.02107202 +0.06429595 0.2140411 0.02107202 +0.07958143 0.2140411 0.02107202 +0.0968001 0.2140411 0.02107202 +0.1160161 0.2140411 0.02107202 +0.1372908 0.2140411 0.02107202 +0.1606827 0.2140411 0.02107202 +0.1862481 0.2140411 0.02107202 +0.2140411 0.2140411 0.02107202 +0.2441142 0.2140411 0.02107202 +0.2765176 0.2140411 0.02107202 +0.3113005 0.2140411 0.02107202 +0.3485102 0.2140411 0.02107202 +0.388193 0.2140411 0.02107202 +0.4303934 0.2140411 0.02107202 +0.4751555 0.2140411 0.02107202 +0.5225216 0.2140411 0.02107202 +0.5725335 0.2140411 0.02107202 +0.6252316 0.2140411 0.02107202 +0.6806558 0.2140411 0.02107202 +0.7388448 0.2140411 0.02107202 +0.7998369 0.2140411 0.02107202 +0.8636691 0.2140411 0.02107202 +0.9303782 0.2140411 0.02107202 +1 0.2140411 0.02107202 +0 0.2441142 0.02107202 +0.002418731 0.2441142 0.02107202 +0.005155668 0.2441142 0.02107202 +0.009080105 0.2441142 0.02107202 +0.01434988 0.2441142 0.02107202 +0.02107202 0.2441142 0.02107202 +0.02934285 0.2441142 0.02107202 +0.03925039 0.2441142 0.02107202 +0.05087609 0.2441142 0.02107202 +0.06429595 0.2441142 0.02107202 +0.07958143 0.2441142 0.02107202 +0.0968001 0.2441142 0.02107202 +0.1160161 0.2441142 0.02107202 +0.1372908 0.2441142 0.02107202 +0.1606827 0.2441142 0.02107202 +0.1862481 0.2441142 0.02107202 +0.2140411 0.2441142 0.02107202 +0.2441142 0.2441142 0.02107202 +0.2765176 0.2441142 0.02107202 +0.3113005 0.2441142 0.02107202 +0.3485102 0.2441142 0.02107202 +0.388193 0.2441142 0.02107202 +0.4303934 0.2441142 0.02107202 +0.4751555 0.2441142 0.02107202 +0.5225216 0.2441142 0.02107202 +0.5725335 0.2441142 0.02107202 +0.6252316 0.2441142 0.02107202 +0.6806558 0.2441142 0.02107202 +0.7388448 0.2441142 0.02107202 +0.7998369 0.2441142 0.02107202 +0.8636691 0.2441142 0.02107202 +0.9303782 0.2441142 0.02107202 +1 0.2441142 0.02107202 +0 0.2765176 0.02107202 +0.002418731 0.2765176 0.02107202 +0.005155668 0.2765176 0.02107202 +0.009080105 0.2765176 0.02107202 +0.01434988 0.2765176 0.02107202 +0.02107202 0.2765176 0.02107202 +0.02934285 0.2765176 0.02107202 +0.03925039 0.2765176 0.02107202 +0.05087609 0.2765176 0.02107202 +0.06429595 0.2765176 0.02107202 +0.07958143 0.2765176 0.02107202 +0.0968001 0.2765176 0.02107202 +0.1160161 0.2765176 0.02107202 +0.1372908 0.2765176 0.02107202 +0.1606827 0.2765176 0.02107202 +0.1862481 0.2765176 0.02107202 +0.2140411 0.2765176 0.02107202 +0.2441142 0.2765176 0.02107202 +0.2765176 0.2765176 0.02107202 +0.3113005 0.2765176 0.02107202 +0.3485102 0.2765176 0.02107202 +0.388193 0.2765176 0.02107202 +0.4303934 0.2765176 0.02107202 +0.4751555 0.2765176 0.02107202 +0.5225216 0.2765176 0.02107202 +0.5725335 0.2765176 0.02107202 +0.6252316 0.2765176 0.02107202 +0.6806558 0.2765176 0.02107202 +0.7388448 0.2765176 0.02107202 +0.7998369 0.2765176 0.02107202 +0.8636691 0.2765176 0.02107202 +0.9303782 0.2765176 0.02107202 +1 0.2765176 0.02107202 +0 0.3113005 0.02107202 +0.002418731 0.3113005 0.02107202 +0.005155668 0.3113005 0.02107202 +0.009080105 0.3113005 0.02107202 +0.01434988 0.3113005 0.02107202 +0.02107202 0.3113005 0.02107202 +0.02934285 0.3113005 0.02107202 +0.03925039 0.3113005 0.02107202 +0.05087609 0.3113005 0.02107202 +0.06429595 0.3113005 0.02107202 +0.07958143 0.3113005 0.02107202 +0.0968001 0.3113005 0.02107202 +0.1160161 0.3113005 0.02107202 +0.1372908 0.3113005 0.02107202 +0.1606827 0.3113005 0.02107202 +0.1862481 0.3113005 0.02107202 +0.2140411 0.3113005 0.02107202 +0.2441142 0.3113005 0.02107202 +0.2765176 0.3113005 0.02107202 +0.3113005 0.3113005 0.02107202 +0.3485102 0.3113005 0.02107202 +0.388193 0.3113005 0.02107202 +0.4303934 0.3113005 0.02107202 +0.4751555 0.3113005 0.02107202 +0.5225216 0.3113005 0.02107202 +0.5725335 0.3113005 0.02107202 +0.6252316 0.3113005 0.02107202 +0.6806558 0.3113005 0.02107202 +0.7388448 0.3113005 0.02107202 +0.7998369 0.3113005 0.02107202 +0.8636691 0.3113005 0.02107202 +0.9303782 0.3113005 0.02107202 +1 0.3113005 0.02107202 +0 0.3485102 0.02107202 +0.002418731 0.3485102 0.02107202 +0.005155668 0.3485102 0.02107202 +0.009080105 0.3485102 0.02107202 +0.01434988 0.3485102 0.02107202 +0.02107202 0.3485102 0.02107202 +0.02934285 0.3485102 0.02107202 +0.03925039 0.3485102 0.02107202 +0.05087609 0.3485102 0.02107202 +0.06429595 0.3485102 0.02107202 +0.07958143 0.3485102 0.02107202 +0.0968001 0.3485102 0.02107202 +0.1160161 0.3485102 0.02107202 +0.1372908 0.3485102 0.02107202 +0.1606827 0.3485102 0.02107202 +0.1862481 0.3485102 0.02107202 +0.2140411 0.3485102 0.02107202 +0.2441142 0.3485102 0.02107202 +0.2765176 0.3485102 0.02107202 +0.3113005 0.3485102 0.02107202 +0.3485102 0.3485102 0.02107202 +0.388193 0.3485102 0.02107202 +0.4303934 0.3485102 0.02107202 +0.4751555 0.3485102 0.02107202 +0.5225216 0.3485102 0.02107202 +0.5725335 0.3485102 0.02107202 +0.6252316 0.3485102 0.02107202 +0.6806558 0.3485102 0.02107202 +0.7388448 0.3485102 0.02107202 +0.7998369 0.3485102 0.02107202 +0.8636691 0.3485102 0.02107202 +0.9303782 0.3485102 0.02107202 +1 0.3485102 0.02107202 +0 0.388193 0.02107202 +0.002418731 0.388193 0.02107202 +0.005155668 0.388193 0.02107202 +0.009080105 0.388193 0.02107202 +0.01434988 0.388193 0.02107202 +0.02107202 0.388193 0.02107202 +0.02934285 0.388193 0.02107202 +0.03925039 0.388193 0.02107202 +0.05087609 0.388193 0.02107202 +0.06429595 0.388193 0.02107202 +0.07958143 0.388193 0.02107202 +0.0968001 0.388193 0.02107202 +0.1160161 0.388193 0.02107202 +0.1372908 0.388193 0.02107202 +0.1606827 0.388193 0.02107202 +0.1862481 0.388193 0.02107202 +0.2140411 0.388193 0.02107202 +0.2441142 0.388193 0.02107202 +0.2765176 0.388193 0.02107202 +0.3113005 0.388193 0.02107202 +0.3485102 0.388193 0.02107202 +0.388193 0.388193 0.02107202 +0.4303934 0.388193 0.02107202 +0.4751555 0.388193 0.02107202 +0.5225216 0.388193 0.02107202 +0.5725335 0.388193 0.02107202 +0.6252316 0.388193 0.02107202 +0.6806558 0.388193 0.02107202 +0.7388448 0.388193 0.02107202 +0.7998369 0.388193 0.02107202 +0.8636691 0.388193 0.02107202 +0.9303782 0.388193 0.02107202 +1 0.388193 0.02107202 +0 0.4303934 0.02107202 +0.002418731 0.4303934 0.02107202 +0.005155668 0.4303934 0.02107202 +0.009080105 0.4303934 0.02107202 +0.01434988 0.4303934 0.02107202 +0.02107202 0.4303934 0.02107202 +0.02934285 0.4303934 0.02107202 +0.03925039 0.4303934 0.02107202 +0.05087609 0.4303934 0.02107202 +0.06429595 0.4303934 0.02107202 +0.07958143 0.4303934 0.02107202 +0.0968001 0.4303934 0.02107202 +0.1160161 0.4303934 0.02107202 +0.1372908 0.4303934 0.02107202 +0.1606827 0.4303934 0.02107202 +0.1862481 0.4303934 0.02107202 +0.2140411 0.4303934 0.02107202 +0.2441142 0.4303934 0.02107202 +0.2765176 0.4303934 0.02107202 +0.3113005 0.4303934 0.02107202 +0.3485102 0.4303934 0.02107202 +0.388193 0.4303934 0.02107202 +0.4303934 0.4303934 0.02107202 +0.4751555 0.4303934 0.02107202 +0.5225216 0.4303934 0.02107202 +0.5725335 0.4303934 0.02107202 +0.6252316 0.4303934 0.02107202 +0.6806558 0.4303934 0.02107202 +0.7388448 0.4303934 0.02107202 +0.7998369 0.4303934 0.02107202 +0.8636691 0.4303934 0.02107202 +0.9303782 0.4303934 0.02107202 +1 0.4303934 0.02107202 +0 0.4751555 0.02107202 +0.002418731 0.4751555 0.02107202 +0.005155668 0.4751555 0.02107202 +0.009080105 0.4751555 0.02107202 +0.01434988 0.4751555 0.02107202 +0.02107202 0.4751555 0.02107202 +0.02934285 0.4751555 0.02107202 +0.03925039 0.4751555 0.02107202 +0.05087609 0.4751555 0.02107202 +0.06429595 0.4751555 0.02107202 +0.07958143 0.4751555 0.02107202 +0.0968001 0.4751555 0.02107202 +0.1160161 0.4751555 0.02107202 +0.1372908 0.4751555 0.02107202 +0.1606827 0.4751555 0.02107202 +0.1862481 0.4751555 0.02107202 +0.2140411 0.4751555 0.02107202 +0.2441142 0.4751555 0.02107202 +0.2765176 0.4751555 0.02107202 +0.3113005 0.4751555 0.02107202 +0.3485102 0.4751555 0.02107202 +0.388193 0.4751555 0.02107202 +0.4303934 0.4751555 0.02107202 +0.4751555 0.4751555 0.02107202 +0.5225216 0.4751555 0.02107202 +0.5725335 0.4751555 0.02107202 +0.6252316 0.4751555 0.02107202 +0.6806558 0.4751555 0.02107202 +0.7388448 0.4751555 0.02107202 +0.7998369 0.4751555 0.02107202 +0.8636691 0.4751555 0.02107202 +0.9303782 0.4751555 0.02107202 +1 0.4751555 0.02107202 +0 0.5225216 0.02107202 +0.002418731 0.5225216 0.02107202 +0.005155668 0.5225216 0.02107202 +0.009080105 0.5225216 0.02107202 +0.01434988 0.5225216 0.02107202 +0.02107202 0.5225216 0.02107202 +0.02934285 0.5225216 0.02107202 +0.03925039 0.5225216 0.02107202 +0.05087609 0.5225216 0.02107202 +0.06429595 0.5225216 0.02107202 +0.07958143 0.5225216 0.02107202 +0.0968001 0.5225216 0.02107202 +0.1160161 0.5225216 0.02107202 +0.1372908 0.5225216 0.02107202 +0.1606827 0.5225216 0.02107202 +0.1862481 0.5225216 0.02107202 +0.2140411 0.5225216 0.02107202 +0.2441142 0.5225216 0.02107202 +0.2765176 0.5225216 0.02107202 +0.3113005 0.5225216 0.02107202 +0.3485102 0.5225216 0.02107202 +0.388193 0.5225216 0.02107202 +0.4303934 0.5225216 0.02107202 +0.4751555 0.5225216 0.02107202 +0.5225216 0.5225216 0.02107202 +0.5725335 0.5225216 0.02107202 +0.6252316 0.5225216 0.02107202 +0.6806558 0.5225216 0.02107202 +0.7388448 0.5225216 0.02107202 +0.7998369 0.5225216 0.02107202 +0.8636691 0.5225216 0.02107202 +0.9303782 0.5225216 0.02107202 +1 0.5225216 0.02107202 +0 0.5725335 0.02107202 +0.002418731 0.5725335 0.02107202 +0.005155668 0.5725335 0.02107202 +0.009080105 0.5725335 0.02107202 +0.01434988 0.5725335 0.02107202 +0.02107202 0.5725335 0.02107202 +0.02934285 0.5725335 0.02107202 +0.03925039 0.5725335 0.02107202 +0.05087609 0.5725335 0.02107202 +0.06429595 0.5725335 0.02107202 +0.07958143 0.5725335 0.02107202 +0.0968001 0.5725335 0.02107202 +0.1160161 0.5725335 0.02107202 +0.1372908 0.5725335 0.02107202 +0.1606827 0.5725335 0.02107202 +0.1862481 0.5725335 0.02107202 +0.2140411 0.5725335 0.02107202 +0.2441142 0.5725335 0.02107202 +0.2765176 0.5725335 0.02107202 +0.3113005 0.5725335 0.02107202 +0.3485102 0.5725335 0.02107202 +0.388193 0.5725335 0.02107202 +0.4303934 0.5725335 0.02107202 +0.4751555 0.5725335 0.02107202 +0.5225216 0.5725335 0.02107202 +0.5725335 0.5725335 0.02107202 +0.6252316 0.5725335 0.02107202 +0.6806558 0.5725335 0.02107202 +0.7388448 0.5725335 0.02107202 +0.7998369 0.5725335 0.02107202 +0.8636691 0.5725335 0.02107202 +0.9303782 0.5725335 0.02107202 +1 0.5725335 0.02107202 +0 0.6252316 0.02107202 +0.002418731 0.6252316 0.02107202 +0.005155668 0.6252316 0.02107202 +0.009080105 0.6252316 0.02107202 +0.01434988 0.6252316 0.02107202 +0.02107202 0.6252316 0.02107202 +0.02934285 0.6252316 0.02107202 +0.03925039 0.6252316 0.02107202 +0.05087609 0.6252316 0.02107202 +0.06429595 0.6252316 0.02107202 +0.07958143 0.6252316 0.02107202 +0.0968001 0.6252316 0.02107202 +0.1160161 0.6252316 0.02107202 +0.1372908 0.6252316 0.02107202 +0.1606827 0.6252316 0.02107202 +0.1862481 0.6252316 0.02107202 +0.2140411 0.6252316 0.02107202 +0.2441142 0.6252316 0.02107202 +0.2765176 0.6252316 0.02107202 +0.3113005 0.6252316 0.02107202 +0.3485102 0.6252316 0.02107202 +0.388193 0.6252316 0.02107202 +0.4303934 0.6252316 0.02107202 +0.4751555 0.6252316 0.02107202 +0.5225216 0.6252316 0.02107202 +0.5725335 0.6252316 0.02107202 +0.6252316 0.6252316 0.02107202 +0.6806558 0.6252316 0.02107202 +0.7388448 0.6252316 0.02107202 +0.7998369 0.6252316 0.02107202 +0.8636691 0.6252316 0.02107202 +0.9303782 0.6252316 0.02107202 +1 0.6252316 0.02107202 +0 0.6806558 0.02107202 +0.002418731 0.6806558 0.02107202 +0.005155668 0.6806558 0.02107202 +0.009080105 0.6806558 0.02107202 +0.01434988 0.6806558 0.02107202 +0.02107202 0.6806558 0.02107202 +0.02934285 0.6806558 0.02107202 +0.03925039 0.6806558 0.02107202 +0.05087609 0.6806558 0.02107202 +0.06429595 0.6806558 0.02107202 +0.07958143 0.6806558 0.02107202 +0.0968001 0.6806558 0.02107202 +0.1160161 0.6806558 0.02107202 +0.1372908 0.6806558 0.02107202 +0.1606827 0.6806558 0.02107202 +0.1862481 0.6806558 0.02107202 +0.2140411 0.6806558 0.02107202 +0.2441142 0.6806558 0.02107202 +0.2765176 0.6806558 0.02107202 +0.3113005 0.6806558 0.02107202 +0.3485102 0.6806558 0.02107202 +0.388193 0.6806558 0.02107202 +0.4303934 0.6806558 0.02107202 +0.4751555 0.6806558 0.02107202 +0.5225216 0.6806558 0.02107202 +0.5725335 0.6806558 0.02107202 +0.6252316 0.6806558 0.02107202 +0.6806558 0.6806558 0.02107202 +0.7388448 0.6806558 0.02107202 +0.7998369 0.6806558 0.02107202 +0.8636691 0.6806558 0.02107202 +0.9303782 0.6806558 0.02107202 +1 0.6806558 0.02107202 +0 0.7388448 0.02107202 +0.002418731 0.7388448 0.02107202 +0.005155668 0.7388448 0.02107202 +0.009080105 0.7388448 0.02107202 +0.01434988 0.7388448 0.02107202 +0.02107202 0.7388448 0.02107202 +0.02934285 0.7388448 0.02107202 +0.03925039 0.7388448 0.02107202 +0.05087609 0.7388448 0.02107202 +0.06429595 0.7388448 0.02107202 +0.07958143 0.7388448 0.02107202 +0.0968001 0.7388448 0.02107202 +0.1160161 0.7388448 0.02107202 +0.1372908 0.7388448 0.02107202 +0.1606827 0.7388448 0.02107202 +0.1862481 0.7388448 0.02107202 +0.2140411 0.7388448 0.02107202 +0.2441142 0.7388448 0.02107202 +0.2765176 0.7388448 0.02107202 +0.3113005 0.7388448 0.02107202 +0.3485102 0.7388448 0.02107202 +0.388193 0.7388448 0.02107202 +0.4303934 0.7388448 0.02107202 +0.4751555 0.7388448 0.02107202 +0.5225216 0.7388448 0.02107202 +0.5725335 0.7388448 0.02107202 +0.6252316 0.7388448 0.02107202 +0.6806558 0.7388448 0.02107202 +0.7388448 0.7388448 0.02107202 +0.7998369 0.7388448 0.02107202 +0.8636691 0.7388448 0.02107202 +0.9303782 0.7388448 0.02107202 +1 0.7388448 0.02107202 +0 0.7998369 0.02107202 +0.002418731 0.7998369 0.02107202 +0.005155668 0.7998369 0.02107202 +0.009080105 0.7998369 0.02107202 +0.01434988 0.7998369 0.02107202 +0.02107202 0.7998369 0.02107202 +0.02934285 0.7998369 0.02107202 +0.03925039 0.7998369 0.02107202 +0.05087609 0.7998369 0.02107202 +0.06429595 0.7998369 0.02107202 +0.07958143 0.7998369 0.02107202 +0.0968001 0.7998369 0.02107202 +0.1160161 0.7998369 0.02107202 +0.1372908 0.7998369 0.02107202 +0.1606827 0.7998369 0.02107202 +0.1862481 0.7998369 0.02107202 +0.2140411 0.7998369 0.02107202 +0.2441142 0.7998369 0.02107202 +0.2765176 0.7998369 0.02107202 +0.3113005 0.7998369 0.02107202 +0.3485102 0.7998369 0.02107202 +0.388193 0.7998369 0.02107202 +0.4303934 0.7998369 0.02107202 +0.4751555 0.7998369 0.02107202 +0.5225216 0.7998369 0.02107202 +0.5725335 0.7998369 0.02107202 +0.6252316 0.7998369 0.02107202 +0.6806558 0.7998369 0.02107202 +0.7388448 0.7998369 0.02107202 +0.7998369 0.7998369 0.02107202 +0.8636691 0.7998369 0.02107202 +0.9303782 0.7998369 0.02107202 +1 0.7998369 0.02107202 +0 0.8636691 0.02107202 +0.002418731 0.8636691 0.02107202 +0.005155668 0.8636691 0.02107202 +0.009080105 0.8636691 0.02107202 +0.01434988 0.8636691 0.02107202 +0.02107202 0.8636691 0.02107202 +0.02934285 0.8636691 0.02107202 +0.03925039 0.8636691 0.02107202 +0.05087609 0.8636691 0.02107202 +0.06429595 0.8636691 0.02107202 +0.07958143 0.8636691 0.02107202 +0.0968001 0.8636691 0.02107202 +0.1160161 0.8636691 0.02107202 +0.1372908 0.8636691 0.02107202 +0.1606827 0.8636691 0.02107202 +0.1862481 0.8636691 0.02107202 +0.2140411 0.8636691 0.02107202 +0.2441142 0.8636691 0.02107202 +0.2765176 0.8636691 0.02107202 +0.3113005 0.8636691 0.02107202 +0.3485102 0.8636691 0.02107202 +0.388193 0.8636691 0.02107202 +0.4303934 0.8636691 0.02107202 +0.4751555 0.8636691 0.02107202 +0.5225216 0.8636691 0.02107202 +0.5725335 0.8636691 0.02107202 +0.6252316 0.8636691 0.02107202 +0.6806558 0.8636691 0.02107202 +0.7388448 0.8636691 0.02107202 +0.7998369 0.8636691 0.02107202 +0.8636691 0.8636691 0.02107202 +0.9303782 0.8636691 0.02107202 +1 0.8636691 0.02107202 +0 0.9303782 0.02107202 +0.002418731 0.9303782 0.02107202 +0.005155668 0.9303782 0.02107202 +0.009080105 0.9303782 0.02107202 +0.01434988 0.9303782 0.02107202 +0.02107202 0.9303782 0.02107202 +0.02934285 0.9303782 0.02107202 +0.03925039 0.9303782 0.02107202 +0.05087609 0.9303782 0.02107202 +0.06429595 0.9303782 0.02107202 +0.07958143 0.9303782 0.02107202 +0.0968001 0.9303782 0.02107202 +0.1160161 0.9303782 0.02107202 +0.1372908 0.9303782 0.02107202 +0.1606827 0.9303782 0.02107202 +0.1862481 0.9303782 0.02107202 +0.2140411 0.9303782 0.02107202 +0.2441142 0.9303782 0.02107202 +0.2765176 0.9303782 0.02107202 +0.3113005 0.9303782 0.02107202 +0.3485102 0.9303782 0.02107202 +0.388193 0.9303782 0.02107202 +0.4303934 0.9303782 0.02107202 +0.4751555 0.9303782 0.02107202 +0.5225216 0.9303782 0.02107202 +0.5725335 0.9303782 0.02107202 +0.6252316 0.9303782 0.02107202 +0.6806558 0.9303782 0.02107202 +0.7388448 0.9303782 0.02107202 +0.7998369 0.9303782 0.02107202 +0.8636691 0.9303782 0.02107202 +0.9303782 0.9303782 0.02107202 +1 0.9303782 0.02107202 +0 1 0.02107202 +0.002418731 1 0.02107202 +0.005155668 1 0.02107202 +0.009080105 1 0.02107202 +0.01434988 1 0.02107202 +0.02107202 1 0.02107202 +0.02934285 1 0.02107202 +0.03925039 1 0.02107202 +0.05087609 1 0.02107202 +0.06429595 1 0.02107202 +0.07958143 1 0.02107202 +0.0968001 1 0.02107202 +0.1160161 1 0.02107202 +0.1372908 1 0.02107202 +0.1606827 1 0.02107202 +0.1862481 1 0.02107202 +0.2140411 1 0.02107202 +0.2441142 1 0.02107202 +0.2765176 1 0.02107202 +0.3113005 1 0.02107202 +0.3485102 1 0.02107202 +0.388193 1 0.02107202 +0.4303934 1 0.02107202 +0.4751555 1 0.02107202 +0.5225216 1 0.02107202 +0.5725335 1 0.02107202 +0.6252316 1 0.02107202 +0.6806558 1 0.02107202 +0.7388448 1 0.02107202 +0.7998369 1 0.02107202 +0.8636691 1 0.02107202 +0.9303782 1 0.02107202 +1 1 0.02107202 +0 0 0.02934285 +0.002418731 0 0.02934285 +0.005155668 0 0.02934285 +0.009080105 0 0.02934285 +0.01434988 0 0.02934285 +0.02107202 0 0.02934285 +0.02934285 0 0.02934285 +0.03925039 0 0.02934285 +0.05087609 0 0.02934285 +0.06429595 0 0.02934285 +0.07958143 0 0.02934285 +0.0968001 0 0.02934285 +0.1160161 0 0.02934285 +0.1372908 0 0.02934285 +0.1606827 0 0.02934285 +0.1862481 0 0.02934285 +0.2140411 0 0.02934285 +0.2441142 0 0.02934285 +0.2765176 0 0.02934285 +0.3113005 0 0.02934285 +0.3485102 0 0.02934285 +0.388193 0 0.02934285 +0.4303934 0 0.02934285 +0.4751555 0 0.02934285 +0.5225216 0 0.02934285 +0.5725335 0 0.02934285 +0.6252316 0 0.02934285 +0.6806558 0 0.02934285 +0.7388448 0 0.02934285 +0.7998369 0 0.02934285 +0.8636691 0 0.02934285 +0.9303782 0 0.02934285 +1 0 0.02934285 +0 0.002418731 0.02934285 +0.002418731 0.002418731 0.02934285 +0.005155668 0.002418731 0.02934285 +0.009080105 0.002418731 0.02934285 +0.01434988 0.002418731 0.02934285 +0.02107202 0.002418731 0.02934285 +0.02934285 0.002418731 0.02934285 +0.03925039 0.002418731 0.02934285 +0.05087609 0.002418731 0.02934285 +0.06429595 0.002418731 0.02934285 +0.07958143 0.002418731 0.02934285 +0.0968001 0.002418731 0.02934285 +0.1160161 0.002418731 0.02934285 +0.1372908 0.002418731 0.02934285 +0.1606827 0.002418731 0.02934285 +0.1862481 0.002418731 0.02934285 +0.2140411 0.002418731 0.02934285 +0.2441142 0.002418731 0.02934285 +0.2765176 0.002418731 0.02934285 +0.3113005 0.002418731 0.02934285 +0.3485102 0.002418731 0.02934285 +0.388193 0.002418731 0.02934285 +0.4303934 0.002418731 0.02934285 +0.4751555 0.002418731 0.02934285 +0.5225216 0.002418731 0.02934285 +0.5725335 0.002418731 0.02934285 +0.6252316 0.002418731 0.02934285 +0.6806558 0.002418731 0.02934285 +0.7388448 0.002418731 0.02934285 +0.7998369 0.002418731 0.02934285 +0.8636691 0.002418731 0.02934285 +0.9303782 0.002418731 0.02934285 +1 0.002418731 0.02934285 +0 0.005155668 0.02934285 +0.002418731 0.005155668 0.02934285 +0.005155668 0.005155668 0.02934285 +0.009080105 0.005155668 0.02934285 +0.01434988 0.005155668 0.02934285 +0.02107202 0.005155668 0.02934285 +0.02934285 0.005155668 0.02934285 +0.03925039 0.005155668 0.02934285 +0.05087609 0.005155668 0.02934285 +0.06429595 0.005155668 0.02934285 +0.07958143 0.005155668 0.02934285 +0.0968001 0.005155668 0.02934285 +0.1160161 0.005155668 0.02934285 +0.1372908 0.005155668 0.02934285 +0.1606827 0.005155668 0.02934285 +0.1862481 0.005155668 0.02934285 +0.2140411 0.005155668 0.02934285 +0.2441142 0.005155668 0.02934285 +0.2765176 0.005155668 0.02934285 +0.3113005 0.005155668 0.02934285 +0.3485102 0.005155668 0.02934285 +0.388193 0.005155668 0.02934285 +0.4303934 0.005155668 0.02934285 +0.4751555 0.005155668 0.02934285 +0.5225216 0.005155668 0.02934285 +0.5725335 0.005155668 0.02934285 +0.6252316 0.005155668 0.02934285 +0.6806558 0.005155668 0.02934285 +0.7388448 0.005155668 0.02934285 +0.7998369 0.005155668 0.02934285 +0.8636691 0.005155668 0.02934285 +0.9303782 0.005155668 0.02934285 +1 0.005155668 0.02934285 +0 0.009080105 0.02934285 +0.002418731 0.009080105 0.02934285 +0.005155668 0.009080105 0.02934285 +0.009080105 0.009080105 0.02934285 +0.01434988 0.009080105 0.02934285 +0.02107202 0.009080105 0.02934285 +0.02934285 0.009080105 0.02934285 +0.03925039 0.009080105 0.02934285 +0.05087609 0.009080105 0.02934285 +0.06429595 0.009080105 0.02934285 +0.07958143 0.009080105 0.02934285 +0.0968001 0.009080105 0.02934285 +0.1160161 0.009080105 0.02934285 +0.1372908 0.009080105 0.02934285 +0.1606827 0.009080105 0.02934285 +0.1862481 0.009080105 0.02934285 +0.2140411 0.009080105 0.02934285 +0.2441142 0.009080105 0.02934285 +0.2765176 0.009080105 0.02934285 +0.3113005 0.009080105 0.02934285 +0.3485102 0.009080105 0.02934285 +0.388193 0.009080105 0.02934285 +0.4303934 0.009080105 0.02934285 +0.4751555 0.009080105 0.02934285 +0.5225216 0.009080105 0.02934285 +0.5725335 0.009080105 0.02934285 +0.6252316 0.009080105 0.02934285 +0.6806558 0.009080105 0.02934285 +0.7388448 0.009080105 0.02934285 +0.7998369 0.009080105 0.02934285 +0.8636691 0.009080105 0.02934285 +0.9303782 0.009080105 0.02934285 +1 0.009080105 0.02934285 +0 0.01434988 0.02934285 +0.002418731 0.01434988 0.02934285 +0.005155668 0.01434988 0.02934285 +0.009080105 0.01434988 0.02934285 +0.01434988 0.01434988 0.02934285 +0.02107202 0.01434988 0.02934285 +0.02934285 0.01434988 0.02934285 +0.03925039 0.01434988 0.02934285 +0.05087609 0.01434988 0.02934285 +0.06429595 0.01434988 0.02934285 +0.07958143 0.01434988 0.02934285 +0.0968001 0.01434988 0.02934285 +0.1160161 0.01434988 0.02934285 +0.1372908 0.01434988 0.02934285 +0.1606827 0.01434988 0.02934285 +0.1862481 0.01434988 0.02934285 +0.2140411 0.01434988 0.02934285 +0.2441142 0.01434988 0.02934285 +0.2765176 0.01434988 0.02934285 +0.3113005 0.01434988 0.02934285 +0.3485102 0.01434988 0.02934285 +0.388193 0.01434988 0.02934285 +0.4303934 0.01434988 0.02934285 +0.4751555 0.01434988 0.02934285 +0.5225216 0.01434988 0.02934285 +0.5725335 0.01434988 0.02934285 +0.6252316 0.01434988 0.02934285 +0.6806558 0.01434988 0.02934285 +0.7388448 0.01434988 0.02934285 +0.7998369 0.01434988 0.02934285 +0.8636691 0.01434988 0.02934285 +0.9303782 0.01434988 0.02934285 +1 0.01434988 0.02934285 +0 0.02107202 0.02934285 +0.002418731 0.02107202 0.02934285 +0.005155668 0.02107202 0.02934285 +0.009080105 0.02107202 0.02934285 +0.01434988 0.02107202 0.02934285 +0.02107202 0.02107202 0.02934285 +0.02934285 0.02107202 0.02934285 +0.03925039 0.02107202 0.02934285 +0.05087609 0.02107202 0.02934285 +0.06429595 0.02107202 0.02934285 +0.07958143 0.02107202 0.02934285 +0.0968001 0.02107202 0.02934285 +0.1160161 0.02107202 0.02934285 +0.1372908 0.02107202 0.02934285 +0.1606827 0.02107202 0.02934285 +0.1862481 0.02107202 0.02934285 +0.2140411 0.02107202 0.02934285 +0.2441142 0.02107202 0.02934285 +0.2765176 0.02107202 0.02934285 +0.3113005 0.02107202 0.02934285 +0.3485102 0.02107202 0.02934285 +0.388193 0.02107202 0.02934285 +0.4303934 0.02107202 0.02934285 +0.4751555 0.02107202 0.02934285 +0.5225216 0.02107202 0.02934285 +0.5725335 0.02107202 0.02934285 +0.6252316 0.02107202 0.02934285 +0.6806558 0.02107202 0.02934285 +0.7388448 0.02107202 0.02934285 +0.7998369 0.02107202 0.02934285 +0.8636691 0.02107202 0.02934285 +0.9303782 0.02107202 0.02934285 +1 0.02107202 0.02934285 +0 0.02934285 0.02934285 +0.002418731 0.02934285 0.02934285 +0.005155668 0.02934285 0.02934285 +0.009080105 0.02934285 0.02934285 +0.01434988 0.02934285 0.02934285 +0.02107202 0.02934285 0.02934285 +0.02934285 0.02934285 0.02934285 +0.03925039 0.02934285 0.02934285 +0.05087609 0.02934285 0.02934285 +0.06429595 0.02934285 0.02934285 +0.07958143 0.02934285 0.02934285 +0.0968001 0.02934285 0.02934285 +0.1160161 0.02934285 0.02934285 +0.1372908 0.02934285 0.02934285 +0.1606827 0.02934285 0.02934285 +0.1862481 0.02934285 0.02934285 +0.2140411 0.02934285 0.02934285 +0.2441142 0.02934285 0.02934285 +0.2765176 0.02934285 0.02934285 +0.3113005 0.02934285 0.02934285 +0.3485102 0.02934285 0.02934285 +0.388193 0.02934285 0.02934285 +0.4303934 0.02934285 0.02934285 +0.4751555 0.02934285 0.02934285 +0.5225216 0.02934285 0.02934285 +0.5725335 0.02934285 0.02934285 +0.6252316 0.02934285 0.02934285 +0.6806558 0.02934285 0.02934285 +0.7388448 0.02934285 0.02934285 +0.7998369 0.02934285 0.02934285 +0.8636691 0.02934285 0.02934285 +0.9303782 0.02934285 0.02934285 +1 0.02934285 0.02934285 +0 0.03925039 0.02934285 +0.002418731 0.03925039 0.02934285 +0.005155668 0.03925039 0.02934285 +0.009080105 0.03925039 0.02934285 +0.01434988 0.03925039 0.02934285 +0.02107202 0.03925039 0.02934285 +0.02934285 0.03925039 0.02934285 +0.03925039 0.03925039 0.02934285 +0.05087609 0.03925039 0.02934285 +0.06429595 0.03925039 0.02934285 +0.07958143 0.03925039 0.02934285 +0.0968001 0.03925039 0.02934285 +0.1160161 0.03925039 0.02934285 +0.1372908 0.03925039 0.02934285 +0.1606827 0.03925039 0.02934285 +0.1862481 0.03925039 0.02934285 +0.2140411 0.03925039 0.02934285 +0.2441142 0.03925039 0.02934285 +0.2765176 0.03925039 0.02934285 +0.3113005 0.03925039 0.02934285 +0.3485102 0.03925039 0.02934285 +0.388193 0.03925039 0.02934285 +0.4303934 0.03925039 0.02934285 +0.4751555 0.03925039 0.02934285 +0.5225216 0.03925039 0.02934285 +0.5725335 0.03925039 0.02934285 +0.6252316 0.03925039 0.02934285 +0.6806558 0.03925039 0.02934285 +0.7388448 0.03925039 0.02934285 +0.7998369 0.03925039 0.02934285 +0.8636691 0.03925039 0.02934285 +0.9303782 0.03925039 0.02934285 +1 0.03925039 0.02934285 +0 0.05087609 0.02934285 +0.002418731 0.05087609 0.02934285 +0.005155668 0.05087609 0.02934285 +0.009080105 0.05087609 0.02934285 +0.01434988 0.05087609 0.02934285 +0.02107202 0.05087609 0.02934285 +0.02934285 0.05087609 0.02934285 +0.03925039 0.05087609 0.02934285 +0.05087609 0.05087609 0.02934285 +0.06429595 0.05087609 0.02934285 +0.07958143 0.05087609 0.02934285 +0.0968001 0.05087609 0.02934285 +0.1160161 0.05087609 0.02934285 +0.1372908 0.05087609 0.02934285 +0.1606827 0.05087609 0.02934285 +0.1862481 0.05087609 0.02934285 +0.2140411 0.05087609 0.02934285 +0.2441142 0.05087609 0.02934285 +0.2765176 0.05087609 0.02934285 +0.3113005 0.05087609 0.02934285 +0.3485102 0.05087609 0.02934285 +0.388193 0.05087609 0.02934285 +0.4303934 0.05087609 0.02934285 +0.4751555 0.05087609 0.02934285 +0.5225216 0.05087609 0.02934285 +0.5725335 0.05087609 0.02934285 +0.6252316 0.05087609 0.02934285 +0.6806558 0.05087609 0.02934285 +0.7388448 0.05087609 0.02934285 +0.7998369 0.05087609 0.02934285 +0.8636691 0.05087609 0.02934285 +0.9303782 0.05087609 0.02934285 +1 0.05087609 0.02934285 +0 0.06429595 0.02934285 +0.002418731 0.06429595 0.02934285 +0.005155668 0.06429595 0.02934285 +0.009080105 0.06429595 0.02934285 +0.01434988 0.06429595 0.02934285 +0.02107202 0.06429595 0.02934285 +0.02934285 0.06429595 0.02934285 +0.03925039 0.06429595 0.02934285 +0.05087609 0.06429595 0.02934285 +0.06429595 0.06429595 0.02934285 +0.07958143 0.06429595 0.02934285 +0.0968001 0.06429595 0.02934285 +0.1160161 0.06429595 0.02934285 +0.1372908 0.06429595 0.02934285 +0.1606827 0.06429595 0.02934285 +0.1862481 0.06429595 0.02934285 +0.2140411 0.06429595 0.02934285 +0.2441142 0.06429595 0.02934285 +0.2765176 0.06429595 0.02934285 +0.3113005 0.06429595 0.02934285 +0.3485102 0.06429595 0.02934285 +0.388193 0.06429595 0.02934285 +0.4303934 0.06429595 0.02934285 +0.4751555 0.06429595 0.02934285 +0.5225216 0.06429595 0.02934285 +0.5725335 0.06429595 0.02934285 +0.6252316 0.06429595 0.02934285 +0.6806558 0.06429595 0.02934285 +0.7388448 0.06429595 0.02934285 +0.7998369 0.06429595 0.02934285 +0.8636691 0.06429595 0.02934285 +0.9303782 0.06429595 0.02934285 +1 0.06429595 0.02934285 +0 0.07958143 0.02934285 +0.002418731 0.07958143 0.02934285 +0.005155668 0.07958143 0.02934285 +0.009080105 0.07958143 0.02934285 +0.01434988 0.07958143 0.02934285 +0.02107202 0.07958143 0.02934285 +0.02934285 0.07958143 0.02934285 +0.03925039 0.07958143 0.02934285 +0.05087609 0.07958143 0.02934285 +0.06429595 0.07958143 0.02934285 +0.07958143 0.07958143 0.02934285 +0.0968001 0.07958143 0.02934285 +0.1160161 0.07958143 0.02934285 +0.1372908 0.07958143 0.02934285 +0.1606827 0.07958143 0.02934285 +0.1862481 0.07958143 0.02934285 +0.2140411 0.07958143 0.02934285 +0.2441142 0.07958143 0.02934285 +0.2765176 0.07958143 0.02934285 +0.3113005 0.07958143 0.02934285 +0.3485102 0.07958143 0.02934285 +0.388193 0.07958143 0.02934285 +0.4303934 0.07958143 0.02934285 +0.4751555 0.07958143 0.02934285 +0.5225216 0.07958143 0.02934285 +0.5725335 0.07958143 0.02934285 +0.6252316 0.07958143 0.02934285 +0.6806558 0.07958143 0.02934285 +0.7388448 0.07958143 0.02934285 +0.7998369 0.07958143 0.02934285 +0.8636691 0.07958143 0.02934285 +0.9303782 0.07958143 0.02934285 +1 0.07958143 0.02934285 +0 0.0968001 0.02934285 +0.002418731 0.0968001 0.02934285 +0.005155668 0.0968001 0.02934285 +0.009080105 0.0968001 0.02934285 +0.01434988 0.0968001 0.02934285 +0.02107202 0.0968001 0.02934285 +0.02934285 0.0968001 0.02934285 +0.03925039 0.0968001 0.02934285 +0.05087609 0.0968001 0.02934285 +0.06429595 0.0968001 0.02934285 +0.07958143 0.0968001 0.02934285 +0.0968001 0.0968001 0.02934285 +0.1160161 0.0968001 0.02934285 +0.1372908 0.0968001 0.02934285 +0.1606827 0.0968001 0.02934285 +0.1862481 0.0968001 0.02934285 +0.2140411 0.0968001 0.02934285 +0.2441142 0.0968001 0.02934285 +0.2765176 0.0968001 0.02934285 +0.3113005 0.0968001 0.02934285 +0.3485102 0.0968001 0.02934285 +0.388193 0.0968001 0.02934285 +0.4303934 0.0968001 0.02934285 +0.4751555 0.0968001 0.02934285 +0.5225216 0.0968001 0.02934285 +0.5725335 0.0968001 0.02934285 +0.6252316 0.0968001 0.02934285 +0.6806558 0.0968001 0.02934285 +0.7388448 0.0968001 0.02934285 +0.7998369 0.0968001 0.02934285 +0.8636691 0.0968001 0.02934285 +0.9303782 0.0968001 0.02934285 +1 0.0968001 0.02934285 +0 0.1160161 0.02934285 +0.002418731 0.1160161 0.02934285 +0.005155668 0.1160161 0.02934285 +0.009080105 0.1160161 0.02934285 +0.01434988 0.1160161 0.02934285 +0.02107202 0.1160161 0.02934285 +0.02934285 0.1160161 0.02934285 +0.03925039 0.1160161 0.02934285 +0.05087609 0.1160161 0.02934285 +0.06429595 0.1160161 0.02934285 +0.07958143 0.1160161 0.02934285 +0.0968001 0.1160161 0.02934285 +0.1160161 0.1160161 0.02934285 +0.1372908 0.1160161 0.02934285 +0.1606827 0.1160161 0.02934285 +0.1862481 0.1160161 0.02934285 +0.2140411 0.1160161 0.02934285 +0.2441142 0.1160161 0.02934285 +0.2765176 0.1160161 0.02934285 +0.3113005 0.1160161 0.02934285 +0.3485102 0.1160161 0.02934285 +0.388193 0.1160161 0.02934285 +0.4303934 0.1160161 0.02934285 +0.4751555 0.1160161 0.02934285 +0.5225216 0.1160161 0.02934285 +0.5725335 0.1160161 0.02934285 +0.6252316 0.1160161 0.02934285 +0.6806558 0.1160161 0.02934285 +0.7388448 0.1160161 0.02934285 +0.7998369 0.1160161 0.02934285 +0.8636691 0.1160161 0.02934285 +0.9303782 0.1160161 0.02934285 +1 0.1160161 0.02934285 +0 0.1372908 0.02934285 +0.002418731 0.1372908 0.02934285 +0.005155668 0.1372908 0.02934285 +0.009080105 0.1372908 0.02934285 +0.01434988 0.1372908 0.02934285 +0.02107202 0.1372908 0.02934285 +0.02934285 0.1372908 0.02934285 +0.03925039 0.1372908 0.02934285 +0.05087609 0.1372908 0.02934285 +0.06429595 0.1372908 0.02934285 +0.07958143 0.1372908 0.02934285 +0.0968001 0.1372908 0.02934285 +0.1160161 0.1372908 0.02934285 +0.1372908 0.1372908 0.02934285 +0.1606827 0.1372908 0.02934285 +0.1862481 0.1372908 0.02934285 +0.2140411 0.1372908 0.02934285 +0.2441142 0.1372908 0.02934285 +0.2765176 0.1372908 0.02934285 +0.3113005 0.1372908 0.02934285 +0.3485102 0.1372908 0.02934285 +0.388193 0.1372908 0.02934285 +0.4303934 0.1372908 0.02934285 +0.4751555 0.1372908 0.02934285 +0.5225216 0.1372908 0.02934285 +0.5725335 0.1372908 0.02934285 +0.6252316 0.1372908 0.02934285 +0.6806558 0.1372908 0.02934285 +0.7388448 0.1372908 0.02934285 +0.7998369 0.1372908 0.02934285 +0.8636691 0.1372908 0.02934285 +0.9303782 0.1372908 0.02934285 +1 0.1372908 0.02934285 +0 0.1606827 0.02934285 +0.002418731 0.1606827 0.02934285 +0.005155668 0.1606827 0.02934285 +0.009080105 0.1606827 0.02934285 +0.01434988 0.1606827 0.02934285 +0.02107202 0.1606827 0.02934285 +0.02934285 0.1606827 0.02934285 +0.03925039 0.1606827 0.02934285 +0.05087609 0.1606827 0.02934285 +0.06429595 0.1606827 0.02934285 +0.07958143 0.1606827 0.02934285 +0.0968001 0.1606827 0.02934285 +0.1160161 0.1606827 0.02934285 +0.1372908 0.1606827 0.02934285 +0.1606827 0.1606827 0.02934285 +0.1862481 0.1606827 0.02934285 +0.2140411 0.1606827 0.02934285 +0.2441142 0.1606827 0.02934285 +0.2765176 0.1606827 0.02934285 +0.3113005 0.1606827 0.02934285 +0.3485102 0.1606827 0.02934285 +0.388193 0.1606827 0.02934285 +0.4303934 0.1606827 0.02934285 +0.4751555 0.1606827 0.02934285 +0.5225216 0.1606827 0.02934285 +0.5725335 0.1606827 0.02934285 +0.6252316 0.1606827 0.02934285 +0.6806558 0.1606827 0.02934285 +0.7388448 0.1606827 0.02934285 +0.7998369 0.1606827 0.02934285 +0.8636691 0.1606827 0.02934285 +0.9303782 0.1606827 0.02934285 +1 0.1606827 0.02934285 +0 0.1862481 0.02934285 +0.002418731 0.1862481 0.02934285 +0.005155668 0.1862481 0.02934285 +0.009080105 0.1862481 0.02934285 +0.01434988 0.1862481 0.02934285 +0.02107202 0.1862481 0.02934285 +0.02934285 0.1862481 0.02934285 +0.03925039 0.1862481 0.02934285 +0.05087609 0.1862481 0.02934285 +0.06429595 0.1862481 0.02934285 +0.07958143 0.1862481 0.02934285 +0.0968001 0.1862481 0.02934285 +0.1160161 0.1862481 0.02934285 +0.1372908 0.1862481 0.02934285 +0.1606827 0.1862481 0.02934285 +0.1862481 0.1862481 0.02934285 +0.2140411 0.1862481 0.02934285 +0.2441142 0.1862481 0.02934285 +0.2765176 0.1862481 0.02934285 +0.3113005 0.1862481 0.02934285 +0.3485102 0.1862481 0.02934285 +0.388193 0.1862481 0.02934285 +0.4303934 0.1862481 0.02934285 +0.4751555 0.1862481 0.02934285 +0.5225216 0.1862481 0.02934285 +0.5725335 0.1862481 0.02934285 +0.6252316 0.1862481 0.02934285 +0.6806558 0.1862481 0.02934285 +0.7388448 0.1862481 0.02934285 +0.7998369 0.1862481 0.02934285 +0.8636691 0.1862481 0.02934285 +0.9303782 0.1862481 0.02934285 +1 0.1862481 0.02934285 +0 0.2140411 0.02934285 +0.002418731 0.2140411 0.02934285 +0.005155668 0.2140411 0.02934285 +0.009080105 0.2140411 0.02934285 +0.01434988 0.2140411 0.02934285 +0.02107202 0.2140411 0.02934285 +0.02934285 0.2140411 0.02934285 +0.03925039 0.2140411 0.02934285 +0.05087609 0.2140411 0.02934285 +0.06429595 0.2140411 0.02934285 +0.07958143 0.2140411 0.02934285 +0.0968001 0.2140411 0.02934285 +0.1160161 0.2140411 0.02934285 +0.1372908 0.2140411 0.02934285 +0.1606827 0.2140411 0.02934285 +0.1862481 0.2140411 0.02934285 +0.2140411 0.2140411 0.02934285 +0.2441142 0.2140411 0.02934285 +0.2765176 0.2140411 0.02934285 +0.3113005 0.2140411 0.02934285 +0.3485102 0.2140411 0.02934285 +0.388193 0.2140411 0.02934285 +0.4303934 0.2140411 0.02934285 +0.4751555 0.2140411 0.02934285 +0.5225216 0.2140411 0.02934285 +0.5725335 0.2140411 0.02934285 +0.6252316 0.2140411 0.02934285 +0.6806558 0.2140411 0.02934285 +0.7388448 0.2140411 0.02934285 +0.7998369 0.2140411 0.02934285 +0.8636691 0.2140411 0.02934285 +0.9303782 0.2140411 0.02934285 +1 0.2140411 0.02934285 +0 0.2441142 0.02934285 +0.002418731 0.2441142 0.02934285 +0.005155668 0.2441142 0.02934285 +0.009080105 0.2441142 0.02934285 +0.01434988 0.2441142 0.02934285 +0.02107202 0.2441142 0.02934285 +0.02934285 0.2441142 0.02934285 +0.03925039 0.2441142 0.02934285 +0.05087609 0.2441142 0.02934285 +0.06429595 0.2441142 0.02934285 +0.07958143 0.2441142 0.02934285 +0.0968001 0.2441142 0.02934285 +0.1160161 0.2441142 0.02934285 +0.1372908 0.2441142 0.02934285 +0.1606827 0.2441142 0.02934285 +0.1862481 0.2441142 0.02934285 +0.2140411 0.2441142 0.02934285 +0.2441142 0.2441142 0.02934285 +0.2765176 0.2441142 0.02934285 +0.3113005 0.2441142 0.02934285 +0.3485102 0.2441142 0.02934285 +0.388193 0.2441142 0.02934285 +0.4303934 0.2441142 0.02934285 +0.4751555 0.2441142 0.02934285 +0.5225216 0.2441142 0.02934285 +0.5725335 0.2441142 0.02934285 +0.6252316 0.2441142 0.02934285 +0.6806558 0.2441142 0.02934285 +0.7388448 0.2441142 0.02934285 +0.7998369 0.2441142 0.02934285 +0.8636691 0.2441142 0.02934285 +0.9303782 0.2441142 0.02934285 +1 0.2441142 0.02934285 +0 0.2765176 0.02934285 +0.002418731 0.2765176 0.02934285 +0.005155668 0.2765176 0.02934285 +0.009080105 0.2765176 0.02934285 +0.01434988 0.2765176 0.02934285 +0.02107202 0.2765176 0.02934285 +0.02934285 0.2765176 0.02934285 +0.03925039 0.2765176 0.02934285 +0.05087609 0.2765176 0.02934285 +0.06429595 0.2765176 0.02934285 +0.07958143 0.2765176 0.02934285 +0.0968001 0.2765176 0.02934285 +0.1160161 0.2765176 0.02934285 +0.1372908 0.2765176 0.02934285 +0.1606827 0.2765176 0.02934285 +0.1862481 0.2765176 0.02934285 +0.2140411 0.2765176 0.02934285 +0.2441142 0.2765176 0.02934285 +0.2765176 0.2765176 0.02934285 +0.3113005 0.2765176 0.02934285 +0.3485102 0.2765176 0.02934285 +0.388193 0.2765176 0.02934285 +0.4303934 0.2765176 0.02934285 +0.4751555 0.2765176 0.02934285 +0.5225216 0.2765176 0.02934285 +0.5725335 0.2765176 0.02934285 +0.6252316 0.2765176 0.02934285 +0.6806558 0.2765176 0.02934285 +0.7388448 0.2765176 0.02934285 +0.7998369 0.2765176 0.02934285 +0.8636691 0.2765176 0.02934285 +0.9303782 0.2765176 0.02934285 +1 0.2765176 0.02934285 +0 0.3113005 0.02934285 +0.002418731 0.3113005 0.02934285 +0.005155668 0.3113005 0.02934285 +0.009080105 0.3113005 0.02934285 +0.01434988 0.3113005 0.02934285 +0.02107202 0.3113005 0.02934285 +0.02934285 0.3113005 0.02934285 +0.03925039 0.3113005 0.02934285 +0.05087609 0.3113005 0.02934285 +0.06429595 0.3113005 0.02934285 +0.07958143 0.3113005 0.02934285 +0.0968001 0.3113005 0.02934285 +0.1160161 0.3113005 0.02934285 +0.1372908 0.3113005 0.02934285 +0.1606827 0.3113005 0.02934285 +0.1862481 0.3113005 0.02934285 +0.2140411 0.3113005 0.02934285 +0.2441142 0.3113005 0.02934285 +0.2765176 0.3113005 0.02934285 +0.3113005 0.3113005 0.02934285 +0.3485102 0.3113005 0.02934285 +0.388193 0.3113005 0.02934285 +0.4303934 0.3113005 0.02934285 +0.4751555 0.3113005 0.02934285 +0.5225216 0.3113005 0.02934285 +0.5725335 0.3113005 0.02934285 +0.6252316 0.3113005 0.02934285 +0.6806558 0.3113005 0.02934285 +0.7388448 0.3113005 0.02934285 +0.7998369 0.3113005 0.02934285 +0.8636691 0.3113005 0.02934285 +0.9303782 0.3113005 0.02934285 +1 0.3113005 0.02934285 +0 0.3485102 0.02934285 +0.002418731 0.3485102 0.02934285 +0.005155668 0.3485102 0.02934285 +0.009080105 0.3485102 0.02934285 +0.01434988 0.3485102 0.02934285 +0.02107202 0.3485102 0.02934285 +0.02934285 0.3485102 0.02934285 +0.03925039 0.3485102 0.02934285 +0.05087609 0.3485102 0.02934285 +0.06429595 0.3485102 0.02934285 +0.07958143 0.3485102 0.02934285 +0.0968001 0.3485102 0.02934285 +0.1160161 0.3485102 0.02934285 +0.1372908 0.3485102 0.02934285 +0.1606827 0.3485102 0.02934285 +0.1862481 0.3485102 0.02934285 +0.2140411 0.3485102 0.02934285 +0.2441142 0.3485102 0.02934285 +0.2765176 0.3485102 0.02934285 +0.3113005 0.3485102 0.02934285 +0.3485102 0.3485102 0.02934285 +0.388193 0.3485102 0.02934285 +0.4303934 0.3485102 0.02934285 +0.4751555 0.3485102 0.02934285 +0.5225216 0.3485102 0.02934285 +0.5725335 0.3485102 0.02934285 +0.6252316 0.3485102 0.02934285 +0.6806558 0.3485102 0.02934285 +0.7388448 0.3485102 0.02934285 +0.7998369 0.3485102 0.02934285 +0.8636691 0.3485102 0.02934285 +0.9303782 0.3485102 0.02934285 +1 0.3485102 0.02934285 +0 0.388193 0.02934285 +0.002418731 0.388193 0.02934285 +0.005155668 0.388193 0.02934285 +0.009080105 0.388193 0.02934285 +0.01434988 0.388193 0.02934285 +0.02107202 0.388193 0.02934285 +0.02934285 0.388193 0.02934285 +0.03925039 0.388193 0.02934285 +0.05087609 0.388193 0.02934285 +0.06429595 0.388193 0.02934285 +0.07958143 0.388193 0.02934285 +0.0968001 0.388193 0.02934285 +0.1160161 0.388193 0.02934285 +0.1372908 0.388193 0.02934285 +0.1606827 0.388193 0.02934285 +0.1862481 0.388193 0.02934285 +0.2140411 0.388193 0.02934285 +0.2441142 0.388193 0.02934285 +0.2765176 0.388193 0.02934285 +0.3113005 0.388193 0.02934285 +0.3485102 0.388193 0.02934285 +0.388193 0.388193 0.02934285 +0.4303934 0.388193 0.02934285 +0.4751555 0.388193 0.02934285 +0.5225216 0.388193 0.02934285 +0.5725335 0.388193 0.02934285 +0.6252316 0.388193 0.02934285 +0.6806558 0.388193 0.02934285 +0.7388448 0.388193 0.02934285 +0.7998369 0.388193 0.02934285 +0.8636691 0.388193 0.02934285 +0.9303782 0.388193 0.02934285 +1 0.388193 0.02934285 +0 0.4303934 0.02934285 +0.002418731 0.4303934 0.02934285 +0.005155668 0.4303934 0.02934285 +0.009080105 0.4303934 0.02934285 +0.01434988 0.4303934 0.02934285 +0.02107202 0.4303934 0.02934285 +0.02934285 0.4303934 0.02934285 +0.03925039 0.4303934 0.02934285 +0.05087609 0.4303934 0.02934285 +0.06429595 0.4303934 0.02934285 +0.07958143 0.4303934 0.02934285 +0.0968001 0.4303934 0.02934285 +0.1160161 0.4303934 0.02934285 +0.1372908 0.4303934 0.02934285 +0.1606827 0.4303934 0.02934285 +0.1862481 0.4303934 0.02934285 +0.2140411 0.4303934 0.02934285 +0.2441142 0.4303934 0.02934285 +0.2765176 0.4303934 0.02934285 +0.3113005 0.4303934 0.02934285 +0.3485102 0.4303934 0.02934285 +0.388193 0.4303934 0.02934285 +0.4303934 0.4303934 0.02934285 +0.4751555 0.4303934 0.02934285 +0.5225216 0.4303934 0.02934285 +0.5725335 0.4303934 0.02934285 +0.6252316 0.4303934 0.02934285 +0.6806558 0.4303934 0.02934285 +0.7388448 0.4303934 0.02934285 +0.7998369 0.4303934 0.02934285 +0.8636691 0.4303934 0.02934285 +0.9303782 0.4303934 0.02934285 +1 0.4303934 0.02934285 +0 0.4751555 0.02934285 +0.002418731 0.4751555 0.02934285 +0.005155668 0.4751555 0.02934285 +0.009080105 0.4751555 0.02934285 +0.01434988 0.4751555 0.02934285 +0.02107202 0.4751555 0.02934285 +0.02934285 0.4751555 0.02934285 +0.03925039 0.4751555 0.02934285 +0.05087609 0.4751555 0.02934285 +0.06429595 0.4751555 0.02934285 +0.07958143 0.4751555 0.02934285 +0.0968001 0.4751555 0.02934285 +0.1160161 0.4751555 0.02934285 +0.1372908 0.4751555 0.02934285 +0.1606827 0.4751555 0.02934285 +0.1862481 0.4751555 0.02934285 +0.2140411 0.4751555 0.02934285 +0.2441142 0.4751555 0.02934285 +0.2765176 0.4751555 0.02934285 +0.3113005 0.4751555 0.02934285 +0.3485102 0.4751555 0.02934285 +0.388193 0.4751555 0.02934285 +0.4303934 0.4751555 0.02934285 +0.4751555 0.4751555 0.02934285 +0.5225216 0.4751555 0.02934285 +0.5725335 0.4751555 0.02934285 +0.6252316 0.4751555 0.02934285 +0.6806558 0.4751555 0.02934285 +0.7388448 0.4751555 0.02934285 +0.7998369 0.4751555 0.02934285 +0.8636691 0.4751555 0.02934285 +0.9303782 0.4751555 0.02934285 +1 0.4751555 0.02934285 +0 0.5225216 0.02934285 +0.002418731 0.5225216 0.02934285 +0.005155668 0.5225216 0.02934285 +0.009080105 0.5225216 0.02934285 +0.01434988 0.5225216 0.02934285 +0.02107202 0.5225216 0.02934285 +0.02934285 0.5225216 0.02934285 +0.03925039 0.5225216 0.02934285 +0.05087609 0.5225216 0.02934285 +0.06429595 0.5225216 0.02934285 +0.07958143 0.5225216 0.02934285 +0.0968001 0.5225216 0.02934285 +0.1160161 0.5225216 0.02934285 +0.1372908 0.5225216 0.02934285 +0.1606827 0.5225216 0.02934285 +0.1862481 0.5225216 0.02934285 +0.2140411 0.5225216 0.02934285 +0.2441142 0.5225216 0.02934285 +0.2765176 0.5225216 0.02934285 +0.3113005 0.5225216 0.02934285 +0.3485102 0.5225216 0.02934285 +0.388193 0.5225216 0.02934285 +0.4303934 0.5225216 0.02934285 +0.4751555 0.5225216 0.02934285 +0.5225216 0.5225216 0.02934285 +0.5725335 0.5225216 0.02934285 +0.6252316 0.5225216 0.02934285 +0.6806558 0.5225216 0.02934285 +0.7388448 0.5225216 0.02934285 +0.7998369 0.5225216 0.02934285 +0.8636691 0.5225216 0.02934285 +0.9303782 0.5225216 0.02934285 +1 0.5225216 0.02934285 +0 0.5725335 0.02934285 +0.002418731 0.5725335 0.02934285 +0.005155668 0.5725335 0.02934285 +0.009080105 0.5725335 0.02934285 +0.01434988 0.5725335 0.02934285 +0.02107202 0.5725335 0.02934285 +0.02934285 0.5725335 0.02934285 +0.03925039 0.5725335 0.02934285 +0.05087609 0.5725335 0.02934285 +0.06429595 0.5725335 0.02934285 +0.07958143 0.5725335 0.02934285 +0.0968001 0.5725335 0.02934285 +0.1160161 0.5725335 0.02934285 +0.1372908 0.5725335 0.02934285 +0.1606827 0.5725335 0.02934285 +0.1862481 0.5725335 0.02934285 +0.2140411 0.5725335 0.02934285 +0.2441142 0.5725335 0.02934285 +0.2765176 0.5725335 0.02934285 +0.3113005 0.5725335 0.02934285 +0.3485102 0.5725335 0.02934285 +0.388193 0.5725335 0.02934285 +0.4303934 0.5725335 0.02934285 +0.4751555 0.5725335 0.02934285 +0.5225216 0.5725335 0.02934285 +0.5725335 0.5725335 0.02934285 +0.6252316 0.5725335 0.02934285 +0.6806558 0.5725335 0.02934285 +0.7388448 0.5725335 0.02934285 +0.7998369 0.5725335 0.02934285 +0.8636691 0.5725335 0.02934285 +0.9303782 0.5725335 0.02934285 +1 0.5725335 0.02934285 +0 0.6252316 0.02934285 +0.002418731 0.6252316 0.02934285 +0.005155668 0.6252316 0.02934285 +0.009080105 0.6252316 0.02934285 +0.01434988 0.6252316 0.02934285 +0.02107202 0.6252316 0.02934285 +0.02934285 0.6252316 0.02934285 +0.03925039 0.6252316 0.02934285 +0.05087609 0.6252316 0.02934285 +0.06429595 0.6252316 0.02934285 +0.07958143 0.6252316 0.02934285 +0.0968001 0.6252316 0.02934285 +0.1160161 0.6252316 0.02934285 +0.1372908 0.6252316 0.02934285 +0.1606827 0.6252316 0.02934285 +0.1862481 0.6252316 0.02934285 +0.2140411 0.6252316 0.02934285 +0.2441142 0.6252316 0.02934285 +0.2765176 0.6252316 0.02934285 +0.3113005 0.6252316 0.02934285 +0.3485102 0.6252316 0.02934285 +0.388193 0.6252316 0.02934285 +0.4303934 0.6252316 0.02934285 +0.4751555 0.6252316 0.02934285 +0.5225216 0.6252316 0.02934285 +0.5725335 0.6252316 0.02934285 +0.6252316 0.6252316 0.02934285 +0.6806558 0.6252316 0.02934285 +0.7388448 0.6252316 0.02934285 +0.7998369 0.6252316 0.02934285 +0.8636691 0.6252316 0.02934285 +0.9303782 0.6252316 0.02934285 +1 0.6252316 0.02934285 +0 0.6806558 0.02934285 +0.002418731 0.6806558 0.02934285 +0.005155668 0.6806558 0.02934285 +0.009080105 0.6806558 0.02934285 +0.01434988 0.6806558 0.02934285 +0.02107202 0.6806558 0.02934285 +0.02934285 0.6806558 0.02934285 +0.03925039 0.6806558 0.02934285 +0.05087609 0.6806558 0.02934285 +0.06429595 0.6806558 0.02934285 +0.07958143 0.6806558 0.02934285 +0.0968001 0.6806558 0.02934285 +0.1160161 0.6806558 0.02934285 +0.1372908 0.6806558 0.02934285 +0.1606827 0.6806558 0.02934285 +0.1862481 0.6806558 0.02934285 +0.2140411 0.6806558 0.02934285 +0.2441142 0.6806558 0.02934285 +0.2765176 0.6806558 0.02934285 +0.3113005 0.6806558 0.02934285 +0.3485102 0.6806558 0.02934285 +0.388193 0.6806558 0.02934285 +0.4303934 0.6806558 0.02934285 +0.4751555 0.6806558 0.02934285 +0.5225216 0.6806558 0.02934285 +0.5725335 0.6806558 0.02934285 +0.6252316 0.6806558 0.02934285 +0.6806558 0.6806558 0.02934285 +0.7388448 0.6806558 0.02934285 +0.7998369 0.6806558 0.02934285 +0.8636691 0.6806558 0.02934285 +0.9303782 0.6806558 0.02934285 +1 0.6806558 0.02934285 +0 0.7388448 0.02934285 +0.002418731 0.7388448 0.02934285 +0.005155668 0.7388448 0.02934285 +0.009080105 0.7388448 0.02934285 +0.01434988 0.7388448 0.02934285 +0.02107202 0.7388448 0.02934285 +0.02934285 0.7388448 0.02934285 +0.03925039 0.7388448 0.02934285 +0.05087609 0.7388448 0.02934285 +0.06429595 0.7388448 0.02934285 +0.07958143 0.7388448 0.02934285 +0.0968001 0.7388448 0.02934285 +0.1160161 0.7388448 0.02934285 +0.1372908 0.7388448 0.02934285 +0.1606827 0.7388448 0.02934285 +0.1862481 0.7388448 0.02934285 +0.2140411 0.7388448 0.02934285 +0.2441142 0.7388448 0.02934285 +0.2765176 0.7388448 0.02934285 +0.3113005 0.7388448 0.02934285 +0.3485102 0.7388448 0.02934285 +0.388193 0.7388448 0.02934285 +0.4303934 0.7388448 0.02934285 +0.4751555 0.7388448 0.02934285 +0.5225216 0.7388448 0.02934285 +0.5725335 0.7388448 0.02934285 +0.6252316 0.7388448 0.02934285 +0.6806558 0.7388448 0.02934285 +0.7388448 0.7388448 0.02934285 +0.7998369 0.7388448 0.02934285 +0.8636691 0.7388448 0.02934285 +0.9303782 0.7388448 0.02934285 +1 0.7388448 0.02934285 +0 0.7998369 0.02934285 +0.002418731 0.7998369 0.02934285 +0.005155668 0.7998369 0.02934285 +0.009080105 0.7998369 0.02934285 +0.01434988 0.7998369 0.02934285 +0.02107202 0.7998369 0.02934285 +0.02934285 0.7998369 0.02934285 +0.03925039 0.7998369 0.02934285 +0.05087609 0.7998369 0.02934285 +0.06429595 0.7998369 0.02934285 +0.07958143 0.7998369 0.02934285 +0.0968001 0.7998369 0.02934285 +0.1160161 0.7998369 0.02934285 +0.1372908 0.7998369 0.02934285 +0.1606827 0.7998369 0.02934285 +0.1862481 0.7998369 0.02934285 +0.2140411 0.7998369 0.02934285 +0.2441142 0.7998369 0.02934285 +0.2765176 0.7998369 0.02934285 +0.3113005 0.7998369 0.02934285 +0.3485102 0.7998369 0.02934285 +0.388193 0.7998369 0.02934285 +0.4303934 0.7998369 0.02934285 +0.4751555 0.7998369 0.02934285 +0.5225216 0.7998369 0.02934285 +0.5725335 0.7998369 0.02934285 +0.6252316 0.7998369 0.02934285 +0.6806558 0.7998369 0.02934285 +0.7388448 0.7998369 0.02934285 +0.7998369 0.7998369 0.02934285 +0.8636691 0.7998369 0.02934285 +0.9303782 0.7998369 0.02934285 +1 0.7998369 0.02934285 +0 0.8636691 0.02934285 +0.002418731 0.8636691 0.02934285 +0.005155668 0.8636691 0.02934285 +0.009080105 0.8636691 0.02934285 +0.01434988 0.8636691 0.02934285 +0.02107202 0.8636691 0.02934285 +0.02934285 0.8636691 0.02934285 +0.03925039 0.8636691 0.02934285 +0.05087609 0.8636691 0.02934285 +0.06429595 0.8636691 0.02934285 +0.07958143 0.8636691 0.02934285 +0.0968001 0.8636691 0.02934285 +0.1160161 0.8636691 0.02934285 +0.1372908 0.8636691 0.02934285 +0.1606827 0.8636691 0.02934285 +0.1862481 0.8636691 0.02934285 +0.2140411 0.8636691 0.02934285 +0.2441142 0.8636691 0.02934285 +0.2765176 0.8636691 0.02934285 +0.3113005 0.8636691 0.02934285 +0.3485102 0.8636691 0.02934285 +0.388193 0.8636691 0.02934285 +0.4303934 0.8636691 0.02934285 +0.4751555 0.8636691 0.02934285 +0.5225216 0.8636691 0.02934285 +0.5725335 0.8636691 0.02934285 +0.6252316 0.8636691 0.02934285 +0.6806558 0.8636691 0.02934285 +0.7388448 0.8636691 0.02934285 +0.7998369 0.8636691 0.02934285 +0.8636691 0.8636691 0.02934285 +0.9303782 0.8636691 0.02934285 +1 0.8636691 0.02934285 +0 0.9303782 0.02934285 +0.002418731 0.9303782 0.02934285 +0.005155668 0.9303782 0.02934285 +0.009080105 0.9303782 0.02934285 +0.01434988 0.9303782 0.02934285 +0.02107202 0.9303782 0.02934285 +0.02934285 0.9303782 0.02934285 +0.03925039 0.9303782 0.02934285 +0.05087609 0.9303782 0.02934285 +0.06429595 0.9303782 0.02934285 +0.07958143 0.9303782 0.02934285 +0.0968001 0.9303782 0.02934285 +0.1160161 0.9303782 0.02934285 +0.1372908 0.9303782 0.02934285 +0.1606827 0.9303782 0.02934285 +0.1862481 0.9303782 0.02934285 +0.2140411 0.9303782 0.02934285 +0.2441142 0.9303782 0.02934285 +0.2765176 0.9303782 0.02934285 +0.3113005 0.9303782 0.02934285 +0.3485102 0.9303782 0.02934285 +0.388193 0.9303782 0.02934285 +0.4303934 0.9303782 0.02934285 +0.4751555 0.9303782 0.02934285 +0.5225216 0.9303782 0.02934285 +0.5725335 0.9303782 0.02934285 +0.6252316 0.9303782 0.02934285 +0.6806558 0.9303782 0.02934285 +0.7388448 0.9303782 0.02934285 +0.7998369 0.9303782 0.02934285 +0.8636691 0.9303782 0.02934285 +0.9303782 0.9303782 0.02934285 +1 0.9303782 0.02934285 +0 1 0.02934285 +0.002418731 1 0.02934285 +0.005155668 1 0.02934285 +0.009080105 1 0.02934285 +0.01434988 1 0.02934285 +0.02107202 1 0.02934285 +0.02934285 1 0.02934285 +0.03925039 1 0.02934285 +0.05087609 1 0.02934285 +0.06429595 1 0.02934285 +0.07958143 1 0.02934285 +0.0968001 1 0.02934285 +0.1160161 1 0.02934285 +0.1372908 1 0.02934285 +0.1606827 1 0.02934285 +0.1862481 1 0.02934285 +0.2140411 1 0.02934285 +0.2441142 1 0.02934285 +0.2765176 1 0.02934285 +0.3113005 1 0.02934285 +0.3485102 1 0.02934285 +0.388193 1 0.02934285 +0.4303934 1 0.02934285 +0.4751555 1 0.02934285 +0.5225216 1 0.02934285 +0.5725335 1 0.02934285 +0.6252316 1 0.02934285 +0.6806558 1 0.02934285 +0.7388448 1 0.02934285 +0.7998369 1 0.02934285 +0.8636691 1 0.02934285 +0.9303782 1 0.02934285 +1 1 0.02934285 +0 0 0.03925039 +0.002418731 0 0.03925039 +0.005155668 0 0.03925039 +0.009080105 0 0.03925039 +0.01434988 0 0.03925039 +0.02107202 0 0.03925039 +0.02934285 0 0.03925039 +0.03925039 0 0.03925039 +0.05087609 0 0.03925039 +0.06429595 0 0.03925039 +0.07958143 0 0.03925039 +0.0968001 0 0.03925039 +0.1160161 0 0.03925039 +0.1372908 0 0.03925039 +0.1606827 0 0.03925039 +0.1862481 0 0.03925039 +0.2140411 0 0.03925039 +0.2441142 0 0.03925039 +0.2765176 0 0.03925039 +0.3113005 0 0.03925039 +0.3485102 0 0.03925039 +0.388193 0 0.03925039 +0.4303934 0 0.03925039 +0.4751555 0 0.03925039 +0.5225216 0 0.03925039 +0.5725335 0 0.03925039 +0.6252316 0 0.03925039 +0.6806558 0 0.03925039 +0.7388448 0 0.03925039 +0.7998369 0 0.03925039 +0.8636691 0 0.03925039 +0.9303782 0 0.03925039 +1 0 0.03925039 +0 0.002418731 0.03925039 +0.002418731 0.002418731 0.03925039 +0.005155668 0.002418731 0.03925039 +0.009080105 0.002418731 0.03925039 +0.01434988 0.002418731 0.03925039 +0.02107202 0.002418731 0.03925039 +0.02934285 0.002418731 0.03925039 +0.03925039 0.002418731 0.03925039 +0.05087609 0.002418731 0.03925039 +0.06429595 0.002418731 0.03925039 +0.07958143 0.002418731 0.03925039 +0.0968001 0.002418731 0.03925039 +0.1160161 0.002418731 0.03925039 +0.1372908 0.002418731 0.03925039 +0.1606827 0.002418731 0.03925039 +0.1862481 0.002418731 0.03925039 +0.2140411 0.002418731 0.03925039 +0.2441142 0.002418731 0.03925039 +0.2765176 0.002418731 0.03925039 +0.3113005 0.002418731 0.03925039 +0.3485102 0.002418731 0.03925039 +0.388193 0.002418731 0.03925039 +0.4303934 0.002418731 0.03925039 +0.4751555 0.002418731 0.03925039 +0.5225216 0.002418731 0.03925039 +0.5725335 0.002418731 0.03925039 +0.6252316 0.002418731 0.03925039 +0.6806558 0.002418731 0.03925039 +0.7388448 0.002418731 0.03925039 +0.7998369 0.002418731 0.03925039 +0.8636691 0.002418731 0.03925039 +0.9303782 0.002418731 0.03925039 +1 0.002418731 0.03925039 +0 0.005155668 0.03925039 +0.002418731 0.005155668 0.03925039 +0.005155668 0.005155668 0.03925039 +0.009080105 0.005155668 0.03925039 +0.01434988 0.005155668 0.03925039 +0.02107202 0.005155668 0.03925039 +0.02934285 0.005155668 0.03925039 +0.03925039 0.005155668 0.03925039 +0.05087609 0.005155668 0.03925039 +0.06429595 0.005155668 0.03925039 +0.07958143 0.005155668 0.03925039 +0.0968001 0.005155668 0.03925039 +0.1160161 0.005155668 0.03925039 +0.1372908 0.005155668 0.03925039 +0.1606827 0.005155668 0.03925039 +0.1862481 0.005155668 0.03925039 +0.2140411 0.005155668 0.03925039 +0.2441142 0.005155668 0.03925039 +0.2765176 0.005155668 0.03925039 +0.3113005 0.005155668 0.03925039 +0.3485102 0.005155668 0.03925039 +0.388193 0.005155668 0.03925039 +0.4303934 0.005155668 0.03925039 +0.4751555 0.005155668 0.03925039 +0.5225216 0.005155668 0.03925039 +0.5725335 0.005155668 0.03925039 +0.6252316 0.005155668 0.03925039 +0.6806558 0.005155668 0.03925039 +0.7388448 0.005155668 0.03925039 +0.7998369 0.005155668 0.03925039 +0.8636691 0.005155668 0.03925039 +0.9303782 0.005155668 0.03925039 +1 0.005155668 0.03925039 +0 0.009080105 0.03925039 +0.002418731 0.009080105 0.03925039 +0.005155668 0.009080105 0.03925039 +0.009080105 0.009080105 0.03925039 +0.01434988 0.009080105 0.03925039 +0.02107202 0.009080105 0.03925039 +0.02934285 0.009080105 0.03925039 +0.03925039 0.009080105 0.03925039 +0.05087609 0.009080105 0.03925039 +0.06429595 0.009080105 0.03925039 +0.07958143 0.009080105 0.03925039 +0.0968001 0.009080105 0.03925039 +0.1160161 0.009080105 0.03925039 +0.1372908 0.009080105 0.03925039 +0.1606827 0.009080105 0.03925039 +0.1862481 0.009080105 0.03925039 +0.2140411 0.009080105 0.03925039 +0.2441142 0.009080105 0.03925039 +0.2765176 0.009080105 0.03925039 +0.3113005 0.009080105 0.03925039 +0.3485102 0.009080105 0.03925039 +0.388193 0.009080105 0.03925039 +0.4303934 0.009080105 0.03925039 +0.4751555 0.009080105 0.03925039 +0.5225216 0.009080105 0.03925039 +0.5725335 0.009080105 0.03925039 +0.6252316 0.009080105 0.03925039 +0.6806558 0.009080105 0.03925039 +0.7388448 0.009080105 0.03925039 +0.7998369 0.009080105 0.03925039 +0.8636691 0.009080105 0.03925039 +0.9303782 0.009080105 0.03925039 +1 0.009080105 0.03925039 +0 0.01434988 0.03925039 +0.002418731 0.01434988 0.03925039 +0.005155668 0.01434988 0.03925039 +0.009080105 0.01434988 0.03925039 +0.01434988 0.01434988 0.03925039 +0.02107202 0.01434988 0.03925039 +0.02934285 0.01434988 0.03925039 +0.03925039 0.01434988 0.03925039 +0.05087609 0.01434988 0.03925039 +0.06429595 0.01434988 0.03925039 +0.07958143 0.01434988 0.03925039 +0.0968001 0.01434988 0.03925039 +0.1160161 0.01434988 0.03925039 +0.1372908 0.01434988 0.03925039 +0.1606827 0.01434988 0.03925039 +0.1862481 0.01434988 0.03925039 +0.2140411 0.01434988 0.03925039 +0.2441142 0.01434988 0.03925039 +0.2765176 0.01434988 0.03925039 +0.3113005 0.01434988 0.03925039 +0.3485102 0.01434988 0.03925039 +0.388193 0.01434988 0.03925039 +0.4303934 0.01434988 0.03925039 +0.4751555 0.01434988 0.03925039 +0.5225216 0.01434988 0.03925039 +0.5725335 0.01434988 0.03925039 +0.6252316 0.01434988 0.03925039 +0.6806558 0.01434988 0.03925039 +0.7388448 0.01434988 0.03925039 +0.7998369 0.01434988 0.03925039 +0.8636691 0.01434988 0.03925039 +0.9303782 0.01434988 0.03925039 +1 0.01434988 0.03925039 +0 0.02107202 0.03925039 +0.002418731 0.02107202 0.03925039 +0.005155668 0.02107202 0.03925039 +0.009080105 0.02107202 0.03925039 +0.01434988 0.02107202 0.03925039 +0.02107202 0.02107202 0.03925039 +0.02934285 0.02107202 0.03925039 +0.03925039 0.02107202 0.03925039 +0.05087609 0.02107202 0.03925039 +0.06429595 0.02107202 0.03925039 +0.07958143 0.02107202 0.03925039 +0.0968001 0.02107202 0.03925039 +0.1160161 0.02107202 0.03925039 +0.1372908 0.02107202 0.03925039 +0.1606827 0.02107202 0.03925039 +0.1862481 0.02107202 0.03925039 +0.2140411 0.02107202 0.03925039 +0.2441142 0.02107202 0.03925039 +0.2765176 0.02107202 0.03925039 +0.3113005 0.02107202 0.03925039 +0.3485102 0.02107202 0.03925039 +0.388193 0.02107202 0.03925039 +0.4303934 0.02107202 0.03925039 +0.4751555 0.02107202 0.03925039 +0.5225216 0.02107202 0.03925039 +0.5725335 0.02107202 0.03925039 +0.6252316 0.02107202 0.03925039 +0.6806558 0.02107202 0.03925039 +0.7388448 0.02107202 0.03925039 +0.7998369 0.02107202 0.03925039 +0.8636691 0.02107202 0.03925039 +0.9303782 0.02107202 0.03925039 +1 0.02107202 0.03925039 +0 0.02934285 0.03925039 +0.002418731 0.02934285 0.03925039 +0.005155668 0.02934285 0.03925039 +0.009080105 0.02934285 0.03925039 +0.01434988 0.02934285 0.03925039 +0.02107202 0.02934285 0.03925039 +0.02934285 0.02934285 0.03925039 +0.03925039 0.02934285 0.03925039 +0.05087609 0.02934285 0.03925039 +0.06429595 0.02934285 0.03925039 +0.07958143 0.02934285 0.03925039 +0.0968001 0.02934285 0.03925039 +0.1160161 0.02934285 0.03925039 +0.1372908 0.02934285 0.03925039 +0.1606827 0.02934285 0.03925039 +0.1862481 0.02934285 0.03925039 +0.2140411 0.02934285 0.03925039 +0.2441142 0.02934285 0.03925039 +0.2765176 0.02934285 0.03925039 +0.3113005 0.02934285 0.03925039 +0.3485102 0.02934285 0.03925039 +0.388193 0.02934285 0.03925039 +0.4303934 0.02934285 0.03925039 +0.4751555 0.02934285 0.03925039 +0.5225216 0.02934285 0.03925039 +0.5725335 0.02934285 0.03925039 +0.6252316 0.02934285 0.03925039 +0.6806558 0.02934285 0.03925039 +0.7388448 0.02934285 0.03925039 +0.7998369 0.02934285 0.03925039 +0.8636691 0.02934285 0.03925039 +0.9303782 0.02934285 0.03925039 +1 0.02934285 0.03925039 +0 0.03925039 0.03925039 +0.002418731 0.03925039 0.03925039 +0.005155668 0.03925039 0.03925039 +0.009080105 0.03925039 0.03925039 +0.01434988 0.03925039 0.03925039 +0.02107202 0.03925039 0.03925039 +0.02934285 0.03925039 0.03925039 +0.03925039 0.03925039 0.03925039 +0.05087609 0.03925039 0.03925039 +0.06429595 0.03925039 0.03925039 +0.07958143 0.03925039 0.03925039 +0.0968001 0.03925039 0.03925039 +0.1160161 0.03925039 0.03925039 +0.1372908 0.03925039 0.03925039 +0.1606827 0.03925039 0.03925039 +0.1862481 0.03925039 0.03925039 +0.2140411 0.03925039 0.03925039 +0.2441142 0.03925039 0.03925039 +0.2765176 0.03925039 0.03925039 +0.3113005 0.03925039 0.03925039 +0.3485102 0.03925039 0.03925039 +0.388193 0.03925039 0.03925039 +0.4303934 0.03925039 0.03925039 +0.4751555 0.03925039 0.03925039 +0.5225216 0.03925039 0.03925039 +0.5725335 0.03925039 0.03925039 +0.6252316 0.03925039 0.03925039 +0.6806558 0.03925039 0.03925039 +0.7388448 0.03925039 0.03925039 +0.7998369 0.03925039 0.03925039 +0.8636691 0.03925039 0.03925039 +0.9303782 0.03925039 0.03925039 +1 0.03925039 0.03925039 +0 0.05087609 0.03925039 +0.002418731 0.05087609 0.03925039 +0.005155668 0.05087609 0.03925039 +0.009080105 0.05087609 0.03925039 +0.01434988 0.05087609 0.03925039 +0.02107202 0.05087609 0.03925039 +0.02934285 0.05087609 0.03925039 +0.03925039 0.05087609 0.03925039 +0.05087609 0.05087609 0.03925039 +0.06429595 0.05087609 0.03925039 +0.07958143 0.05087609 0.03925039 +0.0968001 0.05087609 0.03925039 +0.1160161 0.05087609 0.03925039 +0.1372908 0.05087609 0.03925039 +0.1606827 0.05087609 0.03925039 +0.1862481 0.05087609 0.03925039 +0.2140411 0.05087609 0.03925039 +0.2441142 0.05087609 0.03925039 +0.2765176 0.05087609 0.03925039 +0.3113005 0.05087609 0.03925039 +0.3485102 0.05087609 0.03925039 +0.388193 0.05087609 0.03925039 +0.4303934 0.05087609 0.03925039 +0.4751555 0.05087609 0.03925039 +0.5225216 0.05087609 0.03925039 +0.5725335 0.05087609 0.03925039 +0.6252316 0.05087609 0.03925039 +0.6806558 0.05087609 0.03925039 +0.7388448 0.05087609 0.03925039 +0.7998369 0.05087609 0.03925039 +0.8636691 0.05087609 0.03925039 +0.9303782 0.05087609 0.03925039 +1 0.05087609 0.03925039 +0 0.06429595 0.03925039 +0.002418731 0.06429595 0.03925039 +0.005155668 0.06429595 0.03925039 +0.009080105 0.06429595 0.03925039 +0.01434988 0.06429595 0.03925039 +0.02107202 0.06429595 0.03925039 +0.02934285 0.06429595 0.03925039 +0.03925039 0.06429595 0.03925039 +0.05087609 0.06429595 0.03925039 +0.06429595 0.06429595 0.03925039 +0.07958143 0.06429595 0.03925039 +0.0968001 0.06429595 0.03925039 +0.1160161 0.06429595 0.03925039 +0.1372908 0.06429595 0.03925039 +0.1606827 0.06429595 0.03925039 +0.1862481 0.06429595 0.03925039 +0.2140411 0.06429595 0.03925039 +0.2441142 0.06429595 0.03925039 +0.2765176 0.06429595 0.03925039 +0.3113005 0.06429595 0.03925039 +0.3485102 0.06429595 0.03925039 +0.388193 0.06429595 0.03925039 +0.4303934 0.06429595 0.03925039 +0.4751555 0.06429595 0.03925039 +0.5225216 0.06429595 0.03925039 +0.5725335 0.06429595 0.03925039 +0.6252316 0.06429595 0.03925039 +0.6806558 0.06429595 0.03925039 +0.7388448 0.06429595 0.03925039 +0.7998369 0.06429595 0.03925039 +0.8636691 0.06429595 0.03925039 +0.9303782 0.06429595 0.03925039 +1 0.06429595 0.03925039 +0 0.07958143 0.03925039 +0.002418731 0.07958143 0.03925039 +0.005155668 0.07958143 0.03925039 +0.009080105 0.07958143 0.03925039 +0.01434988 0.07958143 0.03925039 +0.02107202 0.07958143 0.03925039 +0.02934285 0.07958143 0.03925039 +0.03925039 0.07958143 0.03925039 +0.05087609 0.07958143 0.03925039 +0.06429595 0.07958143 0.03925039 +0.07958143 0.07958143 0.03925039 +0.0968001 0.07958143 0.03925039 +0.1160161 0.07958143 0.03925039 +0.1372908 0.07958143 0.03925039 +0.1606827 0.07958143 0.03925039 +0.1862481 0.07958143 0.03925039 +0.2140411 0.07958143 0.03925039 +0.2441142 0.07958143 0.03925039 +0.2765176 0.07958143 0.03925039 +0.3113005 0.07958143 0.03925039 +0.3485102 0.07958143 0.03925039 +0.388193 0.07958143 0.03925039 +0.4303934 0.07958143 0.03925039 +0.4751555 0.07958143 0.03925039 +0.5225216 0.07958143 0.03925039 +0.5725335 0.07958143 0.03925039 +0.6252316 0.07958143 0.03925039 +0.6806558 0.07958143 0.03925039 +0.7388448 0.07958143 0.03925039 +0.7998369 0.07958143 0.03925039 +0.8636691 0.07958143 0.03925039 +0.9303782 0.07958143 0.03925039 +1 0.07958143 0.03925039 +0 0.0968001 0.03925039 +0.002418731 0.0968001 0.03925039 +0.005155668 0.0968001 0.03925039 +0.009080105 0.0968001 0.03925039 +0.01434988 0.0968001 0.03925039 +0.02107202 0.0968001 0.03925039 +0.02934285 0.0968001 0.03925039 +0.03925039 0.0968001 0.03925039 +0.05087609 0.0968001 0.03925039 +0.06429595 0.0968001 0.03925039 +0.07958143 0.0968001 0.03925039 +0.0968001 0.0968001 0.03925039 +0.1160161 0.0968001 0.03925039 +0.1372908 0.0968001 0.03925039 +0.1606827 0.0968001 0.03925039 +0.1862481 0.0968001 0.03925039 +0.2140411 0.0968001 0.03925039 +0.2441142 0.0968001 0.03925039 +0.2765176 0.0968001 0.03925039 +0.3113005 0.0968001 0.03925039 +0.3485102 0.0968001 0.03925039 +0.388193 0.0968001 0.03925039 +0.4303934 0.0968001 0.03925039 +0.4751555 0.0968001 0.03925039 +0.5225216 0.0968001 0.03925039 +0.5725335 0.0968001 0.03925039 +0.6252316 0.0968001 0.03925039 +0.6806558 0.0968001 0.03925039 +0.7388448 0.0968001 0.03925039 +0.7998369 0.0968001 0.03925039 +0.8636691 0.0968001 0.03925039 +0.9303782 0.0968001 0.03925039 +1 0.0968001 0.03925039 +0 0.1160161 0.03925039 +0.002418731 0.1160161 0.03925039 +0.005155668 0.1160161 0.03925039 +0.009080105 0.1160161 0.03925039 +0.01434988 0.1160161 0.03925039 +0.02107202 0.1160161 0.03925039 +0.02934285 0.1160161 0.03925039 +0.03925039 0.1160161 0.03925039 +0.05087609 0.1160161 0.03925039 +0.06429595 0.1160161 0.03925039 +0.07958143 0.1160161 0.03925039 +0.0968001 0.1160161 0.03925039 +0.1160161 0.1160161 0.03925039 +0.1372908 0.1160161 0.03925039 +0.1606827 0.1160161 0.03925039 +0.1862481 0.1160161 0.03925039 +0.2140411 0.1160161 0.03925039 +0.2441142 0.1160161 0.03925039 +0.2765176 0.1160161 0.03925039 +0.3113005 0.1160161 0.03925039 +0.3485102 0.1160161 0.03925039 +0.388193 0.1160161 0.03925039 +0.4303934 0.1160161 0.03925039 +0.4751555 0.1160161 0.03925039 +0.5225216 0.1160161 0.03925039 +0.5725335 0.1160161 0.03925039 +0.6252316 0.1160161 0.03925039 +0.6806558 0.1160161 0.03925039 +0.7388448 0.1160161 0.03925039 +0.7998369 0.1160161 0.03925039 +0.8636691 0.1160161 0.03925039 +0.9303782 0.1160161 0.03925039 +1 0.1160161 0.03925039 +0 0.1372908 0.03925039 +0.002418731 0.1372908 0.03925039 +0.005155668 0.1372908 0.03925039 +0.009080105 0.1372908 0.03925039 +0.01434988 0.1372908 0.03925039 +0.02107202 0.1372908 0.03925039 +0.02934285 0.1372908 0.03925039 +0.03925039 0.1372908 0.03925039 +0.05087609 0.1372908 0.03925039 +0.06429595 0.1372908 0.03925039 +0.07958143 0.1372908 0.03925039 +0.0968001 0.1372908 0.03925039 +0.1160161 0.1372908 0.03925039 +0.1372908 0.1372908 0.03925039 +0.1606827 0.1372908 0.03925039 +0.1862481 0.1372908 0.03925039 +0.2140411 0.1372908 0.03925039 +0.2441142 0.1372908 0.03925039 +0.2765176 0.1372908 0.03925039 +0.3113005 0.1372908 0.03925039 +0.3485102 0.1372908 0.03925039 +0.388193 0.1372908 0.03925039 +0.4303934 0.1372908 0.03925039 +0.4751555 0.1372908 0.03925039 +0.5225216 0.1372908 0.03925039 +0.5725335 0.1372908 0.03925039 +0.6252316 0.1372908 0.03925039 +0.6806558 0.1372908 0.03925039 +0.7388448 0.1372908 0.03925039 +0.7998369 0.1372908 0.03925039 +0.8636691 0.1372908 0.03925039 +0.9303782 0.1372908 0.03925039 +1 0.1372908 0.03925039 +0 0.1606827 0.03925039 +0.002418731 0.1606827 0.03925039 +0.005155668 0.1606827 0.03925039 +0.009080105 0.1606827 0.03925039 +0.01434988 0.1606827 0.03925039 +0.02107202 0.1606827 0.03925039 +0.02934285 0.1606827 0.03925039 +0.03925039 0.1606827 0.03925039 +0.05087609 0.1606827 0.03925039 +0.06429595 0.1606827 0.03925039 +0.07958143 0.1606827 0.03925039 +0.0968001 0.1606827 0.03925039 +0.1160161 0.1606827 0.03925039 +0.1372908 0.1606827 0.03925039 +0.1606827 0.1606827 0.03925039 +0.1862481 0.1606827 0.03925039 +0.2140411 0.1606827 0.03925039 +0.2441142 0.1606827 0.03925039 +0.2765176 0.1606827 0.03925039 +0.3113005 0.1606827 0.03925039 +0.3485102 0.1606827 0.03925039 +0.388193 0.1606827 0.03925039 +0.4303934 0.1606827 0.03925039 +0.4751555 0.1606827 0.03925039 +0.5225216 0.1606827 0.03925039 +0.5725335 0.1606827 0.03925039 +0.6252316 0.1606827 0.03925039 +0.6806558 0.1606827 0.03925039 +0.7388448 0.1606827 0.03925039 +0.7998369 0.1606827 0.03925039 +0.8636691 0.1606827 0.03925039 +0.9303782 0.1606827 0.03925039 +1 0.1606827 0.03925039 +0 0.1862481 0.03925039 +0.002418731 0.1862481 0.03925039 +0.005155668 0.1862481 0.03925039 +0.009080105 0.1862481 0.03925039 +0.01434988 0.1862481 0.03925039 +0.02107202 0.1862481 0.03925039 +0.02934285 0.1862481 0.03925039 +0.03925039 0.1862481 0.03925039 +0.05087609 0.1862481 0.03925039 +0.06429595 0.1862481 0.03925039 +0.07958143 0.1862481 0.03925039 +0.0968001 0.1862481 0.03925039 +0.1160161 0.1862481 0.03925039 +0.1372908 0.1862481 0.03925039 +0.1606827 0.1862481 0.03925039 +0.1862481 0.1862481 0.03925039 +0.2140411 0.1862481 0.03925039 +0.2441142 0.1862481 0.03925039 +0.2765176 0.1862481 0.03925039 +0.3113005 0.1862481 0.03925039 +0.3485102 0.1862481 0.03925039 +0.388193 0.1862481 0.03925039 +0.4303934 0.1862481 0.03925039 +0.4751555 0.1862481 0.03925039 +0.5225216 0.1862481 0.03925039 +0.5725335 0.1862481 0.03925039 +0.6252316 0.1862481 0.03925039 +0.6806558 0.1862481 0.03925039 +0.7388448 0.1862481 0.03925039 +0.7998369 0.1862481 0.03925039 +0.8636691 0.1862481 0.03925039 +0.9303782 0.1862481 0.03925039 +1 0.1862481 0.03925039 +0 0.2140411 0.03925039 +0.002418731 0.2140411 0.03925039 +0.005155668 0.2140411 0.03925039 +0.009080105 0.2140411 0.03925039 +0.01434988 0.2140411 0.03925039 +0.02107202 0.2140411 0.03925039 +0.02934285 0.2140411 0.03925039 +0.03925039 0.2140411 0.03925039 +0.05087609 0.2140411 0.03925039 +0.06429595 0.2140411 0.03925039 +0.07958143 0.2140411 0.03925039 +0.0968001 0.2140411 0.03925039 +0.1160161 0.2140411 0.03925039 +0.1372908 0.2140411 0.03925039 +0.1606827 0.2140411 0.03925039 +0.1862481 0.2140411 0.03925039 +0.2140411 0.2140411 0.03925039 +0.2441142 0.2140411 0.03925039 +0.2765176 0.2140411 0.03925039 +0.3113005 0.2140411 0.03925039 +0.3485102 0.2140411 0.03925039 +0.388193 0.2140411 0.03925039 +0.4303934 0.2140411 0.03925039 +0.4751555 0.2140411 0.03925039 +0.5225216 0.2140411 0.03925039 +0.5725335 0.2140411 0.03925039 +0.6252316 0.2140411 0.03925039 +0.6806558 0.2140411 0.03925039 +0.7388448 0.2140411 0.03925039 +0.7998369 0.2140411 0.03925039 +0.8636691 0.2140411 0.03925039 +0.9303782 0.2140411 0.03925039 +1 0.2140411 0.03925039 +0 0.2441142 0.03925039 +0.002418731 0.2441142 0.03925039 +0.005155668 0.2441142 0.03925039 +0.009080105 0.2441142 0.03925039 +0.01434988 0.2441142 0.03925039 +0.02107202 0.2441142 0.03925039 +0.02934285 0.2441142 0.03925039 +0.03925039 0.2441142 0.03925039 +0.05087609 0.2441142 0.03925039 +0.06429595 0.2441142 0.03925039 +0.07958143 0.2441142 0.03925039 +0.0968001 0.2441142 0.03925039 +0.1160161 0.2441142 0.03925039 +0.1372908 0.2441142 0.03925039 +0.1606827 0.2441142 0.03925039 +0.1862481 0.2441142 0.03925039 +0.2140411 0.2441142 0.03925039 +0.2441142 0.2441142 0.03925039 +0.2765176 0.2441142 0.03925039 +0.3113005 0.2441142 0.03925039 +0.3485102 0.2441142 0.03925039 +0.388193 0.2441142 0.03925039 +0.4303934 0.2441142 0.03925039 +0.4751555 0.2441142 0.03925039 +0.5225216 0.2441142 0.03925039 +0.5725335 0.2441142 0.03925039 +0.6252316 0.2441142 0.03925039 +0.6806558 0.2441142 0.03925039 +0.7388448 0.2441142 0.03925039 +0.7998369 0.2441142 0.03925039 +0.8636691 0.2441142 0.03925039 +0.9303782 0.2441142 0.03925039 +1 0.2441142 0.03925039 +0 0.2765176 0.03925039 +0.002418731 0.2765176 0.03925039 +0.005155668 0.2765176 0.03925039 +0.009080105 0.2765176 0.03925039 +0.01434988 0.2765176 0.03925039 +0.02107202 0.2765176 0.03925039 +0.02934285 0.2765176 0.03925039 +0.03925039 0.2765176 0.03925039 +0.05087609 0.2765176 0.03925039 +0.06429595 0.2765176 0.03925039 +0.07958143 0.2765176 0.03925039 +0.0968001 0.2765176 0.03925039 +0.1160161 0.2765176 0.03925039 +0.1372908 0.2765176 0.03925039 +0.1606827 0.2765176 0.03925039 +0.1862481 0.2765176 0.03925039 +0.2140411 0.2765176 0.03925039 +0.2441142 0.2765176 0.03925039 +0.2765176 0.2765176 0.03925039 +0.3113005 0.2765176 0.03925039 +0.3485102 0.2765176 0.03925039 +0.388193 0.2765176 0.03925039 +0.4303934 0.2765176 0.03925039 +0.4751555 0.2765176 0.03925039 +0.5225216 0.2765176 0.03925039 +0.5725335 0.2765176 0.03925039 +0.6252316 0.2765176 0.03925039 +0.6806558 0.2765176 0.03925039 +0.7388448 0.2765176 0.03925039 +0.7998369 0.2765176 0.03925039 +0.8636691 0.2765176 0.03925039 +0.9303782 0.2765176 0.03925039 +1 0.2765176 0.03925039 +0 0.3113005 0.03925039 +0.002418731 0.3113005 0.03925039 +0.005155668 0.3113005 0.03925039 +0.009080105 0.3113005 0.03925039 +0.01434988 0.3113005 0.03925039 +0.02107202 0.3113005 0.03925039 +0.02934285 0.3113005 0.03925039 +0.03925039 0.3113005 0.03925039 +0.05087609 0.3113005 0.03925039 +0.06429595 0.3113005 0.03925039 +0.07958143 0.3113005 0.03925039 +0.0968001 0.3113005 0.03925039 +0.1160161 0.3113005 0.03925039 +0.1372908 0.3113005 0.03925039 +0.1606827 0.3113005 0.03925039 +0.1862481 0.3113005 0.03925039 +0.2140411 0.3113005 0.03925039 +0.2441142 0.3113005 0.03925039 +0.2765176 0.3113005 0.03925039 +0.3113005 0.3113005 0.03925039 +0.3485102 0.3113005 0.03925039 +0.388193 0.3113005 0.03925039 +0.4303934 0.3113005 0.03925039 +0.4751555 0.3113005 0.03925039 +0.5225216 0.3113005 0.03925039 +0.5725335 0.3113005 0.03925039 +0.6252316 0.3113005 0.03925039 +0.6806558 0.3113005 0.03925039 +0.7388448 0.3113005 0.03925039 +0.7998369 0.3113005 0.03925039 +0.8636691 0.3113005 0.03925039 +0.9303782 0.3113005 0.03925039 +1 0.3113005 0.03925039 +0 0.3485102 0.03925039 +0.002418731 0.3485102 0.03925039 +0.005155668 0.3485102 0.03925039 +0.009080105 0.3485102 0.03925039 +0.01434988 0.3485102 0.03925039 +0.02107202 0.3485102 0.03925039 +0.02934285 0.3485102 0.03925039 +0.03925039 0.3485102 0.03925039 +0.05087609 0.3485102 0.03925039 +0.06429595 0.3485102 0.03925039 +0.07958143 0.3485102 0.03925039 +0.0968001 0.3485102 0.03925039 +0.1160161 0.3485102 0.03925039 +0.1372908 0.3485102 0.03925039 +0.1606827 0.3485102 0.03925039 +0.1862481 0.3485102 0.03925039 +0.2140411 0.3485102 0.03925039 +0.2441142 0.3485102 0.03925039 +0.2765176 0.3485102 0.03925039 +0.3113005 0.3485102 0.03925039 +0.3485102 0.3485102 0.03925039 +0.388193 0.3485102 0.03925039 +0.4303934 0.3485102 0.03925039 +0.4751555 0.3485102 0.03925039 +0.5225216 0.3485102 0.03925039 +0.5725335 0.3485102 0.03925039 +0.6252316 0.3485102 0.03925039 +0.6806558 0.3485102 0.03925039 +0.7388448 0.3485102 0.03925039 +0.7998369 0.3485102 0.03925039 +0.8636691 0.3485102 0.03925039 +0.9303782 0.3485102 0.03925039 +1 0.3485102 0.03925039 +0 0.388193 0.03925039 +0.002418731 0.388193 0.03925039 +0.005155668 0.388193 0.03925039 +0.009080105 0.388193 0.03925039 +0.01434988 0.388193 0.03925039 +0.02107202 0.388193 0.03925039 +0.02934285 0.388193 0.03925039 +0.03925039 0.388193 0.03925039 +0.05087609 0.388193 0.03925039 +0.06429595 0.388193 0.03925039 +0.07958143 0.388193 0.03925039 +0.0968001 0.388193 0.03925039 +0.1160161 0.388193 0.03925039 +0.1372908 0.388193 0.03925039 +0.1606827 0.388193 0.03925039 +0.1862481 0.388193 0.03925039 +0.2140411 0.388193 0.03925039 +0.2441142 0.388193 0.03925039 +0.2765176 0.388193 0.03925039 +0.3113005 0.388193 0.03925039 +0.3485102 0.388193 0.03925039 +0.388193 0.388193 0.03925039 +0.4303934 0.388193 0.03925039 +0.4751555 0.388193 0.03925039 +0.5225216 0.388193 0.03925039 +0.5725335 0.388193 0.03925039 +0.6252316 0.388193 0.03925039 +0.6806558 0.388193 0.03925039 +0.7388448 0.388193 0.03925039 +0.7998369 0.388193 0.03925039 +0.8636691 0.388193 0.03925039 +0.9303782 0.388193 0.03925039 +1 0.388193 0.03925039 +0 0.4303934 0.03925039 +0.002418731 0.4303934 0.03925039 +0.005155668 0.4303934 0.03925039 +0.009080105 0.4303934 0.03925039 +0.01434988 0.4303934 0.03925039 +0.02107202 0.4303934 0.03925039 +0.02934285 0.4303934 0.03925039 +0.03925039 0.4303934 0.03925039 +0.05087609 0.4303934 0.03925039 +0.06429595 0.4303934 0.03925039 +0.07958143 0.4303934 0.03925039 +0.0968001 0.4303934 0.03925039 +0.1160161 0.4303934 0.03925039 +0.1372908 0.4303934 0.03925039 +0.1606827 0.4303934 0.03925039 +0.1862481 0.4303934 0.03925039 +0.2140411 0.4303934 0.03925039 +0.2441142 0.4303934 0.03925039 +0.2765176 0.4303934 0.03925039 +0.3113005 0.4303934 0.03925039 +0.3485102 0.4303934 0.03925039 +0.388193 0.4303934 0.03925039 +0.4303934 0.4303934 0.03925039 +0.4751555 0.4303934 0.03925039 +0.5225216 0.4303934 0.03925039 +0.5725335 0.4303934 0.03925039 +0.6252316 0.4303934 0.03925039 +0.6806558 0.4303934 0.03925039 +0.7388448 0.4303934 0.03925039 +0.7998369 0.4303934 0.03925039 +0.8636691 0.4303934 0.03925039 +0.9303782 0.4303934 0.03925039 +1 0.4303934 0.03925039 +0 0.4751555 0.03925039 +0.002418731 0.4751555 0.03925039 +0.005155668 0.4751555 0.03925039 +0.009080105 0.4751555 0.03925039 +0.01434988 0.4751555 0.03925039 +0.02107202 0.4751555 0.03925039 +0.02934285 0.4751555 0.03925039 +0.03925039 0.4751555 0.03925039 +0.05087609 0.4751555 0.03925039 +0.06429595 0.4751555 0.03925039 +0.07958143 0.4751555 0.03925039 +0.0968001 0.4751555 0.03925039 +0.1160161 0.4751555 0.03925039 +0.1372908 0.4751555 0.03925039 +0.1606827 0.4751555 0.03925039 +0.1862481 0.4751555 0.03925039 +0.2140411 0.4751555 0.03925039 +0.2441142 0.4751555 0.03925039 +0.2765176 0.4751555 0.03925039 +0.3113005 0.4751555 0.03925039 +0.3485102 0.4751555 0.03925039 +0.388193 0.4751555 0.03925039 +0.4303934 0.4751555 0.03925039 +0.4751555 0.4751555 0.03925039 +0.5225216 0.4751555 0.03925039 +0.5725335 0.4751555 0.03925039 +0.6252316 0.4751555 0.03925039 +0.6806558 0.4751555 0.03925039 +0.7388448 0.4751555 0.03925039 +0.7998369 0.4751555 0.03925039 +0.8636691 0.4751555 0.03925039 +0.9303782 0.4751555 0.03925039 +1 0.4751555 0.03925039 +0 0.5225216 0.03925039 +0.002418731 0.5225216 0.03925039 +0.005155668 0.5225216 0.03925039 +0.009080105 0.5225216 0.03925039 +0.01434988 0.5225216 0.03925039 +0.02107202 0.5225216 0.03925039 +0.02934285 0.5225216 0.03925039 +0.03925039 0.5225216 0.03925039 +0.05087609 0.5225216 0.03925039 +0.06429595 0.5225216 0.03925039 +0.07958143 0.5225216 0.03925039 +0.0968001 0.5225216 0.03925039 +0.1160161 0.5225216 0.03925039 +0.1372908 0.5225216 0.03925039 +0.1606827 0.5225216 0.03925039 +0.1862481 0.5225216 0.03925039 +0.2140411 0.5225216 0.03925039 +0.2441142 0.5225216 0.03925039 +0.2765176 0.5225216 0.03925039 +0.3113005 0.5225216 0.03925039 +0.3485102 0.5225216 0.03925039 +0.388193 0.5225216 0.03925039 +0.4303934 0.5225216 0.03925039 +0.4751555 0.5225216 0.03925039 +0.5225216 0.5225216 0.03925039 +0.5725335 0.5225216 0.03925039 +0.6252316 0.5225216 0.03925039 +0.6806558 0.5225216 0.03925039 +0.7388448 0.5225216 0.03925039 +0.7998369 0.5225216 0.03925039 +0.8636691 0.5225216 0.03925039 +0.9303782 0.5225216 0.03925039 +1 0.5225216 0.03925039 +0 0.5725335 0.03925039 +0.002418731 0.5725335 0.03925039 +0.005155668 0.5725335 0.03925039 +0.009080105 0.5725335 0.03925039 +0.01434988 0.5725335 0.03925039 +0.02107202 0.5725335 0.03925039 +0.02934285 0.5725335 0.03925039 +0.03925039 0.5725335 0.03925039 +0.05087609 0.5725335 0.03925039 +0.06429595 0.5725335 0.03925039 +0.07958143 0.5725335 0.03925039 +0.0968001 0.5725335 0.03925039 +0.1160161 0.5725335 0.03925039 +0.1372908 0.5725335 0.03925039 +0.1606827 0.5725335 0.03925039 +0.1862481 0.5725335 0.03925039 +0.2140411 0.5725335 0.03925039 +0.2441142 0.5725335 0.03925039 +0.2765176 0.5725335 0.03925039 +0.3113005 0.5725335 0.03925039 +0.3485102 0.5725335 0.03925039 +0.388193 0.5725335 0.03925039 +0.4303934 0.5725335 0.03925039 +0.4751555 0.5725335 0.03925039 +0.5225216 0.5725335 0.03925039 +0.5725335 0.5725335 0.03925039 +0.6252316 0.5725335 0.03925039 +0.6806558 0.5725335 0.03925039 +0.7388448 0.5725335 0.03925039 +0.7998369 0.5725335 0.03925039 +0.8636691 0.5725335 0.03925039 +0.9303782 0.5725335 0.03925039 +1 0.5725335 0.03925039 +0 0.6252316 0.03925039 +0.002418731 0.6252316 0.03925039 +0.005155668 0.6252316 0.03925039 +0.009080105 0.6252316 0.03925039 +0.01434988 0.6252316 0.03925039 +0.02107202 0.6252316 0.03925039 +0.02934285 0.6252316 0.03925039 +0.03925039 0.6252316 0.03925039 +0.05087609 0.6252316 0.03925039 +0.06429595 0.6252316 0.03925039 +0.07958143 0.6252316 0.03925039 +0.0968001 0.6252316 0.03925039 +0.1160161 0.6252316 0.03925039 +0.1372908 0.6252316 0.03925039 +0.1606827 0.6252316 0.03925039 +0.1862481 0.6252316 0.03925039 +0.2140411 0.6252316 0.03925039 +0.2441142 0.6252316 0.03925039 +0.2765176 0.6252316 0.03925039 +0.3113005 0.6252316 0.03925039 +0.3485102 0.6252316 0.03925039 +0.388193 0.6252316 0.03925039 +0.4303934 0.6252316 0.03925039 +0.4751555 0.6252316 0.03925039 +0.5225216 0.6252316 0.03925039 +0.5725335 0.6252316 0.03925039 +0.6252316 0.6252316 0.03925039 +0.6806558 0.6252316 0.03925039 +0.7388448 0.6252316 0.03925039 +0.7998369 0.6252316 0.03925039 +0.8636691 0.6252316 0.03925039 +0.9303782 0.6252316 0.03925039 +1 0.6252316 0.03925039 +0 0.6806558 0.03925039 +0.002418731 0.6806558 0.03925039 +0.005155668 0.6806558 0.03925039 +0.009080105 0.6806558 0.03925039 +0.01434988 0.6806558 0.03925039 +0.02107202 0.6806558 0.03925039 +0.02934285 0.6806558 0.03925039 +0.03925039 0.6806558 0.03925039 +0.05087609 0.6806558 0.03925039 +0.06429595 0.6806558 0.03925039 +0.07958143 0.6806558 0.03925039 +0.0968001 0.6806558 0.03925039 +0.1160161 0.6806558 0.03925039 +0.1372908 0.6806558 0.03925039 +0.1606827 0.6806558 0.03925039 +0.1862481 0.6806558 0.03925039 +0.2140411 0.6806558 0.03925039 +0.2441142 0.6806558 0.03925039 +0.2765176 0.6806558 0.03925039 +0.3113005 0.6806558 0.03925039 +0.3485102 0.6806558 0.03925039 +0.388193 0.6806558 0.03925039 +0.4303934 0.6806558 0.03925039 +0.4751555 0.6806558 0.03925039 +0.5225216 0.6806558 0.03925039 +0.5725335 0.6806558 0.03925039 +0.6252316 0.6806558 0.03925039 +0.6806558 0.6806558 0.03925039 +0.7388448 0.6806558 0.03925039 +0.7998369 0.6806558 0.03925039 +0.8636691 0.6806558 0.03925039 +0.9303782 0.6806558 0.03925039 +1 0.6806558 0.03925039 +0 0.7388448 0.03925039 +0.002418731 0.7388448 0.03925039 +0.005155668 0.7388448 0.03925039 +0.009080105 0.7388448 0.03925039 +0.01434988 0.7388448 0.03925039 +0.02107202 0.7388448 0.03925039 +0.02934285 0.7388448 0.03925039 +0.03925039 0.7388448 0.03925039 +0.05087609 0.7388448 0.03925039 +0.06429595 0.7388448 0.03925039 +0.07958143 0.7388448 0.03925039 +0.0968001 0.7388448 0.03925039 +0.1160161 0.7388448 0.03925039 +0.1372908 0.7388448 0.03925039 +0.1606827 0.7388448 0.03925039 +0.1862481 0.7388448 0.03925039 +0.2140411 0.7388448 0.03925039 +0.2441142 0.7388448 0.03925039 +0.2765176 0.7388448 0.03925039 +0.3113005 0.7388448 0.03925039 +0.3485102 0.7388448 0.03925039 +0.388193 0.7388448 0.03925039 +0.4303934 0.7388448 0.03925039 +0.4751555 0.7388448 0.03925039 +0.5225216 0.7388448 0.03925039 +0.5725335 0.7388448 0.03925039 +0.6252316 0.7388448 0.03925039 +0.6806558 0.7388448 0.03925039 +0.7388448 0.7388448 0.03925039 +0.7998369 0.7388448 0.03925039 +0.8636691 0.7388448 0.03925039 +0.9303782 0.7388448 0.03925039 +1 0.7388448 0.03925039 +0 0.7998369 0.03925039 +0.002418731 0.7998369 0.03925039 +0.005155668 0.7998369 0.03925039 +0.009080105 0.7998369 0.03925039 +0.01434988 0.7998369 0.03925039 +0.02107202 0.7998369 0.03925039 +0.02934285 0.7998369 0.03925039 +0.03925039 0.7998369 0.03925039 +0.05087609 0.7998369 0.03925039 +0.06429595 0.7998369 0.03925039 +0.07958143 0.7998369 0.03925039 +0.0968001 0.7998369 0.03925039 +0.1160161 0.7998369 0.03925039 +0.1372908 0.7998369 0.03925039 +0.1606827 0.7998369 0.03925039 +0.1862481 0.7998369 0.03925039 +0.2140411 0.7998369 0.03925039 +0.2441142 0.7998369 0.03925039 +0.2765176 0.7998369 0.03925039 +0.3113005 0.7998369 0.03925039 +0.3485102 0.7998369 0.03925039 +0.388193 0.7998369 0.03925039 +0.4303934 0.7998369 0.03925039 +0.4751555 0.7998369 0.03925039 +0.5225216 0.7998369 0.03925039 +0.5725335 0.7998369 0.03925039 +0.6252316 0.7998369 0.03925039 +0.6806558 0.7998369 0.03925039 +0.7388448 0.7998369 0.03925039 +0.7998369 0.7998369 0.03925039 +0.8636691 0.7998369 0.03925039 +0.9303782 0.7998369 0.03925039 +1 0.7998369 0.03925039 +0 0.8636691 0.03925039 +0.002418731 0.8636691 0.03925039 +0.005155668 0.8636691 0.03925039 +0.009080105 0.8636691 0.03925039 +0.01434988 0.8636691 0.03925039 +0.02107202 0.8636691 0.03925039 +0.02934285 0.8636691 0.03925039 +0.03925039 0.8636691 0.03925039 +0.05087609 0.8636691 0.03925039 +0.06429595 0.8636691 0.03925039 +0.07958143 0.8636691 0.03925039 +0.0968001 0.8636691 0.03925039 +0.1160161 0.8636691 0.03925039 +0.1372908 0.8636691 0.03925039 +0.1606827 0.8636691 0.03925039 +0.1862481 0.8636691 0.03925039 +0.2140411 0.8636691 0.03925039 +0.2441142 0.8636691 0.03925039 +0.2765176 0.8636691 0.03925039 +0.3113005 0.8636691 0.03925039 +0.3485102 0.8636691 0.03925039 +0.388193 0.8636691 0.03925039 +0.4303934 0.8636691 0.03925039 +0.4751555 0.8636691 0.03925039 +0.5225216 0.8636691 0.03925039 +0.5725335 0.8636691 0.03925039 +0.6252316 0.8636691 0.03925039 +0.6806558 0.8636691 0.03925039 +0.7388448 0.8636691 0.03925039 +0.7998369 0.8636691 0.03925039 +0.8636691 0.8636691 0.03925039 +0.9303782 0.8636691 0.03925039 +1 0.8636691 0.03925039 +0 0.9303782 0.03925039 +0.002418731 0.9303782 0.03925039 +0.005155668 0.9303782 0.03925039 +0.009080105 0.9303782 0.03925039 +0.01434988 0.9303782 0.03925039 +0.02107202 0.9303782 0.03925039 +0.02934285 0.9303782 0.03925039 +0.03925039 0.9303782 0.03925039 +0.05087609 0.9303782 0.03925039 +0.06429595 0.9303782 0.03925039 +0.07958143 0.9303782 0.03925039 +0.0968001 0.9303782 0.03925039 +0.1160161 0.9303782 0.03925039 +0.1372908 0.9303782 0.03925039 +0.1606827 0.9303782 0.03925039 +0.1862481 0.9303782 0.03925039 +0.2140411 0.9303782 0.03925039 +0.2441142 0.9303782 0.03925039 +0.2765176 0.9303782 0.03925039 +0.3113005 0.9303782 0.03925039 +0.3485102 0.9303782 0.03925039 +0.388193 0.9303782 0.03925039 +0.4303934 0.9303782 0.03925039 +0.4751555 0.9303782 0.03925039 +0.5225216 0.9303782 0.03925039 +0.5725335 0.9303782 0.03925039 +0.6252316 0.9303782 0.03925039 +0.6806558 0.9303782 0.03925039 +0.7388448 0.9303782 0.03925039 +0.7998369 0.9303782 0.03925039 +0.8636691 0.9303782 0.03925039 +0.9303782 0.9303782 0.03925039 +1 0.9303782 0.03925039 +0 1 0.03925039 +0.002418731 1 0.03925039 +0.005155668 1 0.03925039 +0.009080105 1 0.03925039 +0.01434988 1 0.03925039 +0.02107202 1 0.03925039 +0.02934285 1 0.03925039 +0.03925039 1 0.03925039 +0.05087609 1 0.03925039 +0.06429595 1 0.03925039 +0.07958143 1 0.03925039 +0.0968001 1 0.03925039 +0.1160161 1 0.03925039 +0.1372908 1 0.03925039 +0.1606827 1 0.03925039 +0.1862481 1 0.03925039 +0.2140411 1 0.03925039 +0.2441142 1 0.03925039 +0.2765176 1 0.03925039 +0.3113005 1 0.03925039 +0.3485102 1 0.03925039 +0.388193 1 0.03925039 +0.4303934 1 0.03925039 +0.4751555 1 0.03925039 +0.5225216 1 0.03925039 +0.5725335 1 0.03925039 +0.6252316 1 0.03925039 +0.6806558 1 0.03925039 +0.7388448 1 0.03925039 +0.7998369 1 0.03925039 +0.8636691 1 0.03925039 +0.9303782 1 0.03925039 +1 1 0.03925039 +0 0 0.05087609 +0.002418731 0 0.05087609 +0.005155668 0 0.05087609 +0.009080105 0 0.05087609 +0.01434988 0 0.05087609 +0.02107202 0 0.05087609 +0.02934285 0 0.05087609 +0.03925039 0 0.05087609 +0.05087609 0 0.05087609 +0.06429595 0 0.05087609 +0.07958143 0 0.05087609 +0.0968001 0 0.05087609 +0.1160161 0 0.05087609 +0.1372908 0 0.05087609 +0.1606827 0 0.05087609 +0.1862481 0 0.05087609 +0.2140411 0 0.05087609 +0.2441142 0 0.05087609 +0.2765176 0 0.05087609 +0.3113005 0 0.05087609 +0.3485102 0 0.05087609 +0.388193 0 0.05087609 +0.4303934 0 0.05087609 +0.4751555 0 0.05087609 +0.5225216 0 0.05087609 +0.5725335 0 0.05087609 +0.6252316 0 0.05087609 +0.6806558 0 0.05087609 +0.7388448 0 0.05087609 +0.7998369 0 0.05087609 +0.8636691 0 0.05087609 +0.9303782 0 0.05087609 +1 0 0.05087609 +0 0.002418731 0.05087609 +0.002418731 0.002418731 0.05087609 +0.005155668 0.002418731 0.05087609 +0.009080105 0.002418731 0.05087609 +0.01434988 0.002418731 0.05087609 +0.02107202 0.002418731 0.05087609 +0.02934285 0.002418731 0.05087609 +0.03925039 0.002418731 0.05087609 +0.05087609 0.002418731 0.05087609 +0.06429595 0.002418731 0.05087609 +0.07958143 0.002418731 0.05087609 +0.0968001 0.002418731 0.05087609 +0.1160161 0.002418731 0.05087609 +0.1372908 0.002418731 0.05087609 +0.1606827 0.002418731 0.05087609 +0.1862481 0.002418731 0.05087609 +0.2140411 0.002418731 0.05087609 +0.2441142 0.002418731 0.05087609 +0.2765176 0.002418731 0.05087609 +0.3113005 0.002418731 0.05087609 +0.3485102 0.002418731 0.05087609 +0.388193 0.002418731 0.05087609 +0.4303934 0.002418731 0.05087609 +0.4751555 0.002418731 0.05087609 +0.5225216 0.002418731 0.05087609 +0.5725335 0.002418731 0.05087609 +0.6252316 0.002418731 0.05087609 +0.6806558 0.002418731 0.05087609 +0.7388448 0.002418731 0.05087609 +0.7998369 0.002418731 0.05087609 +0.8636691 0.002418731 0.05087609 +0.9303782 0.002418731 0.05087609 +1 0.002418731 0.05087609 +0 0.005155668 0.05087609 +0.002418731 0.005155668 0.05087609 +0.005155668 0.005155668 0.05087609 +0.009080105 0.005155668 0.05087609 +0.01434988 0.005155668 0.05087609 +0.02107202 0.005155668 0.05087609 +0.02934285 0.005155668 0.05087609 +0.03925039 0.005155668 0.05087609 +0.05087609 0.005155668 0.05087609 +0.06429595 0.005155668 0.05087609 +0.07958143 0.005155668 0.05087609 +0.0968001 0.005155668 0.05087609 +0.1160161 0.005155668 0.05087609 +0.1372908 0.005155668 0.05087609 +0.1606827 0.005155668 0.05087609 +0.1862481 0.005155668 0.05087609 +0.2140411 0.005155668 0.05087609 +0.2441142 0.005155668 0.05087609 +0.2765176 0.005155668 0.05087609 +0.3113005 0.005155668 0.05087609 +0.3485102 0.005155668 0.05087609 +0.388193 0.005155668 0.05087609 +0.4303934 0.005155668 0.05087609 +0.4751555 0.005155668 0.05087609 +0.5225216 0.005155668 0.05087609 +0.5725335 0.005155668 0.05087609 +0.6252316 0.005155668 0.05087609 +0.6806558 0.005155668 0.05087609 +0.7388448 0.005155668 0.05087609 +0.7998369 0.005155668 0.05087609 +0.8636691 0.005155668 0.05087609 +0.9303782 0.005155668 0.05087609 +1 0.005155668 0.05087609 +0 0.009080105 0.05087609 +0.002418731 0.009080105 0.05087609 +0.005155668 0.009080105 0.05087609 +0.009080105 0.009080105 0.05087609 +0.01434988 0.009080105 0.05087609 +0.02107202 0.009080105 0.05087609 +0.02934285 0.009080105 0.05087609 +0.03925039 0.009080105 0.05087609 +0.05087609 0.009080105 0.05087609 +0.06429595 0.009080105 0.05087609 +0.07958143 0.009080105 0.05087609 +0.0968001 0.009080105 0.05087609 +0.1160161 0.009080105 0.05087609 +0.1372908 0.009080105 0.05087609 +0.1606827 0.009080105 0.05087609 +0.1862481 0.009080105 0.05087609 +0.2140411 0.009080105 0.05087609 +0.2441142 0.009080105 0.05087609 +0.2765176 0.009080105 0.05087609 +0.3113005 0.009080105 0.05087609 +0.3485102 0.009080105 0.05087609 +0.388193 0.009080105 0.05087609 +0.4303934 0.009080105 0.05087609 +0.4751555 0.009080105 0.05087609 +0.5225216 0.009080105 0.05087609 +0.5725335 0.009080105 0.05087609 +0.6252316 0.009080105 0.05087609 +0.6806558 0.009080105 0.05087609 +0.7388448 0.009080105 0.05087609 +0.7998369 0.009080105 0.05087609 +0.8636691 0.009080105 0.05087609 +0.9303782 0.009080105 0.05087609 +1 0.009080105 0.05087609 +0 0.01434988 0.05087609 +0.002418731 0.01434988 0.05087609 +0.005155668 0.01434988 0.05087609 +0.009080105 0.01434988 0.05087609 +0.01434988 0.01434988 0.05087609 +0.02107202 0.01434988 0.05087609 +0.02934285 0.01434988 0.05087609 +0.03925039 0.01434988 0.05087609 +0.05087609 0.01434988 0.05087609 +0.06429595 0.01434988 0.05087609 +0.07958143 0.01434988 0.05087609 +0.0968001 0.01434988 0.05087609 +0.1160161 0.01434988 0.05087609 +0.1372908 0.01434988 0.05087609 +0.1606827 0.01434988 0.05087609 +0.1862481 0.01434988 0.05087609 +0.2140411 0.01434988 0.05087609 +0.2441142 0.01434988 0.05087609 +0.2765176 0.01434988 0.05087609 +0.3113005 0.01434988 0.05087609 +0.3485102 0.01434988 0.05087609 +0.388193 0.01434988 0.05087609 +0.4303934 0.01434988 0.05087609 +0.4751555 0.01434988 0.05087609 +0.5225216 0.01434988 0.05087609 +0.5725335 0.01434988 0.05087609 +0.6252316 0.01434988 0.05087609 +0.6806558 0.01434988 0.05087609 +0.7388448 0.01434988 0.05087609 +0.7998369 0.01434988 0.05087609 +0.8636691 0.01434988 0.05087609 +0.9303782 0.01434988 0.05087609 +1 0.01434988 0.05087609 +0 0.02107202 0.05087609 +0.002418731 0.02107202 0.05087609 +0.005155668 0.02107202 0.05087609 +0.009080105 0.02107202 0.05087609 +0.01434988 0.02107202 0.05087609 +0.02107202 0.02107202 0.05087609 +0.02934285 0.02107202 0.05087609 +0.03925039 0.02107202 0.05087609 +0.05087609 0.02107202 0.05087609 +0.06429595 0.02107202 0.05087609 +0.07958143 0.02107202 0.05087609 +0.0968001 0.02107202 0.05087609 +0.1160161 0.02107202 0.05087609 +0.1372908 0.02107202 0.05087609 +0.1606827 0.02107202 0.05087609 +0.1862481 0.02107202 0.05087609 +0.2140411 0.02107202 0.05087609 +0.2441142 0.02107202 0.05087609 +0.2765176 0.02107202 0.05087609 +0.3113005 0.02107202 0.05087609 +0.3485102 0.02107202 0.05087609 +0.388193 0.02107202 0.05087609 +0.4303934 0.02107202 0.05087609 +0.4751555 0.02107202 0.05087609 +0.5225216 0.02107202 0.05087609 +0.5725335 0.02107202 0.05087609 +0.6252316 0.02107202 0.05087609 +0.6806558 0.02107202 0.05087609 +0.7388448 0.02107202 0.05087609 +0.7998369 0.02107202 0.05087609 +0.8636691 0.02107202 0.05087609 +0.9303782 0.02107202 0.05087609 +1 0.02107202 0.05087609 +0 0.02934285 0.05087609 +0.002418731 0.02934285 0.05087609 +0.005155668 0.02934285 0.05087609 +0.009080105 0.02934285 0.05087609 +0.01434988 0.02934285 0.05087609 +0.02107202 0.02934285 0.05087609 +0.02934285 0.02934285 0.05087609 +0.03925039 0.02934285 0.05087609 +0.05087609 0.02934285 0.05087609 +0.06429595 0.02934285 0.05087609 +0.07958143 0.02934285 0.05087609 +0.0968001 0.02934285 0.05087609 +0.1160161 0.02934285 0.05087609 +0.1372908 0.02934285 0.05087609 +0.1606827 0.02934285 0.05087609 +0.1862481 0.02934285 0.05087609 +0.2140411 0.02934285 0.05087609 +0.2441142 0.02934285 0.05087609 +0.2765176 0.02934285 0.05087609 +0.3113005 0.02934285 0.05087609 +0.3485102 0.02934285 0.05087609 +0.388193 0.02934285 0.05087609 +0.4303934 0.02934285 0.05087609 +0.4751555 0.02934285 0.05087609 +0.5225216 0.02934285 0.05087609 +0.5725335 0.02934285 0.05087609 +0.6252316 0.02934285 0.05087609 +0.6806558 0.02934285 0.05087609 +0.7388448 0.02934285 0.05087609 +0.7998369 0.02934285 0.05087609 +0.8636691 0.02934285 0.05087609 +0.9303782 0.02934285 0.05087609 +1 0.02934285 0.05087609 +0 0.03925039 0.05087609 +0.002418731 0.03925039 0.05087609 +0.005155668 0.03925039 0.05087609 +0.009080105 0.03925039 0.05087609 +0.01434988 0.03925039 0.05087609 +0.02107202 0.03925039 0.05087609 +0.02934285 0.03925039 0.05087609 +0.03925039 0.03925039 0.05087609 +0.05087609 0.03925039 0.05087609 +0.06429595 0.03925039 0.05087609 +0.07958143 0.03925039 0.05087609 +0.0968001 0.03925039 0.05087609 +0.1160161 0.03925039 0.05087609 +0.1372908 0.03925039 0.05087609 +0.1606827 0.03925039 0.05087609 +0.1862481 0.03925039 0.05087609 +0.2140411 0.03925039 0.05087609 +0.2441142 0.03925039 0.05087609 +0.2765176 0.03925039 0.05087609 +0.3113005 0.03925039 0.05087609 +0.3485102 0.03925039 0.05087609 +0.388193 0.03925039 0.05087609 +0.4303934 0.03925039 0.05087609 +0.4751555 0.03925039 0.05087609 +0.5225216 0.03925039 0.05087609 +0.5725335 0.03925039 0.05087609 +0.6252316 0.03925039 0.05087609 +0.6806558 0.03925039 0.05087609 +0.7388448 0.03925039 0.05087609 +0.7998369 0.03925039 0.05087609 +0.8636691 0.03925039 0.05087609 +0.9303782 0.03925039 0.05087609 +1 0.03925039 0.05087609 +0 0.05087609 0.05087609 +0.002418731 0.05087609 0.05087609 +0.005155668 0.05087609 0.05087609 +0.009080105 0.05087609 0.05087609 +0.01434988 0.05087609 0.05087609 +0.02107202 0.05087609 0.05087609 +0.02934285 0.05087609 0.05087609 +0.03925039 0.05087609 0.05087609 +0.05087609 0.05087609 0.05087609 +0.06429595 0.05087609 0.05087609 +0.07958143 0.05087609 0.05087609 +0.0968001 0.05087609 0.05087609 +0.1160161 0.05087609 0.05087609 +0.1372908 0.05087609 0.05087609 +0.1606827 0.05087609 0.05087609 +0.1862481 0.05087609 0.05087609 +0.2140411 0.05087609 0.05087609 +0.2441142 0.05087609 0.05087609 +0.2765176 0.05087609 0.05087609 +0.3113005 0.05087609 0.05087609 +0.3485102 0.05087609 0.05087609 +0.388193 0.05087609 0.05087609 +0.4303934 0.05087609 0.05087609 +0.4751555 0.05087609 0.05087609 +0.5225216 0.05087609 0.05087609 +0.5725335 0.05087609 0.05087609 +0.6252316 0.05087609 0.05087609 +0.6806558 0.05087609 0.05087609 +0.7388448 0.05087609 0.05087609 +0.7998369 0.05087609 0.05087609 +0.8636691 0.05087609 0.05087609 +0.9303782 0.05087609 0.05087609 +1 0.05087609 0.05087609 +0 0.06429595 0.05087609 +0.002418731 0.06429595 0.05087609 +0.005155668 0.06429595 0.05087609 +0.009080105 0.06429595 0.05087609 +0.01434988 0.06429595 0.05087609 +0.02107202 0.06429595 0.05087609 +0.02934285 0.06429595 0.05087609 +0.03925039 0.06429595 0.05087609 +0.05087609 0.06429595 0.05087609 +0.06429595 0.06429595 0.05087609 +0.07958143 0.06429595 0.05087609 +0.0968001 0.06429595 0.05087609 +0.1160161 0.06429595 0.05087609 +0.1372908 0.06429595 0.05087609 +0.1606827 0.06429595 0.05087609 +0.1862481 0.06429595 0.05087609 +0.2140411 0.06429595 0.05087609 +0.2441142 0.06429595 0.05087609 +0.2765176 0.06429595 0.05087609 +0.3113005 0.06429595 0.05087609 +0.3485102 0.06429595 0.05087609 +0.388193 0.06429595 0.05087609 +0.4303934 0.06429595 0.05087609 +0.4751555 0.06429595 0.05087609 +0.5225216 0.06429595 0.05087609 +0.5725335 0.06429595 0.05087609 +0.6252316 0.06429595 0.05087609 +0.6806558 0.06429595 0.05087609 +0.7388448 0.06429595 0.05087609 +0.7998369 0.06429595 0.05087609 +0.8636691 0.06429595 0.05087609 +0.9303782 0.06429595 0.05087609 +1 0.06429595 0.05087609 +0 0.07958143 0.05087609 +0.002418731 0.07958143 0.05087609 +0.005155668 0.07958143 0.05087609 +0.009080105 0.07958143 0.05087609 +0.01434988 0.07958143 0.05087609 +0.02107202 0.07958143 0.05087609 +0.02934285 0.07958143 0.05087609 +0.03925039 0.07958143 0.05087609 +0.05087609 0.07958143 0.05087609 +0.06429595 0.07958143 0.05087609 +0.07958143 0.07958143 0.05087609 +0.0968001 0.07958143 0.05087609 +0.1160161 0.07958143 0.05087609 +0.1372908 0.07958143 0.05087609 +0.1606827 0.07958143 0.05087609 +0.1862481 0.07958143 0.05087609 +0.2140411 0.07958143 0.05087609 +0.2441142 0.07958143 0.05087609 +0.2765176 0.07958143 0.05087609 +0.3113005 0.07958143 0.05087609 +0.3485102 0.07958143 0.05087609 +0.388193 0.07958143 0.05087609 +0.4303934 0.07958143 0.05087609 +0.4751555 0.07958143 0.05087609 +0.5225216 0.07958143 0.05087609 +0.5725335 0.07958143 0.05087609 +0.6252316 0.07958143 0.05087609 +0.6806558 0.07958143 0.05087609 +0.7388448 0.07958143 0.05087609 +0.7998369 0.07958143 0.05087609 +0.8636691 0.07958143 0.05087609 +0.9303782 0.07958143 0.05087609 +1 0.07958143 0.05087609 +0 0.0968001 0.05087609 +0.002418731 0.0968001 0.05087609 +0.005155668 0.0968001 0.05087609 +0.009080105 0.0968001 0.05087609 +0.01434988 0.0968001 0.05087609 +0.02107202 0.0968001 0.05087609 +0.02934285 0.0968001 0.05087609 +0.03925039 0.0968001 0.05087609 +0.05087609 0.0968001 0.05087609 +0.06429595 0.0968001 0.05087609 +0.07958143 0.0968001 0.05087609 +0.0968001 0.0968001 0.05087609 +0.1160161 0.0968001 0.05087609 +0.1372908 0.0968001 0.05087609 +0.1606827 0.0968001 0.05087609 +0.1862481 0.0968001 0.05087609 +0.2140411 0.0968001 0.05087609 +0.2441142 0.0968001 0.05087609 +0.2765176 0.0968001 0.05087609 +0.3113005 0.0968001 0.05087609 +0.3485102 0.0968001 0.05087609 +0.388193 0.0968001 0.05087609 +0.4303934 0.0968001 0.05087609 +0.4751555 0.0968001 0.05087609 +0.5225216 0.0968001 0.05087609 +0.5725335 0.0968001 0.05087609 +0.6252316 0.0968001 0.05087609 +0.6806558 0.0968001 0.05087609 +0.7388448 0.0968001 0.05087609 +0.7998369 0.0968001 0.05087609 +0.8636691 0.0968001 0.05087609 +0.9303782 0.0968001 0.05087609 +1 0.0968001 0.05087609 +0 0.1160161 0.05087609 +0.002418731 0.1160161 0.05087609 +0.005155668 0.1160161 0.05087609 +0.009080105 0.1160161 0.05087609 +0.01434988 0.1160161 0.05087609 +0.02107202 0.1160161 0.05087609 +0.02934285 0.1160161 0.05087609 +0.03925039 0.1160161 0.05087609 +0.05087609 0.1160161 0.05087609 +0.06429595 0.1160161 0.05087609 +0.07958143 0.1160161 0.05087609 +0.0968001 0.1160161 0.05087609 +0.1160161 0.1160161 0.05087609 +0.1372908 0.1160161 0.05087609 +0.1606827 0.1160161 0.05087609 +0.1862481 0.1160161 0.05087609 +0.2140411 0.1160161 0.05087609 +0.2441142 0.1160161 0.05087609 +0.2765176 0.1160161 0.05087609 +0.3113005 0.1160161 0.05087609 +0.3485102 0.1160161 0.05087609 +0.388193 0.1160161 0.05087609 +0.4303934 0.1160161 0.05087609 +0.4751555 0.1160161 0.05087609 +0.5225216 0.1160161 0.05087609 +0.5725335 0.1160161 0.05087609 +0.6252316 0.1160161 0.05087609 +0.6806558 0.1160161 0.05087609 +0.7388448 0.1160161 0.05087609 +0.7998369 0.1160161 0.05087609 +0.8636691 0.1160161 0.05087609 +0.9303782 0.1160161 0.05087609 +1 0.1160161 0.05087609 +0 0.1372908 0.05087609 +0.002418731 0.1372908 0.05087609 +0.005155668 0.1372908 0.05087609 +0.009080105 0.1372908 0.05087609 +0.01434988 0.1372908 0.05087609 +0.02107202 0.1372908 0.05087609 +0.02934285 0.1372908 0.05087609 +0.03925039 0.1372908 0.05087609 +0.05087609 0.1372908 0.05087609 +0.06429595 0.1372908 0.05087609 +0.07958143 0.1372908 0.05087609 +0.0968001 0.1372908 0.05087609 +0.1160161 0.1372908 0.05087609 +0.1372908 0.1372908 0.05087609 +0.1606827 0.1372908 0.05087609 +0.1862481 0.1372908 0.05087609 +0.2140411 0.1372908 0.05087609 +0.2441142 0.1372908 0.05087609 +0.2765176 0.1372908 0.05087609 +0.3113005 0.1372908 0.05087609 +0.3485102 0.1372908 0.05087609 +0.388193 0.1372908 0.05087609 +0.4303934 0.1372908 0.05087609 +0.4751555 0.1372908 0.05087609 +0.5225216 0.1372908 0.05087609 +0.5725335 0.1372908 0.05087609 +0.6252316 0.1372908 0.05087609 +0.6806558 0.1372908 0.05087609 +0.7388448 0.1372908 0.05087609 +0.7998369 0.1372908 0.05087609 +0.8636691 0.1372908 0.05087609 +0.9303782 0.1372908 0.05087609 +1 0.1372908 0.05087609 +0 0.1606827 0.05087609 +0.002418731 0.1606827 0.05087609 +0.005155668 0.1606827 0.05087609 +0.009080105 0.1606827 0.05087609 +0.01434988 0.1606827 0.05087609 +0.02107202 0.1606827 0.05087609 +0.02934285 0.1606827 0.05087609 +0.03925039 0.1606827 0.05087609 +0.05087609 0.1606827 0.05087609 +0.06429595 0.1606827 0.05087609 +0.07958143 0.1606827 0.05087609 +0.0968001 0.1606827 0.05087609 +0.1160161 0.1606827 0.05087609 +0.1372908 0.1606827 0.05087609 +0.1606827 0.1606827 0.05087609 +0.1862481 0.1606827 0.05087609 +0.2140411 0.1606827 0.05087609 +0.2441142 0.1606827 0.05087609 +0.2765176 0.1606827 0.05087609 +0.3113005 0.1606827 0.05087609 +0.3485102 0.1606827 0.05087609 +0.388193 0.1606827 0.05087609 +0.4303934 0.1606827 0.05087609 +0.4751555 0.1606827 0.05087609 +0.5225216 0.1606827 0.05087609 +0.5725335 0.1606827 0.05087609 +0.6252316 0.1606827 0.05087609 +0.6806558 0.1606827 0.05087609 +0.7388448 0.1606827 0.05087609 +0.7998369 0.1606827 0.05087609 +0.8636691 0.1606827 0.05087609 +0.9303782 0.1606827 0.05087609 +1 0.1606827 0.05087609 +0 0.1862481 0.05087609 +0.002418731 0.1862481 0.05087609 +0.005155668 0.1862481 0.05087609 +0.009080105 0.1862481 0.05087609 +0.01434988 0.1862481 0.05087609 +0.02107202 0.1862481 0.05087609 +0.02934285 0.1862481 0.05087609 +0.03925039 0.1862481 0.05087609 +0.05087609 0.1862481 0.05087609 +0.06429595 0.1862481 0.05087609 +0.07958143 0.1862481 0.05087609 +0.0968001 0.1862481 0.05087609 +0.1160161 0.1862481 0.05087609 +0.1372908 0.1862481 0.05087609 +0.1606827 0.1862481 0.05087609 +0.1862481 0.1862481 0.05087609 +0.2140411 0.1862481 0.05087609 +0.2441142 0.1862481 0.05087609 +0.2765176 0.1862481 0.05087609 +0.3113005 0.1862481 0.05087609 +0.3485102 0.1862481 0.05087609 +0.388193 0.1862481 0.05087609 +0.4303934 0.1862481 0.05087609 +0.4751555 0.1862481 0.05087609 +0.5225216 0.1862481 0.05087609 +0.5725335 0.1862481 0.05087609 +0.6252316 0.1862481 0.05087609 +0.6806558 0.1862481 0.05087609 +0.7388448 0.1862481 0.05087609 +0.7998369 0.1862481 0.05087609 +0.8636691 0.1862481 0.05087609 +0.9303782 0.1862481 0.05087609 +1 0.1862481 0.05087609 +0 0.2140411 0.05087609 +0.002418731 0.2140411 0.05087609 +0.005155668 0.2140411 0.05087609 +0.009080105 0.2140411 0.05087609 +0.01434988 0.2140411 0.05087609 +0.02107202 0.2140411 0.05087609 +0.02934285 0.2140411 0.05087609 +0.03925039 0.2140411 0.05087609 +0.05087609 0.2140411 0.05087609 +0.06429595 0.2140411 0.05087609 +0.07958143 0.2140411 0.05087609 +0.0968001 0.2140411 0.05087609 +0.1160161 0.2140411 0.05087609 +0.1372908 0.2140411 0.05087609 +0.1606827 0.2140411 0.05087609 +0.1862481 0.2140411 0.05087609 +0.2140411 0.2140411 0.05087609 +0.2441142 0.2140411 0.05087609 +0.2765176 0.2140411 0.05087609 +0.3113005 0.2140411 0.05087609 +0.3485102 0.2140411 0.05087609 +0.388193 0.2140411 0.05087609 +0.4303934 0.2140411 0.05087609 +0.4751555 0.2140411 0.05087609 +0.5225216 0.2140411 0.05087609 +0.5725335 0.2140411 0.05087609 +0.6252316 0.2140411 0.05087609 +0.6806558 0.2140411 0.05087609 +0.7388448 0.2140411 0.05087609 +0.7998369 0.2140411 0.05087609 +0.8636691 0.2140411 0.05087609 +0.9303782 0.2140411 0.05087609 +1 0.2140411 0.05087609 +0 0.2441142 0.05087609 +0.002418731 0.2441142 0.05087609 +0.005155668 0.2441142 0.05087609 +0.009080105 0.2441142 0.05087609 +0.01434988 0.2441142 0.05087609 +0.02107202 0.2441142 0.05087609 +0.02934285 0.2441142 0.05087609 +0.03925039 0.2441142 0.05087609 +0.05087609 0.2441142 0.05087609 +0.06429595 0.2441142 0.05087609 +0.07958143 0.2441142 0.05087609 +0.0968001 0.2441142 0.05087609 +0.1160161 0.2441142 0.05087609 +0.1372908 0.2441142 0.05087609 +0.1606827 0.2441142 0.05087609 +0.1862481 0.2441142 0.05087609 +0.2140411 0.2441142 0.05087609 +0.2441142 0.2441142 0.05087609 +0.2765176 0.2441142 0.05087609 +0.3113005 0.2441142 0.05087609 +0.3485102 0.2441142 0.05087609 +0.388193 0.2441142 0.05087609 +0.4303934 0.2441142 0.05087609 +0.4751555 0.2441142 0.05087609 +0.5225216 0.2441142 0.05087609 +0.5725335 0.2441142 0.05087609 +0.6252316 0.2441142 0.05087609 +0.6806558 0.2441142 0.05087609 +0.7388448 0.2441142 0.05087609 +0.7998369 0.2441142 0.05087609 +0.8636691 0.2441142 0.05087609 +0.9303782 0.2441142 0.05087609 +1 0.2441142 0.05087609 +0 0.2765176 0.05087609 +0.002418731 0.2765176 0.05087609 +0.005155668 0.2765176 0.05087609 +0.009080105 0.2765176 0.05087609 +0.01434988 0.2765176 0.05087609 +0.02107202 0.2765176 0.05087609 +0.02934285 0.2765176 0.05087609 +0.03925039 0.2765176 0.05087609 +0.05087609 0.2765176 0.05087609 +0.06429595 0.2765176 0.05087609 +0.07958143 0.2765176 0.05087609 +0.0968001 0.2765176 0.05087609 +0.1160161 0.2765176 0.05087609 +0.1372908 0.2765176 0.05087609 +0.1606827 0.2765176 0.05087609 +0.1862481 0.2765176 0.05087609 +0.2140411 0.2765176 0.05087609 +0.2441142 0.2765176 0.05087609 +0.2765176 0.2765176 0.05087609 +0.3113005 0.2765176 0.05087609 +0.3485102 0.2765176 0.05087609 +0.388193 0.2765176 0.05087609 +0.4303934 0.2765176 0.05087609 +0.4751555 0.2765176 0.05087609 +0.5225216 0.2765176 0.05087609 +0.5725335 0.2765176 0.05087609 +0.6252316 0.2765176 0.05087609 +0.6806558 0.2765176 0.05087609 +0.7388448 0.2765176 0.05087609 +0.7998369 0.2765176 0.05087609 +0.8636691 0.2765176 0.05087609 +0.9303782 0.2765176 0.05087609 +1 0.2765176 0.05087609 +0 0.3113005 0.05087609 +0.002418731 0.3113005 0.05087609 +0.005155668 0.3113005 0.05087609 +0.009080105 0.3113005 0.05087609 +0.01434988 0.3113005 0.05087609 +0.02107202 0.3113005 0.05087609 +0.02934285 0.3113005 0.05087609 +0.03925039 0.3113005 0.05087609 +0.05087609 0.3113005 0.05087609 +0.06429595 0.3113005 0.05087609 +0.07958143 0.3113005 0.05087609 +0.0968001 0.3113005 0.05087609 +0.1160161 0.3113005 0.05087609 +0.1372908 0.3113005 0.05087609 +0.1606827 0.3113005 0.05087609 +0.1862481 0.3113005 0.05087609 +0.2140411 0.3113005 0.05087609 +0.2441142 0.3113005 0.05087609 +0.2765176 0.3113005 0.05087609 +0.3113005 0.3113005 0.05087609 +0.3485102 0.3113005 0.05087609 +0.388193 0.3113005 0.05087609 +0.4303934 0.3113005 0.05087609 +0.4751555 0.3113005 0.05087609 +0.5225216 0.3113005 0.05087609 +0.5725335 0.3113005 0.05087609 +0.6252316 0.3113005 0.05087609 +0.6806558 0.3113005 0.05087609 +0.7388448 0.3113005 0.05087609 +0.7998369 0.3113005 0.05087609 +0.8636691 0.3113005 0.05087609 +0.9303782 0.3113005 0.05087609 +1 0.3113005 0.05087609 +0 0.3485102 0.05087609 +0.002418731 0.3485102 0.05087609 +0.005155668 0.3485102 0.05087609 +0.009080105 0.3485102 0.05087609 +0.01434988 0.3485102 0.05087609 +0.02107202 0.3485102 0.05087609 +0.02934285 0.3485102 0.05087609 +0.03925039 0.3485102 0.05087609 +0.05087609 0.3485102 0.05087609 +0.06429595 0.3485102 0.05087609 +0.07958143 0.3485102 0.05087609 +0.0968001 0.3485102 0.05087609 +0.1160161 0.3485102 0.05087609 +0.1372908 0.3485102 0.05087609 +0.1606827 0.3485102 0.05087609 +0.1862481 0.3485102 0.05087609 +0.2140411 0.3485102 0.05087609 +0.2441142 0.3485102 0.05087609 +0.2765176 0.3485102 0.05087609 +0.3113005 0.3485102 0.05087609 +0.3485102 0.3485102 0.05087609 +0.388193 0.3485102 0.05087609 +0.4303934 0.3485102 0.05087609 +0.4751555 0.3485102 0.05087609 +0.5225216 0.3485102 0.05087609 +0.5725335 0.3485102 0.05087609 +0.6252316 0.3485102 0.05087609 +0.6806558 0.3485102 0.05087609 +0.7388448 0.3485102 0.05087609 +0.7998369 0.3485102 0.05087609 +0.8636691 0.3485102 0.05087609 +0.9303782 0.3485102 0.05087609 +1 0.3485102 0.05087609 +0 0.388193 0.05087609 +0.002418731 0.388193 0.05087609 +0.005155668 0.388193 0.05087609 +0.009080105 0.388193 0.05087609 +0.01434988 0.388193 0.05087609 +0.02107202 0.388193 0.05087609 +0.02934285 0.388193 0.05087609 +0.03925039 0.388193 0.05087609 +0.05087609 0.388193 0.05087609 +0.06429595 0.388193 0.05087609 +0.07958143 0.388193 0.05087609 +0.0968001 0.388193 0.05087609 +0.1160161 0.388193 0.05087609 +0.1372908 0.388193 0.05087609 +0.1606827 0.388193 0.05087609 +0.1862481 0.388193 0.05087609 +0.2140411 0.388193 0.05087609 +0.2441142 0.388193 0.05087609 +0.2765176 0.388193 0.05087609 +0.3113005 0.388193 0.05087609 +0.3485102 0.388193 0.05087609 +0.388193 0.388193 0.05087609 +0.4303934 0.388193 0.05087609 +0.4751555 0.388193 0.05087609 +0.5225216 0.388193 0.05087609 +0.5725335 0.388193 0.05087609 +0.6252316 0.388193 0.05087609 +0.6806558 0.388193 0.05087609 +0.7388448 0.388193 0.05087609 +0.7998369 0.388193 0.05087609 +0.8636691 0.388193 0.05087609 +0.9303782 0.388193 0.05087609 +1 0.388193 0.05087609 +0 0.4303934 0.05087609 +0.002418731 0.4303934 0.05087609 +0.005155668 0.4303934 0.05087609 +0.009080105 0.4303934 0.05087609 +0.01434988 0.4303934 0.05087609 +0.02107202 0.4303934 0.05087609 +0.02934285 0.4303934 0.05087609 +0.03925039 0.4303934 0.05087609 +0.05087609 0.4303934 0.05087609 +0.06429595 0.4303934 0.05087609 +0.07958143 0.4303934 0.05087609 +0.0968001 0.4303934 0.05087609 +0.1160161 0.4303934 0.05087609 +0.1372908 0.4303934 0.05087609 +0.1606827 0.4303934 0.05087609 +0.1862481 0.4303934 0.05087609 +0.2140411 0.4303934 0.05087609 +0.2441142 0.4303934 0.05087609 +0.2765176 0.4303934 0.05087609 +0.3113005 0.4303934 0.05087609 +0.3485102 0.4303934 0.05087609 +0.388193 0.4303934 0.05087609 +0.4303934 0.4303934 0.05087609 +0.4751555 0.4303934 0.05087609 +0.5225216 0.4303934 0.05087609 +0.5725335 0.4303934 0.05087609 +0.6252316 0.4303934 0.05087609 +0.6806558 0.4303934 0.05087609 +0.7388448 0.4303934 0.05087609 +0.7998369 0.4303934 0.05087609 +0.8636691 0.4303934 0.05087609 +0.9303782 0.4303934 0.05087609 +1 0.4303934 0.05087609 +0 0.4751555 0.05087609 +0.002418731 0.4751555 0.05087609 +0.005155668 0.4751555 0.05087609 +0.009080105 0.4751555 0.05087609 +0.01434988 0.4751555 0.05087609 +0.02107202 0.4751555 0.05087609 +0.02934285 0.4751555 0.05087609 +0.03925039 0.4751555 0.05087609 +0.05087609 0.4751555 0.05087609 +0.06429595 0.4751555 0.05087609 +0.07958143 0.4751555 0.05087609 +0.0968001 0.4751555 0.05087609 +0.1160161 0.4751555 0.05087609 +0.1372908 0.4751555 0.05087609 +0.1606827 0.4751555 0.05087609 +0.1862481 0.4751555 0.05087609 +0.2140411 0.4751555 0.05087609 +0.2441142 0.4751555 0.05087609 +0.2765176 0.4751555 0.05087609 +0.3113005 0.4751555 0.05087609 +0.3485102 0.4751555 0.05087609 +0.388193 0.4751555 0.05087609 +0.4303934 0.4751555 0.05087609 +0.4751555 0.4751555 0.05087609 +0.5225216 0.4751555 0.05087609 +0.5725335 0.4751555 0.05087609 +0.6252316 0.4751555 0.05087609 +0.6806558 0.4751555 0.05087609 +0.7388448 0.4751555 0.05087609 +0.7998369 0.4751555 0.05087609 +0.8636691 0.4751555 0.05087609 +0.9303782 0.4751555 0.05087609 +1 0.4751555 0.05087609 +0 0.5225216 0.05087609 +0.002418731 0.5225216 0.05087609 +0.005155668 0.5225216 0.05087609 +0.009080105 0.5225216 0.05087609 +0.01434988 0.5225216 0.05087609 +0.02107202 0.5225216 0.05087609 +0.02934285 0.5225216 0.05087609 +0.03925039 0.5225216 0.05087609 +0.05087609 0.5225216 0.05087609 +0.06429595 0.5225216 0.05087609 +0.07958143 0.5225216 0.05087609 +0.0968001 0.5225216 0.05087609 +0.1160161 0.5225216 0.05087609 +0.1372908 0.5225216 0.05087609 +0.1606827 0.5225216 0.05087609 +0.1862481 0.5225216 0.05087609 +0.2140411 0.5225216 0.05087609 +0.2441142 0.5225216 0.05087609 +0.2765176 0.5225216 0.05087609 +0.3113005 0.5225216 0.05087609 +0.3485102 0.5225216 0.05087609 +0.388193 0.5225216 0.05087609 +0.4303934 0.5225216 0.05087609 +0.4751555 0.5225216 0.05087609 +0.5225216 0.5225216 0.05087609 +0.5725335 0.5225216 0.05087609 +0.6252316 0.5225216 0.05087609 +0.6806558 0.5225216 0.05087609 +0.7388448 0.5225216 0.05087609 +0.7998369 0.5225216 0.05087609 +0.8636691 0.5225216 0.05087609 +0.9303782 0.5225216 0.05087609 +1 0.5225216 0.05087609 +0 0.5725335 0.05087609 +0.002418731 0.5725335 0.05087609 +0.005155668 0.5725335 0.05087609 +0.009080105 0.5725335 0.05087609 +0.01434988 0.5725335 0.05087609 +0.02107202 0.5725335 0.05087609 +0.02934285 0.5725335 0.05087609 +0.03925039 0.5725335 0.05087609 +0.05087609 0.5725335 0.05087609 +0.06429595 0.5725335 0.05087609 +0.07958143 0.5725335 0.05087609 +0.0968001 0.5725335 0.05087609 +0.1160161 0.5725335 0.05087609 +0.1372908 0.5725335 0.05087609 +0.1606827 0.5725335 0.05087609 +0.1862481 0.5725335 0.05087609 +0.2140411 0.5725335 0.05087609 +0.2441142 0.5725335 0.05087609 +0.2765176 0.5725335 0.05087609 +0.3113005 0.5725335 0.05087609 +0.3485102 0.5725335 0.05087609 +0.388193 0.5725335 0.05087609 +0.4303934 0.5725335 0.05087609 +0.4751555 0.5725335 0.05087609 +0.5225216 0.5725335 0.05087609 +0.5725335 0.5725335 0.05087609 +0.6252316 0.5725335 0.05087609 +0.6806558 0.5725335 0.05087609 +0.7388448 0.5725335 0.05087609 +0.7998369 0.5725335 0.05087609 +0.8636691 0.5725335 0.05087609 +0.9303782 0.5725335 0.05087609 +1 0.5725335 0.05087609 +0 0.6252316 0.05087609 +0.002418731 0.6252316 0.05087609 +0.005155668 0.6252316 0.05087609 +0.009080105 0.6252316 0.05087609 +0.01434988 0.6252316 0.05087609 +0.02107202 0.6252316 0.05087609 +0.02934285 0.6252316 0.05087609 +0.03925039 0.6252316 0.05087609 +0.05087609 0.6252316 0.05087609 +0.06429595 0.6252316 0.05087609 +0.07958143 0.6252316 0.05087609 +0.0968001 0.6252316 0.05087609 +0.1160161 0.6252316 0.05087609 +0.1372908 0.6252316 0.05087609 +0.1606827 0.6252316 0.05087609 +0.1862481 0.6252316 0.05087609 +0.2140411 0.6252316 0.05087609 +0.2441142 0.6252316 0.05087609 +0.2765176 0.6252316 0.05087609 +0.3113005 0.6252316 0.05087609 +0.3485102 0.6252316 0.05087609 +0.388193 0.6252316 0.05087609 +0.4303934 0.6252316 0.05087609 +0.4751555 0.6252316 0.05087609 +0.5225216 0.6252316 0.05087609 +0.5725335 0.6252316 0.05087609 +0.6252316 0.6252316 0.05087609 +0.6806558 0.6252316 0.05087609 +0.7388448 0.6252316 0.05087609 +0.7998369 0.6252316 0.05087609 +0.8636691 0.6252316 0.05087609 +0.9303782 0.6252316 0.05087609 +1 0.6252316 0.05087609 +0 0.6806558 0.05087609 +0.002418731 0.6806558 0.05087609 +0.005155668 0.6806558 0.05087609 +0.009080105 0.6806558 0.05087609 +0.01434988 0.6806558 0.05087609 +0.02107202 0.6806558 0.05087609 +0.02934285 0.6806558 0.05087609 +0.03925039 0.6806558 0.05087609 +0.05087609 0.6806558 0.05087609 +0.06429595 0.6806558 0.05087609 +0.07958143 0.6806558 0.05087609 +0.0968001 0.6806558 0.05087609 +0.1160161 0.6806558 0.05087609 +0.1372908 0.6806558 0.05087609 +0.1606827 0.6806558 0.05087609 +0.1862481 0.6806558 0.05087609 +0.2140411 0.6806558 0.05087609 +0.2441142 0.6806558 0.05087609 +0.2765176 0.6806558 0.05087609 +0.3113005 0.6806558 0.05087609 +0.3485102 0.6806558 0.05087609 +0.388193 0.6806558 0.05087609 +0.4303934 0.6806558 0.05087609 +0.4751555 0.6806558 0.05087609 +0.5225216 0.6806558 0.05087609 +0.5725335 0.6806558 0.05087609 +0.6252316 0.6806558 0.05087609 +0.6806558 0.6806558 0.05087609 +0.7388448 0.6806558 0.05087609 +0.7998369 0.6806558 0.05087609 +0.8636691 0.6806558 0.05087609 +0.9303782 0.6806558 0.05087609 +1 0.6806558 0.05087609 +0 0.7388448 0.05087609 +0.002418731 0.7388448 0.05087609 +0.005155668 0.7388448 0.05087609 +0.009080105 0.7388448 0.05087609 +0.01434988 0.7388448 0.05087609 +0.02107202 0.7388448 0.05087609 +0.02934285 0.7388448 0.05087609 +0.03925039 0.7388448 0.05087609 +0.05087609 0.7388448 0.05087609 +0.06429595 0.7388448 0.05087609 +0.07958143 0.7388448 0.05087609 +0.0968001 0.7388448 0.05087609 +0.1160161 0.7388448 0.05087609 +0.1372908 0.7388448 0.05087609 +0.1606827 0.7388448 0.05087609 +0.1862481 0.7388448 0.05087609 +0.2140411 0.7388448 0.05087609 +0.2441142 0.7388448 0.05087609 +0.2765176 0.7388448 0.05087609 +0.3113005 0.7388448 0.05087609 +0.3485102 0.7388448 0.05087609 +0.388193 0.7388448 0.05087609 +0.4303934 0.7388448 0.05087609 +0.4751555 0.7388448 0.05087609 +0.5225216 0.7388448 0.05087609 +0.5725335 0.7388448 0.05087609 +0.6252316 0.7388448 0.05087609 +0.6806558 0.7388448 0.05087609 +0.7388448 0.7388448 0.05087609 +0.7998369 0.7388448 0.05087609 +0.8636691 0.7388448 0.05087609 +0.9303782 0.7388448 0.05087609 +1 0.7388448 0.05087609 +0 0.7998369 0.05087609 +0.002418731 0.7998369 0.05087609 +0.005155668 0.7998369 0.05087609 +0.009080105 0.7998369 0.05087609 +0.01434988 0.7998369 0.05087609 +0.02107202 0.7998369 0.05087609 +0.02934285 0.7998369 0.05087609 +0.03925039 0.7998369 0.05087609 +0.05087609 0.7998369 0.05087609 +0.06429595 0.7998369 0.05087609 +0.07958143 0.7998369 0.05087609 +0.0968001 0.7998369 0.05087609 +0.1160161 0.7998369 0.05087609 +0.1372908 0.7998369 0.05087609 +0.1606827 0.7998369 0.05087609 +0.1862481 0.7998369 0.05087609 +0.2140411 0.7998369 0.05087609 +0.2441142 0.7998369 0.05087609 +0.2765176 0.7998369 0.05087609 +0.3113005 0.7998369 0.05087609 +0.3485102 0.7998369 0.05087609 +0.388193 0.7998369 0.05087609 +0.4303934 0.7998369 0.05087609 +0.4751555 0.7998369 0.05087609 +0.5225216 0.7998369 0.05087609 +0.5725335 0.7998369 0.05087609 +0.6252316 0.7998369 0.05087609 +0.6806558 0.7998369 0.05087609 +0.7388448 0.7998369 0.05087609 +0.7998369 0.7998369 0.05087609 +0.8636691 0.7998369 0.05087609 +0.9303782 0.7998369 0.05087609 +1 0.7998369 0.05087609 +0 0.8636691 0.05087609 +0.002418731 0.8636691 0.05087609 +0.005155668 0.8636691 0.05087609 +0.009080105 0.8636691 0.05087609 +0.01434988 0.8636691 0.05087609 +0.02107202 0.8636691 0.05087609 +0.02934285 0.8636691 0.05087609 +0.03925039 0.8636691 0.05087609 +0.05087609 0.8636691 0.05087609 +0.06429595 0.8636691 0.05087609 +0.07958143 0.8636691 0.05087609 +0.0968001 0.8636691 0.05087609 +0.1160161 0.8636691 0.05087609 +0.1372908 0.8636691 0.05087609 +0.1606827 0.8636691 0.05087609 +0.1862481 0.8636691 0.05087609 +0.2140411 0.8636691 0.05087609 +0.2441142 0.8636691 0.05087609 +0.2765176 0.8636691 0.05087609 +0.3113005 0.8636691 0.05087609 +0.3485102 0.8636691 0.05087609 +0.388193 0.8636691 0.05087609 +0.4303934 0.8636691 0.05087609 +0.4751555 0.8636691 0.05087609 +0.5225216 0.8636691 0.05087609 +0.5725335 0.8636691 0.05087609 +0.6252316 0.8636691 0.05087609 +0.6806558 0.8636691 0.05087609 +0.7388448 0.8636691 0.05087609 +0.7998369 0.8636691 0.05087609 +0.8636691 0.8636691 0.05087609 +0.9303782 0.8636691 0.05087609 +1 0.8636691 0.05087609 +0 0.9303782 0.05087609 +0.002418731 0.9303782 0.05087609 +0.005155668 0.9303782 0.05087609 +0.009080105 0.9303782 0.05087609 +0.01434988 0.9303782 0.05087609 +0.02107202 0.9303782 0.05087609 +0.02934285 0.9303782 0.05087609 +0.03925039 0.9303782 0.05087609 +0.05087609 0.9303782 0.05087609 +0.06429595 0.9303782 0.05087609 +0.07958143 0.9303782 0.05087609 +0.0968001 0.9303782 0.05087609 +0.1160161 0.9303782 0.05087609 +0.1372908 0.9303782 0.05087609 +0.1606827 0.9303782 0.05087609 +0.1862481 0.9303782 0.05087609 +0.2140411 0.9303782 0.05087609 +0.2441142 0.9303782 0.05087609 +0.2765176 0.9303782 0.05087609 +0.3113005 0.9303782 0.05087609 +0.3485102 0.9303782 0.05087609 +0.388193 0.9303782 0.05087609 +0.4303934 0.9303782 0.05087609 +0.4751555 0.9303782 0.05087609 +0.5225216 0.9303782 0.05087609 +0.5725335 0.9303782 0.05087609 +0.6252316 0.9303782 0.05087609 +0.6806558 0.9303782 0.05087609 +0.7388448 0.9303782 0.05087609 +0.7998369 0.9303782 0.05087609 +0.8636691 0.9303782 0.05087609 +0.9303782 0.9303782 0.05087609 +1 0.9303782 0.05087609 +0 1 0.05087609 +0.002418731 1 0.05087609 +0.005155668 1 0.05087609 +0.009080105 1 0.05087609 +0.01434988 1 0.05087609 +0.02107202 1 0.05087609 +0.02934285 1 0.05087609 +0.03925039 1 0.05087609 +0.05087609 1 0.05087609 +0.06429595 1 0.05087609 +0.07958143 1 0.05087609 +0.0968001 1 0.05087609 +0.1160161 1 0.05087609 +0.1372908 1 0.05087609 +0.1606827 1 0.05087609 +0.1862481 1 0.05087609 +0.2140411 1 0.05087609 +0.2441142 1 0.05087609 +0.2765176 1 0.05087609 +0.3113005 1 0.05087609 +0.3485102 1 0.05087609 +0.388193 1 0.05087609 +0.4303934 1 0.05087609 +0.4751555 1 0.05087609 +0.5225216 1 0.05087609 +0.5725335 1 0.05087609 +0.6252316 1 0.05087609 +0.6806558 1 0.05087609 +0.7388448 1 0.05087609 +0.7998369 1 0.05087609 +0.8636691 1 0.05087609 +0.9303782 1 0.05087609 +1 1 0.05087609 +0 0 0.06429595 +0.002418731 0 0.06429595 +0.005155668 0 0.06429595 +0.009080105 0 0.06429595 +0.01434988 0 0.06429595 +0.02107202 0 0.06429595 +0.02934285 0 0.06429595 +0.03925039 0 0.06429595 +0.05087609 0 0.06429595 +0.06429595 0 0.06429595 +0.07958143 0 0.06429595 +0.0968001 0 0.06429595 +0.1160161 0 0.06429595 +0.1372908 0 0.06429595 +0.1606827 0 0.06429595 +0.1862481 0 0.06429595 +0.2140411 0 0.06429595 +0.2441142 0 0.06429595 +0.2765176 0 0.06429595 +0.3113005 0 0.06429595 +0.3485102 0 0.06429595 +0.388193 0 0.06429595 +0.4303934 0 0.06429595 +0.4751555 0 0.06429595 +0.5225216 0 0.06429595 +0.5725335 0 0.06429595 +0.6252316 0 0.06429595 +0.6806558 0 0.06429595 +0.7388448 0 0.06429595 +0.7998369 0 0.06429595 +0.8636691 0 0.06429595 +0.9303782 0 0.06429595 +1 0 0.06429595 +0 0.002418731 0.06429595 +0.002418731 0.002418731 0.06429595 +0.005155668 0.002418731 0.06429595 +0.009080105 0.002418731 0.06429595 +0.01434988 0.002418731 0.06429595 +0.02107202 0.002418731 0.06429595 +0.02934285 0.002418731 0.06429595 +0.03925039 0.002418731 0.06429595 +0.05087609 0.002418731 0.06429595 +0.06429595 0.002418731 0.06429595 +0.07958143 0.002418731 0.06429595 +0.0968001 0.002418731 0.06429595 +0.1160161 0.002418731 0.06429595 +0.1372908 0.002418731 0.06429595 +0.1606827 0.002418731 0.06429595 +0.1862481 0.002418731 0.06429595 +0.2140411 0.002418731 0.06429595 +0.2441142 0.002418731 0.06429595 +0.2765176 0.002418731 0.06429595 +0.3113005 0.002418731 0.06429595 +0.3485102 0.002418731 0.06429595 +0.388193 0.002418731 0.06429595 +0.4303934 0.002418731 0.06429595 +0.4751555 0.002418731 0.06429595 +0.5225216 0.002418731 0.06429595 +0.5725335 0.002418731 0.06429595 +0.6252316 0.002418731 0.06429595 +0.6806558 0.002418731 0.06429595 +0.7388448 0.002418731 0.06429595 +0.7998369 0.002418731 0.06429595 +0.8636691 0.002418731 0.06429595 +0.9303782 0.002418731 0.06429595 +1 0.002418731 0.06429595 +0 0.005155668 0.06429595 +0.002418731 0.005155668 0.06429595 +0.005155668 0.005155668 0.06429595 +0.009080105 0.005155668 0.06429595 +0.01434988 0.005155668 0.06429595 +0.02107202 0.005155668 0.06429595 +0.02934285 0.005155668 0.06429595 +0.03925039 0.005155668 0.06429595 +0.05087609 0.005155668 0.06429595 +0.06429595 0.005155668 0.06429595 +0.07958143 0.005155668 0.06429595 +0.0968001 0.005155668 0.06429595 +0.1160161 0.005155668 0.06429595 +0.1372908 0.005155668 0.06429595 +0.1606827 0.005155668 0.06429595 +0.1862481 0.005155668 0.06429595 +0.2140411 0.005155668 0.06429595 +0.2441142 0.005155668 0.06429595 +0.2765176 0.005155668 0.06429595 +0.3113005 0.005155668 0.06429595 +0.3485102 0.005155668 0.06429595 +0.388193 0.005155668 0.06429595 +0.4303934 0.005155668 0.06429595 +0.4751555 0.005155668 0.06429595 +0.5225216 0.005155668 0.06429595 +0.5725335 0.005155668 0.06429595 +0.6252316 0.005155668 0.06429595 +0.6806558 0.005155668 0.06429595 +0.7388448 0.005155668 0.06429595 +0.7998369 0.005155668 0.06429595 +0.8636691 0.005155668 0.06429595 +0.9303782 0.005155668 0.06429595 +1 0.005155668 0.06429595 +0 0.009080105 0.06429595 +0.002418731 0.009080105 0.06429595 +0.005155668 0.009080105 0.06429595 +0.009080105 0.009080105 0.06429595 +0.01434988 0.009080105 0.06429595 +0.02107202 0.009080105 0.06429595 +0.02934285 0.009080105 0.06429595 +0.03925039 0.009080105 0.06429595 +0.05087609 0.009080105 0.06429595 +0.06429595 0.009080105 0.06429595 +0.07958143 0.009080105 0.06429595 +0.0968001 0.009080105 0.06429595 +0.1160161 0.009080105 0.06429595 +0.1372908 0.009080105 0.06429595 +0.1606827 0.009080105 0.06429595 +0.1862481 0.009080105 0.06429595 +0.2140411 0.009080105 0.06429595 +0.2441142 0.009080105 0.06429595 +0.2765176 0.009080105 0.06429595 +0.3113005 0.009080105 0.06429595 +0.3485102 0.009080105 0.06429595 +0.388193 0.009080105 0.06429595 +0.4303934 0.009080105 0.06429595 +0.4751555 0.009080105 0.06429595 +0.5225216 0.009080105 0.06429595 +0.5725335 0.009080105 0.06429595 +0.6252316 0.009080105 0.06429595 +0.6806558 0.009080105 0.06429595 +0.7388448 0.009080105 0.06429595 +0.7998369 0.009080105 0.06429595 +0.8636691 0.009080105 0.06429595 +0.9303782 0.009080105 0.06429595 +1 0.009080105 0.06429595 +0 0.01434988 0.06429595 +0.002418731 0.01434988 0.06429595 +0.005155668 0.01434988 0.06429595 +0.009080105 0.01434988 0.06429595 +0.01434988 0.01434988 0.06429595 +0.02107202 0.01434988 0.06429595 +0.02934285 0.01434988 0.06429595 +0.03925039 0.01434988 0.06429595 +0.05087609 0.01434988 0.06429595 +0.06429595 0.01434988 0.06429595 +0.07958143 0.01434988 0.06429595 +0.0968001 0.01434988 0.06429595 +0.1160161 0.01434988 0.06429595 +0.1372908 0.01434988 0.06429595 +0.1606827 0.01434988 0.06429595 +0.1862481 0.01434988 0.06429595 +0.2140411 0.01434988 0.06429595 +0.2441142 0.01434988 0.06429595 +0.2765176 0.01434988 0.06429595 +0.3113005 0.01434988 0.06429595 +0.3485102 0.01434988 0.06429595 +0.388193 0.01434988 0.06429595 +0.4303934 0.01434988 0.06429595 +0.4751555 0.01434988 0.06429595 +0.5225216 0.01434988 0.06429595 +0.5725335 0.01434988 0.06429595 +0.6252316 0.01434988 0.06429595 +0.6806558 0.01434988 0.06429595 +0.7388448 0.01434988 0.06429595 +0.7998369 0.01434988 0.06429595 +0.8636691 0.01434988 0.06429595 +0.9303782 0.01434988 0.06429595 +1 0.01434988 0.06429595 +0 0.02107202 0.06429595 +0.002418731 0.02107202 0.06429595 +0.005155668 0.02107202 0.06429595 +0.009080105 0.02107202 0.06429595 +0.01434988 0.02107202 0.06429595 +0.02107202 0.02107202 0.06429595 +0.02934285 0.02107202 0.06429595 +0.03925039 0.02107202 0.06429595 +0.05087609 0.02107202 0.06429595 +0.06429595 0.02107202 0.06429595 +0.07958143 0.02107202 0.06429595 +0.0968001 0.02107202 0.06429595 +0.1160161 0.02107202 0.06429595 +0.1372908 0.02107202 0.06429595 +0.1606827 0.02107202 0.06429595 +0.1862481 0.02107202 0.06429595 +0.2140411 0.02107202 0.06429595 +0.2441142 0.02107202 0.06429595 +0.2765176 0.02107202 0.06429595 +0.3113005 0.02107202 0.06429595 +0.3485102 0.02107202 0.06429595 +0.388193 0.02107202 0.06429595 +0.4303934 0.02107202 0.06429595 +0.4751555 0.02107202 0.06429595 +0.5225216 0.02107202 0.06429595 +0.5725335 0.02107202 0.06429595 +0.6252316 0.02107202 0.06429595 +0.6806558 0.02107202 0.06429595 +0.7388448 0.02107202 0.06429595 +0.7998369 0.02107202 0.06429595 +0.8636691 0.02107202 0.06429595 +0.9303782 0.02107202 0.06429595 +1 0.02107202 0.06429595 +0 0.02934285 0.06429595 +0.002418731 0.02934285 0.06429595 +0.005155668 0.02934285 0.06429595 +0.009080105 0.02934285 0.06429595 +0.01434988 0.02934285 0.06429595 +0.02107202 0.02934285 0.06429595 +0.02934285 0.02934285 0.06429595 +0.03925039 0.02934285 0.06429595 +0.05087609 0.02934285 0.06429595 +0.06429595 0.02934285 0.06429595 +0.07958143 0.02934285 0.06429595 +0.0968001 0.02934285 0.06429595 +0.1160161 0.02934285 0.06429595 +0.1372908 0.02934285 0.06429595 +0.1606827 0.02934285 0.06429595 +0.1862481 0.02934285 0.06429595 +0.2140411 0.02934285 0.06429595 +0.2441142 0.02934285 0.06429595 +0.2765176 0.02934285 0.06429595 +0.3113005 0.02934285 0.06429595 +0.3485102 0.02934285 0.06429595 +0.388193 0.02934285 0.06429595 +0.4303934 0.02934285 0.06429595 +0.4751555 0.02934285 0.06429595 +0.5225216 0.02934285 0.06429595 +0.5725335 0.02934285 0.06429595 +0.6252316 0.02934285 0.06429595 +0.6806558 0.02934285 0.06429595 +0.7388448 0.02934285 0.06429595 +0.7998369 0.02934285 0.06429595 +0.8636691 0.02934285 0.06429595 +0.9303782 0.02934285 0.06429595 +1 0.02934285 0.06429595 +0 0.03925039 0.06429595 +0.002418731 0.03925039 0.06429595 +0.005155668 0.03925039 0.06429595 +0.009080105 0.03925039 0.06429595 +0.01434988 0.03925039 0.06429595 +0.02107202 0.03925039 0.06429595 +0.02934285 0.03925039 0.06429595 +0.03925039 0.03925039 0.06429595 +0.05087609 0.03925039 0.06429595 +0.06429595 0.03925039 0.06429595 +0.07958143 0.03925039 0.06429595 +0.0968001 0.03925039 0.06429595 +0.1160161 0.03925039 0.06429595 +0.1372908 0.03925039 0.06429595 +0.1606827 0.03925039 0.06429595 +0.1862481 0.03925039 0.06429595 +0.2140411 0.03925039 0.06429595 +0.2441142 0.03925039 0.06429595 +0.2765176 0.03925039 0.06429595 +0.3113005 0.03925039 0.06429595 +0.3485102 0.03925039 0.06429595 +0.388193 0.03925039 0.06429595 +0.4303934 0.03925039 0.06429595 +0.4751555 0.03925039 0.06429595 +0.5225216 0.03925039 0.06429595 +0.5725335 0.03925039 0.06429595 +0.6252316 0.03925039 0.06429595 +0.6806558 0.03925039 0.06429595 +0.7388448 0.03925039 0.06429595 +0.7998369 0.03925039 0.06429595 +0.8636691 0.03925039 0.06429595 +0.9303782 0.03925039 0.06429595 +1 0.03925039 0.06429595 +0 0.05087609 0.06429595 +0.002418731 0.05087609 0.06429595 +0.005155668 0.05087609 0.06429595 +0.009080105 0.05087609 0.06429595 +0.01434988 0.05087609 0.06429595 +0.02107202 0.05087609 0.06429595 +0.02934285 0.05087609 0.06429595 +0.03925039 0.05087609 0.06429595 +0.05087609 0.05087609 0.06429595 +0.06429595 0.05087609 0.06429595 +0.07958143 0.05087609 0.06429595 +0.0968001 0.05087609 0.06429595 +0.1160161 0.05087609 0.06429595 +0.1372908 0.05087609 0.06429595 +0.1606827 0.05087609 0.06429595 +0.1862481 0.05087609 0.06429595 +0.2140411 0.05087609 0.06429595 +0.2441142 0.05087609 0.06429595 +0.2765176 0.05087609 0.06429595 +0.3113005 0.05087609 0.06429595 +0.3485102 0.05087609 0.06429595 +0.388193 0.05087609 0.06429595 +0.4303934 0.05087609 0.06429595 +0.4751555 0.05087609 0.06429595 +0.5225216 0.05087609 0.06429595 +0.5725335 0.05087609 0.06429595 +0.6252316 0.05087609 0.06429595 +0.6806558 0.05087609 0.06429595 +0.7388448 0.05087609 0.06429595 +0.7998369 0.05087609 0.06429595 +0.8636691 0.05087609 0.06429595 +0.9303782 0.05087609 0.06429595 +1 0.05087609 0.06429595 +0 0.06429595 0.06429595 +0.002418731 0.06429595 0.06429595 +0.005155668 0.06429595 0.06429595 +0.009080105 0.06429595 0.06429595 +0.01434988 0.06429595 0.06429595 +0.02107202 0.06429595 0.06429595 +0.02934285 0.06429595 0.06429595 +0.03925039 0.06429595 0.06429595 +0.05087609 0.06429595 0.06429595 +0.06429595 0.06429595 0.06429595 +0.07958143 0.06429595 0.06429595 +0.0968001 0.06429595 0.06429595 +0.1160161 0.06429595 0.06429595 +0.1372908 0.06429595 0.06429595 +0.1606827 0.06429595 0.06429595 +0.1862481 0.06429595 0.06429595 +0.2140411 0.06429595 0.06429595 +0.2441142 0.06429595 0.06429595 +0.2765176 0.06429595 0.06429595 +0.3113005 0.06429595 0.06429595 +0.3485102 0.06429595 0.06429595 +0.388193 0.06429595 0.06429595 +0.4303934 0.06429595 0.06429595 +0.4751555 0.06429595 0.06429595 +0.5225216 0.06429595 0.06429595 +0.5725335 0.06429595 0.06429595 +0.6252316 0.06429595 0.06429595 +0.6806558 0.06429595 0.06429595 +0.7388448 0.06429595 0.06429595 +0.7998369 0.06429595 0.06429595 +0.8636691 0.06429595 0.06429595 +0.9303782 0.06429595 0.06429595 +1 0.06429595 0.06429595 +0 0.07958143 0.06429595 +0.002418731 0.07958143 0.06429595 +0.005155668 0.07958143 0.06429595 +0.009080105 0.07958143 0.06429595 +0.01434988 0.07958143 0.06429595 +0.02107202 0.07958143 0.06429595 +0.02934285 0.07958143 0.06429595 +0.03925039 0.07958143 0.06429595 +0.05087609 0.07958143 0.06429595 +0.06429595 0.07958143 0.06429595 +0.07958143 0.07958143 0.06429595 +0.0968001 0.07958143 0.06429595 +0.1160161 0.07958143 0.06429595 +0.1372908 0.07958143 0.06429595 +0.1606827 0.07958143 0.06429595 +0.1862481 0.07958143 0.06429595 +0.2140411 0.07958143 0.06429595 +0.2441142 0.07958143 0.06429595 +0.2765176 0.07958143 0.06429595 +0.3113005 0.07958143 0.06429595 +0.3485102 0.07958143 0.06429595 +0.388193 0.07958143 0.06429595 +0.4303934 0.07958143 0.06429595 +0.4751555 0.07958143 0.06429595 +0.5225216 0.07958143 0.06429595 +0.5725335 0.07958143 0.06429595 +0.6252316 0.07958143 0.06429595 +0.6806558 0.07958143 0.06429595 +0.7388448 0.07958143 0.06429595 +0.7998369 0.07958143 0.06429595 +0.8636691 0.07958143 0.06429595 +0.9303782 0.07958143 0.06429595 +1 0.07958143 0.06429595 +0 0.0968001 0.06429595 +0.002418731 0.0968001 0.06429595 +0.005155668 0.0968001 0.06429595 +0.009080105 0.0968001 0.06429595 +0.01434988 0.0968001 0.06429595 +0.02107202 0.0968001 0.06429595 +0.02934285 0.0968001 0.06429595 +0.03925039 0.0968001 0.06429595 +0.05087609 0.0968001 0.06429595 +0.06429595 0.0968001 0.06429595 +0.07958143 0.0968001 0.06429595 +0.0968001 0.0968001 0.06429595 +0.1160161 0.0968001 0.06429595 +0.1372908 0.0968001 0.06429595 +0.1606827 0.0968001 0.06429595 +0.1862481 0.0968001 0.06429595 +0.2140411 0.0968001 0.06429595 +0.2441142 0.0968001 0.06429595 +0.2765176 0.0968001 0.06429595 +0.3113005 0.0968001 0.06429595 +0.3485102 0.0968001 0.06429595 +0.388193 0.0968001 0.06429595 +0.4303934 0.0968001 0.06429595 +0.4751555 0.0968001 0.06429595 +0.5225216 0.0968001 0.06429595 +0.5725335 0.0968001 0.06429595 +0.6252316 0.0968001 0.06429595 +0.6806558 0.0968001 0.06429595 +0.7388448 0.0968001 0.06429595 +0.7998369 0.0968001 0.06429595 +0.8636691 0.0968001 0.06429595 +0.9303782 0.0968001 0.06429595 +1 0.0968001 0.06429595 +0 0.1160161 0.06429595 +0.002418731 0.1160161 0.06429595 +0.005155668 0.1160161 0.06429595 +0.009080105 0.1160161 0.06429595 +0.01434988 0.1160161 0.06429595 +0.02107202 0.1160161 0.06429595 +0.02934285 0.1160161 0.06429595 +0.03925039 0.1160161 0.06429595 +0.05087609 0.1160161 0.06429595 +0.06429595 0.1160161 0.06429595 +0.07958143 0.1160161 0.06429595 +0.0968001 0.1160161 0.06429595 +0.1160161 0.1160161 0.06429595 +0.1372908 0.1160161 0.06429595 +0.1606827 0.1160161 0.06429595 +0.1862481 0.1160161 0.06429595 +0.2140411 0.1160161 0.06429595 +0.2441142 0.1160161 0.06429595 +0.2765176 0.1160161 0.06429595 +0.3113005 0.1160161 0.06429595 +0.3485102 0.1160161 0.06429595 +0.388193 0.1160161 0.06429595 +0.4303934 0.1160161 0.06429595 +0.4751555 0.1160161 0.06429595 +0.5225216 0.1160161 0.06429595 +0.5725335 0.1160161 0.06429595 +0.6252316 0.1160161 0.06429595 +0.6806558 0.1160161 0.06429595 +0.7388448 0.1160161 0.06429595 +0.7998369 0.1160161 0.06429595 +0.8636691 0.1160161 0.06429595 +0.9303782 0.1160161 0.06429595 +1 0.1160161 0.06429595 +0 0.1372908 0.06429595 +0.002418731 0.1372908 0.06429595 +0.005155668 0.1372908 0.06429595 +0.009080105 0.1372908 0.06429595 +0.01434988 0.1372908 0.06429595 +0.02107202 0.1372908 0.06429595 +0.02934285 0.1372908 0.06429595 +0.03925039 0.1372908 0.06429595 +0.05087609 0.1372908 0.06429595 +0.06429595 0.1372908 0.06429595 +0.07958143 0.1372908 0.06429595 +0.0968001 0.1372908 0.06429595 +0.1160161 0.1372908 0.06429595 +0.1372908 0.1372908 0.06429595 +0.1606827 0.1372908 0.06429595 +0.1862481 0.1372908 0.06429595 +0.2140411 0.1372908 0.06429595 +0.2441142 0.1372908 0.06429595 +0.2765176 0.1372908 0.06429595 +0.3113005 0.1372908 0.06429595 +0.3485102 0.1372908 0.06429595 +0.388193 0.1372908 0.06429595 +0.4303934 0.1372908 0.06429595 +0.4751555 0.1372908 0.06429595 +0.5225216 0.1372908 0.06429595 +0.5725335 0.1372908 0.06429595 +0.6252316 0.1372908 0.06429595 +0.6806558 0.1372908 0.06429595 +0.7388448 0.1372908 0.06429595 +0.7998369 0.1372908 0.06429595 +0.8636691 0.1372908 0.06429595 +0.9303782 0.1372908 0.06429595 +1 0.1372908 0.06429595 +0 0.1606827 0.06429595 +0.002418731 0.1606827 0.06429595 +0.005155668 0.1606827 0.06429595 +0.009080105 0.1606827 0.06429595 +0.01434988 0.1606827 0.06429595 +0.02107202 0.1606827 0.06429595 +0.02934285 0.1606827 0.06429595 +0.03925039 0.1606827 0.06429595 +0.05087609 0.1606827 0.06429595 +0.06429595 0.1606827 0.06429595 +0.07958143 0.1606827 0.06429595 +0.0968001 0.1606827 0.06429595 +0.1160161 0.1606827 0.06429595 +0.1372908 0.1606827 0.06429595 +0.1606827 0.1606827 0.06429595 +0.1862481 0.1606827 0.06429595 +0.2140411 0.1606827 0.06429595 +0.2441142 0.1606827 0.06429595 +0.2765176 0.1606827 0.06429595 +0.3113005 0.1606827 0.06429595 +0.3485102 0.1606827 0.06429595 +0.388193 0.1606827 0.06429595 +0.4303934 0.1606827 0.06429595 +0.4751555 0.1606827 0.06429595 +0.5225216 0.1606827 0.06429595 +0.5725335 0.1606827 0.06429595 +0.6252316 0.1606827 0.06429595 +0.6806558 0.1606827 0.06429595 +0.7388448 0.1606827 0.06429595 +0.7998369 0.1606827 0.06429595 +0.8636691 0.1606827 0.06429595 +0.9303782 0.1606827 0.06429595 +1 0.1606827 0.06429595 +0 0.1862481 0.06429595 +0.002418731 0.1862481 0.06429595 +0.005155668 0.1862481 0.06429595 +0.009080105 0.1862481 0.06429595 +0.01434988 0.1862481 0.06429595 +0.02107202 0.1862481 0.06429595 +0.02934285 0.1862481 0.06429595 +0.03925039 0.1862481 0.06429595 +0.05087609 0.1862481 0.06429595 +0.06429595 0.1862481 0.06429595 +0.07958143 0.1862481 0.06429595 +0.0968001 0.1862481 0.06429595 +0.1160161 0.1862481 0.06429595 +0.1372908 0.1862481 0.06429595 +0.1606827 0.1862481 0.06429595 +0.1862481 0.1862481 0.06429595 +0.2140411 0.1862481 0.06429595 +0.2441142 0.1862481 0.06429595 +0.2765176 0.1862481 0.06429595 +0.3113005 0.1862481 0.06429595 +0.3485102 0.1862481 0.06429595 +0.388193 0.1862481 0.06429595 +0.4303934 0.1862481 0.06429595 +0.4751555 0.1862481 0.06429595 +0.5225216 0.1862481 0.06429595 +0.5725335 0.1862481 0.06429595 +0.6252316 0.1862481 0.06429595 +0.6806558 0.1862481 0.06429595 +0.7388448 0.1862481 0.06429595 +0.7998369 0.1862481 0.06429595 +0.8636691 0.1862481 0.06429595 +0.9303782 0.1862481 0.06429595 +1 0.1862481 0.06429595 +0 0.2140411 0.06429595 +0.002418731 0.2140411 0.06429595 +0.005155668 0.2140411 0.06429595 +0.009080105 0.2140411 0.06429595 +0.01434988 0.2140411 0.06429595 +0.02107202 0.2140411 0.06429595 +0.02934285 0.2140411 0.06429595 +0.03925039 0.2140411 0.06429595 +0.05087609 0.2140411 0.06429595 +0.06429595 0.2140411 0.06429595 +0.07958143 0.2140411 0.06429595 +0.0968001 0.2140411 0.06429595 +0.1160161 0.2140411 0.06429595 +0.1372908 0.2140411 0.06429595 +0.1606827 0.2140411 0.06429595 +0.1862481 0.2140411 0.06429595 +0.2140411 0.2140411 0.06429595 +0.2441142 0.2140411 0.06429595 +0.2765176 0.2140411 0.06429595 +0.3113005 0.2140411 0.06429595 +0.3485102 0.2140411 0.06429595 +0.388193 0.2140411 0.06429595 +0.4303934 0.2140411 0.06429595 +0.4751555 0.2140411 0.06429595 +0.5225216 0.2140411 0.06429595 +0.5725335 0.2140411 0.06429595 +0.6252316 0.2140411 0.06429595 +0.6806558 0.2140411 0.06429595 +0.7388448 0.2140411 0.06429595 +0.7998369 0.2140411 0.06429595 +0.8636691 0.2140411 0.06429595 +0.9303782 0.2140411 0.06429595 +1 0.2140411 0.06429595 +0 0.2441142 0.06429595 +0.002418731 0.2441142 0.06429595 +0.005155668 0.2441142 0.06429595 +0.009080105 0.2441142 0.06429595 +0.01434988 0.2441142 0.06429595 +0.02107202 0.2441142 0.06429595 +0.02934285 0.2441142 0.06429595 +0.03925039 0.2441142 0.06429595 +0.05087609 0.2441142 0.06429595 +0.06429595 0.2441142 0.06429595 +0.07958143 0.2441142 0.06429595 +0.0968001 0.2441142 0.06429595 +0.1160161 0.2441142 0.06429595 +0.1372908 0.2441142 0.06429595 +0.1606827 0.2441142 0.06429595 +0.1862481 0.2441142 0.06429595 +0.2140411 0.2441142 0.06429595 +0.2441142 0.2441142 0.06429595 +0.2765176 0.2441142 0.06429595 +0.3113005 0.2441142 0.06429595 +0.3485102 0.2441142 0.06429595 +0.388193 0.2441142 0.06429595 +0.4303934 0.2441142 0.06429595 +0.4751555 0.2441142 0.06429595 +0.5225216 0.2441142 0.06429595 +0.5725335 0.2441142 0.06429595 +0.6252316 0.2441142 0.06429595 +0.6806558 0.2441142 0.06429595 +0.7388448 0.2441142 0.06429595 +0.7998369 0.2441142 0.06429595 +0.8636691 0.2441142 0.06429595 +0.9303782 0.2441142 0.06429595 +1 0.2441142 0.06429595 +0 0.2765176 0.06429595 +0.002418731 0.2765176 0.06429595 +0.005155668 0.2765176 0.06429595 +0.009080105 0.2765176 0.06429595 +0.01434988 0.2765176 0.06429595 +0.02107202 0.2765176 0.06429595 +0.02934285 0.2765176 0.06429595 +0.03925039 0.2765176 0.06429595 +0.05087609 0.2765176 0.06429595 +0.06429595 0.2765176 0.06429595 +0.07958143 0.2765176 0.06429595 +0.0968001 0.2765176 0.06429595 +0.1160161 0.2765176 0.06429595 +0.1372908 0.2765176 0.06429595 +0.1606827 0.2765176 0.06429595 +0.1862481 0.2765176 0.06429595 +0.2140411 0.2765176 0.06429595 +0.2441142 0.2765176 0.06429595 +0.2765176 0.2765176 0.06429595 +0.3113005 0.2765176 0.06429595 +0.3485102 0.2765176 0.06429595 +0.388193 0.2765176 0.06429595 +0.4303934 0.2765176 0.06429595 +0.4751555 0.2765176 0.06429595 +0.5225216 0.2765176 0.06429595 +0.5725335 0.2765176 0.06429595 +0.6252316 0.2765176 0.06429595 +0.6806558 0.2765176 0.06429595 +0.7388448 0.2765176 0.06429595 +0.7998369 0.2765176 0.06429595 +0.8636691 0.2765176 0.06429595 +0.9303782 0.2765176 0.06429595 +1 0.2765176 0.06429595 +0 0.3113005 0.06429595 +0.002418731 0.3113005 0.06429595 +0.005155668 0.3113005 0.06429595 +0.009080105 0.3113005 0.06429595 +0.01434988 0.3113005 0.06429595 +0.02107202 0.3113005 0.06429595 +0.02934285 0.3113005 0.06429595 +0.03925039 0.3113005 0.06429595 +0.05087609 0.3113005 0.06429595 +0.06429595 0.3113005 0.06429595 +0.07958143 0.3113005 0.06429595 +0.0968001 0.3113005 0.06429595 +0.1160161 0.3113005 0.06429595 +0.1372908 0.3113005 0.06429595 +0.1606827 0.3113005 0.06429595 +0.1862481 0.3113005 0.06429595 +0.2140411 0.3113005 0.06429595 +0.2441142 0.3113005 0.06429595 +0.2765176 0.3113005 0.06429595 +0.3113005 0.3113005 0.06429595 +0.3485102 0.3113005 0.06429595 +0.388193 0.3113005 0.06429595 +0.4303934 0.3113005 0.06429595 +0.4751555 0.3113005 0.06429595 +0.5225216 0.3113005 0.06429595 +0.5725335 0.3113005 0.06429595 +0.6252316 0.3113005 0.06429595 +0.6806558 0.3113005 0.06429595 +0.7388448 0.3113005 0.06429595 +0.7998369 0.3113005 0.06429595 +0.8636691 0.3113005 0.06429595 +0.9303782 0.3113005 0.06429595 +1 0.3113005 0.06429595 +0 0.3485102 0.06429595 +0.002418731 0.3485102 0.06429595 +0.005155668 0.3485102 0.06429595 +0.009080105 0.3485102 0.06429595 +0.01434988 0.3485102 0.06429595 +0.02107202 0.3485102 0.06429595 +0.02934285 0.3485102 0.06429595 +0.03925039 0.3485102 0.06429595 +0.05087609 0.3485102 0.06429595 +0.06429595 0.3485102 0.06429595 +0.07958143 0.3485102 0.06429595 +0.0968001 0.3485102 0.06429595 +0.1160161 0.3485102 0.06429595 +0.1372908 0.3485102 0.06429595 +0.1606827 0.3485102 0.06429595 +0.1862481 0.3485102 0.06429595 +0.2140411 0.3485102 0.06429595 +0.2441142 0.3485102 0.06429595 +0.2765176 0.3485102 0.06429595 +0.3113005 0.3485102 0.06429595 +0.3485102 0.3485102 0.06429595 +0.388193 0.3485102 0.06429595 +0.4303934 0.3485102 0.06429595 +0.4751555 0.3485102 0.06429595 +0.5225216 0.3485102 0.06429595 +0.5725335 0.3485102 0.06429595 +0.6252316 0.3485102 0.06429595 +0.6806558 0.3485102 0.06429595 +0.7388448 0.3485102 0.06429595 +0.7998369 0.3485102 0.06429595 +0.8636691 0.3485102 0.06429595 +0.9303782 0.3485102 0.06429595 +1 0.3485102 0.06429595 +0 0.388193 0.06429595 +0.002418731 0.388193 0.06429595 +0.005155668 0.388193 0.06429595 +0.009080105 0.388193 0.06429595 +0.01434988 0.388193 0.06429595 +0.02107202 0.388193 0.06429595 +0.02934285 0.388193 0.06429595 +0.03925039 0.388193 0.06429595 +0.05087609 0.388193 0.06429595 +0.06429595 0.388193 0.06429595 +0.07958143 0.388193 0.06429595 +0.0968001 0.388193 0.06429595 +0.1160161 0.388193 0.06429595 +0.1372908 0.388193 0.06429595 +0.1606827 0.388193 0.06429595 +0.1862481 0.388193 0.06429595 +0.2140411 0.388193 0.06429595 +0.2441142 0.388193 0.06429595 +0.2765176 0.388193 0.06429595 +0.3113005 0.388193 0.06429595 +0.3485102 0.388193 0.06429595 +0.388193 0.388193 0.06429595 +0.4303934 0.388193 0.06429595 +0.4751555 0.388193 0.06429595 +0.5225216 0.388193 0.06429595 +0.5725335 0.388193 0.06429595 +0.6252316 0.388193 0.06429595 +0.6806558 0.388193 0.06429595 +0.7388448 0.388193 0.06429595 +0.7998369 0.388193 0.06429595 +0.8636691 0.388193 0.06429595 +0.9303782 0.388193 0.06429595 +1 0.388193 0.06429595 +0 0.4303934 0.06429595 +0.002418731 0.4303934 0.06429595 +0.005155668 0.4303934 0.06429595 +0.009080105 0.4303934 0.06429595 +0.01434988 0.4303934 0.06429595 +0.02107202 0.4303934 0.06429595 +0.02934285 0.4303934 0.06429595 +0.03925039 0.4303934 0.06429595 +0.05087609 0.4303934 0.06429595 +0.06429595 0.4303934 0.06429595 +0.07958143 0.4303934 0.06429595 +0.0968001 0.4303934 0.06429595 +0.1160161 0.4303934 0.06429595 +0.1372908 0.4303934 0.06429595 +0.1606827 0.4303934 0.06429595 +0.1862481 0.4303934 0.06429595 +0.2140411 0.4303934 0.06429595 +0.2441142 0.4303934 0.06429595 +0.2765176 0.4303934 0.06429595 +0.3113005 0.4303934 0.06429595 +0.3485102 0.4303934 0.06429595 +0.388193 0.4303934 0.06429595 +0.4303934 0.4303934 0.06429595 +0.4751555 0.4303934 0.06429595 +0.5225216 0.4303934 0.06429595 +0.5725335 0.4303934 0.06429595 +0.6252316 0.4303934 0.06429595 +0.6806558 0.4303934 0.06429595 +0.7388448 0.4303934 0.06429595 +0.7998369 0.4303934 0.06429595 +0.8636691 0.4303934 0.06429595 +0.9303782 0.4303934 0.06429595 +1 0.4303934 0.06429595 +0 0.4751555 0.06429595 +0.002418731 0.4751555 0.06429595 +0.005155668 0.4751555 0.06429595 +0.009080105 0.4751555 0.06429595 +0.01434988 0.4751555 0.06429595 +0.02107202 0.4751555 0.06429595 +0.02934285 0.4751555 0.06429595 +0.03925039 0.4751555 0.06429595 +0.05087609 0.4751555 0.06429595 +0.06429595 0.4751555 0.06429595 +0.07958143 0.4751555 0.06429595 +0.0968001 0.4751555 0.06429595 +0.1160161 0.4751555 0.06429595 +0.1372908 0.4751555 0.06429595 +0.1606827 0.4751555 0.06429595 +0.1862481 0.4751555 0.06429595 +0.2140411 0.4751555 0.06429595 +0.2441142 0.4751555 0.06429595 +0.2765176 0.4751555 0.06429595 +0.3113005 0.4751555 0.06429595 +0.3485102 0.4751555 0.06429595 +0.388193 0.4751555 0.06429595 +0.4303934 0.4751555 0.06429595 +0.4751555 0.4751555 0.06429595 +0.5225216 0.4751555 0.06429595 +0.5725335 0.4751555 0.06429595 +0.6252316 0.4751555 0.06429595 +0.6806558 0.4751555 0.06429595 +0.7388448 0.4751555 0.06429595 +0.7998369 0.4751555 0.06429595 +0.8636691 0.4751555 0.06429595 +0.9303782 0.4751555 0.06429595 +1 0.4751555 0.06429595 +0 0.5225216 0.06429595 +0.002418731 0.5225216 0.06429595 +0.005155668 0.5225216 0.06429595 +0.009080105 0.5225216 0.06429595 +0.01434988 0.5225216 0.06429595 +0.02107202 0.5225216 0.06429595 +0.02934285 0.5225216 0.06429595 +0.03925039 0.5225216 0.06429595 +0.05087609 0.5225216 0.06429595 +0.06429595 0.5225216 0.06429595 +0.07958143 0.5225216 0.06429595 +0.0968001 0.5225216 0.06429595 +0.1160161 0.5225216 0.06429595 +0.1372908 0.5225216 0.06429595 +0.1606827 0.5225216 0.06429595 +0.1862481 0.5225216 0.06429595 +0.2140411 0.5225216 0.06429595 +0.2441142 0.5225216 0.06429595 +0.2765176 0.5225216 0.06429595 +0.3113005 0.5225216 0.06429595 +0.3485102 0.5225216 0.06429595 +0.388193 0.5225216 0.06429595 +0.4303934 0.5225216 0.06429595 +0.4751555 0.5225216 0.06429595 +0.5225216 0.5225216 0.06429595 +0.5725335 0.5225216 0.06429595 +0.6252316 0.5225216 0.06429595 +0.6806558 0.5225216 0.06429595 +0.7388448 0.5225216 0.06429595 +0.7998369 0.5225216 0.06429595 +0.8636691 0.5225216 0.06429595 +0.9303782 0.5225216 0.06429595 +1 0.5225216 0.06429595 +0 0.5725335 0.06429595 +0.002418731 0.5725335 0.06429595 +0.005155668 0.5725335 0.06429595 +0.009080105 0.5725335 0.06429595 +0.01434988 0.5725335 0.06429595 +0.02107202 0.5725335 0.06429595 +0.02934285 0.5725335 0.06429595 +0.03925039 0.5725335 0.06429595 +0.05087609 0.5725335 0.06429595 +0.06429595 0.5725335 0.06429595 +0.07958143 0.5725335 0.06429595 +0.0968001 0.5725335 0.06429595 +0.1160161 0.5725335 0.06429595 +0.1372908 0.5725335 0.06429595 +0.1606827 0.5725335 0.06429595 +0.1862481 0.5725335 0.06429595 +0.2140411 0.5725335 0.06429595 +0.2441142 0.5725335 0.06429595 +0.2765176 0.5725335 0.06429595 +0.3113005 0.5725335 0.06429595 +0.3485102 0.5725335 0.06429595 +0.388193 0.5725335 0.06429595 +0.4303934 0.5725335 0.06429595 +0.4751555 0.5725335 0.06429595 +0.5225216 0.5725335 0.06429595 +0.5725335 0.5725335 0.06429595 +0.6252316 0.5725335 0.06429595 +0.6806558 0.5725335 0.06429595 +0.7388448 0.5725335 0.06429595 +0.7998369 0.5725335 0.06429595 +0.8636691 0.5725335 0.06429595 +0.9303782 0.5725335 0.06429595 +1 0.5725335 0.06429595 +0 0.6252316 0.06429595 +0.002418731 0.6252316 0.06429595 +0.005155668 0.6252316 0.06429595 +0.009080105 0.6252316 0.06429595 +0.01434988 0.6252316 0.06429595 +0.02107202 0.6252316 0.06429595 +0.02934285 0.6252316 0.06429595 +0.03925039 0.6252316 0.06429595 +0.05087609 0.6252316 0.06429595 +0.06429595 0.6252316 0.06429595 +0.07958143 0.6252316 0.06429595 +0.0968001 0.6252316 0.06429595 +0.1160161 0.6252316 0.06429595 +0.1372908 0.6252316 0.06429595 +0.1606827 0.6252316 0.06429595 +0.1862481 0.6252316 0.06429595 +0.2140411 0.6252316 0.06429595 +0.2441142 0.6252316 0.06429595 +0.2765176 0.6252316 0.06429595 +0.3113005 0.6252316 0.06429595 +0.3485102 0.6252316 0.06429595 +0.388193 0.6252316 0.06429595 +0.4303934 0.6252316 0.06429595 +0.4751555 0.6252316 0.06429595 +0.5225216 0.6252316 0.06429595 +0.5725335 0.6252316 0.06429595 +0.6252316 0.6252316 0.06429595 +0.6806558 0.6252316 0.06429595 +0.7388448 0.6252316 0.06429595 +0.7998369 0.6252316 0.06429595 +0.8636691 0.6252316 0.06429595 +0.9303782 0.6252316 0.06429595 +1 0.6252316 0.06429595 +0 0.6806558 0.06429595 +0.002418731 0.6806558 0.06429595 +0.005155668 0.6806558 0.06429595 +0.009080105 0.6806558 0.06429595 +0.01434988 0.6806558 0.06429595 +0.02107202 0.6806558 0.06429595 +0.02934285 0.6806558 0.06429595 +0.03925039 0.6806558 0.06429595 +0.05087609 0.6806558 0.06429595 +0.06429595 0.6806558 0.06429595 +0.07958143 0.6806558 0.06429595 +0.0968001 0.6806558 0.06429595 +0.1160161 0.6806558 0.06429595 +0.1372908 0.6806558 0.06429595 +0.1606827 0.6806558 0.06429595 +0.1862481 0.6806558 0.06429595 +0.2140411 0.6806558 0.06429595 +0.2441142 0.6806558 0.06429595 +0.2765176 0.6806558 0.06429595 +0.3113005 0.6806558 0.06429595 +0.3485102 0.6806558 0.06429595 +0.388193 0.6806558 0.06429595 +0.4303934 0.6806558 0.06429595 +0.4751555 0.6806558 0.06429595 +0.5225216 0.6806558 0.06429595 +0.5725335 0.6806558 0.06429595 +0.6252316 0.6806558 0.06429595 +0.6806558 0.6806558 0.06429595 +0.7388448 0.6806558 0.06429595 +0.7998369 0.6806558 0.06429595 +0.8636691 0.6806558 0.06429595 +0.9303782 0.6806558 0.06429595 +1 0.6806558 0.06429595 +0 0.7388448 0.06429595 +0.002418731 0.7388448 0.06429595 +0.005155668 0.7388448 0.06429595 +0.009080105 0.7388448 0.06429595 +0.01434988 0.7388448 0.06429595 +0.02107202 0.7388448 0.06429595 +0.02934285 0.7388448 0.06429595 +0.03925039 0.7388448 0.06429595 +0.05087609 0.7388448 0.06429595 +0.06429595 0.7388448 0.06429595 +0.07958143 0.7388448 0.06429595 +0.0968001 0.7388448 0.06429595 +0.1160161 0.7388448 0.06429595 +0.1372908 0.7388448 0.06429595 +0.1606827 0.7388448 0.06429595 +0.1862481 0.7388448 0.06429595 +0.2140411 0.7388448 0.06429595 +0.2441142 0.7388448 0.06429595 +0.2765176 0.7388448 0.06429595 +0.3113005 0.7388448 0.06429595 +0.3485102 0.7388448 0.06429595 +0.388193 0.7388448 0.06429595 +0.4303934 0.7388448 0.06429595 +0.4751555 0.7388448 0.06429595 +0.5225216 0.7388448 0.06429595 +0.5725335 0.7388448 0.06429595 +0.6252316 0.7388448 0.06429595 +0.6806558 0.7388448 0.06429595 +0.7388448 0.7388448 0.06429595 +0.7998369 0.7388448 0.06429595 +0.8636691 0.7388448 0.06429595 +0.9303782 0.7388448 0.06429595 +1 0.7388448 0.06429595 +0 0.7998369 0.06429595 +0.002418731 0.7998369 0.06429595 +0.005155668 0.7998369 0.06429595 +0.009080105 0.7998369 0.06429595 +0.01434988 0.7998369 0.06429595 +0.02107202 0.7998369 0.06429595 +0.02934285 0.7998369 0.06429595 +0.03925039 0.7998369 0.06429595 +0.05087609 0.7998369 0.06429595 +0.06429595 0.7998369 0.06429595 +0.07958143 0.7998369 0.06429595 +0.0968001 0.7998369 0.06429595 +0.1160161 0.7998369 0.06429595 +0.1372908 0.7998369 0.06429595 +0.1606827 0.7998369 0.06429595 +0.1862481 0.7998369 0.06429595 +0.2140411 0.7998369 0.06429595 +0.2441142 0.7998369 0.06429595 +0.2765176 0.7998369 0.06429595 +0.3113005 0.7998369 0.06429595 +0.3485102 0.7998369 0.06429595 +0.388193 0.7998369 0.06429595 +0.4303934 0.7998369 0.06429595 +0.4751555 0.7998369 0.06429595 +0.5225216 0.7998369 0.06429595 +0.5725335 0.7998369 0.06429595 +0.6252316 0.7998369 0.06429595 +0.6806558 0.7998369 0.06429595 +0.7388448 0.7998369 0.06429595 +0.7998369 0.7998369 0.06429595 +0.8636691 0.7998369 0.06429595 +0.9303782 0.7998369 0.06429595 +1 0.7998369 0.06429595 +0 0.8636691 0.06429595 +0.002418731 0.8636691 0.06429595 +0.005155668 0.8636691 0.06429595 +0.009080105 0.8636691 0.06429595 +0.01434988 0.8636691 0.06429595 +0.02107202 0.8636691 0.06429595 +0.02934285 0.8636691 0.06429595 +0.03925039 0.8636691 0.06429595 +0.05087609 0.8636691 0.06429595 +0.06429595 0.8636691 0.06429595 +0.07958143 0.8636691 0.06429595 +0.0968001 0.8636691 0.06429595 +0.1160161 0.8636691 0.06429595 +0.1372908 0.8636691 0.06429595 +0.1606827 0.8636691 0.06429595 +0.1862481 0.8636691 0.06429595 +0.2140411 0.8636691 0.06429595 +0.2441142 0.8636691 0.06429595 +0.2765176 0.8636691 0.06429595 +0.3113005 0.8636691 0.06429595 +0.3485102 0.8636691 0.06429595 +0.388193 0.8636691 0.06429595 +0.4303934 0.8636691 0.06429595 +0.4751555 0.8636691 0.06429595 +0.5225216 0.8636691 0.06429595 +0.5725335 0.8636691 0.06429595 +0.6252316 0.8636691 0.06429595 +0.6806558 0.8636691 0.06429595 +0.7388448 0.8636691 0.06429595 +0.7998369 0.8636691 0.06429595 +0.8636691 0.8636691 0.06429595 +0.9303782 0.8636691 0.06429595 +1 0.8636691 0.06429595 +0 0.9303782 0.06429595 +0.002418731 0.9303782 0.06429595 +0.005155668 0.9303782 0.06429595 +0.009080105 0.9303782 0.06429595 +0.01434988 0.9303782 0.06429595 +0.02107202 0.9303782 0.06429595 +0.02934285 0.9303782 0.06429595 +0.03925039 0.9303782 0.06429595 +0.05087609 0.9303782 0.06429595 +0.06429595 0.9303782 0.06429595 +0.07958143 0.9303782 0.06429595 +0.0968001 0.9303782 0.06429595 +0.1160161 0.9303782 0.06429595 +0.1372908 0.9303782 0.06429595 +0.1606827 0.9303782 0.06429595 +0.1862481 0.9303782 0.06429595 +0.2140411 0.9303782 0.06429595 +0.2441142 0.9303782 0.06429595 +0.2765176 0.9303782 0.06429595 +0.3113005 0.9303782 0.06429595 +0.3485102 0.9303782 0.06429595 +0.388193 0.9303782 0.06429595 +0.4303934 0.9303782 0.06429595 +0.4751555 0.9303782 0.06429595 +0.5225216 0.9303782 0.06429595 +0.5725335 0.9303782 0.06429595 +0.6252316 0.9303782 0.06429595 +0.6806558 0.9303782 0.06429595 +0.7388448 0.9303782 0.06429595 +0.7998369 0.9303782 0.06429595 +0.8636691 0.9303782 0.06429595 +0.9303782 0.9303782 0.06429595 +1 0.9303782 0.06429595 +0 1 0.06429595 +0.002418731 1 0.06429595 +0.005155668 1 0.06429595 +0.009080105 1 0.06429595 +0.01434988 1 0.06429595 +0.02107202 1 0.06429595 +0.02934285 1 0.06429595 +0.03925039 1 0.06429595 +0.05087609 1 0.06429595 +0.06429595 1 0.06429595 +0.07958143 1 0.06429595 +0.0968001 1 0.06429595 +0.1160161 1 0.06429595 +0.1372908 1 0.06429595 +0.1606827 1 0.06429595 +0.1862481 1 0.06429595 +0.2140411 1 0.06429595 +0.2441142 1 0.06429595 +0.2765176 1 0.06429595 +0.3113005 1 0.06429595 +0.3485102 1 0.06429595 +0.388193 1 0.06429595 +0.4303934 1 0.06429595 +0.4751555 1 0.06429595 +0.5225216 1 0.06429595 +0.5725335 1 0.06429595 +0.6252316 1 0.06429595 +0.6806558 1 0.06429595 +0.7388448 1 0.06429595 +0.7998369 1 0.06429595 +0.8636691 1 0.06429595 +0.9303782 1 0.06429595 +1 1 0.06429595 +0 0 0.07958143 +0.002418731 0 0.07958143 +0.005155668 0 0.07958143 +0.009080105 0 0.07958143 +0.01434988 0 0.07958143 +0.02107202 0 0.07958143 +0.02934285 0 0.07958143 +0.03925039 0 0.07958143 +0.05087609 0 0.07958143 +0.06429595 0 0.07958143 +0.07958143 0 0.07958143 +0.0968001 0 0.07958143 +0.1160161 0 0.07958143 +0.1372908 0 0.07958143 +0.1606827 0 0.07958143 +0.1862481 0 0.07958143 +0.2140411 0 0.07958143 +0.2441142 0 0.07958143 +0.2765176 0 0.07958143 +0.3113005 0 0.07958143 +0.3485102 0 0.07958143 +0.388193 0 0.07958143 +0.4303934 0 0.07958143 +0.4751555 0 0.07958143 +0.5225216 0 0.07958143 +0.5725335 0 0.07958143 +0.6252316 0 0.07958143 +0.6806558 0 0.07958143 +0.7388448 0 0.07958143 +0.7998369 0 0.07958143 +0.8636691 0 0.07958143 +0.9303782 0 0.07958143 +1 0 0.07958143 +0 0.002418731 0.07958143 +0.002418731 0.002418731 0.07958143 +0.005155668 0.002418731 0.07958143 +0.009080105 0.002418731 0.07958143 +0.01434988 0.002418731 0.07958143 +0.02107202 0.002418731 0.07958143 +0.02934285 0.002418731 0.07958143 +0.03925039 0.002418731 0.07958143 +0.05087609 0.002418731 0.07958143 +0.06429595 0.002418731 0.07958143 +0.07958143 0.002418731 0.07958143 +0.0968001 0.002418731 0.07958143 +0.1160161 0.002418731 0.07958143 +0.1372908 0.002418731 0.07958143 +0.1606827 0.002418731 0.07958143 +0.1862481 0.002418731 0.07958143 +0.2140411 0.002418731 0.07958143 +0.2441142 0.002418731 0.07958143 +0.2765176 0.002418731 0.07958143 +0.3113005 0.002418731 0.07958143 +0.3485102 0.002418731 0.07958143 +0.388193 0.002418731 0.07958143 +0.4303934 0.002418731 0.07958143 +0.4751555 0.002418731 0.07958143 +0.5225216 0.002418731 0.07958143 +0.5725335 0.002418731 0.07958143 +0.6252316 0.002418731 0.07958143 +0.6806558 0.002418731 0.07958143 +0.7388448 0.002418731 0.07958143 +0.7998369 0.002418731 0.07958143 +0.8636691 0.002418731 0.07958143 +0.9303782 0.002418731 0.07958143 +1 0.002418731 0.07958143 +0 0.005155668 0.07958143 +0.002418731 0.005155668 0.07958143 +0.005155668 0.005155668 0.07958143 +0.009080105 0.005155668 0.07958143 +0.01434988 0.005155668 0.07958143 +0.02107202 0.005155668 0.07958143 +0.02934285 0.005155668 0.07958143 +0.03925039 0.005155668 0.07958143 +0.05087609 0.005155668 0.07958143 +0.06429595 0.005155668 0.07958143 +0.07958143 0.005155668 0.07958143 +0.0968001 0.005155668 0.07958143 +0.1160161 0.005155668 0.07958143 +0.1372908 0.005155668 0.07958143 +0.1606827 0.005155668 0.07958143 +0.1862481 0.005155668 0.07958143 +0.2140411 0.005155668 0.07958143 +0.2441142 0.005155668 0.07958143 +0.2765176 0.005155668 0.07958143 +0.3113005 0.005155668 0.07958143 +0.3485102 0.005155668 0.07958143 +0.388193 0.005155668 0.07958143 +0.4303934 0.005155668 0.07958143 +0.4751555 0.005155668 0.07958143 +0.5225216 0.005155668 0.07958143 +0.5725335 0.005155668 0.07958143 +0.6252316 0.005155668 0.07958143 +0.6806558 0.005155668 0.07958143 +0.7388448 0.005155668 0.07958143 +0.7998369 0.005155668 0.07958143 +0.8636691 0.005155668 0.07958143 +0.9303782 0.005155668 0.07958143 +1 0.005155668 0.07958143 +0 0.009080105 0.07958143 +0.002418731 0.009080105 0.07958143 +0.005155668 0.009080105 0.07958143 +0.009080105 0.009080105 0.07958143 +0.01434988 0.009080105 0.07958143 +0.02107202 0.009080105 0.07958143 +0.02934285 0.009080105 0.07958143 +0.03925039 0.009080105 0.07958143 +0.05087609 0.009080105 0.07958143 +0.06429595 0.009080105 0.07958143 +0.07958143 0.009080105 0.07958143 +0.0968001 0.009080105 0.07958143 +0.1160161 0.009080105 0.07958143 +0.1372908 0.009080105 0.07958143 +0.1606827 0.009080105 0.07958143 +0.1862481 0.009080105 0.07958143 +0.2140411 0.009080105 0.07958143 +0.2441142 0.009080105 0.07958143 +0.2765176 0.009080105 0.07958143 +0.3113005 0.009080105 0.07958143 +0.3485102 0.009080105 0.07958143 +0.388193 0.009080105 0.07958143 +0.4303934 0.009080105 0.07958143 +0.4751555 0.009080105 0.07958143 +0.5225216 0.009080105 0.07958143 +0.5725335 0.009080105 0.07958143 +0.6252316 0.009080105 0.07958143 +0.6806558 0.009080105 0.07958143 +0.7388448 0.009080105 0.07958143 +0.7998369 0.009080105 0.07958143 +0.8636691 0.009080105 0.07958143 +0.9303782 0.009080105 0.07958143 +1 0.009080105 0.07958143 +0 0.01434988 0.07958143 +0.002418731 0.01434988 0.07958143 +0.005155668 0.01434988 0.07958143 +0.009080105 0.01434988 0.07958143 +0.01434988 0.01434988 0.07958143 +0.02107202 0.01434988 0.07958143 +0.02934285 0.01434988 0.07958143 +0.03925039 0.01434988 0.07958143 +0.05087609 0.01434988 0.07958143 +0.06429595 0.01434988 0.07958143 +0.07958143 0.01434988 0.07958143 +0.0968001 0.01434988 0.07958143 +0.1160161 0.01434988 0.07958143 +0.1372908 0.01434988 0.07958143 +0.1606827 0.01434988 0.07958143 +0.1862481 0.01434988 0.07958143 +0.2140411 0.01434988 0.07958143 +0.2441142 0.01434988 0.07958143 +0.2765176 0.01434988 0.07958143 +0.3113005 0.01434988 0.07958143 +0.3485102 0.01434988 0.07958143 +0.388193 0.01434988 0.07958143 +0.4303934 0.01434988 0.07958143 +0.4751555 0.01434988 0.07958143 +0.5225216 0.01434988 0.07958143 +0.5725335 0.01434988 0.07958143 +0.6252316 0.01434988 0.07958143 +0.6806558 0.01434988 0.07958143 +0.7388448 0.01434988 0.07958143 +0.7998369 0.01434988 0.07958143 +0.8636691 0.01434988 0.07958143 +0.9303782 0.01434988 0.07958143 +1 0.01434988 0.07958143 +0 0.02107202 0.07958143 +0.002418731 0.02107202 0.07958143 +0.005155668 0.02107202 0.07958143 +0.009080105 0.02107202 0.07958143 +0.01434988 0.02107202 0.07958143 +0.02107202 0.02107202 0.07958143 +0.02934285 0.02107202 0.07958143 +0.03925039 0.02107202 0.07958143 +0.05087609 0.02107202 0.07958143 +0.06429595 0.02107202 0.07958143 +0.07958143 0.02107202 0.07958143 +0.0968001 0.02107202 0.07958143 +0.1160161 0.02107202 0.07958143 +0.1372908 0.02107202 0.07958143 +0.1606827 0.02107202 0.07958143 +0.1862481 0.02107202 0.07958143 +0.2140411 0.02107202 0.07958143 +0.2441142 0.02107202 0.07958143 +0.2765176 0.02107202 0.07958143 +0.3113005 0.02107202 0.07958143 +0.3485102 0.02107202 0.07958143 +0.388193 0.02107202 0.07958143 +0.4303934 0.02107202 0.07958143 +0.4751555 0.02107202 0.07958143 +0.5225216 0.02107202 0.07958143 +0.5725335 0.02107202 0.07958143 +0.6252316 0.02107202 0.07958143 +0.6806558 0.02107202 0.07958143 +0.7388448 0.02107202 0.07958143 +0.7998369 0.02107202 0.07958143 +0.8636691 0.02107202 0.07958143 +0.9303782 0.02107202 0.07958143 +1 0.02107202 0.07958143 +0 0.02934285 0.07958143 +0.002418731 0.02934285 0.07958143 +0.005155668 0.02934285 0.07958143 +0.009080105 0.02934285 0.07958143 +0.01434988 0.02934285 0.07958143 +0.02107202 0.02934285 0.07958143 +0.02934285 0.02934285 0.07958143 +0.03925039 0.02934285 0.07958143 +0.05087609 0.02934285 0.07958143 +0.06429595 0.02934285 0.07958143 +0.07958143 0.02934285 0.07958143 +0.0968001 0.02934285 0.07958143 +0.1160161 0.02934285 0.07958143 +0.1372908 0.02934285 0.07958143 +0.1606827 0.02934285 0.07958143 +0.1862481 0.02934285 0.07958143 +0.2140411 0.02934285 0.07958143 +0.2441142 0.02934285 0.07958143 +0.2765176 0.02934285 0.07958143 +0.3113005 0.02934285 0.07958143 +0.3485102 0.02934285 0.07958143 +0.388193 0.02934285 0.07958143 +0.4303934 0.02934285 0.07958143 +0.4751555 0.02934285 0.07958143 +0.5225216 0.02934285 0.07958143 +0.5725335 0.02934285 0.07958143 +0.6252316 0.02934285 0.07958143 +0.6806558 0.02934285 0.07958143 +0.7388448 0.02934285 0.07958143 +0.7998369 0.02934285 0.07958143 +0.8636691 0.02934285 0.07958143 +0.9303782 0.02934285 0.07958143 +1 0.02934285 0.07958143 +0 0.03925039 0.07958143 +0.002418731 0.03925039 0.07958143 +0.005155668 0.03925039 0.07958143 +0.009080105 0.03925039 0.07958143 +0.01434988 0.03925039 0.07958143 +0.02107202 0.03925039 0.07958143 +0.02934285 0.03925039 0.07958143 +0.03925039 0.03925039 0.07958143 +0.05087609 0.03925039 0.07958143 +0.06429595 0.03925039 0.07958143 +0.07958143 0.03925039 0.07958143 +0.0968001 0.03925039 0.07958143 +0.1160161 0.03925039 0.07958143 +0.1372908 0.03925039 0.07958143 +0.1606827 0.03925039 0.07958143 +0.1862481 0.03925039 0.07958143 +0.2140411 0.03925039 0.07958143 +0.2441142 0.03925039 0.07958143 +0.2765176 0.03925039 0.07958143 +0.3113005 0.03925039 0.07958143 +0.3485102 0.03925039 0.07958143 +0.388193 0.03925039 0.07958143 +0.4303934 0.03925039 0.07958143 +0.4751555 0.03925039 0.07958143 +0.5225216 0.03925039 0.07958143 +0.5725335 0.03925039 0.07958143 +0.6252316 0.03925039 0.07958143 +0.6806558 0.03925039 0.07958143 +0.7388448 0.03925039 0.07958143 +0.7998369 0.03925039 0.07958143 +0.8636691 0.03925039 0.07958143 +0.9303782 0.03925039 0.07958143 +1 0.03925039 0.07958143 +0 0.05087609 0.07958143 +0.002418731 0.05087609 0.07958143 +0.005155668 0.05087609 0.07958143 +0.009080105 0.05087609 0.07958143 +0.01434988 0.05087609 0.07958143 +0.02107202 0.05087609 0.07958143 +0.02934285 0.05087609 0.07958143 +0.03925039 0.05087609 0.07958143 +0.05087609 0.05087609 0.07958143 +0.06429595 0.05087609 0.07958143 +0.07958143 0.05087609 0.07958143 +0.0968001 0.05087609 0.07958143 +0.1160161 0.05087609 0.07958143 +0.1372908 0.05087609 0.07958143 +0.1606827 0.05087609 0.07958143 +0.1862481 0.05087609 0.07958143 +0.2140411 0.05087609 0.07958143 +0.2441142 0.05087609 0.07958143 +0.2765176 0.05087609 0.07958143 +0.3113005 0.05087609 0.07958143 +0.3485102 0.05087609 0.07958143 +0.388193 0.05087609 0.07958143 +0.4303934 0.05087609 0.07958143 +0.4751555 0.05087609 0.07958143 +0.5225216 0.05087609 0.07958143 +0.5725335 0.05087609 0.07958143 +0.6252316 0.05087609 0.07958143 +0.6806558 0.05087609 0.07958143 +0.7388448 0.05087609 0.07958143 +0.7998369 0.05087609 0.07958143 +0.8636691 0.05087609 0.07958143 +0.9303782 0.05087609 0.07958143 +1 0.05087609 0.07958143 +0 0.06429595 0.07958143 +0.002418731 0.06429595 0.07958143 +0.005155668 0.06429595 0.07958143 +0.009080105 0.06429595 0.07958143 +0.01434988 0.06429595 0.07958143 +0.02107202 0.06429595 0.07958143 +0.02934285 0.06429595 0.07958143 +0.03925039 0.06429595 0.07958143 +0.05087609 0.06429595 0.07958143 +0.06429595 0.06429595 0.07958143 +0.07958143 0.06429595 0.07958143 +0.0968001 0.06429595 0.07958143 +0.1160161 0.06429595 0.07958143 +0.1372908 0.06429595 0.07958143 +0.1606827 0.06429595 0.07958143 +0.1862481 0.06429595 0.07958143 +0.2140411 0.06429595 0.07958143 +0.2441142 0.06429595 0.07958143 +0.2765176 0.06429595 0.07958143 +0.3113005 0.06429595 0.07958143 +0.3485102 0.06429595 0.07958143 +0.388193 0.06429595 0.07958143 +0.4303934 0.06429595 0.07958143 +0.4751555 0.06429595 0.07958143 +0.5225216 0.06429595 0.07958143 +0.5725335 0.06429595 0.07958143 +0.6252316 0.06429595 0.07958143 +0.6806558 0.06429595 0.07958143 +0.7388448 0.06429595 0.07958143 +0.7998369 0.06429595 0.07958143 +0.8636691 0.06429595 0.07958143 +0.9303782 0.06429595 0.07958143 +1 0.06429595 0.07958143 +0 0.07958143 0.07958143 +0.002418731 0.07958143 0.07958143 +0.005155668 0.07958143 0.07958143 +0.009080105 0.07958143 0.07958143 +0.01434988 0.07958143 0.07958143 +0.02107202 0.07958143 0.07958143 +0.02934285 0.07958143 0.07958143 +0.03925039 0.07958143 0.07958143 +0.05087609 0.07958143 0.07958143 +0.06429595 0.07958143 0.07958143 +0.07958143 0.07958143 0.07958143 +0.0968001 0.07958143 0.07958143 +0.1160161 0.07958143 0.07958143 +0.1372908 0.07958143 0.07958143 +0.1606827 0.07958143 0.07958143 +0.1862481 0.07958143 0.07958143 +0.2140411 0.07958143 0.07958143 +0.2441142 0.07958143 0.07958143 +0.2765176 0.07958143 0.07958143 +0.3113005 0.07958143 0.07958143 +0.3485102 0.07958143 0.07958143 +0.388193 0.07958143 0.07958143 +0.4303934 0.07958143 0.07958143 +0.4751555 0.07958143 0.07958143 +0.5225216 0.07958143 0.07958143 +0.5725335 0.07958143 0.07958143 +0.6252316 0.07958143 0.07958143 +0.6806558 0.07958143 0.07958143 +0.7388448 0.07958143 0.07958143 +0.7998369 0.07958143 0.07958143 +0.8636691 0.07958143 0.07958143 +0.9303782 0.07958143 0.07958143 +1 0.07958143 0.07958143 +0 0.0968001 0.07958143 +0.002418731 0.0968001 0.07958143 +0.005155668 0.0968001 0.07958143 +0.009080105 0.0968001 0.07958143 +0.01434988 0.0968001 0.07958143 +0.02107202 0.0968001 0.07958143 +0.02934285 0.0968001 0.07958143 +0.03925039 0.0968001 0.07958143 +0.05087609 0.0968001 0.07958143 +0.06429595 0.0968001 0.07958143 +0.07958143 0.0968001 0.07958143 +0.0968001 0.0968001 0.07958143 +0.1160161 0.0968001 0.07958143 +0.1372908 0.0968001 0.07958143 +0.1606827 0.0968001 0.07958143 +0.1862481 0.0968001 0.07958143 +0.2140411 0.0968001 0.07958143 +0.2441142 0.0968001 0.07958143 +0.2765176 0.0968001 0.07958143 +0.3113005 0.0968001 0.07958143 +0.3485102 0.0968001 0.07958143 +0.388193 0.0968001 0.07958143 +0.4303934 0.0968001 0.07958143 +0.4751555 0.0968001 0.07958143 +0.5225216 0.0968001 0.07958143 +0.5725335 0.0968001 0.07958143 +0.6252316 0.0968001 0.07958143 +0.6806558 0.0968001 0.07958143 +0.7388448 0.0968001 0.07958143 +0.7998369 0.0968001 0.07958143 +0.8636691 0.0968001 0.07958143 +0.9303782 0.0968001 0.07958143 +1 0.0968001 0.07958143 +0 0.1160161 0.07958143 +0.002418731 0.1160161 0.07958143 +0.005155668 0.1160161 0.07958143 +0.009080105 0.1160161 0.07958143 +0.01434988 0.1160161 0.07958143 +0.02107202 0.1160161 0.07958143 +0.02934285 0.1160161 0.07958143 +0.03925039 0.1160161 0.07958143 +0.05087609 0.1160161 0.07958143 +0.06429595 0.1160161 0.07958143 +0.07958143 0.1160161 0.07958143 +0.0968001 0.1160161 0.07958143 +0.1160161 0.1160161 0.07958143 +0.1372908 0.1160161 0.07958143 +0.1606827 0.1160161 0.07958143 +0.1862481 0.1160161 0.07958143 +0.2140411 0.1160161 0.07958143 +0.2441142 0.1160161 0.07958143 +0.2765176 0.1160161 0.07958143 +0.3113005 0.1160161 0.07958143 +0.3485102 0.1160161 0.07958143 +0.388193 0.1160161 0.07958143 +0.4303934 0.1160161 0.07958143 +0.4751555 0.1160161 0.07958143 +0.5225216 0.1160161 0.07958143 +0.5725335 0.1160161 0.07958143 +0.6252316 0.1160161 0.07958143 +0.6806558 0.1160161 0.07958143 +0.7388448 0.1160161 0.07958143 +0.7998369 0.1160161 0.07958143 +0.8636691 0.1160161 0.07958143 +0.9303782 0.1160161 0.07958143 +1 0.1160161 0.07958143 +0 0.1372908 0.07958143 +0.002418731 0.1372908 0.07958143 +0.005155668 0.1372908 0.07958143 +0.009080105 0.1372908 0.07958143 +0.01434988 0.1372908 0.07958143 +0.02107202 0.1372908 0.07958143 +0.02934285 0.1372908 0.07958143 +0.03925039 0.1372908 0.07958143 +0.05087609 0.1372908 0.07958143 +0.06429595 0.1372908 0.07958143 +0.07958143 0.1372908 0.07958143 +0.0968001 0.1372908 0.07958143 +0.1160161 0.1372908 0.07958143 +0.1372908 0.1372908 0.07958143 +0.1606827 0.1372908 0.07958143 +0.1862481 0.1372908 0.07958143 +0.2140411 0.1372908 0.07958143 +0.2441142 0.1372908 0.07958143 +0.2765176 0.1372908 0.07958143 +0.3113005 0.1372908 0.07958143 +0.3485102 0.1372908 0.07958143 +0.388193 0.1372908 0.07958143 +0.4303934 0.1372908 0.07958143 +0.4751555 0.1372908 0.07958143 +0.5225216 0.1372908 0.07958143 +0.5725335 0.1372908 0.07958143 +0.6252316 0.1372908 0.07958143 +0.6806558 0.1372908 0.07958143 +0.7388448 0.1372908 0.07958143 +0.7998369 0.1372908 0.07958143 +0.8636691 0.1372908 0.07958143 +0.9303782 0.1372908 0.07958143 +1 0.1372908 0.07958143 +0 0.1606827 0.07958143 +0.002418731 0.1606827 0.07958143 +0.005155668 0.1606827 0.07958143 +0.009080105 0.1606827 0.07958143 +0.01434988 0.1606827 0.07958143 +0.02107202 0.1606827 0.07958143 +0.02934285 0.1606827 0.07958143 +0.03925039 0.1606827 0.07958143 +0.05087609 0.1606827 0.07958143 +0.06429595 0.1606827 0.07958143 +0.07958143 0.1606827 0.07958143 +0.0968001 0.1606827 0.07958143 +0.1160161 0.1606827 0.07958143 +0.1372908 0.1606827 0.07958143 +0.1606827 0.1606827 0.07958143 +0.1862481 0.1606827 0.07958143 +0.2140411 0.1606827 0.07958143 +0.2441142 0.1606827 0.07958143 +0.2765176 0.1606827 0.07958143 +0.3113005 0.1606827 0.07958143 +0.3485102 0.1606827 0.07958143 +0.388193 0.1606827 0.07958143 +0.4303934 0.1606827 0.07958143 +0.4751555 0.1606827 0.07958143 +0.5225216 0.1606827 0.07958143 +0.5725335 0.1606827 0.07958143 +0.6252316 0.1606827 0.07958143 +0.6806558 0.1606827 0.07958143 +0.7388448 0.1606827 0.07958143 +0.7998369 0.1606827 0.07958143 +0.8636691 0.1606827 0.07958143 +0.9303782 0.1606827 0.07958143 +1 0.1606827 0.07958143 +0 0.1862481 0.07958143 +0.002418731 0.1862481 0.07958143 +0.005155668 0.1862481 0.07958143 +0.009080105 0.1862481 0.07958143 +0.01434988 0.1862481 0.07958143 +0.02107202 0.1862481 0.07958143 +0.02934285 0.1862481 0.07958143 +0.03925039 0.1862481 0.07958143 +0.05087609 0.1862481 0.07958143 +0.06429595 0.1862481 0.07958143 +0.07958143 0.1862481 0.07958143 +0.0968001 0.1862481 0.07958143 +0.1160161 0.1862481 0.07958143 +0.1372908 0.1862481 0.07958143 +0.1606827 0.1862481 0.07958143 +0.1862481 0.1862481 0.07958143 +0.2140411 0.1862481 0.07958143 +0.2441142 0.1862481 0.07958143 +0.2765176 0.1862481 0.07958143 +0.3113005 0.1862481 0.07958143 +0.3485102 0.1862481 0.07958143 +0.388193 0.1862481 0.07958143 +0.4303934 0.1862481 0.07958143 +0.4751555 0.1862481 0.07958143 +0.5225216 0.1862481 0.07958143 +0.5725335 0.1862481 0.07958143 +0.6252316 0.1862481 0.07958143 +0.6806558 0.1862481 0.07958143 +0.7388448 0.1862481 0.07958143 +0.7998369 0.1862481 0.07958143 +0.8636691 0.1862481 0.07958143 +0.9303782 0.1862481 0.07958143 +1 0.1862481 0.07958143 +0 0.2140411 0.07958143 +0.002418731 0.2140411 0.07958143 +0.005155668 0.2140411 0.07958143 +0.009080105 0.2140411 0.07958143 +0.01434988 0.2140411 0.07958143 +0.02107202 0.2140411 0.07958143 +0.02934285 0.2140411 0.07958143 +0.03925039 0.2140411 0.07958143 +0.05087609 0.2140411 0.07958143 +0.06429595 0.2140411 0.07958143 +0.07958143 0.2140411 0.07958143 +0.0968001 0.2140411 0.07958143 +0.1160161 0.2140411 0.07958143 +0.1372908 0.2140411 0.07958143 +0.1606827 0.2140411 0.07958143 +0.1862481 0.2140411 0.07958143 +0.2140411 0.2140411 0.07958143 +0.2441142 0.2140411 0.07958143 +0.2765176 0.2140411 0.07958143 +0.3113005 0.2140411 0.07958143 +0.3485102 0.2140411 0.07958143 +0.388193 0.2140411 0.07958143 +0.4303934 0.2140411 0.07958143 +0.4751555 0.2140411 0.07958143 +0.5225216 0.2140411 0.07958143 +0.5725335 0.2140411 0.07958143 +0.6252316 0.2140411 0.07958143 +0.6806558 0.2140411 0.07958143 +0.7388448 0.2140411 0.07958143 +0.7998369 0.2140411 0.07958143 +0.8636691 0.2140411 0.07958143 +0.9303782 0.2140411 0.07958143 +1 0.2140411 0.07958143 +0 0.2441142 0.07958143 +0.002418731 0.2441142 0.07958143 +0.005155668 0.2441142 0.07958143 +0.009080105 0.2441142 0.07958143 +0.01434988 0.2441142 0.07958143 +0.02107202 0.2441142 0.07958143 +0.02934285 0.2441142 0.07958143 +0.03925039 0.2441142 0.07958143 +0.05087609 0.2441142 0.07958143 +0.06429595 0.2441142 0.07958143 +0.07958143 0.2441142 0.07958143 +0.0968001 0.2441142 0.07958143 +0.1160161 0.2441142 0.07958143 +0.1372908 0.2441142 0.07958143 +0.1606827 0.2441142 0.07958143 +0.1862481 0.2441142 0.07958143 +0.2140411 0.2441142 0.07958143 +0.2441142 0.2441142 0.07958143 +0.2765176 0.2441142 0.07958143 +0.3113005 0.2441142 0.07958143 +0.3485102 0.2441142 0.07958143 +0.388193 0.2441142 0.07958143 +0.4303934 0.2441142 0.07958143 +0.4751555 0.2441142 0.07958143 +0.5225216 0.2441142 0.07958143 +0.5725335 0.2441142 0.07958143 +0.6252316 0.2441142 0.07958143 +0.6806558 0.2441142 0.07958143 +0.7388448 0.2441142 0.07958143 +0.7998369 0.2441142 0.07958143 +0.8636691 0.2441142 0.07958143 +0.9303782 0.2441142 0.07958143 +1 0.2441142 0.07958143 +0 0.2765176 0.07958143 +0.002418731 0.2765176 0.07958143 +0.005155668 0.2765176 0.07958143 +0.009080105 0.2765176 0.07958143 +0.01434988 0.2765176 0.07958143 +0.02107202 0.2765176 0.07958143 +0.02934285 0.2765176 0.07958143 +0.03925039 0.2765176 0.07958143 +0.05087609 0.2765176 0.07958143 +0.06429595 0.2765176 0.07958143 +0.07958143 0.2765176 0.07958143 +0.0968001 0.2765176 0.07958143 +0.1160161 0.2765176 0.07958143 +0.1372908 0.2765176 0.07958143 +0.1606827 0.2765176 0.07958143 +0.1862481 0.2765176 0.07958143 +0.2140411 0.2765176 0.07958143 +0.2441142 0.2765176 0.07958143 +0.2765176 0.2765176 0.07958143 +0.3113005 0.2765176 0.07958143 +0.3485102 0.2765176 0.07958143 +0.388193 0.2765176 0.07958143 +0.4303934 0.2765176 0.07958143 +0.4751555 0.2765176 0.07958143 +0.5225216 0.2765176 0.07958143 +0.5725335 0.2765176 0.07958143 +0.6252316 0.2765176 0.07958143 +0.6806558 0.2765176 0.07958143 +0.7388448 0.2765176 0.07958143 +0.7998369 0.2765176 0.07958143 +0.8636691 0.2765176 0.07958143 +0.9303782 0.2765176 0.07958143 +1 0.2765176 0.07958143 +0 0.3113005 0.07958143 +0.002418731 0.3113005 0.07958143 +0.005155668 0.3113005 0.07958143 +0.009080105 0.3113005 0.07958143 +0.01434988 0.3113005 0.07958143 +0.02107202 0.3113005 0.07958143 +0.02934285 0.3113005 0.07958143 +0.03925039 0.3113005 0.07958143 +0.05087609 0.3113005 0.07958143 +0.06429595 0.3113005 0.07958143 +0.07958143 0.3113005 0.07958143 +0.0968001 0.3113005 0.07958143 +0.1160161 0.3113005 0.07958143 +0.1372908 0.3113005 0.07958143 +0.1606827 0.3113005 0.07958143 +0.1862481 0.3113005 0.07958143 +0.2140411 0.3113005 0.07958143 +0.2441142 0.3113005 0.07958143 +0.2765176 0.3113005 0.07958143 +0.3113005 0.3113005 0.07958143 +0.3485102 0.3113005 0.07958143 +0.388193 0.3113005 0.07958143 +0.4303934 0.3113005 0.07958143 +0.4751555 0.3113005 0.07958143 +0.5225216 0.3113005 0.07958143 +0.5725335 0.3113005 0.07958143 +0.6252316 0.3113005 0.07958143 +0.6806558 0.3113005 0.07958143 +0.7388448 0.3113005 0.07958143 +0.7998369 0.3113005 0.07958143 +0.8636691 0.3113005 0.07958143 +0.9303782 0.3113005 0.07958143 +1 0.3113005 0.07958143 +0 0.3485102 0.07958143 +0.002418731 0.3485102 0.07958143 +0.005155668 0.3485102 0.07958143 +0.009080105 0.3485102 0.07958143 +0.01434988 0.3485102 0.07958143 +0.02107202 0.3485102 0.07958143 +0.02934285 0.3485102 0.07958143 +0.03925039 0.3485102 0.07958143 +0.05087609 0.3485102 0.07958143 +0.06429595 0.3485102 0.07958143 +0.07958143 0.3485102 0.07958143 +0.0968001 0.3485102 0.07958143 +0.1160161 0.3485102 0.07958143 +0.1372908 0.3485102 0.07958143 +0.1606827 0.3485102 0.07958143 +0.1862481 0.3485102 0.07958143 +0.2140411 0.3485102 0.07958143 +0.2441142 0.3485102 0.07958143 +0.2765176 0.3485102 0.07958143 +0.3113005 0.3485102 0.07958143 +0.3485102 0.3485102 0.07958143 +0.388193 0.3485102 0.07958143 +0.4303934 0.3485102 0.07958143 +0.4751555 0.3485102 0.07958143 +0.5225216 0.3485102 0.07958143 +0.5725335 0.3485102 0.07958143 +0.6252316 0.3485102 0.07958143 +0.6806558 0.3485102 0.07958143 +0.7388448 0.3485102 0.07958143 +0.7998369 0.3485102 0.07958143 +0.8636691 0.3485102 0.07958143 +0.9303782 0.3485102 0.07958143 +1 0.3485102 0.07958143 +0 0.388193 0.07958143 +0.002418731 0.388193 0.07958143 +0.005155668 0.388193 0.07958143 +0.009080105 0.388193 0.07958143 +0.01434988 0.388193 0.07958143 +0.02107202 0.388193 0.07958143 +0.02934285 0.388193 0.07958143 +0.03925039 0.388193 0.07958143 +0.05087609 0.388193 0.07958143 +0.06429595 0.388193 0.07958143 +0.07958143 0.388193 0.07958143 +0.0968001 0.388193 0.07958143 +0.1160161 0.388193 0.07958143 +0.1372908 0.388193 0.07958143 +0.1606827 0.388193 0.07958143 +0.1862481 0.388193 0.07958143 +0.2140411 0.388193 0.07958143 +0.2441142 0.388193 0.07958143 +0.2765176 0.388193 0.07958143 +0.3113005 0.388193 0.07958143 +0.3485102 0.388193 0.07958143 +0.388193 0.388193 0.07958143 +0.4303934 0.388193 0.07958143 +0.4751555 0.388193 0.07958143 +0.5225216 0.388193 0.07958143 +0.5725335 0.388193 0.07958143 +0.6252316 0.388193 0.07958143 +0.6806558 0.388193 0.07958143 +0.7388448 0.388193 0.07958143 +0.7998369 0.388193 0.07958143 +0.8636691 0.388193 0.07958143 +0.9303782 0.388193 0.07958143 +1 0.388193 0.07958143 +0 0.4303934 0.07958143 +0.002418731 0.4303934 0.07958143 +0.005155668 0.4303934 0.07958143 +0.009080105 0.4303934 0.07958143 +0.01434988 0.4303934 0.07958143 +0.02107202 0.4303934 0.07958143 +0.02934285 0.4303934 0.07958143 +0.03925039 0.4303934 0.07958143 +0.05087609 0.4303934 0.07958143 +0.06429595 0.4303934 0.07958143 +0.07958143 0.4303934 0.07958143 +0.0968001 0.4303934 0.07958143 +0.1160161 0.4303934 0.07958143 +0.1372908 0.4303934 0.07958143 +0.1606827 0.4303934 0.07958143 +0.1862481 0.4303934 0.07958143 +0.2140411 0.4303934 0.07958143 +0.2441142 0.4303934 0.07958143 +0.2765176 0.4303934 0.07958143 +0.3113005 0.4303934 0.07958143 +0.3485102 0.4303934 0.07958143 +0.388193 0.4303934 0.07958143 +0.4303934 0.4303934 0.07958143 +0.4751555 0.4303934 0.07958143 +0.5225216 0.4303934 0.07958143 +0.5725335 0.4303934 0.07958143 +0.6252316 0.4303934 0.07958143 +0.6806558 0.4303934 0.07958143 +0.7388448 0.4303934 0.07958143 +0.7998369 0.4303934 0.07958143 +0.8636691 0.4303934 0.07958143 +0.9303782 0.4303934 0.07958143 +1 0.4303934 0.07958143 +0 0.4751555 0.07958143 +0.002418731 0.4751555 0.07958143 +0.005155668 0.4751555 0.07958143 +0.009080105 0.4751555 0.07958143 +0.01434988 0.4751555 0.07958143 +0.02107202 0.4751555 0.07958143 +0.02934285 0.4751555 0.07958143 +0.03925039 0.4751555 0.07958143 +0.05087609 0.4751555 0.07958143 +0.06429595 0.4751555 0.07958143 +0.07958143 0.4751555 0.07958143 +0.0968001 0.4751555 0.07958143 +0.1160161 0.4751555 0.07958143 +0.1372908 0.4751555 0.07958143 +0.1606827 0.4751555 0.07958143 +0.1862481 0.4751555 0.07958143 +0.2140411 0.4751555 0.07958143 +0.2441142 0.4751555 0.07958143 +0.2765176 0.4751555 0.07958143 +0.3113005 0.4751555 0.07958143 +0.3485102 0.4751555 0.07958143 +0.388193 0.4751555 0.07958143 +0.4303934 0.4751555 0.07958143 +0.4751555 0.4751555 0.07958143 +0.5225216 0.4751555 0.07958143 +0.5725335 0.4751555 0.07958143 +0.6252316 0.4751555 0.07958143 +0.6806558 0.4751555 0.07958143 +0.7388448 0.4751555 0.07958143 +0.7998369 0.4751555 0.07958143 +0.8636691 0.4751555 0.07958143 +0.9303782 0.4751555 0.07958143 +1 0.4751555 0.07958143 +0 0.5225216 0.07958143 +0.002418731 0.5225216 0.07958143 +0.005155668 0.5225216 0.07958143 +0.009080105 0.5225216 0.07958143 +0.01434988 0.5225216 0.07958143 +0.02107202 0.5225216 0.07958143 +0.02934285 0.5225216 0.07958143 +0.03925039 0.5225216 0.07958143 +0.05087609 0.5225216 0.07958143 +0.06429595 0.5225216 0.07958143 +0.07958143 0.5225216 0.07958143 +0.0968001 0.5225216 0.07958143 +0.1160161 0.5225216 0.07958143 +0.1372908 0.5225216 0.07958143 +0.1606827 0.5225216 0.07958143 +0.1862481 0.5225216 0.07958143 +0.2140411 0.5225216 0.07958143 +0.2441142 0.5225216 0.07958143 +0.2765176 0.5225216 0.07958143 +0.3113005 0.5225216 0.07958143 +0.3485102 0.5225216 0.07958143 +0.388193 0.5225216 0.07958143 +0.4303934 0.5225216 0.07958143 +0.4751555 0.5225216 0.07958143 +0.5225216 0.5225216 0.07958143 +0.5725335 0.5225216 0.07958143 +0.6252316 0.5225216 0.07958143 +0.6806558 0.5225216 0.07958143 +0.7388448 0.5225216 0.07958143 +0.7998369 0.5225216 0.07958143 +0.8636691 0.5225216 0.07958143 +0.9303782 0.5225216 0.07958143 +1 0.5225216 0.07958143 +0 0.5725335 0.07958143 +0.002418731 0.5725335 0.07958143 +0.005155668 0.5725335 0.07958143 +0.009080105 0.5725335 0.07958143 +0.01434988 0.5725335 0.07958143 +0.02107202 0.5725335 0.07958143 +0.02934285 0.5725335 0.07958143 +0.03925039 0.5725335 0.07958143 +0.05087609 0.5725335 0.07958143 +0.06429595 0.5725335 0.07958143 +0.07958143 0.5725335 0.07958143 +0.0968001 0.5725335 0.07958143 +0.1160161 0.5725335 0.07958143 +0.1372908 0.5725335 0.07958143 +0.1606827 0.5725335 0.07958143 +0.1862481 0.5725335 0.07958143 +0.2140411 0.5725335 0.07958143 +0.2441142 0.5725335 0.07958143 +0.2765176 0.5725335 0.07958143 +0.3113005 0.5725335 0.07958143 +0.3485102 0.5725335 0.07958143 +0.388193 0.5725335 0.07958143 +0.4303934 0.5725335 0.07958143 +0.4751555 0.5725335 0.07958143 +0.5225216 0.5725335 0.07958143 +0.5725335 0.5725335 0.07958143 +0.6252316 0.5725335 0.07958143 +0.6806558 0.5725335 0.07958143 +0.7388448 0.5725335 0.07958143 +0.7998369 0.5725335 0.07958143 +0.8636691 0.5725335 0.07958143 +0.9303782 0.5725335 0.07958143 +1 0.5725335 0.07958143 +0 0.6252316 0.07958143 +0.002418731 0.6252316 0.07958143 +0.005155668 0.6252316 0.07958143 +0.009080105 0.6252316 0.07958143 +0.01434988 0.6252316 0.07958143 +0.02107202 0.6252316 0.07958143 +0.02934285 0.6252316 0.07958143 +0.03925039 0.6252316 0.07958143 +0.05087609 0.6252316 0.07958143 +0.06429595 0.6252316 0.07958143 +0.07958143 0.6252316 0.07958143 +0.0968001 0.6252316 0.07958143 +0.1160161 0.6252316 0.07958143 +0.1372908 0.6252316 0.07958143 +0.1606827 0.6252316 0.07958143 +0.1862481 0.6252316 0.07958143 +0.2140411 0.6252316 0.07958143 +0.2441142 0.6252316 0.07958143 +0.2765176 0.6252316 0.07958143 +0.3113005 0.6252316 0.07958143 +0.3485102 0.6252316 0.07958143 +0.388193 0.6252316 0.07958143 +0.4303934 0.6252316 0.07958143 +0.4751555 0.6252316 0.07958143 +0.5225216 0.6252316 0.07958143 +0.5725335 0.6252316 0.07958143 +0.6252316 0.6252316 0.07958143 +0.6806558 0.6252316 0.07958143 +0.7388448 0.6252316 0.07958143 +0.7998369 0.6252316 0.07958143 +0.8636691 0.6252316 0.07958143 +0.9303782 0.6252316 0.07958143 +1 0.6252316 0.07958143 +0 0.6806558 0.07958143 +0.002418731 0.6806558 0.07958143 +0.005155668 0.6806558 0.07958143 +0.009080105 0.6806558 0.07958143 +0.01434988 0.6806558 0.07958143 +0.02107202 0.6806558 0.07958143 +0.02934285 0.6806558 0.07958143 +0.03925039 0.6806558 0.07958143 +0.05087609 0.6806558 0.07958143 +0.06429595 0.6806558 0.07958143 +0.07958143 0.6806558 0.07958143 +0.0968001 0.6806558 0.07958143 +0.1160161 0.6806558 0.07958143 +0.1372908 0.6806558 0.07958143 +0.1606827 0.6806558 0.07958143 +0.1862481 0.6806558 0.07958143 +0.2140411 0.6806558 0.07958143 +0.2441142 0.6806558 0.07958143 +0.2765176 0.6806558 0.07958143 +0.3113005 0.6806558 0.07958143 +0.3485102 0.6806558 0.07958143 +0.388193 0.6806558 0.07958143 +0.4303934 0.6806558 0.07958143 +0.4751555 0.6806558 0.07958143 +0.5225216 0.6806558 0.07958143 +0.5725335 0.6806558 0.07958143 +0.6252316 0.6806558 0.07958143 +0.6806558 0.6806558 0.07958143 +0.7388448 0.6806558 0.07958143 +0.7998369 0.6806558 0.07958143 +0.8636691 0.6806558 0.07958143 +0.9303782 0.6806558 0.07958143 +1 0.6806558 0.07958143 +0 0.7388448 0.07958143 +0.002418731 0.7388448 0.07958143 +0.005155668 0.7388448 0.07958143 +0.009080105 0.7388448 0.07958143 +0.01434988 0.7388448 0.07958143 +0.02107202 0.7388448 0.07958143 +0.02934285 0.7388448 0.07958143 +0.03925039 0.7388448 0.07958143 +0.05087609 0.7388448 0.07958143 +0.06429595 0.7388448 0.07958143 +0.07958143 0.7388448 0.07958143 +0.0968001 0.7388448 0.07958143 +0.1160161 0.7388448 0.07958143 +0.1372908 0.7388448 0.07958143 +0.1606827 0.7388448 0.07958143 +0.1862481 0.7388448 0.07958143 +0.2140411 0.7388448 0.07958143 +0.2441142 0.7388448 0.07958143 +0.2765176 0.7388448 0.07958143 +0.3113005 0.7388448 0.07958143 +0.3485102 0.7388448 0.07958143 +0.388193 0.7388448 0.07958143 +0.4303934 0.7388448 0.07958143 +0.4751555 0.7388448 0.07958143 +0.5225216 0.7388448 0.07958143 +0.5725335 0.7388448 0.07958143 +0.6252316 0.7388448 0.07958143 +0.6806558 0.7388448 0.07958143 +0.7388448 0.7388448 0.07958143 +0.7998369 0.7388448 0.07958143 +0.8636691 0.7388448 0.07958143 +0.9303782 0.7388448 0.07958143 +1 0.7388448 0.07958143 +0 0.7998369 0.07958143 +0.002418731 0.7998369 0.07958143 +0.005155668 0.7998369 0.07958143 +0.009080105 0.7998369 0.07958143 +0.01434988 0.7998369 0.07958143 +0.02107202 0.7998369 0.07958143 +0.02934285 0.7998369 0.07958143 +0.03925039 0.7998369 0.07958143 +0.05087609 0.7998369 0.07958143 +0.06429595 0.7998369 0.07958143 +0.07958143 0.7998369 0.07958143 +0.0968001 0.7998369 0.07958143 +0.1160161 0.7998369 0.07958143 +0.1372908 0.7998369 0.07958143 +0.1606827 0.7998369 0.07958143 +0.1862481 0.7998369 0.07958143 +0.2140411 0.7998369 0.07958143 +0.2441142 0.7998369 0.07958143 +0.2765176 0.7998369 0.07958143 +0.3113005 0.7998369 0.07958143 +0.3485102 0.7998369 0.07958143 +0.388193 0.7998369 0.07958143 +0.4303934 0.7998369 0.07958143 +0.4751555 0.7998369 0.07958143 +0.5225216 0.7998369 0.07958143 +0.5725335 0.7998369 0.07958143 +0.6252316 0.7998369 0.07958143 +0.6806558 0.7998369 0.07958143 +0.7388448 0.7998369 0.07958143 +0.7998369 0.7998369 0.07958143 +0.8636691 0.7998369 0.07958143 +0.9303782 0.7998369 0.07958143 +1 0.7998369 0.07958143 +0 0.8636691 0.07958143 +0.002418731 0.8636691 0.07958143 +0.005155668 0.8636691 0.07958143 +0.009080105 0.8636691 0.07958143 +0.01434988 0.8636691 0.07958143 +0.02107202 0.8636691 0.07958143 +0.02934285 0.8636691 0.07958143 +0.03925039 0.8636691 0.07958143 +0.05087609 0.8636691 0.07958143 +0.06429595 0.8636691 0.07958143 +0.07958143 0.8636691 0.07958143 +0.0968001 0.8636691 0.07958143 +0.1160161 0.8636691 0.07958143 +0.1372908 0.8636691 0.07958143 +0.1606827 0.8636691 0.07958143 +0.1862481 0.8636691 0.07958143 +0.2140411 0.8636691 0.07958143 +0.2441142 0.8636691 0.07958143 +0.2765176 0.8636691 0.07958143 +0.3113005 0.8636691 0.07958143 +0.3485102 0.8636691 0.07958143 +0.388193 0.8636691 0.07958143 +0.4303934 0.8636691 0.07958143 +0.4751555 0.8636691 0.07958143 +0.5225216 0.8636691 0.07958143 +0.5725335 0.8636691 0.07958143 +0.6252316 0.8636691 0.07958143 +0.6806558 0.8636691 0.07958143 +0.7388448 0.8636691 0.07958143 +0.7998369 0.8636691 0.07958143 +0.8636691 0.8636691 0.07958143 +0.9303782 0.8636691 0.07958143 +1 0.8636691 0.07958143 +0 0.9303782 0.07958143 +0.002418731 0.9303782 0.07958143 +0.005155668 0.9303782 0.07958143 +0.009080105 0.9303782 0.07958143 +0.01434988 0.9303782 0.07958143 +0.02107202 0.9303782 0.07958143 +0.02934285 0.9303782 0.07958143 +0.03925039 0.9303782 0.07958143 +0.05087609 0.9303782 0.07958143 +0.06429595 0.9303782 0.07958143 +0.07958143 0.9303782 0.07958143 +0.0968001 0.9303782 0.07958143 +0.1160161 0.9303782 0.07958143 +0.1372908 0.9303782 0.07958143 +0.1606827 0.9303782 0.07958143 +0.1862481 0.9303782 0.07958143 +0.2140411 0.9303782 0.07958143 +0.2441142 0.9303782 0.07958143 +0.2765176 0.9303782 0.07958143 +0.3113005 0.9303782 0.07958143 +0.3485102 0.9303782 0.07958143 +0.388193 0.9303782 0.07958143 +0.4303934 0.9303782 0.07958143 +0.4751555 0.9303782 0.07958143 +0.5225216 0.9303782 0.07958143 +0.5725335 0.9303782 0.07958143 +0.6252316 0.9303782 0.07958143 +0.6806558 0.9303782 0.07958143 +0.7388448 0.9303782 0.07958143 +0.7998369 0.9303782 0.07958143 +0.8636691 0.9303782 0.07958143 +0.9303782 0.9303782 0.07958143 +1 0.9303782 0.07958143 +0 1 0.07958143 +0.002418731 1 0.07958143 +0.005155668 1 0.07958143 +0.009080105 1 0.07958143 +0.01434988 1 0.07958143 +0.02107202 1 0.07958143 +0.02934285 1 0.07958143 +0.03925039 1 0.07958143 +0.05087609 1 0.07958143 +0.06429595 1 0.07958143 +0.07958143 1 0.07958143 +0.0968001 1 0.07958143 +0.1160161 1 0.07958143 +0.1372908 1 0.07958143 +0.1606827 1 0.07958143 +0.1862481 1 0.07958143 +0.2140411 1 0.07958143 +0.2441142 1 0.07958143 +0.2765176 1 0.07958143 +0.3113005 1 0.07958143 +0.3485102 1 0.07958143 +0.388193 1 0.07958143 +0.4303934 1 0.07958143 +0.4751555 1 0.07958143 +0.5225216 1 0.07958143 +0.5725335 1 0.07958143 +0.6252316 1 0.07958143 +0.6806558 1 0.07958143 +0.7388448 1 0.07958143 +0.7998369 1 0.07958143 +0.8636691 1 0.07958143 +0.9303782 1 0.07958143 +1 1 0.07958143 +0 0 0.0968001 +0.002418731 0 0.0968001 +0.005155668 0 0.0968001 +0.009080105 0 0.0968001 +0.01434988 0 0.0968001 +0.02107202 0 0.0968001 +0.02934285 0 0.0968001 +0.03925039 0 0.0968001 +0.05087609 0 0.0968001 +0.06429595 0 0.0968001 +0.07958143 0 0.0968001 +0.0968001 0 0.0968001 +0.1160161 0 0.0968001 +0.1372908 0 0.0968001 +0.1606827 0 0.0968001 +0.1862481 0 0.0968001 +0.2140411 0 0.0968001 +0.2441142 0 0.0968001 +0.2765176 0 0.0968001 +0.3113005 0 0.0968001 +0.3485102 0 0.0968001 +0.388193 0 0.0968001 +0.4303934 0 0.0968001 +0.4751555 0 0.0968001 +0.5225216 0 0.0968001 +0.5725335 0 0.0968001 +0.6252316 0 0.0968001 +0.6806558 0 0.0968001 +0.7388448 0 0.0968001 +0.7998369 0 0.0968001 +0.8636691 0 0.0968001 +0.9303782 0 0.0968001 +1 0 0.0968001 +0 0.002418731 0.0968001 +0.002418731 0.002418731 0.0968001 +0.005155668 0.002418731 0.0968001 +0.009080105 0.002418731 0.0968001 +0.01434988 0.002418731 0.0968001 +0.02107202 0.002418731 0.0968001 +0.02934285 0.002418731 0.0968001 +0.03925039 0.002418731 0.0968001 +0.05087609 0.002418731 0.0968001 +0.06429595 0.002418731 0.0968001 +0.07958143 0.002418731 0.0968001 +0.0968001 0.002418731 0.0968001 +0.1160161 0.002418731 0.0968001 +0.1372908 0.002418731 0.0968001 +0.1606827 0.002418731 0.0968001 +0.1862481 0.002418731 0.0968001 +0.2140411 0.002418731 0.0968001 +0.2441142 0.002418731 0.0968001 +0.2765176 0.002418731 0.0968001 +0.3113005 0.002418731 0.0968001 +0.3485102 0.002418731 0.0968001 +0.388193 0.002418731 0.0968001 +0.4303934 0.002418731 0.0968001 +0.4751555 0.002418731 0.0968001 +0.5225216 0.002418731 0.0968001 +0.5725335 0.002418731 0.0968001 +0.6252316 0.002418731 0.0968001 +0.6806558 0.002418731 0.0968001 +0.7388448 0.002418731 0.0968001 +0.7998369 0.002418731 0.0968001 +0.8636691 0.002418731 0.0968001 +0.9303782 0.002418731 0.0968001 +1 0.002418731 0.0968001 +0 0.005155668 0.0968001 +0.002418731 0.005155668 0.0968001 +0.005155668 0.005155668 0.0968001 +0.009080105 0.005155668 0.0968001 +0.01434988 0.005155668 0.0968001 +0.02107202 0.005155668 0.0968001 +0.02934285 0.005155668 0.0968001 +0.03925039 0.005155668 0.0968001 +0.05087609 0.005155668 0.0968001 +0.06429595 0.005155668 0.0968001 +0.07958143 0.005155668 0.0968001 +0.0968001 0.005155668 0.0968001 +0.1160161 0.005155668 0.0968001 +0.1372908 0.005155668 0.0968001 +0.1606827 0.005155668 0.0968001 +0.1862481 0.005155668 0.0968001 +0.2140411 0.005155668 0.0968001 +0.2441142 0.005155668 0.0968001 +0.2765176 0.005155668 0.0968001 +0.3113005 0.005155668 0.0968001 +0.3485102 0.005155668 0.0968001 +0.388193 0.005155668 0.0968001 +0.4303934 0.005155668 0.0968001 +0.4751555 0.005155668 0.0968001 +0.5225216 0.005155668 0.0968001 +0.5725335 0.005155668 0.0968001 +0.6252316 0.005155668 0.0968001 +0.6806558 0.005155668 0.0968001 +0.7388448 0.005155668 0.0968001 +0.7998369 0.005155668 0.0968001 +0.8636691 0.005155668 0.0968001 +0.9303782 0.005155668 0.0968001 +1 0.005155668 0.0968001 +0 0.009080105 0.0968001 +0.002418731 0.009080105 0.0968001 +0.005155668 0.009080105 0.0968001 +0.009080105 0.009080105 0.0968001 +0.01434988 0.009080105 0.0968001 +0.02107202 0.009080105 0.0968001 +0.02934285 0.009080105 0.0968001 +0.03925039 0.009080105 0.0968001 +0.05087609 0.009080105 0.0968001 +0.06429595 0.009080105 0.0968001 +0.07958143 0.009080105 0.0968001 +0.0968001 0.009080105 0.0968001 +0.1160161 0.009080105 0.0968001 +0.1372908 0.009080105 0.0968001 +0.1606827 0.009080105 0.0968001 +0.1862481 0.009080105 0.0968001 +0.2140411 0.009080105 0.0968001 +0.2441142 0.009080105 0.0968001 +0.2765176 0.009080105 0.0968001 +0.3113005 0.009080105 0.0968001 +0.3485102 0.009080105 0.0968001 +0.388193 0.009080105 0.0968001 +0.4303934 0.009080105 0.0968001 +0.4751555 0.009080105 0.0968001 +0.5225216 0.009080105 0.0968001 +0.5725335 0.009080105 0.0968001 +0.6252316 0.009080105 0.0968001 +0.6806558 0.009080105 0.0968001 +0.7388448 0.009080105 0.0968001 +0.7998369 0.009080105 0.0968001 +0.8636691 0.009080105 0.0968001 +0.9303782 0.009080105 0.0968001 +1 0.009080105 0.0968001 +0 0.01434988 0.0968001 +0.002418731 0.01434988 0.0968001 +0.005155668 0.01434988 0.0968001 +0.009080105 0.01434988 0.0968001 +0.01434988 0.01434988 0.0968001 +0.02107202 0.01434988 0.0968001 +0.02934285 0.01434988 0.0968001 +0.03925039 0.01434988 0.0968001 +0.05087609 0.01434988 0.0968001 +0.06429595 0.01434988 0.0968001 +0.07958143 0.01434988 0.0968001 +0.0968001 0.01434988 0.0968001 +0.1160161 0.01434988 0.0968001 +0.1372908 0.01434988 0.0968001 +0.1606827 0.01434988 0.0968001 +0.1862481 0.01434988 0.0968001 +0.2140411 0.01434988 0.0968001 +0.2441142 0.01434988 0.0968001 +0.2765176 0.01434988 0.0968001 +0.3113005 0.01434988 0.0968001 +0.3485102 0.01434988 0.0968001 +0.388193 0.01434988 0.0968001 +0.4303934 0.01434988 0.0968001 +0.4751555 0.01434988 0.0968001 +0.5225216 0.01434988 0.0968001 +0.5725335 0.01434988 0.0968001 +0.6252316 0.01434988 0.0968001 +0.6806558 0.01434988 0.0968001 +0.7388448 0.01434988 0.0968001 +0.7998369 0.01434988 0.0968001 +0.8636691 0.01434988 0.0968001 +0.9303782 0.01434988 0.0968001 +1 0.01434988 0.0968001 +0 0.02107202 0.0968001 +0.002418731 0.02107202 0.0968001 +0.005155668 0.02107202 0.0968001 +0.009080105 0.02107202 0.0968001 +0.01434988 0.02107202 0.0968001 +0.02107202 0.02107202 0.0968001 +0.02934285 0.02107202 0.0968001 +0.03925039 0.02107202 0.0968001 +0.05087609 0.02107202 0.0968001 +0.06429595 0.02107202 0.0968001 +0.07958143 0.02107202 0.0968001 +0.0968001 0.02107202 0.0968001 +0.1160161 0.02107202 0.0968001 +0.1372908 0.02107202 0.0968001 +0.1606827 0.02107202 0.0968001 +0.1862481 0.02107202 0.0968001 +0.2140411 0.02107202 0.0968001 +0.2441142 0.02107202 0.0968001 +0.2765176 0.02107202 0.0968001 +0.3113005 0.02107202 0.0968001 +0.3485102 0.02107202 0.0968001 +0.388193 0.02107202 0.0968001 +0.4303934 0.02107202 0.0968001 +0.4751555 0.02107202 0.0968001 +0.5225216 0.02107202 0.0968001 +0.5725335 0.02107202 0.0968001 +0.6252316 0.02107202 0.0968001 +0.6806558 0.02107202 0.0968001 +0.7388448 0.02107202 0.0968001 +0.7998369 0.02107202 0.0968001 +0.8636691 0.02107202 0.0968001 +0.9303782 0.02107202 0.0968001 +1 0.02107202 0.0968001 +0 0.02934285 0.0968001 +0.002418731 0.02934285 0.0968001 +0.005155668 0.02934285 0.0968001 +0.009080105 0.02934285 0.0968001 +0.01434988 0.02934285 0.0968001 +0.02107202 0.02934285 0.0968001 +0.02934285 0.02934285 0.0968001 +0.03925039 0.02934285 0.0968001 +0.05087609 0.02934285 0.0968001 +0.06429595 0.02934285 0.0968001 +0.07958143 0.02934285 0.0968001 +0.0968001 0.02934285 0.0968001 +0.1160161 0.02934285 0.0968001 +0.1372908 0.02934285 0.0968001 +0.1606827 0.02934285 0.0968001 +0.1862481 0.02934285 0.0968001 +0.2140411 0.02934285 0.0968001 +0.2441142 0.02934285 0.0968001 +0.2765176 0.02934285 0.0968001 +0.3113005 0.02934285 0.0968001 +0.3485102 0.02934285 0.0968001 +0.388193 0.02934285 0.0968001 +0.4303934 0.02934285 0.0968001 +0.4751555 0.02934285 0.0968001 +0.5225216 0.02934285 0.0968001 +0.5725335 0.02934285 0.0968001 +0.6252316 0.02934285 0.0968001 +0.6806558 0.02934285 0.0968001 +0.7388448 0.02934285 0.0968001 +0.7998369 0.02934285 0.0968001 +0.8636691 0.02934285 0.0968001 +0.9303782 0.02934285 0.0968001 +1 0.02934285 0.0968001 +0 0.03925039 0.0968001 +0.002418731 0.03925039 0.0968001 +0.005155668 0.03925039 0.0968001 +0.009080105 0.03925039 0.0968001 +0.01434988 0.03925039 0.0968001 +0.02107202 0.03925039 0.0968001 +0.02934285 0.03925039 0.0968001 +0.03925039 0.03925039 0.0968001 +0.05087609 0.03925039 0.0968001 +0.06429595 0.03925039 0.0968001 +0.07958143 0.03925039 0.0968001 +0.0968001 0.03925039 0.0968001 +0.1160161 0.03925039 0.0968001 +0.1372908 0.03925039 0.0968001 +0.1606827 0.03925039 0.0968001 +0.1862481 0.03925039 0.0968001 +0.2140411 0.03925039 0.0968001 +0.2441142 0.03925039 0.0968001 +0.2765176 0.03925039 0.0968001 +0.3113005 0.03925039 0.0968001 +0.3485102 0.03925039 0.0968001 +0.388193 0.03925039 0.0968001 +0.4303934 0.03925039 0.0968001 +0.4751555 0.03925039 0.0968001 +0.5225216 0.03925039 0.0968001 +0.5725335 0.03925039 0.0968001 +0.6252316 0.03925039 0.0968001 +0.6806558 0.03925039 0.0968001 +0.7388448 0.03925039 0.0968001 +0.7998369 0.03925039 0.0968001 +0.8636691 0.03925039 0.0968001 +0.9303782 0.03925039 0.0968001 +1 0.03925039 0.0968001 +0 0.05087609 0.0968001 +0.002418731 0.05087609 0.0968001 +0.005155668 0.05087609 0.0968001 +0.009080105 0.05087609 0.0968001 +0.01434988 0.05087609 0.0968001 +0.02107202 0.05087609 0.0968001 +0.02934285 0.05087609 0.0968001 +0.03925039 0.05087609 0.0968001 +0.05087609 0.05087609 0.0968001 +0.06429595 0.05087609 0.0968001 +0.07958143 0.05087609 0.0968001 +0.0968001 0.05087609 0.0968001 +0.1160161 0.05087609 0.0968001 +0.1372908 0.05087609 0.0968001 +0.1606827 0.05087609 0.0968001 +0.1862481 0.05087609 0.0968001 +0.2140411 0.05087609 0.0968001 +0.2441142 0.05087609 0.0968001 +0.2765176 0.05087609 0.0968001 +0.3113005 0.05087609 0.0968001 +0.3485102 0.05087609 0.0968001 +0.388193 0.05087609 0.0968001 +0.4303934 0.05087609 0.0968001 +0.4751555 0.05087609 0.0968001 +0.5225216 0.05087609 0.0968001 +0.5725335 0.05087609 0.0968001 +0.6252316 0.05087609 0.0968001 +0.6806558 0.05087609 0.0968001 +0.7388448 0.05087609 0.0968001 +0.7998369 0.05087609 0.0968001 +0.8636691 0.05087609 0.0968001 +0.9303782 0.05087609 0.0968001 +1 0.05087609 0.0968001 +0 0.06429595 0.0968001 +0.002418731 0.06429595 0.0968001 +0.005155668 0.06429595 0.0968001 +0.009080105 0.06429595 0.0968001 +0.01434988 0.06429595 0.0968001 +0.02107202 0.06429595 0.0968001 +0.02934285 0.06429595 0.0968001 +0.03925039 0.06429595 0.0968001 +0.05087609 0.06429595 0.0968001 +0.06429595 0.06429595 0.0968001 +0.07958143 0.06429595 0.0968001 +0.0968001 0.06429595 0.0968001 +0.1160161 0.06429595 0.0968001 +0.1372908 0.06429595 0.0968001 +0.1606827 0.06429595 0.0968001 +0.1862481 0.06429595 0.0968001 +0.2140411 0.06429595 0.0968001 +0.2441142 0.06429595 0.0968001 +0.2765176 0.06429595 0.0968001 +0.3113005 0.06429595 0.0968001 +0.3485102 0.06429595 0.0968001 +0.388193 0.06429595 0.0968001 +0.4303934 0.06429595 0.0968001 +0.4751555 0.06429595 0.0968001 +0.5225216 0.06429595 0.0968001 +0.5725335 0.06429595 0.0968001 +0.6252316 0.06429595 0.0968001 +0.6806558 0.06429595 0.0968001 +0.7388448 0.06429595 0.0968001 +0.7998369 0.06429595 0.0968001 +0.8636691 0.06429595 0.0968001 +0.9303782 0.06429595 0.0968001 +1 0.06429595 0.0968001 +0 0.07958143 0.0968001 +0.002418731 0.07958143 0.0968001 +0.005155668 0.07958143 0.0968001 +0.009080105 0.07958143 0.0968001 +0.01434988 0.07958143 0.0968001 +0.02107202 0.07958143 0.0968001 +0.02934285 0.07958143 0.0968001 +0.03925039 0.07958143 0.0968001 +0.05087609 0.07958143 0.0968001 +0.06429595 0.07958143 0.0968001 +0.07958143 0.07958143 0.0968001 +0.0968001 0.07958143 0.0968001 +0.1160161 0.07958143 0.0968001 +0.1372908 0.07958143 0.0968001 +0.1606827 0.07958143 0.0968001 +0.1862481 0.07958143 0.0968001 +0.2140411 0.07958143 0.0968001 +0.2441142 0.07958143 0.0968001 +0.2765176 0.07958143 0.0968001 +0.3113005 0.07958143 0.0968001 +0.3485102 0.07958143 0.0968001 +0.388193 0.07958143 0.0968001 +0.4303934 0.07958143 0.0968001 +0.4751555 0.07958143 0.0968001 +0.5225216 0.07958143 0.0968001 +0.5725335 0.07958143 0.0968001 +0.6252316 0.07958143 0.0968001 +0.6806558 0.07958143 0.0968001 +0.7388448 0.07958143 0.0968001 +0.7998369 0.07958143 0.0968001 +0.8636691 0.07958143 0.0968001 +0.9303782 0.07958143 0.0968001 +1 0.07958143 0.0968001 +0 0.0968001 0.0968001 +0.002418731 0.0968001 0.0968001 +0.005155668 0.0968001 0.0968001 +0.009080105 0.0968001 0.0968001 +0.01434988 0.0968001 0.0968001 +0.02107202 0.0968001 0.0968001 +0.02934285 0.0968001 0.0968001 +0.03925039 0.0968001 0.0968001 +0.05087609 0.0968001 0.0968001 +0.06429595 0.0968001 0.0968001 +0.07958143 0.0968001 0.0968001 +0.0968001 0.0968001 0.0968001 +0.1160161 0.0968001 0.0968001 +0.1372908 0.0968001 0.0968001 +0.1606827 0.0968001 0.0968001 +0.1862481 0.0968001 0.0968001 +0.2140411 0.0968001 0.0968001 +0.2441142 0.0968001 0.0968001 +0.2765176 0.0968001 0.0968001 +0.3113005 0.0968001 0.0968001 +0.3485102 0.0968001 0.0968001 +0.388193 0.0968001 0.0968001 +0.4303934 0.0968001 0.0968001 +0.4751555 0.0968001 0.0968001 +0.5225216 0.0968001 0.0968001 +0.5725335 0.0968001 0.0968001 +0.6252316 0.0968001 0.0968001 +0.6806558 0.0968001 0.0968001 +0.7388448 0.0968001 0.0968001 +0.7998369 0.0968001 0.0968001 +0.8636691 0.0968001 0.0968001 +0.9303782 0.0968001 0.0968001 +1 0.0968001 0.0968001 +0 0.1160161 0.0968001 +0.002418731 0.1160161 0.0968001 +0.005155668 0.1160161 0.0968001 +0.009080105 0.1160161 0.0968001 +0.01434988 0.1160161 0.0968001 +0.02107202 0.1160161 0.0968001 +0.02934285 0.1160161 0.0968001 +0.03925039 0.1160161 0.0968001 +0.05087609 0.1160161 0.0968001 +0.06429595 0.1160161 0.0968001 +0.07958143 0.1160161 0.0968001 +0.0968001 0.1160161 0.0968001 +0.1160161 0.1160161 0.0968001 +0.1372908 0.1160161 0.0968001 +0.1606827 0.1160161 0.0968001 +0.1862481 0.1160161 0.0968001 +0.2140411 0.1160161 0.0968001 +0.2441142 0.1160161 0.0968001 +0.2765176 0.1160161 0.0968001 +0.3113005 0.1160161 0.0968001 +0.3485102 0.1160161 0.0968001 +0.388193 0.1160161 0.0968001 +0.4303934 0.1160161 0.0968001 +0.4751555 0.1160161 0.0968001 +0.5225216 0.1160161 0.0968001 +0.5725335 0.1160161 0.0968001 +0.6252316 0.1160161 0.0968001 +0.6806558 0.1160161 0.0968001 +0.7388448 0.1160161 0.0968001 +0.7998369 0.1160161 0.0968001 +0.8636691 0.1160161 0.0968001 +0.9303782 0.1160161 0.0968001 +1 0.1160161 0.0968001 +0 0.1372908 0.0968001 +0.002418731 0.1372908 0.0968001 +0.005155668 0.1372908 0.0968001 +0.009080105 0.1372908 0.0968001 +0.01434988 0.1372908 0.0968001 +0.02107202 0.1372908 0.0968001 +0.02934285 0.1372908 0.0968001 +0.03925039 0.1372908 0.0968001 +0.05087609 0.1372908 0.0968001 +0.06429595 0.1372908 0.0968001 +0.07958143 0.1372908 0.0968001 +0.0968001 0.1372908 0.0968001 +0.1160161 0.1372908 0.0968001 +0.1372908 0.1372908 0.0968001 +0.1606827 0.1372908 0.0968001 +0.1862481 0.1372908 0.0968001 +0.2140411 0.1372908 0.0968001 +0.2441142 0.1372908 0.0968001 +0.2765176 0.1372908 0.0968001 +0.3113005 0.1372908 0.0968001 +0.3485102 0.1372908 0.0968001 +0.388193 0.1372908 0.0968001 +0.4303934 0.1372908 0.0968001 +0.4751555 0.1372908 0.0968001 +0.5225216 0.1372908 0.0968001 +0.5725335 0.1372908 0.0968001 +0.6252316 0.1372908 0.0968001 +0.6806558 0.1372908 0.0968001 +0.7388448 0.1372908 0.0968001 +0.7998369 0.1372908 0.0968001 +0.8636691 0.1372908 0.0968001 +0.9303782 0.1372908 0.0968001 +1 0.1372908 0.0968001 +0 0.1606827 0.0968001 +0.002418731 0.1606827 0.0968001 +0.005155668 0.1606827 0.0968001 +0.009080105 0.1606827 0.0968001 +0.01434988 0.1606827 0.0968001 +0.02107202 0.1606827 0.0968001 +0.02934285 0.1606827 0.0968001 +0.03925039 0.1606827 0.0968001 +0.05087609 0.1606827 0.0968001 +0.06429595 0.1606827 0.0968001 +0.07958143 0.1606827 0.0968001 +0.0968001 0.1606827 0.0968001 +0.1160161 0.1606827 0.0968001 +0.1372908 0.1606827 0.0968001 +0.1606827 0.1606827 0.0968001 +0.1862481 0.1606827 0.0968001 +0.2140411 0.1606827 0.0968001 +0.2441142 0.1606827 0.0968001 +0.2765176 0.1606827 0.0968001 +0.3113005 0.1606827 0.0968001 +0.3485102 0.1606827 0.0968001 +0.388193 0.1606827 0.0968001 +0.4303934 0.1606827 0.0968001 +0.4751555 0.1606827 0.0968001 +0.5225216 0.1606827 0.0968001 +0.5725335 0.1606827 0.0968001 +0.6252316 0.1606827 0.0968001 +0.6806558 0.1606827 0.0968001 +0.7388448 0.1606827 0.0968001 +0.7998369 0.1606827 0.0968001 +0.8636691 0.1606827 0.0968001 +0.9303782 0.1606827 0.0968001 +1 0.1606827 0.0968001 +0 0.1862481 0.0968001 +0.002418731 0.1862481 0.0968001 +0.005155668 0.1862481 0.0968001 +0.009080105 0.1862481 0.0968001 +0.01434988 0.1862481 0.0968001 +0.02107202 0.1862481 0.0968001 +0.02934285 0.1862481 0.0968001 +0.03925039 0.1862481 0.0968001 +0.05087609 0.1862481 0.0968001 +0.06429595 0.1862481 0.0968001 +0.07958143 0.1862481 0.0968001 +0.0968001 0.1862481 0.0968001 +0.1160161 0.1862481 0.0968001 +0.1372908 0.1862481 0.0968001 +0.1606827 0.1862481 0.0968001 +0.1862481 0.1862481 0.0968001 +0.2140411 0.1862481 0.0968001 +0.2441142 0.1862481 0.0968001 +0.2765176 0.1862481 0.0968001 +0.3113005 0.1862481 0.0968001 +0.3485102 0.1862481 0.0968001 +0.388193 0.1862481 0.0968001 +0.4303934 0.1862481 0.0968001 +0.4751555 0.1862481 0.0968001 +0.5225216 0.1862481 0.0968001 +0.5725335 0.1862481 0.0968001 +0.6252316 0.1862481 0.0968001 +0.6806558 0.1862481 0.0968001 +0.7388448 0.1862481 0.0968001 +0.7998369 0.1862481 0.0968001 +0.8636691 0.1862481 0.0968001 +0.9303782 0.1862481 0.0968001 +1 0.1862481 0.0968001 +0 0.2140411 0.0968001 +0.002418731 0.2140411 0.0968001 +0.005155668 0.2140411 0.0968001 +0.009080105 0.2140411 0.0968001 +0.01434988 0.2140411 0.0968001 +0.02107202 0.2140411 0.0968001 +0.02934285 0.2140411 0.0968001 +0.03925039 0.2140411 0.0968001 +0.05087609 0.2140411 0.0968001 +0.06429595 0.2140411 0.0968001 +0.07958143 0.2140411 0.0968001 +0.0968001 0.2140411 0.0968001 +0.1160161 0.2140411 0.0968001 +0.1372908 0.2140411 0.0968001 +0.1606827 0.2140411 0.0968001 +0.1862481 0.2140411 0.0968001 +0.2140411 0.2140411 0.0968001 +0.2441142 0.2140411 0.0968001 +0.2765176 0.2140411 0.0968001 +0.3113005 0.2140411 0.0968001 +0.3485102 0.2140411 0.0968001 +0.388193 0.2140411 0.0968001 +0.4303934 0.2140411 0.0968001 +0.4751555 0.2140411 0.0968001 +0.5225216 0.2140411 0.0968001 +0.5725335 0.2140411 0.0968001 +0.6252316 0.2140411 0.0968001 +0.6806558 0.2140411 0.0968001 +0.7388448 0.2140411 0.0968001 +0.7998369 0.2140411 0.0968001 +0.8636691 0.2140411 0.0968001 +0.9303782 0.2140411 0.0968001 +1 0.2140411 0.0968001 +0 0.2441142 0.0968001 +0.002418731 0.2441142 0.0968001 +0.005155668 0.2441142 0.0968001 +0.009080105 0.2441142 0.0968001 +0.01434988 0.2441142 0.0968001 +0.02107202 0.2441142 0.0968001 +0.02934285 0.2441142 0.0968001 +0.03925039 0.2441142 0.0968001 +0.05087609 0.2441142 0.0968001 +0.06429595 0.2441142 0.0968001 +0.07958143 0.2441142 0.0968001 +0.0968001 0.2441142 0.0968001 +0.1160161 0.2441142 0.0968001 +0.1372908 0.2441142 0.0968001 +0.1606827 0.2441142 0.0968001 +0.1862481 0.2441142 0.0968001 +0.2140411 0.2441142 0.0968001 +0.2441142 0.2441142 0.0968001 +0.2765176 0.2441142 0.0968001 +0.3113005 0.2441142 0.0968001 +0.3485102 0.2441142 0.0968001 +0.388193 0.2441142 0.0968001 +0.4303934 0.2441142 0.0968001 +0.4751555 0.2441142 0.0968001 +0.5225216 0.2441142 0.0968001 +0.5725335 0.2441142 0.0968001 +0.6252316 0.2441142 0.0968001 +0.6806558 0.2441142 0.0968001 +0.7388448 0.2441142 0.0968001 +0.7998369 0.2441142 0.0968001 +0.8636691 0.2441142 0.0968001 +0.9303782 0.2441142 0.0968001 +1 0.2441142 0.0968001 +0 0.2765176 0.0968001 +0.002418731 0.2765176 0.0968001 +0.005155668 0.2765176 0.0968001 +0.009080105 0.2765176 0.0968001 +0.01434988 0.2765176 0.0968001 +0.02107202 0.2765176 0.0968001 +0.02934285 0.2765176 0.0968001 +0.03925039 0.2765176 0.0968001 +0.05087609 0.2765176 0.0968001 +0.06429595 0.2765176 0.0968001 +0.07958143 0.2765176 0.0968001 +0.0968001 0.2765176 0.0968001 +0.1160161 0.2765176 0.0968001 +0.1372908 0.2765176 0.0968001 +0.1606827 0.2765176 0.0968001 +0.1862481 0.2765176 0.0968001 +0.2140411 0.2765176 0.0968001 +0.2441142 0.2765176 0.0968001 +0.2765176 0.2765176 0.0968001 +0.3113005 0.2765176 0.0968001 +0.3485102 0.2765176 0.0968001 +0.388193 0.2765176 0.0968001 +0.4303934 0.2765176 0.0968001 +0.4751555 0.2765176 0.0968001 +0.5225216 0.2765176 0.0968001 +0.5725335 0.2765176 0.0968001 +0.6252316 0.2765176 0.0968001 +0.6806558 0.2765176 0.0968001 +0.7388448 0.2765176 0.0968001 +0.7998369 0.2765176 0.0968001 +0.8636691 0.2765176 0.0968001 +0.9303782 0.2765176 0.0968001 +1 0.2765176 0.0968001 +0 0.3113005 0.0968001 +0.002418731 0.3113005 0.0968001 +0.005155668 0.3113005 0.0968001 +0.009080105 0.3113005 0.0968001 +0.01434988 0.3113005 0.0968001 +0.02107202 0.3113005 0.0968001 +0.02934285 0.3113005 0.0968001 +0.03925039 0.3113005 0.0968001 +0.05087609 0.3113005 0.0968001 +0.06429595 0.3113005 0.0968001 +0.07958143 0.3113005 0.0968001 +0.0968001 0.3113005 0.0968001 +0.1160161 0.3113005 0.0968001 +0.1372908 0.3113005 0.0968001 +0.1606827 0.3113005 0.0968001 +0.1862481 0.3113005 0.0968001 +0.2140411 0.3113005 0.0968001 +0.2441142 0.3113005 0.0968001 +0.2765176 0.3113005 0.0968001 +0.3113005 0.3113005 0.0968001 +0.3485102 0.3113005 0.0968001 +0.388193 0.3113005 0.0968001 +0.4303934 0.3113005 0.0968001 +0.4751555 0.3113005 0.0968001 +0.5225216 0.3113005 0.0968001 +0.5725335 0.3113005 0.0968001 +0.6252316 0.3113005 0.0968001 +0.6806558 0.3113005 0.0968001 +0.7388448 0.3113005 0.0968001 +0.7998369 0.3113005 0.0968001 +0.8636691 0.3113005 0.0968001 +0.9303782 0.3113005 0.0968001 +1 0.3113005 0.0968001 +0 0.3485102 0.0968001 +0.002418731 0.3485102 0.0968001 +0.005155668 0.3485102 0.0968001 +0.009080105 0.3485102 0.0968001 +0.01434988 0.3485102 0.0968001 +0.02107202 0.3485102 0.0968001 +0.02934285 0.3485102 0.0968001 +0.03925039 0.3485102 0.0968001 +0.05087609 0.3485102 0.0968001 +0.06429595 0.3485102 0.0968001 +0.07958143 0.3485102 0.0968001 +0.0968001 0.3485102 0.0968001 +0.1160161 0.3485102 0.0968001 +0.1372908 0.3485102 0.0968001 +0.1606827 0.3485102 0.0968001 +0.1862481 0.3485102 0.0968001 +0.2140411 0.3485102 0.0968001 +0.2441142 0.3485102 0.0968001 +0.2765176 0.3485102 0.0968001 +0.3113005 0.3485102 0.0968001 +0.3485102 0.3485102 0.0968001 +0.388193 0.3485102 0.0968001 +0.4303934 0.3485102 0.0968001 +0.4751555 0.3485102 0.0968001 +0.5225216 0.3485102 0.0968001 +0.5725335 0.3485102 0.0968001 +0.6252316 0.3485102 0.0968001 +0.6806558 0.3485102 0.0968001 +0.7388448 0.3485102 0.0968001 +0.7998369 0.3485102 0.0968001 +0.8636691 0.3485102 0.0968001 +0.9303782 0.3485102 0.0968001 +1 0.3485102 0.0968001 +0 0.388193 0.0968001 +0.002418731 0.388193 0.0968001 +0.005155668 0.388193 0.0968001 +0.009080105 0.388193 0.0968001 +0.01434988 0.388193 0.0968001 +0.02107202 0.388193 0.0968001 +0.02934285 0.388193 0.0968001 +0.03925039 0.388193 0.0968001 +0.05087609 0.388193 0.0968001 +0.06429595 0.388193 0.0968001 +0.07958143 0.388193 0.0968001 +0.0968001 0.388193 0.0968001 +0.1160161 0.388193 0.0968001 +0.1372908 0.388193 0.0968001 +0.1606827 0.388193 0.0968001 +0.1862481 0.388193 0.0968001 +0.2140411 0.388193 0.0968001 +0.2441142 0.388193 0.0968001 +0.2765176 0.388193 0.0968001 +0.3113005 0.388193 0.0968001 +0.3485102 0.388193 0.0968001 +0.388193 0.388193 0.0968001 +0.4303934 0.388193 0.0968001 +0.4751555 0.388193 0.0968001 +0.5225216 0.388193 0.0968001 +0.5725335 0.388193 0.0968001 +0.6252316 0.388193 0.0968001 +0.6806558 0.388193 0.0968001 +0.7388448 0.388193 0.0968001 +0.7998369 0.388193 0.0968001 +0.8636691 0.388193 0.0968001 +0.9303782 0.388193 0.0968001 +1 0.388193 0.0968001 +0 0.4303934 0.0968001 +0.002418731 0.4303934 0.0968001 +0.005155668 0.4303934 0.0968001 +0.009080105 0.4303934 0.0968001 +0.01434988 0.4303934 0.0968001 +0.02107202 0.4303934 0.0968001 +0.02934285 0.4303934 0.0968001 +0.03925039 0.4303934 0.0968001 +0.05087609 0.4303934 0.0968001 +0.06429595 0.4303934 0.0968001 +0.07958143 0.4303934 0.0968001 +0.0968001 0.4303934 0.0968001 +0.1160161 0.4303934 0.0968001 +0.1372908 0.4303934 0.0968001 +0.1606827 0.4303934 0.0968001 +0.1862481 0.4303934 0.0968001 +0.2140411 0.4303934 0.0968001 +0.2441142 0.4303934 0.0968001 +0.2765176 0.4303934 0.0968001 +0.3113005 0.4303934 0.0968001 +0.3485102 0.4303934 0.0968001 +0.388193 0.4303934 0.0968001 +0.4303934 0.4303934 0.0968001 +0.4751555 0.4303934 0.0968001 +0.5225216 0.4303934 0.0968001 +0.5725335 0.4303934 0.0968001 +0.6252316 0.4303934 0.0968001 +0.6806558 0.4303934 0.0968001 +0.7388448 0.4303934 0.0968001 +0.7998369 0.4303934 0.0968001 +0.8636691 0.4303934 0.0968001 +0.9303782 0.4303934 0.0968001 +1 0.4303934 0.0968001 +0 0.4751555 0.0968001 +0.002418731 0.4751555 0.0968001 +0.005155668 0.4751555 0.0968001 +0.009080105 0.4751555 0.0968001 +0.01434988 0.4751555 0.0968001 +0.02107202 0.4751555 0.0968001 +0.02934285 0.4751555 0.0968001 +0.03925039 0.4751555 0.0968001 +0.05087609 0.4751555 0.0968001 +0.06429595 0.4751555 0.0968001 +0.07958143 0.4751555 0.0968001 +0.0968001 0.4751555 0.0968001 +0.1160161 0.4751555 0.0968001 +0.1372908 0.4751555 0.0968001 +0.1606827 0.4751555 0.0968001 +0.1862481 0.4751555 0.0968001 +0.2140411 0.4751555 0.0968001 +0.2441142 0.4751555 0.0968001 +0.2765176 0.4751555 0.0968001 +0.3113005 0.4751555 0.0968001 +0.3485102 0.4751555 0.0968001 +0.388193 0.4751555 0.0968001 +0.4303934 0.4751555 0.0968001 +0.4751555 0.4751555 0.0968001 +0.5225216 0.4751555 0.0968001 +0.5725335 0.4751555 0.0968001 +0.6252316 0.4751555 0.0968001 +0.6806558 0.4751555 0.0968001 +0.7388448 0.4751555 0.0968001 +0.7998369 0.4751555 0.0968001 +0.8636691 0.4751555 0.0968001 +0.9303782 0.4751555 0.0968001 +1 0.4751555 0.0968001 +0 0.5225216 0.0968001 +0.002418731 0.5225216 0.0968001 +0.005155668 0.5225216 0.0968001 +0.009080105 0.5225216 0.0968001 +0.01434988 0.5225216 0.0968001 +0.02107202 0.5225216 0.0968001 +0.02934285 0.5225216 0.0968001 +0.03925039 0.5225216 0.0968001 +0.05087609 0.5225216 0.0968001 +0.06429595 0.5225216 0.0968001 +0.07958143 0.5225216 0.0968001 +0.0968001 0.5225216 0.0968001 +0.1160161 0.5225216 0.0968001 +0.1372908 0.5225216 0.0968001 +0.1606827 0.5225216 0.0968001 +0.1862481 0.5225216 0.0968001 +0.2140411 0.5225216 0.0968001 +0.2441142 0.5225216 0.0968001 +0.2765176 0.5225216 0.0968001 +0.3113005 0.5225216 0.0968001 +0.3485102 0.5225216 0.0968001 +0.388193 0.5225216 0.0968001 +0.4303934 0.5225216 0.0968001 +0.4751555 0.5225216 0.0968001 +0.5225216 0.5225216 0.0968001 +0.5725335 0.5225216 0.0968001 +0.6252316 0.5225216 0.0968001 +0.6806558 0.5225216 0.0968001 +0.7388448 0.5225216 0.0968001 +0.7998369 0.5225216 0.0968001 +0.8636691 0.5225216 0.0968001 +0.9303782 0.5225216 0.0968001 +1 0.5225216 0.0968001 +0 0.5725335 0.0968001 +0.002418731 0.5725335 0.0968001 +0.005155668 0.5725335 0.0968001 +0.009080105 0.5725335 0.0968001 +0.01434988 0.5725335 0.0968001 +0.02107202 0.5725335 0.0968001 +0.02934285 0.5725335 0.0968001 +0.03925039 0.5725335 0.0968001 +0.05087609 0.5725335 0.0968001 +0.06429595 0.5725335 0.0968001 +0.07958143 0.5725335 0.0968001 +0.0968001 0.5725335 0.0968001 +0.1160161 0.5725335 0.0968001 +0.1372908 0.5725335 0.0968001 +0.1606827 0.5725335 0.0968001 +0.1862481 0.5725335 0.0968001 +0.2140411 0.5725335 0.0968001 +0.2441142 0.5725335 0.0968001 +0.2765176 0.5725335 0.0968001 +0.3113005 0.5725335 0.0968001 +0.3485102 0.5725335 0.0968001 +0.388193 0.5725335 0.0968001 +0.4303934 0.5725335 0.0968001 +0.4751555 0.5725335 0.0968001 +0.5225216 0.5725335 0.0968001 +0.5725335 0.5725335 0.0968001 +0.6252316 0.5725335 0.0968001 +0.6806558 0.5725335 0.0968001 +0.7388448 0.5725335 0.0968001 +0.7998369 0.5725335 0.0968001 +0.8636691 0.5725335 0.0968001 +0.9303782 0.5725335 0.0968001 +1 0.5725335 0.0968001 +0 0.6252316 0.0968001 +0.002418731 0.6252316 0.0968001 +0.005155668 0.6252316 0.0968001 +0.009080105 0.6252316 0.0968001 +0.01434988 0.6252316 0.0968001 +0.02107202 0.6252316 0.0968001 +0.02934285 0.6252316 0.0968001 +0.03925039 0.6252316 0.0968001 +0.05087609 0.6252316 0.0968001 +0.06429595 0.6252316 0.0968001 +0.07958143 0.6252316 0.0968001 +0.0968001 0.6252316 0.0968001 +0.1160161 0.6252316 0.0968001 +0.1372908 0.6252316 0.0968001 +0.1606827 0.6252316 0.0968001 +0.1862481 0.6252316 0.0968001 +0.2140411 0.6252316 0.0968001 +0.2441142 0.6252316 0.0968001 +0.2765176 0.6252316 0.0968001 +0.3113005 0.6252316 0.0968001 +0.3485102 0.6252316 0.0968001 +0.388193 0.6252316 0.0968001 +0.4303934 0.6252316 0.0968001 +0.4751555 0.6252316 0.0968001 +0.5225216 0.6252316 0.0968001 +0.5725335 0.6252316 0.0968001 +0.6252316 0.6252316 0.0968001 +0.6806558 0.6252316 0.0968001 +0.7388448 0.6252316 0.0968001 +0.7998369 0.6252316 0.0968001 +0.8636691 0.6252316 0.0968001 +0.9303782 0.6252316 0.0968001 +1 0.6252316 0.0968001 +0 0.6806558 0.0968001 +0.002418731 0.6806558 0.0968001 +0.005155668 0.6806558 0.0968001 +0.009080105 0.6806558 0.0968001 +0.01434988 0.6806558 0.0968001 +0.02107202 0.6806558 0.0968001 +0.02934285 0.6806558 0.0968001 +0.03925039 0.6806558 0.0968001 +0.05087609 0.6806558 0.0968001 +0.06429595 0.6806558 0.0968001 +0.07958143 0.6806558 0.0968001 +0.0968001 0.6806558 0.0968001 +0.1160161 0.6806558 0.0968001 +0.1372908 0.6806558 0.0968001 +0.1606827 0.6806558 0.0968001 +0.1862481 0.6806558 0.0968001 +0.2140411 0.6806558 0.0968001 +0.2441142 0.6806558 0.0968001 +0.2765176 0.6806558 0.0968001 +0.3113005 0.6806558 0.0968001 +0.3485102 0.6806558 0.0968001 +0.388193 0.6806558 0.0968001 +0.4303934 0.6806558 0.0968001 +0.4751555 0.6806558 0.0968001 +0.5225216 0.6806558 0.0968001 +0.5725335 0.6806558 0.0968001 +0.6252316 0.6806558 0.0968001 +0.6806558 0.6806558 0.0968001 +0.7388448 0.6806558 0.0968001 +0.7998369 0.6806558 0.0968001 +0.8636691 0.6806558 0.0968001 +0.9303782 0.6806558 0.0968001 +1 0.6806558 0.0968001 +0 0.7388448 0.0968001 +0.002418731 0.7388448 0.0968001 +0.005155668 0.7388448 0.0968001 +0.009080105 0.7388448 0.0968001 +0.01434988 0.7388448 0.0968001 +0.02107202 0.7388448 0.0968001 +0.02934285 0.7388448 0.0968001 +0.03925039 0.7388448 0.0968001 +0.05087609 0.7388448 0.0968001 +0.06429595 0.7388448 0.0968001 +0.07958143 0.7388448 0.0968001 +0.0968001 0.7388448 0.0968001 +0.1160161 0.7388448 0.0968001 +0.1372908 0.7388448 0.0968001 +0.1606827 0.7388448 0.0968001 +0.1862481 0.7388448 0.0968001 +0.2140411 0.7388448 0.0968001 +0.2441142 0.7388448 0.0968001 +0.2765176 0.7388448 0.0968001 +0.3113005 0.7388448 0.0968001 +0.3485102 0.7388448 0.0968001 +0.388193 0.7388448 0.0968001 +0.4303934 0.7388448 0.0968001 +0.4751555 0.7388448 0.0968001 +0.5225216 0.7388448 0.0968001 +0.5725335 0.7388448 0.0968001 +0.6252316 0.7388448 0.0968001 +0.6806558 0.7388448 0.0968001 +0.7388448 0.7388448 0.0968001 +0.7998369 0.7388448 0.0968001 +0.8636691 0.7388448 0.0968001 +0.9303782 0.7388448 0.0968001 +1 0.7388448 0.0968001 +0 0.7998369 0.0968001 +0.002418731 0.7998369 0.0968001 +0.005155668 0.7998369 0.0968001 +0.009080105 0.7998369 0.0968001 +0.01434988 0.7998369 0.0968001 +0.02107202 0.7998369 0.0968001 +0.02934285 0.7998369 0.0968001 +0.03925039 0.7998369 0.0968001 +0.05087609 0.7998369 0.0968001 +0.06429595 0.7998369 0.0968001 +0.07958143 0.7998369 0.0968001 +0.0968001 0.7998369 0.0968001 +0.1160161 0.7998369 0.0968001 +0.1372908 0.7998369 0.0968001 +0.1606827 0.7998369 0.0968001 +0.1862481 0.7998369 0.0968001 +0.2140411 0.7998369 0.0968001 +0.2441142 0.7998369 0.0968001 +0.2765176 0.7998369 0.0968001 +0.3113005 0.7998369 0.0968001 +0.3485102 0.7998369 0.0968001 +0.388193 0.7998369 0.0968001 +0.4303934 0.7998369 0.0968001 +0.4751555 0.7998369 0.0968001 +0.5225216 0.7998369 0.0968001 +0.5725335 0.7998369 0.0968001 +0.6252316 0.7998369 0.0968001 +0.6806558 0.7998369 0.0968001 +0.7388448 0.7998369 0.0968001 +0.7998369 0.7998369 0.0968001 +0.8636691 0.7998369 0.0968001 +0.9303782 0.7998369 0.0968001 +1 0.7998369 0.0968001 +0 0.8636691 0.0968001 +0.002418731 0.8636691 0.0968001 +0.005155668 0.8636691 0.0968001 +0.009080105 0.8636691 0.0968001 +0.01434988 0.8636691 0.0968001 +0.02107202 0.8636691 0.0968001 +0.02934285 0.8636691 0.0968001 +0.03925039 0.8636691 0.0968001 +0.05087609 0.8636691 0.0968001 +0.06429595 0.8636691 0.0968001 +0.07958143 0.8636691 0.0968001 +0.0968001 0.8636691 0.0968001 +0.1160161 0.8636691 0.0968001 +0.1372908 0.8636691 0.0968001 +0.1606827 0.8636691 0.0968001 +0.1862481 0.8636691 0.0968001 +0.2140411 0.8636691 0.0968001 +0.2441142 0.8636691 0.0968001 +0.2765176 0.8636691 0.0968001 +0.3113005 0.8636691 0.0968001 +0.3485102 0.8636691 0.0968001 +0.388193 0.8636691 0.0968001 +0.4303934 0.8636691 0.0968001 +0.4751555 0.8636691 0.0968001 +0.5225216 0.8636691 0.0968001 +0.5725335 0.8636691 0.0968001 +0.6252316 0.8636691 0.0968001 +0.6806558 0.8636691 0.0968001 +0.7388448 0.8636691 0.0968001 +0.7998369 0.8636691 0.0968001 +0.8636691 0.8636691 0.0968001 +0.9303782 0.8636691 0.0968001 +1 0.8636691 0.0968001 +0 0.9303782 0.0968001 +0.002418731 0.9303782 0.0968001 +0.005155668 0.9303782 0.0968001 +0.009080105 0.9303782 0.0968001 +0.01434988 0.9303782 0.0968001 +0.02107202 0.9303782 0.0968001 +0.02934285 0.9303782 0.0968001 +0.03925039 0.9303782 0.0968001 +0.05087609 0.9303782 0.0968001 +0.06429595 0.9303782 0.0968001 +0.07958143 0.9303782 0.0968001 +0.0968001 0.9303782 0.0968001 +0.1160161 0.9303782 0.0968001 +0.1372908 0.9303782 0.0968001 +0.1606827 0.9303782 0.0968001 +0.1862481 0.9303782 0.0968001 +0.2140411 0.9303782 0.0968001 +0.2441142 0.9303782 0.0968001 +0.2765176 0.9303782 0.0968001 +0.3113005 0.9303782 0.0968001 +0.3485102 0.9303782 0.0968001 +0.388193 0.9303782 0.0968001 +0.4303934 0.9303782 0.0968001 +0.4751555 0.9303782 0.0968001 +0.5225216 0.9303782 0.0968001 +0.5725335 0.9303782 0.0968001 +0.6252316 0.9303782 0.0968001 +0.6806558 0.9303782 0.0968001 +0.7388448 0.9303782 0.0968001 +0.7998369 0.9303782 0.0968001 +0.8636691 0.9303782 0.0968001 +0.9303782 0.9303782 0.0968001 +1 0.9303782 0.0968001 +0 1 0.0968001 +0.002418731 1 0.0968001 +0.005155668 1 0.0968001 +0.009080105 1 0.0968001 +0.01434988 1 0.0968001 +0.02107202 1 0.0968001 +0.02934285 1 0.0968001 +0.03925039 1 0.0968001 +0.05087609 1 0.0968001 +0.06429595 1 0.0968001 +0.07958143 1 0.0968001 +0.0968001 1 0.0968001 +0.1160161 1 0.0968001 +0.1372908 1 0.0968001 +0.1606827 1 0.0968001 +0.1862481 1 0.0968001 +0.2140411 1 0.0968001 +0.2441142 1 0.0968001 +0.2765176 1 0.0968001 +0.3113005 1 0.0968001 +0.3485102 1 0.0968001 +0.388193 1 0.0968001 +0.4303934 1 0.0968001 +0.4751555 1 0.0968001 +0.5225216 1 0.0968001 +0.5725335 1 0.0968001 +0.6252316 1 0.0968001 +0.6806558 1 0.0968001 +0.7388448 1 0.0968001 +0.7998369 1 0.0968001 +0.8636691 1 0.0968001 +0.9303782 1 0.0968001 +1 1 0.0968001 +0 0 0.1160161 +0.002418731 0 0.1160161 +0.005155668 0 0.1160161 +0.009080105 0 0.1160161 +0.01434988 0 0.1160161 +0.02107202 0 0.1160161 +0.02934285 0 0.1160161 +0.03925039 0 0.1160161 +0.05087609 0 0.1160161 +0.06429595 0 0.1160161 +0.07958143 0 0.1160161 +0.0968001 0 0.1160161 +0.1160161 0 0.1160161 +0.1372908 0 0.1160161 +0.1606827 0 0.1160161 +0.1862481 0 0.1160161 +0.2140411 0 0.1160161 +0.2441142 0 0.1160161 +0.2765176 0 0.1160161 +0.3113005 0 0.1160161 +0.3485102 0 0.1160161 +0.388193 0 0.1160161 +0.4303934 0 0.1160161 +0.4751555 0 0.1160161 +0.5225216 0 0.1160161 +0.5725335 0 0.1160161 +0.6252316 0 0.1160161 +0.6806558 0 0.1160161 +0.7388448 0 0.1160161 +0.7998369 0 0.1160161 +0.8636691 0 0.1160161 +0.9303782 0 0.1160161 +1 0 0.1160161 +0 0.002418731 0.1160161 +0.002418731 0.002418731 0.1160161 +0.005155668 0.002418731 0.1160161 +0.009080105 0.002418731 0.1160161 +0.01434988 0.002418731 0.1160161 +0.02107202 0.002418731 0.1160161 +0.02934285 0.002418731 0.1160161 +0.03925039 0.002418731 0.1160161 +0.05087609 0.002418731 0.1160161 +0.06429595 0.002418731 0.1160161 +0.07958143 0.002418731 0.1160161 +0.0968001 0.002418731 0.1160161 +0.1160161 0.002418731 0.1160161 +0.1372908 0.002418731 0.1160161 +0.1606827 0.002418731 0.1160161 +0.1862481 0.002418731 0.1160161 +0.2140411 0.002418731 0.1160161 +0.2441142 0.002418731 0.1160161 +0.2765176 0.002418731 0.1160161 +0.3113005 0.002418731 0.1160161 +0.3485102 0.002418731 0.1160161 +0.388193 0.002418731 0.1160161 +0.4303934 0.002418731 0.1160161 +0.4751555 0.002418731 0.1160161 +0.5225216 0.002418731 0.1160161 +0.5725335 0.002418731 0.1160161 +0.6252316 0.002418731 0.1160161 +0.6806558 0.002418731 0.1160161 +0.7388448 0.002418731 0.1160161 +0.7998369 0.002418731 0.1160161 +0.8636691 0.002418731 0.1160161 +0.9303782 0.002418731 0.1160161 +1 0.002418731 0.1160161 +0 0.005155668 0.1160161 +0.002418731 0.005155668 0.1160161 +0.005155668 0.005155668 0.1160161 +0.009080105 0.005155668 0.1160161 +0.01434988 0.005155668 0.1160161 +0.02107202 0.005155668 0.1160161 +0.02934285 0.005155668 0.1160161 +0.03925039 0.005155668 0.1160161 +0.05087609 0.005155668 0.1160161 +0.06429595 0.005155668 0.1160161 +0.07958143 0.005155668 0.1160161 +0.0968001 0.005155668 0.1160161 +0.1160161 0.005155668 0.1160161 +0.1372908 0.005155668 0.1160161 +0.1606827 0.005155668 0.1160161 +0.1862481 0.005155668 0.1160161 +0.2140411 0.005155668 0.1160161 +0.2441142 0.005155668 0.1160161 +0.2765176 0.005155668 0.1160161 +0.3113005 0.005155668 0.1160161 +0.3485102 0.005155668 0.1160161 +0.388193 0.005155668 0.1160161 +0.4303934 0.005155668 0.1160161 +0.4751555 0.005155668 0.1160161 +0.5225216 0.005155668 0.1160161 +0.5725335 0.005155668 0.1160161 +0.6252316 0.005155668 0.1160161 +0.6806558 0.005155668 0.1160161 +0.7388448 0.005155668 0.1160161 +0.7998369 0.005155668 0.1160161 +0.8636691 0.005155668 0.1160161 +0.9303782 0.005155668 0.1160161 +1 0.005155668 0.1160161 +0 0.009080105 0.1160161 +0.002418731 0.009080105 0.1160161 +0.005155668 0.009080105 0.1160161 +0.009080105 0.009080105 0.1160161 +0.01434988 0.009080105 0.1160161 +0.02107202 0.009080105 0.1160161 +0.02934285 0.009080105 0.1160161 +0.03925039 0.009080105 0.1160161 +0.05087609 0.009080105 0.1160161 +0.06429595 0.009080105 0.1160161 +0.07958143 0.009080105 0.1160161 +0.0968001 0.009080105 0.1160161 +0.1160161 0.009080105 0.1160161 +0.1372908 0.009080105 0.1160161 +0.1606827 0.009080105 0.1160161 +0.1862481 0.009080105 0.1160161 +0.2140411 0.009080105 0.1160161 +0.2441142 0.009080105 0.1160161 +0.2765176 0.009080105 0.1160161 +0.3113005 0.009080105 0.1160161 +0.3485102 0.009080105 0.1160161 +0.388193 0.009080105 0.1160161 +0.4303934 0.009080105 0.1160161 +0.4751555 0.009080105 0.1160161 +0.5225216 0.009080105 0.1160161 +0.5725335 0.009080105 0.1160161 +0.6252316 0.009080105 0.1160161 +0.6806558 0.009080105 0.1160161 +0.7388448 0.009080105 0.1160161 +0.7998369 0.009080105 0.1160161 +0.8636691 0.009080105 0.1160161 +0.9303782 0.009080105 0.1160161 +1 0.009080105 0.1160161 +0 0.01434988 0.1160161 +0.002418731 0.01434988 0.1160161 +0.005155668 0.01434988 0.1160161 +0.009080105 0.01434988 0.1160161 +0.01434988 0.01434988 0.1160161 +0.02107202 0.01434988 0.1160161 +0.02934285 0.01434988 0.1160161 +0.03925039 0.01434988 0.1160161 +0.05087609 0.01434988 0.1160161 +0.06429595 0.01434988 0.1160161 +0.07958143 0.01434988 0.1160161 +0.0968001 0.01434988 0.1160161 +0.1160161 0.01434988 0.1160161 +0.1372908 0.01434988 0.1160161 +0.1606827 0.01434988 0.1160161 +0.1862481 0.01434988 0.1160161 +0.2140411 0.01434988 0.1160161 +0.2441142 0.01434988 0.1160161 +0.2765176 0.01434988 0.1160161 +0.3113005 0.01434988 0.1160161 +0.3485102 0.01434988 0.1160161 +0.388193 0.01434988 0.1160161 +0.4303934 0.01434988 0.1160161 +0.4751555 0.01434988 0.1160161 +0.5225216 0.01434988 0.1160161 +0.5725335 0.01434988 0.1160161 +0.6252316 0.01434988 0.1160161 +0.6806558 0.01434988 0.1160161 +0.7388448 0.01434988 0.1160161 +0.7998369 0.01434988 0.1160161 +0.8636691 0.01434988 0.1160161 +0.9303782 0.01434988 0.1160161 +1 0.01434988 0.1160161 +0 0.02107202 0.1160161 +0.002418731 0.02107202 0.1160161 +0.005155668 0.02107202 0.1160161 +0.009080105 0.02107202 0.1160161 +0.01434988 0.02107202 0.1160161 +0.02107202 0.02107202 0.1160161 +0.02934285 0.02107202 0.1160161 +0.03925039 0.02107202 0.1160161 +0.05087609 0.02107202 0.1160161 +0.06429595 0.02107202 0.1160161 +0.07958143 0.02107202 0.1160161 +0.0968001 0.02107202 0.1160161 +0.1160161 0.02107202 0.1160161 +0.1372908 0.02107202 0.1160161 +0.1606827 0.02107202 0.1160161 +0.1862481 0.02107202 0.1160161 +0.2140411 0.02107202 0.1160161 +0.2441142 0.02107202 0.1160161 +0.2765176 0.02107202 0.1160161 +0.3113005 0.02107202 0.1160161 +0.3485102 0.02107202 0.1160161 +0.388193 0.02107202 0.1160161 +0.4303934 0.02107202 0.1160161 +0.4751555 0.02107202 0.1160161 +0.5225216 0.02107202 0.1160161 +0.5725335 0.02107202 0.1160161 +0.6252316 0.02107202 0.1160161 +0.6806558 0.02107202 0.1160161 +0.7388448 0.02107202 0.1160161 +0.7998369 0.02107202 0.1160161 +0.8636691 0.02107202 0.1160161 +0.9303782 0.02107202 0.1160161 +1 0.02107202 0.1160161 +0 0.02934285 0.1160161 +0.002418731 0.02934285 0.1160161 +0.005155668 0.02934285 0.1160161 +0.009080105 0.02934285 0.1160161 +0.01434988 0.02934285 0.1160161 +0.02107202 0.02934285 0.1160161 +0.02934285 0.02934285 0.1160161 +0.03925039 0.02934285 0.1160161 +0.05087609 0.02934285 0.1160161 +0.06429595 0.02934285 0.1160161 +0.07958143 0.02934285 0.1160161 +0.0968001 0.02934285 0.1160161 +0.1160161 0.02934285 0.1160161 +0.1372908 0.02934285 0.1160161 +0.1606827 0.02934285 0.1160161 +0.1862481 0.02934285 0.1160161 +0.2140411 0.02934285 0.1160161 +0.2441142 0.02934285 0.1160161 +0.2765176 0.02934285 0.1160161 +0.3113005 0.02934285 0.1160161 +0.3485102 0.02934285 0.1160161 +0.388193 0.02934285 0.1160161 +0.4303934 0.02934285 0.1160161 +0.4751555 0.02934285 0.1160161 +0.5225216 0.02934285 0.1160161 +0.5725335 0.02934285 0.1160161 +0.6252316 0.02934285 0.1160161 +0.6806558 0.02934285 0.1160161 +0.7388448 0.02934285 0.1160161 +0.7998369 0.02934285 0.1160161 +0.8636691 0.02934285 0.1160161 +0.9303782 0.02934285 0.1160161 +1 0.02934285 0.1160161 +0 0.03925039 0.1160161 +0.002418731 0.03925039 0.1160161 +0.005155668 0.03925039 0.1160161 +0.009080105 0.03925039 0.1160161 +0.01434988 0.03925039 0.1160161 +0.02107202 0.03925039 0.1160161 +0.02934285 0.03925039 0.1160161 +0.03925039 0.03925039 0.1160161 +0.05087609 0.03925039 0.1160161 +0.06429595 0.03925039 0.1160161 +0.07958143 0.03925039 0.1160161 +0.0968001 0.03925039 0.1160161 +0.1160161 0.03925039 0.1160161 +0.1372908 0.03925039 0.1160161 +0.1606827 0.03925039 0.1160161 +0.1862481 0.03925039 0.1160161 +0.2140411 0.03925039 0.1160161 +0.2441142 0.03925039 0.1160161 +0.2765176 0.03925039 0.1160161 +0.3113005 0.03925039 0.1160161 +0.3485102 0.03925039 0.1160161 +0.388193 0.03925039 0.1160161 +0.4303934 0.03925039 0.1160161 +0.4751555 0.03925039 0.1160161 +0.5225216 0.03925039 0.1160161 +0.5725335 0.03925039 0.1160161 +0.6252316 0.03925039 0.1160161 +0.6806558 0.03925039 0.1160161 +0.7388448 0.03925039 0.1160161 +0.7998369 0.03925039 0.1160161 +0.8636691 0.03925039 0.1160161 +0.9303782 0.03925039 0.1160161 +1 0.03925039 0.1160161 +0 0.05087609 0.1160161 +0.002418731 0.05087609 0.1160161 +0.005155668 0.05087609 0.1160161 +0.009080105 0.05087609 0.1160161 +0.01434988 0.05087609 0.1160161 +0.02107202 0.05087609 0.1160161 +0.02934285 0.05087609 0.1160161 +0.03925039 0.05087609 0.1160161 +0.05087609 0.05087609 0.1160161 +0.06429595 0.05087609 0.1160161 +0.07958143 0.05087609 0.1160161 +0.0968001 0.05087609 0.1160161 +0.1160161 0.05087609 0.1160161 +0.1372908 0.05087609 0.1160161 +0.1606827 0.05087609 0.1160161 +0.1862481 0.05087609 0.1160161 +0.2140411 0.05087609 0.1160161 +0.2441142 0.05087609 0.1160161 +0.2765176 0.05087609 0.1160161 +0.3113005 0.05087609 0.1160161 +0.3485102 0.05087609 0.1160161 +0.388193 0.05087609 0.1160161 +0.4303934 0.05087609 0.1160161 +0.4751555 0.05087609 0.1160161 +0.5225216 0.05087609 0.1160161 +0.5725335 0.05087609 0.1160161 +0.6252316 0.05087609 0.1160161 +0.6806558 0.05087609 0.1160161 +0.7388448 0.05087609 0.1160161 +0.7998369 0.05087609 0.1160161 +0.8636691 0.05087609 0.1160161 +0.9303782 0.05087609 0.1160161 +1 0.05087609 0.1160161 +0 0.06429595 0.1160161 +0.002418731 0.06429595 0.1160161 +0.005155668 0.06429595 0.1160161 +0.009080105 0.06429595 0.1160161 +0.01434988 0.06429595 0.1160161 +0.02107202 0.06429595 0.1160161 +0.02934285 0.06429595 0.1160161 +0.03925039 0.06429595 0.1160161 +0.05087609 0.06429595 0.1160161 +0.06429595 0.06429595 0.1160161 +0.07958143 0.06429595 0.1160161 +0.0968001 0.06429595 0.1160161 +0.1160161 0.06429595 0.1160161 +0.1372908 0.06429595 0.1160161 +0.1606827 0.06429595 0.1160161 +0.1862481 0.06429595 0.1160161 +0.2140411 0.06429595 0.1160161 +0.2441142 0.06429595 0.1160161 +0.2765176 0.06429595 0.1160161 +0.3113005 0.06429595 0.1160161 +0.3485102 0.06429595 0.1160161 +0.388193 0.06429595 0.1160161 +0.4303934 0.06429595 0.1160161 +0.4751555 0.06429595 0.1160161 +0.5225216 0.06429595 0.1160161 +0.5725335 0.06429595 0.1160161 +0.6252316 0.06429595 0.1160161 +0.6806558 0.06429595 0.1160161 +0.7388448 0.06429595 0.1160161 +0.7998369 0.06429595 0.1160161 +0.8636691 0.06429595 0.1160161 +0.9303782 0.06429595 0.1160161 +1 0.06429595 0.1160161 +0 0.07958143 0.1160161 +0.002418731 0.07958143 0.1160161 +0.005155668 0.07958143 0.1160161 +0.009080105 0.07958143 0.1160161 +0.01434988 0.07958143 0.1160161 +0.02107202 0.07958143 0.1160161 +0.02934285 0.07958143 0.1160161 +0.03925039 0.07958143 0.1160161 +0.05087609 0.07958143 0.1160161 +0.06429595 0.07958143 0.1160161 +0.07958143 0.07958143 0.1160161 +0.0968001 0.07958143 0.1160161 +0.1160161 0.07958143 0.1160161 +0.1372908 0.07958143 0.1160161 +0.1606827 0.07958143 0.1160161 +0.1862481 0.07958143 0.1160161 +0.2140411 0.07958143 0.1160161 +0.2441142 0.07958143 0.1160161 +0.2765176 0.07958143 0.1160161 +0.3113005 0.07958143 0.1160161 +0.3485102 0.07958143 0.1160161 +0.388193 0.07958143 0.1160161 +0.4303934 0.07958143 0.1160161 +0.4751555 0.07958143 0.1160161 +0.5225216 0.07958143 0.1160161 +0.5725335 0.07958143 0.1160161 +0.6252316 0.07958143 0.1160161 +0.6806558 0.07958143 0.1160161 +0.7388448 0.07958143 0.1160161 +0.7998369 0.07958143 0.1160161 +0.8636691 0.07958143 0.1160161 +0.9303782 0.07958143 0.1160161 +1 0.07958143 0.1160161 +0 0.0968001 0.1160161 +0.002418731 0.0968001 0.1160161 +0.005155668 0.0968001 0.1160161 +0.009080105 0.0968001 0.1160161 +0.01434988 0.0968001 0.1160161 +0.02107202 0.0968001 0.1160161 +0.02934285 0.0968001 0.1160161 +0.03925039 0.0968001 0.1160161 +0.05087609 0.0968001 0.1160161 +0.06429595 0.0968001 0.1160161 +0.07958143 0.0968001 0.1160161 +0.0968001 0.0968001 0.1160161 +0.1160161 0.0968001 0.1160161 +0.1372908 0.0968001 0.1160161 +0.1606827 0.0968001 0.1160161 +0.1862481 0.0968001 0.1160161 +0.2140411 0.0968001 0.1160161 +0.2441142 0.0968001 0.1160161 +0.2765176 0.0968001 0.1160161 +0.3113005 0.0968001 0.1160161 +0.3485102 0.0968001 0.1160161 +0.388193 0.0968001 0.1160161 +0.4303934 0.0968001 0.1160161 +0.4751555 0.0968001 0.1160161 +0.5225216 0.0968001 0.1160161 +0.5725335 0.0968001 0.1160161 +0.6252316 0.0968001 0.1160161 +0.6806558 0.0968001 0.1160161 +0.7388448 0.0968001 0.1160161 +0.7998369 0.0968001 0.1160161 +0.8636691 0.0968001 0.1160161 +0.9303782 0.0968001 0.1160161 +1 0.0968001 0.1160161 +0 0.1160161 0.1160161 +0.002418731 0.1160161 0.1160161 +0.005155668 0.1160161 0.1160161 +0.009080105 0.1160161 0.1160161 +0.01434988 0.1160161 0.1160161 +0.02107202 0.1160161 0.1160161 +0.02934285 0.1160161 0.1160161 +0.03925039 0.1160161 0.1160161 +0.05087609 0.1160161 0.1160161 +0.06429595 0.1160161 0.1160161 +0.07958143 0.1160161 0.1160161 +0.0968001 0.1160161 0.1160161 +0.1160161 0.1160161 0.1160161 +0.1372908 0.1160161 0.1160161 +0.1606827 0.1160161 0.1160161 +0.1862481 0.1160161 0.1160161 +0.2140411 0.1160161 0.1160161 +0.2441142 0.1160161 0.1160161 +0.2765176 0.1160161 0.1160161 +0.3113005 0.1160161 0.1160161 +0.3485102 0.1160161 0.1160161 +0.388193 0.1160161 0.1160161 +0.4303934 0.1160161 0.1160161 +0.4751555 0.1160161 0.1160161 +0.5225216 0.1160161 0.1160161 +0.5725335 0.1160161 0.1160161 +0.6252316 0.1160161 0.1160161 +0.6806558 0.1160161 0.1160161 +0.7388448 0.1160161 0.1160161 +0.7998369 0.1160161 0.1160161 +0.8636691 0.1160161 0.1160161 +0.9303782 0.1160161 0.1160161 +1 0.1160161 0.1160161 +0 0.1372908 0.1160161 +0.002418731 0.1372908 0.1160161 +0.005155668 0.1372908 0.1160161 +0.009080105 0.1372908 0.1160161 +0.01434988 0.1372908 0.1160161 +0.02107202 0.1372908 0.1160161 +0.02934285 0.1372908 0.1160161 +0.03925039 0.1372908 0.1160161 +0.05087609 0.1372908 0.1160161 +0.06429595 0.1372908 0.1160161 +0.07958143 0.1372908 0.1160161 +0.0968001 0.1372908 0.1160161 +0.1160161 0.1372908 0.1160161 +0.1372908 0.1372908 0.1160161 +0.1606827 0.1372908 0.1160161 +0.1862481 0.1372908 0.1160161 +0.2140411 0.1372908 0.1160161 +0.2441142 0.1372908 0.1160161 +0.2765176 0.1372908 0.1160161 +0.3113005 0.1372908 0.1160161 +0.3485102 0.1372908 0.1160161 +0.388193 0.1372908 0.1160161 +0.4303934 0.1372908 0.1160161 +0.4751555 0.1372908 0.1160161 +0.5225216 0.1372908 0.1160161 +0.5725335 0.1372908 0.1160161 +0.6252316 0.1372908 0.1160161 +0.6806558 0.1372908 0.1160161 +0.7388448 0.1372908 0.1160161 +0.7998369 0.1372908 0.1160161 +0.8636691 0.1372908 0.1160161 +0.9303782 0.1372908 0.1160161 +1 0.1372908 0.1160161 +0 0.1606827 0.1160161 +0.002418731 0.1606827 0.1160161 +0.005155668 0.1606827 0.1160161 +0.009080105 0.1606827 0.1160161 +0.01434988 0.1606827 0.1160161 +0.02107202 0.1606827 0.1160161 +0.02934285 0.1606827 0.1160161 +0.03925039 0.1606827 0.1160161 +0.05087609 0.1606827 0.1160161 +0.06429595 0.1606827 0.1160161 +0.07958143 0.1606827 0.1160161 +0.0968001 0.1606827 0.1160161 +0.1160161 0.1606827 0.1160161 +0.1372908 0.1606827 0.1160161 +0.1606827 0.1606827 0.1160161 +0.1862481 0.1606827 0.1160161 +0.2140411 0.1606827 0.1160161 +0.2441142 0.1606827 0.1160161 +0.2765176 0.1606827 0.1160161 +0.3113005 0.1606827 0.1160161 +0.3485102 0.1606827 0.1160161 +0.388193 0.1606827 0.1160161 +0.4303934 0.1606827 0.1160161 +0.4751555 0.1606827 0.1160161 +0.5225216 0.1606827 0.1160161 +0.5725335 0.1606827 0.1160161 +0.6252316 0.1606827 0.1160161 +0.6806558 0.1606827 0.1160161 +0.7388448 0.1606827 0.1160161 +0.7998369 0.1606827 0.1160161 +0.8636691 0.1606827 0.1160161 +0.9303782 0.1606827 0.1160161 +1 0.1606827 0.1160161 +0 0.1862481 0.1160161 +0.002418731 0.1862481 0.1160161 +0.005155668 0.1862481 0.1160161 +0.009080105 0.1862481 0.1160161 +0.01434988 0.1862481 0.1160161 +0.02107202 0.1862481 0.1160161 +0.02934285 0.1862481 0.1160161 +0.03925039 0.1862481 0.1160161 +0.05087609 0.1862481 0.1160161 +0.06429595 0.1862481 0.1160161 +0.07958143 0.1862481 0.1160161 +0.0968001 0.1862481 0.1160161 +0.1160161 0.1862481 0.1160161 +0.1372908 0.1862481 0.1160161 +0.1606827 0.1862481 0.1160161 +0.1862481 0.1862481 0.1160161 +0.2140411 0.1862481 0.1160161 +0.2441142 0.1862481 0.1160161 +0.2765176 0.1862481 0.1160161 +0.3113005 0.1862481 0.1160161 +0.3485102 0.1862481 0.1160161 +0.388193 0.1862481 0.1160161 +0.4303934 0.1862481 0.1160161 +0.4751555 0.1862481 0.1160161 +0.5225216 0.1862481 0.1160161 +0.5725335 0.1862481 0.1160161 +0.6252316 0.1862481 0.1160161 +0.6806558 0.1862481 0.1160161 +0.7388448 0.1862481 0.1160161 +0.7998369 0.1862481 0.1160161 +0.8636691 0.1862481 0.1160161 +0.9303782 0.1862481 0.1160161 +1 0.1862481 0.1160161 +0 0.2140411 0.1160161 +0.002418731 0.2140411 0.1160161 +0.005155668 0.2140411 0.1160161 +0.009080105 0.2140411 0.1160161 +0.01434988 0.2140411 0.1160161 +0.02107202 0.2140411 0.1160161 +0.02934285 0.2140411 0.1160161 +0.03925039 0.2140411 0.1160161 +0.05087609 0.2140411 0.1160161 +0.06429595 0.2140411 0.1160161 +0.07958143 0.2140411 0.1160161 +0.0968001 0.2140411 0.1160161 +0.1160161 0.2140411 0.1160161 +0.1372908 0.2140411 0.1160161 +0.1606827 0.2140411 0.1160161 +0.1862481 0.2140411 0.1160161 +0.2140411 0.2140411 0.1160161 +0.2441142 0.2140411 0.1160161 +0.2765176 0.2140411 0.1160161 +0.3113005 0.2140411 0.1160161 +0.3485102 0.2140411 0.1160161 +0.388193 0.2140411 0.1160161 +0.4303934 0.2140411 0.1160161 +0.4751555 0.2140411 0.1160161 +0.5225216 0.2140411 0.1160161 +0.5725335 0.2140411 0.1160161 +0.6252316 0.2140411 0.1160161 +0.6806558 0.2140411 0.1160161 +0.7388448 0.2140411 0.1160161 +0.7998369 0.2140411 0.1160161 +0.8636691 0.2140411 0.1160161 +0.9303782 0.2140411 0.1160161 +1 0.2140411 0.1160161 +0 0.2441142 0.1160161 +0.002418731 0.2441142 0.1160161 +0.005155668 0.2441142 0.1160161 +0.009080105 0.2441142 0.1160161 +0.01434988 0.2441142 0.1160161 +0.02107202 0.2441142 0.1160161 +0.02934285 0.2441142 0.1160161 +0.03925039 0.2441142 0.1160161 +0.05087609 0.2441142 0.1160161 +0.06429595 0.2441142 0.1160161 +0.07958143 0.2441142 0.1160161 +0.0968001 0.2441142 0.1160161 +0.1160161 0.2441142 0.1160161 +0.1372908 0.2441142 0.1160161 +0.1606827 0.2441142 0.1160161 +0.1862481 0.2441142 0.1160161 +0.2140411 0.2441142 0.1160161 +0.2441142 0.2441142 0.1160161 +0.2765176 0.2441142 0.1160161 +0.3113005 0.2441142 0.1160161 +0.3485102 0.2441142 0.1160161 +0.388193 0.2441142 0.1160161 +0.4303934 0.2441142 0.1160161 +0.4751555 0.2441142 0.1160161 +0.5225216 0.2441142 0.1160161 +0.5725335 0.2441142 0.1160161 +0.6252316 0.2441142 0.1160161 +0.6806558 0.2441142 0.1160161 +0.7388448 0.2441142 0.1160161 +0.7998369 0.2441142 0.1160161 +0.8636691 0.2441142 0.1160161 +0.9303782 0.2441142 0.1160161 +1 0.2441142 0.1160161 +0 0.2765176 0.1160161 +0.002418731 0.2765176 0.1160161 +0.005155668 0.2765176 0.1160161 +0.009080105 0.2765176 0.1160161 +0.01434988 0.2765176 0.1160161 +0.02107202 0.2765176 0.1160161 +0.02934285 0.2765176 0.1160161 +0.03925039 0.2765176 0.1160161 +0.05087609 0.2765176 0.1160161 +0.06429595 0.2765176 0.1160161 +0.07958143 0.2765176 0.1160161 +0.0968001 0.2765176 0.1160161 +0.1160161 0.2765176 0.1160161 +0.1372908 0.2765176 0.1160161 +0.1606827 0.2765176 0.1160161 +0.1862481 0.2765176 0.1160161 +0.2140411 0.2765176 0.1160161 +0.2441142 0.2765176 0.1160161 +0.2765176 0.2765176 0.1160161 +0.3113005 0.2765176 0.1160161 +0.3485102 0.2765176 0.1160161 +0.388193 0.2765176 0.1160161 +0.4303934 0.2765176 0.1160161 +0.4751555 0.2765176 0.1160161 +0.5225216 0.2765176 0.1160161 +0.5725335 0.2765176 0.1160161 +0.6252316 0.2765176 0.1160161 +0.6806558 0.2765176 0.1160161 +0.7388448 0.2765176 0.1160161 +0.7998369 0.2765176 0.1160161 +0.8636691 0.2765176 0.1160161 +0.9303782 0.2765176 0.1160161 +1 0.2765176 0.1160161 +0 0.3113005 0.1160161 +0.002418731 0.3113005 0.1160161 +0.005155668 0.3113005 0.1160161 +0.009080105 0.3113005 0.1160161 +0.01434988 0.3113005 0.1160161 +0.02107202 0.3113005 0.1160161 +0.02934285 0.3113005 0.1160161 +0.03925039 0.3113005 0.1160161 +0.05087609 0.3113005 0.1160161 +0.06429595 0.3113005 0.1160161 +0.07958143 0.3113005 0.1160161 +0.0968001 0.3113005 0.1160161 +0.1160161 0.3113005 0.1160161 +0.1372908 0.3113005 0.1160161 +0.1606827 0.3113005 0.1160161 +0.1862481 0.3113005 0.1160161 +0.2140411 0.3113005 0.1160161 +0.2441142 0.3113005 0.1160161 +0.2765176 0.3113005 0.1160161 +0.3113005 0.3113005 0.1160161 +0.3485102 0.3113005 0.1160161 +0.388193 0.3113005 0.1160161 +0.4303934 0.3113005 0.1160161 +0.4751555 0.3113005 0.1160161 +0.5225216 0.3113005 0.1160161 +0.5725335 0.3113005 0.1160161 +0.6252316 0.3113005 0.1160161 +0.6806558 0.3113005 0.1160161 +0.7388448 0.3113005 0.1160161 +0.7998369 0.3113005 0.1160161 +0.8636691 0.3113005 0.1160161 +0.9303782 0.3113005 0.1160161 +1 0.3113005 0.1160161 +0 0.3485102 0.1160161 +0.002418731 0.3485102 0.1160161 +0.005155668 0.3485102 0.1160161 +0.009080105 0.3485102 0.1160161 +0.01434988 0.3485102 0.1160161 +0.02107202 0.3485102 0.1160161 +0.02934285 0.3485102 0.1160161 +0.03925039 0.3485102 0.1160161 +0.05087609 0.3485102 0.1160161 +0.06429595 0.3485102 0.1160161 +0.07958143 0.3485102 0.1160161 +0.0968001 0.3485102 0.1160161 +0.1160161 0.3485102 0.1160161 +0.1372908 0.3485102 0.1160161 +0.1606827 0.3485102 0.1160161 +0.1862481 0.3485102 0.1160161 +0.2140411 0.3485102 0.1160161 +0.2441142 0.3485102 0.1160161 +0.2765176 0.3485102 0.1160161 +0.3113005 0.3485102 0.1160161 +0.3485102 0.3485102 0.1160161 +0.388193 0.3485102 0.1160161 +0.4303934 0.3485102 0.1160161 +0.4751555 0.3485102 0.1160161 +0.5225216 0.3485102 0.1160161 +0.5725335 0.3485102 0.1160161 +0.6252316 0.3485102 0.1160161 +0.6806558 0.3485102 0.1160161 +0.7388448 0.3485102 0.1160161 +0.7998369 0.3485102 0.1160161 +0.8636691 0.3485102 0.1160161 +0.9303782 0.3485102 0.1160161 +1 0.3485102 0.1160161 +0 0.388193 0.1160161 +0.002418731 0.388193 0.1160161 +0.005155668 0.388193 0.1160161 +0.009080105 0.388193 0.1160161 +0.01434988 0.388193 0.1160161 +0.02107202 0.388193 0.1160161 +0.02934285 0.388193 0.1160161 +0.03925039 0.388193 0.1160161 +0.05087609 0.388193 0.1160161 +0.06429595 0.388193 0.1160161 +0.07958143 0.388193 0.1160161 +0.0968001 0.388193 0.1160161 +0.1160161 0.388193 0.1160161 +0.1372908 0.388193 0.1160161 +0.1606827 0.388193 0.1160161 +0.1862481 0.388193 0.1160161 +0.2140411 0.388193 0.1160161 +0.2441142 0.388193 0.1160161 +0.2765176 0.388193 0.1160161 +0.3113005 0.388193 0.1160161 +0.3485102 0.388193 0.1160161 +0.388193 0.388193 0.1160161 +0.4303934 0.388193 0.1160161 +0.4751555 0.388193 0.1160161 +0.5225216 0.388193 0.1160161 +0.5725335 0.388193 0.1160161 +0.6252316 0.388193 0.1160161 +0.6806558 0.388193 0.1160161 +0.7388448 0.388193 0.1160161 +0.7998369 0.388193 0.1160161 +0.8636691 0.388193 0.1160161 +0.9303782 0.388193 0.1160161 +1 0.388193 0.1160161 +0 0.4303934 0.1160161 +0.002418731 0.4303934 0.1160161 +0.005155668 0.4303934 0.1160161 +0.009080105 0.4303934 0.1160161 +0.01434988 0.4303934 0.1160161 +0.02107202 0.4303934 0.1160161 +0.02934285 0.4303934 0.1160161 +0.03925039 0.4303934 0.1160161 +0.05087609 0.4303934 0.1160161 +0.06429595 0.4303934 0.1160161 +0.07958143 0.4303934 0.1160161 +0.0968001 0.4303934 0.1160161 +0.1160161 0.4303934 0.1160161 +0.1372908 0.4303934 0.1160161 +0.1606827 0.4303934 0.1160161 +0.1862481 0.4303934 0.1160161 +0.2140411 0.4303934 0.1160161 +0.2441142 0.4303934 0.1160161 +0.2765176 0.4303934 0.1160161 +0.3113005 0.4303934 0.1160161 +0.3485102 0.4303934 0.1160161 +0.388193 0.4303934 0.1160161 +0.4303934 0.4303934 0.1160161 +0.4751555 0.4303934 0.1160161 +0.5225216 0.4303934 0.1160161 +0.5725335 0.4303934 0.1160161 +0.6252316 0.4303934 0.1160161 +0.6806558 0.4303934 0.1160161 +0.7388448 0.4303934 0.1160161 +0.7998369 0.4303934 0.1160161 +0.8636691 0.4303934 0.1160161 +0.9303782 0.4303934 0.1160161 +1 0.4303934 0.1160161 +0 0.4751555 0.1160161 +0.002418731 0.4751555 0.1160161 +0.005155668 0.4751555 0.1160161 +0.009080105 0.4751555 0.1160161 +0.01434988 0.4751555 0.1160161 +0.02107202 0.4751555 0.1160161 +0.02934285 0.4751555 0.1160161 +0.03925039 0.4751555 0.1160161 +0.05087609 0.4751555 0.1160161 +0.06429595 0.4751555 0.1160161 +0.07958143 0.4751555 0.1160161 +0.0968001 0.4751555 0.1160161 +0.1160161 0.4751555 0.1160161 +0.1372908 0.4751555 0.1160161 +0.1606827 0.4751555 0.1160161 +0.1862481 0.4751555 0.1160161 +0.2140411 0.4751555 0.1160161 +0.2441142 0.4751555 0.1160161 +0.2765176 0.4751555 0.1160161 +0.3113005 0.4751555 0.1160161 +0.3485102 0.4751555 0.1160161 +0.388193 0.4751555 0.1160161 +0.4303934 0.4751555 0.1160161 +0.4751555 0.4751555 0.1160161 +0.5225216 0.4751555 0.1160161 +0.5725335 0.4751555 0.1160161 +0.6252316 0.4751555 0.1160161 +0.6806558 0.4751555 0.1160161 +0.7388448 0.4751555 0.1160161 +0.7998369 0.4751555 0.1160161 +0.8636691 0.4751555 0.1160161 +0.9303782 0.4751555 0.1160161 +1 0.4751555 0.1160161 +0 0.5225216 0.1160161 +0.002418731 0.5225216 0.1160161 +0.005155668 0.5225216 0.1160161 +0.009080105 0.5225216 0.1160161 +0.01434988 0.5225216 0.1160161 +0.02107202 0.5225216 0.1160161 +0.02934285 0.5225216 0.1160161 +0.03925039 0.5225216 0.1160161 +0.05087609 0.5225216 0.1160161 +0.06429595 0.5225216 0.1160161 +0.07958143 0.5225216 0.1160161 +0.0968001 0.5225216 0.1160161 +0.1160161 0.5225216 0.1160161 +0.1372908 0.5225216 0.1160161 +0.1606827 0.5225216 0.1160161 +0.1862481 0.5225216 0.1160161 +0.2140411 0.5225216 0.1160161 +0.2441142 0.5225216 0.1160161 +0.2765176 0.5225216 0.1160161 +0.3113005 0.5225216 0.1160161 +0.3485102 0.5225216 0.1160161 +0.388193 0.5225216 0.1160161 +0.4303934 0.5225216 0.1160161 +0.4751555 0.5225216 0.1160161 +0.5225216 0.5225216 0.1160161 +0.5725335 0.5225216 0.1160161 +0.6252316 0.5225216 0.1160161 +0.6806558 0.5225216 0.1160161 +0.7388448 0.5225216 0.1160161 +0.7998369 0.5225216 0.1160161 +0.8636691 0.5225216 0.1160161 +0.9303782 0.5225216 0.1160161 +1 0.5225216 0.1160161 +0 0.5725335 0.1160161 +0.002418731 0.5725335 0.1160161 +0.005155668 0.5725335 0.1160161 +0.009080105 0.5725335 0.1160161 +0.01434988 0.5725335 0.1160161 +0.02107202 0.5725335 0.1160161 +0.02934285 0.5725335 0.1160161 +0.03925039 0.5725335 0.1160161 +0.05087609 0.5725335 0.1160161 +0.06429595 0.5725335 0.1160161 +0.07958143 0.5725335 0.1160161 +0.0968001 0.5725335 0.1160161 +0.1160161 0.5725335 0.1160161 +0.1372908 0.5725335 0.1160161 +0.1606827 0.5725335 0.1160161 +0.1862481 0.5725335 0.1160161 +0.2140411 0.5725335 0.1160161 +0.2441142 0.5725335 0.1160161 +0.2765176 0.5725335 0.1160161 +0.3113005 0.5725335 0.1160161 +0.3485102 0.5725335 0.1160161 +0.388193 0.5725335 0.1160161 +0.4303934 0.5725335 0.1160161 +0.4751555 0.5725335 0.1160161 +0.5225216 0.5725335 0.1160161 +0.5725335 0.5725335 0.1160161 +0.6252316 0.5725335 0.1160161 +0.6806558 0.5725335 0.1160161 +0.7388448 0.5725335 0.1160161 +0.7998369 0.5725335 0.1160161 +0.8636691 0.5725335 0.1160161 +0.9303782 0.5725335 0.1160161 +1 0.5725335 0.1160161 +0 0.6252316 0.1160161 +0.002418731 0.6252316 0.1160161 +0.005155668 0.6252316 0.1160161 +0.009080105 0.6252316 0.1160161 +0.01434988 0.6252316 0.1160161 +0.02107202 0.6252316 0.1160161 +0.02934285 0.6252316 0.1160161 +0.03925039 0.6252316 0.1160161 +0.05087609 0.6252316 0.1160161 +0.06429595 0.6252316 0.1160161 +0.07958143 0.6252316 0.1160161 +0.0968001 0.6252316 0.1160161 +0.1160161 0.6252316 0.1160161 +0.1372908 0.6252316 0.1160161 +0.1606827 0.6252316 0.1160161 +0.1862481 0.6252316 0.1160161 +0.2140411 0.6252316 0.1160161 +0.2441142 0.6252316 0.1160161 +0.2765176 0.6252316 0.1160161 +0.3113005 0.6252316 0.1160161 +0.3485102 0.6252316 0.1160161 +0.388193 0.6252316 0.1160161 +0.4303934 0.6252316 0.1160161 +0.4751555 0.6252316 0.1160161 +0.5225216 0.6252316 0.1160161 +0.5725335 0.6252316 0.1160161 +0.6252316 0.6252316 0.1160161 +0.6806558 0.6252316 0.1160161 +0.7388448 0.6252316 0.1160161 +0.7998369 0.6252316 0.1160161 +0.8636691 0.6252316 0.1160161 +0.9303782 0.6252316 0.1160161 +1 0.6252316 0.1160161 +0 0.6806558 0.1160161 +0.002418731 0.6806558 0.1160161 +0.005155668 0.6806558 0.1160161 +0.009080105 0.6806558 0.1160161 +0.01434988 0.6806558 0.1160161 +0.02107202 0.6806558 0.1160161 +0.02934285 0.6806558 0.1160161 +0.03925039 0.6806558 0.1160161 +0.05087609 0.6806558 0.1160161 +0.06429595 0.6806558 0.1160161 +0.07958143 0.6806558 0.1160161 +0.0968001 0.6806558 0.1160161 +0.1160161 0.6806558 0.1160161 +0.1372908 0.6806558 0.1160161 +0.1606827 0.6806558 0.1160161 +0.1862481 0.6806558 0.1160161 +0.2140411 0.6806558 0.1160161 +0.2441142 0.6806558 0.1160161 +0.2765176 0.6806558 0.1160161 +0.3113005 0.6806558 0.1160161 +0.3485102 0.6806558 0.1160161 +0.388193 0.6806558 0.1160161 +0.4303934 0.6806558 0.1160161 +0.4751555 0.6806558 0.1160161 +0.5225216 0.6806558 0.1160161 +0.5725335 0.6806558 0.1160161 +0.6252316 0.6806558 0.1160161 +0.6806558 0.6806558 0.1160161 +0.7388448 0.6806558 0.1160161 +0.7998369 0.6806558 0.1160161 +0.8636691 0.6806558 0.1160161 +0.9303782 0.6806558 0.1160161 +1 0.6806558 0.1160161 +0 0.7388448 0.1160161 +0.002418731 0.7388448 0.1160161 +0.005155668 0.7388448 0.1160161 +0.009080105 0.7388448 0.1160161 +0.01434988 0.7388448 0.1160161 +0.02107202 0.7388448 0.1160161 +0.02934285 0.7388448 0.1160161 +0.03925039 0.7388448 0.1160161 +0.05087609 0.7388448 0.1160161 +0.06429595 0.7388448 0.1160161 +0.07958143 0.7388448 0.1160161 +0.0968001 0.7388448 0.1160161 +0.1160161 0.7388448 0.1160161 +0.1372908 0.7388448 0.1160161 +0.1606827 0.7388448 0.1160161 +0.1862481 0.7388448 0.1160161 +0.2140411 0.7388448 0.1160161 +0.2441142 0.7388448 0.1160161 +0.2765176 0.7388448 0.1160161 +0.3113005 0.7388448 0.1160161 +0.3485102 0.7388448 0.1160161 +0.388193 0.7388448 0.1160161 +0.4303934 0.7388448 0.1160161 +0.4751555 0.7388448 0.1160161 +0.5225216 0.7388448 0.1160161 +0.5725335 0.7388448 0.1160161 +0.6252316 0.7388448 0.1160161 +0.6806558 0.7388448 0.1160161 +0.7388448 0.7388448 0.1160161 +0.7998369 0.7388448 0.1160161 +0.8636691 0.7388448 0.1160161 +0.9303782 0.7388448 0.1160161 +1 0.7388448 0.1160161 +0 0.7998369 0.1160161 +0.002418731 0.7998369 0.1160161 +0.005155668 0.7998369 0.1160161 +0.009080105 0.7998369 0.1160161 +0.01434988 0.7998369 0.1160161 +0.02107202 0.7998369 0.1160161 +0.02934285 0.7998369 0.1160161 +0.03925039 0.7998369 0.1160161 +0.05087609 0.7998369 0.1160161 +0.06429595 0.7998369 0.1160161 +0.07958143 0.7998369 0.1160161 +0.0968001 0.7998369 0.1160161 +0.1160161 0.7998369 0.1160161 +0.1372908 0.7998369 0.1160161 +0.1606827 0.7998369 0.1160161 +0.1862481 0.7998369 0.1160161 +0.2140411 0.7998369 0.1160161 +0.2441142 0.7998369 0.1160161 +0.2765176 0.7998369 0.1160161 +0.3113005 0.7998369 0.1160161 +0.3485102 0.7998369 0.1160161 +0.388193 0.7998369 0.1160161 +0.4303934 0.7998369 0.1160161 +0.4751555 0.7998369 0.1160161 +0.5225216 0.7998369 0.1160161 +0.5725335 0.7998369 0.1160161 +0.6252316 0.7998369 0.1160161 +0.6806558 0.7998369 0.1160161 +0.7388448 0.7998369 0.1160161 +0.7998369 0.7998369 0.1160161 +0.8636691 0.7998369 0.1160161 +0.9303782 0.7998369 0.1160161 +1 0.7998369 0.1160161 +0 0.8636691 0.1160161 +0.002418731 0.8636691 0.1160161 +0.005155668 0.8636691 0.1160161 +0.009080105 0.8636691 0.1160161 +0.01434988 0.8636691 0.1160161 +0.02107202 0.8636691 0.1160161 +0.02934285 0.8636691 0.1160161 +0.03925039 0.8636691 0.1160161 +0.05087609 0.8636691 0.1160161 +0.06429595 0.8636691 0.1160161 +0.07958143 0.8636691 0.1160161 +0.0968001 0.8636691 0.1160161 +0.1160161 0.8636691 0.1160161 +0.1372908 0.8636691 0.1160161 +0.1606827 0.8636691 0.1160161 +0.1862481 0.8636691 0.1160161 +0.2140411 0.8636691 0.1160161 +0.2441142 0.8636691 0.1160161 +0.2765176 0.8636691 0.1160161 +0.3113005 0.8636691 0.1160161 +0.3485102 0.8636691 0.1160161 +0.388193 0.8636691 0.1160161 +0.4303934 0.8636691 0.1160161 +0.4751555 0.8636691 0.1160161 +0.5225216 0.8636691 0.1160161 +0.5725335 0.8636691 0.1160161 +0.6252316 0.8636691 0.1160161 +0.6806558 0.8636691 0.1160161 +0.7388448 0.8636691 0.1160161 +0.7998369 0.8636691 0.1160161 +0.8636691 0.8636691 0.1160161 +0.9303782 0.8636691 0.1160161 +1 0.8636691 0.1160161 +0 0.9303782 0.1160161 +0.002418731 0.9303782 0.1160161 +0.005155668 0.9303782 0.1160161 +0.009080105 0.9303782 0.1160161 +0.01434988 0.9303782 0.1160161 +0.02107202 0.9303782 0.1160161 +0.02934285 0.9303782 0.1160161 +0.03925039 0.9303782 0.1160161 +0.05087609 0.9303782 0.1160161 +0.06429595 0.9303782 0.1160161 +0.07958143 0.9303782 0.1160161 +0.0968001 0.9303782 0.1160161 +0.1160161 0.9303782 0.1160161 +0.1372908 0.9303782 0.1160161 +0.1606827 0.9303782 0.1160161 +0.1862481 0.9303782 0.1160161 +0.2140411 0.9303782 0.1160161 +0.2441142 0.9303782 0.1160161 +0.2765176 0.9303782 0.1160161 +0.3113005 0.9303782 0.1160161 +0.3485102 0.9303782 0.1160161 +0.388193 0.9303782 0.1160161 +0.4303934 0.9303782 0.1160161 +0.4751555 0.9303782 0.1160161 +0.5225216 0.9303782 0.1160161 +0.5725335 0.9303782 0.1160161 +0.6252316 0.9303782 0.1160161 +0.6806558 0.9303782 0.1160161 +0.7388448 0.9303782 0.1160161 +0.7998369 0.9303782 0.1160161 +0.8636691 0.9303782 0.1160161 +0.9303782 0.9303782 0.1160161 +1 0.9303782 0.1160161 +0 1 0.1160161 +0.002418731 1 0.1160161 +0.005155668 1 0.1160161 +0.009080105 1 0.1160161 +0.01434988 1 0.1160161 +0.02107202 1 0.1160161 +0.02934285 1 0.1160161 +0.03925039 1 0.1160161 +0.05087609 1 0.1160161 +0.06429595 1 0.1160161 +0.07958143 1 0.1160161 +0.0968001 1 0.1160161 +0.1160161 1 0.1160161 +0.1372908 1 0.1160161 +0.1606827 1 0.1160161 +0.1862481 1 0.1160161 +0.2140411 1 0.1160161 +0.2441142 1 0.1160161 +0.2765176 1 0.1160161 +0.3113005 1 0.1160161 +0.3485102 1 0.1160161 +0.388193 1 0.1160161 +0.4303934 1 0.1160161 +0.4751555 1 0.1160161 +0.5225216 1 0.1160161 +0.5725335 1 0.1160161 +0.6252316 1 0.1160161 +0.6806558 1 0.1160161 +0.7388448 1 0.1160161 +0.7998369 1 0.1160161 +0.8636691 1 0.1160161 +0.9303782 1 0.1160161 +1 1 0.1160161 +0 0 0.1372908 +0.002418731 0 0.1372908 +0.005155668 0 0.1372908 +0.009080105 0 0.1372908 +0.01434988 0 0.1372908 +0.02107202 0 0.1372908 +0.02934285 0 0.1372908 +0.03925039 0 0.1372908 +0.05087609 0 0.1372908 +0.06429595 0 0.1372908 +0.07958143 0 0.1372908 +0.0968001 0 0.1372908 +0.1160161 0 0.1372908 +0.1372908 0 0.1372908 +0.1606827 0 0.1372908 +0.1862481 0 0.1372908 +0.2140411 0 0.1372908 +0.2441142 0 0.1372908 +0.2765176 0 0.1372908 +0.3113005 0 0.1372908 +0.3485102 0 0.1372908 +0.388193 0 0.1372908 +0.4303934 0 0.1372908 +0.4751555 0 0.1372908 +0.5225216 0 0.1372908 +0.5725335 0 0.1372908 +0.6252316 0 0.1372908 +0.6806558 0 0.1372908 +0.7388448 0 0.1372908 +0.7998369 0 0.1372908 +0.8636691 0 0.1372908 +0.9303782 0 0.1372908 +1 0 0.1372908 +0 0.002418731 0.1372908 +0.002418731 0.002418731 0.1372908 +0.005155668 0.002418731 0.1372908 +0.009080105 0.002418731 0.1372908 +0.01434988 0.002418731 0.1372908 +0.02107202 0.002418731 0.1372908 +0.02934285 0.002418731 0.1372908 +0.03925039 0.002418731 0.1372908 +0.05087609 0.002418731 0.1372908 +0.06429595 0.002418731 0.1372908 +0.07958143 0.002418731 0.1372908 +0.0968001 0.002418731 0.1372908 +0.1160161 0.002418731 0.1372908 +0.1372908 0.002418731 0.1372908 +0.1606827 0.002418731 0.1372908 +0.1862481 0.002418731 0.1372908 +0.2140411 0.002418731 0.1372908 +0.2441142 0.002418731 0.1372908 +0.2765176 0.002418731 0.1372908 +0.3113005 0.002418731 0.1372908 +0.3485102 0.002418731 0.1372908 +0.388193 0.002418731 0.1372908 +0.4303934 0.002418731 0.1372908 +0.4751555 0.002418731 0.1372908 +0.5225216 0.002418731 0.1372908 +0.5725335 0.002418731 0.1372908 +0.6252316 0.002418731 0.1372908 +0.6806558 0.002418731 0.1372908 +0.7388448 0.002418731 0.1372908 +0.7998369 0.002418731 0.1372908 +0.8636691 0.002418731 0.1372908 +0.9303782 0.002418731 0.1372908 +1 0.002418731 0.1372908 +0 0.005155668 0.1372908 +0.002418731 0.005155668 0.1372908 +0.005155668 0.005155668 0.1372908 +0.009080105 0.005155668 0.1372908 +0.01434988 0.005155668 0.1372908 +0.02107202 0.005155668 0.1372908 +0.02934285 0.005155668 0.1372908 +0.03925039 0.005155668 0.1372908 +0.05087609 0.005155668 0.1372908 +0.06429595 0.005155668 0.1372908 +0.07958143 0.005155668 0.1372908 +0.0968001 0.005155668 0.1372908 +0.1160161 0.005155668 0.1372908 +0.1372908 0.005155668 0.1372908 +0.1606827 0.005155668 0.1372908 +0.1862481 0.005155668 0.1372908 +0.2140411 0.005155668 0.1372908 +0.2441142 0.005155668 0.1372908 +0.2765176 0.005155668 0.1372908 +0.3113005 0.005155668 0.1372908 +0.3485102 0.005155668 0.1372908 +0.388193 0.005155668 0.1372908 +0.4303934 0.005155668 0.1372908 +0.4751555 0.005155668 0.1372908 +0.5225216 0.005155668 0.1372908 +0.5725335 0.005155668 0.1372908 +0.6252316 0.005155668 0.1372908 +0.6806558 0.005155668 0.1372908 +0.7388448 0.005155668 0.1372908 +0.7998369 0.005155668 0.1372908 +0.8636691 0.005155668 0.1372908 +0.9303782 0.005155668 0.1372908 +1 0.005155668 0.1372908 +0 0.009080105 0.1372908 +0.002418731 0.009080105 0.1372908 +0.005155668 0.009080105 0.1372908 +0.009080105 0.009080105 0.1372908 +0.01434988 0.009080105 0.1372908 +0.02107202 0.009080105 0.1372908 +0.02934285 0.009080105 0.1372908 +0.03925039 0.009080105 0.1372908 +0.05087609 0.009080105 0.1372908 +0.06429595 0.009080105 0.1372908 +0.07958143 0.009080105 0.1372908 +0.0968001 0.009080105 0.1372908 +0.1160161 0.009080105 0.1372908 +0.1372908 0.009080105 0.1372908 +0.1606827 0.009080105 0.1372908 +0.1862481 0.009080105 0.1372908 +0.2140411 0.009080105 0.1372908 +0.2441142 0.009080105 0.1372908 +0.2765176 0.009080105 0.1372908 +0.3113005 0.009080105 0.1372908 +0.3485102 0.009080105 0.1372908 +0.388193 0.009080105 0.1372908 +0.4303934 0.009080105 0.1372908 +0.4751555 0.009080105 0.1372908 +0.5225216 0.009080105 0.1372908 +0.5725335 0.009080105 0.1372908 +0.6252316 0.009080105 0.1372908 +0.6806558 0.009080105 0.1372908 +0.7388448 0.009080105 0.1372908 +0.7998369 0.009080105 0.1372908 +0.8636691 0.009080105 0.1372908 +0.9303782 0.009080105 0.1372908 +1 0.009080105 0.1372908 +0 0.01434988 0.1372908 +0.002418731 0.01434988 0.1372908 +0.005155668 0.01434988 0.1372908 +0.009080105 0.01434988 0.1372908 +0.01434988 0.01434988 0.1372908 +0.02107202 0.01434988 0.1372908 +0.02934285 0.01434988 0.1372908 +0.03925039 0.01434988 0.1372908 +0.05087609 0.01434988 0.1372908 +0.06429595 0.01434988 0.1372908 +0.07958143 0.01434988 0.1372908 +0.0968001 0.01434988 0.1372908 +0.1160161 0.01434988 0.1372908 +0.1372908 0.01434988 0.1372908 +0.1606827 0.01434988 0.1372908 +0.1862481 0.01434988 0.1372908 +0.2140411 0.01434988 0.1372908 +0.2441142 0.01434988 0.1372908 +0.2765176 0.01434988 0.1372908 +0.3113005 0.01434988 0.1372908 +0.3485102 0.01434988 0.1372908 +0.388193 0.01434988 0.1372908 +0.4303934 0.01434988 0.1372908 +0.4751555 0.01434988 0.1372908 +0.5225216 0.01434988 0.1372908 +0.5725335 0.01434988 0.1372908 +0.6252316 0.01434988 0.1372908 +0.6806558 0.01434988 0.1372908 +0.7388448 0.01434988 0.1372908 +0.7998369 0.01434988 0.1372908 +0.8636691 0.01434988 0.1372908 +0.9303782 0.01434988 0.1372908 +1 0.01434988 0.1372908 +0 0.02107202 0.1372908 +0.002418731 0.02107202 0.1372908 +0.005155668 0.02107202 0.1372908 +0.009080105 0.02107202 0.1372908 +0.01434988 0.02107202 0.1372908 +0.02107202 0.02107202 0.1372908 +0.02934285 0.02107202 0.1372908 +0.03925039 0.02107202 0.1372908 +0.05087609 0.02107202 0.1372908 +0.06429595 0.02107202 0.1372908 +0.07958143 0.02107202 0.1372908 +0.0968001 0.02107202 0.1372908 +0.1160161 0.02107202 0.1372908 +0.1372908 0.02107202 0.1372908 +0.1606827 0.02107202 0.1372908 +0.1862481 0.02107202 0.1372908 +0.2140411 0.02107202 0.1372908 +0.2441142 0.02107202 0.1372908 +0.2765176 0.02107202 0.1372908 +0.3113005 0.02107202 0.1372908 +0.3485102 0.02107202 0.1372908 +0.388193 0.02107202 0.1372908 +0.4303934 0.02107202 0.1372908 +0.4751555 0.02107202 0.1372908 +0.5225216 0.02107202 0.1372908 +0.5725335 0.02107202 0.1372908 +0.6252316 0.02107202 0.1372908 +0.6806558 0.02107202 0.1372908 +0.7388448 0.02107202 0.1372908 +0.7998369 0.02107202 0.1372908 +0.8636691 0.02107202 0.1372908 +0.9303782 0.02107202 0.1372908 +1 0.02107202 0.1372908 +0 0.02934285 0.1372908 +0.002418731 0.02934285 0.1372908 +0.005155668 0.02934285 0.1372908 +0.009080105 0.02934285 0.1372908 +0.01434988 0.02934285 0.1372908 +0.02107202 0.02934285 0.1372908 +0.02934285 0.02934285 0.1372908 +0.03925039 0.02934285 0.1372908 +0.05087609 0.02934285 0.1372908 +0.06429595 0.02934285 0.1372908 +0.07958143 0.02934285 0.1372908 +0.0968001 0.02934285 0.1372908 +0.1160161 0.02934285 0.1372908 +0.1372908 0.02934285 0.1372908 +0.1606827 0.02934285 0.1372908 +0.1862481 0.02934285 0.1372908 +0.2140411 0.02934285 0.1372908 +0.2441142 0.02934285 0.1372908 +0.2765176 0.02934285 0.1372908 +0.3113005 0.02934285 0.1372908 +0.3485102 0.02934285 0.1372908 +0.388193 0.02934285 0.1372908 +0.4303934 0.02934285 0.1372908 +0.4751555 0.02934285 0.1372908 +0.5225216 0.02934285 0.1372908 +0.5725335 0.02934285 0.1372908 +0.6252316 0.02934285 0.1372908 +0.6806558 0.02934285 0.1372908 +0.7388448 0.02934285 0.1372908 +0.7998369 0.02934285 0.1372908 +0.8636691 0.02934285 0.1372908 +0.9303782 0.02934285 0.1372908 +1 0.02934285 0.1372908 +0 0.03925039 0.1372908 +0.002418731 0.03925039 0.1372908 +0.005155668 0.03925039 0.1372908 +0.009080105 0.03925039 0.1372908 +0.01434988 0.03925039 0.1372908 +0.02107202 0.03925039 0.1372908 +0.02934285 0.03925039 0.1372908 +0.03925039 0.03925039 0.1372908 +0.05087609 0.03925039 0.1372908 +0.06429595 0.03925039 0.1372908 +0.07958143 0.03925039 0.1372908 +0.0968001 0.03925039 0.1372908 +0.1160161 0.03925039 0.1372908 +0.1372908 0.03925039 0.1372908 +0.1606827 0.03925039 0.1372908 +0.1862481 0.03925039 0.1372908 +0.2140411 0.03925039 0.1372908 +0.2441142 0.03925039 0.1372908 +0.2765176 0.03925039 0.1372908 +0.3113005 0.03925039 0.1372908 +0.3485102 0.03925039 0.1372908 +0.388193 0.03925039 0.1372908 +0.4303934 0.03925039 0.1372908 +0.4751555 0.03925039 0.1372908 +0.5225216 0.03925039 0.1372908 +0.5725335 0.03925039 0.1372908 +0.6252316 0.03925039 0.1372908 +0.6806558 0.03925039 0.1372908 +0.7388448 0.03925039 0.1372908 +0.7998369 0.03925039 0.1372908 +0.8636691 0.03925039 0.1372908 +0.9303782 0.03925039 0.1372908 +1 0.03925039 0.1372908 +0 0.05087609 0.1372908 +0.002418731 0.05087609 0.1372908 +0.005155668 0.05087609 0.1372908 +0.009080105 0.05087609 0.1372908 +0.01434988 0.05087609 0.1372908 +0.02107202 0.05087609 0.1372908 +0.02934285 0.05087609 0.1372908 +0.03925039 0.05087609 0.1372908 +0.05087609 0.05087609 0.1372908 +0.06429595 0.05087609 0.1372908 +0.07958143 0.05087609 0.1372908 +0.0968001 0.05087609 0.1372908 +0.1160161 0.05087609 0.1372908 +0.1372908 0.05087609 0.1372908 +0.1606827 0.05087609 0.1372908 +0.1862481 0.05087609 0.1372908 +0.2140411 0.05087609 0.1372908 +0.2441142 0.05087609 0.1372908 +0.2765176 0.05087609 0.1372908 +0.3113005 0.05087609 0.1372908 +0.3485102 0.05087609 0.1372908 +0.388193 0.05087609 0.1372908 +0.4303934 0.05087609 0.1372908 +0.4751555 0.05087609 0.1372908 +0.5225216 0.05087609 0.1372908 +0.5725335 0.05087609 0.1372908 +0.6252316 0.05087609 0.1372908 +0.6806558 0.05087609 0.1372908 +0.7388448 0.05087609 0.1372908 +0.7998369 0.05087609 0.1372908 +0.8636691 0.05087609 0.1372908 +0.9303782 0.05087609 0.1372908 +1 0.05087609 0.1372908 +0 0.06429595 0.1372908 +0.002418731 0.06429595 0.1372908 +0.005155668 0.06429595 0.1372908 +0.009080105 0.06429595 0.1372908 +0.01434988 0.06429595 0.1372908 +0.02107202 0.06429595 0.1372908 +0.02934285 0.06429595 0.1372908 +0.03925039 0.06429595 0.1372908 +0.05087609 0.06429595 0.1372908 +0.06429595 0.06429595 0.1372908 +0.07958143 0.06429595 0.1372908 +0.0968001 0.06429595 0.1372908 +0.1160161 0.06429595 0.1372908 +0.1372908 0.06429595 0.1372908 +0.1606827 0.06429595 0.1372908 +0.1862481 0.06429595 0.1372908 +0.2140411 0.06429595 0.1372908 +0.2441142 0.06429595 0.1372908 +0.2765176 0.06429595 0.1372908 +0.3113005 0.06429595 0.1372908 +0.3485102 0.06429595 0.1372908 +0.388193 0.06429595 0.1372908 +0.4303934 0.06429595 0.1372908 +0.4751555 0.06429595 0.1372908 +0.5225216 0.06429595 0.1372908 +0.5725335 0.06429595 0.1372908 +0.6252316 0.06429595 0.1372908 +0.6806558 0.06429595 0.1372908 +0.7388448 0.06429595 0.1372908 +0.7998369 0.06429595 0.1372908 +0.8636691 0.06429595 0.1372908 +0.9303782 0.06429595 0.1372908 +1 0.06429595 0.1372908 +0 0.07958143 0.1372908 +0.002418731 0.07958143 0.1372908 +0.005155668 0.07958143 0.1372908 +0.009080105 0.07958143 0.1372908 +0.01434988 0.07958143 0.1372908 +0.02107202 0.07958143 0.1372908 +0.02934285 0.07958143 0.1372908 +0.03925039 0.07958143 0.1372908 +0.05087609 0.07958143 0.1372908 +0.06429595 0.07958143 0.1372908 +0.07958143 0.07958143 0.1372908 +0.0968001 0.07958143 0.1372908 +0.1160161 0.07958143 0.1372908 +0.1372908 0.07958143 0.1372908 +0.1606827 0.07958143 0.1372908 +0.1862481 0.07958143 0.1372908 +0.2140411 0.07958143 0.1372908 +0.2441142 0.07958143 0.1372908 +0.2765176 0.07958143 0.1372908 +0.3113005 0.07958143 0.1372908 +0.3485102 0.07958143 0.1372908 +0.388193 0.07958143 0.1372908 +0.4303934 0.07958143 0.1372908 +0.4751555 0.07958143 0.1372908 +0.5225216 0.07958143 0.1372908 +0.5725335 0.07958143 0.1372908 +0.6252316 0.07958143 0.1372908 +0.6806558 0.07958143 0.1372908 +0.7388448 0.07958143 0.1372908 +0.7998369 0.07958143 0.1372908 +0.8636691 0.07958143 0.1372908 +0.9303782 0.07958143 0.1372908 +1 0.07958143 0.1372908 +0 0.0968001 0.1372908 +0.002418731 0.0968001 0.1372908 +0.005155668 0.0968001 0.1372908 +0.009080105 0.0968001 0.1372908 +0.01434988 0.0968001 0.1372908 +0.02107202 0.0968001 0.1372908 +0.02934285 0.0968001 0.1372908 +0.03925039 0.0968001 0.1372908 +0.05087609 0.0968001 0.1372908 +0.06429595 0.0968001 0.1372908 +0.07958143 0.0968001 0.1372908 +0.0968001 0.0968001 0.1372908 +0.1160161 0.0968001 0.1372908 +0.1372908 0.0968001 0.1372908 +0.1606827 0.0968001 0.1372908 +0.1862481 0.0968001 0.1372908 +0.2140411 0.0968001 0.1372908 +0.2441142 0.0968001 0.1372908 +0.2765176 0.0968001 0.1372908 +0.3113005 0.0968001 0.1372908 +0.3485102 0.0968001 0.1372908 +0.388193 0.0968001 0.1372908 +0.4303934 0.0968001 0.1372908 +0.4751555 0.0968001 0.1372908 +0.5225216 0.0968001 0.1372908 +0.5725335 0.0968001 0.1372908 +0.6252316 0.0968001 0.1372908 +0.6806558 0.0968001 0.1372908 +0.7388448 0.0968001 0.1372908 +0.7998369 0.0968001 0.1372908 +0.8636691 0.0968001 0.1372908 +0.9303782 0.0968001 0.1372908 +1 0.0968001 0.1372908 +0 0.1160161 0.1372908 +0.002418731 0.1160161 0.1372908 +0.005155668 0.1160161 0.1372908 +0.009080105 0.1160161 0.1372908 +0.01434988 0.1160161 0.1372908 +0.02107202 0.1160161 0.1372908 +0.02934285 0.1160161 0.1372908 +0.03925039 0.1160161 0.1372908 +0.05087609 0.1160161 0.1372908 +0.06429595 0.1160161 0.1372908 +0.07958143 0.1160161 0.1372908 +0.0968001 0.1160161 0.1372908 +0.1160161 0.1160161 0.1372908 +0.1372908 0.1160161 0.1372908 +0.1606827 0.1160161 0.1372908 +0.1862481 0.1160161 0.1372908 +0.2140411 0.1160161 0.1372908 +0.2441142 0.1160161 0.1372908 +0.2765176 0.1160161 0.1372908 +0.3113005 0.1160161 0.1372908 +0.3485102 0.1160161 0.1372908 +0.388193 0.1160161 0.1372908 +0.4303934 0.1160161 0.1372908 +0.4751555 0.1160161 0.1372908 +0.5225216 0.1160161 0.1372908 +0.5725335 0.1160161 0.1372908 +0.6252316 0.1160161 0.1372908 +0.6806558 0.1160161 0.1372908 +0.7388448 0.1160161 0.1372908 +0.7998369 0.1160161 0.1372908 +0.8636691 0.1160161 0.1372908 +0.9303782 0.1160161 0.1372908 +1 0.1160161 0.1372908 +0 0.1372908 0.1372908 +0.002418731 0.1372908 0.1372908 +0.005155668 0.1372908 0.1372908 +0.009080105 0.1372908 0.1372908 +0.01434988 0.1372908 0.1372908 +0.02107202 0.1372908 0.1372908 +0.02934285 0.1372908 0.1372908 +0.03925039 0.1372908 0.1372908 +0.05087609 0.1372908 0.1372908 +0.06429595 0.1372908 0.1372908 +0.07958143 0.1372908 0.1372908 +0.0968001 0.1372908 0.1372908 +0.1160161 0.1372908 0.1372908 +0.1372908 0.1372908 0.1372908 +0.1606827 0.1372908 0.1372908 +0.1862481 0.1372908 0.1372908 +0.2140411 0.1372908 0.1372908 +0.2441142 0.1372908 0.1372908 +0.2765176 0.1372908 0.1372908 +0.3113005 0.1372908 0.1372908 +0.3485102 0.1372908 0.1372908 +0.388193 0.1372908 0.1372908 +0.4303934 0.1372908 0.1372908 +0.4751555 0.1372908 0.1372908 +0.5225216 0.1372908 0.1372908 +0.5725335 0.1372908 0.1372908 +0.6252316 0.1372908 0.1372908 +0.6806558 0.1372908 0.1372908 +0.7388448 0.1372908 0.1372908 +0.7998369 0.1372908 0.1372908 +0.8636691 0.1372908 0.1372908 +0.9303782 0.1372908 0.1372908 +1 0.1372908 0.1372908 +0 0.1606827 0.1372908 +0.002418731 0.1606827 0.1372908 +0.005155668 0.1606827 0.1372908 +0.009080105 0.1606827 0.1372908 +0.01434988 0.1606827 0.1372908 +0.02107202 0.1606827 0.1372908 +0.02934285 0.1606827 0.1372908 +0.03925039 0.1606827 0.1372908 +0.05087609 0.1606827 0.1372908 +0.06429595 0.1606827 0.1372908 +0.07958143 0.1606827 0.1372908 +0.0968001 0.1606827 0.1372908 +0.1160161 0.1606827 0.1372908 +0.1372908 0.1606827 0.1372908 +0.1606827 0.1606827 0.1372908 +0.1862481 0.1606827 0.1372908 +0.2140411 0.1606827 0.1372908 +0.2441142 0.1606827 0.1372908 +0.2765176 0.1606827 0.1372908 +0.3113005 0.1606827 0.1372908 +0.3485102 0.1606827 0.1372908 +0.388193 0.1606827 0.1372908 +0.4303934 0.1606827 0.1372908 +0.4751555 0.1606827 0.1372908 +0.5225216 0.1606827 0.1372908 +0.5725335 0.1606827 0.1372908 +0.6252316 0.1606827 0.1372908 +0.6806558 0.1606827 0.1372908 +0.7388448 0.1606827 0.1372908 +0.7998369 0.1606827 0.1372908 +0.8636691 0.1606827 0.1372908 +0.9303782 0.1606827 0.1372908 +1 0.1606827 0.1372908 +0 0.1862481 0.1372908 +0.002418731 0.1862481 0.1372908 +0.005155668 0.1862481 0.1372908 +0.009080105 0.1862481 0.1372908 +0.01434988 0.1862481 0.1372908 +0.02107202 0.1862481 0.1372908 +0.02934285 0.1862481 0.1372908 +0.03925039 0.1862481 0.1372908 +0.05087609 0.1862481 0.1372908 +0.06429595 0.1862481 0.1372908 +0.07958143 0.1862481 0.1372908 +0.0968001 0.1862481 0.1372908 +0.1160161 0.1862481 0.1372908 +0.1372908 0.1862481 0.1372908 +0.1606827 0.1862481 0.1372908 +0.1862481 0.1862481 0.1372908 +0.2140411 0.1862481 0.1372908 +0.2441142 0.1862481 0.1372908 +0.2765176 0.1862481 0.1372908 +0.3113005 0.1862481 0.1372908 +0.3485102 0.1862481 0.1372908 +0.388193 0.1862481 0.1372908 +0.4303934 0.1862481 0.1372908 +0.4751555 0.1862481 0.1372908 +0.5225216 0.1862481 0.1372908 +0.5725335 0.1862481 0.1372908 +0.6252316 0.1862481 0.1372908 +0.6806558 0.1862481 0.1372908 +0.7388448 0.1862481 0.1372908 +0.7998369 0.1862481 0.1372908 +0.8636691 0.1862481 0.1372908 +0.9303782 0.1862481 0.1372908 +1 0.1862481 0.1372908 +0 0.2140411 0.1372908 +0.002418731 0.2140411 0.1372908 +0.005155668 0.2140411 0.1372908 +0.009080105 0.2140411 0.1372908 +0.01434988 0.2140411 0.1372908 +0.02107202 0.2140411 0.1372908 +0.02934285 0.2140411 0.1372908 +0.03925039 0.2140411 0.1372908 +0.05087609 0.2140411 0.1372908 +0.06429595 0.2140411 0.1372908 +0.07958143 0.2140411 0.1372908 +0.0968001 0.2140411 0.1372908 +0.1160161 0.2140411 0.1372908 +0.1372908 0.2140411 0.1372908 +0.1606827 0.2140411 0.1372908 +0.1862481 0.2140411 0.1372908 +0.2140411 0.2140411 0.1372908 +0.2441142 0.2140411 0.1372908 +0.2765176 0.2140411 0.1372908 +0.3113005 0.2140411 0.1372908 +0.3485102 0.2140411 0.1372908 +0.388193 0.2140411 0.1372908 +0.4303934 0.2140411 0.1372908 +0.4751555 0.2140411 0.1372908 +0.5225216 0.2140411 0.1372908 +0.5725335 0.2140411 0.1372908 +0.6252316 0.2140411 0.1372908 +0.6806558 0.2140411 0.1372908 +0.7388448 0.2140411 0.1372908 +0.7998369 0.2140411 0.1372908 +0.8636691 0.2140411 0.1372908 +0.9303782 0.2140411 0.1372908 +1 0.2140411 0.1372908 +0 0.2441142 0.1372908 +0.002418731 0.2441142 0.1372908 +0.005155668 0.2441142 0.1372908 +0.009080105 0.2441142 0.1372908 +0.01434988 0.2441142 0.1372908 +0.02107202 0.2441142 0.1372908 +0.02934285 0.2441142 0.1372908 +0.03925039 0.2441142 0.1372908 +0.05087609 0.2441142 0.1372908 +0.06429595 0.2441142 0.1372908 +0.07958143 0.2441142 0.1372908 +0.0968001 0.2441142 0.1372908 +0.1160161 0.2441142 0.1372908 +0.1372908 0.2441142 0.1372908 +0.1606827 0.2441142 0.1372908 +0.1862481 0.2441142 0.1372908 +0.2140411 0.2441142 0.1372908 +0.2441142 0.2441142 0.1372908 +0.2765176 0.2441142 0.1372908 +0.3113005 0.2441142 0.1372908 +0.3485102 0.2441142 0.1372908 +0.388193 0.2441142 0.1372908 +0.4303934 0.2441142 0.1372908 +0.4751555 0.2441142 0.1372908 +0.5225216 0.2441142 0.1372908 +0.5725335 0.2441142 0.1372908 +0.6252316 0.2441142 0.1372908 +0.6806558 0.2441142 0.1372908 +0.7388448 0.2441142 0.1372908 +0.7998369 0.2441142 0.1372908 +0.8636691 0.2441142 0.1372908 +0.9303782 0.2441142 0.1372908 +1 0.2441142 0.1372908 +0 0.2765176 0.1372908 +0.002418731 0.2765176 0.1372908 +0.005155668 0.2765176 0.1372908 +0.009080105 0.2765176 0.1372908 +0.01434988 0.2765176 0.1372908 +0.02107202 0.2765176 0.1372908 +0.02934285 0.2765176 0.1372908 +0.03925039 0.2765176 0.1372908 +0.05087609 0.2765176 0.1372908 +0.06429595 0.2765176 0.1372908 +0.07958143 0.2765176 0.1372908 +0.0968001 0.2765176 0.1372908 +0.1160161 0.2765176 0.1372908 +0.1372908 0.2765176 0.1372908 +0.1606827 0.2765176 0.1372908 +0.1862481 0.2765176 0.1372908 +0.2140411 0.2765176 0.1372908 +0.2441142 0.2765176 0.1372908 +0.2765176 0.2765176 0.1372908 +0.3113005 0.2765176 0.1372908 +0.3485102 0.2765176 0.1372908 +0.388193 0.2765176 0.1372908 +0.4303934 0.2765176 0.1372908 +0.4751555 0.2765176 0.1372908 +0.5225216 0.2765176 0.1372908 +0.5725335 0.2765176 0.1372908 +0.6252316 0.2765176 0.1372908 +0.6806558 0.2765176 0.1372908 +0.7388448 0.2765176 0.1372908 +0.7998369 0.2765176 0.1372908 +0.8636691 0.2765176 0.1372908 +0.9303782 0.2765176 0.1372908 +1 0.2765176 0.1372908 +0 0.3113005 0.1372908 +0.002418731 0.3113005 0.1372908 +0.005155668 0.3113005 0.1372908 +0.009080105 0.3113005 0.1372908 +0.01434988 0.3113005 0.1372908 +0.02107202 0.3113005 0.1372908 +0.02934285 0.3113005 0.1372908 +0.03925039 0.3113005 0.1372908 +0.05087609 0.3113005 0.1372908 +0.06429595 0.3113005 0.1372908 +0.07958143 0.3113005 0.1372908 +0.0968001 0.3113005 0.1372908 +0.1160161 0.3113005 0.1372908 +0.1372908 0.3113005 0.1372908 +0.1606827 0.3113005 0.1372908 +0.1862481 0.3113005 0.1372908 +0.2140411 0.3113005 0.1372908 +0.2441142 0.3113005 0.1372908 +0.2765176 0.3113005 0.1372908 +0.3113005 0.3113005 0.1372908 +0.3485102 0.3113005 0.1372908 +0.388193 0.3113005 0.1372908 +0.4303934 0.3113005 0.1372908 +0.4751555 0.3113005 0.1372908 +0.5225216 0.3113005 0.1372908 +0.5725335 0.3113005 0.1372908 +0.6252316 0.3113005 0.1372908 +0.6806558 0.3113005 0.1372908 +0.7388448 0.3113005 0.1372908 +0.7998369 0.3113005 0.1372908 +0.8636691 0.3113005 0.1372908 +0.9303782 0.3113005 0.1372908 +1 0.3113005 0.1372908 +0 0.3485102 0.1372908 +0.002418731 0.3485102 0.1372908 +0.005155668 0.3485102 0.1372908 +0.009080105 0.3485102 0.1372908 +0.01434988 0.3485102 0.1372908 +0.02107202 0.3485102 0.1372908 +0.02934285 0.3485102 0.1372908 +0.03925039 0.3485102 0.1372908 +0.05087609 0.3485102 0.1372908 +0.06429595 0.3485102 0.1372908 +0.07958143 0.3485102 0.1372908 +0.0968001 0.3485102 0.1372908 +0.1160161 0.3485102 0.1372908 +0.1372908 0.3485102 0.1372908 +0.1606827 0.3485102 0.1372908 +0.1862481 0.3485102 0.1372908 +0.2140411 0.3485102 0.1372908 +0.2441142 0.3485102 0.1372908 +0.2765176 0.3485102 0.1372908 +0.3113005 0.3485102 0.1372908 +0.3485102 0.3485102 0.1372908 +0.388193 0.3485102 0.1372908 +0.4303934 0.3485102 0.1372908 +0.4751555 0.3485102 0.1372908 +0.5225216 0.3485102 0.1372908 +0.5725335 0.3485102 0.1372908 +0.6252316 0.3485102 0.1372908 +0.6806558 0.3485102 0.1372908 +0.7388448 0.3485102 0.1372908 +0.7998369 0.3485102 0.1372908 +0.8636691 0.3485102 0.1372908 +0.9303782 0.3485102 0.1372908 +1 0.3485102 0.1372908 +0 0.388193 0.1372908 +0.002418731 0.388193 0.1372908 +0.005155668 0.388193 0.1372908 +0.009080105 0.388193 0.1372908 +0.01434988 0.388193 0.1372908 +0.02107202 0.388193 0.1372908 +0.02934285 0.388193 0.1372908 +0.03925039 0.388193 0.1372908 +0.05087609 0.388193 0.1372908 +0.06429595 0.388193 0.1372908 +0.07958143 0.388193 0.1372908 +0.0968001 0.388193 0.1372908 +0.1160161 0.388193 0.1372908 +0.1372908 0.388193 0.1372908 +0.1606827 0.388193 0.1372908 +0.1862481 0.388193 0.1372908 +0.2140411 0.388193 0.1372908 +0.2441142 0.388193 0.1372908 +0.2765176 0.388193 0.1372908 +0.3113005 0.388193 0.1372908 +0.3485102 0.388193 0.1372908 +0.388193 0.388193 0.1372908 +0.4303934 0.388193 0.1372908 +0.4751555 0.388193 0.1372908 +0.5225216 0.388193 0.1372908 +0.5725335 0.388193 0.1372908 +0.6252316 0.388193 0.1372908 +0.6806558 0.388193 0.1372908 +0.7388448 0.388193 0.1372908 +0.7998369 0.388193 0.1372908 +0.8636691 0.388193 0.1372908 +0.9303782 0.388193 0.1372908 +1 0.388193 0.1372908 +0 0.4303934 0.1372908 +0.002418731 0.4303934 0.1372908 +0.005155668 0.4303934 0.1372908 +0.009080105 0.4303934 0.1372908 +0.01434988 0.4303934 0.1372908 +0.02107202 0.4303934 0.1372908 +0.02934285 0.4303934 0.1372908 +0.03925039 0.4303934 0.1372908 +0.05087609 0.4303934 0.1372908 +0.06429595 0.4303934 0.1372908 +0.07958143 0.4303934 0.1372908 +0.0968001 0.4303934 0.1372908 +0.1160161 0.4303934 0.1372908 +0.1372908 0.4303934 0.1372908 +0.1606827 0.4303934 0.1372908 +0.1862481 0.4303934 0.1372908 +0.2140411 0.4303934 0.1372908 +0.2441142 0.4303934 0.1372908 +0.2765176 0.4303934 0.1372908 +0.3113005 0.4303934 0.1372908 +0.3485102 0.4303934 0.1372908 +0.388193 0.4303934 0.1372908 +0.4303934 0.4303934 0.1372908 +0.4751555 0.4303934 0.1372908 +0.5225216 0.4303934 0.1372908 +0.5725335 0.4303934 0.1372908 +0.6252316 0.4303934 0.1372908 +0.6806558 0.4303934 0.1372908 +0.7388448 0.4303934 0.1372908 +0.7998369 0.4303934 0.1372908 +0.8636691 0.4303934 0.1372908 +0.9303782 0.4303934 0.1372908 +1 0.4303934 0.1372908 +0 0.4751555 0.1372908 +0.002418731 0.4751555 0.1372908 +0.005155668 0.4751555 0.1372908 +0.009080105 0.4751555 0.1372908 +0.01434988 0.4751555 0.1372908 +0.02107202 0.4751555 0.1372908 +0.02934285 0.4751555 0.1372908 +0.03925039 0.4751555 0.1372908 +0.05087609 0.4751555 0.1372908 +0.06429595 0.4751555 0.1372908 +0.07958143 0.4751555 0.1372908 +0.0968001 0.4751555 0.1372908 +0.1160161 0.4751555 0.1372908 +0.1372908 0.4751555 0.1372908 +0.1606827 0.4751555 0.1372908 +0.1862481 0.4751555 0.1372908 +0.2140411 0.4751555 0.1372908 +0.2441142 0.4751555 0.1372908 +0.2765176 0.4751555 0.1372908 +0.3113005 0.4751555 0.1372908 +0.3485102 0.4751555 0.1372908 +0.388193 0.4751555 0.1372908 +0.4303934 0.4751555 0.1372908 +0.4751555 0.4751555 0.1372908 +0.5225216 0.4751555 0.1372908 +0.5725335 0.4751555 0.1372908 +0.6252316 0.4751555 0.1372908 +0.6806558 0.4751555 0.1372908 +0.7388448 0.4751555 0.1372908 +0.7998369 0.4751555 0.1372908 +0.8636691 0.4751555 0.1372908 +0.9303782 0.4751555 0.1372908 +1 0.4751555 0.1372908 +0 0.5225216 0.1372908 +0.002418731 0.5225216 0.1372908 +0.005155668 0.5225216 0.1372908 +0.009080105 0.5225216 0.1372908 +0.01434988 0.5225216 0.1372908 +0.02107202 0.5225216 0.1372908 +0.02934285 0.5225216 0.1372908 +0.03925039 0.5225216 0.1372908 +0.05087609 0.5225216 0.1372908 +0.06429595 0.5225216 0.1372908 +0.07958143 0.5225216 0.1372908 +0.0968001 0.5225216 0.1372908 +0.1160161 0.5225216 0.1372908 +0.1372908 0.5225216 0.1372908 +0.1606827 0.5225216 0.1372908 +0.1862481 0.5225216 0.1372908 +0.2140411 0.5225216 0.1372908 +0.2441142 0.5225216 0.1372908 +0.2765176 0.5225216 0.1372908 +0.3113005 0.5225216 0.1372908 +0.3485102 0.5225216 0.1372908 +0.388193 0.5225216 0.1372908 +0.4303934 0.5225216 0.1372908 +0.4751555 0.5225216 0.1372908 +0.5225216 0.5225216 0.1372908 +0.5725335 0.5225216 0.1372908 +0.6252316 0.5225216 0.1372908 +0.6806558 0.5225216 0.1372908 +0.7388448 0.5225216 0.1372908 +0.7998369 0.5225216 0.1372908 +0.8636691 0.5225216 0.1372908 +0.9303782 0.5225216 0.1372908 +1 0.5225216 0.1372908 +0 0.5725335 0.1372908 +0.002418731 0.5725335 0.1372908 +0.005155668 0.5725335 0.1372908 +0.009080105 0.5725335 0.1372908 +0.01434988 0.5725335 0.1372908 +0.02107202 0.5725335 0.1372908 +0.02934285 0.5725335 0.1372908 +0.03925039 0.5725335 0.1372908 +0.05087609 0.5725335 0.1372908 +0.06429595 0.5725335 0.1372908 +0.07958143 0.5725335 0.1372908 +0.0968001 0.5725335 0.1372908 +0.1160161 0.5725335 0.1372908 +0.1372908 0.5725335 0.1372908 +0.1606827 0.5725335 0.1372908 +0.1862481 0.5725335 0.1372908 +0.2140411 0.5725335 0.1372908 +0.2441142 0.5725335 0.1372908 +0.2765176 0.5725335 0.1372908 +0.3113005 0.5725335 0.1372908 +0.3485102 0.5725335 0.1372908 +0.388193 0.5725335 0.1372908 +0.4303934 0.5725335 0.1372908 +0.4751555 0.5725335 0.1372908 +0.5225216 0.5725335 0.1372908 +0.5725335 0.5725335 0.1372908 +0.6252316 0.5725335 0.1372908 +0.6806558 0.5725335 0.1372908 +0.7388448 0.5725335 0.1372908 +0.7998369 0.5725335 0.1372908 +0.8636691 0.5725335 0.1372908 +0.9303782 0.5725335 0.1372908 +1 0.5725335 0.1372908 +0 0.6252316 0.1372908 +0.002418731 0.6252316 0.1372908 +0.005155668 0.6252316 0.1372908 +0.009080105 0.6252316 0.1372908 +0.01434988 0.6252316 0.1372908 +0.02107202 0.6252316 0.1372908 +0.02934285 0.6252316 0.1372908 +0.03925039 0.6252316 0.1372908 +0.05087609 0.6252316 0.1372908 +0.06429595 0.6252316 0.1372908 +0.07958143 0.6252316 0.1372908 +0.0968001 0.6252316 0.1372908 +0.1160161 0.6252316 0.1372908 +0.1372908 0.6252316 0.1372908 +0.1606827 0.6252316 0.1372908 +0.1862481 0.6252316 0.1372908 +0.2140411 0.6252316 0.1372908 +0.2441142 0.6252316 0.1372908 +0.2765176 0.6252316 0.1372908 +0.3113005 0.6252316 0.1372908 +0.3485102 0.6252316 0.1372908 +0.388193 0.6252316 0.1372908 +0.4303934 0.6252316 0.1372908 +0.4751555 0.6252316 0.1372908 +0.5225216 0.6252316 0.1372908 +0.5725335 0.6252316 0.1372908 +0.6252316 0.6252316 0.1372908 +0.6806558 0.6252316 0.1372908 +0.7388448 0.6252316 0.1372908 +0.7998369 0.6252316 0.1372908 +0.8636691 0.6252316 0.1372908 +0.9303782 0.6252316 0.1372908 +1 0.6252316 0.1372908 +0 0.6806558 0.1372908 +0.002418731 0.6806558 0.1372908 +0.005155668 0.6806558 0.1372908 +0.009080105 0.6806558 0.1372908 +0.01434988 0.6806558 0.1372908 +0.02107202 0.6806558 0.1372908 +0.02934285 0.6806558 0.1372908 +0.03925039 0.6806558 0.1372908 +0.05087609 0.6806558 0.1372908 +0.06429595 0.6806558 0.1372908 +0.07958143 0.6806558 0.1372908 +0.0968001 0.6806558 0.1372908 +0.1160161 0.6806558 0.1372908 +0.1372908 0.6806558 0.1372908 +0.1606827 0.6806558 0.1372908 +0.1862481 0.6806558 0.1372908 +0.2140411 0.6806558 0.1372908 +0.2441142 0.6806558 0.1372908 +0.2765176 0.6806558 0.1372908 +0.3113005 0.6806558 0.1372908 +0.3485102 0.6806558 0.1372908 +0.388193 0.6806558 0.1372908 +0.4303934 0.6806558 0.1372908 +0.4751555 0.6806558 0.1372908 +0.5225216 0.6806558 0.1372908 +0.5725335 0.6806558 0.1372908 +0.6252316 0.6806558 0.1372908 +0.6806558 0.6806558 0.1372908 +0.7388448 0.6806558 0.1372908 +0.7998369 0.6806558 0.1372908 +0.8636691 0.6806558 0.1372908 +0.9303782 0.6806558 0.1372908 +1 0.6806558 0.1372908 +0 0.7388448 0.1372908 +0.002418731 0.7388448 0.1372908 +0.005155668 0.7388448 0.1372908 +0.009080105 0.7388448 0.1372908 +0.01434988 0.7388448 0.1372908 +0.02107202 0.7388448 0.1372908 +0.02934285 0.7388448 0.1372908 +0.03925039 0.7388448 0.1372908 +0.05087609 0.7388448 0.1372908 +0.06429595 0.7388448 0.1372908 +0.07958143 0.7388448 0.1372908 +0.0968001 0.7388448 0.1372908 +0.1160161 0.7388448 0.1372908 +0.1372908 0.7388448 0.1372908 +0.1606827 0.7388448 0.1372908 +0.1862481 0.7388448 0.1372908 +0.2140411 0.7388448 0.1372908 +0.2441142 0.7388448 0.1372908 +0.2765176 0.7388448 0.1372908 +0.3113005 0.7388448 0.1372908 +0.3485102 0.7388448 0.1372908 +0.388193 0.7388448 0.1372908 +0.4303934 0.7388448 0.1372908 +0.4751555 0.7388448 0.1372908 +0.5225216 0.7388448 0.1372908 +0.5725335 0.7388448 0.1372908 +0.6252316 0.7388448 0.1372908 +0.6806558 0.7388448 0.1372908 +0.7388448 0.7388448 0.1372908 +0.7998369 0.7388448 0.1372908 +0.8636691 0.7388448 0.1372908 +0.9303782 0.7388448 0.1372908 +1 0.7388448 0.1372908 +0 0.7998369 0.1372908 +0.002418731 0.7998369 0.1372908 +0.005155668 0.7998369 0.1372908 +0.009080105 0.7998369 0.1372908 +0.01434988 0.7998369 0.1372908 +0.02107202 0.7998369 0.1372908 +0.02934285 0.7998369 0.1372908 +0.03925039 0.7998369 0.1372908 +0.05087609 0.7998369 0.1372908 +0.06429595 0.7998369 0.1372908 +0.07958143 0.7998369 0.1372908 +0.0968001 0.7998369 0.1372908 +0.1160161 0.7998369 0.1372908 +0.1372908 0.7998369 0.1372908 +0.1606827 0.7998369 0.1372908 +0.1862481 0.7998369 0.1372908 +0.2140411 0.7998369 0.1372908 +0.2441142 0.7998369 0.1372908 +0.2765176 0.7998369 0.1372908 +0.3113005 0.7998369 0.1372908 +0.3485102 0.7998369 0.1372908 +0.388193 0.7998369 0.1372908 +0.4303934 0.7998369 0.1372908 +0.4751555 0.7998369 0.1372908 +0.5225216 0.7998369 0.1372908 +0.5725335 0.7998369 0.1372908 +0.6252316 0.7998369 0.1372908 +0.6806558 0.7998369 0.1372908 +0.7388448 0.7998369 0.1372908 +0.7998369 0.7998369 0.1372908 +0.8636691 0.7998369 0.1372908 +0.9303782 0.7998369 0.1372908 +1 0.7998369 0.1372908 +0 0.8636691 0.1372908 +0.002418731 0.8636691 0.1372908 +0.005155668 0.8636691 0.1372908 +0.009080105 0.8636691 0.1372908 +0.01434988 0.8636691 0.1372908 +0.02107202 0.8636691 0.1372908 +0.02934285 0.8636691 0.1372908 +0.03925039 0.8636691 0.1372908 +0.05087609 0.8636691 0.1372908 +0.06429595 0.8636691 0.1372908 +0.07958143 0.8636691 0.1372908 +0.0968001 0.8636691 0.1372908 +0.1160161 0.8636691 0.1372908 +0.1372908 0.8636691 0.1372908 +0.1606827 0.8636691 0.1372908 +0.1862481 0.8636691 0.1372908 +0.2140411 0.8636691 0.1372908 +0.2441142 0.8636691 0.1372908 +0.2765176 0.8636691 0.1372908 +0.3113005 0.8636691 0.1372908 +0.3485102 0.8636691 0.1372908 +0.388193 0.8636691 0.1372908 +0.4303934 0.8636691 0.1372908 +0.4751555 0.8636691 0.1372908 +0.5225216 0.8636691 0.1372908 +0.5725335 0.8636691 0.1372908 +0.6252316 0.8636691 0.1372908 +0.6806558 0.8636691 0.1372908 +0.7388448 0.8636691 0.1372908 +0.7998369 0.8636691 0.1372908 +0.8636691 0.8636691 0.1372908 +0.9303782 0.8636691 0.1372908 +1 0.8636691 0.1372908 +0 0.9303782 0.1372908 +0.002418731 0.9303782 0.1372908 +0.005155668 0.9303782 0.1372908 +0.009080105 0.9303782 0.1372908 +0.01434988 0.9303782 0.1372908 +0.02107202 0.9303782 0.1372908 +0.02934285 0.9303782 0.1372908 +0.03925039 0.9303782 0.1372908 +0.05087609 0.9303782 0.1372908 +0.06429595 0.9303782 0.1372908 +0.07958143 0.9303782 0.1372908 +0.0968001 0.9303782 0.1372908 +0.1160161 0.9303782 0.1372908 +0.1372908 0.9303782 0.1372908 +0.1606827 0.9303782 0.1372908 +0.1862481 0.9303782 0.1372908 +0.2140411 0.9303782 0.1372908 +0.2441142 0.9303782 0.1372908 +0.2765176 0.9303782 0.1372908 +0.3113005 0.9303782 0.1372908 +0.3485102 0.9303782 0.1372908 +0.388193 0.9303782 0.1372908 +0.4303934 0.9303782 0.1372908 +0.4751555 0.9303782 0.1372908 +0.5225216 0.9303782 0.1372908 +0.5725335 0.9303782 0.1372908 +0.6252316 0.9303782 0.1372908 +0.6806558 0.9303782 0.1372908 +0.7388448 0.9303782 0.1372908 +0.7998369 0.9303782 0.1372908 +0.8636691 0.9303782 0.1372908 +0.9303782 0.9303782 0.1372908 +1 0.9303782 0.1372908 +0 1 0.1372908 +0.002418731 1 0.1372908 +0.005155668 1 0.1372908 +0.009080105 1 0.1372908 +0.01434988 1 0.1372908 +0.02107202 1 0.1372908 +0.02934285 1 0.1372908 +0.03925039 1 0.1372908 +0.05087609 1 0.1372908 +0.06429595 1 0.1372908 +0.07958143 1 0.1372908 +0.0968001 1 0.1372908 +0.1160161 1 0.1372908 +0.1372908 1 0.1372908 +0.1606827 1 0.1372908 +0.1862481 1 0.1372908 +0.2140411 1 0.1372908 +0.2441142 1 0.1372908 +0.2765176 1 0.1372908 +0.3113005 1 0.1372908 +0.3485102 1 0.1372908 +0.388193 1 0.1372908 +0.4303934 1 0.1372908 +0.4751555 1 0.1372908 +0.5225216 1 0.1372908 +0.5725335 1 0.1372908 +0.6252316 1 0.1372908 +0.6806558 1 0.1372908 +0.7388448 1 0.1372908 +0.7998369 1 0.1372908 +0.8636691 1 0.1372908 +0.9303782 1 0.1372908 +1 1 0.1372908 +0 0 0.1606827 +0.002418731 0 0.1606827 +0.005155668 0 0.1606827 +0.009080105 0 0.1606827 +0.01434988 0 0.1606827 +0.02107202 0 0.1606827 +0.02934285 0 0.1606827 +0.03925039 0 0.1606827 +0.05087609 0 0.1606827 +0.06429595 0 0.1606827 +0.07958143 0 0.1606827 +0.0968001 0 0.1606827 +0.1160161 0 0.1606827 +0.1372908 0 0.1606827 +0.1606827 0 0.1606827 +0.1862481 0 0.1606827 +0.2140411 0 0.1606827 +0.2441142 0 0.1606827 +0.2765176 0 0.1606827 +0.3113005 0 0.1606827 +0.3485102 0 0.1606827 +0.388193 0 0.1606827 +0.4303934 0 0.1606827 +0.4751555 0 0.1606827 +0.5225216 0 0.1606827 +0.5725335 0 0.1606827 +0.6252316 0 0.1606827 +0.6806558 0 0.1606827 +0.7388448 0 0.1606827 +0.7998369 0 0.1606827 +0.8636691 0 0.1606827 +0.9303782 0 0.1606827 +1 0 0.1606827 +0 0.002418731 0.1606827 +0.002418731 0.002418731 0.1606827 +0.005155668 0.002418731 0.1606827 +0.009080105 0.002418731 0.1606827 +0.01434988 0.002418731 0.1606827 +0.02107202 0.002418731 0.1606827 +0.02934285 0.002418731 0.1606827 +0.03925039 0.002418731 0.1606827 +0.05087609 0.002418731 0.1606827 +0.06429595 0.002418731 0.1606827 +0.07958143 0.002418731 0.1606827 +0.0968001 0.002418731 0.1606827 +0.1160161 0.002418731 0.1606827 +0.1372908 0.002418731 0.1606827 +0.1606827 0.002418731 0.1606827 +0.1862481 0.002418731 0.1606827 +0.2140411 0.002418731 0.1606827 +0.2441142 0.002418731 0.1606827 +0.2765176 0.002418731 0.1606827 +0.3113005 0.002418731 0.1606827 +0.3485102 0.002418731 0.1606827 +0.388193 0.002418731 0.1606827 +0.4303934 0.002418731 0.1606827 +0.4751555 0.002418731 0.1606827 +0.5225216 0.002418731 0.1606827 +0.5725335 0.002418731 0.1606827 +0.6252316 0.002418731 0.1606827 +0.6806558 0.002418731 0.1606827 +0.7388448 0.002418731 0.1606827 +0.7998369 0.002418731 0.1606827 +0.8636691 0.002418731 0.1606827 +0.9303782 0.002418731 0.1606827 +1 0.002418731 0.1606827 +0 0.005155668 0.1606827 +0.002418731 0.005155668 0.1606827 +0.005155668 0.005155668 0.1606827 +0.009080105 0.005155668 0.1606827 +0.01434988 0.005155668 0.1606827 +0.02107202 0.005155668 0.1606827 +0.02934285 0.005155668 0.1606827 +0.03925039 0.005155668 0.1606827 +0.05087609 0.005155668 0.1606827 +0.06429595 0.005155668 0.1606827 +0.07958143 0.005155668 0.1606827 +0.0968001 0.005155668 0.1606827 +0.1160161 0.005155668 0.1606827 +0.1372908 0.005155668 0.1606827 +0.1606827 0.005155668 0.1606827 +0.1862481 0.005155668 0.1606827 +0.2140411 0.005155668 0.1606827 +0.2441142 0.005155668 0.1606827 +0.2765176 0.005155668 0.1606827 +0.3113005 0.005155668 0.1606827 +0.3485102 0.005155668 0.1606827 +0.388193 0.005155668 0.1606827 +0.4303934 0.005155668 0.1606827 +0.4751555 0.005155668 0.1606827 +0.5225216 0.005155668 0.1606827 +0.5725335 0.005155668 0.1606827 +0.6252316 0.005155668 0.1606827 +0.6806558 0.005155668 0.1606827 +0.7388448 0.005155668 0.1606827 +0.7998369 0.005155668 0.1606827 +0.8636691 0.005155668 0.1606827 +0.9303782 0.005155668 0.1606827 +1 0.005155668 0.1606827 +0 0.009080105 0.1606827 +0.002418731 0.009080105 0.1606827 +0.005155668 0.009080105 0.1606827 +0.009080105 0.009080105 0.1606827 +0.01434988 0.009080105 0.1606827 +0.02107202 0.009080105 0.1606827 +0.02934285 0.009080105 0.1606827 +0.03925039 0.009080105 0.1606827 +0.05087609 0.009080105 0.1606827 +0.06429595 0.009080105 0.1606827 +0.07958143 0.009080105 0.1606827 +0.0968001 0.009080105 0.1606827 +0.1160161 0.009080105 0.1606827 +0.1372908 0.009080105 0.1606827 +0.1606827 0.009080105 0.1606827 +0.1862481 0.009080105 0.1606827 +0.2140411 0.009080105 0.1606827 +0.2441142 0.009080105 0.1606827 +0.2765176 0.009080105 0.1606827 +0.3113005 0.009080105 0.1606827 +0.3485102 0.009080105 0.1606827 +0.388193 0.009080105 0.1606827 +0.4303934 0.009080105 0.1606827 +0.4751555 0.009080105 0.1606827 +0.5225216 0.009080105 0.1606827 +0.5725335 0.009080105 0.1606827 +0.6252316 0.009080105 0.1606827 +0.6806558 0.009080105 0.1606827 +0.7388448 0.009080105 0.1606827 +0.7998369 0.009080105 0.1606827 +0.8636691 0.009080105 0.1606827 +0.9303782 0.009080105 0.1606827 +1 0.009080105 0.1606827 +0 0.01434988 0.1606827 +0.002418731 0.01434988 0.1606827 +0.005155668 0.01434988 0.1606827 +0.009080105 0.01434988 0.1606827 +0.01434988 0.01434988 0.1606827 +0.02107202 0.01434988 0.1606827 +0.02934285 0.01434988 0.1606827 +0.03925039 0.01434988 0.1606827 +0.05087609 0.01434988 0.1606827 +0.06429595 0.01434988 0.1606827 +0.07958143 0.01434988 0.1606827 +0.0968001 0.01434988 0.1606827 +0.1160161 0.01434988 0.1606827 +0.1372908 0.01434988 0.1606827 +0.1606827 0.01434988 0.1606827 +0.1862481 0.01434988 0.1606827 +0.2140411 0.01434988 0.1606827 +0.2441142 0.01434988 0.1606827 +0.2765176 0.01434988 0.1606827 +0.3113005 0.01434988 0.1606827 +0.3485102 0.01434988 0.1606827 +0.388193 0.01434988 0.1606827 +0.4303934 0.01434988 0.1606827 +0.4751555 0.01434988 0.1606827 +0.5225216 0.01434988 0.1606827 +0.5725335 0.01434988 0.1606827 +0.6252316 0.01434988 0.1606827 +0.6806558 0.01434988 0.1606827 +0.7388448 0.01434988 0.1606827 +0.7998369 0.01434988 0.1606827 +0.8636691 0.01434988 0.1606827 +0.9303782 0.01434988 0.1606827 +1 0.01434988 0.1606827 +0 0.02107202 0.1606827 +0.002418731 0.02107202 0.1606827 +0.005155668 0.02107202 0.1606827 +0.009080105 0.02107202 0.1606827 +0.01434988 0.02107202 0.1606827 +0.02107202 0.02107202 0.1606827 +0.02934285 0.02107202 0.1606827 +0.03925039 0.02107202 0.1606827 +0.05087609 0.02107202 0.1606827 +0.06429595 0.02107202 0.1606827 +0.07958143 0.02107202 0.1606827 +0.0968001 0.02107202 0.1606827 +0.1160161 0.02107202 0.1606827 +0.1372908 0.02107202 0.1606827 +0.1606827 0.02107202 0.1606827 +0.1862481 0.02107202 0.1606827 +0.2140411 0.02107202 0.1606827 +0.2441142 0.02107202 0.1606827 +0.2765176 0.02107202 0.1606827 +0.3113005 0.02107202 0.1606827 +0.3485102 0.02107202 0.1606827 +0.388193 0.02107202 0.1606827 +0.4303934 0.02107202 0.1606827 +0.4751555 0.02107202 0.1606827 +0.5225216 0.02107202 0.1606827 +0.5725335 0.02107202 0.1606827 +0.6252316 0.02107202 0.1606827 +0.6806558 0.02107202 0.1606827 +0.7388448 0.02107202 0.1606827 +0.7998369 0.02107202 0.1606827 +0.8636691 0.02107202 0.1606827 +0.9303782 0.02107202 0.1606827 +1 0.02107202 0.1606827 +0 0.02934285 0.1606827 +0.002418731 0.02934285 0.1606827 +0.005155668 0.02934285 0.1606827 +0.009080105 0.02934285 0.1606827 +0.01434988 0.02934285 0.1606827 +0.02107202 0.02934285 0.1606827 +0.02934285 0.02934285 0.1606827 +0.03925039 0.02934285 0.1606827 +0.05087609 0.02934285 0.1606827 +0.06429595 0.02934285 0.1606827 +0.07958143 0.02934285 0.1606827 +0.0968001 0.02934285 0.1606827 +0.1160161 0.02934285 0.1606827 +0.1372908 0.02934285 0.1606827 +0.1606827 0.02934285 0.1606827 +0.1862481 0.02934285 0.1606827 +0.2140411 0.02934285 0.1606827 +0.2441142 0.02934285 0.1606827 +0.2765176 0.02934285 0.1606827 +0.3113005 0.02934285 0.1606827 +0.3485102 0.02934285 0.1606827 +0.388193 0.02934285 0.1606827 +0.4303934 0.02934285 0.1606827 +0.4751555 0.02934285 0.1606827 +0.5225216 0.02934285 0.1606827 +0.5725335 0.02934285 0.1606827 +0.6252316 0.02934285 0.1606827 +0.6806558 0.02934285 0.1606827 +0.7388448 0.02934285 0.1606827 +0.7998369 0.02934285 0.1606827 +0.8636691 0.02934285 0.1606827 +0.9303782 0.02934285 0.1606827 +1 0.02934285 0.1606827 +0 0.03925039 0.1606827 +0.002418731 0.03925039 0.1606827 +0.005155668 0.03925039 0.1606827 +0.009080105 0.03925039 0.1606827 +0.01434988 0.03925039 0.1606827 +0.02107202 0.03925039 0.1606827 +0.02934285 0.03925039 0.1606827 +0.03925039 0.03925039 0.1606827 +0.05087609 0.03925039 0.1606827 +0.06429595 0.03925039 0.1606827 +0.07958143 0.03925039 0.1606827 +0.0968001 0.03925039 0.1606827 +0.1160161 0.03925039 0.1606827 +0.1372908 0.03925039 0.1606827 +0.1606827 0.03925039 0.1606827 +0.1862481 0.03925039 0.1606827 +0.2140411 0.03925039 0.1606827 +0.2441142 0.03925039 0.1606827 +0.2765176 0.03925039 0.1606827 +0.3113005 0.03925039 0.1606827 +0.3485102 0.03925039 0.1606827 +0.388193 0.03925039 0.1606827 +0.4303934 0.03925039 0.1606827 +0.4751555 0.03925039 0.1606827 +0.5225216 0.03925039 0.1606827 +0.5725335 0.03925039 0.1606827 +0.6252316 0.03925039 0.1606827 +0.6806558 0.03925039 0.1606827 +0.7388448 0.03925039 0.1606827 +0.7998369 0.03925039 0.1606827 +0.8636691 0.03925039 0.1606827 +0.9303782 0.03925039 0.1606827 +1 0.03925039 0.1606827 +0 0.05087609 0.1606827 +0.002418731 0.05087609 0.1606827 +0.005155668 0.05087609 0.1606827 +0.009080105 0.05087609 0.1606827 +0.01434988 0.05087609 0.1606827 +0.02107202 0.05087609 0.1606827 +0.02934285 0.05087609 0.1606827 +0.03925039 0.05087609 0.1606827 +0.05087609 0.05087609 0.1606827 +0.06429595 0.05087609 0.1606827 +0.07958143 0.05087609 0.1606827 +0.0968001 0.05087609 0.1606827 +0.1160161 0.05087609 0.1606827 +0.1372908 0.05087609 0.1606827 +0.1606827 0.05087609 0.1606827 +0.1862481 0.05087609 0.1606827 +0.2140411 0.05087609 0.1606827 +0.2441142 0.05087609 0.1606827 +0.2765176 0.05087609 0.1606827 +0.3113005 0.05087609 0.1606827 +0.3485102 0.05087609 0.1606827 +0.388193 0.05087609 0.1606827 +0.4303934 0.05087609 0.1606827 +0.4751555 0.05087609 0.1606827 +0.5225216 0.05087609 0.1606827 +0.5725335 0.05087609 0.1606827 +0.6252316 0.05087609 0.1606827 +0.6806558 0.05087609 0.1606827 +0.7388448 0.05087609 0.1606827 +0.7998369 0.05087609 0.1606827 +0.8636691 0.05087609 0.1606827 +0.9303782 0.05087609 0.1606827 +1 0.05087609 0.1606827 +0 0.06429595 0.1606827 +0.002418731 0.06429595 0.1606827 +0.005155668 0.06429595 0.1606827 +0.009080105 0.06429595 0.1606827 +0.01434988 0.06429595 0.1606827 +0.02107202 0.06429595 0.1606827 +0.02934285 0.06429595 0.1606827 +0.03925039 0.06429595 0.1606827 +0.05087609 0.06429595 0.1606827 +0.06429595 0.06429595 0.1606827 +0.07958143 0.06429595 0.1606827 +0.0968001 0.06429595 0.1606827 +0.1160161 0.06429595 0.1606827 +0.1372908 0.06429595 0.1606827 +0.1606827 0.06429595 0.1606827 +0.1862481 0.06429595 0.1606827 +0.2140411 0.06429595 0.1606827 +0.2441142 0.06429595 0.1606827 +0.2765176 0.06429595 0.1606827 +0.3113005 0.06429595 0.1606827 +0.3485102 0.06429595 0.1606827 +0.388193 0.06429595 0.1606827 +0.4303934 0.06429595 0.1606827 +0.4751555 0.06429595 0.1606827 +0.5225216 0.06429595 0.1606827 +0.5725335 0.06429595 0.1606827 +0.6252316 0.06429595 0.1606827 +0.6806558 0.06429595 0.1606827 +0.7388448 0.06429595 0.1606827 +0.7998369 0.06429595 0.1606827 +0.8636691 0.06429595 0.1606827 +0.9303782 0.06429595 0.1606827 +1 0.06429595 0.1606827 +0 0.07958143 0.1606827 +0.002418731 0.07958143 0.1606827 +0.005155668 0.07958143 0.1606827 +0.009080105 0.07958143 0.1606827 +0.01434988 0.07958143 0.1606827 +0.02107202 0.07958143 0.1606827 +0.02934285 0.07958143 0.1606827 +0.03925039 0.07958143 0.1606827 +0.05087609 0.07958143 0.1606827 +0.06429595 0.07958143 0.1606827 +0.07958143 0.07958143 0.1606827 +0.0968001 0.07958143 0.1606827 +0.1160161 0.07958143 0.1606827 +0.1372908 0.07958143 0.1606827 +0.1606827 0.07958143 0.1606827 +0.1862481 0.07958143 0.1606827 +0.2140411 0.07958143 0.1606827 +0.2441142 0.07958143 0.1606827 +0.2765176 0.07958143 0.1606827 +0.3113005 0.07958143 0.1606827 +0.3485102 0.07958143 0.1606827 +0.388193 0.07958143 0.1606827 +0.4303934 0.07958143 0.1606827 +0.4751555 0.07958143 0.1606827 +0.5225216 0.07958143 0.1606827 +0.5725335 0.07958143 0.1606827 +0.6252316 0.07958143 0.1606827 +0.6806558 0.07958143 0.1606827 +0.7388448 0.07958143 0.1606827 +0.7998369 0.07958143 0.1606827 +0.8636691 0.07958143 0.1606827 +0.9303782 0.07958143 0.1606827 +1 0.07958143 0.1606827 +0 0.0968001 0.1606827 +0.002418731 0.0968001 0.1606827 +0.005155668 0.0968001 0.1606827 +0.009080105 0.0968001 0.1606827 +0.01434988 0.0968001 0.1606827 +0.02107202 0.0968001 0.1606827 +0.02934285 0.0968001 0.1606827 +0.03925039 0.0968001 0.1606827 +0.05087609 0.0968001 0.1606827 +0.06429595 0.0968001 0.1606827 +0.07958143 0.0968001 0.1606827 +0.0968001 0.0968001 0.1606827 +0.1160161 0.0968001 0.1606827 +0.1372908 0.0968001 0.1606827 +0.1606827 0.0968001 0.1606827 +0.1862481 0.0968001 0.1606827 +0.2140411 0.0968001 0.1606827 +0.2441142 0.0968001 0.1606827 +0.2765176 0.0968001 0.1606827 +0.3113005 0.0968001 0.1606827 +0.3485102 0.0968001 0.1606827 +0.388193 0.0968001 0.1606827 +0.4303934 0.0968001 0.1606827 +0.4751555 0.0968001 0.1606827 +0.5225216 0.0968001 0.1606827 +0.5725335 0.0968001 0.1606827 +0.6252316 0.0968001 0.1606827 +0.6806558 0.0968001 0.1606827 +0.7388448 0.0968001 0.1606827 +0.7998369 0.0968001 0.1606827 +0.8636691 0.0968001 0.1606827 +0.9303782 0.0968001 0.1606827 +1 0.0968001 0.1606827 +0 0.1160161 0.1606827 +0.002418731 0.1160161 0.1606827 +0.005155668 0.1160161 0.1606827 +0.009080105 0.1160161 0.1606827 +0.01434988 0.1160161 0.1606827 +0.02107202 0.1160161 0.1606827 +0.02934285 0.1160161 0.1606827 +0.03925039 0.1160161 0.1606827 +0.05087609 0.1160161 0.1606827 +0.06429595 0.1160161 0.1606827 +0.07958143 0.1160161 0.1606827 +0.0968001 0.1160161 0.1606827 +0.1160161 0.1160161 0.1606827 +0.1372908 0.1160161 0.1606827 +0.1606827 0.1160161 0.1606827 +0.1862481 0.1160161 0.1606827 +0.2140411 0.1160161 0.1606827 +0.2441142 0.1160161 0.1606827 +0.2765176 0.1160161 0.1606827 +0.3113005 0.1160161 0.1606827 +0.3485102 0.1160161 0.1606827 +0.388193 0.1160161 0.1606827 +0.4303934 0.1160161 0.1606827 +0.4751555 0.1160161 0.1606827 +0.5225216 0.1160161 0.1606827 +0.5725335 0.1160161 0.1606827 +0.6252316 0.1160161 0.1606827 +0.6806558 0.1160161 0.1606827 +0.7388448 0.1160161 0.1606827 +0.7998369 0.1160161 0.1606827 +0.8636691 0.1160161 0.1606827 +0.9303782 0.1160161 0.1606827 +1 0.1160161 0.1606827 +0 0.1372908 0.1606827 +0.002418731 0.1372908 0.1606827 +0.005155668 0.1372908 0.1606827 +0.009080105 0.1372908 0.1606827 +0.01434988 0.1372908 0.1606827 +0.02107202 0.1372908 0.1606827 +0.02934285 0.1372908 0.1606827 +0.03925039 0.1372908 0.1606827 +0.05087609 0.1372908 0.1606827 +0.06429595 0.1372908 0.1606827 +0.07958143 0.1372908 0.1606827 +0.0968001 0.1372908 0.1606827 +0.1160161 0.1372908 0.1606827 +0.1372908 0.1372908 0.1606827 +0.1606827 0.1372908 0.1606827 +0.1862481 0.1372908 0.1606827 +0.2140411 0.1372908 0.1606827 +0.2441142 0.1372908 0.1606827 +0.2765176 0.1372908 0.1606827 +0.3113005 0.1372908 0.1606827 +0.3485102 0.1372908 0.1606827 +0.388193 0.1372908 0.1606827 +0.4303934 0.1372908 0.1606827 +0.4751555 0.1372908 0.1606827 +0.5225216 0.1372908 0.1606827 +0.5725335 0.1372908 0.1606827 +0.6252316 0.1372908 0.1606827 +0.6806558 0.1372908 0.1606827 +0.7388448 0.1372908 0.1606827 +0.7998369 0.1372908 0.1606827 +0.8636691 0.1372908 0.1606827 +0.9303782 0.1372908 0.1606827 +1 0.1372908 0.1606827 +0 0.1606827 0.1606827 +0.002418731 0.1606827 0.1606827 +0.005155668 0.1606827 0.1606827 +0.009080105 0.1606827 0.1606827 +0.01434988 0.1606827 0.1606827 +0.02107202 0.1606827 0.1606827 +0.02934285 0.1606827 0.1606827 +0.03925039 0.1606827 0.1606827 +0.05087609 0.1606827 0.1606827 +0.06429595 0.1606827 0.1606827 +0.07958143 0.1606827 0.1606827 +0.0968001 0.1606827 0.1606827 +0.1160161 0.1606827 0.1606827 +0.1372908 0.1606827 0.1606827 +0.1606827 0.1606827 0.1606827 +0.1862481 0.1606827 0.1606827 +0.2140411 0.1606827 0.1606827 +0.2441142 0.1606827 0.1606827 +0.2765176 0.1606827 0.1606827 +0.3113005 0.1606827 0.1606827 +0.3485102 0.1606827 0.1606827 +0.388193 0.1606827 0.1606827 +0.4303934 0.1606827 0.1606827 +0.4751555 0.1606827 0.1606827 +0.5225216 0.1606827 0.1606827 +0.5725335 0.1606827 0.1606827 +0.6252316 0.1606827 0.1606827 +0.6806558 0.1606827 0.1606827 +0.7388448 0.1606827 0.1606827 +0.7998369 0.1606827 0.1606827 +0.8636691 0.1606827 0.1606827 +0.9303782 0.1606827 0.1606827 +1 0.1606827 0.1606827 +0 0.1862481 0.1606827 +0.002418731 0.1862481 0.1606827 +0.005155668 0.1862481 0.1606827 +0.009080105 0.1862481 0.1606827 +0.01434988 0.1862481 0.1606827 +0.02107202 0.1862481 0.1606827 +0.02934285 0.1862481 0.1606827 +0.03925039 0.1862481 0.1606827 +0.05087609 0.1862481 0.1606827 +0.06429595 0.1862481 0.1606827 +0.07958143 0.1862481 0.1606827 +0.0968001 0.1862481 0.1606827 +0.1160161 0.1862481 0.1606827 +0.1372908 0.1862481 0.1606827 +0.1606827 0.1862481 0.1606827 +0.1862481 0.1862481 0.1606827 +0.2140411 0.1862481 0.1606827 +0.2441142 0.1862481 0.1606827 +0.2765176 0.1862481 0.1606827 +0.3113005 0.1862481 0.1606827 +0.3485102 0.1862481 0.1606827 +0.388193 0.1862481 0.1606827 +0.4303934 0.1862481 0.1606827 +0.4751555 0.1862481 0.1606827 +0.5225216 0.1862481 0.1606827 +0.5725335 0.1862481 0.1606827 +0.6252316 0.1862481 0.1606827 +0.6806558 0.1862481 0.1606827 +0.7388448 0.1862481 0.1606827 +0.7998369 0.1862481 0.1606827 +0.8636691 0.1862481 0.1606827 +0.9303782 0.1862481 0.1606827 +1 0.1862481 0.1606827 +0 0.2140411 0.1606827 +0.002418731 0.2140411 0.1606827 +0.005155668 0.2140411 0.1606827 +0.009080105 0.2140411 0.1606827 +0.01434988 0.2140411 0.1606827 +0.02107202 0.2140411 0.1606827 +0.02934285 0.2140411 0.1606827 +0.03925039 0.2140411 0.1606827 +0.05087609 0.2140411 0.1606827 +0.06429595 0.2140411 0.1606827 +0.07958143 0.2140411 0.1606827 +0.0968001 0.2140411 0.1606827 +0.1160161 0.2140411 0.1606827 +0.1372908 0.2140411 0.1606827 +0.1606827 0.2140411 0.1606827 +0.1862481 0.2140411 0.1606827 +0.2140411 0.2140411 0.1606827 +0.2441142 0.2140411 0.1606827 +0.2765176 0.2140411 0.1606827 +0.3113005 0.2140411 0.1606827 +0.3485102 0.2140411 0.1606827 +0.388193 0.2140411 0.1606827 +0.4303934 0.2140411 0.1606827 +0.4751555 0.2140411 0.1606827 +0.5225216 0.2140411 0.1606827 +0.5725335 0.2140411 0.1606827 +0.6252316 0.2140411 0.1606827 +0.6806558 0.2140411 0.1606827 +0.7388448 0.2140411 0.1606827 +0.7998369 0.2140411 0.1606827 +0.8636691 0.2140411 0.1606827 +0.9303782 0.2140411 0.1606827 +1 0.2140411 0.1606827 +0 0.2441142 0.1606827 +0.002418731 0.2441142 0.1606827 +0.005155668 0.2441142 0.1606827 +0.009080105 0.2441142 0.1606827 +0.01434988 0.2441142 0.1606827 +0.02107202 0.2441142 0.1606827 +0.02934285 0.2441142 0.1606827 +0.03925039 0.2441142 0.1606827 +0.05087609 0.2441142 0.1606827 +0.06429595 0.2441142 0.1606827 +0.07958143 0.2441142 0.1606827 +0.0968001 0.2441142 0.1606827 +0.1160161 0.2441142 0.1606827 +0.1372908 0.2441142 0.1606827 +0.1606827 0.2441142 0.1606827 +0.1862481 0.2441142 0.1606827 +0.2140411 0.2441142 0.1606827 +0.2441142 0.2441142 0.1606827 +0.2765176 0.2441142 0.1606827 +0.3113005 0.2441142 0.1606827 +0.3485102 0.2441142 0.1606827 +0.388193 0.2441142 0.1606827 +0.4303934 0.2441142 0.1606827 +0.4751555 0.2441142 0.1606827 +0.5225216 0.2441142 0.1606827 +0.5725335 0.2441142 0.1606827 +0.6252316 0.2441142 0.1606827 +0.6806558 0.2441142 0.1606827 +0.7388448 0.2441142 0.1606827 +0.7998369 0.2441142 0.1606827 +0.8636691 0.2441142 0.1606827 +0.9303782 0.2441142 0.1606827 +1 0.2441142 0.1606827 +0 0.2765176 0.1606827 +0.002418731 0.2765176 0.1606827 +0.005155668 0.2765176 0.1606827 +0.009080105 0.2765176 0.1606827 +0.01434988 0.2765176 0.1606827 +0.02107202 0.2765176 0.1606827 +0.02934285 0.2765176 0.1606827 +0.03925039 0.2765176 0.1606827 +0.05087609 0.2765176 0.1606827 +0.06429595 0.2765176 0.1606827 +0.07958143 0.2765176 0.1606827 +0.0968001 0.2765176 0.1606827 +0.1160161 0.2765176 0.1606827 +0.1372908 0.2765176 0.1606827 +0.1606827 0.2765176 0.1606827 +0.1862481 0.2765176 0.1606827 +0.2140411 0.2765176 0.1606827 +0.2441142 0.2765176 0.1606827 +0.2765176 0.2765176 0.1606827 +0.3113005 0.2765176 0.1606827 +0.3485102 0.2765176 0.1606827 +0.388193 0.2765176 0.1606827 +0.4303934 0.2765176 0.1606827 +0.4751555 0.2765176 0.1606827 +0.5225216 0.2765176 0.1606827 +0.5725335 0.2765176 0.1606827 +0.6252316 0.2765176 0.1606827 +0.6806558 0.2765176 0.1606827 +0.7388448 0.2765176 0.1606827 +0.7998369 0.2765176 0.1606827 +0.8636691 0.2765176 0.1606827 +0.9303782 0.2765176 0.1606827 +1 0.2765176 0.1606827 +0 0.3113005 0.1606827 +0.002418731 0.3113005 0.1606827 +0.005155668 0.3113005 0.1606827 +0.009080105 0.3113005 0.1606827 +0.01434988 0.3113005 0.1606827 +0.02107202 0.3113005 0.1606827 +0.02934285 0.3113005 0.1606827 +0.03925039 0.3113005 0.1606827 +0.05087609 0.3113005 0.1606827 +0.06429595 0.3113005 0.1606827 +0.07958143 0.3113005 0.1606827 +0.0968001 0.3113005 0.1606827 +0.1160161 0.3113005 0.1606827 +0.1372908 0.3113005 0.1606827 +0.1606827 0.3113005 0.1606827 +0.1862481 0.3113005 0.1606827 +0.2140411 0.3113005 0.1606827 +0.2441142 0.3113005 0.1606827 +0.2765176 0.3113005 0.1606827 +0.3113005 0.3113005 0.1606827 +0.3485102 0.3113005 0.1606827 +0.388193 0.3113005 0.1606827 +0.4303934 0.3113005 0.1606827 +0.4751555 0.3113005 0.1606827 +0.5225216 0.3113005 0.1606827 +0.5725335 0.3113005 0.1606827 +0.6252316 0.3113005 0.1606827 +0.6806558 0.3113005 0.1606827 +0.7388448 0.3113005 0.1606827 +0.7998369 0.3113005 0.1606827 +0.8636691 0.3113005 0.1606827 +0.9303782 0.3113005 0.1606827 +1 0.3113005 0.1606827 +0 0.3485102 0.1606827 +0.002418731 0.3485102 0.1606827 +0.005155668 0.3485102 0.1606827 +0.009080105 0.3485102 0.1606827 +0.01434988 0.3485102 0.1606827 +0.02107202 0.3485102 0.1606827 +0.02934285 0.3485102 0.1606827 +0.03925039 0.3485102 0.1606827 +0.05087609 0.3485102 0.1606827 +0.06429595 0.3485102 0.1606827 +0.07958143 0.3485102 0.1606827 +0.0968001 0.3485102 0.1606827 +0.1160161 0.3485102 0.1606827 +0.1372908 0.3485102 0.1606827 +0.1606827 0.3485102 0.1606827 +0.1862481 0.3485102 0.1606827 +0.2140411 0.3485102 0.1606827 +0.2441142 0.3485102 0.1606827 +0.2765176 0.3485102 0.1606827 +0.3113005 0.3485102 0.1606827 +0.3485102 0.3485102 0.1606827 +0.388193 0.3485102 0.1606827 +0.4303934 0.3485102 0.1606827 +0.4751555 0.3485102 0.1606827 +0.5225216 0.3485102 0.1606827 +0.5725335 0.3485102 0.1606827 +0.6252316 0.3485102 0.1606827 +0.6806558 0.3485102 0.1606827 +0.7388448 0.3485102 0.1606827 +0.7998369 0.3485102 0.1606827 +0.8636691 0.3485102 0.1606827 +0.9303782 0.3485102 0.1606827 +1 0.3485102 0.1606827 +0 0.388193 0.1606827 +0.002418731 0.388193 0.1606827 +0.005155668 0.388193 0.1606827 +0.009080105 0.388193 0.1606827 +0.01434988 0.388193 0.1606827 +0.02107202 0.388193 0.1606827 +0.02934285 0.388193 0.1606827 +0.03925039 0.388193 0.1606827 +0.05087609 0.388193 0.1606827 +0.06429595 0.388193 0.1606827 +0.07958143 0.388193 0.1606827 +0.0968001 0.388193 0.1606827 +0.1160161 0.388193 0.1606827 +0.1372908 0.388193 0.1606827 +0.1606827 0.388193 0.1606827 +0.1862481 0.388193 0.1606827 +0.2140411 0.388193 0.1606827 +0.2441142 0.388193 0.1606827 +0.2765176 0.388193 0.1606827 +0.3113005 0.388193 0.1606827 +0.3485102 0.388193 0.1606827 +0.388193 0.388193 0.1606827 +0.4303934 0.388193 0.1606827 +0.4751555 0.388193 0.1606827 +0.5225216 0.388193 0.1606827 +0.5725335 0.388193 0.1606827 +0.6252316 0.388193 0.1606827 +0.6806558 0.388193 0.1606827 +0.7388448 0.388193 0.1606827 +0.7998369 0.388193 0.1606827 +0.8636691 0.388193 0.1606827 +0.9303782 0.388193 0.1606827 +1 0.388193 0.1606827 +0 0.4303934 0.1606827 +0.002418731 0.4303934 0.1606827 +0.005155668 0.4303934 0.1606827 +0.009080105 0.4303934 0.1606827 +0.01434988 0.4303934 0.1606827 +0.02107202 0.4303934 0.1606827 +0.02934285 0.4303934 0.1606827 +0.03925039 0.4303934 0.1606827 +0.05087609 0.4303934 0.1606827 +0.06429595 0.4303934 0.1606827 +0.07958143 0.4303934 0.1606827 +0.0968001 0.4303934 0.1606827 +0.1160161 0.4303934 0.1606827 +0.1372908 0.4303934 0.1606827 +0.1606827 0.4303934 0.1606827 +0.1862481 0.4303934 0.1606827 +0.2140411 0.4303934 0.1606827 +0.2441142 0.4303934 0.1606827 +0.2765176 0.4303934 0.1606827 +0.3113005 0.4303934 0.1606827 +0.3485102 0.4303934 0.1606827 +0.388193 0.4303934 0.1606827 +0.4303934 0.4303934 0.1606827 +0.4751555 0.4303934 0.1606827 +0.5225216 0.4303934 0.1606827 +0.5725335 0.4303934 0.1606827 +0.6252316 0.4303934 0.1606827 +0.6806558 0.4303934 0.1606827 +0.7388448 0.4303934 0.1606827 +0.7998369 0.4303934 0.1606827 +0.8636691 0.4303934 0.1606827 +0.9303782 0.4303934 0.1606827 +1 0.4303934 0.1606827 +0 0.4751555 0.1606827 +0.002418731 0.4751555 0.1606827 +0.005155668 0.4751555 0.1606827 +0.009080105 0.4751555 0.1606827 +0.01434988 0.4751555 0.1606827 +0.02107202 0.4751555 0.1606827 +0.02934285 0.4751555 0.1606827 +0.03925039 0.4751555 0.1606827 +0.05087609 0.4751555 0.1606827 +0.06429595 0.4751555 0.1606827 +0.07958143 0.4751555 0.1606827 +0.0968001 0.4751555 0.1606827 +0.1160161 0.4751555 0.1606827 +0.1372908 0.4751555 0.1606827 +0.1606827 0.4751555 0.1606827 +0.1862481 0.4751555 0.1606827 +0.2140411 0.4751555 0.1606827 +0.2441142 0.4751555 0.1606827 +0.2765176 0.4751555 0.1606827 +0.3113005 0.4751555 0.1606827 +0.3485102 0.4751555 0.1606827 +0.388193 0.4751555 0.1606827 +0.4303934 0.4751555 0.1606827 +0.4751555 0.4751555 0.1606827 +0.5225216 0.4751555 0.1606827 +0.5725335 0.4751555 0.1606827 +0.6252316 0.4751555 0.1606827 +0.6806558 0.4751555 0.1606827 +0.7388448 0.4751555 0.1606827 +0.7998369 0.4751555 0.1606827 +0.8636691 0.4751555 0.1606827 +0.9303782 0.4751555 0.1606827 +1 0.4751555 0.1606827 +0 0.5225216 0.1606827 +0.002418731 0.5225216 0.1606827 +0.005155668 0.5225216 0.1606827 +0.009080105 0.5225216 0.1606827 +0.01434988 0.5225216 0.1606827 +0.02107202 0.5225216 0.1606827 +0.02934285 0.5225216 0.1606827 +0.03925039 0.5225216 0.1606827 +0.05087609 0.5225216 0.1606827 +0.06429595 0.5225216 0.1606827 +0.07958143 0.5225216 0.1606827 +0.0968001 0.5225216 0.1606827 +0.1160161 0.5225216 0.1606827 +0.1372908 0.5225216 0.1606827 +0.1606827 0.5225216 0.1606827 +0.1862481 0.5225216 0.1606827 +0.2140411 0.5225216 0.1606827 +0.2441142 0.5225216 0.1606827 +0.2765176 0.5225216 0.1606827 +0.3113005 0.5225216 0.1606827 +0.3485102 0.5225216 0.1606827 +0.388193 0.5225216 0.1606827 +0.4303934 0.5225216 0.1606827 +0.4751555 0.5225216 0.1606827 +0.5225216 0.5225216 0.1606827 +0.5725335 0.5225216 0.1606827 +0.6252316 0.5225216 0.1606827 +0.6806558 0.5225216 0.1606827 +0.7388448 0.5225216 0.1606827 +0.7998369 0.5225216 0.1606827 +0.8636691 0.5225216 0.1606827 +0.9303782 0.5225216 0.1606827 +1 0.5225216 0.1606827 +0 0.5725335 0.1606827 +0.002418731 0.5725335 0.1606827 +0.005155668 0.5725335 0.1606827 +0.009080105 0.5725335 0.1606827 +0.01434988 0.5725335 0.1606827 +0.02107202 0.5725335 0.1606827 +0.02934285 0.5725335 0.1606827 +0.03925039 0.5725335 0.1606827 +0.05087609 0.5725335 0.1606827 +0.06429595 0.5725335 0.1606827 +0.07958143 0.5725335 0.1606827 +0.0968001 0.5725335 0.1606827 +0.1160161 0.5725335 0.1606827 +0.1372908 0.5725335 0.1606827 +0.1606827 0.5725335 0.1606827 +0.1862481 0.5725335 0.1606827 +0.2140411 0.5725335 0.1606827 +0.2441142 0.5725335 0.1606827 +0.2765176 0.5725335 0.1606827 +0.3113005 0.5725335 0.1606827 +0.3485102 0.5725335 0.1606827 +0.388193 0.5725335 0.1606827 +0.4303934 0.5725335 0.1606827 +0.4751555 0.5725335 0.1606827 +0.5225216 0.5725335 0.1606827 +0.5725335 0.5725335 0.1606827 +0.6252316 0.5725335 0.1606827 +0.6806558 0.5725335 0.1606827 +0.7388448 0.5725335 0.1606827 +0.7998369 0.5725335 0.1606827 +0.8636691 0.5725335 0.1606827 +0.9303782 0.5725335 0.1606827 +1 0.5725335 0.1606827 +0 0.6252316 0.1606827 +0.002418731 0.6252316 0.1606827 +0.005155668 0.6252316 0.1606827 +0.009080105 0.6252316 0.1606827 +0.01434988 0.6252316 0.1606827 +0.02107202 0.6252316 0.1606827 +0.02934285 0.6252316 0.1606827 +0.03925039 0.6252316 0.1606827 +0.05087609 0.6252316 0.1606827 +0.06429595 0.6252316 0.1606827 +0.07958143 0.6252316 0.1606827 +0.0968001 0.6252316 0.1606827 +0.1160161 0.6252316 0.1606827 +0.1372908 0.6252316 0.1606827 +0.1606827 0.6252316 0.1606827 +0.1862481 0.6252316 0.1606827 +0.2140411 0.6252316 0.1606827 +0.2441142 0.6252316 0.1606827 +0.2765176 0.6252316 0.1606827 +0.3113005 0.6252316 0.1606827 +0.3485102 0.6252316 0.1606827 +0.388193 0.6252316 0.1606827 +0.4303934 0.6252316 0.1606827 +0.4751555 0.6252316 0.1606827 +0.5225216 0.6252316 0.1606827 +0.5725335 0.6252316 0.1606827 +0.6252316 0.6252316 0.1606827 +0.6806558 0.6252316 0.1606827 +0.7388448 0.6252316 0.1606827 +0.7998369 0.6252316 0.1606827 +0.8636691 0.6252316 0.1606827 +0.9303782 0.6252316 0.1606827 +1 0.6252316 0.1606827 +0 0.6806558 0.1606827 +0.002418731 0.6806558 0.1606827 +0.005155668 0.6806558 0.1606827 +0.009080105 0.6806558 0.1606827 +0.01434988 0.6806558 0.1606827 +0.02107202 0.6806558 0.1606827 +0.02934285 0.6806558 0.1606827 +0.03925039 0.6806558 0.1606827 +0.05087609 0.6806558 0.1606827 +0.06429595 0.6806558 0.1606827 +0.07958143 0.6806558 0.1606827 +0.0968001 0.6806558 0.1606827 +0.1160161 0.6806558 0.1606827 +0.1372908 0.6806558 0.1606827 +0.1606827 0.6806558 0.1606827 +0.1862481 0.6806558 0.1606827 +0.2140411 0.6806558 0.1606827 +0.2441142 0.6806558 0.1606827 +0.2765176 0.6806558 0.1606827 +0.3113005 0.6806558 0.1606827 +0.3485102 0.6806558 0.1606827 +0.388193 0.6806558 0.1606827 +0.4303934 0.6806558 0.1606827 +0.4751555 0.6806558 0.1606827 +0.5225216 0.6806558 0.1606827 +0.5725335 0.6806558 0.1606827 +0.6252316 0.6806558 0.1606827 +0.6806558 0.6806558 0.1606827 +0.7388448 0.6806558 0.1606827 +0.7998369 0.6806558 0.1606827 +0.8636691 0.6806558 0.1606827 +0.9303782 0.6806558 0.1606827 +1 0.6806558 0.1606827 +0 0.7388448 0.1606827 +0.002418731 0.7388448 0.1606827 +0.005155668 0.7388448 0.1606827 +0.009080105 0.7388448 0.1606827 +0.01434988 0.7388448 0.1606827 +0.02107202 0.7388448 0.1606827 +0.02934285 0.7388448 0.1606827 +0.03925039 0.7388448 0.1606827 +0.05087609 0.7388448 0.1606827 +0.06429595 0.7388448 0.1606827 +0.07958143 0.7388448 0.1606827 +0.0968001 0.7388448 0.1606827 +0.1160161 0.7388448 0.1606827 +0.1372908 0.7388448 0.1606827 +0.1606827 0.7388448 0.1606827 +0.1862481 0.7388448 0.1606827 +0.2140411 0.7388448 0.1606827 +0.2441142 0.7388448 0.1606827 +0.2765176 0.7388448 0.1606827 +0.3113005 0.7388448 0.1606827 +0.3485102 0.7388448 0.1606827 +0.388193 0.7388448 0.1606827 +0.4303934 0.7388448 0.1606827 +0.4751555 0.7388448 0.1606827 +0.5225216 0.7388448 0.1606827 +0.5725335 0.7388448 0.1606827 +0.6252316 0.7388448 0.1606827 +0.6806558 0.7388448 0.1606827 +0.7388448 0.7388448 0.1606827 +0.7998369 0.7388448 0.1606827 +0.8636691 0.7388448 0.1606827 +0.9303782 0.7388448 0.1606827 +1 0.7388448 0.1606827 +0 0.7998369 0.1606827 +0.002418731 0.7998369 0.1606827 +0.005155668 0.7998369 0.1606827 +0.009080105 0.7998369 0.1606827 +0.01434988 0.7998369 0.1606827 +0.02107202 0.7998369 0.1606827 +0.02934285 0.7998369 0.1606827 +0.03925039 0.7998369 0.1606827 +0.05087609 0.7998369 0.1606827 +0.06429595 0.7998369 0.1606827 +0.07958143 0.7998369 0.1606827 +0.0968001 0.7998369 0.1606827 +0.1160161 0.7998369 0.1606827 +0.1372908 0.7998369 0.1606827 +0.1606827 0.7998369 0.1606827 +0.1862481 0.7998369 0.1606827 +0.2140411 0.7998369 0.1606827 +0.2441142 0.7998369 0.1606827 +0.2765176 0.7998369 0.1606827 +0.3113005 0.7998369 0.1606827 +0.3485102 0.7998369 0.1606827 +0.388193 0.7998369 0.1606827 +0.4303934 0.7998369 0.1606827 +0.4751555 0.7998369 0.1606827 +0.5225216 0.7998369 0.1606827 +0.5725335 0.7998369 0.1606827 +0.6252316 0.7998369 0.1606827 +0.6806558 0.7998369 0.1606827 +0.7388448 0.7998369 0.1606827 +0.7998369 0.7998369 0.1606827 +0.8636691 0.7998369 0.1606827 +0.9303782 0.7998369 0.1606827 +1 0.7998369 0.1606827 +0 0.8636691 0.1606827 +0.002418731 0.8636691 0.1606827 +0.005155668 0.8636691 0.1606827 +0.009080105 0.8636691 0.1606827 +0.01434988 0.8636691 0.1606827 +0.02107202 0.8636691 0.1606827 +0.02934285 0.8636691 0.1606827 +0.03925039 0.8636691 0.1606827 +0.05087609 0.8636691 0.1606827 +0.06429595 0.8636691 0.1606827 +0.07958143 0.8636691 0.1606827 +0.0968001 0.8636691 0.1606827 +0.1160161 0.8636691 0.1606827 +0.1372908 0.8636691 0.1606827 +0.1606827 0.8636691 0.1606827 +0.1862481 0.8636691 0.1606827 +0.2140411 0.8636691 0.1606827 +0.2441142 0.8636691 0.1606827 +0.2765176 0.8636691 0.1606827 +0.3113005 0.8636691 0.1606827 +0.3485102 0.8636691 0.1606827 +0.388193 0.8636691 0.1606827 +0.4303934 0.8636691 0.1606827 +0.4751555 0.8636691 0.1606827 +0.5225216 0.8636691 0.1606827 +0.5725335 0.8636691 0.1606827 +0.6252316 0.8636691 0.1606827 +0.6806558 0.8636691 0.1606827 +0.7388448 0.8636691 0.1606827 +0.7998369 0.8636691 0.1606827 +0.8636691 0.8636691 0.1606827 +0.9303782 0.8636691 0.1606827 +1 0.8636691 0.1606827 +0 0.9303782 0.1606827 +0.002418731 0.9303782 0.1606827 +0.005155668 0.9303782 0.1606827 +0.009080105 0.9303782 0.1606827 +0.01434988 0.9303782 0.1606827 +0.02107202 0.9303782 0.1606827 +0.02934285 0.9303782 0.1606827 +0.03925039 0.9303782 0.1606827 +0.05087609 0.9303782 0.1606827 +0.06429595 0.9303782 0.1606827 +0.07958143 0.9303782 0.1606827 +0.0968001 0.9303782 0.1606827 +0.1160161 0.9303782 0.1606827 +0.1372908 0.9303782 0.1606827 +0.1606827 0.9303782 0.1606827 +0.1862481 0.9303782 0.1606827 +0.2140411 0.9303782 0.1606827 +0.2441142 0.9303782 0.1606827 +0.2765176 0.9303782 0.1606827 +0.3113005 0.9303782 0.1606827 +0.3485102 0.9303782 0.1606827 +0.388193 0.9303782 0.1606827 +0.4303934 0.9303782 0.1606827 +0.4751555 0.9303782 0.1606827 +0.5225216 0.9303782 0.1606827 +0.5725335 0.9303782 0.1606827 +0.6252316 0.9303782 0.1606827 +0.6806558 0.9303782 0.1606827 +0.7388448 0.9303782 0.1606827 +0.7998369 0.9303782 0.1606827 +0.8636691 0.9303782 0.1606827 +0.9303782 0.9303782 0.1606827 +1 0.9303782 0.1606827 +0 1 0.1606827 +0.002418731 1 0.1606827 +0.005155668 1 0.1606827 +0.009080105 1 0.1606827 +0.01434988 1 0.1606827 +0.02107202 1 0.1606827 +0.02934285 1 0.1606827 +0.03925039 1 0.1606827 +0.05087609 1 0.1606827 +0.06429595 1 0.1606827 +0.07958143 1 0.1606827 +0.0968001 1 0.1606827 +0.1160161 1 0.1606827 +0.1372908 1 0.1606827 +0.1606827 1 0.1606827 +0.1862481 1 0.1606827 +0.2140411 1 0.1606827 +0.2441142 1 0.1606827 +0.2765176 1 0.1606827 +0.3113005 1 0.1606827 +0.3485102 1 0.1606827 +0.388193 1 0.1606827 +0.4303934 1 0.1606827 +0.4751555 1 0.1606827 +0.5225216 1 0.1606827 +0.5725335 1 0.1606827 +0.6252316 1 0.1606827 +0.6806558 1 0.1606827 +0.7388448 1 0.1606827 +0.7998369 1 0.1606827 +0.8636691 1 0.1606827 +0.9303782 1 0.1606827 +1 1 0.1606827 +0 0 0.1862481 +0.002418731 0 0.1862481 +0.005155668 0 0.1862481 +0.009080105 0 0.1862481 +0.01434988 0 0.1862481 +0.02107202 0 0.1862481 +0.02934285 0 0.1862481 +0.03925039 0 0.1862481 +0.05087609 0 0.1862481 +0.06429595 0 0.1862481 +0.07958143 0 0.1862481 +0.0968001 0 0.1862481 +0.1160161 0 0.1862481 +0.1372908 0 0.1862481 +0.1606827 0 0.1862481 +0.1862481 0 0.1862481 +0.2140411 0 0.1862481 +0.2441142 0 0.1862481 +0.2765176 0 0.1862481 +0.3113005 0 0.1862481 +0.3485102 0 0.1862481 +0.388193 0 0.1862481 +0.4303934 0 0.1862481 +0.4751555 0 0.1862481 +0.5225216 0 0.1862481 +0.5725335 0 0.1862481 +0.6252316 0 0.1862481 +0.6806558 0 0.1862481 +0.7388448 0 0.1862481 +0.7998369 0 0.1862481 +0.8636691 0 0.1862481 +0.9303782 0 0.1862481 +1 0 0.1862481 +0 0.002418731 0.1862481 +0.002418731 0.002418731 0.1862481 +0.005155668 0.002418731 0.1862481 +0.009080105 0.002418731 0.1862481 +0.01434988 0.002418731 0.1862481 +0.02107202 0.002418731 0.1862481 +0.02934285 0.002418731 0.1862481 +0.03925039 0.002418731 0.1862481 +0.05087609 0.002418731 0.1862481 +0.06429595 0.002418731 0.1862481 +0.07958143 0.002418731 0.1862481 +0.0968001 0.002418731 0.1862481 +0.1160161 0.002418731 0.1862481 +0.1372908 0.002418731 0.1862481 +0.1606827 0.002418731 0.1862481 +0.1862481 0.002418731 0.1862481 +0.2140411 0.002418731 0.1862481 +0.2441142 0.002418731 0.1862481 +0.2765176 0.002418731 0.1862481 +0.3113005 0.002418731 0.1862481 +0.3485102 0.002418731 0.1862481 +0.388193 0.002418731 0.1862481 +0.4303934 0.002418731 0.1862481 +0.4751555 0.002418731 0.1862481 +0.5225216 0.002418731 0.1862481 +0.5725335 0.002418731 0.1862481 +0.6252316 0.002418731 0.1862481 +0.6806558 0.002418731 0.1862481 +0.7388448 0.002418731 0.1862481 +0.7998369 0.002418731 0.1862481 +0.8636691 0.002418731 0.1862481 +0.9303782 0.002418731 0.1862481 +1 0.002418731 0.1862481 +0 0.005155668 0.1862481 +0.002418731 0.005155668 0.1862481 +0.005155668 0.005155668 0.1862481 +0.009080105 0.005155668 0.1862481 +0.01434988 0.005155668 0.1862481 +0.02107202 0.005155668 0.1862481 +0.02934285 0.005155668 0.1862481 +0.03925039 0.005155668 0.1862481 +0.05087609 0.005155668 0.1862481 +0.06429595 0.005155668 0.1862481 +0.07958143 0.005155668 0.1862481 +0.0968001 0.005155668 0.1862481 +0.1160161 0.005155668 0.1862481 +0.1372908 0.005155668 0.1862481 +0.1606827 0.005155668 0.1862481 +0.1862481 0.005155668 0.1862481 +0.2140411 0.005155668 0.1862481 +0.2441142 0.005155668 0.1862481 +0.2765176 0.005155668 0.1862481 +0.3113005 0.005155668 0.1862481 +0.3485102 0.005155668 0.1862481 +0.388193 0.005155668 0.1862481 +0.4303934 0.005155668 0.1862481 +0.4751555 0.005155668 0.1862481 +0.5225216 0.005155668 0.1862481 +0.5725335 0.005155668 0.1862481 +0.6252316 0.005155668 0.1862481 +0.6806558 0.005155668 0.1862481 +0.7388448 0.005155668 0.1862481 +0.7998369 0.005155668 0.1862481 +0.8636691 0.005155668 0.1862481 +0.9303782 0.005155668 0.1862481 +1 0.005155668 0.1862481 +0 0.009080105 0.1862481 +0.002418731 0.009080105 0.1862481 +0.005155668 0.009080105 0.1862481 +0.009080105 0.009080105 0.1862481 +0.01434988 0.009080105 0.1862481 +0.02107202 0.009080105 0.1862481 +0.02934285 0.009080105 0.1862481 +0.03925039 0.009080105 0.1862481 +0.05087609 0.009080105 0.1862481 +0.06429595 0.009080105 0.1862481 +0.07958143 0.009080105 0.1862481 +0.0968001 0.009080105 0.1862481 +0.1160161 0.009080105 0.1862481 +0.1372908 0.009080105 0.1862481 +0.1606827 0.009080105 0.1862481 +0.1862481 0.009080105 0.1862481 +0.2140411 0.009080105 0.1862481 +0.2441142 0.009080105 0.1862481 +0.2765176 0.009080105 0.1862481 +0.3113005 0.009080105 0.1862481 +0.3485102 0.009080105 0.1862481 +0.388193 0.009080105 0.1862481 +0.4303934 0.009080105 0.1862481 +0.4751555 0.009080105 0.1862481 +0.5225216 0.009080105 0.1862481 +0.5725335 0.009080105 0.1862481 +0.6252316 0.009080105 0.1862481 +0.6806558 0.009080105 0.1862481 +0.7388448 0.009080105 0.1862481 +0.7998369 0.009080105 0.1862481 +0.8636691 0.009080105 0.1862481 +0.9303782 0.009080105 0.1862481 +1 0.009080105 0.1862481 +0 0.01434988 0.1862481 +0.002418731 0.01434988 0.1862481 +0.005155668 0.01434988 0.1862481 +0.009080105 0.01434988 0.1862481 +0.01434988 0.01434988 0.1862481 +0.02107202 0.01434988 0.1862481 +0.02934285 0.01434988 0.1862481 +0.03925039 0.01434988 0.1862481 +0.05087609 0.01434988 0.1862481 +0.06429595 0.01434988 0.1862481 +0.07958143 0.01434988 0.1862481 +0.0968001 0.01434988 0.1862481 +0.1160161 0.01434988 0.1862481 +0.1372908 0.01434988 0.1862481 +0.1606827 0.01434988 0.1862481 +0.1862481 0.01434988 0.1862481 +0.2140411 0.01434988 0.1862481 +0.2441142 0.01434988 0.1862481 +0.2765176 0.01434988 0.1862481 +0.3113005 0.01434988 0.1862481 +0.3485102 0.01434988 0.1862481 +0.388193 0.01434988 0.1862481 +0.4303934 0.01434988 0.1862481 +0.4751555 0.01434988 0.1862481 +0.5225216 0.01434988 0.1862481 +0.5725335 0.01434988 0.1862481 +0.6252316 0.01434988 0.1862481 +0.6806558 0.01434988 0.1862481 +0.7388448 0.01434988 0.1862481 +0.7998369 0.01434988 0.1862481 +0.8636691 0.01434988 0.1862481 +0.9303782 0.01434988 0.1862481 +1 0.01434988 0.1862481 +0 0.02107202 0.1862481 +0.002418731 0.02107202 0.1862481 +0.005155668 0.02107202 0.1862481 +0.009080105 0.02107202 0.1862481 +0.01434988 0.02107202 0.1862481 +0.02107202 0.02107202 0.1862481 +0.02934285 0.02107202 0.1862481 +0.03925039 0.02107202 0.1862481 +0.05087609 0.02107202 0.1862481 +0.06429595 0.02107202 0.1862481 +0.07958143 0.02107202 0.1862481 +0.0968001 0.02107202 0.1862481 +0.1160161 0.02107202 0.1862481 +0.1372908 0.02107202 0.1862481 +0.1606827 0.02107202 0.1862481 +0.1862481 0.02107202 0.1862481 +0.2140411 0.02107202 0.1862481 +0.2441142 0.02107202 0.1862481 +0.2765176 0.02107202 0.1862481 +0.3113005 0.02107202 0.1862481 +0.3485102 0.02107202 0.1862481 +0.388193 0.02107202 0.1862481 +0.4303934 0.02107202 0.1862481 +0.4751555 0.02107202 0.1862481 +0.5225216 0.02107202 0.1862481 +0.5725335 0.02107202 0.1862481 +0.6252316 0.02107202 0.1862481 +0.6806558 0.02107202 0.1862481 +0.7388448 0.02107202 0.1862481 +0.7998369 0.02107202 0.1862481 +0.8636691 0.02107202 0.1862481 +0.9303782 0.02107202 0.1862481 +1 0.02107202 0.1862481 +0 0.02934285 0.1862481 +0.002418731 0.02934285 0.1862481 +0.005155668 0.02934285 0.1862481 +0.009080105 0.02934285 0.1862481 +0.01434988 0.02934285 0.1862481 +0.02107202 0.02934285 0.1862481 +0.02934285 0.02934285 0.1862481 +0.03925039 0.02934285 0.1862481 +0.05087609 0.02934285 0.1862481 +0.06429595 0.02934285 0.1862481 +0.07958143 0.02934285 0.1862481 +0.0968001 0.02934285 0.1862481 +0.1160161 0.02934285 0.1862481 +0.1372908 0.02934285 0.1862481 +0.1606827 0.02934285 0.1862481 +0.1862481 0.02934285 0.1862481 +0.2140411 0.02934285 0.1862481 +0.2441142 0.02934285 0.1862481 +0.2765176 0.02934285 0.1862481 +0.3113005 0.02934285 0.1862481 +0.3485102 0.02934285 0.1862481 +0.388193 0.02934285 0.1862481 +0.4303934 0.02934285 0.1862481 +0.4751555 0.02934285 0.1862481 +0.5225216 0.02934285 0.1862481 +0.5725335 0.02934285 0.1862481 +0.6252316 0.02934285 0.1862481 +0.6806558 0.02934285 0.1862481 +0.7388448 0.02934285 0.1862481 +0.7998369 0.02934285 0.1862481 +0.8636691 0.02934285 0.1862481 +0.9303782 0.02934285 0.1862481 +1 0.02934285 0.1862481 +0 0.03925039 0.1862481 +0.002418731 0.03925039 0.1862481 +0.005155668 0.03925039 0.1862481 +0.009080105 0.03925039 0.1862481 +0.01434988 0.03925039 0.1862481 +0.02107202 0.03925039 0.1862481 +0.02934285 0.03925039 0.1862481 +0.03925039 0.03925039 0.1862481 +0.05087609 0.03925039 0.1862481 +0.06429595 0.03925039 0.1862481 +0.07958143 0.03925039 0.1862481 +0.0968001 0.03925039 0.1862481 +0.1160161 0.03925039 0.1862481 +0.1372908 0.03925039 0.1862481 +0.1606827 0.03925039 0.1862481 +0.1862481 0.03925039 0.1862481 +0.2140411 0.03925039 0.1862481 +0.2441142 0.03925039 0.1862481 +0.2765176 0.03925039 0.1862481 +0.3113005 0.03925039 0.1862481 +0.3485102 0.03925039 0.1862481 +0.388193 0.03925039 0.1862481 +0.4303934 0.03925039 0.1862481 +0.4751555 0.03925039 0.1862481 +0.5225216 0.03925039 0.1862481 +0.5725335 0.03925039 0.1862481 +0.6252316 0.03925039 0.1862481 +0.6806558 0.03925039 0.1862481 +0.7388448 0.03925039 0.1862481 +0.7998369 0.03925039 0.1862481 +0.8636691 0.03925039 0.1862481 +0.9303782 0.03925039 0.1862481 +1 0.03925039 0.1862481 +0 0.05087609 0.1862481 +0.002418731 0.05087609 0.1862481 +0.005155668 0.05087609 0.1862481 +0.009080105 0.05087609 0.1862481 +0.01434988 0.05087609 0.1862481 +0.02107202 0.05087609 0.1862481 +0.02934285 0.05087609 0.1862481 +0.03925039 0.05087609 0.1862481 +0.05087609 0.05087609 0.1862481 +0.06429595 0.05087609 0.1862481 +0.07958143 0.05087609 0.1862481 +0.0968001 0.05087609 0.1862481 +0.1160161 0.05087609 0.1862481 +0.1372908 0.05087609 0.1862481 +0.1606827 0.05087609 0.1862481 +0.1862481 0.05087609 0.1862481 +0.2140411 0.05087609 0.1862481 +0.2441142 0.05087609 0.1862481 +0.2765176 0.05087609 0.1862481 +0.3113005 0.05087609 0.1862481 +0.3485102 0.05087609 0.1862481 +0.388193 0.05087609 0.1862481 +0.4303934 0.05087609 0.1862481 +0.4751555 0.05087609 0.1862481 +0.5225216 0.05087609 0.1862481 +0.5725335 0.05087609 0.1862481 +0.6252316 0.05087609 0.1862481 +0.6806558 0.05087609 0.1862481 +0.7388448 0.05087609 0.1862481 +0.7998369 0.05087609 0.1862481 +0.8636691 0.05087609 0.1862481 +0.9303782 0.05087609 0.1862481 +1 0.05087609 0.1862481 +0 0.06429595 0.1862481 +0.002418731 0.06429595 0.1862481 +0.005155668 0.06429595 0.1862481 +0.009080105 0.06429595 0.1862481 +0.01434988 0.06429595 0.1862481 +0.02107202 0.06429595 0.1862481 +0.02934285 0.06429595 0.1862481 +0.03925039 0.06429595 0.1862481 +0.05087609 0.06429595 0.1862481 +0.06429595 0.06429595 0.1862481 +0.07958143 0.06429595 0.1862481 +0.0968001 0.06429595 0.1862481 +0.1160161 0.06429595 0.1862481 +0.1372908 0.06429595 0.1862481 +0.1606827 0.06429595 0.1862481 +0.1862481 0.06429595 0.1862481 +0.2140411 0.06429595 0.1862481 +0.2441142 0.06429595 0.1862481 +0.2765176 0.06429595 0.1862481 +0.3113005 0.06429595 0.1862481 +0.3485102 0.06429595 0.1862481 +0.388193 0.06429595 0.1862481 +0.4303934 0.06429595 0.1862481 +0.4751555 0.06429595 0.1862481 +0.5225216 0.06429595 0.1862481 +0.5725335 0.06429595 0.1862481 +0.6252316 0.06429595 0.1862481 +0.6806558 0.06429595 0.1862481 +0.7388448 0.06429595 0.1862481 +0.7998369 0.06429595 0.1862481 +0.8636691 0.06429595 0.1862481 +0.9303782 0.06429595 0.1862481 +1 0.06429595 0.1862481 +0 0.07958143 0.1862481 +0.002418731 0.07958143 0.1862481 +0.005155668 0.07958143 0.1862481 +0.009080105 0.07958143 0.1862481 +0.01434988 0.07958143 0.1862481 +0.02107202 0.07958143 0.1862481 +0.02934285 0.07958143 0.1862481 +0.03925039 0.07958143 0.1862481 +0.05087609 0.07958143 0.1862481 +0.06429595 0.07958143 0.1862481 +0.07958143 0.07958143 0.1862481 +0.0968001 0.07958143 0.1862481 +0.1160161 0.07958143 0.1862481 +0.1372908 0.07958143 0.1862481 +0.1606827 0.07958143 0.1862481 +0.1862481 0.07958143 0.1862481 +0.2140411 0.07958143 0.1862481 +0.2441142 0.07958143 0.1862481 +0.2765176 0.07958143 0.1862481 +0.3113005 0.07958143 0.1862481 +0.3485102 0.07958143 0.1862481 +0.388193 0.07958143 0.1862481 +0.4303934 0.07958143 0.1862481 +0.4751555 0.07958143 0.1862481 +0.5225216 0.07958143 0.1862481 +0.5725335 0.07958143 0.1862481 +0.6252316 0.07958143 0.1862481 +0.6806558 0.07958143 0.1862481 +0.7388448 0.07958143 0.1862481 +0.7998369 0.07958143 0.1862481 +0.8636691 0.07958143 0.1862481 +0.9303782 0.07958143 0.1862481 +1 0.07958143 0.1862481 +0 0.0968001 0.1862481 +0.002418731 0.0968001 0.1862481 +0.005155668 0.0968001 0.1862481 +0.009080105 0.0968001 0.1862481 +0.01434988 0.0968001 0.1862481 +0.02107202 0.0968001 0.1862481 +0.02934285 0.0968001 0.1862481 +0.03925039 0.0968001 0.1862481 +0.05087609 0.0968001 0.1862481 +0.06429595 0.0968001 0.1862481 +0.07958143 0.0968001 0.1862481 +0.0968001 0.0968001 0.1862481 +0.1160161 0.0968001 0.1862481 +0.1372908 0.0968001 0.1862481 +0.1606827 0.0968001 0.1862481 +0.1862481 0.0968001 0.1862481 +0.2140411 0.0968001 0.1862481 +0.2441142 0.0968001 0.1862481 +0.2765176 0.0968001 0.1862481 +0.3113005 0.0968001 0.1862481 +0.3485102 0.0968001 0.1862481 +0.388193 0.0968001 0.1862481 +0.4303934 0.0968001 0.1862481 +0.4751555 0.0968001 0.1862481 +0.5225216 0.0968001 0.1862481 +0.5725335 0.0968001 0.1862481 +0.6252316 0.0968001 0.1862481 +0.6806558 0.0968001 0.1862481 +0.7388448 0.0968001 0.1862481 +0.7998369 0.0968001 0.1862481 +0.8636691 0.0968001 0.1862481 +0.9303782 0.0968001 0.1862481 +1 0.0968001 0.1862481 +0 0.1160161 0.1862481 +0.002418731 0.1160161 0.1862481 +0.005155668 0.1160161 0.1862481 +0.009080105 0.1160161 0.1862481 +0.01434988 0.1160161 0.1862481 +0.02107202 0.1160161 0.1862481 +0.02934285 0.1160161 0.1862481 +0.03925039 0.1160161 0.1862481 +0.05087609 0.1160161 0.1862481 +0.06429595 0.1160161 0.1862481 +0.07958143 0.1160161 0.1862481 +0.0968001 0.1160161 0.1862481 +0.1160161 0.1160161 0.1862481 +0.1372908 0.1160161 0.1862481 +0.1606827 0.1160161 0.1862481 +0.1862481 0.1160161 0.1862481 +0.2140411 0.1160161 0.1862481 +0.2441142 0.1160161 0.1862481 +0.2765176 0.1160161 0.1862481 +0.3113005 0.1160161 0.1862481 +0.3485102 0.1160161 0.1862481 +0.388193 0.1160161 0.1862481 +0.4303934 0.1160161 0.1862481 +0.4751555 0.1160161 0.1862481 +0.5225216 0.1160161 0.1862481 +0.5725335 0.1160161 0.1862481 +0.6252316 0.1160161 0.1862481 +0.6806558 0.1160161 0.1862481 +0.7388448 0.1160161 0.1862481 +0.7998369 0.1160161 0.1862481 +0.8636691 0.1160161 0.1862481 +0.9303782 0.1160161 0.1862481 +1 0.1160161 0.1862481 +0 0.1372908 0.1862481 +0.002418731 0.1372908 0.1862481 +0.005155668 0.1372908 0.1862481 +0.009080105 0.1372908 0.1862481 +0.01434988 0.1372908 0.1862481 +0.02107202 0.1372908 0.1862481 +0.02934285 0.1372908 0.1862481 +0.03925039 0.1372908 0.1862481 +0.05087609 0.1372908 0.1862481 +0.06429595 0.1372908 0.1862481 +0.07958143 0.1372908 0.1862481 +0.0968001 0.1372908 0.1862481 +0.1160161 0.1372908 0.1862481 +0.1372908 0.1372908 0.1862481 +0.1606827 0.1372908 0.1862481 +0.1862481 0.1372908 0.1862481 +0.2140411 0.1372908 0.1862481 +0.2441142 0.1372908 0.1862481 +0.2765176 0.1372908 0.1862481 +0.3113005 0.1372908 0.1862481 +0.3485102 0.1372908 0.1862481 +0.388193 0.1372908 0.1862481 +0.4303934 0.1372908 0.1862481 +0.4751555 0.1372908 0.1862481 +0.5225216 0.1372908 0.1862481 +0.5725335 0.1372908 0.1862481 +0.6252316 0.1372908 0.1862481 +0.6806558 0.1372908 0.1862481 +0.7388448 0.1372908 0.1862481 +0.7998369 0.1372908 0.1862481 +0.8636691 0.1372908 0.1862481 +0.9303782 0.1372908 0.1862481 +1 0.1372908 0.1862481 +0 0.1606827 0.1862481 +0.002418731 0.1606827 0.1862481 +0.005155668 0.1606827 0.1862481 +0.009080105 0.1606827 0.1862481 +0.01434988 0.1606827 0.1862481 +0.02107202 0.1606827 0.1862481 +0.02934285 0.1606827 0.1862481 +0.03925039 0.1606827 0.1862481 +0.05087609 0.1606827 0.1862481 +0.06429595 0.1606827 0.1862481 +0.07958143 0.1606827 0.1862481 +0.0968001 0.1606827 0.1862481 +0.1160161 0.1606827 0.1862481 +0.1372908 0.1606827 0.1862481 +0.1606827 0.1606827 0.1862481 +0.1862481 0.1606827 0.1862481 +0.2140411 0.1606827 0.1862481 +0.2441142 0.1606827 0.1862481 +0.2765176 0.1606827 0.1862481 +0.3113005 0.1606827 0.1862481 +0.3485102 0.1606827 0.1862481 +0.388193 0.1606827 0.1862481 +0.4303934 0.1606827 0.1862481 +0.4751555 0.1606827 0.1862481 +0.5225216 0.1606827 0.1862481 +0.5725335 0.1606827 0.1862481 +0.6252316 0.1606827 0.1862481 +0.6806558 0.1606827 0.1862481 +0.7388448 0.1606827 0.1862481 +0.7998369 0.1606827 0.1862481 +0.8636691 0.1606827 0.1862481 +0.9303782 0.1606827 0.1862481 +1 0.1606827 0.1862481 +0 0.1862481 0.1862481 +0.002418731 0.1862481 0.1862481 +0.005155668 0.1862481 0.1862481 +0.009080105 0.1862481 0.1862481 +0.01434988 0.1862481 0.1862481 +0.02107202 0.1862481 0.1862481 +0.02934285 0.1862481 0.1862481 +0.03925039 0.1862481 0.1862481 +0.05087609 0.1862481 0.1862481 +0.06429595 0.1862481 0.1862481 +0.07958143 0.1862481 0.1862481 +0.0968001 0.1862481 0.1862481 +0.1160161 0.1862481 0.1862481 +0.1372908 0.1862481 0.1862481 +0.1606827 0.1862481 0.1862481 +0.1862481 0.1862481 0.1862481 +0.2140411 0.1862481 0.1862481 +0.2441142 0.1862481 0.1862481 +0.2765176 0.1862481 0.1862481 +0.3113005 0.1862481 0.1862481 +0.3485102 0.1862481 0.1862481 +0.388193 0.1862481 0.1862481 +0.4303934 0.1862481 0.1862481 +0.4751555 0.1862481 0.1862481 +0.5225216 0.1862481 0.1862481 +0.5725335 0.1862481 0.1862481 +0.6252316 0.1862481 0.1862481 +0.6806558 0.1862481 0.1862481 +0.7388448 0.1862481 0.1862481 +0.7998369 0.1862481 0.1862481 +0.8636691 0.1862481 0.1862481 +0.9303782 0.1862481 0.1862481 +1 0.1862481 0.1862481 +0 0.2140411 0.1862481 +0.002418731 0.2140411 0.1862481 +0.005155668 0.2140411 0.1862481 +0.009080105 0.2140411 0.1862481 +0.01434988 0.2140411 0.1862481 +0.02107202 0.2140411 0.1862481 +0.02934285 0.2140411 0.1862481 +0.03925039 0.2140411 0.1862481 +0.05087609 0.2140411 0.1862481 +0.06429595 0.2140411 0.1862481 +0.07958143 0.2140411 0.1862481 +0.0968001 0.2140411 0.1862481 +0.1160161 0.2140411 0.1862481 +0.1372908 0.2140411 0.1862481 +0.1606827 0.2140411 0.1862481 +0.1862481 0.2140411 0.1862481 +0.2140411 0.2140411 0.1862481 +0.2441142 0.2140411 0.1862481 +0.2765176 0.2140411 0.1862481 +0.3113005 0.2140411 0.1862481 +0.3485102 0.2140411 0.1862481 +0.388193 0.2140411 0.1862481 +0.4303934 0.2140411 0.1862481 +0.4751555 0.2140411 0.1862481 +0.5225216 0.2140411 0.1862481 +0.5725335 0.2140411 0.1862481 +0.6252316 0.2140411 0.1862481 +0.6806558 0.2140411 0.1862481 +0.7388448 0.2140411 0.1862481 +0.7998369 0.2140411 0.1862481 +0.8636691 0.2140411 0.1862481 +0.9303782 0.2140411 0.1862481 +1 0.2140411 0.1862481 +0 0.2441142 0.1862481 +0.002418731 0.2441142 0.1862481 +0.005155668 0.2441142 0.1862481 +0.009080105 0.2441142 0.1862481 +0.01434988 0.2441142 0.1862481 +0.02107202 0.2441142 0.1862481 +0.02934285 0.2441142 0.1862481 +0.03925039 0.2441142 0.1862481 +0.05087609 0.2441142 0.1862481 +0.06429595 0.2441142 0.1862481 +0.07958143 0.2441142 0.1862481 +0.0968001 0.2441142 0.1862481 +0.1160161 0.2441142 0.1862481 +0.1372908 0.2441142 0.1862481 +0.1606827 0.2441142 0.1862481 +0.1862481 0.2441142 0.1862481 +0.2140411 0.2441142 0.1862481 +0.2441142 0.2441142 0.1862481 +0.2765176 0.2441142 0.1862481 +0.3113005 0.2441142 0.1862481 +0.3485102 0.2441142 0.1862481 +0.388193 0.2441142 0.1862481 +0.4303934 0.2441142 0.1862481 +0.4751555 0.2441142 0.1862481 +0.5225216 0.2441142 0.1862481 +0.5725335 0.2441142 0.1862481 +0.6252316 0.2441142 0.1862481 +0.6806558 0.2441142 0.1862481 +0.7388448 0.2441142 0.1862481 +0.7998369 0.2441142 0.1862481 +0.8636691 0.2441142 0.1862481 +0.9303782 0.2441142 0.1862481 +1 0.2441142 0.1862481 +0 0.2765176 0.1862481 +0.002418731 0.2765176 0.1862481 +0.005155668 0.2765176 0.1862481 +0.009080105 0.2765176 0.1862481 +0.01434988 0.2765176 0.1862481 +0.02107202 0.2765176 0.1862481 +0.02934285 0.2765176 0.1862481 +0.03925039 0.2765176 0.1862481 +0.05087609 0.2765176 0.1862481 +0.06429595 0.2765176 0.1862481 +0.07958143 0.2765176 0.1862481 +0.0968001 0.2765176 0.1862481 +0.1160161 0.2765176 0.1862481 +0.1372908 0.2765176 0.1862481 +0.1606827 0.2765176 0.1862481 +0.1862481 0.2765176 0.1862481 +0.2140411 0.2765176 0.1862481 +0.2441142 0.2765176 0.1862481 +0.2765176 0.2765176 0.1862481 +0.3113005 0.2765176 0.1862481 +0.3485102 0.2765176 0.1862481 +0.388193 0.2765176 0.1862481 +0.4303934 0.2765176 0.1862481 +0.4751555 0.2765176 0.1862481 +0.5225216 0.2765176 0.1862481 +0.5725335 0.2765176 0.1862481 +0.6252316 0.2765176 0.1862481 +0.6806558 0.2765176 0.1862481 +0.7388448 0.2765176 0.1862481 +0.7998369 0.2765176 0.1862481 +0.8636691 0.2765176 0.1862481 +0.9303782 0.2765176 0.1862481 +1 0.2765176 0.1862481 +0 0.3113005 0.1862481 +0.002418731 0.3113005 0.1862481 +0.005155668 0.3113005 0.1862481 +0.009080105 0.3113005 0.1862481 +0.01434988 0.3113005 0.1862481 +0.02107202 0.3113005 0.1862481 +0.02934285 0.3113005 0.1862481 +0.03925039 0.3113005 0.1862481 +0.05087609 0.3113005 0.1862481 +0.06429595 0.3113005 0.1862481 +0.07958143 0.3113005 0.1862481 +0.0968001 0.3113005 0.1862481 +0.1160161 0.3113005 0.1862481 +0.1372908 0.3113005 0.1862481 +0.1606827 0.3113005 0.1862481 +0.1862481 0.3113005 0.1862481 +0.2140411 0.3113005 0.1862481 +0.2441142 0.3113005 0.1862481 +0.2765176 0.3113005 0.1862481 +0.3113005 0.3113005 0.1862481 +0.3485102 0.3113005 0.1862481 +0.388193 0.3113005 0.1862481 +0.4303934 0.3113005 0.1862481 +0.4751555 0.3113005 0.1862481 +0.5225216 0.3113005 0.1862481 +0.5725335 0.3113005 0.1862481 +0.6252316 0.3113005 0.1862481 +0.6806558 0.3113005 0.1862481 +0.7388448 0.3113005 0.1862481 +0.7998369 0.3113005 0.1862481 +0.8636691 0.3113005 0.1862481 +0.9303782 0.3113005 0.1862481 +1 0.3113005 0.1862481 +0 0.3485102 0.1862481 +0.002418731 0.3485102 0.1862481 +0.005155668 0.3485102 0.1862481 +0.009080105 0.3485102 0.1862481 +0.01434988 0.3485102 0.1862481 +0.02107202 0.3485102 0.1862481 +0.02934285 0.3485102 0.1862481 +0.03925039 0.3485102 0.1862481 +0.05087609 0.3485102 0.1862481 +0.06429595 0.3485102 0.1862481 +0.07958143 0.3485102 0.1862481 +0.0968001 0.3485102 0.1862481 +0.1160161 0.3485102 0.1862481 +0.1372908 0.3485102 0.1862481 +0.1606827 0.3485102 0.1862481 +0.1862481 0.3485102 0.1862481 +0.2140411 0.3485102 0.1862481 +0.2441142 0.3485102 0.1862481 +0.2765176 0.3485102 0.1862481 +0.3113005 0.3485102 0.1862481 +0.3485102 0.3485102 0.1862481 +0.388193 0.3485102 0.1862481 +0.4303934 0.3485102 0.1862481 +0.4751555 0.3485102 0.1862481 +0.5225216 0.3485102 0.1862481 +0.5725335 0.3485102 0.1862481 +0.6252316 0.3485102 0.1862481 +0.6806558 0.3485102 0.1862481 +0.7388448 0.3485102 0.1862481 +0.7998369 0.3485102 0.1862481 +0.8636691 0.3485102 0.1862481 +0.9303782 0.3485102 0.1862481 +1 0.3485102 0.1862481 +0 0.388193 0.1862481 +0.002418731 0.388193 0.1862481 +0.005155668 0.388193 0.1862481 +0.009080105 0.388193 0.1862481 +0.01434988 0.388193 0.1862481 +0.02107202 0.388193 0.1862481 +0.02934285 0.388193 0.1862481 +0.03925039 0.388193 0.1862481 +0.05087609 0.388193 0.1862481 +0.06429595 0.388193 0.1862481 +0.07958143 0.388193 0.1862481 +0.0968001 0.388193 0.1862481 +0.1160161 0.388193 0.1862481 +0.1372908 0.388193 0.1862481 +0.1606827 0.388193 0.1862481 +0.1862481 0.388193 0.1862481 +0.2140411 0.388193 0.1862481 +0.2441142 0.388193 0.1862481 +0.2765176 0.388193 0.1862481 +0.3113005 0.388193 0.1862481 +0.3485102 0.388193 0.1862481 +0.388193 0.388193 0.1862481 +0.4303934 0.388193 0.1862481 +0.4751555 0.388193 0.1862481 +0.5225216 0.388193 0.1862481 +0.5725335 0.388193 0.1862481 +0.6252316 0.388193 0.1862481 +0.6806558 0.388193 0.1862481 +0.7388448 0.388193 0.1862481 +0.7998369 0.388193 0.1862481 +0.8636691 0.388193 0.1862481 +0.9303782 0.388193 0.1862481 +1 0.388193 0.1862481 +0 0.4303934 0.1862481 +0.002418731 0.4303934 0.1862481 +0.005155668 0.4303934 0.1862481 +0.009080105 0.4303934 0.1862481 +0.01434988 0.4303934 0.1862481 +0.02107202 0.4303934 0.1862481 +0.02934285 0.4303934 0.1862481 +0.03925039 0.4303934 0.1862481 +0.05087609 0.4303934 0.1862481 +0.06429595 0.4303934 0.1862481 +0.07958143 0.4303934 0.1862481 +0.0968001 0.4303934 0.1862481 +0.1160161 0.4303934 0.1862481 +0.1372908 0.4303934 0.1862481 +0.1606827 0.4303934 0.1862481 +0.1862481 0.4303934 0.1862481 +0.2140411 0.4303934 0.1862481 +0.2441142 0.4303934 0.1862481 +0.2765176 0.4303934 0.1862481 +0.3113005 0.4303934 0.1862481 +0.3485102 0.4303934 0.1862481 +0.388193 0.4303934 0.1862481 +0.4303934 0.4303934 0.1862481 +0.4751555 0.4303934 0.1862481 +0.5225216 0.4303934 0.1862481 +0.5725335 0.4303934 0.1862481 +0.6252316 0.4303934 0.1862481 +0.6806558 0.4303934 0.1862481 +0.7388448 0.4303934 0.1862481 +0.7998369 0.4303934 0.1862481 +0.8636691 0.4303934 0.1862481 +0.9303782 0.4303934 0.1862481 +1 0.4303934 0.1862481 +0 0.4751555 0.1862481 +0.002418731 0.4751555 0.1862481 +0.005155668 0.4751555 0.1862481 +0.009080105 0.4751555 0.1862481 +0.01434988 0.4751555 0.1862481 +0.02107202 0.4751555 0.1862481 +0.02934285 0.4751555 0.1862481 +0.03925039 0.4751555 0.1862481 +0.05087609 0.4751555 0.1862481 +0.06429595 0.4751555 0.1862481 +0.07958143 0.4751555 0.1862481 +0.0968001 0.4751555 0.1862481 +0.1160161 0.4751555 0.1862481 +0.1372908 0.4751555 0.1862481 +0.1606827 0.4751555 0.1862481 +0.1862481 0.4751555 0.1862481 +0.2140411 0.4751555 0.1862481 +0.2441142 0.4751555 0.1862481 +0.2765176 0.4751555 0.1862481 +0.3113005 0.4751555 0.1862481 +0.3485102 0.4751555 0.1862481 +0.388193 0.4751555 0.1862481 +0.4303934 0.4751555 0.1862481 +0.4751555 0.4751555 0.1862481 +0.5225216 0.4751555 0.1862481 +0.5725335 0.4751555 0.1862481 +0.6252316 0.4751555 0.1862481 +0.6806558 0.4751555 0.1862481 +0.7388448 0.4751555 0.1862481 +0.7998369 0.4751555 0.1862481 +0.8636691 0.4751555 0.1862481 +0.9303782 0.4751555 0.1862481 +1 0.4751555 0.1862481 +0 0.5225216 0.1862481 +0.002418731 0.5225216 0.1862481 +0.005155668 0.5225216 0.1862481 +0.009080105 0.5225216 0.1862481 +0.01434988 0.5225216 0.1862481 +0.02107202 0.5225216 0.1862481 +0.02934285 0.5225216 0.1862481 +0.03925039 0.5225216 0.1862481 +0.05087609 0.5225216 0.1862481 +0.06429595 0.5225216 0.1862481 +0.07958143 0.5225216 0.1862481 +0.0968001 0.5225216 0.1862481 +0.1160161 0.5225216 0.1862481 +0.1372908 0.5225216 0.1862481 +0.1606827 0.5225216 0.1862481 +0.1862481 0.5225216 0.1862481 +0.2140411 0.5225216 0.1862481 +0.2441142 0.5225216 0.1862481 +0.2765176 0.5225216 0.1862481 +0.3113005 0.5225216 0.1862481 +0.3485102 0.5225216 0.1862481 +0.388193 0.5225216 0.1862481 +0.4303934 0.5225216 0.1862481 +0.4751555 0.5225216 0.1862481 +0.5225216 0.5225216 0.1862481 +0.5725335 0.5225216 0.1862481 +0.6252316 0.5225216 0.1862481 +0.6806558 0.5225216 0.1862481 +0.7388448 0.5225216 0.1862481 +0.7998369 0.5225216 0.1862481 +0.8636691 0.5225216 0.1862481 +0.9303782 0.5225216 0.1862481 +1 0.5225216 0.1862481 +0 0.5725335 0.1862481 +0.002418731 0.5725335 0.1862481 +0.005155668 0.5725335 0.1862481 +0.009080105 0.5725335 0.1862481 +0.01434988 0.5725335 0.1862481 +0.02107202 0.5725335 0.1862481 +0.02934285 0.5725335 0.1862481 +0.03925039 0.5725335 0.1862481 +0.05087609 0.5725335 0.1862481 +0.06429595 0.5725335 0.1862481 +0.07958143 0.5725335 0.1862481 +0.0968001 0.5725335 0.1862481 +0.1160161 0.5725335 0.1862481 +0.1372908 0.5725335 0.1862481 +0.1606827 0.5725335 0.1862481 +0.1862481 0.5725335 0.1862481 +0.2140411 0.5725335 0.1862481 +0.2441142 0.5725335 0.1862481 +0.2765176 0.5725335 0.1862481 +0.3113005 0.5725335 0.1862481 +0.3485102 0.5725335 0.1862481 +0.388193 0.5725335 0.1862481 +0.4303934 0.5725335 0.1862481 +0.4751555 0.5725335 0.1862481 +0.5225216 0.5725335 0.1862481 +0.5725335 0.5725335 0.1862481 +0.6252316 0.5725335 0.1862481 +0.6806558 0.5725335 0.1862481 +0.7388448 0.5725335 0.1862481 +0.7998369 0.5725335 0.1862481 +0.8636691 0.5725335 0.1862481 +0.9303782 0.5725335 0.1862481 +1 0.5725335 0.1862481 +0 0.6252316 0.1862481 +0.002418731 0.6252316 0.1862481 +0.005155668 0.6252316 0.1862481 +0.009080105 0.6252316 0.1862481 +0.01434988 0.6252316 0.1862481 +0.02107202 0.6252316 0.1862481 +0.02934285 0.6252316 0.1862481 +0.03925039 0.6252316 0.1862481 +0.05087609 0.6252316 0.1862481 +0.06429595 0.6252316 0.1862481 +0.07958143 0.6252316 0.1862481 +0.0968001 0.6252316 0.1862481 +0.1160161 0.6252316 0.1862481 +0.1372908 0.6252316 0.1862481 +0.1606827 0.6252316 0.1862481 +0.1862481 0.6252316 0.1862481 +0.2140411 0.6252316 0.1862481 +0.2441142 0.6252316 0.1862481 +0.2765176 0.6252316 0.1862481 +0.3113005 0.6252316 0.1862481 +0.3485102 0.6252316 0.1862481 +0.388193 0.6252316 0.1862481 +0.4303934 0.6252316 0.1862481 +0.4751555 0.6252316 0.1862481 +0.5225216 0.6252316 0.1862481 +0.5725335 0.6252316 0.1862481 +0.6252316 0.6252316 0.1862481 +0.6806558 0.6252316 0.1862481 +0.7388448 0.6252316 0.1862481 +0.7998369 0.6252316 0.1862481 +0.8636691 0.6252316 0.1862481 +0.9303782 0.6252316 0.1862481 +1 0.6252316 0.1862481 +0 0.6806558 0.1862481 +0.002418731 0.6806558 0.1862481 +0.005155668 0.6806558 0.1862481 +0.009080105 0.6806558 0.1862481 +0.01434988 0.6806558 0.1862481 +0.02107202 0.6806558 0.1862481 +0.02934285 0.6806558 0.1862481 +0.03925039 0.6806558 0.1862481 +0.05087609 0.6806558 0.1862481 +0.06429595 0.6806558 0.1862481 +0.07958143 0.6806558 0.1862481 +0.0968001 0.6806558 0.1862481 +0.1160161 0.6806558 0.1862481 +0.1372908 0.6806558 0.1862481 +0.1606827 0.6806558 0.1862481 +0.1862481 0.6806558 0.1862481 +0.2140411 0.6806558 0.1862481 +0.2441142 0.6806558 0.1862481 +0.2765176 0.6806558 0.1862481 +0.3113005 0.6806558 0.1862481 +0.3485102 0.6806558 0.1862481 +0.388193 0.6806558 0.1862481 +0.4303934 0.6806558 0.1862481 +0.4751555 0.6806558 0.1862481 +0.5225216 0.6806558 0.1862481 +0.5725335 0.6806558 0.1862481 +0.6252316 0.6806558 0.1862481 +0.6806558 0.6806558 0.1862481 +0.7388448 0.6806558 0.1862481 +0.7998369 0.6806558 0.1862481 +0.8636691 0.6806558 0.1862481 +0.9303782 0.6806558 0.1862481 +1 0.6806558 0.1862481 +0 0.7388448 0.1862481 +0.002418731 0.7388448 0.1862481 +0.005155668 0.7388448 0.1862481 +0.009080105 0.7388448 0.1862481 +0.01434988 0.7388448 0.1862481 +0.02107202 0.7388448 0.1862481 +0.02934285 0.7388448 0.1862481 +0.03925039 0.7388448 0.1862481 +0.05087609 0.7388448 0.1862481 +0.06429595 0.7388448 0.1862481 +0.07958143 0.7388448 0.1862481 +0.0968001 0.7388448 0.1862481 +0.1160161 0.7388448 0.1862481 +0.1372908 0.7388448 0.1862481 +0.1606827 0.7388448 0.1862481 +0.1862481 0.7388448 0.1862481 +0.2140411 0.7388448 0.1862481 +0.2441142 0.7388448 0.1862481 +0.2765176 0.7388448 0.1862481 +0.3113005 0.7388448 0.1862481 +0.3485102 0.7388448 0.1862481 +0.388193 0.7388448 0.1862481 +0.4303934 0.7388448 0.1862481 +0.4751555 0.7388448 0.1862481 +0.5225216 0.7388448 0.1862481 +0.5725335 0.7388448 0.1862481 +0.6252316 0.7388448 0.1862481 +0.6806558 0.7388448 0.1862481 +0.7388448 0.7388448 0.1862481 +0.7998369 0.7388448 0.1862481 +0.8636691 0.7388448 0.1862481 +0.9303782 0.7388448 0.1862481 +1 0.7388448 0.1862481 +0 0.7998369 0.1862481 +0.002418731 0.7998369 0.1862481 +0.005155668 0.7998369 0.1862481 +0.009080105 0.7998369 0.1862481 +0.01434988 0.7998369 0.1862481 +0.02107202 0.7998369 0.1862481 +0.02934285 0.7998369 0.1862481 +0.03925039 0.7998369 0.1862481 +0.05087609 0.7998369 0.1862481 +0.06429595 0.7998369 0.1862481 +0.07958143 0.7998369 0.1862481 +0.0968001 0.7998369 0.1862481 +0.1160161 0.7998369 0.1862481 +0.1372908 0.7998369 0.1862481 +0.1606827 0.7998369 0.1862481 +0.1862481 0.7998369 0.1862481 +0.2140411 0.7998369 0.1862481 +0.2441142 0.7998369 0.1862481 +0.2765176 0.7998369 0.1862481 +0.3113005 0.7998369 0.1862481 +0.3485102 0.7998369 0.1862481 +0.388193 0.7998369 0.1862481 +0.4303934 0.7998369 0.1862481 +0.4751555 0.7998369 0.1862481 +0.5225216 0.7998369 0.1862481 +0.5725335 0.7998369 0.1862481 +0.6252316 0.7998369 0.1862481 +0.6806558 0.7998369 0.1862481 +0.7388448 0.7998369 0.1862481 +0.7998369 0.7998369 0.1862481 +0.8636691 0.7998369 0.1862481 +0.9303782 0.7998369 0.1862481 +1 0.7998369 0.1862481 +0 0.8636691 0.1862481 +0.002418731 0.8636691 0.1862481 +0.005155668 0.8636691 0.1862481 +0.009080105 0.8636691 0.1862481 +0.01434988 0.8636691 0.1862481 +0.02107202 0.8636691 0.1862481 +0.02934285 0.8636691 0.1862481 +0.03925039 0.8636691 0.1862481 +0.05087609 0.8636691 0.1862481 +0.06429595 0.8636691 0.1862481 +0.07958143 0.8636691 0.1862481 +0.0968001 0.8636691 0.1862481 +0.1160161 0.8636691 0.1862481 +0.1372908 0.8636691 0.1862481 +0.1606827 0.8636691 0.1862481 +0.1862481 0.8636691 0.1862481 +0.2140411 0.8636691 0.1862481 +0.2441142 0.8636691 0.1862481 +0.2765176 0.8636691 0.1862481 +0.3113005 0.8636691 0.1862481 +0.3485102 0.8636691 0.1862481 +0.388193 0.8636691 0.1862481 +0.4303934 0.8636691 0.1862481 +0.4751555 0.8636691 0.1862481 +0.5225216 0.8636691 0.1862481 +0.5725335 0.8636691 0.1862481 +0.6252316 0.8636691 0.1862481 +0.6806558 0.8636691 0.1862481 +0.7388448 0.8636691 0.1862481 +0.7998369 0.8636691 0.1862481 +0.8636691 0.8636691 0.1862481 +0.9303782 0.8636691 0.1862481 +1 0.8636691 0.1862481 +0 0.9303782 0.1862481 +0.002418731 0.9303782 0.1862481 +0.005155668 0.9303782 0.1862481 +0.009080105 0.9303782 0.1862481 +0.01434988 0.9303782 0.1862481 +0.02107202 0.9303782 0.1862481 +0.02934285 0.9303782 0.1862481 +0.03925039 0.9303782 0.1862481 +0.05087609 0.9303782 0.1862481 +0.06429595 0.9303782 0.1862481 +0.07958143 0.9303782 0.1862481 +0.0968001 0.9303782 0.1862481 +0.1160161 0.9303782 0.1862481 +0.1372908 0.9303782 0.1862481 +0.1606827 0.9303782 0.1862481 +0.1862481 0.9303782 0.1862481 +0.2140411 0.9303782 0.1862481 +0.2441142 0.9303782 0.1862481 +0.2765176 0.9303782 0.1862481 +0.3113005 0.9303782 0.1862481 +0.3485102 0.9303782 0.1862481 +0.388193 0.9303782 0.1862481 +0.4303934 0.9303782 0.1862481 +0.4751555 0.9303782 0.1862481 +0.5225216 0.9303782 0.1862481 +0.5725335 0.9303782 0.1862481 +0.6252316 0.9303782 0.1862481 +0.6806558 0.9303782 0.1862481 +0.7388448 0.9303782 0.1862481 +0.7998369 0.9303782 0.1862481 +0.8636691 0.9303782 0.1862481 +0.9303782 0.9303782 0.1862481 +1 0.9303782 0.1862481 +0 1 0.1862481 +0.002418731 1 0.1862481 +0.005155668 1 0.1862481 +0.009080105 1 0.1862481 +0.01434988 1 0.1862481 +0.02107202 1 0.1862481 +0.02934285 1 0.1862481 +0.03925039 1 0.1862481 +0.05087609 1 0.1862481 +0.06429595 1 0.1862481 +0.07958143 1 0.1862481 +0.0968001 1 0.1862481 +0.1160161 1 0.1862481 +0.1372908 1 0.1862481 +0.1606827 1 0.1862481 +0.1862481 1 0.1862481 +0.2140411 1 0.1862481 +0.2441142 1 0.1862481 +0.2765176 1 0.1862481 +0.3113005 1 0.1862481 +0.3485102 1 0.1862481 +0.388193 1 0.1862481 +0.4303934 1 0.1862481 +0.4751555 1 0.1862481 +0.5225216 1 0.1862481 +0.5725335 1 0.1862481 +0.6252316 1 0.1862481 +0.6806558 1 0.1862481 +0.7388448 1 0.1862481 +0.7998369 1 0.1862481 +0.8636691 1 0.1862481 +0.9303782 1 0.1862481 +1 1 0.1862481 +0 0 0.2140411 +0.002418731 0 0.2140411 +0.005155668 0 0.2140411 +0.009080105 0 0.2140411 +0.01434988 0 0.2140411 +0.02107202 0 0.2140411 +0.02934285 0 0.2140411 +0.03925039 0 0.2140411 +0.05087609 0 0.2140411 +0.06429595 0 0.2140411 +0.07958143 0 0.2140411 +0.0968001 0 0.2140411 +0.1160161 0 0.2140411 +0.1372908 0 0.2140411 +0.1606827 0 0.2140411 +0.1862481 0 0.2140411 +0.2140411 0 0.2140411 +0.2441142 0 0.2140411 +0.2765176 0 0.2140411 +0.3113005 0 0.2140411 +0.3485102 0 0.2140411 +0.388193 0 0.2140411 +0.4303934 0 0.2140411 +0.4751555 0 0.2140411 +0.5225216 0 0.2140411 +0.5725335 0 0.2140411 +0.6252316 0 0.2140411 +0.6806558 0 0.2140411 +0.7388448 0 0.2140411 +0.7998369 0 0.2140411 +0.8636691 0 0.2140411 +0.9303782 0 0.2140411 +1 0 0.2140411 +0 0.002418731 0.2140411 +0.002418731 0.002418731 0.2140411 +0.005155668 0.002418731 0.2140411 +0.009080105 0.002418731 0.2140411 +0.01434988 0.002418731 0.2140411 +0.02107202 0.002418731 0.2140411 +0.02934285 0.002418731 0.2140411 +0.03925039 0.002418731 0.2140411 +0.05087609 0.002418731 0.2140411 +0.06429595 0.002418731 0.2140411 +0.07958143 0.002418731 0.2140411 +0.0968001 0.002418731 0.2140411 +0.1160161 0.002418731 0.2140411 +0.1372908 0.002418731 0.2140411 +0.1606827 0.002418731 0.2140411 +0.1862481 0.002418731 0.2140411 +0.2140411 0.002418731 0.2140411 +0.2441142 0.002418731 0.2140411 +0.2765176 0.002418731 0.2140411 +0.3113005 0.002418731 0.2140411 +0.3485102 0.002418731 0.2140411 +0.388193 0.002418731 0.2140411 +0.4303934 0.002418731 0.2140411 +0.4751555 0.002418731 0.2140411 +0.5225216 0.002418731 0.2140411 +0.5725335 0.002418731 0.2140411 +0.6252316 0.002418731 0.2140411 +0.6806558 0.002418731 0.2140411 +0.7388448 0.002418731 0.2140411 +0.7998369 0.002418731 0.2140411 +0.8636691 0.002418731 0.2140411 +0.9303782 0.002418731 0.2140411 +1 0.002418731 0.2140411 +0 0.005155668 0.2140411 +0.002418731 0.005155668 0.2140411 +0.005155668 0.005155668 0.2140411 +0.009080105 0.005155668 0.2140411 +0.01434988 0.005155668 0.2140411 +0.02107202 0.005155668 0.2140411 +0.02934285 0.005155668 0.2140411 +0.03925039 0.005155668 0.2140411 +0.05087609 0.005155668 0.2140411 +0.06429595 0.005155668 0.2140411 +0.07958143 0.005155668 0.2140411 +0.0968001 0.005155668 0.2140411 +0.1160161 0.005155668 0.2140411 +0.1372908 0.005155668 0.2140411 +0.1606827 0.005155668 0.2140411 +0.1862481 0.005155668 0.2140411 +0.2140411 0.005155668 0.2140411 +0.2441142 0.005155668 0.2140411 +0.2765176 0.005155668 0.2140411 +0.3113005 0.005155668 0.2140411 +0.3485102 0.005155668 0.2140411 +0.388193 0.005155668 0.2140411 +0.4303934 0.005155668 0.2140411 +0.4751555 0.005155668 0.2140411 +0.5225216 0.005155668 0.2140411 +0.5725335 0.005155668 0.2140411 +0.6252316 0.005155668 0.2140411 +0.6806558 0.005155668 0.2140411 +0.7388448 0.005155668 0.2140411 +0.7998369 0.005155668 0.2140411 +0.8636691 0.005155668 0.2140411 +0.9303782 0.005155668 0.2140411 +1 0.005155668 0.2140411 +0 0.009080105 0.2140411 +0.002418731 0.009080105 0.2140411 +0.005155668 0.009080105 0.2140411 +0.009080105 0.009080105 0.2140411 +0.01434988 0.009080105 0.2140411 +0.02107202 0.009080105 0.2140411 +0.02934285 0.009080105 0.2140411 +0.03925039 0.009080105 0.2140411 +0.05087609 0.009080105 0.2140411 +0.06429595 0.009080105 0.2140411 +0.07958143 0.009080105 0.2140411 +0.0968001 0.009080105 0.2140411 +0.1160161 0.009080105 0.2140411 +0.1372908 0.009080105 0.2140411 +0.1606827 0.009080105 0.2140411 +0.1862481 0.009080105 0.2140411 +0.2140411 0.009080105 0.2140411 +0.2441142 0.009080105 0.2140411 +0.2765176 0.009080105 0.2140411 +0.3113005 0.009080105 0.2140411 +0.3485102 0.009080105 0.2140411 +0.388193 0.009080105 0.2140411 +0.4303934 0.009080105 0.2140411 +0.4751555 0.009080105 0.2140411 +0.5225216 0.009080105 0.2140411 +0.5725335 0.009080105 0.2140411 +0.6252316 0.009080105 0.2140411 +0.6806558 0.009080105 0.2140411 +0.7388448 0.009080105 0.2140411 +0.7998369 0.009080105 0.2140411 +0.8636691 0.009080105 0.2140411 +0.9303782 0.009080105 0.2140411 +1 0.009080105 0.2140411 +0 0.01434988 0.2140411 +0.002418731 0.01434988 0.2140411 +0.005155668 0.01434988 0.2140411 +0.009080105 0.01434988 0.2140411 +0.01434988 0.01434988 0.2140411 +0.02107202 0.01434988 0.2140411 +0.02934285 0.01434988 0.2140411 +0.03925039 0.01434988 0.2140411 +0.05087609 0.01434988 0.2140411 +0.06429595 0.01434988 0.2140411 +0.07958143 0.01434988 0.2140411 +0.0968001 0.01434988 0.2140411 +0.1160161 0.01434988 0.2140411 +0.1372908 0.01434988 0.2140411 +0.1606827 0.01434988 0.2140411 +0.1862481 0.01434988 0.2140411 +0.2140411 0.01434988 0.2140411 +0.2441142 0.01434988 0.2140411 +0.2765176 0.01434988 0.2140411 +0.3113005 0.01434988 0.2140411 +0.3485102 0.01434988 0.2140411 +0.388193 0.01434988 0.2140411 +0.4303934 0.01434988 0.2140411 +0.4751555 0.01434988 0.2140411 +0.5225216 0.01434988 0.2140411 +0.5725335 0.01434988 0.2140411 +0.6252316 0.01434988 0.2140411 +0.6806558 0.01434988 0.2140411 +0.7388448 0.01434988 0.2140411 +0.7998369 0.01434988 0.2140411 +0.8636691 0.01434988 0.2140411 +0.9303782 0.01434988 0.2140411 +1 0.01434988 0.2140411 +0 0.02107202 0.2140411 +0.002418731 0.02107202 0.2140411 +0.005155668 0.02107202 0.2140411 +0.009080105 0.02107202 0.2140411 +0.01434988 0.02107202 0.2140411 +0.02107202 0.02107202 0.2140411 +0.02934285 0.02107202 0.2140411 +0.03925039 0.02107202 0.2140411 +0.05087609 0.02107202 0.2140411 +0.06429595 0.02107202 0.2140411 +0.07958143 0.02107202 0.2140411 +0.0968001 0.02107202 0.2140411 +0.1160161 0.02107202 0.2140411 +0.1372908 0.02107202 0.2140411 +0.1606827 0.02107202 0.2140411 +0.1862481 0.02107202 0.2140411 +0.2140411 0.02107202 0.2140411 +0.2441142 0.02107202 0.2140411 +0.2765176 0.02107202 0.2140411 +0.3113005 0.02107202 0.2140411 +0.3485102 0.02107202 0.2140411 +0.388193 0.02107202 0.2140411 +0.4303934 0.02107202 0.2140411 +0.4751555 0.02107202 0.2140411 +0.5225216 0.02107202 0.2140411 +0.5725335 0.02107202 0.2140411 +0.6252316 0.02107202 0.2140411 +0.6806558 0.02107202 0.2140411 +0.7388448 0.02107202 0.2140411 +0.7998369 0.02107202 0.2140411 +0.8636691 0.02107202 0.2140411 +0.9303782 0.02107202 0.2140411 +1 0.02107202 0.2140411 +0 0.02934285 0.2140411 +0.002418731 0.02934285 0.2140411 +0.005155668 0.02934285 0.2140411 +0.009080105 0.02934285 0.2140411 +0.01434988 0.02934285 0.2140411 +0.02107202 0.02934285 0.2140411 +0.02934285 0.02934285 0.2140411 +0.03925039 0.02934285 0.2140411 +0.05087609 0.02934285 0.2140411 +0.06429595 0.02934285 0.2140411 +0.07958143 0.02934285 0.2140411 +0.0968001 0.02934285 0.2140411 +0.1160161 0.02934285 0.2140411 +0.1372908 0.02934285 0.2140411 +0.1606827 0.02934285 0.2140411 +0.1862481 0.02934285 0.2140411 +0.2140411 0.02934285 0.2140411 +0.2441142 0.02934285 0.2140411 +0.2765176 0.02934285 0.2140411 +0.3113005 0.02934285 0.2140411 +0.3485102 0.02934285 0.2140411 +0.388193 0.02934285 0.2140411 +0.4303934 0.02934285 0.2140411 +0.4751555 0.02934285 0.2140411 +0.5225216 0.02934285 0.2140411 +0.5725335 0.02934285 0.2140411 +0.6252316 0.02934285 0.2140411 +0.6806558 0.02934285 0.2140411 +0.7388448 0.02934285 0.2140411 +0.7998369 0.02934285 0.2140411 +0.8636691 0.02934285 0.2140411 +0.9303782 0.02934285 0.2140411 +1 0.02934285 0.2140411 +0 0.03925039 0.2140411 +0.002418731 0.03925039 0.2140411 +0.005155668 0.03925039 0.2140411 +0.009080105 0.03925039 0.2140411 +0.01434988 0.03925039 0.2140411 +0.02107202 0.03925039 0.2140411 +0.02934285 0.03925039 0.2140411 +0.03925039 0.03925039 0.2140411 +0.05087609 0.03925039 0.2140411 +0.06429595 0.03925039 0.2140411 +0.07958143 0.03925039 0.2140411 +0.0968001 0.03925039 0.2140411 +0.1160161 0.03925039 0.2140411 +0.1372908 0.03925039 0.2140411 +0.1606827 0.03925039 0.2140411 +0.1862481 0.03925039 0.2140411 +0.2140411 0.03925039 0.2140411 +0.2441142 0.03925039 0.2140411 +0.2765176 0.03925039 0.2140411 +0.3113005 0.03925039 0.2140411 +0.3485102 0.03925039 0.2140411 +0.388193 0.03925039 0.2140411 +0.4303934 0.03925039 0.2140411 +0.4751555 0.03925039 0.2140411 +0.5225216 0.03925039 0.2140411 +0.5725335 0.03925039 0.2140411 +0.6252316 0.03925039 0.2140411 +0.6806558 0.03925039 0.2140411 +0.7388448 0.03925039 0.2140411 +0.7998369 0.03925039 0.2140411 +0.8636691 0.03925039 0.2140411 +0.9303782 0.03925039 0.2140411 +1 0.03925039 0.2140411 +0 0.05087609 0.2140411 +0.002418731 0.05087609 0.2140411 +0.005155668 0.05087609 0.2140411 +0.009080105 0.05087609 0.2140411 +0.01434988 0.05087609 0.2140411 +0.02107202 0.05087609 0.2140411 +0.02934285 0.05087609 0.2140411 +0.03925039 0.05087609 0.2140411 +0.05087609 0.05087609 0.2140411 +0.06429595 0.05087609 0.2140411 +0.07958143 0.05087609 0.2140411 +0.0968001 0.05087609 0.2140411 +0.1160161 0.05087609 0.2140411 +0.1372908 0.05087609 0.2140411 +0.1606827 0.05087609 0.2140411 +0.1862481 0.05087609 0.2140411 +0.2140411 0.05087609 0.2140411 +0.2441142 0.05087609 0.2140411 +0.2765176 0.05087609 0.2140411 +0.3113005 0.05087609 0.2140411 +0.3485102 0.05087609 0.2140411 +0.388193 0.05087609 0.2140411 +0.4303934 0.05087609 0.2140411 +0.4751555 0.05087609 0.2140411 +0.5225216 0.05087609 0.2140411 +0.5725335 0.05087609 0.2140411 +0.6252316 0.05087609 0.2140411 +0.6806558 0.05087609 0.2140411 +0.7388448 0.05087609 0.2140411 +0.7998369 0.05087609 0.2140411 +0.8636691 0.05087609 0.2140411 +0.9303782 0.05087609 0.2140411 +1 0.05087609 0.2140411 +0 0.06429595 0.2140411 +0.002418731 0.06429595 0.2140411 +0.005155668 0.06429595 0.2140411 +0.009080105 0.06429595 0.2140411 +0.01434988 0.06429595 0.2140411 +0.02107202 0.06429595 0.2140411 +0.02934285 0.06429595 0.2140411 +0.03925039 0.06429595 0.2140411 +0.05087609 0.06429595 0.2140411 +0.06429595 0.06429595 0.2140411 +0.07958143 0.06429595 0.2140411 +0.0968001 0.06429595 0.2140411 +0.1160161 0.06429595 0.2140411 +0.1372908 0.06429595 0.2140411 +0.1606827 0.06429595 0.2140411 +0.1862481 0.06429595 0.2140411 +0.2140411 0.06429595 0.2140411 +0.2441142 0.06429595 0.2140411 +0.2765176 0.06429595 0.2140411 +0.3113005 0.06429595 0.2140411 +0.3485102 0.06429595 0.2140411 +0.388193 0.06429595 0.2140411 +0.4303934 0.06429595 0.2140411 +0.4751555 0.06429595 0.2140411 +0.5225216 0.06429595 0.2140411 +0.5725335 0.06429595 0.2140411 +0.6252316 0.06429595 0.2140411 +0.6806558 0.06429595 0.2140411 +0.7388448 0.06429595 0.2140411 +0.7998369 0.06429595 0.2140411 +0.8636691 0.06429595 0.2140411 +0.9303782 0.06429595 0.2140411 +1 0.06429595 0.2140411 +0 0.07958143 0.2140411 +0.002418731 0.07958143 0.2140411 +0.005155668 0.07958143 0.2140411 +0.009080105 0.07958143 0.2140411 +0.01434988 0.07958143 0.2140411 +0.02107202 0.07958143 0.2140411 +0.02934285 0.07958143 0.2140411 +0.03925039 0.07958143 0.2140411 +0.05087609 0.07958143 0.2140411 +0.06429595 0.07958143 0.2140411 +0.07958143 0.07958143 0.2140411 +0.0968001 0.07958143 0.2140411 +0.1160161 0.07958143 0.2140411 +0.1372908 0.07958143 0.2140411 +0.1606827 0.07958143 0.2140411 +0.1862481 0.07958143 0.2140411 +0.2140411 0.07958143 0.2140411 +0.2441142 0.07958143 0.2140411 +0.2765176 0.07958143 0.2140411 +0.3113005 0.07958143 0.2140411 +0.3485102 0.07958143 0.2140411 +0.388193 0.07958143 0.2140411 +0.4303934 0.07958143 0.2140411 +0.4751555 0.07958143 0.2140411 +0.5225216 0.07958143 0.2140411 +0.5725335 0.07958143 0.2140411 +0.6252316 0.07958143 0.2140411 +0.6806558 0.07958143 0.2140411 +0.7388448 0.07958143 0.2140411 +0.7998369 0.07958143 0.2140411 +0.8636691 0.07958143 0.2140411 +0.9303782 0.07958143 0.2140411 +1 0.07958143 0.2140411 +0 0.0968001 0.2140411 +0.002418731 0.0968001 0.2140411 +0.005155668 0.0968001 0.2140411 +0.009080105 0.0968001 0.2140411 +0.01434988 0.0968001 0.2140411 +0.02107202 0.0968001 0.2140411 +0.02934285 0.0968001 0.2140411 +0.03925039 0.0968001 0.2140411 +0.05087609 0.0968001 0.2140411 +0.06429595 0.0968001 0.2140411 +0.07958143 0.0968001 0.2140411 +0.0968001 0.0968001 0.2140411 +0.1160161 0.0968001 0.2140411 +0.1372908 0.0968001 0.2140411 +0.1606827 0.0968001 0.2140411 +0.1862481 0.0968001 0.2140411 +0.2140411 0.0968001 0.2140411 +0.2441142 0.0968001 0.2140411 +0.2765176 0.0968001 0.2140411 +0.3113005 0.0968001 0.2140411 +0.3485102 0.0968001 0.2140411 +0.388193 0.0968001 0.2140411 +0.4303934 0.0968001 0.2140411 +0.4751555 0.0968001 0.2140411 +0.5225216 0.0968001 0.2140411 +0.5725335 0.0968001 0.2140411 +0.6252316 0.0968001 0.2140411 +0.6806558 0.0968001 0.2140411 +0.7388448 0.0968001 0.2140411 +0.7998369 0.0968001 0.2140411 +0.8636691 0.0968001 0.2140411 +0.9303782 0.0968001 0.2140411 +1 0.0968001 0.2140411 +0 0.1160161 0.2140411 +0.002418731 0.1160161 0.2140411 +0.005155668 0.1160161 0.2140411 +0.009080105 0.1160161 0.2140411 +0.01434988 0.1160161 0.2140411 +0.02107202 0.1160161 0.2140411 +0.02934285 0.1160161 0.2140411 +0.03925039 0.1160161 0.2140411 +0.05087609 0.1160161 0.2140411 +0.06429595 0.1160161 0.2140411 +0.07958143 0.1160161 0.2140411 +0.0968001 0.1160161 0.2140411 +0.1160161 0.1160161 0.2140411 +0.1372908 0.1160161 0.2140411 +0.1606827 0.1160161 0.2140411 +0.1862481 0.1160161 0.2140411 +0.2140411 0.1160161 0.2140411 +0.2441142 0.1160161 0.2140411 +0.2765176 0.1160161 0.2140411 +0.3113005 0.1160161 0.2140411 +0.3485102 0.1160161 0.2140411 +0.388193 0.1160161 0.2140411 +0.4303934 0.1160161 0.2140411 +0.4751555 0.1160161 0.2140411 +0.5225216 0.1160161 0.2140411 +0.5725335 0.1160161 0.2140411 +0.6252316 0.1160161 0.2140411 +0.6806558 0.1160161 0.2140411 +0.7388448 0.1160161 0.2140411 +0.7998369 0.1160161 0.2140411 +0.8636691 0.1160161 0.2140411 +0.9303782 0.1160161 0.2140411 +1 0.1160161 0.2140411 +0 0.1372908 0.2140411 +0.002418731 0.1372908 0.2140411 +0.005155668 0.1372908 0.2140411 +0.009080105 0.1372908 0.2140411 +0.01434988 0.1372908 0.2140411 +0.02107202 0.1372908 0.2140411 +0.02934285 0.1372908 0.2140411 +0.03925039 0.1372908 0.2140411 +0.05087609 0.1372908 0.2140411 +0.06429595 0.1372908 0.2140411 +0.07958143 0.1372908 0.2140411 +0.0968001 0.1372908 0.2140411 +0.1160161 0.1372908 0.2140411 +0.1372908 0.1372908 0.2140411 +0.1606827 0.1372908 0.2140411 +0.1862481 0.1372908 0.2140411 +0.2140411 0.1372908 0.2140411 +0.2441142 0.1372908 0.2140411 +0.2765176 0.1372908 0.2140411 +0.3113005 0.1372908 0.2140411 +0.3485102 0.1372908 0.2140411 +0.388193 0.1372908 0.2140411 +0.4303934 0.1372908 0.2140411 +0.4751555 0.1372908 0.2140411 +0.5225216 0.1372908 0.2140411 +0.5725335 0.1372908 0.2140411 +0.6252316 0.1372908 0.2140411 +0.6806558 0.1372908 0.2140411 +0.7388448 0.1372908 0.2140411 +0.7998369 0.1372908 0.2140411 +0.8636691 0.1372908 0.2140411 +0.9303782 0.1372908 0.2140411 +1 0.1372908 0.2140411 +0 0.1606827 0.2140411 +0.002418731 0.1606827 0.2140411 +0.005155668 0.1606827 0.2140411 +0.009080105 0.1606827 0.2140411 +0.01434988 0.1606827 0.2140411 +0.02107202 0.1606827 0.2140411 +0.02934285 0.1606827 0.2140411 +0.03925039 0.1606827 0.2140411 +0.05087609 0.1606827 0.2140411 +0.06429595 0.1606827 0.2140411 +0.07958143 0.1606827 0.2140411 +0.0968001 0.1606827 0.2140411 +0.1160161 0.1606827 0.2140411 +0.1372908 0.1606827 0.2140411 +0.1606827 0.1606827 0.2140411 +0.1862481 0.1606827 0.2140411 +0.2140411 0.1606827 0.2140411 +0.2441142 0.1606827 0.2140411 +0.2765176 0.1606827 0.2140411 +0.3113005 0.1606827 0.2140411 +0.3485102 0.1606827 0.2140411 +0.388193 0.1606827 0.2140411 +0.4303934 0.1606827 0.2140411 +0.4751555 0.1606827 0.2140411 +0.5225216 0.1606827 0.2140411 +0.5725335 0.1606827 0.2140411 +0.6252316 0.1606827 0.2140411 +0.6806558 0.1606827 0.2140411 +0.7388448 0.1606827 0.2140411 +0.7998369 0.1606827 0.2140411 +0.8636691 0.1606827 0.2140411 +0.9303782 0.1606827 0.2140411 +1 0.1606827 0.2140411 +0 0.1862481 0.2140411 +0.002418731 0.1862481 0.2140411 +0.005155668 0.1862481 0.2140411 +0.009080105 0.1862481 0.2140411 +0.01434988 0.1862481 0.2140411 +0.02107202 0.1862481 0.2140411 +0.02934285 0.1862481 0.2140411 +0.03925039 0.1862481 0.2140411 +0.05087609 0.1862481 0.2140411 +0.06429595 0.1862481 0.2140411 +0.07958143 0.1862481 0.2140411 +0.0968001 0.1862481 0.2140411 +0.1160161 0.1862481 0.2140411 +0.1372908 0.1862481 0.2140411 +0.1606827 0.1862481 0.2140411 +0.1862481 0.1862481 0.2140411 +0.2140411 0.1862481 0.2140411 +0.2441142 0.1862481 0.2140411 +0.2765176 0.1862481 0.2140411 +0.3113005 0.1862481 0.2140411 +0.3485102 0.1862481 0.2140411 +0.388193 0.1862481 0.2140411 +0.4303934 0.1862481 0.2140411 +0.4751555 0.1862481 0.2140411 +0.5225216 0.1862481 0.2140411 +0.5725335 0.1862481 0.2140411 +0.6252316 0.1862481 0.2140411 +0.6806558 0.1862481 0.2140411 +0.7388448 0.1862481 0.2140411 +0.7998369 0.1862481 0.2140411 +0.8636691 0.1862481 0.2140411 +0.9303782 0.1862481 0.2140411 +1 0.1862481 0.2140411 +0 0.2140411 0.2140411 +0.002418731 0.2140411 0.2140411 +0.005155668 0.2140411 0.2140411 +0.009080105 0.2140411 0.2140411 +0.01434988 0.2140411 0.2140411 +0.02107202 0.2140411 0.2140411 +0.02934285 0.2140411 0.2140411 +0.03925039 0.2140411 0.2140411 +0.05087609 0.2140411 0.2140411 +0.06429595 0.2140411 0.2140411 +0.07958143 0.2140411 0.2140411 +0.0968001 0.2140411 0.2140411 +0.1160161 0.2140411 0.2140411 +0.1372908 0.2140411 0.2140411 +0.1606827 0.2140411 0.2140411 +0.1862481 0.2140411 0.2140411 +0.2140411 0.2140411 0.2140411 +0.2441142 0.2140411 0.2140411 +0.2765176 0.2140411 0.2140411 +0.3113005 0.2140411 0.2140411 +0.3485102 0.2140411 0.2140411 +0.388193 0.2140411 0.2140411 +0.4303934 0.2140411 0.2140411 +0.4751555 0.2140411 0.2140411 +0.5225216 0.2140411 0.2140411 +0.5725335 0.2140411 0.2140411 +0.6252316 0.2140411 0.2140411 +0.6806558 0.2140411 0.2140411 +0.7388448 0.2140411 0.2140411 +0.7998369 0.2140411 0.2140411 +0.8636691 0.2140411 0.2140411 +0.9303782 0.2140411 0.2140411 +1 0.2140411 0.2140411 +0 0.2441142 0.2140411 +0.002418731 0.2441142 0.2140411 +0.005155668 0.2441142 0.2140411 +0.009080105 0.2441142 0.2140411 +0.01434988 0.2441142 0.2140411 +0.02107202 0.2441142 0.2140411 +0.02934285 0.2441142 0.2140411 +0.03925039 0.2441142 0.2140411 +0.05087609 0.2441142 0.2140411 +0.06429595 0.2441142 0.2140411 +0.07958143 0.2441142 0.2140411 +0.0968001 0.2441142 0.2140411 +0.1160161 0.2441142 0.2140411 +0.1372908 0.2441142 0.2140411 +0.1606827 0.2441142 0.2140411 +0.1862481 0.2441142 0.2140411 +0.2140411 0.2441142 0.2140411 +0.2441142 0.2441142 0.2140411 +0.2765176 0.2441142 0.2140411 +0.3113005 0.2441142 0.2140411 +0.3485102 0.2441142 0.2140411 +0.388193 0.2441142 0.2140411 +0.4303934 0.2441142 0.2140411 +0.4751555 0.2441142 0.2140411 +0.5225216 0.2441142 0.2140411 +0.5725335 0.2441142 0.2140411 +0.6252316 0.2441142 0.2140411 +0.6806558 0.2441142 0.2140411 +0.7388448 0.2441142 0.2140411 +0.7998369 0.2441142 0.2140411 +0.8636691 0.2441142 0.2140411 +0.9303782 0.2441142 0.2140411 +1 0.2441142 0.2140411 +0 0.2765176 0.2140411 +0.002418731 0.2765176 0.2140411 +0.005155668 0.2765176 0.2140411 +0.009080105 0.2765176 0.2140411 +0.01434988 0.2765176 0.2140411 +0.02107202 0.2765176 0.2140411 +0.02934285 0.2765176 0.2140411 +0.03925039 0.2765176 0.2140411 +0.05087609 0.2765176 0.2140411 +0.06429595 0.2765176 0.2140411 +0.07958143 0.2765176 0.2140411 +0.0968001 0.2765176 0.2140411 +0.1160161 0.2765176 0.2140411 +0.1372908 0.2765176 0.2140411 +0.1606827 0.2765176 0.2140411 +0.1862481 0.2765176 0.2140411 +0.2140411 0.2765176 0.2140411 +0.2441142 0.2765176 0.2140411 +0.2765176 0.2765176 0.2140411 +0.3113005 0.2765176 0.2140411 +0.3485102 0.2765176 0.2140411 +0.388193 0.2765176 0.2140411 +0.4303934 0.2765176 0.2140411 +0.4751555 0.2765176 0.2140411 +0.5225216 0.2765176 0.2140411 +0.5725335 0.2765176 0.2140411 +0.6252316 0.2765176 0.2140411 +0.6806558 0.2765176 0.2140411 +0.7388448 0.2765176 0.2140411 +0.7998369 0.2765176 0.2140411 +0.8636691 0.2765176 0.2140411 +0.9303782 0.2765176 0.2140411 +1 0.2765176 0.2140411 +0 0.3113005 0.2140411 +0.002418731 0.3113005 0.2140411 +0.005155668 0.3113005 0.2140411 +0.009080105 0.3113005 0.2140411 +0.01434988 0.3113005 0.2140411 +0.02107202 0.3113005 0.2140411 +0.02934285 0.3113005 0.2140411 +0.03925039 0.3113005 0.2140411 +0.05087609 0.3113005 0.2140411 +0.06429595 0.3113005 0.2140411 +0.07958143 0.3113005 0.2140411 +0.0968001 0.3113005 0.2140411 +0.1160161 0.3113005 0.2140411 +0.1372908 0.3113005 0.2140411 +0.1606827 0.3113005 0.2140411 +0.1862481 0.3113005 0.2140411 +0.2140411 0.3113005 0.2140411 +0.2441142 0.3113005 0.2140411 +0.2765176 0.3113005 0.2140411 +0.3113005 0.3113005 0.2140411 +0.3485102 0.3113005 0.2140411 +0.388193 0.3113005 0.2140411 +0.4303934 0.3113005 0.2140411 +0.4751555 0.3113005 0.2140411 +0.5225216 0.3113005 0.2140411 +0.5725335 0.3113005 0.2140411 +0.6252316 0.3113005 0.2140411 +0.6806558 0.3113005 0.2140411 +0.7388448 0.3113005 0.2140411 +0.7998369 0.3113005 0.2140411 +0.8636691 0.3113005 0.2140411 +0.9303782 0.3113005 0.2140411 +1 0.3113005 0.2140411 +0 0.3485102 0.2140411 +0.002418731 0.3485102 0.2140411 +0.005155668 0.3485102 0.2140411 +0.009080105 0.3485102 0.2140411 +0.01434988 0.3485102 0.2140411 +0.02107202 0.3485102 0.2140411 +0.02934285 0.3485102 0.2140411 +0.03925039 0.3485102 0.2140411 +0.05087609 0.3485102 0.2140411 +0.06429595 0.3485102 0.2140411 +0.07958143 0.3485102 0.2140411 +0.0968001 0.3485102 0.2140411 +0.1160161 0.3485102 0.2140411 +0.1372908 0.3485102 0.2140411 +0.1606827 0.3485102 0.2140411 +0.1862481 0.3485102 0.2140411 +0.2140411 0.3485102 0.2140411 +0.2441142 0.3485102 0.2140411 +0.2765176 0.3485102 0.2140411 +0.3113005 0.3485102 0.2140411 +0.3485102 0.3485102 0.2140411 +0.388193 0.3485102 0.2140411 +0.4303934 0.3485102 0.2140411 +0.4751555 0.3485102 0.2140411 +0.5225216 0.3485102 0.2140411 +0.5725335 0.3485102 0.2140411 +0.6252316 0.3485102 0.2140411 +0.6806558 0.3485102 0.2140411 +0.7388448 0.3485102 0.2140411 +0.7998369 0.3485102 0.2140411 +0.8636691 0.3485102 0.2140411 +0.9303782 0.3485102 0.2140411 +1 0.3485102 0.2140411 +0 0.388193 0.2140411 +0.002418731 0.388193 0.2140411 +0.005155668 0.388193 0.2140411 +0.009080105 0.388193 0.2140411 +0.01434988 0.388193 0.2140411 +0.02107202 0.388193 0.2140411 +0.02934285 0.388193 0.2140411 +0.03925039 0.388193 0.2140411 +0.05087609 0.388193 0.2140411 +0.06429595 0.388193 0.2140411 +0.07958143 0.388193 0.2140411 +0.0968001 0.388193 0.2140411 +0.1160161 0.388193 0.2140411 +0.1372908 0.388193 0.2140411 +0.1606827 0.388193 0.2140411 +0.1862481 0.388193 0.2140411 +0.2140411 0.388193 0.2140411 +0.2441142 0.388193 0.2140411 +0.2765176 0.388193 0.2140411 +0.3113005 0.388193 0.2140411 +0.3485102 0.388193 0.2140411 +0.388193 0.388193 0.2140411 +0.4303934 0.388193 0.2140411 +0.4751555 0.388193 0.2140411 +0.5225216 0.388193 0.2140411 +0.5725335 0.388193 0.2140411 +0.6252316 0.388193 0.2140411 +0.6806558 0.388193 0.2140411 +0.7388448 0.388193 0.2140411 +0.7998369 0.388193 0.2140411 +0.8636691 0.388193 0.2140411 +0.9303782 0.388193 0.2140411 +1 0.388193 0.2140411 +0 0.4303934 0.2140411 +0.002418731 0.4303934 0.2140411 +0.005155668 0.4303934 0.2140411 +0.009080105 0.4303934 0.2140411 +0.01434988 0.4303934 0.2140411 +0.02107202 0.4303934 0.2140411 +0.02934285 0.4303934 0.2140411 +0.03925039 0.4303934 0.2140411 +0.05087609 0.4303934 0.2140411 +0.06429595 0.4303934 0.2140411 +0.07958143 0.4303934 0.2140411 +0.0968001 0.4303934 0.2140411 +0.1160161 0.4303934 0.2140411 +0.1372908 0.4303934 0.2140411 +0.1606827 0.4303934 0.2140411 +0.1862481 0.4303934 0.2140411 +0.2140411 0.4303934 0.2140411 +0.2441142 0.4303934 0.2140411 +0.2765176 0.4303934 0.2140411 +0.3113005 0.4303934 0.2140411 +0.3485102 0.4303934 0.2140411 +0.388193 0.4303934 0.2140411 +0.4303934 0.4303934 0.2140411 +0.4751555 0.4303934 0.2140411 +0.5225216 0.4303934 0.2140411 +0.5725335 0.4303934 0.2140411 +0.6252316 0.4303934 0.2140411 +0.6806558 0.4303934 0.2140411 +0.7388448 0.4303934 0.2140411 +0.7998369 0.4303934 0.2140411 +0.8636691 0.4303934 0.2140411 +0.9303782 0.4303934 0.2140411 +1 0.4303934 0.2140411 +0 0.4751555 0.2140411 +0.002418731 0.4751555 0.2140411 +0.005155668 0.4751555 0.2140411 +0.009080105 0.4751555 0.2140411 +0.01434988 0.4751555 0.2140411 +0.02107202 0.4751555 0.2140411 +0.02934285 0.4751555 0.2140411 +0.03925039 0.4751555 0.2140411 +0.05087609 0.4751555 0.2140411 +0.06429595 0.4751555 0.2140411 +0.07958143 0.4751555 0.2140411 +0.0968001 0.4751555 0.2140411 +0.1160161 0.4751555 0.2140411 +0.1372908 0.4751555 0.2140411 +0.1606827 0.4751555 0.2140411 +0.1862481 0.4751555 0.2140411 +0.2140411 0.4751555 0.2140411 +0.2441142 0.4751555 0.2140411 +0.2765176 0.4751555 0.2140411 +0.3113005 0.4751555 0.2140411 +0.3485102 0.4751555 0.2140411 +0.388193 0.4751555 0.2140411 +0.4303934 0.4751555 0.2140411 +0.4751555 0.4751555 0.2140411 +0.5225216 0.4751555 0.2140411 +0.5725335 0.4751555 0.2140411 +0.6252316 0.4751555 0.2140411 +0.6806558 0.4751555 0.2140411 +0.7388448 0.4751555 0.2140411 +0.7998369 0.4751555 0.2140411 +0.8636691 0.4751555 0.2140411 +0.9303782 0.4751555 0.2140411 +1 0.4751555 0.2140411 +0 0.5225216 0.2140411 +0.002418731 0.5225216 0.2140411 +0.005155668 0.5225216 0.2140411 +0.009080105 0.5225216 0.2140411 +0.01434988 0.5225216 0.2140411 +0.02107202 0.5225216 0.2140411 +0.02934285 0.5225216 0.2140411 +0.03925039 0.5225216 0.2140411 +0.05087609 0.5225216 0.2140411 +0.06429595 0.5225216 0.2140411 +0.07958143 0.5225216 0.2140411 +0.0968001 0.5225216 0.2140411 +0.1160161 0.5225216 0.2140411 +0.1372908 0.5225216 0.2140411 +0.1606827 0.5225216 0.2140411 +0.1862481 0.5225216 0.2140411 +0.2140411 0.5225216 0.2140411 +0.2441142 0.5225216 0.2140411 +0.2765176 0.5225216 0.2140411 +0.3113005 0.5225216 0.2140411 +0.3485102 0.5225216 0.2140411 +0.388193 0.5225216 0.2140411 +0.4303934 0.5225216 0.2140411 +0.4751555 0.5225216 0.2140411 +0.5225216 0.5225216 0.2140411 +0.5725335 0.5225216 0.2140411 +0.6252316 0.5225216 0.2140411 +0.6806558 0.5225216 0.2140411 +0.7388448 0.5225216 0.2140411 +0.7998369 0.5225216 0.2140411 +0.8636691 0.5225216 0.2140411 +0.9303782 0.5225216 0.2140411 +1 0.5225216 0.2140411 +0 0.5725335 0.2140411 +0.002418731 0.5725335 0.2140411 +0.005155668 0.5725335 0.2140411 +0.009080105 0.5725335 0.2140411 +0.01434988 0.5725335 0.2140411 +0.02107202 0.5725335 0.2140411 +0.02934285 0.5725335 0.2140411 +0.03925039 0.5725335 0.2140411 +0.05087609 0.5725335 0.2140411 +0.06429595 0.5725335 0.2140411 +0.07958143 0.5725335 0.2140411 +0.0968001 0.5725335 0.2140411 +0.1160161 0.5725335 0.2140411 +0.1372908 0.5725335 0.2140411 +0.1606827 0.5725335 0.2140411 +0.1862481 0.5725335 0.2140411 +0.2140411 0.5725335 0.2140411 +0.2441142 0.5725335 0.2140411 +0.2765176 0.5725335 0.2140411 +0.3113005 0.5725335 0.2140411 +0.3485102 0.5725335 0.2140411 +0.388193 0.5725335 0.2140411 +0.4303934 0.5725335 0.2140411 +0.4751555 0.5725335 0.2140411 +0.5225216 0.5725335 0.2140411 +0.5725335 0.5725335 0.2140411 +0.6252316 0.5725335 0.2140411 +0.6806558 0.5725335 0.2140411 +0.7388448 0.5725335 0.2140411 +0.7998369 0.5725335 0.2140411 +0.8636691 0.5725335 0.2140411 +0.9303782 0.5725335 0.2140411 +1 0.5725335 0.2140411 +0 0.6252316 0.2140411 +0.002418731 0.6252316 0.2140411 +0.005155668 0.6252316 0.2140411 +0.009080105 0.6252316 0.2140411 +0.01434988 0.6252316 0.2140411 +0.02107202 0.6252316 0.2140411 +0.02934285 0.6252316 0.2140411 +0.03925039 0.6252316 0.2140411 +0.05087609 0.6252316 0.2140411 +0.06429595 0.6252316 0.2140411 +0.07958143 0.6252316 0.2140411 +0.0968001 0.6252316 0.2140411 +0.1160161 0.6252316 0.2140411 +0.1372908 0.6252316 0.2140411 +0.1606827 0.6252316 0.2140411 +0.1862481 0.6252316 0.2140411 +0.2140411 0.6252316 0.2140411 +0.2441142 0.6252316 0.2140411 +0.2765176 0.6252316 0.2140411 +0.3113005 0.6252316 0.2140411 +0.3485102 0.6252316 0.2140411 +0.388193 0.6252316 0.2140411 +0.4303934 0.6252316 0.2140411 +0.4751555 0.6252316 0.2140411 +0.5225216 0.6252316 0.2140411 +0.5725335 0.6252316 0.2140411 +0.6252316 0.6252316 0.2140411 +0.6806558 0.6252316 0.2140411 +0.7388448 0.6252316 0.2140411 +0.7998369 0.6252316 0.2140411 +0.8636691 0.6252316 0.2140411 +0.9303782 0.6252316 0.2140411 +1 0.6252316 0.2140411 +0 0.6806558 0.2140411 +0.002418731 0.6806558 0.2140411 +0.005155668 0.6806558 0.2140411 +0.009080105 0.6806558 0.2140411 +0.01434988 0.6806558 0.2140411 +0.02107202 0.6806558 0.2140411 +0.02934285 0.6806558 0.2140411 +0.03925039 0.6806558 0.2140411 +0.05087609 0.6806558 0.2140411 +0.06429595 0.6806558 0.2140411 +0.07958143 0.6806558 0.2140411 +0.0968001 0.6806558 0.2140411 +0.1160161 0.6806558 0.2140411 +0.1372908 0.6806558 0.2140411 +0.1606827 0.6806558 0.2140411 +0.1862481 0.6806558 0.2140411 +0.2140411 0.6806558 0.2140411 +0.2441142 0.6806558 0.2140411 +0.2765176 0.6806558 0.2140411 +0.3113005 0.6806558 0.2140411 +0.3485102 0.6806558 0.2140411 +0.388193 0.6806558 0.2140411 +0.4303934 0.6806558 0.2140411 +0.4751555 0.6806558 0.2140411 +0.5225216 0.6806558 0.2140411 +0.5725335 0.6806558 0.2140411 +0.6252316 0.6806558 0.2140411 +0.6806558 0.6806558 0.2140411 +0.7388448 0.6806558 0.2140411 +0.7998369 0.6806558 0.2140411 +0.8636691 0.6806558 0.2140411 +0.9303782 0.6806558 0.2140411 +1 0.6806558 0.2140411 +0 0.7388448 0.2140411 +0.002418731 0.7388448 0.2140411 +0.005155668 0.7388448 0.2140411 +0.009080105 0.7388448 0.2140411 +0.01434988 0.7388448 0.2140411 +0.02107202 0.7388448 0.2140411 +0.02934285 0.7388448 0.2140411 +0.03925039 0.7388448 0.2140411 +0.05087609 0.7388448 0.2140411 +0.06429595 0.7388448 0.2140411 +0.07958143 0.7388448 0.2140411 +0.0968001 0.7388448 0.2140411 +0.1160161 0.7388448 0.2140411 +0.1372908 0.7388448 0.2140411 +0.1606827 0.7388448 0.2140411 +0.1862481 0.7388448 0.2140411 +0.2140411 0.7388448 0.2140411 +0.2441142 0.7388448 0.2140411 +0.2765176 0.7388448 0.2140411 +0.3113005 0.7388448 0.2140411 +0.3485102 0.7388448 0.2140411 +0.388193 0.7388448 0.2140411 +0.4303934 0.7388448 0.2140411 +0.4751555 0.7388448 0.2140411 +0.5225216 0.7388448 0.2140411 +0.5725335 0.7388448 0.2140411 +0.6252316 0.7388448 0.2140411 +0.6806558 0.7388448 0.2140411 +0.7388448 0.7388448 0.2140411 +0.7998369 0.7388448 0.2140411 +0.8636691 0.7388448 0.2140411 +0.9303782 0.7388448 0.2140411 +1 0.7388448 0.2140411 +0 0.7998369 0.2140411 +0.002418731 0.7998369 0.2140411 +0.005155668 0.7998369 0.2140411 +0.009080105 0.7998369 0.2140411 +0.01434988 0.7998369 0.2140411 +0.02107202 0.7998369 0.2140411 +0.02934285 0.7998369 0.2140411 +0.03925039 0.7998369 0.2140411 +0.05087609 0.7998369 0.2140411 +0.06429595 0.7998369 0.2140411 +0.07958143 0.7998369 0.2140411 +0.0968001 0.7998369 0.2140411 +0.1160161 0.7998369 0.2140411 +0.1372908 0.7998369 0.2140411 +0.1606827 0.7998369 0.2140411 +0.1862481 0.7998369 0.2140411 +0.2140411 0.7998369 0.2140411 +0.2441142 0.7998369 0.2140411 +0.2765176 0.7998369 0.2140411 +0.3113005 0.7998369 0.2140411 +0.3485102 0.7998369 0.2140411 +0.388193 0.7998369 0.2140411 +0.4303934 0.7998369 0.2140411 +0.4751555 0.7998369 0.2140411 +0.5225216 0.7998369 0.2140411 +0.5725335 0.7998369 0.2140411 +0.6252316 0.7998369 0.2140411 +0.6806558 0.7998369 0.2140411 +0.7388448 0.7998369 0.2140411 +0.7998369 0.7998369 0.2140411 +0.8636691 0.7998369 0.2140411 +0.9303782 0.7998369 0.2140411 +1 0.7998369 0.2140411 +0 0.8636691 0.2140411 +0.002418731 0.8636691 0.2140411 +0.005155668 0.8636691 0.2140411 +0.009080105 0.8636691 0.2140411 +0.01434988 0.8636691 0.2140411 +0.02107202 0.8636691 0.2140411 +0.02934285 0.8636691 0.2140411 +0.03925039 0.8636691 0.2140411 +0.05087609 0.8636691 0.2140411 +0.06429595 0.8636691 0.2140411 +0.07958143 0.8636691 0.2140411 +0.0968001 0.8636691 0.2140411 +0.1160161 0.8636691 0.2140411 +0.1372908 0.8636691 0.2140411 +0.1606827 0.8636691 0.2140411 +0.1862481 0.8636691 0.2140411 +0.2140411 0.8636691 0.2140411 +0.2441142 0.8636691 0.2140411 +0.2765176 0.8636691 0.2140411 +0.3113005 0.8636691 0.2140411 +0.3485102 0.8636691 0.2140411 +0.388193 0.8636691 0.2140411 +0.4303934 0.8636691 0.2140411 +0.4751555 0.8636691 0.2140411 +0.5225216 0.8636691 0.2140411 +0.5725335 0.8636691 0.2140411 +0.6252316 0.8636691 0.2140411 +0.6806558 0.8636691 0.2140411 +0.7388448 0.8636691 0.2140411 +0.7998369 0.8636691 0.2140411 +0.8636691 0.8636691 0.2140411 +0.9303782 0.8636691 0.2140411 +1 0.8636691 0.2140411 +0 0.9303782 0.2140411 +0.002418731 0.9303782 0.2140411 +0.005155668 0.9303782 0.2140411 +0.009080105 0.9303782 0.2140411 +0.01434988 0.9303782 0.2140411 +0.02107202 0.9303782 0.2140411 +0.02934285 0.9303782 0.2140411 +0.03925039 0.9303782 0.2140411 +0.05087609 0.9303782 0.2140411 +0.06429595 0.9303782 0.2140411 +0.07958143 0.9303782 0.2140411 +0.0968001 0.9303782 0.2140411 +0.1160161 0.9303782 0.2140411 +0.1372908 0.9303782 0.2140411 +0.1606827 0.9303782 0.2140411 +0.1862481 0.9303782 0.2140411 +0.2140411 0.9303782 0.2140411 +0.2441142 0.9303782 0.2140411 +0.2765176 0.9303782 0.2140411 +0.3113005 0.9303782 0.2140411 +0.3485102 0.9303782 0.2140411 +0.388193 0.9303782 0.2140411 +0.4303934 0.9303782 0.2140411 +0.4751555 0.9303782 0.2140411 +0.5225216 0.9303782 0.2140411 +0.5725335 0.9303782 0.2140411 +0.6252316 0.9303782 0.2140411 +0.6806558 0.9303782 0.2140411 +0.7388448 0.9303782 0.2140411 +0.7998369 0.9303782 0.2140411 +0.8636691 0.9303782 0.2140411 +0.9303782 0.9303782 0.2140411 +1 0.9303782 0.2140411 +0 1 0.2140411 +0.002418731 1 0.2140411 +0.005155668 1 0.2140411 +0.009080105 1 0.2140411 +0.01434988 1 0.2140411 +0.02107202 1 0.2140411 +0.02934285 1 0.2140411 +0.03925039 1 0.2140411 +0.05087609 1 0.2140411 +0.06429595 1 0.2140411 +0.07958143 1 0.2140411 +0.0968001 1 0.2140411 +0.1160161 1 0.2140411 +0.1372908 1 0.2140411 +0.1606827 1 0.2140411 +0.1862481 1 0.2140411 +0.2140411 1 0.2140411 +0.2441142 1 0.2140411 +0.2765176 1 0.2140411 +0.3113005 1 0.2140411 +0.3485102 1 0.2140411 +0.388193 1 0.2140411 +0.4303934 1 0.2140411 +0.4751555 1 0.2140411 +0.5225216 1 0.2140411 +0.5725335 1 0.2140411 +0.6252316 1 0.2140411 +0.6806558 1 0.2140411 +0.7388448 1 0.2140411 +0.7998369 1 0.2140411 +0.8636691 1 0.2140411 +0.9303782 1 0.2140411 +1 1 0.2140411 +0 0 0.2441142 +0.002418731 0 0.2441142 +0.005155668 0 0.2441142 +0.009080105 0 0.2441142 +0.01434988 0 0.2441142 +0.02107202 0 0.2441142 +0.02934285 0 0.2441142 +0.03925039 0 0.2441142 +0.05087609 0 0.2441142 +0.06429595 0 0.2441142 +0.07958143 0 0.2441142 +0.0968001 0 0.2441142 +0.1160161 0 0.2441142 +0.1372908 0 0.2441142 +0.1606827 0 0.2441142 +0.1862481 0 0.2441142 +0.2140411 0 0.2441142 +0.2441142 0 0.2441142 +0.2765176 0 0.2441142 +0.3113005 0 0.2441142 +0.3485102 0 0.2441142 +0.388193 0 0.2441142 +0.4303934 0 0.2441142 +0.4751555 0 0.2441142 +0.5225216 0 0.2441142 +0.5725335 0 0.2441142 +0.6252316 0 0.2441142 +0.6806558 0 0.2441142 +0.7388448 0 0.2441142 +0.7998369 0 0.2441142 +0.8636691 0 0.2441142 +0.9303782 0 0.2441142 +1 0 0.2441142 +0 0.002418731 0.2441142 +0.002418731 0.002418731 0.2441142 +0.005155668 0.002418731 0.2441142 +0.009080105 0.002418731 0.2441142 +0.01434988 0.002418731 0.2441142 +0.02107202 0.002418731 0.2441142 +0.02934285 0.002418731 0.2441142 +0.03925039 0.002418731 0.2441142 +0.05087609 0.002418731 0.2441142 +0.06429595 0.002418731 0.2441142 +0.07958143 0.002418731 0.2441142 +0.0968001 0.002418731 0.2441142 +0.1160161 0.002418731 0.2441142 +0.1372908 0.002418731 0.2441142 +0.1606827 0.002418731 0.2441142 +0.1862481 0.002418731 0.2441142 +0.2140411 0.002418731 0.2441142 +0.2441142 0.002418731 0.2441142 +0.2765176 0.002418731 0.2441142 +0.3113005 0.002418731 0.2441142 +0.3485102 0.002418731 0.2441142 +0.388193 0.002418731 0.2441142 +0.4303934 0.002418731 0.2441142 +0.4751555 0.002418731 0.2441142 +0.5225216 0.002418731 0.2441142 +0.5725335 0.002418731 0.2441142 +0.6252316 0.002418731 0.2441142 +0.6806558 0.002418731 0.2441142 +0.7388448 0.002418731 0.2441142 +0.7998369 0.002418731 0.2441142 +0.8636691 0.002418731 0.2441142 +0.9303782 0.002418731 0.2441142 +1 0.002418731 0.2441142 +0 0.005155668 0.2441142 +0.002418731 0.005155668 0.2441142 +0.005155668 0.005155668 0.2441142 +0.009080105 0.005155668 0.2441142 +0.01434988 0.005155668 0.2441142 +0.02107202 0.005155668 0.2441142 +0.02934285 0.005155668 0.2441142 +0.03925039 0.005155668 0.2441142 +0.05087609 0.005155668 0.2441142 +0.06429595 0.005155668 0.2441142 +0.07958143 0.005155668 0.2441142 +0.0968001 0.005155668 0.2441142 +0.1160161 0.005155668 0.2441142 +0.1372908 0.005155668 0.2441142 +0.1606827 0.005155668 0.2441142 +0.1862481 0.005155668 0.2441142 +0.2140411 0.005155668 0.2441142 +0.2441142 0.005155668 0.2441142 +0.2765176 0.005155668 0.2441142 +0.3113005 0.005155668 0.2441142 +0.3485102 0.005155668 0.2441142 +0.388193 0.005155668 0.2441142 +0.4303934 0.005155668 0.2441142 +0.4751555 0.005155668 0.2441142 +0.5225216 0.005155668 0.2441142 +0.5725335 0.005155668 0.2441142 +0.6252316 0.005155668 0.2441142 +0.6806558 0.005155668 0.2441142 +0.7388448 0.005155668 0.2441142 +0.7998369 0.005155668 0.2441142 +0.8636691 0.005155668 0.2441142 +0.9303782 0.005155668 0.2441142 +1 0.005155668 0.2441142 +0 0.009080105 0.2441142 +0.002418731 0.009080105 0.2441142 +0.005155668 0.009080105 0.2441142 +0.009080105 0.009080105 0.2441142 +0.01434988 0.009080105 0.2441142 +0.02107202 0.009080105 0.2441142 +0.02934285 0.009080105 0.2441142 +0.03925039 0.009080105 0.2441142 +0.05087609 0.009080105 0.2441142 +0.06429595 0.009080105 0.2441142 +0.07958143 0.009080105 0.2441142 +0.0968001 0.009080105 0.2441142 +0.1160161 0.009080105 0.2441142 +0.1372908 0.009080105 0.2441142 +0.1606827 0.009080105 0.2441142 +0.1862481 0.009080105 0.2441142 +0.2140411 0.009080105 0.2441142 +0.2441142 0.009080105 0.2441142 +0.2765176 0.009080105 0.2441142 +0.3113005 0.009080105 0.2441142 +0.3485102 0.009080105 0.2441142 +0.388193 0.009080105 0.2441142 +0.4303934 0.009080105 0.2441142 +0.4751555 0.009080105 0.2441142 +0.5225216 0.009080105 0.2441142 +0.5725335 0.009080105 0.2441142 +0.6252316 0.009080105 0.2441142 +0.6806558 0.009080105 0.2441142 +0.7388448 0.009080105 0.2441142 +0.7998369 0.009080105 0.2441142 +0.8636691 0.009080105 0.2441142 +0.9303782 0.009080105 0.2441142 +1 0.009080105 0.2441142 +0 0.01434988 0.2441142 +0.002418731 0.01434988 0.2441142 +0.005155668 0.01434988 0.2441142 +0.009080105 0.01434988 0.2441142 +0.01434988 0.01434988 0.2441142 +0.02107202 0.01434988 0.2441142 +0.02934285 0.01434988 0.2441142 +0.03925039 0.01434988 0.2441142 +0.05087609 0.01434988 0.2441142 +0.06429595 0.01434988 0.2441142 +0.07958143 0.01434988 0.2441142 +0.0968001 0.01434988 0.2441142 +0.1160161 0.01434988 0.2441142 +0.1372908 0.01434988 0.2441142 +0.1606827 0.01434988 0.2441142 +0.1862481 0.01434988 0.2441142 +0.2140411 0.01434988 0.2441142 +0.2441142 0.01434988 0.2441142 +0.2765176 0.01434988 0.2441142 +0.3113005 0.01434988 0.2441142 +0.3485102 0.01434988 0.2441142 +0.388193 0.01434988 0.2441142 +0.4303934 0.01434988 0.2441142 +0.4751555 0.01434988 0.2441142 +0.5225216 0.01434988 0.2441142 +0.5725335 0.01434988 0.2441142 +0.6252316 0.01434988 0.2441142 +0.6806558 0.01434988 0.2441142 +0.7388448 0.01434988 0.2441142 +0.7998369 0.01434988 0.2441142 +0.8636691 0.01434988 0.2441142 +0.9303782 0.01434988 0.2441142 +1 0.01434988 0.2441142 +0 0.02107202 0.2441142 +0.002418731 0.02107202 0.2441142 +0.005155668 0.02107202 0.2441142 +0.009080105 0.02107202 0.2441142 +0.01434988 0.02107202 0.2441142 +0.02107202 0.02107202 0.2441142 +0.02934285 0.02107202 0.2441142 +0.03925039 0.02107202 0.2441142 +0.05087609 0.02107202 0.2441142 +0.06429595 0.02107202 0.2441142 +0.07958143 0.02107202 0.2441142 +0.0968001 0.02107202 0.2441142 +0.1160161 0.02107202 0.2441142 +0.1372908 0.02107202 0.2441142 +0.1606827 0.02107202 0.2441142 +0.1862481 0.02107202 0.2441142 +0.2140411 0.02107202 0.2441142 +0.2441142 0.02107202 0.2441142 +0.2765176 0.02107202 0.2441142 +0.3113005 0.02107202 0.2441142 +0.3485102 0.02107202 0.2441142 +0.388193 0.02107202 0.2441142 +0.4303934 0.02107202 0.2441142 +0.4751555 0.02107202 0.2441142 +0.5225216 0.02107202 0.2441142 +0.5725335 0.02107202 0.2441142 +0.6252316 0.02107202 0.2441142 +0.6806558 0.02107202 0.2441142 +0.7388448 0.02107202 0.2441142 +0.7998369 0.02107202 0.2441142 +0.8636691 0.02107202 0.2441142 +0.9303782 0.02107202 0.2441142 +1 0.02107202 0.2441142 +0 0.02934285 0.2441142 +0.002418731 0.02934285 0.2441142 +0.005155668 0.02934285 0.2441142 +0.009080105 0.02934285 0.2441142 +0.01434988 0.02934285 0.2441142 +0.02107202 0.02934285 0.2441142 +0.02934285 0.02934285 0.2441142 +0.03925039 0.02934285 0.2441142 +0.05087609 0.02934285 0.2441142 +0.06429595 0.02934285 0.2441142 +0.07958143 0.02934285 0.2441142 +0.0968001 0.02934285 0.2441142 +0.1160161 0.02934285 0.2441142 +0.1372908 0.02934285 0.2441142 +0.1606827 0.02934285 0.2441142 +0.1862481 0.02934285 0.2441142 +0.2140411 0.02934285 0.2441142 +0.2441142 0.02934285 0.2441142 +0.2765176 0.02934285 0.2441142 +0.3113005 0.02934285 0.2441142 +0.3485102 0.02934285 0.2441142 +0.388193 0.02934285 0.2441142 +0.4303934 0.02934285 0.2441142 +0.4751555 0.02934285 0.2441142 +0.5225216 0.02934285 0.2441142 +0.5725335 0.02934285 0.2441142 +0.6252316 0.02934285 0.2441142 +0.6806558 0.02934285 0.2441142 +0.7388448 0.02934285 0.2441142 +0.7998369 0.02934285 0.2441142 +0.8636691 0.02934285 0.2441142 +0.9303782 0.02934285 0.2441142 +1 0.02934285 0.2441142 +0 0.03925039 0.2441142 +0.002418731 0.03925039 0.2441142 +0.005155668 0.03925039 0.2441142 +0.009080105 0.03925039 0.2441142 +0.01434988 0.03925039 0.2441142 +0.02107202 0.03925039 0.2441142 +0.02934285 0.03925039 0.2441142 +0.03925039 0.03925039 0.2441142 +0.05087609 0.03925039 0.2441142 +0.06429595 0.03925039 0.2441142 +0.07958143 0.03925039 0.2441142 +0.0968001 0.03925039 0.2441142 +0.1160161 0.03925039 0.2441142 +0.1372908 0.03925039 0.2441142 +0.1606827 0.03925039 0.2441142 +0.1862481 0.03925039 0.2441142 +0.2140411 0.03925039 0.2441142 +0.2441142 0.03925039 0.2441142 +0.2765176 0.03925039 0.2441142 +0.3113005 0.03925039 0.2441142 +0.3485102 0.03925039 0.2441142 +0.388193 0.03925039 0.2441142 +0.4303934 0.03925039 0.2441142 +0.4751555 0.03925039 0.2441142 +0.5225216 0.03925039 0.2441142 +0.5725335 0.03925039 0.2441142 +0.6252316 0.03925039 0.2441142 +0.6806558 0.03925039 0.2441142 +0.7388448 0.03925039 0.2441142 +0.7998369 0.03925039 0.2441142 +0.8636691 0.03925039 0.2441142 +0.9303782 0.03925039 0.2441142 +1 0.03925039 0.2441142 +0 0.05087609 0.2441142 +0.002418731 0.05087609 0.2441142 +0.005155668 0.05087609 0.2441142 +0.009080105 0.05087609 0.2441142 +0.01434988 0.05087609 0.2441142 +0.02107202 0.05087609 0.2441142 +0.02934285 0.05087609 0.2441142 +0.03925039 0.05087609 0.2441142 +0.05087609 0.05087609 0.2441142 +0.06429595 0.05087609 0.2441142 +0.07958143 0.05087609 0.2441142 +0.0968001 0.05087609 0.2441142 +0.1160161 0.05087609 0.2441142 +0.1372908 0.05087609 0.2441142 +0.1606827 0.05087609 0.2441142 +0.1862481 0.05087609 0.2441142 +0.2140411 0.05087609 0.2441142 +0.2441142 0.05087609 0.2441142 +0.2765176 0.05087609 0.2441142 +0.3113005 0.05087609 0.2441142 +0.3485102 0.05087609 0.2441142 +0.388193 0.05087609 0.2441142 +0.4303934 0.05087609 0.2441142 +0.4751555 0.05087609 0.2441142 +0.5225216 0.05087609 0.2441142 +0.5725335 0.05087609 0.2441142 +0.6252316 0.05087609 0.2441142 +0.6806558 0.05087609 0.2441142 +0.7388448 0.05087609 0.2441142 +0.7998369 0.05087609 0.2441142 +0.8636691 0.05087609 0.2441142 +0.9303782 0.05087609 0.2441142 +1 0.05087609 0.2441142 +0 0.06429595 0.2441142 +0.002418731 0.06429595 0.2441142 +0.005155668 0.06429595 0.2441142 +0.009080105 0.06429595 0.2441142 +0.01434988 0.06429595 0.2441142 +0.02107202 0.06429595 0.2441142 +0.02934285 0.06429595 0.2441142 +0.03925039 0.06429595 0.2441142 +0.05087609 0.06429595 0.2441142 +0.06429595 0.06429595 0.2441142 +0.07958143 0.06429595 0.2441142 +0.0968001 0.06429595 0.2441142 +0.1160161 0.06429595 0.2441142 +0.1372908 0.06429595 0.2441142 +0.1606827 0.06429595 0.2441142 +0.1862481 0.06429595 0.2441142 +0.2140411 0.06429595 0.2441142 +0.2441142 0.06429595 0.2441142 +0.2765176 0.06429595 0.2441142 +0.3113005 0.06429595 0.2441142 +0.3485102 0.06429595 0.2441142 +0.388193 0.06429595 0.2441142 +0.4303934 0.06429595 0.2441142 +0.4751555 0.06429595 0.2441142 +0.5225216 0.06429595 0.2441142 +0.5725335 0.06429595 0.2441142 +0.6252316 0.06429595 0.2441142 +0.6806558 0.06429595 0.2441142 +0.7388448 0.06429595 0.2441142 +0.7998369 0.06429595 0.2441142 +0.8636691 0.06429595 0.2441142 +0.9303782 0.06429595 0.2441142 +1 0.06429595 0.2441142 +0 0.07958143 0.2441142 +0.002418731 0.07958143 0.2441142 +0.005155668 0.07958143 0.2441142 +0.009080105 0.07958143 0.2441142 +0.01434988 0.07958143 0.2441142 +0.02107202 0.07958143 0.2441142 +0.02934285 0.07958143 0.2441142 +0.03925039 0.07958143 0.2441142 +0.05087609 0.07958143 0.2441142 +0.06429595 0.07958143 0.2441142 +0.07958143 0.07958143 0.2441142 +0.0968001 0.07958143 0.2441142 +0.1160161 0.07958143 0.2441142 +0.1372908 0.07958143 0.2441142 +0.1606827 0.07958143 0.2441142 +0.1862481 0.07958143 0.2441142 +0.2140411 0.07958143 0.2441142 +0.2441142 0.07958143 0.2441142 +0.2765176 0.07958143 0.2441142 +0.3113005 0.07958143 0.2441142 +0.3485102 0.07958143 0.2441142 +0.388193 0.07958143 0.2441142 +0.4303934 0.07958143 0.2441142 +0.4751555 0.07958143 0.2441142 +0.5225216 0.07958143 0.2441142 +0.5725335 0.07958143 0.2441142 +0.6252316 0.07958143 0.2441142 +0.6806558 0.07958143 0.2441142 +0.7388448 0.07958143 0.2441142 +0.7998369 0.07958143 0.2441142 +0.8636691 0.07958143 0.2441142 +0.9303782 0.07958143 0.2441142 +1 0.07958143 0.2441142 +0 0.0968001 0.2441142 +0.002418731 0.0968001 0.2441142 +0.005155668 0.0968001 0.2441142 +0.009080105 0.0968001 0.2441142 +0.01434988 0.0968001 0.2441142 +0.02107202 0.0968001 0.2441142 +0.02934285 0.0968001 0.2441142 +0.03925039 0.0968001 0.2441142 +0.05087609 0.0968001 0.2441142 +0.06429595 0.0968001 0.2441142 +0.07958143 0.0968001 0.2441142 +0.0968001 0.0968001 0.2441142 +0.1160161 0.0968001 0.2441142 +0.1372908 0.0968001 0.2441142 +0.1606827 0.0968001 0.2441142 +0.1862481 0.0968001 0.2441142 +0.2140411 0.0968001 0.2441142 +0.2441142 0.0968001 0.2441142 +0.2765176 0.0968001 0.2441142 +0.3113005 0.0968001 0.2441142 +0.3485102 0.0968001 0.2441142 +0.388193 0.0968001 0.2441142 +0.4303934 0.0968001 0.2441142 +0.4751555 0.0968001 0.2441142 +0.5225216 0.0968001 0.2441142 +0.5725335 0.0968001 0.2441142 +0.6252316 0.0968001 0.2441142 +0.6806558 0.0968001 0.2441142 +0.7388448 0.0968001 0.2441142 +0.7998369 0.0968001 0.2441142 +0.8636691 0.0968001 0.2441142 +0.9303782 0.0968001 0.2441142 +1 0.0968001 0.2441142 +0 0.1160161 0.2441142 +0.002418731 0.1160161 0.2441142 +0.005155668 0.1160161 0.2441142 +0.009080105 0.1160161 0.2441142 +0.01434988 0.1160161 0.2441142 +0.02107202 0.1160161 0.2441142 +0.02934285 0.1160161 0.2441142 +0.03925039 0.1160161 0.2441142 +0.05087609 0.1160161 0.2441142 +0.06429595 0.1160161 0.2441142 +0.07958143 0.1160161 0.2441142 +0.0968001 0.1160161 0.2441142 +0.1160161 0.1160161 0.2441142 +0.1372908 0.1160161 0.2441142 +0.1606827 0.1160161 0.2441142 +0.1862481 0.1160161 0.2441142 +0.2140411 0.1160161 0.2441142 +0.2441142 0.1160161 0.2441142 +0.2765176 0.1160161 0.2441142 +0.3113005 0.1160161 0.2441142 +0.3485102 0.1160161 0.2441142 +0.388193 0.1160161 0.2441142 +0.4303934 0.1160161 0.2441142 +0.4751555 0.1160161 0.2441142 +0.5225216 0.1160161 0.2441142 +0.5725335 0.1160161 0.2441142 +0.6252316 0.1160161 0.2441142 +0.6806558 0.1160161 0.2441142 +0.7388448 0.1160161 0.2441142 +0.7998369 0.1160161 0.2441142 +0.8636691 0.1160161 0.2441142 +0.9303782 0.1160161 0.2441142 +1 0.1160161 0.2441142 +0 0.1372908 0.2441142 +0.002418731 0.1372908 0.2441142 +0.005155668 0.1372908 0.2441142 +0.009080105 0.1372908 0.2441142 +0.01434988 0.1372908 0.2441142 +0.02107202 0.1372908 0.2441142 +0.02934285 0.1372908 0.2441142 +0.03925039 0.1372908 0.2441142 +0.05087609 0.1372908 0.2441142 +0.06429595 0.1372908 0.2441142 +0.07958143 0.1372908 0.2441142 +0.0968001 0.1372908 0.2441142 +0.1160161 0.1372908 0.2441142 +0.1372908 0.1372908 0.2441142 +0.1606827 0.1372908 0.2441142 +0.1862481 0.1372908 0.2441142 +0.2140411 0.1372908 0.2441142 +0.2441142 0.1372908 0.2441142 +0.2765176 0.1372908 0.2441142 +0.3113005 0.1372908 0.2441142 +0.3485102 0.1372908 0.2441142 +0.388193 0.1372908 0.2441142 +0.4303934 0.1372908 0.2441142 +0.4751555 0.1372908 0.2441142 +0.5225216 0.1372908 0.2441142 +0.5725335 0.1372908 0.2441142 +0.6252316 0.1372908 0.2441142 +0.6806558 0.1372908 0.2441142 +0.7388448 0.1372908 0.2441142 +0.7998369 0.1372908 0.2441142 +0.8636691 0.1372908 0.2441142 +0.9303782 0.1372908 0.2441142 +1 0.1372908 0.2441142 +0 0.1606827 0.2441142 +0.002418731 0.1606827 0.2441142 +0.005155668 0.1606827 0.2441142 +0.009080105 0.1606827 0.2441142 +0.01434988 0.1606827 0.2441142 +0.02107202 0.1606827 0.2441142 +0.02934285 0.1606827 0.2441142 +0.03925039 0.1606827 0.2441142 +0.05087609 0.1606827 0.2441142 +0.06429595 0.1606827 0.2441142 +0.07958143 0.1606827 0.2441142 +0.0968001 0.1606827 0.2441142 +0.1160161 0.1606827 0.2441142 +0.1372908 0.1606827 0.2441142 +0.1606827 0.1606827 0.2441142 +0.1862481 0.1606827 0.2441142 +0.2140411 0.1606827 0.2441142 +0.2441142 0.1606827 0.2441142 +0.2765176 0.1606827 0.2441142 +0.3113005 0.1606827 0.2441142 +0.3485102 0.1606827 0.2441142 +0.388193 0.1606827 0.2441142 +0.4303934 0.1606827 0.2441142 +0.4751555 0.1606827 0.2441142 +0.5225216 0.1606827 0.2441142 +0.5725335 0.1606827 0.2441142 +0.6252316 0.1606827 0.2441142 +0.6806558 0.1606827 0.2441142 +0.7388448 0.1606827 0.2441142 +0.7998369 0.1606827 0.2441142 +0.8636691 0.1606827 0.2441142 +0.9303782 0.1606827 0.2441142 +1 0.1606827 0.2441142 +0 0.1862481 0.2441142 +0.002418731 0.1862481 0.2441142 +0.005155668 0.1862481 0.2441142 +0.009080105 0.1862481 0.2441142 +0.01434988 0.1862481 0.2441142 +0.02107202 0.1862481 0.2441142 +0.02934285 0.1862481 0.2441142 +0.03925039 0.1862481 0.2441142 +0.05087609 0.1862481 0.2441142 +0.06429595 0.1862481 0.2441142 +0.07958143 0.1862481 0.2441142 +0.0968001 0.1862481 0.2441142 +0.1160161 0.1862481 0.2441142 +0.1372908 0.1862481 0.2441142 +0.1606827 0.1862481 0.2441142 +0.1862481 0.1862481 0.2441142 +0.2140411 0.1862481 0.2441142 +0.2441142 0.1862481 0.2441142 +0.2765176 0.1862481 0.2441142 +0.3113005 0.1862481 0.2441142 +0.3485102 0.1862481 0.2441142 +0.388193 0.1862481 0.2441142 +0.4303934 0.1862481 0.2441142 +0.4751555 0.1862481 0.2441142 +0.5225216 0.1862481 0.2441142 +0.5725335 0.1862481 0.2441142 +0.6252316 0.1862481 0.2441142 +0.6806558 0.1862481 0.2441142 +0.7388448 0.1862481 0.2441142 +0.7998369 0.1862481 0.2441142 +0.8636691 0.1862481 0.2441142 +0.9303782 0.1862481 0.2441142 +1 0.1862481 0.2441142 +0 0.2140411 0.2441142 +0.002418731 0.2140411 0.2441142 +0.005155668 0.2140411 0.2441142 +0.009080105 0.2140411 0.2441142 +0.01434988 0.2140411 0.2441142 +0.02107202 0.2140411 0.2441142 +0.02934285 0.2140411 0.2441142 +0.03925039 0.2140411 0.2441142 +0.05087609 0.2140411 0.2441142 +0.06429595 0.2140411 0.2441142 +0.07958143 0.2140411 0.2441142 +0.0968001 0.2140411 0.2441142 +0.1160161 0.2140411 0.2441142 +0.1372908 0.2140411 0.2441142 +0.1606827 0.2140411 0.2441142 +0.1862481 0.2140411 0.2441142 +0.2140411 0.2140411 0.2441142 +0.2441142 0.2140411 0.2441142 +0.2765176 0.2140411 0.2441142 +0.3113005 0.2140411 0.2441142 +0.3485102 0.2140411 0.2441142 +0.388193 0.2140411 0.2441142 +0.4303934 0.2140411 0.2441142 +0.4751555 0.2140411 0.2441142 +0.5225216 0.2140411 0.2441142 +0.5725335 0.2140411 0.2441142 +0.6252316 0.2140411 0.2441142 +0.6806558 0.2140411 0.2441142 +0.7388448 0.2140411 0.2441142 +0.7998369 0.2140411 0.2441142 +0.8636691 0.2140411 0.2441142 +0.9303782 0.2140411 0.2441142 +1 0.2140411 0.2441142 +0 0.2441142 0.2441142 +0.002418731 0.2441142 0.2441142 +0.005155668 0.2441142 0.2441142 +0.009080105 0.2441142 0.2441142 +0.01434988 0.2441142 0.2441142 +0.02107202 0.2441142 0.2441142 +0.02934285 0.2441142 0.2441142 +0.03925039 0.2441142 0.2441142 +0.05087609 0.2441142 0.2441142 +0.06429595 0.2441142 0.2441142 +0.07958143 0.2441142 0.2441142 +0.0968001 0.2441142 0.2441142 +0.1160161 0.2441142 0.2441142 +0.1372908 0.2441142 0.2441142 +0.1606827 0.2441142 0.2441142 +0.1862481 0.2441142 0.2441142 +0.2140411 0.2441142 0.2441142 +0.2441142 0.2441142 0.2441142 +0.2765176 0.2441142 0.2441142 +0.3113005 0.2441142 0.2441142 +0.3485102 0.2441142 0.2441142 +0.388193 0.2441142 0.2441142 +0.4303934 0.2441142 0.2441142 +0.4751555 0.2441142 0.2441142 +0.5225216 0.2441142 0.2441142 +0.5725335 0.2441142 0.2441142 +0.6252316 0.2441142 0.2441142 +0.6806558 0.2441142 0.2441142 +0.7388448 0.2441142 0.2441142 +0.7998369 0.2441142 0.2441142 +0.8636691 0.2441142 0.2441142 +0.9303782 0.2441142 0.2441142 +1 0.2441142 0.2441142 +0 0.2765176 0.2441142 +0.002418731 0.2765176 0.2441142 +0.005155668 0.2765176 0.2441142 +0.009080105 0.2765176 0.2441142 +0.01434988 0.2765176 0.2441142 +0.02107202 0.2765176 0.2441142 +0.02934285 0.2765176 0.2441142 +0.03925039 0.2765176 0.2441142 +0.05087609 0.2765176 0.2441142 +0.06429595 0.2765176 0.2441142 +0.07958143 0.2765176 0.2441142 +0.0968001 0.2765176 0.2441142 +0.1160161 0.2765176 0.2441142 +0.1372908 0.2765176 0.2441142 +0.1606827 0.2765176 0.2441142 +0.1862481 0.2765176 0.2441142 +0.2140411 0.2765176 0.2441142 +0.2441142 0.2765176 0.2441142 +0.2765176 0.2765176 0.2441142 +0.3113005 0.2765176 0.2441142 +0.3485102 0.2765176 0.2441142 +0.388193 0.2765176 0.2441142 +0.4303934 0.2765176 0.2441142 +0.4751555 0.2765176 0.2441142 +0.5225216 0.2765176 0.2441142 +0.5725335 0.2765176 0.2441142 +0.6252316 0.2765176 0.2441142 +0.6806558 0.2765176 0.2441142 +0.7388448 0.2765176 0.2441142 +0.7998369 0.2765176 0.2441142 +0.8636691 0.2765176 0.2441142 +0.9303782 0.2765176 0.2441142 +1 0.2765176 0.2441142 +0 0.3113005 0.2441142 +0.002418731 0.3113005 0.2441142 +0.005155668 0.3113005 0.2441142 +0.009080105 0.3113005 0.2441142 +0.01434988 0.3113005 0.2441142 +0.02107202 0.3113005 0.2441142 +0.02934285 0.3113005 0.2441142 +0.03925039 0.3113005 0.2441142 +0.05087609 0.3113005 0.2441142 +0.06429595 0.3113005 0.2441142 +0.07958143 0.3113005 0.2441142 +0.0968001 0.3113005 0.2441142 +0.1160161 0.3113005 0.2441142 +0.1372908 0.3113005 0.2441142 +0.1606827 0.3113005 0.2441142 +0.1862481 0.3113005 0.2441142 +0.2140411 0.3113005 0.2441142 +0.2441142 0.3113005 0.2441142 +0.2765176 0.3113005 0.2441142 +0.3113005 0.3113005 0.2441142 +0.3485102 0.3113005 0.2441142 +0.388193 0.3113005 0.2441142 +0.4303934 0.3113005 0.2441142 +0.4751555 0.3113005 0.2441142 +0.5225216 0.3113005 0.2441142 +0.5725335 0.3113005 0.2441142 +0.6252316 0.3113005 0.2441142 +0.6806558 0.3113005 0.2441142 +0.7388448 0.3113005 0.2441142 +0.7998369 0.3113005 0.2441142 +0.8636691 0.3113005 0.2441142 +0.9303782 0.3113005 0.2441142 +1 0.3113005 0.2441142 +0 0.3485102 0.2441142 +0.002418731 0.3485102 0.2441142 +0.005155668 0.3485102 0.2441142 +0.009080105 0.3485102 0.2441142 +0.01434988 0.3485102 0.2441142 +0.02107202 0.3485102 0.2441142 +0.02934285 0.3485102 0.2441142 +0.03925039 0.3485102 0.2441142 +0.05087609 0.3485102 0.2441142 +0.06429595 0.3485102 0.2441142 +0.07958143 0.3485102 0.2441142 +0.0968001 0.3485102 0.2441142 +0.1160161 0.3485102 0.2441142 +0.1372908 0.3485102 0.2441142 +0.1606827 0.3485102 0.2441142 +0.1862481 0.3485102 0.2441142 +0.2140411 0.3485102 0.2441142 +0.2441142 0.3485102 0.2441142 +0.2765176 0.3485102 0.2441142 +0.3113005 0.3485102 0.2441142 +0.3485102 0.3485102 0.2441142 +0.388193 0.3485102 0.2441142 +0.4303934 0.3485102 0.2441142 +0.4751555 0.3485102 0.2441142 +0.5225216 0.3485102 0.2441142 +0.5725335 0.3485102 0.2441142 +0.6252316 0.3485102 0.2441142 +0.6806558 0.3485102 0.2441142 +0.7388448 0.3485102 0.2441142 +0.7998369 0.3485102 0.2441142 +0.8636691 0.3485102 0.2441142 +0.9303782 0.3485102 0.2441142 +1 0.3485102 0.2441142 +0 0.388193 0.2441142 +0.002418731 0.388193 0.2441142 +0.005155668 0.388193 0.2441142 +0.009080105 0.388193 0.2441142 +0.01434988 0.388193 0.2441142 +0.02107202 0.388193 0.2441142 +0.02934285 0.388193 0.2441142 +0.03925039 0.388193 0.2441142 +0.05087609 0.388193 0.2441142 +0.06429595 0.388193 0.2441142 +0.07958143 0.388193 0.2441142 +0.0968001 0.388193 0.2441142 +0.1160161 0.388193 0.2441142 +0.1372908 0.388193 0.2441142 +0.1606827 0.388193 0.2441142 +0.1862481 0.388193 0.2441142 +0.2140411 0.388193 0.2441142 +0.2441142 0.388193 0.2441142 +0.2765176 0.388193 0.2441142 +0.3113005 0.388193 0.2441142 +0.3485102 0.388193 0.2441142 +0.388193 0.388193 0.2441142 +0.4303934 0.388193 0.2441142 +0.4751555 0.388193 0.2441142 +0.5225216 0.388193 0.2441142 +0.5725335 0.388193 0.2441142 +0.6252316 0.388193 0.2441142 +0.6806558 0.388193 0.2441142 +0.7388448 0.388193 0.2441142 +0.7998369 0.388193 0.2441142 +0.8636691 0.388193 0.2441142 +0.9303782 0.388193 0.2441142 +1 0.388193 0.2441142 +0 0.4303934 0.2441142 +0.002418731 0.4303934 0.2441142 +0.005155668 0.4303934 0.2441142 +0.009080105 0.4303934 0.2441142 +0.01434988 0.4303934 0.2441142 +0.02107202 0.4303934 0.2441142 +0.02934285 0.4303934 0.2441142 +0.03925039 0.4303934 0.2441142 +0.05087609 0.4303934 0.2441142 +0.06429595 0.4303934 0.2441142 +0.07958143 0.4303934 0.2441142 +0.0968001 0.4303934 0.2441142 +0.1160161 0.4303934 0.2441142 +0.1372908 0.4303934 0.2441142 +0.1606827 0.4303934 0.2441142 +0.1862481 0.4303934 0.2441142 +0.2140411 0.4303934 0.2441142 +0.2441142 0.4303934 0.2441142 +0.2765176 0.4303934 0.2441142 +0.3113005 0.4303934 0.2441142 +0.3485102 0.4303934 0.2441142 +0.388193 0.4303934 0.2441142 +0.4303934 0.4303934 0.2441142 +0.4751555 0.4303934 0.2441142 +0.5225216 0.4303934 0.2441142 +0.5725335 0.4303934 0.2441142 +0.6252316 0.4303934 0.2441142 +0.6806558 0.4303934 0.2441142 +0.7388448 0.4303934 0.2441142 +0.7998369 0.4303934 0.2441142 +0.8636691 0.4303934 0.2441142 +0.9303782 0.4303934 0.2441142 +1 0.4303934 0.2441142 +0 0.4751555 0.2441142 +0.002418731 0.4751555 0.2441142 +0.005155668 0.4751555 0.2441142 +0.009080105 0.4751555 0.2441142 +0.01434988 0.4751555 0.2441142 +0.02107202 0.4751555 0.2441142 +0.02934285 0.4751555 0.2441142 +0.03925039 0.4751555 0.2441142 +0.05087609 0.4751555 0.2441142 +0.06429595 0.4751555 0.2441142 +0.07958143 0.4751555 0.2441142 +0.0968001 0.4751555 0.2441142 +0.1160161 0.4751555 0.2441142 +0.1372908 0.4751555 0.2441142 +0.1606827 0.4751555 0.2441142 +0.1862481 0.4751555 0.2441142 +0.2140411 0.4751555 0.2441142 +0.2441142 0.4751555 0.2441142 +0.2765176 0.4751555 0.2441142 +0.3113005 0.4751555 0.2441142 +0.3485102 0.4751555 0.2441142 +0.388193 0.4751555 0.2441142 +0.4303934 0.4751555 0.2441142 +0.4751555 0.4751555 0.2441142 +0.5225216 0.4751555 0.2441142 +0.5725335 0.4751555 0.2441142 +0.6252316 0.4751555 0.2441142 +0.6806558 0.4751555 0.2441142 +0.7388448 0.4751555 0.2441142 +0.7998369 0.4751555 0.2441142 +0.8636691 0.4751555 0.2441142 +0.9303782 0.4751555 0.2441142 +1 0.4751555 0.2441142 +0 0.5225216 0.2441142 +0.002418731 0.5225216 0.2441142 +0.005155668 0.5225216 0.2441142 +0.009080105 0.5225216 0.2441142 +0.01434988 0.5225216 0.2441142 +0.02107202 0.5225216 0.2441142 +0.02934285 0.5225216 0.2441142 +0.03925039 0.5225216 0.2441142 +0.05087609 0.5225216 0.2441142 +0.06429595 0.5225216 0.2441142 +0.07958143 0.5225216 0.2441142 +0.0968001 0.5225216 0.2441142 +0.1160161 0.5225216 0.2441142 +0.1372908 0.5225216 0.2441142 +0.1606827 0.5225216 0.2441142 +0.1862481 0.5225216 0.2441142 +0.2140411 0.5225216 0.2441142 +0.2441142 0.5225216 0.2441142 +0.2765176 0.5225216 0.2441142 +0.3113005 0.5225216 0.2441142 +0.3485102 0.5225216 0.2441142 +0.388193 0.5225216 0.2441142 +0.4303934 0.5225216 0.2441142 +0.4751555 0.5225216 0.2441142 +0.5225216 0.5225216 0.2441142 +0.5725335 0.5225216 0.2441142 +0.6252316 0.5225216 0.2441142 +0.6806558 0.5225216 0.2441142 +0.7388448 0.5225216 0.2441142 +0.7998369 0.5225216 0.2441142 +0.8636691 0.5225216 0.2441142 +0.9303782 0.5225216 0.2441142 +1 0.5225216 0.2441142 +0 0.5725335 0.2441142 +0.002418731 0.5725335 0.2441142 +0.005155668 0.5725335 0.2441142 +0.009080105 0.5725335 0.2441142 +0.01434988 0.5725335 0.2441142 +0.02107202 0.5725335 0.2441142 +0.02934285 0.5725335 0.2441142 +0.03925039 0.5725335 0.2441142 +0.05087609 0.5725335 0.2441142 +0.06429595 0.5725335 0.2441142 +0.07958143 0.5725335 0.2441142 +0.0968001 0.5725335 0.2441142 +0.1160161 0.5725335 0.2441142 +0.1372908 0.5725335 0.2441142 +0.1606827 0.5725335 0.2441142 +0.1862481 0.5725335 0.2441142 +0.2140411 0.5725335 0.2441142 +0.2441142 0.5725335 0.2441142 +0.2765176 0.5725335 0.2441142 +0.3113005 0.5725335 0.2441142 +0.3485102 0.5725335 0.2441142 +0.388193 0.5725335 0.2441142 +0.4303934 0.5725335 0.2441142 +0.4751555 0.5725335 0.2441142 +0.5225216 0.5725335 0.2441142 +0.5725335 0.5725335 0.2441142 +0.6252316 0.5725335 0.2441142 +0.6806558 0.5725335 0.2441142 +0.7388448 0.5725335 0.2441142 +0.7998369 0.5725335 0.2441142 +0.8636691 0.5725335 0.2441142 +0.9303782 0.5725335 0.2441142 +1 0.5725335 0.2441142 +0 0.6252316 0.2441142 +0.002418731 0.6252316 0.2441142 +0.005155668 0.6252316 0.2441142 +0.009080105 0.6252316 0.2441142 +0.01434988 0.6252316 0.2441142 +0.02107202 0.6252316 0.2441142 +0.02934285 0.6252316 0.2441142 +0.03925039 0.6252316 0.2441142 +0.05087609 0.6252316 0.2441142 +0.06429595 0.6252316 0.2441142 +0.07958143 0.6252316 0.2441142 +0.0968001 0.6252316 0.2441142 +0.1160161 0.6252316 0.2441142 +0.1372908 0.6252316 0.2441142 +0.1606827 0.6252316 0.2441142 +0.1862481 0.6252316 0.2441142 +0.2140411 0.6252316 0.2441142 +0.2441142 0.6252316 0.2441142 +0.2765176 0.6252316 0.2441142 +0.3113005 0.6252316 0.2441142 +0.3485102 0.6252316 0.2441142 +0.388193 0.6252316 0.2441142 +0.4303934 0.6252316 0.2441142 +0.4751555 0.6252316 0.2441142 +0.5225216 0.6252316 0.2441142 +0.5725335 0.6252316 0.2441142 +0.6252316 0.6252316 0.2441142 +0.6806558 0.6252316 0.2441142 +0.7388448 0.6252316 0.2441142 +0.7998369 0.6252316 0.2441142 +0.8636691 0.6252316 0.2441142 +0.9303782 0.6252316 0.2441142 +1 0.6252316 0.2441142 +0 0.6806558 0.2441142 +0.002418731 0.6806558 0.2441142 +0.005155668 0.6806558 0.2441142 +0.009080105 0.6806558 0.2441142 +0.01434988 0.6806558 0.2441142 +0.02107202 0.6806558 0.2441142 +0.02934285 0.6806558 0.2441142 +0.03925039 0.6806558 0.2441142 +0.05087609 0.6806558 0.2441142 +0.06429595 0.6806558 0.2441142 +0.07958143 0.6806558 0.2441142 +0.0968001 0.6806558 0.2441142 +0.1160161 0.6806558 0.2441142 +0.1372908 0.6806558 0.2441142 +0.1606827 0.6806558 0.2441142 +0.1862481 0.6806558 0.2441142 +0.2140411 0.6806558 0.2441142 +0.2441142 0.6806558 0.2441142 +0.2765176 0.6806558 0.2441142 +0.3113005 0.6806558 0.2441142 +0.3485102 0.6806558 0.2441142 +0.388193 0.6806558 0.2441142 +0.4303934 0.6806558 0.2441142 +0.4751555 0.6806558 0.2441142 +0.5225216 0.6806558 0.2441142 +0.5725335 0.6806558 0.2441142 +0.6252316 0.6806558 0.2441142 +0.6806558 0.6806558 0.2441142 +0.7388448 0.6806558 0.2441142 +0.7998369 0.6806558 0.2441142 +0.8636691 0.6806558 0.2441142 +0.9303782 0.6806558 0.2441142 +1 0.6806558 0.2441142 +0 0.7388448 0.2441142 +0.002418731 0.7388448 0.2441142 +0.005155668 0.7388448 0.2441142 +0.009080105 0.7388448 0.2441142 +0.01434988 0.7388448 0.2441142 +0.02107202 0.7388448 0.2441142 +0.02934285 0.7388448 0.2441142 +0.03925039 0.7388448 0.2441142 +0.05087609 0.7388448 0.2441142 +0.06429595 0.7388448 0.2441142 +0.07958143 0.7388448 0.2441142 +0.0968001 0.7388448 0.2441142 +0.1160161 0.7388448 0.2441142 +0.1372908 0.7388448 0.2441142 +0.1606827 0.7388448 0.2441142 +0.1862481 0.7388448 0.2441142 +0.2140411 0.7388448 0.2441142 +0.2441142 0.7388448 0.2441142 +0.2765176 0.7388448 0.2441142 +0.3113005 0.7388448 0.2441142 +0.3485102 0.7388448 0.2441142 +0.388193 0.7388448 0.2441142 +0.4303934 0.7388448 0.2441142 +0.4751555 0.7388448 0.2441142 +0.5225216 0.7388448 0.2441142 +0.5725335 0.7388448 0.2441142 +0.6252316 0.7388448 0.2441142 +0.6806558 0.7388448 0.2441142 +0.7388448 0.7388448 0.2441142 +0.7998369 0.7388448 0.2441142 +0.8636691 0.7388448 0.2441142 +0.9303782 0.7388448 0.2441142 +1 0.7388448 0.2441142 +0 0.7998369 0.2441142 +0.002418731 0.7998369 0.2441142 +0.005155668 0.7998369 0.2441142 +0.009080105 0.7998369 0.2441142 +0.01434988 0.7998369 0.2441142 +0.02107202 0.7998369 0.2441142 +0.02934285 0.7998369 0.2441142 +0.03925039 0.7998369 0.2441142 +0.05087609 0.7998369 0.2441142 +0.06429595 0.7998369 0.2441142 +0.07958143 0.7998369 0.2441142 +0.0968001 0.7998369 0.2441142 +0.1160161 0.7998369 0.2441142 +0.1372908 0.7998369 0.2441142 +0.1606827 0.7998369 0.2441142 +0.1862481 0.7998369 0.2441142 +0.2140411 0.7998369 0.2441142 +0.2441142 0.7998369 0.2441142 +0.2765176 0.7998369 0.2441142 +0.3113005 0.7998369 0.2441142 +0.3485102 0.7998369 0.2441142 +0.388193 0.7998369 0.2441142 +0.4303934 0.7998369 0.2441142 +0.4751555 0.7998369 0.2441142 +0.5225216 0.7998369 0.2441142 +0.5725335 0.7998369 0.2441142 +0.6252316 0.7998369 0.2441142 +0.6806558 0.7998369 0.2441142 +0.7388448 0.7998369 0.2441142 +0.7998369 0.7998369 0.2441142 +0.8636691 0.7998369 0.2441142 +0.9303782 0.7998369 0.2441142 +1 0.7998369 0.2441142 +0 0.8636691 0.2441142 +0.002418731 0.8636691 0.2441142 +0.005155668 0.8636691 0.2441142 +0.009080105 0.8636691 0.2441142 +0.01434988 0.8636691 0.2441142 +0.02107202 0.8636691 0.2441142 +0.02934285 0.8636691 0.2441142 +0.03925039 0.8636691 0.2441142 +0.05087609 0.8636691 0.2441142 +0.06429595 0.8636691 0.2441142 +0.07958143 0.8636691 0.2441142 +0.0968001 0.8636691 0.2441142 +0.1160161 0.8636691 0.2441142 +0.1372908 0.8636691 0.2441142 +0.1606827 0.8636691 0.2441142 +0.1862481 0.8636691 0.2441142 +0.2140411 0.8636691 0.2441142 +0.2441142 0.8636691 0.2441142 +0.2765176 0.8636691 0.2441142 +0.3113005 0.8636691 0.2441142 +0.3485102 0.8636691 0.2441142 +0.388193 0.8636691 0.2441142 +0.4303934 0.8636691 0.2441142 +0.4751555 0.8636691 0.2441142 +0.5225216 0.8636691 0.2441142 +0.5725335 0.8636691 0.2441142 +0.6252316 0.8636691 0.2441142 +0.6806558 0.8636691 0.2441142 +0.7388448 0.8636691 0.2441142 +0.7998369 0.8636691 0.2441142 +0.8636691 0.8636691 0.2441142 +0.9303782 0.8636691 0.2441142 +1 0.8636691 0.2441142 +0 0.9303782 0.2441142 +0.002418731 0.9303782 0.2441142 +0.005155668 0.9303782 0.2441142 +0.009080105 0.9303782 0.2441142 +0.01434988 0.9303782 0.2441142 +0.02107202 0.9303782 0.2441142 +0.02934285 0.9303782 0.2441142 +0.03925039 0.9303782 0.2441142 +0.05087609 0.9303782 0.2441142 +0.06429595 0.9303782 0.2441142 +0.07958143 0.9303782 0.2441142 +0.0968001 0.9303782 0.2441142 +0.1160161 0.9303782 0.2441142 +0.1372908 0.9303782 0.2441142 +0.1606827 0.9303782 0.2441142 +0.1862481 0.9303782 0.2441142 +0.2140411 0.9303782 0.2441142 +0.2441142 0.9303782 0.2441142 +0.2765176 0.9303782 0.2441142 +0.3113005 0.9303782 0.2441142 +0.3485102 0.9303782 0.2441142 +0.388193 0.9303782 0.2441142 +0.4303934 0.9303782 0.2441142 +0.4751555 0.9303782 0.2441142 +0.5225216 0.9303782 0.2441142 +0.5725335 0.9303782 0.2441142 +0.6252316 0.9303782 0.2441142 +0.6806558 0.9303782 0.2441142 +0.7388448 0.9303782 0.2441142 +0.7998369 0.9303782 0.2441142 +0.8636691 0.9303782 0.2441142 +0.9303782 0.9303782 0.2441142 +1 0.9303782 0.2441142 +0 1 0.2441142 +0.002418731 1 0.2441142 +0.005155668 1 0.2441142 +0.009080105 1 0.2441142 +0.01434988 1 0.2441142 +0.02107202 1 0.2441142 +0.02934285 1 0.2441142 +0.03925039 1 0.2441142 +0.05087609 1 0.2441142 +0.06429595 1 0.2441142 +0.07958143 1 0.2441142 +0.0968001 1 0.2441142 +0.1160161 1 0.2441142 +0.1372908 1 0.2441142 +0.1606827 1 0.2441142 +0.1862481 1 0.2441142 +0.2140411 1 0.2441142 +0.2441142 1 0.2441142 +0.2765176 1 0.2441142 +0.3113005 1 0.2441142 +0.3485102 1 0.2441142 +0.388193 1 0.2441142 +0.4303934 1 0.2441142 +0.4751555 1 0.2441142 +0.5225216 1 0.2441142 +0.5725335 1 0.2441142 +0.6252316 1 0.2441142 +0.6806558 1 0.2441142 +0.7388448 1 0.2441142 +0.7998369 1 0.2441142 +0.8636691 1 0.2441142 +0.9303782 1 0.2441142 +1 1 0.2441142 +0 0 0.2765176 +0.002418731 0 0.2765176 +0.005155668 0 0.2765176 +0.009080105 0 0.2765176 +0.01434988 0 0.2765176 +0.02107202 0 0.2765176 +0.02934285 0 0.2765176 +0.03925039 0 0.2765176 +0.05087609 0 0.2765176 +0.06429595 0 0.2765176 +0.07958143 0 0.2765176 +0.0968001 0 0.2765176 +0.1160161 0 0.2765176 +0.1372908 0 0.2765176 +0.1606827 0 0.2765176 +0.1862481 0 0.2765176 +0.2140411 0 0.2765176 +0.2441142 0 0.2765176 +0.2765176 0 0.2765176 +0.3113005 0 0.2765176 +0.3485102 0 0.2765176 +0.388193 0 0.2765176 +0.4303934 0 0.2765176 +0.4751555 0 0.2765176 +0.5225216 0 0.2765176 +0.5725335 0 0.2765176 +0.6252316 0 0.2765176 +0.6806558 0 0.2765176 +0.7388448 0 0.2765176 +0.7998369 0 0.2765176 +0.8636691 0 0.2765176 +0.9303782 0 0.2765176 +1 0 0.2765176 +0 0.002418731 0.2765176 +0.002418731 0.002418731 0.2765176 +0.005155668 0.002418731 0.2765176 +0.009080105 0.002418731 0.2765176 +0.01434988 0.002418731 0.2765176 +0.02107202 0.002418731 0.2765176 +0.02934285 0.002418731 0.2765176 +0.03925039 0.002418731 0.2765176 +0.05087609 0.002418731 0.2765176 +0.06429595 0.002418731 0.2765176 +0.07958143 0.002418731 0.2765176 +0.0968001 0.002418731 0.2765176 +0.1160161 0.002418731 0.2765176 +0.1372908 0.002418731 0.2765176 +0.1606827 0.002418731 0.2765176 +0.1862481 0.002418731 0.2765176 +0.2140411 0.002418731 0.2765176 +0.2441142 0.002418731 0.2765176 +0.2765176 0.002418731 0.2765176 +0.3113005 0.002418731 0.2765176 +0.3485102 0.002418731 0.2765176 +0.388193 0.002418731 0.2765176 +0.4303934 0.002418731 0.2765176 +0.4751555 0.002418731 0.2765176 +0.5225216 0.002418731 0.2765176 +0.5725335 0.002418731 0.2765176 +0.6252316 0.002418731 0.2765176 +0.6806558 0.002418731 0.2765176 +0.7388448 0.002418731 0.2765176 +0.7998369 0.002418731 0.2765176 +0.8636691 0.002418731 0.2765176 +0.9303782 0.002418731 0.2765176 +1 0.002418731 0.2765176 +0 0.005155668 0.2765176 +0.002418731 0.005155668 0.2765176 +0.005155668 0.005155668 0.2765176 +0.009080105 0.005155668 0.2765176 +0.01434988 0.005155668 0.2765176 +0.02107202 0.005155668 0.2765176 +0.02934285 0.005155668 0.2765176 +0.03925039 0.005155668 0.2765176 +0.05087609 0.005155668 0.2765176 +0.06429595 0.005155668 0.2765176 +0.07958143 0.005155668 0.2765176 +0.0968001 0.005155668 0.2765176 +0.1160161 0.005155668 0.2765176 +0.1372908 0.005155668 0.2765176 +0.1606827 0.005155668 0.2765176 +0.1862481 0.005155668 0.2765176 +0.2140411 0.005155668 0.2765176 +0.2441142 0.005155668 0.2765176 +0.2765176 0.005155668 0.2765176 +0.3113005 0.005155668 0.2765176 +0.3485102 0.005155668 0.2765176 +0.388193 0.005155668 0.2765176 +0.4303934 0.005155668 0.2765176 +0.4751555 0.005155668 0.2765176 +0.5225216 0.005155668 0.2765176 +0.5725335 0.005155668 0.2765176 +0.6252316 0.005155668 0.2765176 +0.6806558 0.005155668 0.2765176 +0.7388448 0.005155668 0.2765176 +0.7998369 0.005155668 0.2765176 +0.8636691 0.005155668 0.2765176 +0.9303782 0.005155668 0.2765176 +1 0.005155668 0.2765176 +0 0.009080105 0.2765176 +0.002418731 0.009080105 0.2765176 +0.005155668 0.009080105 0.2765176 +0.009080105 0.009080105 0.2765176 +0.01434988 0.009080105 0.2765176 +0.02107202 0.009080105 0.2765176 +0.02934285 0.009080105 0.2765176 +0.03925039 0.009080105 0.2765176 +0.05087609 0.009080105 0.2765176 +0.06429595 0.009080105 0.2765176 +0.07958143 0.009080105 0.2765176 +0.0968001 0.009080105 0.2765176 +0.1160161 0.009080105 0.2765176 +0.1372908 0.009080105 0.2765176 +0.1606827 0.009080105 0.2765176 +0.1862481 0.009080105 0.2765176 +0.2140411 0.009080105 0.2765176 +0.2441142 0.009080105 0.2765176 +0.2765176 0.009080105 0.2765176 +0.3113005 0.009080105 0.2765176 +0.3485102 0.009080105 0.2765176 +0.388193 0.009080105 0.2765176 +0.4303934 0.009080105 0.2765176 +0.4751555 0.009080105 0.2765176 +0.5225216 0.009080105 0.2765176 +0.5725335 0.009080105 0.2765176 +0.6252316 0.009080105 0.2765176 +0.6806558 0.009080105 0.2765176 +0.7388448 0.009080105 0.2765176 +0.7998369 0.009080105 0.2765176 +0.8636691 0.009080105 0.2765176 +0.9303782 0.009080105 0.2765176 +1 0.009080105 0.2765176 +0 0.01434988 0.2765176 +0.002418731 0.01434988 0.2765176 +0.005155668 0.01434988 0.2765176 +0.009080105 0.01434988 0.2765176 +0.01434988 0.01434988 0.2765176 +0.02107202 0.01434988 0.2765176 +0.02934285 0.01434988 0.2765176 +0.03925039 0.01434988 0.2765176 +0.05087609 0.01434988 0.2765176 +0.06429595 0.01434988 0.2765176 +0.07958143 0.01434988 0.2765176 +0.0968001 0.01434988 0.2765176 +0.1160161 0.01434988 0.2765176 +0.1372908 0.01434988 0.2765176 +0.1606827 0.01434988 0.2765176 +0.1862481 0.01434988 0.2765176 +0.2140411 0.01434988 0.2765176 +0.2441142 0.01434988 0.2765176 +0.2765176 0.01434988 0.2765176 +0.3113005 0.01434988 0.2765176 +0.3485102 0.01434988 0.2765176 +0.388193 0.01434988 0.2765176 +0.4303934 0.01434988 0.2765176 +0.4751555 0.01434988 0.2765176 +0.5225216 0.01434988 0.2765176 +0.5725335 0.01434988 0.2765176 +0.6252316 0.01434988 0.2765176 +0.6806558 0.01434988 0.2765176 +0.7388448 0.01434988 0.2765176 +0.7998369 0.01434988 0.2765176 +0.8636691 0.01434988 0.2765176 +0.9303782 0.01434988 0.2765176 +1 0.01434988 0.2765176 +0 0.02107202 0.2765176 +0.002418731 0.02107202 0.2765176 +0.005155668 0.02107202 0.2765176 +0.009080105 0.02107202 0.2765176 +0.01434988 0.02107202 0.2765176 +0.02107202 0.02107202 0.2765176 +0.02934285 0.02107202 0.2765176 +0.03925039 0.02107202 0.2765176 +0.05087609 0.02107202 0.2765176 +0.06429595 0.02107202 0.2765176 +0.07958143 0.02107202 0.2765176 +0.0968001 0.02107202 0.2765176 +0.1160161 0.02107202 0.2765176 +0.1372908 0.02107202 0.2765176 +0.1606827 0.02107202 0.2765176 +0.1862481 0.02107202 0.2765176 +0.2140411 0.02107202 0.2765176 +0.2441142 0.02107202 0.2765176 +0.2765176 0.02107202 0.2765176 +0.3113005 0.02107202 0.2765176 +0.3485102 0.02107202 0.2765176 +0.388193 0.02107202 0.2765176 +0.4303934 0.02107202 0.2765176 +0.4751555 0.02107202 0.2765176 +0.5225216 0.02107202 0.2765176 +0.5725335 0.02107202 0.2765176 +0.6252316 0.02107202 0.2765176 +0.6806558 0.02107202 0.2765176 +0.7388448 0.02107202 0.2765176 +0.7998369 0.02107202 0.2765176 +0.8636691 0.02107202 0.2765176 +0.9303782 0.02107202 0.2765176 +1 0.02107202 0.2765176 +0 0.02934285 0.2765176 +0.002418731 0.02934285 0.2765176 +0.005155668 0.02934285 0.2765176 +0.009080105 0.02934285 0.2765176 +0.01434988 0.02934285 0.2765176 +0.02107202 0.02934285 0.2765176 +0.02934285 0.02934285 0.2765176 +0.03925039 0.02934285 0.2765176 +0.05087609 0.02934285 0.2765176 +0.06429595 0.02934285 0.2765176 +0.07958143 0.02934285 0.2765176 +0.0968001 0.02934285 0.2765176 +0.1160161 0.02934285 0.2765176 +0.1372908 0.02934285 0.2765176 +0.1606827 0.02934285 0.2765176 +0.1862481 0.02934285 0.2765176 +0.2140411 0.02934285 0.2765176 +0.2441142 0.02934285 0.2765176 +0.2765176 0.02934285 0.2765176 +0.3113005 0.02934285 0.2765176 +0.3485102 0.02934285 0.2765176 +0.388193 0.02934285 0.2765176 +0.4303934 0.02934285 0.2765176 +0.4751555 0.02934285 0.2765176 +0.5225216 0.02934285 0.2765176 +0.5725335 0.02934285 0.2765176 +0.6252316 0.02934285 0.2765176 +0.6806558 0.02934285 0.2765176 +0.7388448 0.02934285 0.2765176 +0.7998369 0.02934285 0.2765176 +0.8636691 0.02934285 0.2765176 +0.9303782 0.02934285 0.2765176 +1 0.02934285 0.2765176 +0 0.03925039 0.2765176 +0.002418731 0.03925039 0.2765176 +0.005155668 0.03925039 0.2765176 +0.009080105 0.03925039 0.2765176 +0.01434988 0.03925039 0.2765176 +0.02107202 0.03925039 0.2765176 +0.02934285 0.03925039 0.2765176 +0.03925039 0.03925039 0.2765176 +0.05087609 0.03925039 0.2765176 +0.06429595 0.03925039 0.2765176 +0.07958143 0.03925039 0.2765176 +0.0968001 0.03925039 0.2765176 +0.1160161 0.03925039 0.2765176 +0.1372908 0.03925039 0.2765176 +0.1606827 0.03925039 0.2765176 +0.1862481 0.03925039 0.2765176 +0.2140411 0.03925039 0.2765176 +0.2441142 0.03925039 0.2765176 +0.2765176 0.03925039 0.2765176 +0.3113005 0.03925039 0.2765176 +0.3485102 0.03925039 0.2765176 +0.388193 0.03925039 0.2765176 +0.4303934 0.03925039 0.2765176 +0.4751555 0.03925039 0.2765176 +0.5225216 0.03925039 0.2765176 +0.5725335 0.03925039 0.2765176 +0.6252316 0.03925039 0.2765176 +0.6806558 0.03925039 0.2765176 +0.7388448 0.03925039 0.2765176 +0.7998369 0.03925039 0.2765176 +0.8636691 0.03925039 0.2765176 +0.9303782 0.03925039 0.2765176 +1 0.03925039 0.2765176 +0 0.05087609 0.2765176 +0.002418731 0.05087609 0.2765176 +0.005155668 0.05087609 0.2765176 +0.009080105 0.05087609 0.2765176 +0.01434988 0.05087609 0.2765176 +0.02107202 0.05087609 0.2765176 +0.02934285 0.05087609 0.2765176 +0.03925039 0.05087609 0.2765176 +0.05087609 0.05087609 0.2765176 +0.06429595 0.05087609 0.2765176 +0.07958143 0.05087609 0.2765176 +0.0968001 0.05087609 0.2765176 +0.1160161 0.05087609 0.2765176 +0.1372908 0.05087609 0.2765176 +0.1606827 0.05087609 0.2765176 +0.1862481 0.05087609 0.2765176 +0.2140411 0.05087609 0.2765176 +0.2441142 0.05087609 0.2765176 +0.2765176 0.05087609 0.2765176 +0.3113005 0.05087609 0.2765176 +0.3485102 0.05087609 0.2765176 +0.388193 0.05087609 0.2765176 +0.4303934 0.05087609 0.2765176 +0.4751555 0.05087609 0.2765176 +0.5225216 0.05087609 0.2765176 +0.5725335 0.05087609 0.2765176 +0.6252316 0.05087609 0.2765176 +0.6806558 0.05087609 0.2765176 +0.7388448 0.05087609 0.2765176 +0.7998369 0.05087609 0.2765176 +0.8636691 0.05087609 0.2765176 +0.9303782 0.05087609 0.2765176 +1 0.05087609 0.2765176 +0 0.06429595 0.2765176 +0.002418731 0.06429595 0.2765176 +0.005155668 0.06429595 0.2765176 +0.009080105 0.06429595 0.2765176 +0.01434988 0.06429595 0.2765176 +0.02107202 0.06429595 0.2765176 +0.02934285 0.06429595 0.2765176 +0.03925039 0.06429595 0.2765176 +0.05087609 0.06429595 0.2765176 +0.06429595 0.06429595 0.2765176 +0.07958143 0.06429595 0.2765176 +0.0968001 0.06429595 0.2765176 +0.1160161 0.06429595 0.2765176 +0.1372908 0.06429595 0.2765176 +0.1606827 0.06429595 0.2765176 +0.1862481 0.06429595 0.2765176 +0.2140411 0.06429595 0.2765176 +0.2441142 0.06429595 0.2765176 +0.2765176 0.06429595 0.2765176 +0.3113005 0.06429595 0.2765176 +0.3485102 0.06429595 0.2765176 +0.388193 0.06429595 0.2765176 +0.4303934 0.06429595 0.2765176 +0.4751555 0.06429595 0.2765176 +0.5225216 0.06429595 0.2765176 +0.5725335 0.06429595 0.2765176 +0.6252316 0.06429595 0.2765176 +0.6806558 0.06429595 0.2765176 +0.7388448 0.06429595 0.2765176 +0.7998369 0.06429595 0.2765176 +0.8636691 0.06429595 0.2765176 +0.9303782 0.06429595 0.2765176 +1 0.06429595 0.2765176 +0 0.07958143 0.2765176 +0.002418731 0.07958143 0.2765176 +0.005155668 0.07958143 0.2765176 +0.009080105 0.07958143 0.2765176 +0.01434988 0.07958143 0.2765176 +0.02107202 0.07958143 0.2765176 +0.02934285 0.07958143 0.2765176 +0.03925039 0.07958143 0.2765176 +0.05087609 0.07958143 0.2765176 +0.06429595 0.07958143 0.2765176 +0.07958143 0.07958143 0.2765176 +0.0968001 0.07958143 0.2765176 +0.1160161 0.07958143 0.2765176 +0.1372908 0.07958143 0.2765176 +0.1606827 0.07958143 0.2765176 +0.1862481 0.07958143 0.2765176 +0.2140411 0.07958143 0.2765176 +0.2441142 0.07958143 0.2765176 +0.2765176 0.07958143 0.2765176 +0.3113005 0.07958143 0.2765176 +0.3485102 0.07958143 0.2765176 +0.388193 0.07958143 0.2765176 +0.4303934 0.07958143 0.2765176 +0.4751555 0.07958143 0.2765176 +0.5225216 0.07958143 0.2765176 +0.5725335 0.07958143 0.2765176 +0.6252316 0.07958143 0.2765176 +0.6806558 0.07958143 0.2765176 +0.7388448 0.07958143 0.2765176 +0.7998369 0.07958143 0.2765176 +0.8636691 0.07958143 0.2765176 +0.9303782 0.07958143 0.2765176 +1 0.07958143 0.2765176 +0 0.0968001 0.2765176 +0.002418731 0.0968001 0.2765176 +0.005155668 0.0968001 0.2765176 +0.009080105 0.0968001 0.2765176 +0.01434988 0.0968001 0.2765176 +0.02107202 0.0968001 0.2765176 +0.02934285 0.0968001 0.2765176 +0.03925039 0.0968001 0.2765176 +0.05087609 0.0968001 0.2765176 +0.06429595 0.0968001 0.2765176 +0.07958143 0.0968001 0.2765176 +0.0968001 0.0968001 0.2765176 +0.1160161 0.0968001 0.2765176 +0.1372908 0.0968001 0.2765176 +0.1606827 0.0968001 0.2765176 +0.1862481 0.0968001 0.2765176 +0.2140411 0.0968001 0.2765176 +0.2441142 0.0968001 0.2765176 +0.2765176 0.0968001 0.2765176 +0.3113005 0.0968001 0.2765176 +0.3485102 0.0968001 0.2765176 +0.388193 0.0968001 0.2765176 +0.4303934 0.0968001 0.2765176 +0.4751555 0.0968001 0.2765176 +0.5225216 0.0968001 0.2765176 +0.5725335 0.0968001 0.2765176 +0.6252316 0.0968001 0.2765176 +0.6806558 0.0968001 0.2765176 +0.7388448 0.0968001 0.2765176 +0.7998369 0.0968001 0.2765176 +0.8636691 0.0968001 0.2765176 +0.9303782 0.0968001 0.2765176 +1 0.0968001 0.2765176 +0 0.1160161 0.2765176 +0.002418731 0.1160161 0.2765176 +0.005155668 0.1160161 0.2765176 +0.009080105 0.1160161 0.2765176 +0.01434988 0.1160161 0.2765176 +0.02107202 0.1160161 0.2765176 +0.02934285 0.1160161 0.2765176 +0.03925039 0.1160161 0.2765176 +0.05087609 0.1160161 0.2765176 +0.06429595 0.1160161 0.2765176 +0.07958143 0.1160161 0.2765176 +0.0968001 0.1160161 0.2765176 +0.1160161 0.1160161 0.2765176 +0.1372908 0.1160161 0.2765176 +0.1606827 0.1160161 0.2765176 +0.1862481 0.1160161 0.2765176 +0.2140411 0.1160161 0.2765176 +0.2441142 0.1160161 0.2765176 +0.2765176 0.1160161 0.2765176 +0.3113005 0.1160161 0.2765176 +0.3485102 0.1160161 0.2765176 +0.388193 0.1160161 0.2765176 +0.4303934 0.1160161 0.2765176 +0.4751555 0.1160161 0.2765176 +0.5225216 0.1160161 0.2765176 +0.5725335 0.1160161 0.2765176 +0.6252316 0.1160161 0.2765176 +0.6806558 0.1160161 0.2765176 +0.7388448 0.1160161 0.2765176 +0.7998369 0.1160161 0.2765176 +0.8636691 0.1160161 0.2765176 +0.9303782 0.1160161 0.2765176 +1 0.1160161 0.2765176 +0 0.1372908 0.2765176 +0.002418731 0.1372908 0.2765176 +0.005155668 0.1372908 0.2765176 +0.009080105 0.1372908 0.2765176 +0.01434988 0.1372908 0.2765176 +0.02107202 0.1372908 0.2765176 +0.02934285 0.1372908 0.2765176 +0.03925039 0.1372908 0.2765176 +0.05087609 0.1372908 0.2765176 +0.06429595 0.1372908 0.2765176 +0.07958143 0.1372908 0.2765176 +0.0968001 0.1372908 0.2765176 +0.1160161 0.1372908 0.2765176 +0.1372908 0.1372908 0.2765176 +0.1606827 0.1372908 0.2765176 +0.1862481 0.1372908 0.2765176 +0.2140411 0.1372908 0.2765176 +0.2441142 0.1372908 0.2765176 +0.2765176 0.1372908 0.2765176 +0.3113005 0.1372908 0.2765176 +0.3485102 0.1372908 0.2765176 +0.388193 0.1372908 0.2765176 +0.4303934 0.1372908 0.2765176 +0.4751555 0.1372908 0.2765176 +0.5225216 0.1372908 0.2765176 +0.5725335 0.1372908 0.2765176 +0.6252316 0.1372908 0.2765176 +0.6806558 0.1372908 0.2765176 +0.7388448 0.1372908 0.2765176 +0.7998369 0.1372908 0.2765176 +0.8636691 0.1372908 0.2765176 +0.9303782 0.1372908 0.2765176 +1 0.1372908 0.2765176 +0 0.1606827 0.2765176 +0.002418731 0.1606827 0.2765176 +0.005155668 0.1606827 0.2765176 +0.009080105 0.1606827 0.2765176 +0.01434988 0.1606827 0.2765176 +0.02107202 0.1606827 0.2765176 +0.02934285 0.1606827 0.2765176 +0.03925039 0.1606827 0.2765176 +0.05087609 0.1606827 0.2765176 +0.06429595 0.1606827 0.2765176 +0.07958143 0.1606827 0.2765176 +0.0968001 0.1606827 0.2765176 +0.1160161 0.1606827 0.2765176 +0.1372908 0.1606827 0.2765176 +0.1606827 0.1606827 0.2765176 +0.1862481 0.1606827 0.2765176 +0.2140411 0.1606827 0.2765176 +0.2441142 0.1606827 0.2765176 +0.2765176 0.1606827 0.2765176 +0.3113005 0.1606827 0.2765176 +0.3485102 0.1606827 0.2765176 +0.388193 0.1606827 0.2765176 +0.4303934 0.1606827 0.2765176 +0.4751555 0.1606827 0.2765176 +0.5225216 0.1606827 0.2765176 +0.5725335 0.1606827 0.2765176 +0.6252316 0.1606827 0.2765176 +0.6806558 0.1606827 0.2765176 +0.7388448 0.1606827 0.2765176 +0.7998369 0.1606827 0.2765176 +0.8636691 0.1606827 0.2765176 +0.9303782 0.1606827 0.2765176 +1 0.1606827 0.2765176 +0 0.1862481 0.2765176 +0.002418731 0.1862481 0.2765176 +0.005155668 0.1862481 0.2765176 +0.009080105 0.1862481 0.2765176 +0.01434988 0.1862481 0.2765176 +0.02107202 0.1862481 0.2765176 +0.02934285 0.1862481 0.2765176 +0.03925039 0.1862481 0.2765176 +0.05087609 0.1862481 0.2765176 +0.06429595 0.1862481 0.2765176 +0.07958143 0.1862481 0.2765176 +0.0968001 0.1862481 0.2765176 +0.1160161 0.1862481 0.2765176 +0.1372908 0.1862481 0.2765176 +0.1606827 0.1862481 0.2765176 +0.1862481 0.1862481 0.2765176 +0.2140411 0.1862481 0.2765176 +0.2441142 0.1862481 0.2765176 +0.2765176 0.1862481 0.2765176 +0.3113005 0.1862481 0.2765176 +0.3485102 0.1862481 0.2765176 +0.388193 0.1862481 0.2765176 +0.4303934 0.1862481 0.2765176 +0.4751555 0.1862481 0.2765176 +0.5225216 0.1862481 0.2765176 +0.5725335 0.1862481 0.2765176 +0.6252316 0.1862481 0.2765176 +0.6806558 0.1862481 0.2765176 +0.7388448 0.1862481 0.2765176 +0.7998369 0.1862481 0.2765176 +0.8636691 0.1862481 0.2765176 +0.9303782 0.1862481 0.2765176 +1 0.1862481 0.2765176 +0 0.2140411 0.2765176 +0.002418731 0.2140411 0.2765176 +0.005155668 0.2140411 0.2765176 +0.009080105 0.2140411 0.2765176 +0.01434988 0.2140411 0.2765176 +0.02107202 0.2140411 0.2765176 +0.02934285 0.2140411 0.2765176 +0.03925039 0.2140411 0.2765176 +0.05087609 0.2140411 0.2765176 +0.06429595 0.2140411 0.2765176 +0.07958143 0.2140411 0.2765176 +0.0968001 0.2140411 0.2765176 +0.1160161 0.2140411 0.2765176 +0.1372908 0.2140411 0.2765176 +0.1606827 0.2140411 0.2765176 +0.1862481 0.2140411 0.2765176 +0.2140411 0.2140411 0.2765176 +0.2441142 0.2140411 0.2765176 +0.2765176 0.2140411 0.2765176 +0.3113005 0.2140411 0.2765176 +0.3485102 0.2140411 0.2765176 +0.388193 0.2140411 0.2765176 +0.4303934 0.2140411 0.2765176 +0.4751555 0.2140411 0.2765176 +0.5225216 0.2140411 0.2765176 +0.5725335 0.2140411 0.2765176 +0.6252316 0.2140411 0.2765176 +0.6806558 0.2140411 0.2765176 +0.7388448 0.2140411 0.2765176 +0.7998369 0.2140411 0.2765176 +0.8636691 0.2140411 0.2765176 +0.9303782 0.2140411 0.2765176 +1 0.2140411 0.2765176 +0 0.2441142 0.2765176 +0.002418731 0.2441142 0.2765176 +0.005155668 0.2441142 0.2765176 +0.009080105 0.2441142 0.2765176 +0.01434988 0.2441142 0.2765176 +0.02107202 0.2441142 0.2765176 +0.02934285 0.2441142 0.2765176 +0.03925039 0.2441142 0.2765176 +0.05087609 0.2441142 0.2765176 +0.06429595 0.2441142 0.2765176 +0.07958143 0.2441142 0.2765176 +0.0968001 0.2441142 0.2765176 +0.1160161 0.2441142 0.2765176 +0.1372908 0.2441142 0.2765176 +0.1606827 0.2441142 0.2765176 +0.1862481 0.2441142 0.2765176 +0.2140411 0.2441142 0.2765176 +0.2441142 0.2441142 0.2765176 +0.2765176 0.2441142 0.2765176 +0.3113005 0.2441142 0.2765176 +0.3485102 0.2441142 0.2765176 +0.388193 0.2441142 0.2765176 +0.4303934 0.2441142 0.2765176 +0.4751555 0.2441142 0.2765176 +0.5225216 0.2441142 0.2765176 +0.5725335 0.2441142 0.2765176 +0.6252316 0.2441142 0.2765176 +0.6806558 0.2441142 0.2765176 +0.7388448 0.2441142 0.2765176 +0.7998369 0.2441142 0.2765176 +0.8636691 0.2441142 0.2765176 +0.9303782 0.2441142 0.2765176 +1 0.2441142 0.2765176 +0 0.2765176 0.2765176 +0.002418731 0.2765176 0.2765176 +0.005155668 0.2765176 0.2765176 +0.009080105 0.2765176 0.2765176 +0.01434988 0.2765176 0.2765176 +0.02107202 0.2765176 0.2765176 +0.02934285 0.2765176 0.2765176 +0.03925039 0.2765176 0.2765176 +0.05087609 0.2765176 0.2765176 +0.06429595 0.2765176 0.2765176 +0.07958143 0.2765176 0.2765176 +0.0968001 0.2765176 0.2765176 +0.1160161 0.2765176 0.2765176 +0.1372908 0.2765176 0.2765176 +0.1606827 0.2765176 0.2765176 +0.1862481 0.2765176 0.2765176 +0.2140411 0.2765176 0.2765176 +0.2441142 0.2765176 0.2765176 +0.2765176 0.2765176 0.2765176 +0.3113005 0.2765176 0.2765176 +0.3485102 0.2765176 0.2765176 +0.388193 0.2765176 0.2765176 +0.4303934 0.2765176 0.2765176 +0.4751555 0.2765176 0.2765176 +0.5225216 0.2765176 0.2765176 +0.5725335 0.2765176 0.2765176 +0.6252316 0.2765176 0.2765176 +0.6806558 0.2765176 0.2765176 +0.7388448 0.2765176 0.2765176 +0.7998369 0.2765176 0.2765176 +0.8636691 0.2765176 0.2765176 +0.9303782 0.2765176 0.2765176 +1 0.2765176 0.2765176 +0 0.3113005 0.2765176 +0.002418731 0.3113005 0.2765176 +0.005155668 0.3113005 0.2765176 +0.009080105 0.3113005 0.2765176 +0.01434988 0.3113005 0.2765176 +0.02107202 0.3113005 0.2765176 +0.02934285 0.3113005 0.2765176 +0.03925039 0.3113005 0.2765176 +0.05087609 0.3113005 0.2765176 +0.06429595 0.3113005 0.2765176 +0.07958143 0.3113005 0.2765176 +0.0968001 0.3113005 0.2765176 +0.1160161 0.3113005 0.2765176 +0.1372908 0.3113005 0.2765176 +0.1606827 0.3113005 0.2765176 +0.1862481 0.3113005 0.2765176 +0.2140411 0.3113005 0.2765176 +0.2441142 0.3113005 0.2765176 +0.2765176 0.3113005 0.2765176 +0.3113005 0.3113005 0.2765176 +0.3485102 0.3113005 0.2765176 +0.388193 0.3113005 0.2765176 +0.4303934 0.3113005 0.2765176 +0.4751555 0.3113005 0.2765176 +0.5225216 0.3113005 0.2765176 +0.5725335 0.3113005 0.2765176 +0.6252316 0.3113005 0.2765176 +0.6806558 0.3113005 0.2765176 +0.7388448 0.3113005 0.2765176 +0.7998369 0.3113005 0.2765176 +0.8636691 0.3113005 0.2765176 +0.9303782 0.3113005 0.2765176 +1 0.3113005 0.2765176 +0 0.3485102 0.2765176 +0.002418731 0.3485102 0.2765176 +0.005155668 0.3485102 0.2765176 +0.009080105 0.3485102 0.2765176 +0.01434988 0.3485102 0.2765176 +0.02107202 0.3485102 0.2765176 +0.02934285 0.3485102 0.2765176 +0.03925039 0.3485102 0.2765176 +0.05087609 0.3485102 0.2765176 +0.06429595 0.3485102 0.2765176 +0.07958143 0.3485102 0.2765176 +0.0968001 0.3485102 0.2765176 +0.1160161 0.3485102 0.2765176 +0.1372908 0.3485102 0.2765176 +0.1606827 0.3485102 0.2765176 +0.1862481 0.3485102 0.2765176 +0.2140411 0.3485102 0.2765176 +0.2441142 0.3485102 0.2765176 +0.2765176 0.3485102 0.2765176 +0.3113005 0.3485102 0.2765176 +0.3485102 0.3485102 0.2765176 +0.388193 0.3485102 0.2765176 +0.4303934 0.3485102 0.2765176 +0.4751555 0.3485102 0.2765176 +0.5225216 0.3485102 0.2765176 +0.5725335 0.3485102 0.2765176 +0.6252316 0.3485102 0.2765176 +0.6806558 0.3485102 0.2765176 +0.7388448 0.3485102 0.2765176 +0.7998369 0.3485102 0.2765176 +0.8636691 0.3485102 0.2765176 +0.9303782 0.3485102 0.2765176 +1 0.3485102 0.2765176 +0 0.388193 0.2765176 +0.002418731 0.388193 0.2765176 +0.005155668 0.388193 0.2765176 +0.009080105 0.388193 0.2765176 +0.01434988 0.388193 0.2765176 +0.02107202 0.388193 0.2765176 +0.02934285 0.388193 0.2765176 +0.03925039 0.388193 0.2765176 +0.05087609 0.388193 0.2765176 +0.06429595 0.388193 0.2765176 +0.07958143 0.388193 0.2765176 +0.0968001 0.388193 0.2765176 +0.1160161 0.388193 0.2765176 +0.1372908 0.388193 0.2765176 +0.1606827 0.388193 0.2765176 +0.1862481 0.388193 0.2765176 +0.2140411 0.388193 0.2765176 +0.2441142 0.388193 0.2765176 +0.2765176 0.388193 0.2765176 +0.3113005 0.388193 0.2765176 +0.3485102 0.388193 0.2765176 +0.388193 0.388193 0.2765176 +0.4303934 0.388193 0.2765176 +0.4751555 0.388193 0.2765176 +0.5225216 0.388193 0.2765176 +0.5725335 0.388193 0.2765176 +0.6252316 0.388193 0.2765176 +0.6806558 0.388193 0.2765176 +0.7388448 0.388193 0.2765176 +0.7998369 0.388193 0.2765176 +0.8636691 0.388193 0.2765176 +0.9303782 0.388193 0.2765176 +1 0.388193 0.2765176 +0 0.4303934 0.2765176 +0.002418731 0.4303934 0.2765176 +0.005155668 0.4303934 0.2765176 +0.009080105 0.4303934 0.2765176 +0.01434988 0.4303934 0.2765176 +0.02107202 0.4303934 0.2765176 +0.02934285 0.4303934 0.2765176 +0.03925039 0.4303934 0.2765176 +0.05087609 0.4303934 0.2765176 +0.06429595 0.4303934 0.2765176 +0.07958143 0.4303934 0.2765176 +0.0968001 0.4303934 0.2765176 +0.1160161 0.4303934 0.2765176 +0.1372908 0.4303934 0.2765176 +0.1606827 0.4303934 0.2765176 +0.1862481 0.4303934 0.2765176 +0.2140411 0.4303934 0.2765176 +0.2441142 0.4303934 0.2765176 +0.2765176 0.4303934 0.2765176 +0.3113005 0.4303934 0.2765176 +0.3485102 0.4303934 0.2765176 +0.388193 0.4303934 0.2765176 +0.4303934 0.4303934 0.2765176 +0.4751555 0.4303934 0.2765176 +0.5225216 0.4303934 0.2765176 +0.5725335 0.4303934 0.2765176 +0.6252316 0.4303934 0.2765176 +0.6806558 0.4303934 0.2765176 +0.7388448 0.4303934 0.2765176 +0.7998369 0.4303934 0.2765176 +0.8636691 0.4303934 0.2765176 +0.9303782 0.4303934 0.2765176 +1 0.4303934 0.2765176 +0 0.4751555 0.2765176 +0.002418731 0.4751555 0.2765176 +0.005155668 0.4751555 0.2765176 +0.009080105 0.4751555 0.2765176 +0.01434988 0.4751555 0.2765176 +0.02107202 0.4751555 0.2765176 +0.02934285 0.4751555 0.2765176 +0.03925039 0.4751555 0.2765176 +0.05087609 0.4751555 0.2765176 +0.06429595 0.4751555 0.2765176 +0.07958143 0.4751555 0.2765176 +0.0968001 0.4751555 0.2765176 +0.1160161 0.4751555 0.2765176 +0.1372908 0.4751555 0.2765176 +0.1606827 0.4751555 0.2765176 +0.1862481 0.4751555 0.2765176 +0.2140411 0.4751555 0.2765176 +0.2441142 0.4751555 0.2765176 +0.2765176 0.4751555 0.2765176 +0.3113005 0.4751555 0.2765176 +0.3485102 0.4751555 0.2765176 +0.388193 0.4751555 0.2765176 +0.4303934 0.4751555 0.2765176 +0.4751555 0.4751555 0.2765176 +0.5225216 0.4751555 0.2765176 +0.5725335 0.4751555 0.2765176 +0.6252316 0.4751555 0.2765176 +0.6806558 0.4751555 0.2765176 +0.7388448 0.4751555 0.2765176 +0.7998369 0.4751555 0.2765176 +0.8636691 0.4751555 0.2765176 +0.9303782 0.4751555 0.2765176 +1 0.4751555 0.2765176 +0 0.5225216 0.2765176 +0.002418731 0.5225216 0.2765176 +0.005155668 0.5225216 0.2765176 +0.009080105 0.5225216 0.2765176 +0.01434988 0.5225216 0.2765176 +0.02107202 0.5225216 0.2765176 +0.02934285 0.5225216 0.2765176 +0.03925039 0.5225216 0.2765176 +0.05087609 0.5225216 0.2765176 +0.06429595 0.5225216 0.2765176 +0.07958143 0.5225216 0.2765176 +0.0968001 0.5225216 0.2765176 +0.1160161 0.5225216 0.2765176 +0.1372908 0.5225216 0.2765176 +0.1606827 0.5225216 0.2765176 +0.1862481 0.5225216 0.2765176 +0.2140411 0.5225216 0.2765176 +0.2441142 0.5225216 0.2765176 +0.2765176 0.5225216 0.2765176 +0.3113005 0.5225216 0.2765176 +0.3485102 0.5225216 0.2765176 +0.388193 0.5225216 0.2765176 +0.4303934 0.5225216 0.2765176 +0.4751555 0.5225216 0.2765176 +0.5225216 0.5225216 0.2765176 +0.5725335 0.5225216 0.2765176 +0.6252316 0.5225216 0.2765176 +0.6806558 0.5225216 0.2765176 +0.7388448 0.5225216 0.2765176 +0.7998369 0.5225216 0.2765176 +0.8636691 0.5225216 0.2765176 +0.9303782 0.5225216 0.2765176 +1 0.5225216 0.2765176 +0 0.5725335 0.2765176 +0.002418731 0.5725335 0.2765176 +0.005155668 0.5725335 0.2765176 +0.009080105 0.5725335 0.2765176 +0.01434988 0.5725335 0.2765176 +0.02107202 0.5725335 0.2765176 +0.02934285 0.5725335 0.2765176 +0.03925039 0.5725335 0.2765176 +0.05087609 0.5725335 0.2765176 +0.06429595 0.5725335 0.2765176 +0.07958143 0.5725335 0.2765176 +0.0968001 0.5725335 0.2765176 +0.1160161 0.5725335 0.2765176 +0.1372908 0.5725335 0.2765176 +0.1606827 0.5725335 0.2765176 +0.1862481 0.5725335 0.2765176 +0.2140411 0.5725335 0.2765176 +0.2441142 0.5725335 0.2765176 +0.2765176 0.5725335 0.2765176 +0.3113005 0.5725335 0.2765176 +0.3485102 0.5725335 0.2765176 +0.388193 0.5725335 0.2765176 +0.4303934 0.5725335 0.2765176 +0.4751555 0.5725335 0.2765176 +0.5225216 0.5725335 0.2765176 +0.5725335 0.5725335 0.2765176 +0.6252316 0.5725335 0.2765176 +0.6806558 0.5725335 0.2765176 +0.7388448 0.5725335 0.2765176 +0.7998369 0.5725335 0.2765176 +0.8636691 0.5725335 0.2765176 +0.9303782 0.5725335 0.2765176 +1 0.5725335 0.2765176 +0 0.6252316 0.2765176 +0.002418731 0.6252316 0.2765176 +0.005155668 0.6252316 0.2765176 +0.009080105 0.6252316 0.2765176 +0.01434988 0.6252316 0.2765176 +0.02107202 0.6252316 0.2765176 +0.02934285 0.6252316 0.2765176 +0.03925039 0.6252316 0.2765176 +0.05087609 0.6252316 0.2765176 +0.06429595 0.6252316 0.2765176 +0.07958143 0.6252316 0.2765176 +0.0968001 0.6252316 0.2765176 +0.1160161 0.6252316 0.2765176 +0.1372908 0.6252316 0.2765176 +0.1606827 0.6252316 0.2765176 +0.1862481 0.6252316 0.2765176 +0.2140411 0.6252316 0.2765176 +0.2441142 0.6252316 0.2765176 +0.2765176 0.6252316 0.2765176 +0.3113005 0.6252316 0.2765176 +0.3485102 0.6252316 0.2765176 +0.388193 0.6252316 0.2765176 +0.4303934 0.6252316 0.2765176 +0.4751555 0.6252316 0.2765176 +0.5225216 0.6252316 0.2765176 +0.5725335 0.6252316 0.2765176 +0.6252316 0.6252316 0.2765176 +0.6806558 0.6252316 0.2765176 +0.7388448 0.6252316 0.2765176 +0.7998369 0.6252316 0.2765176 +0.8636691 0.6252316 0.2765176 +0.9303782 0.6252316 0.2765176 +1 0.6252316 0.2765176 +0 0.6806558 0.2765176 +0.002418731 0.6806558 0.2765176 +0.005155668 0.6806558 0.2765176 +0.009080105 0.6806558 0.2765176 +0.01434988 0.6806558 0.2765176 +0.02107202 0.6806558 0.2765176 +0.02934285 0.6806558 0.2765176 +0.03925039 0.6806558 0.2765176 +0.05087609 0.6806558 0.2765176 +0.06429595 0.6806558 0.2765176 +0.07958143 0.6806558 0.2765176 +0.0968001 0.6806558 0.2765176 +0.1160161 0.6806558 0.2765176 +0.1372908 0.6806558 0.2765176 +0.1606827 0.6806558 0.2765176 +0.1862481 0.6806558 0.2765176 +0.2140411 0.6806558 0.2765176 +0.2441142 0.6806558 0.2765176 +0.2765176 0.6806558 0.2765176 +0.3113005 0.6806558 0.2765176 +0.3485102 0.6806558 0.2765176 +0.388193 0.6806558 0.2765176 +0.4303934 0.6806558 0.2765176 +0.4751555 0.6806558 0.2765176 +0.5225216 0.6806558 0.2765176 +0.5725335 0.6806558 0.2765176 +0.6252316 0.6806558 0.2765176 +0.6806558 0.6806558 0.2765176 +0.7388448 0.6806558 0.2765176 +0.7998369 0.6806558 0.2765176 +0.8636691 0.6806558 0.2765176 +0.9303782 0.6806558 0.2765176 +1 0.6806558 0.2765176 +0 0.7388448 0.2765176 +0.002418731 0.7388448 0.2765176 +0.005155668 0.7388448 0.2765176 +0.009080105 0.7388448 0.2765176 +0.01434988 0.7388448 0.2765176 +0.02107202 0.7388448 0.2765176 +0.02934285 0.7388448 0.2765176 +0.03925039 0.7388448 0.2765176 +0.05087609 0.7388448 0.2765176 +0.06429595 0.7388448 0.2765176 +0.07958143 0.7388448 0.2765176 +0.0968001 0.7388448 0.2765176 +0.1160161 0.7388448 0.2765176 +0.1372908 0.7388448 0.2765176 +0.1606827 0.7388448 0.2765176 +0.1862481 0.7388448 0.2765176 +0.2140411 0.7388448 0.2765176 +0.2441142 0.7388448 0.2765176 +0.2765176 0.7388448 0.2765176 +0.3113005 0.7388448 0.2765176 +0.3485102 0.7388448 0.2765176 +0.388193 0.7388448 0.2765176 +0.4303934 0.7388448 0.2765176 +0.4751555 0.7388448 0.2765176 +0.5225216 0.7388448 0.2765176 +0.5725335 0.7388448 0.2765176 +0.6252316 0.7388448 0.2765176 +0.6806558 0.7388448 0.2765176 +0.7388448 0.7388448 0.2765176 +0.7998369 0.7388448 0.2765176 +0.8636691 0.7388448 0.2765176 +0.9303782 0.7388448 0.2765176 +1 0.7388448 0.2765176 +0 0.7998369 0.2765176 +0.002418731 0.7998369 0.2765176 +0.005155668 0.7998369 0.2765176 +0.009080105 0.7998369 0.2765176 +0.01434988 0.7998369 0.2765176 +0.02107202 0.7998369 0.2765176 +0.02934285 0.7998369 0.2765176 +0.03925039 0.7998369 0.2765176 +0.05087609 0.7998369 0.2765176 +0.06429595 0.7998369 0.2765176 +0.07958143 0.7998369 0.2765176 +0.0968001 0.7998369 0.2765176 +0.1160161 0.7998369 0.2765176 +0.1372908 0.7998369 0.2765176 +0.1606827 0.7998369 0.2765176 +0.1862481 0.7998369 0.2765176 +0.2140411 0.7998369 0.2765176 +0.2441142 0.7998369 0.2765176 +0.2765176 0.7998369 0.2765176 +0.3113005 0.7998369 0.2765176 +0.3485102 0.7998369 0.2765176 +0.388193 0.7998369 0.2765176 +0.4303934 0.7998369 0.2765176 +0.4751555 0.7998369 0.2765176 +0.5225216 0.7998369 0.2765176 +0.5725335 0.7998369 0.2765176 +0.6252316 0.7998369 0.2765176 +0.6806558 0.7998369 0.2765176 +0.7388448 0.7998369 0.2765176 +0.7998369 0.7998369 0.2765176 +0.8636691 0.7998369 0.2765176 +0.9303782 0.7998369 0.2765176 +1 0.7998369 0.2765176 +0 0.8636691 0.2765176 +0.002418731 0.8636691 0.2765176 +0.005155668 0.8636691 0.2765176 +0.009080105 0.8636691 0.2765176 +0.01434988 0.8636691 0.2765176 +0.02107202 0.8636691 0.2765176 +0.02934285 0.8636691 0.2765176 +0.03925039 0.8636691 0.2765176 +0.05087609 0.8636691 0.2765176 +0.06429595 0.8636691 0.2765176 +0.07958143 0.8636691 0.2765176 +0.0968001 0.8636691 0.2765176 +0.1160161 0.8636691 0.2765176 +0.1372908 0.8636691 0.2765176 +0.1606827 0.8636691 0.2765176 +0.1862481 0.8636691 0.2765176 +0.2140411 0.8636691 0.2765176 +0.2441142 0.8636691 0.2765176 +0.2765176 0.8636691 0.2765176 +0.3113005 0.8636691 0.2765176 +0.3485102 0.8636691 0.2765176 +0.388193 0.8636691 0.2765176 +0.4303934 0.8636691 0.2765176 +0.4751555 0.8636691 0.2765176 +0.5225216 0.8636691 0.2765176 +0.5725335 0.8636691 0.2765176 +0.6252316 0.8636691 0.2765176 +0.6806558 0.8636691 0.2765176 +0.7388448 0.8636691 0.2765176 +0.7998369 0.8636691 0.2765176 +0.8636691 0.8636691 0.2765176 +0.9303782 0.8636691 0.2765176 +1 0.8636691 0.2765176 +0 0.9303782 0.2765176 +0.002418731 0.9303782 0.2765176 +0.005155668 0.9303782 0.2765176 +0.009080105 0.9303782 0.2765176 +0.01434988 0.9303782 0.2765176 +0.02107202 0.9303782 0.2765176 +0.02934285 0.9303782 0.2765176 +0.03925039 0.9303782 0.2765176 +0.05087609 0.9303782 0.2765176 +0.06429595 0.9303782 0.2765176 +0.07958143 0.9303782 0.2765176 +0.0968001 0.9303782 0.2765176 +0.1160161 0.9303782 0.2765176 +0.1372908 0.9303782 0.2765176 +0.1606827 0.9303782 0.2765176 +0.1862481 0.9303782 0.2765176 +0.2140411 0.9303782 0.2765176 +0.2441142 0.9303782 0.2765176 +0.2765176 0.9303782 0.2765176 +0.3113005 0.9303782 0.2765176 +0.3485102 0.9303782 0.2765176 +0.388193 0.9303782 0.2765176 +0.4303934 0.9303782 0.2765176 +0.4751555 0.9303782 0.2765176 +0.5225216 0.9303782 0.2765176 +0.5725335 0.9303782 0.2765176 +0.6252316 0.9303782 0.2765176 +0.6806558 0.9303782 0.2765176 +0.7388448 0.9303782 0.2765176 +0.7998369 0.9303782 0.2765176 +0.8636691 0.9303782 0.2765176 +0.9303782 0.9303782 0.2765176 +1 0.9303782 0.2765176 +0 1 0.2765176 +0.002418731 1 0.2765176 +0.005155668 1 0.2765176 +0.009080105 1 0.2765176 +0.01434988 1 0.2765176 +0.02107202 1 0.2765176 +0.02934285 1 0.2765176 +0.03925039 1 0.2765176 +0.05087609 1 0.2765176 +0.06429595 1 0.2765176 +0.07958143 1 0.2765176 +0.0968001 1 0.2765176 +0.1160161 1 0.2765176 +0.1372908 1 0.2765176 +0.1606827 1 0.2765176 +0.1862481 1 0.2765176 +0.2140411 1 0.2765176 +0.2441142 1 0.2765176 +0.2765176 1 0.2765176 +0.3113005 1 0.2765176 +0.3485102 1 0.2765176 +0.388193 1 0.2765176 +0.4303934 1 0.2765176 +0.4751555 1 0.2765176 +0.5225216 1 0.2765176 +0.5725335 1 0.2765176 +0.6252316 1 0.2765176 +0.6806558 1 0.2765176 +0.7388448 1 0.2765176 +0.7998369 1 0.2765176 +0.8636691 1 0.2765176 +0.9303782 1 0.2765176 +1 1 0.2765176 +0 0 0.3113005 +0.002418731 0 0.3113005 +0.005155668 0 0.3113005 +0.009080105 0 0.3113005 +0.01434988 0 0.3113005 +0.02107202 0 0.3113005 +0.02934285 0 0.3113005 +0.03925039 0 0.3113005 +0.05087609 0 0.3113005 +0.06429595 0 0.3113005 +0.07958143 0 0.3113005 +0.0968001 0 0.3113005 +0.1160161 0 0.3113005 +0.1372908 0 0.3113005 +0.1606827 0 0.3113005 +0.1862481 0 0.3113005 +0.2140411 0 0.3113005 +0.2441142 0 0.3113005 +0.2765176 0 0.3113005 +0.3113005 0 0.3113005 +0.3485102 0 0.3113005 +0.388193 0 0.3113005 +0.4303934 0 0.3113005 +0.4751555 0 0.3113005 +0.5225216 0 0.3113005 +0.5725335 0 0.3113005 +0.6252316 0 0.3113005 +0.6806558 0 0.3113005 +0.7388448 0 0.3113005 +0.7998369 0 0.3113005 +0.8636691 0 0.3113005 +0.9303782 0 0.3113005 +1 0 0.3113005 +0 0.002418731 0.3113005 +0.002418731 0.002418731 0.3113005 +0.005155668 0.002418731 0.3113005 +0.009080105 0.002418731 0.3113005 +0.01434988 0.002418731 0.3113005 +0.02107202 0.002418731 0.3113005 +0.02934285 0.002418731 0.3113005 +0.03925039 0.002418731 0.3113005 +0.05087609 0.002418731 0.3113005 +0.06429595 0.002418731 0.3113005 +0.07958143 0.002418731 0.3113005 +0.0968001 0.002418731 0.3113005 +0.1160161 0.002418731 0.3113005 +0.1372908 0.002418731 0.3113005 +0.1606827 0.002418731 0.3113005 +0.1862481 0.002418731 0.3113005 +0.2140411 0.002418731 0.3113005 +0.2441142 0.002418731 0.3113005 +0.2765176 0.002418731 0.3113005 +0.3113005 0.002418731 0.3113005 +0.3485102 0.002418731 0.3113005 +0.388193 0.002418731 0.3113005 +0.4303934 0.002418731 0.3113005 +0.4751555 0.002418731 0.3113005 +0.5225216 0.002418731 0.3113005 +0.5725335 0.002418731 0.3113005 +0.6252316 0.002418731 0.3113005 +0.6806558 0.002418731 0.3113005 +0.7388448 0.002418731 0.3113005 +0.7998369 0.002418731 0.3113005 +0.8636691 0.002418731 0.3113005 +0.9303782 0.002418731 0.3113005 +1 0.002418731 0.3113005 +0 0.005155668 0.3113005 +0.002418731 0.005155668 0.3113005 +0.005155668 0.005155668 0.3113005 +0.009080105 0.005155668 0.3113005 +0.01434988 0.005155668 0.3113005 +0.02107202 0.005155668 0.3113005 +0.02934285 0.005155668 0.3113005 +0.03925039 0.005155668 0.3113005 +0.05087609 0.005155668 0.3113005 +0.06429595 0.005155668 0.3113005 +0.07958143 0.005155668 0.3113005 +0.0968001 0.005155668 0.3113005 +0.1160161 0.005155668 0.3113005 +0.1372908 0.005155668 0.3113005 +0.1606827 0.005155668 0.3113005 +0.1862481 0.005155668 0.3113005 +0.2140411 0.005155668 0.3113005 +0.2441142 0.005155668 0.3113005 +0.2765176 0.005155668 0.3113005 +0.3113005 0.005155668 0.3113005 +0.3485102 0.005155668 0.3113005 +0.388193 0.005155668 0.3113005 +0.4303934 0.005155668 0.3113005 +0.4751555 0.005155668 0.3113005 +0.5225216 0.005155668 0.3113005 +0.5725335 0.005155668 0.3113005 +0.6252316 0.005155668 0.3113005 +0.6806558 0.005155668 0.3113005 +0.7388448 0.005155668 0.3113005 +0.7998369 0.005155668 0.3113005 +0.8636691 0.005155668 0.3113005 +0.9303782 0.005155668 0.3113005 +1 0.005155668 0.3113005 +0 0.009080105 0.3113005 +0.002418731 0.009080105 0.3113005 +0.005155668 0.009080105 0.3113005 +0.009080105 0.009080105 0.3113005 +0.01434988 0.009080105 0.3113005 +0.02107202 0.009080105 0.3113005 +0.02934285 0.009080105 0.3113005 +0.03925039 0.009080105 0.3113005 +0.05087609 0.009080105 0.3113005 +0.06429595 0.009080105 0.3113005 +0.07958143 0.009080105 0.3113005 +0.0968001 0.009080105 0.3113005 +0.1160161 0.009080105 0.3113005 +0.1372908 0.009080105 0.3113005 +0.1606827 0.009080105 0.3113005 +0.1862481 0.009080105 0.3113005 +0.2140411 0.009080105 0.3113005 +0.2441142 0.009080105 0.3113005 +0.2765176 0.009080105 0.3113005 +0.3113005 0.009080105 0.3113005 +0.3485102 0.009080105 0.3113005 +0.388193 0.009080105 0.3113005 +0.4303934 0.009080105 0.3113005 +0.4751555 0.009080105 0.3113005 +0.5225216 0.009080105 0.3113005 +0.5725335 0.009080105 0.3113005 +0.6252316 0.009080105 0.3113005 +0.6806558 0.009080105 0.3113005 +0.7388448 0.009080105 0.3113005 +0.7998369 0.009080105 0.3113005 +0.8636691 0.009080105 0.3113005 +0.9303782 0.009080105 0.3113005 +1 0.009080105 0.3113005 +0 0.01434988 0.3113005 +0.002418731 0.01434988 0.3113005 +0.005155668 0.01434988 0.3113005 +0.009080105 0.01434988 0.3113005 +0.01434988 0.01434988 0.3113005 +0.02107202 0.01434988 0.3113005 +0.02934285 0.01434988 0.3113005 +0.03925039 0.01434988 0.3113005 +0.05087609 0.01434988 0.3113005 +0.06429595 0.01434988 0.3113005 +0.07958143 0.01434988 0.3113005 +0.0968001 0.01434988 0.3113005 +0.1160161 0.01434988 0.3113005 +0.1372908 0.01434988 0.3113005 +0.1606827 0.01434988 0.3113005 +0.1862481 0.01434988 0.3113005 +0.2140411 0.01434988 0.3113005 +0.2441142 0.01434988 0.3113005 +0.2765176 0.01434988 0.3113005 +0.3113005 0.01434988 0.3113005 +0.3485102 0.01434988 0.3113005 +0.388193 0.01434988 0.3113005 +0.4303934 0.01434988 0.3113005 +0.4751555 0.01434988 0.3113005 +0.5225216 0.01434988 0.3113005 +0.5725335 0.01434988 0.3113005 +0.6252316 0.01434988 0.3113005 +0.6806558 0.01434988 0.3113005 +0.7388448 0.01434988 0.3113005 +0.7998369 0.01434988 0.3113005 +0.8636691 0.01434988 0.3113005 +0.9303782 0.01434988 0.3113005 +1 0.01434988 0.3113005 +0 0.02107202 0.3113005 +0.002418731 0.02107202 0.3113005 +0.005155668 0.02107202 0.3113005 +0.009080105 0.02107202 0.3113005 +0.01434988 0.02107202 0.3113005 +0.02107202 0.02107202 0.3113005 +0.02934285 0.02107202 0.3113005 +0.03925039 0.02107202 0.3113005 +0.05087609 0.02107202 0.3113005 +0.06429595 0.02107202 0.3113005 +0.07958143 0.02107202 0.3113005 +0.0968001 0.02107202 0.3113005 +0.1160161 0.02107202 0.3113005 +0.1372908 0.02107202 0.3113005 +0.1606827 0.02107202 0.3113005 +0.1862481 0.02107202 0.3113005 +0.2140411 0.02107202 0.3113005 +0.2441142 0.02107202 0.3113005 +0.2765176 0.02107202 0.3113005 +0.3113005 0.02107202 0.3113005 +0.3485102 0.02107202 0.3113005 +0.388193 0.02107202 0.3113005 +0.4303934 0.02107202 0.3113005 +0.4751555 0.02107202 0.3113005 +0.5225216 0.02107202 0.3113005 +0.5725335 0.02107202 0.3113005 +0.6252316 0.02107202 0.3113005 +0.6806558 0.02107202 0.3113005 +0.7388448 0.02107202 0.3113005 +0.7998369 0.02107202 0.3113005 +0.8636691 0.02107202 0.3113005 +0.9303782 0.02107202 0.3113005 +1 0.02107202 0.3113005 +0 0.02934285 0.3113005 +0.002418731 0.02934285 0.3113005 +0.005155668 0.02934285 0.3113005 +0.009080105 0.02934285 0.3113005 +0.01434988 0.02934285 0.3113005 +0.02107202 0.02934285 0.3113005 +0.02934285 0.02934285 0.3113005 +0.03925039 0.02934285 0.3113005 +0.05087609 0.02934285 0.3113005 +0.06429595 0.02934285 0.3113005 +0.07958143 0.02934285 0.3113005 +0.0968001 0.02934285 0.3113005 +0.1160161 0.02934285 0.3113005 +0.1372908 0.02934285 0.3113005 +0.1606827 0.02934285 0.3113005 +0.1862481 0.02934285 0.3113005 +0.2140411 0.02934285 0.3113005 +0.2441142 0.02934285 0.3113005 +0.2765176 0.02934285 0.3113005 +0.3113005 0.02934285 0.3113005 +0.3485102 0.02934285 0.3113005 +0.388193 0.02934285 0.3113005 +0.4303934 0.02934285 0.3113005 +0.4751555 0.02934285 0.3113005 +0.5225216 0.02934285 0.3113005 +0.5725335 0.02934285 0.3113005 +0.6252316 0.02934285 0.3113005 +0.6806558 0.02934285 0.3113005 +0.7388448 0.02934285 0.3113005 +0.7998369 0.02934285 0.3113005 +0.8636691 0.02934285 0.3113005 +0.9303782 0.02934285 0.3113005 +1 0.02934285 0.3113005 +0 0.03925039 0.3113005 +0.002418731 0.03925039 0.3113005 +0.005155668 0.03925039 0.3113005 +0.009080105 0.03925039 0.3113005 +0.01434988 0.03925039 0.3113005 +0.02107202 0.03925039 0.3113005 +0.02934285 0.03925039 0.3113005 +0.03925039 0.03925039 0.3113005 +0.05087609 0.03925039 0.3113005 +0.06429595 0.03925039 0.3113005 +0.07958143 0.03925039 0.3113005 +0.0968001 0.03925039 0.3113005 +0.1160161 0.03925039 0.3113005 +0.1372908 0.03925039 0.3113005 +0.1606827 0.03925039 0.3113005 +0.1862481 0.03925039 0.3113005 +0.2140411 0.03925039 0.3113005 +0.2441142 0.03925039 0.3113005 +0.2765176 0.03925039 0.3113005 +0.3113005 0.03925039 0.3113005 +0.3485102 0.03925039 0.3113005 +0.388193 0.03925039 0.3113005 +0.4303934 0.03925039 0.3113005 +0.4751555 0.03925039 0.3113005 +0.5225216 0.03925039 0.3113005 +0.5725335 0.03925039 0.3113005 +0.6252316 0.03925039 0.3113005 +0.6806558 0.03925039 0.3113005 +0.7388448 0.03925039 0.3113005 +0.7998369 0.03925039 0.3113005 +0.8636691 0.03925039 0.3113005 +0.9303782 0.03925039 0.3113005 +1 0.03925039 0.3113005 +0 0.05087609 0.3113005 +0.002418731 0.05087609 0.3113005 +0.005155668 0.05087609 0.3113005 +0.009080105 0.05087609 0.3113005 +0.01434988 0.05087609 0.3113005 +0.02107202 0.05087609 0.3113005 +0.02934285 0.05087609 0.3113005 +0.03925039 0.05087609 0.3113005 +0.05087609 0.05087609 0.3113005 +0.06429595 0.05087609 0.3113005 +0.07958143 0.05087609 0.3113005 +0.0968001 0.05087609 0.3113005 +0.1160161 0.05087609 0.3113005 +0.1372908 0.05087609 0.3113005 +0.1606827 0.05087609 0.3113005 +0.1862481 0.05087609 0.3113005 +0.2140411 0.05087609 0.3113005 +0.2441142 0.05087609 0.3113005 +0.2765176 0.05087609 0.3113005 +0.3113005 0.05087609 0.3113005 +0.3485102 0.05087609 0.3113005 +0.388193 0.05087609 0.3113005 +0.4303934 0.05087609 0.3113005 +0.4751555 0.05087609 0.3113005 +0.5225216 0.05087609 0.3113005 +0.5725335 0.05087609 0.3113005 +0.6252316 0.05087609 0.3113005 +0.6806558 0.05087609 0.3113005 +0.7388448 0.05087609 0.3113005 +0.7998369 0.05087609 0.3113005 +0.8636691 0.05087609 0.3113005 +0.9303782 0.05087609 0.3113005 +1 0.05087609 0.3113005 +0 0.06429595 0.3113005 +0.002418731 0.06429595 0.3113005 +0.005155668 0.06429595 0.3113005 +0.009080105 0.06429595 0.3113005 +0.01434988 0.06429595 0.3113005 +0.02107202 0.06429595 0.3113005 +0.02934285 0.06429595 0.3113005 +0.03925039 0.06429595 0.3113005 +0.05087609 0.06429595 0.3113005 +0.06429595 0.06429595 0.3113005 +0.07958143 0.06429595 0.3113005 +0.0968001 0.06429595 0.3113005 +0.1160161 0.06429595 0.3113005 +0.1372908 0.06429595 0.3113005 +0.1606827 0.06429595 0.3113005 +0.1862481 0.06429595 0.3113005 +0.2140411 0.06429595 0.3113005 +0.2441142 0.06429595 0.3113005 +0.2765176 0.06429595 0.3113005 +0.3113005 0.06429595 0.3113005 +0.3485102 0.06429595 0.3113005 +0.388193 0.06429595 0.3113005 +0.4303934 0.06429595 0.3113005 +0.4751555 0.06429595 0.3113005 +0.5225216 0.06429595 0.3113005 +0.5725335 0.06429595 0.3113005 +0.6252316 0.06429595 0.3113005 +0.6806558 0.06429595 0.3113005 +0.7388448 0.06429595 0.3113005 +0.7998369 0.06429595 0.3113005 +0.8636691 0.06429595 0.3113005 +0.9303782 0.06429595 0.3113005 +1 0.06429595 0.3113005 +0 0.07958143 0.3113005 +0.002418731 0.07958143 0.3113005 +0.005155668 0.07958143 0.3113005 +0.009080105 0.07958143 0.3113005 +0.01434988 0.07958143 0.3113005 +0.02107202 0.07958143 0.3113005 +0.02934285 0.07958143 0.3113005 +0.03925039 0.07958143 0.3113005 +0.05087609 0.07958143 0.3113005 +0.06429595 0.07958143 0.3113005 +0.07958143 0.07958143 0.3113005 +0.0968001 0.07958143 0.3113005 +0.1160161 0.07958143 0.3113005 +0.1372908 0.07958143 0.3113005 +0.1606827 0.07958143 0.3113005 +0.1862481 0.07958143 0.3113005 +0.2140411 0.07958143 0.3113005 +0.2441142 0.07958143 0.3113005 +0.2765176 0.07958143 0.3113005 +0.3113005 0.07958143 0.3113005 +0.3485102 0.07958143 0.3113005 +0.388193 0.07958143 0.3113005 +0.4303934 0.07958143 0.3113005 +0.4751555 0.07958143 0.3113005 +0.5225216 0.07958143 0.3113005 +0.5725335 0.07958143 0.3113005 +0.6252316 0.07958143 0.3113005 +0.6806558 0.07958143 0.3113005 +0.7388448 0.07958143 0.3113005 +0.7998369 0.07958143 0.3113005 +0.8636691 0.07958143 0.3113005 +0.9303782 0.07958143 0.3113005 +1 0.07958143 0.3113005 +0 0.0968001 0.3113005 +0.002418731 0.0968001 0.3113005 +0.005155668 0.0968001 0.3113005 +0.009080105 0.0968001 0.3113005 +0.01434988 0.0968001 0.3113005 +0.02107202 0.0968001 0.3113005 +0.02934285 0.0968001 0.3113005 +0.03925039 0.0968001 0.3113005 +0.05087609 0.0968001 0.3113005 +0.06429595 0.0968001 0.3113005 +0.07958143 0.0968001 0.3113005 +0.0968001 0.0968001 0.3113005 +0.1160161 0.0968001 0.3113005 +0.1372908 0.0968001 0.3113005 +0.1606827 0.0968001 0.3113005 +0.1862481 0.0968001 0.3113005 +0.2140411 0.0968001 0.3113005 +0.2441142 0.0968001 0.3113005 +0.2765176 0.0968001 0.3113005 +0.3113005 0.0968001 0.3113005 +0.3485102 0.0968001 0.3113005 +0.388193 0.0968001 0.3113005 +0.4303934 0.0968001 0.3113005 +0.4751555 0.0968001 0.3113005 +0.5225216 0.0968001 0.3113005 +0.5725335 0.0968001 0.3113005 +0.6252316 0.0968001 0.3113005 +0.6806558 0.0968001 0.3113005 +0.7388448 0.0968001 0.3113005 +0.7998369 0.0968001 0.3113005 +0.8636691 0.0968001 0.3113005 +0.9303782 0.0968001 0.3113005 +1 0.0968001 0.3113005 +0 0.1160161 0.3113005 +0.002418731 0.1160161 0.3113005 +0.005155668 0.1160161 0.3113005 +0.009080105 0.1160161 0.3113005 +0.01434988 0.1160161 0.3113005 +0.02107202 0.1160161 0.3113005 +0.02934285 0.1160161 0.3113005 +0.03925039 0.1160161 0.3113005 +0.05087609 0.1160161 0.3113005 +0.06429595 0.1160161 0.3113005 +0.07958143 0.1160161 0.3113005 +0.0968001 0.1160161 0.3113005 +0.1160161 0.1160161 0.3113005 +0.1372908 0.1160161 0.3113005 +0.1606827 0.1160161 0.3113005 +0.1862481 0.1160161 0.3113005 +0.2140411 0.1160161 0.3113005 +0.2441142 0.1160161 0.3113005 +0.2765176 0.1160161 0.3113005 +0.3113005 0.1160161 0.3113005 +0.3485102 0.1160161 0.3113005 +0.388193 0.1160161 0.3113005 +0.4303934 0.1160161 0.3113005 +0.4751555 0.1160161 0.3113005 +0.5225216 0.1160161 0.3113005 +0.5725335 0.1160161 0.3113005 +0.6252316 0.1160161 0.3113005 +0.6806558 0.1160161 0.3113005 +0.7388448 0.1160161 0.3113005 +0.7998369 0.1160161 0.3113005 +0.8636691 0.1160161 0.3113005 +0.9303782 0.1160161 0.3113005 +1 0.1160161 0.3113005 +0 0.1372908 0.3113005 +0.002418731 0.1372908 0.3113005 +0.005155668 0.1372908 0.3113005 +0.009080105 0.1372908 0.3113005 +0.01434988 0.1372908 0.3113005 +0.02107202 0.1372908 0.3113005 +0.02934285 0.1372908 0.3113005 +0.03925039 0.1372908 0.3113005 +0.05087609 0.1372908 0.3113005 +0.06429595 0.1372908 0.3113005 +0.07958143 0.1372908 0.3113005 +0.0968001 0.1372908 0.3113005 +0.1160161 0.1372908 0.3113005 +0.1372908 0.1372908 0.3113005 +0.1606827 0.1372908 0.3113005 +0.1862481 0.1372908 0.3113005 +0.2140411 0.1372908 0.3113005 +0.2441142 0.1372908 0.3113005 +0.2765176 0.1372908 0.3113005 +0.3113005 0.1372908 0.3113005 +0.3485102 0.1372908 0.3113005 +0.388193 0.1372908 0.3113005 +0.4303934 0.1372908 0.3113005 +0.4751555 0.1372908 0.3113005 +0.5225216 0.1372908 0.3113005 +0.5725335 0.1372908 0.3113005 +0.6252316 0.1372908 0.3113005 +0.6806558 0.1372908 0.3113005 +0.7388448 0.1372908 0.3113005 +0.7998369 0.1372908 0.3113005 +0.8636691 0.1372908 0.3113005 +0.9303782 0.1372908 0.3113005 +1 0.1372908 0.3113005 +0 0.1606827 0.3113005 +0.002418731 0.1606827 0.3113005 +0.005155668 0.1606827 0.3113005 +0.009080105 0.1606827 0.3113005 +0.01434988 0.1606827 0.3113005 +0.02107202 0.1606827 0.3113005 +0.02934285 0.1606827 0.3113005 +0.03925039 0.1606827 0.3113005 +0.05087609 0.1606827 0.3113005 +0.06429595 0.1606827 0.3113005 +0.07958143 0.1606827 0.3113005 +0.0968001 0.1606827 0.3113005 +0.1160161 0.1606827 0.3113005 +0.1372908 0.1606827 0.3113005 +0.1606827 0.1606827 0.3113005 +0.1862481 0.1606827 0.3113005 +0.2140411 0.1606827 0.3113005 +0.2441142 0.1606827 0.3113005 +0.2765176 0.1606827 0.3113005 +0.3113005 0.1606827 0.3113005 +0.3485102 0.1606827 0.3113005 +0.388193 0.1606827 0.3113005 +0.4303934 0.1606827 0.3113005 +0.4751555 0.1606827 0.3113005 +0.5225216 0.1606827 0.3113005 +0.5725335 0.1606827 0.3113005 +0.6252316 0.1606827 0.3113005 +0.6806558 0.1606827 0.3113005 +0.7388448 0.1606827 0.3113005 +0.7998369 0.1606827 0.3113005 +0.8636691 0.1606827 0.3113005 +0.9303782 0.1606827 0.3113005 +1 0.1606827 0.3113005 +0 0.1862481 0.3113005 +0.002418731 0.1862481 0.3113005 +0.005155668 0.1862481 0.3113005 +0.009080105 0.1862481 0.3113005 +0.01434988 0.1862481 0.3113005 +0.02107202 0.1862481 0.3113005 +0.02934285 0.1862481 0.3113005 +0.03925039 0.1862481 0.3113005 +0.05087609 0.1862481 0.3113005 +0.06429595 0.1862481 0.3113005 +0.07958143 0.1862481 0.3113005 +0.0968001 0.1862481 0.3113005 +0.1160161 0.1862481 0.3113005 +0.1372908 0.1862481 0.3113005 +0.1606827 0.1862481 0.3113005 +0.1862481 0.1862481 0.3113005 +0.2140411 0.1862481 0.3113005 +0.2441142 0.1862481 0.3113005 +0.2765176 0.1862481 0.3113005 +0.3113005 0.1862481 0.3113005 +0.3485102 0.1862481 0.3113005 +0.388193 0.1862481 0.3113005 +0.4303934 0.1862481 0.3113005 +0.4751555 0.1862481 0.3113005 +0.5225216 0.1862481 0.3113005 +0.5725335 0.1862481 0.3113005 +0.6252316 0.1862481 0.3113005 +0.6806558 0.1862481 0.3113005 +0.7388448 0.1862481 0.3113005 +0.7998369 0.1862481 0.3113005 +0.8636691 0.1862481 0.3113005 +0.9303782 0.1862481 0.3113005 +1 0.1862481 0.3113005 +0 0.2140411 0.3113005 +0.002418731 0.2140411 0.3113005 +0.005155668 0.2140411 0.3113005 +0.009080105 0.2140411 0.3113005 +0.01434988 0.2140411 0.3113005 +0.02107202 0.2140411 0.3113005 +0.02934285 0.2140411 0.3113005 +0.03925039 0.2140411 0.3113005 +0.05087609 0.2140411 0.3113005 +0.06429595 0.2140411 0.3113005 +0.07958143 0.2140411 0.3113005 +0.0968001 0.2140411 0.3113005 +0.1160161 0.2140411 0.3113005 +0.1372908 0.2140411 0.3113005 +0.1606827 0.2140411 0.3113005 +0.1862481 0.2140411 0.3113005 +0.2140411 0.2140411 0.3113005 +0.2441142 0.2140411 0.3113005 +0.2765176 0.2140411 0.3113005 +0.3113005 0.2140411 0.3113005 +0.3485102 0.2140411 0.3113005 +0.388193 0.2140411 0.3113005 +0.4303934 0.2140411 0.3113005 +0.4751555 0.2140411 0.3113005 +0.5225216 0.2140411 0.3113005 +0.5725335 0.2140411 0.3113005 +0.6252316 0.2140411 0.3113005 +0.6806558 0.2140411 0.3113005 +0.7388448 0.2140411 0.3113005 +0.7998369 0.2140411 0.3113005 +0.8636691 0.2140411 0.3113005 +0.9303782 0.2140411 0.3113005 +1 0.2140411 0.3113005 +0 0.2441142 0.3113005 +0.002418731 0.2441142 0.3113005 +0.005155668 0.2441142 0.3113005 +0.009080105 0.2441142 0.3113005 +0.01434988 0.2441142 0.3113005 +0.02107202 0.2441142 0.3113005 +0.02934285 0.2441142 0.3113005 +0.03925039 0.2441142 0.3113005 +0.05087609 0.2441142 0.3113005 +0.06429595 0.2441142 0.3113005 +0.07958143 0.2441142 0.3113005 +0.0968001 0.2441142 0.3113005 +0.1160161 0.2441142 0.3113005 +0.1372908 0.2441142 0.3113005 +0.1606827 0.2441142 0.3113005 +0.1862481 0.2441142 0.3113005 +0.2140411 0.2441142 0.3113005 +0.2441142 0.2441142 0.3113005 +0.2765176 0.2441142 0.3113005 +0.3113005 0.2441142 0.3113005 +0.3485102 0.2441142 0.3113005 +0.388193 0.2441142 0.3113005 +0.4303934 0.2441142 0.3113005 +0.4751555 0.2441142 0.3113005 +0.5225216 0.2441142 0.3113005 +0.5725335 0.2441142 0.3113005 +0.6252316 0.2441142 0.3113005 +0.6806558 0.2441142 0.3113005 +0.7388448 0.2441142 0.3113005 +0.7998369 0.2441142 0.3113005 +0.8636691 0.2441142 0.3113005 +0.9303782 0.2441142 0.3113005 +1 0.2441142 0.3113005 +0 0.2765176 0.3113005 +0.002418731 0.2765176 0.3113005 +0.005155668 0.2765176 0.3113005 +0.009080105 0.2765176 0.3113005 +0.01434988 0.2765176 0.3113005 +0.02107202 0.2765176 0.3113005 +0.02934285 0.2765176 0.3113005 +0.03925039 0.2765176 0.3113005 +0.05087609 0.2765176 0.3113005 +0.06429595 0.2765176 0.3113005 +0.07958143 0.2765176 0.3113005 +0.0968001 0.2765176 0.3113005 +0.1160161 0.2765176 0.3113005 +0.1372908 0.2765176 0.3113005 +0.1606827 0.2765176 0.3113005 +0.1862481 0.2765176 0.3113005 +0.2140411 0.2765176 0.3113005 +0.2441142 0.2765176 0.3113005 +0.2765176 0.2765176 0.3113005 +0.3113005 0.2765176 0.3113005 +0.3485102 0.2765176 0.3113005 +0.388193 0.2765176 0.3113005 +0.4303934 0.2765176 0.3113005 +0.4751555 0.2765176 0.3113005 +0.5225216 0.2765176 0.3113005 +0.5725335 0.2765176 0.3113005 +0.6252316 0.2765176 0.3113005 +0.6806558 0.2765176 0.3113005 +0.7388448 0.2765176 0.3113005 +0.7998369 0.2765176 0.3113005 +0.8636691 0.2765176 0.3113005 +0.9303782 0.2765176 0.3113005 +1 0.2765176 0.3113005 +0 0.3113005 0.3113005 +0.002418731 0.3113005 0.3113005 +0.005155668 0.3113005 0.3113005 +0.009080105 0.3113005 0.3113005 +0.01434988 0.3113005 0.3113005 +0.02107202 0.3113005 0.3113005 +0.02934285 0.3113005 0.3113005 +0.03925039 0.3113005 0.3113005 +0.05087609 0.3113005 0.3113005 +0.06429595 0.3113005 0.3113005 +0.07958143 0.3113005 0.3113005 +0.0968001 0.3113005 0.3113005 +0.1160161 0.3113005 0.3113005 +0.1372908 0.3113005 0.3113005 +0.1606827 0.3113005 0.3113005 +0.1862481 0.3113005 0.3113005 +0.2140411 0.3113005 0.3113005 +0.2441142 0.3113005 0.3113005 +0.2765176 0.3113005 0.3113005 +0.3113005 0.3113005 0.3113005 +0.3485102 0.3113005 0.3113005 +0.388193 0.3113005 0.3113005 +0.4303934 0.3113005 0.3113005 +0.4751555 0.3113005 0.3113005 +0.5225216 0.3113005 0.3113005 +0.5725335 0.3113005 0.3113005 +0.6252316 0.3113005 0.3113005 +0.6806558 0.3113005 0.3113005 +0.7388448 0.3113005 0.3113005 +0.7998369 0.3113005 0.3113005 +0.8636691 0.3113005 0.3113005 +0.9303782 0.3113005 0.3113005 +1 0.3113005 0.3113005 +0 0.3485102 0.3113005 +0.002418731 0.3485102 0.3113005 +0.005155668 0.3485102 0.3113005 +0.009080105 0.3485102 0.3113005 +0.01434988 0.3485102 0.3113005 +0.02107202 0.3485102 0.3113005 +0.02934285 0.3485102 0.3113005 +0.03925039 0.3485102 0.3113005 +0.05087609 0.3485102 0.3113005 +0.06429595 0.3485102 0.3113005 +0.07958143 0.3485102 0.3113005 +0.0968001 0.3485102 0.3113005 +0.1160161 0.3485102 0.3113005 +0.1372908 0.3485102 0.3113005 +0.1606827 0.3485102 0.3113005 +0.1862481 0.3485102 0.3113005 +0.2140411 0.3485102 0.3113005 +0.2441142 0.3485102 0.3113005 +0.2765176 0.3485102 0.3113005 +0.3113005 0.3485102 0.3113005 +0.3485102 0.3485102 0.3113005 +0.388193 0.3485102 0.3113005 +0.4303934 0.3485102 0.3113005 +0.4751555 0.3485102 0.3113005 +0.5225216 0.3485102 0.3113005 +0.5725335 0.3485102 0.3113005 +0.6252316 0.3485102 0.3113005 +0.6806558 0.3485102 0.3113005 +0.7388448 0.3485102 0.3113005 +0.7998369 0.3485102 0.3113005 +0.8636691 0.3485102 0.3113005 +0.9303782 0.3485102 0.3113005 +1 0.3485102 0.3113005 +0 0.388193 0.3113005 +0.002418731 0.388193 0.3113005 +0.005155668 0.388193 0.3113005 +0.009080105 0.388193 0.3113005 +0.01434988 0.388193 0.3113005 +0.02107202 0.388193 0.3113005 +0.02934285 0.388193 0.3113005 +0.03925039 0.388193 0.3113005 +0.05087609 0.388193 0.3113005 +0.06429595 0.388193 0.3113005 +0.07958143 0.388193 0.3113005 +0.0968001 0.388193 0.3113005 +0.1160161 0.388193 0.3113005 +0.1372908 0.388193 0.3113005 +0.1606827 0.388193 0.3113005 +0.1862481 0.388193 0.3113005 +0.2140411 0.388193 0.3113005 +0.2441142 0.388193 0.3113005 +0.2765176 0.388193 0.3113005 +0.3113005 0.388193 0.3113005 +0.3485102 0.388193 0.3113005 +0.388193 0.388193 0.3113005 +0.4303934 0.388193 0.3113005 +0.4751555 0.388193 0.3113005 +0.5225216 0.388193 0.3113005 +0.5725335 0.388193 0.3113005 +0.6252316 0.388193 0.3113005 +0.6806558 0.388193 0.3113005 +0.7388448 0.388193 0.3113005 +0.7998369 0.388193 0.3113005 +0.8636691 0.388193 0.3113005 +0.9303782 0.388193 0.3113005 +1 0.388193 0.3113005 +0 0.4303934 0.3113005 +0.002418731 0.4303934 0.3113005 +0.005155668 0.4303934 0.3113005 +0.009080105 0.4303934 0.3113005 +0.01434988 0.4303934 0.3113005 +0.02107202 0.4303934 0.3113005 +0.02934285 0.4303934 0.3113005 +0.03925039 0.4303934 0.3113005 +0.05087609 0.4303934 0.3113005 +0.06429595 0.4303934 0.3113005 +0.07958143 0.4303934 0.3113005 +0.0968001 0.4303934 0.3113005 +0.1160161 0.4303934 0.3113005 +0.1372908 0.4303934 0.3113005 +0.1606827 0.4303934 0.3113005 +0.1862481 0.4303934 0.3113005 +0.2140411 0.4303934 0.3113005 +0.2441142 0.4303934 0.3113005 +0.2765176 0.4303934 0.3113005 +0.3113005 0.4303934 0.3113005 +0.3485102 0.4303934 0.3113005 +0.388193 0.4303934 0.3113005 +0.4303934 0.4303934 0.3113005 +0.4751555 0.4303934 0.3113005 +0.5225216 0.4303934 0.3113005 +0.5725335 0.4303934 0.3113005 +0.6252316 0.4303934 0.3113005 +0.6806558 0.4303934 0.3113005 +0.7388448 0.4303934 0.3113005 +0.7998369 0.4303934 0.3113005 +0.8636691 0.4303934 0.3113005 +0.9303782 0.4303934 0.3113005 +1 0.4303934 0.3113005 +0 0.4751555 0.3113005 +0.002418731 0.4751555 0.3113005 +0.005155668 0.4751555 0.3113005 +0.009080105 0.4751555 0.3113005 +0.01434988 0.4751555 0.3113005 +0.02107202 0.4751555 0.3113005 +0.02934285 0.4751555 0.3113005 +0.03925039 0.4751555 0.3113005 +0.05087609 0.4751555 0.3113005 +0.06429595 0.4751555 0.3113005 +0.07958143 0.4751555 0.3113005 +0.0968001 0.4751555 0.3113005 +0.1160161 0.4751555 0.3113005 +0.1372908 0.4751555 0.3113005 +0.1606827 0.4751555 0.3113005 +0.1862481 0.4751555 0.3113005 +0.2140411 0.4751555 0.3113005 +0.2441142 0.4751555 0.3113005 +0.2765176 0.4751555 0.3113005 +0.3113005 0.4751555 0.3113005 +0.3485102 0.4751555 0.3113005 +0.388193 0.4751555 0.3113005 +0.4303934 0.4751555 0.3113005 +0.4751555 0.4751555 0.3113005 +0.5225216 0.4751555 0.3113005 +0.5725335 0.4751555 0.3113005 +0.6252316 0.4751555 0.3113005 +0.6806558 0.4751555 0.3113005 +0.7388448 0.4751555 0.3113005 +0.7998369 0.4751555 0.3113005 +0.8636691 0.4751555 0.3113005 +0.9303782 0.4751555 0.3113005 +1 0.4751555 0.3113005 +0 0.5225216 0.3113005 +0.002418731 0.5225216 0.3113005 +0.005155668 0.5225216 0.3113005 +0.009080105 0.5225216 0.3113005 +0.01434988 0.5225216 0.3113005 +0.02107202 0.5225216 0.3113005 +0.02934285 0.5225216 0.3113005 +0.03925039 0.5225216 0.3113005 +0.05087609 0.5225216 0.3113005 +0.06429595 0.5225216 0.3113005 +0.07958143 0.5225216 0.3113005 +0.0968001 0.5225216 0.3113005 +0.1160161 0.5225216 0.3113005 +0.1372908 0.5225216 0.3113005 +0.1606827 0.5225216 0.3113005 +0.1862481 0.5225216 0.3113005 +0.2140411 0.5225216 0.3113005 +0.2441142 0.5225216 0.3113005 +0.2765176 0.5225216 0.3113005 +0.3113005 0.5225216 0.3113005 +0.3485102 0.5225216 0.3113005 +0.388193 0.5225216 0.3113005 +0.4303934 0.5225216 0.3113005 +0.4751555 0.5225216 0.3113005 +0.5225216 0.5225216 0.3113005 +0.5725335 0.5225216 0.3113005 +0.6252316 0.5225216 0.3113005 +0.6806558 0.5225216 0.3113005 +0.7388448 0.5225216 0.3113005 +0.7998369 0.5225216 0.3113005 +0.8636691 0.5225216 0.3113005 +0.9303782 0.5225216 0.3113005 +1 0.5225216 0.3113005 +0 0.5725335 0.3113005 +0.002418731 0.5725335 0.3113005 +0.005155668 0.5725335 0.3113005 +0.009080105 0.5725335 0.3113005 +0.01434988 0.5725335 0.3113005 +0.02107202 0.5725335 0.3113005 +0.02934285 0.5725335 0.3113005 +0.03925039 0.5725335 0.3113005 +0.05087609 0.5725335 0.3113005 +0.06429595 0.5725335 0.3113005 +0.07958143 0.5725335 0.3113005 +0.0968001 0.5725335 0.3113005 +0.1160161 0.5725335 0.3113005 +0.1372908 0.5725335 0.3113005 +0.1606827 0.5725335 0.3113005 +0.1862481 0.5725335 0.3113005 +0.2140411 0.5725335 0.3113005 +0.2441142 0.5725335 0.3113005 +0.2765176 0.5725335 0.3113005 +0.3113005 0.5725335 0.3113005 +0.3485102 0.5725335 0.3113005 +0.388193 0.5725335 0.3113005 +0.4303934 0.5725335 0.3113005 +0.4751555 0.5725335 0.3113005 +0.5225216 0.5725335 0.3113005 +0.5725335 0.5725335 0.3113005 +0.6252316 0.5725335 0.3113005 +0.6806558 0.5725335 0.3113005 +0.7388448 0.5725335 0.3113005 +0.7998369 0.5725335 0.3113005 +0.8636691 0.5725335 0.3113005 +0.9303782 0.5725335 0.3113005 +1 0.5725335 0.3113005 +0 0.6252316 0.3113005 +0.002418731 0.6252316 0.3113005 +0.005155668 0.6252316 0.3113005 +0.009080105 0.6252316 0.3113005 +0.01434988 0.6252316 0.3113005 +0.02107202 0.6252316 0.3113005 +0.02934285 0.6252316 0.3113005 +0.03925039 0.6252316 0.3113005 +0.05087609 0.6252316 0.3113005 +0.06429595 0.6252316 0.3113005 +0.07958143 0.6252316 0.3113005 +0.0968001 0.6252316 0.3113005 +0.1160161 0.6252316 0.3113005 +0.1372908 0.6252316 0.3113005 +0.1606827 0.6252316 0.3113005 +0.1862481 0.6252316 0.3113005 +0.2140411 0.6252316 0.3113005 +0.2441142 0.6252316 0.3113005 +0.2765176 0.6252316 0.3113005 +0.3113005 0.6252316 0.3113005 +0.3485102 0.6252316 0.3113005 +0.388193 0.6252316 0.3113005 +0.4303934 0.6252316 0.3113005 +0.4751555 0.6252316 0.3113005 +0.5225216 0.6252316 0.3113005 +0.5725335 0.6252316 0.3113005 +0.6252316 0.6252316 0.3113005 +0.6806558 0.6252316 0.3113005 +0.7388448 0.6252316 0.3113005 +0.7998369 0.6252316 0.3113005 +0.8636691 0.6252316 0.3113005 +0.9303782 0.6252316 0.3113005 +1 0.6252316 0.3113005 +0 0.6806558 0.3113005 +0.002418731 0.6806558 0.3113005 +0.005155668 0.6806558 0.3113005 +0.009080105 0.6806558 0.3113005 +0.01434988 0.6806558 0.3113005 +0.02107202 0.6806558 0.3113005 +0.02934285 0.6806558 0.3113005 +0.03925039 0.6806558 0.3113005 +0.05087609 0.6806558 0.3113005 +0.06429595 0.6806558 0.3113005 +0.07958143 0.6806558 0.3113005 +0.0968001 0.6806558 0.3113005 +0.1160161 0.6806558 0.3113005 +0.1372908 0.6806558 0.3113005 +0.1606827 0.6806558 0.3113005 +0.1862481 0.6806558 0.3113005 +0.2140411 0.6806558 0.3113005 +0.2441142 0.6806558 0.3113005 +0.2765176 0.6806558 0.3113005 +0.3113005 0.6806558 0.3113005 +0.3485102 0.6806558 0.3113005 +0.388193 0.6806558 0.3113005 +0.4303934 0.6806558 0.3113005 +0.4751555 0.6806558 0.3113005 +0.5225216 0.6806558 0.3113005 +0.5725335 0.6806558 0.3113005 +0.6252316 0.6806558 0.3113005 +0.6806558 0.6806558 0.3113005 +0.7388448 0.6806558 0.3113005 +0.7998369 0.6806558 0.3113005 +0.8636691 0.6806558 0.3113005 +0.9303782 0.6806558 0.3113005 +1 0.6806558 0.3113005 +0 0.7388448 0.3113005 +0.002418731 0.7388448 0.3113005 +0.005155668 0.7388448 0.3113005 +0.009080105 0.7388448 0.3113005 +0.01434988 0.7388448 0.3113005 +0.02107202 0.7388448 0.3113005 +0.02934285 0.7388448 0.3113005 +0.03925039 0.7388448 0.3113005 +0.05087609 0.7388448 0.3113005 +0.06429595 0.7388448 0.3113005 +0.07958143 0.7388448 0.3113005 +0.0968001 0.7388448 0.3113005 +0.1160161 0.7388448 0.3113005 +0.1372908 0.7388448 0.3113005 +0.1606827 0.7388448 0.3113005 +0.1862481 0.7388448 0.3113005 +0.2140411 0.7388448 0.3113005 +0.2441142 0.7388448 0.3113005 +0.2765176 0.7388448 0.3113005 +0.3113005 0.7388448 0.3113005 +0.3485102 0.7388448 0.3113005 +0.388193 0.7388448 0.3113005 +0.4303934 0.7388448 0.3113005 +0.4751555 0.7388448 0.3113005 +0.5225216 0.7388448 0.3113005 +0.5725335 0.7388448 0.3113005 +0.6252316 0.7388448 0.3113005 +0.6806558 0.7388448 0.3113005 +0.7388448 0.7388448 0.3113005 +0.7998369 0.7388448 0.3113005 +0.8636691 0.7388448 0.3113005 +0.9303782 0.7388448 0.3113005 +1 0.7388448 0.3113005 +0 0.7998369 0.3113005 +0.002418731 0.7998369 0.3113005 +0.005155668 0.7998369 0.3113005 +0.009080105 0.7998369 0.3113005 +0.01434988 0.7998369 0.3113005 +0.02107202 0.7998369 0.3113005 +0.02934285 0.7998369 0.3113005 +0.03925039 0.7998369 0.3113005 +0.05087609 0.7998369 0.3113005 +0.06429595 0.7998369 0.3113005 +0.07958143 0.7998369 0.3113005 +0.0968001 0.7998369 0.3113005 +0.1160161 0.7998369 0.3113005 +0.1372908 0.7998369 0.3113005 +0.1606827 0.7998369 0.3113005 +0.1862481 0.7998369 0.3113005 +0.2140411 0.7998369 0.3113005 +0.2441142 0.7998369 0.3113005 +0.2765176 0.7998369 0.3113005 +0.3113005 0.7998369 0.3113005 +0.3485102 0.7998369 0.3113005 +0.388193 0.7998369 0.3113005 +0.4303934 0.7998369 0.3113005 +0.4751555 0.7998369 0.3113005 +0.5225216 0.7998369 0.3113005 +0.5725335 0.7998369 0.3113005 +0.6252316 0.7998369 0.3113005 +0.6806558 0.7998369 0.3113005 +0.7388448 0.7998369 0.3113005 +0.7998369 0.7998369 0.3113005 +0.8636691 0.7998369 0.3113005 +0.9303782 0.7998369 0.3113005 +1 0.7998369 0.3113005 +0 0.8636691 0.3113005 +0.002418731 0.8636691 0.3113005 +0.005155668 0.8636691 0.3113005 +0.009080105 0.8636691 0.3113005 +0.01434988 0.8636691 0.3113005 +0.02107202 0.8636691 0.3113005 +0.02934285 0.8636691 0.3113005 +0.03925039 0.8636691 0.3113005 +0.05087609 0.8636691 0.3113005 +0.06429595 0.8636691 0.3113005 +0.07958143 0.8636691 0.3113005 +0.0968001 0.8636691 0.3113005 +0.1160161 0.8636691 0.3113005 +0.1372908 0.8636691 0.3113005 +0.1606827 0.8636691 0.3113005 +0.1862481 0.8636691 0.3113005 +0.2140411 0.8636691 0.3113005 +0.2441142 0.8636691 0.3113005 +0.2765176 0.8636691 0.3113005 +0.3113005 0.8636691 0.3113005 +0.3485102 0.8636691 0.3113005 +0.388193 0.8636691 0.3113005 +0.4303934 0.8636691 0.3113005 +0.4751555 0.8636691 0.3113005 +0.5225216 0.8636691 0.3113005 +0.5725335 0.8636691 0.3113005 +0.6252316 0.8636691 0.3113005 +0.6806558 0.8636691 0.3113005 +0.7388448 0.8636691 0.3113005 +0.7998369 0.8636691 0.3113005 +0.8636691 0.8636691 0.3113005 +0.9303782 0.8636691 0.3113005 +1 0.8636691 0.3113005 +0 0.9303782 0.3113005 +0.002418731 0.9303782 0.3113005 +0.005155668 0.9303782 0.3113005 +0.009080105 0.9303782 0.3113005 +0.01434988 0.9303782 0.3113005 +0.02107202 0.9303782 0.3113005 +0.02934285 0.9303782 0.3113005 +0.03925039 0.9303782 0.3113005 +0.05087609 0.9303782 0.3113005 +0.06429595 0.9303782 0.3113005 +0.07958143 0.9303782 0.3113005 +0.0968001 0.9303782 0.3113005 +0.1160161 0.9303782 0.3113005 +0.1372908 0.9303782 0.3113005 +0.1606827 0.9303782 0.3113005 +0.1862481 0.9303782 0.3113005 +0.2140411 0.9303782 0.3113005 +0.2441142 0.9303782 0.3113005 +0.2765176 0.9303782 0.3113005 +0.3113005 0.9303782 0.3113005 +0.3485102 0.9303782 0.3113005 +0.388193 0.9303782 0.3113005 +0.4303934 0.9303782 0.3113005 +0.4751555 0.9303782 0.3113005 +0.5225216 0.9303782 0.3113005 +0.5725335 0.9303782 0.3113005 +0.6252316 0.9303782 0.3113005 +0.6806558 0.9303782 0.3113005 +0.7388448 0.9303782 0.3113005 +0.7998369 0.9303782 0.3113005 +0.8636691 0.9303782 0.3113005 +0.9303782 0.9303782 0.3113005 +1 0.9303782 0.3113005 +0 1 0.3113005 +0.002418731 1 0.3113005 +0.005155668 1 0.3113005 +0.009080105 1 0.3113005 +0.01434988 1 0.3113005 +0.02107202 1 0.3113005 +0.02934285 1 0.3113005 +0.03925039 1 0.3113005 +0.05087609 1 0.3113005 +0.06429595 1 0.3113005 +0.07958143 1 0.3113005 +0.0968001 1 0.3113005 +0.1160161 1 0.3113005 +0.1372908 1 0.3113005 +0.1606827 1 0.3113005 +0.1862481 1 0.3113005 +0.2140411 1 0.3113005 +0.2441142 1 0.3113005 +0.2765176 1 0.3113005 +0.3113005 1 0.3113005 +0.3485102 1 0.3113005 +0.388193 1 0.3113005 +0.4303934 1 0.3113005 +0.4751555 1 0.3113005 +0.5225216 1 0.3113005 +0.5725335 1 0.3113005 +0.6252316 1 0.3113005 +0.6806558 1 0.3113005 +0.7388448 1 0.3113005 +0.7998369 1 0.3113005 +0.8636691 1 0.3113005 +0.9303782 1 0.3113005 +1 1 0.3113005 +0 0 0.3485102 +0.002418731 0 0.3485102 +0.005155668 0 0.3485102 +0.009080105 0 0.3485102 +0.01434988 0 0.3485102 +0.02107202 0 0.3485102 +0.02934285 0 0.3485102 +0.03925039 0 0.3485102 +0.05087609 0 0.3485102 +0.06429595 0 0.3485102 +0.07958143 0 0.3485102 +0.0968001 0 0.3485102 +0.1160161 0 0.3485102 +0.1372908 0 0.3485102 +0.1606827 0 0.3485102 +0.1862481 0 0.3485102 +0.2140411 0 0.3485102 +0.2441142 0 0.3485102 +0.2765176 0 0.3485102 +0.3113005 0 0.3485102 +0.3485102 0 0.3485102 +0.388193 0 0.3485102 +0.4303934 0 0.3485102 +0.4751555 0 0.3485102 +0.5225216 0 0.3485102 +0.5725335 0 0.3485102 +0.6252316 0 0.3485102 +0.6806558 0 0.3485102 +0.7388448 0 0.3485102 +0.7998369 0 0.3485102 +0.8636691 0 0.3485102 +0.9303782 0 0.3485102 +1 0 0.3485102 +0 0.002418731 0.3485102 +0.002418731 0.002418731 0.3485102 +0.005155668 0.002418731 0.3485102 +0.009080105 0.002418731 0.3485102 +0.01434988 0.002418731 0.3485102 +0.02107202 0.002418731 0.3485102 +0.02934285 0.002418731 0.3485102 +0.03925039 0.002418731 0.3485102 +0.05087609 0.002418731 0.3485102 +0.06429595 0.002418731 0.3485102 +0.07958143 0.002418731 0.3485102 +0.0968001 0.002418731 0.3485102 +0.1160161 0.002418731 0.3485102 +0.1372908 0.002418731 0.3485102 +0.1606827 0.002418731 0.3485102 +0.1862481 0.002418731 0.3485102 +0.2140411 0.002418731 0.3485102 +0.2441142 0.002418731 0.3485102 +0.2765176 0.002418731 0.3485102 +0.3113005 0.002418731 0.3485102 +0.3485102 0.002418731 0.3485102 +0.388193 0.002418731 0.3485102 +0.4303934 0.002418731 0.3485102 +0.4751555 0.002418731 0.3485102 +0.5225216 0.002418731 0.3485102 +0.5725335 0.002418731 0.3485102 +0.6252316 0.002418731 0.3485102 +0.6806558 0.002418731 0.3485102 +0.7388448 0.002418731 0.3485102 +0.7998369 0.002418731 0.3485102 +0.8636691 0.002418731 0.3485102 +0.9303782 0.002418731 0.3485102 +1 0.002418731 0.3485102 +0 0.005155668 0.3485102 +0.002418731 0.005155668 0.3485102 +0.005155668 0.005155668 0.3485102 +0.009080105 0.005155668 0.3485102 +0.01434988 0.005155668 0.3485102 +0.02107202 0.005155668 0.3485102 +0.02934285 0.005155668 0.3485102 +0.03925039 0.005155668 0.3485102 +0.05087609 0.005155668 0.3485102 +0.06429595 0.005155668 0.3485102 +0.07958143 0.005155668 0.3485102 +0.0968001 0.005155668 0.3485102 +0.1160161 0.005155668 0.3485102 +0.1372908 0.005155668 0.3485102 +0.1606827 0.005155668 0.3485102 +0.1862481 0.005155668 0.3485102 +0.2140411 0.005155668 0.3485102 +0.2441142 0.005155668 0.3485102 +0.2765176 0.005155668 0.3485102 +0.3113005 0.005155668 0.3485102 +0.3485102 0.005155668 0.3485102 +0.388193 0.005155668 0.3485102 +0.4303934 0.005155668 0.3485102 +0.4751555 0.005155668 0.3485102 +0.5225216 0.005155668 0.3485102 +0.5725335 0.005155668 0.3485102 +0.6252316 0.005155668 0.3485102 +0.6806558 0.005155668 0.3485102 +0.7388448 0.005155668 0.3485102 +0.7998369 0.005155668 0.3485102 +0.8636691 0.005155668 0.3485102 +0.9303782 0.005155668 0.3485102 +1 0.005155668 0.3485102 +0 0.009080105 0.3485102 +0.002418731 0.009080105 0.3485102 +0.005155668 0.009080105 0.3485102 +0.009080105 0.009080105 0.3485102 +0.01434988 0.009080105 0.3485102 +0.02107202 0.009080105 0.3485102 +0.02934285 0.009080105 0.3485102 +0.03925039 0.009080105 0.3485102 +0.05087609 0.009080105 0.3485102 +0.06429595 0.009080105 0.3485102 +0.07958143 0.009080105 0.3485102 +0.0968001 0.009080105 0.3485102 +0.1160161 0.009080105 0.3485102 +0.1372908 0.009080105 0.3485102 +0.1606827 0.009080105 0.3485102 +0.1862481 0.009080105 0.3485102 +0.2140411 0.009080105 0.3485102 +0.2441142 0.009080105 0.3485102 +0.2765176 0.009080105 0.3485102 +0.3113005 0.009080105 0.3485102 +0.3485102 0.009080105 0.3485102 +0.388193 0.009080105 0.3485102 +0.4303934 0.009080105 0.3485102 +0.4751555 0.009080105 0.3485102 +0.5225216 0.009080105 0.3485102 +0.5725335 0.009080105 0.3485102 +0.6252316 0.009080105 0.3485102 +0.6806558 0.009080105 0.3485102 +0.7388448 0.009080105 0.3485102 +0.7998369 0.009080105 0.3485102 +0.8636691 0.009080105 0.3485102 +0.9303782 0.009080105 0.3485102 +1 0.009080105 0.3485102 +0 0.01434988 0.3485102 +0.002418731 0.01434988 0.3485102 +0.005155668 0.01434988 0.3485102 +0.009080105 0.01434988 0.3485102 +0.01434988 0.01434988 0.3485102 +0.02107202 0.01434988 0.3485102 +0.02934285 0.01434988 0.3485102 +0.03925039 0.01434988 0.3485102 +0.05087609 0.01434988 0.3485102 +0.06429595 0.01434988 0.3485102 +0.07958143 0.01434988 0.3485102 +0.0968001 0.01434988 0.3485102 +0.1160161 0.01434988 0.3485102 +0.1372908 0.01434988 0.3485102 +0.1606827 0.01434988 0.3485102 +0.1862481 0.01434988 0.3485102 +0.2140411 0.01434988 0.3485102 +0.2441142 0.01434988 0.3485102 +0.2765176 0.01434988 0.3485102 +0.3113005 0.01434988 0.3485102 +0.3485102 0.01434988 0.3485102 +0.388193 0.01434988 0.3485102 +0.4303934 0.01434988 0.3485102 +0.4751555 0.01434988 0.3485102 +0.5225216 0.01434988 0.3485102 +0.5725335 0.01434988 0.3485102 +0.6252316 0.01434988 0.3485102 +0.6806558 0.01434988 0.3485102 +0.7388448 0.01434988 0.3485102 +0.7998369 0.01434988 0.3485102 +0.8636691 0.01434988 0.3485102 +0.9303782 0.01434988 0.3485102 +1 0.01434988 0.3485102 +0 0.02107202 0.3485102 +0.002418731 0.02107202 0.3485102 +0.005155668 0.02107202 0.3485102 +0.009080105 0.02107202 0.3485102 +0.01434988 0.02107202 0.3485102 +0.02107202 0.02107202 0.3485102 +0.02934285 0.02107202 0.3485102 +0.03925039 0.02107202 0.3485102 +0.05087609 0.02107202 0.3485102 +0.06429595 0.02107202 0.3485102 +0.07958143 0.02107202 0.3485102 +0.0968001 0.02107202 0.3485102 +0.1160161 0.02107202 0.3485102 +0.1372908 0.02107202 0.3485102 +0.1606827 0.02107202 0.3485102 +0.1862481 0.02107202 0.3485102 +0.2140411 0.02107202 0.3485102 +0.2441142 0.02107202 0.3485102 +0.2765176 0.02107202 0.3485102 +0.3113005 0.02107202 0.3485102 +0.3485102 0.02107202 0.3485102 +0.388193 0.02107202 0.3485102 +0.4303934 0.02107202 0.3485102 +0.4751555 0.02107202 0.3485102 +0.5225216 0.02107202 0.3485102 +0.5725335 0.02107202 0.3485102 +0.6252316 0.02107202 0.3485102 +0.6806558 0.02107202 0.3485102 +0.7388448 0.02107202 0.3485102 +0.7998369 0.02107202 0.3485102 +0.8636691 0.02107202 0.3485102 +0.9303782 0.02107202 0.3485102 +1 0.02107202 0.3485102 +0 0.02934285 0.3485102 +0.002418731 0.02934285 0.3485102 +0.005155668 0.02934285 0.3485102 +0.009080105 0.02934285 0.3485102 +0.01434988 0.02934285 0.3485102 +0.02107202 0.02934285 0.3485102 +0.02934285 0.02934285 0.3485102 +0.03925039 0.02934285 0.3485102 +0.05087609 0.02934285 0.3485102 +0.06429595 0.02934285 0.3485102 +0.07958143 0.02934285 0.3485102 +0.0968001 0.02934285 0.3485102 +0.1160161 0.02934285 0.3485102 +0.1372908 0.02934285 0.3485102 +0.1606827 0.02934285 0.3485102 +0.1862481 0.02934285 0.3485102 +0.2140411 0.02934285 0.3485102 +0.2441142 0.02934285 0.3485102 +0.2765176 0.02934285 0.3485102 +0.3113005 0.02934285 0.3485102 +0.3485102 0.02934285 0.3485102 +0.388193 0.02934285 0.3485102 +0.4303934 0.02934285 0.3485102 +0.4751555 0.02934285 0.3485102 +0.5225216 0.02934285 0.3485102 +0.5725335 0.02934285 0.3485102 +0.6252316 0.02934285 0.3485102 +0.6806558 0.02934285 0.3485102 +0.7388448 0.02934285 0.3485102 +0.7998369 0.02934285 0.3485102 +0.8636691 0.02934285 0.3485102 +0.9303782 0.02934285 0.3485102 +1 0.02934285 0.3485102 +0 0.03925039 0.3485102 +0.002418731 0.03925039 0.3485102 +0.005155668 0.03925039 0.3485102 +0.009080105 0.03925039 0.3485102 +0.01434988 0.03925039 0.3485102 +0.02107202 0.03925039 0.3485102 +0.02934285 0.03925039 0.3485102 +0.03925039 0.03925039 0.3485102 +0.05087609 0.03925039 0.3485102 +0.06429595 0.03925039 0.3485102 +0.07958143 0.03925039 0.3485102 +0.0968001 0.03925039 0.3485102 +0.1160161 0.03925039 0.3485102 +0.1372908 0.03925039 0.3485102 +0.1606827 0.03925039 0.3485102 +0.1862481 0.03925039 0.3485102 +0.2140411 0.03925039 0.3485102 +0.2441142 0.03925039 0.3485102 +0.2765176 0.03925039 0.3485102 +0.3113005 0.03925039 0.3485102 +0.3485102 0.03925039 0.3485102 +0.388193 0.03925039 0.3485102 +0.4303934 0.03925039 0.3485102 +0.4751555 0.03925039 0.3485102 +0.5225216 0.03925039 0.3485102 +0.5725335 0.03925039 0.3485102 +0.6252316 0.03925039 0.3485102 +0.6806558 0.03925039 0.3485102 +0.7388448 0.03925039 0.3485102 +0.7998369 0.03925039 0.3485102 +0.8636691 0.03925039 0.3485102 +0.9303782 0.03925039 0.3485102 +1 0.03925039 0.3485102 +0 0.05087609 0.3485102 +0.002418731 0.05087609 0.3485102 +0.005155668 0.05087609 0.3485102 +0.009080105 0.05087609 0.3485102 +0.01434988 0.05087609 0.3485102 +0.02107202 0.05087609 0.3485102 +0.02934285 0.05087609 0.3485102 +0.03925039 0.05087609 0.3485102 +0.05087609 0.05087609 0.3485102 +0.06429595 0.05087609 0.3485102 +0.07958143 0.05087609 0.3485102 +0.0968001 0.05087609 0.3485102 +0.1160161 0.05087609 0.3485102 +0.1372908 0.05087609 0.3485102 +0.1606827 0.05087609 0.3485102 +0.1862481 0.05087609 0.3485102 +0.2140411 0.05087609 0.3485102 +0.2441142 0.05087609 0.3485102 +0.2765176 0.05087609 0.3485102 +0.3113005 0.05087609 0.3485102 +0.3485102 0.05087609 0.3485102 +0.388193 0.05087609 0.3485102 +0.4303934 0.05087609 0.3485102 +0.4751555 0.05087609 0.3485102 +0.5225216 0.05087609 0.3485102 +0.5725335 0.05087609 0.3485102 +0.6252316 0.05087609 0.3485102 +0.6806558 0.05087609 0.3485102 +0.7388448 0.05087609 0.3485102 +0.7998369 0.05087609 0.3485102 +0.8636691 0.05087609 0.3485102 +0.9303782 0.05087609 0.3485102 +1 0.05087609 0.3485102 +0 0.06429595 0.3485102 +0.002418731 0.06429595 0.3485102 +0.005155668 0.06429595 0.3485102 +0.009080105 0.06429595 0.3485102 +0.01434988 0.06429595 0.3485102 +0.02107202 0.06429595 0.3485102 +0.02934285 0.06429595 0.3485102 +0.03925039 0.06429595 0.3485102 +0.05087609 0.06429595 0.3485102 +0.06429595 0.06429595 0.3485102 +0.07958143 0.06429595 0.3485102 +0.0968001 0.06429595 0.3485102 +0.1160161 0.06429595 0.3485102 +0.1372908 0.06429595 0.3485102 +0.1606827 0.06429595 0.3485102 +0.1862481 0.06429595 0.3485102 +0.2140411 0.06429595 0.3485102 +0.2441142 0.06429595 0.3485102 +0.2765176 0.06429595 0.3485102 +0.3113005 0.06429595 0.3485102 +0.3485102 0.06429595 0.3485102 +0.388193 0.06429595 0.3485102 +0.4303934 0.06429595 0.3485102 +0.4751555 0.06429595 0.3485102 +0.5225216 0.06429595 0.3485102 +0.5725335 0.06429595 0.3485102 +0.6252316 0.06429595 0.3485102 +0.6806558 0.06429595 0.3485102 +0.7388448 0.06429595 0.3485102 +0.7998369 0.06429595 0.3485102 +0.8636691 0.06429595 0.3485102 +0.9303782 0.06429595 0.3485102 +1 0.06429595 0.3485102 +0 0.07958143 0.3485102 +0.002418731 0.07958143 0.3485102 +0.005155668 0.07958143 0.3485102 +0.009080105 0.07958143 0.3485102 +0.01434988 0.07958143 0.3485102 +0.02107202 0.07958143 0.3485102 +0.02934285 0.07958143 0.3485102 +0.03925039 0.07958143 0.3485102 +0.05087609 0.07958143 0.3485102 +0.06429595 0.07958143 0.3485102 +0.07958143 0.07958143 0.3485102 +0.0968001 0.07958143 0.3485102 +0.1160161 0.07958143 0.3485102 +0.1372908 0.07958143 0.3485102 +0.1606827 0.07958143 0.3485102 +0.1862481 0.07958143 0.3485102 +0.2140411 0.07958143 0.3485102 +0.2441142 0.07958143 0.3485102 +0.2765176 0.07958143 0.3485102 +0.3113005 0.07958143 0.3485102 +0.3485102 0.07958143 0.3485102 +0.388193 0.07958143 0.3485102 +0.4303934 0.07958143 0.3485102 +0.4751555 0.07958143 0.3485102 +0.5225216 0.07958143 0.3485102 +0.5725335 0.07958143 0.3485102 +0.6252316 0.07958143 0.3485102 +0.6806558 0.07958143 0.3485102 +0.7388448 0.07958143 0.3485102 +0.7998369 0.07958143 0.3485102 +0.8636691 0.07958143 0.3485102 +0.9303782 0.07958143 0.3485102 +1 0.07958143 0.3485102 +0 0.0968001 0.3485102 +0.002418731 0.0968001 0.3485102 +0.005155668 0.0968001 0.3485102 +0.009080105 0.0968001 0.3485102 +0.01434988 0.0968001 0.3485102 +0.02107202 0.0968001 0.3485102 +0.02934285 0.0968001 0.3485102 +0.03925039 0.0968001 0.3485102 +0.05087609 0.0968001 0.3485102 +0.06429595 0.0968001 0.3485102 +0.07958143 0.0968001 0.3485102 +0.0968001 0.0968001 0.3485102 +0.1160161 0.0968001 0.3485102 +0.1372908 0.0968001 0.3485102 +0.1606827 0.0968001 0.3485102 +0.1862481 0.0968001 0.3485102 +0.2140411 0.0968001 0.3485102 +0.2441142 0.0968001 0.3485102 +0.2765176 0.0968001 0.3485102 +0.3113005 0.0968001 0.3485102 +0.3485102 0.0968001 0.3485102 +0.388193 0.0968001 0.3485102 +0.4303934 0.0968001 0.3485102 +0.4751555 0.0968001 0.3485102 +0.5225216 0.0968001 0.3485102 +0.5725335 0.0968001 0.3485102 +0.6252316 0.0968001 0.3485102 +0.6806558 0.0968001 0.3485102 +0.7388448 0.0968001 0.3485102 +0.7998369 0.0968001 0.3485102 +0.8636691 0.0968001 0.3485102 +0.9303782 0.0968001 0.3485102 +1 0.0968001 0.3485102 +0 0.1160161 0.3485102 +0.002418731 0.1160161 0.3485102 +0.005155668 0.1160161 0.3485102 +0.009080105 0.1160161 0.3485102 +0.01434988 0.1160161 0.3485102 +0.02107202 0.1160161 0.3485102 +0.02934285 0.1160161 0.3485102 +0.03925039 0.1160161 0.3485102 +0.05087609 0.1160161 0.3485102 +0.06429595 0.1160161 0.3485102 +0.07958143 0.1160161 0.3485102 +0.0968001 0.1160161 0.3485102 +0.1160161 0.1160161 0.3485102 +0.1372908 0.1160161 0.3485102 +0.1606827 0.1160161 0.3485102 +0.1862481 0.1160161 0.3485102 +0.2140411 0.1160161 0.3485102 +0.2441142 0.1160161 0.3485102 +0.2765176 0.1160161 0.3485102 +0.3113005 0.1160161 0.3485102 +0.3485102 0.1160161 0.3485102 +0.388193 0.1160161 0.3485102 +0.4303934 0.1160161 0.3485102 +0.4751555 0.1160161 0.3485102 +0.5225216 0.1160161 0.3485102 +0.5725335 0.1160161 0.3485102 +0.6252316 0.1160161 0.3485102 +0.6806558 0.1160161 0.3485102 +0.7388448 0.1160161 0.3485102 +0.7998369 0.1160161 0.3485102 +0.8636691 0.1160161 0.3485102 +0.9303782 0.1160161 0.3485102 +1 0.1160161 0.3485102 +0 0.1372908 0.3485102 +0.002418731 0.1372908 0.3485102 +0.005155668 0.1372908 0.3485102 +0.009080105 0.1372908 0.3485102 +0.01434988 0.1372908 0.3485102 +0.02107202 0.1372908 0.3485102 +0.02934285 0.1372908 0.3485102 +0.03925039 0.1372908 0.3485102 +0.05087609 0.1372908 0.3485102 +0.06429595 0.1372908 0.3485102 +0.07958143 0.1372908 0.3485102 +0.0968001 0.1372908 0.3485102 +0.1160161 0.1372908 0.3485102 +0.1372908 0.1372908 0.3485102 +0.1606827 0.1372908 0.3485102 +0.1862481 0.1372908 0.3485102 +0.2140411 0.1372908 0.3485102 +0.2441142 0.1372908 0.3485102 +0.2765176 0.1372908 0.3485102 +0.3113005 0.1372908 0.3485102 +0.3485102 0.1372908 0.3485102 +0.388193 0.1372908 0.3485102 +0.4303934 0.1372908 0.3485102 +0.4751555 0.1372908 0.3485102 +0.5225216 0.1372908 0.3485102 +0.5725335 0.1372908 0.3485102 +0.6252316 0.1372908 0.3485102 +0.6806558 0.1372908 0.3485102 +0.7388448 0.1372908 0.3485102 +0.7998369 0.1372908 0.3485102 +0.8636691 0.1372908 0.3485102 +0.9303782 0.1372908 0.3485102 +1 0.1372908 0.3485102 +0 0.1606827 0.3485102 +0.002418731 0.1606827 0.3485102 +0.005155668 0.1606827 0.3485102 +0.009080105 0.1606827 0.3485102 +0.01434988 0.1606827 0.3485102 +0.02107202 0.1606827 0.3485102 +0.02934285 0.1606827 0.3485102 +0.03925039 0.1606827 0.3485102 +0.05087609 0.1606827 0.3485102 +0.06429595 0.1606827 0.3485102 +0.07958143 0.1606827 0.3485102 +0.0968001 0.1606827 0.3485102 +0.1160161 0.1606827 0.3485102 +0.1372908 0.1606827 0.3485102 +0.1606827 0.1606827 0.3485102 +0.1862481 0.1606827 0.3485102 +0.2140411 0.1606827 0.3485102 +0.2441142 0.1606827 0.3485102 +0.2765176 0.1606827 0.3485102 +0.3113005 0.1606827 0.3485102 +0.3485102 0.1606827 0.3485102 +0.388193 0.1606827 0.3485102 +0.4303934 0.1606827 0.3485102 +0.4751555 0.1606827 0.3485102 +0.5225216 0.1606827 0.3485102 +0.5725335 0.1606827 0.3485102 +0.6252316 0.1606827 0.3485102 +0.6806558 0.1606827 0.3485102 +0.7388448 0.1606827 0.3485102 +0.7998369 0.1606827 0.3485102 +0.8636691 0.1606827 0.3485102 +0.9303782 0.1606827 0.3485102 +1 0.1606827 0.3485102 +0 0.1862481 0.3485102 +0.002418731 0.1862481 0.3485102 +0.005155668 0.1862481 0.3485102 +0.009080105 0.1862481 0.3485102 +0.01434988 0.1862481 0.3485102 +0.02107202 0.1862481 0.3485102 +0.02934285 0.1862481 0.3485102 +0.03925039 0.1862481 0.3485102 +0.05087609 0.1862481 0.3485102 +0.06429595 0.1862481 0.3485102 +0.07958143 0.1862481 0.3485102 +0.0968001 0.1862481 0.3485102 +0.1160161 0.1862481 0.3485102 +0.1372908 0.1862481 0.3485102 +0.1606827 0.1862481 0.3485102 +0.1862481 0.1862481 0.3485102 +0.2140411 0.1862481 0.3485102 +0.2441142 0.1862481 0.3485102 +0.2765176 0.1862481 0.3485102 +0.3113005 0.1862481 0.3485102 +0.3485102 0.1862481 0.3485102 +0.388193 0.1862481 0.3485102 +0.4303934 0.1862481 0.3485102 +0.4751555 0.1862481 0.3485102 +0.5225216 0.1862481 0.3485102 +0.5725335 0.1862481 0.3485102 +0.6252316 0.1862481 0.3485102 +0.6806558 0.1862481 0.3485102 +0.7388448 0.1862481 0.3485102 +0.7998369 0.1862481 0.3485102 +0.8636691 0.1862481 0.3485102 +0.9303782 0.1862481 0.3485102 +1 0.1862481 0.3485102 +0 0.2140411 0.3485102 +0.002418731 0.2140411 0.3485102 +0.005155668 0.2140411 0.3485102 +0.009080105 0.2140411 0.3485102 +0.01434988 0.2140411 0.3485102 +0.02107202 0.2140411 0.3485102 +0.02934285 0.2140411 0.3485102 +0.03925039 0.2140411 0.3485102 +0.05087609 0.2140411 0.3485102 +0.06429595 0.2140411 0.3485102 +0.07958143 0.2140411 0.3485102 +0.0968001 0.2140411 0.3485102 +0.1160161 0.2140411 0.3485102 +0.1372908 0.2140411 0.3485102 +0.1606827 0.2140411 0.3485102 +0.1862481 0.2140411 0.3485102 +0.2140411 0.2140411 0.3485102 +0.2441142 0.2140411 0.3485102 +0.2765176 0.2140411 0.3485102 +0.3113005 0.2140411 0.3485102 +0.3485102 0.2140411 0.3485102 +0.388193 0.2140411 0.3485102 +0.4303934 0.2140411 0.3485102 +0.4751555 0.2140411 0.3485102 +0.5225216 0.2140411 0.3485102 +0.5725335 0.2140411 0.3485102 +0.6252316 0.2140411 0.3485102 +0.6806558 0.2140411 0.3485102 +0.7388448 0.2140411 0.3485102 +0.7998369 0.2140411 0.3485102 +0.8636691 0.2140411 0.3485102 +0.9303782 0.2140411 0.3485102 +1 0.2140411 0.3485102 +0 0.2441142 0.3485102 +0.002418731 0.2441142 0.3485102 +0.005155668 0.2441142 0.3485102 +0.009080105 0.2441142 0.3485102 +0.01434988 0.2441142 0.3485102 +0.02107202 0.2441142 0.3485102 +0.02934285 0.2441142 0.3485102 +0.03925039 0.2441142 0.3485102 +0.05087609 0.2441142 0.3485102 +0.06429595 0.2441142 0.3485102 +0.07958143 0.2441142 0.3485102 +0.0968001 0.2441142 0.3485102 +0.1160161 0.2441142 0.3485102 +0.1372908 0.2441142 0.3485102 +0.1606827 0.2441142 0.3485102 +0.1862481 0.2441142 0.3485102 +0.2140411 0.2441142 0.3485102 +0.2441142 0.2441142 0.3485102 +0.2765176 0.2441142 0.3485102 +0.3113005 0.2441142 0.3485102 +0.3485102 0.2441142 0.3485102 +0.388193 0.2441142 0.3485102 +0.4303934 0.2441142 0.3485102 +0.4751555 0.2441142 0.3485102 +0.5225216 0.2441142 0.3485102 +0.5725335 0.2441142 0.3485102 +0.6252316 0.2441142 0.3485102 +0.6806558 0.2441142 0.3485102 +0.7388448 0.2441142 0.3485102 +0.7998369 0.2441142 0.3485102 +0.8636691 0.2441142 0.3485102 +0.9303782 0.2441142 0.3485102 +1 0.2441142 0.3485102 +0 0.2765176 0.3485102 +0.002418731 0.2765176 0.3485102 +0.005155668 0.2765176 0.3485102 +0.009080105 0.2765176 0.3485102 +0.01434988 0.2765176 0.3485102 +0.02107202 0.2765176 0.3485102 +0.02934285 0.2765176 0.3485102 +0.03925039 0.2765176 0.3485102 +0.05087609 0.2765176 0.3485102 +0.06429595 0.2765176 0.3485102 +0.07958143 0.2765176 0.3485102 +0.0968001 0.2765176 0.3485102 +0.1160161 0.2765176 0.3485102 +0.1372908 0.2765176 0.3485102 +0.1606827 0.2765176 0.3485102 +0.1862481 0.2765176 0.3485102 +0.2140411 0.2765176 0.3485102 +0.2441142 0.2765176 0.3485102 +0.2765176 0.2765176 0.3485102 +0.3113005 0.2765176 0.3485102 +0.3485102 0.2765176 0.3485102 +0.388193 0.2765176 0.3485102 +0.4303934 0.2765176 0.3485102 +0.4751555 0.2765176 0.3485102 +0.5225216 0.2765176 0.3485102 +0.5725335 0.2765176 0.3485102 +0.6252316 0.2765176 0.3485102 +0.6806558 0.2765176 0.3485102 +0.7388448 0.2765176 0.3485102 +0.7998369 0.2765176 0.3485102 +0.8636691 0.2765176 0.3485102 +0.9303782 0.2765176 0.3485102 +1 0.2765176 0.3485102 +0 0.3113005 0.3485102 +0.002418731 0.3113005 0.3485102 +0.005155668 0.3113005 0.3485102 +0.009080105 0.3113005 0.3485102 +0.01434988 0.3113005 0.3485102 +0.02107202 0.3113005 0.3485102 +0.02934285 0.3113005 0.3485102 +0.03925039 0.3113005 0.3485102 +0.05087609 0.3113005 0.3485102 +0.06429595 0.3113005 0.3485102 +0.07958143 0.3113005 0.3485102 +0.0968001 0.3113005 0.3485102 +0.1160161 0.3113005 0.3485102 +0.1372908 0.3113005 0.3485102 +0.1606827 0.3113005 0.3485102 +0.1862481 0.3113005 0.3485102 +0.2140411 0.3113005 0.3485102 +0.2441142 0.3113005 0.3485102 +0.2765176 0.3113005 0.3485102 +0.3113005 0.3113005 0.3485102 +0.3485102 0.3113005 0.3485102 +0.388193 0.3113005 0.3485102 +0.4303934 0.3113005 0.3485102 +0.4751555 0.3113005 0.3485102 +0.5225216 0.3113005 0.3485102 +0.5725335 0.3113005 0.3485102 +0.6252316 0.3113005 0.3485102 +0.6806558 0.3113005 0.3485102 +0.7388448 0.3113005 0.3485102 +0.7998369 0.3113005 0.3485102 +0.8636691 0.3113005 0.3485102 +0.9303782 0.3113005 0.3485102 +1 0.3113005 0.3485102 +0 0.3485102 0.3485102 +0.002418731 0.3485102 0.3485102 +0.005155668 0.3485102 0.3485102 +0.009080105 0.3485102 0.3485102 +0.01434988 0.3485102 0.3485102 +0.02107202 0.3485102 0.3485102 +0.02934285 0.3485102 0.3485102 +0.03925039 0.3485102 0.3485102 +0.05087609 0.3485102 0.3485102 +0.06429595 0.3485102 0.3485102 +0.07958143 0.3485102 0.3485102 +0.0968001 0.3485102 0.3485102 +0.1160161 0.3485102 0.3485102 +0.1372908 0.3485102 0.3485102 +0.1606827 0.3485102 0.3485102 +0.1862481 0.3485102 0.3485102 +0.2140411 0.3485102 0.3485102 +0.2441142 0.3485102 0.3485102 +0.2765176 0.3485102 0.3485102 +0.3113005 0.3485102 0.3485102 +0.3485102 0.3485102 0.3485102 +0.388193 0.3485102 0.3485102 +0.4303934 0.3485102 0.3485102 +0.4751555 0.3485102 0.3485102 +0.5225216 0.3485102 0.3485102 +0.5725335 0.3485102 0.3485102 +0.6252316 0.3485102 0.3485102 +0.6806558 0.3485102 0.3485102 +0.7388448 0.3485102 0.3485102 +0.7998369 0.3485102 0.3485102 +0.8636691 0.3485102 0.3485102 +0.9303782 0.3485102 0.3485102 +1 0.3485102 0.3485102 +0 0.388193 0.3485102 +0.002418731 0.388193 0.3485102 +0.005155668 0.388193 0.3485102 +0.009080105 0.388193 0.3485102 +0.01434988 0.388193 0.3485102 +0.02107202 0.388193 0.3485102 +0.02934285 0.388193 0.3485102 +0.03925039 0.388193 0.3485102 +0.05087609 0.388193 0.3485102 +0.06429595 0.388193 0.3485102 +0.07958143 0.388193 0.3485102 +0.0968001 0.388193 0.3485102 +0.1160161 0.388193 0.3485102 +0.1372908 0.388193 0.3485102 +0.1606827 0.388193 0.3485102 +0.1862481 0.388193 0.3485102 +0.2140411 0.388193 0.3485102 +0.2441142 0.388193 0.3485102 +0.2765176 0.388193 0.3485102 +0.3113005 0.388193 0.3485102 +0.3485102 0.388193 0.3485102 +0.388193 0.388193 0.3485102 +0.4303934 0.388193 0.3485102 +0.4751555 0.388193 0.3485102 +0.5225216 0.388193 0.3485102 +0.5725335 0.388193 0.3485102 +0.6252316 0.388193 0.3485102 +0.6806558 0.388193 0.3485102 +0.7388448 0.388193 0.3485102 +0.7998369 0.388193 0.3485102 +0.8636691 0.388193 0.3485102 +0.9303782 0.388193 0.3485102 +1 0.388193 0.3485102 +0 0.4303934 0.3485102 +0.002418731 0.4303934 0.3485102 +0.005155668 0.4303934 0.3485102 +0.009080105 0.4303934 0.3485102 +0.01434988 0.4303934 0.3485102 +0.02107202 0.4303934 0.3485102 +0.02934285 0.4303934 0.3485102 +0.03925039 0.4303934 0.3485102 +0.05087609 0.4303934 0.3485102 +0.06429595 0.4303934 0.3485102 +0.07958143 0.4303934 0.3485102 +0.0968001 0.4303934 0.3485102 +0.1160161 0.4303934 0.3485102 +0.1372908 0.4303934 0.3485102 +0.1606827 0.4303934 0.3485102 +0.1862481 0.4303934 0.3485102 +0.2140411 0.4303934 0.3485102 +0.2441142 0.4303934 0.3485102 +0.2765176 0.4303934 0.3485102 +0.3113005 0.4303934 0.3485102 +0.3485102 0.4303934 0.3485102 +0.388193 0.4303934 0.3485102 +0.4303934 0.4303934 0.3485102 +0.4751555 0.4303934 0.3485102 +0.5225216 0.4303934 0.3485102 +0.5725335 0.4303934 0.3485102 +0.6252316 0.4303934 0.3485102 +0.6806558 0.4303934 0.3485102 +0.7388448 0.4303934 0.3485102 +0.7998369 0.4303934 0.3485102 +0.8636691 0.4303934 0.3485102 +0.9303782 0.4303934 0.3485102 +1 0.4303934 0.3485102 +0 0.4751555 0.3485102 +0.002418731 0.4751555 0.3485102 +0.005155668 0.4751555 0.3485102 +0.009080105 0.4751555 0.3485102 +0.01434988 0.4751555 0.3485102 +0.02107202 0.4751555 0.3485102 +0.02934285 0.4751555 0.3485102 +0.03925039 0.4751555 0.3485102 +0.05087609 0.4751555 0.3485102 +0.06429595 0.4751555 0.3485102 +0.07958143 0.4751555 0.3485102 +0.0968001 0.4751555 0.3485102 +0.1160161 0.4751555 0.3485102 +0.1372908 0.4751555 0.3485102 +0.1606827 0.4751555 0.3485102 +0.1862481 0.4751555 0.3485102 +0.2140411 0.4751555 0.3485102 +0.2441142 0.4751555 0.3485102 +0.2765176 0.4751555 0.3485102 +0.3113005 0.4751555 0.3485102 +0.3485102 0.4751555 0.3485102 +0.388193 0.4751555 0.3485102 +0.4303934 0.4751555 0.3485102 +0.4751555 0.4751555 0.3485102 +0.5225216 0.4751555 0.3485102 +0.5725335 0.4751555 0.3485102 +0.6252316 0.4751555 0.3485102 +0.6806558 0.4751555 0.3485102 +0.7388448 0.4751555 0.3485102 +0.7998369 0.4751555 0.3485102 +0.8636691 0.4751555 0.3485102 +0.9303782 0.4751555 0.3485102 +1 0.4751555 0.3485102 +0 0.5225216 0.3485102 +0.002418731 0.5225216 0.3485102 +0.005155668 0.5225216 0.3485102 +0.009080105 0.5225216 0.3485102 +0.01434988 0.5225216 0.3485102 +0.02107202 0.5225216 0.3485102 +0.02934285 0.5225216 0.3485102 +0.03925039 0.5225216 0.3485102 +0.05087609 0.5225216 0.3485102 +0.06429595 0.5225216 0.3485102 +0.07958143 0.5225216 0.3485102 +0.0968001 0.5225216 0.3485102 +0.1160161 0.5225216 0.3485102 +0.1372908 0.5225216 0.3485102 +0.1606827 0.5225216 0.3485102 +0.1862481 0.5225216 0.3485102 +0.2140411 0.5225216 0.3485102 +0.2441142 0.5225216 0.3485102 +0.2765176 0.5225216 0.3485102 +0.3113005 0.5225216 0.3485102 +0.3485102 0.5225216 0.3485102 +0.388193 0.5225216 0.3485102 +0.4303934 0.5225216 0.3485102 +0.4751555 0.5225216 0.3485102 +0.5225216 0.5225216 0.3485102 +0.5725335 0.5225216 0.3485102 +0.6252316 0.5225216 0.3485102 +0.6806558 0.5225216 0.3485102 +0.7388448 0.5225216 0.3485102 +0.7998369 0.5225216 0.3485102 +0.8636691 0.5225216 0.3485102 +0.9303782 0.5225216 0.3485102 +1 0.5225216 0.3485102 +0 0.5725335 0.3485102 +0.002418731 0.5725335 0.3485102 +0.005155668 0.5725335 0.3485102 +0.009080105 0.5725335 0.3485102 +0.01434988 0.5725335 0.3485102 +0.02107202 0.5725335 0.3485102 +0.02934285 0.5725335 0.3485102 +0.03925039 0.5725335 0.3485102 +0.05087609 0.5725335 0.3485102 +0.06429595 0.5725335 0.3485102 +0.07958143 0.5725335 0.3485102 +0.0968001 0.5725335 0.3485102 +0.1160161 0.5725335 0.3485102 +0.1372908 0.5725335 0.3485102 +0.1606827 0.5725335 0.3485102 +0.1862481 0.5725335 0.3485102 +0.2140411 0.5725335 0.3485102 +0.2441142 0.5725335 0.3485102 +0.2765176 0.5725335 0.3485102 +0.3113005 0.5725335 0.3485102 +0.3485102 0.5725335 0.3485102 +0.388193 0.5725335 0.3485102 +0.4303934 0.5725335 0.3485102 +0.4751555 0.5725335 0.3485102 +0.5225216 0.5725335 0.3485102 +0.5725335 0.5725335 0.3485102 +0.6252316 0.5725335 0.3485102 +0.6806558 0.5725335 0.3485102 +0.7388448 0.5725335 0.3485102 +0.7998369 0.5725335 0.3485102 +0.8636691 0.5725335 0.3485102 +0.9303782 0.5725335 0.3485102 +1 0.5725335 0.3485102 +0 0.6252316 0.3485102 +0.002418731 0.6252316 0.3485102 +0.005155668 0.6252316 0.3485102 +0.009080105 0.6252316 0.3485102 +0.01434988 0.6252316 0.3485102 +0.02107202 0.6252316 0.3485102 +0.02934285 0.6252316 0.3485102 +0.03925039 0.6252316 0.3485102 +0.05087609 0.6252316 0.3485102 +0.06429595 0.6252316 0.3485102 +0.07958143 0.6252316 0.3485102 +0.0968001 0.6252316 0.3485102 +0.1160161 0.6252316 0.3485102 +0.1372908 0.6252316 0.3485102 +0.1606827 0.6252316 0.3485102 +0.1862481 0.6252316 0.3485102 +0.2140411 0.6252316 0.3485102 +0.2441142 0.6252316 0.3485102 +0.2765176 0.6252316 0.3485102 +0.3113005 0.6252316 0.3485102 +0.3485102 0.6252316 0.3485102 +0.388193 0.6252316 0.3485102 +0.4303934 0.6252316 0.3485102 +0.4751555 0.6252316 0.3485102 +0.5225216 0.6252316 0.3485102 +0.5725335 0.6252316 0.3485102 +0.6252316 0.6252316 0.3485102 +0.6806558 0.6252316 0.3485102 +0.7388448 0.6252316 0.3485102 +0.7998369 0.6252316 0.3485102 +0.8636691 0.6252316 0.3485102 +0.9303782 0.6252316 0.3485102 +1 0.6252316 0.3485102 +0 0.6806558 0.3485102 +0.002418731 0.6806558 0.3485102 +0.005155668 0.6806558 0.3485102 +0.009080105 0.6806558 0.3485102 +0.01434988 0.6806558 0.3485102 +0.02107202 0.6806558 0.3485102 +0.02934285 0.6806558 0.3485102 +0.03925039 0.6806558 0.3485102 +0.05087609 0.6806558 0.3485102 +0.06429595 0.6806558 0.3485102 +0.07958143 0.6806558 0.3485102 +0.0968001 0.6806558 0.3485102 +0.1160161 0.6806558 0.3485102 +0.1372908 0.6806558 0.3485102 +0.1606827 0.6806558 0.3485102 +0.1862481 0.6806558 0.3485102 +0.2140411 0.6806558 0.3485102 +0.2441142 0.6806558 0.3485102 +0.2765176 0.6806558 0.3485102 +0.3113005 0.6806558 0.3485102 +0.3485102 0.6806558 0.3485102 +0.388193 0.6806558 0.3485102 +0.4303934 0.6806558 0.3485102 +0.4751555 0.6806558 0.3485102 +0.5225216 0.6806558 0.3485102 +0.5725335 0.6806558 0.3485102 +0.6252316 0.6806558 0.3485102 +0.6806558 0.6806558 0.3485102 +0.7388448 0.6806558 0.3485102 +0.7998369 0.6806558 0.3485102 +0.8636691 0.6806558 0.3485102 +0.9303782 0.6806558 0.3485102 +1 0.6806558 0.3485102 +0 0.7388448 0.3485102 +0.002418731 0.7388448 0.3485102 +0.005155668 0.7388448 0.3485102 +0.009080105 0.7388448 0.3485102 +0.01434988 0.7388448 0.3485102 +0.02107202 0.7388448 0.3485102 +0.02934285 0.7388448 0.3485102 +0.03925039 0.7388448 0.3485102 +0.05087609 0.7388448 0.3485102 +0.06429595 0.7388448 0.3485102 +0.07958143 0.7388448 0.3485102 +0.0968001 0.7388448 0.3485102 +0.1160161 0.7388448 0.3485102 +0.1372908 0.7388448 0.3485102 +0.1606827 0.7388448 0.3485102 +0.1862481 0.7388448 0.3485102 +0.2140411 0.7388448 0.3485102 +0.2441142 0.7388448 0.3485102 +0.2765176 0.7388448 0.3485102 +0.3113005 0.7388448 0.3485102 +0.3485102 0.7388448 0.3485102 +0.388193 0.7388448 0.3485102 +0.4303934 0.7388448 0.3485102 +0.4751555 0.7388448 0.3485102 +0.5225216 0.7388448 0.3485102 +0.5725335 0.7388448 0.3485102 +0.6252316 0.7388448 0.3485102 +0.6806558 0.7388448 0.3485102 +0.7388448 0.7388448 0.3485102 +0.7998369 0.7388448 0.3485102 +0.8636691 0.7388448 0.3485102 +0.9303782 0.7388448 0.3485102 +1 0.7388448 0.3485102 +0 0.7998369 0.3485102 +0.002418731 0.7998369 0.3485102 +0.005155668 0.7998369 0.3485102 +0.009080105 0.7998369 0.3485102 +0.01434988 0.7998369 0.3485102 +0.02107202 0.7998369 0.3485102 +0.02934285 0.7998369 0.3485102 +0.03925039 0.7998369 0.3485102 +0.05087609 0.7998369 0.3485102 +0.06429595 0.7998369 0.3485102 +0.07958143 0.7998369 0.3485102 +0.0968001 0.7998369 0.3485102 +0.1160161 0.7998369 0.3485102 +0.1372908 0.7998369 0.3485102 +0.1606827 0.7998369 0.3485102 +0.1862481 0.7998369 0.3485102 +0.2140411 0.7998369 0.3485102 +0.2441142 0.7998369 0.3485102 +0.2765176 0.7998369 0.3485102 +0.3113005 0.7998369 0.3485102 +0.3485102 0.7998369 0.3485102 +0.388193 0.7998369 0.3485102 +0.4303934 0.7998369 0.3485102 +0.4751555 0.7998369 0.3485102 +0.5225216 0.7998369 0.3485102 +0.5725335 0.7998369 0.3485102 +0.6252316 0.7998369 0.3485102 +0.6806558 0.7998369 0.3485102 +0.7388448 0.7998369 0.3485102 +0.7998369 0.7998369 0.3485102 +0.8636691 0.7998369 0.3485102 +0.9303782 0.7998369 0.3485102 +1 0.7998369 0.3485102 +0 0.8636691 0.3485102 +0.002418731 0.8636691 0.3485102 +0.005155668 0.8636691 0.3485102 +0.009080105 0.8636691 0.3485102 +0.01434988 0.8636691 0.3485102 +0.02107202 0.8636691 0.3485102 +0.02934285 0.8636691 0.3485102 +0.03925039 0.8636691 0.3485102 +0.05087609 0.8636691 0.3485102 +0.06429595 0.8636691 0.3485102 +0.07958143 0.8636691 0.3485102 +0.0968001 0.8636691 0.3485102 +0.1160161 0.8636691 0.3485102 +0.1372908 0.8636691 0.3485102 +0.1606827 0.8636691 0.3485102 +0.1862481 0.8636691 0.3485102 +0.2140411 0.8636691 0.3485102 +0.2441142 0.8636691 0.3485102 +0.2765176 0.8636691 0.3485102 +0.3113005 0.8636691 0.3485102 +0.3485102 0.8636691 0.3485102 +0.388193 0.8636691 0.3485102 +0.4303934 0.8636691 0.3485102 +0.4751555 0.8636691 0.3485102 +0.5225216 0.8636691 0.3485102 +0.5725335 0.8636691 0.3485102 +0.6252316 0.8636691 0.3485102 +0.6806558 0.8636691 0.3485102 +0.7388448 0.8636691 0.3485102 +0.7998369 0.8636691 0.3485102 +0.8636691 0.8636691 0.3485102 +0.9303782 0.8636691 0.3485102 +1 0.8636691 0.3485102 +0 0.9303782 0.3485102 +0.002418731 0.9303782 0.3485102 +0.005155668 0.9303782 0.3485102 +0.009080105 0.9303782 0.3485102 +0.01434988 0.9303782 0.3485102 +0.02107202 0.9303782 0.3485102 +0.02934285 0.9303782 0.3485102 +0.03925039 0.9303782 0.3485102 +0.05087609 0.9303782 0.3485102 +0.06429595 0.9303782 0.3485102 +0.07958143 0.9303782 0.3485102 +0.0968001 0.9303782 0.3485102 +0.1160161 0.9303782 0.3485102 +0.1372908 0.9303782 0.3485102 +0.1606827 0.9303782 0.3485102 +0.1862481 0.9303782 0.3485102 +0.2140411 0.9303782 0.3485102 +0.2441142 0.9303782 0.3485102 +0.2765176 0.9303782 0.3485102 +0.3113005 0.9303782 0.3485102 +0.3485102 0.9303782 0.3485102 +0.388193 0.9303782 0.3485102 +0.4303934 0.9303782 0.3485102 +0.4751555 0.9303782 0.3485102 +0.5225216 0.9303782 0.3485102 +0.5725335 0.9303782 0.3485102 +0.6252316 0.9303782 0.3485102 +0.6806558 0.9303782 0.3485102 +0.7388448 0.9303782 0.3485102 +0.7998369 0.9303782 0.3485102 +0.8636691 0.9303782 0.3485102 +0.9303782 0.9303782 0.3485102 +1 0.9303782 0.3485102 +0 1 0.3485102 +0.002418731 1 0.3485102 +0.005155668 1 0.3485102 +0.009080105 1 0.3485102 +0.01434988 1 0.3485102 +0.02107202 1 0.3485102 +0.02934285 1 0.3485102 +0.03925039 1 0.3485102 +0.05087609 1 0.3485102 +0.06429595 1 0.3485102 +0.07958143 1 0.3485102 +0.0968001 1 0.3485102 +0.1160161 1 0.3485102 +0.1372908 1 0.3485102 +0.1606827 1 0.3485102 +0.1862481 1 0.3485102 +0.2140411 1 0.3485102 +0.2441142 1 0.3485102 +0.2765176 1 0.3485102 +0.3113005 1 0.3485102 +0.3485102 1 0.3485102 +0.388193 1 0.3485102 +0.4303934 1 0.3485102 +0.4751555 1 0.3485102 +0.5225216 1 0.3485102 +0.5725335 1 0.3485102 +0.6252316 1 0.3485102 +0.6806558 1 0.3485102 +0.7388448 1 0.3485102 +0.7998369 1 0.3485102 +0.8636691 1 0.3485102 +0.9303782 1 0.3485102 +1 1 0.3485102 +0 0 0.388193 +0.002418731 0 0.388193 +0.005155668 0 0.388193 +0.009080105 0 0.388193 +0.01434988 0 0.388193 +0.02107202 0 0.388193 +0.02934285 0 0.388193 +0.03925039 0 0.388193 +0.05087609 0 0.388193 +0.06429595 0 0.388193 +0.07958143 0 0.388193 +0.0968001 0 0.388193 +0.1160161 0 0.388193 +0.1372908 0 0.388193 +0.1606827 0 0.388193 +0.1862481 0 0.388193 +0.2140411 0 0.388193 +0.2441142 0 0.388193 +0.2765176 0 0.388193 +0.3113005 0 0.388193 +0.3485102 0 0.388193 +0.388193 0 0.388193 +0.4303934 0 0.388193 +0.4751555 0 0.388193 +0.5225216 0 0.388193 +0.5725335 0 0.388193 +0.6252316 0 0.388193 +0.6806558 0 0.388193 +0.7388448 0 0.388193 +0.7998369 0 0.388193 +0.8636691 0 0.388193 +0.9303782 0 0.388193 +1 0 0.388193 +0 0.002418731 0.388193 +0.002418731 0.002418731 0.388193 +0.005155668 0.002418731 0.388193 +0.009080105 0.002418731 0.388193 +0.01434988 0.002418731 0.388193 +0.02107202 0.002418731 0.388193 +0.02934285 0.002418731 0.388193 +0.03925039 0.002418731 0.388193 +0.05087609 0.002418731 0.388193 +0.06429595 0.002418731 0.388193 +0.07958143 0.002418731 0.388193 +0.0968001 0.002418731 0.388193 +0.1160161 0.002418731 0.388193 +0.1372908 0.002418731 0.388193 +0.1606827 0.002418731 0.388193 +0.1862481 0.002418731 0.388193 +0.2140411 0.002418731 0.388193 +0.2441142 0.002418731 0.388193 +0.2765176 0.002418731 0.388193 +0.3113005 0.002418731 0.388193 +0.3485102 0.002418731 0.388193 +0.388193 0.002418731 0.388193 +0.4303934 0.002418731 0.388193 +0.4751555 0.002418731 0.388193 +0.5225216 0.002418731 0.388193 +0.5725335 0.002418731 0.388193 +0.6252316 0.002418731 0.388193 +0.6806558 0.002418731 0.388193 +0.7388448 0.002418731 0.388193 +0.7998369 0.002418731 0.388193 +0.8636691 0.002418731 0.388193 +0.9303782 0.002418731 0.388193 +1 0.002418731 0.388193 +0 0.005155668 0.388193 +0.002418731 0.005155668 0.388193 +0.005155668 0.005155668 0.388193 +0.009080105 0.005155668 0.388193 +0.01434988 0.005155668 0.388193 +0.02107202 0.005155668 0.388193 +0.02934285 0.005155668 0.388193 +0.03925039 0.005155668 0.388193 +0.05087609 0.005155668 0.388193 +0.06429595 0.005155668 0.388193 +0.07958143 0.005155668 0.388193 +0.0968001 0.005155668 0.388193 +0.1160161 0.005155668 0.388193 +0.1372908 0.005155668 0.388193 +0.1606827 0.005155668 0.388193 +0.1862481 0.005155668 0.388193 +0.2140411 0.005155668 0.388193 +0.2441142 0.005155668 0.388193 +0.2765176 0.005155668 0.388193 +0.3113005 0.005155668 0.388193 +0.3485102 0.005155668 0.388193 +0.388193 0.005155668 0.388193 +0.4303934 0.005155668 0.388193 +0.4751555 0.005155668 0.388193 +0.5225216 0.005155668 0.388193 +0.5725335 0.005155668 0.388193 +0.6252316 0.005155668 0.388193 +0.6806558 0.005155668 0.388193 +0.7388448 0.005155668 0.388193 +0.7998369 0.005155668 0.388193 +0.8636691 0.005155668 0.388193 +0.9303782 0.005155668 0.388193 +1 0.005155668 0.388193 +0 0.009080105 0.388193 +0.002418731 0.009080105 0.388193 +0.005155668 0.009080105 0.388193 +0.009080105 0.009080105 0.388193 +0.01434988 0.009080105 0.388193 +0.02107202 0.009080105 0.388193 +0.02934285 0.009080105 0.388193 +0.03925039 0.009080105 0.388193 +0.05087609 0.009080105 0.388193 +0.06429595 0.009080105 0.388193 +0.07958143 0.009080105 0.388193 +0.0968001 0.009080105 0.388193 +0.1160161 0.009080105 0.388193 +0.1372908 0.009080105 0.388193 +0.1606827 0.009080105 0.388193 +0.1862481 0.009080105 0.388193 +0.2140411 0.009080105 0.388193 +0.2441142 0.009080105 0.388193 +0.2765176 0.009080105 0.388193 +0.3113005 0.009080105 0.388193 +0.3485102 0.009080105 0.388193 +0.388193 0.009080105 0.388193 +0.4303934 0.009080105 0.388193 +0.4751555 0.009080105 0.388193 +0.5225216 0.009080105 0.388193 +0.5725335 0.009080105 0.388193 +0.6252316 0.009080105 0.388193 +0.6806558 0.009080105 0.388193 +0.7388448 0.009080105 0.388193 +0.7998369 0.009080105 0.388193 +0.8636691 0.009080105 0.388193 +0.9303782 0.009080105 0.388193 +1 0.009080105 0.388193 +0 0.01434988 0.388193 +0.002418731 0.01434988 0.388193 +0.005155668 0.01434988 0.388193 +0.009080105 0.01434988 0.388193 +0.01434988 0.01434988 0.388193 +0.02107202 0.01434988 0.388193 +0.02934285 0.01434988 0.388193 +0.03925039 0.01434988 0.388193 +0.05087609 0.01434988 0.388193 +0.06429595 0.01434988 0.388193 +0.07958143 0.01434988 0.388193 +0.0968001 0.01434988 0.388193 +0.1160161 0.01434988 0.388193 +0.1372908 0.01434988 0.388193 +0.1606827 0.01434988 0.388193 +0.1862481 0.01434988 0.388193 +0.2140411 0.01434988 0.388193 +0.2441142 0.01434988 0.388193 +0.2765176 0.01434988 0.388193 +0.3113005 0.01434988 0.388193 +0.3485102 0.01434988 0.388193 +0.388193 0.01434988 0.388193 +0.4303934 0.01434988 0.388193 +0.4751555 0.01434988 0.388193 +0.5225216 0.01434988 0.388193 +0.5725335 0.01434988 0.388193 +0.6252316 0.01434988 0.388193 +0.6806558 0.01434988 0.388193 +0.7388448 0.01434988 0.388193 +0.7998369 0.01434988 0.388193 +0.8636691 0.01434988 0.388193 +0.9303782 0.01434988 0.388193 +1 0.01434988 0.388193 +0 0.02107202 0.388193 +0.002418731 0.02107202 0.388193 +0.005155668 0.02107202 0.388193 +0.009080105 0.02107202 0.388193 +0.01434988 0.02107202 0.388193 +0.02107202 0.02107202 0.388193 +0.02934285 0.02107202 0.388193 +0.03925039 0.02107202 0.388193 +0.05087609 0.02107202 0.388193 +0.06429595 0.02107202 0.388193 +0.07958143 0.02107202 0.388193 +0.0968001 0.02107202 0.388193 +0.1160161 0.02107202 0.388193 +0.1372908 0.02107202 0.388193 +0.1606827 0.02107202 0.388193 +0.1862481 0.02107202 0.388193 +0.2140411 0.02107202 0.388193 +0.2441142 0.02107202 0.388193 +0.2765176 0.02107202 0.388193 +0.3113005 0.02107202 0.388193 +0.3485102 0.02107202 0.388193 +0.388193 0.02107202 0.388193 +0.4303934 0.02107202 0.388193 +0.4751555 0.02107202 0.388193 +0.5225216 0.02107202 0.388193 +0.5725335 0.02107202 0.388193 +0.6252316 0.02107202 0.388193 +0.6806558 0.02107202 0.388193 +0.7388448 0.02107202 0.388193 +0.7998369 0.02107202 0.388193 +0.8636691 0.02107202 0.388193 +0.9303782 0.02107202 0.388193 +1 0.02107202 0.388193 +0 0.02934285 0.388193 +0.002418731 0.02934285 0.388193 +0.005155668 0.02934285 0.388193 +0.009080105 0.02934285 0.388193 +0.01434988 0.02934285 0.388193 +0.02107202 0.02934285 0.388193 +0.02934285 0.02934285 0.388193 +0.03925039 0.02934285 0.388193 +0.05087609 0.02934285 0.388193 +0.06429595 0.02934285 0.388193 +0.07958143 0.02934285 0.388193 +0.0968001 0.02934285 0.388193 +0.1160161 0.02934285 0.388193 +0.1372908 0.02934285 0.388193 +0.1606827 0.02934285 0.388193 +0.1862481 0.02934285 0.388193 +0.2140411 0.02934285 0.388193 +0.2441142 0.02934285 0.388193 +0.2765176 0.02934285 0.388193 +0.3113005 0.02934285 0.388193 +0.3485102 0.02934285 0.388193 +0.388193 0.02934285 0.388193 +0.4303934 0.02934285 0.388193 +0.4751555 0.02934285 0.388193 +0.5225216 0.02934285 0.388193 +0.5725335 0.02934285 0.388193 +0.6252316 0.02934285 0.388193 +0.6806558 0.02934285 0.388193 +0.7388448 0.02934285 0.388193 +0.7998369 0.02934285 0.388193 +0.8636691 0.02934285 0.388193 +0.9303782 0.02934285 0.388193 +1 0.02934285 0.388193 +0 0.03925039 0.388193 +0.002418731 0.03925039 0.388193 +0.005155668 0.03925039 0.388193 +0.009080105 0.03925039 0.388193 +0.01434988 0.03925039 0.388193 +0.02107202 0.03925039 0.388193 +0.02934285 0.03925039 0.388193 +0.03925039 0.03925039 0.388193 +0.05087609 0.03925039 0.388193 +0.06429595 0.03925039 0.388193 +0.07958143 0.03925039 0.388193 +0.0968001 0.03925039 0.388193 +0.1160161 0.03925039 0.388193 +0.1372908 0.03925039 0.388193 +0.1606827 0.03925039 0.388193 +0.1862481 0.03925039 0.388193 +0.2140411 0.03925039 0.388193 +0.2441142 0.03925039 0.388193 +0.2765176 0.03925039 0.388193 +0.3113005 0.03925039 0.388193 +0.3485102 0.03925039 0.388193 +0.388193 0.03925039 0.388193 +0.4303934 0.03925039 0.388193 +0.4751555 0.03925039 0.388193 +0.5225216 0.03925039 0.388193 +0.5725335 0.03925039 0.388193 +0.6252316 0.03925039 0.388193 +0.6806558 0.03925039 0.388193 +0.7388448 0.03925039 0.388193 +0.7998369 0.03925039 0.388193 +0.8636691 0.03925039 0.388193 +0.9303782 0.03925039 0.388193 +1 0.03925039 0.388193 +0 0.05087609 0.388193 +0.002418731 0.05087609 0.388193 +0.005155668 0.05087609 0.388193 +0.009080105 0.05087609 0.388193 +0.01434988 0.05087609 0.388193 +0.02107202 0.05087609 0.388193 +0.02934285 0.05087609 0.388193 +0.03925039 0.05087609 0.388193 +0.05087609 0.05087609 0.388193 +0.06429595 0.05087609 0.388193 +0.07958143 0.05087609 0.388193 +0.0968001 0.05087609 0.388193 +0.1160161 0.05087609 0.388193 +0.1372908 0.05087609 0.388193 +0.1606827 0.05087609 0.388193 +0.1862481 0.05087609 0.388193 +0.2140411 0.05087609 0.388193 +0.2441142 0.05087609 0.388193 +0.2765176 0.05087609 0.388193 +0.3113005 0.05087609 0.388193 +0.3485102 0.05087609 0.388193 +0.388193 0.05087609 0.388193 +0.4303934 0.05087609 0.388193 +0.4751555 0.05087609 0.388193 +0.5225216 0.05087609 0.388193 +0.5725335 0.05087609 0.388193 +0.6252316 0.05087609 0.388193 +0.6806558 0.05087609 0.388193 +0.7388448 0.05087609 0.388193 +0.7998369 0.05087609 0.388193 +0.8636691 0.05087609 0.388193 +0.9303782 0.05087609 0.388193 +1 0.05087609 0.388193 +0 0.06429595 0.388193 +0.002418731 0.06429595 0.388193 +0.005155668 0.06429595 0.388193 +0.009080105 0.06429595 0.388193 +0.01434988 0.06429595 0.388193 +0.02107202 0.06429595 0.388193 +0.02934285 0.06429595 0.388193 +0.03925039 0.06429595 0.388193 +0.05087609 0.06429595 0.388193 +0.06429595 0.06429595 0.388193 +0.07958143 0.06429595 0.388193 +0.0968001 0.06429595 0.388193 +0.1160161 0.06429595 0.388193 +0.1372908 0.06429595 0.388193 +0.1606827 0.06429595 0.388193 +0.1862481 0.06429595 0.388193 +0.2140411 0.06429595 0.388193 +0.2441142 0.06429595 0.388193 +0.2765176 0.06429595 0.388193 +0.3113005 0.06429595 0.388193 +0.3485102 0.06429595 0.388193 +0.388193 0.06429595 0.388193 +0.4303934 0.06429595 0.388193 +0.4751555 0.06429595 0.388193 +0.5225216 0.06429595 0.388193 +0.5725335 0.06429595 0.388193 +0.6252316 0.06429595 0.388193 +0.6806558 0.06429595 0.388193 +0.7388448 0.06429595 0.388193 +0.7998369 0.06429595 0.388193 +0.8636691 0.06429595 0.388193 +0.9303782 0.06429595 0.388193 +1 0.06429595 0.388193 +0 0.07958143 0.388193 +0.002418731 0.07958143 0.388193 +0.005155668 0.07958143 0.388193 +0.009080105 0.07958143 0.388193 +0.01434988 0.07958143 0.388193 +0.02107202 0.07958143 0.388193 +0.02934285 0.07958143 0.388193 +0.03925039 0.07958143 0.388193 +0.05087609 0.07958143 0.388193 +0.06429595 0.07958143 0.388193 +0.07958143 0.07958143 0.388193 +0.0968001 0.07958143 0.388193 +0.1160161 0.07958143 0.388193 +0.1372908 0.07958143 0.388193 +0.1606827 0.07958143 0.388193 +0.1862481 0.07958143 0.388193 +0.2140411 0.07958143 0.388193 +0.2441142 0.07958143 0.388193 +0.2765176 0.07958143 0.388193 +0.3113005 0.07958143 0.388193 +0.3485102 0.07958143 0.388193 +0.388193 0.07958143 0.388193 +0.4303934 0.07958143 0.388193 +0.4751555 0.07958143 0.388193 +0.5225216 0.07958143 0.388193 +0.5725335 0.07958143 0.388193 +0.6252316 0.07958143 0.388193 +0.6806558 0.07958143 0.388193 +0.7388448 0.07958143 0.388193 +0.7998369 0.07958143 0.388193 +0.8636691 0.07958143 0.388193 +0.9303782 0.07958143 0.388193 +1 0.07958143 0.388193 +0 0.0968001 0.388193 +0.002418731 0.0968001 0.388193 +0.005155668 0.0968001 0.388193 +0.009080105 0.0968001 0.388193 +0.01434988 0.0968001 0.388193 +0.02107202 0.0968001 0.388193 +0.02934285 0.0968001 0.388193 +0.03925039 0.0968001 0.388193 +0.05087609 0.0968001 0.388193 +0.06429595 0.0968001 0.388193 +0.07958143 0.0968001 0.388193 +0.0968001 0.0968001 0.388193 +0.1160161 0.0968001 0.388193 +0.1372908 0.0968001 0.388193 +0.1606827 0.0968001 0.388193 +0.1862481 0.0968001 0.388193 +0.2140411 0.0968001 0.388193 +0.2441142 0.0968001 0.388193 +0.2765176 0.0968001 0.388193 +0.3113005 0.0968001 0.388193 +0.3485102 0.0968001 0.388193 +0.388193 0.0968001 0.388193 +0.4303934 0.0968001 0.388193 +0.4751555 0.0968001 0.388193 +0.5225216 0.0968001 0.388193 +0.5725335 0.0968001 0.388193 +0.6252316 0.0968001 0.388193 +0.6806558 0.0968001 0.388193 +0.7388448 0.0968001 0.388193 +0.7998369 0.0968001 0.388193 +0.8636691 0.0968001 0.388193 +0.9303782 0.0968001 0.388193 +1 0.0968001 0.388193 +0 0.1160161 0.388193 +0.002418731 0.1160161 0.388193 +0.005155668 0.1160161 0.388193 +0.009080105 0.1160161 0.388193 +0.01434988 0.1160161 0.388193 +0.02107202 0.1160161 0.388193 +0.02934285 0.1160161 0.388193 +0.03925039 0.1160161 0.388193 +0.05087609 0.1160161 0.388193 +0.06429595 0.1160161 0.388193 +0.07958143 0.1160161 0.388193 +0.0968001 0.1160161 0.388193 +0.1160161 0.1160161 0.388193 +0.1372908 0.1160161 0.388193 +0.1606827 0.1160161 0.388193 +0.1862481 0.1160161 0.388193 +0.2140411 0.1160161 0.388193 +0.2441142 0.1160161 0.388193 +0.2765176 0.1160161 0.388193 +0.3113005 0.1160161 0.388193 +0.3485102 0.1160161 0.388193 +0.388193 0.1160161 0.388193 +0.4303934 0.1160161 0.388193 +0.4751555 0.1160161 0.388193 +0.5225216 0.1160161 0.388193 +0.5725335 0.1160161 0.388193 +0.6252316 0.1160161 0.388193 +0.6806558 0.1160161 0.388193 +0.7388448 0.1160161 0.388193 +0.7998369 0.1160161 0.388193 +0.8636691 0.1160161 0.388193 +0.9303782 0.1160161 0.388193 +1 0.1160161 0.388193 +0 0.1372908 0.388193 +0.002418731 0.1372908 0.388193 +0.005155668 0.1372908 0.388193 +0.009080105 0.1372908 0.388193 +0.01434988 0.1372908 0.388193 +0.02107202 0.1372908 0.388193 +0.02934285 0.1372908 0.388193 +0.03925039 0.1372908 0.388193 +0.05087609 0.1372908 0.388193 +0.06429595 0.1372908 0.388193 +0.07958143 0.1372908 0.388193 +0.0968001 0.1372908 0.388193 +0.1160161 0.1372908 0.388193 +0.1372908 0.1372908 0.388193 +0.1606827 0.1372908 0.388193 +0.1862481 0.1372908 0.388193 +0.2140411 0.1372908 0.388193 +0.2441142 0.1372908 0.388193 +0.2765176 0.1372908 0.388193 +0.3113005 0.1372908 0.388193 +0.3485102 0.1372908 0.388193 +0.388193 0.1372908 0.388193 +0.4303934 0.1372908 0.388193 +0.4751555 0.1372908 0.388193 +0.5225216 0.1372908 0.388193 +0.5725335 0.1372908 0.388193 +0.6252316 0.1372908 0.388193 +0.6806558 0.1372908 0.388193 +0.7388448 0.1372908 0.388193 +0.7998369 0.1372908 0.388193 +0.8636691 0.1372908 0.388193 +0.9303782 0.1372908 0.388193 +1 0.1372908 0.388193 +0 0.1606827 0.388193 +0.002418731 0.1606827 0.388193 +0.005155668 0.1606827 0.388193 +0.009080105 0.1606827 0.388193 +0.01434988 0.1606827 0.388193 +0.02107202 0.1606827 0.388193 +0.02934285 0.1606827 0.388193 +0.03925039 0.1606827 0.388193 +0.05087609 0.1606827 0.388193 +0.06429595 0.1606827 0.388193 +0.07958143 0.1606827 0.388193 +0.0968001 0.1606827 0.388193 +0.1160161 0.1606827 0.388193 +0.1372908 0.1606827 0.388193 +0.1606827 0.1606827 0.388193 +0.1862481 0.1606827 0.388193 +0.2140411 0.1606827 0.388193 +0.2441142 0.1606827 0.388193 +0.2765176 0.1606827 0.388193 +0.3113005 0.1606827 0.388193 +0.3485102 0.1606827 0.388193 +0.388193 0.1606827 0.388193 +0.4303934 0.1606827 0.388193 +0.4751555 0.1606827 0.388193 +0.5225216 0.1606827 0.388193 +0.5725335 0.1606827 0.388193 +0.6252316 0.1606827 0.388193 +0.6806558 0.1606827 0.388193 +0.7388448 0.1606827 0.388193 +0.7998369 0.1606827 0.388193 +0.8636691 0.1606827 0.388193 +0.9303782 0.1606827 0.388193 +1 0.1606827 0.388193 +0 0.1862481 0.388193 +0.002418731 0.1862481 0.388193 +0.005155668 0.1862481 0.388193 +0.009080105 0.1862481 0.388193 +0.01434988 0.1862481 0.388193 +0.02107202 0.1862481 0.388193 +0.02934285 0.1862481 0.388193 +0.03925039 0.1862481 0.388193 +0.05087609 0.1862481 0.388193 +0.06429595 0.1862481 0.388193 +0.07958143 0.1862481 0.388193 +0.0968001 0.1862481 0.388193 +0.1160161 0.1862481 0.388193 +0.1372908 0.1862481 0.388193 +0.1606827 0.1862481 0.388193 +0.1862481 0.1862481 0.388193 +0.2140411 0.1862481 0.388193 +0.2441142 0.1862481 0.388193 +0.2765176 0.1862481 0.388193 +0.3113005 0.1862481 0.388193 +0.3485102 0.1862481 0.388193 +0.388193 0.1862481 0.388193 +0.4303934 0.1862481 0.388193 +0.4751555 0.1862481 0.388193 +0.5225216 0.1862481 0.388193 +0.5725335 0.1862481 0.388193 +0.6252316 0.1862481 0.388193 +0.6806558 0.1862481 0.388193 +0.7388448 0.1862481 0.388193 +0.7998369 0.1862481 0.388193 +0.8636691 0.1862481 0.388193 +0.9303782 0.1862481 0.388193 +1 0.1862481 0.388193 +0 0.2140411 0.388193 +0.002418731 0.2140411 0.388193 +0.005155668 0.2140411 0.388193 +0.009080105 0.2140411 0.388193 +0.01434988 0.2140411 0.388193 +0.02107202 0.2140411 0.388193 +0.02934285 0.2140411 0.388193 +0.03925039 0.2140411 0.388193 +0.05087609 0.2140411 0.388193 +0.06429595 0.2140411 0.388193 +0.07958143 0.2140411 0.388193 +0.0968001 0.2140411 0.388193 +0.1160161 0.2140411 0.388193 +0.1372908 0.2140411 0.388193 +0.1606827 0.2140411 0.388193 +0.1862481 0.2140411 0.388193 +0.2140411 0.2140411 0.388193 +0.2441142 0.2140411 0.388193 +0.2765176 0.2140411 0.388193 +0.3113005 0.2140411 0.388193 +0.3485102 0.2140411 0.388193 +0.388193 0.2140411 0.388193 +0.4303934 0.2140411 0.388193 +0.4751555 0.2140411 0.388193 +0.5225216 0.2140411 0.388193 +0.5725335 0.2140411 0.388193 +0.6252316 0.2140411 0.388193 +0.6806558 0.2140411 0.388193 +0.7388448 0.2140411 0.388193 +0.7998369 0.2140411 0.388193 +0.8636691 0.2140411 0.388193 +0.9303782 0.2140411 0.388193 +1 0.2140411 0.388193 +0 0.2441142 0.388193 +0.002418731 0.2441142 0.388193 +0.005155668 0.2441142 0.388193 +0.009080105 0.2441142 0.388193 +0.01434988 0.2441142 0.388193 +0.02107202 0.2441142 0.388193 +0.02934285 0.2441142 0.388193 +0.03925039 0.2441142 0.388193 +0.05087609 0.2441142 0.388193 +0.06429595 0.2441142 0.388193 +0.07958143 0.2441142 0.388193 +0.0968001 0.2441142 0.388193 +0.1160161 0.2441142 0.388193 +0.1372908 0.2441142 0.388193 +0.1606827 0.2441142 0.388193 +0.1862481 0.2441142 0.388193 +0.2140411 0.2441142 0.388193 +0.2441142 0.2441142 0.388193 +0.2765176 0.2441142 0.388193 +0.3113005 0.2441142 0.388193 +0.3485102 0.2441142 0.388193 +0.388193 0.2441142 0.388193 +0.4303934 0.2441142 0.388193 +0.4751555 0.2441142 0.388193 +0.5225216 0.2441142 0.388193 +0.5725335 0.2441142 0.388193 +0.6252316 0.2441142 0.388193 +0.6806558 0.2441142 0.388193 +0.7388448 0.2441142 0.388193 +0.7998369 0.2441142 0.388193 +0.8636691 0.2441142 0.388193 +0.9303782 0.2441142 0.388193 +1 0.2441142 0.388193 +0 0.2765176 0.388193 +0.002418731 0.2765176 0.388193 +0.005155668 0.2765176 0.388193 +0.009080105 0.2765176 0.388193 +0.01434988 0.2765176 0.388193 +0.02107202 0.2765176 0.388193 +0.02934285 0.2765176 0.388193 +0.03925039 0.2765176 0.388193 +0.05087609 0.2765176 0.388193 +0.06429595 0.2765176 0.388193 +0.07958143 0.2765176 0.388193 +0.0968001 0.2765176 0.388193 +0.1160161 0.2765176 0.388193 +0.1372908 0.2765176 0.388193 +0.1606827 0.2765176 0.388193 +0.1862481 0.2765176 0.388193 +0.2140411 0.2765176 0.388193 +0.2441142 0.2765176 0.388193 +0.2765176 0.2765176 0.388193 +0.3113005 0.2765176 0.388193 +0.3485102 0.2765176 0.388193 +0.388193 0.2765176 0.388193 +0.4303934 0.2765176 0.388193 +0.4751555 0.2765176 0.388193 +0.5225216 0.2765176 0.388193 +0.5725335 0.2765176 0.388193 +0.6252316 0.2765176 0.388193 +0.6806558 0.2765176 0.388193 +0.7388448 0.2765176 0.388193 +0.7998369 0.2765176 0.388193 +0.8636691 0.2765176 0.388193 +0.9303782 0.2765176 0.388193 +1 0.2765176 0.388193 +0 0.3113005 0.388193 +0.002418731 0.3113005 0.388193 +0.005155668 0.3113005 0.388193 +0.009080105 0.3113005 0.388193 +0.01434988 0.3113005 0.388193 +0.02107202 0.3113005 0.388193 +0.02934285 0.3113005 0.388193 +0.03925039 0.3113005 0.388193 +0.05087609 0.3113005 0.388193 +0.06429595 0.3113005 0.388193 +0.07958143 0.3113005 0.388193 +0.0968001 0.3113005 0.388193 +0.1160161 0.3113005 0.388193 +0.1372908 0.3113005 0.388193 +0.1606827 0.3113005 0.388193 +0.1862481 0.3113005 0.388193 +0.2140411 0.3113005 0.388193 +0.2441142 0.3113005 0.388193 +0.2765176 0.3113005 0.388193 +0.3113005 0.3113005 0.388193 +0.3485102 0.3113005 0.388193 +0.388193 0.3113005 0.388193 +0.4303934 0.3113005 0.388193 +0.4751555 0.3113005 0.388193 +0.5225216 0.3113005 0.388193 +0.5725335 0.3113005 0.388193 +0.6252316 0.3113005 0.388193 +0.6806558 0.3113005 0.388193 +0.7388448 0.3113005 0.388193 +0.7998369 0.3113005 0.388193 +0.8636691 0.3113005 0.388193 +0.9303782 0.3113005 0.388193 +1 0.3113005 0.388193 +0 0.3485102 0.388193 +0.002418731 0.3485102 0.388193 +0.005155668 0.3485102 0.388193 +0.009080105 0.3485102 0.388193 +0.01434988 0.3485102 0.388193 +0.02107202 0.3485102 0.388193 +0.02934285 0.3485102 0.388193 +0.03925039 0.3485102 0.388193 +0.05087609 0.3485102 0.388193 +0.06429595 0.3485102 0.388193 +0.07958143 0.3485102 0.388193 +0.0968001 0.3485102 0.388193 +0.1160161 0.3485102 0.388193 +0.1372908 0.3485102 0.388193 +0.1606827 0.3485102 0.388193 +0.1862481 0.3485102 0.388193 +0.2140411 0.3485102 0.388193 +0.2441142 0.3485102 0.388193 +0.2765176 0.3485102 0.388193 +0.3113005 0.3485102 0.388193 +0.3485102 0.3485102 0.388193 +0.388193 0.3485102 0.388193 +0.4303934 0.3485102 0.388193 +0.4751555 0.3485102 0.388193 +0.5225216 0.3485102 0.388193 +0.5725335 0.3485102 0.388193 +0.6252316 0.3485102 0.388193 +0.6806558 0.3485102 0.388193 +0.7388448 0.3485102 0.388193 +0.7998369 0.3485102 0.388193 +0.8636691 0.3485102 0.388193 +0.9303782 0.3485102 0.388193 +1 0.3485102 0.388193 +0 0.388193 0.388193 +0.002418731 0.388193 0.388193 +0.005155668 0.388193 0.388193 +0.009080105 0.388193 0.388193 +0.01434988 0.388193 0.388193 +0.02107202 0.388193 0.388193 +0.02934285 0.388193 0.388193 +0.03925039 0.388193 0.388193 +0.05087609 0.388193 0.388193 +0.06429595 0.388193 0.388193 +0.07958143 0.388193 0.388193 +0.0968001 0.388193 0.388193 +0.1160161 0.388193 0.388193 +0.1372908 0.388193 0.388193 +0.1606827 0.388193 0.388193 +0.1862481 0.388193 0.388193 +0.2140411 0.388193 0.388193 +0.2441142 0.388193 0.388193 +0.2765176 0.388193 0.388193 +0.3113005 0.388193 0.388193 +0.3485102 0.388193 0.388193 +0.388193 0.388193 0.388193 +0.4303934 0.388193 0.388193 +0.4751555 0.388193 0.388193 +0.5225216 0.388193 0.388193 +0.5725335 0.388193 0.388193 +0.6252316 0.388193 0.388193 +0.6806558 0.388193 0.388193 +0.7388448 0.388193 0.388193 +0.7998369 0.388193 0.388193 +0.8636691 0.388193 0.388193 +0.9303782 0.388193 0.388193 +1 0.388193 0.388193 +0 0.4303934 0.388193 +0.002418731 0.4303934 0.388193 +0.005155668 0.4303934 0.388193 +0.009080105 0.4303934 0.388193 +0.01434988 0.4303934 0.388193 +0.02107202 0.4303934 0.388193 +0.02934285 0.4303934 0.388193 +0.03925039 0.4303934 0.388193 +0.05087609 0.4303934 0.388193 +0.06429595 0.4303934 0.388193 +0.07958143 0.4303934 0.388193 +0.0968001 0.4303934 0.388193 +0.1160161 0.4303934 0.388193 +0.1372908 0.4303934 0.388193 +0.1606827 0.4303934 0.388193 +0.1862481 0.4303934 0.388193 +0.2140411 0.4303934 0.388193 +0.2441142 0.4303934 0.388193 +0.2765176 0.4303934 0.388193 +0.3113005 0.4303934 0.388193 +0.3485102 0.4303934 0.388193 +0.388193 0.4303934 0.388193 +0.4303934 0.4303934 0.388193 +0.4751555 0.4303934 0.388193 +0.5225216 0.4303934 0.388193 +0.5725335 0.4303934 0.388193 +0.6252316 0.4303934 0.388193 +0.6806558 0.4303934 0.388193 +0.7388448 0.4303934 0.388193 +0.7998369 0.4303934 0.388193 +0.8636691 0.4303934 0.388193 +0.9303782 0.4303934 0.388193 +1 0.4303934 0.388193 +0 0.4751555 0.388193 +0.002418731 0.4751555 0.388193 +0.005155668 0.4751555 0.388193 +0.009080105 0.4751555 0.388193 +0.01434988 0.4751555 0.388193 +0.02107202 0.4751555 0.388193 +0.02934285 0.4751555 0.388193 +0.03925039 0.4751555 0.388193 +0.05087609 0.4751555 0.388193 +0.06429595 0.4751555 0.388193 +0.07958143 0.4751555 0.388193 +0.0968001 0.4751555 0.388193 +0.1160161 0.4751555 0.388193 +0.1372908 0.4751555 0.388193 +0.1606827 0.4751555 0.388193 +0.1862481 0.4751555 0.388193 +0.2140411 0.4751555 0.388193 +0.2441142 0.4751555 0.388193 +0.2765176 0.4751555 0.388193 +0.3113005 0.4751555 0.388193 +0.3485102 0.4751555 0.388193 +0.388193 0.4751555 0.388193 +0.4303934 0.4751555 0.388193 +0.4751555 0.4751555 0.388193 +0.5225216 0.4751555 0.388193 +0.5725335 0.4751555 0.388193 +0.6252316 0.4751555 0.388193 +0.6806558 0.4751555 0.388193 +0.7388448 0.4751555 0.388193 +0.7998369 0.4751555 0.388193 +0.8636691 0.4751555 0.388193 +0.9303782 0.4751555 0.388193 +1 0.4751555 0.388193 +0 0.5225216 0.388193 +0.002418731 0.5225216 0.388193 +0.005155668 0.5225216 0.388193 +0.009080105 0.5225216 0.388193 +0.01434988 0.5225216 0.388193 +0.02107202 0.5225216 0.388193 +0.02934285 0.5225216 0.388193 +0.03925039 0.5225216 0.388193 +0.05087609 0.5225216 0.388193 +0.06429595 0.5225216 0.388193 +0.07958143 0.5225216 0.388193 +0.0968001 0.5225216 0.388193 +0.1160161 0.5225216 0.388193 +0.1372908 0.5225216 0.388193 +0.1606827 0.5225216 0.388193 +0.1862481 0.5225216 0.388193 +0.2140411 0.5225216 0.388193 +0.2441142 0.5225216 0.388193 +0.2765176 0.5225216 0.388193 +0.3113005 0.5225216 0.388193 +0.3485102 0.5225216 0.388193 +0.388193 0.5225216 0.388193 +0.4303934 0.5225216 0.388193 +0.4751555 0.5225216 0.388193 +0.5225216 0.5225216 0.388193 +0.5725335 0.5225216 0.388193 +0.6252316 0.5225216 0.388193 +0.6806558 0.5225216 0.388193 +0.7388448 0.5225216 0.388193 +0.7998369 0.5225216 0.388193 +0.8636691 0.5225216 0.388193 +0.9303782 0.5225216 0.388193 +1 0.5225216 0.388193 +0 0.5725335 0.388193 +0.002418731 0.5725335 0.388193 +0.005155668 0.5725335 0.388193 +0.009080105 0.5725335 0.388193 +0.01434988 0.5725335 0.388193 +0.02107202 0.5725335 0.388193 +0.02934285 0.5725335 0.388193 +0.03925039 0.5725335 0.388193 +0.05087609 0.5725335 0.388193 +0.06429595 0.5725335 0.388193 +0.07958143 0.5725335 0.388193 +0.0968001 0.5725335 0.388193 +0.1160161 0.5725335 0.388193 +0.1372908 0.5725335 0.388193 +0.1606827 0.5725335 0.388193 +0.1862481 0.5725335 0.388193 +0.2140411 0.5725335 0.388193 +0.2441142 0.5725335 0.388193 +0.2765176 0.5725335 0.388193 +0.3113005 0.5725335 0.388193 +0.3485102 0.5725335 0.388193 +0.388193 0.5725335 0.388193 +0.4303934 0.5725335 0.388193 +0.4751555 0.5725335 0.388193 +0.5225216 0.5725335 0.388193 +0.5725335 0.5725335 0.388193 +0.6252316 0.5725335 0.388193 +0.6806558 0.5725335 0.388193 +0.7388448 0.5725335 0.388193 +0.7998369 0.5725335 0.388193 +0.8636691 0.5725335 0.388193 +0.9303782 0.5725335 0.388193 +1 0.5725335 0.388193 +0 0.6252316 0.388193 +0.002418731 0.6252316 0.388193 +0.005155668 0.6252316 0.388193 +0.009080105 0.6252316 0.388193 +0.01434988 0.6252316 0.388193 +0.02107202 0.6252316 0.388193 +0.02934285 0.6252316 0.388193 +0.03925039 0.6252316 0.388193 +0.05087609 0.6252316 0.388193 +0.06429595 0.6252316 0.388193 +0.07958143 0.6252316 0.388193 +0.0968001 0.6252316 0.388193 +0.1160161 0.6252316 0.388193 +0.1372908 0.6252316 0.388193 +0.1606827 0.6252316 0.388193 +0.1862481 0.6252316 0.388193 +0.2140411 0.6252316 0.388193 +0.2441142 0.6252316 0.388193 +0.2765176 0.6252316 0.388193 +0.3113005 0.6252316 0.388193 +0.3485102 0.6252316 0.388193 +0.388193 0.6252316 0.388193 +0.4303934 0.6252316 0.388193 +0.4751555 0.6252316 0.388193 +0.5225216 0.6252316 0.388193 +0.5725335 0.6252316 0.388193 +0.6252316 0.6252316 0.388193 +0.6806558 0.6252316 0.388193 +0.7388448 0.6252316 0.388193 +0.7998369 0.6252316 0.388193 +0.8636691 0.6252316 0.388193 +0.9303782 0.6252316 0.388193 +1 0.6252316 0.388193 +0 0.6806558 0.388193 +0.002418731 0.6806558 0.388193 +0.005155668 0.6806558 0.388193 +0.009080105 0.6806558 0.388193 +0.01434988 0.6806558 0.388193 +0.02107202 0.6806558 0.388193 +0.02934285 0.6806558 0.388193 +0.03925039 0.6806558 0.388193 +0.05087609 0.6806558 0.388193 +0.06429595 0.6806558 0.388193 +0.07958143 0.6806558 0.388193 +0.0968001 0.6806558 0.388193 +0.1160161 0.6806558 0.388193 +0.1372908 0.6806558 0.388193 +0.1606827 0.6806558 0.388193 +0.1862481 0.6806558 0.388193 +0.2140411 0.6806558 0.388193 +0.2441142 0.6806558 0.388193 +0.2765176 0.6806558 0.388193 +0.3113005 0.6806558 0.388193 +0.3485102 0.6806558 0.388193 +0.388193 0.6806558 0.388193 +0.4303934 0.6806558 0.388193 +0.4751555 0.6806558 0.388193 +0.5225216 0.6806558 0.388193 +0.5725335 0.6806558 0.388193 +0.6252316 0.6806558 0.388193 +0.6806558 0.6806558 0.388193 +0.7388448 0.6806558 0.388193 +0.7998369 0.6806558 0.388193 +0.8636691 0.6806558 0.388193 +0.9303782 0.6806558 0.388193 +1 0.6806558 0.388193 +0 0.7388448 0.388193 +0.002418731 0.7388448 0.388193 +0.005155668 0.7388448 0.388193 +0.009080105 0.7388448 0.388193 +0.01434988 0.7388448 0.388193 +0.02107202 0.7388448 0.388193 +0.02934285 0.7388448 0.388193 +0.03925039 0.7388448 0.388193 +0.05087609 0.7388448 0.388193 +0.06429595 0.7388448 0.388193 +0.07958143 0.7388448 0.388193 +0.0968001 0.7388448 0.388193 +0.1160161 0.7388448 0.388193 +0.1372908 0.7388448 0.388193 +0.1606827 0.7388448 0.388193 +0.1862481 0.7388448 0.388193 +0.2140411 0.7388448 0.388193 +0.2441142 0.7388448 0.388193 +0.2765176 0.7388448 0.388193 +0.3113005 0.7388448 0.388193 +0.3485102 0.7388448 0.388193 +0.388193 0.7388448 0.388193 +0.4303934 0.7388448 0.388193 +0.4751555 0.7388448 0.388193 +0.5225216 0.7388448 0.388193 +0.5725335 0.7388448 0.388193 +0.6252316 0.7388448 0.388193 +0.6806558 0.7388448 0.388193 +0.7388448 0.7388448 0.388193 +0.7998369 0.7388448 0.388193 +0.8636691 0.7388448 0.388193 +0.9303782 0.7388448 0.388193 +1 0.7388448 0.388193 +0 0.7998369 0.388193 +0.002418731 0.7998369 0.388193 +0.005155668 0.7998369 0.388193 +0.009080105 0.7998369 0.388193 +0.01434988 0.7998369 0.388193 +0.02107202 0.7998369 0.388193 +0.02934285 0.7998369 0.388193 +0.03925039 0.7998369 0.388193 +0.05087609 0.7998369 0.388193 +0.06429595 0.7998369 0.388193 +0.07958143 0.7998369 0.388193 +0.0968001 0.7998369 0.388193 +0.1160161 0.7998369 0.388193 +0.1372908 0.7998369 0.388193 +0.1606827 0.7998369 0.388193 +0.1862481 0.7998369 0.388193 +0.2140411 0.7998369 0.388193 +0.2441142 0.7998369 0.388193 +0.2765176 0.7998369 0.388193 +0.3113005 0.7998369 0.388193 +0.3485102 0.7998369 0.388193 +0.388193 0.7998369 0.388193 +0.4303934 0.7998369 0.388193 +0.4751555 0.7998369 0.388193 +0.5225216 0.7998369 0.388193 +0.5725335 0.7998369 0.388193 +0.6252316 0.7998369 0.388193 +0.6806558 0.7998369 0.388193 +0.7388448 0.7998369 0.388193 +0.7998369 0.7998369 0.388193 +0.8636691 0.7998369 0.388193 +0.9303782 0.7998369 0.388193 +1 0.7998369 0.388193 +0 0.8636691 0.388193 +0.002418731 0.8636691 0.388193 +0.005155668 0.8636691 0.388193 +0.009080105 0.8636691 0.388193 +0.01434988 0.8636691 0.388193 +0.02107202 0.8636691 0.388193 +0.02934285 0.8636691 0.388193 +0.03925039 0.8636691 0.388193 +0.05087609 0.8636691 0.388193 +0.06429595 0.8636691 0.388193 +0.07958143 0.8636691 0.388193 +0.0968001 0.8636691 0.388193 +0.1160161 0.8636691 0.388193 +0.1372908 0.8636691 0.388193 +0.1606827 0.8636691 0.388193 +0.1862481 0.8636691 0.388193 +0.2140411 0.8636691 0.388193 +0.2441142 0.8636691 0.388193 +0.2765176 0.8636691 0.388193 +0.3113005 0.8636691 0.388193 +0.3485102 0.8636691 0.388193 +0.388193 0.8636691 0.388193 +0.4303934 0.8636691 0.388193 +0.4751555 0.8636691 0.388193 +0.5225216 0.8636691 0.388193 +0.5725335 0.8636691 0.388193 +0.6252316 0.8636691 0.388193 +0.6806558 0.8636691 0.388193 +0.7388448 0.8636691 0.388193 +0.7998369 0.8636691 0.388193 +0.8636691 0.8636691 0.388193 +0.9303782 0.8636691 0.388193 +1 0.8636691 0.388193 +0 0.9303782 0.388193 +0.002418731 0.9303782 0.388193 +0.005155668 0.9303782 0.388193 +0.009080105 0.9303782 0.388193 +0.01434988 0.9303782 0.388193 +0.02107202 0.9303782 0.388193 +0.02934285 0.9303782 0.388193 +0.03925039 0.9303782 0.388193 +0.05087609 0.9303782 0.388193 +0.06429595 0.9303782 0.388193 +0.07958143 0.9303782 0.388193 +0.0968001 0.9303782 0.388193 +0.1160161 0.9303782 0.388193 +0.1372908 0.9303782 0.388193 +0.1606827 0.9303782 0.388193 +0.1862481 0.9303782 0.388193 +0.2140411 0.9303782 0.388193 +0.2441142 0.9303782 0.388193 +0.2765176 0.9303782 0.388193 +0.3113005 0.9303782 0.388193 +0.3485102 0.9303782 0.388193 +0.388193 0.9303782 0.388193 +0.4303934 0.9303782 0.388193 +0.4751555 0.9303782 0.388193 +0.5225216 0.9303782 0.388193 +0.5725335 0.9303782 0.388193 +0.6252316 0.9303782 0.388193 +0.6806558 0.9303782 0.388193 +0.7388448 0.9303782 0.388193 +0.7998369 0.9303782 0.388193 +0.8636691 0.9303782 0.388193 +0.9303782 0.9303782 0.388193 +1 0.9303782 0.388193 +0 1 0.388193 +0.002418731 1 0.388193 +0.005155668 1 0.388193 +0.009080105 1 0.388193 +0.01434988 1 0.388193 +0.02107202 1 0.388193 +0.02934285 1 0.388193 +0.03925039 1 0.388193 +0.05087609 1 0.388193 +0.06429595 1 0.388193 +0.07958143 1 0.388193 +0.0968001 1 0.388193 +0.1160161 1 0.388193 +0.1372908 1 0.388193 +0.1606827 1 0.388193 +0.1862481 1 0.388193 +0.2140411 1 0.388193 +0.2441142 1 0.388193 +0.2765176 1 0.388193 +0.3113005 1 0.388193 +0.3485102 1 0.388193 +0.388193 1 0.388193 +0.4303934 1 0.388193 +0.4751555 1 0.388193 +0.5225216 1 0.388193 +0.5725335 1 0.388193 +0.6252316 1 0.388193 +0.6806558 1 0.388193 +0.7388448 1 0.388193 +0.7998369 1 0.388193 +0.8636691 1 0.388193 +0.9303782 1 0.388193 +1 1 0.388193 +0 0 0.4303934 +0.002418731 0 0.4303934 +0.005155668 0 0.4303934 +0.009080105 0 0.4303934 +0.01434988 0 0.4303934 +0.02107202 0 0.4303934 +0.02934285 0 0.4303934 +0.03925039 0 0.4303934 +0.05087609 0 0.4303934 +0.06429595 0 0.4303934 +0.07958143 0 0.4303934 +0.0968001 0 0.4303934 +0.1160161 0 0.4303934 +0.1372908 0 0.4303934 +0.1606827 0 0.4303934 +0.1862481 0 0.4303934 +0.2140411 0 0.4303934 +0.2441142 0 0.4303934 +0.2765176 0 0.4303934 +0.3113005 0 0.4303934 +0.3485102 0 0.4303934 +0.388193 0 0.4303934 +0.4303934 0 0.4303934 +0.4751555 0 0.4303934 +0.5225216 0 0.4303934 +0.5725335 0 0.4303934 +0.6252316 0 0.4303934 +0.6806558 0 0.4303934 +0.7388448 0 0.4303934 +0.7998369 0 0.4303934 +0.8636691 0 0.4303934 +0.9303782 0 0.4303934 +1 0 0.4303934 +0 0.002418731 0.4303934 +0.002418731 0.002418731 0.4303934 +0.005155668 0.002418731 0.4303934 +0.009080105 0.002418731 0.4303934 +0.01434988 0.002418731 0.4303934 +0.02107202 0.002418731 0.4303934 +0.02934285 0.002418731 0.4303934 +0.03925039 0.002418731 0.4303934 +0.05087609 0.002418731 0.4303934 +0.06429595 0.002418731 0.4303934 +0.07958143 0.002418731 0.4303934 +0.0968001 0.002418731 0.4303934 +0.1160161 0.002418731 0.4303934 +0.1372908 0.002418731 0.4303934 +0.1606827 0.002418731 0.4303934 +0.1862481 0.002418731 0.4303934 +0.2140411 0.002418731 0.4303934 +0.2441142 0.002418731 0.4303934 +0.2765176 0.002418731 0.4303934 +0.3113005 0.002418731 0.4303934 +0.3485102 0.002418731 0.4303934 +0.388193 0.002418731 0.4303934 +0.4303934 0.002418731 0.4303934 +0.4751555 0.002418731 0.4303934 +0.5225216 0.002418731 0.4303934 +0.5725335 0.002418731 0.4303934 +0.6252316 0.002418731 0.4303934 +0.6806558 0.002418731 0.4303934 +0.7388448 0.002418731 0.4303934 +0.7998369 0.002418731 0.4303934 +0.8636691 0.002418731 0.4303934 +0.9303782 0.002418731 0.4303934 +1 0.002418731 0.4303934 +0 0.005155668 0.4303934 +0.002418731 0.005155668 0.4303934 +0.005155668 0.005155668 0.4303934 +0.009080105 0.005155668 0.4303934 +0.01434988 0.005155668 0.4303934 +0.02107202 0.005155668 0.4303934 +0.02934285 0.005155668 0.4303934 +0.03925039 0.005155668 0.4303934 +0.05087609 0.005155668 0.4303934 +0.06429595 0.005155668 0.4303934 +0.07958143 0.005155668 0.4303934 +0.0968001 0.005155668 0.4303934 +0.1160161 0.005155668 0.4303934 +0.1372908 0.005155668 0.4303934 +0.1606827 0.005155668 0.4303934 +0.1862481 0.005155668 0.4303934 +0.2140411 0.005155668 0.4303934 +0.2441142 0.005155668 0.4303934 +0.2765176 0.005155668 0.4303934 +0.3113005 0.005155668 0.4303934 +0.3485102 0.005155668 0.4303934 +0.388193 0.005155668 0.4303934 +0.4303934 0.005155668 0.4303934 +0.4751555 0.005155668 0.4303934 +0.5225216 0.005155668 0.4303934 +0.5725335 0.005155668 0.4303934 +0.6252316 0.005155668 0.4303934 +0.6806558 0.005155668 0.4303934 +0.7388448 0.005155668 0.4303934 +0.7998369 0.005155668 0.4303934 +0.8636691 0.005155668 0.4303934 +0.9303782 0.005155668 0.4303934 +1 0.005155668 0.4303934 +0 0.009080105 0.4303934 +0.002418731 0.009080105 0.4303934 +0.005155668 0.009080105 0.4303934 +0.009080105 0.009080105 0.4303934 +0.01434988 0.009080105 0.4303934 +0.02107202 0.009080105 0.4303934 +0.02934285 0.009080105 0.4303934 +0.03925039 0.009080105 0.4303934 +0.05087609 0.009080105 0.4303934 +0.06429595 0.009080105 0.4303934 +0.07958143 0.009080105 0.4303934 +0.0968001 0.009080105 0.4303934 +0.1160161 0.009080105 0.4303934 +0.1372908 0.009080105 0.4303934 +0.1606827 0.009080105 0.4303934 +0.1862481 0.009080105 0.4303934 +0.2140411 0.009080105 0.4303934 +0.2441142 0.009080105 0.4303934 +0.2765176 0.009080105 0.4303934 +0.3113005 0.009080105 0.4303934 +0.3485102 0.009080105 0.4303934 +0.388193 0.009080105 0.4303934 +0.4303934 0.009080105 0.4303934 +0.4751555 0.009080105 0.4303934 +0.5225216 0.009080105 0.4303934 +0.5725335 0.009080105 0.4303934 +0.6252316 0.009080105 0.4303934 +0.6806558 0.009080105 0.4303934 +0.7388448 0.009080105 0.4303934 +0.7998369 0.009080105 0.4303934 +0.8636691 0.009080105 0.4303934 +0.9303782 0.009080105 0.4303934 +1 0.009080105 0.4303934 +0 0.01434988 0.4303934 +0.002418731 0.01434988 0.4303934 +0.005155668 0.01434988 0.4303934 +0.009080105 0.01434988 0.4303934 +0.01434988 0.01434988 0.4303934 +0.02107202 0.01434988 0.4303934 +0.02934285 0.01434988 0.4303934 +0.03925039 0.01434988 0.4303934 +0.05087609 0.01434988 0.4303934 +0.06429595 0.01434988 0.4303934 +0.07958143 0.01434988 0.4303934 +0.0968001 0.01434988 0.4303934 +0.1160161 0.01434988 0.4303934 +0.1372908 0.01434988 0.4303934 +0.1606827 0.01434988 0.4303934 +0.1862481 0.01434988 0.4303934 +0.2140411 0.01434988 0.4303934 +0.2441142 0.01434988 0.4303934 +0.2765176 0.01434988 0.4303934 +0.3113005 0.01434988 0.4303934 +0.3485102 0.01434988 0.4303934 +0.388193 0.01434988 0.4303934 +0.4303934 0.01434988 0.4303934 +0.4751555 0.01434988 0.4303934 +0.5225216 0.01434988 0.4303934 +0.5725335 0.01434988 0.4303934 +0.6252316 0.01434988 0.4303934 +0.6806558 0.01434988 0.4303934 +0.7388448 0.01434988 0.4303934 +0.7998369 0.01434988 0.4303934 +0.8636691 0.01434988 0.4303934 +0.9303782 0.01434988 0.4303934 +1 0.01434988 0.4303934 +0 0.02107202 0.4303934 +0.002418731 0.02107202 0.4303934 +0.005155668 0.02107202 0.4303934 +0.009080105 0.02107202 0.4303934 +0.01434988 0.02107202 0.4303934 +0.02107202 0.02107202 0.4303934 +0.02934285 0.02107202 0.4303934 +0.03925039 0.02107202 0.4303934 +0.05087609 0.02107202 0.4303934 +0.06429595 0.02107202 0.4303934 +0.07958143 0.02107202 0.4303934 +0.0968001 0.02107202 0.4303934 +0.1160161 0.02107202 0.4303934 +0.1372908 0.02107202 0.4303934 +0.1606827 0.02107202 0.4303934 +0.1862481 0.02107202 0.4303934 +0.2140411 0.02107202 0.4303934 +0.2441142 0.02107202 0.4303934 +0.2765176 0.02107202 0.4303934 +0.3113005 0.02107202 0.4303934 +0.3485102 0.02107202 0.4303934 +0.388193 0.02107202 0.4303934 +0.4303934 0.02107202 0.4303934 +0.4751555 0.02107202 0.4303934 +0.5225216 0.02107202 0.4303934 +0.5725335 0.02107202 0.4303934 +0.6252316 0.02107202 0.4303934 +0.6806558 0.02107202 0.4303934 +0.7388448 0.02107202 0.4303934 +0.7998369 0.02107202 0.4303934 +0.8636691 0.02107202 0.4303934 +0.9303782 0.02107202 0.4303934 +1 0.02107202 0.4303934 +0 0.02934285 0.4303934 +0.002418731 0.02934285 0.4303934 +0.005155668 0.02934285 0.4303934 +0.009080105 0.02934285 0.4303934 +0.01434988 0.02934285 0.4303934 +0.02107202 0.02934285 0.4303934 +0.02934285 0.02934285 0.4303934 +0.03925039 0.02934285 0.4303934 +0.05087609 0.02934285 0.4303934 +0.06429595 0.02934285 0.4303934 +0.07958143 0.02934285 0.4303934 +0.0968001 0.02934285 0.4303934 +0.1160161 0.02934285 0.4303934 +0.1372908 0.02934285 0.4303934 +0.1606827 0.02934285 0.4303934 +0.1862481 0.02934285 0.4303934 +0.2140411 0.02934285 0.4303934 +0.2441142 0.02934285 0.4303934 +0.2765176 0.02934285 0.4303934 +0.3113005 0.02934285 0.4303934 +0.3485102 0.02934285 0.4303934 +0.388193 0.02934285 0.4303934 +0.4303934 0.02934285 0.4303934 +0.4751555 0.02934285 0.4303934 +0.5225216 0.02934285 0.4303934 +0.5725335 0.02934285 0.4303934 +0.6252316 0.02934285 0.4303934 +0.6806558 0.02934285 0.4303934 +0.7388448 0.02934285 0.4303934 +0.7998369 0.02934285 0.4303934 +0.8636691 0.02934285 0.4303934 +0.9303782 0.02934285 0.4303934 +1 0.02934285 0.4303934 +0 0.03925039 0.4303934 +0.002418731 0.03925039 0.4303934 +0.005155668 0.03925039 0.4303934 +0.009080105 0.03925039 0.4303934 +0.01434988 0.03925039 0.4303934 +0.02107202 0.03925039 0.4303934 +0.02934285 0.03925039 0.4303934 +0.03925039 0.03925039 0.4303934 +0.05087609 0.03925039 0.4303934 +0.06429595 0.03925039 0.4303934 +0.07958143 0.03925039 0.4303934 +0.0968001 0.03925039 0.4303934 +0.1160161 0.03925039 0.4303934 +0.1372908 0.03925039 0.4303934 +0.1606827 0.03925039 0.4303934 +0.1862481 0.03925039 0.4303934 +0.2140411 0.03925039 0.4303934 +0.2441142 0.03925039 0.4303934 +0.2765176 0.03925039 0.4303934 +0.3113005 0.03925039 0.4303934 +0.3485102 0.03925039 0.4303934 +0.388193 0.03925039 0.4303934 +0.4303934 0.03925039 0.4303934 +0.4751555 0.03925039 0.4303934 +0.5225216 0.03925039 0.4303934 +0.5725335 0.03925039 0.4303934 +0.6252316 0.03925039 0.4303934 +0.6806558 0.03925039 0.4303934 +0.7388448 0.03925039 0.4303934 +0.7998369 0.03925039 0.4303934 +0.8636691 0.03925039 0.4303934 +0.9303782 0.03925039 0.4303934 +1 0.03925039 0.4303934 +0 0.05087609 0.4303934 +0.002418731 0.05087609 0.4303934 +0.005155668 0.05087609 0.4303934 +0.009080105 0.05087609 0.4303934 +0.01434988 0.05087609 0.4303934 +0.02107202 0.05087609 0.4303934 +0.02934285 0.05087609 0.4303934 +0.03925039 0.05087609 0.4303934 +0.05087609 0.05087609 0.4303934 +0.06429595 0.05087609 0.4303934 +0.07958143 0.05087609 0.4303934 +0.0968001 0.05087609 0.4303934 +0.1160161 0.05087609 0.4303934 +0.1372908 0.05087609 0.4303934 +0.1606827 0.05087609 0.4303934 +0.1862481 0.05087609 0.4303934 +0.2140411 0.05087609 0.4303934 +0.2441142 0.05087609 0.4303934 +0.2765176 0.05087609 0.4303934 +0.3113005 0.05087609 0.4303934 +0.3485102 0.05087609 0.4303934 +0.388193 0.05087609 0.4303934 +0.4303934 0.05087609 0.4303934 +0.4751555 0.05087609 0.4303934 +0.5225216 0.05087609 0.4303934 +0.5725335 0.05087609 0.4303934 +0.6252316 0.05087609 0.4303934 +0.6806558 0.05087609 0.4303934 +0.7388448 0.05087609 0.4303934 +0.7998369 0.05087609 0.4303934 +0.8636691 0.05087609 0.4303934 +0.9303782 0.05087609 0.4303934 +1 0.05087609 0.4303934 +0 0.06429595 0.4303934 +0.002418731 0.06429595 0.4303934 +0.005155668 0.06429595 0.4303934 +0.009080105 0.06429595 0.4303934 +0.01434988 0.06429595 0.4303934 +0.02107202 0.06429595 0.4303934 +0.02934285 0.06429595 0.4303934 +0.03925039 0.06429595 0.4303934 +0.05087609 0.06429595 0.4303934 +0.06429595 0.06429595 0.4303934 +0.07958143 0.06429595 0.4303934 +0.0968001 0.06429595 0.4303934 +0.1160161 0.06429595 0.4303934 +0.1372908 0.06429595 0.4303934 +0.1606827 0.06429595 0.4303934 +0.1862481 0.06429595 0.4303934 +0.2140411 0.06429595 0.4303934 +0.2441142 0.06429595 0.4303934 +0.2765176 0.06429595 0.4303934 +0.3113005 0.06429595 0.4303934 +0.3485102 0.06429595 0.4303934 +0.388193 0.06429595 0.4303934 +0.4303934 0.06429595 0.4303934 +0.4751555 0.06429595 0.4303934 +0.5225216 0.06429595 0.4303934 +0.5725335 0.06429595 0.4303934 +0.6252316 0.06429595 0.4303934 +0.6806558 0.06429595 0.4303934 +0.7388448 0.06429595 0.4303934 +0.7998369 0.06429595 0.4303934 +0.8636691 0.06429595 0.4303934 +0.9303782 0.06429595 0.4303934 +1 0.06429595 0.4303934 +0 0.07958143 0.4303934 +0.002418731 0.07958143 0.4303934 +0.005155668 0.07958143 0.4303934 +0.009080105 0.07958143 0.4303934 +0.01434988 0.07958143 0.4303934 +0.02107202 0.07958143 0.4303934 +0.02934285 0.07958143 0.4303934 +0.03925039 0.07958143 0.4303934 +0.05087609 0.07958143 0.4303934 +0.06429595 0.07958143 0.4303934 +0.07958143 0.07958143 0.4303934 +0.0968001 0.07958143 0.4303934 +0.1160161 0.07958143 0.4303934 +0.1372908 0.07958143 0.4303934 +0.1606827 0.07958143 0.4303934 +0.1862481 0.07958143 0.4303934 +0.2140411 0.07958143 0.4303934 +0.2441142 0.07958143 0.4303934 +0.2765176 0.07958143 0.4303934 +0.3113005 0.07958143 0.4303934 +0.3485102 0.07958143 0.4303934 +0.388193 0.07958143 0.4303934 +0.4303934 0.07958143 0.4303934 +0.4751555 0.07958143 0.4303934 +0.5225216 0.07958143 0.4303934 +0.5725335 0.07958143 0.4303934 +0.6252316 0.07958143 0.4303934 +0.6806558 0.07958143 0.4303934 +0.7388448 0.07958143 0.4303934 +0.7998369 0.07958143 0.4303934 +0.8636691 0.07958143 0.4303934 +0.9303782 0.07958143 0.4303934 +1 0.07958143 0.4303934 +0 0.0968001 0.4303934 +0.002418731 0.0968001 0.4303934 +0.005155668 0.0968001 0.4303934 +0.009080105 0.0968001 0.4303934 +0.01434988 0.0968001 0.4303934 +0.02107202 0.0968001 0.4303934 +0.02934285 0.0968001 0.4303934 +0.03925039 0.0968001 0.4303934 +0.05087609 0.0968001 0.4303934 +0.06429595 0.0968001 0.4303934 +0.07958143 0.0968001 0.4303934 +0.0968001 0.0968001 0.4303934 +0.1160161 0.0968001 0.4303934 +0.1372908 0.0968001 0.4303934 +0.1606827 0.0968001 0.4303934 +0.1862481 0.0968001 0.4303934 +0.2140411 0.0968001 0.4303934 +0.2441142 0.0968001 0.4303934 +0.2765176 0.0968001 0.4303934 +0.3113005 0.0968001 0.4303934 +0.3485102 0.0968001 0.4303934 +0.388193 0.0968001 0.4303934 +0.4303934 0.0968001 0.4303934 +0.4751555 0.0968001 0.4303934 +0.5225216 0.0968001 0.4303934 +0.5725335 0.0968001 0.4303934 +0.6252316 0.0968001 0.4303934 +0.6806558 0.0968001 0.4303934 +0.7388448 0.0968001 0.4303934 +0.7998369 0.0968001 0.4303934 +0.8636691 0.0968001 0.4303934 +0.9303782 0.0968001 0.4303934 +1 0.0968001 0.4303934 +0 0.1160161 0.4303934 +0.002418731 0.1160161 0.4303934 +0.005155668 0.1160161 0.4303934 +0.009080105 0.1160161 0.4303934 +0.01434988 0.1160161 0.4303934 +0.02107202 0.1160161 0.4303934 +0.02934285 0.1160161 0.4303934 +0.03925039 0.1160161 0.4303934 +0.05087609 0.1160161 0.4303934 +0.06429595 0.1160161 0.4303934 +0.07958143 0.1160161 0.4303934 +0.0968001 0.1160161 0.4303934 +0.1160161 0.1160161 0.4303934 +0.1372908 0.1160161 0.4303934 +0.1606827 0.1160161 0.4303934 +0.1862481 0.1160161 0.4303934 +0.2140411 0.1160161 0.4303934 +0.2441142 0.1160161 0.4303934 +0.2765176 0.1160161 0.4303934 +0.3113005 0.1160161 0.4303934 +0.3485102 0.1160161 0.4303934 +0.388193 0.1160161 0.4303934 +0.4303934 0.1160161 0.4303934 +0.4751555 0.1160161 0.4303934 +0.5225216 0.1160161 0.4303934 +0.5725335 0.1160161 0.4303934 +0.6252316 0.1160161 0.4303934 +0.6806558 0.1160161 0.4303934 +0.7388448 0.1160161 0.4303934 +0.7998369 0.1160161 0.4303934 +0.8636691 0.1160161 0.4303934 +0.9303782 0.1160161 0.4303934 +1 0.1160161 0.4303934 +0 0.1372908 0.4303934 +0.002418731 0.1372908 0.4303934 +0.005155668 0.1372908 0.4303934 +0.009080105 0.1372908 0.4303934 +0.01434988 0.1372908 0.4303934 +0.02107202 0.1372908 0.4303934 +0.02934285 0.1372908 0.4303934 +0.03925039 0.1372908 0.4303934 +0.05087609 0.1372908 0.4303934 +0.06429595 0.1372908 0.4303934 +0.07958143 0.1372908 0.4303934 +0.0968001 0.1372908 0.4303934 +0.1160161 0.1372908 0.4303934 +0.1372908 0.1372908 0.4303934 +0.1606827 0.1372908 0.4303934 +0.1862481 0.1372908 0.4303934 +0.2140411 0.1372908 0.4303934 +0.2441142 0.1372908 0.4303934 +0.2765176 0.1372908 0.4303934 +0.3113005 0.1372908 0.4303934 +0.3485102 0.1372908 0.4303934 +0.388193 0.1372908 0.4303934 +0.4303934 0.1372908 0.4303934 +0.4751555 0.1372908 0.4303934 +0.5225216 0.1372908 0.4303934 +0.5725335 0.1372908 0.4303934 +0.6252316 0.1372908 0.4303934 +0.6806558 0.1372908 0.4303934 +0.7388448 0.1372908 0.4303934 +0.7998369 0.1372908 0.4303934 +0.8636691 0.1372908 0.4303934 +0.9303782 0.1372908 0.4303934 +1 0.1372908 0.4303934 +0 0.1606827 0.4303934 +0.002418731 0.1606827 0.4303934 +0.005155668 0.1606827 0.4303934 +0.009080105 0.1606827 0.4303934 +0.01434988 0.1606827 0.4303934 +0.02107202 0.1606827 0.4303934 +0.02934285 0.1606827 0.4303934 +0.03925039 0.1606827 0.4303934 +0.05087609 0.1606827 0.4303934 +0.06429595 0.1606827 0.4303934 +0.07958143 0.1606827 0.4303934 +0.0968001 0.1606827 0.4303934 +0.1160161 0.1606827 0.4303934 +0.1372908 0.1606827 0.4303934 +0.1606827 0.1606827 0.4303934 +0.1862481 0.1606827 0.4303934 +0.2140411 0.1606827 0.4303934 +0.2441142 0.1606827 0.4303934 +0.2765176 0.1606827 0.4303934 +0.3113005 0.1606827 0.4303934 +0.3485102 0.1606827 0.4303934 +0.388193 0.1606827 0.4303934 +0.4303934 0.1606827 0.4303934 +0.4751555 0.1606827 0.4303934 +0.5225216 0.1606827 0.4303934 +0.5725335 0.1606827 0.4303934 +0.6252316 0.1606827 0.4303934 +0.6806558 0.1606827 0.4303934 +0.7388448 0.1606827 0.4303934 +0.7998369 0.1606827 0.4303934 +0.8636691 0.1606827 0.4303934 +0.9303782 0.1606827 0.4303934 +1 0.1606827 0.4303934 +0 0.1862481 0.4303934 +0.002418731 0.1862481 0.4303934 +0.005155668 0.1862481 0.4303934 +0.009080105 0.1862481 0.4303934 +0.01434988 0.1862481 0.4303934 +0.02107202 0.1862481 0.4303934 +0.02934285 0.1862481 0.4303934 +0.03925039 0.1862481 0.4303934 +0.05087609 0.1862481 0.4303934 +0.06429595 0.1862481 0.4303934 +0.07958143 0.1862481 0.4303934 +0.0968001 0.1862481 0.4303934 +0.1160161 0.1862481 0.4303934 +0.1372908 0.1862481 0.4303934 +0.1606827 0.1862481 0.4303934 +0.1862481 0.1862481 0.4303934 +0.2140411 0.1862481 0.4303934 +0.2441142 0.1862481 0.4303934 +0.2765176 0.1862481 0.4303934 +0.3113005 0.1862481 0.4303934 +0.3485102 0.1862481 0.4303934 +0.388193 0.1862481 0.4303934 +0.4303934 0.1862481 0.4303934 +0.4751555 0.1862481 0.4303934 +0.5225216 0.1862481 0.4303934 +0.5725335 0.1862481 0.4303934 +0.6252316 0.1862481 0.4303934 +0.6806558 0.1862481 0.4303934 +0.7388448 0.1862481 0.4303934 +0.7998369 0.1862481 0.4303934 +0.8636691 0.1862481 0.4303934 +0.9303782 0.1862481 0.4303934 +1 0.1862481 0.4303934 +0 0.2140411 0.4303934 +0.002418731 0.2140411 0.4303934 +0.005155668 0.2140411 0.4303934 +0.009080105 0.2140411 0.4303934 +0.01434988 0.2140411 0.4303934 +0.02107202 0.2140411 0.4303934 +0.02934285 0.2140411 0.4303934 +0.03925039 0.2140411 0.4303934 +0.05087609 0.2140411 0.4303934 +0.06429595 0.2140411 0.4303934 +0.07958143 0.2140411 0.4303934 +0.0968001 0.2140411 0.4303934 +0.1160161 0.2140411 0.4303934 +0.1372908 0.2140411 0.4303934 +0.1606827 0.2140411 0.4303934 +0.1862481 0.2140411 0.4303934 +0.2140411 0.2140411 0.4303934 +0.2441142 0.2140411 0.4303934 +0.2765176 0.2140411 0.4303934 +0.3113005 0.2140411 0.4303934 +0.3485102 0.2140411 0.4303934 +0.388193 0.2140411 0.4303934 +0.4303934 0.2140411 0.4303934 +0.4751555 0.2140411 0.4303934 +0.5225216 0.2140411 0.4303934 +0.5725335 0.2140411 0.4303934 +0.6252316 0.2140411 0.4303934 +0.6806558 0.2140411 0.4303934 +0.7388448 0.2140411 0.4303934 +0.7998369 0.2140411 0.4303934 +0.8636691 0.2140411 0.4303934 +0.9303782 0.2140411 0.4303934 +1 0.2140411 0.4303934 +0 0.2441142 0.4303934 +0.002418731 0.2441142 0.4303934 +0.005155668 0.2441142 0.4303934 +0.009080105 0.2441142 0.4303934 +0.01434988 0.2441142 0.4303934 +0.02107202 0.2441142 0.4303934 +0.02934285 0.2441142 0.4303934 +0.03925039 0.2441142 0.4303934 +0.05087609 0.2441142 0.4303934 +0.06429595 0.2441142 0.4303934 +0.07958143 0.2441142 0.4303934 +0.0968001 0.2441142 0.4303934 +0.1160161 0.2441142 0.4303934 +0.1372908 0.2441142 0.4303934 +0.1606827 0.2441142 0.4303934 +0.1862481 0.2441142 0.4303934 +0.2140411 0.2441142 0.4303934 +0.2441142 0.2441142 0.4303934 +0.2765176 0.2441142 0.4303934 +0.3113005 0.2441142 0.4303934 +0.3485102 0.2441142 0.4303934 +0.388193 0.2441142 0.4303934 +0.4303934 0.2441142 0.4303934 +0.4751555 0.2441142 0.4303934 +0.5225216 0.2441142 0.4303934 +0.5725335 0.2441142 0.4303934 +0.6252316 0.2441142 0.4303934 +0.6806558 0.2441142 0.4303934 +0.7388448 0.2441142 0.4303934 +0.7998369 0.2441142 0.4303934 +0.8636691 0.2441142 0.4303934 +0.9303782 0.2441142 0.4303934 +1 0.2441142 0.4303934 +0 0.2765176 0.4303934 +0.002418731 0.2765176 0.4303934 +0.005155668 0.2765176 0.4303934 +0.009080105 0.2765176 0.4303934 +0.01434988 0.2765176 0.4303934 +0.02107202 0.2765176 0.4303934 +0.02934285 0.2765176 0.4303934 +0.03925039 0.2765176 0.4303934 +0.05087609 0.2765176 0.4303934 +0.06429595 0.2765176 0.4303934 +0.07958143 0.2765176 0.4303934 +0.0968001 0.2765176 0.4303934 +0.1160161 0.2765176 0.4303934 +0.1372908 0.2765176 0.4303934 +0.1606827 0.2765176 0.4303934 +0.1862481 0.2765176 0.4303934 +0.2140411 0.2765176 0.4303934 +0.2441142 0.2765176 0.4303934 +0.2765176 0.2765176 0.4303934 +0.3113005 0.2765176 0.4303934 +0.3485102 0.2765176 0.4303934 +0.388193 0.2765176 0.4303934 +0.4303934 0.2765176 0.4303934 +0.4751555 0.2765176 0.4303934 +0.5225216 0.2765176 0.4303934 +0.5725335 0.2765176 0.4303934 +0.6252316 0.2765176 0.4303934 +0.6806558 0.2765176 0.4303934 +0.7388448 0.2765176 0.4303934 +0.7998369 0.2765176 0.4303934 +0.8636691 0.2765176 0.4303934 +0.9303782 0.2765176 0.4303934 +1 0.2765176 0.4303934 +0 0.3113005 0.4303934 +0.002418731 0.3113005 0.4303934 +0.005155668 0.3113005 0.4303934 +0.009080105 0.3113005 0.4303934 +0.01434988 0.3113005 0.4303934 +0.02107202 0.3113005 0.4303934 +0.02934285 0.3113005 0.4303934 +0.03925039 0.3113005 0.4303934 +0.05087609 0.3113005 0.4303934 +0.06429595 0.3113005 0.4303934 +0.07958143 0.3113005 0.4303934 +0.0968001 0.3113005 0.4303934 +0.1160161 0.3113005 0.4303934 +0.1372908 0.3113005 0.4303934 +0.1606827 0.3113005 0.4303934 +0.1862481 0.3113005 0.4303934 +0.2140411 0.3113005 0.4303934 +0.2441142 0.3113005 0.4303934 +0.2765176 0.3113005 0.4303934 +0.3113005 0.3113005 0.4303934 +0.3485102 0.3113005 0.4303934 +0.388193 0.3113005 0.4303934 +0.4303934 0.3113005 0.4303934 +0.4751555 0.3113005 0.4303934 +0.5225216 0.3113005 0.4303934 +0.5725335 0.3113005 0.4303934 +0.6252316 0.3113005 0.4303934 +0.6806558 0.3113005 0.4303934 +0.7388448 0.3113005 0.4303934 +0.7998369 0.3113005 0.4303934 +0.8636691 0.3113005 0.4303934 +0.9303782 0.3113005 0.4303934 +1 0.3113005 0.4303934 +0 0.3485102 0.4303934 +0.002418731 0.3485102 0.4303934 +0.005155668 0.3485102 0.4303934 +0.009080105 0.3485102 0.4303934 +0.01434988 0.3485102 0.4303934 +0.02107202 0.3485102 0.4303934 +0.02934285 0.3485102 0.4303934 +0.03925039 0.3485102 0.4303934 +0.05087609 0.3485102 0.4303934 +0.06429595 0.3485102 0.4303934 +0.07958143 0.3485102 0.4303934 +0.0968001 0.3485102 0.4303934 +0.1160161 0.3485102 0.4303934 +0.1372908 0.3485102 0.4303934 +0.1606827 0.3485102 0.4303934 +0.1862481 0.3485102 0.4303934 +0.2140411 0.3485102 0.4303934 +0.2441142 0.3485102 0.4303934 +0.2765176 0.3485102 0.4303934 +0.3113005 0.3485102 0.4303934 +0.3485102 0.3485102 0.4303934 +0.388193 0.3485102 0.4303934 +0.4303934 0.3485102 0.4303934 +0.4751555 0.3485102 0.4303934 +0.5225216 0.3485102 0.4303934 +0.5725335 0.3485102 0.4303934 +0.6252316 0.3485102 0.4303934 +0.6806558 0.3485102 0.4303934 +0.7388448 0.3485102 0.4303934 +0.7998369 0.3485102 0.4303934 +0.8636691 0.3485102 0.4303934 +0.9303782 0.3485102 0.4303934 +1 0.3485102 0.4303934 +0 0.388193 0.4303934 +0.002418731 0.388193 0.4303934 +0.005155668 0.388193 0.4303934 +0.009080105 0.388193 0.4303934 +0.01434988 0.388193 0.4303934 +0.02107202 0.388193 0.4303934 +0.02934285 0.388193 0.4303934 +0.03925039 0.388193 0.4303934 +0.05087609 0.388193 0.4303934 +0.06429595 0.388193 0.4303934 +0.07958143 0.388193 0.4303934 +0.0968001 0.388193 0.4303934 +0.1160161 0.388193 0.4303934 +0.1372908 0.388193 0.4303934 +0.1606827 0.388193 0.4303934 +0.1862481 0.388193 0.4303934 +0.2140411 0.388193 0.4303934 +0.2441142 0.388193 0.4303934 +0.2765176 0.388193 0.4303934 +0.3113005 0.388193 0.4303934 +0.3485102 0.388193 0.4303934 +0.388193 0.388193 0.4303934 +0.4303934 0.388193 0.4303934 +0.4751555 0.388193 0.4303934 +0.5225216 0.388193 0.4303934 +0.5725335 0.388193 0.4303934 +0.6252316 0.388193 0.4303934 +0.6806558 0.388193 0.4303934 +0.7388448 0.388193 0.4303934 +0.7998369 0.388193 0.4303934 +0.8636691 0.388193 0.4303934 +0.9303782 0.388193 0.4303934 +1 0.388193 0.4303934 +0 0.4303934 0.4303934 +0.002418731 0.4303934 0.4303934 +0.005155668 0.4303934 0.4303934 +0.009080105 0.4303934 0.4303934 +0.01434988 0.4303934 0.4303934 +0.02107202 0.4303934 0.4303934 +0.02934285 0.4303934 0.4303934 +0.03925039 0.4303934 0.4303934 +0.05087609 0.4303934 0.4303934 +0.06429595 0.4303934 0.4303934 +0.07958143 0.4303934 0.4303934 +0.0968001 0.4303934 0.4303934 +0.1160161 0.4303934 0.4303934 +0.1372908 0.4303934 0.4303934 +0.1606827 0.4303934 0.4303934 +0.1862481 0.4303934 0.4303934 +0.2140411 0.4303934 0.4303934 +0.2441142 0.4303934 0.4303934 +0.2765176 0.4303934 0.4303934 +0.3113005 0.4303934 0.4303934 +0.3485102 0.4303934 0.4303934 +0.388193 0.4303934 0.4303934 +0.4303934 0.4303934 0.4303934 +0.4751555 0.4303934 0.4303934 +0.5225216 0.4303934 0.4303934 +0.5725335 0.4303934 0.4303934 +0.6252316 0.4303934 0.4303934 +0.6806558 0.4303934 0.4303934 +0.7388448 0.4303934 0.4303934 +0.7998369 0.4303934 0.4303934 +0.8636691 0.4303934 0.4303934 +0.9303782 0.4303934 0.4303934 +1 0.4303934 0.4303934 +0 0.4751555 0.4303934 +0.002418731 0.4751555 0.4303934 +0.005155668 0.4751555 0.4303934 +0.009080105 0.4751555 0.4303934 +0.01434988 0.4751555 0.4303934 +0.02107202 0.4751555 0.4303934 +0.02934285 0.4751555 0.4303934 +0.03925039 0.4751555 0.4303934 +0.05087609 0.4751555 0.4303934 +0.06429595 0.4751555 0.4303934 +0.07958143 0.4751555 0.4303934 +0.0968001 0.4751555 0.4303934 +0.1160161 0.4751555 0.4303934 +0.1372908 0.4751555 0.4303934 +0.1606827 0.4751555 0.4303934 +0.1862481 0.4751555 0.4303934 +0.2140411 0.4751555 0.4303934 +0.2441142 0.4751555 0.4303934 +0.2765176 0.4751555 0.4303934 +0.3113005 0.4751555 0.4303934 +0.3485102 0.4751555 0.4303934 +0.388193 0.4751555 0.4303934 +0.4303934 0.4751555 0.4303934 +0.4751555 0.4751555 0.4303934 +0.5225216 0.4751555 0.4303934 +0.5725335 0.4751555 0.4303934 +0.6252316 0.4751555 0.4303934 +0.6806558 0.4751555 0.4303934 +0.7388448 0.4751555 0.4303934 +0.7998369 0.4751555 0.4303934 +0.8636691 0.4751555 0.4303934 +0.9303782 0.4751555 0.4303934 +1 0.4751555 0.4303934 +0 0.5225216 0.4303934 +0.002418731 0.5225216 0.4303934 +0.005155668 0.5225216 0.4303934 +0.009080105 0.5225216 0.4303934 +0.01434988 0.5225216 0.4303934 +0.02107202 0.5225216 0.4303934 +0.02934285 0.5225216 0.4303934 +0.03925039 0.5225216 0.4303934 +0.05087609 0.5225216 0.4303934 +0.06429595 0.5225216 0.4303934 +0.07958143 0.5225216 0.4303934 +0.0968001 0.5225216 0.4303934 +0.1160161 0.5225216 0.4303934 +0.1372908 0.5225216 0.4303934 +0.1606827 0.5225216 0.4303934 +0.1862481 0.5225216 0.4303934 +0.2140411 0.5225216 0.4303934 +0.2441142 0.5225216 0.4303934 +0.2765176 0.5225216 0.4303934 +0.3113005 0.5225216 0.4303934 +0.3485102 0.5225216 0.4303934 +0.388193 0.5225216 0.4303934 +0.4303934 0.5225216 0.4303934 +0.4751555 0.5225216 0.4303934 +0.5225216 0.5225216 0.4303934 +0.5725335 0.5225216 0.4303934 +0.6252316 0.5225216 0.4303934 +0.6806558 0.5225216 0.4303934 +0.7388448 0.5225216 0.4303934 +0.7998369 0.5225216 0.4303934 +0.8636691 0.5225216 0.4303934 +0.9303782 0.5225216 0.4303934 +1 0.5225216 0.4303934 +0 0.5725335 0.4303934 +0.002418731 0.5725335 0.4303934 +0.005155668 0.5725335 0.4303934 +0.009080105 0.5725335 0.4303934 +0.01434988 0.5725335 0.4303934 +0.02107202 0.5725335 0.4303934 +0.02934285 0.5725335 0.4303934 +0.03925039 0.5725335 0.4303934 +0.05087609 0.5725335 0.4303934 +0.06429595 0.5725335 0.4303934 +0.07958143 0.5725335 0.4303934 +0.0968001 0.5725335 0.4303934 +0.1160161 0.5725335 0.4303934 +0.1372908 0.5725335 0.4303934 +0.1606827 0.5725335 0.4303934 +0.1862481 0.5725335 0.4303934 +0.2140411 0.5725335 0.4303934 +0.2441142 0.5725335 0.4303934 +0.2765176 0.5725335 0.4303934 +0.3113005 0.5725335 0.4303934 +0.3485102 0.5725335 0.4303934 +0.388193 0.5725335 0.4303934 +0.4303934 0.5725335 0.4303934 +0.4751555 0.5725335 0.4303934 +0.5225216 0.5725335 0.4303934 +0.5725335 0.5725335 0.4303934 +0.6252316 0.5725335 0.4303934 +0.6806558 0.5725335 0.4303934 +0.7388448 0.5725335 0.4303934 +0.7998369 0.5725335 0.4303934 +0.8636691 0.5725335 0.4303934 +0.9303782 0.5725335 0.4303934 +1 0.5725335 0.4303934 +0 0.6252316 0.4303934 +0.002418731 0.6252316 0.4303934 +0.005155668 0.6252316 0.4303934 +0.009080105 0.6252316 0.4303934 +0.01434988 0.6252316 0.4303934 +0.02107202 0.6252316 0.4303934 +0.02934285 0.6252316 0.4303934 +0.03925039 0.6252316 0.4303934 +0.05087609 0.6252316 0.4303934 +0.06429595 0.6252316 0.4303934 +0.07958143 0.6252316 0.4303934 +0.0968001 0.6252316 0.4303934 +0.1160161 0.6252316 0.4303934 +0.1372908 0.6252316 0.4303934 +0.1606827 0.6252316 0.4303934 +0.1862481 0.6252316 0.4303934 +0.2140411 0.6252316 0.4303934 +0.2441142 0.6252316 0.4303934 +0.2765176 0.6252316 0.4303934 +0.3113005 0.6252316 0.4303934 +0.3485102 0.6252316 0.4303934 +0.388193 0.6252316 0.4303934 +0.4303934 0.6252316 0.4303934 +0.4751555 0.6252316 0.4303934 +0.5225216 0.6252316 0.4303934 +0.5725335 0.6252316 0.4303934 +0.6252316 0.6252316 0.4303934 +0.6806558 0.6252316 0.4303934 +0.7388448 0.6252316 0.4303934 +0.7998369 0.6252316 0.4303934 +0.8636691 0.6252316 0.4303934 +0.9303782 0.6252316 0.4303934 +1 0.6252316 0.4303934 +0 0.6806558 0.4303934 +0.002418731 0.6806558 0.4303934 +0.005155668 0.6806558 0.4303934 +0.009080105 0.6806558 0.4303934 +0.01434988 0.6806558 0.4303934 +0.02107202 0.6806558 0.4303934 +0.02934285 0.6806558 0.4303934 +0.03925039 0.6806558 0.4303934 +0.05087609 0.6806558 0.4303934 +0.06429595 0.6806558 0.4303934 +0.07958143 0.6806558 0.4303934 +0.0968001 0.6806558 0.4303934 +0.1160161 0.6806558 0.4303934 +0.1372908 0.6806558 0.4303934 +0.1606827 0.6806558 0.4303934 +0.1862481 0.6806558 0.4303934 +0.2140411 0.6806558 0.4303934 +0.2441142 0.6806558 0.4303934 +0.2765176 0.6806558 0.4303934 +0.3113005 0.6806558 0.4303934 +0.3485102 0.6806558 0.4303934 +0.388193 0.6806558 0.4303934 +0.4303934 0.6806558 0.4303934 +0.4751555 0.6806558 0.4303934 +0.5225216 0.6806558 0.4303934 +0.5725335 0.6806558 0.4303934 +0.6252316 0.6806558 0.4303934 +0.6806558 0.6806558 0.4303934 +0.7388448 0.6806558 0.4303934 +0.7998369 0.6806558 0.4303934 +0.8636691 0.6806558 0.4303934 +0.9303782 0.6806558 0.4303934 +1 0.6806558 0.4303934 +0 0.7388448 0.4303934 +0.002418731 0.7388448 0.4303934 +0.005155668 0.7388448 0.4303934 +0.009080105 0.7388448 0.4303934 +0.01434988 0.7388448 0.4303934 +0.02107202 0.7388448 0.4303934 +0.02934285 0.7388448 0.4303934 +0.03925039 0.7388448 0.4303934 +0.05087609 0.7388448 0.4303934 +0.06429595 0.7388448 0.4303934 +0.07958143 0.7388448 0.4303934 +0.0968001 0.7388448 0.4303934 +0.1160161 0.7388448 0.4303934 +0.1372908 0.7388448 0.4303934 +0.1606827 0.7388448 0.4303934 +0.1862481 0.7388448 0.4303934 +0.2140411 0.7388448 0.4303934 +0.2441142 0.7388448 0.4303934 +0.2765176 0.7388448 0.4303934 +0.3113005 0.7388448 0.4303934 +0.3485102 0.7388448 0.4303934 +0.388193 0.7388448 0.4303934 +0.4303934 0.7388448 0.4303934 +0.4751555 0.7388448 0.4303934 +0.5225216 0.7388448 0.4303934 +0.5725335 0.7388448 0.4303934 +0.6252316 0.7388448 0.4303934 +0.6806558 0.7388448 0.4303934 +0.7388448 0.7388448 0.4303934 +0.7998369 0.7388448 0.4303934 +0.8636691 0.7388448 0.4303934 +0.9303782 0.7388448 0.4303934 +1 0.7388448 0.4303934 +0 0.7998369 0.4303934 +0.002418731 0.7998369 0.4303934 +0.005155668 0.7998369 0.4303934 +0.009080105 0.7998369 0.4303934 +0.01434988 0.7998369 0.4303934 +0.02107202 0.7998369 0.4303934 +0.02934285 0.7998369 0.4303934 +0.03925039 0.7998369 0.4303934 +0.05087609 0.7998369 0.4303934 +0.06429595 0.7998369 0.4303934 +0.07958143 0.7998369 0.4303934 +0.0968001 0.7998369 0.4303934 +0.1160161 0.7998369 0.4303934 +0.1372908 0.7998369 0.4303934 +0.1606827 0.7998369 0.4303934 +0.1862481 0.7998369 0.4303934 +0.2140411 0.7998369 0.4303934 +0.2441142 0.7998369 0.4303934 +0.2765176 0.7998369 0.4303934 +0.3113005 0.7998369 0.4303934 +0.3485102 0.7998369 0.4303934 +0.388193 0.7998369 0.4303934 +0.4303934 0.7998369 0.4303934 +0.4751555 0.7998369 0.4303934 +0.5225216 0.7998369 0.4303934 +0.5725335 0.7998369 0.4303934 +0.6252316 0.7998369 0.4303934 +0.6806558 0.7998369 0.4303934 +0.7388448 0.7998369 0.4303934 +0.7998369 0.7998369 0.4303934 +0.8636691 0.7998369 0.4303934 +0.9303782 0.7998369 0.4303934 +1 0.7998369 0.4303934 +0 0.8636691 0.4303934 +0.002418731 0.8636691 0.4303934 +0.005155668 0.8636691 0.4303934 +0.009080105 0.8636691 0.4303934 +0.01434988 0.8636691 0.4303934 +0.02107202 0.8636691 0.4303934 +0.02934285 0.8636691 0.4303934 +0.03925039 0.8636691 0.4303934 +0.05087609 0.8636691 0.4303934 +0.06429595 0.8636691 0.4303934 +0.07958143 0.8636691 0.4303934 +0.0968001 0.8636691 0.4303934 +0.1160161 0.8636691 0.4303934 +0.1372908 0.8636691 0.4303934 +0.1606827 0.8636691 0.4303934 +0.1862481 0.8636691 0.4303934 +0.2140411 0.8636691 0.4303934 +0.2441142 0.8636691 0.4303934 +0.2765176 0.8636691 0.4303934 +0.3113005 0.8636691 0.4303934 +0.3485102 0.8636691 0.4303934 +0.388193 0.8636691 0.4303934 +0.4303934 0.8636691 0.4303934 +0.4751555 0.8636691 0.4303934 +0.5225216 0.8636691 0.4303934 +0.5725335 0.8636691 0.4303934 +0.6252316 0.8636691 0.4303934 +0.6806558 0.8636691 0.4303934 +0.7388448 0.8636691 0.4303934 +0.7998369 0.8636691 0.4303934 +0.8636691 0.8636691 0.4303934 +0.9303782 0.8636691 0.4303934 +1 0.8636691 0.4303934 +0 0.9303782 0.4303934 +0.002418731 0.9303782 0.4303934 +0.005155668 0.9303782 0.4303934 +0.009080105 0.9303782 0.4303934 +0.01434988 0.9303782 0.4303934 +0.02107202 0.9303782 0.4303934 +0.02934285 0.9303782 0.4303934 +0.03925039 0.9303782 0.4303934 +0.05087609 0.9303782 0.4303934 +0.06429595 0.9303782 0.4303934 +0.07958143 0.9303782 0.4303934 +0.0968001 0.9303782 0.4303934 +0.1160161 0.9303782 0.4303934 +0.1372908 0.9303782 0.4303934 +0.1606827 0.9303782 0.4303934 +0.1862481 0.9303782 0.4303934 +0.2140411 0.9303782 0.4303934 +0.2441142 0.9303782 0.4303934 +0.2765176 0.9303782 0.4303934 +0.3113005 0.9303782 0.4303934 +0.3485102 0.9303782 0.4303934 +0.388193 0.9303782 0.4303934 +0.4303934 0.9303782 0.4303934 +0.4751555 0.9303782 0.4303934 +0.5225216 0.9303782 0.4303934 +0.5725335 0.9303782 0.4303934 +0.6252316 0.9303782 0.4303934 +0.6806558 0.9303782 0.4303934 +0.7388448 0.9303782 0.4303934 +0.7998369 0.9303782 0.4303934 +0.8636691 0.9303782 0.4303934 +0.9303782 0.9303782 0.4303934 +1 0.9303782 0.4303934 +0 1 0.4303934 +0.002418731 1 0.4303934 +0.005155668 1 0.4303934 +0.009080105 1 0.4303934 +0.01434988 1 0.4303934 +0.02107202 1 0.4303934 +0.02934285 1 0.4303934 +0.03925039 1 0.4303934 +0.05087609 1 0.4303934 +0.06429595 1 0.4303934 +0.07958143 1 0.4303934 +0.0968001 1 0.4303934 +0.1160161 1 0.4303934 +0.1372908 1 0.4303934 +0.1606827 1 0.4303934 +0.1862481 1 0.4303934 +0.2140411 1 0.4303934 +0.2441142 1 0.4303934 +0.2765176 1 0.4303934 +0.3113005 1 0.4303934 +0.3485102 1 0.4303934 +0.388193 1 0.4303934 +0.4303934 1 0.4303934 +0.4751555 1 0.4303934 +0.5225216 1 0.4303934 +0.5725335 1 0.4303934 +0.6252316 1 0.4303934 +0.6806558 1 0.4303934 +0.7388448 1 0.4303934 +0.7998369 1 0.4303934 +0.8636691 1 0.4303934 +0.9303782 1 0.4303934 +1 1 0.4303934 +0 0 0.4751555 +0.002418731 0 0.4751555 +0.005155668 0 0.4751555 +0.009080105 0 0.4751555 +0.01434988 0 0.4751555 +0.02107202 0 0.4751555 +0.02934285 0 0.4751555 +0.03925039 0 0.4751555 +0.05087609 0 0.4751555 +0.06429595 0 0.4751555 +0.07958143 0 0.4751555 +0.0968001 0 0.4751555 +0.1160161 0 0.4751555 +0.1372908 0 0.4751555 +0.1606827 0 0.4751555 +0.1862481 0 0.4751555 +0.2140411 0 0.4751555 +0.2441142 0 0.4751555 +0.2765176 0 0.4751555 +0.3113005 0 0.4751555 +0.3485102 0 0.4751555 +0.388193 0 0.4751555 +0.4303934 0 0.4751555 +0.4751555 0 0.4751555 +0.5225216 0 0.4751555 +0.5725335 0 0.4751555 +0.6252316 0 0.4751555 +0.6806558 0 0.4751555 +0.7388448 0 0.4751555 +0.7998369 0 0.4751555 +0.8636691 0 0.4751555 +0.9303782 0 0.4751555 +1 0 0.4751555 +0 0.002418731 0.4751555 +0.002418731 0.002418731 0.4751555 +0.005155668 0.002418731 0.4751555 +0.009080105 0.002418731 0.4751555 +0.01434988 0.002418731 0.4751555 +0.02107202 0.002418731 0.4751555 +0.02934285 0.002418731 0.4751555 +0.03925039 0.002418731 0.4751555 +0.05087609 0.002418731 0.4751555 +0.06429595 0.002418731 0.4751555 +0.07958143 0.002418731 0.4751555 +0.0968001 0.002418731 0.4751555 +0.1160161 0.002418731 0.4751555 +0.1372908 0.002418731 0.4751555 +0.1606827 0.002418731 0.4751555 +0.1862481 0.002418731 0.4751555 +0.2140411 0.002418731 0.4751555 +0.2441142 0.002418731 0.4751555 +0.2765176 0.002418731 0.4751555 +0.3113005 0.002418731 0.4751555 +0.3485102 0.002418731 0.4751555 +0.388193 0.002418731 0.4751555 +0.4303934 0.002418731 0.4751555 +0.4751555 0.002418731 0.4751555 +0.5225216 0.002418731 0.4751555 +0.5725335 0.002418731 0.4751555 +0.6252316 0.002418731 0.4751555 +0.6806558 0.002418731 0.4751555 +0.7388448 0.002418731 0.4751555 +0.7998369 0.002418731 0.4751555 +0.8636691 0.002418731 0.4751555 +0.9303782 0.002418731 0.4751555 +1 0.002418731 0.4751555 +0 0.005155668 0.4751555 +0.002418731 0.005155668 0.4751555 +0.005155668 0.005155668 0.4751555 +0.009080105 0.005155668 0.4751555 +0.01434988 0.005155668 0.4751555 +0.02107202 0.005155668 0.4751555 +0.02934285 0.005155668 0.4751555 +0.03925039 0.005155668 0.4751555 +0.05087609 0.005155668 0.4751555 +0.06429595 0.005155668 0.4751555 +0.07958143 0.005155668 0.4751555 +0.0968001 0.005155668 0.4751555 +0.1160161 0.005155668 0.4751555 +0.1372908 0.005155668 0.4751555 +0.1606827 0.005155668 0.4751555 +0.1862481 0.005155668 0.4751555 +0.2140411 0.005155668 0.4751555 +0.2441142 0.005155668 0.4751555 +0.2765176 0.005155668 0.4751555 +0.3113005 0.005155668 0.4751555 +0.3485102 0.005155668 0.4751555 +0.388193 0.005155668 0.4751555 +0.4303934 0.005155668 0.4751555 +0.4751555 0.005155668 0.4751555 +0.5225216 0.005155668 0.4751555 +0.5725335 0.005155668 0.4751555 +0.6252316 0.005155668 0.4751555 +0.6806558 0.005155668 0.4751555 +0.7388448 0.005155668 0.4751555 +0.7998369 0.005155668 0.4751555 +0.8636691 0.005155668 0.4751555 +0.9303782 0.005155668 0.4751555 +1 0.005155668 0.4751555 +0 0.009080105 0.4751555 +0.002418731 0.009080105 0.4751555 +0.005155668 0.009080105 0.4751555 +0.009080105 0.009080105 0.4751555 +0.01434988 0.009080105 0.4751555 +0.02107202 0.009080105 0.4751555 +0.02934285 0.009080105 0.4751555 +0.03925039 0.009080105 0.4751555 +0.05087609 0.009080105 0.4751555 +0.06429595 0.009080105 0.4751555 +0.07958143 0.009080105 0.4751555 +0.0968001 0.009080105 0.4751555 +0.1160161 0.009080105 0.4751555 +0.1372908 0.009080105 0.4751555 +0.1606827 0.009080105 0.4751555 +0.1862481 0.009080105 0.4751555 +0.2140411 0.009080105 0.4751555 +0.2441142 0.009080105 0.4751555 +0.2765176 0.009080105 0.4751555 +0.3113005 0.009080105 0.4751555 +0.3485102 0.009080105 0.4751555 +0.388193 0.009080105 0.4751555 +0.4303934 0.009080105 0.4751555 +0.4751555 0.009080105 0.4751555 +0.5225216 0.009080105 0.4751555 +0.5725335 0.009080105 0.4751555 +0.6252316 0.009080105 0.4751555 +0.6806558 0.009080105 0.4751555 +0.7388448 0.009080105 0.4751555 +0.7998369 0.009080105 0.4751555 +0.8636691 0.009080105 0.4751555 +0.9303782 0.009080105 0.4751555 +1 0.009080105 0.4751555 +0 0.01434988 0.4751555 +0.002418731 0.01434988 0.4751555 +0.005155668 0.01434988 0.4751555 +0.009080105 0.01434988 0.4751555 +0.01434988 0.01434988 0.4751555 +0.02107202 0.01434988 0.4751555 +0.02934285 0.01434988 0.4751555 +0.03925039 0.01434988 0.4751555 +0.05087609 0.01434988 0.4751555 +0.06429595 0.01434988 0.4751555 +0.07958143 0.01434988 0.4751555 +0.0968001 0.01434988 0.4751555 +0.1160161 0.01434988 0.4751555 +0.1372908 0.01434988 0.4751555 +0.1606827 0.01434988 0.4751555 +0.1862481 0.01434988 0.4751555 +0.2140411 0.01434988 0.4751555 +0.2441142 0.01434988 0.4751555 +0.2765176 0.01434988 0.4751555 +0.3113005 0.01434988 0.4751555 +0.3485102 0.01434988 0.4751555 +0.388193 0.01434988 0.4751555 +0.4303934 0.01434988 0.4751555 +0.4751555 0.01434988 0.4751555 +0.5225216 0.01434988 0.4751555 +0.5725335 0.01434988 0.4751555 +0.6252316 0.01434988 0.4751555 +0.6806558 0.01434988 0.4751555 +0.7388448 0.01434988 0.4751555 +0.7998369 0.01434988 0.4751555 +0.8636691 0.01434988 0.4751555 +0.9303782 0.01434988 0.4751555 +1 0.01434988 0.4751555 +0 0.02107202 0.4751555 +0.002418731 0.02107202 0.4751555 +0.005155668 0.02107202 0.4751555 +0.009080105 0.02107202 0.4751555 +0.01434988 0.02107202 0.4751555 +0.02107202 0.02107202 0.4751555 +0.02934285 0.02107202 0.4751555 +0.03925039 0.02107202 0.4751555 +0.05087609 0.02107202 0.4751555 +0.06429595 0.02107202 0.4751555 +0.07958143 0.02107202 0.4751555 +0.0968001 0.02107202 0.4751555 +0.1160161 0.02107202 0.4751555 +0.1372908 0.02107202 0.4751555 +0.1606827 0.02107202 0.4751555 +0.1862481 0.02107202 0.4751555 +0.2140411 0.02107202 0.4751555 +0.2441142 0.02107202 0.4751555 +0.2765176 0.02107202 0.4751555 +0.3113005 0.02107202 0.4751555 +0.3485102 0.02107202 0.4751555 +0.388193 0.02107202 0.4751555 +0.4303934 0.02107202 0.4751555 +0.4751555 0.02107202 0.4751555 +0.5225216 0.02107202 0.4751555 +0.5725335 0.02107202 0.4751555 +0.6252316 0.02107202 0.4751555 +0.6806558 0.02107202 0.4751555 +0.7388448 0.02107202 0.4751555 +0.7998369 0.02107202 0.4751555 +0.8636691 0.02107202 0.4751555 +0.9303782 0.02107202 0.4751555 +1 0.02107202 0.4751555 +0 0.02934285 0.4751555 +0.002418731 0.02934285 0.4751555 +0.005155668 0.02934285 0.4751555 +0.009080105 0.02934285 0.4751555 +0.01434988 0.02934285 0.4751555 +0.02107202 0.02934285 0.4751555 +0.02934285 0.02934285 0.4751555 +0.03925039 0.02934285 0.4751555 +0.05087609 0.02934285 0.4751555 +0.06429595 0.02934285 0.4751555 +0.07958143 0.02934285 0.4751555 +0.0968001 0.02934285 0.4751555 +0.1160161 0.02934285 0.4751555 +0.1372908 0.02934285 0.4751555 +0.1606827 0.02934285 0.4751555 +0.1862481 0.02934285 0.4751555 +0.2140411 0.02934285 0.4751555 +0.2441142 0.02934285 0.4751555 +0.2765176 0.02934285 0.4751555 +0.3113005 0.02934285 0.4751555 +0.3485102 0.02934285 0.4751555 +0.388193 0.02934285 0.4751555 +0.4303934 0.02934285 0.4751555 +0.4751555 0.02934285 0.4751555 +0.5225216 0.02934285 0.4751555 +0.5725335 0.02934285 0.4751555 +0.6252316 0.02934285 0.4751555 +0.6806558 0.02934285 0.4751555 +0.7388448 0.02934285 0.4751555 +0.7998369 0.02934285 0.4751555 +0.8636691 0.02934285 0.4751555 +0.9303782 0.02934285 0.4751555 +1 0.02934285 0.4751555 +0 0.03925039 0.4751555 +0.002418731 0.03925039 0.4751555 +0.005155668 0.03925039 0.4751555 +0.009080105 0.03925039 0.4751555 +0.01434988 0.03925039 0.4751555 +0.02107202 0.03925039 0.4751555 +0.02934285 0.03925039 0.4751555 +0.03925039 0.03925039 0.4751555 +0.05087609 0.03925039 0.4751555 +0.06429595 0.03925039 0.4751555 +0.07958143 0.03925039 0.4751555 +0.0968001 0.03925039 0.4751555 +0.1160161 0.03925039 0.4751555 +0.1372908 0.03925039 0.4751555 +0.1606827 0.03925039 0.4751555 +0.1862481 0.03925039 0.4751555 +0.2140411 0.03925039 0.4751555 +0.2441142 0.03925039 0.4751555 +0.2765176 0.03925039 0.4751555 +0.3113005 0.03925039 0.4751555 +0.3485102 0.03925039 0.4751555 +0.388193 0.03925039 0.4751555 +0.4303934 0.03925039 0.4751555 +0.4751555 0.03925039 0.4751555 +0.5225216 0.03925039 0.4751555 +0.5725335 0.03925039 0.4751555 +0.6252316 0.03925039 0.4751555 +0.6806558 0.03925039 0.4751555 +0.7388448 0.03925039 0.4751555 +0.7998369 0.03925039 0.4751555 +0.8636691 0.03925039 0.4751555 +0.9303782 0.03925039 0.4751555 +1 0.03925039 0.4751555 +0 0.05087609 0.4751555 +0.002418731 0.05087609 0.4751555 +0.005155668 0.05087609 0.4751555 +0.009080105 0.05087609 0.4751555 +0.01434988 0.05087609 0.4751555 +0.02107202 0.05087609 0.4751555 +0.02934285 0.05087609 0.4751555 +0.03925039 0.05087609 0.4751555 +0.05087609 0.05087609 0.4751555 +0.06429595 0.05087609 0.4751555 +0.07958143 0.05087609 0.4751555 +0.0968001 0.05087609 0.4751555 +0.1160161 0.05087609 0.4751555 +0.1372908 0.05087609 0.4751555 +0.1606827 0.05087609 0.4751555 +0.1862481 0.05087609 0.4751555 +0.2140411 0.05087609 0.4751555 +0.2441142 0.05087609 0.4751555 +0.2765176 0.05087609 0.4751555 +0.3113005 0.05087609 0.4751555 +0.3485102 0.05087609 0.4751555 +0.388193 0.05087609 0.4751555 +0.4303934 0.05087609 0.4751555 +0.4751555 0.05087609 0.4751555 +0.5225216 0.05087609 0.4751555 +0.5725335 0.05087609 0.4751555 +0.6252316 0.05087609 0.4751555 +0.6806558 0.05087609 0.4751555 +0.7388448 0.05087609 0.4751555 +0.7998369 0.05087609 0.4751555 +0.8636691 0.05087609 0.4751555 +0.9303782 0.05087609 0.4751555 +1 0.05087609 0.4751555 +0 0.06429595 0.4751555 +0.002418731 0.06429595 0.4751555 +0.005155668 0.06429595 0.4751555 +0.009080105 0.06429595 0.4751555 +0.01434988 0.06429595 0.4751555 +0.02107202 0.06429595 0.4751555 +0.02934285 0.06429595 0.4751555 +0.03925039 0.06429595 0.4751555 +0.05087609 0.06429595 0.4751555 +0.06429595 0.06429595 0.4751555 +0.07958143 0.06429595 0.4751555 +0.0968001 0.06429595 0.4751555 +0.1160161 0.06429595 0.4751555 +0.1372908 0.06429595 0.4751555 +0.1606827 0.06429595 0.4751555 +0.1862481 0.06429595 0.4751555 +0.2140411 0.06429595 0.4751555 +0.2441142 0.06429595 0.4751555 +0.2765176 0.06429595 0.4751555 +0.3113005 0.06429595 0.4751555 +0.3485102 0.06429595 0.4751555 +0.388193 0.06429595 0.4751555 +0.4303934 0.06429595 0.4751555 +0.4751555 0.06429595 0.4751555 +0.5225216 0.06429595 0.4751555 +0.5725335 0.06429595 0.4751555 +0.6252316 0.06429595 0.4751555 +0.6806558 0.06429595 0.4751555 +0.7388448 0.06429595 0.4751555 +0.7998369 0.06429595 0.4751555 +0.8636691 0.06429595 0.4751555 +0.9303782 0.06429595 0.4751555 +1 0.06429595 0.4751555 +0 0.07958143 0.4751555 +0.002418731 0.07958143 0.4751555 +0.005155668 0.07958143 0.4751555 +0.009080105 0.07958143 0.4751555 +0.01434988 0.07958143 0.4751555 +0.02107202 0.07958143 0.4751555 +0.02934285 0.07958143 0.4751555 +0.03925039 0.07958143 0.4751555 +0.05087609 0.07958143 0.4751555 +0.06429595 0.07958143 0.4751555 +0.07958143 0.07958143 0.4751555 +0.0968001 0.07958143 0.4751555 +0.1160161 0.07958143 0.4751555 +0.1372908 0.07958143 0.4751555 +0.1606827 0.07958143 0.4751555 +0.1862481 0.07958143 0.4751555 +0.2140411 0.07958143 0.4751555 +0.2441142 0.07958143 0.4751555 +0.2765176 0.07958143 0.4751555 +0.3113005 0.07958143 0.4751555 +0.3485102 0.07958143 0.4751555 +0.388193 0.07958143 0.4751555 +0.4303934 0.07958143 0.4751555 +0.4751555 0.07958143 0.4751555 +0.5225216 0.07958143 0.4751555 +0.5725335 0.07958143 0.4751555 +0.6252316 0.07958143 0.4751555 +0.6806558 0.07958143 0.4751555 +0.7388448 0.07958143 0.4751555 +0.7998369 0.07958143 0.4751555 +0.8636691 0.07958143 0.4751555 +0.9303782 0.07958143 0.4751555 +1 0.07958143 0.4751555 +0 0.0968001 0.4751555 +0.002418731 0.0968001 0.4751555 +0.005155668 0.0968001 0.4751555 +0.009080105 0.0968001 0.4751555 +0.01434988 0.0968001 0.4751555 +0.02107202 0.0968001 0.4751555 +0.02934285 0.0968001 0.4751555 +0.03925039 0.0968001 0.4751555 +0.05087609 0.0968001 0.4751555 +0.06429595 0.0968001 0.4751555 +0.07958143 0.0968001 0.4751555 +0.0968001 0.0968001 0.4751555 +0.1160161 0.0968001 0.4751555 +0.1372908 0.0968001 0.4751555 +0.1606827 0.0968001 0.4751555 +0.1862481 0.0968001 0.4751555 +0.2140411 0.0968001 0.4751555 +0.2441142 0.0968001 0.4751555 +0.2765176 0.0968001 0.4751555 +0.3113005 0.0968001 0.4751555 +0.3485102 0.0968001 0.4751555 +0.388193 0.0968001 0.4751555 +0.4303934 0.0968001 0.4751555 +0.4751555 0.0968001 0.4751555 +0.5225216 0.0968001 0.4751555 +0.5725335 0.0968001 0.4751555 +0.6252316 0.0968001 0.4751555 +0.6806558 0.0968001 0.4751555 +0.7388448 0.0968001 0.4751555 +0.7998369 0.0968001 0.4751555 +0.8636691 0.0968001 0.4751555 +0.9303782 0.0968001 0.4751555 +1 0.0968001 0.4751555 +0 0.1160161 0.4751555 +0.002418731 0.1160161 0.4751555 +0.005155668 0.1160161 0.4751555 +0.009080105 0.1160161 0.4751555 +0.01434988 0.1160161 0.4751555 +0.02107202 0.1160161 0.4751555 +0.02934285 0.1160161 0.4751555 +0.03925039 0.1160161 0.4751555 +0.05087609 0.1160161 0.4751555 +0.06429595 0.1160161 0.4751555 +0.07958143 0.1160161 0.4751555 +0.0968001 0.1160161 0.4751555 +0.1160161 0.1160161 0.4751555 +0.1372908 0.1160161 0.4751555 +0.1606827 0.1160161 0.4751555 +0.1862481 0.1160161 0.4751555 +0.2140411 0.1160161 0.4751555 +0.2441142 0.1160161 0.4751555 +0.2765176 0.1160161 0.4751555 +0.3113005 0.1160161 0.4751555 +0.3485102 0.1160161 0.4751555 +0.388193 0.1160161 0.4751555 +0.4303934 0.1160161 0.4751555 +0.4751555 0.1160161 0.4751555 +0.5225216 0.1160161 0.4751555 +0.5725335 0.1160161 0.4751555 +0.6252316 0.1160161 0.4751555 +0.6806558 0.1160161 0.4751555 +0.7388448 0.1160161 0.4751555 +0.7998369 0.1160161 0.4751555 +0.8636691 0.1160161 0.4751555 +0.9303782 0.1160161 0.4751555 +1 0.1160161 0.4751555 +0 0.1372908 0.4751555 +0.002418731 0.1372908 0.4751555 +0.005155668 0.1372908 0.4751555 +0.009080105 0.1372908 0.4751555 +0.01434988 0.1372908 0.4751555 +0.02107202 0.1372908 0.4751555 +0.02934285 0.1372908 0.4751555 +0.03925039 0.1372908 0.4751555 +0.05087609 0.1372908 0.4751555 +0.06429595 0.1372908 0.4751555 +0.07958143 0.1372908 0.4751555 +0.0968001 0.1372908 0.4751555 +0.1160161 0.1372908 0.4751555 +0.1372908 0.1372908 0.4751555 +0.1606827 0.1372908 0.4751555 +0.1862481 0.1372908 0.4751555 +0.2140411 0.1372908 0.4751555 +0.2441142 0.1372908 0.4751555 +0.2765176 0.1372908 0.4751555 +0.3113005 0.1372908 0.4751555 +0.3485102 0.1372908 0.4751555 +0.388193 0.1372908 0.4751555 +0.4303934 0.1372908 0.4751555 +0.4751555 0.1372908 0.4751555 +0.5225216 0.1372908 0.4751555 +0.5725335 0.1372908 0.4751555 +0.6252316 0.1372908 0.4751555 +0.6806558 0.1372908 0.4751555 +0.7388448 0.1372908 0.4751555 +0.7998369 0.1372908 0.4751555 +0.8636691 0.1372908 0.4751555 +0.9303782 0.1372908 0.4751555 +1 0.1372908 0.4751555 +0 0.1606827 0.4751555 +0.002418731 0.1606827 0.4751555 +0.005155668 0.1606827 0.4751555 +0.009080105 0.1606827 0.4751555 +0.01434988 0.1606827 0.4751555 +0.02107202 0.1606827 0.4751555 +0.02934285 0.1606827 0.4751555 +0.03925039 0.1606827 0.4751555 +0.05087609 0.1606827 0.4751555 +0.06429595 0.1606827 0.4751555 +0.07958143 0.1606827 0.4751555 +0.0968001 0.1606827 0.4751555 +0.1160161 0.1606827 0.4751555 +0.1372908 0.1606827 0.4751555 +0.1606827 0.1606827 0.4751555 +0.1862481 0.1606827 0.4751555 +0.2140411 0.1606827 0.4751555 +0.2441142 0.1606827 0.4751555 +0.2765176 0.1606827 0.4751555 +0.3113005 0.1606827 0.4751555 +0.3485102 0.1606827 0.4751555 +0.388193 0.1606827 0.4751555 +0.4303934 0.1606827 0.4751555 +0.4751555 0.1606827 0.4751555 +0.5225216 0.1606827 0.4751555 +0.5725335 0.1606827 0.4751555 +0.6252316 0.1606827 0.4751555 +0.6806558 0.1606827 0.4751555 +0.7388448 0.1606827 0.4751555 +0.7998369 0.1606827 0.4751555 +0.8636691 0.1606827 0.4751555 +0.9303782 0.1606827 0.4751555 +1 0.1606827 0.4751555 +0 0.1862481 0.4751555 +0.002418731 0.1862481 0.4751555 +0.005155668 0.1862481 0.4751555 +0.009080105 0.1862481 0.4751555 +0.01434988 0.1862481 0.4751555 +0.02107202 0.1862481 0.4751555 +0.02934285 0.1862481 0.4751555 +0.03925039 0.1862481 0.4751555 +0.05087609 0.1862481 0.4751555 +0.06429595 0.1862481 0.4751555 +0.07958143 0.1862481 0.4751555 +0.0968001 0.1862481 0.4751555 +0.1160161 0.1862481 0.4751555 +0.1372908 0.1862481 0.4751555 +0.1606827 0.1862481 0.4751555 +0.1862481 0.1862481 0.4751555 +0.2140411 0.1862481 0.4751555 +0.2441142 0.1862481 0.4751555 +0.2765176 0.1862481 0.4751555 +0.3113005 0.1862481 0.4751555 +0.3485102 0.1862481 0.4751555 +0.388193 0.1862481 0.4751555 +0.4303934 0.1862481 0.4751555 +0.4751555 0.1862481 0.4751555 +0.5225216 0.1862481 0.4751555 +0.5725335 0.1862481 0.4751555 +0.6252316 0.1862481 0.4751555 +0.6806558 0.1862481 0.4751555 +0.7388448 0.1862481 0.4751555 +0.7998369 0.1862481 0.4751555 +0.8636691 0.1862481 0.4751555 +0.9303782 0.1862481 0.4751555 +1 0.1862481 0.4751555 +0 0.2140411 0.4751555 +0.002418731 0.2140411 0.4751555 +0.005155668 0.2140411 0.4751555 +0.009080105 0.2140411 0.4751555 +0.01434988 0.2140411 0.4751555 +0.02107202 0.2140411 0.4751555 +0.02934285 0.2140411 0.4751555 +0.03925039 0.2140411 0.4751555 +0.05087609 0.2140411 0.4751555 +0.06429595 0.2140411 0.4751555 +0.07958143 0.2140411 0.4751555 +0.0968001 0.2140411 0.4751555 +0.1160161 0.2140411 0.4751555 +0.1372908 0.2140411 0.4751555 +0.1606827 0.2140411 0.4751555 +0.1862481 0.2140411 0.4751555 +0.2140411 0.2140411 0.4751555 +0.2441142 0.2140411 0.4751555 +0.2765176 0.2140411 0.4751555 +0.3113005 0.2140411 0.4751555 +0.3485102 0.2140411 0.4751555 +0.388193 0.2140411 0.4751555 +0.4303934 0.2140411 0.4751555 +0.4751555 0.2140411 0.4751555 +0.5225216 0.2140411 0.4751555 +0.5725335 0.2140411 0.4751555 +0.6252316 0.2140411 0.4751555 +0.6806558 0.2140411 0.4751555 +0.7388448 0.2140411 0.4751555 +0.7998369 0.2140411 0.4751555 +0.8636691 0.2140411 0.4751555 +0.9303782 0.2140411 0.4751555 +1 0.2140411 0.4751555 +0 0.2441142 0.4751555 +0.002418731 0.2441142 0.4751555 +0.005155668 0.2441142 0.4751555 +0.009080105 0.2441142 0.4751555 +0.01434988 0.2441142 0.4751555 +0.02107202 0.2441142 0.4751555 +0.02934285 0.2441142 0.4751555 +0.03925039 0.2441142 0.4751555 +0.05087609 0.2441142 0.4751555 +0.06429595 0.2441142 0.4751555 +0.07958143 0.2441142 0.4751555 +0.0968001 0.2441142 0.4751555 +0.1160161 0.2441142 0.4751555 +0.1372908 0.2441142 0.4751555 +0.1606827 0.2441142 0.4751555 +0.1862481 0.2441142 0.4751555 +0.2140411 0.2441142 0.4751555 +0.2441142 0.2441142 0.4751555 +0.2765176 0.2441142 0.4751555 +0.3113005 0.2441142 0.4751555 +0.3485102 0.2441142 0.4751555 +0.388193 0.2441142 0.4751555 +0.4303934 0.2441142 0.4751555 +0.4751555 0.2441142 0.4751555 +0.5225216 0.2441142 0.4751555 +0.5725335 0.2441142 0.4751555 +0.6252316 0.2441142 0.4751555 +0.6806558 0.2441142 0.4751555 +0.7388448 0.2441142 0.4751555 +0.7998369 0.2441142 0.4751555 +0.8636691 0.2441142 0.4751555 +0.9303782 0.2441142 0.4751555 +1 0.2441142 0.4751555 +0 0.2765176 0.4751555 +0.002418731 0.2765176 0.4751555 +0.005155668 0.2765176 0.4751555 +0.009080105 0.2765176 0.4751555 +0.01434988 0.2765176 0.4751555 +0.02107202 0.2765176 0.4751555 +0.02934285 0.2765176 0.4751555 +0.03925039 0.2765176 0.4751555 +0.05087609 0.2765176 0.4751555 +0.06429595 0.2765176 0.4751555 +0.07958143 0.2765176 0.4751555 +0.0968001 0.2765176 0.4751555 +0.1160161 0.2765176 0.4751555 +0.1372908 0.2765176 0.4751555 +0.1606827 0.2765176 0.4751555 +0.1862481 0.2765176 0.4751555 +0.2140411 0.2765176 0.4751555 +0.2441142 0.2765176 0.4751555 +0.2765176 0.2765176 0.4751555 +0.3113005 0.2765176 0.4751555 +0.3485102 0.2765176 0.4751555 +0.388193 0.2765176 0.4751555 +0.4303934 0.2765176 0.4751555 +0.4751555 0.2765176 0.4751555 +0.5225216 0.2765176 0.4751555 +0.5725335 0.2765176 0.4751555 +0.6252316 0.2765176 0.4751555 +0.6806558 0.2765176 0.4751555 +0.7388448 0.2765176 0.4751555 +0.7998369 0.2765176 0.4751555 +0.8636691 0.2765176 0.4751555 +0.9303782 0.2765176 0.4751555 +1 0.2765176 0.4751555 +0 0.3113005 0.4751555 +0.002418731 0.3113005 0.4751555 +0.005155668 0.3113005 0.4751555 +0.009080105 0.3113005 0.4751555 +0.01434988 0.3113005 0.4751555 +0.02107202 0.3113005 0.4751555 +0.02934285 0.3113005 0.4751555 +0.03925039 0.3113005 0.4751555 +0.05087609 0.3113005 0.4751555 +0.06429595 0.3113005 0.4751555 +0.07958143 0.3113005 0.4751555 +0.0968001 0.3113005 0.4751555 +0.1160161 0.3113005 0.4751555 +0.1372908 0.3113005 0.4751555 +0.1606827 0.3113005 0.4751555 +0.1862481 0.3113005 0.4751555 +0.2140411 0.3113005 0.4751555 +0.2441142 0.3113005 0.4751555 +0.2765176 0.3113005 0.4751555 +0.3113005 0.3113005 0.4751555 +0.3485102 0.3113005 0.4751555 +0.388193 0.3113005 0.4751555 +0.4303934 0.3113005 0.4751555 +0.4751555 0.3113005 0.4751555 +0.5225216 0.3113005 0.4751555 +0.5725335 0.3113005 0.4751555 +0.6252316 0.3113005 0.4751555 +0.6806558 0.3113005 0.4751555 +0.7388448 0.3113005 0.4751555 +0.7998369 0.3113005 0.4751555 +0.8636691 0.3113005 0.4751555 +0.9303782 0.3113005 0.4751555 +1 0.3113005 0.4751555 +0 0.3485102 0.4751555 +0.002418731 0.3485102 0.4751555 +0.005155668 0.3485102 0.4751555 +0.009080105 0.3485102 0.4751555 +0.01434988 0.3485102 0.4751555 +0.02107202 0.3485102 0.4751555 +0.02934285 0.3485102 0.4751555 +0.03925039 0.3485102 0.4751555 +0.05087609 0.3485102 0.4751555 +0.06429595 0.3485102 0.4751555 +0.07958143 0.3485102 0.4751555 +0.0968001 0.3485102 0.4751555 +0.1160161 0.3485102 0.4751555 +0.1372908 0.3485102 0.4751555 +0.1606827 0.3485102 0.4751555 +0.1862481 0.3485102 0.4751555 +0.2140411 0.3485102 0.4751555 +0.2441142 0.3485102 0.4751555 +0.2765176 0.3485102 0.4751555 +0.3113005 0.3485102 0.4751555 +0.3485102 0.3485102 0.4751555 +0.388193 0.3485102 0.4751555 +0.4303934 0.3485102 0.4751555 +0.4751555 0.3485102 0.4751555 +0.5225216 0.3485102 0.4751555 +0.5725335 0.3485102 0.4751555 +0.6252316 0.3485102 0.4751555 +0.6806558 0.3485102 0.4751555 +0.7388448 0.3485102 0.4751555 +0.7998369 0.3485102 0.4751555 +0.8636691 0.3485102 0.4751555 +0.9303782 0.3485102 0.4751555 +1 0.3485102 0.4751555 +0 0.388193 0.4751555 +0.002418731 0.388193 0.4751555 +0.005155668 0.388193 0.4751555 +0.009080105 0.388193 0.4751555 +0.01434988 0.388193 0.4751555 +0.02107202 0.388193 0.4751555 +0.02934285 0.388193 0.4751555 +0.03925039 0.388193 0.4751555 +0.05087609 0.388193 0.4751555 +0.06429595 0.388193 0.4751555 +0.07958143 0.388193 0.4751555 +0.0968001 0.388193 0.4751555 +0.1160161 0.388193 0.4751555 +0.1372908 0.388193 0.4751555 +0.1606827 0.388193 0.4751555 +0.1862481 0.388193 0.4751555 +0.2140411 0.388193 0.4751555 +0.2441142 0.388193 0.4751555 +0.2765176 0.388193 0.4751555 +0.3113005 0.388193 0.4751555 +0.3485102 0.388193 0.4751555 +0.388193 0.388193 0.4751555 +0.4303934 0.388193 0.4751555 +0.4751555 0.388193 0.4751555 +0.5225216 0.388193 0.4751555 +0.5725335 0.388193 0.4751555 +0.6252316 0.388193 0.4751555 +0.6806558 0.388193 0.4751555 +0.7388448 0.388193 0.4751555 +0.7998369 0.388193 0.4751555 +0.8636691 0.388193 0.4751555 +0.9303782 0.388193 0.4751555 +1 0.388193 0.4751555 +0 0.4303934 0.4751555 +0.002418731 0.4303934 0.4751555 +0.005155668 0.4303934 0.4751555 +0.009080105 0.4303934 0.4751555 +0.01434988 0.4303934 0.4751555 +0.02107202 0.4303934 0.4751555 +0.02934285 0.4303934 0.4751555 +0.03925039 0.4303934 0.4751555 +0.05087609 0.4303934 0.4751555 +0.06429595 0.4303934 0.4751555 +0.07958143 0.4303934 0.4751555 +0.0968001 0.4303934 0.4751555 +0.1160161 0.4303934 0.4751555 +0.1372908 0.4303934 0.4751555 +0.1606827 0.4303934 0.4751555 +0.1862481 0.4303934 0.4751555 +0.2140411 0.4303934 0.4751555 +0.2441142 0.4303934 0.4751555 +0.2765176 0.4303934 0.4751555 +0.3113005 0.4303934 0.4751555 +0.3485102 0.4303934 0.4751555 +0.388193 0.4303934 0.4751555 +0.4303934 0.4303934 0.4751555 +0.4751555 0.4303934 0.4751555 +0.5225216 0.4303934 0.4751555 +0.5725335 0.4303934 0.4751555 +0.6252316 0.4303934 0.4751555 +0.6806558 0.4303934 0.4751555 +0.7388448 0.4303934 0.4751555 +0.7998369 0.4303934 0.4751555 +0.8636691 0.4303934 0.4751555 +0.9303782 0.4303934 0.4751555 +1 0.4303934 0.4751555 +0 0.4751555 0.4751555 +0.002418731 0.4751555 0.4751555 +0.005155668 0.4751555 0.4751555 +0.009080105 0.4751555 0.4751555 +0.01434988 0.4751555 0.4751555 +0.02107202 0.4751555 0.4751555 +0.02934285 0.4751555 0.4751555 +0.03925039 0.4751555 0.4751555 +0.05087609 0.4751555 0.4751555 +0.06429595 0.4751555 0.4751555 +0.07958143 0.4751555 0.4751555 +0.0968001 0.4751555 0.4751555 +0.1160161 0.4751555 0.4751555 +0.1372908 0.4751555 0.4751555 +0.1606827 0.4751555 0.4751555 +0.1862481 0.4751555 0.4751555 +0.2140411 0.4751555 0.4751555 +0.2441142 0.4751555 0.4751555 +0.2765176 0.4751555 0.4751555 +0.3113005 0.4751555 0.4751555 +0.3485102 0.4751555 0.4751555 +0.388193 0.4751555 0.4751555 +0.4303934 0.4751555 0.4751555 +0.4751555 0.4751555 0.4751555 +0.5225216 0.4751555 0.4751555 +0.5725335 0.4751555 0.4751555 +0.6252316 0.4751555 0.4751555 +0.6806558 0.4751555 0.4751555 +0.7388448 0.4751555 0.4751555 +0.7998369 0.4751555 0.4751555 +0.8636691 0.4751555 0.4751555 +0.9303782 0.4751555 0.4751555 +1 0.4751555 0.4751555 +0 0.5225216 0.4751555 +0.002418731 0.5225216 0.4751555 +0.005155668 0.5225216 0.4751555 +0.009080105 0.5225216 0.4751555 +0.01434988 0.5225216 0.4751555 +0.02107202 0.5225216 0.4751555 +0.02934285 0.5225216 0.4751555 +0.03925039 0.5225216 0.4751555 +0.05087609 0.5225216 0.4751555 +0.06429595 0.5225216 0.4751555 +0.07958143 0.5225216 0.4751555 +0.0968001 0.5225216 0.4751555 +0.1160161 0.5225216 0.4751555 +0.1372908 0.5225216 0.4751555 +0.1606827 0.5225216 0.4751555 +0.1862481 0.5225216 0.4751555 +0.2140411 0.5225216 0.4751555 +0.2441142 0.5225216 0.4751555 +0.2765176 0.5225216 0.4751555 +0.3113005 0.5225216 0.4751555 +0.3485102 0.5225216 0.4751555 +0.388193 0.5225216 0.4751555 +0.4303934 0.5225216 0.4751555 +0.4751555 0.5225216 0.4751555 +0.5225216 0.5225216 0.4751555 +0.5725335 0.5225216 0.4751555 +0.6252316 0.5225216 0.4751555 +0.6806558 0.5225216 0.4751555 +0.7388448 0.5225216 0.4751555 +0.7998369 0.5225216 0.4751555 +0.8636691 0.5225216 0.4751555 +0.9303782 0.5225216 0.4751555 +1 0.5225216 0.4751555 +0 0.5725335 0.4751555 +0.002418731 0.5725335 0.4751555 +0.005155668 0.5725335 0.4751555 +0.009080105 0.5725335 0.4751555 +0.01434988 0.5725335 0.4751555 +0.02107202 0.5725335 0.4751555 +0.02934285 0.5725335 0.4751555 +0.03925039 0.5725335 0.4751555 +0.05087609 0.5725335 0.4751555 +0.06429595 0.5725335 0.4751555 +0.07958143 0.5725335 0.4751555 +0.0968001 0.5725335 0.4751555 +0.1160161 0.5725335 0.4751555 +0.1372908 0.5725335 0.4751555 +0.1606827 0.5725335 0.4751555 +0.1862481 0.5725335 0.4751555 +0.2140411 0.5725335 0.4751555 +0.2441142 0.5725335 0.4751555 +0.2765176 0.5725335 0.4751555 +0.3113005 0.5725335 0.4751555 +0.3485102 0.5725335 0.4751555 +0.388193 0.5725335 0.4751555 +0.4303934 0.5725335 0.4751555 +0.4751555 0.5725335 0.4751555 +0.5225216 0.5725335 0.4751555 +0.5725335 0.5725335 0.4751555 +0.6252316 0.5725335 0.4751555 +0.6806558 0.5725335 0.4751555 +0.7388448 0.5725335 0.4751555 +0.7998369 0.5725335 0.4751555 +0.8636691 0.5725335 0.4751555 +0.9303782 0.5725335 0.4751555 +1 0.5725335 0.4751555 +0 0.6252316 0.4751555 +0.002418731 0.6252316 0.4751555 +0.005155668 0.6252316 0.4751555 +0.009080105 0.6252316 0.4751555 +0.01434988 0.6252316 0.4751555 +0.02107202 0.6252316 0.4751555 +0.02934285 0.6252316 0.4751555 +0.03925039 0.6252316 0.4751555 +0.05087609 0.6252316 0.4751555 +0.06429595 0.6252316 0.4751555 +0.07958143 0.6252316 0.4751555 +0.0968001 0.6252316 0.4751555 +0.1160161 0.6252316 0.4751555 +0.1372908 0.6252316 0.4751555 +0.1606827 0.6252316 0.4751555 +0.1862481 0.6252316 0.4751555 +0.2140411 0.6252316 0.4751555 +0.2441142 0.6252316 0.4751555 +0.2765176 0.6252316 0.4751555 +0.3113005 0.6252316 0.4751555 +0.3485102 0.6252316 0.4751555 +0.388193 0.6252316 0.4751555 +0.4303934 0.6252316 0.4751555 +0.4751555 0.6252316 0.4751555 +0.5225216 0.6252316 0.4751555 +0.5725335 0.6252316 0.4751555 +0.6252316 0.6252316 0.4751555 +0.6806558 0.6252316 0.4751555 +0.7388448 0.6252316 0.4751555 +0.7998369 0.6252316 0.4751555 +0.8636691 0.6252316 0.4751555 +0.9303782 0.6252316 0.4751555 +1 0.6252316 0.4751555 +0 0.6806558 0.4751555 +0.002418731 0.6806558 0.4751555 +0.005155668 0.6806558 0.4751555 +0.009080105 0.6806558 0.4751555 +0.01434988 0.6806558 0.4751555 +0.02107202 0.6806558 0.4751555 +0.02934285 0.6806558 0.4751555 +0.03925039 0.6806558 0.4751555 +0.05087609 0.6806558 0.4751555 +0.06429595 0.6806558 0.4751555 +0.07958143 0.6806558 0.4751555 +0.0968001 0.6806558 0.4751555 +0.1160161 0.6806558 0.4751555 +0.1372908 0.6806558 0.4751555 +0.1606827 0.6806558 0.4751555 +0.1862481 0.6806558 0.4751555 +0.2140411 0.6806558 0.4751555 +0.2441142 0.6806558 0.4751555 +0.2765176 0.6806558 0.4751555 +0.3113005 0.6806558 0.4751555 +0.3485102 0.6806558 0.4751555 +0.388193 0.6806558 0.4751555 +0.4303934 0.6806558 0.4751555 +0.4751555 0.6806558 0.4751555 +0.5225216 0.6806558 0.4751555 +0.5725335 0.6806558 0.4751555 +0.6252316 0.6806558 0.4751555 +0.6806558 0.6806558 0.4751555 +0.7388448 0.6806558 0.4751555 +0.7998369 0.6806558 0.4751555 +0.8636691 0.6806558 0.4751555 +0.9303782 0.6806558 0.4751555 +1 0.6806558 0.4751555 +0 0.7388448 0.4751555 +0.002418731 0.7388448 0.4751555 +0.005155668 0.7388448 0.4751555 +0.009080105 0.7388448 0.4751555 +0.01434988 0.7388448 0.4751555 +0.02107202 0.7388448 0.4751555 +0.02934285 0.7388448 0.4751555 +0.03925039 0.7388448 0.4751555 +0.05087609 0.7388448 0.4751555 +0.06429595 0.7388448 0.4751555 +0.07958143 0.7388448 0.4751555 +0.0968001 0.7388448 0.4751555 +0.1160161 0.7388448 0.4751555 +0.1372908 0.7388448 0.4751555 +0.1606827 0.7388448 0.4751555 +0.1862481 0.7388448 0.4751555 +0.2140411 0.7388448 0.4751555 +0.2441142 0.7388448 0.4751555 +0.2765176 0.7388448 0.4751555 +0.3113005 0.7388448 0.4751555 +0.3485102 0.7388448 0.4751555 +0.388193 0.7388448 0.4751555 +0.4303934 0.7388448 0.4751555 +0.4751555 0.7388448 0.4751555 +0.5225216 0.7388448 0.4751555 +0.5725335 0.7388448 0.4751555 +0.6252316 0.7388448 0.4751555 +0.6806558 0.7388448 0.4751555 +0.7388448 0.7388448 0.4751555 +0.7998369 0.7388448 0.4751555 +0.8636691 0.7388448 0.4751555 +0.9303782 0.7388448 0.4751555 +1 0.7388448 0.4751555 +0 0.7998369 0.4751555 +0.002418731 0.7998369 0.4751555 +0.005155668 0.7998369 0.4751555 +0.009080105 0.7998369 0.4751555 +0.01434988 0.7998369 0.4751555 +0.02107202 0.7998369 0.4751555 +0.02934285 0.7998369 0.4751555 +0.03925039 0.7998369 0.4751555 +0.05087609 0.7998369 0.4751555 +0.06429595 0.7998369 0.4751555 +0.07958143 0.7998369 0.4751555 +0.0968001 0.7998369 0.4751555 +0.1160161 0.7998369 0.4751555 +0.1372908 0.7998369 0.4751555 +0.1606827 0.7998369 0.4751555 +0.1862481 0.7998369 0.4751555 +0.2140411 0.7998369 0.4751555 +0.2441142 0.7998369 0.4751555 +0.2765176 0.7998369 0.4751555 +0.3113005 0.7998369 0.4751555 +0.3485102 0.7998369 0.4751555 +0.388193 0.7998369 0.4751555 +0.4303934 0.7998369 0.4751555 +0.4751555 0.7998369 0.4751555 +0.5225216 0.7998369 0.4751555 +0.5725335 0.7998369 0.4751555 +0.6252316 0.7998369 0.4751555 +0.6806558 0.7998369 0.4751555 +0.7388448 0.7998369 0.4751555 +0.7998369 0.7998369 0.4751555 +0.8636691 0.7998369 0.4751555 +0.9303782 0.7998369 0.4751555 +1 0.7998369 0.4751555 +0 0.8636691 0.4751555 +0.002418731 0.8636691 0.4751555 +0.005155668 0.8636691 0.4751555 +0.009080105 0.8636691 0.4751555 +0.01434988 0.8636691 0.4751555 +0.02107202 0.8636691 0.4751555 +0.02934285 0.8636691 0.4751555 +0.03925039 0.8636691 0.4751555 +0.05087609 0.8636691 0.4751555 +0.06429595 0.8636691 0.4751555 +0.07958143 0.8636691 0.4751555 +0.0968001 0.8636691 0.4751555 +0.1160161 0.8636691 0.4751555 +0.1372908 0.8636691 0.4751555 +0.1606827 0.8636691 0.4751555 +0.1862481 0.8636691 0.4751555 +0.2140411 0.8636691 0.4751555 +0.2441142 0.8636691 0.4751555 +0.2765176 0.8636691 0.4751555 +0.3113005 0.8636691 0.4751555 +0.3485102 0.8636691 0.4751555 +0.388193 0.8636691 0.4751555 +0.4303934 0.8636691 0.4751555 +0.4751555 0.8636691 0.4751555 +0.5225216 0.8636691 0.4751555 +0.5725335 0.8636691 0.4751555 +0.6252316 0.8636691 0.4751555 +0.6806558 0.8636691 0.4751555 +0.7388448 0.8636691 0.4751555 +0.7998369 0.8636691 0.4751555 +0.8636691 0.8636691 0.4751555 +0.9303782 0.8636691 0.4751555 +1 0.8636691 0.4751555 +0 0.9303782 0.4751555 +0.002418731 0.9303782 0.4751555 +0.005155668 0.9303782 0.4751555 +0.009080105 0.9303782 0.4751555 +0.01434988 0.9303782 0.4751555 +0.02107202 0.9303782 0.4751555 +0.02934285 0.9303782 0.4751555 +0.03925039 0.9303782 0.4751555 +0.05087609 0.9303782 0.4751555 +0.06429595 0.9303782 0.4751555 +0.07958143 0.9303782 0.4751555 +0.0968001 0.9303782 0.4751555 +0.1160161 0.9303782 0.4751555 +0.1372908 0.9303782 0.4751555 +0.1606827 0.9303782 0.4751555 +0.1862481 0.9303782 0.4751555 +0.2140411 0.9303782 0.4751555 +0.2441142 0.9303782 0.4751555 +0.2765176 0.9303782 0.4751555 +0.3113005 0.9303782 0.4751555 +0.3485102 0.9303782 0.4751555 +0.388193 0.9303782 0.4751555 +0.4303934 0.9303782 0.4751555 +0.4751555 0.9303782 0.4751555 +0.5225216 0.9303782 0.4751555 +0.5725335 0.9303782 0.4751555 +0.6252316 0.9303782 0.4751555 +0.6806558 0.9303782 0.4751555 +0.7388448 0.9303782 0.4751555 +0.7998369 0.9303782 0.4751555 +0.8636691 0.9303782 0.4751555 +0.9303782 0.9303782 0.4751555 +1 0.9303782 0.4751555 +0 1 0.4751555 +0.002418731 1 0.4751555 +0.005155668 1 0.4751555 +0.009080105 1 0.4751555 +0.01434988 1 0.4751555 +0.02107202 1 0.4751555 +0.02934285 1 0.4751555 +0.03925039 1 0.4751555 +0.05087609 1 0.4751555 +0.06429595 1 0.4751555 +0.07958143 1 0.4751555 +0.0968001 1 0.4751555 +0.1160161 1 0.4751555 +0.1372908 1 0.4751555 +0.1606827 1 0.4751555 +0.1862481 1 0.4751555 +0.2140411 1 0.4751555 +0.2441142 1 0.4751555 +0.2765176 1 0.4751555 +0.3113005 1 0.4751555 +0.3485102 1 0.4751555 +0.388193 1 0.4751555 +0.4303934 1 0.4751555 +0.4751555 1 0.4751555 +0.5225216 1 0.4751555 +0.5725335 1 0.4751555 +0.6252316 1 0.4751555 +0.6806558 1 0.4751555 +0.7388448 1 0.4751555 +0.7998369 1 0.4751555 +0.8636691 1 0.4751555 +0.9303782 1 0.4751555 +1 1 0.4751555 +0 0 0.5225216 +0.002418731 0 0.5225216 +0.005155668 0 0.5225216 +0.009080105 0 0.5225216 +0.01434988 0 0.5225216 +0.02107202 0 0.5225216 +0.02934285 0 0.5225216 +0.03925039 0 0.5225216 +0.05087609 0 0.5225216 +0.06429595 0 0.5225216 +0.07958143 0 0.5225216 +0.0968001 0 0.5225216 +0.1160161 0 0.5225216 +0.1372908 0 0.5225216 +0.1606827 0 0.5225216 +0.1862481 0 0.5225216 +0.2140411 0 0.5225216 +0.2441142 0 0.5225216 +0.2765176 0 0.5225216 +0.3113005 0 0.5225216 +0.3485102 0 0.5225216 +0.388193 0 0.5225216 +0.4303934 0 0.5225216 +0.4751555 0 0.5225216 +0.5225216 0 0.5225216 +0.5725335 0 0.5225216 +0.6252316 0 0.5225216 +0.6806558 0 0.5225216 +0.7388448 0 0.5225216 +0.7998369 0 0.5225216 +0.8636691 0 0.5225216 +0.9303782 0 0.5225216 +1 0 0.5225216 +0 0.002418731 0.5225216 +0.002418731 0.002418731 0.5225216 +0.005155668 0.002418731 0.5225216 +0.009080105 0.002418731 0.5225216 +0.01434988 0.002418731 0.5225216 +0.02107202 0.002418731 0.5225216 +0.02934285 0.002418731 0.5225216 +0.03925039 0.002418731 0.5225216 +0.05087609 0.002418731 0.5225216 +0.06429595 0.002418731 0.5225216 +0.07958143 0.002418731 0.5225216 +0.0968001 0.002418731 0.5225216 +0.1160161 0.002418731 0.5225216 +0.1372908 0.002418731 0.5225216 +0.1606827 0.002418731 0.5225216 +0.1862481 0.002418731 0.5225216 +0.2140411 0.002418731 0.5225216 +0.2441142 0.002418731 0.5225216 +0.2765176 0.002418731 0.5225216 +0.3113005 0.002418731 0.5225216 +0.3485102 0.002418731 0.5225216 +0.388193 0.002418731 0.5225216 +0.4303934 0.002418731 0.5225216 +0.4751555 0.002418731 0.5225216 +0.5225216 0.002418731 0.5225216 +0.5725335 0.002418731 0.5225216 +0.6252316 0.002418731 0.5225216 +0.6806558 0.002418731 0.5225216 +0.7388448 0.002418731 0.5225216 +0.7998369 0.002418731 0.5225216 +0.8636691 0.002418731 0.5225216 +0.9303782 0.002418731 0.5225216 +1 0.002418731 0.5225216 +0 0.005155668 0.5225216 +0.002418731 0.005155668 0.5225216 +0.005155668 0.005155668 0.5225216 +0.009080105 0.005155668 0.5225216 +0.01434988 0.005155668 0.5225216 +0.02107202 0.005155668 0.5225216 +0.02934285 0.005155668 0.5225216 +0.03925039 0.005155668 0.5225216 +0.05087609 0.005155668 0.5225216 +0.06429595 0.005155668 0.5225216 +0.07958143 0.005155668 0.5225216 +0.0968001 0.005155668 0.5225216 +0.1160161 0.005155668 0.5225216 +0.1372908 0.005155668 0.5225216 +0.1606827 0.005155668 0.5225216 +0.1862481 0.005155668 0.5225216 +0.2140411 0.005155668 0.5225216 +0.2441142 0.005155668 0.5225216 +0.2765176 0.005155668 0.5225216 +0.3113005 0.005155668 0.5225216 +0.3485102 0.005155668 0.5225216 +0.388193 0.005155668 0.5225216 +0.4303934 0.005155668 0.5225216 +0.4751555 0.005155668 0.5225216 +0.5225216 0.005155668 0.5225216 +0.5725335 0.005155668 0.5225216 +0.6252316 0.005155668 0.5225216 +0.6806558 0.005155668 0.5225216 +0.7388448 0.005155668 0.5225216 +0.7998369 0.005155668 0.5225216 +0.8636691 0.005155668 0.5225216 +0.9303782 0.005155668 0.5225216 +1 0.005155668 0.5225216 +0 0.009080105 0.5225216 +0.002418731 0.009080105 0.5225216 +0.005155668 0.009080105 0.5225216 +0.009080105 0.009080105 0.5225216 +0.01434988 0.009080105 0.5225216 +0.02107202 0.009080105 0.5225216 +0.02934285 0.009080105 0.5225216 +0.03925039 0.009080105 0.5225216 +0.05087609 0.009080105 0.5225216 +0.06429595 0.009080105 0.5225216 +0.07958143 0.009080105 0.5225216 +0.0968001 0.009080105 0.5225216 +0.1160161 0.009080105 0.5225216 +0.1372908 0.009080105 0.5225216 +0.1606827 0.009080105 0.5225216 +0.1862481 0.009080105 0.5225216 +0.2140411 0.009080105 0.5225216 +0.2441142 0.009080105 0.5225216 +0.2765176 0.009080105 0.5225216 +0.3113005 0.009080105 0.5225216 +0.3485102 0.009080105 0.5225216 +0.388193 0.009080105 0.5225216 +0.4303934 0.009080105 0.5225216 +0.4751555 0.009080105 0.5225216 +0.5225216 0.009080105 0.5225216 +0.5725335 0.009080105 0.5225216 +0.6252316 0.009080105 0.5225216 +0.6806558 0.009080105 0.5225216 +0.7388448 0.009080105 0.5225216 +0.7998369 0.009080105 0.5225216 +0.8636691 0.009080105 0.5225216 +0.9303782 0.009080105 0.5225216 +1 0.009080105 0.5225216 +0 0.01434988 0.5225216 +0.002418731 0.01434988 0.5225216 +0.005155668 0.01434988 0.5225216 +0.009080105 0.01434988 0.5225216 +0.01434988 0.01434988 0.5225216 +0.02107202 0.01434988 0.5225216 +0.02934285 0.01434988 0.5225216 +0.03925039 0.01434988 0.5225216 +0.05087609 0.01434988 0.5225216 +0.06429595 0.01434988 0.5225216 +0.07958143 0.01434988 0.5225216 +0.0968001 0.01434988 0.5225216 +0.1160161 0.01434988 0.5225216 +0.1372908 0.01434988 0.5225216 +0.1606827 0.01434988 0.5225216 +0.1862481 0.01434988 0.5225216 +0.2140411 0.01434988 0.5225216 +0.2441142 0.01434988 0.5225216 +0.2765176 0.01434988 0.5225216 +0.3113005 0.01434988 0.5225216 +0.3485102 0.01434988 0.5225216 +0.388193 0.01434988 0.5225216 +0.4303934 0.01434988 0.5225216 +0.4751555 0.01434988 0.5225216 +0.5225216 0.01434988 0.5225216 +0.5725335 0.01434988 0.5225216 +0.6252316 0.01434988 0.5225216 +0.6806558 0.01434988 0.5225216 +0.7388448 0.01434988 0.5225216 +0.7998369 0.01434988 0.5225216 +0.8636691 0.01434988 0.5225216 +0.9303782 0.01434988 0.5225216 +1 0.01434988 0.5225216 +0 0.02107202 0.5225216 +0.002418731 0.02107202 0.5225216 +0.005155668 0.02107202 0.5225216 +0.009080105 0.02107202 0.5225216 +0.01434988 0.02107202 0.5225216 +0.02107202 0.02107202 0.5225216 +0.02934285 0.02107202 0.5225216 +0.03925039 0.02107202 0.5225216 +0.05087609 0.02107202 0.5225216 +0.06429595 0.02107202 0.5225216 +0.07958143 0.02107202 0.5225216 +0.0968001 0.02107202 0.5225216 +0.1160161 0.02107202 0.5225216 +0.1372908 0.02107202 0.5225216 +0.1606827 0.02107202 0.5225216 +0.1862481 0.02107202 0.5225216 +0.2140411 0.02107202 0.5225216 +0.2441142 0.02107202 0.5225216 +0.2765176 0.02107202 0.5225216 +0.3113005 0.02107202 0.5225216 +0.3485102 0.02107202 0.5225216 +0.388193 0.02107202 0.5225216 +0.4303934 0.02107202 0.5225216 +0.4751555 0.02107202 0.5225216 +0.5225216 0.02107202 0.5225216 +0.5725335 0.02107202 0.5225216 +0.6252316 0.02107202 0.5225216 +0.6806558 0.02107202 0.5225216 +0.7388448 0.02107202 0.5225216 +0.7998369 0.02107202 0.5225216 +0.8636691 0.02107202 0.5225216 +0.9303782 0.02107202 0.5225216 +1 0.02107202 0.5225216 +0 0.02934285 0.5225216 +0.002418731 0.02934285 0.5225216 +0.005155668 0.02934285 0.5225216 +0.009080105 0.02934285 0.5225216 +0.01434988 0.02934285 0.5225216 +0.02107202 0.02934285 0.5225216 +0.02934285 0.02934285 0.5225216 +0.03925039 0.02934285 0.5225216 +0.05087609 0.02934285 0.5225216 +0.06429595 0.02934285 0.5225216 +0.07958143 0.02934285 0.5225216 +0.0968001 0.02934285 0.5225216 +0.1160161 0.02934285 0.5225216 +0.1372908 0.02934285 0.5225216 +0.1606827 0.02934285 0.5225216 +0.1862481 0.02934285 0.5225216 +0.2140411 0.02934285 0.5225216 +0.2441142 0.02934285 0.5225216 +0.2765176 0.02934285 0.5225216 +0.3113005 0.02934285 0.5225216 +0.3485102 0.02934285 0.5225216 +0.388193 0.02934285 0.5225216 +0.4303934 0.02934285 0.5225216 +0.4751555 0.02934285 0.5225216 +0.5225216 0.02934285 0.5225216 +0.5725335 0.02934285 0.5225216 +0.6252316 0.02934285 0.5225216 +0.6806558 0.02934285 0.5225216 +0.7388448 0.02934285 0.5225216 +0.7998369 0.02934285 0.5225216 +0.8636691 0.02934285 0.5225216 +0.9303782 0.02934285 0.5225216 +1 0.02934285 0.5225216 +0 0.03925039 0.5225216 +0.002418731 0.03925039 0.5225216 +0.005155668 0.03925039 0.5225216 +0.009080105 0.03925039 0.5225216 +0.01434988 0.03925039 0.5225216 +0.02107202 0.03925039 0.5225216 +0.02934285 0.03925039 0.5225216 +0.03925039 0.03925039 0.5225216 +0.05087609 0.03925039 0.5225216 +0.06429595 0.03925039 0.5225216 +0.07958143 0.03925039 0.5225216 +0.0968001 0.03925039 0.5225216 +0.1160161 0.03925039 0.5225216 +0.1372908 0.03925039 0.5225216 +0.1606827 0.03925039 0.5225216 +0.1862481 0.03925039 0.5225216 +0.2140411 0.03925039 0.5225216 +0.2441142 0.03925039 0.5225216 +0.2765176 0.03925039 0.5225216 +0.3113005 0.03925039 0.5225216 +0.3485102 0.03925039 0.5225216 +0.388193 0.03925039 0.5225216 +0.4303934 0.03925039 0.5225216 +0.4751555 0.03925039 0.5225216 +0.5225216 0.03925039 0.5225216 +0.5725335 0.03925039 0.5225216 +0.6252316 0.03925039 0.5225216 +0.6806558 0.03925039 0.5225216 +0.7388448 0.03925039 0.5225216 +0.7998369 0.03925039 0.5225216 +0.8636691 0.03925039 0.5225216 +0.9303782 0.03925039 0.5225216 +1 0.03925039 0.5225216 +0 0.05087609 0.5225216 +0.002418731 0.05087609 0.5225216 +0.005155668 0.05087609 0.5225216 +0.009080105 0.05087609 0.5225216 +0.01434988 0.05087609 0.5225216 +0.02107202 0.05087609 0.5225216 +0.02934285 0.05087609 0.5225216 +0.03925039 0.05087609 0.5225216 +0.05087609 0.05087609 0.5225216 +0.06429595 0.05087609 0.5225216 +0.07958143 0.05087609 0.5225216 +0.0968001 0.05087609 0.5225216 +0.1160161 0.05087609 0.5225216 +0.1372908 0.05087609 0.5225216 +0.1606827 0.05087609 0.5225216 +0.1862481 0.05087609 0.5225216 +0.2140411 0.05087609 0.5225216 +0.2441142 0.05087609 0.5225216 +0.2765176 0.05087609 0.5225216 +0.3113005 0.05087609 0.5225216 +0.3485102 0.05087609 0.5225216 +0.388193 0.05087609 0.5225216 +0.4303934 0.05087609 0.5225216 +0.4751555 0.05087609 0.5225216 +0.5225216 0.05087609 0.5225216 +0.5725335 0.05087609 0.5225216 +0.6252316 0.05087609 0.5225216 +0.6806558 0.05087609 0.5225216 +0.7388448 0.05087609 0.5225216 +0.7998369 0.05087609 0.5225216 +0.8636691 0.05087609 0.5225216 +0.9303782 0.05087609 0.5225216 +1 0.05087609 0.5225216 +0 0.06429595 0.5225216 +0.002418731 0.06429595 0.5225216 +0.005155668 0.06429595 0.5225216 +0.009080105 0.06429595 0.5225216 +0.01434988 0.06429595 0.5225216 +0.02107202 0.06429595 0.5225216 +0.02934285 0.06429595 0.5225216 +0.03925039 0.06429595 0.5225216 +0.05087609 0.06429595 0.5225216 +0.06429595 0.06429595 0.5225216 +0.07958143 0.06429595 0.5225216 +0.0968001 0.06429595 0.5225216 +0.1160161 0.06429595 0.5225216 +0.1372908 0.06429595 0.5225216 +0.1606827 0.06429595 0.5225216 +0.1862481 0.06429595 0.5225216 +0.2140411 0.06429595 0.5225216 +0.2441142 0.06429595 0.5225216 +0.2765176 0.06429595 0.5225216 +0.3113005 0.06429595 0.5225216 +0.3485102 0.06429595 0.5225216 +0.388193 0.06429595 0.5225216 +0.4303934 0.06429595 0.5225216 +0.4751555 0.06429595 0.5225216 +0.5225216 0.06429595 0.5225216 +0.5725335 0.06429595 0.5225216 +0.6252316 0.06429595 0.5225216 +0.6806558 0.06429595 0.5225216 +0.7388448 0.06429595 0.5225216 +0.7998369 0.06429595 0.5225216 +0.8636691 0.06429595 0.5225216 +0.9303782 0.06429595 0.5225216 +1 0.06429595 0.5225216 +0 0.07958143 0.5225216 +0.002418731 0.07958143 0.5225216 +0.005155668 0.07958143 0.5225216 +0.009080105 0.07958143 0.5225216 +0.01434988 0.07958143 0.5225216 +0.02107202 0.07958143 0.5225216 +0.02934285 0.07958143 0.5225216 +0.03925039 0.07958143 0.5225216 +0.05087609 0.07958143 0.5225216 +0.06429595 0.07958143 0.5225216 +0.07958143 0.07958143 0.5225216 +0.0968001 0.07958143 0.5225216 +0.1160161 0.07958143 0.5225216 +0.1372908 0.07958143 0.5225216 +0.1606827 0.07958143 0.5225216 +0.1862481 0.07958143 0.5225216 +0.2140411 0.07958143 0.5225216 +0.2441142 0.07958143 0.5225216 +0.2765176 0.07958143 0.5225216 +0.3113005 0.07958143 0.5225216 +0.3485102 0.07958143 0.5225216 +0.388193 0.07958143 0.5225216 +0.4303934 0.07958143 0.5225216 +0.4751555 0.07958143 0.5225216 +0.5225216 0.07958143 0.5225216 +0.5725335 0.07958143 0.5225216 +0.6252316 0.07958143 0.5225216 +0.6806558 0.07958143 0.5225216 +0.7388448 0.07958143 0.5225216 +0.7998369 0.07958143 0.5225216 +0.8636691 0.07958143 0.5225216 +0.9303782 0.07958143 0.5225216 +1 0.07958143 0.5225216 +0 0.0968001 0.5225216 +0.002418731 0.0968001 0.5225216 +0.005155668 0.0968001 0.5225216 +0.009080105 0.0968001 0.5225216 +0.01434988 0.0968001 0.5225216 +0.02107202 0.0968001 0.5225216 +0.02934285 0.0968001 0.5225216 +0.03925039 0.0968001 0.5225216 +0.05087609 0.0968001 0.5225216 +0.06429595 0.0968001 0.5225216 +0.07958143 0.0968001 0.5225216 +0.0968001 0.0968001 0.5225216 +0.1160161 0.0968001 0.5225216 +0.1372908 0.0968001 0.5225216 +0.1606827 0.0968001 0.5225216 +0.1862481 0.0968001 0.5225216 +0.2140411 0.0968001 0.5225216 +0.2441142 0.0968001 0.5225216 +0.2765176 0.0968001 0.5225216 +0.3113005 0.0968001 0.5225216 +0.3485102 0.0968001 0.5225216 +0.388193 0.0968001 0.5225216 +0.4303934 0.0968001 0.5225216 +0.4751555 0.0968001 0.5225216 +0.5225216 0.0968001 0.5225216 +0.5725335 0.0968001 0.5225216 +0.6252316 0.0968001 0.5225216 +0.6806558 0.0968001 0.5225216 +0.7388448 0.0968001 0.5225216 +0.7998369 0.0968001 0.5225216 +0.8636691 0.0968001 0.5225216 +0.9303782 0.0968001 0.5225216 +1 0.0968001 0.5225216 +0 0.1160161 0.5225216 +0.002418731 0.1160161 0.5225216 +0.005155668 0.1160161 0.5225216 +0.009080105 0.1160161 0.5225216 +0.01434988 0.1160161 0.5225216 +0.02107202 0.1160161 0.5225216 +0.02934285 0.1160161 0.5225216 +0.03925039 0.1160161 0.5225216 +0.05087609 0.1160161 0.5225216 +0.06429595 0.1160161 0.5225216 +0.07958143 0.1160161 0.5225216 +0.0968001 0.1160161 0.5225216 +0.1160161 0.1160161 0.5225216 +0.1372908 0.1160161 0.5225216 +0.1606827 0.1160161 0.5225216 +0.1862481 0.1160161 0.5225216 +0.2140411 0.1160161 0.5225216 +0.2441142 0.1160161 0.5225216 +0.2765176 0.1160161 0.5225216 +0.3113005 0.1160161 0.5225216 +0.3485102 0.1160161 0.5225216 +0.388193 0.1160161 0.5225216 +0.4303934 0.1160161 0.5225216 +0.4751555 0.1160161 0.5225216 +0.5225216 0.1160161 0.5225216 +0.5725335 0.1160161 0.5225216 +0.6252316 0.1160161 0.5225216 +0.6806558 0.1160161 0.5225216 +0.7388448 0.1160161 0.5225216 +0.7998369 0.1160161 0.5225216 +0.8636691 0.1160161 0.5225216 +0.9303782 0.1160161 0.5225216 +1 0.1160161 0.5225216 +0 0.1372908 0.5225216 +0.002418731 0.1372908 0.5225216 +0.005155668 0.1372908 0.5225216 +0.009080105 0.1372908 0.5225216 +0.01434988 0.1372908 0.5225216 +0.02107202 0.1372908 0.5225216 +0.02934285 0.1372908 0.5225216 +0.03925039 0.1372908 0.5225216 +0.05087609 0.1372908 0.5225216 +0.06429595 0.1372908 0.5225216 +0.07958143 0.1372908 0.5225216 +0.0968001 0.1372908 0.5225216 +0.1160161 0.1372908 0.5225216 +0.1372908 0.1372908 0.5225216 +0.1606827 0.1372908 0.5225216 +0.1862481 0.1372908 0.5225216 +0.2140411 0.1372908 0.5225216 +0.2441142 0.1372908 0.5225216 +0.2765176 0.1372908 0.5225216 +0.3113005 0.1372908 0.5225216 +0.3485102 0.1372908 0.5225216 +0.388193 0.1372908 0.5225216 +0.4303934 0.1372908 0.5225216 +0.4751555 0.1372908 0.5225216 +0.5225216 0.1372908 0.5225216 +0.5725335 0.1372908 0.5225216 +0.6252316 0.1372908 0.5225216 +0.6806558 0.1372908 0.5225216 +0.7388448 0.1372908 0.5225216 +0.7998369 0.1372908 0.5225216 +0.8636691 0.1372908 0.5225216 +0.9303782 0.1372908 0.5225216 +1 0.1372908 0.5225216 +0 0.1606827 0.5225216 +0.002418731 0.1606827 0.5225216 +0.005155668 0.1606827 0.5225216 +0.009080105 0.1606827 0.5225216 +0.01434988 0.1606827 0.5225216 +0.02107202 0.1606827 0.5225216 +0.02934285 0.1606827 0.5225216 +0.03925039 0.1606827 0.5225216 +0.05087609 0.1606827 0.5225216 +0.06429595 0.1606827 0.5225216 +0.07958143 0.1606827 0.5225216 +0.0968001 0.1606827 0.5225216 +0.1160161 0.1606827 0.5225216 +0.1372908 0.1606827 0.5225216 +0.1606827 0.1606827 0.5225216 +0.1862481 0.1606827 0.5225216 +0.2140411 0.1606827 0.5225216 +0.2441142 0.1606827 0.5225216 +0.2765176 0.1606827 0.5225216 +0.3113005 0.1606827 0.5225216 +0.3485102 0.1606827 0.5225216 +0.388193 0.1606827 0.5225216 +0.4303934 0.1606827 0.5225216 +0.4751555 0.1606827 0.5225216 +0.5225216 0.1606827 0.5225216 +0.5725335 0.1606827 0.5225216 +0.6252316 0.1606827 0.5225216 +0.6806558 0.1606827 0.5225216 +0.7388448 0.1606827 0.5225216 +0.7998369 0.1606827 0.5225216 +0.8636691 0.1606827 0.5225216 +0.9303782 0.1606827 0.5225216 +1 0.1606827 0.5225216 +0 0.1862481 0.5225216 +0.002418731 0.1862481 0.5225216 +0.005155668 0.1862481 0.5225216 +0.009080105 0.1862481 0.5225216 +0.01434988 0.1862481 0.5225216 +0.02107202 0.1862481 0.5225216 +0.02934285 0.1862481 0.5225216 +0.03925039 0.1862481 0.5225216 +0.05087609 0.1862481 0.5225216 +0.06429595 0.1862481 0.5225216 +0.07958143 0.1862481 0.5225216 +0.0968001 0.1862481 0.5225216 +0.1160161 0.1862481 0.5225216 +0.1372908 0.1862481 0.5225216 +0.1606827 0.1862481 0.5225216 +0.1862481 0.1862481 0.5225216 +0.2140411 0.1862481 0.5225216 +0.2441142 0.1862481 0.5225216 +0.2765176 0.1862481 0.5225216 +0.3113005 0.1862481 0.5225216 +0.3485102 0.1862481 0.5225216 +0.388193 0.1862481 0.5225216 +0.4303934 0.1862481 0.5225216 +0.4751555 0.1862481 0.5225216 +0.5225216 0.1862481 0.5225216 +0.5725335 0.1862481 0.5225216 +0.6252316 0.1862481 0.5225216 +0.6806558 0.1862481 0.5225216 +0.7388448 0.1862481 0.5225216 +0.7998369 0.1862481 0.5225216 +0.8636691 0.1862481 0.5225216 +0.9303782 0.1862481 0.5225216 +1 0.1862481 0.5225216 +0 0.2140411 0.5225216 +0.002418731 0.2140411 0.5225216 +0.005155668 0.2140411 0.5225216 +0.009080105 0.2140411 0.5225216 +0.01434988 0.2140411 0.5225216 +0.02107202 0.2140411 0.5225216 +0.02934285 0.2140411 0.5225216 +0.03925039 0.2140411 0.5225216 +0.05087609 0.2140411 0.5225216 +0.06429595 0.2140411 0.5225216 +0.07958143 0.2140411 0.5225216 +0.0968001 0.2140411 0.5225216 +0.1160161 0.2140411 0.5225216 +0.1372908 0.2140411 0.5225216 +0.1606827 0.2140411 0.5225216 +0.1862481 0.2140411 0.5225216 +0.2140411 0.2140411 0.5225216 +0.2441142 0.2140411 0.5225216 +0.2765176 0.2140411 0.5225216 +0.3113005 0.2140411 0.5225216 +0.3485102 0.2140411 0.5225216 +0.388193 0.2140411 0.5225216 +0.4303934 0.2140411 0.5225216 +0.4751555 0.2140411 0.5225216 +0.5225216 0.2140411 0.5225216 +0.5725335 0.2140411 0.5225216 +0.6252316 0.2140411 0.5225216 +0.6806558 0.2140411 0.5225216 +0.7388448 0.2140411 0.5225216 +0.7998369 0.2140411 0.5225216 +0.8636691 0.2140411 0.5225216 +0.9303782 0.2140411 0.5225216 +1 0.2140411 0.5225216 +0 0.2441142 0.5225216 +0.002418731 0.2441142 0.5225216 +0.005155668 0.2441142 0.5225216 +0.009080105 0.2441142 0.5225216 +0.01434988 0.2441142 0.5225216 +0.02107202 0.2441142 0.5225216 +0.02934285 0.2441142 0.5225216 +0.03925039 0.2441142 0.5225216 +0.05087609 0.2441142 0.5225216 +0.06429595 0.2441142 0.5225216 +0.07958143 0.2441142 0.5225216 +0.0968001 0.2441142 0.5225216 +0.1160161 0.2441142 0.5225216 +0.1372908 0.2441142 0.5225216 +0.1606827 0.2441142 0.5225216 +0.1862481 0.2441142 0.5225216 +0.2140411 0.2441142 0.5225216 +0.2441142 0.2441142 0.5225216 +0.2765176 0.2441142 0.5225216 +0.3113005 0.2441142 0.5225216 +0.3485102 0.2441142 0.5225216 +0.388193 0.2441142 0.5225216 +0.4303934 0.2441142 0.5225216 +0.4751555 0.2441142 0.5225216 +0.5225216 0.2441142 0.5225216 +0.5725335 0.2441142 0.5225216 +0.6252316 0.2441142 0.5225216 +0.6806558 0.2441142 0.5225216 +0.7388448 0.2441142 0.5225216 +0.7998369 0.2441142 0.5225216 +0.8636691 0.2441142 0.5225216 +0.9303782 0.2441142 0.5225216 +1 0.2441142 0.5225216 +0 0.2765176 0.5225216 +0.002418731 0.2765176 0.5225216 +0.005155668 0.2765176 0.5225216 +0.009080105 0.2765176 0.5225216 +0.01434988 0.2765176 0.5225216 +0.02107202 0.2765176 0.5225216 +0.02934285 0.2765176 0.5225216 +0.03925039 0.2765176 0.5225216 +0.05087609 0.2765176 0.5225216 +0.06429595 0.2765176 0.5225216 +0.07958143 0.2765176 0.5225216 +0.0968001 0.2765176 0.5225216 +0.1160161 0.2765176 0.5225216 +0.1372908 0.2765176 0.5225216 +0.1606827 0.2765176 0.5225216 +0.1862481 0.2765176 0.5225216 +0.2140411 0.2765176 0.5225216 +0.2441142 0.2765176 0.5225216 +0.2765176 0.2765176 0.5225216 +0.3113005 0.2765176 0.5225216 +0.3485102 0.2765176 0.5225216 +0.388193 0.2765176 0.5225216 +0.4303934 0.2765176 0.5225216 +0.4751555 0.2765176 0.5225216 +0.5225216 0.2765176 0.5225216 +0.5725335 0.2765176 0.5225216 +0.6252316 0.2765176 0.5225216 +0.6806558 0.2765176 0.5225216 +0.7388448 0.2765176 0.5225216 +0.7998369 0.2765176 0.5225216 +0.8636691 0.2765176 0.5225216 +0.9303782 0.2765176 0.5225216 +1 0.2765176 0.5225216 +0 0.3113005 0.5225216 +0.002418731 0.3113005 0.5225216 +0.005155668 0.3113005 0.5225216 +0.009080105 0.3113005 0.5225216 +0.01434988 0.3113005 0.5225216 +0.02107202 0.3113005 0.5225216 +0.02934285 0.3113005 0.5225216 +0.03925039 0.3113005 0.5225216 +0.05087609 0.3113005 0.5225216 +0.06429595 0.3113005 0.5225216 +0.07958143 0.3113005 0.5225216 +0.0968001 0.3113005 0.5225216 +0.1160161 0.3113005 0.5225216 +0.1372908 0.3113005 0.5225216 +0.1606827 0.3113005 0.5225216 +0.1862481 0.3113005 0.5225216 +0.2140411 0.3113005 0.5225216 +0.2441142 0.3113005 0.5225216 +0.2765176 0.3113005 0.5225216 +0.3113005 0.3113005 0.5225216 +0.3485102 0.3113005 0.5225216 +0.388193 0.3113005 0.5225216 +0.4303934 0.3113005 0.5225216 +0.4751555 0.3113005 0.5225216 +0.5225216 0.3113005 0.5225216 +0.5725335 0.3113005 0.5225216 +0.6252316 0.3113005 0.5225216 +0.6806558 0.3113005 0.5225216 +0.7388448 0.3113005 0.5225216 +0.7998369 0.3113005 0.5225216 +0.8636691 0.3113005 0.5225216 +0.9303782 0.3113005 0.5225216 +1 0.3113005 0.5225216 +0 0.3485102 0.5225216 +0.002418731 0.3485102 0.5225216 +0.005155668 0.3485102 0.5225216 +0.009080105 0.3485102 0.5225216 +0.01434988 0.3485102 0.5225216 +0.02107202 0.3485102 0.5225216 +0.02934285 0.3485102 0.5225216 +0.03925039 0.3485102 0.5225216 +0.05087609 0.3485102 0.5225216 +0.06429595 0.3485102 0.5225216 +0.07958143 0.3485102 0.5225216 +0.0968001 0.3485102 0.5225216 +0.1160161 0.3485102 0.5225216 +0.1372908 0.3485102 0.5225216 +0.1606827 0.3485102 0.5225216 +0.1862481 0.3485102 0.5225216 +0.2140411 0.3485102 0.5225216 +0.2441142 0.3485102 0.5225216 +0.2765176 0.3485102 0.5225216 +0.3113005 0.3485102 0.5225216 +0.3485102 0.3485102 0.5225216 +0.388193 0.3485102 0.5225216 +0.4303934 0.3485102 0.5225216 +0.4751555 0.3485102 0.5225216 +0.5225216 0.3485102 0.5225216 +0.5725335 0.3485102 0.5225216 +0.6252316 0.3485102 0.5225216 +0.6806558 0.3485102 0.5225216 +0.7388448 0.3485102 0.5225216 +0.7998369 0.3485102 0.5225216 +0.8636691 0.3485102 0.5225216 +0.9303782 0.3485102 0.5225216 +1 0.3485102 0.5225216 +0 0.388193 0.5225216 +0.002418731 0.388193 0.5225216 +0.005155668 0.388193 0.5225216 +0.009080105 0.388193 0.5225216 +0.01434988 0.388193 0.5225216 +0.02107202 0.388193 0.5225216 +0.02934285 0.388193 0.5225216 +0.03925039 0.388193 0.5225216 +0.05087609 0.388193 0.5225216 +0.06429595 0.388193 0.5225216 +0.07958143 0.388193 0.5225216 +0.0968001 0.388193 0.5225216 +0.1160161 0.388193 0.5225216 +0.1372908 0.388193 0.5225216 +0.1606827 0.388193 0.5225216 +0.1862481 0.388193 0.5225216 +0.2140411 0.388193 0.5225216 +0.2441142 0.388193 0.5225216 +0.2765176 0.388193 0.5225216 +0.3113005 0.388193 0.5225216 +0.3485102 0.388193 0.5225216 +0.388193 0.388193 0.5225216 +0.4303934 0.388193 0.5225216 +0.4751555 0.388193 0.5225216 +0.5225216 0.388193 0.5225216 +0.5725335 0.388193 0.5225216 +0.6252316 0.388193 0.5225216 +0.6806558 0.388193 0.5225216 +0.7388448 0.388193 0.5225216 +0.7998369 0.388193 0.5225216 +0.8636691 0.388193 0.5225216 +0.9303782 0.388193 0.5225216 +1 0.388193 0.5225216 +0 0.4303934 0.5225216 +0.002418731 0.4303934 0.5225216 +0.005155668 0.4303934 0.5225216 +0.009080105 0.4303934 0.5225216 +0.01434988 0.4303934 0.5225216 +0.02107202 0.4303934 0.5225216 +0.02934285 0.4303934 0.5225216 +0.03925039 0.4303934 0.5225216 +0.05087609 0.4303934 0.5225216 +0.06429595 0.4303934 0.5225216 +0.07958143 0.4303934 0.5225216 +0.0968001 0.4303934 0.5225216 +0.1160161 0.4303934 0.5225216 +0.1372908 0.4303934 0.5225216 +0.1606827 0.4303934 0.5225216 +0.1862481 0.4303934 0.5225216 +0.2140411 0.4303934 0.5225216 +0.2441142 0.4303934 0.5225216 +0.2765176 0.4303934 0.5225216 +0.3113005 0.4303934 0.5225216 +0.3485102 0.4303934 0.5225216 +0.388193 0.4303934 0.5225216 +0.4303934 0.4303934 0.5225216 +0.4751555 0.4303934 0.5225216 +0.5225216 0.4303934 0.5225216 +0.5725335 0.4303934 0.5225216 +0.6252316 0.4303934 0.5225216 +0.6806558 0.4303934 0.5225216 +0.7388448 0.4303934 0.5225216 +0.7998369 0.4303934 0.5225216 +0.8636691 0.4303934 0.5225216 +0.9303782 0.4303934 0.5225216 +1 0.4303934 0.5225216 +0 0.4751555 0.5225216 +0.002418731 0.4751555 0.5225216 +0.005155668 0.4751555 0.5225216 +0.009080105 0.4751555 0.5225216 +0.01434988 0.4751555 0.5225216 +0.02107202 0.4751555 0.5225216 +0.02934285 0.4751555 0.5225216 +0.03925039 0.4751555 0.5225216 +0.05087609 0.4751555 0.5225216 +0.06429595 0.4751555 0.5225216 +0.07958143 0.4751555 0.5225216 +0.0968001 0.4751555 0.5225216 +0.1160161 0.4751555 0.5225216 +0.1372908 0.4751555 0.5225216 +0.1606827 0.4751555 0.5225216 +0.1862481 0.4751555 0.5225216 +0.2140411 0.4751555 0.5225216 +0.2441142 0.4751555 0.5225216 +0.2765176 0.4751555 0.5225216 +0.3113005 0.4751555 0.5225216 +0.3485102 0.4751555 0.5225216 +0.388193 0.4751555 0.5225216 +0.4303934 0.4751555 0.5225216 +0.4751555 0.4751555 0.5225216 +0.5225216 0.4751555 0.5225216 +0.5725335 0.4751555 0.5225216 +0.6252316 0.4751555 0.5225216 +0.6806558 0.4751555 0.5225216 +0.7388448 0.4751555 0.5225216 +0.7998369 0.4751555 0.5225216 +0.8636691 0.4751555 0.5225216 +0.9303782 0.4751555 0.5225216 +1 0.4751555 0.5225216 +0 0.5225216 0.5225216 +0.002418731 0.5225216 0.5225216 +0.005155668 0.5225216 0.5225216 +0.009080105 0.5225216 0.5225216 +0.01434988 0.5225216 0.5225216 +0.02107202 0.5225216 0.5225216 +0.02934285 0.5225216 0.5225216 +0.03925039 0.5225216 0.5225216 +0.05087609 0.5225216 0.5225216 +0.06429595 0.5225216 0.5225216 +0.07958143 0.5225216 0.5225216 +0.0968001 0.5225216 0.5225216 +0.1160161 0.5225216 0.5225216 +0.1372908 0.5225216 0.5225216 +0.1606827 0.5225216 0.5225216 +0.1862481 0.5225216 0.5225216 +0.2140411 0.5225216 0.5225216 +0.2441142 0.5225216 0.5225216 +0.2765176 0.5225216 0.5225216 +0.3113005 0.5225216 0.5225216 +0.3485102 0.5225216 0.5225216 +0.388193 0.5225216 0.5225216 +0.4303934 0.5225216 0.5225216 +0.4751555 0.5225216 0.5225216 +0.5225216 0.5225216 0.5225216 +0.5725335 0.5225216 0.5225216 +0.6252316 0.5225216 0.5225216 +0.6806558 0.5225216 0.5225216 +0.7388448 0.5225216 0.5225216 +0.7998369 0.5225216 0.5225216 +0.8636691 0.5225216 0.5225216 +0.9303782 0.5225216 0.5225216 +1 0.5225216 0.5225216 +0 0.5725335 0.5225216 +0.002418731 0.5725335 0.5225216 +0.005155668 0.5725335 0.5225216 +0.009080105 0.5725335 0.5225216 +0.01434988 0.5725335 0.5225216 +0.02107202 0.5725335 0.5225216 +0.02934285 0.5725335 0.5225216 +0.03925039 0.5725335 0.5225216 +0.05087609 0.5725335 0.5225216 +0.06429595 0.5725335 0.5225216 +0.07958143 0.5725335 0.5225216 +0.0968001 0.5725335 0.5225216 +0.1160161 0.5725335 0.5225216 +0.1372908 0.5725335 0.5225216 +0.1606827 0.5725335 0.5225216 +0.1862481 0.5725335 0.5225216 +0.2140411 0.5725335 0.5225216 +0.2441142 0.5725335 0.5225216 +0.2765176 0.5725335 0.5225216 +0.3113005 0.5725335 0.5225216 +0.3485102 0.5725335 0.5225216 +0.388193 0.5725335 0.5225216 +0.4303934 0.5725335 0.5225216 +0.4751555 0.5725335 0.5225216 +0.5225216 0.5725335 0.5225216 +0.5725335 0.5725335 0.5225216 +0.6252316 0.5725335 0.5225216 +0.6806558 0.5725335 0.5225216 +0.7388448 0.5725335 0.5225216 +0.7998369 0.5725335 0.5225216 +0.8636691 0.5725335 0.5225216 +0.9303782 0.5725335 0.5225216 +1 0.5725335 0.5225216 +0 0.6252316 0.5225216 +0.002418731 0.6252316 0.5225216 +0.005155668 0.6252316 0.5225216 +0.009080105 0.6252316 0.5225216 +0.01434988 0.6252316 0.5225216 +0.02107202 0.6252316 0.5225216 +0.02934285 0.6252316 0.5225216 +0.03925039 0.6252316 0.5225216 +0.05087609 0.6252316 0.5225216 +0.06429595 0.6252316 0.5225216 +0.07958143 0.6252316 0.5225216 +0.0968001 0.6252316 0.5225216 +0.1160161 0.6252316 0.5225216 +0.1372908 0.6252316 0.5225216 +0.1606827 0.6252316 0.5225216 +0.1862481 0.6252316 0.5225216 +0.2140411 0.6252316 0.5225216 +0.2441142 0.6252316 0.5225216 +0.2765176 0.6252316 0.5225216 +0.3113005 0.6252316 0.5225216 +0.3485102 0.6252316 0.5225216 +0.388193 0.6252316 0.5225216 +0.4303934 0.6252316 0.5225216 +0.4751555 0.6252316 0.5225216 +0.5225216 0.6252316 0.5225216 +0.5725335 0.6252316 0.5225216 +0.6252316 0.6252316 0.5225216 +0.6806558 0.6252316 0.5225216 +0.7388448 0.6252316 0.5225216 +0.7998369 0.6252316 0.5225216 +0.8636691 0.6252316 0.5225216 +0.9303782 0.6252316 0.5225216 +1 0.6252316 0.5225216 +0 0.6806558 0.5225216 +0.002418731 0.6806558 0.5225216 +0.005155668 0.6806558 0.5225216 +0.009080105 0.6806558 0.5225216 +0.01434988 0.6806558 0.5225216 +0.02107202 0.6806558 0.5225216 +0.02934285 0.6806558 0.5225216 +0.03925039 0.6806558 0.5225216 +0.05087609 0.6806558 0.5225216 +0.06429595 0.6806558 0.5225216 +0.07958143 0.6806558 0.5225216 +0.0968001 0.6806558 0.5225216 +0.1160161 0.6806558 0.5225216 +0.1372908 0.6806558 0.5225216 +0.1606827 0.6806558 0.5225216 +0.1862481 0.6806558 0.5225216 +0.2140411 0.6806558 0.5225216 +0.2441142 0.6806558 0.5225216 +0.2765176 0.6806558 0.5225216 +0.3113005 0.6806558 0.5225216 +0.3485102 0.6806558 0.5225216 +0.388193 0.6806558 0.5225216 +0.4303934 0.6806558 0.5225216 +0.4751555 0.6806558 0.5225216 +0.5225216 0.6806558 0.5225216 +0.5725335 0.6806558 0.5225216 +0.6252316 0.6806558 0.5225216 +0.6806558 0.6806558 0.5225216 +0.7388448 0.6806558 0.5225216 +0.7998369 0.6806558 0.5225216 +0.8636691 0.6806558 0.5225216 +0.9303782 0.6806558 0.5225216 +1 0.6806558 0.5225216 +0 0.7388448 0.5225216 +0.002418731 0.7388448 0.5225216 +0.005155668 0.7388448 0.5225216 +0.009080105 0.7388448 0.5225216 +0.01434988 0.7388448 0.5225216 +0.02107202 0.7388448 0.5225216 +0.02934285 0.7388448 0.5225216 +0.03925039 0.7388448 0.5225216 +0.05087609 0.7388448 0.5225216 +0.06429595 0.7388448 0.5225216 +0.07958143 0.7388448 0.5225216 +0.0968001 0.7388448 0.5225216 +0.1160161 0.7388448 0.5225216 +0.1372908 0.7388448 0.5225216 +0.1606827 0.7388448 0.5225216 +0.1862481 0.7388448 0.5225216 +0.2140411 0.7388448 0.5225216 +0.2441142 0.7388448 0.5225216 +0.2765176 0.7388448 0.5225216 +0.3113005 0.7388448 0.5225216 +0.3485102 0.7388448 0.5225216 +0.388193 0.7388448 0.5225216 +0.4303934 0.7388448 0.5225216 +0.4751555 0.7388448 0.5225216 +0.5225216 0.7388448 0.5225216 +0.5725335 0.7388448 0.5225216 +0.6252316 0.7388448 0.5225216 +0.6806558 0.7388448 0.5225216 +0.7388448 0.7388448 0.5225216 +0.7998369 0.7388448 0.5225216 +0.8636691 0.7388448 0.5225216 +0.9303782 0.7388448 0.5225216 +1 0.7388448 0.5225216 +0 0.7998369 0.5225216 +0.002418731 0.7998369 0.5225216 +0.005155668 0.7998369 0.5225216 +0.009080105 0.7998369 0.5225216 +0.01434988 0.7998369 0.5225216 +0.02107202 0.7998369 0.5225216 +0.02934285 0.7998369 0.5225216 +0.03925039 0.7998369 0.5225216 +0.05087609 0.7998369 0.5225216 +0.06429595 0.7998369 0.5225216 +0.07958143 0.7998369 0.5225216 +0.0968001 0.7998369 0.5225216 +0.1160161 0.7998369 0.5225216 +0.1372908 0.7998369 0.5225216 +0.1606827 0.7998369 0.5225216 +0.1862481 0.7998369 0.5225216 +0.2140411 0.7998369 0.5225216 +0.2441142 0.7998369 0.5225216 +0.2765176 0.7998369 0.5225216 +0.3113005 0.7998369 0.5225216 +0.3485102 0.7998369 0.5225216 +0.388193 0.7998369 0.5225216 +0.4303934 0.7998369 0.5225216 +0.4751555 0.7998369 0.5225216 +0.5225216 0.7998369 0.5225216 +0.5725335 0.7998369 0.5225216 +0.6252316 0.7998369 0.5225216 +0.6806558 0.7998369 0.5225216 +0.7388448 0.7998369 0.5225216 +0.7998369 0.7998369 0.5225216 +0.8636691 0.7998369 0.5225216 +0.9303782 0.7998369 0.5225216 +1 0.7998369 0.5225216 +0 0.8636691 0.5225216 +0.002418731 0.8636691 0.5225216 +0.005155668 0.8636691 0.5225216 +0.009080105 0.8636691 0.5225216 +0.01434988 0.8636691 0.5225216 +0.02107202 0.8636691 0.5225216 +0.02934285 0.8636691 0.5225216 +0.03925039 0.8636691 0.5225216 +0.05087609 0.8636691 0.5225216 +0.06429595 0.8636691 0.5225216 +0.07958143 0.8636691 0.5225216 +0.0968001 0.8636691 0.5225216 +0.1160161 0.8636691 0.5225216 +0.1372908 0.8636691 0.5225216 +0.1606827 0.8636691 0.5225216 +0.1862481 0.8636691 0.5225216 +0.2140411 0.8636691 0.5225216 +0.2441142 0.8636691 0.5225216 +0.2765176 0.8636691 0.5225216 +0.3113005 0.8636691 0.5225216 +0.3485102 0.8636691 0.5225216 +0.388193 0.8636691 0.5225216 +0.4303934 0.8636691 0.5225216 +0.4751555 0.8636691 0.5225216 +0.5225216 0.8636691 0.5225216 +0.5725335 0.8636691 0.5225216 +0.6252316 0.8636691 0.5225216 +0.6806558 0.8636691 0.5225216 +0.7388448 0.8636691 0.5225216 +0.7998369 0.8636691 0.5225216 +0.8636691 0.8636691 0.5225216 +0.9303782 0.8636691 0.5225216 +1 0.8636691 0.5225216 +0 0.9303782 0.5225216 +0.002418731 0.9303782 0.5225216 +0.005155668 0.9303782 0.5225216 +0.009080105 0.9303782 0.5225216 +0.01434988 0.9303782 0.5225216 +0.02107202 0.9303782 0.5225216 +0.02934285 0.9303782 0.5225216 +0.03925039 0.9303782 0.5225216 +0.05087609 0.9303782 0.5225216 +0.06429595 0.9303782 0.5225216 +0.07958143 0.9303782 0.5225216 +0.0968001 0.9303782 0.5225216 +0.1160161 0.9303782 0.5225216 +0.1372908 0.9303782 0.5225216 +0.1606827 0.9303782 0.5225216 +0.1862481 0.9303782 0.5225216 +0.2140411 0.9303782 0.5225216 +0.2441142 0.9303782 0.5225216 +0.2765176 0.9303782 0.5225216 +0.3113005 0.9303782 0.5225216 +0.3485102 0.9303782 0.5225216 +0.388193 0.9303782 0.5225216 +0.4303934 0.9303782 0.5225216 +0.4751555 0.9303782 0.5225216 +0.5225216 0.9303782 0.5225216 +0.5725335 0.9303782 0.5225216 +0.6252316 0.9303782 0.5225216 +0.6806558 0.9303782 0.5225216 +0.7388448 0.9303782 0.5225216 +0.7998369 0.9303782 0.5225216 +0.8636691 0.9303782 0.5225216 +0.9303782 0.9303782 0.5225216 +1 0.9303782 0.5225216 +0 1 0.5225216 +0.002418731 1 0.5225216 +0.005155668 1 0.5225216 +0.009080105 1 0.5225216 +0.01434988 1 0.5225216 +0.02107202 1 0.5225216 +0.02934285 1 0.5225216 +0.03925039 1 0.5225216 +0.05087609 1 0.5225216 +0.06429595 1 0.5225216 +0.07958143 1 0.5225216 +0.0968001 1 0.5225216 +0.1160161 1 0.5225216 +0.1372908 1 0.5225216 +0.1606827 1 0.5225216 +0.1862481 1 0.5225216 +0.2140411 1 0.5225216 +0.2441142 1 0.5225216 +0.2765176 1 0.5225216 +0.3113005 1 0.5225216 +0.3485102 1 0.5225216 +0.388193 1 0.5225216 +0.4303934 1 0.5225216 +0.4751555 1 0.5225216 +0.5225216 1 0.5225216 +0.5725335 1 0.5225216 +0.6252316 1 0.5225216 +0.6806558 1 0.5225216 +0.7388448 1 0.5225216 +0.7998369 1 0.5225216 +0.8636691 1 0.5225216 +0.9303782 1 0.5225216 +1 1 0.5225216 +0 0 0.5725335 +0.002418731 0 0.5725335 +0.005155668 0 0.5725335 +0.009080105 0 0.5725335 +0.01434988 0 0.5725335 +0.02107202 0 0.5725335 +0.02934285 0 0.5725335 +0.03925039 0 0.5725335 +0.05087609 0 0.5725335 +0.06429595 0 0.5725335 +0.07958143 0 0.5725335 +0.0968001 0 0.5725335 +0.1160161 0 0.5725335 +0.1372908 0 0.5725335 +0.1606827 0 0.5725335 +0.1862481 0 0.5725335 +0.2140411 0 0.5725335 +0.2441142 0 0.5725335 +0.2765176 0 0.5725335 +0.3113005 0 0.5725335 +0.3485102 0 0.5725335 +0.388193 0 0.5725335 +0.4303934 0 0.5725335 +0.4751555 0 0.5725335 +0.5225216 0 0.5725335 +0.5725335 0 0.5725335 +0.6252316 0 0.5725335 +0.6806558 0 0.5725335 +0.7388448 0 0.5725335 +0.7998369 0 0.5725335 +0.8636691 0 0.5725335 +0.9303782 0 0.5725335 +1 0 0.5725335 +0 0.002418731 0.5725335 +0.002418731 0.002418731 0.5725335 +0.005155668 0.002418731 0.5725335 +0.009080105 0.002418731 0.5725335 +0.01434988 0.002418731 0.5725335 +0.02107202 0.002418731 0.5725335 +0.02934285 0.002418731 0.5725335 +0.03925039 0.002418731 0.5725335 +0.05087609 0.002418731 0.5725335 +0.06429595 0.002418731 0.5725335 +0.07958143 0.002418731 0.5725335 +0.0968001 0.002418731 0.5725335 +0.1160161 0.002418731 0.5725335 +0.1372908 0.002418731 0.5725335 +0.1606827 0.002418731 0.5725335 +0.1862481 0.002418731 0.5725335 +0.2140411 0.002418731 0.5725335 +0.2441142 0.002418731 0.5725335 +0.2765176 0.002418731 0.5725335 +0.3113005 0.002418731 0.5725335 +0.3485102 0.002418731 0.5725335 +0.388193 0.002418731 0.5725335 +0.4303934 0.002418731 0.5725335 +0.4751555 0.002418731 0.5725335 +0.5225216 0.002418731 0.5725335 +0.5725335 0.002418731 0.5725335 +0.6252316 0.002418731 0.5725335 +0.6806558 0.002418731 0.5725335 +0.7388448 0.002418731 0.5725335 +0.7998369 0.002418731 0.5725335 +0.8636691 0.002418731 0.5725335 +0.9303782 0.002418731 0.5725335 +1 0.002418731 0.5725335 +0 0.005155668 0.5725335 +0.002418731 0.005155668 0.5725335 +0.005155668 0.005155668 0.5725335 +0.009080105 0.005155668 0.5725335 +0.01434988 0.005155668 0.5725335 +0.02107202 0.005155668 0.5725335 +0.02934285 0.005155668 0.5725335 +0.03925039 0.005155668 0.5725335 +0.05087609 0.005155668 0.5725335 +0.06429595 0.005155668 0.5725335 +0.07958143 0.005155668 0.5725335 +0.0968001 0.005155668 0.5725335 +0.1160161 0.005155668 0.5725335 +0.1372908 0.005155668 0.5725335 +0.1606827 0.005155668 0.5725335 +0.1862481 0.005155668 0.5725335 +0.2140411 0.005155668 0.5725335 +0.2441142 0.005155668 0.5725335 +0.2765176 0.005155668 0.5725335 +0.3113005 0.005155668 0.5725335 +0.3485102 0.005155668 0.5725335 +0.388193 0.005155668 0.5725335 +0.4303934 0.005155668 0.5725335 +0.4751555 0.005155668 0.5725335 +0.5225216 0.005155668 0.5725335 +0.5725335 0.005155668 0.5725335 +0.6252316 0.005155668 0.5725335 +0.6806558 0.005155668 0.5725335 +0.7388448 0.005155668 0.5725335 +0.7998369 0.005155668 0.5725335 +0.8636691 0.005155668 0.5725335 +0.9303782 0.005155668 0.5725335 +1 0.005155668 0.5725335 +0 0.009080105 0.5725335 +0.002418731 0.009080105 0.5725335 +0.005155668 0.009080105 0.5725335 +0.009080105 0.009080105 0.5725335 +0.01434988 0.009080105 0.5725335 +0.02107202 0.009080105 0.5725335 +0.02934285 0.009080105 0.5725335 +0.03925039 0.009080105 0.5725335 +0.05087609 0.009080105 0.5725335 +0.06429595 0.009080105 0.5725335 +0.07958143 0.009080105 0.5725335 +0.0968001 0.009080105 0.5725335 +0.1160161 0.009080105 0.5725335 +0.1372908 0.009080105 0.5725335 +0.1606827 0.009080105 0.5725335 +0.1862481 0.009080105 0.5725335 +0.2140411 0.009080105 0.5725335 +0.2441142 0.009080105 0.5725335 +0.2765176 0.009080105 0.5725335 +0.3113005 0.009080105 0.5725335 +0.3485102 0.009080105 0.5725335 +0.388193 0.009080105 0.5725335 +0.4303934 0.009080105 0.5725335 +0.4751555 0.009080105 0.5725335 +0.5225216 0.009080105 0.5725335 +0.5725335 0.009080105 0.5725335 +0.6252316 0.009080105 0.5725335 +0.6806558 0.009080105 0.5725335 +0.7388448 0.009080105 0.5725335 +0.7998369 0.009080105 0.5725335 +0.8636691 0.009080105 0.5725335 +0.9303782 0.009080105 0.5725335 +1 0.009080105 0.5725335 +0 0.01434988 0.5725335 +0.002418731 0.01434988 0.5725335 +0.005155668 0.01434988 0.5725335 +0.009080105 0.01434988 0.5725335 +0.01434988 0.01434988 0.5725335 +0.02107202 0.01434988 0.5725335 +0.02934285 0.01434988 0.5725335 +0.03925039 0.01434988 0.5725335 +0.05087609 0.01434988 0.5725335 +0.06429595 0.01434988 0.5725335 +0.07958143 0.01434988 0.5725335 +0.0968001 0.01434988 0.5725335 +0.1160161 0.01434988 0.5725335 +0.1372908 0.01434988 0.5725335 +0.1606827 0.01434988 0.5725335 +0.1862481 0.01434988 0.5725335 +0.2140411 0.01434988 0.5725335 +0.2441142 0.01434988 0.5725335 +0.2765176 0.01434988 0.5725335 +0.3113005 0.01434988 0.5725335 +0.3485102 0.01434988 0.5725335 +0.388193 0.01434988 0.5725335 +0.4303934 0.01434988 0.5725335 +0.4751555 0.01434988 0.5725335 +0.5225216 0.01434988 0.5725335 +0.5725335 0.01434988 0.5725335 +0.6252316 0.01434988 0.5725335 +0.6806558 0.01434988 0.5725335 +0.7388448 0.01434988 0.5725335 +0.7998369 0.01434988 0.5725335 +0.8636691 0.01434988 0.5725335 +0.9303782 0.01434988 0.5725335 +1 0.01434988 0.5725335 +0 0.02107202 0.5725335 +0.002418731 0.02107202 0.5725335 +0.005155668 0.02107202 0.5725335 +0.009080105 0.02107202 0.5725335 +0.01434988 0.02107202 0.5725335 +0.02107202 0.02107202 0.5725335 +0.02934285 0.02107202 0.5725335 +0.03925039 0.02107202 0.5725335 +0.05087609 0.02107202 0.5725335 +0.06429595 0.02107202 0.5725335 +0.07958143 0.02107202 0.5725335 +0.0968001 0.02107202 0.5725335 +0.1160161 0.02107202 0.5725335 +0.1372908 0.02107202 0.5725335 +0.1606827 0.02107202 0.5725335 +0.1862481 0.02107202 0.5725335 +0.2140411 0.02107202 0.5725335 +0.2441142 0.02107202 0.5725335 +0.2765176 0.02107202 0.5725335 +0.3113005 0.02107202 0.5725335 +0.3485102 0.02107202 0.5725335 +0.388193 0.02107202 0.5725335 +0.4303934 0.02107202 0.5725335 +0.4751555 0.02107202 0.5725335 +0.5225216 0.02107202 0.5725335 +0.5725335 0.02107202 0.5725335 +0.6252316 0.02107202 0.5725335 +0.6806558 0.02107202 0.5725335 +0.7388448 0.02107202 0.5725335 +0.7998369 0.02107202 0.5725335 +0.8636691 0.02107202 0.5725335 +0.9303782 0.02107202 0.5725335 +1 0.02107202 0.5725335 +0 0.02934285 0.5725335 +0.002418731 0.02934285 0.5725335 +0.005155668 0.02934285 0.5725335 +0.009080105 0.02934285 0.5725335 +0.01434988 0.02934285 0.5725335 +0.02107202 0.02934285 0.5725335 +0.02934285 0.02934285 0.5725335 +0.03925039 0.02934285 0.5725335 +0.05087609 0.02934285 0.5725335 +0.06429595 0.02934285 0.5725335 +0.07958143 0.02934285 0.5725335 +0.0968001 0.02934285 0.5725335 +0.1160161 0.02934285 0.5725335 +0.1372908 0.02934285 0.5725335 +0.1606827 0.02934285 0.5725335 +0.1862481 0.02934285 0.5725335 +0.2140411 0.02934285 0.5725335 +0.2441142 0.02934285 0.5725335 +0.2765176 0.02934285 0.5725335 +0.3113005 0.02934285 0.5725335 +0.3485102 0.02934285 0.5725335 +0.388193 0.02934285 0.5725335 +0.4303934 0.02934285 0.5725335 +0.4751555 0.02934285 0.5725335 +0.5225216 0.02934285 0.5725335 +0.5725335 0.02934285 0.5725335 +0.6252316 0.02934285 0.5725335 +0.6806558 0.02934285 0.5725335 +0.7388448 0.02934285 0.5725335 +0.7998369 0.02934285 0.5725335 +0.8636691 0.02934285 0.5725335 +0.9303782 0.02934285 0.5725335 +1 0.02934285 0.5725335 +0 0.03925039 0.5725335 +0.002418731 0.03925039 0.5725335 +0.005155668 0.03925039 0.5725335 +0.009080105 0.03925039 0.5725335 +0.01434988 0.03925039 0.5725335 +0.02107202 0.03925039 0.5725335 +0.02934285 0.03925039 0.5725335 +0.03925039 0.03925039 0.5725335 +0.05087609 0.03925039 0.5725335 +0.06429595 0.03925039 0.5725335 +0.07958143 0.03925039 0.5725335 +0.0968001 0.03925039 0.5725335 +0.1160161 0.03925039 0.5725335 +0.1372908 0.03925039 0.5725335 +0.1606827 0.03925039 0.5725335 +0.1862481 0.03925039 0.5725335 +0.2140411 0.03925039 0.5725335 +0.2441142 0.03925039 0.5725335 +0.2765176 0.03925039 0.5725335 +0.3113005 0.03925039 0.5725335 +0.3485102 0.03925039 0.5725335 +0.388193 0.03925039 0.5725335 +0.4303934 0.03925039 0.5725335 +0.4751555 0.03925039 0.5725335 +0.5225216 0.03925039 0.5725335 +0.5725335 0.03925039 0.5725335 +0.6252316 0.03925039 0.5725335 +0.6806558 0.03925039 0.5725335 +0.7388448 0.03925039 0.5725335 +0.7998369 0.03925039 0.5725335 +0.8636691 0.03925039 0.5725335 +0.9303782 0.03925039 0.5725335 +1 0.03925039 0.5725335 +0 0.05087609 0.5725335 +0.002418731 0.05087609 0.5725335 +0.005155668 0.05087609 0.5725335 +0.009080105 0.05087609 0.5725335 +0.01434988 0.05087609 0.5725335 +0.02107202 0.05087609 0.5725335 +0.02934285 0.05087609 0.5725335 +0.03925039 0.05087609 0.5725335 +0.05087609 0.05087609 0.5725335 +0.06429595 0.05087609 0.5725335 +0.07958143 0.05087609 0.5725335 +0.0968001 0.05087609 0.5725335 +0.1160161 0.05087609 0.5725335 +0.1372908 0.05087609 0.5725335 +0.1606827 0.05087609 0.5725335 +0.1862481 0.05087609 0.5725335 +0.2140411 0.05087609 0.5725335 +0.2441142 0.05087609 0.5725335 +0.2765176 0.05087609 0.5725335 +0.3113005 0.05087609 0.5725335 +0.3485102 0.05087609 0.5725335 +0.388193 0.05087609 0.5725335 +0.4303934 0.05087609 0.5725335 +0.4751555 0.05087609 0.5725335 +0.5225216 0.05087609 0.5725335 +0.5725335 0.05087609 0.5725335 +0.6252316 0.05087609 0.5725335 +0.6806558 0.05087609 0.5725335 +0.7388448 0.05087609 0.5725335 +0.7998369 0.05087609 0.5725335 +0.8636691 0.05087609 0.5725335 +0.9303782 0.05087609 0.5725335 +1 0.05087609 0.5725335 +0 0.06429595 0.5725335 +0.002418731 0.06429595 0.5725335 +0.005155668 0.06429595 0.5725335 +0.009080105 0.06429595 0.5725335 +0.01434988 0.06429595 0.5725335 +0.02107202 0.06429595 0.5725335 +0.02934285 0.06429595 0.5725335 +0.03925039 0.06429595 0.5725335 +0.05087609 0.06429595 0.5725335 +0.06429595 0.06429595 0.5725335 +0.07958143 0.06429595 0.5725335 +0.0968001 0.06429595 0.5725335 +0.1160161 0.06429595 0.5725335 +0.1372908 0.06429595 0.5725335 +0.1606827 0.06429595 0.5725335 +0.1862481 0.06429595 0.5725335 +0.2140411 0.06429595 0.5725335 +0.2441142 0.06429595 0.5725335 +0.2765176 0.06429595 0.5725335 +0.3113005 0.06429595 0.5725335 +0.3485102 0.06429595 0.5725335 +0.388193 0.06429595 0.5725335 +0.4303934 0.06429595 0.5725335 +0.4751555 0.06429595 0.5725335 +0.5225216 0.06429595 0.5725335 +0.5725335 0.06429595 0.5725335 +0.6252316 0.06429595 0.5725335 +0.6806558 0.06429595 0.5725335 +0.7388448 0.06429595 0.5725335 +0.7998369 0.06429595 0.5725335 +0.8636691 0.06429595 0.5725335 +0.9303782 0.06429595 0.5725335 +1 0.06429595 0.5725335 +0 0.07958143 0.5725335 +0.002418731 0.07958143 0.5725335 +0.005155668 0.07958143 0.5725335 +0.009080105 0.07958143 0.5725335 +0.01434988 0.07958143 0.5725335 +0.02107202 0.07958143 0.5725335 +0.02934285 0.07958143 0.5725335 +0.03925039 0.07958143 0.5725335 +0.05087609 0.07958143 0.5725335 +0.06429595 0.07958143 0.5725335 +0.07958143 0.07958143 0.5725335 +0.0968001 0.07958143 0.5725335 +0.1160161 0.07958143 0.5725335 +0.1372908 0.07958143 0.5725335 +0.1606827 0.07958143 0.5725335 +0.1862481 0.07958143 0.5725335 +0.2140411 0.07958143 0.5725335 +0.2441142 0.07958143 0.5725335 +0.2765176 0.07958143 0.5725335 +0.3113005 0.07958143 0.5725335 +0.3485102 0.07958143 0.5725335 +0.388193 0.07958143 0.5725335 +0.4303934 0.07958143 0.5725335 +0.4751555 0.07958143 0.5725335 +0.5225216 0.07958143 0.5725335 +0.5725335 0.07958143 0.5725335 +0.6252316 0.07958143 0.5725335 +0.6806558 0.07958143 0.5725335 +0.7388448 0.07958143 0.5725335 +0.7998369 0.07958143 0.5725335 +0.8636691 0.07958143 0.5725335 +0.9303782 0.07958143 0.5725335 +1 0.07958143 0.5725335 +0 0.0968001 0.5725335 +0.002418731 0.0968001 0.5725335 +0.005155668 0.0968001 0.5725335 +0.009080105 0.0968001 0.5725335 +0.01434988 0.0968001 0.5725335 +0.02107202 0.0968001 0.5725335 +0.02934285 0.0968001 0.5725335 +0.03925039 0.0968001 0.5725335 +0.05087609 0.0968001 0.5725335 +0.06429595 0.0968001 0.5725335 +0.07958143 0.0968001 0.5725335 +0.0968001 0.0968001 0.5725335 +0.1160161 0.0968001 0.5725335 +0.1372908 0.0968001 0.5725335 +0.1606827 0.0968001 0.5725335 +0.1862481 0.0968001 0.5725335 +0.2140411 0.0968001 0.5725335 +0.2441142 0.0968001 0.5725335 +0.2765176 0.0968001 0.5725335 +0.3113005 0.0968001 0.5725335 +0.3485102 0.0968001 0.5725335 +0.388193 0.0968001 0.5725335 +0.4303934 0.0968001 0.5725335 +0.4751555 0.0968001 0.5725335 +0.5225216 0.0968001 0.5725335 +0.5725335 0.0968001 0.5725335 +0.6252316 0.0968001 0.5725335 +0.6806558 0.0968001 0.5725335 +0.7388448 0.0968001 0.5725335 +0.7998369 0.0968001 0.5725335 +0.8636691 0.0968001 0.5725335 +0.9303782 0.0968001 0.5725335 +1 0.0968001 0.5725335 +0 0.1160161 0.5725335 +0.002418731 0.1160161 0.5725335 +0.005155668 0.1160161 0.5725335 +0.009080105 0.1160161 0.5725335 +0.01434988 0.1160161 0.5725335 +0.02107202 0.1160161 0.5725335 +0.02934285 0.1160161 0.5725335 +0.03925039 0.1160161 0.5725335 +0.05087609 0.1160161 0.5725335 +0.06429595 0.1160161 0.5725335 +0.07958143 0.1160161 0.5725335 +0.0968001 0.1160161 0.5725335 +0.1160161 0.1160161 0.5725335 +0.1372908 0.1160161 0.5725335 +0.1606827 0.1160161 0.5725335 +0.1862481 0.1160161 0.5725335 +0.2140411 0.1160161 0.5725335 +0.2441142 0.1160161 0.5725335 +0.2765176 0.1160161 0.5725335 +0.3113005 0.1160161 0.5725335 +0.3485102 0.1160161 0.5725335 +0.388193 0.1160161 0.5725335 +0.4303934 0.1160161 0.5725335 +0.4751555 0.1160161 0.5725335 +0.5225216 0.1160161 0.5725335 +0.5725335 0.1160161 0.5725335 +0.6252316 0.1160161 0.5725335 +0.6806558 0.1160161 0.5725335 +0.7388448 0.1160161 0.5725335 +0.7998369 0.1160161 0.5725335 +0.8636691 0.1160161 0.5725335 +0.9303782 0.1160161 0.5725335 +1 0.1160161 0.5725335 +0 0.1372908 0.5725335 +0.002418731 0.1372908 0.5725335 +0.005155668 0.1372908 0.5725335 +0.009080105 0.1372908 0.5725335 +0.01434988 0.1372908 0.5725335 +0.02107202 0.1372908 0.5725335 +0.02934285 0.1372908 0.5725335 +0.03925039 0.1372908 0.5725335 +0.05087609 0.1372908 0.5725335 +0.06429595 0.1372908 0.5725335 +0.07958143 0.1372908 0.5725335 +0.0968001 0.1372908 0.5725335 +0.1160161 0.1372908 0.5725335 +0.1372908 0.1372908 0.5725335 +0.1606827 0.1372908 0.5725335 +0.1862481 0.1372908 0.5725335 +0.2140411 0.1372908 0.5725335 +0.2441142 0.1372908 0.5725335 +0.2765176 0.1372908 0.5725335 +0.3113005 0.1372908 0.5725335 +0.3485102 0.1372908 0.5725335 +0.388193 0.1372908 0.5725335 +0.4303934 0.1372908 0.5725335 +0.4751555 0.1372908 0.5725335 +0.5225216 0.1372908 0.5725335 +0.5725335 0.1372908 0.5725335 +0.6252316 0.1372908 0.5725335 +0.6806558 0.1372908 0.5725335 +0.7388448 0.1372908 0.5725335 +0.7998369 0.1372908 0.5725335 +0.8636691 0.1372908 0.5725335 +0.9303782 0.1372908 0.5725335 +1 0.1372908 0.5725335 +0 0.1606827 0.5725335 +0.002418731 0.1606827 0.5725335 +0.005155668 0.1606827 0.5725335 +0.009080105 0.1606827 0.5725335 +0.01434988 0.1606827 0.5725335 +0.02107202 0.1606827 0.5725335 +0.02934285 0.1606827 0.5725335 +0.03925039 0.1606827 0.5725335 +0.05087609 0.1606827 0.5725335 +0.06429595 0.1606827 0.5725335 +0.07958143 0.1606827 0.5725335 +0.0968001 0.1606827 0.5725335 +0.1160161 0.1606827 0.5725335 +0.1372908 0.1606827 0.5725335 +0.1606827 0.1606827 0.5725335 +0.1862481 0.1606827 0.5725335 +0.2140411 0.1606827 0.5725335 +0.2441142 0.1606827 0.5725335 +0.2765176 0.1606827 0.5725335 +0.3113005 0.1606827 0.5725335 +0.3485102 0.1606827 0.5725335 +0.388193 0.1606827 0.5725335 +0.4303934 0.1606827 0.5725335 +0.4751555 0.1606827 0.5725335 +0.5225216 0.1606827 0.5725335 +0.5725335 0.1606827 0.5725335 +0.6252316 0.1606827 0.5725335 +0.6806558 0.1606827 0.5725335 +0.7388448 0.1606827 0.5725335 +0.7998369 0.1606827 0.5725335 +0.8636691 0.1606827 0.5725335 +0.9303782 0.1606827 0.5725335 +1 0.1606827 0.5725335 +0 0.1862481 0.5725335 +0.002418731 0.1862481 0.5725335 +0.005155668 0.1862481 0.5725335 +0.009080105 0.1862481 0.5725335 +0.01434988 0.1862481 0.5725335 +0.02107202 0.1862481 0.5725335 +0.02934285 0.1862481 0.5725335 +0.03925039 0.1862481 0.5725335 +0.05087609 0.1862481 0.5725335 +0.06429595 0.1862481 0.5725335 +0.07958143 0.1862481 0.5725335 +0.0968001 0.1862481 0.5725335 +0.1160161 0.1862481 0.5725335 +0.1372908 0.1862481 0.5725335 +0.1606827 0.1862481 0.5725335 +0.1862481 0.1862481 0.5725335 +0.2140411 0.1862481 0.5725335 +0.2441142 0.1862481 0.5725335 +0.2765176 0.1862481 0.5725335 +0.3113005 0.1862481 0.5725335 +0.3485102 0.1862481 0.5725335 +0.388193 0.1862481 0.5725335 +0.4303934 0.1862481 0.5725335 +0.4751555 0.1862481 0.5725335 +0.5225216 0.1862481 0.5725335 +0.5725335 0.1862481 0.5725335 +0.6252316 0.1862481 0.5725335 +0.6806558 0.1862481 0.5725335 +0.7388448 0.1862481 0.5725335 +0.7998369 0.1862481 0.5725335 +0.8636691 0.1862481 0.5725335 +0.9303782 0.1862481 0.5725335 +1 0.1862481 0.5725335 +0 0.2140411 0.5725335 +0.002418731 0.2140411 0.5725335 +0.005155668 0.2140411 0.5725335 +0.009080105 0.2140411 0.5725335 +0.01434988 0.2140411 0.5725335 +0.02107202 0.2140411 0.5725335 +0.02934285 0.2140411 0.5725335 +0.03925039 0.2140411 0.5725335 +0.05087609 0.2140411 0.5725335 +0.06429595 0.2140411 0.5725335 +0.07958143 0.2140411 0.5725335 +0.0968001 0.2140411 0.5725335 +0.1160161 0.2140411 0.5725335 +0.1372908 0.2140411 0.5725335 +0.1606827 0.2140411 0.5725335 +0.1862481 0.2140411 0.5725335 +0.2140411 0.2140411 0.5725335 +0.2441142 0.2140411 0.5725335 +0.2765176 0.2140411 0.5725335 +0.3113005 0.2140411 0.5725335 +0.3485102 0.2140411 0.5725335 +0.388193 0.2140411 0.5725335 +0.4303934 0.2140411 0.5725335 +0.4751555 0.2140411 0.5725335 +0.5225216 0.2140411 0.5725335 +0.5725335 0.2140411 0.5725335 +0.6252316 0.2140411 0.5725335 +0.6806558 0.2140411 0.5725335 +0.7388448 0.2140411 0.5725335 +0.7998369 0.2140411 0.5725335 +0.8636691 0.2140411 0.5725335 +0.9303782 0.2140411 0.5725335 +1 0.2140411 0.5725335 +0 0.2441142 0.5725335 +0.002418731 0.2441142 0.5725335 +0.005155668 0.2441142 0.5725335 +0.009080105 0.2441142 0.5725335 +0.01434988 0.2441142 0.5725335 +0.02107202 0.2441142 0.5725335 +0.02934285 0.2441142 0.5725335 +0.03925039 0.2441142 0.5725335 +0.05087609 0.2441142 0.5725335 +0.06429595 0.2441142 0.5725335 +0.07958143 0.2441142 0.5725335 +0.0968001 0.2441142 0.5725335 +0.1160161 0.2441142 0.5725335 +0.1372908 0.2441142 0.5725335 +0.1606827 0.2441142 0.5725335 +0.1862481 0.2441142 0.5725335 +0.2140411 0.2441142 0.5725335 +0.2441142 0.2441142 0.5725335 +0.2765176 0.2441142 0.5725335 +0.3113005 0.2441142 0.5725335 +0.3485102 0.2441142 0.5725335 +0.388193 0.2441142 0.5725335 +0.4303934 0.2441142 0.5725335 +0.4751555 0.2441142 0.5725335 +0.5225216 0.2441142 0.5725335 +0.5725335 0.2441142 0.5725335 +0.6252316 0.2441142 0.5725335 +0.6806558 0.2441142 0.5725335 +0.7388448 0.2441142 0.5725335 +0.7998369 0.2441142 0.5725335 +0.8636691 0.2441142 0.5725335 +0.9303782 0.2441142 0.5725335 +1 0.2441142 0.5725335 +0 0.2765176 0.5725335 +0.002418731 0.2765176 0.5725335 +0.005155668 0.2765176 0.5725335 +0.009080105 0.2765176 0.5725335 +0.01434988 0.2765176 0.5725335 +0.02107202 0.2765176 0.5725335 +0.02934285 0.2765176 0.5725335 +0.03925039 0.2765176 0.5725335 +0.05087609 0.2765176 0.5725335 +0.06429595 0.2765176 0.5725335 +0.07958143 0.2765176 0.5725335 +0.0968001 0.2765176 0.5725335 +0.1160161 0.2765176 0.5725335 +0.1372908 0.2765176 0.5725335 +0.1606827 0.2765176 0.5725335 +0.1862481 0.2765176 0.5725335 +0.2140411 0.2765176 0.5725335 +0.2441142 0.2765176 0.5725335 +0.2765176 0.2765176 0.5725335 +0.3113005 0.2765176 0.5725335 +0.3485102 0.2765176 0.5725335 +0.388193 0.2765176 0.5725335 +0.4303934 0.2765176 0.5725335 +0.4751555 0.2765176 0.5725335 +0.5225216 0.2765176 0.5725335 +0.5725335 0.2765176 0.5725335 +0.6252316 0.2765176 0.5725335 +0.6806558 0.2765176 0.5725335 +0.7388448 0.2765176 0.5725335 +0.7998369 0.2765176 0.5725335 +0.8636691 0.2765176 0.5725335 +0.9303782 0.2765176 0.5725335 +1 0.2765176 0.5725335 +0 0.3113005 0.5725335 +0.002418731 0.3113005 0.5725335 +0.005155668 0.3113005 0.5725335 +0.009080105 0.3113005 0.5725335 +0.01434988 0.3113005 0.5725335 +0.02107202 0.3113005 0.5725335 +0.02934285 0.3113005 0.5725335 +0.03925039 0.3113005 0.5725335 +0.05087609 0.3113005 0.5725335 +0.06429595 0.3113005 0.5725335 +0.07958143 0.3113005 0.5725335 +0.0968001 0.3113005 0.5725335 +0.1160161 0.3113005 0.5725335 +0.1372908 0.3113005 0.5725335 +0.1606827 0.3113005 0.5725335 +0.1862481 0.3113005 0.5725335 +0.2140411 0.3113005 0.5725335 +0.2441142 0.3113005 0.5725335 +0.2765176 0.3113005 0.5725335 +0.3113005 0.3113005 0.5725335 +0.3485102 0.3113005 0.5725335 +0.388193 0.3113005 0.5725335 +0.4303934 0.3113005 0.5725335 +0.4751555 0.3113005 0.5725335 +0.5225216 0.3113005 0.5725335 +0.5725335 0.3113005 0.5725335 +0.6252316 0.3113005 0.5725335 +0.6806558 0.3113005 0.5725335 +0.7388448 0.3113005 0.5725335 +0.7998369 0.3113005 0.5725335 +0.8636691 0.3113005 0.5725335 +0.9303782 0.3113005 0.5725335 +1 0.3113005 0.5725335 +0 0.3485102 0.5725335 +0.002418731 0.3485102 0.5725335 +0.005155668 0.3485102 0.5725335 +0.009080105 0.3485102 0.5725335 +0.01434988 0.3485102 0.5725335 +0.02107202 0.3485102 0.5725335 +0.02934285 0.3485102 0.5725335 +0.03925039 0.3485102 0.5725335 +0.05087609 0.3485102 0.5725335 +0.06429595 0.3485102 0.5725335 +0.07958143 0.3485102 0.5725335 +0.0968001 0.3485102 0.5725335 +0.1160161 0.3485102 0.5725335 +0.1372908 0.3485102 0.5725335 +0.1606827 0.3485102 0.5725335 +0.1862481 0.3485102 0.5725335 +0.2140411 0.3485102 0.5725335 +0.2441142 0.3485102 0.5725335 +0.2765176 0.3485102 0.5725335 +0.3113005 0.3485102 0.5725335 +0.3485102 0.3485102 0.5725335 +0.388193 0.3485102 0.5725335 +0.4303934 0.3485102 0.5725335 +0.4751555 0.3485102 0.5725335 +0.5225216 0.3485102 0.5725335 +0.5725335 0.3485102 0.5725335 +0.6252316 0.3485102 0.5725335 +0.6806558 0.3485102 0.5725335 +0.7388448 0.3485102 0.5725335 +0.7998369 0.3485102 0.5725335 +0.8636691 0.3485102 0.5725335 +0.9303782 0.3485102 0.5725335 +1 0.3485102 0.5725335 +0 0.388193 0.5725335 +0.002418731 0.388193 0.5725335 +0.005155668 0.388193 0.5725335 +0.009080105 0.388193 0.5725335 +0.01434988 0.388193 0.5725335 +0.02107202 0.388193 0.5725335 +0.02934285 0.388193 0.5725335 +0.03925039 0.388193 0.5725335 +0.05087609 0.388193 0.5725335 +0.06429595 0.388193 0.5725335 +0.07958143 0.388193 0.5725335 +0.0968001 0.388193 0.5725335 +0.1160161 0.388193 0.5725335 +0.1372908 0.388193 0.5725335 +0.1606827 0.388193 0.5725335 +0.1862481 0.388193 0.5725335 +0.2140411 0.388193 0.5725335 +0.2441142 0.388193 0.5725335 +0.2765176 0.388193 0.5725335 +0.3113005 0.388193 0.5725335 +0.3485102 0.388193 0.5725335 +0.388193 0.388193 0.5725335 +0.4303934 0.388193 0.5725335 +0.4751555 0.388193 0.5725335 +0.5225216 0.388193 0.5725335 +0.5725335 0.388193 0.5725335 +0.6252316 0.388193 0.5725335 +0.6806558 0.388193 0.5725335 +0.7388448 0.388193 0.5725335 +0.7998369 0.388193 0.5725335 +0.8636691 0.388193 0.5725335 +0.9303782 0.388193 0.5725335 +1 0.388193 0.5725335 +0 0.4303934 0.5725335 +0.002418731 0.4303934 0.5725335 +0.005155668 0.4303934 0.5725335 +0.009080105 0.4303934 0.5725335 +0.01434988 0.4303934 0.5725335 +0.02107202 0.4303934 0.5725335 +0.02934285 0.4303934 0.5725335 +0.03925039 0.4303934 0.5725335 +0.05087609 0.4303934 0.5725335 +0.06429595 0.4303934 0.5725335 +0.07958143 0.4303934 0.5725335 +0.0968001 0.4303934 0.5725335 +0.1160161 0.4303934 0.5725335 +0.1372908 0.4303934 0.5725335 +0.1606827 0.4303934 0.5725335 +0.1862481 0.4303934 0.5725335 +0.2140411 0.4303934 0.5725335 +0.2441142 0.4303934 0.5725335 +0.2765176 0.4303934 0.5725335 +0.3113005 0.4303934 0.5725335 +0.3485102 0.4303934 0.5725335 +0.388193 0.4303934 0.5725335 +0.4303934 0.4303934 0.5725335 +0.4751555 0.4303934 0.5725335 +0.5225216 0.4303934 0.5725335 +0.5725335 0.4303934 0.5725335 +0.6252316 0.4303934 0.5725335 +0.6806558 0.4303934 0.5725335 +0.7388448 0.4303934 0.5725335 +0.7998369 0.4303934 0.5725335 +0.8636691 0.4303934 0.5725335 +0.9303782 0.4303934 0.5725335 +1 0.4303934 0.5725335 +0 0.4751555 0.5725335 +0.002418731 0.4751555 0.5725335 +0.005155668 0.4751555 0.5725335 +0.009080105 0.4751555 0.5725335 +0.01434988 0.4751555 0.5725335 +0.02107202 0.4751555 0.5725335 +0.02934285 0.4751555 0.5725335 +0.03925039 0.4751555 0.5725335 +0.05087609 0.4751555 0.5725335 +0.06429595 0.4751555 0.5725335 +0.07958143 0.4751555 0.5725335 +0.0968001 0.4751555 0.5725335 +0.1160161 0.4751555 0.5725335 +0.1372908 0.4751555 0.5725335 +0.1606827 0.4751555 0.5725335 +0.1862481 0.4751555 0.5725335 +0.2140411 0.4751555 0.5725335 +0.2441142 0.4751555 0.5725335 +0.2765176 0.4751555 0.5725335 +0.3113005 0.4751555 0.5725335 +0.3485102 0.4751555 0.5725335 +0.388193 0.4751555 0.5725335 +0.4303934 0.4751555 0.5725335 +0.4751555 0.4751555 0.5725335 +0.5225216 0.4751555 0.5725335 +0.5725335 0.4751555 0.5725335 +0.6252316 0.4751555 0.5725335 +0.6806558 0.4751555 0.5725335 +0.7388448 0.4751555 0.5725335 +0.7998369 0.4751555 0.5725335 +0.8636691 0.4751555 0.5725335 +0.9303782 0.4751555 0.5725335 +1 0.4751555 0.5725335 +0 0.5225216 0.5725335 +0.002418731 0.5225216 0.5725335 +0.005155668 0.5225216 0.5725335 +0.009080105 0.5225216 0.5725335 +0.01434988 0.5225216 0.5725335 +0.02107202 0.5225216 0.5725335 +0.02934285 0.5225216 0.5725335 +0.03925039 0.5225216 0.5725335 +0.05087609 0.5225216 0.5725335 +0.06429595 0.5225216 0.5725335 +0.07958143 0.5225216 0.5725335 +0.0968001 0.5225216 0.5725335 +0.1160161 0.5225216 0.5725335 +0.1372908 0.5225216 0.5725335 +0.1606827 0.5225216 0.5725335 +0.1862481 0.5225216 0.5725335 +0.2140411 0.5225216 0.5725335 +0.2441142 0.5225216 0.5725335 +0.2765176 0.5225216 0.5725335 +0.3113005 0.5225216 0.5725335 +0.3485102 0.5225216 0.5725335 +0.388193 0.5225216 0.5725335 +0.4303934 0.5225216 0.5725335 +0.4751555 0.5225216 0.5725335 +0.5225216 0.5225216 0.5725335 +0.5725335 0.5225216 0.5725335 +0.6252316 0.5225216 0.5725335 +0.6806558 0.5225216 0.5725335 +0.7388448 0.5225216 0.5725335 +0.7998369 0.5225216 0.5725335 +0.8636691 0.5225216 0.5725335 +0.9303782 0.5225216 0.5725335 +1 0.5225216 0.5725335 +0 0.5725335 0.5725335 +0.002418731 0.5725335 0.5725335 +0.005155668 0.5725335 0.5725335 +0.009080105 0.5725335 0.5725335 +0.01434988 0.5725335 0.5725335 +0.02107202 0.5725335 0.5725335 +0.02934285 0.5725335 0.5725335 +0.03925039 0.5725335 0.5725335 +0.05087609 0.5725335 0.5725335 +0.06429595 0.5725335 0.5725335 +0.07958143 0.5725335 0.5725335 +0.0968001 0.5725335 0.5725335 +0.1160161 0.5725335 0.5725335 +0.1372908 0.5725335 0.5725335 +0.1606827 0.5725335 0.5725335 +0.1862481 0.5725335 0.5725335 +0.2140411 0.5725335 0.5725335 +0.2441142 0.5725335 0.5725335 +0.2765176 0.5725335 0.5725335 +0.3113005 0.5725335 0.5725335 +0.3485102 0.5725335 0.5725335 +0.388193 0.5725335 0.5725335 +0.4303934 0.5725335 0.5725335 +0.4751555 0.5725335 0.5725335 +0.5225216 0.5725335 0.5725335 +0.5725335 0.5725335 0.5725335 +0.6252316 0.5725335 0.5725335 +0.6806558 0.5725335 0.5725335 +0.7388448 0.5725335 0.5725335 +0.7998369 0.5725335 0.5725335 +0.8636691 0.5725335 0.5725335 +0.9303782 0.5725335 0.5725335 +1 0.5725335 0.5725335 +0 0.6252316 0.5725335 +0.002418731 0.6252316 0.5725335 +0.005155668 0.6252316 0.5725335 +0.009080105 0.6252316 0.5725335 +0.01434988 0.6252316 0.5725335 +0.02107202 0.6252316 0.5725335 +0.02934285 0.6252316 0.5725335 +0.03925039 0.6252316 0.5725335 +0.05087609 0.6252316 0.5725335 +0.06429595 0.6252316 0.5725335 +0.07958143 0.6252316 0.5725335 +0.0968001 0.6252316 0.5725335 +0.1160161 0.6252316 0.5725335 +0.1372908 0.6252316 0.5725335 +0.1606827 0.6252316 0.5725335 +0.1862481 0.6252316 0.5725335 +0.2140411 0.6252316 0.5725335 +0.2441142 0.6252316 0.5725335 +0.2765176 0.6252316 0.5725335 +0.3113005 0.6252316 0.5725335 +0.3485102 0.6252316 0.5725335 +0.388193 0.6252316 0.5725335 +0.4303934 0.6252316 0.5725335 +0.4751555 0.6252316 0.5725335 +0.5225216 0.6252316 0.5725335 +0.5725335 0.6252316 0.5725335 +0.6252316 0.6252316 0.5725335 +0.6806558 0.6252316 0.5725335 +0.7388448 0.6252316 0.5725335 +0.7998369 0.6252316 0.5725335 +0.8636691 0.6252316 0.5725335 +0.9303782 0.6252316 0.5725335 +1 0.6252316 0.5725335 +0 0.6806558 0.5725335 +0.002418731 0.6806558 0.5725335 +0.005155668 0.6806558 0.5725335 +0.009080105 0.6806558 0.5725335 +0.01434988 0.6806558 0.5725335 +0.02107202 0.6806558 0.5725335 +0.02934285 0.6806558 0.5725335 +0.03925039 0.6806558 0.5725335 +0.05087609 0.6806558 0.5725335 +0.06429595 0.6806558 0.5725335 +0.07958143 0.6806558 0.5725335 +0.0968001 0.6806558 0.5725335 +0.1160161 0.6806558 0.5725335 +0.1372908 0.6806558 0.5725335 +0.1606827 0.6806558 0.5725335 +0.1862481 0.6806558 0.5725335 +0.2140411 0.6806558 0.5725335 +0.2441142 0.6806558 0.5725335 +0.2765176 0.6806558 0.5725335 +0.3113005 0.6806558 0.5725335 +0.3485102 0.6806558 0.5725335 +0.388193 0.6806558 0.5725335 +0.4303934 0.6806558 0.5725335 +0.4751555 0.6806558 0.5725335 +0.5225216 0.6806558 0.5725335 +0.5725335 0.6806558 0.5725335 +0.6252316 0.6806558 0.5725335 +0.6806558 0.6806558 0.5725335 +0.7388448 0.6806558 0.5725335 +0.7998369 0.6806558 0.5725335 +0.8636691 0.6806558 0.5725335 +0.9303782 0.6806558 0.5725335 +1 0.6806558 0.5725335 +0 0.7388448 0.5725335 +0.002418731 0.7388448 0.5725335 +0.005155668 0.7388448 0.5725335 +0.009080105 0.7388448 0.5725335 +0.01434988 0.7388448 0.5725335 +0.02107202 0.7388448 0.5725335 +0.02934285 0.7388448 0.5725335 +0.03925039 0.7388448 0.5725335 +0.05087609 0.7388448 0.5725335 +0.06429595 0.7388448 0.5725335 +0.07958143 0.7388448 0.5725335 +0.0968001 0.7388448 0.5725335 +0.1160161 0.7388448 0.5725335 +0.1372908 0.7388448 0.5725335 +0.1606827 0.7388448 0.5725335 +0.1862481 0.7388448 0.5725335 +0.2140411 0.7388448 0.5725335 +0.2441142 0.7388448 0.5725335 +0.2765176 0.7388448 0.5725335 +0.3113005 0.7388448 0.5725335 +0.3485102 0.7388448 0.5725335 +0.388193 0.7388448 0.5725335 +0.4303934 0.7388448 0.5725335 +0.4751555 0.7388448 0.5725335 +0.5225216 0.7388448 0.5725335 +0.5725335 0.7388448 0.5725335 +0.6252316 0.7388448 0.5725335 +0.6806558 0.7388448 0.5725335 +0.7388448 0.7388448 0.5725335 +0.7998369 0.7388448 0.5725335 +0.8636691 0.7388448 0.5725335 +0.9303782 0.7388448 0.5725335 +1 0.7388448 0.5725335 +0 0.7998369 0.5725335 +0.002418731 0.7998369 0.5725335 +0.005155668 0.7998369 0.5725335 +0.009080105 0.7998369 0.5725335 +0.01434988 0.7998369 0.5725335 +0.02107202 0.7998369 0.5725335 +0.02934285 0.7998369 0.5725335 +0.03925039 0.7998369 0.5725335 +0.05087609 0.7998369 0.5725335 +0.06429595 0.7998369 0.5725335 +0.07958143 0.7998369 0.5725335 +0.0968001 0.7998369 0.5725335 +0.1160161 0.7998369 0.5725335 +0.1372908 0.7998369 0.5725335 +0.1606827 0.7998369 0.5725335 +0.1862481 0.7998369 0.5725335 +0.2140411 0.7998369 0.5725335 +0.2441142 0.7998369 0.5725335 +0.2765176 0.7998369 0.5725335 +0.3113005 0.7998369 0.5725335 +0.3485102 0.7998369 0.5725335 +0.388193 0.7998369 0.5725335 +0.4303934 0.7998369 0.5725335 +0.4751555 0.7998369 0.5725335 +0.5225216 0.7998369 0.5725335 +0.5725335 0.7998369 0.5725335 +0.6252316 0.7998369 0.5725335 +0.6806558 0.7998369 0.5725335 +0.7388448 0.7998369 0.5725335 +0.7998369 0.7998369 0.5725335 +0.8636691 0.7998369 0.5725335 +0.9303782 0.7998369 0.5725335 +1 0.7998369 0.5725335 +0 0.8636691 0.5725335 +0.002418731 0.8636691 0.5725335 +0.005155668 0.8636691 0.5725335 +0.009080105 0.8636691 0.5725335 +0.01434988 0.8636691 0.5725335 +0.02107202 0.8636691 0.5725335 +0.02934285 0.8636691 0.5725335 +0.03925039 0.8636691 0.5725335 +0.05087609 0.8636691 0.5725335 +0.06429595 0.8636691 0.5725335 +0.07958143 0.8636691 0.5725335 +0.0968001 0.8636691 0.5725335 +0.1160161 0.8636691 0.5725335 +0.1372908 0.8636691 0.5725335 +0.1606827 0.8636691 0.5725335 +0.1862481 0.8636691 0.5725335 +0.2140411 0.8636691 0.5725335 +0.2441142 0.8636691 0.5725335 +0.2765176 0.8636691 0.5725335 +0.3113005 0.8636691 0.5725335 +0.3485102 0.8636691 0.5725335 +0.388193 0.8636691 0.5725335 +0.4303934 0.8636691 0.5725335 +0.4751555 0.8636691 0.5725335 +0.5225216 0.8636691 0.5725335 +0.5725335 0.8636691 0.5725335 +0.6252316 0.8636691 0.5725335 +0.6806558 0.8636691 0.5725335 +0.7388448 0.8636691 0.5725335 +0.7998369 0.8636691 0.5725335 +0.8636691 0.8636691 0.5725335 +0.9303782 0.8636691 0.5725335 +1 0.8636691 0.5725335 +0 0.9303782 0.5725335 +0.002418731 0.9303782 0.5725335 +0.005155668 0.9303782 0.5725335 +0.009080105 0.9303782 0.5725335 +0.01434988 0.9303782 0.5725335 +0.02107202 0.9303782 0.5725335 +0.02934285 0.9303782 0.5725335 +0.03925039 0.9303782 0.5725335 +0.05087609 0.9303782 0.5725335 +0.06429595 0.9303782 0.5725335 +0.07958143 0.9303782 0.5725335 +0.0968001 0.9303782 0.5725335 +0.1160161 0.9303782 0.5725335 +0.1372908 0.9303782 0.5725335 +0.1606827 0.9303782 0.5725335 +0.1862481 0.9303782 0.5725335 +0.2140411 0.9303782 0.5725335 +0.2441142 0.9303782 0.5725335 +0.2765176 0.9303782 0.5725335 +0.3113005 0.9303782 0.5725335 +0.3485102 0.9303782 0.5725335 +0.388193 0.9303782 0.5725335 +0.4303934 0.9303782 0.5725335 +0.4751555 0.9303782 0.5725335 +0.5225216 0.9303782 0.5725335 +0.5725335 0.9303782 0.5725335 +0.6252316 0.9303782 0.5725335 +0.6806558 0.9303782 0.5725335 +0.7388448 0.9303782 0.5725335 +0.7998369 0.9303782 0.5725335 +0.8636691 0.9303782 0.5725335 +0.9303782 0.9303782 0.5725335 +1 0.9303782 0.5725335 +0 1 0.5725335 +0.002418731 1 0.5725335 +0.005155668 1 0.5725335 +0.009080105 1 0.5725335 +0.01434988 1 0.5725335 +0.02107202 1 0.5725335 +0.02934285 1 0.5725335 +0.03925039 1 0.5725335 +0.05087609 1 0.5725335 +0.06429595 1 0.5725335 +0.07958143 1 0.5725335 +0.0968001 1 0.5725335 +0.1160161 1 0.5725335 +0.1372908 1 0.5725335 +0.1606827 1 0.5725335 +0.1862481 1 0.5725335 +0.2140411 1 0.5725335 +0.2441142 1 0.5725335 +0.2765176 1 0.5725335 +0.3113005 1 0.5725335 +0.3485102 1 0.5725335 +0.388193 1 0.5725335 +0.4303934 1 0.5725335 +0.4751555 1 0.5725335 +0.5225216 1 0.5725335 +0.5725335 1 0.5725335 +0.6252316 1 0.5725335 +0.6806558 1 0.5725335 +0.7388448 1 0.5725335 +0.7998369 1 0.5725335 +0.8636691 1 0.5725335 +0.9303782 1 0.5725335 +1 1 0.5725335 +0 0 0.6252316 +0.002418731 0 0.6252316 +0.005155668 0 0.6252316 +0.009080105 0 0.6252316 +0.01434988 0 0.6252316 +0.02107202 0 0.6252316 +0.02934285 0 0.6252316 +0.03925039 0 0.6252316 +0.05087609 0 0.6252316 +0.06429595 0 0.6252316 +0.07958143 0 0.6252316 +0.0968001 0 0.6252316 +0.1160161 0 0.6252316 +0.1372908 0 0.6252316 +0.1606827 0 0.6252316 +0.1862481 0 0.6252316 +0.2140411 0 0.6252316 +0.2441142 0 0.6252316 +0.2765176 0 0.6252316 +0.3113005 0 0.6252316 +0.3485102 0 0.6252316 +0.388193 0 0.6252316 +0.4303934 0 0.6252316 +0.4751555 0 0.6252316 +0.5225216 0 0.6252316 +0.5725335 0 0.6252316 +0.6252316 0 0.6252316 +0.6806558 0 0.6252316 +0.7388448 0 0.6252316 +0.7998369 0 0.6252316 +0.8636691 0 0.6252316 +0.9303782 0 0.6252316 +1 0 0.6252316 +0 0.002418731 0.6252316 +0.002418731 0.002418731 0.6252316 +0.005155668 0.002418731 0.6252316 +0.009080105 0.002418731 0.6252316 +0.01434988 0.002418731 0.6252316 +0.02107202 0.002418731 0.6252316 +0.02934285 0.002418731 0.6252316 +0.03925039 0.002418731 0.6252316 +0.05087609 0.002418731 0.6252316 +0.06429595 0.002418731 0.6252316 +0.07958143 0.002418731 0.6252316 +0.0968001 0.002418731 0.6252316 +0.1160161 0.002418731 0.6252316 +0.1372908 0.002418731 0.6252316 +0.1606827 0.002418731 0.6252316 +0.1862481 0.002418731 0.6252316 +0.2140411 0.002418731 0.6252316 +0.2441142 0.002418731 0.6252316 +0.2765176 0.002418731 0.6252316 +0.3113005 0.002418731 0.6252316 +0.3485102 0.002418731 0.6252316 +0.388193 0.002418731 0.6252316 +0.4303934 0.002418731 0.6252316 +0.4751555 0.002418731 0.6252316 +0.5225216 0.002418731 0.6252316 +0.5725335 0.002418731 0.6252316 +0.6252316 0.002418731 0.6252316 +0.6806558 0.002418731 0.6252316 +0.7388448 0.002418731 0.6252316 +0.7998369 0.002418731 0.6252316 +0.8636691 0.002418731 0.6252316 +0.9303782 0.002418731 0.6252316 +1 0.002418731 0.6252316 +0 0.005155668 0.6252316 +0.002418731 0.005155668 0.6252316 +0.005155668 0.005155668 0.6252316 +0.009080105 0.005155668 0.6252316 +0.01434988 0.005155668 0.6252316 +0.02107202 0.005155668 0.6252316 +0.02934285 0.005155668 0.6252316 +0.03925039 0.005155668 0.6252316 +0.05087609 0.005155668 0.6252316 +0.06429595 0.005155668 0.6252316 +0.07958143 0.005155668 0.6252316 +0.0968001 0.005155668 0.6252316 +0.1160161 0.005155668 0.6252316 +0.1372908 0.005155668 0.6252316 +0.1606827 0.005155668 0.6252316 +0.1862481 0.005155668 0.6252316 +0.2140411 0.005155668 0.6252316 +0.2441142 0.005155668 0.6252316 +0.2765176 0.005155668 0.6252316 +0.3113005 0.005155668 0.6252316 +0.3485102 0.005155668 0.6252316 +0.388193 0.005155668 0.6252316 +0.4303934 0.005155668 0.6252316 +0.4751555 0.005155668 0.6252316 +0.5225216 0.005155668 0.6252316 +0.5725335 0.005155668 0.6252316 +0.6252316 0.005155668 0.6252316 +0.6806558 0.005155668 0.6252316 +0.7388448 0.005155668 0.6252316 +0.7998369 0.005155668 0.6252316 +0.8636691 0.005155668 0.6252316 +0.9303782 0.005155668 0.6252316 +1 0.005155668 0.6252316 +0 0.009080105 0.6252316 +0.002418731 0.009080105 0.6252316 +0.005155668 0.009080105 0.6252316 +0.009080105 0.009080105 0.6252316 +0.01434988 0.009080105 0.6252316 +0.02107202 0.009080105 0.6252316 +0.02934285 0.009080105 0.6252316 +0.03925039 0.009080105 0.6252316 +0.05087609 0.009080105 0.6252316 +0.06429595 0.009080105 0.6252316 +0.07958143 0.009080105 0.6252316 +0.0968001 0.009080105 0.6252316 +0.1160161 0.009080105 0.6252316 +0.1372908 0.009080105 0.6252316 +0.1606827 0.009080105 0.6252316 +0.1862481 0.009080105 0.6252316 +0.2140411 0.009080105 0.6252316 +0.2441142 0.009080105 0.6252316 +0.2765176 0.009080105 0.6252316 +0.3113005 0.009080105 0.6252316 +0.3485102 0.009080105 0.6252316 +0.388193 0.009080105 0.6252316 +0.4303934 0.009080105 0.6252316 +0.4751555 0.009080105 0.6252316 +0.5225216 0.009080105 0.6252316 +0.5725335 0.009080105 0.6252316 +0.6252316 0.009080105 0.6252316 +0.6806558 0.009080105 0.6252316 +0.7388448 0.009080105 0.6252316 +0.7998369 0.009080105 0.6252316 +0.8636691 0.009080105 0.6252316 +0.9303782 0.009080105 0.6252316 +1 0.009080105 0.6252316 +0 0.01434988 0.6252316 +0.002418731 0.01434988 0.6252316 +0.005155668 0.01434988 0.6252316 +0.009080105 0.01434988 0.6252316 +0.01434988 0.01434988 0.6252316 +0.02107202 0.01434988 0.6252316 +0.02934285 0.01434988 0.6252316 +0.03925039 0.01434988 0.6252316 +0.05087609 0.01434988 0.6252316 +0.06429595 0.01434988 0.6252316 +0.07958143 0.01434988 0.6252316 +0.0968001 0.01434988 0.6252316 +0.1160161 0.01434988 0.6252316 +0.1372908 0.01434988 0.6252316 +0.1606827 0.01434988 0.6252316 +0.1862481 0.01434988 0.6252316 +0.2140411 0.01434988 0.6252316 +0.2441142 0.01434988 0.6252316 +0.2765176 0.01434988 0.6252316 +0.3113005 0.01434988 0.6252316 +0.3485102 0.01434988 0.6252316 +0.388193 0.01434988 0.6252316 +0.4303934 0.01434988 0.6252316 +0.4751555 0.01434988 0.6252316 +0.5225216 0.01434988 0.6252316 +0.5725335 0.01434988 0.6252316 +0.6252316 0.01434988 0.6252316 +0.6806558 0.01434988 0.6252316 +0.7388448 0.01434988 0.6252316 +0.7998369 0.01434988 0.6252316 +0.8636691 0.01434988 0.6252316 +0.9303782 0.01434988 0.6252316 +1 0.01434988 0.6252316 +0 0.02107202 0.6252316 +0.002418731 0.02107202 0.6252316 +0.005155668 0.02107202 0.6252316 +0.009080105 0.02107202 0.6252316 +0.01434988 0.02107202 0.6252316 +0.02107202 0.02107202 0.6252316 +0.02934285 0.02107202 0.6252316 +0.03925039 0.02107202 0.6252316 +0.05087609 0.02107202 0.6252316 +0.06429595 0.02107202 0.6252316 +0.07958143 0.02107202 0.6252316 +0.0968001 0.02107202 0.6252316 +0.1160161 0.02107202 0.6252316 +0.1372908 0.02107202 0.6252316 +0.1606827 0.02107202 0.6252316 +0.1862481 0.02107202 0.6252316 +0.2140411 0.02107202 0.6252316 +0.2441142 0.02107202 0.6252316 +0.2765176 0.02107202 0.6252316 +0.3113005 0.02107202 0.6252316 +0.3485102 0.02107202 0.6252316 +0.388193 0.02107202 0.6252316 +0.4303934 0.02107202 0.6252316 +0.4751555 0.02107202 0.6252316 +0.5225216 0.02107202 0.6252316 +0.5725335 0.02107202 0.6252316 +0.6252316 0.02107202 0.6252316 +0.6806558 0.02107202 0.6252316 +0.7388448 0.02107202 0.6252316 +0.7998369 0.02107202 0.6252316 +0.8636691 0.02107202 0.6252316 +0.9303782 0.02107202 0.6252316 +1 0.02107202 0.6252316 +0 0.02934285 0.6252316 +0.002418731 0.02934285 0.6252316 +0.005155668 0.02934285 0.6252316 +0.009080105 0.02934285 0.6252316 +0.01434988 0.02934285 0.6252316 +0.02107202 0.02934285 0.6252316 +0.02934285 0.02934285 0.6252316 +0.03925039 0.02934285 0.6252316 +0.05087609 0.02934285 0.6252316 +0.06429595 0.02934285 0.6252316 +0.07958143 0.02934285 0.6252316 +0.0968001 0.02934285 0.6252316 +0.1160161 0.02934285 0.6252316 +0.1372908 0.02934285 0.6252316 +0.1606827 0.02934285 0.6252316 +0.1862481 0.02934285 0.6252316 +0.2140411 0.02934285 0.6252316 +0.2441142 0.02934285 0.6252316 +0.2765176 0.02934285 0.6252316 +0.3113005 0.02934285 0.6252316 +0.3485102 0.02934285 0.6252316 +0.388193 0.02934285 0.6252316 +0.4303934 0.02934285 0.6252316 +0.4751555 0.02934285 0.6252316 +0.5225216 0.02934285 0.6252316 +0.5725335 0.02934285 0.6252316 +0.6252316 0.02934285 0.6252316 +0.6806558 0.02934285 0.6252316 +0.7388448 0.02934285 0.6252316 +0.7998369 0.02934285 0.6252316 +0.8636691 0.02934285 0.6252316 +0.9303782 0.02934285 0.6252316 +1 0.02934285 0.6252316 +0 0.03925039 0.6252316 +0.002418731 0.03925039 0.6252316 +0.005155668 0.03925039 0.6252316 +0.009080105 0.03925039 0.6252316 +0.01434988 0.03925039 0.6252316 +0.02107202 0.03925039 0.6252316 +0.02934285 0.03925039 0.6252316 +0.03925039 0.03925039 0.6252316 +0.05087609 0.03925039 0.6252316 +0.06429595 0.03925039 0.6252316 +0.07958143 0.03925039 0.6252316 +0.0968001 0.03925039 0.6252316 +0.1160161 0.03925039 0.6252316 +0.1372908 0.03925039 0.6252316 +0.1606827 0.03925039 0.6252316 +0.1862481 0.03925039 0.6252316 +0.2140411 0.03925039 0.6252316 +0.2441142 0.03925039 0.6252316 +0.2765176 0.03925039 0.6252316 +0.3113005 0.03925039 0.6252316 +0.3485102 0.03925039 0.6252316 +0.388193 0.03925039 0.6252316 +0.4303934 0.03925039 0.6252316 +0.4751555 0.03925039 0.6252316 +0.5225216 0.03925039 0.6252316 +0.5725335 0.03925039 0.6252316 +0.6252316 0.03925039 0.6252316 +0.6806558 0.03925039 0.6252316 +0.7388448 0.03925039 0.6252316 +0.7998369 0.03925039 0.6252316 +0.8636691 0.03925039 0.6252316 +0.9303782 0.03925039 0.6252316 +1 0.03925039 0.6252316 +0 0.05087609 0.6252316 +0.002418731 0.05087609 0.6252316 +0.005155668 0.05087609 0.6252316 +0.009080105 0.05087609 0.6252316 +0.01434988 0.05087609 0.6252316 +0.02107202 0.05087609 0.6252316 +0.02934285 0.05087609 0.6252316 +0.03925039 0.05087609 0.6252316 +0.05087609 0.05087609 0.6252316 +0.06429595 0.05087609 0.6252316 +0.07958143 0.05087609 0.6252316 +0.0968001 0.05087609 0.6252316 +0.1160161 0.05087609 0.6252316 +0.1372908 0.05087609 0.6252316 +0.1606827 0.05087609 0.6252316 +0.1862481 0.05087609 0.6252316 +0.2140411 0.05087609 0.6252316 +0.2441142 0.05087609 0.6252316 +0.2765176 0.05087609 0.6252316 +0.3113005 0.05087609 0.6252316 +0.3485102 0.05087609 0.6252316 +0.388193 0.05087609 0.6252316 +0.4303934 0.05087609 0.6252316 +0.4751555 0.05087609 0.6252316 +0.5225216 0.05087609 0.6252316 +0.5725335 0.05087609 0.6252316 +0.6252316 0.05087609 0.6252316 +0.6806558 0.05087609 0.6252316 +0.7388448 0.05087609 0.6252316 +0.7998369 0.05087609 0.6252316 +0.8636691 0.05087609 0.6252316 +0.9303782 0.05087609 0.6252316 +1 0.05087609 0.6252316 +0 0.06429595 0.6252316 +0.002418731 0.06429595 0.6252316 +0.005155668 0.06429595 0.6252316 +0.009080105 0.06429595 0.6252316 +0.01434988 0.06429595 0.6252316 +0.02107202 0.06429595 0.6252316 +0.02934285 0.06429595 0.6252316 +0.03925039 0.06429595 0.6252316 +0.05087609 0.06429595 0.6252316 +0.06429595 0.06429595 0.6252316 +0.07958143 0.06429595 0.6252316 +0.0968001 0.06429595 0.6252316 +0.1160161 0.06429595 0.6252316 +0.1372908 0.06429595 0.6252316 +0.1606827 0.06429595 0.6252316 +0.1862481 0.06429595 0.6252316 +0.2140411 0.06429595 0.6252316 +0.2441142 0.06429595 0.6252316 +0.2765176 0.06429595 0.6252316 +0.3113005 0.06429595 0.6252316 +0.3485102 0.06429595 0.6252316 +0.388193 0.06429595 0.6252316 +0.4303934 0.06429595 0.6252316 +0.4751555 0.06429595 0.6252316 +0.5225216 0.06429595 0.6252316 +0.5725335 0.06429595 0.6252316 +0.6252316 0.06429595 0.6252316 +0.6806558 0.06429595 0.6252316 +0.7388448 0.06429595 0.6252316 +0.7998369 0.06429595 0.6252316 +0.8636691 0.06429595 0.6252316 +0.9303782 0.06429595 0.6252316 +1 0.06429595 0.6252316 +0 0.07958143 0.6252316 +0.002418731 0.07958143 0.6252316 +0.005155668 0.07958143 0.6252316 +0.009080105 0.07958143 0.6252316 +0.01434988 0.07958143 0.6252316 +0.02107202 0.07958143 0.6252316 +0.02934285 0.07958143 0.6252316 +0.03925039 0.07958143 0.6252316 +0.05087609 0.07958143 0.6252316 +0.06429595 0.07958143 0.6252316 +0.07958143 0.07958143 0.6252316 +0.0968001 0.07958143 0.6252316 +0.1160161 0.07958143 0.6252316 +0.1372908 0.07958143 0.6252316 +0.1606827 0.07958143 0.6252316 +0.1862481 0.07958143 0.6252316 +0.2140411 0.07958143 0.6252316 +0.2441142 0.07958143 0.6252316 +0.2765176 0.07958143 0.6252316 +0.3113005 0.07958143 0.6252316 +0.3485102 0.07958143 0.6252316 +0.388193 0.07958143 0.6252316 +0.4303934 0.07958143 0.6252316 +0.4751555 0.07958143 0.6252316 +0.5225216 0.07958143 0.6252316 +0.5725335 0.07958143 0.6252316 +0.6252316 0.07958143 0.6252316 +0.6806558 0.07958143 0.6252316 +0.7388448 0.07958143 0.6252316 +0.7998369 0.07958143 0.6252316 +0.8636691 0.07958143 0.6252316 +0.9303782 0.07958143 0.6252316 +1 0.07958143 0.6252316 +0 0.0968001 0.6252316 +0.002418731 0.0968001 0.6252316 +0.005155668 0.0968001 0.6252316 +0.009080105 0.0968001 0.6252316 +0.01434988 0.0968001 0.6252316 +0.02107202 0.0968001 0.6252316 +0.02934285 0.0968001 0.6252316 +0.03925039 0.0968001 0.6252316 +0.05087609 0.0968001 0.6252316 +0.06429595 0.0968001 0.6252316 +0.07958143 0.0968001 0.6252316 +0.0968001 0.0968001 0.6252316 +0.1160161 0.0968001 0.6252316 +0.1372908 0.0968001 0.6252316 +0.1606827 0.0968001 0.6252316 +0.1862481 0.0968001 0.6252316 +0.2140411 0.0968001 0.6252316 +0.2441142 0.0968001 0.6252316 +0.2765176 0.0968001 0.6252316 +0.3113005 0.0968001 0.6252316 +0.3485102 0.0968001 0.6252316 +0.388193 0.0968001 0.6252316 +0.4303934 0.0968001 0.6252316 +0.4751555 0.0968001 0.6252316 +0.5225216 0.0968001 0.6252316 +0.5725335 0.0968001 0.6252316 +0.6252316 0.0968001 0.6252316 +0.6806558 0.0968001 0.6252316 +0.7388448 0.0968001 0.6252316 +0.7998369 0.0968001 0.6252316 +0.8636691 0.0968001 0.6252316 +0.9303782 0.0968001 0.6252316 +1 0.0968001 0.6252316 +0 0.1160161 0.6252316 +0.002418731 0.1160161 0.6252316 +0.005155668 0.1160161 0.6252316 +0.009080105 0.1160161 0.6252316 +0.01434988 0.1160161 0.6252316 +0.02107202 0.1160161 0.6252316 +0.02934285 0.1160161 0.6252316 +0.03925039 0.1160161 0.6252316 +0.05087609 0.1160161 0.6252316 +0.06429595 0.1160161 0.6252316 +0.07958143 0.1160161 0.6252316 +0.0968001 0.1160161 0.6252316 +0.1160161 0.1160161 0.6252316 +0.1372908 0.1160161 0.6252316 +0.1606827 0.1160161 0.6252316 +0.1862481 0.1160161 0.6252316 +0.2140411 0.1160161 0.6252316 +0.2441142 0.1160161 0.6252316 +0.2765176 0.1160161 0.6252316 +0.3113005 0.1160161 0.6252316 +0.3485102 0.1160161 0.6252316 +0.388193 0.1160161 0.6252316 +0.4303934 0.1160161 0.6252316 +0.4751555 0.1160161 0.6252316 +0.5225216 0.1160161 0.6252316 +0.5725335 0.1160161 0.6252316 +0.6252316 0.1160161 0.6252316 +0.6806558 0.1160161 0.6252316 +0.7388448 0.1160161 0.6252316 +0.7998369 0.1160161 0.6252316 +0.8636691 0.1160161 0.6252316 +0.9303782 0.1160161 0.6252316 +1 0.1160161 0.6252316 +0 0.1372908 0.6252316 +0.002418731 0.1372908 0.6252316 +0.005155668 0.1372908 0.6252316 +0.009080105 0.1372908 0.6252316 +0.01434988 0.1372908 0.6252316 +0.02107202 0.1372908 0.6252316 +0.02934285 0.1372908 0.6252316 +0.03925039 0.1372908 0.6252316 +0.05087609 0.1372908 0.6252316 +0.06429595 0.1372908 0.6252316 +0.07958143 0.1372908 0.6252316 +0.0968001 0.1372908 0.6252316 +0.1160161 0.1372908 0.6252316 +0.1372908 0.1372908 0.6252316 +0.1606827 0.1372908 0.6252316 +0.1862481 0.1372908 0.6252316 +0.2140411 0.1372908 0.6252316 +0.2441142 0.1372908 0.6252316 +0.2765176 0.1372908 0.6252316 +0.3113005 0.1372908 0.6252316 +0.3485102 0.1372908 0.6252316 +0.388193 0.1372908 0.6252316 +0.4303934 0.1372908 0.6252316 +0.4751555 0.1372908 0.6252316 +0.5225216 0.1372908 0.6252316 +0.5725335 0.1372908 0.6252316 +0.6252316 0.1372908 0.6252316 +0.6806558 0.1372908 0.6252316 +0.7388448 0.1372908 0.6252316 +0.7998369 0.1372908 0.6252316 +0.8636691 0.1372908 0.6252316 +0.9303782 0.1372908 0.6252316 +1 0.1372908 0.6252316 +0 0.1606827 0.6252316 +0.002418731 0.1606827 0.6252316 +0.005155668 0.1606827 0.6252316 +0.009080105 0.1606827 0.6252316 +0.01434988 0.1606827 0.6252316 +0.02107202 0.1606827 0.6252316 +0.02934285 0.1606827 0.6252316 +0.03925039 0.1606827 0.6252316 +0.05087609 0.1606827 0.6252316 +0.06429595 0.1606827 0.6252316 +0.07958143 0.1606827 0.6252316 +0.0968001 0.1606827 0.6252316 +0.1160161 0.1606827 0.6252316 +0.1372908 0.1606827 0.6252316 +0.1606827 0.1606827 0.6252316 +0.1862481 0.1606827 0.6252316 +0.2140411 0.1606827 0.6252316 +0.2441142 0.1606827 0.6252316 +0.2765176 0.1606827 0.6252316 +0.3113005 0.1606827 0.6252316 +0.3485102 0.1606827 0.6252316 +0.388193 0.1606827 0.6252316 +0.4303934 0.1606827 0.6252316 +0.4751555 0.1606827 0.6252316 +0.5225216 0.1606827 0.6252316 +0.5725335 0.1606827 0.6252316 +0.6252316 0.1606827 0.6252316 +0.6806558 0.1606827 0.6252316 +0.7388448 0.1606827 0.6252316 +0.7998369 0.1606827 0.6252316 +0.8636691 0.1606827 0.6252316 +0.9303782 0.1606827 0.6252316 +1 0.1606827 0.6252316 +0 0.1862481 0.6252316 +0.002418731 0.1862481 0.6252316 +0.005155668 0.1862481 0.6252316 +0.009080105 0.1862481 0.6252316 +0.01434988 0.1862481 0.6252316 +0.02107202 0.1862481 0.6252316 +0.02934285 0.1862481 0.6252316 +0.03925039 0.1862481 0.6252316 +0.05087609 0.1862481 0.6252316 +0.06429595 0.1862481 0.6252316 +0.07958143 0.1862481 0.6252316 +0.0968001 0.1862481 0.6252316 +0.1160161 0.1862481 0.6252316 +0.1372908 0.1862481 0.6252316 +0.1606827 0.1862481 0.6252316 +0.1862481 0.1862481 0.6252316 +0.2140411 0.1862481 0.6252316 +0.2441142 0.1862481 0.6252316 +0.2765176 0.1862481 0.6252316 +0.3113005 0.1862481 0.6252316 +0.3485102 0.1862481 0.6252316 +0.388193 0.1862481 0.6252316 +0.4303934 0.1862481 0.6252316 +0.4751555 0.1862481 0.6252316 +0.5225216 0.1862481 0.6252316 +0.5725335 0.1862481 0.6252316 +0.6252316 0.1862481 0.6252316 +0.6806558 0.1862481 0.6252316 +0.7388448 0.1862481 0.6252316 +0.7998369 0.1862481 0.6252316 +0.8636691 0.1862481 0.6252316 +0.9303782 0.1862481 0.6252316 +1 0.1862481 0.6252316 +0 0.2140411 0.6252316 +0.002418731 0.2140411 0.6252316 +0.005155668 0.2140411 0.6252316 +0.009080105 0.2140411 0.6252316 +0.01434988 0.2140411 0.6252316 +0.02107202 0.2140411 0.6252316 +0.02934285 0.2140411 0.6252316 +0.03925039 0.2140411 0.6252316 +0.05087609 0.2140411 0.6252316 +0.06429595 0.2140411 0.6252316 +0.07958143 0.2140411 0.6252316 +0.0968001 0.2140411 0.6252316 +0.1160161 0.2140411 0.6252316 +0.1372908 0.2140411 0.6252316 +0.1606827 0.2140411 0.6252316 +0.1862481 0.2140411 0.6252316 +0.2140411 0.2140411 0.6252316 +0.2441142 0.2140411 0.6252316 +0.2765176 0.2140411 0.6252316 +0.3113005 0.2140411 0.6252316 +0.3485102 0.2140411 0.6252316 +0.388193 0.2140411 0.6252316 +0.4303934 0.2140411 0.6252316 +0.4751555 0.2140411 0.6252316 +0.5225216 0.2140411 0.6252316 +0.5725335 0.2140411 0.6252316 +0.6252316 0.2140411 0.6252316 +0.6806558 0.2140411 0.6252316 +0.7388448 0.2140411 0.6252316 +0.7998369 0.2140411 0.6252316 +0.8636691 0.2140411 0.6252316 +0.9303782 0.2140411 0.6252316 +1 0.2140411 0.6252316 +0 0.2441142 0.6252316 +0.002418731 0.2441142 0.6252316 +0.005155668 0.2441142 0.6252316 +0.009080105 0.2441142 0.6252316 +0.01434988 0.2441142 0.6252316 +0.02107202 0.2441142 0.6252316 +0.02934285 0.2441142 0.6252316 +0.03925039 0.2441142 0.6252316 +0.05087609 0.2441142 0.6252316 +0.06429595 0.2441142 0.6252316 +0.07958143 0.2441142 0.6252316 +0.0968001 0.2441142 0.6252316 +0.1160161 0.2441142 0.6252316 +0.1372908 0.2441142 0.6252316 +0.1606827 0.2441142 0.6252316 +0.1862481 0.2441142 0.6252316 +0.2140411 0.2441142 0.6252316 +0.2441142 0.2441142 0.6252316 +0.2765176 0.2441142 0.6252316 +0.3113005 0.2441142 0.6252316 +0.3485102 0.2441142 0.6252316 +0.388193 0.2441142 0.6252316 +0.4303934 0.2441142 0.6252316 +0.4751555 0.2441142 0.6252316 +0.5225216 0.2441142 0.6252316 +0.5725335 0.2441142 0.6252316 +0.6252316 0.2441142 0.6252316 +0.6806558 0.2441142 0.6252316 +0.7388448 0.2441142 0.6252316 +0.7998369 0.2441142 0.6252316 +0.8636691 0.2441142 0.6252316 +0.9303782 0.2441142 0.6252316 +1 0.2441142 0.6252316 +0 0.2765176 0.6252316 +0.002418731 0.2765176 0.6252316 +0.005155668 0.2765176 0.6252316 +0.009080105 0.2765176 0.6252316 +0.01434988 0.2765176 0.6252316 +0.02107202 0.2765176 0.6252316 +0.02934285 0.2765176 0.6252316 +0.03925039 0.2765176 0.6252316 +0.05087609 0.2765176 0.6252316 +0.06429595 0.2765176 0.6252316 +0.07958143 0.2765176 0.6252316 +0.0968001 0.2765176 0.6252316 +0.1160161 0.2765176 0.6252316 +0.1372908 0.2765176 0.6252316 +0.1606827 0.2765176 0.6252316 +0.1862481 0.2765176 0.6252316 +0.2140411 0.2765176 0.6252316 +0.2441142 0.2765176 0.6252316 +0.2765176 0.2765176 0.6252316 +0.3113005 0.2765176 0.6252316 +0.3485102 0.2765176 0.6252316 +0.388193 0.2765176 0.6252316 +0.4303934 0.2765176 0.6252316 +0.4751555 0.2765176 0.6252316 +0.5225216 0.2765176 0.6252316 +0.5725335 0.2765176 0.6252316 +0.6252316 0.2765176 0.6252316 +0.6806558 0.2765176 0.6252316 +0.7388448 0.2765176 0.6252316 +0.7998369 0.2765176 0.6252316 +0.8636691 0.2765176 0.6252316 +0.9303782 0.2765176 0.6252316 +1 0.2765176 0.6252316 +0 0.3113005 0.6252316 +0.002418731 0.3113005 0.6252316 +0.005155668 0.3113005 0.6252316 +0.009080105 0.3113005 0.6252316 +0.01434988 0.3113005 0.6252316 +0.02107202 0.3113005 0.6252316 +0.02934285 0.3113005 0.6252316 +0.03925039 0.3113005 0.6252316 +0.05087609 0.3113005 0.6252316 +0.06429595 0.3113005 0.6252316 +0.07958143 0.3113005 0.6252316 +0.0968001 0.3113005 0.6252316 +0.1160161 0.3113005 0.6252316 +0.1372908 0.3113005 0.6252316 +0.1606827 0.3113005 0.6252316 +0.1862481 0.3113005 0.6252316 +0.2140411 0.3113005 0.6252316 +0.2441142 0.3113005 0.6252316 +0.2765176 0.3113005 0.6252316 +0.3113005 0.3113005 0.6252316 +0.3485102 0.3113005 0.6252316 +0.388193 0.3113005 0.6252316 +0.4303934 0.3113005 0.6252316 +0.4751555 0.3113005 0.6252316 +0.5225216 0.3113005 0.6252316 +0.5725335 0.3113005 0.6252316 +0.6252316 0.3113005 0.6252316 +0.6806558 0.3113005 0.6252316 +0.7388448 0.3113005 0.6252316 +0.7998369 0.3113005 0.6252316 +0.8636691 0.3113005 0.6252316 +0.9303782 0.3113005 0.6252316 +1 0.3113005 0.6252316 +0 0.3485102 0.6252316 +0.002418731 0.3485102 0.6252316 +0.005155668 0.3485102 0.6252316 +0.009080105 0.3485102 0.6252316 +0.01434988 0.3485102 0.6252316 +0.02107202 0.3485102 0.6252316 +0.02934285 0.3485102 0.6252316 +0.03925039 0.3485102 0.6252316 +0.05087609 0.3485102 0.6252316 +0.06429595 0.3485102 0.6252316 +0.07958143 0.3485102 0.6252316 +0.0968001 0.3485102 0.6252316 +0.1160161 0.3485102 0.6252316 +0.1372908 0.3485102 0.6252316 +0.1606827 0.3485102 0.6252316 +0.1862481 0.3485102 0.6252316 +0.2140411 0.3485102 0.6252316 +0.2441142 0.3485102 0.6252316 +0.2765176 0.3485102 0.6252316 +0.3113005 0.3485102 0.6252316 +0.3485102 0.3485102 0.6252316 +0.388193 0.3485102 0.6252316 +0.4303934 0.3485102 0.6252316 +0.4751555 0.3485102 0.6252316 +0.5225216 0.3485102 0.6252316 +0.5725335 0.3485102 0.6252316 +0.6252316 0.3485102 0.6252316 +0.6806558 0.3485102 0.6252316 +0.7388448 0.3485102 0.6252316 +0.7998369 0.3485102 0.6252316 +0.8636691 0.3485102 0.6252316 +0.9303782 0.3485102 0.6252316 +1 0.3485102 0.6252316 +0 0.388193 0.6252316 +0.002418731 0.388193 0.6252316 +0.005155668 0.388193 0.6252316 +0.009080105 0.388193 0.6252316 +0.01434988 0.388193 0.6252316 +0.02107202 0.388193 0.6252316 +0.02934285 0.388193 0.6252316 +0.03925039 0.388193 0.6252316 +0.05087609 0.388193 0.6252316 +0.06429595 0.388193 0.6252316 +0.07958143 0.388193 0.6252316 +0.0968001 0.388193 0.6252316 +0.1160161 0.388193 0.6252316 +0.1372908 0.388193 0.6252316 +0.1606827 0.388193 0.6252316 +0.1862481 0.388193 0.6252316 +0.2140411 0.388193 0.6252316 +0.2441142 0.388193 0.6252316 +0.2765176 0.388193 0.6252316 +0.3113005 0.388193 0.6252316 +0.3485102 0.388193 0.6252316 +0.388193 0.388193 0.6252316 +0.4303934 0.388193 0.6252316 +0.4751555 0.388193 0.6252316 +0.5225216 0.388193 0.6252316 +0.5725335 0.388193 0.6252316 +0.6252316 0.388193 0.6252316 +0.6806558 0.388193 0.6252316 +0.7388448 0.388193 0.6252316 +0.7998369 0.388193 0.6252316 +0.8636691 0.388193 0.6252316 +0.9303782 0.388193 0.6252316 +1 0.388193 0.6252316 +0 0.4303934 0.6252316 +0.002418731 0.4303934 0.6252316 +0.005155668 0.4303934 0.6252316 +0.009080105 0.4303934 0.6252316 +0.01434988 0.4303934 0.6252316 +0.02107202 0.4303934 0.6252316 +0.02934285 0.4303934 0.6252316 +0.03925039 0.4303934 0.6252316 +0.05087609 0.4303934 0.6252316 +0.06429595 0.4303934 0.6252316 +0.07958143 0.4303934 0.6252316 +0.0968001 0.4303934 0.6252316 +0.1160161 0.4303934 0.6252316 +0.1372908 0.4303934 0.6252316 +0.1606827 0.4303934 0.6252316 +0.1862481 0.4303934 0.6252316 +0.2140411 0.4303934 0.6252316 +0.2441142 0.4303934 0.6252316 +0.2765176 0.4303934 0.6252316 +0.3113005 0.4303934 0.6252316 +0.3485102 0.4303934 0.6252316 +0.388193 0.4303934 0.6252316 +0.4303934 0.4303934 0.6252316 +0.4751555 0.4303934 0.6252316 +0.5225216 0.4303934 0.6252316 +0.5725335 0.4303934 0.6252316 +0.6252316 0.4303934 0.6252316 +0.6806558 0.4303934 0.6252316 +0.7388448 0.4303934 0.6252316 +0.7998369 0.4303934 0.6252316 +0.8636691 0.4303934 0.6252316 +0.9303782 0.4303934 0.6252316 +1 0.4303934 0.6252316 +0 0.4751555 0.6252316 +0.002418731 0.4751555 0.6252316 +0.005155668 0.4751555 0.6252316 +0.009080105 0.4751555 0.6252316 +0.01434988 0.4751555 0.6252316 +0.02107202 0.4751555 0.6252316 +0.02934285 0.4751555 0.6252316 +0.03925039 0.4751555 0.6252316 +0.05087609 0.4751555 0.6252316 +0.06429595 0.4751555 0.6252316 +0.07958143 0.4751555 0.6252316 +0.0968001 0.4751555 0.6252316 +0.1160161 0.4751555 0.6252316 +0.1372908 0.4751555 0.6252316 +0.1606827 0.4751555 0.6252316 +0.1862481 0.4751555 0.6252316 +0.2140411 0.4751555 0.6252316 +0.2441142 0.4751555 0.6252316 +0.2765176 0.4751555 0.6252316 +0.3113005 0.4751555 0.6252316 +0.3485102 0.4751555 0.6252316 +0.388193 0.4751555 0.6252316 +0.4303934 0.4751555 0.6252316 +0.4751555 0.4751555 0.6252316 +0.5225216 0.4751555 0.6252316 +0.5725335 0.4751555 0.6252316 +0.6252316 0.4751555 0.6252316 +0.6806558 0.4751555 0.6252316 +0.7388448 0.4751555 0.6252316 +0.7998369 0.4751555 0.6252316 +0.8636691 0.4751555 0.6252316 +0.9303782 0.4751555 0.6252316 +1 0.4751555 0.6252316 +0 0.5225216 0.6252316 +0.002418731 0.5225216 0.6252316 +0.005155668 0.5225216 0.6252316 +0.009080105 0.5225216 0.6252316 +0.01434988 0.5225216 0.6252316 +0.02107202 0.5225216 0.6252316 +0.02934285 0.5225216 0.6252316 +0.03925039 0.5225216 0.6252316 +0.05087609 0.5225216 0.6252316 +0.06429595 0.5225216 0.6252316 +0.07958143 0.5225216 0.6252316 +0.0968001 0.5225216 0.6252316 +0.1160161 0.5225216 0.6252316 +0.1372908 0.5225216 0.6252316 +0.1606827 0.5225216 0.6252316 +0.1862481 0.5225216 0.6252316 +0.2140411 0.5225216 0.6252316 +0.2441142 0.5225216 0.6252316 +0.2765176 0.5225216 0.6252316 +0.3113005 0.5225216 0.6252316 +0.3485102 0.5225216 0.6252316 +0.388193 0.5225216 0.6252316 +0.4303934 0.5225216 0.6252316 +0.4751555 0.5225216 0.6252316 +0.5225216 0.5225216 0.6252316 +0.5725335 0.5225216 0.6252316 +0.6252316 0.5225216 0.6252316 +0.6806558 0.5225216 0.6252316 +0.7388448 0.5225216 0.6252316 +0.7998369 0.5225216 0.6252316 +0.8636691 0.5225216 0.6252316 +0.9303782 0.5225216 0.6252316 +1 0.5225216 0.6252316 +0 0.5725335 0.6252316 +0.002418731 0.5725335 0.6252316 +0.005155668 0.5725335 0.6252316 +0.009080105 0.5725335 0.6252316 +0.01434988 0.5725335 0.6252316 +0.02107202 0.5725335 0.6252316 +0.02934285 0.5725335 0.6252316 +0.03925039 0.5725335 0.6252316 +0.05087609 0.5725335 0.6252316 +0.06429595 0.5725335 0.6252316 +0.07958143 0.5725335 0.6252316 +0.0968001 0.5725335 0.6252316 +0.1160161 0.5725335 0.6252316 +0.1372908 0.5725335 0.6252316 +0.1606827 0.5725335 0.6252316 +0.1862481 0.5725335 0.6252316 +0.2140411 0.5725335 0.6252316 +0.2441142 0.5725335 0.6252316 +0.2765176 0.5725335 0.6252316 +0.3113005 0.5725335 0.6252316 +0.3485102 0.5725335 0.6252316 +0.388193 0.5725335 0.6252316 +0.4303934 0.5725335 0.6252316 +0.4751555 0.5725335 0.6252316 +0.5225216 0.5725335 0.6252316 +0.5725335 0.5725335 0.6252316 +0.6252316 0.5725335 0.6252316 +0.6806558 0.5725335 0.6252316 +0.7388448 0.5725335 0.6252316 +0.7998369 0.5725335 0.6252316 +0.8636691 0.5725335 0.6252316 +0.9303782 0.5725335 0.6252316 +1 0.5725335 0.6252316 +0 0.6252316 0.6252316 +0.002418731 0.6252316 0.6252316 +0.005155668 0.6252316 0.6252316 +0.009080105 0.6252316 0.6252316 +0.01434988 0.6252316 0.6252316 +0.02107202 0.6252316 0.6252316 +0.02934285 0.6252316 0.6252316 +0.03925039 0.6252316 0.6252316 +0.05087609 0.6252316 0.6252316 +0.06429595 0.6252316 0.6252316 +0.07958143 0.6252316 0.6252316 +0.0968001 0.6252316 0.6252316 +0.1160161 0.6252316 0.6252316 +0.1372908 0.6252316 0.6252316 +0.1606827 0.6252316 0.6252316 +0.1862481 0.6252316 0.6252316 +0.2140411 0.6252316 0.6252316 +0.2441142 0.6252316 0.6252316 +0.2765176 0.6252316 0.6252316 +0.3113005 0.6252316 0.6252316 +0.3485102 0.6252316 0.6252316 +0.388193 0.6252316 0.6252316 +0.4303934 0.6252316 0.6252316 +0.4751555 0.6252316 0.6252316 +0.5225216 0.6252316 0.6252316 +0.5725335 0.6252316 0.6252316 +0.6252316 0.6252316 0.6252316 +0.6806558 0.6252316 0.6252316 +0.7388448 0.6252316 0.6252316 +0.7998369 0.6252316 0.6252316 +0.8636691 0.6252316 0.6252316 +0.9303782 0.6252316 0.6252316 +1 0.6252316 0.6252316 +0 0.6806558 0.6252316 +0.002418731 0.6806558 0.6252316 +0.005155668 0.6806558 0.6252316 +0.009080105 0.6806558 0.6252316 +0.01434988 0.6806558 0.6252316 +0.02107202 0.6806558 0.6252316 +0.02934285 0.6806558 0.6252316 +0.03925039 0.6806558 0.6252316 +0.05087609 0.6806558 0.6252316 +0.06429595 0.6806558 0.6252316 +0.07958143 0.6806558 0.6252316 +0.0968001 0.6806558 0.6252316 +0.1160161 0.6806558 0.6252316 +0.1372908 0.6806558 0.6252316 +0.1606827 0.6806558 0.6252316 +0.1862481 0.6806558 0.6252316 +0.2140411 0.6806558 0.6252316 +0.2441142 0.6806558 0.6252316 +0.2765176 0.6806558 0.6252316 +0.3113005 0.6806558 0.6252316 +0.3485102 0.6806558 0.6252316 +0.388193 0.6806558 0.6252316 +0.4303934 0.6806558 0.6252316 +0.4751555 0.6806558 0.6252316 +0.5225216 0.6806558 0.6252316 +0.5725335 0.6806558 0.6252316 +0.6252316 0.6806558 0.6252316 +0.6806558 0.6806558 0.6252316 +0.7388448 0.6806558 0.6252316 +0.7998369 0.6806558 0.6252316 +0.8636691 0.6806558 0.6252316 +0.9303782 0.6806558 0.6252316 +1 0.6806558 0.6252316 +0 0.7388448 0.6252316 +0.002418731 0.7388448 0.6252316 +0.005155668 0.7388448 0.6252316 +0.009080105 0.7388448 0.6252316 +0.01434988 0.7388448 0.6252316 +0.02107202 0.7388448 0.6252316 +0.02934285 0.7388448 0.6252316 +0.03925039 0.7388448 0.6252316 +0.05087609 0.7388448 0.6252316 +0.06429595 0.7388448 0.6252316 +0.07958143 0.7388448 0.6252316 +0.0968001 0.7388448 0.6252316 +0.1160161 0.7388448 0.6252316 +0.1372908 0.7388448 0.6252316 +0.1606827 0.7388448 0.6252316 +0.1862481 0.7388448 0.6252316 +0.2140411 0.7388448 0.6252316 +0.2441142 0.7388448 0.6252316 +0.2765176 0.7388448 0.6252316 +0.3113005 0.7388448 0.6252316 +0.3485102 0.7388448 0.6252316 +0.388193 0.7388448 0.6252316 +0.4303934 0.7388448 0.6252316 +0.4751555 0.7388448 0.6252316 +0.5225216 0.7388448 0.6252316 +0.5725335 0.7388448 0.6252316 +0.6252316 0.7388448 0.6252316 +0.6806558 0.7388448 0.6252316 +0.7388448 0.7388448 0.6252316 +0.7998369 0.7388448 0.6252316 +0.8636691 0.7388448 0.6252316 +0.9303782 0.7388448 0.6252316 +1 0.7388448 0.6252316 +0 0.7998369 0.6252316 +0.002418731 0.7998369 0.6252316 +0.005155668 0.7998369 0.6252316 +0.009080105 0.7998369 0.6252316 +0.01434988 0.7998369 0.6252316 +0.02107202 0.7998369 0.6252316 +0.02934285 0.7998369 0.6252316 +0.03925039 0.7998369 0.6252316 +0.05087609 0.7998369 0.6252316 +0.06429595 0.7998369 0.6252316 +0.07958143 0.7998369 0.6252316 +0.0968001 0.7998369 0.6252316 +0.1160161 0.7998369 0.6252316 +0.1372908 0.7998369 0.6252316 +0.1606827 0.7998369 0.6252316 +0.1862481 0.7998369 0.6252316 +0.2140411 0.7998369 0.6252316 +0.2441142 0.7998369 0.6252316 +0.2765176 0.7998369 0.6252316 +0.3113005 0.7998369 0.6252316 +0.3485102 0.7998369 0.6252316 +0.388193 0.7998369 0.6252316 +0.4303934 0.7998369 0.6252316 +0.4751555 0.7998369 0.6252316 +0.5225216 0.7998369 0.6252316 +0.5725335 0.7998369 0.6252316 +0.6252316 0.7998369 0.6252316 +0.6806558 0.7998369 0.6252316 +0.7388448 0.7998369 0.6252316 +0.7998369 0.7998369 0.6252316 +0.8636691 0.7998369 0.6252316 +0.9303782 0.7998369 0.6252316 +1 0.7998369 0.6252316 +0 0.8636691 0.6252316 +0.002418731 0.8636691 0.6252316 +0.005155668 0.8636691 0.6252316 +0.009080105 0.8636691 0.6252316 +0.01434988 0.8636691 0.6252316 +0.02107202 0.8636691 0.6252316 +0.02934285 0.8636691 0.6252316 +0.03925039 0.8636691 0.6252316 +0.05087609 0.8636691 0.6252316 +0.06429595 0.8636691 0.6252316 +0.07958143 0.8636691 0.6252316 +0.0968001 0.8636691 0.6252316 +0.1160161 0.8636691 0.6252316 +0.1372908 0.8636691 0.6252316 +0.1606827 0.8636691 0.6252316 +0.1862481 0.8636691 0.6252316 +0.2140411 0.8636691 0.6252316 +0.2441142 0.8636691 0.6252316 +0.2765176 0.8636691 0.6252316 +0.3113005 0.8636691 0.6252316 +0.3485102 0.8636691 0.6252316 +0.388193 0.8636691 0.6252316 +0.4303934 0.8636691 0.6252316 +0.4751555 0.8636691 0.6252316 +0.5225216 0.8636691 0.6252316 +0.5725335 0.8636691 0.6252316 +0.6252316 0.8636691 0.6252316 +0.6806558 0.8636691 0.6252316 +0.7388448 0.8636691 0.6252316 +0.7998369 0.8636691 0.6252316 +0.8636691 0.8636691 0.6252316 +0.9303782 0.8636691 0.6252316 +1 0.8636691 0.6252316 +0 0.9303782 0.6252316 +0.002418731 0.9303782 0.6252316 +0.005155668 0.9303782 0.6252316 +0.009080105 0.9303782 0.6252316 +0.01434988 0.9303782 0.6252316 +0.02107202 0.9303782 0.6252316 +0.02934285 0.9303782 0.6252316 +0.03925039 0.9303782 0.6252316 +0.05087609 0.9303782 0.6252316 +0.06429595 0.9303782 0.6252316 +0.07958143 0.9303782 0.6252316 +0.0968001 0.9303782 0.6252316 +0.1160161 0.9303782 0.6252316 +0.1372908 0.9303782 0.6252316 +0.1606827 0.9303782 0.6252316 +0.1862481 0.9303782 0.6252316 +0.2140411 0.9303782 0.6252316 +0.2441142 0.9303782 0.6252316 +0.2765176 0.9303782 0.6252316 +0.3113005 0.9303782 0.6252316 +0.3485102 0.9303782 0.6252316 +0.388193 0.9303782 0.6252316 +0.4303934 0.9303782 0.6252316 +0.4751555 0.9303782 0.6252316 +0.5225216 0.9303782 0.6252316 +0.5725335 0.9303782 0.6252316 +0.6252316 0.9303782 0.6252316 +0.6806558 0.9303782 0.6252316 +0.7388448 0.9303782 0.6252316 +0.7998369 0.9303782 0.6252316 +0.8636691 0.9303782 0.6252316 +0.9303782 0.9303782 0.6252316 +1 0.9303782 0.6252316 +0 1 0.6252316 +0.002418731 1 0.6252316 +0.005155668 1 0.6252316 +0.009080105 1 0.6252316 +0.01434988 1 0.6252316 +0.02107202 1 0.6252316 +0.02934285 1 0.6252316 +0.03925039 1 0.6252316 +0.05087609 1 0.6252316 +0.06429595 1 0.6252316 +0.07958143 1 0.6252316 +0.0968001 1 0.6252316 +0.1160161 1 0.6252316 +0.1372908 1 0.6252316 +0.1606827 1 0.6252316 +0.1862481 1 0.6252316 +0.2140411 1 0.6252316 +0.2441142 1 0.6252316 +0.2765176 1 0.6252316 +0.3113005 1 0.6252316 +0.3485102 1 0.6252316 +0.388193 1 0.6252316 +0.4303934 1 0.6252316 +0.4751555 1 0.6252316 +0.5225216 1 0.6252316 +0.5725335 1 0.6252316 +0.6252316 1 0.6252316 +0.6806558 1 0.6252316 +0.7388448 1 0.6252316 +0.7998369 1 0.6252316 +0.8636691 1 0.6252316 +0.9303782 1 0.6252316 +1 1 0.6252316 +0 0 0.6806558 +0.002418731 0 0.6806558 +0.005155668 0 0.6806558 +0.009080105 0 0.6806558 +0.01434988 0 0.6806558 +0.02107202 0 0.6806558 +0.02934285 0 0.6806558 +0.03925039 0 0.6806558 +0.05087609 0 0.6806558 +0.06429595 0 0.6806558 +0.07958143 0 0.6806558 +0.0968001 0 0.6806558 +0.1160161 0 0.6806558 +0.1372908 0 0.6806558 +0.1606827 0 0.6806558 +0.1862481 0 0.6806558 +0.2140411 0 0.6806558 +0.2441142 0 0.6806558 +0.2765176 0 0.6806558 +0.3113005 0 0.6806558 +0.3485102 0 0.6806558 +0.388193 0 0.6806558 +0.4303934 0 0.6806558 +0.4751555 0 0.6806558 +0.5225216 0 0.6806558 +0.5725335 0 0.6806558 +0.6252316 0 0.6806558 +0.6806558 0 0.6806558 +0.7388448 0 0.6806558 +0.7998369 0 0.6806558 +0.8636691 0 0.6806558 +0.9303782 0 0.6806558 +1 0 0.6806558 +0 0.002418731 0.6806558 +0.002418731 0.002418731 0.6806558 +0.005155668 0.002418731 0.6806558 +0.009080105 0.002418731 0.6806558 +0.01434988 0.002418731 0.6806558 +0.02107202 0.002418731 0.6806558 +0.02934285 0.002418731 0.6806558 +0.03925039 0.002418731 0.6806558 +0.05087609 0.002418731 0.6806558 +0.06429595 0.002418731 0.6806558 +0.07958143 0.002418731 0.6806558 +0.0968001 0.002418731 0.6806558 +0.1160161 0.002418731 0.6806558 +0.1372908 0.002418731 0.6806558 +0.1606827 0.002418731 0.6806558 +0.1862481 0.002418731 0.6806558 +0.2140411 0.002418731 0.6806558 +0.2441142 0.002418731 0.6806558 +0.2765176 0.002418731 0.6806558 +0.3113005 0.002418731 0.6806558 +0.3485102 0.002418731 0.6806558 +0.388193 0.002418731 0.6806558 +0.4303934 0.002418731 0.6806558 +0.4751555 0.002418731 0.6806558 +0.5225216 0.002418731 0.6806558 +0.5725335 0.002418731 0.6806558 +0.6252316 0.002418731 0.6806558 +0.6806558 0.002418731 0.6806558 +0.7388448 0.002418731 0.6806558 +0.7998369 0.002418731 0.6806558 +0.8636691 0.002418731 0.6806558 +0.9303782 0.002418731 0.6806558 +1 0.002418731 0.6806558 +0 0.005155668 0.6806558 +0.002418731 0.005155668 0.6806558 +0.005155668 0.005155668 0.6806558 +0.009080105 0.005155668 0.6806558 +0.01434988 0.005155668 0.6806558 +0.02107202 0.005155668 0.6806558 +0.02934285 0.005155668 0.6806558 +0.03925039 0.005155668 0.6806558 +0.05087609 0.005155668 0.6806558 +0.06429595 0.005155668 0.6806558 +0.07958143 0.005155668 0.6806558 +0.0968001 0.005155668 0.6806558 +0.1160161 0.005155668 0.6806558 +0.1372908 0.005155668 0.6806558 +0.1606827 0.005155668 0.6806558 +0.1862481 0.005155668 0.6806558 +0.2140411 0.005155668 0.6806558 +0.2441142 0.005155668 0.6806558 +0.2765176 0.005155668 0.6806558 +0.3113005 0.005155668 0.6806558 +0.3485102 0.005155668 0.6806558 +0.388193 0.005155668 0.6806558 +0.4303934 0.005155668 0.6806558 +0.4751555 0.005155668 0.6806558 +0.5225216 0.005155668 0.6806558 +0.5725335 0.005155668 0.6806558 +0.6252316 0.005155668 0.6806558 +0.6806558 0.005155668 0.6806558 +0.7388448 0.005155668 0.6806558 +0.7998369 0.005155668 0.6806558 +0.8636691 0.005155668 0.6806558 +0.9303782 0.005155668 0.6806558 +1 0.005155668 0.6806558 +0 0.009080105 0.6806558 +0.002418731 0.009080105 0.6806558 +0.005155668 0.009080105 0.6806558 +0.009080105 0.009080105 0.6806558 +0.01434988 0.009080105 0.6806558 +0.02107202 0.009080105 0.6806558 +0.02934285 0.009080105 0.6806558 +0.03925039 0.009080105 0.6806558 +0.05087609 0.009080105 0.6806558 +0.06429595 0.009080105 0.6806558 +0.07958143 0.009080105 0.6806558 +0.0968001 0.009080105 0.6806558 +0.1160161 0.009080105 0.6806558 +0.1372908 0.009080105 0.6806558 +0.1606827 0.009080105 0.6806558 +0.1862481 0.009080105 0.6806558 +0.2140411 0.009080105 0.6806558 +0.2441142 0.009080105 0.6806558 +0.2765176 0.009080105 0.6806558 +0.3113005 0.009080105 0.6806558 +0.3485102 0.009080105 0.6806558 +0.388193 0.009080105 0.6806558 +0.4303934 0.009080105 0.6806558 +0.4751555 0.009080105 0.6806558 +0.5225216 0.009080105 0.6806558 +0.5725335 0.009080105 0.6806558 +0.6252316 0.009080105 0.6806558 +0.6806558 0.009080105 0.6806558 +0.7388448 0.009080105 0.6806558 +0.7998369 0.009080105 0.6806558 +0.8636691 0.009080105 0.6806558 +0.9303782 0.009080105 0.6806558 +1 0.009080105 0.6806558 +0 0.01434988 0.6806558 +0.002418731 0.01434988 0.6806558 +0.005155668 0.01434988 0.6806558 +0.009080105 0.01434988 0.6806558 +0.01434988 0.01434988 0.6806558 +0.02107202 0.01434988 0.6806558 +0.02934285 0.01434988 0.6806558 +0.03925039 0.01434988 0.6806558 +0.05087609 0.01434988 0.6806558 +0.06429595 0.01434988 0.6806558 +0.07958143 0.01434988 0.6806558 +0.0968001 0.01434988 0.6806558 +0.1160161 0.01434988 0.6806558 +0.1372908 0.01434988 0.6806558 +0.1606827 0.01434988 0.6806558 +0.1862481 0.01434988 0.6806558 +0.2140411 0.01434988 0.6806558 +0.2441142 0.01434988 0.6806558 +0.2765176 0.01434988 0.6806558 +0.3113005 0.01434988 0.6806558 +0.3485102 0.01434988 0.6806558 +0.388193 0.01434988 0.6806558 +0.4303934 0.01434988 0.6806558 +0.4751555 0.01434988 0.6806558 +0.5225216 0.01434988 0.6806558 +0.5725335 0.01434988 0.6806558 +0.6252316 0.01434988 0.6806558 +0.6806558 0.01434988 0.6806558 +0.7388448 0.01434988 0.6806558 +0.7998369 0.01434988 0.6806558 +0.8636691 0.01434988 0.6806558 +0.9303782 0.01434988 0.6806558 +1 0.01434988 0.6806558 +0 0.02107202 0.6806558 +0.002418731 0.02107202 0.6806558 +0.005155668 0.02107202 0.6806558 +0.009080105 0.02107202 0.6806558 +0.01434988 0.02107202 0.6806558 +0.02107202 0.02107202 0.6806558 +0.02934285 0.02107202 0.6806558 +0.03925039 0.02107202 0.6806558 +0.05087609 0.02107202 0.6806558 +0.06429595 0.02107202 0.6806558 +0.07958143 0.02107202 0.6806558 +0.0968001 0.02107202 0.6806558 +0.1160161 0.02107202 0.6806558 +0.1372908 0.02107202 0.6806558 +0.1606827 0.02107202 0.6806558 +0.1862481 0.02107202 0.6806558 +0.2140411 0.02107202 0.6806558 +0.2441142 0.02107202 0.6806558 +0.2765176 0.02107202 0.6806558 +0.3113005 0.02107202 0.6806558 +0.3485102 0.02107202 0.6806558 +0.388193 0.02107202 0.6806558 +0.4303934 0.02107202 0.6806558 +0.4751555 0.02107202 0.6806558 +0.5225216 0.02107202 0.6806558 +0.5725335 0.02107202 0.6806558 +0.6252316 0.02107202 0.6806558 +0.6806558 0.02107202 0.6806558 +0.7388448 0.02107202 0.6806558 +0.7998369 0.02107202 0.6806558 +0.8636691 0.02107202 0.6806558 +0.9303782 0.02107202 0.6806558 +1 0.02107202 0.6806558 +0 0.02934285 0.6806558 +0.002418731 0.02934285 0.6806558 +0.005155668 0.02934285 0.6806558 +0.009080105 0.02934285 0.6806558 +0.01434988 0.02934285 0.6806558 +0.02107202 0.02934285 0.6806558 +0.02934285 0.02934285 0.6806558 +0.03925039 0.02934285 0.6806558 +0.05087609 0.02934285 0.6806558 +0.06429595 0.02934285 0.6806558 +0.07958143 0.02934285 0.6806558 +0.0968001 0.02934285 0.6806558 +0.1160161 0.02934285 0.6806558 +0.1372908 0.02934285 0.6806558 +0.1606827 0.02934285 0.6806558 +0.1862481 0.02934285 0.6806558 +0.2140411 0.02934285 0.6806558 +0.2441142 0.02934285 0.6806558 +0.2765176 0.02934285 0.6806558 +0.3113005 0.02934285 0.6806558 +0.3485102 0.02934285 0.6806558 +0.388193 0.02934285 0.6806558 +0.4303934 0.02934285 0.6806558 +0.4751555 0.02934285 0.6806558 +0.5225216 0.02934285 0.6806558 +0.5725335 0.02934285 0.6806558 +0.6252316 0.02934285 0.6806558 +0.6806558 0.02934285 0.6806558 +0.7388448 0.02934285 0.6806558 +0.7998369 0.02934285 0.6806558 +0.8636691 0.02934285 0.6806558 +0.9303782 0.02934285 0.6806558 +1 0.02934285 0.6806558 +0 0.03925039 0.6806558 +0.002418731 0.03925039 0.6806558 +0.005155668 0.03925039 0.6806558 +0.009080105 0.03925039 0.6806558 +0.01434988 0.03925039 0.6806558 +0.02107202 0.03925039 0.6806558 +0.02934285 0.03925039 0.6806558 +0.03925039 0.03925039 0.6806558 +0.05087609 0.03925039 0.6806558 +0.06429595 0.03925039 0.6806558 +0.07958143 0.03925039 0.6806558 +0.0968001 0.03925039 0.6806558 +0.1160161 0.03925039 0.6806558 +0.1372908 0.03925039 0.6806558 +0.1606827 0.03925039 0.6806558 +0.1862481 0.03925039 0.6806558 +0.2140411 0.03925039 0.6806558 +0.2441142 0.03925039 0.6806558 +0.2765176 0.03925039 0.6806558 +0.3113005 0.03925039 0.6806558 +0.3485102 0.03925039 0.6806558 +0.388193 0.03925039 0.6806558 +0.4303934 0.03925039 0.6806558 +0.4751555 0.03925039 0.6806558 +0.5225216 0.03925039 0.6806558 +0.5725335 0.03925039 0.6806558 +0.6252316 0.03925039 0.6806558 +0.6806558 0.03925039 0.6806558 +0.7388448 0.03925039 0.6806558 +0.7998369 0.03925039 0.6806558 +0.8636691 0.03925039 0.6806558 +0.9303782 0.03925039 0.6806558 +1 0.03925039 0.6806558 +0 0.05087609 0.6806558 +0.002418731 0.05087609 0.6806558 +0.005155668 0.05087609 0.6806558 +0.009080105 0.05087609 0.6806558 +0.01434988 0.05087609 0.6806558 +0.02107202 0.05087609 0.6806558 +0.02934285 0.05087609 0.6806558 +0.03925039 0.05087609 0.6806558 +0.05087609 0.05087609 0.6806558 +0.06429595 0.05087609 0.6806558 +0.07958143 0.05087609 0.6806558 +0.0968001 0.05087609 0.6806558 +0.1160161 0.05087609 0.6806558 +0.1372908 0.05087609 0.6806558 +0.1606827 0.05087609 0.6806558 +0.1862481 0.05087609 0.6806558 +0.2140411 0.05087609 0.6806558 +0.2441142 0.05087609 0.6806558 +0.2765176 0.05087609 0.6806558 +0.3113005 0.05087609 0.6806558 +0.3485102 0.05087609 0.6806558 +0.388193 0.05087609 0.6806558 +0.4303934 0.05087609 0.6806558 +0.4751555 0.05087609 0.6806558 +0.5225216 0.05087609 0.6806558 +0.5725335 0.05087609 0.6806558 +0.6252316 0.05087609 0.6806558 +0.6806558 0.05087609 0.6806558 +0.7388448 0.05087609 0.6806558 +0.7998369 0.05087609 0.6806558 +0.8636691 0.05087609 0.6806558 +0.9303782 0.05087609 0.6806558 +1 0.05087609 0.6806558 +0 0.06429595 0.6806558 +0.002418731 0.06429595 0.6806558 +0.005155668 0.06429595 0.6806558 +0.009080105 0.06429595 0.6806558 +0.01434988 0.06429595 0.6806558 +0.02107202 0.06429595 0.6806558 +0.02934285 0.06429595 0.6806558 +0.03925039 0.06429595 0.6806558 +0.05087609 0.06429595 0.6806558 +0.06429595 0.06429595 0.6806558 +0.07958143 0.06429595 0.6806558 +0.0968001 0.06429595 0.6806558 +0.1160161 0.06429595 0.6806558 +0.1372908 0.06429595 0.6806558 +0.1606827 0.06429595 0.6806558 +0.1862481 0.06429595 0.6806558 +0.2140411 0.06429595 0.6806558 +0.2441142 0.06429595 0.6806558 +0.2765176 0.06429595 0.6806558 +0.3113005 0.06429595 0.6806558 +0.3485102 0.06429595 0.6806558 +0.388193 0.06429595 0.6806558 +0.4303934 0.06429595 0.6806558 +0.4751555 0.06429595 0.6806558 +0.5225216 0.06429595 0.6806558 +0.5725335 0.06429595 0.6806558 +0.6252316 0.06429595 0.6806558 +0.6806558 0.06429595 0.6806558 +0.7388448 0.06429595 0.6806558 +0.7998369 0.06429595 0.6806558 +0.8636691 0.06429595 0.6806558 +0.9303782 0.06429595 0.6806558 +1 0.06429595 0.6806558 +0 0.07958143 0.6806558 +0.002418731 0.07958143 0.6806558 +0.005155668 0.07958143 0.6806558 +0.009080105 0.07958143 0.6806558 +0.01434988 0.07958143 0.6806558 +0.02107202 0.07958143 0.6806558 +0.02934285 0.07958143 0.6806558 +0.03925039 0.07958143 0.6806558 +0.05087609 0.07958143 0.6806558 +0.06429595 0.07958143 0.6806558 +0.07958143 0.07958143 0.6806558 +0.0968001 0.07958143 0.6806558 +0.1160161 0.07958143 0.6806558 +0.1372908 0.07958143 0.6806558 +0.1606827 0.07958143 0.6806558 +0.1862481 0.07958143 0.6806558 +0.2140411 0.07958143 0.6806558 +0.2441142 0.07958143 0.6806558 +0.2765176 0.07958143 0.6806558 +0.3113005 0.07958143 0.6806558 +0.3485102 0.07958143 0.6806558 +0.388193 0.07958143 0.6806558 +0.4303934 0.07958143 0.6806558 +0.4751555 0.07958143 0.6806558 +0.5225216 0.07958143 0.6806558 +0.5725335 0.07958143 0.6806558 +0.6252316 0.07958143 0.6806558 +0.6806558 0.07958143 0.6806558 +0.7388448 0.07958143 0.6806558 +0.7998369 0.07958143 0.6806558 +0.8636691 0.07958143 0.6806558 +0.9303782 0.07958143 0.6806558 +1 0.07958143 0.6806558 +0 0.0968001 0.6806558 +0.002418731 0.0968001 0.6806558 +0.005155668 0.0968001 0.6806558 +0.009080105 0.0968001 0.6806558 +0.01434988 0.0968001 0.6806558 +0.02107202 0.0968001 0.6806558 +0.02934285 0.0968001 0.6806558 +0.03925039 0.0968001 0.6806558 +0.05087609 0.0968001 0.6806558 +0.06429595 0.0968001 0.6806558 +0.07958143 0.0968001 0.6806558 +0.0968001 0.0968001 0.6806558 +0.1160161 0.0968001 0.6806558 +0.1372908 0.0968001 0.6806558 +0.1606827 0.0968001 0.6806558 +0.1862481 0.0968001 0.6806558 +0.2140411 0.0968001 0.6806558 +0.2441142 0.0968001 0.6806558 +0.2765176 0.0968001 0.6806558 +0.3113005 0.0968001 0.6806558 +0.3485102 0.0968001 0.6806558 +0.388193 0.0968001 0.6806558 +0.4303934 0.0968001 0.6806558 +0.4751555 0.0968001 0.6806558 +0.5225216 0.0968001 0.6806558 +0.5725335 0.0968001 0.6806558 +0.6252316 0.0968001 0.6806558 +0.6806558 0.0968001 0.6806558 +0.7388448 0.0968001 0.6806558 +0.7998369 0.0968001 0.6806558 +0.8636691 0.0968001 0.6806558 +0.9303782 0.0968001 0.6806558 +1 0.0968001 0.6806558 +0 0.1160161 0.6806558 +0.002418731 0.1160161 0.6806558 +0.005155668 0.1160161 0.6806558 +0.009080105 0.1160161 0.6806558 +0.01434988 0.1160161 0.6806558 +0.02107202 0.1160161 0.6806558 +0.02934285 0.1160161 0.6806558 +0.03925039 0.1160161 0.6806558 +0.05087609 0.1160161 0.6806558 +0.06429595 0.1160161 0.6806558 +0.07958143 0.1160161 0.6806558 +0.0968001 0.1160161 0.6806558 +0.1160161 0.1160161 0.6806558 +0.1372908 0.1160161 0.6806558 +0.1606827 0.1160161 0.6806558 +0.1862481 0.1160161 0.6806558 +0.2140411 0.1160161 0.6806558 +0.2441142 0.1160161 0.6806558 +0.2765176 0.1160161 0.6806558 +0.3113005 0.1160161 0.6806558 +0.3485102 0.1160161 0.6806558 +0.388193 0.1160161 0.6806558 +0.4303934 0.1160161 0.6806558 +0.4751555 0.1160161 0.6806558 +0.5225216 0.1160161 0.6806558 +0.5725335 0.1160161 0.6806558 +0.6252316 0.1160161 0.6806558 +0.6806558 0.1160161 0.6806558 +0.7388448 0.1160161 0.6806558 +0.7998369 0.1160161 0.6806558 +0.8636691 0.1160161 0.6806558 +0.9303782 0.1160161 0.6806558 +1 0.1160161 0.6806558 +0 0.1372908 0.6806558 +0.002418731 0.1372908 0.6806558 +0.005155668 0.1372908 0.6806558 +0.009080105 0.1372908 0.6806558 +0.01434988 0.1372908 0.6806558 +0.02107202 0.1372908 0.6806558 +0.02934285 0.1372908 0.6806558 +0.03925039 0.1372908 0.6806558 +0.05087609 0.1372908 0.6806558 +0.06429595 0.1372908 0.6806558 +0.07958143 0.1372908 0.6806558 +0.0968001 0.1372908 0.6806558 +0.1160161 0.1372908 0.6806558 +0.1372908 0.1372908 0.6806558 +0.1606827 0.1372908 0.6806558 +0.1862481 0.1372908 0.6806558 +0.2140411 0.1372908 0.6806558 +0.2441142 0.1372908 0.6806558 +0.2765176 0.1372908 0.6806558 +0.3113005 0.1372908 0.6806558 +0.3485102 0.1372908 0.6806558 +0.388193 0.1372908 0.6806558 +0.4303934 0.1372908 0.6806558 +0.4751555 0.1372908 0.6806558 +0.5225216 0.1372908 0.6806558 +0.5725335 0.1372908 0.6806558 +0.6252316 0.1372908 0.6806558 +0.6806558 0.1372908 0.6806558 +0.7388448 0.1372908 0.6806558 +0.7998369 0.1372908 0.6806558 +0.8636691 0.1372908 0.6806558 +0.9303782 0.1372908 0.6806558 +1 0.1372908 0.6806558 +0 0.1606827 0.6806558 +0.002418731 0.1606827 0.6806558 +0.005155668 0.1606827 0.6806558 +0.009080105 0.1606827 0.6806558 +0.01434988 0.1606827 0.6806558 +0.02107202 0.1606827 0.6806558 +0.02934285 0.1606827 0.6806558 +0.03925039 0.1606827 0.6806558 +0.05087609 0.1606827 0.6806558 +0.06429595 0.1606827 0.6806558 +0.07958143 0.1606827 0.6806558 +0.0968001 0.1606827 0.6806558 +0.1160161 0.1606827 0.6806558 +0.1372908 0.1606827 0.6806558 +0.1606827 0.1606827 0.6806558 +0.1862481 0.1606827 0.6806558 +0.2140411 0.1606827 0.6806558 +0.2441142 0.1606827 0.6806558 +0.2765176 0.1606827 0.6806558 +0.3113005 0.1606827 0.6806558 +0.3485102 0.1606827 0.6806558 +0.388193 0.1606827 0.6806558 +0.4303934 0.1606827 0.6806558 +0.4751555 0.1606827 0.6806558 +0.5225216 0.1606827 0.6806558 +0.5725335 0.1606827 0.6806558 +0.6252316 0.1606827 0.6806558 +0.6806558 0.1606827 0.6806558 +0.7388448 0.1606827 0.6806558 +0.7998369 0.1606827 0.6806558 +0.8636691 0.1606827 0.6806558 +0.9303782 0.1606827 0.6806558 +1 0.1606827 0.6806558 +0 0.1862481 0.6806558 +0.002418731 0.1862481 0.6806558 +0.005155668 0.1862481 0.6806558 +0.009080105 0.1862481 0.6806558 +0.01434988 0.1862481 0.6806558 +0.02107202 0.1862481 0.6806558 +0.02934285 0.1862481 0.6806558 +0.03925039 0.1862481 0.6806558 +0.05087609 0.1862481 0.6806558 +0.06429595 0.1862481 0.6806558 +0.07958143 0.1862481 0.6806558 +0.0968001 0.1862481 0.6806558 +0.1160161 0.1862481 0.6806558 +0.1372908 0.1862481 0.6806558 +0.1606827 0.1862481 0.6806558 +0.1862481 0.1862481 0.6806558 +0.2140411 0.1862481 0.6806558 +0.2441142 0.1862481 0.6806558 +0.2765176 0.1862481 0.6806558 +0.3113005 0.1862481 0.6806558 +0.3485102 0.1862481 0.6806558 +0.388193 0.1862481 0.6806558 +0.4303934 0.1862481 0.6806558 +0.4751555 0.1862481 0.6806558 +0.5225216 0.1862481 0.6806558 +0.5725335 0.1862481 0.6806558 +0.6252316 0.1862481 0.6806558 +0.6806558 0.1862481 0.6806558 +0.7388448 0.1862481 0.6806558 +0.7998369 0.1862481 0.6806558 +0.8636691 0.1862481 0.6806558 +0.9303782 0.1862481 0.6806558 +1 0.1862481 0.6806558 +0 0.2140411 0.6806558 +0.002418731 0.2140411 0.6806558 +0.005155668 0.2140411 0.6806558 +0.009080105 0.2140411 0.6806558 +0.01434988 0.2140411 0.6806558 +0.02107202 0.2140411 0.6806558 +0.02934285 0.2140411 0.6806558 +0.03925039 0.2140411 0.6806558 +0.05087609 0.2140411 0.6806558 +0.06429595 0.2140411 0.6806558 +0.07958143 0.2140411 0.6806558 +0.0968001 0.2140411 0.6806558 +0.1160161 0.2140411 0.6806558 +0.1372908 0.2140411 0.6806558 +0.1606827 0.2140411 0.6806558 +0.1862481 0.2140411 0.6806558 +0.2140411 0.2140411 0.6806558 +0.2441142 0.2140411 0.6806558 +0.2765176 0.2140411 0.6806558 +0.3113005 0.2140411 0.6806558 +0.3485102 0.2140411 0.6806558 +0.388193 0.2140411 0.6806558 +0.4303934 0.2140411 0.6806558 +0.4751555 0.2140411 0.6806558 +0.5225216 0.2140411 0.6806558 +0.5725335 0.2140411 0.6806558 +0.6252316 0.2140411 0.6806558 +0.6806558 0.2140411 0.6806558 +0.7388448 0.2140411 0.6806558 +0.7998369 0.2140411 0.6806558 +0.8636691 0.2140411 0.6806558 +0.9303782 0.2140411 0.6806558 +1 0.2140411 0.6806558 +0 0.2441142 0.6806558 +0.002418731 0.2441142 0.6806558 +0.005155668 0.2441142 0.6806558 +0.009080105 0.2441142 0.6806558 +0.01434988 0.2441142 0.6806558 +0.02107202 0.2441142 0.6806558 +0.02934285 0.2441142 0.6806558 +0.03925039 0.2441142 0.6806558 +0.05087609 0.2441142 0.6806558 +0.06429595 0.2441142 0.6806558 +0.07958143 0.2441142 0.6806558 +0.0968001 0.2441142 0.6806558 +0.1160161 0.2441142 0.6806558 +0.1372908 0.2441142 0.6806558 +0.1606827 0.2441142 0.6806558 +0.1862481 0.2441142 0.6806558 +0.2140411 0.2441142 0.6806558 +0.2441142 0.2441142 0.6806558 +0.2765176 0.2441142 0.6806558 +0.3113005 0.2441142 0.6806558 +0.3485102 0.2441142 0.6806558 +0.388193 0.2441142 0.6806558 +0.4303934 0.2441142 0.6806558 +0.4751555 0.2441142 0.6806558 +0.5225216 0.2441142 0.6806558 +0.5725335 0.2441142 0.6806558 +0.6252316 0.2441142 0.6806558 +0.6806558 0.2441142 0.6806558 +0.7388448 0.2441142 0.6806558 +0.7998369 0.2441142 0.6806558 +0.8636691 0.2441142 0.6806558 +0.9303782 0.2441142 0.6806558 +1 0.2441142 0.6806558 +0 0.2765176 0.6806558 +0.002418731 0.2765176 0.6806558 +0.005155668 0.2765176 0.6806558 +0.009080105 0.2765176 0.6806558 +0.01434988 0.2765176 0.6806558 +0.02107202 0.2765176 0.6806558 +0.02934285 0.2765176 0.6806558 +0.03925039 0.2765176 0.6806558 +0.05087609 0.2765176 0.6806558 +0.06429595 0.2765176 0.6806558 +0.07958143 0.2765176 0.6806558 +0.0968001 0.2765176 0.6806558 +0.1160161 0.2765176 0.6806558 +0.1372908 0.2765176 0.6806558 +0.1606827 0.2765176 0.6806558 +0.1862481 0.2765176 0.6806558 +0.2140411 0.2765176 0.6806558 +0.2441142 0.2765176 0.6806558 +0.2765176 0.2765176 0.6806558 +0.3113005 0.2765176 0.6806558 +0.3485102 0.2765176 0.6806558 +0.388193 0.2765176 0.6806558 +0.4303934 0.2765176 0.6806558 +0.4751555 0.2765176 0.6806558 +0.5225216 0.2765176 0.6806558 +0.5725335 0.2765176 0.6806558 +0.6252316 0.2765176 0.6806558 +0.6806558 0.2765176 0.6806558 +0.7388448 0.2765176 0.6806558 +0.7998369 0.2765176 0.6806558 +0.8636691 0.2765176 0.6806558 +0.9303782 0.2765176 0.6806558 +1 0.2765176 0.6806558 +0 0.3113005 0.6806558 +0.002418731 0.3113005 0.6806558 +0.005155668 0.3113005 0.6806558 +0.009080105 0.3113005 0.6806558 +0.01434988 0.3113005 0.6806558 +0.02107202 0.3113005 0.6806558 +0.02934285 0.3113005 0.6806558 +0.03925039 0.3113005 0.6806558 +0.05087609 0.3113005 0.6806558 +0.06429595 0.3113005 0.6806558 +0.07958143 0.3113005 0.6806558 +0.0968001 0.3113005 0.6806558 +0.1160161 0.3113005 0.6806558 +0.1372908 0.3113005 0.6806558 +0.1606827 0.3113005 0.6806558 +0.1862481 0.3113005 0.6806558 +0.2140411 0.3113005 0.6806558 +0.2441142 0.3113005 0.6806558 +0.2765176 0.3113005 0.6806558 +0.3113005 0.3113005 0.6806558 +0.3485102 0.3113005 0.6806558 +0.388193 0.3113005 0.6806558 +0.4303934 0.3113005 0.6806558 +0.4751555 0.3113005 0.6806558 +0.5225216 0.3113005 0.6806558 +0.5725335 0.3113005 0.6806558 +0.6252316 0.3113005 0.6806558 +0.6806558 0.3113005 0.6806558 +0.7388448 0.3113005 0.6806558 +0.7998369 0.3113005 0.6806558 +0.8636691 0.3113005 0.6806558 +0.9303782 0.3113005 0.6806558 +1 0.3113005 0.6806558 +0 0.3485102 0.6806558 +0.002418731 0.3485102 0.6806558 +0.005155668 0.3485102 0.6806558 +0.009080105 0.3485102 0.6806558 +0.01434988 0.3485102 0.6806558 +0.02107202 0.3485102 0.6806558 +0.02934285 0.3485102 0.6806558 +0.03925039 0.3485102 0.6806558 +0.05087609 0.3485102 0.6806558 +0.06429595 0.3485102 0.6806558 +0.07958143 0.3485102 0.6806558 +0.0968001 0.3485102 0.6806558 +0.1160161 0.3485102 0.6806558 +0.1372908 0.3485102 0.6806558 +0.1606827 0.3485102 0.6806558 +0.1862481 0.3485102 0.6806558 +0.2140411 0.3485102 0.6806558 +0.2441142 0.3485102 0.6806558 +0.2765176 0.3485102 0.6806558 +0.3113005 0.3485102 0.6806558 +0.3485102 0.3485102 0.6806558 +0.388193 0.3485102 0.6806558 +0.4303934 0.3485102 0.6806558 +0.4751555 0.3485102 0.6806558 +0.5225216 0.3485102 0.6806558 +0.5725335 0.3485102 0.6806558 +0.6252316 0.3485102 0.6806558 +0.6806558 0.3485102 0.6806558 +0.7388448 0.3485102 0.6806558 +0.7998369 0.3485102 0.6806558 +0.8636691 0.3485102 0.6806558 +0.9303782 0.3485102 0.6806558 +1 0.3485102 0.6806558 +0 0.388193 0.6806558 +0.002418731 0.388193 0.6806558 +0.005155668 0.388193 0.6806558 +0.009080105 0.388193 0.6806558 +0.01434988 0.388193 0.6806558 +0.02107202 0.388193 0.6806558 +0.02934285 0.388193 0.6806558 +0.03925039 0.388193 0.6806558 +0.05087609 0.388193 0.6806558 +0.06429595 0.388193 0.6806558 +0.07958143 0.388193 0.6806558 +0.0968001 0.388193 0.6806558 +0.1160161 0.388193 0.6806558 +0.1372908 0.388193 0.6806558 +0.1606827 0.388193 0.6806558 +0.1862481 0.388193 0.6806558 +0.2140411 0.388193 0.6806558 +0.2441142 0.388193 0.6806558 +0.2765176 0.388193 0.6806558 +0.3113005 0.388193 0.6806558 +0.3485102 0.388193 0.6806558 +0.388193 0.388193 0.6806558 +0.4303934 0.388193 0.6806558 +0.4751555 0.388193 0.6806558 +0.5225216 0.388193 0.6806558 +0.5725335 0.388193 0.6806558 +0.6252316 0.388193 0.6806558 +0.6806558 0.388193 0.6806558 +0.7388448 0.388193 0.6806558 +0.7998369 0.388193 0.6806558 +0.8636691 0.388193 0.6806558 +0.9303782 0.388193 0.6806558 +1 0.388193 0.6806558 +0 0.4303934 0.6806558 +0.002418731 0.4303934 0.6806558 +0.005155668 0.4303934 0.6806558 +0.009080105 0.4303934 0.6806558 +0.01434988 0.4303934 0.6806558 +0.02107202 0.4303934 0.6806558 +0.02934285 0.4303934 0.6806558 +0.03925039 0.4303934 0.6806558 +0.05087609 0.4303934 0.6806558 +0.06429595 0.4303934 0.6806558 +0.07958143 0.4303934 0.6806558 +0.0968001 0.4303934 0.6806558 +0.1160161 0.4303934 0.6806558 +0.1372908 0.4303934 0.6806558 +0.1606827 0.4303934 0.6806558 +0.1862481 0.4303934 0.6806558 +0.2140411 0.4303934 0.6806558 +0.2441142 0.4303934 0.6806558 +0.2765176 0.4303934 0.6806558 +0.3113005 0.4303934 0.6806558 +0.3485102 0.4303934 0.6806558 +0.388193 0.4303934 0.6806558 +0.4303934 0.4303934 0.6806558 +0.4751555 0.4303934 0.6806558 +0.5225216 0.4303934 0.6806558 +0.5725335 0.4303934 0.6806558 +0.6252316 0.4303934 0.6806558 +0.6806558 0.4303934 0.6806558 +0.7388448 0.4303934 0.6806558 +0.7998369 0.4303934 0.6806558 +0.8636691 0.4303934 0.6806558 +0.9303782 0.4303934 0.6806558 +1 0.4303934 0.6806558 +0 0.4751555 0.6806558 +0.002418731 0.4751555 0.6806558 +0.005155668 0.4751555 0.6806558 +0.009080105 0.4751555 0.6806558 +0.01434988 0.4751555 0.6806558 +0.02107202 0.4751555 0.6806558 +0.02934285 0.4751555 0.6806558 +0.03925039 0.4751555 0.6806558 +0.05087609 0.4751555 0.6806558 +0.06429595 0.4751555 0.6806558 +0.07958143 0.4751555 0.6806558 +0.0968001 0.4751555 0.6806558 +0.1160161 0.4751555 0.6806558 +0.1372908 0.4751555 0.6806558 +0.1606827 0.4751555 0.6806558 +0.1862481 0.4751555 0.6806558 +0.2140411 0.4751555 0.6806558 +0.2441142 0.4751555 0.6806558 +0.2765176 0.4751555 0.6806558 +0.3113005 0.4751555 0.6806558 +0.3485102 0.4751555 0.6806558 +0.388193 0.4751555 0.6806558 +0.4303934 0.4751555 0.6806558 +0.4751555 0.4751555 0.6806558 +0.5225216 0.4751555 0.6806558 +0.5725335 0.4751555 0.6806558 +0.6252316 0.4751555 0.6806558 +0.6806558 0.4751555 0.6806558 +0.7388448 0.4751555 0.6806558 +0.7998369 0.4751555 0.6806558 +0.8636691 0.4751555 0.6806558 +0.9303782 0.4751555 0.6806558 +1 0.4751555 0.6806558 +0 0.5225216 0.6806558 +0.002418731 0.5225216 0.6806558 +0.005155668 0.5225216 0.6806558 +0.009080105 0.5225216 0.6806558 +0.01434988 0.5225216 0.6806558 +0.02107202 0.5225216 0.6806558 +0.02934285 0.5225216 0.6806558 +0.03925039 0.5225216 0.6806558 +0.05087609 0.5225216 0.6806558 +0.06429595 0.5225216 0.6806558 +0.07958143 0.5225216 0.6806558 +0.0968001 0.5225216 0.6806558 +0.1160161 0.5225216 0.6806558 +0.1372908 0.5225216 0.6806558 +0.1606827 0.5225216 0.6806558 +0.1862481 0.5225216 0.6806558 +0.2140411 0.5225216 0.6806558 +0.2441142 0.5225216 0.6806558 +0.2765176 0.5225216 0.6806558 +0.3113005 0.5225216 0.6806558 +0.3485102 0.5225216 0.6806558 +0.388193 0.5225216 0.6806558 +0.4303934 0.5225216 0.6806558 +0.4751555 0.5225216 0.6806558 +0.5225216 0.5225216 0.6806558 +0.5725335 0.5225216 0.6806558 +0.6252316 0.5225216 0.6806558 +0.6806558 0.5225216 0.6806558 +0.7388448 0.5225216 0.6806558 +0.7998369 0.5225216 0.6806558 +0.8636691 0.5225216 0.6806558 +0.9303782 0.5225216 0.6806558 +1 0.5225216 0.6806558 +0 0.5725335 0.6806558 +0.002418731 0.5725335 0.6806558 +0.005155668 0.5725335 0.6806558 +0.009080105 0.5725335 0.6806558 +0.01434988 0.5725335 0.6806558 +0.02107202 0.5725335 0.6806558 +0.02934285 0.5725335 0.6806558 +0.03925039 0.5725335 0.6806558 +0.05087609 0.5725335 0.6806558 +0.06429595 0.5725335 0.6806558 +0.07958143 0.5725335 0.6806558 +0.0968001 0.5725335 0.6806558 +0.1160161 0.5725335 0.6806558 +0.1372908 0.5725335 0.6806558 +0.1606827 0.5725335 0.6806558 +0.1862481 0.5725335 0.6806558 +0.2140411 0.5725335 0.6806558 +0.2441142 0.5725335 0.6806558 +0.2765176 0.5725335 0.6806558 +0.3113005 0.5725335 0.6806558 +0.3485102 0.5725335 0.6806558 +0.388193 0.5725335 0.6806558 +0.4303934 0.5725335 0.6806558 +0.4751555 0.5725335 0.6806558 +0.5225216 0.5725335 0.6806558 +0.5725335 0.5725335 0.6806558 +0.6252316 0.5725335 0.6806558 +0.6806558 0.5725335 0.6806558 +0.7388448 0.5725335 0.6806558 +0.7998369 0.5725335 0.6806558 +0.8636691 0.5725335 0.6806558 +0.9303782 0.5725335 0.6806558 +1 0.5725335 0.6806558 +0 0.6252316 0.6806558 +0.002418731 0.6252316 0.6806558 +0.005155668 0.6252316 0.6806558 +0.009080105 0.6252316 0.6806558 +0.01434988 0.6252316 0.6806558 +0.02107202 0.6252316 0.6806558 +0.02934285 0.6252316 0.6806558 +0.03925039 0.6252316 0.6806558 +0.05087609 0.6252316 0.6806558 +0.06429595 0.6252316 0.6806558 +0.07958143 0.6252316 0.6806558 +0.0968001 0.6252316 0.6806558 +0.1160161 0.6252316 0.6806558 +0.1372908 0.6252316 0.6806558 +0.1606827 0.6252316 0.6806558 +0.1862481 0.6252316 0.6806558 +0.2140411 0.6252316 0.6806558 +0.2441142 0.6252316 0.6806558 +0.2765176 0.6252316 0.6806558 +0.3113005 0.6252316 0.6806558 +0.3485102 0.6252316 0.6806558 +0.388193 0.6252316 0.6806558 +0.4303934 0.6252316 0.6806558 +0.4751555 0.6252316 0.6806558 +0.5225216 0.6252316 0.6806558 +0.5725335 0.6252316 0.6806558 +0.6252316 0.6252316 0.6806558 +0.6806558 0.6252316 0.6806558 +0.7388448 0.6252316 0.6806558 +0.7998369 0.6252316 0.6806558 +0.8636691 0.6252316 0.6806558 +0.9303782 0.6252316 0.6806558 +1 0.6252316 0.6806558 +0 0.6806558 0.6806558 +0.002418731 0.6806558 0.6806558 +0.005155668 0.6806558 0.6806558 +0.009080105 0.6806558 0.6806558 +0.01434988 0.6806558 0.6806558 +0.02107202 0.6806558 0.6806558 +0.02934285 0.6806558 0.6806558 +0.03925039 0.6806558 0.6806558 +0.05087609 0.6806558 0.6806558 +0.06429595 0.6806558 0.6806558 +0.07958143 0.6806558 0.6806558 +0.0968001 0.6806558 0.6806558 +0.1160161 0.6806558 0.6806558 +0.1372908 0.6806558 0.6806558 +0.1606827 0.6806558 0.6806558 +0.1862481 0.6806558 0.6806558 +0.2140411 0.6806558 0.6806558 +0.2441142 0.6806558 0.6806558 +0.2765176 0.6806558 0.6806558 +0.3113005 0.6806558 0.6806558 +0.3485102 0.6806558 0.6806558 +0.388193 0.6806558 0.6806558 +0.4303934 0.6806558 0.6806558 +0.4751555 0.6806558 0.6806558 +0.5225216 0.6806558 0.6806558 +0.5725335 0.6806558 0.6806558 +0.6252316 0.6806558 0.6806558 +0.6806558 0.6806558 0.6806558 +0.7388448 0.6806558 0.6806558 +0.7998369 0.6806558 0.6806558 +0.8636691 0.6806558 0.6806558 +0.9303782 0.6806558 0.6806558 +1 0.6806558 0.6806558 +0 0.7388448 0.6806558 +0.002418731 0.7388448 0.6806558 +0.005155668 0.7388448 0.6806558 +0.009080105 0.7388448 0.6806558 +0.01434988 0.7388448 0.6806558 +0.02107202 0.7388448 0.6806558 +0.02934285 0.7388448 0.6806558 +0.03925039 0.7388448 0.6806558 +0.05087609 0.7388448 0.6806558 +0.06429595 0.7388448 0.6806558 +0.07958143 0.7388448 0.6806558 +0.0968001 0.7388448 0.6806558 +0.1160161 0.7388448 0.6806558 +0.1372908 0.7388448 0.6806558 +0.1606827 0.7388448 0.6806558 +0.1862481 0.7388448 0.6806558 +0.2140411 0.7388448 0.6806558 +0.2441142 0.7388448 0.6806558 +0.2765176 0.7388448 0.6806558 +0.3113005 0.7388448 0.6806558 +0.3485102 0.7388448 0.6806558 +0.388193 0.7388448 0.6806558 +0.4303934 0.7388448 0.6806558 +0.4751555 0.7388448 0.6806558 +0.5225216 0.7388448 0.6806558 +0.5725335 0.7388448 0.6806558 +0.6252316 0.7388448 0.6806558 +0.6806558 0.7388448 0.6806558 +0.7388448 0.7388448 0.6806558 +0.7998369 0.7388448 0.6806558 +0.8636691 0.7388448 0.6806558 +0.9303782 0.7388448 0.6806558 +1 0.7388448 0.6806558 +0 0.7998369 0.6806558 +0.002418731 0.7998369 0.6806558 +0.005155668 0.7998369 0.6806558 +0.009080105 0.7998369 0.6806558 +0.01434988 0.7998369 0.6806558 +0.02107202 0.7998369 0.6806558 +0.02934285 0.7998369 0.6806558 +0.03925039 0.7998369 0.6806558 +0.05087609 0.7998369 0.6806558 +0.06429595 0.7998369 0.6806558 +0.07958143 0.7998369 0.6806558 +0.0968001 0.7998369 0.6806558 +0.1160161 0.7998369 0.6806558 +0.1372908 0.7998369 0.6806558 +0.1606827 0.7998369 0.6806558 +0.1862481 0.7998369 0.6806558 +0.2140411 0.7998369 0.6806558 +0.2441142 0.7998369 0.6806558 +0.2765176 0.7998369 0.6806558 +0.3113005 0.7998369 0.6806558 +0.3485102 0.7998369 0.6806558 +0.388193 0.7998369 0.6806558 +0.4303934 0.7998369 0.6806558 +0.4751555 0.7998369 0.6806558 +0.5225216 0.7998369 0.6806558 +0.5725335 0.7998369 0.6806558 +0.6252316 0.7998369 0.6806558 +0.6806558 0.7998369 0.6806558 +0.7388448 0.7998369 0.6806558 +0.7998369 0.7998369 0.6806558 +0.8636691 0.7998369 0.6806558 +0.9303782 0.7998369 0.6806558 +1 0.7998369 0.6806558 +0 0.8636691 0.6806558 +0.002418731 0.8636691 0.6806558 +0.005155668 0.8636691 0.6806558 +0.009080105 0.8636691 0.6806558 +0.01434988 0.8636691 0.6806558 +0.02107202 0.8636691 0.6806558 +0.02934285 0.8636691 0.6806558 +0.03925039 0.8636691 0.6806558 +0.05087609 0.8636691 0.6806558 +0.06429595 0.8636691 0.6806558 +0.07958143 0.8636691 0.6806558 +0.0968001 0.8636691 0.6806558 +0.1160161 0.8636691 0.6806558 +0.1372908 0.8636691 0.6806558 +0.1606827 0.8636691 0.6806558 +0.1862481 0.8636691 0.6806558 +0.2140411 0.8636691 0.6806558 +0.2441142 0.8636691 0.6806558 +0.2765176 0.8636691 0.6806558 +0.3113005 0.8636691 0.6806558 +0.3485102 0.8636691 0.6806558 +0.388193 0.8636691 0.6806558 +0.4303934 0.8636691 0.6806558 +0.4751555 0.8636691 0.6806558 +0.5225216 0.8636691 0.6806558 +0.5725335 0.8636691 0.6806558 +0.6252316 0.8636691 0.6806558 +0.6806558 0.8636691 0.6806558 +0.7388448 0.8636691 0.6806558 +0.7998369 0.8636691 0.6806558 +0.8636691 0.8636691 0.6806558 +0.9303782 0.8636691 0.6806558 +1 0.8636691 0.6806558 +0 0.9303782 0.6806558 +0.002418731 0.9303782 0.6806558 +0.005155668 0.9303782 0.6806558 +0.009080105 0.9303782 0.6806558 +0.01434988 0.9303782 0.6806558 +0.02107202 0.9303782 0.6806558 +0.02934285 0.9303782 0.6806558 +0.03925039 0.9303782 0.6806558 +0.05087609 0.9303782 0.6806558 +0.06429595 0.9303782 0.6806558 +0.07958143 0.9303782 0.6806558 +0.0968001 0.9303782 0.6806558 +0.1160161 0.9303782 0.6806558 +0.1372908 0.9303782 0.6806558 +0.1606827 0.9303782 0.6806558 +0.1862481 0.9303782 0.6806558 +0.2140411 0.9303782 0.6806558 +0.2441142 0.9303782 0.6806558 +0.2765176 0.9303782 0.6806558 +0.3113005 0.9303782 0.6806558 +0.3485102 0.9303782 0.6806558 +0.388193 0.9303782 0.6806558 +0.4303934 0.9303782 0.6806558 +0.4751555 0.9303782 0.6806558 +0.5225216 0.9303782 0.6806558 +0.5725335 0.9303782 0.6806558 +0.6252316 0.9303782 0.6806558 +0.6806558 0.9303782 0.6806558 +0.7388448 0.9303782 0.6806558 +0.7998369 0.9303782 0.6806558 +0.8636691 0.9303782 0.6806558 +0.9303782 0.9303782 0.6806558 +1 0.9303782 0.6806558 +0 1 0.6806558 +0.002418731 1 0.6806558 +0.005155668 1 0.6806558 +0.009080105 1 0.6806558 +0.01434988 1 0.6806558 +0.02107202 1 0.6806558 +0.02934285 1 0.6806558 +0.03925039 1 0.6806558 +0.05087609 1 0.6806558 +0.06429595 1 0.6806558 +0.07958143 1 0.6806558 +0.0968001 1 0.6806558 +0.1160161 1 0.6806558 +0.1372908 1 0.6806558 +0.1606827 1 0.6806558 +0.1862481 1 0.6806558 +0.2140411 1 0.6806558 +0.2441142 1 0.6806558 +0.2765176 1 0.6806558 +0.3113005 1 0.6806558 +0.3485102 1 0.6806558 +0.388193 1 0.6806558 +0.4303934 1 0.6806558 +0.4751555 1 0.6806558 +0.5225216 1 0.6806558 +0.5725335 1 0.6806558 +0.6252316 1 0.6806558 +0.6806558 1 0.6806558 +0.7388448 1 0.6806558 +0.7998369 1 0.6806558 +0.8636691 1 0.6806558 +0.9303782 1 0.6806558 +1 1 0.6806558 +0 0 0.7388448 +0.002418731 0 0.7388448 +0.005155668 0 0.7388448 +0.009080105 0 0.7388448 +0.01434988 0 0.7388448 +0.02107202 0 0.7388448 +0.02934285 0 0.7388448 +0.03925039 0 0.7388448 +0.05087609 0 0.7388448 +0.06429595 0 0.7388448 +0.07958143 0 0.7388448 +0.0968001 0 0.7388448 +0.1160161 0 0.7388448 +0.1372908 0 0.7388448 +0.1606827 0 0.7388448 +0.1862481 0 0.7388448 +0.2140411 0 0.7388448 +0.2441142 0 0.7388448 +0.2765176 0 0.7388448 +0.3113005 0 0.7388448 +0.3485102 0 0.7388448 +0.388193 0 0.7388448 +0.4303934 0 0.7388448 +0.4751555 0 0.7388448 +0.5225216 0 0.7388448 +0.5725335 0 0.7388448 +0.6252316 0 0.7388448 +0.6806558 0 0.7388448 +0.7388448 0 0.7388448 +0.7998369 0 0.7388448 +0.8636691 0 0.7388448 +0.9303782 0 0.7388448 +1 0 0.7388448 +0 0.002418731 0.7388448 +0.002418731 0.002418731 0.7388448 +0.005155668 0.002418731 0.7388448 +0.009080105 0.002418731 0.7388448 +0.01434988 0.002418731 0.7388448 +0.02107202 0.002418731 0.7388448 +0.02934285 0.002418731 0.7388448 +0.03925039 0.002418731 0.7388448 +0.05087609 0.002418731 0.7388448 +0.06429595 0.002418731 0.7388448 +0.07958143 0.002418731 0.7388448 +0.0968001 0.002418731 0.7388448 +0.1160161 0.002418731 0.7388448 +0.1372908 0.002418731 0.7388448 +0.1606827 0.002418731 0.7388448 +0.1862481 0.002418731 0.7388448 +0.2140411 0.002418731 0.7388448 +0.2441142 0.002418731 0.7388448 +0.2765176 0.002418731 0.7388448 +0.3113005 0.002418731 0.7388448 +0.3485102 0.002418731 0.7388448 +0.388193 0.002418731 0.7388448 +0.4303934 0.002418731 0.7388448 +0.4751555 0.002418731 0.7388448 +0.5225216 0.002418731 0.7388448 +0.5725335 0.002418731 0.7388448 +0.6252316 0.002418731 0.7388448 +0.6806558 0.002418731 0.7388448 +0.7388448 0.002418731 0.7388448 +0.7998369 0.002418731 0.7388448 +0.8636691 0.002418731 0.7388448 +0.9303782 0.002418731 0.7388448 +1 0.002418731 0.7388448 +0 0.005155668 0.7388448 +0.002418731 0.005155668 0.7388448 +0.005155668 0.005155668 0.7388448 +0.009080105 0.005155668 0.7388448 +0.01434988 0.005155668 0.7388448 +0.02107202 0.005155668 0.7388448 +0.02934285 0.005155668 0.7388448 +0.03925039 0.005155668 0.7388448 +0.05087609 0.005155668 0.7388448 +0.06429595 0.005155668 0.7388448 +0.07958143 0.005155668 0.7388448 +0.0968001 0.005155668 0.7388448 +0.1160161 0.005155668 0.7388448 +0.1372908 0.005155668 0.7388448 +0.1606827 0.005155668 0.7388448 +0.1862481 0.005155668 0.7388448 +0.2140411 0.005155668 0.7388448 +0.2441142 0.005155668 0.7388448 +0.2765176 0.005155668 0.7388448 +0.3113005 0.005155668 0.7388448 +0.3485102 0.005155668 0.7388448 +0.388193 0.005155668 0.7388448 +0.4303934 0.005155668 0.7388448 +0.4751555 0.005155668 0.7388448 +0.5225216 0.005155668 0.7388448 +0.5725335 0.005155668 0.7388448 +0.6252316 0.005155668 0.7388448 +0.6806558 0.005155668 0.7388448 +0.7388448 0.005155668 0.7388448 +0.7998369 0.005155668 0.7388448 +0.8636691 0.005155668 0.7388448 +0.9303782 0.005155668 0.7388448 +1 0.005155668 0.7388448 +0 0.009080105 0.7388448 +0.002418731 0.009080105 0.7388448 +0.005155668 0.009080105 0.7388448 +0.009080105 0.009080105 0.7388448 +0.01434988 0.009080105 0.7388448 +0.02107202 0.009080105 0.7388448 +0.02934285 0.009080105 0.7388448 +0.03925039 0.009080105 0.7388448 +0.05087609 0.009080105 0.7388448 +0.06429595 0.009080105 0.7388448 +0.07958143 0.009080105 0.7388448 +0.0968001 0.009080105 0.7388448 +0.1160161 0.009080105 0.7388448 +0.1372908 0.009080105 0.7388448 +0.1606827 0.009080105 0.7388448 +0.1862481 0.009080105 0.7388448 +0.2140411 0.009080105 0.7388448 +0.2441142 0.009080105 0.7388448 +0.2765176 0.009080105 0.7388448 +0.3113005 0.009080105 0.7388448 +0.3485102 0.009080105 0.7388448 +0.388193 0.009080105 0.7388448 +0.4303934 0.009080105 0.7388448 +0.4751555 0.009080105 0.7388448 +0.5225216 0.009080105 0.7388448 +0.5725335 0.009080105 0.7388448 +0.6252316 0.009080105 0.7388448 +0.6806558 0.009080105 0.7388448 +0.7388448 0.009080105 0.7388448 +0.7998369 0.009080105 0.7388448 +0.8636691 0.009080105 0.7388448 +0.9303782 0.009080105 0.7388448 +1 0.009080105 0.7388448 +0 0.01434988 0.7388448 +0.002418731 0.01434988 0.7388448 +0.005155668 0.01434988 0.7388448 +0.009080105 0.01434988 0.7388448 +0.01434988 0.01434988 0.7388448 +0.02107202 0.01434988 0.7388448 +0.02934285 0.01434988 0.7388448 +0.03925039 0.01434988 0.7388448 +0.05087609 0.01434988 0.7388448 +0.06429595 0.01434988 0.7388448 +0.07958143 0.01434988 0.7388448 +0.0968001 0.01434988 0.7388448 +0.1160161 0.01434988 0.7388448 +0.1372908 0.01434988 0.7388448 +0.1606827 0.01434988 0.7388448 +0.1862481 0.01434988 0.7388448 +0.2140411 0.01434988 0.7388448 +0.2441142 0.01434988 0.7388448 +0.2765176 0.01434988 0.7388448 +0.3113005 0.01434988 0.7388448 +0.3485102 0.01434988 0.7388448 +0.388193 0.01434988 0.7388448 +0.4303934 0.01434988 0.7388448 +0.4751555 0.01434988 0.7388448 +0.5225216 0.01434988 0.7388448 +0.5725335 0.01434988 0.7388448 +0.6252316 0.01434988 0.7388448 +0.6806558 0.01434988 0.7388448 +0.7388448 0.01434988 0.7388448 +0.7998369 0.01434988 0.7388448 +0.8636691 0.01434988 0.7388448 +0.9303782 0.01434988 0.7388448 +1 0.01434988 0.7388448 +0 0.02107202 0.7388448 +0.002418731 0.02107202 0.7388448 +0.005155668 0.02107202 0.7388448 +0.009080105 0.02107202 0.7388448 +0.01434988 0.02107202 0.7388448 +0.02107202 0.02107202 0.7388448 +0.02934285 0.02107202 0.7388448 +0.03925039 0.02107202 0.7388448 +0.05087609 0.02107202 0.7388448 +0.06429595 0.02107202 0.7388448 +0.07958143 0.02107202 0.7388448 +0.0968001 0.02107202 0.7388448 +0.1160161 0.02107202 0.7388448 +0.1372908 0.02107202 0.7388448 +0.1606827 0.02107202 0.7388448 +0.1862481 0.02107202 0.7388448 +0.2140411 0.02107202 0.7388448 +0.2441142 0.02107202 0.7388448 +0.2765176 0.02107202 0.7388448 +0.3113005 0.02107202 0.7388448 +0.3485102 0.02107202 0.7388448 +0.388193 0.02107202 0.7388448 +0.4303934 0.02107202 0.7388448 +0.4751555 0.02107202 0.7388448 +0.5225216 0.02107202 0.7388448 +0.5725335 0.02107202 0.7388448 +0.6252316 0.02107202 0.7388448 +0.6806558 0.02107202 0.7388448 +0.7388448 0.02107202 0.7388448 +0.7998369 0.02107202 0.7388448 +0.8636691 0.02107202 0.7388448 +0.9303782 0.02107202 0.7388448 +1 0.02107202 0.7388448 +0 0.02934285 0.7388448 +0.002418731 0.02934285 0.7388448 +0.005155668 0.02934285 0.7388448 +0.009080105 0.02934285 0.7388448 +0.01434988 0.02934285 0.7388448 +0.02107202 0.02934285 0.7388448 +0.02934285 0.02934285 0.7388448 +0.03925039 0.02934285 0.7388448 +0.05087609 0.02934285 0.7388448 +0.06429595 0.02934285 0.7388448 +0.07958143 0.02934285 0.7388448 +0.0968001 0.02934285 0.7388448 +0.1160161 0.02934285 0.7388448 +0.1372908 0.02934285 0.7388448 +0.1606827 0.02934285 0.7388448 +0.1862481 0.02934285 0.7388448 +0.2140411 0.02934285 0.7388448 +0.2441142 0.02934285 0.7388448 +0.2765176 0.02934285 0.7388448 +0.3113005 0.02934285 0.7388448 +0.3485102 0.02934285 0.7388448 +0.388193 0.02934285 0.7388448 +0.4303934 0.02934285 0.7388448 +0.4751555 0.02934285 0.7388448 +0.5225216 0.02934285 0.7388448 +0.5725335 0.02934285 0.7388448 +0.6252316 0.02934285 0.7388448 +0.6806558 0.02934285 0.7388448 +0.7388448 0.02934285 0.7388448 +0.7998369 0.02934285 0.7388448 +0.8636691 0.02934285 0.7388448 +0.9303782 0.02934285 0.7388448 +1 0.02934285 0.7388448 +0 0.03925039 0.7388448 +0.002418731 0.03925039 0.7388448 +0.005155668 0.03925039 0.7388448 +0.009080105 0.03925039 0.7388448 +0.01434988 0.03925039 0.7388448 +0.02107202 0.03925039 0.7388448 +0.02934285 0.03925039 0.7388448 +0.03925039 0.03925039 0.7388448 +0.05087609 0.03925039 0.7388448 +0.06429595 0.03925039 0.7388448 +0.07958143 0.03925039 0.7388448 +0.0968001 0.03925039 0.7388448 +0.1160161 0.03925039 0.7388448 +0.1372908 0.03925039 0.7388448 +0.1606827 0.03925039 0.7388448 +0.1862481 0.03925039 0.7388448 +0.2140411 0.03925039 0.7388448 +0.2441142 0.03925039 0.7388448 +0.2765176 0.03925039 0.7388448 +0.3113005 0.03925039 0.7388448 +0.3485102 0.03925039 0.7388448 +0.388193 0.03925039 0.7388448 +0.4303934 0.03925039 0.7388448 +0.4751555 0.03925039 0.7388448 +0.5225216 0.03925039 0.7388448 +0.5725335 0.03925039 0.7388448 +0.6252316 0.03925039 0.7388448 +0.6806558 0.03925039 0.7388448 +0.7388448 0.03925039 0.7388448 +0.7998369 0.03925039 0.7388448 +0.8636691 0.03925039 0.7388448 +0.9303782 0.03925039 0.7388448 +1 0.03925039 0.7388448 +0 0.05087609 0.7388448 +0.002418731 0.05087609 0.7388448 +0.005155668 0.05087609 0.7388448 +0.009080105 0.05087609 0.7388448 +0.01434988 0.05087609 0.7388448 +0.02107202 0.05087609 0.7388448 +0.02934285 0.05087609 0.7388448 +0.03925039 0.05087609 0.7388448 +0.05087609 0.05087609 0.7388448 +0.06429595 0.05087609 0.7388448 +0.07958143 0.05087609 0.7388448 +0.0968001 0.05087609 0.7388448 +0.1160161 0.05087609 0.7388448 +0.1372908 0.05087609 0.7388448 +0.1606827 0.05087609 0.7388448 +0.1862481 0.05087609 0.7388448 +0.2140411 0.05087609 0.7388448 +0.2441142 0.05087609 0.7388448 +0.2765176 0.05087609 0.7388448 +0.3113005 0.05087609 0.7388448 +0.3485102 0.05087609 0.7388448 +0.388193 0.05087609 0.7388448 +0.4303934 0.05087609 0.7388448 +0.4751555 0.05087609 0.7388448 +0.5225216 0.05087609 0.7388448 +0.5725335 0.05087609 0.7388448 +0.6252316 0.05087609 0.7388448 +0.6806558 0.05087609 0.7388448 +0.7388448 0.05087609 0.7388448 +0.7998369 0.05087609 0.7388448 +0.8636691 0.05087609 0.7388448 +0.9303782 0.05087609 0.7388448 +1 0.05087609 0.7388448 +0 0.06429595 0.7388448 +0.002418731 0.06429595 0.7388448 +0.005155668 0.06429595 0.7388448 +0.009080105 0.06429595 0.7388448 +0.01434988 0.06429595 0.7388448 +0.02107202 0.06429595 0.7388448 +0.02934285 0.06429595 0.7388448 +0.03925039 0.06429595 0.7388448 +0.05087609 0.06429595 0.7388448 +0.06429595 0.06429595 0.7388448 +0.07958143 0.06429595 0.7388448 +0.0968001 0.06429595 0.7388448 +0.1160161 0.06429595 0.7388448 +0.1372908 0.06429595 0.7388448 +0.1606827 0.06429595 0.7388448 +0.1862481 0.06429595 0.7388448 +0.2140411 0.06429595 0.7388448 +0.2441142 0.06429595 0.7388448 +0.2765176 0.06429595 0.7388448 +0.3113005 0.06429595 0.7388448 +0.3485102 0.06429595 0.7388448 +0.388193 0.06429595 0.7388448 +0.4303934 0.06429595 0.7388448 +0.4751555 0.06429595 0.7388448 +0.5225216 0.06429595 0.7388448 +0.5725335 0.06429595 0.7388448 +0.6252316 0.06429595 0.7388448 +0.6806558 0.06429595 0.7388448 +0.7388448 0.06429595 0.7388448 +0.7998369 0.06429595 0.7388448 +0.8636691 0.06429595 0.7388448 +0.9303782 0.06429595 0.7388448 +1 0.06429595 0.7388448 +0 0.07958143 0.7388448 +0.002418731 0.07958143 0.7388448 +0.005155668 0.07958143 0.7388448 +0.009080105 0.07958143 0.7388448 +0.01434988 0.07958143 0.7388448 +0.02107202 0.07958143 0.7388448 +0.02934285 0.07958143 0.7388448 +0.03925039 0.07958143 0.7388448 +0.05087609 0.07958143 0.7388448 +0.06429595 0.07958143 0.7388448 +0.07958143 0.07958143 0.7388448 +0.0968001 0.07958143 0.7388448 +0.1160161 0.07958143 0.7388448 +0.1372908 0.07958143 0.7388448 +0.1606827 0.07958143 0.7388448 +0.1862481 0.07958143 0.7388448 +0.2140411 0.07958143 0.7388448 +0.2441142 0.07958143 0.7388448 +0.2765176 0.07958143 0.7388448 +0.3113005 0.07958143 0.7388448 +0.3485102 0.07958143 0.7388448 +0.388193 0.07958143 0.7388448 +0.4303934 0.07958143 0.7388448 +0.4751555 0.07958143 0.7388448 +0.5225216 0.07958143 0.7388448 +0.5725335 0.07958143 0.7388448 +0.6252316 0.07958143 0.7388448 +0.6806558 0.07958143 0.7388448 +0.7388448 0.07958143 0.7388448 +0.7998369 0.07958143 0.7388448 +0.8636691 0.07958143 0.7388448 +0.9303782 0.07958143 0.7388448 +1 0.07958143 0.7388448 +0 0.0968001 0.7388448 +0.002418731 0.0968001 0.7388448 +0.005155668 0.0968001 0.7388448 +0.009080105 0.0968001 0.7388448 +0.01434988 0.0968001 0.7388448 +0.02107202 0.0968001 0.7388448 +0.02934285 0.0968001 0.7388448 +0.03925039 0.0968001 0.7388448 +0.05087609 0.0968001 0.7388448 +0.06429595 0.0968001 0.7388448 +0.07958143 0.0968001 0.7388448 +0.0968001 0.0968001 0.7388448 +0.1160161 0.0968001 0.7388448 +0.1372908 0.0968001 0.7388448 +0.1606827 0.0968001 0.7388448 +0.1862481 0.0968001 0.7388448 +0.2140411 0.0968001 0.7388448 +0.2441142 0.0968001 0.7388448 +0.2765176 0.0968001 0.7388448 +0.3113005 0.0968001 0.7388448 +0.3485102 0.0968001 0.7388448 +0.388193 0.0968001 0.7388448 +0.4303934 0.0968001 0.7388448 +0.4751555 0.0968001 0.7388448 +0.5225216 0.0968001 0.7388448 +0.5725335 0.0968001 0.7388448 +0.6252316 0.0968001 0.7388448 +0.6806558 0.0968001 0.7388448 +0.7388448 0.0968001 0.7388448 +0.7998369 0.0968001 0.7388448 +0.8636691 0.0968001 0.7388448 +0.9303782 0.0968001 0.7388448 +1 0.0968001 0.7388448 +0 0.1160161 0.7388448 +0.002418731 0.1160161 0.7388448 +0.005155668 0.1160161 0.7388448 +0.009080105 0.1160161 0.7388448 +0.01434988 0.1160161 0.7388448 +0.02107202 0.1160161 0.7388448 +0.02934285 0.1160161 0.7388448 +0.03925039 0.1160161 0.7388448 +0.05087609 0.1160161 0.7388448 +0.06429595 0.1160161 0.7388448 +0.07958143 0.1160161 0.7388448 +0.0968001 0.1160161 0.7388448 +0.1160161 0.1160161 0.7388448 +0.1372908 0.1160161 0.7388448 +0.1606827 0.1160161 0.7388448 +0.1862481 0.1160161 0.7388448 +0.2140411 0.1160161 0.7388448 +0.2441142 0.1160161 0.7388448 +0.2765176 0.1160161 0.7388448 +0.3113005 0.1160161 0.7388448 +0.3485102 0.1160161 0.7388448 +0.388193 0.1160161 0.7388448 +0.4303934 0.1160161 0.7388448 +0.4751555 0.1160161 0.7388448 +0.5225216 0.1160161 0.7388448 +0.5725335 0.1160161 0.7388448 +0.6252316 0.1160161 0.7388448 +0.6806558 0.1160161 0.7388448 +0.7388448 0.1160161 0.7388448 +0.7998369 0.1160161 0.7388448 +0.8636691 0.1160161 0.7388448 +0.9303782 0.1160161 0.7388448 +1 0.1160161 0.7388448 +0 0.1372908 0.7388448 +0.002418731 0.1372908 0.7388448 +0.005155668 0.1372908 0.7388448 +0.009080105 0.1372908 0.7388448 +0.01434988 0.1372908 0.7388448 +0.02107202 0.1372908 0.7388448 +0.02934285 0.1372908 0.7388448 +0.03925039 0.1372908 0.7388448 +0.05087609 0.1372908 0.7388448 +0.06429595 0.1372908 0.7388448 +0.07958143 0.1372908 0.7388448 +0.0968001 0.1372908 0.7388448 +0.1160161 0.1372908 0.7388448 +0.1372908 0.1372908 0.7388448 +0.1606827 0.1372908 0.7388448 +0.1862481 0.1372908 0.7388448 +0.2140411 0.1372908 0.7388448 +0.2441142 0.1372908 0.7388448 +0.2765176 0.1372908 0.7388448 +0.3113005 0.1372908 0.7388448 +0.3485102 0.1372908 0.7388448 +0.388193 0.1372908 0.7388448 +0.4303934 0.1372908 0.7388448 +0.4751555 0.1372908 0.7388448 +0.5225216 0.1372908 0.7388448 +0.5725335 0.1372908 0.7388448 +0.6252316 0.1372908 0.7388448 +0.6806558 0.1372908 0.7388448 +0.7388448 0.1372908 0.7388448 +0.7998369 0.1372908 0.7388448 +0.8636691 0.1372908 0.7388448 +0.9303782 0.1372908 0.7388448 +1 0.1372908 0.7388448 +0 0.1606827 0.7388448 +0.002418731 0.1606827 0.7388448 +0.005155668 0.1606827 0.7388448 +0.009080105 0.1606827 0.7388448 +0.01434988 0.1606827 0.7388448 +0.02107202 0.1606827 0.7388448 +0.02934285 0.1606827 0.7388448 +0.03925039 0.1606827 0.7388448 +0.05087609 0.1606827 0.7388448 +0.06429595 0.1606827 0.7388448 +0.07958143 0.1606827 0.7388448 +0.0968001 0.1606827 0.7388448 +0.1160161 0.1606827 0.7388448 +0.1372908 0.1606827 0.7388448 +0.1606827 0.1606827 0.7388448 +0.1862481 0.1606827 0.7388448 +0.2140411 0.1606827 0.7388448 +0.2441142 0.1606827 0.7388448 +0.2765176 0.1606827 0.7388448 +0.3113005 0.1606827 0.7388448 +0.3485102 0.1606827 0.7388448 +0.388193 0.1606827 0.7388448 +0.4303934 0.1606827 0.7388448 +0.4751555 0.1606827 0.7388448 +0.5225216 0.1606827 0.7388448 +0.5725335 0.1606827 0.7388448 +0.6252316 0.1606827 0.7388448 +0.6806558 0.1606827 0.7388448 +0.7388448 0.1606827 0.7388448 +0.7998369 0.1606827 0.7388448 +0.8636691 0.1606827 0.7388448 +0.9303782 0.1606827 0.7388448 +1 0.1606827 0.7388448 +0 0.1862481 0.7388448 +0.002418731 0.1862481 0.7388448 +0.005155668 0.1862481 0.7388448 +0.009080105 0.1862481 0.7388448 +0.01434988 0.1862481 0.7388448 +0.02107202 0.1862481 0.7388448 +0.02934285 0.1862481 0.7388448 +0.03925039 0.1862481 0.7388448 +0.05087609 0.1862481 0.7388448 +0.06429595 0.1862481 0.7388448 +0.07958143 0.1862481 0.7388448 +0.0968001 0.1862481 0.7388448 +0.1160161 0.1862481 0.7388448 +0.1372908 0.1862481 0.7388448 +0.1606827 0.1862481 0.7388448 +0.1862481 0.1862481 0.7388448 +0.2140411 0.1862481 0.7388448 +0.2441142 0.1862481 0.7388448 +0.2765176 0.1862481 0.7388448 +0.3113005 0.1862481 0.7388448 +0.3485102 0.1862481 0.7388448 +0.388193 0.1862481 0.7388448 +0.4303934 0.1862481 0.7388448 +0.4751555 0.1862481 0.7388448 +0.5225216 0.1862481 0.7388448 +0.5725335 0.1862481 0.7388448 +0.6252316 0.1862481 0.7388448 +0.6806558 0.1862481 0.7388448 +0.7388448 0.1862481 0.7388448 +0.7998369 0.1862481 0.7388448 +0.8636691 0.1862481 0.7388448 +0.9303782 0.1862481 0.7388448 +1 0.1862481 0.7388448 +0 0.2140411 0.7388448 +0.002418731 0.2140411 0.7388448 +0.005155668 0.2140411 0.7388448 +0.009080105 0.2140411 0.7388448 +0.01434988 0.2140411 0.7388448 +0.02107202 0.2140411 0.7388448 +0.02934285 0.2140411 0.7388448 +0.03925039 0.2140411 0.7388448 +0.05087609 0.2140411 0.7388448 +0.06429595 0.2140411 0.7388448 +0.07958143 0.2140411 0.7388448 +0.0968001 0.2140411 0.7388448 +0.1160161 0.2140411 0.7388448 +0.1372908 0.2140411 0.7388448 +0.1606827 0.2140411 0.7388448 +0.1862481 0.2140411 0.7388448 +0.2140411 0.2140411 0.7388448 +0.2441142 0.2140411 0.7388448 +0.2765176 0.2140411 0.7388448 +0.3113005 0.2140411 0.7388448 +0.3485102 0.2140411 0.7388448 +0.388193 0.2140411 0.7388448 +0.4303934 0.2140411 0.7388448 +0.4751555 0.2140411 0.7388448 +0.5225216 0.2140411 0.7388448 +0.5725335 0.2140411 0.7388448 +0.6252316 0.2140411 0.7388448 +0.6806558 0.2140411 0.7388448 +0.7388448 0.2140411 0.7388448 +0.7998369 0.2140411 0.7388448 +0.8636691 0.2140411 0.7388448 +0.9303782 0.2140411 0.7388448 +1 0.2140411 0.7388448 +0 0.2441142 0.7388448 +0.002418731 0.2441142 0.7388448 +0.005155668 0.2441142 0.7388448 +0.009080105 0.2441142 0.7388448 +0.01434988 0.2441142 0.7388448 +0.02107202 0.2441142 0.7388448 +0.02934285 0.2441142 0.7388448 +0.03925039 0.2441142 0.7388448 +0.05087609 0.2441142 0.7388448 +0.06429595 0.2441142 0.7388448 +0.07958143 0.2441142 0.7388448 +0.0968001 0.2441142 0.7388448 +0.1160161 0.2441142 0.7388448 +0.1372908 0.2441142 0.7388448 +0.1606827 0.2441142 0.7388448 +0.1862481 0.2441142 0.7388448 +0.2140411 0.2441142 0.7388448 +0.2441142 0.2441142 0.7388448 +0.2765176 0.2441142 0.7388448 +0.3113005 0.2441142 0.7388448 +0.3485102 0.2441142 0.7388448 +0.388193 0.2441142 0.7388448 +0.4303934 0.2441142 0.7388448 +0.4751555 0.2441142 0.7388448 +0.5225216 0.2441142 0.7388448 +0.5725335 0.2441142 0.7388448 +0.6252316 0.2441142 0.7388448 +0.6806558 0.2441142 0.7388448 +0.7388448 0.2441142 0.7388448 +0.7998369 0.2441142 0.7388448 +0.8636691 0.2441142 0.7388448 +0.9303782 0.2441142 0.7388448 +1 0.2441142 0.7388448 +0 0.2765176 0.7388448 +0.002418731 0.2765176 0.7388448 +0.005155668 0.2765176 0.7388448 +0.009080105 0.2765176 0.7388448 +0.01434988 0.2765176 0.7388448 +0.02107202 0.2765176 0.7388448 +0.02934285 0.2765176 0.7388448 +0.03925039 0.2765176 0.7388448 +0.05087609 0.2765176 0.7388448 +0.06429595 0.2765176 0.7388448 +0.07958143 0.2765176 0.7388448 +0.0968001 0.2765176 0.7388448 +0.1160161 0.2765176 0.7388448 +0.1372908 0.2765176 0.7388448 +0.1606827 0.2765176 0.7388448 +0.1862481 0.2765176 0.7388448 +0.2140411 0.2765176 0.7388448 +0.2441142 0.2765176 0.7388448 +0.2765176 0.2765176 0.7388448 +0.3113005 0.2765176 0.7388448 +0.3485102 0.2765176 0.7388448 +0.388193 0.2765176 0.7388448 +0.4303934 0.2765176 0.7388448 +0.4751555 0.2765176 0.7388448 +0.5225216 0.2765176 0.7388448 +0.5725335 0.2765176 0.7388448 +0.6252316 0.2765176 0.7388448 +0.6806558 0.2765176 0.7388448 +0.7388448 0.2765176 0.7388448 +0.7998369 0.2765176 0.7388448 +0.8636691 0.2765176 0.7388448 +0.9303782 0.2765176 0.7388448 +1 0.2765176 0.7388448 +0 0.3113005 0.7388448 +0.002418731 0.3113005 0.7388448 +0.005155668 0.3113005 0.7388448 +0.009080105 0.3113005 0.7388448 +0.01434988 0.3113005 0.7388448 +0.02107202 0.3113005 0.7388448 +0.02934285 0.3113005 0.7388448 +0.03925039 0.3113005 0.7388448 +0.05087609 0.3113005 0.7388448 +0.06429595 0.3113005 0.7388448 +0.07958143 0.3113005 0.7388448 +0.0968001 0.3113005 0.7388448 +0.1160161 0.3113005 0.7388448 +0.1372908 0.3113005 0.7388448 +0.1606827 0.3113005 0.7388448 +0.1862481 0.3113005 0.7388448 +0.2140411 0.3113005 0.7388448 +0.2441142 0.3113005 0.7388448 +0.2765176 0.3113005 0.7388448 +0.3113005 0.3113005 0.7388448 +0.3485102 0.3113005 0.7388448 +0.388193 0.3113005 0.7388448 +0.4303934 0.3113005 0.7388448 +0.4751555 0.3113005 0.7388448 +0.5225216 0.3113005 0.7388448 +0.5725335 0.3113005 0.7388448 +0.6252316 0.3113005 0.7388448 +0.6806558 0.3113005 0.7388448 +0.7388448 0.3113005 0.7388448 +0.7998369 0.3113005 0.7388448 +0.8636691 0.3113005 0.7388448 +0.9303782 0.3113005 0.7388448 +1 0.3113005 0.7388448 +0 0.3485102 0.7388448 +0.002418731 0.3485102 0.7388448 +0.005155668 0.3485102 0.7388448 +0.009080105 0.3485102 0.7388448 +0.01434988 0.3485102 0.7388448 +0.02107202 0.3485102 0.7388448 +0.02934285 0.3485102 0.7388448 +0.03925039 0.3485102 0.7388448 +0.05087609 0.3485102 0.7388448 +0.06429595 0.3485102 0.7388448 +0.07958143 0.3485102 0.7388448 +0.0968001 0.3485102 0.7388448 +0.1160161 0.3485102 0.7388448 +0.1372908 0.3485102 0.7388448 +0.1606827 0.3485102 0.7388448 +0.1862481 0.3485102 0.7388448 +0.2140411 0.3485102 0.7388448 +0.2441142 0.3485102 0.7388448 +0.2765176 0.3485102 0.7388448 +0.3113005 0.3485102 0.7388448 +0.3485102 0.3485102 0.7388448 +0.388193 0.3485102 0.7388448 +0.4303934 0.3485102 0.7388448 +0.4751555 0.3485102 0.7388448 +0.5225216 0.3485102 0.7388448 +0.5725335 0.3485102 0.7388448 +0.6252316 0.3485102 0.7388448 +0.6806558 0.3485102 0.7388448 +0.7388448 0.3485102 0.7388448 +0.7998369 0.3485102 0.7388448 +0.8636691 0.3485102 0.7388448 +0.9303782 0.3485102 0.7388448 +1 0.3485102 0.7388448 +0 0.388193 0.7388448 +0.002418731 0.388193 0.7388448 +0.005155668 0.388193 0.7388448 +0.009080105 0.388193 0.7388448 +0.01434988 0.388193 0.7388448 +0.02107202 0.388193 0.7388448 +0.02934285 0.388193 0.7388448 +0.03925039 0.388193 0.7388448 +0.05087609 0.388193 0.7388448 +0.06429595 0.388193 0.7388448 +0.07958143 0.388193 0.7388448 +0.0968001 0.388193 0.7388448 +0.1160161 0.388193 0.7388448 +0.1372908 0.388193 0.7388448 +0.1606827 0.388193 0.7388448 +0.1862481 0.388193 0.7388448 +0.2140411 0.388193 0.7388448 +0.2441142 0.388193 0.7388448 +0.2765176 0.388193 0.7388448 +0.3113005 0.388193 0.7388448 +0.3485102 0.388193 0.7388448 +0.388193 0.388193 0.7388448 +0.4303934 0.388193 0.7388448 +0.4751555 0.388193 0.7388448 +0.5225216 0.388193 0.7388448 +0.5725335 0.388193 0.7388448 +0.6252316 0.388193 0.7388448 +0.6806558 0.388193 0.7388448 +0.7388448 0.388193 0.7388448 +0.7998369 0.388193 0.7388448 +0.8636691 0.388193 0.7388448 +0.9303782 0.388193 0.7388448 +1 0.388193 0.7388448 +0 0.4303934 0.7388448 +0.002418731 0.4303934 0.7388448 +0.005155668 0.4303934 0.7388448 +0.009080105 0.4303934 0.7388448 +0.01434988 0.4303934 0.7388448 +0.02107202 0.4303934 0.7388448 +0.02934285 0.4303934 0.7388448 +0.03925039 0.4303934 0.7388448 +0.05087609 0.4303934 0.7388448 +0.06429595 0.4303934 0.7388448 +0.07958143 0.4303934 0.7388448 +0.0968001 0.4303934 0.7388448 +0.1160161 0.4303934 0.7388448 +0.1372908 0.4303934 0.7388448 +0.1606827 0.4303934 0.7388448 +0.1862481 0.4303934 0.7388448 +0.2140411 0.4303934 0.7388448 +0.2441142 0.4303934 0.7388448 +0.2765176 0.4303934 0.7388448 +0.3113005 0.4303934 0.7388448 +0.3485102 0.4303934 0.7388448 +0.388193 0.4303934 0.7388448 +0.4303934 0.4303934 0.7388448 +0.4751555 0.4303934 0.7388448 +0.5225216 0.4303934 0.7388448 +0.5725335 0.4303934 0.7388448 +0.6252316 0.4303934 0.7388448 +0.6806558 0.4303934 0.7388448 +0.7388448 0.4303934 0.7388448 +0.7998369 0.4303934 0.7388448 +0.8636691 0.4303934 0.7388448 +0.9303782 0.4303934 0.7388448 +1 0.4303934 0.7388448 +0 0.4751555 0.7388448 +0.002418731 0.4751555 0.7388448 +0.005155668 0.4751555 0.7388448 +0.009080105 0.4751555 0.7388448 +0.01434988 0.4751555 0.7388448 +0.02107202 0.4751555 0.7388448 +0.02934285 0.4751555 0.7388448 +0.03925039 0.4751555 0.7388448 +0.05087609 0.4751555 0.7388448 +0.06429595 0.4751555 0.7388448 +0.07958143 0.4751555 0.7388448 +0.0968001 0.4751555 0.7388448 +0.1160161 0.4751555 0.7388448 +0.1372908 0.4751555 0.7388448 +0.1606827 0.4751555 0.7388448 +0.1862481 0.4751555 0.7388448 +0.2140411 0.4751555 0.7388448 +0.2441142 0.4751555 0.7388448 +0.2765176 0.4751555 0.7388448 +0.3113005 0.4751555 0.7388448 +0.3485102 0.4751555 0.7388448 +0.388193 0.4751555 0.7388448 +0.4303934 0.4751555 0.7388448 +0.4751555 0.4751555 0.7388448 +0.5225216 0.4751555 0.7388448 +0.5725335 0.4751555 0.7388448 +0.6252316 0.4751555 0.7388448 +0.6806558 0.4751555 0.7388448 +0.7388448 0.4751555 0.7388448 +0.7998369 0.4751555 0.7388448 +0.8636691 0.4751555 0.7388448 +0.9303782 0.4751555 0.7388448 +1 0.4751555 0.7388448 +0 0.5225216 0.7388448 +0.002418731 0.5225216 0.7388448 +0.005155668 0.5225216 0.7388448 +0.009080105 0.5225216 0.7388448 +0.01434988 0.5225216 0.7388448 +0.02107202 0.5225216 0.7388448 +0.02934285 0.5225216 0.7388448 +0.03925039 0.5225216 0.7388448 +0.05087609 0.5225216 0.7388448 +0.06429595 0.5225216 0.7388448 +0.07958143 0.5225216 0.7388448 +0.0968001 0.5225216 0.7388448 +0.1160161 0.5225216 0.7388448 +0.1372908 0.5225216 0.7388448 +0.1606827 0.5225216 0.7388448 +0.1862481 0.5225216 0.7388448 +0.2140411 0.5225216 0.7388448 +0.2441142 0.5225216 0.7388448 +0.2765176 0.5225216 0.7388448 +0.3113005 0.5225216 0.7388448 +0.3485102 0.5225216 0.7388448 +0.388193 0.5225216 0.7388448 +0.4303934 0.5225216 0.7388448 +0.4751555 0.5225216 0.7388448 +0.5225216 0.5225216 0.7388448 +0.5725335 0.5225216 0.7388448 +0.6252316 0.5225216 0.7388448 +0.6806558 0.5225216 0.7388448 +0.7388448 0.5225216 0.7388448 +0.7998369 0.5225216 0.7388448 +0.8636691 0.5225216 0.7388448 +0.9303782 0.5225216 0.7388448 +1 0.5225216 0.7388448 +0 0.5725335 0.7388448 +0.002418731 0.5725335 0.7388448 +0.005155668 0.5725335 0.7388448 +0.009080105 0.5725335 0.7388448 +0.01434988 0.5725335 0.7388448 +0.02107202 0.5725335 0.7388448 +0.02934285 0.5725335 0.7388448 +0.03925039 0.5725335 0.7388448 +0.05087609 0.5725335 0.7388448 +0.06429595 0.5725335 0.7388448 +0.07958143 0.5725335 0.7388448 +0.0968001 0.5725335 0.7388448 +0.1160161 0.5725335 0.7388448 +0.1372908 0.5725335 0.7388448 +0.1606827 0.5725335 0.7388448 +0.1862481 0.5725335 0.7388448 +0.2140411 0.5725335 0.7388448 +0.2441142 0.5725335 0.7388448 +0.2765176 0.5725335 0.7388448 +0.3113005 0.5725335 0.7388448 +0.3485102 0.5725335 0.7388448 +0.388193 0.5725335 0.7388448 +0.4303934 0.5725335 0.7388448 +0.4751555 0.5725335 0.7388448 +0.5225216 0.5725335 0.7388448 +0.5725335 0.5725335 0.7388448 +0.6252316 0.5725335 0.7388448 +0.6806558 0.5725335 0.7388448 +0.7388448 0.5725335 0.7388448 +0.7998369 0.5725335 0.7388448 +0.8636691 0.5725335 0.7388448 +0.9303782 0.5725335 0.7388448 +1 0.5725335 0.7388448 +0 0.6252316 0.7388448 +0.002418731 0.6252316 0.7388448 +0.005155668 0.6252316 0.7388448 +0.009080105 0.6252316 0.7388448 +0.01434988 0.6252316 0.7388448 +0.02107202 0.6252316 0.7388448 +0.02934285 0.6252316 0.7388448 +0.03925039 0.6252316 0.7388448 +0.05087609 0.6252316 0.7388448 +0.06429595 0.6252316 0.7388448 +0.07958143 0.6252316 0.7388448 +0.0968001 0.6252316 0.7388448 +0.1160161 0.6252316 0.7388448 +0.1372908 0.6252316 0.7388448 +0.1606827 0.6252316 0.7388448 +0.1862481 0.6252316 0.7388448 +0.2140411 0.6252316 0.7388448 +0.2441142 0.6252316 0.7388448 +0.2765176 0.6252316 0.7388448 +0.3113005 0.6252316 0.7388448 +0.3485102 0.6252316 0.7388448 +0.388193 0.6252316 0.7388448 +0.4303934 0.6252316 0.7388448 +0.4751555 0.6252316 0.7388448 +0.5225216 0.6252316 0.7388448 +0.5725335 0.6252316 0.7388448 +0.6252316 0.6252316 0.7388448 +0.6806558 0.6252316 0.7388448 +0.7388448 0.6252316 0.7388448 +0.7998369 0.6252316 0.7388448 +0.8636691 0.6252316 0.7388448 +0.9303782 0.6252316 0.7388448 +1 0.6252316 0.7388448 +0 0.6806558 0.7388448 +0.002418731 0.6806558 0.7388448 +0.005155668 0.6806558 0.7388448 +0.009080105 0.6806558 0.7388448 +0.01434988 0.6806558 0.7388448 +0.02107202 0.6806558 0.7388448 +0.02934285 0.6806558 0.7388448 +0.03925039 0.6806558 0.7388448 +0.05087609 0.6806558 0.7388448 +0.06429595 0.6806558 0.7388448 +0.07958143 0.6806558 0.7388448 +0.0968001 0.6806558 0.7388448 +0.1160161 0.6806558 0.7388448 +0.1372908 0.6806558 0.7388448 +0.1606827 0.6806558 0.7388448 +0.1862481 0.6806558 0.7388448 +0.2140411 0.6806558 0.7388448 +0.2441142 0.6806558 0.7388448 +0.2765176 0.6806558 0.7388448 +0.3113005 0.6806558 0.7388448 +0.3485102 0.6806558 0.7388448 +0.388193 0.6806558 0.7388448 +0.4303934 0.6806558 0.7388448 +0.4751555 0.6806558 0.7388448 +0.5225216 0.6806558 0.7388448 +0.5725335 0.6806558 0.7388448 +0.6252316 0.6806558 0.7388448 +0.6806558 0.6806558 0.7388448 +0.7388448 0.6806558 0.7388448 +0.7998369 0.6806558 0.7388448 +0.8636691 0.6806558 0.7388448 +0.9303782 0.6806558 0.7388448 +1 0.6806558 0.7388448 +0 0.7388448 0.7388448 +0.002418731 0.7388448 0.7388448 +0.005155668 0.7388448 0.7388448 +0.009080105 0.7388448 0.7388448 +0.01434988 0.7388448 0.7388448 +0.02107202 0.7388448 0.7388448 +0.02934285 0.7388448 0.7388448 +0.03925039 0.7388448 0.7388448 +0.05087609 0.7388448 0.7388448 +0.06429595 0.7388448 0.7388448 +0.07958143 0.7388448 0.7388448 +0.0968001 0.7388448 0.7388448 +0.1160161 0.7388448 0.7388448 +0.1372908 0.7388448 0.7388448 +0.1606827 0.7388448 0.7388448 +0.1862481 0.7388448 0.7388448 +0.2140411 0.7388448 0.7388448 +0.2441142 0.7388448 0.7388448 +0.2765176 0.7388448 0.7388448 +0.3113005 0.7388448 0.7388448 +0.3485102 0.7388448 0.7388448 +0.388193 0.7388448 0.7388448 +0.4303934 0.7388448 0.7388448 +0.4751555 0.7388448 0.7388448 +0.5225216 0.7388448 0.7388448 +0.5725335 0.7388448 0.7388448 +0.6252316 0.7388448 0.7388448 +0.6806558 0.7388448 0.7388448 +0.7388448 0.7388448 0.7388448 +0.7998369 0.7388448 0.7388448 +0.8636691 0.7388448 0.7388448 +0.9303782 0.7388448 0.7388448 +1 0.7388448 0.7388448 +0 0.7998369 0.7388448 +0.002418731 0.7998369 0.7388448 +0.005155668 0.7998369 0.7388448 +0.009080105 0.7998369 0.7388448 +0.01434988 0.7998369 0.7388448 +0.02107202 0.7998369 0.7388448 +0.02934285 0.7998369 0.7388448 +0.03925039 0.7998369 0.7388448 +0.05087609 0.7998369 0.7388448 +0.06429595 0.7998369 0.7388448 +0.07958143 0.7998369 0.7388448 +0.0968001 0.7998369 0.7388448 +0.1160161 0.7998369 0.7388448 +0.1372908 0.7998369 0.7388448 +0.1606827 0.7998369 0.7388448 +0.1862481 0.7998369 0.7388448 +0.2140411 0.7998369 0.7388448 +0.2441142 0.7998369 0.7388448 +0.2765176 0.7998369 0.7388448 +0.3113005 0.7998369 0.7388448 +0.3485102 0.7998369 0.7388448 +0.388193 0.7998369 0.7388448 +0.4303934 0.7998369 0.7388448 +0.4751555 0.7998369 0.7388448 +0.5225216 0.7998369 0.7388448 +0.5725335 0.7998369 0.7388448 +0.6252316 0.7998369 0.7388448 +0.6806558 0.7998369 0.7388448 +0.7388448 0.7998369 0.7388448 +0.7998369 0.7998369 0.7388448 +0.8636691 0.7998369 0.7388448 +0.9303782 0.7998369 0.7388448 +1 0.7998369 0.7388448 +0 0.8636691 0.7388448 +0.002418731 0.8636691 0.7388448 +0.005155668 0.8636691 0.7388448 +0.009080105 0.8636691 0.7388448 +0.01434988 0.8636691 0.7388448 +0.02107202 0.8636691 0.7388448 +0.02934285 0.8636691 0.7388448 +0.03925039 0.8636691 0.7388448 +0.05087609 0.8636691 0.7388448 +0.06429595 0.8636691 0.7388448 +0.07958143 0.8636691 0.7388448 +0.0968001 0.8636691 0.7388448 +0.1160161 0.8636691 0.7388448 +0.1372908 0.8636691 0.7388448 +0.1606827 0.8636691 0.7388448 +0.1862481 0.8636691 0.7388448 +0.2140411 0.8636691 0.7388448 +0.2441142 0.8636691 0.7388448 +0.2765176 0.8636691 0.7388448 +0.3113005 0.8636691 0.7388448 +0.3485102 0.8636691 0.7388448 +0.388193 0.8636691 0.7388448 +0.4303934 0.8636691 0.7388448 +0.4751555 0.8636691 0.7388448 +0.5225216 0.8636691 0.7388448 +0.5725335 0.8636691 0.7388448 +0.6252316 0.8636691 0.7388448 +0.6806558 0.8636691 0.7388448 +0.7388448 0.8636691 0.7388448 +0.7998369 0.8636691 0.7388448 +0.8636691 0.8636691 0.7388448 +0.9303782 0.8636691 0.7388448 +1 0.8636691 0.7388448 +0 0.9303782 0.7388448 +0.002418731 0.9303782 0.7388448 +0.005155668 0.9303782 0.7388448 +0.009080105 0.9303782 0.7388448 +0.01434988 0.9303782 0.7388448 +0.02107202 0.9303782 0.7388448 +0.02934285 0.9303782 0.7388448 +0.03925039 0.9303782 0.7388448 +0.05087609 0.9303782 0.7388448 +0.06429595 0.9303782 0.7388448 +0.07958143 0.9303782 0.7388448 +0.0968001 0.9303782 0.7388448 +0.1160161 0.9303782 0.7388448 +0.1372908 0.9303782 0.7388448 +0.1606827 0.9303782 0.7388448 +0.1862481 0.9303782 0.7388448 +0.2140411 0.9303782 0.7388448 +0.2441142 0.9303782 0.7388448 +0.2765176 0.9303782 0.7388448 +0.3113005 0.9303782 0.7388448 +0.3485102 0.9303782 0.7388448 +0.388193 0.9303782 0.7388448 +0.4303934 0.9303782 0.7388448 +0.4751555 0.9303782 0.7388448 +0.5225216 0.9303782 0.7388448 +0.5725335 0.9303782 0.7388448 +0.6252316 0.9303782 0.7388448 +0.6806558 0.9303782 0.7388448 +0.7388448 0.9303782 0.7388448 +0.7998369 0.9303782 0.7388448 +0.8636691 0.9303782 0.7388448 +0.9303782 0.9303782 0.7388448 +1 0.9303782 0.7388448 +0 1 0.7388448 +0.002418731 1 0.7388448 +0.005155668 1 0.7388448 +0.009080105 1 0.7388448 +0.01434988 1 0.7388448 +0.02107202 1 0.7388448 +0.02934285 1 0.7388448 +0.03925039 1 0.7388448 +0.05087609 1 0.7388448 +0.06429595 1 0.7388448 +0.07958143 1 0.7388448 +0.0968001 1 0.7388448 +0.1160161 1 0.7388448 +0.1372908 1 0.7388448 +0.1606827 1 0.7388448 +0.1862481 1 0.7388448 +0.2140411 1 0.7388448 +0.2441142 1 0.7388448 +0.2765176 1 0.7388448 +0.3113005 1 0.7388448 +0.3485102 1 0.7388448 +0.388193 1 0.7388448 +0.4303934 1 0.7388448 +0.4751555 1 0.7388448 +0.5225216 1 0.7388448 +0.5725335 1 0.7388448 +0.6252316 1 0.7388448 +0.6806558 1 0.7388448 +0.7388448 1 0.7388448 +0.7998369 1 0.7388448 +0.8636691 1 0.7388448 +0.9303782 1 0.7388448 +1 1 0.7388448 +0 0 0.7998369 +0.002418731 0 0.7998369 +0.005155668 0 0.7998369 +0.009080105 0 0.7998369 +0.01434988 0 0.7998369 +0.02107202 0 0.7998369 +0.02934285 0 0.7998369 +0.03925039 0 0.7998369 +0.05087609 0 0.7998369 +0.06429595 0 0.7998369 +0.07958143 0 0.7998369 +0.0968001 0 0.7998369 +0.1160161 0 0.7998369 +0.1372908 0 0.7998369 +0.1606827 0 0.7998369 +0.1862481 0 0.7998369 +0.2140411 0 0.7998369 +0.2441142 0 0.7998369 +0.2765176 0 0.7998369 +0.3113005 0 0.7998369 +0.3485102 0 0.7998369 +0.388193 0 0.7998369 +0.4303934 0 0.7998369 +0.4751555 0 0.7998369 +0.5225216 0 0.7998369 +0.5725335 0 0.7998369 +0.6252316 0 0.7998369 +0.6806558 0 0.7998369 +0.7388448 0 0.7998369 +0.7998369 0 0.7998369 +0.8636691 0 0.7998369 +0.9303782 0 0.7998369 +1 0 0.7998369 +0 0.002418731 0.7998369 +0.002418731 0.002418731 0.7998369 +0.005155668 0.002418731 0.7998369 +0.009080105 0.002418731 0.7998369 +0.01434988 0.002418731 0.7998369 +0.02107202 0.002418731 0.7998369 +0.02934285 0.002418731 0.7998369 +0.03925039 0.002418731 0.7998369 +0.05087609 0.002418731 0.7998369 +0.06429595 0.002418731 0.7998369 +0.07958143 0.002418731 0.7998369 +0.0968001 0.002418731 0.7998369 +0.1160161 0.002418731 0.7998369 +0.1372908 0.002418731 0.7998369 +0.1606827 0.002418731 0.7998369 +0.1862481 0.002418731 0.7998369 +0.2140411 0.002418731 0.7998369 +0.2441142 0.002418731 0.7998369 +0.2765176 0.002418731 0.7998369 +0.3113005 0.002418731 0.7998369 +0.3485102 0.002418731 0.7998369 +0.388193 0.002418731 0.7998369 +0.4303934 0.002418731 0.7998369 +0.4751555 0.002418731 0.7998369 +0.5225216 0.002418731 0.7998369 +0.5725335 0.002418731 0.7998369 +0.6252316 0.002418731 0.7998369 +0.6806558 0.002418731 0.7998369 +0.7388448 0.002418731 0.7998369 +0.7998369 0.002418731 0.7998369 +0.8636691 0.002418731 0.7998369 +0.9303782 0.002418731 0.7998369 +1 0.002418731 0.7998369 +0 0.005155668 0.7998369 +0.002418731 0.005155668 0.7998369 +0.005155668 0.005155668 0.7998369 +0.009080105 0.005155668 0.7998369 +0.01434988 0.005155668 0.7998369 +0.02107202 0.005155668 0.7998369 +0.02934285 0.005155668 0.7998369 +0.03925039 0.005155668 0.7998369 +0.05087609 0.005155668 0.7998369 +0.06429595 0.005155668 0.7998369 +0.07958143 0.005155668 0.7998369 +0.0968001 0.005155668 0.7998369 +0.1160161 0.005155668 0.7998369 +0.1372908 0.005155668 0.7998369 +0.1606827 0.005155668 0.7998369 +0.1862481 0.005155668 0.7998369 +0.2140411 0.005155668 0.7998369 +0.2441142 0.005155668 0.7998369 +0.2765176 0.005155668 0.7998369 +0.3113005 0.005155668 0.7998369 +0.3485102 0.005155668 0.7998369 +0.388193 0.005155668 0.7998369 +0.4303934 0.005155668 0.7998369 +0.4751555 0.005155668 0.7998369 +0.5225216 0.005155668 0.7998369 +0.5725335 0.005155668 0.7998369 +0.6252316 0.005155668 0.7998369 +0.6806558 0.005155668 0.7998369 +0.7388448 0.005155668 0.7998369 +0.7998369 0.005155668 0.7998369 +0.8636691 0.005155668 0.7998369 +0.9303782 0.005155668 0.7998369 +1 0.005155668 0.7998369 +0 0.009080105 0.7998369 +0.002418731 0.009080105 0.7998369 +0.005155668 0.009080105 0.7998369 +0.009080105 0.009080105 0.7998369 +0.01434988 0.009080105 0.7998369 +0.02107202 0.009080105 0.7998369 +0.02934285 0.009080105 0.7998369 +0.03925039 0.009080105 0.7998369 +0.05087609 0.009080105 0.7998369 +0.06429595 0.009080105 0.7998369 +0.07958143 0.009080105 0.7998369 +0.0968001 0.009080105 0.7998369 +0.1160161 0.009080105 0.7998369 +0.1372908 0.009080105 0.7998369 +0.1606827 0.009080105 0.7998369 +0.1862481 0.009080105 0.7998369 +0.2140411 0.009080105 0.7998369 +0.2441142 0.009080105 0.7998369 +0.2765176 0.009080105 0.7998369 +0.3113005 0.009080105 0.7998369 +0.3485102 0.009080105 0.7998369 +0.388193 0.009080105 0.7998369 +0.4303934 0.009080105 0.7998369 +0.4751555 0.009080105 0.7998369 +0.5225216 0.009080105 0.7998369 +0.5725335 0.009080105 0.7998369 +0.6252316 0.009080105 0.7998369 +0.6806558 0.009080105 0.7998369 +0.7388448 0.009080105 0.7998369 +0.7998369 0.009080105 0.7998369 +0.8636691 0.009080105 0.7998369 +0.9303782 0.009080105 0.7998369 +1 0.009080105 0.7998369 +0 0.01434988 0.7998369 +0.002418731 0.01434988 0.7998369 +0.005155668 0.01434988 0.7998369 +0.009080105 0.01434988 0.7998369 +0.01434988 0.01434988 0.7998369 +0.02107202 0.01434988 0.7998369 +0.02934285 0.01434988 0.7998369 +0.03925039 0.01434988 0.7998369 +0.05087609 0.01434988 0.7998369 +0.06429595 0.01434988 0.7998369 +0.07958143 0.01434988 0.7998369 +0.0968001 0.01434988 0.7998369 +0.1160161 0.01434988 0.7998369 +0.1372908 0.01434988 0.7998369 +0.1606827 0.01434988 0.7998369 +0.1862481 0.01434988 0.7998369 +0.2140411 0.01434988 0.7998369 +0.2441142 0.01434988 0.7998369 +0.2765176 0.01434988 0.7998369 +0.3113005 0.01434988 0.7998369 +0.3485102 0.01434988 0.7998369 +0.388193 0.01434988 0.7998369 +0.4303934 0.01434988 0.7998369 +0.4751555 0.01434988 0.7998369 +0.5225216 0.01434988 0.7998369 +0.5725335 0.01434988 0.7998369 +0.6252316 0.01434988 0.7998369 +0.6806558 0.01434988 0.7998369 +0.7388448 0.01434988 0.7998369 +0.7998369 0.01434988 0.7998369 +0.8636691 0.01434988 0.7998369 +0.9303782 0.01434988 0.7998369 +1 0.01434988 0.7998369 +0 0.02107202 0.7998369 +0.002418731 0.02107202 0.7998369 +0.005155668 0.02107202 0.7998369 +0.009080105 0.02107202 0.7998369 +0.01434988 0.02107202 0.7998369 +0.02107202 0.02107202 0.7998369 +0.02934285 0.02107202 0.7998369 +0.03925039 0.02107202 0.7998369 +0.05087609 0.02107202 0.7998369 +0.06429595 0.02107202 0.7998369 +0.07958143 0.02107202 0.7998369 +0.0968001 0.02107202 0.7998369 +0.1160161 0.02107202 0.7998369 +0.1372908 0.02107202 0.7998369 +0.1606827 0.02107202 0.7998369 +0.1862481 0.02107202 0.7998369 +0.2140411 0.02107202 0.7998369 +0.2441142 0.02107202 0.7998369 +0.2765176 0.02107202 0.7998369 +0.3113005 0.02107202 0.7998369 +0.3485102 0.02107202 0.7998369 +0.388193 0.02107202 0.7998369 +0.4303934 0.02107202 0.7998369 +0.4751555 0.02107202 0.7998369 +0.5225216 0.02107202 0.7998369 +0.5725335 0.02107202 0.7998369 +0.6252316 0.02107202 0.7998369 +0.6806558 0.02107202 0.7998369 +0.7388448 0.02107202 0.7998369 +0.7998369 0.02107202 0.7998369 +0.8636691 0.02107202 0.7998369 +0.9303782 0.02107202 0.7998369 +1 0.02107202 0.7998369 +0 0.02934285 0.7998369 +0.002418731 0.02934285 0.7998369 +0.005155668 0.02934285 0.7998369 +0.009080105 0.02934285 0.7998369 +0.01434988 0.02934285 0.7998369 +0.02107202 0.02934285 0.7998369 +0.02934285 0.02934285 0.7998369 +0.03925039 0.02934285 0.7998369 +0.05087609 0.02934285 0.7998369 +0.06429595 0.02934285 0.7998369 +0.07958143 0.02934285 0.7998369 +0.0968001 0.02934285 0.7998369 +0.1160161 0.02934285 0.7998369 +0.1372908 0.02934285 0.7998369 +0.1606827 0.02934285 0.7998369 +0.1862481 0.02934285 0.7998369 +0.2140411 0.02934285 0.7998369 +0.2441142 0.02934285 0.7998369 +0.2765176 0.02934285 0.7998369 +0.3113005 0.02934285 0.7998369 +0.3485102 0.02934285 0.7998369 +0.388193 0.02934285 0.7998369 +0.4303934 0.02934285 0.7998369 +0.4751555 0.02934285 0.7998369 +0.5225216 0.02934285 0.7998369 +0.5725335 0.02934285 0.7998369 +0.6252316 0.02934285 0.7998369 +0.6806558 0.02934285 0.7998369 +0.7388448 0.02934285 0.7998369 +0.7998369 0.02934285 0.7998369 +0.8636691 0.02934285 0.7998369 +0.9303782 0.02934285 0.7998369 +1 0.02934285 0.7998369 +0 0.03925039 0.7998369 +0.002418731 0.03925039 0.7998369 +0.005155668 0.03925039 0.7998369 +0.009080105 0.03925039 0.7998369 +0.01434988 0.03925039 0.7998369 +0.02107202 0.03925039 0.7998369 +0.02934285 0.03925039 0.7998369 +0.03925039 0.03925039 0.7998369 +0.05087609 0.03925039 0.7998369 +0.06429595 0.03925039 0.7998369 +0.07958143 0.03925039 0.7998369 +0.0968001 0.03925039 0.7998369 +0.1160161 0.03925039 0.7998369 +0.1372908 0.03925039 0.7998369 +0.1606827 0.03925039 0.7998369 +0.1862481 0.03925039 0.7998369 +0.2140411 0.03925039 0.7998369 +0.2441142 0.03925039 0.7998369 +0.2765176 0.03925039 0.7998369 +0.3113005 0.03925039 0.7998369 +0.3485102 0.03925039 0.7998369 +0.388193 0.03925039 0.7998369 +0.4303934 0.03925039 0.7998369 +0.4751555 0.03925039 0.7998369 +0.5225216 0.03925039 0.7998369 +0.5725335 0.03925039 0.7998369 +0.6252316 0.03925039 0.7998369 +0.6806558 0.03925039 0.7998369 +0.7388448 0.03925039 0.7998369 +0.7998369 0.03925039 0.7998369 +0.8636691 0.03925039 0.7998369 +0.9303782 0.03925039 0.7998369 +1 0.03925039 0.7998369 +0 0.05087609 0.7998369 +0.002418731 0.05087609 0.7998369 +0.005155668 0.05087609 0.7998369 +0.009080105 0.05087609 0.7998369 +0.01434988 0.05087609 0.7998369 +0.02107202 0.05087609 0.7998369 +0.02934285 0.05087609 0.7998369 +0.03925039 0.05087609 0.7998369 +0.05087609 0.05087609 0.7998369 +0.06429595 0.05087609 0.7998369 +0.07958143 0.05087609 0.7998369 +0.0968001 0.05087609 0.7998369 +0.1160161 0.05087609 0.7998369 +0.1372908 0.05087609 0.7998369 +0.1606827 0.05087609 0.7998369 +0.1862481 0.05087609 0.7998369 +0.2140411 0.05087609 0.7998369 +0.2441142 0.05087609 0.7998369 +0.2765176 0.05087609 0.7998369 +0.3113005 0.05087609 0.7998369 +0.3485102 0.05087609 0.7998369 +0.388193 0.05087609 0.7998369 +0.4303934 0.05087609 0.7998369 +0.4751555 0.05087609 0.7998369 +0.5225216 0.05087609 0.7998369 +0.5725335 0.05087609 0.7998369 +0.6252316 0.05087609 0.7998369 +0.6806558 0.05087609 0.7998369 +0.7388448 0.05087609 0.7998369 +0.7998369 0.05087609 0.7998369 +0.8636691 0.05087609 0.7998369 +0.9303782 0.05087609 0.7998369 +1 0.05087609 0.7998369 +0 0.06429595 0.7998369 +0.002418731 0.06429595 0.7998369 +0.005155668 0.06429595 0.7998369 +0.009080105 0.06429595 0.7998369 +0.01434988 0.06429595 0.7998369 +0.02107202 0.06429595 0.7998369 +0.02934285 0.06429595 0.7998369 +0.03925039 0.06429595 0.7998369 +0.05087609 0.06429595 0.7998369 +0.06429595 0.06429595 0.7998369 +0.07958143 0.06429595 0.7998369 +0.0968001 0.06429595 0.7998369 +0.1160161 0.06429595 0.7998369 +0.1372908 0.06429595 0.7998369 +0.1606827 0.06429595 0.7998369 +0.1862481 0.06429595 0.7998369 +0.2140411 0.06429595 0.7998369 +0.2441142 0.06429595 0.7998369 +0.2765176 0.06429595 0.7998369 +0.3113005 0.06429595 0.7998369 +0.3485102 0.06429595 0.7998369 +0.388193 0.06429595 0.7998369 +0.4303934 0.06429595 0.7998369 +0.4751555 0.06429595 0.7998369 +0.5225216 0.06429595 0.7998369 +0.5725335 0.06429595 0.7998369 +0.6252316 0.06429595 0.7998369 +0.6806558 0.06429595 0.7998369 +0.7388448 0.06429595 0.7998369 +0.7998369 0.06429595 0.7998369 +0.8636691 0.06429595 0.7998369 +0.9303782 0.06429595 0.7998369 +1 0.06429595 0.7998369 +0 0.07958143 0.7998369 +0.002418731 0.07958143 0.7998369 +0.005155668 0.07958143 0.7998369 +0.009080105 0.07958143 0.7998369 +0.01434988 0.07958143 0.7998369 +0.02107202 0.07958143 0.7998369 +0.02934285 0.07958143 0.7998369 +0.03925039 0.07958143 0.7998369 +0.05087609 0.07958143 0.7998369 +0.06429595 0.07958143 0.7998369 +0.07958143 0.07958143 0.7998369 +0.0968001 0.07958143 0.7998369 +0.1160161 0.07958143 0.7998369 +0.1372908 0.07958143 0.7998369 +0.1606827 0.07958143 0.7998369 +0.1862481 0.07958143 0.7998369 +0.2140411 0.07958143 0.7998369 +0.2441142 0.07958143 0.7998369 +0.2765176 0.07958143 0.7998369 +0.3113005 0.07958143 0.7998369 +0.3485102 0.07958143 0.7998369 +0.388193 0.07958143 0.7998369 +0.4303934 0.07958143 0.7998369 +0.4751555 0.07958143 0.7998369 +0.5225216 0.07958143 0.7998369 +0.5725335 0.07958143 0.7998369 +0.6252316 0.07958143 0.7998369 +0.6806558 0.07958143 0.7998369 +0.7388448 0.07958143 0.7998369 +0.7998369 0.07958143 0.7998369 +0.8636691 0.07958143 0.7998369 +0.9303782 0.07958143 0.7998369 +1 0.07958143 0.7998369 +0 0.0968001 0.7998369 +0.002418731 0.0968001 0.7998369 +0.005155668 0.0968001 0.7998369 +0.009080105 0.0968001 0.7998369 +0.01434988 0.0968001 0.7998369 +0.02107202 0.0968001 0.7998369 +0.02934285 0.0968001 0.7998369 +0.03925039 0.0968001 0.7998369 +0.05087609 0.0968001 0.7998369 +0.06429595 0.0968001 0.7998369 +0.07958143 0.0968001 0.7998369 +0.0968001 0.0968001 0.7998369 +0.1160161 0.0968001 0.7998369 +0.1372908 0.0968001 0.7998369 +0.1606827 0.0968001 0.7998369 +0.1862481 0.0968001 0.7998369 +0.2140411 0.0968001 0.7998369 +0.2441142 0.0968001 0.7998369 +0.2765176 0.0968001 0.7998369 +0.3113005 0.0968001 0.7998369 +0.3485102 0.0968001 0.7998369 +0.388193 0.0968001 0.7998369 +0.4303934 0.0968001 0.7998369 +0.4751555 0.0968001 0.7998369 +0.5225216 0.0968001 0.7998369 +0.5725335 0.0968001 0.7998369 +0.6252316 0.0968001 0.7998369 +0.6806558 0.0968001 0.7998369 +0.7388448 0.0968001 0.7998369 +0.7998369 0.0968001 0.7998369 +0.8636691 0.0968001 0.7998369 +0.9303782 0.0968001 0.7998369 +1 0.0968001 0.7998369 +0 0.1160161 0.7998369 +0.002418731 0.1160161 0.7998369 +0.005155668 0.1160161 0.7998369 +0.009080105 0.1160161 0.7998369 +0.01434988 0.1160161 0.7998369 +0.02107202 0.1160161 0.7998369 +0.02934285 0.1160161 0.7998369 +0.03925039 0.1160161 0.7998369 +0.05087609 0.1160161 0.7998369 +0.06429595 0.1160161 0.7998369 +0.07958143 0.1160161 0.7998369 +0.0968001 0.1160161 0.7998369 +0.1160161 0.1160161 0.7998369 +0.1372908 0.1160161 0.7998369 +0.1606827 0.1160161 0.7998369 +0.1862481 0.1160161 0.7998369 +0.2140411 0.1160161 0.7998369 +0.2441142 0.1160161 0.7998369 +0.2765176 0.1160161 0.7998369 +0.3113005 0.1160161 0.7998369 +0.3485102 0.1160161 0.7998369 +0.388193 0.1160161 0.7998369 +0.4303934 0.1160161 0.7998369 +0.4751555 0.1160161 0.7998369 +0.5225216 0.1160161 0.7998369 +0.5725335 0.1160161 0.7998369 +0.6252316 0.1160161 0.7998369 +0.6806558 0.1160161 0.7998369 +0.7388448 0.1160161 0.7998369 +0.7998369 0.1160161 0.7998369 +0.8636691 0.1160161 0.7998369 +0.9303782 0.1160161 0.7998369 +1 0.1160161 0.7998369 +0 0.1372908 0.7998369 +0.002418731 0.1372908 0.7998369 +0.005155668 0.1372908 0.7998369 +0.009080105 0.1372908 0.7998369 +0.01434988 0.1372908 0.7998369 +0.02107202 0.1372908 0.7998369 +0.02934285 0.1372908 0.7998369 +0.03925039 0.1372908 0.7998369 +0.05087609 0.1372908 0.7998369 +0.06429595 0.1372908 0.7998369 +0.07958143 0.1372908 0.7998369 +0.0968001 0.1372908 0.7998369 +0.1160161 0.1372908 0.7998369 +0.1372908 0.1372908 0.7998369 +0.1606827 0.1372908 0.7998369 +0.1862481 0.1372908 0.7998369 +0.2140411 0.1372908 0.7998369 +0.2441142 0.1372908 0.7998369 +0.2765176 0.1372908 0.7998369 +0.3113005 0.1372908 0.7998369 +0.3485102 0.1372908 0.7998369 +0.388193 0.1372908 0.7998369 +0.4303934 0.1372908 0.7998369 +0.4751555 0.1372908 0.7998369 +0.5225216 0.1372908 0.7998369 +0.5725335 0.1372908 0.7998369 +0.6252316 0.1372908 0.7998369 +0.6806558 0.1372908 0.7998369 +0.7388448 0.1372908 0.7998369 +0.7998369 0.1372908 0.7998369 +0.8636691 0.1372908 0.7998369 +0.9303782 0.1372908 0.7998369 +1 0.1372908 0.7998369 +0 0.1606827 0.7998369 +0.002418731 0.1606827 0.7998369 +0.005155668 0.1606827 0.7998369 +0.009080105 0.1606827 0.7998369 +0.01434988 0.1606827 0.7998369 +0.02107202 0.1606827 0.7998369 +0.02934285 0.1606827 0.7998369 +0.03925039 0.1606827 0.7998369 +0.05087609 0.1606827 0.7998369 +0.06429595 0.1606827 0.7998369 +0.07958143 0.1606827 0.7998369 +0.0968001 0.1606827 0.7998369 +0.1160161 0.1606827 0.7998369 +0.1372908 0.1606827 0.7998369 +0.1606827 0.1606827 0.7998369 +0.1862481 0.1606827 0.7998369 +0.2140411 0.1606827 0.7998369 +0.2441142 0.1606827 0.7998369 +0.2765176 0.1606827 0.7998369 +0.3113005 0.1606827 0.7998369 +0.3485102 0.1606827 0.7998369 +0.388193 0.1606827 0.7998369 +0.4303934 0.1606827 0.7998369 +0.4751555 0.1606827 0.7998369 +0.5225216 0.1606827 0.7998369 +0.5725335 0.1606827 0.7998369 +0.6252316 0.1606827 0.7998369 +0.6806558 0.1606827 0.7998369 +0.7388448 0.1606827 0.7998369 +0.7998369 0.1606827 0.7998369 +0.8636691 0.1606827 0.7998369 +0.9303782 0.1606827 0.7998369 +1 0.1606827 0.7998369 +0 0.1862481 0.7998369 +0.002418731 0.1862481 0.7998369 +0.005155668 0.1862481 0.7998369 +0.009080105 0.1862481 0.7998369 +0.01434988 0.1862481 0.7998369 +0.02107202 0.1862481 0.7998369 +0.02934285 0.1862481 0.7998369 +0.03925039 0.1862481 0.7998369 +0.05087609 0.1862481 0.7998369 +0.06429595 0.1862481 0.7998369 +0.07958143 0.1862481 0.7998369 +0.0968001 0.1862481 0.7998369 +0.1160161 0.1862481 0.7998369 +0.1372908 0.1862481 0.7998369 +0.1606827 0.1862481 0.7998369 +0.1862481 0.1862481 0.7998369 +0.2140411 0.1862481 0.7998369 +0.2441142 0.1862481 0.7998369 +0.2765176 0.1862481 0.7998369 +0.3113005 0.1862481 0.7998369 +0.3485102 0.1862481 0.7998369 +0.388193 0.1862481 0.7998369 +0.4303934 0.1862481 0.7998369 +0.4751555 0.1862481 0.7998369 +0.5225216 0.1862481 0.7998369 +0.5725335 0.1862481 0.7998369 +0.6252316 0.1862481 0.7998369 +0.6806558 0.1862481 0.7998369 +0.7388448 0.1862481 0.7998369 +0.7998369 0.1862481 0.7998369 +0.8636691 0.1862481 0.7998369 +0.9303782 0.1862481 0.7998369 +1 0.1862481 0.7998369 +0 0.2140411 0.7998369 +0.002418731 0.2140411 0.7998369 +0.005155668 0.2140411 0.7998369 +0.009080105 0.2140411 0.7998369 +0.01434988 0.2140411 0.7998369 +0.02107202 0.2140411 0.7998369 +0.02934285 0.2140411 0.7998369 +0.03925039 0.2140411 0.7998369 +0.05087609 0.2140411 0.7998369 +0.06429595 0.2140411 0.7998369 +0.07958143 0.2140411 0.7998369 +0.0968001 0.2140411 0.7998369 +0.1160161 0.2140411 0.7998369 +0.1372908 0.2140411 0.7998369 +0.1606827 0.2140411 0.7998369 +0.1862481 0.2140411 0.7998369 +0.2140411 0.2140411 0.7998369 +0.2441142 0.2140411 0.7998369 +0.2765176 0.2140411 0.7998369 +0.3113005 0.2140411 0.7998369 +0.3485102 0.2140411 0.7998369 +0.388193 0.2140411 0.7998369 +0.4303934 0.2140411 0.7998369 +0.4751555 0.2140411 0.7998369 +0.5225216 0.2140411 0.7998369 +0.5725335 0.2140411 0.7998369 +0.6252316 0.2140411 0.7998369 +0.6806558 0.2140411 0.7998369 +0.7388448 0.2140411 0.7998369 +0.7998369 0.2140411 0.7998369 +0.8636691 0.2140411 0.7998369 +0.9303782 0.2140411 0.7998369 +1 0.2140411 0.7998369 +0 0.2441142 0.7998369 +0.002418731 0.2441142 0.7998369 +0.005155668 0.2441142 0.7998369 +0.009080105 0.2441142 0.7998369 +0.01434988 0.2441142 0.7998369 +0.02107202 0.2441142 0.7998369 +0.02934285 0.2441142 0.7998369 +0.03925039 0.2441142 0.7998369 +0.05087609 0.2441142 0.7998369 +0.06429595 0.2441142 0.7998369 +0.07958143 0.2441142 0.7998369 +0.0968001 0.2441142 0.7998369 +0.1160161 0.2441142 0.7998369 +0.1372908 0.2441142 0.7998369 +0.1606827 0.2441142 0.7998369 +0.1862481 0.2441142 0.7998369 +0.2140411 0.2441142 0.7998369 +0.2441142 0.2441142 0.7998369 +0.2765176 0.2441142 0.7998369 +0.3113005 0.2441142 0.7998369 +0.3485102 0.2441142 0.7998369 +0.388193 0.2441142 0.7998369 +0.4303934 0.2441142 0.7998369 +0.4751555 0.2441142 0.7998369 +0.5225216 0.2441142 0.7998369 +0.5725335 0.2441142 0.7998369 +0.6252316 0.2441142 0.7998369 +0.6806558 0.2441142 0.7998369 +0.7388448 0.2441142 0.7998369 +0.7998369 0.2441142 0.7998369 +0.8636691 0.2441142 0.7998369 +0.9303782 0.2441142 0.7998369 +1 0.2441142 0.7998369 +0 0.2765176 0.7998369 +0.002418731 0.2765176 0.7998369 +0.005155668 0.2765176 0.7998369 +0.009080105 0.2765176 0.7998369 +0.01434988 0.2765176 0.7998369 +0.02107202 0.2765176 0.7998369 +0.02934285 0.2765176 0.7998369 +0.03925039 0.2765176 0.7998369 +0.05087609 0.2765176 0.7998369 +0.06429595 0.2765176 0.7998369 +0.07958143 0.2765176 0.7998369 +0.0968001 0.2765176 0.7998369 +0.1160161 0.2765176 0.7998369 +0.1372908 0.2765176 0.7998369 +0.1606827 0.2765176 0.7998369 +0.1862481 0.2765176 0.7998369 +0.2140411 0.2765176 0.7998369 +0.2441142 0.2765176 0.7998369 +0.2765176 0.2765176 0.7998369 +0.3113005 0.2765176 0.7998369 +0.3485102 0.2765176 0.7998369 +0.388193 0.2765176 0.7998369 +0.4303934 0.2765176 0.7998369 +0.4751555 0.2765176 0.7998369 +0.5225216 0.2765176 0.7998369 +0.5725335 0.2765176 0.7998369 +0.6252316 0.2765176 0.7998369 +0.6806558 0.2765176 0.7998369 +0.7388448 0.2765176 0.7998369 +0.7998369 0.2765176 0.7998369 +0.8636691 0.2765176 0.7998369 +0.9303782 0.2765176 0.7998369 +1 0.2765176 0.7998369 +0 0.3113005 0.7998369 +0.002418731 0.3113005 0.7998369 +0.005155668 0.3113005 0.7998369 +0.009080105 0.3113005 0.7998369 +0.01434988 0.3113005 0.7998369 +0.02107202 0.3113005 0.7998369 +0.02934285 0.3113005 0.7998369 +0.03925039 0.3113005 0.7998369 +0.05087609 0.3113005 0.7998369 +0.06429595 0.3113005 0.7998369 +0.07958143 0.3113005 0.7998369 +0.0968001 0.3113005 0.7998369 +0.1160161 0.3113005 0.7998369 +0.1372908 0.3113005 0.7998369 +0.1606827 0.3113005 0.7998369 +0.1862481 0.3113005 0.7998369 +0.2140411 0.3113005 0.7998369 +0.2441142 0.3113005 0.7998369 +0.2765176 0.3113005 0.7998369 +0.3113005 0.3113005 0.7998369 +0.3485102 0.3113005 0.7998369 +0.388193 0.3113005 0.7998369 +0.4303934 0.3113005 0.7998369 +0.4751555 0.3113005 0.7998369 +0.5225216 0.3113005 0.7998369 +0.5725335 0.3113005 0.7998369 +0.6252316 0.3113005 0.7998369 +0.6806558 0.3113005 0.7998369 +0.7388448 0.3113005 0.7998369 +0.7998369 0.3113005 0.7998369 +0.8636691 0.3113005 0.7998369 +0.9303782 0.3113005 0.7998369 +1 0.3113005 0.7998369 +0 0.3485102 0.7998369 +0.002418731 0.3485102 0.7998369 +0.005155668 0.3485102 0.7998369 +0.009080105 0.3485102 0.7998369 +0.01434988 0.3485102 0.7998369 +0.02107202 0.3485102 0.7998369 +0.02934285 0.3485102 0.7998369 +0.03925039 0.3485102 0.7998369 +0.05087609 0.3485102 0.7998369 +0.06429595 0.3485102 0.7998369 +0.07958143 0.3485102 0.7998369 +0.0968001 0.3485102 0.7998369 +0.1160161 0.3485102 0.7998369 +0.1372908 0.3485102 0.7998369 +0.1606827 0.3485102 0.7998369 +0.1862481 0.3485102 0.7998369 +0.2140411 0.3485102 0.7998369 +0.2441142 0.3485102 0.7998369 +0.2765176 0.3485102 0.7998369 +0.3113005 0.3485102 0.7998369 +0.3485102 0.3485102 0.7998369 +0.388193 0.3485102 0.7998369 +0.4303934 0.3485102 0.7998369 +0.4751555 0.3485102 0.7998369 +0.5225216 0.3485102 0.7998369 +0.5725335 0.3485102 0.7998369 +0.6252316 0.3485102 0.7998369 +0.6806558 0.3485102 0.7998369 +0.7388448 0.3485102 0.7998369 +0.7998369 0.3485102 0.7998369 +0.8636691 0.3485102 0.7998369 +0.9303782 0.3485102 0.7998369 +1 0.3485102 0.7998369 +0 0.388193 0.7998369 +0.002418731 0.388193 0.7998369 +0.005155668 0.388193 0.7998369 +0.009080105 0.388193 0.7998369 +0.01434988 0.388193 0.7998369 +0.02107202 0.388193 0.7998369 +0.02934285 0.388193 0.7998369 +0.03925039 0.388193 0.7998369 +0.05087609 0.388193 0.7998369 +0.06429595 0.388193 0.7998369 +0.07958143 0.388193 0.7998369 +0.0968001 0.388193 0.7998369 +0.1160161 0.388193 0.7998369 +0.1372908 0.388193 0.7998369 +0.1606827 0.388193 0.7998369 +0.1862481 0.388193 0.7998369 +0.2140411 0.388193 0.7998369 +0.2441142 0.388193 0.7998369 +0.2765176 0.388193 0.7998369 +0.3113005 0.388193 0.7998369 +0.3485102 0.388193 0.7998369 +0.388193 0.388193 0.7998369 +0.4303934 0.388193 0.7998369 +0.4751555 0.388193 0.7998369 +0.5225216 0.388193 0.7998369 +0.5725335 0.388193 0.7998369 +0.6252316 0.388193 0.7998369 +0.6806558 0.388193 0.7998369 +0.7388448 0.388193 0.7998369 +0.7998369 0.388193 0.7998369 +0.8636691 0.388193 0.7998369 +0.9303782 0.388193 0.7998369 +1 0.388193 0.7998369 +0 0.4303934 0.7998369 +0.002418731 0.4303934 0.7998369 +0.005155668 0.4303934 0.7998369 +0.009080105 0.4303934 0.7998369 +0.01434988 0.4303934 0.7998369 +0.02107202 0.4303934 0.7998369 +0.02934285 0.4303934 0.7998369 +0.03925039 0.4303934 0.7998369 +0.05087609 0.4303934 0.7998369 +0.06429595 0.4303934 0.7998369 +0.07958143 0.4303934 0.7998369 +0.0968001 0.4303934 0.7998369 +0.1160161 0.4303934 0.7998369 +0.1372908 0.4303934 0.7998369 +0.1606827 0.4303934 0.7998369 +0.1862481 0.4303934 0.7998369 +0.2140411 0.4303934 0.7998369 +0.2441142 0.4303934 0.7998369 +0.2765176 0.4303934 0.7998369 +0.3113005 0.4303934 0.7998369 +0.3485102 0.4303934 0.7998369 +0.388193 0.4303934 0.7998369 +0.4303934 0.4303934 0.7998369 +0.4751555 0.4303934 0.7998369 +0.5225216 0.4303934 0.7998369 +0.5725335 0.4303934 0.7998369 +0.6252316 0.4303934 0.7998369 +0.6806558 0.4303934 0.7998369 +0.7388448 0.4303934 0.7998369 +0.7998369 0.4303934 0.7998369 +0.8636691 0.4303934 0.7998369 +0.9303782 0.4303934 0.7998369 +1 0.4303934 0.7998369 +0 0.4751555 0.7998369 +0.002418731 0.4751555 0.7998369 +0.005155668 0.4751555 0.7998369 +0.009080105 0.4751555 0.7998369 +0.01434988 0.4751555 0.7998369 +0.02107202 0.4751555 0.7998369 +0.02934285 0.4751555 0.7998369 +0.03925039 0.4751555 0.7998369 +0.05087609 0.4751555 0.7998369 +0.06429595 0.4751555 0.7998369 +0.07958143 0.4751555 0.7998369 +0.0968001 0.4751555 0.7998369 +0.1160161 0.4751555 0.7998369 +0.1372908 0.4751555 0.7998369 +0.1606827 0.4751555 0.7998369 +0.1862481 0.4751555 0.7998369 +0.2140411 0.4751555 0.7998369 +0.2441142 0.4751555 0.7998369 +0.2765176 0.4751555 0.7998369 +0.3113005 0.4751555 0.7998369 +0.3485102 0.4751555 0.7998369 +0.388193 0.4751555 0.7998369 +0.4303934 0.4751555 0.7998369 +0.4751555 0.4751555 0.7998369 +0.5225216 0.4751555 0.7998369 +0.5725335 0.4751555 0.7998369 +0.6252316 0.4751555 0.7998369 +0.6806558 0.4751555 0.7998369 +0.7388448 0.4751555 0.7998369 +0.7998369 0.4751555 0.7998369 +0.8636691 0.4751555 0.7998369 +0.9303782 0.4751555 0.7998369 +1 0.4751555 0.7998369 +0 0.5225216 0.7998369 +0.002418731 0.5225216 0.7998369 +0.005155668 0.5225216 0.7998369 +0.009080105 0.5225216 0.7998369 +0.01434988 0.5225216 0.7998369 +0.02107202 0.5225216 0.7998369 +0.02934285 0.5225216 0.7998369 +0.03925039 0.5225216 0.7998369 +0.05087609 0.5225216 0.7998369 +0.06429595 0.5225216 0.7998369 +0.07958143 0.5225216 0.7998369 +0.0968001 0.5225216 0.7998369 +0.1160161 0.5225216 0.7998369 +0.1372908 0.5225216 0.7998369 +0.1606827 0.5225216 0.7998369 +0.1862481 0.5225216 0.7998369 +0.2140411 0.5225216 0.7998369 +0.2441142 0.5225216 0.7998369 +0.2765176 0.5225216 0.7998369 +0.3113005 0.5225216 0.7998369 +0.3485102 0.5225216 0.7998369 +0.388193 0.5225216 0.7998369 +0.4303934 0.5225216 0.7998369 +0.4751555 0.5225216 0.7998369 +0.5225216 0.5225216 0.7998369 +0.5725335 0.5225216 0.7998369 +0.6252316 0.5225216 0.7998369 +0.6806558 0.5225216 0.7998369 +0.7388448 0.5225216 0.7998369 +0.7998369 0.5225216 0.7998369 +0.8636691 0.5225216 0.7998369 +0.9303782 0.5225216 0.7998369 +1 0.5225216 0.7998369 +0 0.5725335 0.7998369 +0.002418731 0.5725335 0.7998369 +0.005155668 0.5725335 0.7998369 +0.009080105 0.5725335 0.7998369 +0.01434988 0.5725335 0.7998369 +0.02107202 0.5725335 0.7998369 +0.02934285 0.5725335 0.7998369 +0.03925039 0.5725335 0.7998369 +0.05087609 0.5725335 0.7998369 +0.06429595 0.5725335 0.7998369 +0.07958143 0.5725335 0.7998369 +0.0968001 0.5725335 0.7998369 +0.1160161 0.5725335 0.7998369 +0.1372908 0.5725335 0.7998369 +0.1606827 0.5725335 0.7998369 +0.1862481 0.5725335 0.7998369 +0.2140411 0.5725335 0.7998369 +0.2441142 0.5725335 0.7998369 +0.2765176 0.5725335 0.7998369 +0.3113005 0.5725335 0.7998369 +0.3485102 0.5725335 0.7998369 +0.388193 0.5725335 0.7998369 +0.4303934 0.5725335 0.7998369 +0.4751555 0.5725335 0.7998369 +0.5225216 0.5725335 0.7998369 +0.5725335 0.5725335 0.7998369 +0.6252316 0.5725335 0.7998369 +0.6806558 0.5725335 0.7998369 +0.7388448 0.5725335 0.7998369 +0.7998369 0.5725335 0.7998369 +0.8636691 0.5725335 0.7998369 +0.9303782 0.5725335 0.7998369 +1 0.5725335 0.7998369 +0 0.6252316 0.7998369 +0.002418731 0.6252316 0.7998369 +0.005155668 0.6252316 0.7998369 +0.009080105 0.6252316 0.7998369 +0.01434988 0.6252316 0.7998369 +0.02107202 0.6252316 0.7998369 +0.02934285 0.6252316 0.7998369 +0.03925039 0.6252316 0.7998369 +0.05087609 0.6252316 0.7998369 +0.06429595 0.6252316 0.7998369 +0.07958143 0.6252316 0.7998369 +0.0968001 0.6252316 0.7998369 +0.1160161 0.6252316 0.7998369 +0.1372908 0.6252316 0.7998369 +0.1606827 0.6252316 0.7998369 +0.1862481 0.6252316 0.7998369 +0.2140411 0.6252316 0.7998369 +0.2441142 0.6252316 0.7998369 +0.2765176 0.6252316 0.7998369 +0.3113005 0.6252316 0.7998369 +0.3485102 0.6252316 0.7998369 +0.388193 0.6252316 0.7998369 +0.4303934 0.6252316 0.7998369 +0.4751555 0.6252316 0.7998369 +0.5225216 0.6252316 0.7998369 +0.5725335 0.6252316 0.7998369 +0.6252316 0.6252316 0.7998369 +0.6806558 0.6252316 0.7998369 +0.7388448 0.6252316 0.7998369 +0.7998369 0.6252316 0.7998369 +0.8636691 0.6252316 0.7998369 +0.9303782 0.6252316 0.7998369 +1 0.6252316 0.7998369 +0 0.6806558 0.7998369 +0.002418731 0.6806558 0.7998369 +0.005155668 0.6806558 0.7998369 +0.009080105 0.6806558 0.7998369 +0.01434988 0.6806558 0.7998369 +0.02107202 0.6806558 0.7998369 +0.02934285 0.6806558 0.7998369 +0.03925039 0.6806558 0.7998369 +0.05087609 0.6806558 0.7998369 +0.06429595 0.6806558 0.7998369 +0.07958143 0.6806558 0.7998369 +0.0968001 0.6806558 0.7998369 +0.1160161 0.6806558 0.7998369 +0.1372908 0.6806558 0.7998369 +0.1606827 0.6806558 0.7998369 +0.1862481 0.6806558 0.7998369 +0.2140411 0.6806558 0.7998369 +0.2441142 0.6806558 0.7998369 +0.2765176 0.6806558 0.7998369 +0.3113005 0.6806558 0.7998369 +0.3485102 0.6806558 0.7998369 +0.388193 0.6806558 0.7998369 +0.4303934 0.6806558 0.7998369 +0.4751555 0.6806558 0.7998369 +0.5225216 0.6806558 0.7998369 +0.5725335 0.6806558 0.7998369 +0.6252316 0.6806558 0.7998369 +0.6806558 0.6806558 0.7998369 +0.7388448 0.6806558 0.7998369 +0.7998369 0.6806558 0.7998369 +0.8636691 0.6806558 0.7998369 +0.9303782 0.6806558 0.7998369 +1 0.6806558 0.7998369 +0 0.7388448 0.7998369 +0.002418731 0.7388448 0.7998369 +0.005155668 0.7388448 0.7998369 +0.009080105 0.7388448 0.7998369 +0.01434988 0.7388448 0.7998369 +0.02107202 0.7388448 0.7998369 +0.02934285 0.7388448 0.7998369 +0.03925039 0.7388448 0.7998369 +0.05087609 0.7388448 0.7998369 +0.06429595 0.7388448 0.7998369 +0.07958143 0.7388448 0.7998369 +0.0968001 0.7388448 0.7998369 +0.1160161 0.7388448 0.7998369 +0.1372908 0.7388448 0.7998369 +0.1606827 0.7388448 0.7998369 +0.1862481 0.7388448 0.7998369 +0.2140411 0.7388448 0.7998369 +0.2441142 0.7388448 0.7998369 +0.2765176 0.7388448 0.7998369 +0.3113005 0.7388448 0.7998369 +0.3485102 0.7388448 0.7998369 +0.388193 0.7388448 0.7998369 +0.4303934 0.7388448 0.7998369 +0.4751555 0.7388448 0.7998369 +0.5225216 0.7388448 0.7998369 +0.5725335 0.7388448 0.7998369 +0.6252316 0.7388448 0.7998369 +0.6806558 0.7388448 0.7998369 +0.7388448 0.7388448 0.7998369 +0.7998369 0.7388448 0.7998369 +0.8636691 0.7388448 0.7998369 +0.9303782 0.7388448 0.7998369 +1 0.7388448 0.7998369 +0 0.7998369 0.7998369 +0.002418731 0.7998369 0.7998369 +0.005155668 0.7998369 0.7998369 +0.009080105 0.7998369 0.7998369 +0.01434988 0.7998369 0.7998369 +0.02107202 0.7998369 0.7998369 +0.02934285 0.7998369 0.7998369 +0.03925039 0.7998369 0.7998369 +0.05087609 0.7998369 0.7998369 +0.06429595 0.7998369 0.7998369 +0.07958143 0.7998369 0.7998369 +0.0968001 0.7998369 0.7998369 +0.1160161 0.7998369 0.7998369 +0.1372908 0.7998369 0.7998369 +0.1606827 0.7998369 0.7998369 +0.1862481 0.7998369 0.7998369 +0.2140411 0.7998369 0.7998369 +0.2441142 0.7998369 0.7998369 +0.2765176 0.7998369 0.7998369 +0.3113005 0.7998369 0.7998369 +0.3485102 0.7998369 0.7998369 +0.388193 0.7998369 0.7998369 +0.4303934 0.7998369 0.7998369 +0.4751555 0.7998369 0.7998369 +0.5225216 0.7998369 0.7998369 +0.5725335 0.7998369 0.7998369 +0.6252316 0.7998369 0.7998369 +0.6806558 0.7998369 0.7998369 +0.7388448 0.7998369 0.7998369 +0.7998369 0.7998369 0.7998369 +0.8636691 0.7998369 0.7998369 +0.9303782 0.7998369 0.7998369 +1 0.7998369 0.7998369 +0 0.8636691 0.7998369 +0.002418731 0.8636691 0.7998369 +0.005155668 0.8636691 0.7998369 +0.009080105 0.8636691 0.7998369 +0.01434988 0.8636691 0.7998369 +0.02107202 0.8636691 0.7998369 +0.02934285 0.8636691 0.7998369 +0.03925039 0.8636691 0.7998369 +0.05087609 0.8636691 0.7998369 +0.06429595 0.8636691 0.7998369 +0.07958143 0.8636691 0.7998369 +0.0968001 0.8636691 0.7998369 +0.1160161 0.8636691 0.7998369 +0.1372908 0.8636691 0.7998369 +0.1606827 0.8636691 0.7998369 +0.1862481 0.8636691 0.7998369 +0.2140411 0.8636691 0.7998369 +0.2441142 0.8636691 0.7998369 +0.2765176 0.8636691 0.7998369 +0.3113005 0.8636691 0.7998369 +0.3485102 0.8636691 0.7998369 +0.388193 0.8636691 0.7998369 +0.4303934 0.8636691 0.7998369 +0.4751555 0.8636691 0.7998369 +0.5225216 0.8636691 0.7998369 +0.5725335 0.8636691 0.7998369 +0.6252316 0.8636691 0.7998369 +0.6806558 0.8636691 0.7998369 +0.7388448 0.8636691 0.7998369 +0.7998369 0.8636691 0.7998369 +0.8636691 0.8636691 0.7998369 +0.9303782 0.8636691 0.7998369 +1 0.8636691 0.7998369 +0 0.9303782 0.7998369 +0.002418731 0.9303782 0.7998369 +0.005155668 0.9303782 0.7998369 +0.009080105 0.9303782 0.7998369 +0.01434988 0.9303782 0.7998369 +0.02107202 0.9303782 0.7998369 +0.02934285 0.9303782 0.7998369 +0.03925039 0.9303782 0.7998369 +0.05087609 0.9303782 0.7998369 +0.06429595 0.9303782 0.7998369 +0.07958143 0.9303782 0.7998369 +0.0968001 0.9303782 0.7998369 +0.1160161 0.9303782 0.7998369 +0.1372908 0.9303782 0.7998369 +0.1606827 0.9303782 0.7998369 +0.1862481 0.9303782 0.7998369 +0.2140411 0.9303782 0.7998369 +0.2441142 0.9303782 0.7998369 +0.2765176 0.9303782 0.7998369 +0.3113005 0.9303782 0.7998369 +0.3485102 0.9303782 0.7998369 +0.388193 0.9303782 0.7998369 +0.4303934 0.9303782 0.7998369 +0.4751555 0.9303782 0.7998369 +0.5225216 0.9303782 0.7998369 +0.5725335 0.9303782 0.7998369 +0.6252316 0.9303782 0.7998369 +0.6806558 0.9303782 0.7998369 +0.7388448 0.9303782 0.7998369 +0.7998369 0.9303782 0.7998369 +0.8636691 0.9303782 0.7998369 +0.9303782 0.9303782 0.7998369 +1 0.9303782 0.7998369 +0 1 0.7998369 +0.002418731 1 0.7998369 +0.005155668 1 0.7998369 +0.009080105 1 0.7998369 +0.01434988 1 0.7998369 +0.02107202 1 0.7998369 +0.02934285 1 0.7998369 +0.03925039 1 0.7998369 +0.05087609 1 0.7998369 +0.06429595 1 0.7998369 +0.07958143 1 0.7998369 +0.0968001 1 0.7998369 +0.1160161 1 0.7998369 +0.1372908 1 0.7998369 +0.1606827 1 0.7998369 +0.1862481 1 0.7998369 +0.2140411 1 0.7998369 +0.2441142 1 0.7998369 +0.2765176 1 0.7998369 +0.3113005 1 0.7998369 +0.3485102 1 0.7998369 +0.388193 1 0.7998369 +0.4303934 1 0.7998369 +0.4751555 1 0.7998369 +0.5225216 1 0.7998369 +0.5725335 1 0.7998369 +0.6252316 1 0.7998369 +0.6806558 1 0.7998369 +0.7388448 1 0.7998369 +0.7998369 1 0.7998369 +0.8636691 1 0.7998369 +0.9303782 1 0.7998369 +1 1 0.7998369 +0 0 0.8636691 +0.002418731 0 0.8636691 +0.005155668 0 0.8636691 +0.009080105 0 0.8636691 +0.01434988 0 0.8636691 +0.02107202 0 0.8636691 +0.02934285 0 0.8636691 +0.03925039 0 0.8636691 +0.05087609 0 0.8636691 +0.06429595 0 0.8636691 +0.07958143 0 0.8636691 +0.0968001 0 0.8636691 +0.1160161 0 0.8636691 +0.1372908 0 0.8636691 +0.1606827 0 0.8636691 +0.1862481 0 0.8636691 +0.2140411 0 0.8636691 +0.2441142 0 0.8636691 +0.2765176 0 0.8636691 +0.3113005 0 0.8636691 +0.3485102 0 0.8636691 +0.388193 0 0.8636691 +0.4303934 0 0.8636691 +0.4751555 0 0.8636691 +0.5225216 0 0.8636691 +0.5725335 0 0.8636691 +0.6252316 0 0.8636691 +0.6806558 0 0.8636691 +0.7388448 0 0.8636691 +0.7998369 0 0.8636691 +0.8636691 0 0.8636691 +0.9303782 0 0.8636691 +1 0 0.8636691 +0 0.002418731 0.8636691 +0.002418731 0.002418731 0.8636691 +0.005155668 0.002418731 0.8636691 +0.009080105 0.002418731 0.8636691 +0.01434988 0.002418731 0.8636691 +0.02107202 0.002418731 0.8636691 +0.02934285 0.002418731 0.8636691 +0.03925039 0.002418731 0.8636691 +0.05087609 0.002418731 0.8636691 +0.06429595 0.002418731 0.8636691 +0.07958143 0.002418731 0.8636691 +0.0968001 0.002418731 0.8636691 +0.1160161 0.002418731 0.8636691 +0.1372908 0.002418731 0.8636691 +0.1606827 0.002418731 0.8636691 +0.1862481 0.002418731 0.8636691 +0.2140411 0.002418731 0.8636691 +0.2441142 0.002418731 0.8636691 +0.2765176 0.002418731 0.8636691 +0.3113005 0.002418731 0.8636691 +0.3485102 0.002418731 0.8636691 +0.388193 0.002418731 0.8636691 +0.4303934 0.002418731 0.8636691 +0.4751555 0.002418731 0.8636691 +0.5225216 0.002418731 0.8636691 +0.5725335 0.002418731 0.8636691 +0.6252316 0.002418731 0.8636691 +0.6806558 0.002418731 0.8636691 +0.7388448 0.002418731 0.8636691 +0.7998369 0.002418731 0.8636691 +0.8636691 0.002418731 0.8636691 +0.9303782 0.002418731 0.8636691 +1 0.002418731 0.8636691 +0 0.005155668 0.8636691 +0.002418731 0.005155668 0.8636691 +0.005155668 0.005155668 0.8636691 +0.009080105 0.005155668 0.8636691 +0.01434988 0.005155668 0.8636691 +0.02107202 0.005155668 0.8636691 +0.02934285 0.005155668 0.8636691 +0.03925039 0.005155668 0.8636691 +0.05087609 0.005155668 0.8636691 +0.06429595 0.005155668 0.8636691 +0.07958143 0.005155668 0.8636691 +0.0968001 0.005155668 0.8636691 +0.1160161 0.005155668 0.8636691 +0.1372908 0.005155668 0.8636691 +0.1606827 0.005155668 0.8636691 +0.1862481 0.005155668 0.8636691 +0.2140411 0.005155668 0.8636691 +0.2441142 0.005155668 0.8636691 +0.2765176 0.005155668 0.8636691 +0.3113005 0.005155668 0.8636691 +0.3485102 0.005155668 0.8636691 +0.388193 0.005155668 0.8636691 +0.4303934 0.005155668 0.8636691 +0.4751555 0.005155668 0.8636691 +0.5225216 0.005155668 0.8636691 +0.5725335 0.005155668 0.8636691 +0.6252316 0.005155668 0.8636691 +0.6806558 0.005155668 0.8636691 +0.7388448 0.005155668 0.8636691 +0.7998369 0.005155668 0.8636691 +0.8636691 0.005155668 0.8636691 +0.9303782 0.005155668 0.8636691 +1 0.005155668 0.8636691 +0 0.009080105 0.8636691 +0.002418731 0.009080105 0.8636691 +0.005155668 0.009080105 0.8636691 +0.009080105 0.009080105 0.8636691 +0.01434988 0.009080105 0.8636691 +0.02107202 0.009080105 0.8636691 +0.02934285 0.009080105 0.8636691 +0.03925039 0.009080105 0.8636691 +0.05087609 0.009080105 0.8636691 +0.06429595 0.009080105 0.8636691 +0.07958143 0.009080105 0.8636691 +0.0968001 0.009080105 0.8636691 +0.1160161 0.009080105 0.8636691 +0.1372908 0.009080105 0.8636691 +0.1606827 0.009080105 0.8636691 +0.1862481 0.009080105 0.8636691 +0.2140411 0.009080105 0.8636691 +0.2441142 0.009080105 0.8636691 +0.2765176 0.009080105 0.8636691 +0.3113005 0.009080105 0.8636691 +0.3485102 0.009080105 0.8636691 +0.388193 0.009080105 0.8636691 +0.4303934 0.009080105 0.8636691 +0.4751555 0.009080105 0.8636691 +0.5225216 0.009080105 0.8636691 +0.5725335 0.009080105 0.8636691 +0.6252316 0.009080105 0.8636691 +0.6806558 0.009080105 0.8636691 +0.7388448 0.009080105 0.8636691 +0.7998369 0.009080105 0.8636691 +0.8636691 0.009080105 0.8636691 +0.9303782 0.009080105 0.8636691 +1 0.009080105 0.8636691 +0 0.01434988 0.8636691 +0.002418731 0.01434988 0.8636691 +0.005155668 0.01434988 0.8636691 +0.009080105 0.01434988 0.8636691 +0.01434988 0.01434988 0.8636691 +0.02107202 0.01434988 0.8636691 +0.02934285 0.01434988 0.8636691 +0.03925039 0.01434988 0.8636691 +0.05087609 0.01434988 0.8636691 +0.06429595 0.01434988 0.8636691 +0.07958143 0.01434988 0.8636691 +0.0968001 0.01434988 0.8636691 +0.1160161 0.01434988 0.8636691 +0.1372908 0.01434988 0.8636691 +0.1606827 0.01434988 0.8636691 +0.1862481 0.01434988 0.8636691 +0.2140411 0.01434988 0.8636691 +0.2441142 0.01434988 0.8636691 +0.2765176 0.01434988 0.8636691 +0.3113005 0.01434988 0.8636691 +0.3485102 0.01434988 0.8636691 +0.388193 0.01434988 0.8636691 +0.4303934 0.01434988 0.8636691 +0.4751555 0.01434988 0.8636691 +0.5225216 0.01434988 0.8636691 +0.5725335 0.01434988 0.8636691 +0.6252316 0.01434988 0.8636691 +0.6806558 0.01434988 0.8636691 +0.7388448 0.01434988 0.8636691 +0.7998369 0.01434988 0.8636691 +0.8636691 0.01434988 0.8636691 +0.9303782 0.01434988 0.8636691 +1 0.01434988 0.8636691 +0 0.02107202 0.8636691 +0.002418731 0.02107202 0.8636691 +0.005155668 0.02107202 0.8636691 +0.009080105 0.02107202 0.8636691 +0.01434988 0.02107202 0.8636691 +0.02107202 0.02107202 0.8636691 +0.02934285 0.02107202 0.8636691 +0.03925039 0.02107202 0.8636691 +0.05087609 0.02107202 0.8636691 +0.06429595 0.02107202 0.8636691 +0.07958143 0.02107202 0.8636691 +0.0968001 0.02107202 0.8636691 +0.1160161 0.02107202 0.8636691 +0.1372908 0.02107202 0.8636691 +0.1606827 0.02107202 0.8636691 +0.1862481 0.02107202 0.8636691 +0.2140411 0.02107202 0.8636691 +0.2441142 0.02107202 0.8636691 +0.2765176 0.02107202 0.8636691 +0.3113005 0.02107202 0.8636691 +0.3485102 0.02107202 0.8636691 +0.388193 0.02107202 0.8636691 +0.4303934 0.02107202 0.8636691 +0.4751555 0.02107202 0.8636691 +0.5225216 0.02107202 0.8636691 +0.5725335 0.02107202 0.8636691 +0.6252316 0.02107202 0.8636691 +0.6806558 0.02107202 0.8636691 +0.7388448 0.02107202 0.8636691 +0.7998369 0.02107202 0.8636691 +0.8636691 0.02107202 0.8636691 +0.9303782 0.02107202 0.8636691 +1 0.02107202 0.8636691 +0 0.02934285 0.8636691 +0.002418731 0.02934285 0.8636691 +0.005155668 0.02934285 0.8636691 +0.009080105 0.02934285 0.8636691 +0.01434988 0.02934285 0.8636691 +0.02107202 0.02934285 0.8636691 +0.02934285 0.02934285 0.8636691 +0.03925039 0.02934285 0.8636691 +0.05087609 0.02934285 0.8636691 +0.06429595 0.02934285 0.8636691 +0.07958143 0.02934285 0.8636691 +0.0968001 0.02934285 0.8636691 +0.1160161 0.02934285 0.8636691 +0.1372908 0.02934285 0.8636691 +0.1606827 0.02934285 0.8636691 +0.1862481 0.02934285 0.8636691 +0.2140411 0.02934285 0.8636691 +0.2441142 0.02934285 0.8636691 +0.2765176 0.02934285 0.8636691 +0.3113005 0.02934285 0.8636691 +0.3485102 0.02934285 0.8636691 +0.388193 0.02934285 0.8636691 +0.4303934 0.02934285 0.8636691 +0.4751555 0.02934285 0.8636691 +0.5225216 0.02934285 0.8636691 +0.5725335 0.02934285 0.8636691 +0.6252316 0.02934285 0.8636691 +0.6806558 0.02934285 0.8636691 +0.7388448 0.02934285 0.8636691 +0.7998369 0.02934285 0.8636691 +0.8636691 0.02934285 0.8636691 +0.9303782 0.02934285 0.8636691 +1 0.02934285 0.8636691 +0 0.03925039 0.8636691 +0.002418731 0.03925039 0.8636691 +0.005155668 0.03925039 0.8636691 +0.009080105 0.03925039 0.8636691 +0.01434988 0.03925039 0.8636691 +0.02107202 0.03925039 0.8636691 +0.02934285 0.03925039 0.8636691 +0.03925039 0.03925039 0.8636691 +0.05087609 0.03925039 0.8636691 +0.06429595 0.03925039 0.8636691 +0.07958143 0.03925039 0.8636691 +0.0968001 0.03925039 0.8636691 +0.1160161 0.03925039 0.8636691 +0.1372908 0.03925039 0.8636691 +0.1606827 0.03925039 0.8636691 +0.1862481 0.03925039 0.8636691 +0.2140411 0.03925039 0.8636691 +0.2441142 0.03925039 0.8636691 +0.2765176 0.03925039 0.8636691 +0.3113005 0.03925039 0.8636691 +0.3485102 0.03925039 0.8636691 +0.388193 0.03925039 0.8636691 +0.4303934 0.03925039 0.8636691 +0.4751555 0.03925039 0.8636691 +0.5225216 0.03925039 0.8636691 +0.5725335 0.03925039 0.8636691 +0.6252316 0.03925039 0.8636691 +0.6806558 0.03925039 0.8636691 +0.7388448 0.03925039 0.8636691 +0.7998369 0.03925039 0.8636691 +0.8636691 0.03925039 0.8636691 +0.9303782 0.03925039 0.8636691 +1 0.03925039 0.8636691 +0 0.05087609 0.8636691 +0.002418731 0.05087609 0.8636691 +0.005155668 0.05087609 0.8636691 +0.009080105 0.05087609 0.8636691 +0.01434988 0.05087609 0.8636691 +0.02107202 0.05087609 0.8636691 +0.02934285 0.05087609 0.8636691 +0.03925039 0.05087609 0.8636691 +0.05087609 0.05087609 0.8636691 +0.06429595 0.05087609 0.8636691 +0.07958143 0.05087609 0.8636691 +0.0968001 0.05087609 0.8636691 +0.1160161 0.05087609 0.8636691 +0.1372908 0.05087609 0.8636691 +0.1606827 0.05087609 0.8636691 +0.1862481 0.05087609 0.8636691 +0.2140411 0.05087609 0.8636691 +0.2441142 0.05087609 0.8636691 +0.2765176 0.05087609 0.8636691 +0.3113005 0.05087609 0.8636691 +0.3485102 0.05087609 0.8636691 +0.388193 0.05087609 0.8636691 +0.4303934 0.05087609 0.8636691 +0.4751555 0.05087609 0.8636691 +0.5225216 0.05087609 0.8636691 +0.5725335 0.05087609 0.8636691 +0.6252316 0.05087609 0.8636691 +0.6806558 0.05087609 0.8636691 +0.7388448 0.05087609 0.8636691 +0.7998369 0.05087609 0.8636691 +0.8636691 0.05087609 0.8636691 +0.9303782 0.05087609 0.8636691 +1 0.05087609 0.8636691 +0 0.06429595 0.8636691 +0.002418731 0.06429595 0.8636691 +0.005155668 0.06429595 0.8636691 +0.009080105 0.06429595 0.8636691 +0.01434988 0.06429595 0.8636691 +0.02107202 0.06429595 0.8636691 +0.02934285 0.06429595 0.8636691 +0.03925039 0.06429595 0.8636691 +0.05087609 0.06429595 0.8636691 +0.06429595 0.06429595 0.8636691 +0.07958143 0.06429595 0.8636691 +0.0968001 0.06429595 0.8636691 +0.1160161 0.06429595 0.8636691 +0.1372908 0.06429595 0.8636691 +0.1606827 0.06429595 0.8636691 +0.1862481 0.06429595 0.8636691 +0.2140411 0.06429595 0.8636691 +0.2441142 0.06429595 0.8636691 +0.2765176 0.06429595 0.8636691 +0.3113005 0.06429595 0.8636691 +0.3485102 0.06429595 0.8636691 +0.388193 0.06429595 0.8636691 +0.4303934 0.06429595 0.8636691 +0.4751555 0.06429595 0.8636691 +0.5225216 0.06429595 0.8636691 +0.5725335 0.06429595 0.8636691 +0.6252316 0.06429595 0.8636691 +0.6806558 0.06429595 0.8636691 +0.7388448 0.06429595 0.8636691 +0.7998369 0.06429595 0.8636691 +0.8636691 0.06429595 0.8636691 +0.9303782 0.06429595 0.8636691 +1 0.06429595 0.8636691 +0 0.07958143 0.8636691 +0.002418731 0.07958143 0.8636691 +0.005155668 0.07958143 0.8636691 +0.009080105 0.07958143 0.8636691 +0.01434988 0.07958143 0.8636691 +0.02107202 0.07958143 0.8636691 +0.02934285 0.07958143 0.8636691 +0.03925039 0.07958143 0.8636691 +0.05087609 0.07958143 0.8636691 +0.06429595 0.07958143 0.8636691 +0.07958143 0.07958143 0.8636691 +0.0968001 0.07958143 0.8636691 +0.1160161 0.07958143 0.8636691 +0.1372908 0.07958143 0.8636691 +0.1606827 0.07958143 0.8636691 +0.1862481 0.07958143 0.8636691 +0.2140411 0.07958143 0.8636691 +0.2441142 0.07958143 0.8636691 +0.2765176 0.07958143 0.8636691 +0.3113005 0.07958143 0.8636691 +0.3485102 0.07958143 0.8636691 +0.388193 0.07958143 0.8636691 +0.4303934 0.07958143 0.8636691 +0.4751555 0.07958143 0.8636691 +0.5225216 0.07958143 0.8636691 +0.5725335 0.07958143 0.8636691 +0.6252316 0.07958143 0.8636691 +0.6806558 0.07958143 0.8636691 +0.7388448 0.07958143 0.8636691 +0.7998369 0.07958143 0.8636691 +0.8636691 0.07958143 0.8636691 +0.9303782 0.07958143 0.8636691 +1 0.07958143 0.8636691 +0 0.0968001 0.8636691 +0.002418731 0.0968001 0.8636691 +0.005155668 0.0968001 0.8636691 +0.009080105 0.0968001 0.8636691 +0.01434988 0.0968001 0.8636691 +0.02107202 0.0968001 0.8636691 +0.02934285 0.0968001 0.8636691 +0.03925039 0.0968001 0.8636691 +0.05087609 0.0968001 0.8636691 +0.06429595 0.0968001 0.8636691 +0.07958143 0.0968001 0.8636691 +0.0968001 0.0968001 0.8636691 +0.1160161 0.0968001 0.8636691 +0.1372908 0.0968001 0.8636691 +0.1606827 0.0968001 0.8636691 +0.1862481 0.0968001 0.8636691 +0.2140411 0.0968001 0.8636691 +0.2441142 0.0968001 0.8636691 +0.2765176 0.0968001 0.8636691 +0.3113005 0.0968001 0.8636691 +0.3485102 0.0968001 0.8636691 +0.388193 0.0968001 0.8636691 +0.4303934 0.0968001 0.8636691 +0.4751555 0.0968001 0.8636691 +0.5225216 0.0968001 0.8636691 +0.5725335 0.0968001 0.8636691 +0.6252316 0.0968001 0.8636691 +0.6806558 0.0968001 0.8636691 +0.7388448 0.0968001 0.8636691 +0.7998369 0.0968001 0.8636691 +0.8636691 0.0968001 0.8636691 +0.9303782 0.0968001 0.8636691 +1 0.0968001 0.8636691 +0 0.1160161 0.8636691 +0.002418731 0.1160161 0.8636691 +0.005155668 0.1160161 0.8636691 +0.009080105 0.1160161 0.8636691 +0.01434988 0.1160161 0.8636691 +0.02107202 0.1160161 0.8636691 +0.02934285 0.1160161 0.8636691 +0.03925039 0.1160161 0.8636691 +0.05087609 0.1160161 0.8636691 +0.06429595 0.1160161 0.8636691 +0.07958143 0.1160161 0.8636691 +0.0968001 0.1160161 0.8636691 +0.1160161 0.1160161 0.8636691 +0.1372908 0.1160161 0.8636691 +0.1606827 0.1160161 0.8636691 +0.1862481 0.1160161 0.8636691 +0.2140411 0.1160161 0.8636691 +0.2441142 0.1160161 0.8636691 +0.2765176 0.1160161 0.8636691 +0.3113005 0.1160161 0.8636691 +0.3485102 0.1160161 0.8636691 +0.388193 0.1160161 0.8636691 +0.4303934 0.1160161 0.8636691 +0.4751555 0.1160161 0.8636691 +0.5225216 0.1160161 0.8636691 +0.5725335 0.1160161 0.8636691 +0.6252316 0.1160161 0.8636691 +0.6806558 0.1160161 0.8636691 +0.7388448 0.1160161 0.8636691 +0.7998369 0.1160161 0.8636691 +0.8636691 0.1160161 0.8636691 +0.9303782 0.1160161 0.8636691 +1 0.1160161 0.8636691 +0 0.1372908 0.8636691 +0.002418731 0.1372908 0.8636691 +0.005155668 0.1372908 0.8636691 +0.009080105 0.1372908 0.8636691 +0.01434988 0.1372908 0.8636691 +0.02107202 0.1372908 0.8636691 +0.02934285 0.1372908 0.8636691 +0.03925039 0.1372908 0.8636691 +0.05087609 0.1372908 0.8636691 +0.06429595 0.1372908 0.8636691 +0.07958143 0.1372908 0.8636691 +0.0968001 0.1372908 0.8636691 +0.1160161 0.1372908 0.8636691 +0.1372908 0.1372908 0.8636691 +0.1606827 0.1372908 0.8636691 +0.1862481 0.1372908 0.8636691 +0.2140411 0.1372908 0.8636691 +0.2441142 0.1372908 0.8636691 +0.2765176 0.1372908 0.8636691 +0.3113005 0.1372908 0.8636691 +0.3485102 0.1372908 0.8636691 +0.388193 0.1372908 0.8636691 +0.4303934 0.1372908 0.8636691 +0.4751555 0.1372908 0.8636691 +0.5225216 0.1372908 0.8636691 +0.5725335 0.1372908 0.8636691 +0.6252316 0.1372908 0.8636691 +0.6806558 0.1372908 0.8636691 +0.7388448 0.1372908 0.8636691 +0.7998369 0.1372908 0.8636691 +0.8636691 0.1372908 0.8636691 +0.9303782 0.1372908 0.8636691 +1 0.1372908 0.8636691 +0 0.1606827 0.8636691 +0.002418731 0.1606827 0.8636691 +0.005155668 0.1606827 0.8636691 +0.009080105 0.1606827 0.8636691 +0.01434988 0.1606827 0.8636691 +0.02107202 0.1606827 0.8636691 +0.02934285 0.1606827 0.8636691 +0.03925039 0.1606827 0.8636691 +0.05087609 0.1606827 0.8636691 +0.06429595 0.1606827 0.8636691 +0.07958143 0.1606827 0.8636691 +0.0968001 0.1606827 0.8636691 +0.1160161 0.1606827 0.8636691 +0.1372908 0.1606827 0.8636691 +0.1606827 0.1606827 0.8636691 +0.1862481 0.1606827 0.8636691 +0.2140411 0.1606827 0.8636691 +0.2441142 0.1606827 0.8636691 +0.2765176 0.1606827 0.8636691 +0.3113005 0.1606827 0.8636691 +0.3485102 0.1606827 0.8636691 +0.388193 0.1606827 0.8636691 +0.4303934 0.1606827 0.8636691 +0.4751555 0.1606827 0.8636691 +0.5225216 0.1606827 0.8636691 +0.5725335 0.1606827 0.8636691 +0.6252316 0.1606827 0.8636691 +0.6806558 0.1606827 0.8636691 +0.7388448 0.1606827 0.8636691 +0.7998369 0.1606827 0.8636691 +0.8636691 0.1606827 0.8636691 +0.9303782 0.1606827 0.8636691 +1 0.1606827 0.8636691 +0 0.1862481 0.8636691 +0.002418731 0.1862481 0.8636691 +0.005155668 0.1862481 0.8636691 +0.009080105 0.1862481 0.8636691 +0.01434988 0.1862481 0.8636691 +0.02107202 0.1862481 0.8636691 +0.02934285 0.1862481 0.8636691 +0.03925039 0.1862481 0.8636691 +0.05087609 0.1862481 0.8636691 +0.06429595 0.1862481 0.8636691 +0.07958143 0.1862481 0.8636691 +0.0968001 0.1862481 0.8636691 +0.1160161 0.1862481 0.8636691 +0.1372908 0.1862481 0.8636691 +0.1606827 0.1862481 0.8636691 +0.1862481 0.1862481 0.8636691 +0.2140411 0.1862481 0.8636691 +0.2441142 0.1862481 0.8636691 +0.2765176 0.1862481 0.8636691 +0.3113005 0.1862481 0.8636691 +0.3485102 0.1862481 0.8636691 +0.388193 0.1862481 0.8636691 +0.4303934 0.1862481 0.8636691 +0.4751555 0.1862481 0.8636691 +0.5225216 0.1862481 0.8636691 +0.5725335 0.1862481 0.8636691 +0.6252316 0.1862481 0.8636691 +0.6806558 0.1862481 0.8636691 +0.7388448 0.1862481 0.8636691 +0.7998369 0.1862481 0.8636691 +0.8636691 0.1862481 0.8636691 +0.9303782 0.1862481 0.8636691 +1 0.1862481 0.8636691 +0 0.2140411 0.8636691 +0.002418731 0.2140411 0.8636691 +0.005155668 0.2140411 0.8636691 +0.009080105 0.2140411 0.8636691 +0.01434988 0.2140411 0.8636691 +0.02107202 0.2140411 0.8636691 +0.02934285 0.2140411 0.8636691 +0.03925039 0.2140411 0.8636691 +0.05087609 0.2140411 0.8636691 +0.06429595 0.2140411 0.8636691 +0.07958143 0.2140411 0.8636691 +0.0968001 0.2140411 0.8636691 +0.1160161 0.2140411 0.8636691 +0.1372908 0.2140411 0.8636691 +0.1606827 0.2140411 0.8636691 +0.1862481 0.2140411 0.8636691 +0.2140411 0.2140411 0.8636691 +0.2441142 0.2140411 0.8636691 +0.2765176 0.2140411 0.8636691 +0.3113005 0.2140411 0.8636691 +0.3485102 0.2140411 0.8636691 +0.388193 0.2140411 0.8636691 +0.4303934 0.2140411 0.8636691 +0.4751555 0.2140411 0.8636691 +0.5225216 0.2140411 0.8636691 +0.5725335 0.2140411 0.8636691 +0.6252316 0.2140411 0.8636691 +0.6806558 0.2140411 0.8636691 +0.7388448 0.2140411 0.8636691 +0.7998369 0.2140411 0.8636691 +0.8636691 0.2140411 0.8636691 +0.9303782 0.2140411 0.8636691 +1 0.2140411 0.8636691 +0 0.2441142 0.8636691 +0.002418731 0.2441142 0.8636691 +0.005155668 0.2441142 0.8636691 +0.009080105 0.2441142 0.8636691 +0.01434988 0.2441142 0.8636691 +0.02107202 0.2441142 0.8636691 +0.02934285 0.2441142 0.8636691 +0.03925039 0.2441142 0.8636691 +0.05087609 0.2441142 0.8636691 +0.06429595 0.2441142 0.8636691 +0.07958143 0.2441142 0.8636691 +0.0968001 0.2441142 0.8636691 +0.1160161 0.2441142 0.8636691 +0.1372908 0.2441142 0.8636691 +0.1606827 0.2441142 0.8636691 +0.1862481 0.2441142 0.8636691 +0.2140411 0.2441142 0.8636691 +0.2441142 0.2441142 0.8636691 +0.2765176 0.2441142 0.8636691 +0.3113005 0.2441142 0.8636691 +0.3485102 0.2441142 0.8636691 +0.388193 0.2441142 0.8636691 +0.4303934 0.2441142 0.8636691 +0.4751555 0.2441142 0.8636691 +0.5225216 0.2441142 0.8636691 +0.5725335 0.2441142 0.8636691 +0.6252316 0.2441142 0.8636691 +0.6806558 0.2441142 0.8636691 +0.7388448 0.2441142 0.8636691 +0.7998369 0.2441142 0.8636691 +0.8636691 0.2441142 0.8636691 +0.9303782 0.2441142 0.8636691 +1 0.2441142 0.8636691 +0 0.2765176 0.8636691 +0.002418731 0.2765176 0.8636691 +0.005155668 0.2765176 0.8636691 +0.009080105 0.2765176 0.8636691 +0.01434988 0.2765176 0.8636691 +0.02107202 0.2765176 0.8636691 +0.02934285 0.2765176 0.8636691 +0.03925039 0.2765176 0.8636691 +0.05087609 0.2765176 0.8636691 +0.06429595 0.2765176 0.8636691 +0.07958143 0.2765176 0.8636691 +0.0968001 0.2765176 0.8636691 +0.1160161 0.2765176 0.8636691 +0.1372908 0.2765176 0.8636691 +0.1606827 0.2765176 0.8636691 +0.1862481 0.2765176 0.8636691 +0.2140411 0.2765176 0.8636691 +0.2441142 0.2765176 0.8636691 +0.2765176 0.2765176 0.8636691 +0.3113005 0.2765176 0.8636691 +0.3485102 0.2765176 0.8636691 +0.388193 0.2765176 0.8636691 +0.4303934 0.2765176 0.8636691 +0.4751555 0.2765176 0.8636691 +0.5225216 0.2765176 0.8636691 +0.5725335 0.2765176 0.8636691 +0.6252316 0.2765176 0.8636691 +0.6806558 0.2765176 0.8636691 +0.7388448 0.2765176 0.8636691 +0.7998369 0.2765176 0.8636691 +0.8636691 0.2765176 0.8636691 +0.9303782 0.2765176 0.8636691 +1 0.2765176 0.8636691 +0 0.3113005 0.8636691 +0.002418731 0.3113005 0.8636691 +0.005155668 0.3113005 0.8636691 +0.009080105 0.3113005 0.8636691 +0.01434988 0.3113005 0.8636691 +0.02107202 0.3113005 0.8636691 +0.02934285 0.3113005 0.8636691 +0.03925039 0.3113005 0.8636691 +0.05087609 0.3113005 0.8636691 +0.06429595 0.3113005 0.8636691 +0.07958143 0.3113005 0.8636691 +0.0968001 0.3113005 0.8636691 +0.1160161 0.3113005 0.8636691 +0.1372908 0.3113005 0.8636691 +0.1606827 0.3113005 0.8636691 +0.1862481 0.3113005 0.8636691 +0.2140411 0.3113005 0.8636691 +0.2441142 0.3113005 0.8636691 +0.2765176 0.3113005 0.8636691 +0.3113005 0.3113005 0.8636691 +0.3485102 0.3113005 0.8636691 +0.388193 0.3113005 0.8636691 +0.4303934 0.3113005 0.8636691 +0.4751555 0.3113005 0.8636691 +0.5225216 0.3113005 0.8636691 +0.5725335 0.3113005 0.8636691 +0.6252316 0.3113005 0.8636691 +0.6806558 0.3113005 0.8636691 +0.7388448 0.3113005 0.8636691 +0.7998369 0.3113005 0.8636691 +0.8636691 0.3113005 0.8636691 +0.9303782 0.3113005 0.8636691 +1 0.3113005 0.8636691 +0 0.3485102 0.8636691 +0.002418731 0.3485102 0.8636691 +0.005155668 0.3485102 0.8636691 +0.009080105 0.3485102 0.8636691 +0.01434988 0.3485102 0.8636691 +0.02107202 0.3485102 0.8636691 +0.02934285 0.3485102 0.8636691 +0.03925039 0.3485102 0.8636691 +0.05087609 0.3485102 0.8636691 +0.06429595 0.3485102 0.8636691 +0.07958143 0.3485102 0.8636691 +0.0968001 0.3485102 0.8636691 +0.1160161 0.3485102 0.8636691 +0.1372908 0.3485102 0.8636691 +0.1606827 0.3485102 0.8636691 +0.1862481 0.3485102 0.8636691 +0.2140411 0.3485102 0.8636691 +0.2441142 0.3485102 0.8636691 +0.2765176 0.3485102 0.8636691 +0.3113005 0.3485102 0.8636691 +0.3485102 0.3485102 0.8636691 +0.388193 0.3485102 0.8636691 +0.4303934 0.3485102 0.8636691 +0.4751555 0.3485102 0.8636691 +0.5225216 0.3485102 0.8636691 +0.5725335 0.3485102 0.8636691 +0.6252316 0.3485102 0.8636691 +0.6806558 0.3485102 0.8636691 +0.7388448 0.3485102 0.8636691 +0.7998369 0.3485102 0.8636691 +0.8636691 0.3485102 0.8636691 +0.9303782 0.3485102 0.8636691 +1 0.3485102 0.8636691 +0 0.388193 0.8636691 +0.002418731 0.388193 0.8636691 +0.005155668 0.388193 0.8636691 +0.009080105 0.388193 0.8636691 +0.01434988 0.388193 0.8636691 +0.02107202 0.388193 0.8636691 +0.02934285 0.388193 0.8636691 +0.03925039 0.388193 0.8636691 +0.05087609 0.388193 0.8636691 +0.06429595 0.388193 0.8636691 +0.07958143 0.388193 0.8636691 +0.0968001 0.388193 0.8636691 +0.1160161 0.388193 0.8636691 +0.1372908 0.388193 0.8636691 +0.1606827 0.388193 0.8636691 +0.1862481 0.388193 0.8636691 +0.2140411 0.388193 0.8636691 +0.2441142 0.388193 0.8636691 +0.2765176 0.388193 0.8636691 +0.3113005 0.388193 0.8636691 +0.3485102 0.388193 0.8636691 +0.388193 0.388193 0.8636691 +0.4303934 0.388193 0.8636691 +0.4751555 0.388193 0.8636691 +0.5225216 0.388193 0.8636691 +0.5725335 0.388193 0.8636691 +0.6252316 0.388193 0.8636691 +0.6806558 0.388193 0.8636691 +0.7388448 0.388193 0.8636691 +0.7998369 0.388193 0.8636691 +0.8636691 0.388193 0.8636691 +0.9303782 0.388193 0.8636691 +1 0.388193 0.8636691 +0 0.4303934 0.8636691 +0.002418731 0.4303934 0.8636691 +0.005155668 0.4303934 0.8636691 +0.009080105 0.4303934 0.8636691 +0.01434988 0.4303934 0.8636691 +0.02107202 0.4303934 0.8636691 +0.02934285 0.4303934 0.8636691 +0.03925039 0.4303934 0.8636691 +0.05087609 0.4303934 0.8636691 +0.06429595 0.4303934 0.8636691 +0.07958143 0.4303934 0.8636691 +0.0968001 0.4303934 0.8636691 +0.1160161 0.4303934 0.8636691 +0.1372908 0.4303934 0.8636691 +0.1606827 0.4303934 0.8636691 +0.1862481 0.4303934 0.8636691 +0.2140411 0.4303934 0.8636691 +0.2441142 0.4303934 0.8636691 +0.2765176 0.4303934 0.8636691 +0.3113005 0.4303934 0.8636691 +0.3485102 0.4303934 0.8636691 +0.388193 0.4303934 0.8636691 +0.4303934 0.4303934 0.8636691 +0.4751555 0.4303934 0.8636691 +0.5225216 0.4303934 0.8636691 +0.5725335 0.4303934 0.8636691 +0.6252316 0.4303934 0.8636691 +0.6806558 0.4303934 0.8636691 +0.7388448 0.4303934 0.8636691 +0.7998369 0.4303934 0.8636691 +0.8636691 0.4303934 0.8636691 +0.9303782 0.4303934 0.8636691 +1 0.4303934 0.8636691 +0 0.4751555 0.8636691 +0.002418731 0.4751555 0.8636691 +0.005155668 0.4751555 0.8636691 +0.009080105 0.4751555 0.8636691 +0.01434988 0.4751555 0.8636691 +0.02107202 0.4751555 0.8636691 +0.02934285 0.4751555 0.8636691 +0.03925039 0.4751555 0.8636691 +0.05087609 0.4751555 0.8636691 +0.06429595 0.4751555 0.8636691 +0.07958143 0.4751555 0.8636691 +0.0968001 0.4751555 0.8636691 +0.1160161 0.4751555 0.8636691 +0.1372908 0.4751555 0.8636691 +0.1606827 0.4751555 0.8636691 +0.1862481 0.4751555 0.8636691 +0.2140411 0.4751555 0.8636691 +0.2441142 0.4751555 0.8636691 +0.2765176 0.4751555 0.8636691 +0.3113005 0.4751555 0.8636691 +0.3485102 0.4751555 0.8636691 +0.388193 0.4751555 0.8636691 +0.4303934 0.4751555 0.8636691 +0.4751555 0.4751555 0.8636691 +0.5225216 0.4751555 0.8636691 +0.5725335 0.4751555 0.8636691 +0.6252316 0.4751555 0.8636691 +0.6806558 0.4751555 0.8636691 +0.7388448 0.4751555 0.8636691 +0.7998369 0.4751555 0.8636691 +0.8636691 0.4751555 0.8636691 +0.9303782 0.4751555 0.8636691 +1 0.4751555 0.8636691 +0 0.5225216 0.8636691 +0.002418731 0.5225216 0.8636691 +0.005155668 0.5225216 0.8636691 +0.009080105 0.5225216 0.8636691 +0.01434988 0.5225216 0.8636691 +0.02107202 0.5225216 0.8636691 +0.02934285 0.5225216 0.8636691 +0.03925039 0.5225216 0.8636691 +0.05087609 0.5225216 0.8636691 +0.06429595 0.5225216 0.8636691 +0.07958143 0.5225216 0.8636691 +0.0968001 0.5225216 0.8636691 +0.1160161 0.5225216 0.8636691 +0.1372908 0.5225216 0.8636691 +0.1606827 0.5225216 0.8636691 +0.1862481 0.5225216 0.8636691 +0.2140411 0.5225216 0.8636691 +0.2441142 0.5225216 0.8636691 +0.2765176 0.5225216 0.8636691 +0.3113005 0.5225216 0.8636691 +0.3485102 0.5225216 0.8636691 +0.388193 0.5225216 0.8636691 +0.4303934 0.5225216 0.8636691 +0.4751555 0.5225216 0.8636691 +0.5225216 0.5225216 0.8636691 +0.5725335 0.5225216 0.8636691 +0.6252316 0.5225216 0.8636691 +0.6806558 0.5225216 0.8636691 +0.7388448 0.5225216 0.8636691 +0.7998369 0.5225216 0.8636691 +0.8636691 0.5225216 0.8636691 +0.9303782 0.5225216 0.8636691 +1 0.5225216 0.8636691 +0 0.5725335 0.8636691 +0.002418731 0.5725335 0.8636691 +0.005155668 0.5725335 0.8636691 +0.009080105 0.5725335 0.8636691 +0.01434988 0.5725335 0.8636691 +0.02107202 0.5725335 0.8636691 +0.02934285 0.5725335 0.8636691 +0.03925039 0.5725335 0.8636691 +0.05087609 0.5725335 0.8636691 +0.06429595 0.5725335 0.8636691 +0.07958143 0.5725335 0.8636691 +0.0968001 0.5725335 0.8636691 +0.1160161 0.5725335 0.8636691 +0.1372908 0.5725335 0.8636691 +0.1606827 0.5725335 0.8636691 +0.1862481 0.5725335 0.8636691 +0.2140411 0.5725335 0.8636691 +0.2441142 0.5725335 0.8636691 +0.2765176 0.5725335 0.8636691 +0.3113005 0.5725335 0.8636691 +0.3485102 0.5725335 0.8636691 +0.388193 0.5725335 0.8636691 +0.4303934 0.5725335 0.8636691 +0.4751555 0.5725335 0.8636691 +0.5225216 0.5725335 0.8636691 +0.5725335 0.5725335 0.8636691 +0.6252316 0.5725335 0.8636691 +0.6806558 0.5725335 0.8636691 +0.7388448 0.5725335 0.8636691 +0.7998369 0.5725335 0.8636691 +0.8636691 0.5725335 0.8636691 +0.9303782 0.5725335 0.8636691 +1 0.5725335 0.8636691 +0 0.6252316 0.8636691 +0.002418731 0.6252316 0.8636691 +0.005155668 0.6252316 0.8636691 +0.009080105 0.6252316 0.8636691 +0.01434988 0.6252316 0.8636691 +0.02107202 0.6252316 0.8636691 +0.02934285 0.6252316 0.8636691 +0.03925039 0.6252316 0.8636691 +0.05087609 0.6252316 0.8636691 +0.06429595 0.6252316 0.8636691 +0.07958143 0.6252316 0.8636691 +0.0968001 0.6252316 0.8636691 +0.1160161 0.6252316 0.8636691 +0.1372908 0.6252316 0.8636691 +0.1606827 0.6252316 0.8636691 +0.1862481 0.6252316 0.8636691 +0.2140411 0.6252316 0.8636691 +0.2441142 0.6252316 0.8636691 +0.2765176 0.6252316 0.8636691 +0.3113005 0.6252316 0.8636691 +0.3485102 0.6252316 0.8636691 +0.388193 0.6252316 0.8636691 +0.4303934 0.6252316 0.8636691 +0.4751555 0.6252316 0.8636691 +0.5225216 0.6252316 0.8636691 +0.5725335 0.6252316 0.8636691 +0.6252316 0.6252316 0.8636691 +0.6806558 0.6252316 0.8636691 +0.7388448 0.6252316 0.8636691 +0.7998369 0.6252316 0.8636691 +0.8636691 0.6252316 0.8636691 +0.9303782 0.6252316 0.8636691 +1 0.6252316 0.8636691 +0 0.6806558 0.8636691 +0.002418731 0.6806558 0.8636691 +0.005155668 0.6806558 0.8636691 +0.009080105 0.6806558 0.8636691 +0.01434988 0.6806558 0.8636691 +0.02107202 0.6806558 0.8636691 +0.02934285 0.6806558 0.8636691 +0.03925039 0.6806558 0.8636691 +0.05087609 0.6806558 0.8636691 +0.06429595 0.6806558 0.8636691 +0.07958143 0.6806558 0.8636691 +0.0968001 0.6806558 0.8636691 +0.1160161 0.6806558 0.8636691 +0.1372908 0.6806558 0.8636691 +0.1606827 0.6806558 0.8636691 +0.1862481 0.6806558 0.8636691 +0.2140411 0.6806558 0.8636691 +0.2441142 0.6806558 0.8636691 +0.2765176 0.6806558 0.8636691 +0.3113005 0.6806558 0.8636691 +0.3485102 0.6806558 0.8636691 +0.388193 0.6806558 0.8636691 +0.4303934 0.6806558 0.8636691 +0.4751555 0.6806558 0.8636691 +0.5225216 0.6806558 0.8636691 +0.5725335 0.6806558 0.8636691 +0.6252316 0.6806558 0.8636691 +0.6806558 0.6806558 0.8636691 +0.7388448 0.6806558 0.8636691 +0.7998369 0.6806558 0.8636691 +0.8636691 0.6806558 0.8636691 +0.9303782 0.6806558 0.8636691 +1 0.6806558 0.8636691 +0 0.7388448 0.8636691 +0.002418731 0.7388448 0.8636691 +0.005155668 0.7388448 0.8636691 +0.009080105 0.7388448 0.8636691 +0.01434988 0.7388448 0.8636691 +0.02107202 0.7388448 0.8636691 +0.02934285 0.7388448 0.8636691 +0.03925039 0.7388448 0.8636691 +0.05087609 0.7388448 0.8636691 +0.06429595 0.7388448 0.8636691 +0.07958143 0.7388448 0.8636691 +0.0968001 0.7388448 0.8636691 +0.1160161 0.7388448 0.8636691 +0.1372908 0.7388448 0.8636691 +0.1606827 0.7388448 0.8636691 +0.1862481 0.7388448 0.8636691 +0.2140411 0.7388448 0.8636691 +0.2441142 0.7388448 0.8636691 +0.2765176 0.7388448 0.8636691 +0.3113005 0.7388448 0.8636691 +0.3485102 0.7388448 0.8636691 +0.388193 0.7388448 0.8636691 +0.4303934 0.7388448 0.8636691 +0.4751555 0.7388448 0.8636691 +0.5225216 0.7388448 0.8636691 +0.5725335 0.7388448 0.8636691 +0.6252316 0.7388448 0.8636691 +0.6806558 0.7388448 0.8636691 +0.7388448 0.7388448 0.8636691 +0.7998369 0.7388448 0.8636691 +0.8636691 0.7388448 0.8636691 +0.9303782 0.7388448 0.8636691 +1 0.7388448 0.8636691 +0 0.7998369 0.8636691 +0.002418731 0.7998369 0.8636691 +0.005155668 0.7998369 0.8636691 +0.009080105 0.7998369 0.8636691 +0.01434988 0.7998369 0.8636691 +0.02107202 0.7998369 0.8636691 +0.02934285 0.7998369 0.8636691 +0.03925039 0.7998369 0.8636691 +0.05087609 0.7998369 0.8636691 +0.06429595 0.7998369 0.8636691 +0.07958143 0.7998369 0.8636691 +0.0968001 0.7998369 0.8636691 +0.1160161 0.7998369 0.8636691 +0.1372908 0.7998369 0.8636691 +0.1606827 0.7998369 0.8636691 +0.1862481 0.7998369 0.8636691 +0.2140411 0.7998369 0.8636691 +0.2441142 0.7998369 0.8636691 +0.2765176 0.7998369 0.8636691 +0.3113005 0.7998369 0.8636691 +0.3485102 0.7998369 0.8636691 +0.388193 0.7998369 0.8636691 +0.4303934 0.7998369 0.8636691 +0.4751555 0.7998369 0.8636691 +0.5225216 0.7998369 0.8636691 +0.5725335 0.7998369 0.8636691 +0.6252316 0.7998369 0.8636691 +0.6806558 0.7998369 0.8636691 +0.7388448 0.7998369 0.8636691 +0.7998369 0.7998369 0.8636691 +0.8636691 0.7998369 0.8636691 +0.9303782 0.7998369 0.8636691 +1 0.7998369 0.8636691 +0 0.8636691 0.8636691 +0.002418731 0.8636691 0.8636691 +0.005155668 0.8636691 0.8636691 +0.009080105 0.8636691 0.8636691 +0.01434988 0.8636691 0.8636691 +0.02107202 0.8636691 0.8636691 +0.02934285 0.8636691 0.8636691 +0.03925039 0.8636691 0.8636691 +0.05087609 0.8636691 0.8636691 +0.06429595 0.8636691 0.8636691 +0.07958143 0.8636691 0.8636691 +0.0968001 0.8636691 0.8636691 +0.1160161 0.8636691 0.8636691 +0.1372908 0.8636691 0.8636691 +0.1606827 0.8636691 0.8636691 +0.1862481 0.8636691 0.8636691 +0.2140411 0.8636691 0.8636691 +0.2441142 0.8636691 0.8636691 +0.2765176 0.8636691 0.8636691 +0.3113005 0.8636691 0.8636691 +0.3485102 0.8636691 0.8636691 +0.388193 0.8636691 0.8636691 +0.4303934 0.8636691 0.8636691 +0.4751555 0.8636691 0.8636691 +0.5225216 0.8636691 0.8636691 +0.5725335 0.8636691 0.8636691 +0.6252316 0.8636691 0.8636691 +0.6806558 0.8636691 0.8636691 +0.7388448 0.8636691 0.8636691 +0.7998369 0.8636691 0.8636691 +0.8636691 0.8636691 0.8636691 +0.9303782 0.8636691 0.8636691 +1 0.8636691 0.8636691 +0 0.9303782 0.8636691 +0.002418731 0.9303782 0.8636691 +0.005155668 0.9303782 0.8636691 +0.009080105 0.9303782 0.8636691 +0.01434988 0.9303782 0.8636691 +0.02107202 0.9303782 0.8636691 +0.02934285 0.9303782 0.8636691 +0.03925039 0.9303782 0.8636691 +0.05087609 0.9303782 0.8636691 +0.06429595 0.9303782 0.8636691 +0.07958143 0.9303782 0.8636691 +0.0968001 0.9303782 0.8636691 +0.1160161 0.9303782 0.8636691 +0.1372908 0.9303782 0.8636691 +0.1606827 0.9303782 0.8636691 +0.1862481 0.9303782 0.8636691 +0.2140411 0.9303782 0.8636691 +0.2441142 0.9303782 0.8636691 +0.2765176 0.9303782 0.8636691 +0.3113005 0.9303782 0.8636691 +0.3485102 0.9303782 0.8636691 +0.388193 0.9303782 0.8636691 +0.4303934 0.9303782 0.8636691 +0.4751555 0.9303782 0.8636691 +0.5225216 0.9303782 0.8636691 +0.5725335 0.9303782 0.8636691 +0.6252316 0.9303782 0.8636691 +0.6806558 0.9303782 0.8636691 +0.7388448 0.9303782 0.8636691 +0.7998369 0.9303782 0.8636691 +0.8636691 0.9303782 0.8636691 +0.9303782 0.9303782 0.8636691 +1 0.9303782 0.8636691 +0 1 0.8636691 +0.002418731 1 0.8636691 +0.005155668 1 0.8636691 +0.009080105 1 0.8636691 +0.01434988 1 0.8636691 +0.02107202 1 0.8636691 +0.02934285 1 0.8636691 +0.03925039 1 0.8636691 +0.05087609 1 0.8636691 +0.06429595 1 0.8636691 +0.07958143 1 0.8636691 +0.0968001 1 0.8636691 +0.1160161 1 0.8636691 +0.1372908 1 0.8636691 +0.1606827 1 0.8636691 +0.1862481 1 0.8636691 +0.2140411 1 0.8636691 +0.2441142 1 0.8636691 +0.2765176 1 0.8636691 +0.3113005 1 0.8636691 +0.3485102 1 0.8636691 +0.388193 1 0.8636691 +0.4303934 1 0.8636691 +0.4751555 1 0.8636691 +0.5225216 1 0.8636691 +0.5725335 1 0.8636691 +0.6252316 1 0.8636691 +0.6806558 1 0.8636691 +0.7388448 1 0.8636691 +0.7998369 1 0.8636691 +0.8636691 1 0.8636691 +0.9303782 1 0.8636691 +1 1 0.8636691 +0 0 0.9303782 +0.002418731 0 0.9303782 +0.005155668 0 0.9303782 +0.009080105 0 0.9303782 +0.01434988 0 0.9303782 +0.02107202 0 0.9303782 +0.02934285 0 0.9303782 +0.03925039 0 0.9303782 +0.05087609 0 0.9303782 +0.06429595 0 0.9303782 +0.07958143 0 0.9303782 +0.0968001 0 0.9303782 +0.1160161 0 0.9303782 +0.1372908 0 0.9303782 +0.1606827 0 0.9303782 +0.1862481 0 0.9303782 +0.2140411 0 0.9303782 +0.2441142 0 0.9303782 +0.2765176 0 0.9303782 +0.3113005 0 0.9303782 +0.3485102 0 0.9303782 +0.388193 0 0.9303782 +0.4303934 0 0.9303782 +0.4751555 0 0.9303782 +0.5225216 0 0.9303782 +0.5725335 0 0.9303782 +0.6252316 0 0.9303782 +0.6806558 0 0.9303782 +0.7388448 0 0.9303782 +0.7998369 0 0.9303782 +0.8636691 0 0.9303782 +0.9303782 0 0.9303782 +1 0 0.9303782 +0 0.002418731 0.9303782 +0.002418731 0.002418731 0.9303782 +0.005155668 0.002418731 0.9303782 +0.009080105 0.002418731 0.9303782 +0.01434988 0.002418731 0.9303782 +0.02107202 0.002418731 0.9303782 +0.02934285 0.002418731 0.9303782 +0.03925039 0.002418731 0.9303782 +0.05087609 0.002418731 0.9303782 +0.06429595 0.002418731 0.9303782 +0.07958143 0.002418731 0.9303782 +0.0968001 0.002418731 0.9303782 +0.1160161 0.002418731 0.9303782 +0.1372908 0.002418731 0.9303782 +0.1606827 0.002418731 0.9303782 +0.1862481 0.002418731 0.9303782 +0.2140411 0.002418731 0.9303782 +0.2441142 0.002418731 0.9303782 +0.2765176 0.002418731 0.9303782 +0.3113005 0.002418731 0.9303782 +0.3485102 0.002418731 0.9303782 +0.388193 0.002418731 0.9303782 +0.4303934 0.002418731 0.9303782 +0.4751555 0.002418731 0.9303782 +0.5225216 0.002418731 0.9303782 +0.5725335 0.002418731 0.9303782 +0.6252316 0.002418731 0.9303782 +0.6806558 0.002418731 0.9303782 +0.7388448 0.002418731 0.9303782 +0.7998369 0.002418731 0.9303782 +0.8636691 0.002418731 0.9303782 +0.9303782 0.002418731 0.9303782 +1 0.002418731 0.9303782 +0 0.005155668 0.9303782 +0.002418731 0.005155668 0.9303782 +0.005155668 0.005155668 0.9303782 +0.009080105 0.005155668 0.9303782 +0.01434988 0.005155668 0.9303782 +0.02107202 0.005155668 0.9303782 +0.02934285 0.005155668 0.9303782 +0.03925039 0.005155668 0.9303782 +0.05087609 0.005155668 0.9303782 +0.06429595 0.005155668 0.9303782 +0.07958143 0.005155668 0.9303782 +0.0968001 0.005155668 0.9303782 +0.1160161 0.005155668 0.9303782 +0.1372908 0.005155668 0.9303782 +0.1606827 0.005155668 0.9303782 +0.1862481 0.005155668 0.9303782 +0.2140411 0.005155668 0.9303782 +0.2441142 0.005155668 0.9303782 +0.2765176 0.005155668 0.9303782 +0.3113005 0.005155668 0.9303782 +0.3485102 0.005155668 0.9303782 +0.388193 0.005155668 0.9303782 +0.4303934 0.005155668 0.9303782 +0.4751555 0.005155668 0.9303782 +0.5225216 0.005155668 0.9303782 +0.5725335 0.005155668 0.9303782 +0.6252316 0.005155668 0.9303782 +0.6806558 0.005155668 0.9303782 +0.7388448 0.005155668 0.9303782 +0.7998369 0.005155668 0.9303782 +0.8636691 0.005155668 0.9303782 +0.9303782 0.005155668 0.9303782 +1 0.005155668 0.9303782 +0 0.009080105 0.9303782 +0.002418731 0.009080105 0.9303782 +0.005155668 0.009080105 0.9303782 +0.009080105 0.009080105 0.9303782 +0.01434988 0.009080105 0.9303782 +0.02107202 0.009080105 0.9303782 +0.02934285 0.009080105 0.9303782 +0.03925039 0.009080105 0.9303782 +0.05087609 0.009080105 0.9303782 +0.06429595 0.009080105 0.9303782 +0.07958143 0.009080105 0.9303782 +0.0968001 0.009080105 0.9303782 +0.1160161 0.009080105 0.9303782 +0.1372908 0.009080105 0.9303782 +0.1606827 0.009080105 0.9303782 +0.1862481 0.009080105 0.9303782 +0.2140411 0.009080105 0.9303782 +0.2441142 0.009080105 0.9303782 +0.2765176 0.009080105 0.9303782 +0.3113005 0.009080105 0.9303782 +0.3485102 0.009080105 0.9303782 +0.388193 0.009080105 0.9303782 +0.4303934 0.009080105 0.9303782 +0.4751555 0.009080105 0.9303782 +0.5225216 0.009080105 0.9303782 +0.5725335 0.009080105 0.9303782 +0.6252316 0.009080105 0.9303782 +0.6806558 0.009080105 0.9303782 +0.7388448 0.009080105 0.9303782 +0.7998369 0.009080105 0.9303782 +0.8636691 0.009080105 0.9303782 +0.9303782 0.009080105 0.9303782 +1 0.009080105 0.9303782 +0 0.01434988 0.9303782 +0.002418731 0.01434988 0.9303782 +0.005155668 0.01434988 0.9303782 +0.009080105 0.01434988 0.9303782 +0.01434988 0.01434988 0.9303782 +0.02107202 0.01434988 0.9303782 +0.02934285 0.01434988 0.9303782 +0.03925039 0.01434988 0.9303782 +0.05087609 0.01434988 0.9303782 +0.06429595 0.01434988 0.9303782 +0.07958143 0.01434988 0.9303782 +0.0968001 0.01434988 0.9303782 +0.1160161 0.01434988 0.9303782 +0.1372908 0.01434988 0.9303782 +0.1606827 0.01434988 0.9303782 +0.1862481 0.01434988 0.9303782 +0.2140411 0.01434988 0.9303782 +0.2441142 0.01434988 0.9303782 +0.2765176 0.01434988 0.9303782 +0.3113005 0.01434988 0.9303782 +0.3485102 0.01434988 0.9303782 +0.388193 0.01434988 0.9303782 +0.4303934 0.01434988 0.9303782 +0.4751555 0.01434988 0.9303782 +0.5225216 0.01434988 0.9303782 +0.5725335 0.01434988 0.9303782 +0.6252316 0.01434988 0.9303782 +0.6806558 0.01434988 0.9303782 +0.7388448 0.01434988 0.9303782 +0.7998369 0.01434988 0.9303782 +0.8636691 0.01434988 0.9303782 +0.9303782 0.01434988 0.9303782 +1 0.01434988 0.9303782 +0 0.02107202 0.9303782 +0.002418731 0.02107202 0.9303782 +0.005155668 0.02107202 0.9303782 +0.009080105 0.02107202 0.9303782 +0.01434988 0.02107202 0.9303782 +0.02107202 0.02107202 0.9303782 +0.02934285 0.02107202 0.9303782 +0.03925039 0.02107202 0.9303782 +0.05087609 0.02107202 0.9303782 +0.06429595 0.02107202 0.9303782 +0.07958143 0.02107202 0.9303782 +0.0968001 0.02107202 0.9303782 +0.1160161 0.02107202 0.9303782 +0.1372908 0.02107202 0.9303782 +0.1606827 0.02107202 0.9303782 +0.1862481 0.02107202 0.9303782 +0.2140411 0.02107202 0.9303782 +0.2441142 0.02107202 0.9303782 +0.2765176 0.02107202 0.9303782 +0.3113005 0.02107202 0.9303782 +0.3485102 0.02107202 0.9303782 +0.388193 0.02107202 0.9303782 +0.4303934 0.02107202 0.9303782 +0.4751555 0.02107202 0.9303782 +0.5225216 0.02107202 0.9303782 +0.5725335 0.02107202 0.9303782 +0.6252316 0.02107202 0.9303782 +0.6806558 0.02107202 0.9303782 +0.7388448 0.02107202 0.9303782 +0.7998369 0.02107202 0.9303782 +0.8636691 0.02107202 0.9303782 +0.9303782 0.02107202 0.9303782 +1 0.02107202 0.9303782 +0 0.02934285 0.9303782 +0.002418731 0.02934285 0.9303782 +0.005155668 0.02934285 0.9303782 +0.009080105 0.02934285 0.9303782 +0.01434988 0.02934285 0.9303782 +0.02107202 0.02934285 0.9303782 +0.02934285 0.02934285 0.9303782 +0.03925039 0.02934285 0.9303782 +0.05087609 0.02934285 0.9303782 +0.06429595 0.02934285 0.9303782 +0.07958143 0.02934285 0.9303782 +0.0968001 0.02934285 0.9303782 +0.1160161 0.02934285 0.9303782 +0.1372908 0.02934285 0.9303782 +0.1606827 0.02934285 0.9303782 +0.1862481 0.02934285 0.9303782 +0.2140411 0.02934285 0.9303782 +0.2441142 0.02934285 0.9303782 +0.2765176 0.02934285 0.9303782 +0.3113005 0.02934285 0.9303782 +0.3485102 0.02934285 0.9303782 +0.388193 0.02934285 0.9303782 +0.4303934 0.02934285 0.9303782 +0.4751555 0.02934285 0.9303782 +0.5225216 0.02934285 0.9303782 +0.5725335 0.02934285 0.9303782 +0.6252316 0.02934285 0.9303782 +0.6806558 0.02934285 0.9303782 +0.7388448 0.02934285 0.9303782 +0.7998369 0.02934285 0.9303782 +0.8636691 0.02934285 0.9303782 +0.9303782 0.02934285 0.9303782 +1 0.02934285 0.9303782 +0 0.03925039 0.9303782 +0.002418731 0.03925039 0.9303782 +0.005155668 0.03925039 0.9303782 +0.009080105 0.03925039 0.9303782 +0.01434988 0.03925039 0.9303782 +0.02107202 0.03925039 0.9303782 +0.02934285 0.03925039 0.9303782 +0.03925039 0.03925039 0.9303782 +0.05087609 0.03925039 0.9303782 +0.06429595 0.03925039 0.9303782 +0.07958143 0.03925039 0.9303782 +0.0968001 0.03925039 0.9303782 +0.1160161 0.03925039 0.9303782 +0.1372908 0.03925039 0.9303782 +0.1606827 0.03925039 0.9303782 +0.1862481 0.03925039 0.9303782 +0.2140411 0.03925039 0.9303782 +0.2441142 0.03925039 0.9303782 +0.2765176 0.03925039 0.9303782 +0.3113005 0.03925039 0.9303782 +0.3485102 0.03925039 0.9303782 +0.388193 0.03925039 0.9303782 +0.4303934 0.03925039 0.9303782 +0.4751555 0.03925039 0.9303782 +0.5225216 0.03925039 0.9303782 +0.5725335 0.03925039 0.9303782 +0.6252316 0.03925039 0.9303782 +0.6806558 0.03925039 0.9303782 +0.7388448 0.03925039 0.9303782 +0.7998369 0.03925039 0.9303782 +0.8636691 0.03925039 0.9303782 +0.9303782 0.03925039 0.9303782 +1 0.03925039 0.9303782 +0 0.05087609 0.9303782 +0.002418731 0.05087609 0.9303782 +0.005155668 0.05087609 0.9303782 +0.009080105 0.05087609 0.9303782 +0.01434988 0.05087609 0.9303782 +0.02107202 0.05087609 0.9303782 +0.02934285 0.05087609 0.9303782 +0.03925039 0.05087609 0.9303782 +0.05087609 0.05087609 0.9303782 +0.06429595 0.05087609 0.9303782 +0.07958143 0.05087609 0.9303782 +0.0968001 0.05087609 0.9303782 +0.1160161 0.05087609 0.9303782 +0.1372908 0.05087609 0.9303782 +0.1606827 0.05087609 0.9303782 +0.1862481 0.05087609 0.9303782 +0.2140411 0.05087609 0.9303782 +0.2441142 0.05087609 0.9303782 +0.2765176 0.05087609 0.9303782 +0.3113005 0.05087609 0.9303782 +0.3485102 0.05087609 0.9303782 +0.388193 0.05087609 0.9303782 +0.4303934 0.05087609 0.9303782 +0.4751555 0.05087609 0.9303782 +0.5225216 0.05087609 0.9303782 +0.5725335 0.05087609 0.9303782 +0.6252316 0.05087609 0.9303782 +0.6806558 0.05087609 0.9303782 +0.7388448 0.05087609 0.9303782 +0.7998369 0.05087609 0.9303782 +0.8636691 0.05087609 0.9303782 +0.9303782 0.05087609 0.9303782 +1 0.05087609 0.9303782 +0 0.06429595 0.9303782 +0.002418731 0.06429595 0.9303782 +0.005155668 0.06429595 0.9303782 +0.009080105 0.06429595 0.9303782 +0.01434988 0.06429595 0.9303782 +0.02107202 0.06429595 0.9303782 +0.02934285 0.06429595 0.9303782 +0.03925039 0.06429595 0.9303782 +0.05087609 0.06429595 0.9303782 +0.06429595 0.06429595 0.9303782 +0.07958143 0.06429595 0.9303782 +0.0968001 0.06429595 0.9303782 +0.1160161 0.06429595 0.9303782 +0.1372908 0.06429595 0.9303782 +0.1606827 0.06429595 0.9303782 +0.1862481 0.06429595 0.9303782 +0.2140411 0.06429595 0.9303782 +0.2441142 0.06429595 0.9303782 +0.2765176 0.06429595 0.9303782 +0.3113005 0.06429595 0.9303782 +0.3485102 0.06429595 0.9303782 +0.388193 0.06429595 0.9303782 +0.4303934 0.06429595 0.9303782 +0.4751555 0.06429595 0.9303782 +0.5225216 0.06429595 0.9303782 +0.5725335 0.06429595 0.9303782 +0.6252316 0.06429595 0.9303782 +0.6806558 0.06429595 0.9303782 +0.7388448 0.06429595 0.9303782 +0.7998369 0.06429595 0.9303782 +0.8636691 0.06429595 0.9303782 +0.9303782 0.06429595 0.9303782 +1 0.06429595 0.9303782 +0 0.07958143 0.9303782 +0.002418731 0.07958143 0.9303782 +0.005155668 0.07958143 0.9303782 +0.009080105 0.07958143 0.9303782 +0.01434988 0.07958143 0.9303782 +0.02107202 0.07958143 0.9303782 +0.02934285 0.07958143 0.9303782 +0.03925039 0.07958143 0.9303782 +0.05087609 0.07958143 0.9303782 +0.06429595 0.07958143 0.9303782 +0.07958143 0.07958143 0.9303782 +0.0968001 0.07958143 0.9303782 +0.1160161 0.07958143 0.9303782 +0.1372908 0.07958143 0.9303782 +0.1606827 0.07958143 0.9303782 +0.1862481 0.07958143 0.9303782 +0.2140411 0.07958143 0.9303782 +0.2441142 0.07958143 0.9303782 +0.2765176 0.07958143 0.9303782 +0.3113005 0.07958143 0.9303782 +0.3485102 0.07958143 0.9303782 +0.388193 0.07958143 0.9303782 +0.4303934 0.07958143 0.9303782 +0.4751555 0.07958143 0.9303782 +0.5225216 0.07958143 0.9303782 +0.5725335 0.07958143 0.9303782 +0.6252316 0.07958143 0.9303782 +0.6806558 0.07958143 0.9303782 +0.7388448 0.07958143 0.9303782 +0.7998369 0.07958143 0.9303782 +0.8636691 0.07958143 0.9303782 +0.9303782 0.07958143 0.9303782 +1 0.07958143 0.9303782 +0 0.0968001 0.9303782 +0.002418731 0.0968001 0.9303782 +0.005155668 0.0968001 0.9303782 +0.009080105 0.0968001 0.9303782 +0.01434988 0.0968001 0.9303782 +0.02107202 0.0968001 0.9303782 +0.02934285 0.0968001 0.9303782 +0.03925039 0.0968001 0.9303782 +0.05087609 0.0968001 0.9303782 +0.06429595 0.0968001 0.9303782 +0.07958143 0.0968001 0.9303782 +0.0968001 0.0968001 0.9303782 +0.1160161 0.0968001 0.9303782 +0.1372908 0.0968001 0.9303782 +0.1606827 0.0968001 0.9303782 +0.1862481 0.0968001 0.9303782 +0.2140411 0.0968001 0.9303782 +0.2441142 0.0968001 0.9303782 +0.2765176 0.0968001 0.9303782 +0.3113005 0.0968001 0.9303782 +0.3485102 0.0968001 0.9303782 +0.388193 0.0968001 0.9303782 +0.4303934 0.0968001 0.9303782 +0.4751555 0.0968001 0.9303782 +0.5225216 0.0968001 0.9303782 +0.5725335 0.0968001 0.9303782 +0.6252316 0.0968001 0.9303782 +0.6806558 0.0968001 0.9303782 +0.7388448 0.0968001 0.9303782 +0.7998369 0.0968001 0.9303782 +0.8636691 0.0968001 0.9303782 +0.9303782 0.0968001 0.9303782 +1 0.0968001 0.9303782 +0 0.1160161 0.9303782 +0.002418731 0.1160161 0.9303782 +0.005155668 0.1160161 0.9303782 +0.009080105 0.1160161 0.9303782 +0.01434988 0.1160161 0.9303782 +0.02107202 0.1160161 0.9303782 +0.02934285 0.1160161 0.9303782 +0.03925039 0.1160161 0.9303782 +0.05087609 0.1160161 0.9303782 +0.06429595 0.1160161 0.9303782 +0.07958143 0.1160161 0.9303782 +0.0968001 0.1160161 0.9303782 +0.1160161 0.1160161 0.9303782 +0.1372908 0.1160161 0.9303782 +0.1606827 0.1160161 0.9303782 +0.1862481 0.1160161 0.9303782 +0.2140411 0.1160161 0.9303782 +0.2441142 0.1160161 0.9303782 +0.2765176 0.1160161 0.9303782 +0.3113005 0.1160161 0.9303782 +0.3485102 0.1160161 0.9303782 +0.388193 0.1160161 0.9303782 +0.4303934 0.1160161 0.9303782 +0.4751555 0.1160161 0.9303782 +0.5225216 0.1160161 0.9303782 +0.5725335 0.1160161 0.9303782 +0.6252316 0.1160161 0.9303782 +0.6806558 0.1160161 0.9303782 +0.7388448 0.1160161 0.9303782 +0.7998369 0.1160161 0.9303782 +0.8636691 0.1160161 0.9303782 +0.9303782 0.1160161 0.9303782 +1 0.1160161 0.9303782 +0 0.1372908 0.9303782 +0.002418731 0.1372908 0.9303782 +0.005155668 0.1372908 0.9303782 +0.009080105 0.1372908 0.9303782 +0.01434988 0.1372908 0.9303782 +0.02107202 0.1372908 0.9303782 +0.02934285 0.1372908 0.9303782 +0.03925039 0.1372908 0.9303782 +0.05087609 0.1372908 0.9303782 +0.06429595 0.1372908 0.9303782 +0.07958143 0.1372908 0.9303782 +0.0968001 0.1372908 0.9303782 +0.1160161 0.1372908 0.9303782 +0.1372908 0.1372908 0.9303782 +0.1606827 0.1372908 0.9303782 +0.1862481 0.1372908 0.9303782 +0.2140411 0.1372908 0.9303782 +0.2441142 0.1372908 0.9303782 +0.2765176 0.1372908 0.9303782 +0.3113005 0.1372908 0.9303782 +0.3485102 0.1372908 0.9303782 +0.388193 0.1372908 0.9303782 +0.4303934 0.1372908 0.9303782 +0.4751555 0.1372908 0.9303782 +0.5225216 0.1372908 0.9303782 +0.5725335 0.1372908 0.9303782 +0.6252316 0.1372908 0.9303782 +0.6806558 0.1372908 0.9303782 +0.7388448 0.1372908 0.9303782 +0.7998369 0.1372908 0.9303782 +0.8636691 0.1372908 0.9303782 +0.9303782 0.1372908 0.9303782 +1 0.1372908 0.9303782 +0 0.1606827 0.9303782 +0.002418731 0.1606827 0.9303782 +0.005155668 0.1606827 0.9303782 +0.009080105 0.1606827 0.9303782 +0.01434988 0.1606827 0.9303782 +0.02107202 0.1606827 0.9303782 +0.02934285 0.1606827 0.9303782 +0.03925039 0.1606827 0.9303782 +0.05087609 0.1606827 0.9303782 +0.06429595 0.1606827 0.9303782 +0.07958143 0.1606827 0.9303782 +0.0968001 0.1606827 0.9303782 +0.1160161 0.1606827 0.9303782 +0.1372908 0.1606827 0.9303782 +0.1606827 0.1606827 0.9303782 +0.1862481 0.1606827 0.9303782 +0.2140411 0.1606827 0.9303782 +0.2441142 0.1606827 0.9303782 +0.2765176 0.1606827 0.9303782 +0.3113005 0.1606827 0.9303782 +0.3485102 0.1606827 0.9303782 +0.388193 0.1606827 0.9303782 +0.4303934 0.1606827 0.9303782 +0.4751555 0.1606827 0.9303782 +0.5225216 0.1606827 0.9303782 +0.5725335 0.1606827 0.9303782 +0.6252316 0.1606827 0.9303782 +0.6806558 0.1606827 0.9303782 +0.7388448 0.1606827 0.9303782 +0.7998369 0.1606827 0.9303782 +0.8636691 0.1606827 0.9303782 +0.9303782 0.1606827 0.9303782 +1 0.1606827 0.9303782 +0 0.1862481 0.9303782 +0.002418731 0.1862481 0.9303782 +0.005155668 0.1862481 0.9303782 +0.009080105 0.1862481 0.9303782 +0.01434988 0.1862481 0.9303782 +0.02107202 0.1862481 0.9303782 +0.02934285 0.1862481 0.9303782 +0.03925039 0.1862481 0.9303782 +0.05087609 0.1862481 0.9303782 +0.06429595 0.1862481 0.9303782 +0.07958143 0.1862481 0.9303782 +0.0968001 0.1862481 0.9303782 +0.1160161 0.1862481 0.9303782 +0.1372908 0.1862481 0.9303782 +0.1606827 0.1862481 0.9303782 +0.1862481 0.1862481 0.9303782 +0.2140411 0.1862481 0.9303782 +0.2441142 0.1862481 0.9303782 +0.2765176 0.1862481 0.9303782 +0.3113005 0.1862481 0.9303782 +0.3485102 0.1862481 0.9303782 +0.388193 0.1862481 0.9303782 +0.4303934 0.1862481 0.9303782 +0.4751555 0.1862481 0.9303782 +0.5225216 0.1862481 0.9303782 +0.5725335 0.1862481 0.9303782 +0.6252316 0.1862481 0.9303782 +0.6806558 0.1862481 0.9303782 +0.7388448 0.1862481 0.9303782 +0.7998369 0.1862481 0.9303782 +0.8636691 0.1862481 0.9303782 +0.9303782 0.1862481 0.9303782 +1 0.1862481 0.9303782 +0 0.2140411 0.9303782 +0.002418731 0.2140411 0.9303782 +0.005155668 0.2140411 0.9303782 +0.009080105 0.2140411 0.9303782 +0.01434988 0.2140411 0.9303782 +0.02107202 0.2140411 0.9303782 +0.02934285 0.2140411 0.9303782 +0.03925039 0.2140411 0.9303782 +0.05087609 0.2140411 0.9303782 +0.06429595 0.2140411 0.9303782 +0.07958143 0.2140411 0.9303782 +0.0968001 0.2140411 0.9303782 +0.1160161 0.2140411 0.9303782 +0.1372908 0.2140411 0.9303782 +0.1606827 0.2140411 0.9303782 +0.1862481 0.2140411 0.9303782 +0.2140411 0.2140411 0.9303782 +0.2441142 0.2140411 0.9303782 +0.2765176 0.2140411 0.9303782 +0.3113005 0.2140411 0.9303782 +0.3485102 0.2140411 0.9303782 +0.388193 0.2140411 0.9303782 +0.4303934 0.2140411 0.9303782 +0.4751555 0.2140411 0.9303782 +0.5225216 0.2140411 0.9303782 +0.5725335 0.2140411 0.9303782 +0.6252316 0.2140411 0.9303782 +0.6806558 0.2140411 0.9303782 +0.7388448 0.2140411 0.9303782 +0.7998369 0.2140411 0.9303782 +0.8636691 0.2140411 0.9303782 +0.9303782 0.2140411 0.9303782 +1 0.2140411 0.9303782 +0 0.2441142 0.9303782 +0.002418731 0.2441142 0.9303782 +0.005155668 0.2441142 0.9303782 +0.009080105 0.2441142 0.9303782 +0.01434988 0.2441142 0.9303782 +0.02107202 0.2441142 0.9303782 +0.02934285 0.2441142 0.9303782 +0.03925039 0.2441142 0.9303782 +0.05087609 0.2441142 0.9303782 +0.06429595 0.2441142 0.9303782 +0.07958143 0.2441142 0.9303782 +0.0968001 0.2441142 0.9303782 +0.1160161 0.2441142 0.9303782 +0.1372908 0.2441142 0.9303782 +0.1606827 0.2441142 0.9303782 +0.1862481 0.2441142 0.9303782 +0.2140411 0.2441142 0.9303782 +0.2441142 0.2441142 0.9303782 +0.2765176 0.2441142 0.9303782 +0.3113005 0.2441142 0.9303782 +0.3485102 0.2441142 0.9303782 +0.388193 0.2441142 0.9303782 +0.4303934 0.2441142 0.9303782 +0.4751555 0.2441142 0.9303782 +0.5225216 0.2441142 0.9303782 +0.5725335 0.2441142 0.9303782 +0.6252316 0.2441142 0.9303782 +0.6806558 0.2441142 0.9303782 +0.7388448 0.2441142 0.9303782 +0.7998369 0.2441142 0.9303782 +0.8636691 0.2441142 0.9303782 +0.9303782 0.2441142 0.9303782 +1 0.2441142 0.9303782 +0 0.2765176 0.9303782 +0.002418731 0.2765176 0.9303782 +0.005155668 0.2765176 0.9303782 +0.009080105 0.2765176 0.9303782 +0.01434988 0.2765176 0.9303782 +0.02107202 0.2765176 0.9303782 +0.02934285 0.2765176 0.9303782 +0.03925039 0.2765176 0.9303782 +0.05087609 0.2765176 0.9303782 +0.06429595 0.2765176 0.9303782 +0.07958143 0.2765176 0.9303782 +0.0968001 0.2765176 0.9303782 +0.1160161 0.2765176 0.9303782 +0.1372908 0.2765176 0.9303782 +0.1606827 0.2765176 0.9303782 +0.1862481 0.2765176 0.9303782 +0.2140411 0.2765176 0.9303782 +0.2441142 0.2765176 0.9303782 +0.2765176 0.2765176 0.9303782 +0.3113005 0.2765176 0.9303782 +0.3485102 0.2765176 0.9303782 +0.388193 0.2765176 0.9303782 +0.4303934 0.2765176 0.9303782 +0.4751555 0.2765176 0.9303782 +0.5225216 0.2765176 0.9303782 +0.5725335 0.2765176 0.9303782 +0.6252316 0.2765176 0.9303782 +0.6806558 0.2765176 0.9303782 +0.7388448 0.2765176 0.9303782 +0.7998369 0.2765176 0.9303782 +0.8636691 0.2765176 0.9303782 +0.9303782 0.2765176 0.9303782 +1 0.2765176 0.9303782 +0 0.3113005 0.9303782 +0.002418731 0.3113005 0.9303782 +0.005155668 0.3113005 0.9303782 +0.009080105 0.3113005 0.9303782 +0.01434988 0.3113005 0.9303782 +0.02107202 0.3113005 0.9303782 +0.02934285 0.3113005 0.9303782 +0.03925039 0.3113005 0.9303782 +0.05087609 0.3113005 0.9303782 +0.06429595 0.3113005 0.9303782 +0.07958143 0.3113005 0.9303782 +0.0968001 0.3113005 0.9303782 +0.1160161 0.3113005 0.9303782 +0.1372908 0.3113005 0.9303782 +0.1606827 0.3113005 0.9303782 +0.1862481 0.3113005 0.9303782 +0.2140411 0.3113005 0.9303782 +0.2441142 0.3113005 0.9303782 +0.2765176 0.3113005 0.9303782 +0.3113005 0.3113005 0.9303782 +0.3485102 0.3113005 0.9303782 +0.388193 0.3113005 0.9303782 +0.4303934 0.3113005 0.9303782 +0.4751555 0.3113005 0.9303782 +0.5225216 0.3113005 0.9303782 +0.5725335 0.3113005 0.9303782 +0.6252316 0.3113005 0.9303782 +0.6806558 0.3113005 0.9303782 +0.7388448 0.3113005 0.9303782 +0.7998369 0.3113005 0.9303782 +0.8636691 0.3113005 0.9303782 +0.9303782 0.3113005 0.9303782 +1 0.3113005 0.9303782 +0 0.3485102 0.9303782 +0.002418731 0.3485102 0.9303782 +0.005155668 0.3485102 0.9303782 +0.009080105 0.3485102 0.9303782 +0.01434988 0.3485102 0.9303782 +0.02107202 0.3485102 0.9303782 +0.02934285 0.3485102 0.9303782 +0.03925039 0.3485102 0.9303782 +0.05087609 0.3485102 0.9303782 +0.06429595 0.3485102 0.9303782 +0.07958143 0.3485102 0.9303782 +0.0968001 0.3485102 0.9303782 +0.1160161 0.3485102 0.9303782 +0.1372908 0.3485102 0.9303782 +0.1606827 0.3485102 0.9303782 +0.1862481 0.3485102 0.9303782 +0.2140411 0.3485102 0.9303782 +0.2441142 0.3485102 0.9303782 +0.2765176 0.3485102 0.9303782 +0.3113005 0.3485102 0.9303782 +0.3485102 0.3485102 0.9303782 +0.388193 0.3485102 0.9303782 +0.4303934 0.3485102 0.9303782 +0.4751555 0.3485102 0.9303782 +0.5225216 0.3485102 0.9303782 +0.5725335 0.3485102 0.9303782 +0.6252316 0.3485102 0.9303782 +0.6806558 0.3485102 0.9303782 +0.7388448 0.3485102 0.9303782 +0.7998369 0.3485102 0.9303782 +0.8636691 0.3485102 0.9303782 +0.9303782 0.3485102 0.9303782 +1 0.3485102 0.9303782 +0 0.388193 0.9303782 +0.002418731 0.388193 0.9303782 +0.005155668 0.388193 0.9303782 +0.009080105 0.388193 0.9303782 +0.01434988 0.388193 0.9303782 +0.02107202 0.388193 0.9303782 +0.02934285 0.388193 0.9303782 +0.03925039 0.388193 0.9303782 +0.05087609 0.388193 0.9303782 +0.06429595 0.388193 0.9303782 +0.07958143 0.388193 0.9303782 +0.0968001 0.388193 0.9303782 +0.1160161 0.388193 0.9303782 +0.1372908 0.388193 0.9303782 +0.1606827 0.388193 0.9303782 +0.1862481 0.388193 0.9303782 +0.2140411 0.388193 0.9303782 +0.2441142 0.388193 0.9303782 +0.2765176 0.388193 0.9303782 +0.3113005 0.388193 0.9303782 +0.3485102 0.388193 0.9303782 +0.388193 0.388193 0.9303782 +0.4303934 0.388193 0.9303782 +0.4751555 0.388193 0.9303782 +0.5225216 0.388193 0.9303782 +0.5725335 0.388193 0.9303782 +0.6252316 0.388193 0.9303782 +0.6806558 0.388193 0.9303782 +0.7388448 0.388193 0.9303782 +0.7998369 0.388193 0.9303782 +0.8636691 0.388193 0.9303782 +0.9303782 0.388193 0.9303782 +1 0.388193 0.9303782 +0 0.4303934 0.9303782 +0.002418731 0.4303934 0.9303782 +0.005155668 0.4303934 0.9303782 +0.009080105 0.4303934 0.9303782 +0.01434988 0.4303934 0.9303782 +0.02107202 0.4303934 0.9303782 +0.02934285 0.4303934 0.9303782 +0.03925039 0.4303934 0.9303782 +0.05087609 0.4303934 0.9303782 +0.06429595 0.4303934 0.9303782 +0.07958143 0.4303934 0.9303782 +0.0968001 0.4303934 0.9303782 +0.1160161 0.4303934 0.9303782 +0.1372908 0.4303934 0.9303782 +0.1606827 0.4303934 0.9303782 +0.1862481 0.4303934 0.9303782 +0.2140411 0.4303934 0.9303782 +0.2441142 0.4303934 0.9303782 +0.2765176 0.4303934 0.9303782 +0.3113005 0.4303934 0.9303782 +0.3485102 0.4303934 0.9303782 +0.388193 0.4303934 0.9303782 +0.4303934 0.4303934 0.9303782 +0.4751555 0.4303934 0.9303782 +0.5225216 0.4303934 0.9303782 +0.5725335 0.4303934 0.9303782 +0.6252316 0.4303934 0.9303782 +0.6806558 0.4303934 0.9303782 +0.7388448 0.4303934 0.9303782 +0.7998369 0.4303934 0.9303782 +0.8636691 0.4303934 0.9303782 +0.9303782 0.4303934 0.9303782 +1 0.4303934 0.9303782 +0 0.4751555 0.9303782 +0.002418731 0.4751555 0.9303782 +0.005155668 0.4751555 0.9303782 +0.009080105 0.4751555 0.9303782 +0.01434988 0.4751555 0.9303782 +0.02107202 0.4751555 0.9303782 +0.02934285 0.4751555 0.9303782 +0.03925039 0.4751555 0.9303782 +0.05087609 0.4751555 0.9303782 +0.06429595 0.4751555 0.9303782 +0.07958143 0.4751555 0.9303782 +0.0968001 0.4751555 0.9303782 +0.1160161 0.4751555 0.9303782 +0.1372908 0.4751555 0.9303782 +0.1606827 0.4751555 0.9303782 +0.1862481 0.4751555 0.9303782 +0.2140411 0.4751555 0.9303782 +0.2441142 0.4751555 0.9303782 +0.2765176 0.4751555 0.9303782 +0.3113005 0.4751555 0.9303782 +0.3485102 0.4751555 0.9303782 +0.388193 0.4751555 0.9303782 +0.4303934 0.4751555 0.9303782 +0.4751555 0.4751555 0.9303782 +0.5225216 0.4751555 0.9303782 +0.5725335 0.4751555 0.9303782 +0.6252316 0.4751555 0.9303782 +0.6806558 0.4751555 0.9303782 +0.7388448 0.4751555 0.9303782 +0.7998369 0.4751555 0.9303782 +0.8636691 0.4751555 0.9303782 +0.9303782 0.4751555 0.9303782 +1 0.4751555 0.9303782 +0 0.5225216 0.9303782 +0.002418731 0.5225216 0.9303782 +0.005155668 0.5225216 0.9303782 +0.009080105 0.5225216 0.9303782 +0.01434988 0.5225216 0.9303782 +0.02107202 0.5225216 0.9303782 +0.02934285 0.5225216 0.9303782 +0.03925039 0.5225216 0.9303782 +0.05087609 0.5225216 0.9303782 +0.06429595 0.5225216 0.9303782 +0.07958143 0.5225216 0.9303782 +0.0968001 0.5225216 0.9303782 +0.1160161 0.5225216 0.9303782 +0.1372908 0.5225216 0.9303782 +0.1606827 0.5225216 0.9303782 +0.1862481 0.5225216 0.9303782 +0.2140411 0.5225216 0.9303782 +0.2441142 0.5225216 0.9303782 +0.2765176 0.5225216 0.9303782 +0.3113005 0.5225216 0.9303782 +0.3485102 0.5225216 0.9303782 +0.388193 0.5225216 0.9303782 +0.4303934 0.5225216 0.9303782 +0.4751555 0.5225216 0.9303782 +0.5225216 0.5225216 0.9303782 +0.5725335 0.5225216 0.9303782 +0.6252316 0.5225216 0.9303782 +0.6806558 0.5225216 0.9303782 +0.7388448 0.5225216 0.9303782 +0.7998369 0.5225216 0.9303782 +0.8636691 0.5225216 0.9303782 +0.9303782 0.5225216 0.9303782 +1 0.5225216 0.9303782 +0 0.5725335 0.9303782 +0.002418731 0.5725335 0.9303782 +0.005155668 0.5725335 0.9303782 +0.009080105 0.5725335 0.9303782 +0.01434988 0.5725335 0.9303782 +0.02107202 0.5725335 0.9303782 +0.02934285 0.5725335 0.9303782 +0.03925039 0.5725335 0.9303782 +0.05087609 0.5725335 0.9303782 +0.06429595 0.5725335 0.9303782 +0.07958143 0.5725335 0.9303782 +0.0968001 0.5725335 0.9303782 +0.1160161 0.5725335 0.9303782 +0.1372908 0.5725335 0.9303782 +0.1606827 0.5725335 0.9303782 +0.1862481 0.5725335 0.9303782 +0.2140411 0.5725335 0.9303782 +0.2441142 0.5725335 0.9303782 +0.2765176 0.5725335 0.9303782 +0.3113005 0.5725335 0.9303782 +0.3485102 0.5725335 0.9303782 +0.388193 0.5725335 0.9303782 +0.4303934 0.5725335 0.9303782 +0.4751555 0.5725335 0.9303782 +0.5225216 0.5725335 0.9303782 +0.5725335 0.5725335 0.9303782 +0.6252316 0.5725335 0.9303782 +0.6806558 0.5725335 0.9303782 +0.7388448 0.5725335 0.9303782 +0.7998369 0.5725335 0.9303782 +0.8636691 0.5725335 0.9303782 +0.9303782 0.5725335 0.9303782 +1 0.5725335 0.9303782 +0 0.6252316 0.9303782 +0.002418731 0.6252316 0.9303782 +0.005155668 0.6252316 0.9303782 +0.009080105 0.6252316 0.9303782 +0.01434988 0.6252316 0.9303782 +0.02107202 0.6252316 0.9303782 +0.02934285 0.6252316 0.9303782 +0.03925039 0.6252316 0.9303782 +0.05087609 0.6252316 0.9303782 +0.06429595 0.6252316 0.9303782 +0.07958143 0.6252316 0.9303782 +0.0968001 0.6252316 0.9303782 +0.1160161 0.6252316 0.9303782 +0.1372908 0.6252316 0.9303782 +0.1606827 0.6252316 0.9303782 +0.1862481 0.6252316 0.9303782 +0.2140411 0.6252316 0.9303782 +0.2441142 0.6252316 0.9303782 +0.2765176 0.6252316 0.9303782 +0.3113005 0.6252316 0.9303782 +0.3485102 0.6252316 0.9303782 +0.388193 0.6252316 0.9303782 +0.4303934 0.6252316 0.9303782 +0.4751555 0.6252316 0.9303782 +0.5225216 0.6252316 0.9303782 +0.5725335 0.6252316 0.9303782 +0.6252316 0.6252316 0.9303782 +0.6806558 0.6252316 0.9303782 +0.7388448 0.6252316 0.9303782 +0.7998369 0.6252316 0.9303782 +0.8636691 0.6252316 0.9303782 +0.9303782 0.6252316 0.9303782 +1 0.6252316 0.9303782 +0 0.6806558 0.9303782 +0.002418731 0.6806558 0.9303782 +0.005155668 0.6806558 0.9303782 +0.009080105 0.6806558 0.9303782 +0.01434988 0.6806558 0.9303782 +0.02107202 0.6806558 0.9303782 +0.02934285 0.6806558 0.9303782 +0.03925039 0.6806558 0.9303782 +0.05087609 0.6806558 0.9303782 +0.06429595 0.6806558 0.9303782 +0.07958143 0.6806558 0.9303782 +0.0968001 0.6806558 0.9303782 +0.1160161 0.6806558 0.9303782 +0.1372908 0.6806558 0.9303782 +0.1606827 0.6806558 0.9303782 +0.1862481 0.6806558 0.9303782 +0.2140411 0.6806558 0.9303782 +0.2441142 0.6806558 0.9303782 +0.2765176 0.6806558 0.9303782 +0.3113005 0.6806558 0.9303782 +0.3485102 0.6806558 0.9303782 +0.388193 0.6806558 0.9303782 +0.4303934 0.6806558 0.9303782 +0.4751555 0.6806558 0.9303782 +0.5225216 0.6806558 0.9303782 +0.5725335 0.6806558 0.9303782 +0.6252316 0.6806558 0.9303782 +0.6806558 0.6806558 0.9303782 +0.7388448 0.6806558 0.9303782 +0.7998369 0.6806558 0.9303782 +0.8636691 0.6806558 0.9303782 +0.9303782 0.6806558 0.9303782 +1 0.6806558 0.9303782 +0 0.7388448 0.9303782 +0.002418731 0.7388448 0.9303782 +0.005155668 0.7388448 0.9303782 +0.009080105 0.7388448 0.9303782 +0.01434988 0.7388448 0.9303782 +0.02107202 0.7388448 0.9303782 +0.02934285 0.7388448 0.9303782 +0.03925039 0.7388448 0.9303782 +0.05087609 0.7388448 0.9303782 +0.06429595 0.7388448 0.9303782 +0.07958143 0.7388448 0.9303782 +0.0968001 0.7388448 0.9303782 +0.1160161 0.7388448 0.9303782 +0.1372908 0.7388448 0.9303782 +0.1606827 0.7388448 0.9303782 +0.1862481 0.7388448 0.9303782 +0.2140411 0.7388448 0.9303782 +0.2441142 0.7388448 0.9303782 +0.2765176 0.7388448 0.9303782 +0.3113005 0.7388448 0.9303782 +0.3485102 0.7388448 0.9303782 +0.388193 0.7388448 0.9303782 +0.4303934 0.7388448 0.9303782 +0.4751555 0.7388448 0.9303782 +0.5225216 0.7388448 0.9303782 +0.5725335 0.7388448 0.9303782 +0.6252316 0.7388448 0.9303782 +0.6806558 0.7388448 0.9303782 +0.7388448 0.7388448 0.9303782 +0.7998369 0.7388448 0.9303782 +0.8636691 0.7388448 0.9303782 +0.9303782 0.7388448 0.9303782 +1 0.7388448 0.9303782 +0 0.7998369 0.9303782 +0.002418731 0.7998369 0.9303782 +0.005155668 0.7998369 0.9303782 +0.009080105 0.7998369 0.9303782 +0.01434988 0.7998369 0.9303782 +0.02107202 0.7998369 0.9303782 +0.02934285 0.7998369 0.9303782 +0.03925039 0.7998369 0.9303782 +0.05087609 0.7998369 0.9303782 +0.06429595 0.7998369 0.9303782 +0.07958143 0.7998369 0.9303782 +0.0968001 0.7998369 0.9303782 +0.1160161 0.7998369 0.9303782 +0.1372908 0.7998369 0.9303782 +0.1606827 0.7998369 0.9303782 +0.1862481 0.7998369 0.9303782 +0.2140411 0.7998369 0.9303782 +0.2441142 0.7998369 0.9303782 +0.2765176 0.7998369 0.9303782 +0.3113005 0.7998369 0.9303782 +0.3485102 0.7998369 0.9303782 +0.388193 0.7998369 0.9303782 +0.4303934 0.7998369 0.9303782 +0.4751555 0.7998369 0.9303782 +0.5225216 0.7998369 0.9303782 +0.5725335 0.7998369 0.9303782 +0.6252316 0.7998369 0.9303782 +0.6806558 0.7998369 0.9303782 +0.7388448 0.7998369 0.9303782 +0.7998369 0.7998369 0.9303782 +0.8636691 0.7998369 0.9303782 +0.9303782 0.7998369 0.9303782 +1 0.7998369 0.9303782 +0 0.8636691 0.9303782 +0.002418731 0.8636691 0.9303782 +0.005155668 0.8636691 0.9303782 +0.009080105 0.8636691 0.9303782 +0.01434988 0.8636691 0.9303782 +0.02107202 0.8636691 0.9303782 +0.02934285 0.8636691 0.9303782 +0.03925039 0.8636691 0.9303782 +0.05087609 0.8636691 0.9303782 +0.06429595 0.8636691 0.9303782 +0.07958143 0.8636691 0.9303782 +0.0968001 0.8636691 0.9303782 +0.1160161 0.8636691 0.9303782 +0.1372908 0.8636691 0.9303782 +0.1606827 0.8636691 0.9303782 +0.1862481 0.8636691 0.9303782 +0.2140411 0.8636691 0.9303782 +0.2441142 0.8636691 0.9303782 +0.2765176 0.8636691 0.9303782 +0.3113005 0.8636691 0.9303782 +0.3485102 0.8636691 0.9303782 +0.388193 0.8636691 0.9303782 +0.4303934 0.8636691 0.9303782 +0.4751555 0.8636691 0.9303782 +0.5225216 0.8636691 0.9303782 +0.5725335 0.8636691 0.9303782 +0.6252316 0.8636691 0.9303782 +0.6806558 0.8636691 0.9303782 +0.7388448 0.8636691 0.9303782 +0.7998369 0.8636691 0.9303782 +0.8636691 0.8636691 0.9303782 +0.9303782 0.8636691 0.9303782 +1 0.8636691 0.9303782 +0 0.9303782 0.9303782 +0.002418731 0.9303782 0.9303782 +0.005155668 0.9303782 0.9303782 +0.009080105 0.9303782 0.9303782 +0.01434988 0.9303782 0.9303782 +0.02107202 0.9303782 0.9303782 +0.02934285 0.9303782 0.9303782 +0.03925039 0.9303782 0.9303782 +0.05087609 0.9303782 0.9303782 +0.06429595 0.9303782 0.9303782 +0.07958143 0.9303782 0.9303782 +0.0968001 0.9303782 0.9303782 +0.1160161 0.9303782 0.9303782 +0.1372908 0.9303782 0.9303782 +0.1606827 0.9303782 0.9303782 +0.1862481 0.9303782 0.9303782 +0.2140411 0.9303782 0.9303782 +0.2441142 0.9303782 0.9303782 +0.2765176 0.9303782 0.9303782 +0.3113005 0.9303782 0.9303782 +0.3485102 0.9303782 0.9303782 +0.388193 0.9303782 0.9303782 +0.4303934 0.9303782 0.9303782 +0.4751555 0.9303782 0.9303782 +0.5225216 0.9303782 0.9303782 +0.5725335 0.9303782 0.9303782 +0.6252316 0.9303782 0.9303782 +0.6806558 0.9303782 0.9303782 +0.7388448 0.9303782 0.9303782 +0.7998369 0.9303782 0.9303782 +0.8636691 0.9303782 0.9303782 +0.9303782 0.9303782 0.9303782 +1 0.9303782 0.9303782 +0 1 0.9303782 +0.002418731 1 0.9303782 +0.005155668 1 0.9303782 +0.009080105 1 0.9303782 +0.01434988 1 0.9303782 +0.02107202 1 0.9303782 +0.02934285 1 0.9303782 +0.03925039 1 0.9303782 +0.05087609 1 0.9303782 +0.06429595 1 0.9303782 +0.07958143 1 0.9303782 +0.0968001 1 0.9303782 +0.1160161 1 0.9303782 +0.1372908 1 0.9303782 +0.1606827 1 0.9303782 +0.1862481 1 0.9303782 +0.2140411 1 0.9303782 +0.2441142 1 0.9303782 +0.2765176 1 0.9303782 +0.3113005 1 0.9303782 +0.3485102 1 0.9303782 +0.388193 1 0.9303782 +0.4303934 1 0.9303782 +0.4751555 1 0.9303782 +0.5225216 1 0.9303782 +0.5725335 1 0.9303782 +0.6252316 1 0.9303782 +0.6806558 1 0.9303782 +0.7388448 1 0.9303782 +0.7998369 1 0.9303782 +0.8636691 1 0.9303782 +0.9303782 1 0.9303782 +1 1 0.9303782 +0 0 1 +0.002418731 0 1 +0.005155668 0 1 +0.009080105 0 1 +0.01434988 0 1 +0.02107202 0 1 +0.02934285 0 1 +0.03925039 0 1 +0.05087609 0 1 +0.06429595 0 1 +0.07958143 0 1 +0.0968001 0 1 +0.1160161 0 1 +0.1372908 0 1 +0.1606827 0 1 +0.1862481 0 1 +0.2140411 0 1 +0.2441142 0 1 +0.2765176 0 1 +0.3113005 0 1 +0.3485102 0 1 +0.388193 0 1 +0.4303934 0 1 +0.4751555 0 1 +0.5225216 0 1 +0.5725335 0 1 +0.6252316 0 1 +0.6806558 0 1 +0.7388448 0 1 +0.7998369 0 1 +0.8636691 0 1 +0.9303782 0 1 +1 0 1 +0 0.002418731 1 +0.002418731 0.002418731 1 +0.005155668 0.002418731 1 +0.009080105 0.002418731 1 +0.01434988 0.002418731 1 +0.02107202 0.002418731 1 +0.02934285 0.002418731 1 +0.03925039 0.002418731 1 +0.05087609 0.002418731 1 +0.06429595 0.002418731 1 +0.07958143 0.002418731 1 +0.0968001 0.002418731 1 +0.1160161 0.002418731 1 +0.1372908 0.002418731 1 +0.1606827 0.002418731 1 +0.1862481 0.002418731 1 +0.2140411 0.002418731 1 +0.2441142 0.002418731 1 +0.2765176 0.002418731 1 +0.3113005 0.002418731 1 +0.3485102 0.002418731 1 +0.388193 0.002418731 1 +0.4303934 0.002418731 1 +0.4751555 0.002418731 1 +0.5225216 0.002418731 1 +0.5725335 0.002418731 1 +0.6252316 0.002418731 1 +0.6806558 0.002418731 1 +0.7388448 0.002418731 1 +0.7998369 0.002418731 1 +0.8636691 0.002418731 1 +0.9303782 0.002418731 1 +1 0.002418731 1 +0 0.005155668 1 +0.002418731 0.005155668 1 +0.005155668 0.005155668 1 +0.009080105 0.005155668 1 +0.01434988 0.005155668 1 +0.02107202 0.005155668 1 +0.02934285 0.005155668 1 +0.03925039 0.005155668 1 +0.05087609 0.005155668 1 +0.06429595 0.005155668 1 +0.07958143 0.005155668 1 +0.0968001 0.005155668 1 +0.1160161 0.005155668 1 +0.1372908 0.005155668 1 +0.1606827 0.005155668 1 +0.1862481 0.005155668 1 +0.2140411 0.005155668 1 +0.2441142 0.005155668 1 +0.2765176 0.005155668 1 +0.3113005 0.005155668 1 +0.3485102 0.005155668 1 +0.388193 0.005155668 1 +0.4303934 0.005155668 1 +0.4751555 0.005155668 1 +0.5225216 0.005155668 1 +0.5725335 0.005155668 1 +0.6252316 0.005155668 1 +0.6806558 0.005155668 1 +0.7388448 0.005155668 1 +0.7998369 0.005155668 1 +0.8636691 0.005155668 1 +0.9303782 0.005155668 1 +1 0.005155668 1 +0 0.009080105 1 +0.002418731 0.009080105 1 +0.005155668 0.009080105 1 +0.009080105 0.009080105 1 +0.01434988 0.009080105 1 +0.02107202 0.009080105 1 +0.02934285 0.009080105 1 +0.03925039 0.009080105 1 +0.05087609 0.009080105 1 +0.06429595 0.009080105 1 +0.07958143 0.009080105 1 +0.0968001 0.009080105 1 +0.1160161 0.009080105 1 +0.1372908 0.009080105 1 +0.1606827 0.009080105 1 +0.1862481 0.009080105 1 +0.2140411 0.009080105 1 +0.2441142 0.009080105 1 +0.2765176 0.009080105 1 +0.3113005 0.009080105 1 +0.3485102 0.009080105 1 +0.388193 0.009080105 1 +0.4303934 0.009080105 1 +0.4751555 0.009080105 1 +0.5225216 0.009080105 1 +0.5725335 0.009080105 1 +0.6252316 0.009080105 1 +0.6806558 0.009080105 1 +0.7388448 0.009080105 1 +0.7998369 0.009080105 1 +0.8636691 0.009080105 1 +0.9303782 0.009080105 1 +1 0.009080105 1 +0 0.01434988 1 +0.002418731 0.01434988 1 +0.005155668 0.01434988 1 +0.009080105 0.01434988 1 +0.01434988 0.01434988 1 +0.02107202 0.01434988 1 +0.02934285 0.01434988 1 +0.03925039 0.01434988 1 +0.05087609 0.01434988 1 +0.06429595 0.01434988 1 +0.07958143 0.01434988 1 +0.0968001 0.01434988 1 +0.1160161 0.01434988 1 +0.1372908 0.01434988 1 +0.1606827 0.01434988 1 +0.1862481 0.01434988 1 +0.2140411 0.01434988 1 +0.2441142 0.01434988 1 +0.2765176 0.01434988 1 +0.3113005 0.01434988 1 +0.3485102 0.01434988 1 +0.388193 0.01434988 1 +0.4303934 0.01434988 1 +0.4751555 0.01434988 1 +0.5225216 0.01434988 1 +0.5725335 0.01434988 1 +0.6252316 0.01434988 1 +0.6806558 0.01434988 1 +0.7388448 0.01434988 1 +0.7998369 0.01434988 1 +0.8636691 0.01434988 1 +0.9303782 0.01434988 1 +1 0.01434988 1 +0 0.02107202 1 +0.002418731 0.02107202 1 +0.005155668 0.02107202 1 +0.009080105 0.02107202 1 +0.01434988 0.02107202 1 +0.02107202 0.02107202 1 +0.02934285 0.02107202 1 +0.03925039 0.02107202 1 +0.05087609 0.02107202 1 +0.06429595 0.02107202 1 +0.07958143 0.02107202 1 +0.0968001 0.02107202 1 +0.1160161 0.02107202 1 +0.1372908 0.02107202 1 +0.1606827 0.02107202 1 +0.1862481 0.02107202 1 +0.2140411 0.02107202 1 +0.2441142 0.02107202 1 +0.2765176 0.02107202 1 +0.3113005 0.02107202 1 +0.3485102 0.02107202 1 +0.388193 0.02107202 1 +0.4303934 0.02107202 1 +0.4751555 0.02107202 1 +0.5225216 0.02107202 1 +0.5725335 0.02107202 1 +0.6252316 0.02107202 1 +0.6806558 0.02107202 1 +0.7388448 0.02107202 1 +0.7998369 0.02107202 1 +0.8636691 0.02107202 1 +0.9303782 0.02107202 1 +1 0.02107202 1 +0 0.02934285 1 +0.002418731 0.02934285 1 +0.005155668 0.02934285 1 +0.009080105 0.02934285 1 +0.01434988 0.02934285 1 +0.02107202 0.02934285 1 +0.02934285 0.02934285 1 +0.03925039 0.02934285 1 +0.05087609 0.02934285 1 +0.06429595 0.02934285 1 +0.07958143 0.02934285 1 +0.0968001 0.02934285 1 +0.1160161 0.02934285 1 +0.1372908 0.02934285 1 +0.1606827 0.02934285 1 +0.1862481 0.02934285 1 +0.2140411 0.02934285 1 +0.2441142 0.02934285 1 +0.2765176 0.02934285 1 +0.3113005 0.02934285 1 +0.3485102 0.02934285 1 +0.388193 0.02934285 1 +0.4303934 0.02934285 1 +0.4751555 0.02934285 1 +0.5225216 0.02934285 1 +0.5725335 0.02934285 1 +0.6252316 0.02934285 1 +0.6806558 0.02934285 1 +0.7388448 0.02934285 1 +0.7998369 0.02934285 1 +0.8636691 0.02934285 1 +0.9303782 0.02934285 1 +1 0.02934285 1 +0 0.03925039 1 +0.002418731 0.03925039 1 +0.005155668 0.03925039 1 +0.009080105 0.03925039 1 +0.01434988 0.03925039 1 +0.02107202 0.03925039 1 +0.02934285 0.03925039 1 +0.03925039 0.03925039 1 +0.05087609 0.03925039 1 +0.06429595 0.03925039 1 +0.07958143 0.03925039 1 +0.0968001 0.03925039 1 +0.1160161 0.03925039 1 +0.1372908 0.03925039 1 +0.1606827 0.03925039 1 +0.1862481 0.03925039 1 +0.2140411 0.03925039 1 +0.2441142 0.03925039 1 +0.2765176 0.03925039 1 +0.3113005 0.03925039 1 +0.3485102 0.03925039 1 +0.388193 0.03925039 1 +0.4303934 0.03925039 1 +0.4751555 0.03925039 1 +0.5225216 0.03925039 1 +0.5725335 0.03925039 1 +0.6252316 0.03925039 1 +0.6806558 0.03925039 1 +0.7388448 0.03925039 1 +0.7998369 0.03925039 1 +0.8636691 0.03925039 1 +0.9303782 0.03925039 1 +1 0.03925039 1 +0 0.05087609 1 +0.002418731 0.05087609 1 +0.005155668 0.05087609 1 +0.009080105 0.05087609 1 +0.01434988 0.05087609 1 +0.02107202 0.05087609 1 +0.02934285 0.05087609 1 +0.03925039 0.05087609 1 +0.05087609 0.05087609 1 +0.06429595 0.05087609 1 +0.07958143 0.05087609 1 +0.0968001 0.05087609 1 +0.1160161 0.05087609 1 +0.1372908 0.05087609 1 +0.1606827 0.05087609 1 +0.1862481 0.05087609 1 +0.2140411 0.05087609 1 +0.2441142 0.05087609 1 +0.2765176 0.05087609 1 +0.3113005 0.05087609 1 +0.3485102 0.05087609 1 +0.388193 0.05087609 1 +0.4303934 0.05087609 1 +0.4751555 0.05087609 1 +0.5225216 0.05087609 1 +0.5725335 0.05087609 1 +0.6252316 0.05087609 1 +0.6806558 0.05087609 1 +0.7388448 0.05087609 1 +0.7998369 0.05087609 1 +0.8636691 0.05087609 1 +0.9303782 0.05087609 1 +1 0.05087609 1 +0 0.06429595 1 +0.002418731 0.06429595 1 +0.005155668 0.06429595 1 +0.009080105 0.06429595 1 +0.01434988 0.06429595 1 +0.02107202 0.06429595 1 +0.02934285 0.06429595 1 +0.03925039 0.06429595 1 +0.05087609 0.06429595 1 +0.06429595 0.06429595 1 +0.07958143 0.06429595 1 +0.0968001 0.06429595 1 +0.1160161 0.06429595 1 +0.1372908 0.06429595 1 +0.1606827 0.06429595 1 +0.1862481 0.06429595 1 +0.2140411 0.06429595 1 +0.2441142 0.06429595 1 +0.2765176 0.06429595 1 +0.3113005 0.06429595 1 +0.3485102 0.06429595 1 +0.388193 0.06429595 1 +0.4303934 0.06429595 1 +0.4751555 0.06429595 1 +0.5225216 0.06429595 1 +0.5725335 0.06429595 1 +0.6252316 0.06429595 1 +0.6806558 0.06429595 1 +0.7388448 0.06429595 1 +0.7998369 0.06429595 1 +0.8636691 0.06429595 1 +0.9303782 0.06429595 1 +1 0.06429595 1 +0 0.07958143 1 +0.002418731 0.07958143 1 +0.005155668 0.07958143 1 +0.009080105 0.07958143 1 +0.01434988 0.07958143 1 +0.02107202 0.07958143 1 +0.02934285 0.07958143 1 +0.03925039 0.07958143 1 +0.05087609 0.07958143 1 +0.06429595 0.07958143 1 +0.07958143 0.07958143 1 +0.0968001 0.07958143 1 +0.1160161 0.07958143 1 +0.1372908 0.07958143 1 +0.1606827 0.07958143 1 +0.1862481 0.07958143 1 +0.2140411 0.07958143 1 +0.2441142 0.07958143 1 +0.2765176 0.07958143 1 +0.3113005 0.07958143 1 +0.3485102 0.07958143 1 +0.388193 0.07958143 1 +0.4303934 0.07958143 1 +0.4751555 0.07958143 1 +0.5225216 0.07958143 1 +0.5725335 0.07958143 1 +0.6252316 0.07958143 1 +0.6806558 0.07958143 1 +0.7388448 0.07958143 1 +0.7998369 0.07958143 1 +0.8636691 0.07958143 1 +0.9303782 0.07958143 1 +1 0.07958143 1 +0 0.0968001 1 +0.002418731 0.0968001 1 +0.005155668 0.0968001 1 +0.009080105 0.0968001 1 +0.01434988 0.0968001 1 +0.02107202 0.0968001 1 +0.02934285 0.0968001 1 +0.03925039 0.0968001 1 +0.05087609 0.0968001 1 +0.06429595 0.0968001 1 +0.07958143 0.0968001 1 +0.0968001 0.0968001 1 +0.1160161 0.0968001 1 +0.1372908 0.0968001 1 +0.1606827 0.0968001 1 +0.1862481 0.0968001 1 +0.2140411 0.0968001 1 +0.2441142 0.0968001 1 +0.2765176 0.0968001 1 +0.3113005 0.0968001 1 +0.3485102 0.0968001 1 +0.388193 0.0968001 1 +0.4303934 0.0968001 1 +0.4751555 0.0968001 1 +0.5225216 0.0968001 1 +0.5725335 0.0968001 1 +0.6252316 0.0968001 1 +0.6806558 0.0968001 1 +0.7388448 0.0968001 1 +0.7998369 0.0968001 1 +0.8636691 0.0968001 1 +0.9303782 0.0968001 1 +1 0.0968001 1 +0 0.1160161 1 +0.002418731 0.1160161 1 +0.005155668 0.1160161 1 +0.009080105 0.1160161 1 +0.01434988 0.1160161 1 +0.02107202 0.1160161 1 +0.02934285 0.1160161 1 +0.03925039 0.1160161 1 +0.05087609 0.1160161 1 +0.06429595 0.1160161 1 +0.07958143 0.1160161 1 +0.0968001 0.1160161 1 +0.1160161 0.1160161 1 +0.1372908 0.1160161 1 +0.1606827 0.1160161 1 +0.1862481 0.1160161 1 +0.2140411 0.1160161 1 +0.2441142 0.1160161 1 +0.2765176 0.1160161 1 +0.3113005 0.1160161 1 +0.3485102 0.1160161 1 +0.388193 0.1160161 1 +0.4303934 0.1160161 1 +0.4751555 0.1160161 1 +0.5225216 0.1160161 1 +0.5725335 0.1160161 1 +0.6252316 0.1160161 1 +0.6806558 0.1160161 1 +0.7388448 0.1160161 1 +0.7998369 0.1160161 1 +0.8636691 0.1160161 1 +0.9303782 0.1160161 1 +1 0.1160161 1 +0 0.1372908 1 +0.002418731 0.1372908 1 +0.005155668 0.1372908 1 +0.009080105 0.1372908 1 +0.01434988 0.1372908 1 +0.02107202 0.1372908 1 +0.02934285 0.1372908 1 +0.03925039 0.1372908 1 +0.05087609 0.1372908 1 +0.06429595 0.1372908 1 +0.07958143 0.1372908 1 +0.0968001 0.1372908 1 +0.1160161 0.1372908 1 +0.1372908 0.1372908 1 +0.1606827 0.1372908 1 +0.1862481 0.1372908 1 +0.2140411 0.1372908 1 +0.2441142 0.1372908 1 +0.2765176 0.1372908 1 +0.3113005 0.1372908 1 +0.3485102 0.1372908 1 +0.388193 0.1372908 1 +0.4303934 0.1372908 1 +0.4751555 0.1372908 1 +0.5225216 0.1372908 1 +0.5725335 0.1372908 1 +0.6252316 0.1372908 1 +0.6806558 0.1372908 1 +0.7388448 0.1372908 1 +0.7998369 0.1372908 1 +0.8636691 0.1372908 1 +0.9303782 0.1372908 1 +1 0.1372908 1 +0 0.1606827 1 +0.002418731 0.1606827 1 +0.005155668 0.1606827 1 +0.009080105 0.1606827 1 +0.01434988 0.1606827 1 +0.02107202 0.1606827 1 +0.02934285 0.1606827 1 +0.03925039 0.1606827 1 +0.05087609 0.1606827 1 +0.06429595 0.1606827 1 +0.07958143 0.1606827 1 +0.0968001 0.1606827 1 +0.1160161 0.1606827 1 +0.1372908 0.1606827 1 +0.1606827 0.1606827 1 +0.1862481 0.1606827 1 +0.2140411 0.1606827 1 +0.2441142 0.1606827 1 +0.2765176 0.1606827 1 +0.3113005 0.1606827 1 +0.3485102 0.1606827 1 +0.388193 0.1606827 1 +0.4303934 0.1606827 1 +0.4751555 0.1606827 1 +0.5225216 0.1606827 1 +0.5725335 0.1606827 1 +0.6252316 0.1606827 1 +0.6806558 0.1606827 1 +0.7388448 0.1606827 1 +0.7998369 0.1606827 1 +0.8636691 0.1606827 1 +0.9303782 0.1606827 1 +1 0.1606827 1 +0 0.1862481 1 +0.002418731 0.1862481 1 +0.005155668 0.1862481 1 +0.009080105 0.1862481 1 +0.01434988 0.1862481 1 +0.02107202 0.1862481 1 +0.02934285 0.1862481 1 +0.03925039 0.1862481 1 +0.05087609 0.1862481 1 +0.06429595 0.1862481 1 +0.07958143 0.1862481 1 +0.0968001 0.1862481 1 +0.1160161 0.1862481 1 +0.1372908 0.1862481 1 +0.1606827 0.1862481 1 +0.1862481 0.1862481 1 +0.2140411 0.1862481 1 +0.2441142 0.1862481 1 +0.2765176 0.1862481 1 +0.3113005 0.1862481 1 +0.3485102 0.1862481 1 +0.388193 0.1862481 1 +0.4303934 0.1862481 1 +0.4751555 0.1862481 1 +0.5225216 0.1862481 1 +0.5725335 0.1862481 1 +0.6252316 0.1862481 1 +0.6806558 0.1862481 1 +0.7388448 0.1862481 1 +0.7998369 0.1862481 1 +0.8636691 0.1862481 1 +0.9303782 0.1862481 1 +1 0.1862481 1 +0 0.2140411 1 +0.002418731 0.2140411 1 +0.005155668 0.2140411 1 +0.009080105 0.2140411 1 +0.01434988 0.2140411 1 +0.02107202 0.2140411 1 +0.02934285 0.2140411 1 +0.03925039 0.2140411 1 +0.05087609 0.2140411 1 +0.06429595 0.2140411 1 +0.07958143 0.2140411 1 +0.0968001 0.2140411 1 +0.1160161 0.2140411 1 +0.1372908 0.2140411 1 +0.1606827 0.2140411 1 +0.1862481 0.2140411 1 +0.2140411 0.2140411 1 +0.2441142 0.2140411 1 +0.2765176 0.2140411 1 +0.3113005 0.2140411 1 +0.3485102 0.2140411 1 +0.388193 0.2140411 1 +0.4303934 0.2140411 1 +0.4751555 0.2140411 1 +0.5225216 0.2140411 1 +0.5725335 0.2140411 1 +0.6252316 0.2140411 1 +0.6806558 0.2140411 1 +0.7388448 0.2140411 1 +0.7998369 0.2140411 1 +0.8636691 0.2140411 1 +0.9303782 0.2140411 1 +1 0.2140411 1 +0 0.2441142 1 +0.002418731 0.2441142 1 +0.005155668 0.2441142 1 +0.009080105 0.2441142 1 +0.01434988 0.2441142 1 +0.02107202 0.2441142 1 +0.02934285 0.2441142 1 +0.03925039 0.2441142 1 +0.05087609 0.2441142 1 +0.06429595 0.2441142 1 +0.07958143 0.2441142 1 +0.0968001 0.2441142 1 +0.1160161 0.2441142 1 +0.1372908 0.2441142 1 +0.1606827 0.2441142 1 +0.1862481 0.2441142 1 +0.2140411 0.2441142 1 +0.2441142 0.2441142 1 +0.2765176 0.2441142 1 +0.3113005 0.2441142 1 +0.3485102 0.2441142 1 +0.388193 0.2441142 1 +0.4303934 0.2441142 1 +0.4751555 0.2441142 1 +0.5225216 0.2441142 1 +0.5725335 0.2441142 1 +0.6252316 0.2441142 1 +0.6806558 0.2441142 1 +0.7388448 0.2441142 1 +0.7998369 0.2441142 1 +0.8636691 0.2441142 1 +0.9303782 0.2441142 1 +1 0.2441142 1 +0 0.2765176 1 +0.002418731 0.2765176 1 +0.005155668 0.2765176 1 +0.009080105 0.2765176 1 +0.01434988 0.2765176 1 +0.02107202 0.2765176 1 +0.02934285 0.2765176 1 +0.03925039 0.2765176 1 +0.05087609 0.2765176 1 +0.06429595 0.2765176 1 +0.07958143 0.2765176 1 +0.0968001 0.2765176 1 +0.1160161 0.2765176 1 +0.1372908 0.2765176 1 +0.1606827 0.2765176 1 +0.1862481 0.2765176 1 +0.2140411 0.2765176 1 +0.2441142 0.2765176 1 +0.2765176 0.2765176 1 +0.3113005 0.2765176 1 +0.3485102 0.2765176 1 +0.388193 0.2765176 1 +0.4303934 0.2765176 1 +0.4751555 0.2765176 1 +0.5225216 0.2765176 1 +0.5725335 0.2765176 1 +0.6252316 0.2765176 1 +0.6806558 0.2765176 1 +0.7388448 0.2765176 1 +0.7998369 0.2765176 1 +0.8636691 0.2765176 1 +0.9303782 0.2765176 1 +1 0.2765176 1 +0 0.3113005 1 +0.002418731 0.3113005 1 +0.005155668 0.3113005 1 +0.009080105 0.3113005 1 +0.01434988 0.3113005 1 +0.02107202 0.3113005 1 +0.02934285 0.3113005 1 +0.03925039 0.3113005 1 +0.05087609 0.3113005 1 +0.06429595 0.3113005 1 +0.07958143 0.3113005 1 +0.0968001 0.3113005 1 +0.1160161 0.3113005 1 +0.1372908 0.3113005 1 +0.1606827 0.3113005 1 +0.1862481 0.3113005 1 +0.2140411 0.3113005 1 +0.2441142 0.3113005 1 +0.2765176 0.3113005 1 +0.3113005 0.3113005 1 +0.3485102 0.3113005 1 +0.388193 0.3113005 1 +0.4303934 0.3113005 1 +0.4751555 0.3113005 1 +0.5225216 0.3113005 1 +0.5725335 0.3113005 1 +0.6252316 0.3113005 1 +0.6806558 0.3113005 1 +0.7388448 0.3113005 1 +0.7998369 0.3113005 1 +0.8636691 0.3113005 1 +0.9303782 0.3113005 1 +1 0.3113005 1 +0 0.3485102 1 +0.002418731 0.3485102 1 +0.005155668 0.3485102 1 +0.009080105 0.3485102 1 +0.01434988 0.3485102 1 +0.02107202 0.3485102 1 +0.02934285 0.3485102 1 +0.03925039 0.3485102 1 +0.05087609 0.3485102 1 +0.06429595 0.3485102 1 +0.07958143 0.3485102 1 +0.0968001 0.3485102 1 +0.1160161 0.3485102 1 +0.1372908 0.3485102 1 +0.1606827 0.3485102 1 +0.1862481 0.3485102 1 +0.2140411 0.3485102 1 +0.2441142 0.3485102 1 +0.2765176 0.3485102 1 +0.3113005 0.3485102 1 +0.3485102 0.3485102 1 +0.388193 0.3485102 1 +0.4303934 0.3485102 1 +0.4751555 0.3485102 1 +0.5225216 0.3485102 1 +0.5725335 0.3485102 1 +0.6252316 0.3485102 1 +0.6806558 0.3485102 1 +0.7388448 0.3485102 1 +0.7998369 0.3485102 1 +0.8636691 0.3485102 1 +0.9303782 0.3485102 1 +1 0.3485102 1 +0 0.388193 1 +0.002418731 0.388193 1 +0.005155668 0.388193 1 +0.009080105 0.388193 1 +0.01434988 0.388193 1 +0.02107202 0.388193 1 +0.02934285 0.388193 1 +0.03925039 0.388193 1 +0.05087609 0.388193 1 +0.06429595 0.388193 1 +0.07958143 0.388193 1 +0.0968001 0.388193 1 +0.1160161 0.388193 1 +0.1372908 0.388193 1 +0.1606827 0.388193 1 +0.1862481 0.388193 1 +0.2140411 0.388193 1 +0.2441142 0.388193 1 +0.2765176 0.388193 1 +0.3113005 0.388193 1 +0.3485102 0.388193 1 +0.388193 0.388193 1 +0.4303934 0.388193 1 +0.4751555 0.388193 1 +0.5225216 0.388193 1 +0.5725335 0.388193 1 +0.6252316 0.388193 1 +0.6806558 0.388193 1 +0.7388448 0.388193 1 +0.7998369 0.388193 1 +0.8636691 0.388193 1 +0.9303782 0.388193 1 +1 0.388193 1 +0 0.4303934 1 +0.002418731 0.4303934 1 +0.005155668 0.4303934 1 +0.009080105 0.4303934 1 +0.01434988 0.4303934 1 +0.02107202 0.4303934 1 +0.02934285 0.4303934 1 +0.03925039 0.4303934 1 +0.05087609 0.4303934 1 +0.06429595 0.4303934 1 +0.07958143 0.4303934 1 +0.0968001 0.4303934 1 +0.1160161 0.4303934 1 +0.1372908 0.4303934 1 +0.1606827 0.4303934 1 +0.1862481 0.4303934 1 +0.2140411 0.4303934 1 +0.2441142 0.4303934 1 +0.2765176 0.4303934 1 +0.3113005 0.4303934 1 +0.3485102 0.4303934 1 +0.388193 0.4303934 1 +0.4303934 0.4303934 1 +0.4751555 0.4303934 1 +0.5225216 0.4303934 1 +0.5725335 0.4303934 1 +0.6252316 0.4303934 1 +0.6806558 0.4303934 1 +0.7388448 0.4303934 1 +0.7998369 0.4303934 1 +0.8636691 0.4303934 1 +0.9303782 0.4303934 1 +1 0.4303934 1 +0 0.4751555 1 +0.002418731 0.4751555 1 +0.005155668 0.4751555 1 +0.009080105 0.4751555 1 +0.01434988 0.4751555 1 +0.02107202 0.4751555 1 +0.02934285 0.4751555 1 +0.03925039 0.4751555 1 +0.05087609 0.4751555 1 +0.06429595 0.4751555 1 +0.07958143 0.4751555 1 +0.0968001 0.4751555 1 +0.1160161 0.4751555 1 +0.1372908 0.4751555 1 +0.1606827 0.4751555 1 +0.1862481 0.4751555 1 +0.2140411 0.4751555 1 +0.2441142 0.4751555 1 +0.2765176 0.4751555 1 +0.3113005 0.4751555 1 +0.3485102 0.4751555 1 +0.388193 0.4751555 1 +0.4303934 0.4751555 1 +0.4751555 0.4751555 1 +0.5225216 0.4751555 1 +0.5725335 0.4751555 1 +0.6252316 0.4751555 1 +0.6806558 0.4751555 1 +0.7388448 0.4751555 1 +0.7998369 0.4751555 1 +0.8636691 0.4751555 1 +0.9303782 0.4751555 1 +1 0.4751555 1 +0 0.5225216 1 +0.002418731 0.5225216 1 +0.005155668 0.5225216 1 +0.009080105 0.5225216 1 +0.01434988 0.5225216 1 +0.02107202 0.5225216 1 +0.02934285 0.5225216 1 +0.03925039 0.5225216 1 +0.05087609 0.5225216 1 +0.06429595 0.5225216 1 +0.07958143 0.5225216 1 +0.0968001 0.5225216 1 +0.1160161 0.5225216 1 +0.1372908 0.5225216 1 +0.1606827 0.5225216 1 +0.1862481 0.5225216 1 +0.2140411 0.5225216 1 +0.2441142 0.5225216 1 +0.2765176 0.5225216 1 +0.3113005 0.5225216 1 +0.3485102 0.5225216 1 +0.388193 0.5225216 1 +0.4303934 0.5225216 1 +0.4751555 0.5225216 1 +0.5225216 0.5225216 1 +0.5725335 0.5225216 1 +0.6252316 0.5225216 1 +0.6806558 0.5225216 1 +0.7388448 0.5225216 1 +0.7998369 0.5225216 1 +0.8636691 0.5225216 1 +0.9303782 0.5225216 1 +1 0.5225216 1 +0 0.5725335 1 +0.002418731 0.5725335 1 +0.005155668 0.5725335 1 +0.009080105 0.5725335 1 +0.01434988 0.5725335 1 +0.02107202 0.5725335 1 +0.02934285 0.5725335 1 +0.03925039 0.5725335 1 +0.05087609 0.5725335 1 +0.06429595 0.5725335 1 +0.07958143 0.5725335 1 +0.0968001 0.5725335 1 +0.1160161 0.5725335 1 +0.1372908 0.5725335 1 +0.1606827 0.5725335 1 +0.1862481 0.5725335 1 +0.2140411 0.5725335 1 +0.2441142 0.5725335 1 +0.2765176 0.5725335 1 +0.3113005 0.5725335 1 +0.3485102 0.5725335 1 +0.388193 0.5725335 1 +0.4303934 0.5725335 1 +0.4751555 0.5725335 1 +0.5225216 0.5725335 1 +0.5725335 0.5725335 1 +0.6252316 0.5725335 1 +0.6806558 0.5725335 1 +0.7388448 0.5725335 1 +0.7998369 0.5725335 1 +0.8636691 0.5725335 1 +0.9303782 0.5725335 1 +1 0.5725335 1 +0 0.6252316 1 +0.002418731 0.6252316 1 +0.005155668 0.6252316 1 +0.009080105 0.6252316 1 +0.01434988 0.6252316 1 +0.02107202 0.6252316 1 +0.02934285 0.6252316 1 +0.03925039 0.6252316 1 +0.05087609 0.6252316 1 +0.06429595 0.6252316 1 +0.07958143 0.6252316 1 +0.0968001 0.6252316 1 +0.1160161 0.6252316 1 +0.1372908 0.6252316 1 +0.1606827 0.6252316 1 +0.1862481 0.6252316 1 +0.2140411 0.6252316 1 +0.2441142 0.6252316 1 +0.2765176 0.6252316 1 +0.3113005 0.6252316 1 +0.3485102 0.6252316 1 +0.388193 0.6252316 1 +0.4303934 0.6252316 1 +0.4751555 0.6252316 1 +0.5225216 0.6252316 1 +0.5725335 0.6252316 1 +0.6252316 0.6252316 1 +0.6806558 0.6252316 1 +0.7388448 0.6252316 1 +0.7998369 0.6252316 1 +0.8636691 0.6252316 1 +0.9303782 0.6252316 1 +1 0.6252316 1 +0 0.6806558 1 +0.002418731 0.6806558 1 +0.005155668 0.6806558 1 +0.009080105 0.6806558 1 +0.01434988 0.6806558 1 +0.02107202 0.6806558 1 +0.02934285 0.6806558 1 +0.03925039 0.6806558 1 +0.05087609 0.6806558 1 +0.06429595 0.6806558 1 +0.07958143 0.6806558 1 +0.0968001 0.6806558 1 +0.1160161 0.6806558 1 +0.1372908 0.6806558 1 +0.1606827 0.6806558 1 +0.1862481 0.6806558 1 +0.2140411 0.6806558 1 +0.2441142 0.6806558 1 +0.2765176 0.6806558 1 +0.3113005 0.6806558 1 +0.3485102 0.6806558 1 +0.388193 0.6806558 1 +0.4303934 0.6806558 1 +0.4751555 0.6806558 1 +0.5225216 0.6806558 1 +0.5725335 0.6806558 1 +0.6252316 0.6806558 1 +0.6806558 0.6806558 1 +0.7388448 0.6806558 1 +0.7998369 0.6806558 1 +0.8636691 0.6806558 1 +0.9303782 0.6806558 1 +1 0.6806558 1 +0 0.7388448 1 +0.002418731 0.7388448 1 +0.005155668 0.7388448 1 +0.009080105 0.7388448 1 +0.01434988 0.7388448 1 +0.02107202 0.7388448 1 +0.02934285 0.7388448 1 +0.03925039 0.7388448 1 +0.05087609 0.7388448 1 +0.06429595 0.7388448 1 +0.07958143 0.7388448 1 +0.0968001 0.7388448 1 +0.1160161 0.7388448 1 +0.1372908 0.7388448 1 +0.1606827 0.7388448 1 +0.1862481 0.7388448 1 +0.2140411 0.7388448 1 +0.2441142 0.7388448 1 +0.2765176 0.7388448 1 +0.3113005 0.7388448 1 +0.3485102 0.7388448 1 +0.388193 0.7388448 1 +0.4303934 0.7388448 1 +0.4751555 0.7388448 1 +0.5225216 0.7388448 1 +0.5725335 0.7388448 1 +0.6252316 0.7388448 1 +0.6806558 0.7388448 1 +0.7388448 0.7388448 1 +0.7998369 0.7388448 1 +0.8636691 0.7388448 1 +0.9303782 0.7388448 1 +1 0.7388448 1 +0 0.7998369 1 +0.002418731 0.7998369 1 +0.005155668 0.7998369 1 +0.009080105 0.7998369 1 +0.01434988 0.7998369 1 +0.02107202 0.7998369 1 +0.02934285 0.7998369 1 +0.03925039 0.7998369 1 +0.05087609 0.7998369 1 +0.06429595 0.7998369 1 +0.07958143 0.7998369 1 +0.0968001 0.7998369 1 +0.1160161 0.7998369 1 +0.1372908 0.7998369 1 +0.1606827 0.7998369 1 +0.1862481 0.7998369 1 +0.2140411 0.7998369 1 +0.2441142 0.7998369 1 +0.2765176 0.7998369 1 +0.3113005 0.7998369 1 +0.3485102 0.7998369 1 +0.388193 0.7998369 1 +0.4303934 0.7998369 1 +0.4751555 0.7998369 1 +0.5225216 0.7998369 1 +0.5725335 0.7998369 1 +0.6252316 0.7998369 1 +0.6806558 0.7998369 1 +0.7388448 0.7998369 1 +0.7998369 0.7998369 1 +0.8636691 0.7998369 1 +0.9303782 0.7998369 1 +1 0.7998369 1 +0 0.8636691 1 +0.002418731 0.8636691 1 +0.005155668 0.8636691 1 +0.009080105 0.8636691 1 +0.01434988 0.8636691 1 +0.02107202 0.8636691 1 +0.02934285 0.8636691 1 +0.03925039 0.8636691 1 +0.05087609 0.8636691 1 +0.06429595 0.8636691 1 +0.07958143 0.8636691 1 +0.0968001 0.8636691 1 +0.1160161 0.8636691 1 +0.1372908 0.8636691 1 +0.1606827 0.8636691 1 +0.1862481 0.8636691 1 +0.2140411 0.8636691 1 +0.2441142 0.8636691 1 +0.2765176 0.8636691 1 +0.3113005 0.8636691 1 +0.3485102 0.8636691 1 +0.388193 0.8636691 1 +0.4303934 0.8636691 1 +0.4751555 0.8636691 1 +0.5225216 0.8636691 1 +0.5725335 0.8636691 1 +0.6252316 0.8636691 1 +0.6806558 0.8636691 1 +0.7388448 0.8636691 1 +0.7998369 0.8636691 1 +0.8636691 0.8636691 1 +0.9303782 0.8636691 1 +1 0.8636691 1 +0 0.9303782 1 +0.002418731 0.9303782 1 +0.005155668 0.9303782 1 +0.009080105 0.9303782 1 +0.01434988 0.9303782 1 +0.02107202 0.9303782 1 +0.02934285 0.9303782 1 +0.03925039 0.9303782 1 +0.05087609 0.9303782 1 +0.06429595 0.9303782 1 +0.07958143 0.9303782 1 +0.0968001 0.9303782 1 +0.1160161 0.9303782 1 +0.1372908 0.9303782 1 +0.1606827 0.9303782 1 +0.1862481 0.9303782 1 +0.2140411 0.9303782 1 +0.2441142 0.9303782 1 +0.2765176 0.9303782 1 +0.3113005 0.9303782 1 +0.3485102 0.9303782 1 +0.388193 0.9303782 1 +0.4303934 0.9303782 1 +0.4751555 0.9303782 1 +0.5225216 0.9303782 1 +0.5725335 0.9303782 1 +0.6252316 0.9303782 1 +0.6806558 0.9303782 1 +0.7388448 0.9303782 1 +0.7998369 0.9303782 1 +0.8636691 0.9303782 1 +0.9303782 0.9303782 1 +1 0.9303782 1 +0 1 1 +0.002418731 1 1 +0.005155668 1 1 +0.009080105 1 1 +0.01434988 1 1 +0.02107202 1 1 +0.02934285 1 1 +0.03925039 1 1 +0.05087609 1 1 +0.06429595 1 1 +0.07958143 1 1 +0.0968001 1 1 +0.1160161 1 1 +0.1372908 1 1 +0.1606827 1 1 +0.1862481 1 1 +0.2140411 1 1 +0.2441142 1 1 +0.2765176 1 1 +0.3113005 1 1 +0.3485102 1 1 +0.388193 1 1 +0.4303934 1 1 +0.4751555 1 1 +0.5225216 1 1 +0.5725335 1 1 +0.6252316 1 1 +0.6806558 1 1 +0.7388448 1 1 +0.7998369 1 1 +0.8636691 1 1 +0.9303782 1 1 +1 1 1 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube.meta new file mode 100644 index 0000000..4c0ef22 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Linear_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb2cdc36291ad714aaca8f440c16c51e +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube new file mode 100644 index 0000000..47ba1f8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube @@ -0,0 +1,35941 @@ +TITLE "sRGB to Unity Log r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0.092819 0.092819 0.092819 +0.1056428 0.092819 0.092819 +0.1201537 0.092819 0.092819 +0.1409607 0.092819 0.092819 +0.1678172 0.092819 0.092819 +0.1950164 0.092819 0.092819 +0.2210581 0.092819 0.092819 +0.245636 0.092819 0.092819 +0.2686816 0.092819 0.092819 +0.2902431 0.092819 0.092819 +0.3104189 0.092819 0.092819 +0.3293248 0.092819 0.092819 +0.3470774 0.092819 0.092819 +0.3637862 0.092819 0.092819 +0.3795513 0.092819 0.092819 +0.3944623 0.092819 0.092819 +0.4085988 0.092819 0.092819 +0.4220313 0.092819 0.092819 +0.4348222 0.092819 0.092819 +0.4470264 0.092819 0.092819 +0.4586928 0.092819 0.092819 +0.4698649 0.092819 0.092819 +0.4805811 0.092819 0.092819 +0.490876 0.092819 0.092819 +0.5007803 0.092819 0.092819 +0.510322 0.092819 0.092819 +0.5195258 0.092819 0.092819 +0.5284142 0.092819 0.092819 +0.5370079 0.092819 0.092819 +0.5453253 0.092819 0.092819 +0.5533834 0.092819 0.092819 +0.5611974 0.092819 0.092819 +0.5687816 0.092819 0.092819 +0.092819 0.1056428 0.092819 +0.1056428 0.1056428 0.092819 +0.1201537 0.1056428 0.092819 +0.1409607 0.1056428 0.092819 +0.1678172 0.1056428 0.092819 +0.1950164 0.1056428 0.092819 +0.2210581 0.1056428 0.092819 +0.245636 0.1056428 0.092819 +0.2686816 0.1056428 0.092819 +0.2902431 0.1056428 0.092819 +0.3104189 0.1056428 0.092819 +0.3293248 0.1056428 0.092819 +0.3470774 0.1056428 0.092819 +0.3637862 0.1056428 0.092819 +0.3795513 0.1056428 0.092819 +0.3944623 0.1056428 0.092819 +0.4085988 0.1056428 0.092819 +0.4220313 0.1056428 0.092819 +0.4348222 0.1056428 0.092819 +0.4470264 0.1056428 0.092819 +0.4586928 0.1056428 0.092819 +0.4698649 0.1056428 0.092819 +0.4805811 0.1056428 0.092819 +0.490876 0.1056428 0.092819 +0.5007803 0.1056428 0.092819 +0.510322 0.1056428 0.092819 +0.5195258 0.1056428 0.092819 +0.5284142 0.1056428 0.092819 +0.5370079 0.1056428 0.092819 +0.5453253 0.1056428 0.092819 +0.5533834 0.1056428 0.092819 +0.5611974 0.1056428 0.092819 +0.5687816 0.1056428 0.092819 +0.092819 0.1201537 0.092819 +0.1056428 0.1201537 0.092819 +0.1201537 0.1201537 0.092819 +0.1409607 0.1201537 0.092819 +0.1678172 0.1201537 0.092819 +0.1950164 0.1201537 0.092819 +0.2210581 0.1201537 0.092819 +0.245636 0.1201537 0.092819 +0.2686816 0.1201537 0.092819 +0.2902431 0.1201537 0.092819 +0.3104189 0.1201537 0.092819 +0.3293248 0.1201537 0.092819 +0.3470774 0.1201537 0.092819 +0.3637862 0.1201537 0.092819 +0.3795513 0.1201537 0.092819 +0.3944623 0.1201537 0.092819 +0.4085988 0.1201537 0.092819 +0.4220313 0.1201537 0.092819 +0.4348222 0.1201537 0.092819 +0.4470264 0.1201537 0.092819 +0.4586928 0.1201537 0.092819 +0.4698649 0.1201537 0.092819 +0.4805811 0.1201537 0.092819 +0.490876 0.1201537 0.092819 +0.5007803 0.1201537 0.092819 +0.510322 0.1201537 0.092819 +0.5195258 0.1201537 0.092819 +0.5284142 0.1201537 0.092819 +0.5370079 0.1201537 0.092819 +0.5453253 0.1201537 0.092819 +0.5533834 0.1201537 0.092819 +0.5611974 0.1201537 0.092819 +0.5687816 0.1201537 0.092819 +0.092819 0.1409607 0.092819 +0.1056428 0.1409607 0.092819 +0.1201537 0.1409607 0.092819 +0.1409607 0.1409607 0.092819 +0.1678172 0.1409607 0.092819 +0.1950164 0.1409607 0.092819 +0.2210581 0.1409607 0.092819 +0.245636 0.1409607 0.092819 +0.2686816 0.1409607 0.092819 +0.2902431 0.1409607 0.092819 +0.3104189 0.1409607 0.092819 +0.3293248 0.1409607 0.092819 +0.3470774 0.1409607 0.092819 +0.3637862 0.1409607 0.092819 +0.3795513 0.1409607 0.092819 +0.3944623 0.1409607 0.092819 +0.4085988 0.1409607 0.092819 +0.4220313 0.1409607 0.092819 +0.4348222 0.1409607 0.092819 +0.4470264 0.1409607 0.092819 +0.4586928 0.1409607 0.092819 +0.4698649 0.1409607 0.092819 +0.4805811 0.1409607 0.092819 +0.490876 0.1409607 0.092819 +0.5007803 0.1409607 0.092819 +0.510322 0.1409607 0.092819 +0.5195258 0.1409607 0.092819 +0.5284142 0.1409607 0.092819 +0.5370079 0.1409607 0.092819 +0.5453253 0.1409607 0.092819 +0.5533834 0.1409607 0.092819 +0.5611974 0.1409607 0.092819 +0.5687816 0.1409607 0.092819 +0.092819 0.1678172 0.092819 +0.1056428 0.1678172 0.092819 +0.1201537 0.1678172 0.092819 +0.1409607 0.1678172 0.092819 +0.1678172 0.1678172 0.092819 +0.1950164 0.1678172 0.092819 +0.2210581 0.1678172 0.092819 +0.245636 0.1678172 0.092819 +0.2686816 0.1678172 0.092819 +0.2902431 0.1678172 0.092819 +0.3104189 0.1678172 0.092819 +0.3293248 0.1678172 0.092819 +0.3470774 0.1678172 0.092819 +0.3637862 0.1678172 0.092819 +0.3795513 0.1678172 0.092819 +0.3944623 0.1678172 0.092819 +0.4085988 0.1678172 0.092819 +0.4220313 0.1678172 0.092819 +0.4348222 0.1678172 0.092819 +0.4470264 0.1678172 0.092819 +0.4586928 0.1678172 0.092819 +0.4698649 0.1678172 0.092819 +0.4805811 0.1678172 0.092819 +0.490876 0.1678172 0.092819 +0.5007803 0.1678172 0.092819 +0.510322 0.1678172 0.092819 +0.5195258 0.1678172 0.092819 +0.5284142 0.1678172 0.092819 +0.5370079 0.1678172 0.092819 +0.5453253 0.1678172 0.092819 +0.5533834 0.1678172 0.092819 +0.5611974 0.1678172 0.092819 +0.5687816 0.1678172 0.092819 +0.092819 0.1950164 0.092819 +0.1056428 0.1950164 0.092819 +0.1201537 0.1950164 0.092819 +0.1409607 0.1950164 0.092819 +0.1678172 0.1950164 0.092819 +0.1950164 0.1950164 0.092819 +0.2210581 0.1950164 0.092819 +0.245636 0.1950164 0.092819 +0.2686816 0.1950164 0.092819 +0.2902431 0.1950164 0.092819 +0.3104189 0.1950164 0.092819 +0.3293248 0.1950164 0.092819 +0.3470774 0.1950164 0.092819 +0.3637862 0.1950164 0.092819 +0.3795513 0.1950164 0.092819 +0.3944623 0.1950164 0.092819 +0.4085988 0.1950164 0.092819 +0.4220313 0.1950164 0.092819 +0.4348222 0.1950164 0.092819 +0.4470264 0.1950164 0.092819 +0.4586928 0.1950164 0.092819 +0.4698649 0.1950164 0.092819 +0.4805811 0.1950164 0.092819 +0.490876 0.1950164 0.092819 +0.5007803 0.1950164 0.092819 +0.510322 0.1950164 0.092819 +0.5195258 0.1950164 0.092819 +0.5284142 0.1950164 0.092819 +0.5370079 0.1950164 0.092819 +0.5453253 0.1950164 0.092819 +0.5533834 0.1950164 0.092819 +0.5611974 0.1950164 0.092819 +0.5687816 0.1950164 0.092819 +0.092819 0.2210581 0.092819 +0.1056428 0.2210581 0.092819 +0.1201537 0.2210581 0.092819 +0.1409607 0.2210581 0.092819 +0.1678172 0.2210581 0.092819 +0.1950164 0.2210581 0.092819 +0.2210581 0.2210581 0.092819 +0.245636 0.2210581 0.092819 +0.2686816 0.2210581 0.092819 +0.2902431 0.2210581 0.092819 +0.3104189 0.2210581 0.092819 +0.3293248 0.2210581 0.092819 +0.3470774 0.2210581 0.092819 +0.3637862 0.2210581 0.092819 +0.3795513 0.2210581 0.092819 +0.3944623 0.2210581 0.092819 +0.4085988 0.2210581 0.092819 +0.4220313 0.2210581 0.092819 +0.4348222 0.2210581 0.092819 +0.4470264 0.2210581 0.092819 +0.4586928 0.2210581 0.092819 +0.4698649 0.2210581 0.092819 +0.4805811 0.2210581 0.092819 +0.490876 0.2210581 0.092819 +0.5007803 0.2210581 0.092819 +0.510322 0.2210581 0.092819 +0.5195258 0.2210581 0.092819 +0.5284142 0.2210581 0.092819 +0.5370079 0.2210581 0.092819 +0.5453253 0.2210581 0.092819 +0.5533834 0.2210581 0.092819 +0.5611974 0.2210581 0.092819 +0.5687816 0.2210581 0.092819 +0.092819 0.245636 0.092819 +0.1056428 0.245636 0.092819 +0.1201537 0.245636 0.092819 +0.1409607 0.245636 0.092819 +0.1678172 0.245636 0.092819 +0.1950164 0.245636 0.092819 +0.2210581 0.245636 0.092819 +0.245636 0.245636 0.092819 +0.2686816 0.245636 0.092819 +0.2902431 0.245636 0.092819 +0.3104189 0.245636 0.092819 +0.3293248 0.245636 0.092819 +0.3470774 0.245636 0.092819 +0.3637862 0.245636 0.092819 +0.3795513 0.245636 0.092819 +0.3944623 0.245636 0.092819 +0.4085988 0.245636 0.092819 +0.4220313 0.245636 0.092819 +0.4348222 0.245636 0.092819 +0.4470264 0.245636 0.092819 +0.4586928 0.245636 0.092819 +0.4698649 0.245636 0.092819 +0.4805811 0.245636 0.092819 +0.490876 0.245636 0.092819 +0.5007803 0.245636 0.092819 +0.510322 0.245636 0.092819 +0.5195258 0.245636 0.092819 +0.5284142 0.245636 0.092819 +0.5370079 0.245636 0.092819 +0.5453253 0.245636 0.092819 +0.5533834 0.245636 0.092819 +0.5611974 0.245636 0.092819 +0.5687816 0.245636 0.092819 +0.092819 0.2686816 0.092819 +0.1056428 0.2686816 0.092819 +0.1201537 0.2686816 0.092819 +0.1409607 0.2686816 0.092819 +0.1678172 0.2686816 0.092819 +0.1950164 0.2686816 0.092819 +0.2210581 0.2686816 0.092819 +0.245636 0.2686816 0.092819 +0.2686816 0.2686816 0.092819 +0.2902431 0.2686816 0.092819 +0.3104189 0.2686816 0.092819 +0.3293248 0.2686816 0.092819 +0.3470774 0.2686816 0.092819 +0.3637862 0.2686816 0.092819 +0.3795513 0.2686816 0.092819 +0.3944623 0.2686816 0.092819 +0.4085988 0.2686816 0.092819 +0.4220313 0.2686816 0.092819 +0.4348222 0.2686816 0.092819 +0.4470264 0.2686816 0.092819 +0.4586928 0.2686816 0.092819 +0.4698649 0.2686816 0.092819 +0.4805811 0.2686816 0.092819 +0.490876 0.2686816 0.092819 +0.5007803 0.2686816 0.092819 +0.510322 0.2686816 0.092819 +0.5195258 0.2686816 0.092819 +0.5284142 0.2686816 0.092819 +0.5370079 0.2686816 0.092819 +0.5453253 0.2686816 0.092819 +0.5533834 0.2686816 0.092819 +0.5611974 0.2686816 0.092819 +0.5687816 0.2686816 0.092819 +0.092819 0.2902431 0.092819 +0.1056428 0.2902431 0.092819 +0.1201537 0.2902431 0.092819 +0.1409607 0.2902431 0.092819 +0.1678172 0.2902431 0.092819 +0.1950164 0.2902431 0.092819 +0.2210581 0.2902431 0.092819 +0.245636 0.2902431 0.092819 +0.2686816 0.2902431 0.092819 +0.2902431 0.2902431 0.092819 +0.3104189 0.2902431 0.092819 +0.3293248 0.2902431 0.092819 +0.3470774 0.2902431 0.092819 +0.3637862 0.2902431 0.092819 +0.3795513 0.2902431 0.092819 +0.3944623 0.2902431 0.092819 +0.4085988 0.2902431 0.092819 +0.4220313 0.2902431 0.092819 +0.4348222 0.2902431 0.092819 +0.4470264 0.2902431 0.092819 +0.4586928 0.2902431 0.092819 +0.4698649 0.2902431 0.092819 +0.4805811 0.2902431 0.092819 +0.490876 0.2902431 0.092819 +0.5007803 0.2902431 0.092819 +0.510322 0.2902431 0.092819 +0.5195258 0.2902431 0.092819 +0.5284142 0.2902431 0.092819 +0.5370079 0.2902431 0.092819 +0.5453253 0.2902431 0.092819 +0.5533834 0.2902431 0.092819 +0.5611974 0.2902431 0.092819 +0.5687816 0.2902431 0.092819 +0.092819 0.3104189 0.092819 +0.1056428 0.3104189 0.092819 +0.1201537 0.3104189 0.092819 +0.1409607 0.3104189 0.092819 +0.1678172 0.3104189 0.092819 +0.1950164 0.3104189 0.092819 +0.2210581 0.3104189 0.092819 +0.245636 0.3104189 0.092819 +0.2686816 0.3104189 0.092819 +0.2902431 0.3104189 0.092819 +0.3104189 0.3104189 0.092819 +0.3293248 0.3104189 0.092819 +0.3470774 0.3104189 0.092819 +0.3637862 0.3104189 0.092819 +0.3795513 0.3104189 0.092819 +0.3944623 0.3104189 0.092819 +0.4085988 0.3104189 0.092819 +0.4220313 0.3104189 0.092819 +0.4348222 0.3104189 0.092819 +0.4470264 0.3104189 0.092819 +0.4586928 0.3104189 0.092819 +0.4698649 0.3104189 0.092819 +0.4805811 0.3104189 0.092819 +0.490876 0.3104189 0.092819 +0.5007803 0.3104189 0.092819 +0.510322 0.3104189 0.092819 +0.5195258 0.3104189 0.092819 +0.5284142 0.3104189 0.092819 +0.5370079 0.3104189 0.092819 +0.5453253 0.3104189 0.092819 +0.5533834 0.3104189 0.092819 +0.5611974 0.3104189 0.092819 +0.5687816 0.3104189 0.092819 +0.092819 0.3293248 0.092819 +0.1056428 0.3293248 0.092819 +0.1201537 0.3293248 0.092819 +0.1409607 0.3293248 0.092819 +0.1678172 0.3293248 0.092819 +0.1950164 0.3293248 0.092819 +0.2210581 0.3293248 0.092819 +0.245636 0.3293248 0.092819 +0.2686816 0.3293248 0.092819 +0.2902431 0.3293248 0.092819 +0.3104189 0.3293248 0.092819 +0.3293248 0.3293248 0.092819 +0.3470774 0.3293248 0.092819 +0.3637862 0.3293248 0.092819 +0.3795513 0.3293248 0.092819 +0.3944623 0.3293248 0.092819 +0.4085988 0.3293248 0.092819 +0.4220313 0.3293248 0.092819 +0.4348222 0.3293248 0.092819 +0.4470264 0.3293248 0.092819 +0.4586928 0.3293248 0.092819 +0.4698649 0.3293248 0.092819 +0.4805811 0.3293248 0.092819 +0.490876 0.3293248 0.092819 +0.5007803 0.3293248 0.092819 +0.510322 0.3293248 0.092819 +0.5195258 0.3293248 0.092819 +0.5284142 0.3293248 0.092819 +0.5370079 0.3293248 0.092819 +0.5453253 0.3293248 0.092819 +0.5533834 0.3293248 0.092819 +0.5611974 0.3293248 0.092819 +0.5687816 0.3293248 0.092819 +0.092819 0.3470774 0.092819 +0.1056428 0.3470774 0.092819 +0.1201537 0.3470774 0.092819 +0.1409607 0.3470774 0.092819 +0.1678172 0.3470774 0.092819 +0.1950164 0.3470774 0.092819 +0.2210581 0.3470774 0.092819 +0.245636 0.3470774 0.092819 +0.2686816 0.3470774 0.092819 +0.2902431 0.3470774 0.092819 +0.3104189 0.3470774 0.092819 +0.3293248 0.3470774 0.092819 +0.3470774 0.3470774 0.092819 +0.3637862 0.3470774 0.092819 +0.3795513 0.3470774 0.092819 +0.3944623 0.3470774 0.092819 +0.4085988 0.3470774 0.092819 +0.4220313 0.3470774 0.092819 +0.4348222 0.3470774 0.092819 +0.4470264 0.3470774 0.092819 +0.4586928 0.3470774 0.092819 +0.4698649 0.3470774 0.092819 +0.4805811 0.3470774 0.092819 +0.490876 0.3470774 0.092819 +0.5007803 0.3470774 0.092819 +0.510322 0.3470774 0.092819 +0.5195258 0.3470774 0.092819 +0.5284142 0.3470774 0.092819 +0.5370079 0.3470774 0.092819 +0.5453253 0.3470774 0.092819 +0.5533834 0.3470774 0.092819 +0.5611974 0.3470774 0.092819 +0.5687816 0.3470774 0.092819 +0.092819 0.3637862 0.092819 +0.1056428 0.3637862 0.092819 +0.1201537 0.3637862 0.092819 +0.1409607 0.3637862 0.092819 +0.1678172 0.3637862 0.092819 +0.1950164 0.3637862 0.092819 +0.2210581 0.3637862 0.092819 +0.245636 0.3637862 0.092819 +0.2686816 0.3637862 0.092819 +0.2902431 0.3637862 0.092819 +0.3104189 0.3637862 0.092819 +0.3293248 0.3637862 0.092819 +0.3470774 0.3637862 0.092819 +0.3637862 0.3637862 0.092819 +0.3795513 0.3637862 0.092819 +0.3944623 0.3637862 0.092819 +0.4085988 0.3637862 0.092819 +0.4220313 0.3637862 0.092819 +0.4348222 0.3637862 0.092819 +0.4470264 0.3637862 0.092819 +0.4586928 0.3637862 0.092819 +0.4698649 0.3637862 0.092819 +0.4805811 0.3637862 0.092819 +0.490876 0.3637862 0.092819 +0.5007803 0.3637862 0.092819 +0.510322 0.3637862 0.092819 +0.5195258 0.3637862 0.092819 +0.5284142 0.3637862 0.092819 +0.5370079 0.3637862 0.092819 +0.5453253 0.3637862 0.092819 +0.5533834 0.3637862 0.092819 +0.5611974 0.3637862 0.092819 +0.5687816 0.3637862 0.092819 +0.092819 0.3795513 0.092819 +0.1056428 0.3795513 0.092819 +0.1201537 0.3795513 0.092819 +0.1409607 0.3795513 0.092819 +0.1678172 0.3795513 0.092819 +0.1950164 0.3795513 0.092819 +0.2210581 0.3795513 0.092819 +0.245636 0.3795513 0.092819 +0.2686816 0.3795513 0.092819 +0.2902431 0.3795513 0.092819 +0.3104189 0.3795513 0.092819 +0.3293248 0.3795513 0.092819 +0.3470774 0.3795513 0.092819 +0.3637862 0.3795513 0.092819 +0.3795513 0.3795513 0.092819 +0.3944623 0.3795513 0.092819 +0.4085988 0.3795513 0.092819 +0.4220313 0.3795513 0.092819 +0.4348222 0.3795513 0.092819 +0.4470264 0.3795513 0.092819 +0.4586928 0.3795513 0.092819 +0.4698649 0.3795513 0.092819 +0.4805811 0.3795513 0.092819 +0.490876 0.3795513 0.092819 +0.5007803 0.3795513 0.092819 +0.510322 0.3795513 0.092819 +0.5195258 0.3795513 0.092819 +0.5284142 0.3795513 0.092819 +0.5370079 0.3795513 0.092819 +0.5453253 0.3795513 0.092819 +0.5533834 0.3795513 0.092819 +0.5611974 0.3795513 0.092819 +0.5687816 0.3795513 0.092819 +0.092819 0.3944623 0.092819 +0.1056428 0.3944623 0.092819 +0.1201537 0.3944623 0.092819 +0.1409607 0.3944623 0.092819 +0.1678172 0.3944623 0.092819 +0.1950164 0.3944623 0.092819 +0.2210581 0.3944623 0.092819 +0.245636 0.3944623 0.092819 +0.2686816 0.3944623 0.092819 +0.2902431 0.3944623 0.092819 +0.3104189 0.3944623 0.092819 +0.3293248 0.3944623 0.092819 +0.3470774 0.3944623 0.092819 +0.3637862 0.3944623 0.092819 +0.3795513 0.3944623 0.092819 +0.3944623 0.3944623 0.092819 +0.4085988 0.3944623 0.092819 +0.4220313 0.3944623 0.092819 +0.4348222 0.3944623 0.092819 +0.4470264 0.3944623 0.092819 +0.4586928 0.3944623 0.092819 +0.4698649 0.3944623 0.092819 +0.4805811 0.3944623 0.092819 +0.490876 0.3944623 0.092819 +0.5007803 0.3944623 0.092819 +0.510322 0.3944623 0.092819 +0.5195258 0.3944623 0.092819 +0.5284142 0.3944623 0.092819 +0.5370079 0.3944623 0.092819 +0.5453253 0.3944623 0.092819 +0.5533834 0.3944623 0.092819 +0.5611974 0.3944623 0.092819 +0.5687816 0.3944623 0.092819 +0.092819 0.4085988 0.092819 +0.1056428 0.4085988 0.092819 +0.1201537 0.4085988 0.092819 +0.1409607 0.4085988 0.092819 +0.1678172 0.4085988 0.092819 +0.1950164 0.4085988 0.092819 +0.2210581 0.4085988 0.092819 +0.245636 0.4085988 0.092819 +0.2686816 0.4085988 0.092819 +0.2902431 0.4085988 0.092819 +0.3104189 0.4085988 0.092819 +0.3293248 0.4085988 0.092819 +0.3470774 0.4085988 0.092819 +0.3637862 0.4085988 0.092819 +0.3795513 0.4085988 0.092819 +0.3944623 0.4085988 0.092819 +0.4085988 0.4085988 0.092819 +0.4220313 0.4085988 0.092819 +0.4348222 0.4085988 0.092819 +0.4470264 0.4085988 0.092819 +0.4586928 0.4085988 0.092819 +0.4698649 0.4085988 0.092819 +0.4805811 0.4085988 0.092819 +0.490876 0.4085988 0.092819 +0.5007803 0.4085988 0.092819 +0.510322 0.4085988 0.092819 +0.5195258 0.4085988 0.092819 +0.5284142 0.4085988 0.092819 +0.5370079 0.4085988 0.092819 +0.5453253 0.4085988 0.092819 +0.5533834 0.4085988 0.092819 +0.5611974 0.4085988 0.092819 +0.5687816 0.4085988 0.092819 +0.092819 0.4220313 0.092819 +0.1056428 0.4220313 0.092819 +0.1201537 0.4220313 0.092819 +0.1409607 0.4220313 0.092819 +0.1678172 0.4220313 0.092819 +0.1950164 0.4220313 0.092819 +0.2210581 0.4220313 0.092819 +0.245636 0.4220313 0.092819 +0.2686816 0.4220313 0.092819 +0.2902431 0.4220313 0.092819 +0.3104189 0.4220313 0.092819 +0.3293248 0.4220313 0.092819 +0.3470774 0.4220313 0.092819 +0.3637862 0.4220313 0.092819 +0.3795513 0.4220313 0.092819 +0.3944623 0.4220313 0.092819 +0.4085988 0.4220313 0.092819 +0.4220313 0.4220313 0.092819 +0.4348222 0.4220313 0.092819 +0.4470264 0.4220313 0.092819 +0.4586928 0.4220313 0.092819 +0.4698649 0.4220313 0.092819 +0.4805811 0.4220313 0.092819 +0.490876 0.4220313 0.092819 +0.5007803 0.4220313 0.092819 +0.510322 0.4220313 0.092819 +0.5195258 0.4220313 0.092819 +0.5284142 0.4220313 0.092819 +0.5370079 0.4220313 0.092819 +0.5453253 0.4220313 0.092819 +0.5533834 0.4220313 0.092819 +0.5611974 0.4220313 0.092819 +0.5687816 0.4220313 0.092819 +0.092819 0.4348222 0.092819 +0.1056428 0.4348222 0.092819 +0.1201537 0.4348222 0.092819 +0.1409607 0.4348222 0.092819 +0.1678172 0.4348222 0.092819 +0.1950164 0.4348222 0.092819 +0.2210581 0.4348222 0.092819 +0.245636 0.4348222 0.092819 +0.2686816 0.4348222 0.092819 +0.2902431 0.4348222 0.092819 +0.3104189 0.4348222 0.092819 +0.3293248 0.4348222 0.092819 +0.3470774 0.4348222 0.092819 +0.3637862 0.4348222 0.092819 +0.3795513 0.4348222 0.092819 +0.3944623 0.4348222 0.092819 +0.4085988 0.4348222 0.092819 +0.4220313 0.4348222 0.092819 +0.4348222 0.4348222 0.092819 +0.4470264 0.4348222 0.092819 +0.4586928 0.4348222 0.092819 +0.4698649 0.4348222 0.092819 +0.4805811 0.4348222 0.092819 +0.490876 0.4348222 0.092819 +0.5007803 0.4348222 0.092819 +0.510322 0.4348222 0.092819 +0.5195258 0.4348222 0.092819 +0.5284142 0.4348222 0.092819 +0.5370079 0.4348222 0.092819 +0.5453253 0.4348222 0.092819 +0.5533834 0.4348222 0.092819 +0.5611974 0.4348222 0.092819 +0.5687816 0.4348222 0.092819 +0.092819 0.4470264 0.092819 +0.1056428 0.4470264 0.092819 +0.1201537 0.4470264 0.092819 +0.1409607 0.4470264 0.092819 +0.1678172 0.4470264 0.092819 +0.1950164 0.4470264 0.092819 +0.2210581 0.4470264 0.092819 +0.245636 0.4470264 0.092819 +0.2686816 0.4470264 0.092819 +0.2902431 0.4470264 0.092819 +0.3104189 0.4470264 0.092819 +0.3293248 0.4470264 0.092819 +0.3470774 0.4470264 0.092819 +0.3637862 0.4470264 0.092819 +0.3795513 0.4470264 0.092819 +0.3944623 0.4470264 0.092819 +0.4085988 0.4470264 0.092819 +0.4220313 0.4470264 0.092819 +0.4348222 0.4470264 0.092819 +0.4470264 0.4470264 0.092819 +0.4586928 0.4470264 0.092819 +0.4698649 0.4470264 0.092819 +0.4805811 0.4470264 0.092819 +0.490876 0.4470264 0.092819 +0.5007803 0.4470264 0.092819 +0.510322 0.4470264 0.092819 +0.5195258 0.4470264 0.092819 +0.5284142 0.4470264 0.092819 +0.5370079 0.4470264 0.092819 +0.5453253 0.4470264 0.092819 +0.5533834 0.4470264 0.092819 +0.5611974 0.4470264 0.092819 +0.5687816 0.4470264 0.092819 +0.092819 0.4586928 0.092819 +0.1056428 0.4586928 0.092819 +0.1201537 0.4586928 0.092819 +0.1409607 0.4586928 0.092819 +0.1678172 0.4586928 0.092819 +0.1950164 0.4586928 0.092819 +0.2210581 0.4586928 0.092819 +0.245636 0.4586928 0.092819 +0.2686816 0.4586928 0.092819 +0.2902431 0.4586928 0.092819 +0.3104189 0.4586928 0.092819 +0.3293248 0.4586928 0.092819 +0.3470774 0.4586928 0.092819 +0.3637862 0.4586928 0.092819 +0.3795513 0.4586928 0.092819 +0.3944623 0.4586928 0.092819 +0.4085988 0.4586928 0.092819 +0.4220313 0.4586928 0.092819 +0.4348222 0.4586928 0.092819 +0.4470264 0.4586928 0.092819 +0.4586928 0.4586928 0.092819 +0.4698649 0.4586928 0.092819 +0.4805811 0.4586928 0.092819 +0.490876 0.4586928 0.092819 +0.5007803 0.4586928 0.092819 +0.510322 0.4586928 0.092819 +0.5195258 0.4586928 0.092819 +0.5284142 0.4586928 0.092819 +0.5370079 0.4586928 0.092819 +0.5453253 0.4586928 0.092819 +0.5533834 0.4586928 0.092819 +0.5611974 0.4586928 0.092819 +0.5687816 0.4586928 0.092819 +0.092819 0.4698649 0.092819 +0.1056428 0.4698649 0.092819 +0.1201537 0.4698649 0.092819 +0.1409607 0.4698649 0.092819 +0.1678172 0.4698649 0.092819 +0.1950164 0.4698649 0.092819 +0.2210581 0.4698649 0.092819 +0.245636 0.4698649 0.092819 +0.2686816 0.4698649 0.092819 +0.2902431 0.4698649 0.092819 +0.3104189 0.4698649 0.092819 +0.3293248 0.4698649 0.092819 +0.3470774 0.4698649 0.092819 +0.3637862 0.4698649 0.092819 +0.3795513 0.4698649 0.092819 +0.3944623 0.4698649 0.092819 +0.4085988 0.4698649 0.092819 +0.4220313 0.4698649 0.092819 +0.4348222 0.4698649 0.092819 +0.4470264 0.4698649 0.092819 +0.4586928 0.4698649 0.092819 +0.4698649 0.4698649 0.092819 +0.4805811 0.4698649 0.092819 +0.490876 0.4698649 0.092819 +0.5007803 0.4698649 0.092819 +0.510322 0.4698649 0.092819 +0.5195258 0.4698649 0.092819 +0.5284142 0.4698649 0.092819 +0.5370079 0.4698649 0.092819 +0.5453253 0.4698649 0.092819 +0.5533834 0.4698649 0.092819 +0.5611974 0.4698649 0.092819 +0.5687816 0.4698649 0.092819 +0.092819 0.4805811 0.092819 +0.1056428 0.4805811 0.092819 +0.1201537 0.4805811 0.092819 +0.1409607 0.4805811 0.092819 +0.1678172 0.4805811 0.092819 +0.1950164 0.4805811 0.092819 +0.2210581 0.4805811 0.092819 +0.245636 0.4805811 0.092819 +0.2686816 0.4805811 0.092819 +0.2902431 0.4805811 0.092819 +0.3104189 0.4805811 0.092819 +0.3293248 0.4805811 0.092819 +0.3470774 0.4805811 0.092819 +0.3637862 0.4805811 0.092819 +0.3795513 0.4805811 0.092819 +0.3944623 0.4805811 0.092819 +0.4085988 0.4805811 0.092819 +0.4220313 0.4805811 0.092819 +0.4348222 0.4805811 0.092819 +0.4470264 0.4805811 0.092819 +0.4586928 0.4805811 0.092819 +0.4698649 0.4805811 0.092819 +0.4805811 0.4805811 0.092819 +0.490876 0.4805811 0.092819 +0.5007803 0.4805811 0.092819 +0.510322 0.4805811 0.092819 +0.5195258 0.4805811 0.092819 +0.5284142 0.4805811 0.092819 +0.5370079 0.4805811 0.092819 +0.5453253 0.4805811 0.092819 +0.5533834 0.4805811 0.092819 +0.5611974 0.4805811 0.092819 +0.5687816 0.4805811 0.092819 +0.092819 0.490876 0.092819 +0.1056428 0.490876 0.092819 +0.1201537 0.490876 0.092819 +0.1409607 0.490876 0.092819 +0.1678172 0.490876 0.092819 +0.1950164 0.490876 0.092819 +0.2210581 0.490876 0.092819 +0.245636 0.490876 0.092819 +0.2686816 0.490876 0.092819 +0.2902431 0.490876 0.092819 +0.3104189 0.490876 0.092819 +0.3293248 0.490876 0.092819 +0.3470774 0.490876 0.092819 +0.3637862 0.490876 0.092819 +0.3795513 0.490876 0.092819 +0.3944623 0.490876 0.092819 +0.4085988 0.490876 0.092819 +0.4220313 0.490876 0.092819 +0.4348222 0.490876 0.092819 +0.4470264 0.490876 0.092819 +0.4586928 0.490876 0.092819 +0.4698649 0.490876 0.092819 +0.4805811 0.490876 0.092819 +0.490876 0.490876 0.092819 +0.5007803 0.490876 0.092819 +0.510322 0.490876 0.092819 +0.5195258 0.490876 0.092819 +0.5284142 0.490876 0.092819 +0.5370079 0.490876 0.092819 +0.5453253 0.490876 0.092819 +0.5533834 0.490876 0.092819 +0.5611974 0.490876 0.092819 +0.5687816 0.490876 0.092819 +0.092819 0.5007803 0.092819 +0.1056428 0.5007803 0.092819 +0.1201537 0.5007803 0.092819 +0.1409607 0.5007803 0.092819 +0.1678172 0.5007803 0.092819 +0.1950164 0.5007803 0.092819 +0.2210581 0.5007803 0.092819 +0.245636 0.5007803 0.092819 +0.2686816 0.5007803 0.092819 +0.2902431 0.5007803 0.092819 +0.3104189 0.5007803 0.092819 +0.3293248 0.5007803 0.092819 +0.3470774 0.5007803 0.092819 +0.3637862 0.5007803 0.092819 +0.3795513 0.5007803 0.092819 +0.3944623 0.5007803 0.092819 +0.4085988 0.5007803 0.092819 +0.4220313 0.5007803 0.092819 +0.4348222 0.5007803 0.092819 +0.4470264 0.5007803 0.092819 +0.4586928 0.5007803 0.092819 +0.4698649 0.5007803 0.092819 +0.4805811 0.5007803 0.092819 +0.490876 0.5007803 0.092819 +0.5007803 0.5007803 0.092819 +0.510322 0.5007803 0.092819 +0.5195258 0.5007803 0.092819 +0.5284142 0.5007803 0.092819 +0.5370079 0.5007803 0.092819 +0.5453253 0.5007803 0.092819 +0.5533834 0.5007803 0.092819 +0.5611974 0.5007803 0.092819 +0.5687816 0.5007803 0.092819 +0.092819 0.510322 0.092819 +0.1056428 0.510322 0.092819 +0.1201537 0.510322 0.092819 +0.1409607 0.510322 0.092819 +0.1678172 0.510322 0.092819 +0.1950164 0.510322 0.092819 +0.2210581 0.510322 0.092819 +0.245636 0.510322 0.092819 +0.2686816 0.510322 0.092819 +0.2902431 0.510322 0.092819 +0.3104189 0.510322 0.092819 +0.3293248 0.510322 0.092819 +0.3470774 0.510322 0.092819 +0.3637862 0.510322 0.092819 +0.3795513 0.510322 0.092819 +0.3944623 0.510322 0.092819 +0.4085988 0.510322 0.092819 +0.4220313 0.510322 0.092819 +0.4348222 0.510322 0.092819 +0.4470264 0.510322 0.092819 +0.4586928 0.510322 0.092819 +0.4698649 0.510322 0.092819 +0.4805811 0.510322 0.092819 +0.490876 0.510322 0.092819 +0.5007803 0.510322 0.092819 +0.510322 0.510322 0.092819 +0.5195258 0.510322 0.092819 +0.5284142 0.510322 0.092819 +0.5370079 0.510322 0.092819 +0.5453253 0.510322 0.092819 +0.5533834 0.510322 0.092819 +0.5611974 0.510322 0.092819 +0.5687816 0.510322 0.092819 +0.092819 0.5195258 0.092819 +0.1056428 0.5195258 0.092819 +0.1201537 0.5195258 0.092819 +0.1409607 0.5195258 0.092819 +0.1678172 0.5195258 0.092819 +0.1950164 0.5195258 0.092819 +0.2210581 0.5195258 0.092819 +0.245636 0.5195258 0.092819 +0.2686816 0.5195258 0.092819 +0.2902431 0.5195258 0.092819 +0.3104189 0.5195258 0.092819 +0.3293248 0.5195258 0.092819 +0.3470774 0.5195258 0.092819 +0.3637862 0.5195258 0.092819 +0.3795513 0.5195258 0.092819 +0.3944623 0.5195258 0.092819 +0.4085988 0.5195258 0.092819 +0.4220313 0.5195258 0.092819 +0.4348222 0.5195258 0.092819 +0.4470264 0.5195258 0.092819 +0.4586928 0.5195258 0.092819 +0.4698649 0.5195258 0.092819 +0.4805811 0.5195258 0.092819 +0.490876 0.5195258 0.092819 +0.5007803 0.5195258 0.092819 +0.510322 0.5195258 0.092819 +0.5195258 0.5195258 0.092819 +0.5284142 0.5195258 0.092819 +0.5370079 0.5195258 0.092819 +0.5453253 0.5195258 0.092819 +0.5533834 0.5195258 0.092819 +0.5611974 0.5195258 0.092819 +0.5687816 0.5195258 0.092819 +0.092819 0.5284142 0.092819 +0.1056428 0.5284142 0.092819 +0.1201537 0.5284142 0.092819 +0.1409607 0.5284142 0.092819 +0.1678172 0.5284142 0.092819 +0.1950164 0.5284142 0.092819 +0.2210581 0.5284142 0.092819 +0.245636 0.5284142 0.092819 +0.2686816 0.5284142 0.092819 +0.2902431 0.5284142 0.092819 +0.3104189 0.5284142 0.092819 +0.3293248 0.5284142 0.092819 +0.3470774 0.5284142 0.092819 +0.3637862 0.5284142 0.092819 +0.3795513 0.5284142 0.092819 +0.3944623 0.5284142 0.092819 +0.4085988 0.5284142 0.092819 +0.4220313 0.5284142 0.092819 +0.4348222 0.5284142 0.092819 +0.4470264 0.5284142 0.092819 +0.4586928 0.5284142 0.092819 +0.4698649 0.5284142 0.092819 +0.4805811 0.5284142 0.092819 +0.490876 0.5284142 0.092819 +0.5007803 0.5284142 0.092819 +0.510322 0.5284142 0.092819 +0.5195258 0.5284142 0.092819 +0.5284142 0.5284142 0.092819 +0.5370079 0.5284142 0.092819 +0.5453253 0.5284142 0.092819 +0.5533834 0.5284142 0.092819 +0.5611974 0.5284142 0.092819 +0.5687816 0.5284142 0.092819 +0.092819 0.5370079 0.092819 +0.1056428 0.5370079 0.092819 +0.1201537 0.5370079 0.092819 +0.1409607 0.5370079 0.092819 +0.1678172 0.5370079 0.092819 +0.1950164 0.5370079 0.092819 +0.2210581 0.5370079 0.092819 +0.245636 0.5370079 0.092819 +0.2686816 0.5370079 0.092819 +0.2902431 0.5370079 0.092819 +0.3104189 0.5370079 0.092819 +0.3293248 0.5370079 0.092819 +0.3470774 0.5370079 0.092819 +0.3637862 0.5370079 0.092819 +0.3795513 0.5370079 0.092819 +0.3944623 0.5370079 0.092819 +0.4085988 0.5370079 0.092819 +0.4220313 0.5370079 0.092819 +0.4348222 0.5370079 0.092819 +0.4470264 0.5370079 0.092819 +0.4586928 0.5370079 0.092819 +0.4698649 0.5370079 0.092819 +0.4805811 0.5370079 0.092819 +0.490876 0.5370079 0.092819 +0.5007803 0.5370079 0.092819 +0.510322 0.5370079 0.092819 +0.5195258 0.5370079 0.092819 +0.5284142 0.5370079 0.092819 +0.5370079 0.5370079 0.092819 +0.5453253 0.5370079 0.092819 +0.5533834 0.5370079 0.092819 +0.5611974 0.5370079 0.092819 +0.5687816 0.5370079 0.092819 +0.092819 0.5453253 0.092819 +0.1056428 0.5453253 0.092819 +0.1201537 0.5453253 0.092819 +0.1409607 0.5453253 0.092819 +0.1678172 0.5453253 0.092819 +0.1950164 0.5453253 0.092819 +0.2210581 0.5453253 0.092819 +0.245636 0.5453253 0.092819 +0.2686816 0.5453253 0.092819 +0.2902431 0.5453253 0.092819 +0.3104189 0.5453253 0.092819 +0.3293248 0.5453253 0.092819 +0.3470774 0.5453253 0.092819 +0.3637862 0.5453253 0.092819 +0.3795513 0.5453253 0.092819 +0.3944623 0.5453253 0.092819 +0.4085988 0.5453253 0.092819 +0.4220313 0.5453253 0.092819 +0.4348222 0.5453253 0.092819 +0.4470264 0.5453253 0.092819 +0.4586928 0.5453253 0.092819 +0.4698649 0.5453253 0.092819 +0.4805811 0.5453253 0.092819 +0.490876 0.5453253 0.092819 +0.5007803 0.5453253 0.092819 +0.510322 0.5453253 0.092819 +0.5195258 0.5453253 0.092819 +0.5284142 0.5453253 0.092819 +0.5370079 0.5453253 0.092819 +0.5453253 0.5453253 0.092819 +0.5533834 0.5453253 0.092819 +0.5611974 0.5453253 0.092819 +0.5687816 0.5453253 0.092819 +0.092819 0.5533834 0.092819 +0.1056428 0.5533834 0.092819 +0.1201537 0.5533834 0.092819 +0.1409607 0.5533834 0.092819 +0.1678172 0.5533834 0.092819 +0.1950164 0.5533834 0.092819 +0.2210581 0.5533834 0.092819 +0.245636 0.5533834 0.092819 +0.2686816 0.5533834 0.092819 +0.2902431 0.5533834 0.092819 +0.3104189 0.5533834 0.092819 +0.3293248 0.5533834 0.092819 +0.3470774 0.5533834 0.092819 +0.3637862 0.5533834 0.092819 +0.3795513 0.5533834 0.092819 +0.3944623 0.5533834 0.092819 +0.4085988 0.5533834 0.092819 +0.4220313 0.5533834 0.092819 +0.4348222 0.5533834 0.092819 +0.4470264 0.5533834 0.092819 +0.4586928 0.5533834 0.092819 +0.4698649 0.5533834 0.092819 +0.4805811 0.5533834 0.092819 +0.490876 0.5533834 0.092819 +0.5007803 0.5533834 0.092819 +0.510322 0.5533834 0.092819 +0.5195258 0.5533834 0.092819 +0.5284142 0.5533834 0.092819 +0.5370079 0.5533834 0.092819 +0.5453253 0.5533834 0.092819 +0.5533834 0.5533834 0.092819 +0.5611974 0.5533834 0.092819 +0.5687816 0.5533834 0.092819 +0.092819 0.5611974 0.092819 +0.1056428 0.5611974 0.092819 +0.1201537 0.5611974 0.092819 +0.1409607 0.5611974 0.092819 +0.1678172 0.5611974 0.092819 +0.1950164 0.5611974 0.092819 +0.2210581 0.5611974 0.092819 +0.245636 0.5611974 0.092819 +0.2686816 0.5611974 0.092819 +0.2902431 0.5611974 0.092819 +0.3104189 0.5611974 0.092819 +0.3293248 0.5611974 0.092819 +0.3470774 0.5611974 0.092819 +0.3637862 0.5611974 0.092819 +0.3795513 0.5611974 0.092819 +0.3944623 0.5611974 0.092819 +0.4085988 0.5611974 0.092819 +0.4220313 0.5611974 0.092819 +0.4348222 0.5611974 0.092819 +0.4470264 0.5611974 0.092819 +0.4586928 0.5611974 0.092819 +0.4698649 0.5611974 0.092819 +0.4805811 0.5611974 0.092819 +0.490876 0.5611974 0.092819 +0.5007803 0.5611974 0.092819 +0.510322 0.5611974 0.092819 +0.5195258 0.5611974 0.092819 +0.5284142 0.5611974 0.092819 +0.5370079 0.5611974 0.092819 +0.5453253 0.5611974 0.092819 +0.5533834 0.5611974 0.092819 +0.5611974 0.5611974 0.092819 +0.5687816 0.5611974 0.092819 +0.092819 0.5687816 0.092819 +0.1056428 0.5687816 0.092819 +0.1201537 0.5687816 0.092819 +0.1409607 0.5687816 0.092819 +0.1678172 0.5687816 0.092819 +0.1950164 0.5687816 0.092819 +0.2210581 0.5687816 0.092819 +0.245636 0.5687816 0.092819 +0.2686816 0.5687816 0.092819 +0.2902431 0.5687816 0.092819 +0.3104189 0.5687816 0.092819 +0.3293248 0.5687816 0.092819 +0.3470774 0.5687816 0.092819 +0.3637862 0.5687816 0.092819 +0.3795513 0.5687816 0.092819 +0.3944623 0.5687816 0.092819 +0.4085988 0.5687816 0.092819 +0.4220313 0.5687816 0.092819 +0.4348222 0.5687816 0.092819 +0.4470264 0.5687816 0.092819 +0.4586928 0.5687816 0.092819 +0.4698649 0.5687816 0.092819 +0.4805811 0.5687816 0.092819 +0.490876 0.5687816 0.092819 +0.5007803 0.5687816 0.092819 +0.510322 0.5687816 0.092819 +0.5195258 0.5687816 0.092819 +0.5284142 0.5687816 0.092819 +0.5370079 0.5687816 0.092819 +0.5453253 0.5687816 0.092819 +0.5533834 0.5687816 0.092819 +0.5611974 0.5687816 0.092819 +0.5687816 0.5687816 0.092819 +0.092819 0.092819 0.1056428 +0.1056428 0.092819 0.1056428 +0.1201537 0.092819 0.1056428 +0.1409607 0.092819 0.1056428 +0.1678172 0.092819 0.1056428 +0.1950164 0.092819 0.1056428 +0.2210581 0.092819 0.1056428 +0.245636 0.092819 0.1056428 +0.2686816 0.092819 0.1056428 +0.2902431 0.092819 0.1056428 +0.3104189 0.092819 0.1056428 +0.3293248 0.092819 0.1056428 +0.3470774 0.092819 0.1056428 +0.3637862 0.092819 0.1056428 +0.3795513 0.092819 0.1056428 +0.3944623 0.092819 0.1056428 +0.4085988 0.092819 0.1056428 +0.4220313 0.092819 0.1056428 +0.4348222 0.092819 0.1056428 +0.4470264 0.092819 0.1056428 +0.4586928 0.092819 0.1056428 +0.4698649 0.092819 0.1056428 +0.4805811 0.092819 0.1056428 +0.490876 0.092819 0.1056428 +0.5007803 0.092819 0.1056428 +0.510322 0.092819 0.1056428 +0.5195258 0.092819 0.1056428 +0.5284142 0.092819 0.1056428 +0.5370079 0.092819 0.1056428 +0.5453253 0.092819 0.1056428 +0.5533834 0.092819 0.1056428 +0.5611974 0.092819 0.1056428 +0.5687816 0.092819 0.1056428 +0.092819 0.1056428 0.1056428 +0.1056428 0.1056428 0.1056428 +0.1201537 0.1056428 0.1056428 +0.1409607 0.1056428 0.1056428 +0.1678172 0.1056428 0.1056428 +0.1950164 0.1056428 0.1056428 +0.2210581 0.1056428 0.1056428 +0.245636 0.1056428 0.1056428 +0.2686816 0.1056428 0.1056428 +0.2902431 0.1056428 0.1056428 +0.3104189 0.1056428 0.1056428 +0.3293248 0.1056428 0.1056428 +0.3470774 0.1056428 0.1056428 +0.3637862 0.1056428 0.1056428 +0.3795513 0.1056428 0.1056428 +0.3944623 0.1056428 0.1056428 +0.4085988 0.1056428 0.1056428 +0.4220313 0.1056428 0.1056428 +0.4348222 0.1056428 0.1056428 +0.4470264 0.1056428 0.1056428 +0.4586928 0.1056428 0.1056428 +0.4698649 0.1056428 0.1056428 +0.4805811 0.1056428 0.1056428 +0.490876 0.1056428 0.1056428 +0.5007803 0.1056428 0.1056428 +0.510322 0.1056428 0.1056428 +0.5195258 0.1056428 0.1056428 +0.5284142 0.1056428 0.1056428 +0.5370079 0.1056428 0.1056428 +0.5453253 0.1056428 0.1056428 +0.5533834 0.1056428 0.1056428 +0.5611974 0.1056428 0.1056428 +0.5687816 0.1056428 0.1056428 +0.092819 0.1201537 0.1056428 +0.1056428 0.1201537 0.1056428 +0.1201537 0.1201537 0.1056428 +0.1409607 0.1201537 0.1056428 +0.1678172 0.1201537 0.1056428 +0.1950164 0.1201537 0.1056428 +0.2210581 0.1201537 0.1056428 +0.245636 0.1201537 0.1056428 +0.2686816 0.1201537 0.1056428 +0.2902431 0.1201537 0.1056428 +0.3104189 0.1201537 0.1056428 +0.3293248 0.1201537 0.1056428 +0.3470774 0.1201537 0.1056428 +0.3637862 0.1201537 0.1056428 +0.3795513 0.1201537 0.1056428 +0.3944623 0.1201537 0.1056428 +0.4085988 0.1201537 0.1056428 +0.4220313 0.1201537 0.1056428 +0.4348222 0.1201537 0.1056428 +0.4470264 0.1201537 0.1056428 +0.4586928 0.1201537 0.1056428 +0.4698649 0.1201537 0.1056428 +0.4805811 0.1201537 0.1056428 +0.490876 0.1201537 0.1056428 +0.5007803 0.1201537 0.1056428 +0.510322 0.1201537 0.1056428 +0.5195258 0.1201537 0.1056428 +0.5284142 0.1201537 0.1056428 +0.5370079 0.1201537 0.1056428 +0.5453253 0.1201537 0.1056428 +0.5533834 0.1201537 0.1056428 +0.5611974 0.1201537 0.1056428 +0.5687816 0.1201537 0.1056428 +0.092819 0.1409607 0.1056428 +0.1056428 0.1409607 0.1056428 +0.1201537 0.1409607 0.1056428 +0.1409607 0.1409607 0.1056428 +0.1678172 0.1409607 0.1056428 +0.1950164 0.1409607 0.1056428 +0.2210581 0.1409607 0.1056428 +0.245636 0.1409607 0.1056428 +0.2686816 0.1409607 0.1056428 +0.2902431 0.1409607 0.1056428 +0.3104189 0.1409607 0.1056428 +0.3293248 0.1409607 0.1056428 +0.3470774 0.1409607 0.1056428 +0.3637862 0.1409607 0.1056428 +0.3795513 0.1409607 0.1056428 +0.3944623 0.1409607 0.1056428 +0.4085988 0.1409607 0.1056428 +0.4220313 0.1409607 0.1056428 +0.4348222 0.1409607 0.1056428 +0.4470264 0.1409607 0.1056428 +0.4586928 0.1409607 0.1056428 +0.4698649 0.1409607 0.1056428 +0.4805811 0.1409607 0.1056428 +0.490876 0.1409607 0.1056428 +0.5007803 0.1409607 0.1056428 +0.510322 0.1409607 0.1056428 +0.5195258 0.1409607 0.1056428 +0.5284142 0.1409607 0.1056428 +0.5370079 0.1409607 0.1056428 +0.5453253 0.1409607 0.1056428 +0.5533834 0.1409607 0.1056428 +0.5611974 0.1409607 0.1056428 +0.5687816 0.1409607 0.1056428 +0.092819 0.1678172 0.1056428 +0.1056428 0.1678172 0.1056428 +0.1201537 0.1678172 0.1056428 +0.1409607 0.1678172 0.1056428 +0.1678172 0.1678172 0.1056428 +0.1950164 0.1678172 0.1056428 +0.2210581 0.1678172 0.1056428 +0.245636 0.1678172 0.1056428 +0.2686816 0.1678172 0.1056428 +0.2902431 0.1678172 0.1056428 +0.3104189 0.1678172 0.1056428 +0.3293248 0.1678172 0.1056428 +0.3470774 0.1678172 0.1056428 +0.3637862 0.1678172 0.1056428 +0.3795513 0.1678172 0.1056428 +0.3944623 0.1678172 0.1056428 +0.4085988 0.1678172 0.1056428 +0.4220313 0.1678172 0.1056428 +0.4348222 0.1678172 0.1056428 +0.4470264 0.1678172 0.1056428 +0.4586928 0.1678172 0.1056428 +0.4698649 0.1678172 0.1056428 +0.4805811 0.1678172 0.1056428 +0.490876 0.1678172 0.1056428 +0.5007803 0.1678172 0.1056428 +0.510322 0.1678172 0.1056428 +0.5195258 0.1678172 0.1056428 +0.5284142 0.1678172 0.1056428 +0.5370079 0.1678172 0.1056428 +0.5453253 0.1678172 0.1056428 +0.5533834 0.1678172 0.1056428 +0.5611974 0.1678172 0.1056428 +0.5687816 0.1678172 0.1056428 +0.092819 0.1950164 0.1056428 +0.1056428 0.1950164 0.1056428 +0.1201537 0.1950164 0.1056428 +0.1409607 0.1950164 0.1056428 +0.1678172 0.1950164 0.1056428 +0.1950164 0.1950164 0.1056428 +0.2210581 0.1950164 0.1056428 +0.245636 0.1950164 0.1056428 +0.2686816 0.1950164 0.1056428 +0.2902431 0.1950164 0.1056428 +0.3104189 0.1950164 0.1056428 +0.3293248 0.1950164 0.1056428 +0.3470774 0.1950164 0.1056428 +0.3637862 0.1950164 0.1056428 +0.3795513 0.1950164 0.1056428 +0.3944623 0.1950164 0.1056428 +0.4085988 0.1950164 0.1056428 +0.4220313 0.1950164 0.1056428 +0.4348222 0.1950164 0.1056428 +0.4470264 0.1950164 0.1056428 +0.4586928 0.1950164 0.1056428 +0.4698649 0.1950164 0.1056428 +0.4805811 0.1950164 0.1056428 +0.490876 0.1950164 0.1056428 +0.5007803 0.1950164 0.1056428 +0.510322 0.1950164 0.1056428 +0.5195258 0.1950164 0.1056428 +0.5284142 0.1950164 0.1056428 +0.5370079 0.1950164 0.1056428 +0.5453253 0.1950164 0.1056428 +0.5533834 0.1950164 0.1056428 +0.5611974 0.1950164 0.1056428 +0.5687816 0.1950164 0.1056428 +0.092819 0.2210581 0.1056428 +0.1056428 0.2210581 0.1056428 +0.1201537 0.2210581 0.1056428 +0.1409607 0.2210581 0.1056428 +0.1678172 0.2210581 0.1056428 +0.1950164 0.2210581 0.1056428 +0.2210581 0.2210581 0.1056428 +0.245636 0.2210581 0.1056428 +0.2686816 0.2210581 0.1056428 +0.2902431 0.2210581 0.1056428 +0.3104189 0.2210581 0.1056428 +0.3293248 0.2210581 0.1056428 +0.3470774 0.2210581 0.1056428 +0.3637862 0.2210581 0.1056428 +0.3795513 0.2210581 0.1056428 +0.3944623 0.2210581 0.1056428 +0.4085988 0.2210581 0.1056428 +0.4220313 0.2210581 0.1056428 +0.4348222 0.2210581 0.1056428 +0.4470264 0.2210581 0.1056428 +0.4586928 0.2210581 0.1056428 +0.4698649 0.2210581 0.1056428 +0.4805811 0.2210581 0.1056428 +0.490876 0.2210581 0.1056428 +0.5007803 0.2210581 0.1056428 +0.510322 0.2210581 0.1056428 +0.5195258 0.2210581 0.1056428 +0.5284142 0.2210581 0.1056428 +0.5370079 0.2210581 0.1056428 +0.5453253 0.2210581 0.1056428 +0.5533834 0.2210581 0.1056428 +0.5611974 0.2210581 0.1056428 +0.5687816 0.2210581 0.1056428 +0.092819 0.245636 0.1056428 +0.1056428 0.245636 0.1056428 +0.1201537 0.245636 0.1056428 +0.1409607 0.245636 0.1056428 +0.1678172 0.245636 0.1056428 +0.1950164 0.245636 0.1056428 +0.2210581 0.245636 0.1056428 +0.245636 0.245636 0.1056428 +0.2686816 0.245636 0.1056428 +0.2902431 0.245636 0.1056428 +0.3104189 0.245636 0.1056428 +0.3293248 0.245636 0.1056428 +0.3470774 0.245636 0.1056428 +0.3637862 0.245636 0.1056428 +0.3795513 0.245636 0.1056428 +0.3944623 0.245636 0.1056428 +0.4085988 0.245636 0.1056428 +0.4220313 0.245636 0.1056428 +0.4348222 0.245636 0.1056428 +0.4470264 0.245636 0.1056428 +0.4586928 0.245636 0.1056428 +0.4698649 0.245636 0.1056428 +0.4805811 0.245636 0.1056428 +0.490876 0.245636 0.1056428 +0.5007803 0.245636 0.1056428 +0.510322 0.245636 0.1056428 +0.5195258 0.245636 0.1056428 +0.5284142 0.245636 0.1056428 +0.5370079 0.245636 0.1056428 +0.5453253 0.245636 0.1056428 +0.5533834 0.245636 0.1056428 +0.5611974 0.245636 0.1056428 +0.5687816 0.245636 0.1056428 +0.092819 0.2686816 0.1056428 +0.1056428 0.2686816 0.1056428 +0.1201537 0.2686816 0.1056428 +0.1409607 0.2686816 0.1056428 +0.1678172 0.2686816 0.1056428 +0.1950164 0.2686816 0.1056428 +0.2210581 0.2686816 0.1056428 +0.245636 0.2686816 0.1056428 +0.2686816 0.2686816 0.1056428 +0.2902431 0.2686816 0.1056428 +0.3104189 0.2686816 0.1056428 +0.3293248 0.2686816 0.1056428 +0.3470774 0.2686816 0.1056428 +0.3637862 0.2686816 0.1056428 +0.3795513 0.2686816 0.1056428 +0.3944623 0.2686816 0.1056428 +0.4085988 0.2686816 0.1056428 +0.4220313 0.2686816 0.1056428 +0.4348222 0.2686816 0.1056428 +0.4470264 0.2686816 0.1056428 +0.4586928 0.2686816 0.1056428 +0.4698649 0.2686816 0.1056428 +0.4805811 0.2686816 0.1056428 +0.490876 0.2686816 0.1056428 +0.5007803 0.2686816 0.1056428 +0.510322 0.2686816 0.1056428 +0.5195258 0.2686816 0.1056428 +0.5284142 0.2686816 0.1056428 +0.5370079 0.2686816 0.1056428 +0.5453253 0.2686816 0.1056428 +0.5533834 0.2686816 0.1056428 +0.5611974 0.2686816 0.1056428 +0.5687816 0.2686816 0.1056428 +0.092819 0.2902431 0.1056428 +0.1056428 0.2902431 0.1056428 +0.1201537 0.2902431 0.1056428 +0.1409607 0.2902431 0.1056428 +0.1678172 0.2902431 0.1056428 +0.1950164 0.2902431 0.1056428 +0.2210581 0.2902431 0.1056428 +0.245636 0.2902431 0.1056428 +0.2686816 0.2902431 0.1056428 +0.2902431 0.2902431 0.1056428 +0.3104189 0.2902431 0.1056428 +0.3293248 0.2902431 0.1056428 +0.3470774 0.2902431 0.1056428 +0.3637862 0.2902431 0.1056428 +0.3795513 0.2902431 0.1056428 +0.3944623 0.2902431 0.1056428 +0.4085988 0.2902431 0.1056428 +0.4220313 0.2902431 0.1056428 +0.4348222 0.2902431 0.1056428 +0.4470264 0.2902431 0.1056428 +0.4586928 0.2902431 0.1056428 +0.4698649 0.2902431 0.1056428 +0.4805811 0.2902431 0.1056428 +0.490876 0.2902431 0.1056428 +0.5007803 0.2902431 0.1056428 +0.510322 0.2902431 0.1056428 +0.5195258 0.2902431 0.1056428 +0.5284142 0.2902431 0.1056428 +0.5370079 0.2902431 0.1056428 +0.5453253 0.2902431 0.1056428 +0.5533834 0.2902431 0.1056428 +0.5611974 0.2902431 0.1056428 +0.5687816 0.2902431 0.1056428 +0.092819 0.3104189 0.1056428 +0.1056428 0.3104189 0.1056428 +0.1201537 0.3104189 0.1056428 +0.1409607 0.3104189 0.1056428 +0.1678172 0.3104189 0.1056428 +0.1950164 0.3104189 0.1056428 +0.2210581 0.3104189 0.1056428 +0.245636 0.3104189 0.1056428 +0.2686816 0.3104189 0.1056428 +0.2902431 0.3104189 0.1056428 +0.3104189 0.3104189 0.1056428 +0.3293248 0.3104189 0.1056428 +0.3470774 0.3104189 0.1056428 +0.3637862 0.3104189 0.1056428 +0.3795513 0.3104189 0.1056428 +0.3944623 0.3104189 0.1056428 +0.4085988 0.3104189 0.1056428 +0.4220313 0.3104189 0.1056428 +0.4348222 0.3104189 0.1056428 +0.4470264 0.3104189 0.1056428 +0.4586928 0.3104189 0.1056428 +0.4698649 0.3104189 0.1056428 +0.4805811 0.3104189 0.1056428 +0.490876 0.3104189 0.1056428 +0.5007803 0.3104189 0.1056428 +0.510322 0.3104189 0.1056428 +0.5195258 0.3104189 0.1056428 +0.5284142 0.3104189 0.1056428 +0.5370079 0.3104189 0.1056428 +0.5453253 0.3104189 0.1056428 +0.5533834 0.3104189 0.1056428 +0.5611974 0.3104189 0.1056428 +0.5687816 0.3104189 0.1056428 +0.092819 0.3293248 0.1056428 +0.1056428 0.3293248 0.1056428 +0.1201537 0.3293248 0.1056428 +0.1409607 0.3293248 0.1056428 +0.1678172 0.3293248 0.1056428 +0.1950164 0.3293248 0.1056428 +0.2210581 0.3293248 0.1056428 +0.245636 0.3293248 0.1056428 +0.2686816 0.3293248 0.1056428 +0.2902431 0.3293248 0.1056428 +0.3104189 0.3293248 0.1056428 +0.3293248 0.3293248 0.1056428 +0.3470774 0.3293248 0.1056428 +0.3637862 0.3293248 0.1056428 +0.3795513 0.3293248 0.1056428 +0.3944623 0.3293248 0.1056428 +0.4085988 0.3293248 0.1056428 +0.4220313 0.3293248 0.1056428 +0.4348222 0.3293248 0.1056428 +0.4470264 0.3293248 0.1056428 +0.4586928 0.3293248 0.1056428 +0.4698649 0.3293248 0.1056428 +0.4805811 0.3293248 0.1056428 +0.490876 0.3293248 0.1056428 +0.5007803 0.3293248 0.1056428 +0.510322 0.3293248 0.1056428 +0.5195258 0.3293248 0.1056428 +0.5284142 0.3293248 0.1056428 +0.5370079 0.3293248 0.1056428 +0.5453253 0.3293248 0.1056428 +0.5533834 0.3293248 0.1056428 +0.5611974 0.3293248 0.1056428 +0.5687816 0.3293248 0.1056428 +0.092819 0.3470774 0.1056428 +0.1056428 0.3470774 0.1056428 +0.1201537 0.3470774 0.1056428 +0.1409607 0.3470774 0.1056428 +0.1678172 0.3470774 0.1056428 +0.1950164 0.3470774 0.1056428 +0.2210581 0.3470774 0.1056428 +0.245636 0.3470774 0.1056428 +0.2686816 0.3470774 0.1056428 +0.2902431 0.3470774 0.1056428 +0.3104189 0.3470774 0.1056428 +0.3293248 0.3470774 0.1056428 +0.3470774 0.3470774 0.1056428 +0.3637862 0.3470774 0.1056428 +0.3795513 0.3470774 0.1056428 +0.3944623 0.3470774 0.1056428 +0.4085988 0.3470774 0.1056428 +0.4220313 0.3470774 0.1056428 +0.4348222 0.3470774 0.1056428 +0.4470264 0.3470774 0.1056428 +0.4586928 0.3470774 0.1056428 +0.4698649 0.3470774 0.1056428 +0.4805811 0.3470774 0.1056428 +0.490876 0.3470774 0.1056428 +0.5007803 0.3470774 0.1056428 +0.510322 0.3470774 0.1056428 +0.5195258 0.3470774 0.1056428 +0.5284142 0.3470774 0.1056428 +0.5370079 0.3470774 0.1056428 +0.5453253 0.3470774 0.1056428 +0.5533834 0.3470774 0.1056428 +0.5611974 0.3470774 0.1056428 +0.5687816 0.3470774 0.1056428 +0.092819 0.3637862 0.1056428 +0.1056428 0.3637862 0.1056428 +0.1201537 0.3637862 0.1056428 +0.1409607 0.3637862 0.1056428 +0.1678172 0.3637862 0.1056428 +0.1950164 0.3637862 0.1056428 +0.2210581 0.3637862 0.1056428 +0.245636 0.3637862 0.1056428 +0.2686816 0.3637862 0.1056428 +0.2902431 0.3637862 0.1056428 +0.3104189 0.3637862 0.1056428 +0.3293248 0.3637862 0.1056428 +0.3470774 0.3637862 0.1056428 +0.3637862 0.3637862 0.1056428 +0.3795513 0.3637862 0.1056428 +0.3944623 0.3637862 0.1056428 +0.4085988 0.3637862 0.1056428 +0.4220313 0.3637862 0.1056428 +0.4348222 0.3637862 0.1056428 +0.4470264 0.3637862 0.1056428 +0.4586928 0.3637862 0.1056428 +0.4698649 0.3637862 0.1056428 +0.4805811 0.3637862 0.1056428 +0.490876 0.3637862 0.1056428 +0.5007803 0.3637862 0.1056428 +0.510322 0.3637862 0.1056428 +0.5195258 0.3637862 0.1056428 +0.5284142 0.3637862 0.1056428 +0.5370079 0.3637862 0.1056428 +0.5453253 0.3637862 0.1056428 +0.5533834 0.3637862 0.1056428 +0.5611974 0.3637862 0.1056428 +0.5687816 0.3637862 0.1056428 +0.092819 0.3795513 0.1056428 +0.1056428 0.3795513 0.1056428 +0.1201537 0.3795513 0.1056428 +0.1409607 0.3795513 0.1056428 +0.1678172 0.3795513 0.1056428 +0.1950164 0.3795513 0.1056428 +0.2210581 0.3795513 0.1056428 +0.245636 0.3795513 0.1056428 +0.2686816 0.3795513 0.1056428 +0.2902431 0.3795513 0.1056428 +0.3104189 0.3795513 0.1056428 +0.3293248 0.3795513 0.1056428 +0.3470774 0.3795513 0.1056428 +0.3637862 0.3795513 0.1056428 +0.3795513 0.3795513 0.1056428 +0.3944623 0.3795513 0.1056428 +0.4085988 0.3795513 0.1056428 +0.4220313 0.3795513 0.1056428 +0.4348222 0.3795513 0.1056428 +0.4470264 0.3795513 0.1056428 +0.4586928 0.3795513 0.1056428 +0.4698649 0.3795513 0.1056428 +0.4805811 0.3795513 0.1056428 +0.490876 0.3795513 0.1056428 +0.5007803 0.3795513 0.1056428 +0.510322 0.3795513 0.1056428 +0.5195258 0.3795513 0.1056428 +0.5284142 0.3795513 0.1056428 +0.5370079 0.3795513 0.1056428 +0.5453253 0.3795513 0.1056428 +0.5533834 0.3795513 0.1056428 +0.5611974 0.3795513 0.1056428 +0.5687816 0.3795513 0.1056428 +0.092819 0.3944623 0.1056428 +0.1056428 0.3944623 0.1056428 +0.1201537 0.3944623 0.1056428 +0.1409607 0.3944623 0.1056428 +0.1678172 0.3944623 0.1056428 +0.1950164 0.3944623 0.1056428 +0.2210581 0.3944623 0.1056428 +0.245636 0.3944623 0.1056428 +0.2686816 0.3944623 0.1056428 +0.2902431 0.3944623 0.1056428 +0.3104189 0.3944623 0.1056428 +0.3293248 0.3944623 0.1056428 +0.3470774 0.3944623 0.1056428 +0.3637862 0.3944623 0.1056428 +0.3795513 0.3944623 0.1056428 +0.3944623 0.3944623 0.1056428 +0.4085988 0.3944623 0.1056428 +0.4220313 0.3944623 0.1056428 +0.4348222 0.3944623 0.1056428 +0.4470264 0.3944623 0.1056428 +0.4586928 0.3944623 0.1056428 +0.4698649 0.3944623 0.1056428 +0.4805811 0.3944623 0.1056428 +0.490876 0.3944623 0.1056428 +0.5007803 0.3944623 0.1056428 +0.510322 0.3944623 0.1056428 +0.5195258 0.3944623 0.1056428 +0.5284142 0.3944623 0.1056428 +0.5370079 0.3944623 0.1056428 +0.5453253 0.3944623 0.1056428 +0.5533834 0.3944623 0.1056428 +0.5611974 0.3944623 0.1056428 +0.5687816 0.3944623 0.1056428 +0.092819 0.4085988 0.1056428 +0.1056428 0.4085988 0.1056428 +0.1201537 0.4085988 0.1056428 +0.1409607 0.4085988 0.1056428 +0.1678172 0.4085988 0.1056428 +0.1950164 0.4085988 0.1056428 +0.2210581 0.4085988 0.1056428 +0.245636 0.4085988 0.1056428 +0.2686816 0.4085988 0.1056428 +0.2902431 0.4085988 0.1056428 +0.3104189 0.4085988 0.1056428 +0.3293248 0.4085988 0.1056428 +0.3470774 0.4085988 0.1056428 +0.3637862 0.4085988 0.1056428 +0.3795513 0.4085988 0.1056428 +0.3944623 0.4085988 0.1056428 +0.4085988 0.4085988 0.1056428 +0.4220313 0.4085988 0.1056428 +0.4348222 0.4085988 0.1056428 +0.4470264 0.4085988 0.1056428 +0.4586928 0.4085988 0.1056428 +0.4698649 0.4085988 0.1056428 +0.4805811 0.4085988 0.1056428 +0.490876 0.4085988 0.1056428 +0.5007803 0.4085988 0.1056428 +0.510322 0.4085988 0.1056428 +0.5195258 0.4085988 0.1056428 +0.5284142 0.4085988 0.1056428 +0.5370079 0.4085988 0.1056428 +0.5453253 0.4085988 0.1056428 +0.5533834 0.4085988 0.1056428 +0.5611974 0.4085988 0.1056428 +0.5687816 0.4085988 0.1056428 +0.092819 0.4220313 0.1056428 +0.1056428 0.4220313 0.1056428 +0.1201537 0.4220313 0.1056428 +0.1409607 0.4220313 0.1056428 +0.1678172 0.4220313 0.1056428 +0.1950164 0.4220313 0.1056428 +0.2210581 0.4220313 0.1056428 +0.245636 0.4220313 0.1056428 +0.2686816 0.4220313 0.1056428 +0.2902431 0.4220313 0.1056428 +0.3104189 0.4220313 0.1056428 +0.3293248 0.4220313 0.1056428 +0.3470774 0.4220313 0.1056428 +0.3637862 0.4220313 0.1056428 +0.3795513 0.4220313 0.1056428 +0.3944623 0.4220313 0.1056428 +0.4085988 0.4220313 0.1056428 +0.4220313 0.4220313 0.1056428 +0.4348222 0.4220313 0.1056428 +0.4470264 0.4220313 0.1056428 +0.4586928 0.4220313 0.1056428 +0.4698649 0.4220313 0.1056428 +0.4805811 0.4220313 0.1056428 +0.490876 0.4220313 0.1056428 +0.5007803 0.4220313 0.1056428 +0.510322 0.4220313 0.1056428 +0.5195258 0.4220313 0.1056428 +0.5284142 0.4220313 0.1056428 +0.5370079 0.4220313 0.1056428 +0.5453253 0.4220313 0.1056428 +0.5533834 0.4220313 0.1056428 +0.5611974 0.4220313 0.1056428 +0.5687816 0.4220313 0.1056428 +0.092819 0.4348222 0.1056428 +0.1056428 0.4348222 0.1056428 +0.1201537 0.4348222 0.1056428 +0.1409607 0.4348222 0.1056428 +0.1678172 0.4348222 0.1056428 +0.1950164 0.4348222 0.1056428 +0.2210581 0.4348222 0.1056428 +0.245636 0.4348222 0.1056428 +0.2686816 0.4348222 0.1056428 +0.2902431 0.4348222 0.1056428 +0.3104189 0.4348222 0.1056428 +0.3293248 0.4348222 0.1056428 +0.3470774 0.4348222 0.1056428 +0.3637862 0.4348222 0.1056428 +0.3795513 0.4348222 0.1056428 +0.3944623 0.4348222 0.1056428 +0.4085988 0.4348222 0.1056428 +0.4220313 0.4348222 0.1056428 +0.4348222 0.4348222 0.1056428 +0.4470264 0.4348222 0.1056428 +0.4586928 0.4348222 0.1056428 +0.4698649 0.4348222 0.1056428 +0.4805811 0.4348222 0.1056428 +0.490876 0.4348222 0.1056428 +0.5007803 0.4348222 0.1056428 +0.510322 0.4348222 0.1056428 +0.5195258 0.4348222 0.1056428 +0.5284142 0.4348222 0.1056428 +0.5370079 0.4348222 0.1056428 +0.5453253 0.4348222 0.1056428 +0.5533834 0.4348222 0.1056428 +0.5611974 0.4348222 0.1056428 +0.5687816 0.4348222 0.1056428 +0.092819 0.4470264 0.1056428 +0.1056428 0.4470264 0.1056428 +0.1201537 0.4470264 0.1056428 +0.1409607 0.4470264 0.1056428 +0.1678172 0.4470264 0.1056428 +0.1950164 0.4470264 0.1056428 +0.2210581 0.4470264 0.1056428 +0.245636 0.4470264 0.1056428 +0.2686816 0.4470264 0.1056428 +0.2902431 0.4470264 0.1056428 +0.3104189 0.4470264 0.1056428 +0.3293248 0.4470264 0.1056428 +0.3470774 0.4470264 0.1056428 +0.3637862 0.4470264 0.1056428 +0.3795513 0.4470264 0.1056428 +0.3944623 0.4470264 0.1056428 +0.4085988 0.4470264 0.1056428 +0.4220313 0.4470264 0.1056428 +0.4348222 0.4470264 0.1056428 +0.4470264 0.4470264 0.1056428 +0.4586928 0.4470264 0.1056428 +0.4698649 0.4470264 0.1056428 +0.4805811 0.4470264 0.1056428 +0.490876 0.4470264 0.1056428 +0.5007803 0.4470264 0.1056428 +0.510322 0.4470264 0.1056428 +0.5195258 0.4470264 0.1056428 +0.5284142 0.4470264 0.1056428 +0.5370079 0.4470264 0.1056428 +0.5453253 0.4470264 0.1056428 +0.5533834 0.4470264 0.1056428 +0.5611974 0.4470264 0.1056428 +0.5687816 0.4470264 0.1056428 +0.092819 0.4586928 0.1056428 +0.1056428 0.4586928 0.1056428 +0.1201537 0.4586928 0.1056428 +0.1409607 0.4586928 0.1056428 +0.1678172 0.4586928 0.1056428 +0.1950164 0.4586928 0.1056428 +0.2210581 0.4586928 0.1056428 +0.245636 0.4586928 0.1056428 +0.2686816 0.4586928 0.1056428 +0.2902431 0.4586928 0.1056428 +0.3104189 0.4586928 0.1056428 +0.3293248 0.4586928 0.1056428 +0.3470774 0.4586928 0.1056428 +0.3637862 0.4586928 0.1056428 +0.3795513 0.4586928 0.1056428 +0.3944623 0.4586928 0.1056428 +0.4085988 0.4586928 0.1056428 +0.4220313 0.4586928 0.1056428 +0.4348222 0.4586928 0.1056428 +0.4470264 0.4586928 0.1056428 +0.4586928 0.4586928 0.1056428 +0.4698649 0.4586928 0.1056428 +0.4805811 0.4586928 0.1056428 +0.490876 0.4586928 0.1056428 +0.5007803 0.4586928 0.1056428 +0.510322 0.4586928 0.1056428 +0.5195258 0.4586928 0.1056428 +0.5284142 0.4586928 0.1056428 +0.5370079 0.4586928 0.1056428 +0.5453253 0.4586928 0.1056428 +0.5533834 0.4586928 0.1056428 +0.5611974 0.4586928 0.1056428 +0.5687816 0.4586928 0.1056428 +0.092819 0.4698649 0.1056428 +0.1056428 0.4698649 0.1056428 +0.1201537 0.4698649 0.1056428 +0.1409607 0.4698649 0.1056428 +0.1678172 0.4698649 0.1056428 +0.1950164 0.4698649 0.1056428 +0.2210581 0.4698649 0.1056428 +0.245636 0.4698649 0.1056428 +0.2686816 0.4698649 0.1056428 +0.2902431 0.4698649 0.1056428 +0.3104189 0.4698649 0.1056428 +0.3293248 0.4698649 0.1056428 +0.3470774 0.4698649 0.1056428 +0.3637862 0.4698649 0.1056428 +0.3795513 0.4698649 0.1056428 +0.3944623 0.4698649 0.1056428 +0.4085988 0.4698649 0.1056428 +0.4220313 0.4698649 0.1056428 +0.4348222 0.4698649 0.1056428 +0.4470264 0.4698649 0.1056428 +0.4586928 0.4698649 0.1056428 +0.4698649 0.4698649 0.1056428 +0.4805811 0.4698649 0.1056428 +0.490876 0.4698649 0.1056428 +0.5007803 0.4698649 0.1056428 +0.510322 0.4698649 0.1056428 +0.5195258 0.4698649 0.1056428 +0.5284142 0.4698649 0.1056428 +0.5370079 0.4698649 0.1056428 +0.5453253 0.4698649 0.1056428 +0.5533834 0.4698649 0.1056428 +0.5611974 0.4698649 0.1056428 +0.5687816 0.4698649 0.1056428 +0.092819 0.4805811 0.1056428 +0.1056428 0.4805811 0.1056428 +0.1201537 0.4805811 0.1056428 +0.1409607 0.4805811 0.1056428 +0.1678172 0.4805811 0.1056428 +0.1950164 0.4805811 0.1056428 +0.2210581 0.4805811 0.1056428 +0.245636 0.4805811 0.1056428 +0.2686816 0.4805811 0.1056428 +0.2902431 0.4805811 0.1056428 +0.3104189 0.4805811 0.1056428 +0.3293248 0.4805811 0.1056428 +0.3470774 0.4805811 0.1056428 +0.3637862 0.4805811 0.1056428 +0.3795513 0.4805811 0.1056428 +0.3944623 0.4805811 0.1056428 +0.4085988 0.4805811 0.1056428 +0.4220313 0.4805811 0.1056428 +0.4348222 0.4805811 0.1056428 +0.4470264 0.4805811 0.1056428 +0.4586928 0.4805811 0.1056428 +0.4698649 0.4805811 0.1056428 +0.4805811 0.4805811 0.1056428 +0.490876 0.4805811 0.1056428 +0.5007803 0.4805811 0.1056428 +0.510322 0.4805811 0.1056428 +0.5195258 0.4805811 0.1056428 +0.5284142 0.4805811 0.1056428 +0.5370079 0.4805811 0.1056428 +0.5453253 0.4805811 0.1056428 +0.5533834 0.4805811 0.1056428 +0.5611974 0.4805811 0.1056428 +0.5687816 0.4805811 0.1056428 +0.092819 0.490876 0.1056428 +0.1056428 0.490876 0.1056428 +0.1201537 0.490876 0.1056428 +0.1409607 0.490876 0.1056428 +0.1678172 0.490876 0.1056428 +0.1950164 0.490876 0.1056428 +0.2210581 0.490876 0.1056428 +0.245636 0.490876 0.1056428 +0.2686816 0.490876 0.1056428 +0.2902431 0.490876 0.1056428 +0.3104189 0.490876 0.1056428 +0.3293248 0.490876 0.1056428 +0.3470774 0.490876 0.1056428 +0.3637862 0.490876 0.1056428 +0.3795513 0.490876 0.1056428 +0.3944623 0.490876 0.1056428 +0.4085988 0.490876 0.1056428 +0.4220313 0.490876 0.1056428 +0.4348222 0.490876 0.1056428 +0.4470264 0.490876 0.1056428 +0.4586928 0.490876 0.1056428 +0.4698649 0.490876 0.1056428 +0.4805811 0.490876 0.1056428 +0.490876 0.490876 0.1056428 +0.5007803 0.490876 0.1056428 +0.510322 0.490876 0.1056428 +0.5195258 0.490876 0.1056428 +0.5284142 0.490876 0.1056428 +0.5370079 0.490876 0.1056428 +0.5453253 0.490876 0.1056428 +0.5533834 0.490876 0.1056428 +0.5611974 0.490876 0.1056428 +0.5687816 0.490876 0.1056428 +0.092819 0.5007803 0.1056428 +0.1056428 0.5007803 0.1056428 +0.1201537 0.5007803 0.1056428 +0.1409607 0.5007803 0.1056428 +0.1678172 0.5007803 0.1056428 +0.1950164 0.5007803 0.1056428 +0.2210581 0.5007803 0.1056428 +0.245636 0.5007803 0.1056428 +0.2686816 0.5007803 0.1056428 +0.2902431 0.5007803 0.1056428 +0.3104189 0.5007803 0.1056428 +0.3293248 0.5007803 0.1056428 +0.3470774 0.5007803 0.1056428 +0.3637862 0.5007803 0.1056428 +0.3795513 0.5007803 0.1056428 +0.3944623 0.5007803 0.1056428 +0.4085988 0.5007803 0.1056428 +0.4220313 0.5007803 0.1056428 +0.4348222 0.5007803 0.1056428 +0.4470264 0.5007803 0.1056428 +0.4586928 0.5007803 0.1056428 +0.4698649 0.5007803 0.1056428 +0.4805811 0.5007803 0.1056428 +0.490876 0.5007803 0.1056428 +0.5007803 0.5007803 0.1056428 +0.510322 0.5007803 0.1056428 +0.5195258 0.5007803 0.1056428 +0.5284142 0.5007803 0.1056428 +0.5370079 0.5007803 0.1056428 +0.5453253 0.5007803 0.1056428 +0.5533834 0.5007803 0.1056428 +0.5611974 0.5007803 0.1056428 +0.5687816 0.5007803 0.1056428 +0.092819 0.510322 0.1056428 +0.1056428 0.510322 0.1056428 +0.1201537 0.510322 0.1056428 +0.1409607 0.510322 0.1056428 +0.1678172 0.510322 0.1056428 +0.1950164 0.510322 0.1056428 +0.2210581 0.510322 0.1056428 +0.245636 0.510322 0.1056428 +0.2686816 0.510322 0.1056428 +0.2902431 0.510322 0.1056428 +0.3104189 0.510322 0.1056428 +0.3293248 0.510322 0.1056428 +0.3470774 0.510322 0.1056428 +0.3637862 0.510322 0.1056428 +0.3795513 0.510322 0.1056428 +0.3944623 0.510322 0.1056428 +0.4085988 0.510322 0.1056428 +0.4220313 0.510322 0.1056428 +0.4348222 0.510322 0.1056428 +0.4470264 0.510322 0.1056428 +0.4586928 0.510322 0.1056428 +0.4698649 0.510322 0.1056428 +0.4805811 0.510322 0.1056428 +0.490876 0.510322 0.1056428 +0.5007803 0.510322 0.1056428 +0.510322 0.510322 0.1056428 +0.5195258 0.510322 0.1056428 +0.5284142 0.510322 0.1056428 +0.5370079 0.510322 0.1056428 +0.5453253 0.510322 0.1056428 +0.5533834 0.510322 0.1056428 +0.5611974 0.510322 0.1056428 +0.5687816 0.510322 0.1056428 +0.092819 0.5195258 0.1056428 +0.1056428 0.5195258 0.1056428 +0.1201537 0.5195258 0.1056428 +0.1409607 0.5195258 0.1056428 +0.1678172 0.5195258 0.1056428 +0.1950164 0.5195258 0.1056428 +0.2210581 0.5195258 0.1056428 +0.245636 0.5195258 0.1056428 +0.2686816 0.5195258 0.1056428 +0.2902431 0.5195258 0.1056428 +0.3104189 0.5195258 0.1056428 +0.3293248 0.5195258 0.1056428 +0.3470774 0.5195258 0.1056428 +0.3637862 0.5195258 0.1056428 +0.3795513 0.5195258 0.1056428 +0.3944623 0.5195258 0.1056428 +0.4085988 0.5195258 0.1056428 +0.4220313 0.5195258 0.1056428 +0.4348222 0.5195258 0.1056428 +0.4470264 0.5195258 0.1056428 +0.4586928 0.5195258 0.1056428 +0.4698649 0.5195258 0.1056428 +0.4805811 0.5195258 0.1056428 +0.490876 0.5195258 0.1056428 +0.5007803 0.5195258 0.1056428 +0.510322 0.5195258 0.1056428 +0.5195258 0.5195258 0.1056428 +0.5284142 0.5195258 0.1056428 +0.5370079 0.5195258 0.1056428 +0.5453253 0.5195258 0.1056428 +0.5533834 0.5195258 0.1056428 +0.5611974 0.5195258 0.1056428 +0.5687816 0.5195258 0.1056428 +0.092819 0.5284142 0.1056428 +0.1056428 0.5284142 0.1056428 +0.1201537 0.5284142 0.1056428 +0.1409607 0.5284142 0.1056428 +0.1678172 0.5284142 0.1056428 +0.1950164 0.5284142 0.1056428 +0.2210581 0.5284142 0.1056428 +0.245636 0.5284142 0.1056428 +0.2686816 0.5284142 0.1056428 +0.2902431 0.5284142 0.1056428 +0.3104189 0.5284142 0.1056428 +0.3293248 0.5284142 0.1056428 +0.3470774 0.5284142 0.1056428 +0.3637862 0.5284142 0.1056428 +0.3795513 0.5284142 0.1056428 +0.3944623 0.5284142 0.1056428 +0.4085988 0.5284142 0.1056428 +0.4220313 0.5284142 0.1056428 +0.4348222 0.5284142 0.1056428 +0.4470264 0.5284142 0.1056428 +0.4586928 0.5284142 0.1056428 +0.4698649 0.5284142 0.1056428 +0.4805811 0.5284142 0.1056428 +0.490876 0.5284142 0.1056428 +0.5007803 0.5284142 0.1056428 +0.510322 0.5284142 0.1056428 +0.5195258 0.5284142 0.1056428 +0.5284142 0.5284142 0.1056428 +0.5370079 0.5284142 0.1056428 +0.5453253 0.5284142 0.1056428 +0.5533834 0.5284142 0.1056428 +0.5611974 0.5284142 0.1056428 +0.5687816 0.5284142 0.1056428 +0.092819 0.5370079 0.1056428 +0.1056428 0.5370079 0.1056428 +0.1201537 0.5370079 0.1056428 +0.1409607 0.5370079 0.1056428 +0.1678172 0.5370079 0.1056428 +0.1950164 0.5370079 0.1056428 +0.2210581 0.5370079 0.1056428 +0.245636 0.5370079 0.1056428 +0.2686816 0.5370079 0.1056428 +0.2902431 0.5370079 0.1056428 +0.3104189 0.5370079 0.1056428 +0.3293248 0.5370079 0.1056428 +0.3470774 0.5370079 0.1056428 +0.3637862 0.5370079 0.1056428 +0.3795513 0.5370079 0.1056428 +0.3944623 0.5370079 0.1056428 +0.4085988 0.5370079 0.1056428 +0.4220313 0.5370079 0.1056428 +0.4348222 0.5370079 0.1056428 +0.4470264 0.5370079 0.1056428 +0.4586928 0.5370079 0.1056428 +0.4698649 0.5370079 0.1056428 +0.4805811 0.5370079 0.1056428 +0.490876 0.5370079 0.1056428 +0.5007803 0.5370079 0.1056428 +0.510322 0.5370079 0.1056428 +0.5195258 0.5370079 0.1056428 +0.5284142 0.5370079 0.1056428 +0.5370079 0.5370079 0.1056428 +0.5453253 0.5370079 0.1056428 +0.5533834 0.5370079 0.1056428 +0.5611974 0.5370079 0.1056428 +0.5687816 0.5370079 0.1056428 +0.092819 0.5453253 0.1056428 +0.1056428 0.5453253 0.1056428 +0.1201537 0.5453253 0.1056428 +0.1409607 0.5453253 0.1056428 +0.1678172 0.5453253 0.1056428 +0.1950164 0.5453253 0.1056428 +0.2210581 0.5453253 0.1056428 +0.245636 0.5453253 0.1056428 +0.2686816 0.5453253 0.1056428 +0.2902431 0.5453253 0.1056428 +0.3104189 0.5453253 0.1056428 +0.3293248 0.5453253 0.1056428 +0.3470774 0.5453253 0.1056428 +0.3637862 0.5453253 0.1056428 +0.3795513 0.5453253 0.1056428 +0.3944623 0.5453253 0.1056428 +0.4085988 0.5453253 0.1056428 +0.4220313 0.5453253 0.1056428 +0.4348222 0.5453253 0.1056428 +0.4470264 0.5453253 0.1056428 +0.4586928 0.5453253 0.1056428 +0.4698649 0.5453253 0.1056428 +0.4805811 0.5453253 0.1056428 +0.490876 0.5453253 0.1056428 +0.5007803 0.5453253 0.1056428 +0.510322 0.5453253 0.1056428 +0.5195258 0.5453253 0.1056428 +0.5284142 0.5453253 0.1056428 +0.5370079 0.5453253 0.1056428 +0.5453253 0.5453253 0.1056428 +0.5533834 0.5453253 0.1056428 +0.5611974 0.5453253 0.1056428 +0.5687816 0.5453253 0.1056428 +0.092819 0.5533834 0.1056428 +0.1056428 0.5533834 0.1056428 +0.1201537 0.5533834 0.1056428 +0.1409607 0.5533834 0.1056428 +0.1678172 0.5533834 0.1056428 +0.1950164 0.5533834 0.1056428 +0.2210581 0.5533834 0.1056428 +0.245636 0.5533834 0.1056428 +0.2686816 0.5533834 0.1056428 +0.2902431 0.5533834 0.1056428 +0.3104189 0.5533834 0.1056428 +0.3293248 0.5533834 0.1056428 +0.3470774 0.5533834 0.1056428 +0.3637862 0.5533834 0.1056428 +0.3795513 0.5533834 0.1056428 +0.3944623 0.5533834 0.1056428 +0.4085988 0.5533834 0.1056428 +0.4220313 0.5533834 0.1056428 +0.4348222 0.5533834 0.1056428 +0.4470264 0.5533834 0.1056428 +0.4586928 0.5533834 0.1056428 +0.4698649 0.5533834 0.1056428 +0.4805811 0.5533834 0.1056428 +0.490876 0.5533834 0.1056428 +0.5007803 0.5533834 0.1056428 +0.510322 0.5533834 0.1056428 +0.5195258 0.5533834 0.1056428 +0.5284142 0.5533834 0.1056428 +0.5370079 0.5533834 0.1056428 +0.5453253 0.5533834 0.1056428 +0.5533834 0.5533834 0.1056428 +0.5611974 0.5533834 0.1056428 +0.5687816 0.5533834 0.1056428 +0.092819 0.5611974 0.1056428 +0.1056428 0.5611974 0.1056428 +0.1201537 0.5611974 0.1056428 +0.1409607 0.5611974 0.1056428 +0.1678172 0.5611974 0.1056428 +0.1950164 0.5611974 0.1056428 +0.2210581 0.5611974 0.1056428 +0.245636 0.5611974 0.1056428 +0.2686816 0.5611974 0.1056428 +0.2902431 0.5611974 0.1056428 +0.3104189 0.5611974 0.1056428 +0.3293248 0.5611974 0.1056428 +0.3470774 0.5611974 0.1056428 +0.3637862 0.5611974 0.1056428 +0.3795513 0.5611974 0.1056428 +0.3944623 0.5611974 0.1056428 +0.4085988 0.5611974 0.1056428 +0.4220313 0.5611974 0.1056428 +0.4348222 0.5611974 0.1056428 +0.4470264 0.5611974 0.1056428 +0.4586928 0.5611974 0.1056428 +0.4698649 0.5611974 0.1056428 +0.4805811 0.5611974 0.1056428 +0.490876 0.5611974 0.1056428 +0.5007803 0.5611974 0.1056428 +0.510322 0.5611974 0.1056428 +0.5195258 0.5611974 0.1056428 +0.5284142 0.5611974 0.1056428 +0.5370079 0.5611974 0.1056428 +0.5453253 0.5611974 0.1056428 +0.5533834 0.5611974 0.1056428 +0.5611974 0.5611974 0.1056428 +0.5687816 0.5611974 0.1056428 +0.092819 0.5687816 0.1056428 +0.1056428 0.5687816 0.1056428 +0.1201537 0.5687816 0.1056428 +0.1409607 0.5687816 0.1056428 +0.1678172 0.5687816 0.1056428 +0.1950164 0.5687816 0.1056428 +0.2210581 0.5687816 0.1056428 +0.245636 0.5687816 0.1056428 +0.2686816 0.5687816 0.1056428 +0.2902431 0.5687816 0.1056428 +0.3104189 0.5687816 0.1056428 +0.3293248 0.5687816 0.1056428 +0.3470774 0.5687816 0.1056428 +0.3637862 0.5687816 0.1056428 +0.3795513 0.5687816 0.1056428 +0.3944623 0.5687816 0.1056428 +0.4085988 0.5687816 0.1056428 +0.4220313 0.5687816 0.1056428 +0.4348222 0.5687816 0.1056428 +0.4470264 0.5687816 0.1056428 +0.4586928 0.5687816 0.1056428 +0.4698649 0.5687816 0.1056428 +0.4805811 0.5687816 0.1056428 +0.490876 0.5687816 0.1056428 +0.5007803 0.5687816 0.1056428 +0.510322 0.5687816 0.1056428 +0.5195258 0.5687816 0.1056428 +0.5284142 0.5687816 0.1056428 +0.5370079 0.5687816 0.1056428 +0.5453253 0.5687816 0.1056428 +0.5533834 0.5687816 0.1056428 +0.5611974 0.5687816 0.1056428 +0.5687816 0.5687816 0.1056428 +0.092819 0.092819 0.1201537 +0.1056428 0.092819 0.1201537 +0.1201537 0.092819 0.1201537 +0.1409607 0.092819 0.1201537 +0.1678172 0.092819 0.1201537 +0.1950164 0.092819 0.1201537 +0.2210581 0.092819 0.1201537 +0.245636 0.092819 0.1201537 +0.2686816 0.092819 0.1201537 +0.2902431 0.092819 0.1201537 +0.3104189 0.092819 0.1201537 +0.3293248 0.092819 0.1201537 +0.3470774 0.092819 0.1201537 +0.3637862 0.092819 0.1201537 +0.3795513 0.092819 0.1201537 +0.3944623 0.092819 0.1201537 +0.4085988 0.092819 0.1201537 +0.4220313 0.092819 0.1201537 +0.4348222 0.092819 0.1201537 +0.4470264 0.092819 0.1201537 +0.4586928 0.092819 0.1201537 +0.4698649 0.092819 0.1201537 +0.4805811 0.092819 0.1201537 +0.490876 0.092819 0.1201537 +0.5007803 0.092819 0.1201537 +0.510322 0.092819 0.1201537 +0.5195258 0.092819 0.1201537 +0.5284142 0.092819 0.1201537 +0.5370079 0.092819 0.1201537 +0.5453253 0.092819 0.1201537 +0.5533834 0.092819 0.1201537 +0.5611974 0.092819 0.1201537 +0.5687816 0.092819 0.1201537 +0.092819 0.1056428 0.1201537 +0.1056428 0.1056428 0.1201537 +0.1201537 0.1056428 0.1201537 +0.1409607 0.1056428 0.1201537 +0.1678172 0.1056428 0.1201537 +0.1950164 0.1056428 0.1201537 +0.2210581 0.1056428 0.1201537 +0.245636 0.1056428 0.1201537 +0.2686816 0.1056428 0.1201537 +0.2902431 0.1056428 0.1201537 +0.3104189 0.1056428 0.1201537 +0.3293248 0.1056428 0.1201537 +0.3470774 0.1056428 0.1201537 +0.3637862 0.1056428 0.1201537 +0.3795513 0.1056428 0.1201537 +0.3944623 0.1056428 0.1201537 +0.4085988 0.1056428 0.1201537 +0.4220313 0.1056428 0.1201537 +0.4348222 0.1056428 0.1201537 +0.4470264 0.1056428 0.1201537 +0.4586928 0.1056428 0.1201537 +0.4698649 0.1056428 0.1201537 +0.4805811 0.1056428 0.1201537 +0.490876 0.1056428 0.1201537 +0.5007803 0.1056428 0.1201537 +0.510322 0.1056428 0.1201537 +0.5195258 0.1056428 0.1201537 +0.5284142 0.1056428 0.1201537 +0.5370079 0.1056428 0.1201537 +0.5453253 0.1056428 0.1201537 +0.5533834 0.1056428 0.1201537 +0.5611974 0.1056428 0.1201537 +0.5687816 0.1056428 0.1201537 +0.092819 0.1201537 0.1201537 +0.1056428 0.1201537 0.1201537 +0.1201537 0.1201537 0.1201537 +0.1409607 0.1201537 0.1201537 +0.1678172 0.1201537 0.1201537 +0.1950164 0.1201537 0.1201537 +0.2210581 0.1201537 0.1201537 +0.245636 0.1201537 0.1201537 +0.2686816 0.1201537 0.1201537 +0.2902431 0.1201537 0.1201537 +0.3104189 0.1201537 0.1201537 +0.3293248 0.1201537 0.1201537 +0.3470774 0.1201537 0.1201537 +0.3637862 0.1201537 0.1201537 +0.3795513 0.1201537 0.1201537 +0.3944623 0.1201537 0.1201537 +0.4085988 0.1201537 0.1201537 +0.4220313 0.1201537 0.1201537 +0.4348222 0.1201537 0.1201537 +0.4470264 0.1201537 0.1201537 +0.4586928 0.1201537 0.1201537 +0.4698649 0.1201537 0.1201537 +0.4805811 0.1201537 0.1201537 +0.490876 0.1201537 0.1201537 +0.5007803 0.1201537 0.1201537 +0.510322 0.1201537 0.1201537 +0.5195258 0.1201537 0.1201537 +0.5284142 0.1201537 0.1201537 +0.5370079 0.1201537 0.1201537 +0.5453253 0.1201537 0.1201537 +0.5533834 0.1201537 0.1201537 +0.5611974 0.1201537 0.1201537 +0.5687816 0.1201537 0.1201537 +0.092819 0.1409607 0.1201537 +0.1056428 0.1409607 0.1201537 +0.1201537 0.1409607 0.1201537 +0.1409607 0.1409607 0.1201537 +0.1678172 0.1409607 0.1201537 +0.1950164 0.1409607 0.1201537 +0.2210581 0.1409607 0.1201537 +0.245636 0.1409607 0.1201537 +0.2686816 0.1409607 0.1201537 +0.2902431 0.1409607 0.1201537 +0.3104189 0.1409607 0.1201537 +0.3293248 0.1409607 0.1201537 +0.3470774 0.1409607 0.1201537 +0.3637862 0.1409607 0.1201537 +0.3795513 0.1409607 0.1201537 +0.3944623 0.1409607 0.1201537 +0.4085988 0.1409607 0.1201537 +0.4220313 0.1409607 0.1201537 +0.4348222 0.1409607 0.1201537 +0.4470264 0.1409607 0.1201537 +0.4586928 0.1409607 0.1201537 +0.4698649 0.1409607 0.1201537 +0.4805811 0.1409607 0.1201537 +0.490876 0.1409607 0.1201537 +0.5007803 0.1409607 0.1201537 +0.510322 0.1409607 0.1201537 +0.5195258 0.1409607 0.1201537 +0.5284142 0.1409607 0.1201537 +0.5370079 0.1409607 0.1201537 +0.5453253 0.1409607 0.1201537 +0.5533834 0.1409607 0.1201537 +0.5611974 0.1409607 0.1201537 +0.5687816 0.1409607 0.1201537 +0.092819 0.1678172 0.1201537 +0.1056428 0.1678172 0.1201537 +0.1201537 0.1678172 0.1201537 +0.1409607 0.1678172 0.1201537 +0.1678172 0.1678172 0.1201537 +0.1950164 0.1678172 0.1201537 +0.2210581 0.1678172 0.1201537 +0.245636 0.1678172 0.1201537 +0.2686816 0.1678172 0.1201537 +0.2902431 0.1678172 0.1201537 +0.3104189 0.1678172 0.1201537 +0.3293248 0.1678172 0.1201537 +0.3470774 0.1678172 0.1201537 +0.3637862 0.1678172 0.1201537 +0.3795513 0.1678172 0.1201537 +0.3944623 0.1678172 0.1201537 +0.4085988 0.1678172 0.1201537 +0.4220313 0.1678172 0.1201537 +0.4348222 0.1678172 0.1201537 +0.4470264 0.1678172 0.1201537 +0.4586928 0.1678172 0.1201537 +0.4698649 0.1678172 0.1201537 +0.4805811 0.1678172 0.1201537 +0.490876 0.1678172 0.1201537 +0.5007803 0.1678172 0.1201537 +0.510322 0.1678172 0.1201537 +0.5195258 0.1678172 0.1201537 +0.5284142 0.1678172 0.1201537 +0.5370079 0.1678172 0.1201537 +0.5453253 0.1678172 0.1201537 +0.5533834 0.1678172 0.1201537 +0.5611974 0.1678172 0.1201537 +0.5687816 0.1678172 0.1201537 +0.092819 0.1950164 0.1201537 +0.1056428 0.1950164 0.1201537 +0.1201537 0.1950164 0.1201537 +0.1409607 0.1950164 0.1201537 +0.1678172 0.1950164 0.1201537 +0.1950164 0.1950164 0.1201537 +0.2210581 0.1950164 0.1201537 +0.245636 0.1950164 0.1201537 +0.2686816 0.1950164 0.1201537 +0.2902431 0.1950164 0.1201537 +0.3104189 0.1950164 0.1201537 +0.3293248 0.1950164 0.1201537 +0.3470774 0.1950164 0.1201537 +0.3637862 0.1950164 0.1201537 +0.3795513 0.1950164 0.1201537 +0.3944623 0.1950164 0.1201537 +0.4085988 0.1950164 0.1201537 +0.4220313 0.1950164 0.1201537 +0.4348222 0.1950164 0.1201537 +0.4470264 0.1950164 0.1201537 +0.4586928 0.1950164 0.1201537 +0.4698649 0.1950164 0.1201537 +0.4805811 0.1950164 0.1201537 +0.490876 0.1950164 0.1201537 +0.5007803 0.1950164 0.1201537 +0.510322 0.1950164 0.1201537 +0.5195258 0.1950164 0.1201537 +0.5284142 0.1950164 0.1201537 +0.5370079 0.1950164 0.1201537 +0.5453253 0.1950164 0.1201537 +0.5533834 0.1950164 0.1201537 +0.5611974 0.1950164 0.1201537 +0.5687816 0.1950164 0.1201537 +0.092819 0.2210581 0.1201537 +0.1056428 0.2210581 0.1201537 +0.1201537 0.2210581 0.1201537 +0.1409607 0.2210581 0.1201537 +0.1678172 0.2210581 0.1201537 +0.1950164 0.2210581 0.1201537 +0.2210581 0.2210581 0.1201537 +0.245636 0.2210581 0.1201537 +0.2686816 0.2210581 0.1201537 +0.2902431 0.2210581 0.1201537 +0.3104189 0.2210581 0.1201537 +0.3293248 0.2210581 0.1201537 +0.3470774 0.2210581 0.1201537 +0.3637862 0.2210581 0.1201537 +0.3795513 0.2210581 0.1201537 +0.3944623 0.2210581 0.1201537 +0.4085988 0.2210581 0.1201537 +0.4220313 0.2210581 0.1201537 +0.4348222 0.2210581 0.1201537 +0.4470264 0.2210581 0.1201537 +0.4586928 0.2210581 0.1201537 +0.4698649 0.2210581 0.1201537 +0.4805811 0.2210581 0.1201537 +0.490876 0.2210581 0.1201537 +0.5007803 0.2210581 0.1201537 +0.510322 0.2210581 0.1201537 +0.5195258 0.2210581 0.1201537 +0.5284142 0.2210581 0.1201537 +0.5370079 0.2210581 0.1201537 +0.5453253 0.2210581 0.1201537 +0.5533834 0.2210581 0.1201537 +0.5611974 0.2210581 0.1201537 +0.5687816 0.2210581 0.1201537 +0.092819 0.245636 0.1201537 +0.1056428 0.245636 0.1201537 +0.1201537 0.245636 0.1201537 +0.1409607 0.245636 0.1201537 +0.1678172 0.245636 0.1201537 +0.1950164 0.245636 0.1201537 +0.2210581 0.245636 0.1201537 +0.245636 0.245636 0.1201537 +0.2686816 0.245636 0.1201537 +0.2902431 0.245636 0.1201537 +0.3104189 0.245636 0.1201537 +0.3293248 0.245636 0.1201537 +0.3470774 0.245636 0.1201537 +0.3637862 0.245636 0.1201537 +0.3795513 0.245636 0.1201537 +0.3944623 0.245636 0.1201537 +0.4085988 0.245636 0.1201537 +0.4220313 0.245636 0.1201537 +0.4348222 0.245636 0.1201537 +0.4470264 0.245636 0.1201537 +0.4586928 0.245636 0.1201537 +0.4698649 0.245636 0.1201537 +0.4805811 0.245636 0.1201537 +0.490876 0.245636 0.1201537 +0.5007803 0.245636 0.1201537 +0.510322 0.245636 0.1201537 +0.5195258 0.245636 0.1201537 +0.5284142 0.245636 0.1201537 +0.5370079 0.245636 0.1201537 +0.5453253 0.245636 0.1201537 +0.5533834 0.245636 0.1201537 +0.5611974 0.245636 0.1201537 +0.5687816 0.245636 0.1201537 +0.092819 0.2686816 0.1201537 +0.1056428 0.2686816 0.1201537 +0.1201537 0.2686816 0.1201537 +0.1409607 0.2686816 0.1201537 +0.1678172 0.2686816 0.1201537 +0.1950164 0.2686816 0.1201537 +0.2210581 0.2686816 0.1201537 +0.245636 0.2686816 0.1201537 +0.2686816 0.2686816 0.1201537 +0.2902431 0.2686816 0.1201537 +0.3104189 0.2686816 0.1201537 +0.3293248 0.2686816 0.1201537 +0.3470774 0.2686816 0.1201537 +0.3637862 0.2686816 0.1201537 +0.3795513 0.2686816 0.1201537 +0.3944623 0.2686816 0.1201537 +0.4085988 0.2686816 0.1201537 +0.4220313 0.2686816 0.1201537 +0.4348222 0.2686816 0.1201537 +0.4470264 0.2686816 0.1201537 +0.4586928 0.2686816 0.1201537 +0.4698649 0.2686816 0.1201537 +0.4805811 0.2686816 0.1201537 +0.490876 0.2686816 0.1201537 +0.5007803 0.2686816 0.1201537 +0.510322 0.2686816 0.1201537 +0.5195258 0.2686816 0.1201537 +0.5284142 0.2686816 0.1201537 +0.5370079 0.2686816 0.1201537 +0.5453253 0.2686816 0.1201537 +0.5533834 0.2686816 0.1201537 +0.5611974 0.2686816 0.1201537 +0.5687816 0.2686816 0.1201537 +0.092819 0.2902431 0.1201537 +0.1056428 0.2902431 0.1201537 +0.1201537 0.2902431 0.1201537 +0.1409607 0.2902431 0.1201537 +0.1678172 0.2902431 0.1201537 +0.1950164 0.2902431 0.1201537 +0.2210581 0.2902431 0.1201537 +0.245636 0.2902431 0.1201537 +0.2686816 0.2902431 0.1201537 +0.2902431 0.2902431 0.1201537 +0.3104189 0.2902431 0.1201537 +0.3293248 0.2902431 0.1201537 +0.3470774 0.2902431 0.1201537 +0.3637862 0.2902431 0.1201537 +0.3795513 0.2902431 0.1201537 +0.3944623 0.2902431 0.1201537 +0.4085988 0.2902431 0.1201537 +0.4220313 0.2902431 0.1201537 +0.4348222 0.2902431 0.1201537 +0.4470264 0.2902431 0.1201537 +0.4586928 0.2902431 0.1201537 +0.4698649 0.2902431 0.1201537 +0.4805811 0.2902431 0.1201537 +0.490876 0.2902431 0.1201537 +0.5007803 0.2902431 0.1201537 +0.510322 0.2902431 0.1201537 +0.5195258 0.2902431 0.1201537 +0.5284142 0.2902431 0.1201537 +0.5370079 0.2902431 0.1201537 +0.5453253 0.2902431 0.1201537 +0.5533834 0.2902431 0.1201537 +0.5611974 0.2902431 0.1201537 +0.5687816 0.2902431 0.1201537 +0.092819 0.3104189 0.1201537 +0.1056428 0.3104189 0.1201537 +0.1201537 0.3104189 0.1201537 +0.1409607 0.3104189 0.1201537 +0.1678172 0.3104189 0.1201537 +0.1950164 0.3104189 0.1201537 +0.2210581 0.3104189 0.1201537 +0.245636 0.3104189 0.1201537 +0.2686816 0.3104189 0.1201537 +0.2902431 0.3104189 0.1201537 +0.3104189 0.3104189 0.1201537 +0.3293248 0.3104189 0.1201537 +0.3470774 0.3104189 0.1201537 +0.3637862 0.3104189 0.1201537 +0.3795513 0.3104189 0.1201537 +0.3944623 0.3104189 0.1201537 +0.4085988 0.3104189 0.1201537 +0.4220313 0.3104189 0.1201537 +0.4348222 0.3104189 0.1201537 +0.4470264 0.3104189 0.1201537 +0.4586928 0.3104189 0.1201537 +0.4698649 0.3104189 0.1201537 +0.4805811 0.3104189 0.1201537 +0.490876 0.3104189 0.1201537 +0.5007803 0.3104189 0.1201537 +0.510322 0.3104189 0.1201537 +0.5195258 0.3104189 0.1201537 +0.5284142 0.3104189 0.1201537 +0.5370079 0.3104189 0.1201537 +0.5453253 0.3104189 0.1201537 +0.5533834 0.3104189 0.1201537 +0.5611974 0.3104189 0.1201537 +0.5687816 0.3104189 0.1201537 +0.092819 0.3293248 0.1201537 +0.1056428 0.3293248 0.1201537 +0.1201537 0.3293248 0.1201537 +0.1409607 0.3293248 0.1201537 +0.1678172 0.3293248 0.1201537 +0.1950164 0.3293248 0.1201537 +0.2210581 0.3293248 0.1201537 +0.245636 0.3293248 0.1201537 +0.2686816 0.3293248 0.1201537 +0.2902431 0.3293248 0.1201537 +0.3104189 0.3293248 0.1201537 +0.3293248 0.3293248 0.1201537 +0.3470774 0.3293248 0.1201537 +0.3637862 0.3293248 0.1201537 +0.3795513 0.3293248 0.1201537 +0.3944623 0.3293248 0.1201537 +0.4085988 0.3293248 0.1201537 +0.4220313 0.3293248 0.1201537 +0.4348222 0.3293248 0.1201537 +0.4470264 0.3293248 0.1201537 +0.4586928 0.3293248 0.1201537 +0.4698649 0.3293248 0.1201537 +0.4805811 0.3293248 0.1201537 +0.490876 0.3293248 0.1201537 +0.5007803 0.3293248 0.1201537 +0.510322 0.3293248 0.1201537 +0.5195258 0.3293248 0.1201537 +0.5284142 0.3293248 0.1201537 +0.5370079 0.3293248 0.1201537 +0.5453253 0.3293248 0.1201537 +0.5533834 0.3293248 0.1201537 +0.5611974 0.3293248 0.1201537 +0.5687816 0.3293248 0.1201537 +0.092819 0.3470774 0.1201537 +0.1056428 0.3470774 0.1201537 +0.1201537 0.3470774 0.1201537 +0.1409607 0.3470774 0.1201537 +0.1678172 0.3470774 0.1201537 +0.1950164 0.3470774 0.1201537 +0.2210581 0.3470774 0.1201537 +0.245636 0.3470774 0.1201537 +0.2686816 0.3470774 0.1201537 +0.2902431 0.3470774 0.1201537 +0.3104189 0.3470774 0.1201537 +0.3293248 0.3470774 0.1201537 +0.3470774 0.3470774 0.1201537 +0.3637862 0.3470774 0.1201537 +0.3795513 0.3470774 0.1201537 +0.3944623 0.3470774 0.1201537 +0.4085988 0.3470774 0.1201537 +0.4220313 0.3470774 0.1201537 +0.4348222 0.3470774 0.1201537 +0.4470264 0.3470774 0.1201537 +0.4586928 0.3470774 0.1201537 +0.4698649 0.3470774 0.1201537 +0.4805811 0.3470774 0.1201537 +0.490876 0.3470774 0.1201537 +0.5007803 0.3470774 0.1201537 +0.510322 0.3470774 0.1201537 +0.5195258 0.3470774 0.1201537 +0.5284142 0.3470774 0.1201537 +0.5370079 0.3470774 0.1201537 +0.5453253 0.3470774 0.1201537 +0.5533834 0.3470774 0.1201537 +0.5611974 0.3470774 0.1201537 +0.5687816 0.3470774 0.1201537 +0.092819 0.3637862 0.1201537 +0.1056428 0.3637862 0.1201537 +0.1201537 0.3637862 0.1201537 +0.1409607 0.3637862 0.1201537 +0.1678172 0.3637862 0.1201537 +0.1950164 0.3637862 0.1201537 +0.2210581 0.3637862 0.1201537 +0.245636 0.3637862 0.1201537 +0.2686816 0.3637862 0.1201537 +0.2902431 0.3637862 0.1201537 +0.3104189 0.3637862 0.1201537 +0.3293248 0.3637862 0.1201537 +0.3470774 0.3637862 0.1201537 +0.3637862 0.3637862 0.1201537 +0.3795513 0.3637862 0.1201537 +0.3944623 0.3637862 0.1201537 +0.4085988 0.3637862 0.1201537 +0.4220313 0.3637862 0.1201537 +0.4348222 0.3637862 0.1201537 +0.4470264 0.3637862 0.1201537 +0.4586928 0.3637862 0.1201537 +0.4698649 0.3637862 0.1201537 +0.4805811 0.3637862 0.1201537 +0.490876 0.3637862 0.1201537 +0.5007803 0.3637862 0.1201537 +0.510322 0.3637862 0.1201537 +0.5195258 0.3637862 0.1201537 +0.5284142 0.3637862 0.1201537 +0.5370079 0.3637862 0.1201537 +0.5453253 0.3637862 0.1201537 +0.5533834 0.3637862 0.1201537 +0.5611974 0.3637862 0.1201537 +0.5687816 0.3637862 0.1201537 +0.092819 0.3795513 0.1201537 +0.1056428 0.3795513 0.1201537 +0.1201537 0.3795513 0.1201537 +0.1409607 0.3795513 0.1201537 +0.1678172 0.3795513 0.1201537 +0.1950164 0.3795513 0.1201537 +0.2210581 0.3795513 0.1201537 +0.245636 0.3795513 0.1201537 +0.2686816 0.3795513 0.1201537 +0.2902431 0.3795513 0.1201537 +0.3104189 0.3795513 0.1201537 +0.3293248 0.3795513 0.1201537 +0.3470774 0.3795513 0.1201537 +0.3637862 0.3795513 0.1201537 +0.3795513 0.3795513 0.1201537 +0.3944623 0.3795513 0.1201537 +0.4085988 0.3795513 0.1201537 +0.4220313 0.3795513 0.1201537 +0.4348222 0.3795513 0.1201537 +0.4470264 0.3795513 0.1201537 +0.4586928 0.3795513 0.1201537 +0.4698649 0.3795513 0.1201537 +0.4805811 0.3795513 0.1201537 +0.490876 0.3795513 0.1201537 +0.5007803 0.3795513 0.1201537 +0.510322 0.3795513 0.1201537 +0.5195258 0.3795513 0.1201537 +0.5284142 0.3795513 0.1201537 +0.5370079 0.3795513 0.1201537 +0.5453253 0.3795513 0.1201537 +0.5533834 0.3795513 0.1201537 +0.5611974 0.3795513 0.1201537 +0.5687816 0.3795513 0.1201537 +0.092819 0.3944623 0.1201537 +0.1056428 0.3944623 0.1201537 +0.1201537 0.3944623 0.1201537 +0.1409607 0.3944623 0.1201537 +0.1678172 0.3944623 0.1201537 +0.1950164 0.3944623 0.1201537 +0.2210581 0.3944623 0.1201537 +0.245636 0.3944623 0.1201537 +0.2686816 0.3944623 0.1201537 +0.2902431 0.3944623 0.1201537 +0.3104189 0.3944623 0.1201537 +0.3293248 0.3944623 0.1201537 +0.3470774 0.3944623 0.1201537 +0.3637862 0.3944623 0.1201537 +0.3795513 0.3944623 0.1201537 +0.3944623 0.3944623 0.1201537 +0.4085988 0.3944623 0.1201537 +0.4220313 0.3944623 0.1201537 +0.4348222 0.3944623 0.1201537 +0.4470264 0.3944623 0.1201537 +0.4586928 0.3944623 0.1201537 +0.4698649 0.3944623 0.1201537 +0.4805811 0.3944623 0.1201537 +0.490876 0.3944623 0.1201537 +0.5007803 0.3944623 0.1201537 +0.510322 0.3944623 0.1201537 +0.5195258 0.3944623 0.1201537 +0.5284142 0.3944623 0.1201537 +0.5370079 0.3944623 0.1201537 +0.5453253 0.3944623 0.1201537 +0.5533834 0.3944623 0.1201537 +0.5611974 0.3944623 0.1201537 +0.5687816 0.3944623 0.1201537 +0.092819 0.4085988 0.1201537 +0.1056428 0.4085988 0.1201537 +0.1201537 0.4085988 0.1201537 +0.1409607 0.4085988 0.1201537 +0.1678172 0.4085988 0.1201537 +0.1950164 0.4085988 0.1201537 +0.2210581 0.4085988 0.1201537 +0.245636 0.4085988 0.1201537 +0.2686816 0.4085988 0.1201537 +0.2902431 0.4085988 0.1201537 +0.3104189 0.4085988 0.1201537 +0.3293248 0.4085988 0.1201537 +0.3470774 0.4085988 0.1201537 +0.3637862 0.4085988 0.1201537 +0.3795513 0.4085988 0.1201537 +0.3944623 0.4085988 0.1201537 +0.4085988 0.4085988 0.1201537 +0.4220313 0.4085988 0.1201537 +0.4348222 0.4085988 0.1201537 +0.4470264 0.4085988 0.1201537 +0.4586928 0.4085988 0.1201537 +0.4698649 0.4085988 0.1201537 +0.4805811 0.4085988 0.1201537 +0.490876 0.4085988 0.1201537 +0.5007803 0.4085988 0.1201537 +0.510322 0.4085988 0.1201537 +0.5195258 0.4085988 0.1201537 +0.5284142 0.4085988 0.1201537 +0.5370079 0.4085988 0.1201537 +0.5453253 0.4085988 0.1201537 +0.5533834 0.4085988 0.1201537 +0.5611974 0.4085988 0.1201537 +0.5687816 0.4085988 0.1201537 +0.092819 0.4220313 0.1201537 +0.1056428 0.4220313 0.1201537 +0.1201537 0.4220313 0.1201537 +0.1409607 0.4220313 0.1201537 +0.1678172 0.4220313 0.1201537 +0.1950164 0.4220313 0.1201537 +0.2210581 0.4220313 0.1201537 +0.245636 0.4220313 0.1201537 +0.2686816 0.4220313 0.1201537 +0.2902431 0.4220313 0.1201537 +0.3104189 0.4220313 0.1201537 +0.3293248 0.4220313 0.1201537 +0.3470774 0.4220313 0.1201537 +0.3637862 0.4220313 0.1201537 +0.3795513 0.4220313 0.1201537 +0.3944623 0.4220313 0.1201537 +0.4085988 0.4220313 0.1201537 +0.4220313 0.4220313 0.1201537 +0.4348222 0.4220313 0.1201537 +0.4470264 0.4220313 0.1201537 +0.4586928 0.4220313 0.1201537 +0.4698649 0.4220313 0.1201537 +0.4805811 0.4220313 0.1201537 +0.490876 0.4220313 0.1201537 +0.5007803 0.4220313 0.1201537 +0.510322 0.4220313 0.1201537 +0.5195258 0.4220313 0.1201537 +0.5284142 0.4220313 0.1201537 +0.5370079 0.4220313 0.1201537 +0.5453253 0.4220313 0.1201537 +0.5533834 0.4220313 0.1201537 +0.5611974 0.4220313 0.1201537 +0.5687816 0.4220313 0.1201537 +0.092819 0.4348222 0.1201537 +0.1056428 0.4348222 0.1201537 +0.1201537 0.4348222 0.1201537 +0.1409607 0.4348222 0.1201537 +0.1678172 0.4348222 0.1201537 +0.1950164 0.4348222 0.1201537 +0.2210581 0.4348222 0.1201537 +0.245636 0.4348222 0.1201537 +0.2686816 0.4348222 0.1201537 +0.2902431 0.4348222 0.1201537 +0.3104189 0.4348222 0.1201537 +0.3293248 0.4348222 0.1201537 +0.3470774 0.4348222 0.1201537 +0.3637862 0.4348222 0.1201537 +0.3795513 0.4348222 0.1201537 +0.3944623 0.4348222 0.1201537 +0.4085988 0.4348222 0.1201537 +0.4220313 0.4348222 0.1201537 +0.4348222 0.4348222 0.1201537 +0.4470264 0.4348222 0.1201537 +0.4586928 0.4348222 0.1201537 +0.4698649 0.4348222 0.1201537 +0.4805811 0.4348222 0.1201537 +0.490876 0.4348222 0.1201537 +0.5007803 0.4348222 0.1201537 +0.510322 0.4348222 0.1201537 +0.5195258 0.4348222 0.1201537 +0.5284142 0.4348222 0.1201537 +0.5370079 0.4348222 0.1201537 +0.5453253 0.4348222 0.1201537 +0.5533834 0.4348222 0.1201537 +0.5611974 0.4348222 0.1201537 +0.5687816 0.4348222 0.1201537 +0.092819 0.4470264 0.1201537 +0.1056428 0.4470264 0.1201537 +0.1201537 0.4470264 0.1201537 +0.1409607 0.4470264 0.1201537 +0.1678172 0.4470264 0.1201537 +0.1950164 0.4470264 0.1201537 +0.2210581 0.4470264 0.1201537 +0.245636 0.4470264 0.1201537 +0.2686816 0.4470264 0.1201537 +0.2902431 0.4470264 0.1201537 +0.3104189 0.4470264 0.1201537 +0.3293248 0.4470264 0.1201537 +0.3470774 0.4470264 0.1201537 +0.3637862 0.4470264 0.1201537 +0.3795513 0.4470264 0.1201537 +0.3944623 0.4470264 0.1201537 +0.4085988 0.4470264 0.1201537 +0.4220313 0.4470264 0.1201537 +0.4348222 0.4470264 0.1201537 +0.4470264 0.4470264 0.1201537 +0.4586928 0.4470264 0.1201537 +0.4698649 0.4470264 0.1201537 +0.4805811 0.4470264 0.1201537 +0.490876 0.4470264 0.1201537 +0.5007803 0.4470264 0.1201537 +0.510322 0.4470264 0.1201537 +0.5195258 0.4470264 0.1201537 +0.5284142 0.4470264 0.1201537 +0.5370079 0.4470264 0.1201537 +0.5453253 0.4470264 0.1201537 +0.5533834 0.4470264 0.1201537 +0.5611974 0.4470264 0.1201537 +0.5687816 0.4470264 0.1201537 +0.092819 0.4586928 0.1201537 +0.1056428 0.4586928 0.1201537 +0.1201537 0.4586928 0.1201537 +0.1409607 0.4586928 0.1201537 +0.1678172 0.4586928 0.1201537 +0.1950164 0.4586928 0.1201537 +0.2210581 0.4586928 0.1201537 +0.245636 0.4586928 0.1201537 +0.2686816 0.4586928 0.1201537 +0.2902431 0.4586928 0.1201537 +0.3104189 0.4586928 0.1201537 +0.3293248 0.4586928 0.1201537 +0.3470774 0.4586928 0.1201537 +0.3637862 0.4586928 0.1201537 +0.3795513 0.4586928 0.1201537 +0.3944623 0.4586928 0.1201537 +0.4085988 0.4586928 0.1201537 +0.4220313 0.4586928 0.1201537 +0.4348222 0.4586928 0.1201537 +0.4470264 0.4586928 0.1201537 +0.4586928 0.4586928 0.1201537 +0.4698649 0.4586928 0.1201537 +0.4805811 0.4586928 0.1201537 +0.490876 0.4586928 0.1201537 +0.5007803 0.4586928 0.1201537 +0.510322 0.4586928 0.1201537 +0.5195258 0.4586928 0.1201537 +0.5284142 0.4586928 0.1201537 +0.5370079 0.4586928 0.1201537 +0.5453253 0.4586928 0.1201537 +0.5533834 0.4586928 0.1201537 +0.5611974 0.4586928 0.1201537 +0.5687816 0.4586928 0.1201537 +0.092819 0.4698649 0.1201537 +0.1056428 0.4698649 0.1201537 +0.1201537 0.4698649 0.1201537 +0.1409607 0.4698649 0.1201537 +0.1678172 0.4698649 0.1201537 +0.1950164 0.4698649 0.1201537 +0.2210581 0.4698649 0.1201537 +0.245636 0.4698649 0.1201537 +0.2686816 0.4698649 0.1201537 +0.2902431 0.4698649 0.1201537 +0.3104189 0.4698649 0.1201537 +0.3293248 0.4698649 0.1201537 +0.3470774 0.4698649 0.1201537 +0.3637862 0.4698649 0.1201537 +0.3795513 0.4698649 0.1201537 +0.3944623 0.4698649 0.1201537 +0.4085988 0.4698649 0.1201537 +0.4220313 0.4698649 0.1201537 +0.4348222 0.4698649 0.1201537 +0.4470264 0.4698649 0.1201537 +0.4586928 0.4698649 0.1201537 +0.4698649 0.4698649 0.1201537 +0.4805811 0.4698649 0.1201537 +0.490876 0.4698649 0.1201537 +0.5007803 0.4698649 0.1201537 +0.510322 0.4698649 0.1201537 +0.5195258 0.4698649 0.1201537 +0.5284142 0.4698649 0.1201537 +0.5370079 0.4698649 0.1201537 +0.5453253 0.4698649 0.1201537 +0.5533834 0.4698649 0.1201537 +0.5611974 0.4698649 0.1201537 +0.5687816 0.4698649 0.1201537 +0.092819 0.4805811 0.1201537 +0.1056428 0.4805811 0.1201537 +0.1201537 0.4805811 0.1201537 +0.1409607 0.4805811 0.1201537 +0.1678172 0.4805811 0.1201537 +0.1950164 0.4805811 0.1201537 +0.2210581 0.4805811 0.1201537 +0.245636 0.4805811 0.1201537 +0.2686816 0.4805811 0.1201537 +0.2902431 0.4805811 0.1201537 +0.3104189 0.4805811 0.1201537 +0.3293248 0.4805811 0.1201537 +0.3470774 0.4805811 0.1201537 +0.3637862 0.4805811 0.1201537 +0.3795513 0.4805811 0.1201537 +0.3944623 0.4805811 0.1201537 +0.4085988 0.4805811 0.1201537 +0.4220313 0.4805811 0.1201537 +0.4348222 0.4805811 0.1201537 +0.4470264 0.4805811 0.1201537 +0.4586928 0.4805811 0.1201537 +0.4698649 0.4805811 0.1201537 +0.4805811 0.4805811 0.1201537 +0.490876 0.4805811 0.1201537 +0.5007803 0.4805811 0.1201537 +0.510322 0.4805811 0.1201537 +0.5195258 0.4805811 0.1201537 +0.5284142 0.4805811 0.1201537 +0.5370079 0.4805811 0.1201537 +0.5453253 0.4805811 0.1201537 +0.5533834 0.4805811 0.1201537 +0.5611974 0.4805811 0.1201537 +0.5687816 0.4805811 0.1201537 +0.092819 0.490876 0.1201537 +0.1056428 0.490876 0.1201537 +0.1201537 0.490876 0.1201537 +0.1409607 0.490876 0.1201537 +0.1678172 0.490876 0.1201537 +0.1950164 0.490876 0.1201537 +0.2210581 0.490876 0.1201537 +0.245636 0.490876 0.1201537 +0.2686816 0.490876 0.1201537 +0.2902431 0.490876 0.1201537 +0.3104189 0.490876 0.1201537 +0.3293248 0.490876 0.1201537 +0.3470774 0.490876 0.1201537 +0.3637862 0.490876 0.1201537 +0.3795513 0.490876 0.1201537 +0.3944623 0.490876 0.1201537 +0.4085988 0.490876 0.1201537 +0.4220313 0.490876 0.1201537 +0.4348222 0.490876 0.1201537 +0.4470264 0.490876 0.1201537 +0.4586928 0.490876 0.1201537 +0.4698649 0.490876 0.1201537 +0.4805811 0.490876 0.1201537 +0.490876 0.490876 0.1201537 +0.5007803 0.490876 0.1201537 +0.510322 0.490876 0.1201537 +0.5195258 0.490876 0.1201537 +0.5284142 0.490876 0.1201537 +0.5370079 0.490876 0.1201537 +0.5453253 0.490876 0.1201537 +0.5533834 0.490876 0.1201537 +0.5611974 0.490876 0.1201537 +0.5687816 0.490876 0.1201537 +0.092819 0.5007803 0.1201537 +0.1056428 0.5007803 0.1201537 +0.1201537 0.5007803 0.1201537 +0.1409607 0.5007803 0.1201537 +0.1678172 0.5007803 0.1201537 +0.1950164 0.5007803 0.1201537 +0.2210581 0.5007803 0.1201537 +0.245636 0.5007803 0.1201537 +0.2686816 0.5007803 0.1201537 +0.2902431 0.5007803 0.1201537 +0.3104189 0.5007803 0.1201537 +0.3293248 0.5007803 0.1201537 +0.3470774 0.5007803 0.1201537 +0.3637862 0.5007803 0.1201537 +0.3795513 0.5007803 0.1201537 +0.3944623 0.5007803 0.1201537 +0.4085988 0.5007803 0.1201537 +0.4220313 0.5007803 0.1201537 +0.4348222 0.5007803 0.1201537 +0.4470264 0.5007803 0.1201537 +0.4586928 0.5007803 0.1201537 +0.4698649 0.5007803 0.1201537 +0.4805811 0.5007803 0.1201537 +0.490876 0.5007803 0.1201537 +0.5007803 0.5007803 0.1201537 +0.510322 0.5007803 0.1201537 +0.5195258 0.5007803 0.1201537 +0.5284142 0.5007803 0.1201537 +0.5370079 0.5007803 0.1201537 +0.5453253 0.5007803 0.1201537 +0.5533834 0.5007803 0.1201537 +0.5611974 0.5007803 0.1201537 +0.5687816 0.5007803 0.1201537 +0.092819 0.510322 0.1201537 +0.1056428 0.510322 0.1201537 +0.1201537 0.510322 0.1201537 +0.1409607 0.510322 0.1201537 +0.1678172 0.510322 0.1201537 +0.1950164 0.510322 0.1201537 +0.2210581 0.510322 0.1201537 +0.245636 0.510322 0.1201537 +0.2686816 0.510322 0.1201537 +0.2902431 0.510322 0.1201537 +0.3104189 0.510322 0.1201537 +0.3293248 0.510322 0.1201537 +0.3470774 0.510322 0.1201537 +0.3637862 0.510322 0.1201537 +0.3795513 0.510322 0.1201537 +0.3944623 0.510322 0.1201537 +0.4085988 0.510322 0.1201537 +0.4220313 0.510322 0.1201537 +0.4348222 0.510322 0.1201537 +0.4470264 0.510322 0.1201537 +0.4586928 0.510322 0.1201537 +0.4698649 0.510322 0.1201537 +0.4805811 0.510322 0.1201537 +0.490876 0.510322 0.1201537 +0.5007803 0.510322 0.1201537 +0.510322 0.510322 0.1201537 +0.5195258 0.510322 0.1201537 +0.5284142 0.510322 0.1201537 +0.5370079 0.510322 0.1201537 +0.5453253 0.510322 0.1201537 +0.5533834 0.510322 0.1201537 +0.5611974 0.510322 0.1201537 +0.5687816 0.510322 0.1201537 +0.092819 0.5195258 0.1201537 +0.1056428 0.5195258 0.1201537 +0.1201537 0.5195258 0.1201537 +0.1409607 0.5195258 0.1201537 +0.1678172 0.5195258 0.1201537 +0.1950164 0.5195258 0.1201537 +0.2210581 0.5195258 0.1201537 +0.245636 0.5195258 0.1201537 +0.2686816 0.5195258 0.1201537 +0.2902431 0.5195258 0.1201537 +0.3104189 0.5195258 0.1201537 +0.3293248 0.5195258 0.1201537 +0.3470774 0.5195258 0.1201537 +0.3637862 0.5195258 0.1201537 +0.3795513 0.5195258 0.1201537 +0.3944623 0.5195258 0.1201537 +0.4085988 0.5195258 0.1201537 +0.4220313 0.5195258 0.1201537 +0.4348222 0.5195258 0.1201537 +0.4470264 0.5195258 0.1201537 +0.4586928 0.5195258 0.1201537 +0.4698649 0.5195258 0.1201537 +0.4805811 0.5195258 0.1201537 +0.490876 0.5195258 0.1201537 +0.5007803 0.5195258 0.1201537 +0.510322 0.5195258 0.1201537 +0.5195258 0.5195258 0.1201537 +0.5284142 0.5195258 0.1201537 +0.5370079 0.5195258 0.1201537 +0.5453253 0.5195258 0.1201537 +0.5533834 0.5195258 0.1201537 +0.5611974 0.5195258 0.1201537 +0.5687816 0.5195258 0.1201537 +0.092819 0.5284142 0.1201537 +0.1056428 0.5284142 0.1201537 +0.1201537 0.5284142 0.1201537 +0.1409607 0.5284142 0.1201537 +0.1678172 0.5284142 0.1201537 +0.1950164 0.5284142 0.1201537 +0.2210581 0.5284142 0.1201537 +0.245636 0.5284142 0.1201537 +0.2686816 0.5284142 0.1201537 +0.2902431 0.5284142 0.1201537 +0.3104189 0.5284142 0.1201537 +0.3293248 0.5284142 0.1201537 +0.3470774 0.5284142 0.1201537 +0.3637862 0.5284142 0.1201537 +0.3795513 0.5284142 0.1201537 +0.3944623 0.5284142 0.1201537 +0.4085988 0.5284142 0.1201537 +0.4220313 0.5284142 0.1201537 +0.4348222 0.5284142 0.1201537 +0.4470264 0.5284142 0.1201537 +0.4586928 0.5284142 0.1201537 +0.4698649 0.5284142 0.1201537 +0.4805811 0.5284142 0.1201537 +0.490876 0.5284142 0.1201537 +0.5007803 0.5284142 0.1201537 +0.510322 0.5284142 0.1201537 +0.5195258 0.5284142 0.1201537 +0.5284142 0.5284142 0.1201537 +0.5370079 0.5284142 0.1201537 +0.5453253 0.5284142 0.1201537 +0.5533834 0.5284142 0.1201537 +0.5611974 0.5284142 0.1201537 +0.5687816 0.5284142 0.1201537 +0.092819 0.5370079 0.1201537 +0.1056428 0.5370079 0.1201537 +0.1201537 0.5370079 0.1201537 +0.1409607 0.5370079 0.1201537 +0.1678172 0.5370079 0.1201537 +0.1950164 0.5370079 0.1201537 +0.2210581 0.5370079 0.1201537 +0.245636 0.5370079 0.1201537 +0.2686816 0.5370079 0.1201537 +0.2902431 0.5370079 0.1201537 +0.3104189 0.5370079 0.1201537 +0.3293248 0.5370079 0.1201537 +0.3470774 0.5370079 0.1201537 +0.3637862 0.5370079 0.1201537 +0.3795513 0.5370079 0.1201537 +0.3944623 0.5370079 0.1201537 +0.4085988 0.5370079 0.1201537 +0.4220313 0.5370079 0.1201537 +0.4348222 0.5370079 0.1201537 +0.4470264 0.5370079 0.1201537 +0.4586928 0.5370079 0.1201537 +0.4698649 0.5370079 0.1201537 +0.4805811 0.5370079 0.1201537 +0.490876 0.5370079 0.1201537 +0.5007803 0.5370079 0.1201537 +0.510322 0.5370079 0.1201537 +0.5195258 0.5370079 0.1201537 +0.5284142 0.5370079 0.1201537 +0.5370079 0.5370079 0.1201537 +0.5453253 0.5370079 0.1201537 +0.5533834 0.5370079 0.1201537 +0.5611974 0.5370079 0.1201537 +0.5687816 0.5370079 0.1201537 +0.092819 0.5453253 0.1201537 +0.1056428 0.5453253 0.1201537 +0.1201537 0.5453253 0.1201537 +0.1409607 0.5453253 0.1201537 +0.1678172 0.5453253 0.1201537 +0.1950164 0.5453253 0.1201537 +0.2210581 0.5453253 0.1201537 +0.245636 0.5453253 0.1201537 +0.2686816 0.5453253 0.1201537 +0.2902431 0.5453253 0.1201537 +0.3104189 0.5453253 0.1201537 +0.3293248 0.5453253 0.1201537 +0.3470774 0.5453253 0.1201537 +0.3637862 0.5453253 0.1201537 +0.3795513 0.5453253 0.1201537 +0.3944623 0.5453253 0.1201537 +0.4085988 0.5453253 0.1201537 +0.4220313 0.5453253 0.1201537 +0.4348222 0.5453253 0.1201537 +0.4470264 0.5453253 0.1201537 +0.4586928 0.5453253 0.1201537 +0.4698649 0.5453253 0.1201537 +0.4805811 0.5453253 0.1201537 +0.490876 0.5453253 0.1201537 +0.5007803 0.5453253 0.1201537 +0.510322 0.5453253 0.1201537 +0.5195258 0.5453253 0.1201537 +0.5284142 0.5453253 0.1201537 +0.5370079 0.5453253 0.1201537 +0.5453253 0.5453253 0.1201537 +0.5533834 0.5453253 0.1201537 +0.5611974 0.5453253 0.1201537 +0.5687816 0.5453253 0.1201537 +0.092819 0.5533834 0.1201537 +0.1056428 0.5533834 0.1201537 +0.1201537 0.5533834 0.1201537 +0.1409607 0.5533834 0.1201537 +0.1678172 0.5533834 0.1201537 +0.1950164 0.5533834 0.1201537 +0.2210581 0.5533834 0.1201537 +0.245636 0.5533834 0.1201537 +0.2686816 0.5533834 0.1201537 +0.2902431 0.5533834 0.1201537 +0.3104189 0.5533834 0.1201537 +0.3293248 0.5533834 0.1201537 +0.3470774 0.5533834 0.1201537 +0.3637862 0.5533834 0.1201537 +0.3795513 0.5533834 0.1201537 +0.3944623 0.5533834 0.1201537 +0.4085988 0.5533834 0.1201537 +0.4220313 0.5533834 0.1201537 +0.4348222 0.5533834 0.1201537 +0.4470264 0.5533834 0.1201537 +0.4586928 0.5533834 0.1201537 +0.4698649 0.5533834 0.1201537 +0.4805811 0.5533834 0.1201537 +0.490876 0.5533834 0.1201537 +0.5007803 0.5533834 0.1201537 +0.510322 0.5533834 0.1201537 +0.5195258 0.5533834 0.1201537 +0.5284142 0.5533834 0.1201537 +0.5370079 0.5533834 0.1201537 +0.5453253 0.5533834 0.1201537 +0.5533834 0.5533834 0.1201537 +0.5611974 0.5533834 0.1201537 +0.5687816 0.5533834 0.1201537 +0.092819 0.5611974 0.1201537 +0.1056428 0.5611974 0.1201537 +0.1201537 0.5611974 0.1201537 +0.1409607 0.5611974 0.1201537 +0.1678172 0.5611974 0.1201537 +0.1950164 0.5611974 0.1201537 +0.2210581 0.5611974 0.1201537 +0.245636 0.5611974 0.1201537 +0.2686816 0.5611974 0.1201537 +0.2902431 0.5611974 0.1201537 +0.3104189 0.5611974 0.1201537 +0.3293248 0.5611974 0.1201537 +0.3470774 0.5611974 0.1201537 +0.3637862 0.5611974 0.1201537 +0.3795513 0.5611974 0.1201537 +0.3944623 0.5611974 0.1201537 +0.4085988 0.5611974 0.1201537 +0.4220313 0.5611974 0.1201537 +0.4348222 0.5611974 0.1201537 +0.4470264 0.5611974 0.1201537 +0.4586928 0.5611974 0.1201537 +0.4698649 0.5611974 0.1201537 +0.4805811 0.5611974 0.1201537 +0.490876 0.5611974 0.1201537 +0.5007803 0.5611974 0.1201537 +0.510322 0.5611974 0.1201537 +0.5195258 0.5611974 0.1201537 +0.5284142 0.5611974 0.1201537 +0.5370079 0.5611974 0.1201537 +0.5453253 0.5611974 0.1201537 +0.5533834 0.5611974 0.1201537 +0.5611974 0.5611974 0.1201537 +0.5687816 0.5611974 0.1201537 +0.092819 0.5687816 0.1201537 +0.1056428 0.5687816 0.1201537 +0.1201537 0.5687816 0.1201537 +0.1409607 0.5687816 0.1201537 +0.1678172 0.5687816 0.1201537 +0.1950164 0.5687816 0.1201537 +0.2210581 0.5687816 0.1201537 +0.245636 0.5687816 0.1201537 +0.2686816 0.5687816 0.1201537 +0.2902431 0.5687816 0.1201537 +0.3104189 0.5687816 0.1201537 +0.3293248 0.5687816 0.1201537 +0.3470774 0.5687816 0.1201537 +0.3637862 0.5687816 0.1201537 +0.3795513 0.5687816 0.1201537 +0.3944623 0.5687816 0.1201537 +0.4085988 0.5687816 0.1201537 +0.4220313 0.5687816 0.1201537 +0.4348222 0.5687816 0.1201537 +0.4470264 0.5687816 0.1201537 +0.4586928 0.5687816 0.1201537 +0.4698649 0.5687816 0.1201537 +0.4805811 0.5687816 0.1201537 +0.490876 0.5687816 0.1201537 +0.5007803 0.5687816 0.1201537 +0.510322 0.5687816 0.1201537 +0.5195258 0.5687816 0.1201537 +0.5284142 0.5687816 0.1201537 +0.5370079 0.5687816 0.1201537 +0.5453253 0.5687816 0.1201537 +0.5533834 0.5687816 0.1201537 +0.5611974 0.5687816 0.1201537 +0.5687816 0.5687816 0.1201537 +0.092819 0.092819 0.1409607 +0.1056428 0.092819 0.1409607 +0.1201537 0.092819 0.1409607 +0.1409607 0.092819 0.1409607 +0.1678172 0.092819 0.1409607 +0.1950164 0.092819 0.1409607 +0.2210581 0.092819 0.1409607 +0.245636 0.092819 0.1409607 +0.2686816 0.092819 0.1409607 +0.2902431 0.092819 0.1409607 +0.3104189 0.092819 0.1409607 +0.3293248 0.092819 0.1409607 +0.3470774 0.092819 0.1409607 +0.3637862 0.092819 0.1409607 +0.3795513 0.092819 0.1409607 +0.3944623 0.092819 0.1409607 +0.4085988 0.092819 0.1409607 +0.4220313 0.092819 0.1409607 +0.4348222 0.092819 0.1409607 +0.4470264 0.092819 0.1409607 +0.4586928 0.092819 0.1409607 +0.4698649 0.092819 0.1409607 +0.4805811 0.092819 0.1409607 +0.490876 0.092819 0.1409607 +0.5007803 0.092819 0.1409607 +0.510322 0.092819 0.1409607 +0.5195258 0.092819 0.1409607 +0.5284142 0.092819 0.1409607 +0.5370079 0.092819 0.1409607 +0.5453253 0.092819 0.1409607 +0.5533834 0.092819 0.1409607 +0.5611974 0.092819 0.1409607 +0.5687816 0.092819 0.1409607 +0.092819 0.1056428 0.1409607 +0.1056428 0.1056428 0.1409607 +0.1201537 0.1056428 0.1409607 +0.1409607 0.1056428 0.1409607 +0.1678172 0.1056428 0.1409607 +0.1950164 0.1056428 0.1409607 +0.2210581 0.1056428 0.1409607 +0.245636 0.1056428 0.1409607 +0.2686816 0.1056428 0.1409607 +0.2902431 0.1056428 0.1409607 +0.3104189 0.1056428 0.1409607 +0.3293248 0.1056428 0.1409607 +0.3470774 0.1056428 0.1409607 +0.3637862 0.1056428 0.1409607 +0.3795513 0.1056428 0.1409607 +0.3944623 0.1056428 0.1409607 +0.4085988 0.1056428 0.1409607 +0.4220313 0.1056428 0.1409607 +0.4348222 0.1056428 0.1409607 +0.4470264 0.1056428 0.1409607 +0.4586928 0.1056428 0.1409607 +0.4698649 0.1056428 0.1409607 +0.4805811 0.1056428 0.1409607 +0.490876 0.1056428 0.1409607 +0.5007803 0.1056428 0.1409607 +0.510322 0.1056428 0.1409607 +0.5195258 0.1056428 0.1409607 +0.5284142 0.1056428 0.1409607 +0.5370079 0.1056428 0.1409607 +0.5453253 0.1056428 0.1409607 +0.5533834 0.1056428 0.1409607 +0.5611974 0.1056428 0.1409607 +0.5687816 0.1056428 0.1409607 +0.092819 0.1201537 0.1409607 +0.1056428 0.1201537 0.1409607 +0.1201537 0.1201537 0.1409607 +0.1409607 0.1201537 0.1409607 +0.1678172 0.1201537 0.1409607 +0.1950164 0.1201537 0.1409607 +0.2210581 0.1201537 0.1409607 +0.245636 0.1201537 0.1409607 +0.2686816 0.1201537 0.1409607 +0.2902431 0.1201537 0.1409607 +0.3104189 0.1201537 0.1409607 +0.3293248 0.1201537 0.1409607 +0.3470774 0.1201537 0.1409607 +0.3637862 0.1201537 0.1409607 +0.3795513 0.1201537 0.1409607 +0.3944623 0.1201537 0.1409607 +0.4085988 0.1201537 0.1409607 +0.4220313 0.1201537 0.1409607 +0.4348222 0.1201537 0.1409607 +0.4470264 0.1201537 0.1409607 +0.4586928 0.1201537 0.1409607 +0.4698649 0.1201537 0.1409607 +0.4805811 0.1201537 0.1409607 +0.490876 0.1201537 0.1409607 +0.5007803 0.1201537 0.1409607 +0.510322 0.1201537 0.1409607 +0.5195258 0.1201537 0.1409607 +0.5284142 0.1201537 0.1409607 +0.5370079 0.1201537 0.1409607 +0.5453253 0.1201537 0.1409607 +0.5533834 0.1201537 0.1409607 +0.5611974 0.1201537 0.1409607 +0.5687816 0.1201537 0.1409607 +0.092819 0.1409607 0.1409607 +0.1056428 0.1409607 0.1409607 +0.1201537 0.1409607 0.1409607 +0.1409607 0.1409607 0.1409607 +0.1678172 0.1409607 0.1409607 +0.1950164 0.1409607 0.1409607 +0.2210581 0.1409607 0.1409607 +0.245636 0.1409607 0.1409607 +0.2686816 0.1409607 0.1409607 +0.2902431 0.1409607 0.1409607 +0.3104189 0.1409607 0.1409607 +0.3293248 0.1409607 0.1409607 +0.3470774 0.1409607 0.1409607 +0.3637862 0.1409607 0.1409607 +0.3795513 0.1409607 0.1409607 +0.3944623 0.1409607 0.1409607 +0.4085988 0.1409607 0.1409607 +0.4220313 0.1409607 0.1409607 +0.4348222 0.1409607 0.1409607 +0.4470264 0.1409607 0.1409607 +0.4586928 0.1409607 0.1409607 +0.4698649 0.1409607 0.1409607 +0.4805811 0.1409607 0.1409607 +0.490876 0.1409607 0.1409607 +0.5007803 0.1409607 0.1409607 +0.510322 0.1409607 0.1409607 +0.5195258 0.1409607 0.1409607 +0.5284142 0.1409607 0.1409607 +0.5370079 0.1409607 0.1409607 +0.5453253 0.1409607 0.1409607 +0.5533834 0.1409607 0.1409607 +0.5611974 0.1409607 0.1409607 +0.5687816 0.1409607 0.1409607 +0.092819 0.1678172 0.1409607 +0.1056428 0.1678172 0.1409607 +0.1201537 0.1678172 0.1409607 +0.1409607 0.1678172 0.1409607 +0.1678172 0.1678172 0.1409607 +0.1950164 0.1678172 0.1409607 +0.2210581 0.1678172 0.1409607 +0.245636 0.1678172 0.1409607 +0.2686816 0.1678172 0.1409607 +0.2902431 0.1678172 0.1409607 +0.3104189 0.1678172 0.1409607 +0.3293248 0.1678172 0.1409607 +0.3470774 0.1678172 0.1409607 +0.3637862 0.1678172 0.1409607 +0.3795513 0.1678172 0.1409607 +0.3944623 0.1678172 0.1409607 +0.4085988 0.1678172 0.1409607 +0.4220313 0.1678172 0.1409607 +0.4348222 0.1678172 0.1409607 +0.4470264 0.1678172 0.1409607 +0.4586928 0.1678172 0.1409607 +0.4698649 0.1678172 0.1409607 +0.4805811 0.1678172 0.1409607 +0.490876 0.1678172 0.1409607 +0.5007803 0.1678172 0.1409607 +0.510322 0.1678172 0.1409607 +0.5195258 0.1678172 0.1409607 +0.5284142 0.1678172 0.1409607 +0.5370079 0.1678172 0.1409607 +0.5453253 0.1678172 0.1409607 +0.5533834 0.1678172 0.1409607 +0.5611974 0.1678172 0.1409607 +0.5687816 0.1678172 0.1409607 +0.092819 0.1950164 0.1409607 +0.1056428 0.1950164 0.1409607 +0.1201537 0.1950164 0.1409607 +0.1409607 0.1950164 0.1409607 +0.1678172 0.1950164 0.1409607 +0.1950164 0.1950164 0.1409607 +0.2210581 0.1950164 0.1409607 +0.245636 0.1950164 0.1409607 +0.2686816 0.1950164 0.1409607 +0.2902431 0.1950164 0.1409607 +0.3104189 0.1950164 0.1409607 +0.3293248 0.1950164 0.1409607 +0.3470774 0.1950164 0.1409607 +0.3637862 0.1950164 0.1409607 +0.3795513 0.1950164 0.1409607 +0.3944623 0.1950164 0.1409607 +0.4085988 0.1950164 0.1409607 +0.4220313 0.1950164 0.1409607 +0.4348222 0.1950164 0.1409607 +0.4470264 0.1950164 0.1409607 +0.4586928 0.1950164 0.1409607 +0.4698649 0.1950164 0.1409607 +0.4805811 0.1950164 0.1409607 +0.490876 0.1950164 0.1409607 +0.5007803 0.1950164 0.1409607 +0.510322 0.1950164 0.1409607 +0.5195258 0.1950164 0.1409607 +0.5284142 0.1950164 0.1409607 +0.5370079 0.1950164 0.1409607 +0.5453253 0.1950164 0.1409607 +0.5533834 0.1950164 0.1409607 +0.5611974 0.1950164 0.1409607 +0.5687816 0.1950164 0.1409607 +0.092819 0.2210581 0.1409607 +0.1056428 0.2210581 0.1409607 +0.1201537 0.2210581 0.1409607 +0.1409607 0.2210581 0.1409607 +0.1678172 0.2210581 0.1409607 +0.1950164 0.2210581 0.1409607 +0.2210581 0.2210581 0.1409607 +0.245636 0.2210581 0.1409607 +0.2686816 0.2210581 0.1409607 +0.2902431 0.2210581 0.1409607 +0.3104189 0.2210581 0.1409607 +0.3293248 0.2210581 0.1409607 +0.3470774 0.2210581 0.1409607 +0.3637862 0.2210581 0.1409607 +0.3795513 0.2210581 0.1409607 +0.3944623 0.2210581 0.1409607 +0.4085988 0.2210581 0.1409607 +0.4220313 0.2210581 0.1409607 +0.4348222 0.2210581 0.1409607 +0.4470264 0.2210581 0.1409607 +0.4586928 0.2210581 0.1409607 +0.4698649 0.2210581 0.1409607 +0.4805811 0.2210581 0.1409607 +0.490876 0.2210581 0.1409607 +0.5007803 0.2210581 0.1409607 +0.510322 0.2210581 0.1409607 +0.5195258 0.2210581 0.1409607 +0.5284142 0.2210581 0.1409607 +0.5370079 0.2210581 0.1409607 +0.5453253 0.2210581 0.1409607 +0.5533834 0.2210581 0.1409607 +0.5611974 0.2210581 0.1409607 +0.5687816 0.2210581 0.1409607 +0.092819 0.245636 0.1409607 +0.1056428 0.245636 0.1409607 +0.1201537 0.245636 0.1409607 +0.1409607 0.245636 0.1409607 +0.1678172 0.245636 0.1409607 +0.1950164 0.245636 0.1409607 +0.2210581 0.245636 0.1409607 +0.245636 0.245636 0.1409607 +0.2686816 0.245636 0.1409607 +0.2902431 0.245636 0.1409607 +0.3104189 0.245636 0.1409607 +0.3293248 0.245636 0.1409607 +0.3470774 0.245636 0.1409607 +0.3637862 0.245636 0.1409607 +0.3795513 0.245636 0.1409607 +0.3944623 0.245636 0.1409607 +0.4085988 0.245636 0.1409607 +0.4220313 0.245636 0.1409607 +0.4348222 0.245636 0.1409607 +0.4470264 0.245636 0.1409607 +0.4586928 0.245636 0.1409607 +0.4698649 0.245636 0.1409607 +0.4805811 0.245636 0.1409607 +0.490876 0.245636 0.1409607 +0.5007803 0.245636 0.1409607 +0.510322 0.245636 0.1409607 +0.5195258 0.245636 0.1409607 +0.5284142 0.245636 0.1409607 +0.5370079 0.245636 0.1409607 +0.5453253 0.245636 0.1409607 +0.5533834 0.245636 0.1409607 +0.5611974 0.245636 0.1409607 +0.5687816 0.245636 0.1409607 +0.092819 0.2686816 0.1409607 +0.1056428 0.2686816 0.1409607 +0.1201537 0.2686816 0.1409607 +0.1409607 0.2686816 0.1409607 +0.1678172 0.2686816 0.1409607 +0.1950164 0.2686816 0.1409607 +0.2210581 0.2686816 0.1409607 +0.245636 0.2686816 0.1409607 +0.2686816 0.2686816 0.1409607 +0.2902431 0.2686816 0.1409607 +0.3104189 0.2686816 0.1409607 +0.3293248 0.2686816 0.1409607 +0.3470774 0.2686816 0.1409607 +0.3637862 0.2686816 0.1409607 +0.3795513 0.2686816 0.1409607 +0.3944623 0.2686816 0.1409607 +0.4085988 0.2686816 0.1409607 +0.4220313 0.2686816 0.1409607 +0.4348222 0.2686816 0.1409607 +0.4470264 0.2686816 0.1409607 +0.4586928 0.2686816 0.1409607 +0.4698649 0.2686816 0.1409607 +0.4805811 0.2686816 0.1409607 +0.490876 0.2686816 0.1409607 +0.5007803 0.2686816 0.1409607 +0.510322 0.2686816 0.1409607 +0.5195258 0.2686816 0.1409607 +0.5284142 0.2686816 0.1409607 +0.5370079 0.2686816 0.1409607 +0.5453253 0.2686816 0.1409607 +0.5533834 0.2686816 0.1409607 +0.5611974 0.2686816 0.1409607 +0.5687816 0.2686816 0.1409607 +0.092819 0.2902431 0.1409607 +0.1056428 0.2902431 0.1409607 +0.1201537 0.2902431 0.1409607 +0.1409607 0.2902431 0.1409607 +0.1678172 0.2902431 0.1409607 +0.1950164 0.2902431 0.1409607 +0.2210581 0.2902431 0.1409607 +0.245636 0.2902431 0.1409607 +0.2686816 0.2902431 0.1409607 +0.2902431 0.2902431 0.1409607 +0.3104189 0.2902431 0.1409607 +0.3293248 0.2902431 0.1409607 +0.3470774 0.2902431 0.1409607 +0.3637862 0.2902431 0.1409607 +0.3795513 0.2902431 0.1409607 +0.3944623 0.2902431 0.1409607 +0.4085988 0.2902431 0.1409607 +0.4220313 0.2902431 0.1409607 +0.4348222 0.2902431 0.1409607 +0.4470264 0.2902431 0.1409607 +0.4586928 0.2902431 0.1409607 +0.4698649 0.2902431 0.1409607 +0.4805811 0.2902431 0.1409607 +0.490876 0.2902431 0.1409607 +0.5007803 0.2902431 0.1409607 +0.510322 0.2902431 0.1409607 +0.5195258 0.2902431 0.1409607 +0.5284142 0.2902431 0.1409607 +0.5370079 0.2902431 0.1409607 +0.5453253 0.2902431 0.1409607 +0.5533834 0.2902431 0.1409607 +0.5611974 0.2902431 0.1409607 +0.5687816 0.2902431 0.1409607 +0.092819 0.3104189 0.1409607 +0.1056428 0.3104189 0.1409607 +0.1201537 0.3104189 0.1409607 +0.1409607 0.3104189 0.1409607 +0.1678172 0.3104189 0.1409607 +0.1950164 0.3104189 0.1409607 +0.2210581 0.3104189 0.1409607 +0.245636 0.3104189 0.1409607 +0.2686816 0.3104189 0.1409607 +0.2902431 0.3104189 0.1409607 +0.3104189 0.3104189 0.1409607 +0.3293248 0.3104189 0.1409607 +0.3470774 0.3104189 0.1409607 +0.3637862 0.3104189 0.1409607 +0.3795513 0.3104189 0.1409607 +0.3944623 0.3104189 0.1409607 +0.4085988 0.3104189 0.1409607 +0.4220313 0.3104189 0.1409607 +0.4348222 0.3104189 0.1409607 +0.4470264 0.3104189 0.1409607 +0.4586928 0.3104189 0.1409607 +0.4698649 0.3104189 0.1409607 +0.4805811 0.3104189 0.1409607 +0.490876 0.3104189 0.1409607 +0.5007803 0.3104189 0.1409607 +0.510322 0.3104189 0.1409607 +0.5195258 0.3104189 0.1409607 +0.5284142 0.3104189 0.1409607 +0.5370079 0.3104189 0.1409607 +0.5453253 0.3104189 0.1409607 +0.5533834 0.3104189 0.1409607 +0.5611974 0.3104189 0.1409607 +0.5687816 0.3104189 0.1409607 +0.092819 0.3293248 0.1409607 +0.1056428 0.3293248 0.1409607 +0.1201537 0.3293248 0.1409607 +0.1409607 0.3293248 0.1409607 +0.1678172 0.3293248 0.1409607 +0.1950164 0.3293248 0.1409607 +0.2210581 0.3293248 0.1409607 +0.245636 0.3293248 0.1409607 +0.2686816 0.3293248 0.1409607 +0.2902431 0.3293248 0.1409607 +0.3104189 0.3293248 0.1409607 +0.3293248 0.3293248 0.1409607 +0.3470774 0.3293248 0.1409607 +0.3637862 0.3293248 0.1409607 +0.3795513 0.3293248 0.1409607 +0.3944623 0.3293248 0.1409607 +0.4085988 0.3293248 0.1409607 +0.4220313 0.3293248 0.1409607 +0.4348222 0.3293248 0.1409607 +0.4470264 0.3293248 0.1409607 +0.4586928 0.3293248 0.1409607 +0.4698649 0.3293248 0.1409607 +0.4805811 0.3293248 0.1409607 +0.490876 0.3293248 0.1409607 +0.5007803 0.3293248 0.1409607 +0.510322 0.3293248 0.1409607 +0.5195258 0.3293248 0.1409607 +0.5284142 0.3293248 0.1409607 +0.5370079 0.3293248 0.1409607 +0.5453253 0.3293248 0.1409607 +0.5533834 0.3293248 0.1409607 +0.5611974 0.3293248 0.1409607 +0.5687816 0.3293248 0.1409607 +0.092819 0.3470774 0.1409607 +0.1056428 0.3470774 0.1409607 +0.1201537 0.3470774 0.1409607 +0.1409607 0.3470774 0.1409607 +0.1678172 0.3470774 0.1409607 +0.1950164 0.3470774 0.1409607 +0.2210581 0.3470774 0.1409607 +0.245636 0.3470774 0.1409607 +0.2686816 0.3470774 0.1409607 +0.2902431 0.3470774 0.1409607 +0.3104189 0.3470774 0.1409607 +0.3293248 0.3470774 0.1409607 +0.3470774 0.3470774 0.1409607 +0.3637862 0.3470774 0.1409607 +0.3795513 0.3470774 0.1409607 +0.3944623 0.3470774 0.1409607 +0.4085988 0.3470774 0.1409607 +0.4220313 0.3470774 0.1409607 +0.4348222 0.3470774 0.1409607 +0.4470264 0.3470774 0.1409607 +0.4586928 0.3470774 0.1409607 +0.4698649 0.3470774 0.1409607 +0.4805811 0.3470774 0.1409607 +0.490876 0.3470774 0.1409607 +0.5007803 0.3470774 0.1409607 +0.510322 0.3470774 0.1409607 +0.5195258 0.3470774 0.1409607 +0.5284142 0.3470774 0.1409607 +0.5370079 0.3470774 0.1409607 +0.5453253 0.3470774 0.1409607 +0.5533834 0.3470774 0.1409607 +0.5611974 0.3470774 0.1409607 +0.5687816 0.3470774 0.1409607 +0.092819 0.3637862 0.1409607 +0.1056428 0.3637862 0.1409607 +0.1201537 0.3637862 0.1409607 +0.1409607 0.3637862 0.1409607 +0.1678172 0.3637862 0.1409607 +0.1950164 0.3637862 0.1409607 +0.2210581 0.3637862 0.1409607 +0.245636 0.3637862 0.1409607 +0.2686816 0.3637862 0.1409607 +0.2902431 0.3637862 0.1409607 +0.3104189 0.3637862 0.1409607 +0.3293248 0.3637862 0.1409607 +0.3470774 0.3637862 0.1409607 +0.3637862 0.3637862 0.1409607 +0.3795513 0.3637862 0.1409607 +0.3944623 0.3637862 0.1409607 +0.4085988 0.3637862 0.1409607 +0.4220313 0.3637862 0.1409607 +0.4348222 0.3637862 0.1409607 +0.4470264 0.3637862 0.1409607 +0.4586928 0.3637862 0.1409607 +0.4698649 0.3637862 0.1409607 +0.4805811 0.3637862 0.1409607 +0.490876 0.3637862 0.1409607 +0.5007803 0.3637862 0.1409607 +0.510322 0.3637862 0.1409607 +0.5195258 0.3637862 0.1409607 +0.5284142 0.3637862 0.1409607 +0.5370079 0.3637862 0.1409607 +0.5453253 0.3637862 0.1409607 +0.5533834 0.3637862 0.1409607 +0.5611974 0.3637862 0.1409607 +0.5687816 0.3637862 0.1409607 +0.092819 0.3795513 0.1409607 +0.1056428 0.3795513 0.1409607 +0.1201537 0.3795513 0.1409607 +0.1409607 0.3795513 0.1409607 +0.1678172 0.3795513 0.1409607 +0.1950164 0.3795513 0.1409607 +0.2210581 0.3795513 0.1409607 +0.245636 0.3795513 0.1409607 +0.2686816 0.3795513 0.1409607 +0.2902431 0.3795513 0.1409607 +0.3104189 0.3795513 0.1409607 +0.3293248 0.3795513 0.1409607 +0.3470774 0.3795513 0.1409607 +0.3637862 0.3795513 0.1409607 +0.3795513 0.3795513 0.1409607 +0.3944623 0.3795513 0.1409607 +0.4085988 0.3795513 0.1409607 +0.4220313 0.3795513 0.1409607 +0.4348222 0.3795513 0.1409607 +0.4470264 0.3795513 0.1409607 +0.4586928 0.3795513 0.1409607 +0.4698649 0.3795513 0.1409607 +0.4805811 0.3795513 0.1409607 +0.490876 0.3795513 0.1409607 +0.5007803 0.3795513 0.1409607 +0.510322 0.3795513 0.1409607 +0.5195258 0.3795513 0.1409607 +0.5284142 0.3795513 0.1409607 +0.5370079 0.3795513 0.1409607 +0.5453253 0.3795513 0.1409607 +0.5533834 0.3795513 0.1409607 +0.5611974 0.3795513 0.1409607 +0.5687816 0.3795513 0.1409607 +0.092819 0.3944623 0.1409607 +0.1056428 0.3944623 0.1409607 +0.1201537 0.3944623 0.1409607 +0.1409607 0.3944623 0.1409607 +0.1678172 0.3944623 0.1409607 +0.1950164 0.3944623 0.1409607 +0.2210581 0.3944623 0.1409607 +0.245636 0.3944623 0.1409607 +0.2686816 0.3944623 0.1409607 +0.2902431 0.3944623 0.1409607 +0.3104189 0.3944623 0.1409607 +0.3293248 0.3944623 0.1409607 +0.3470774 0.3944623 0.1409607 +0.3637862 0.3944623 0.1409607 +0.3795513 0.3944623 0.1409607 +0.3944623 0.3944623 0.1409607 +0.4085988 0.3944623 0.1409607 +0.4220313 0.3944623 0.1409607 +0.4348222 0.3944623 0.1409607 +0.4470264 0.3944623 0.1409607 +0.4586928 0.3944623 0.1409607 +0.4698649 0.3944623 0.1409607 +0.4805811 0.3944623 0.1409607 +0.490876 0.3944623 0.1409607 +0.5007803 0.3944623 0.1409607 +0.510322 0.3944623 0.1409607 +0.5195258 0.3944623 0.1409607 +0.5284142 0.3944623 0.1409607 +0.5370079 0.3944623 0.1409607 +0.5453253 0.3944623 0.1409607 +0.5533834 0.3944623 0.1409607 +0.5611974 0.3944623 0.1409607 +0.5687816 0.3944623 0.1409607 +0.092819 0.4085988 0.1409607 +0.1056428 0.4085988 0.1409607 +0.1201537 0.4085988 0.1409607 +0.1409607 0.4085988 0.1409607 +0.1678172 0.4085988 0.1409607 +0.1950164 0.4085988 0.1409607 +0.2210581 0.4085988 0.1409607 +0.245636 0.4085988 0.1409607 +0.2686816 0.4085988 0.1409607 +0.2902431 0.4085988 0.1409607 +0.3104189 0.4085988 0.1409607 +0.3293248 0.4085988 0.1409607 +0.3470774 0.4085988 0.1409607 +0.3637862 0.4085988 0.1409607 +0.3795513 0.4085988 0.1409607 +0.3944623 0.4085988 0.1409607 +0.4085988 0.4085988 0.1409607 +0.4220313 0.4085988 0.1409607 +0.4348222 0.4085988 0.1409607 +0.4470264 0.4085988 0.1409607 +0.4586928 0.4085988 0.1409607 +0.4698649 0.4085988 0.1409607 +0.4805811 0.4085988 0.1409607 +0.490876 0.4085988 0.1409607 +0.5007803 0.4085988 0.1409607 +0.510322 0.4085988 0.1409607 +0.5195258 0.4085988 0.1409607 +0.5284142 0.4085988 0.1409607 +0.5370079 0.4085988 0.1409607 +0.5453253 0.4085988 0.1409607 +0.5533834 0.4085988 0.1409607 +0.5611974 0.4085988 0.1409607 +0.5687816 0.4085988 0.1409607 +0.092819 0.4220313 0.1409607 +0.1056428 0.4220313 0.1409607 +0.1201537 0.4220313 0.1409607 +0.1409607 0.4220313 0.1409607 +0.1678172 0.4220313 0.1409607 +0.1950164 0.4220313 0.1409607 +0.2210581 0.4220313 0.1409607 +0.245636 0.4220313 0.1409607 +0.2686816 0.4220313 0.1409607 +0.2902431 0.4220313 0.1409607 +0.3104189 0.4220313 0.1409607 +0.3293248 0.4220313 0.1409607 +0.3470774 0.4220313 0.1409607 +0.3637862 0.4220313 0.1409607 +0.3795513 0.4220313 0.1409607 +0.3944623 0.4220313 0.1409607 +0.4085988 0.4220313 0.1409607 +0.4220313 0.4220313 0.1409607 +0.4348222 0.4220313 0.1409607 +0.4470264 0.4220313 0.1409607 +0.4586928 0.4220313 0.1409607 +0.4698649 0.4220313 0.1409607 +0.4805811 0.4220313 0.1409607 +0.490876 0.4220313 0.1409607 +0.5007803 0.4220313 0.1409607 +0.510322 0.4220313 0.1409607 +0.5195258 0.4220313 0.1409607 +0.5284142 0.4220313 0.1409607 +0.5370079 0.4220313 0.1409607 +0.5453253 0.4220313 0.1409607 +0.5533834 0.4220313 0.1409607 +0.5611974 0.4220313 0.1409607 +0.5687816 0.4220313 0.1409607 +0.092819 0.4348222 0.1409607 +0.1056428 0.4348222 0.1409607 +0.1201537 0.4348222 0.1409607 +0.1409607 0.4348222 0.1409607 +0.1678172 0.4348222 0.1409607 +0.1950164 0.4348222 0.1409607 +0.2210581 0.4348222 0.1409607 +0.245636 0.4348222 0.1409607 +0.2686816 0.4348222 0.1409607 +0.2902431 0.4348222 0.1409607 +0.3104189 0.4348222 0.1409607 +0.3293248 0.4348222 0.1409607 +0.3470774 0.4348222 0.1409607 +0.3637862 0.4348222 0.1409607 +0.3795513 0.4348222 0.1409607 +0.3944623 0.4348222 0.1409607 +0.4085988 0.4348222 0.1409607 +0.4220313 0.4348222 0.1409607 +0.4348222 0.4348222 0.1409607 +0.4470264 0.4348222 0.1409607 +0.4586928 0.4348222 0.1409607 +0.4698649 0.4348222 0.1409607 +0.4805811 0.4348222 0.1409607 +0.490876 0.4348222 0.1409607 +0.5007803 0.4348222 0.1409607 +0.510322 0.4348222 0.1409607 +0.5195258 0.4348222 0.1409607 +0.5284142 0.4348222 0.1409607 +0.5370079 0.4348222 0.1409607 +0.5453253 0.4348222 0.1409607 +0.5533834 0.4348222 0.1409607 +0.5611974 0.4348222 0.1409607 +0.5687816 0.4348222 0.1409607 +0.092819 0.4470264 0.1409607 +0.1056428 0.4470264 0.1409607 +0.1201537 0.4470264 0.1409607 +0.1409607 0.4470264 0.1409607 +0.1678172 0.4470264 0.1409607 +0.1950164 0.4470264 0.1409607 +0.2210581 0.4470264 0.1409607 +0.245636 0.4470264 0.1409607 +0.2686816 0.4470264 0.1409607 +0.2902431 0.4470264 0.1409607 +0.3104189 0.4470264 0.1409607 +0.3293248 0.4470264 0.1409607 +0.3470774 0.4470264 0.1409607 +0.3637862 0.4470264 0.1409607 +0.3795513 0.4470264 0.1409607 +0.3944623 0.4470264 0.1409607 +0.4085988 0.4470264 0.1409607 +0.4220313 0.4470264 0.1409607 +0.4348222 0.4470264 0.1409607 +0.4470264 0.4470264 0.1409607 +0.4586928 0.4470264 0.1409607 +0.4698649 0.4470264 0.1409607 +0.4805811 0.4470264 0.1409607 +0.490876 0.4470264 0.1409607 +0.5007803 0.4470264 0.1409607 +0.510322 0.4470264 0.1409607 +0.5195258 0.4470264 0.1409607 +0.5284142 0.4470264 0.1409607 +0.5370079 0.4470264 0.1409607 +0.5453253 0.4470264 0.1409607 +0.5533834 0.4470264 0.1409607 +0.5611974 0.4470264 0.1409607 +0.5687816 0.4470264 0.1409607 +0.092819 0.4586928 0.1409607 +0.1056428 0.4586928 0.1409607 +0.1201537 0.4586928 0.1409607 +0.1409607 0.4586928 0.1409607 +0.1678172 0.4586928 0.1409607 +0.1950164 0.4586928 0.1409607 +0.2210581 0.4586928 0.1409607 +0.245636 0.4586928 0.1409607 +0.2686816 0.4586928 0.1409607 +0.2902431 0.4586928 0.1409607 +0.3104189 0.4586928 0.1409607 +0.3293248 0.4586928 0.1409607 +0.3470774 0.4586928 0.1409607 +0.3637862 0.4586928 0.1409607 +0.3795513 0.4586928 0.1409607 +0.3944623 0.4586928 0.1409607 +0.4085988 0.4586928 0.1409607 +0.4220313 0.4586928 0.1409607 +0.4348222 0.4586928 0.1409607 +0.4470264 0.4586928 0.1409607 +0.4586928 0.4586928 0.1409607 +0.4698649 0.4586928 0.1409607 +0.4805811 0.4586928 0.1409607 +0.490876 0.4586928 0.1409607 +0.5007803 0.4586928 0.1409607 +0.510322 0.4586928 0.1409607 +0.5195258 0.4586928 0.1409607 +0.5284142 0.4586928 0.1409607 +0.5370079 0.4586928 0.1409607 +0.5453253 0.4586928 0.1409607 +0.5533834 0.4586928 0.1409607 +0.5611974 0.4586928 0.1409607 +0.5687816 0.4586928 0.1409607 +0.092819 0.4698649 0.1409607 +0.1056428 0.4698649 0.1409607 +0.1201537 0.4698649 0.1409607 +0.1409607 0.4698649 0.1409607 +0.1678172 0.4698649 0.1409607 +0.1950164 0.4698649 0.1409607 +0.2210581 0.4698649 0.1409607 +0.245636 0.4698649 0.1409607 +0.2686816 0.4698649 0.1409607 +0.2902431 0.4698649 0.1409607 +0.3104189 0.4698649 0.1409607 +0.3293248 0.4698649 0.1409607 +0.3470774 0.4698649 0.1409607 +0.3637862 0.4698649 0.1409607 +0.3795513 0.4698649 0.1409607 +0.3944623 0.4698649 0.1409607 +0.4085988 0.4698649 0.1409607 +0.4220313 0.4698649 0.1409607 +0.4348222 0.4698649 0.1409607 +0.4470264 0.4698649 0.1409607 +0.4586928 0.4698649 0.1409607 +0.4698649 0.4698649 0.1409607 +0.4805811 0.4698649 0.1409607 +0.490876 0.4698649 0.1409607 +0.5007803 0.4698649 0.1409607 +0.510322 0.4698649 0.1409607 +0.5195258 0.4698649 0.1409607 +0.5284142 0.4698649 0.1409607 +0.5370079 0.4698649 0.1409607 +0.5453253 0.4698649 0.1409607 +0.5533834 0.4698649 0.1409607 +0.5611974 0.4698649 0.1409607 +0.5687816 0.4698649 0.1409607 +0.092819 0.4805811 0.1409607 +0.1056428 0.4805811 0.1409607 +0.1201537 0.4805811 0.1409607 +0.1409607 0.4805811 0.1409607 +0.1678172 0.4805811 0.1409607 +0.1950164 0.4805811 0.1409607 +0.2210581 0.4805811 0.1409607 +0.245636 0.4805811 0.1409607 +0.2686816 0.4805811 0.1409607 +0.2902431 0.4805811 0.1409607 +0.3104189 0.4805811 0.1409607 +0.3293248 0.4805811 0.1409607 +0.3470774 0.4805811 0.1409607 +0.3637862 0.4805811 0.1409607 +0.3795513 0.4805811 0.1409607 +0.3944623 0.4805811 0.1409607 +0.4085988 0.4805811 0.1409607 +0.4220313 0.4805811 0.1409607 +0.4348222 0.4805811 0.1409607 +0.4470264 0.4805811 0.1409607 +0.4586928 0.4805811 0.1409607 +0.4698649 0.4805811 0.1409607 +0.4805811 0.4805811 0.1409607 +0.490876 0.4805811 0.1409607 +0.5007803 0.4805811 0.1409607 +0.510322 0.4805811 0.1409607 +0.5195258 0.4805811 0.1409607 +0.5284142 0.4805811 0.1409607 +0.5370079 0.4805811 0.1409607 +0.5453253 0.4805811 0.1409607 +0.5533834 0.4805811 0.1409607 +0.5611974 0.4805811 0.1409607 +0.5687816 0.4805811 0.1409607 +0.092819 0.490876 0.1409607 +0.1056428 0.490876 0.1409607 +0.1201537 0.490876 0.1409607 +0.1409607 0.490876 0.1409607 +0.1678172 0.490876 0.1409607 +0.1950164 0.490876 0.1409607 +0.2210581 0.490876 0.1409607 +0.245636 0.490876 0.1409607 +0.2686816 0.490876 0.1409607 +0.2902431 0.490876 0.1409607 +0.3104189 0.490876 0.1409607 +0.3293248 0.490876 0.1409607 +0.3470774 0.490876 0.1409607 +0.3637862 0.490876 0.1409607 +0.3795513 0.490876 0.1409607 +0.3944623 0.490876 0.1409607 +0.4085988 0.490876 0.1409607 +0.4220313 0.490876 0.1409607 +0.4348222 0.490876 0.1409607 +0.4470264 0.490876 0.1409607 +0.4586928 0.490876 0.1409607 +0.4698649 0.490876 0.1409607 +0.4805811 0.490876 0.1409607 +0.490876 0.490876 0.1409607 +0.5007803 0.490876 0.1409607 +0.510322 0.490876 0.1409607 +0.5195258 0.490876 0.1409607 +0.5284142 0.490876 0.1409607 +0.5370079 0.490876 0.1409607 +0.5453253 0.490876 0.1409607 +0.5533834 0.490876 0.1409607 +0.5611974 0.490876 0.1409607 +0.5687816 0.490876 0.1409607 +0.092819 0.5007803 0.1409607 +0.1056428 0.5007803 0.1409607 +0.1201537 0.5007803 0.1409607 +0.1409607 0.5007803 0.1409607 +0.1678172 0.5007803 0.1409607 +0.1950164 0.5007803 0.1409607 +0.2210581 0.5007803 0.1409607 +0.245636 0.5007803 0.1409607 +0.2686816 0.5007803 0.1409607 +0.2902431 0.5007803 0.1409607 +0.3104189 0.5007803 0.1409607 +0.3293248 0.5007803 0.1409607 +0.3470774 0.5007803 0.1409607 +0.3637862 0.5007803 0.1409607 +0.3795513 0.5007803 0.1409607 +0.3944623 0.5007803 0.1409607 +0.4085988 0.5007803 0.1409607 +0.4220313 0.5007803 0.1409607 +0.4348222 0.5007803 0.1409607 +0.4470264 0.5007803 0.1409607 +0.4586928 0.5007803 0.1409607 +0.4698649 0.5007803 0.1409607 +0.4805811 0.5007803 0.1409607 +0.490876 0.5007803 0.1409607 +0.5007803 0.5007803 0.1409607 +0.510322 0.5007803 0.1409607 +0.5195258 0.5007803 0.1409607 +0.5284142 0.5007803 0.1409607 +0.5370079 0.5007803 0.1409607 +0.5453253 0.5007803 0.1409607 +0.5533834 0.5007803 0.1409607 +0.5611974 0.5007803 0.1409607 +0.5687816 0.5007803 0.1409607 +0.092819 0.510322 0.1409607 +0.1056428 0.510322 0.1409607 +0.1201537 0.510322 0.1409607 +0.1409607 0.510322 0.1409607 +0.1678172 0.510322 0.1409607 +0.1950164 0.510322 0.1409607 +0.2210581 0.510322 0.1409607 +0.245636 0.510322 0.1409607 +0.2686816 0.510322 0.1409607 +0.2902431 0.510322 0.1409607 +0.3104189 0.510322 0.1409607 +0.3293248 0.510322 0.1409607 +0.3470774 0.510322 0.1409607 +0.3637862 0.510322 0.1409607 +0.3795513 0.510322 0.1409607 +0.3944623 0.510322 0.1409607 +0.4085988 0.510322 0.1409607 +0.4220313 0.510322 0.1409607 +0.4348222 0.510322 0.1409607 +0.4470264 0.510322 0.1409607 +0.4586928 0.510322 0.1409607 +0.4698649 0.510322 0.1409607 +0.4805811 0.510322 0.1409607 +0.490876 0.510322 0.1409607 +0.5007803 0.510322 0.1409607 +0.510322 0.510322 0.1409607 +0.5195258 0.510322 0.1409607 +0.5284142 0.510322 0.1409607 +0.5370079 0.510322 0.1409607 +0.5453253 0.510322 0.1409607 +0.5533834 0.510322 0.1409607 +0.5611974 0.510322 0.1409607 +0.5687816 0.510322 0.1409607 +0.092819 0.5195258 0.1409607 +0.1056428 0.5195258 0.1409607 +0.1201537 0.5195258 0.1409607 +0.1409607 0.5195258 0.1409607 +0.1678172 0.5195258 0.1409607 +0.1950164 0.5195258 0.1409607 +0.2210581 0.5195258 0.1409607 +0.245636 0.5195258 0.1409607 +0.2686816 0.5195258 0.1409607 +0.2902431 0.5195258 0.1409607 +0.3104189 0.5195258 0.1409607 +0.3293248 0.5195258 0.1409607 +0.3470774 0.5195258 0.1409607 +0.3637862 0.5195258 0.1409607 +0.3795513 0.5195258 0.1409607 +0.3944623 0.5195258 0.1409607 +0.4085988 0.5195258 0.1409607 +0.4220313 0.5195258 0.1409607 +0.4348222 0.5195258 0.1409607 +0.4470264 0.5195258 0.1409607 +0.4586928 0.5195258 0.1409607 +0.4698649 0.5195258 0.1409607 +0.4805811 0.5195258 0.1409607 +0.490876 0.5195258 0.1409607 +0.5007803 0.5195258 0.1409607 +0.510322 0.5195258 0.1409607 +0.5195258 0.5195258 0.1409607 +0.5284142 0.5195258 0.1409607 +0.5370079 0.5195258 0.1409607 +0.5453253 0.5195258 0.1409607 +0.5533834 0.5195258 0.1409607 +0.5611974 0.5195258 0.1409607 +0.5687816 0.5195258 0.1409607 +0.092819 0.5284142 0.1409607 +0.1056428 0.5284142 0.1409607 +0.1201537 0.5284142 0.1409607 +0.1409607 0.5284142 0.1409607 +0.1678172 0.5284142 0.1409607 +0.1950164 0.5284142 0.1409607 +0.2210581 0.5284142 0.1409607 +0.245636 0.5284142 0.1409607 +0.2686816 0.5284142 0.1409607 +0.2902431 0.5284142 0.1409607 +0.3104189 0.5284142 0.1409607 +0.3293248 0.5284142 0.1409607 +0.3470774 0.5284142 0.1409607 +0.3637862 0.5284142 0.1409607 +0.3795513 0.5284142 0.1409607 +0.3944623 0.5284142 0.1409607 +0.4085988 0.5284142 0.1409607 +0.4220313 0.5284142 0.1409607 +0.4348222 0.5284142 0.1409607 +0.4470264 0.5284142 0.1409607 +0.4586928 0.5284142 0.1409607 +0.4698649 0.5284142 0.1409607 +0.4805811 0.5284142 0.1409607 +0.490876 0.5284142 0.1409607 +0.5007803 0.5284142 0.1409607 +0.510322 0.5284142 0.1409607 +0.5195258 0.5284142 0.1409607 +0.5284142 0.5284142 0.1409607 +0.5370079 0.5284142 0.1409607 +0.5453253 0.5284142 0.1409607 +0.5533834 0.5284142 0.1409607 +0.5611974 0.5284142 0.1409607 +0.5687816 0.5284142 0.1409607 +0.092819 0.5370079 0.1409607 +0.1056428 0.5370079 0.1409607 +0.1201537 0.5370079 0.1409607 +0.1409607 0.5370079 0.1409607 +0.1678172 0.5370079 0.1409607 +0.1950164 0.5370079 0.1409607 +0.2210581 0.5370079 0.1409607 +0.245636 0.5370079 0.1409607 +0.2686816 0.5370079 0.1409607 +0.2902431 0.5370079 0.1409607 +0.3104189 0.5370079 0.1409607 +0.3293248 0.5370079 0.1409607 +0.3470774 0.5370079 0.1409607 +0.3637862 0.5370079 0.1409607 +0.3795513 0.5370079 0.1409607 +0.3944623 0.5370079 0.1409607 +0.4085988 0.5370079 0.1409607 +0.4220313 0.5370079 0.1409607 +0.4348222 0.5370079 0.1409607 +0.4470264 0.5370079 0.1409607 +0.4586928 0.5370079 0.1409607 +0.4698649 0.5370079 0.1409607 +0.4805811 0.5370079 0.1409607 +0.490876 0.5370079 0.1409607 +0.5007803 0.5370079 0.1409607 +0.510322 0.5370079 0.1409607 +0.5195258 0.5370079 0.1409607 +0.5284142 0.5370079 0.1409607 +0.5370079 0.5370079 0.1409607 +0.5453253 0.5370079 0.1409607 +0.5533834 0.5370079 0.1409607 +0.5611974 0.5370079 0.1409607 +0.5687816 0.5370079 0.1409607 +0.092819 0.5453253 0.1409607 +0.1056428 0.5453253 0.1409607 +0.1201537 0.5453253 0.1409607 +0.1409607 0.5453253 0.1409607 +0.1678172 0.5453253 0.1409607 +0.1950164 0.5453253 0.1409607 +0.2210581 0.5453253 0.1409607 +0.245636 0.5453253 0.1409607 +0.2686816 0.5453253 0.1409607 +0.2902431 0.5453253 0.1409607 +0.3104189 0.5453253 0.1409607 +0.3293248 0.5453253 0.1409607 +0.3470774 0.5453253 0.1409607 +0.3637862 0.5453253 0.1409607 +0.3795513 0.5453253 0.1409607 +0.3944623 0.5453253 0.1409607 +0.4085988 0.5453253 0.1409607 +0.4220313 0.5453253 0.1409607 +0.4348222 0.5453253 0.1409607 +0.4470264 0.5453253 0.1409607 +0.4586928 0.5453253 0.1409607 +0.4698649 0.5453253 0.1409607 +0.4805811 0.5453253 0.1409607 +0.490876 0.5453253 0.1409607 +0.5007803 0.5453253 0.1409607 +0.510322 0.5453253 0.1409607 +0.5195258 0.5453253 0.1409607 +0.5284142 0.5453253 0.1409607 +0.5370079 0.5453253 0.1409607 +0.5453253 0.5453253 0.1409607 +0.5533834 0.5453253 0.1409607 +0.5611974 0.5453253 0.1409607 +0.5687816 0.5453253 0.1409607 +0.092819 0.5533834 0.1409607 +0.1056428 0.5533834 0.1409607 +0.1201537 0.5533834 0.1409607 +0.1409607 0.5533834 0.1409607 +0.1678172 0.5533834 0.1409607 +0.1950164 0.5533834 0.1409607 +0.2210581 0.5533834 0.1409607 +0.245636 0.5533834 0.1409607 +0.2686816 0.5533834 0.1409607 +0.2902431 0.5533834 0.1409607 +0.3104189 0.5533834 0.1409607 +0.3293248 0.5533834 0.1409607 +0.3470774 0.5533834 0.1409607 +0.3637862 0.5533834 0.1409607 +0.3795513 0.5533834 0.1409607 +0.3944623 0.5533834 0.1409607 +0.4085988 0.5533834 0.1409607 +0.4220313 0.5533834 0.1409607 +0.4348222 0.5533834 0.1409607 +0.4470264 0.5533834 0.1409607 +0.4586928 0.5533834 0.1409607 +0.4698649 0.5533834 0.1409607 +0.4805811 0.5533834 0.1409607 +0.490876 0.5533834 0.1409607 +0.5007803 0.5533834 0.1409607 +0.510322 0.5533834 0.1409607 +0.5195258 0.5533834 0.1409607 +0.5284142 0.5533834 0.1409607 +0.5370079 0.5533834 0.1409607 +0.5453253 0.5533834 0.1409607 +0.5533834 0.5533834 0.1409607 +0.5611974 0.5533834 0.1409607 +0.5687816 0.5533834 0.1409607 +0.092819 0.5611974 0.1409607 +0.1056428 0.5611974 0.1409607 +0.1201537 0.5611974 0.1409607 +0.1409607 0.5611974 0.1409607 +0.1678172 0.5611974 0.1409607 +0.1950164 0.5611974 0.1409607 +0.2210581 0.5611974 0.1409607 +0.245636 0.5611974 0.1409607 +0.2686816 0.5611974 0.1409607 +0.2902431 0.5611974 0.1409607 +0.3104189 0.5611974 0.1409607 +0.3293248 0.5611974 0.1409607 +0.3470774 0.5611974 0.1409607 +0.3637862 0.5611974 0.1409607 +0.3795513 0.5611974 0.1409607 +0.3944623 0.5611974 0.1409607 +0.4085988 0.5611974 0.1409607 +0.4220313 0.5611974 0.1409607 +0.4348222 0.5611974 0.1409607 +0.4470264 0.5611974 0.1409607 +0.4586928 0.5611974 0.1409607 +0.4698649 0.5611974 0.1409607 +0.4805811 0.5611974 0.1409607 +0.490876 0.5611974 0.1409607 +0.5007803 0.5611974 0.1409607 +0.510322 0.5611974 0.1409607 +0.5195258 0.5611974 0.1409607 +0.5284142 0.5611974 0.1409607 +0.5370079 0.5611974 0.1409607 +0.5453253 0.5611974 0.1409607 +0.5533834 0.5611974 0.1409607 +0.5611974 0.5611974 0.1409607 +0.5687816 0.5611974 0.1409607 +0.092819 0.5687816 0.1409607 +0.1056428 0.5687816 0.1409607 +0.1201537 0.5687816 0.1409607 +0.1409607 0.5687816 0.1409607 +0.1678172 0.5687816 0.1409607 +0.1950164 0.5687816 0.1409607 +0.2210581 0.5687816 0.1409607 +0.245636 0.5687816 0.1409607 +0.2686816 0.5687816 0.1409607 +0.2902431 0.5687816 0.1409607 +0.3104189 0.5687816 0.1409607 +0.3293248 0.5687816 0.1409607 +0.3470774 0.5687816 0.1409607 +0.3637862 0.5687816 0.1409607 +0.3795513 0.5687816 0.1409607 +0.3944623 0.5687816 0.1409607 +0.4085988 0.5687816 0.1409607 +0.4220313 0.5687816 0.1409607 +0.4348222 0.5687816 0.1409607 +0.4470264 0.5687816 0.1409607 +0.4586928 0.5687816 0.1409607 +0.4698649 0.5687816 0.1409607 +0.4805811 0.5687816 0.1409607 +0.490876 0.5687816 0.1409607 +0.5007803 0.5687816 0.1409607 +0.510322 0.5687816 0.1409607 +0.5195258 0.5687816 0.1409607 +0.5284142 0.5687816 0.1409607 +0.5370079 0.5687816 0.1409607 +0.5453253 0.5687816 0.1409607 +0.5533834 0.5687816 0.1409607 +0.5611974 0.5687816 0.1409607 +0.5687816 0.5687816 0.1409607 +0.092819 0.092819 0.1678172 +0.1056428 0.092819 0.1678172 +0.1201537 0.092819 0.1678172 +0.1409607 0.092819 0.1678172 +0.1678172 0.092819 0.1678172 +0.1950164 0.092819 0.1678172 +0.2210581 0.092819 0.1678172 +0.245636 0.092819 0.1678172 +0.2686816 0.092819 0.1678172 +0.2902431 0.092819 0.1678172 +0.3104189 0.092819 0.1678172 +0.3293248 0.092819 0.1678172 +0.3470774 0.092819 0.1678172 +0.3637862 0.092819 0.1678172 +0.3795513 0.092819 0.1678172 +0.3944623 0.092819 0.1678172 +0.4085988 0.092819 0.1678172 +0.4220313 0.092819 0.1678172 +0.4348222 0.092819 0.1678172 +0.4470264 0.092819 0.1678172 +0.4586928 0.092819 0.1678172 +0.4698649 0.092819 0.1678172 +0.4805811 0.092819 0.1678172 +0.490876 0.092819 0.1678172 +0.5007803 0.092819 0.1678172 +0.510322 0.092819 0.1678172 +0.5195258 0.092819 0.1678172 +0.5284142 0.092819 0.1678172 +0.5370079 0.092819 0.1678172 +0.5453253 0.092819 0.1678172 +0.5533834 0.092819 0.1678172 +0.5611974 0.092819 0.1678172 +0.5687816 0.092819 0.1678172 +0.092819 0.1056428 0.1678172 +0.1056428 0.1056428 0.1678172 +0.1201537 0.1056428 0.1678172 +0.1409607 0.1056428 0.1678172 +0.1678172 0.1056428 0.1678172 +0.1950164 0.1056428 0.1678172 +0.2210581 0.1056428 0.1678172 +0.245636 0.1056428 0.1678172 +0.2686816 0.1056428 0.1678172 +0.2902431 0.1056428 0.1678172 +0.3104189 0.1056428 0.1678172 +0.3293248 0.1056428 0.1678172 +0.3470774 0.1056428 0.1678172 +0.3637862 0.1056428 0.1678172 +0.3795513 0.1056428 0.1678172 +0.3944623 0.1056428 0.1678172 +0.4085988 0.1056428 0.1678172 +0.4220313 0.1056428 0.1678172 +0.4348222 0.1056428 0.1678172 +0.4470264 0.1056428 0.1678172 +0.4586928 0.1056428 0.1678172 +0.4698649 0.1056428 0.1678172 +0.4805811 0.1056428 0.1678172 +0.490876 0.1056428 0.1678172 +0.5007803 0.1056428 0.1678172 +0.510322 0.1056428 0.1678172 +0.5195258 0.1056428 0.1678172 +0.5284142 0.1056428 0.1678172 +0.5370079 0.1056428 0.1678172 +0.5453253 0.1056428 0.1678172 +0.5533834 0.1056428 0.1678172 +0.5611974 0.1056428 0.1678172 +0.5687816 0.1056428 0.1678172 +0.092819 0.1201537 0.1678172 +0.1056428 0.1201537 0.1678172 +0.1201537 0.1201537 0.1678172 +0.1409607 0.1201537 0.1678172 +0.1678172 0.1201537 0.1678172 +0.1950164 0.1201537 0.1678172 +0.2210581 0.1201537 0.1678172 +0.245636 0.1201537 0.1678172 +0.2686816 0.1201537 0.1678172 +0.2902431 0.1201537 0.1678172 +0.3104189 0.1201537 0.1678172 +0.3293248 0.1201537 0.1678172 +0.3470774 0.1201537 0.1678172 +0.3637862 0.1201537 0.1678172 +0.3795513 0.1201537 0.1678172 +0.3944623 0.1201537 0.1678172 +0.4085988 0.1201537 0.1678172 +0.4220313 0.1201537 0.1678172 +0.4348222 0.1201537 0.1678172 +0.4470264 0.1201537 0.1678172 +0.4586928 0.1201537 0.1678172 +0.4698649 0.1201537 0.1678172 +0.4805811 0.1201537 0.1678172 +0.490876 0.1201537 0.1678172 +0.5007803 0.1201537 0.1678172 +0.510322 0.1201537 0.1678172 +0.5195258 0.1201537 0.1678172 +0.5284142 0.1201537 0.1678172 +0.5370079 0.1201537 0.1678172 +0.5453253 0.1201537 0.1678172 +0.5533834 0.1201537 0.1678172 +0.5611974 0.1201537 0.1678172 +0.5687816 0.1201537 0.1678172 +0.092819 0.1409607 0.1678172 +0.1056428 0.1409607 0.1678172 +0.1201537 0.1409607 0.1678172 +0.1409607 0.1409607 0.1678172 +0.1678172 0.1409607 0.1678172 +0.1950164 0.1409607 0.1678172 +0.2210581 0.1409607 0.1678172 +0.245636 0.1409607 0.1678172 +0.2686816 0.1409607 0.1678172 +0.2902431 0.1409607 0.1678172 +0.3104189 0.1409607 0.1678172 +0.3293248 0.1409607 0.1678172 +0.3470774 0.1409607 0.1678172 +0.3637862 0.1409607 0.1678172 +0.3795513 0.1409607 0.1678172 +0.3944623 0.1409607 0.1678172 +0.4085988 0.1409607 0.1678172 +0.4220313 0.1409607 0.1678172 +0.4348222 0.1409607 0.1678172 +0.4470264 0.1409607 0.1678172 +0.4586928 0.1409607 0.1678172 +0.4698649 0.1409607 0.1678172 +0.4805811 0.1409607 0.1678172 +0.490876 0.1409607 0.1678172 +0.5007803 0.1409607 0.1678172 +0.510322 0.1409607 0.1678172 +0.5195258 0.1409607 0.1678172 +0.5284142 0.1409607 0.1678172 +0.5370079 0.1409607 0.1678172 +0.5453253 0.1409607 0.1678172 +0.5533834 0.1409607 0.1678172 +0.5611974 0.1409607 0.1678172 +0.5687816 0.1409607 0.1678172 +0.092819 0.1678172 0.1678172 +0.1056428 0.1678172 0.1678172 +0.1201537 0.1678172 0.1678172 +0.1409607 0.1678172 0.1678172 +0.1678172 0.1678172 0.1678172 +0.1950164 0.1678172 0.1678172 +0.2210581 0.1678172 0.1678172 +0.245636 0.1678172 0.1678172 +0.2686816 0.1678172 0.1678172 +0.2902431 0.1678172 0.1678172 +0.3104189 0.1678172 0.1678172 +0.3293248 0.1678172 0.1678172 +0.3470774 0.1678172 0.1678172 +0.3637862 0.1678172 0.1678172 +0.3795513 0.1678172 0.1678172 +0.3944623 0.1678172 0.1678172 +0.4085988 0.1678172 0.1678172 +0.4220313 0.1678172 0.1678172 +0.4348222 0.1678172 0.1678172 +0.4470264 0.1678172 0.1678172 +0.4586928 0.1678172 0.1678172 +0.4698649 0.1678172 0.1678172 +0.4805811 0.1678172 0.1678172 +0.490876 0.1678172 0.1678172 +0.5007803 0.1678172 0.1678172 +0.510322 0.1678172 0.1678172 +0.5195258 0.1678172 0.1678172 +0.5284142 0.1678172 0.1678172 +0.5370079 0.1678172 0.1678172 +0.5453253 0.1678172 0.1678172 +0.5533834 0.1678172 0.1678172 +0.5611974 0.1678172 0.1678172 +0.5687816 0.1678172 0.1678172 +0.092819 0.1950164 0.1678172 +0.1056428 0.1950164 0.1678172 +0.1201537 0.1950164 0.1678172 +0.1409607 0.1950164 0.1678172 +0.1678172 0.1950164 0.1678172 +0.1950164 0.1950164 0.1678172 +0.2210581 0.1950164 0.1678172 +0.245636 0.1950164 0.1678172 +0.2686816 0.1950164 0.1678172 +0.2902431 0.1950164 0.1678172 +0.3104189 0.1950164 0.1678172 +0.3293248 0.1950164 0.1678172 +0.3470774 0.1950164 0.1678172 +0.3637862 0.1950164 0.1678172 +0.3795513 0.1950164 0.1678172 +0.3944623 0.1950164 0.1678172 +0.4085988 0.1950164 0.1678172 +0.4220313 0.1950164 0.1678172 +0.4348222 0.1950164 0.1678172 +0.4470264 0.1950164 0.1678172 +0.4586928 0.1950164 0.1678172 +0.4698649 0.1950164 0.1678172 +0.4805811 0.1950164 0.1678172 +0.490876 0.1950164 0.1678172 +0.5007803 0.1950164 0.1678172 +0.510322 0.1950164 0.1678172 +0.5195258 0.1950164 0.1678172 +0.5284142 0.1950164 0.1678172 +0.5370079 0.1950164 0.1678172 +0.5453253 0.1950164 0.1678172 +0.5533834 0.1950164 0.1678172 +0.5611974 0.1950164 0.1678172 +0.5687816 0.1950164 0.1678172 +0.092819 0.2210581 0.1678172 +0.1056428 0.2210581 0.1678172 +0.1201537 0.2210581 0.1678172 +0.1409607 0.2210581 0.1678172 +0.1678172 0.2210581 0.1678172 +0.1950164 0.2210581 0.1678172 +0.2210581 0.2210581 0.1678172 +0.245636 0.2210581 0.1678172 +0.2686816 0.2210581 0.1678172 +0.2902431 0.2210581 0.1678172 +0.3104189 0.2210581 0.1678172 +0.3293248 0.2210581 0.1678172 +0.3470774 0.2210581 0.1678172 +0.3637862 0.2210581 0.1678172 +0.3795513 0.2210581 0.1678172 +0.3944623 0.2210581 0.1678172 +0.4085988 0.2210581 0.1678172 +0.4220313 0.2210581 0.1678172 +0.4348222 0.2210581 0.1678172 +0.4470264 0.2210581 0.1678172 +0.4586928 0.2210581 0.1678172 +0.4698649 0.2210581 0.1678172 +0.4805811 0.2210581 0.1678172 +0.490876 0.2210581 0.1678172 +0.5007803 0.2210581 0.1678172 +0.510322 0.2210581 0.1678172 +0.5195258 0.2210581 0.1678172 +0.5284142 0.2210581 0.1678172 +0.5370079 0.2210581 0.1678172 +0.5453253 0.2210581 0.1678172 +0.5533834 0.2210581 0.1678172 +0.5611974 0.2210581 0.1678172 +0.5687816 0.2210581 0.1678172 +0.092819 0.245636 0.1678172 +0.1056428 0.245636 0.1678172 +0.1201537 0.245636 0.1678172 +0.1409607 0.245636 0.1678172 +0.1678172 0.245636 0.1678172 +0.1950164 0.245636 0.1678172 +0.2210581 0.245636 0.1678172 +0.245636 0.245636 0.1678172 +0.2686816 0.245636 0.1678172 +0.2902431 0.245636 0.1678172 +0.3104189 0.245636 0.1678172 +0.3293248 0.245636 0.1678172 +0.3470774 0.245636 0.1678172 +0.3637862 0.245636 0.1678172 +0.3795513 0.245636 0.1678172 +0.3944623 0.245636 0.1678172 +0.4085988 0.245636 0.1678172 +0.4220313 0.245636 0.1678172 +0.4348222 0.245636 0.1678172 +0.4470264 0.245636 0.1678172 +0.4586928 0.245636 0.1678172 +0.4698649 0.245636 0.1678172 +0.4805811 0.245636 0.1678172 +0.490876 0.245636 0.1678172 +0.5007803 0.245636 0.1678172 +0.510322 0.245636 0.1678172 +0.5195258 0.245636 0.1678172 +0.5284142 0.245636 0.1678172 +0.5370079 0.245636 0.1678172 +0.5453253 0.245636 0.1678172 +0.5533834 0.245636 0.1678172 +0.5611974 0.245636 0.1678172 +0.5687816 0.245636 0.1678172 +0.092819 0.2686816 0.1678172 +0.1056428 0.2686816 0.1678172 +0.1201537 0.2686816 0.1678172 +0.1409607 0.2686816 0.1678172 +0.1678172 0.2686816 0.1678172 +0.1950164 0.2686816 0.1678172 +0.2210581 0.2686816 0.1678172 +0.245636 0.2686816 0.1678172 +0.2686816 0.2686816 0.1678172 +0.2902431 0.2686816 0.1678172 +0.3104189 0.2686816 0.1678172 +0.3293248 0.2686816 0.1678172 +0.3470774 0.2686816 0.1678172 +0.3637862 0.2686816 0.1678172 +0.3795513 0.2686816 0.1678172 +0.3944623 0.2686816 0.1678172 +0.4085988 0.2686816 0.1678172 +0.4220313 0.2686816 0.1678172 +0.4348222 0.2686816 0.1678172 +0.4470264 0.2686816 0.1678172 +0.4586928 0.2686816 0.1678172 +0.4698649 0.2686816 0.1678172 +0.4805811 0.2686816 0.1678172 +0.490876 0.2686816 0.1678172 +0.5007803 0.2686816 0.1678172 +0.510322 0.2686816 0.1678172 +0.5195258 0.2686816 0.1678172 +0.5284142 0.2686816 0.1678172 +0.5370079 0.2686816 0.1678172 +0.5453253 0.2686816 0.1678172 +0.5533834 0.2686816 0.1678172 +0.5611974 0.2686816 0.1678172 +0.5687816 0.2686816 0.1678172 +0.092819 0.2902431 0.1678172 +0.1056428 0.2902431 0.1678172 +0.1201537 0.2902431 0.1678172 +0.1409607 0.2902431 0.1678172 +0.1678172 0.2902431 0.1678172 +0.1950164 0.2902431 0.1678172 +0.2210581 0.2902431 0.1678172 +0.245636 0.2902431 0.1678172 +0.2686816 0.2902431 0.1678172 +0.2902431 0.2902431 0.1678172 +0.3104189 0.2902431 0.1678172 +0.3293248 0.2902431 0.1678172 +0.3470774 0.2902431 0.1678172 +0.3637862 0.2902431 0.1678172 +0.3795513 0.2902431 0.1678172 +0.3944623 0.2902431 0.1678172 +0.4085988 0.2902431 0.1678172 +0.4220313 0.2902431 0.1678172 +0.4348222 0.2902431 0.1678172 +0.4470264 0.2902431 0.1678172 +0.4586928 0.2902431 0.1678172 +0.4698649 0.2902431 0.1678172 +0.4805811 0.2902431 0.1678172 +0.490876 0.2902431 0.1678172 +0.5007803 0.2902431 0.1678172 +0.510322 0.2902431 0.1678172 +0.5195258 0.2902431 0.1678172 +0.5284142 0.2902431 0.1678172 +0.5370079 0.2902431 0.1678172 +0.5453253 0.2902431 0.1678172 +0.5533834 0.2902431 0.1678172 +0.5611974 0.2902431 0.1678172 +0.5687816 0.2902431 0.1678172 +0.092819 0.3104189 0.1678172 +0.1056428 0.3104189 0.1678172 +0.1201537 0.3104189 0.1678172 +0.1409607 0.3104189 0.1678172 +0.1678172 0.3104189 0.1678172 +0.1950164 0.3104189 0.1678172 +0.2210581 0.3104189 0.1678172 +0.245636 0.3104189 0.1678172 +0.2686816 0.3104189 0.1678172 +0.2902431 0.3104189 0.1678172 +0.3104189 0.3104189 0.1678172 +0.3293248 0.3104189 0.1678172 +0.3470774 0.3104189 0.1678172 +0.3637862 0.3104189 0.1678172 +0.3795513 0.3104189 0.1678172 +0.3944623 0.3104189 0.1678172 +0.4085988 0.3104189 0.1678172 +0.4220313 0.3104189 0.1678172 +0.4348222 0.3104189 0.1678172 +0.4470264 0.3104189 0.1678172 +0.4586928 0.3104189 0.1678172 +0.4698649 0.3104189 0.1678172 +0.4805811 0.3104189 0.1678172 +0.490876 0.3104189 0.1678172 +0.5007803 0.3104189 0.1678172 +0.510322 0.3104189 0.1678172 +0.5195258 0.3104189 0.1678172 +0.5284142 0.3104189 0.1678172 +0.5370079 0.3104189 0.1678172 +0.5453253 0.3104189 0.1678172 +0.5533834 0.3104189 0.1678172 +0.5611974 0.3104189 0.1678172 +0.5687816 0.3104189 0.1678172 +0.092819 0.3293248 0.1678172 +0.1056428 0.3293248 0.1678172 +0.1201537 0.3293248 0.1678172 +0.1409607 0.3293248 0.1678172 +0.1678172 0.3293248 0.1678172 +0.1950164 0.3293248 0.1678172 +0.2210581 0.3293248 0.1678172 +0.245636 0.3293248 0.1678172 +0.2686816 0.3293248 0.1678172 +0.2902431 0.3293248 0.1678172 +0.3104189 0.3293248 0.1678172 +0.3293248 0.3293248 0.1678172 +0.3470774 0.3293248 0.1678172 +0.3637862 0.3293248 0.1678172 +0.3795513 0.3293248 0.1678172 +0.3944623 0.3293248 0.1678172 +0.4085988 0.3293248 0.1678172 +0.4220313 0.3293248 0.1678172 +0.4348222 0.3293248 0.1678172 +0.4470264 0.3293248 0.1678172 +0.4586928 0.3293248 0.1678172 +0.4698649 0.3293248 0.1678172 +0.4805811 0.3293248 0.1678172 +0.490876 0.3293248 0.1678172 +0.5007803 0.3293248 0.1678172 +0.510322 0.3293248 0.1678172 +0.5195258 0.3293248 0.1678172 +0.5284142 0.3293248 0.1678172 +0.5370079 0.3293248 0.1678172 +0.5453253 0.3293248 0.1678172 +0.5533834 0.3293248 0.1678172 +0.5611974 0.3293248 0.1678172 +0.5687816 0.3293248 0.1678172 +0.092819 0.3470774 0.1678172 +0.1056428 0.3470774 0.1678172 +0.1201537 0.3470774 0.1678172 +0.1409607 0.3470774 0.1678172 +0.1678172 0.3470774 0.1678172 +0.1950164 0.3470774 0.1678172 +0.2210581 0.3470774 0.1678172 +0.245636 0.3470774 0.1678172 +0.2686816 0.3470774 0.1678172 +0.2902431 0.3470774 0.1678172 +0.3104189 0.3470774 0.1678172 +0.3293248 0.3470774 0.1678172 +0.3470774 0.3470774 0.1678172 +0.3637862 0.3470774 0.1678172 +0.3795513 0.3470774 0.1678172 +0.3944623 0.3470774 0.1678172 +0.4085988 0.3470774 0.1678172 +0.4220313 0.3470774 0.1678172 +0.4348222 0.3470774 0.1678172 +0.4470264 0.3470774 0.1678172 +0.4586928 0.3470774 0.1678172 +0.4698649 0.3470774 0.1678172 +0.4805811 0.3470774 0.1678172 +0.490876 0.3470774 0.1678172 +0.5007803 0.3470774 0.1678172 +0.510322 0.3470774 0.1678172 +0.5195258 0.3470774 0.1678172 +0.5284142 0.3470774 0.1678172 +0.5370079 0.3470774 0.1678172 +0.5453253 0.3470774 0.1678172 +0.5533834 0.3470774 0.1678172 +0.5611974 0.3470774 0.1678172 +0.5687816 0.3470774 0.1678172 +0.092819 0.3637862 0.1678172 +0.1056428 0.3637862 0.1678172 +0.1201537 0.3637862 0.1678172 +0.1409607 0.3637862 0.1678172 +0.1678172 0.3637862 0.1678172 +0.1950164 0.3637862 0.1678172 +0.2210581 0.3637862 0.1678172 +0.245636 0.3637862 0.1678172 +0.2686816 0.3637862 0.1678172 +0.2902431 0.3637862 0.1678172 +0.3104189 0.3637862 0.1678172 +0.3293248 0.3637862 0.1678172 +0.3470774 0.3637862 0.1678172 +0.3637862 0.3637862 0.1678172 +0.3795513 0.3637862 0.1678172 +0.3944623 0.3637862 0.1678172 +0.4085988 0.3637862 0.1678172 +0.4220313 0.3637862 0.1678172 +0.4348222 0.3637862 0.1678172 +0.4470264 0.3637862 0.1678172 +0.4586928 0.3637862 0.1678172 +0.4698649 0.3637862 0.1678172 +0.4805811 0.3637862 0.1678172 +0.490876 0.3637862 0.1678172 +0.5007803 0.3637862 0.1678172 +0.510322 0.3637862 0.1678172 +0.5195258 0.3637862 0.1678172 +0.5284142 0.3637862 0.1678172 +0.5370079 0.3637862 0.1678172 +0.5453253 0.3637862 0.1678172 +0.5533834 0.3637862 0.1678172 +0.5611974 0.3637862 0.1678172 +0.5687816 0.3637862 0.1678172 +0.092819 0.3795513 0.1678172 +0.1056428 0.3795513 0.1678172 +0.1201537 0.3795513 0.1678172 +0.1409607 0.3795513 0.1678172 +0.1678172 0.3795513 0.1678172 +0.1950164 0.3795513 0.1678172 +0.2210581 0.3795513 0.1678172 +0.245636 0.3795513 0.1678172 +0.2686816 0.3795513 0.1678172 +0.2902431 0.3795513 0.1678172 +0.3104189 0.3795513 0.1678172 +0.3293248 0.3795513 0.1678172 +0.3470774 0.3795513 0.1678172 +0.3637862 0.3795513 0.1678172 +0.3795513 0.3795513 0.1678172 +0.3944623 0.3795513 0.1678172 +0.4085988 0.3795513 0.1678172 +0.4220313 0.3795513 0.1678172 +0.4348222 0.3795513 0.1678172 +0.4470264 0.3795513 0.1678172 +0.4586928 0.3795513 0.1678172 +0.4698649 0.3795513 0.1678172 +0.4805811 0.3795513 0.1678172 +0.490876 0.3795513 0.1678172 +0.5007803 0.3795513 0.1678172 +0.510322 0.3795513 0.1678172 +0.5195258 0.3795513 0.1678172 +0.5284142 0.3795513 0.1678172 +0.5370079 0.3795513 0.1678172 +0.5453253 0.3795513 0.1678172 +0.5533834 0.3795513 0.1678172 +0.5611974 0.3795513 0.1678172 +0.5687816 0.3795513 0.1678172 +0.092819 0.3944623 0.1678172 +0.1056428 0.3944623 0.1678172 +0.1201537 0.3944623 0.1678172 +0.1409607 0.3944623 0.1678172 +0.1678172 0.3944623 0.1678172 +0.1950164 0.3944623 0.1678172 +0.2210581 0.3944623 0.1678172 +0.245636 0.3944623 0.1678172 +0.2686816 0.3944623 0.1678172 +0.2902431 0.3944623 0.1678172 +0.3104189 0.3944623 0.1678172 +0.3293248 0.3944623 0.1678172 +0.3470774 0.3944623 0.1678172 +0.3637862 0.3944623 0.1678172 +0.3795513 0.3944623 0.1678172 +0.3944623 0.3944623 0.1678172 +0.4085988 0.3944623 0.1678172 +0.4220313 0.3944623 0.1678172 +0.4348222 0.3944623 0.1678172 +0.4470264 0.3944623 0.1678172 +0.4586928 0.3944623 0.1678172 +0.4698649 0.3944623 0.1678172 +0.4805811 0.3944623 0.1678172 +0.490876 0.3944623 0.1678172 +0.5007803 0.3944623 0.1678172 +0.510322 0.3944623 0.1678172 +0.5195258 0.3944623 0.1678172 +0.5284142 0.3944623 0.1678172 +0.5370079 0.3944623 0.1678172 +0.5453253 0.3944623 0.1678172 +0.5533834 0.3944623 0.1678172 +0.5611974 0.3944623 0.1678172 +0.5687816 0.3944623 0.1678172 +0.092819 0.4085988 0.1678172 +0.1056428 0.4085988 0.1678172 +0.1201537 0.4085988 0.1678172 +0.1409607 0.4085988 0.1678172 +0.1678172 0.4085988 0.1678172 +0.1950164 0.4085988 0.1678172 +0.2210581 0.4085988 0.1678172 +0.245636 0.4085988 0.1678172 +0.2686816 0.4085988 0.1678172 +0.2902431 0.4085988 0.1678172 +0.3104189 0.4085988 0.1678172 +0.3293248 0.4085988 0.1678172 +0.3470774 0.4085988 0.1678172 +0.3637862 0.4085988 0.1678172 +0.3795513 0.4085988 0.1678172 +0.3944623 0.4085988 0.1678172 +0.4085988 0.4085988 0.1678172 +0.4220313 0.4085988 0.1678172 +0.4348222 0.4085988 0.1678172 +0.4470264 0.4085988 0.1678172 +0.4586928 0.4085988 0.1678172 +0.4698649 0.4085988 0.1678172 +0.4805811 0.4085988 0.1678172 +0.490876 0.4085988 0.1678172 +0.5007803 0.4085988 0.1678172 +0.510322 0.4085988 0.1678172 +0.5195258 0.4085988 0.1678172 +0.5284142 0.4085988 0.1678172 +0.5370079 0.4085988 0.1678172 +0.5453253 0.4085988 0.1678172 +0.5533834 0.4085988 0.1678172 +0.5611974 0.4085988 0.1678172 +0.5687816 0.4085988 0.1678172 +0.092819 0.4220313 0.1678172 +0.1056428 0.4220313 0.1678172 +0.1201537 0.4220313 0.1678172 +0.1409607 0.4220313 0.1678172 +0.1678172 0.4220313 0.1678172 +0.1950164 0.4220313 0.1678172 +0.2210581 0.4220313 0.1678172 +0.245636 0.4220313 0.1678172 +0.2686816 0.4220313 0.1678172 +0.2902431 0.4220313 0.1678172 +0.3104189 0.4220313 0.1678172 +0.3293248 0.4220313 0.1678172 +0.3470774 0.4220313 0.1678172 +0.3637862 0.4220313 0.1678172 +0.3795513 0.4220313 0.1678172 +0.3944623 0.4220313 0.1678172 +0.4085988 0.4220313 0.1678172 +0.4220313 0.4220313 0.1678172 +0.4348222 0.4220313 0.1678172 +0.4470264 0.4220313 0.1678172 +0.4586928 0.4220313 0.1678172 +0.4698649 0.4220313 0.1678172 +0.4805811 0.4220313 0.1678172 +0.490876 0.4220313 0.1678172 +0.5007803 0.4220313 0.1678172 +0.510322 0.4220313 0.1678172 +0.5195258 0.4220313 0.1678172 +0.5284142 0.4220313 0.1678172 +0.5370079 0.4220313 0.1678172 +0.5453253 0.4220313 0.1678172 +0.5533834 0.4220313 0.1678172 +0.5611974 0.4220313 0.1678172 +0.5687816 0.4220313 0.1678172 +0.092819 0.4348222 0.1678172 +0.1056428 0.4348222 0.1678172 +0.1201537 0.4348222 0.1678172 +0.1409607 0.4348222 0.1678172 +0.1678172 0.4348222 0.1678172 +0.1950164 0.4348222 0.1678172 +0.2210581 0.4348222 0.1678172 +0.245636 0.4348222 0.1678172 +0.2686816 0.4348222 0.1678172 +0.2902431 0.4348222 0.1678172 +0.3104189 0.4348222 0.1678172 +0.3293248 0.4348222 0.1678172 +0.3470774 0.4348222 0.1678172 +0.3637862 0.4348222 0.1678172 +0.3795513 0.4348222 0.1678172 +0.3944623 0.4348222 0.1678172 +0.4085988 0.4348222 0.1678172 +0.4220313 0.4348222 0.1678172 +0.4348222 0.4348222 0.1678172 +0.4470264 0.4348222 0.1678172 +0.4586928 0.4348222 0.1678172 +0.4698649 0.4348222 0.1678172 +0.4805811 0.4348222 0.1678172 +0.490876 0.4348222 0.1678172 +0.5007803 0.4348222 0.1678172 +0.510322 0.4348222 0.1678172 +0.5195258 0.4348222 0.1678172 +0.5284142 0.4348222 0.1678172 +0.5370079 0.4348222 0.1678172 +0.5453253 0.4348222 0.1678172 +0.5533834 0.4348222 0.1678172 +0.5611974 0.4348222 0.1678172 +0.5687816 0.4348222 0.1678172 +0.092819 0.4470264 0.1678172 +0.1056428 0.4470264 0.1678172 +0.1201537 0.4470264 0.1678172 +0.1409607 0.4470264 0.1678172 +0.1678172 0.4470264 0.1678172 +0.1950164 0.4470264 0.1678172 +0.2210581 0.4470264 0.1678172 +0.245636 0.4470264 0.1678172 +0.2686816 0.4470264 0.1678172 +0.2902431 0.4470264 0.1678172 +0.3104189 0.4470264 0.1678172 +0.3293248 0.4470264 0.1678172 +0.3470774 0.4470264 0.1678172 +0.3637862 0.4470264 0.1678172 +0.3795513 0.4470264 0.1678172 +0.3944623 0.4470264 0.1678172 +0.4085988 0.4470264 0.1678172 +0.4220313 0.4470264 0.1678172 +0.4348222 0.4470264 0.1678172 +0.4470264 0.4470264 0.1678172 +0.4586928 0.4470264 0.1678172 +0.4698649 0.4470264 0.1678172 +0.4805811 0.4470264 0.1678172 +0.490876 0.4470264 0.1678172 +0.5007803 0.4470264 0.1678172 +0.510322 0.4470264 0.1678172 +0.5195258 0.4470264 0.1678172 +0.5284142 0.4470264 0.1678172 +0.5370079 0.4470264 0.1678172 +0.5453253 0.4470264 0.1678172 +0.5533834 0.4470264 0.1678172 +0.5611974 0.4470264 0.1678172 +0.5687816 0.4470264 0.1678172 +0.092819 0.4586928 0.1678172 +0.1056428 0.4586928 0.1678172 +0.1201537 0.4586928 0.1678172 +0.1409607 0.4586928 0.1678172 +0.1678172 0.4586928 0.1678172 +0.1950164 0.4586928 0.1678172 +0.2210581 0.4586928 0.1678172 +0.245636 0.4586928 0.1678172 +0.2686816 0.4586928 0.1678172 +0.2902431 0.4586928 0.1678172 +0.3104189 0.4586928 0.1678172 +0.3293248 0.4586928 0.1678172 +0.3470774 0.4586928 0.1678172 +0.3637862 0.4586928 0.1678172 +0.3795513 0.4586928 0.1678172 +0.3944623 0.4586928 0.1678172 +0.4085988 0.4586928 0.1678172 +0.4220313 0.4586928 0.1678172 +0.4348222 0.4586928 0.1678172 +0.4470264 0.4586928 0.1678172 +0.4586928 0.4586928 0.1678172 +0.4698649 0.4586928 0.1678172 +0.4805811 0.4586928 0.1678172 +0.490876 0.4586928 0.1678172 +0.5007803 0.4586928 0.1678172 +0.510322 0.4586928 0.1678172 +0.5195258 0.4586928 0.1678172 +0.5284142 0.4586928 0.1678172 +0.5370079 0.4586928 0.1678172 +0.5453253 0.4586928 0.1678172 +0.5533834 0.4586928 0.1678172 +0.5611974 0.4586928 0.1678172 +0.5687816 0.4586928 0.1678172 +0.092819 0.4698649 0.1678172 +0.1056428 0.4698649 0.1678172 +0.1201537 0.4698649 0.1678172 +0.1409607 0.4698649 0.1678172 +0.1678172 0.4698649 0.1678172 +0.1950164 0.4698649 0.1678172 +0.2210581 0.4698649 0.1678172 +0.245636 0.4698649 0.1678172 +0.2686816 0.4698649 0.1678172 +0.2902431 0.4698649 0.1678172 +0.3104189 0.4698649 0.1678172 +0.3293248 0.4698649 0.1678172 +0.3470774 0.4698649 0.1678172 +0.3637862 0.4698649 0.1678172 +0.3795513 0.4698649 0.1678172 +0.3944623 0.4698649 0.1678172 +0.4085988 0.4698649 0.1678172 +0.4220313 0.4698649 0.1678172 +0.4348222 0.4698649 0.1678172 +0.4470264 0.4698649 0.1678172 +0.4586928 0.4698649 0.1678172 +0.4698649 0.4698649 0.1678172 +0.4805811 0.4698649 0.1678172 +0.490876 0.4698649 0.1678172 +0.5007803 0.4698649 0.1678172 +0.510322 0.4698649 0.1678172 +0.5195258 0.4698649 0.1678172 +0.5284142 0.4698649 0.1678172 +0.5370079 0.4698649 0.1678172 +0.5453253 0.4698649 0.1678172 +0.5533834 0.4698649 0.1678172 +0.5611974 0.4698649 0.1678172 +0.5687816 0.4698649 0.1678172 +0.092819 0.4805811 0.1678172 +0.1056428 0.4805811 0.1678172 +0.1201537 0.4805811 0.1678172 +0.1409607 0.4805811 0.1678172 +0.1678172 0.4805811 0.1678172 +0.1950164 0.4805811 0.1678172 +0.2210581 0.4805811 0.1678172 +0.245636 0.4805811 0.1678172 +0.2686816 0.4805811 0.1678172 +0.2902431 0.4805811 0.1678172 +0.3104189 0.4805811 0.1678172 +0.3293248 0.4805811 0.1678172 +0.3470774 0.4805811 0.1678172 +0.3637862 0.4805811 0.1678172 +0.3795513 0.4805811 0.1678172 +0.3944623 0.4805811 0.1678172 +0.4085988 0.4805811 0.1678172 +0.4220313 0.4805811 0.1678172 +0.4348222 0.4805811 0.1678172 +0.4470264 0.4805811 0.1678172 +0.4586928 0.4805811 0.1678172 +0.4698649 0.4805811 0.1678172 +0.4805811 0.4805811 0.1678172 +0.490876 0.4805811 0.1678172 +0.5007803 0.4805811 0.1678172 +0.510322 0.4805811 0.1678172 +0.5195258 0.4805811 0.1678172 +0.5284142 0.4805811 0.1678172 +0.5370079 0.4805811 0.1678172 +0.5453253 0.4805811 0.1678172 +0.5533834 0.4805811 0.1678172 +0.5611974 0.4805811 0.1678172 +0.5687816 0.4805811 0.1678172 +0.092819 0.490876 0.1678172 +0.1056428 0.490876 0.1678172 +0.1201537 0.490876 0.1678172 +0.1409607 0.490876 0.1678172 +0.1678172 0.490876 0.1678172 +0.1950164 0.490876 0.1678172 +0.2210581 0.490876 0.1678172 +0.245636 0.490876 0.1678172 +0.2686816 0.490876 0.1678172 +0.2902431 0.490876 0.1678172 +0.3104189 0.490876 0.1678172 +0.3293248 0.490876 0.1678172 +0.3470774 0.490876 0.1678172 +0.3637862 0.490876 0.1678172 +0.3795513 0.490876 0.1678172 +0.3944623 0.490876 0.1678172 +0.4085988 0.490876 0.1678172 +0.4220313 0.490876 0.1678172 +0.4348222 0.490876 0.1678172 +0.4470264 0.490876 0.1678172 +0.4586928 0.490876 0.1678172 +0.4698649 0.490876 0.1678172 +0.4805811 0.490876 0.1678172 +0.490876 0.490876 0.1678172 +0.5007803 0.490876 0.1678172 +0.510322 0.490876 0.1678172 +0.5195258 0.490876 0.1678172 +0.5284142 0.490876 0.1678172 +0.5370079 0.490876 0.1678172 +0.5453253 0.490876 0.1678172 +0.5533834 0.490876 0.1678172 +0.5611974 0.490876 0.1678172 +0.5687816 0.490876 0.1678172 +0.092819 0.5007803 0.1678172 +0.1056428 0.5007803 0.1678172 +0.1201537 0.5007803 0.1678172 +0.1409607 0.5007803 0.1678172 +0.1678172 0.5007803 0.1678172 +0.1950164 0.5007803 0.1678172 +0.2210581 0.5007803 0.1678172 +0.245636 0.5007803 0.1678172 +0.2686816 0.5007803 0.1678172 +0.2902431 0.5007803 0.1678172 +0.3104189 0.5007803 0.1678172 +0.3293248 0.5007803 0.1678172 +0.3470774 0.5007803 0.1678172 +0.3637862 0.5007803 0.1678172 +0.3795513 0.5007803 0.1678172 +0.3944623 0.5007803 0.1678172 +0.4085988 0.5007803 0.1678172 +0.4220313 0.5007803 0.1678172 +0.4348222 0.5007803 0.1678172 +0.4470264 0.5007803 0.1678172 +0.4586928 0.5007803 0.1678172 +0.4698649 0.5007803 0.1678172 +0.4805811 0.5007803 0.1678172 +0.490876 0.5007803 0.1678172 +0.5007803 0.5007803 0.1678172 +0.510322 0.5007803 0.1678172 +0.5195258 0.5007803 0.1678172 +0.5284142 0.5007803 0.1678172 +0.5370079 0.5007803 0.1678172 +0.5453253 0.5007803 0.1678172 +0.5533834 0.5007803 0.1678172 +0.5611974 0.5007803 0.1678172 +0.5687816 0.5007803 0.1678172 +0.092819 0.510322 0.1678172 +0.1056428 0.510322 0.1678172 +0.1201537 0.510322 0.1678172 +0.1409607 0.510322 0.1678172 +0.1678172 0.510322 0.1678172 +0.1950164 0.510322 0.1678172 +0.2210581 0.510322 0.1678172 +0.245636 0.510322 0.1678172 +0.2686816 0.510322 0.1678172 +0.2902431 0.510322 0.1678172 +0.3104189 0.510322 0.1678172 +0.3293248 0.510322 0.1678172 +0.3470774 0.510322 0.1678172 +0.3637862 0.510322 0.1678172 +0.3795513 0.510322 0.1678172 +0.3944623 0.510322 0.1678172 +0.4085988 0.510322 0.1678172 +0.4220313 0.510322 0.1678172 +0.4348222 0.510322 0.1678172 +0.4470264 0.510322 0.1678172 +0.4586928 0.510322 0.1678172 +0.4698649 0.510322 0.1678172 +0.4805811 0.510322 0.1678172 +0.490876 0.510322 0.1678172 +0.5007803 0.510322 0.1678172 +0.510322 0.510322 0.1678172 +0.5195258 0.510322 0.1678172 +0.5284142 0.510322 0.1678172 +0.5370079 0.510322 0.1678172 +0.5453253 0.510322 0.1678172 +0.5533834 0.510322 0.1678172 +0.5611974 0.510322 0.1678172 +0.5687816 0.510322 0.1678172 +0.092819 0.5195258 0.1678172 +0.1056428 0.5195258 0.1678172 +0.1201537 0.5195258 0.1678172 +0.1409607 0.5195258 0.1678172 +0.1678172 0.5195258 0.1678172 +0.1950164 0.5195258 0.1678172 +0.2210581 0.5195258 0.1678172 +0.245636 0.5195258 0.1678172 +0.2686816 0.5195258 0.1678172 +0.2902431 0.5195258 0.1678172 +0.3104189 0.5195258 0.1678172 +0.3293248 0.5195258 0.1678172 +0.3470774 0.5195258 0.1678172 +0.3637862 0.5195258 0.1678172 +0.3795513 0.5195258 0.1678172 +0.3944623 0.5195258 0.1678172 +0.4085988 0.5195258 0.1678172 +0.4220313 0.5195258 0.1678172 +0.4348222 0.5195258 0.1678172 +0.4470264 0.5195258 0.1678172 +0.4586928 0.5195258 0.1678172 +0.4698649 0.5195258 0.1678172 +0.4805811 0.5195258 0.1678172 +0.490876 0.5195258 0.1678172 +0.5007803 0.5195258 0.1678172 +0.510322 0.5195258 0.1678172 +0.5195258 0.5195258 0.1678172 +0.5284142 0.5195258 0.1678172 +0.5370079 0.5195258 0.1678172 +0.5453253 0.5195258 0.1678172 +0.5533834 0.5195258 0.1678172 +0.5611974 0.5195258 0.1678172 +0.5687816 0.5195258 0.1678172 +0.092819 0.5284142 0.1678172 +0.1056428 0.5284142 0.1678172 +0.1201537 0.5284142 0.1678172 +0.1409607 0.5284142 0.1678172 +0.1678172 0.5284142 0.1678172 +0.1950164 0.5284142 0.1678172 +0.2210581 0.5284142 0.1678172 +0.245636 0.5284142 0.1678172 +0.2686816 0.5284142 0.1678172 +0.2902431 0.5284142 0.1678172 +0.3104189 0.5284142 0.1678172 +0.3293248 0.5284142 0.1678172 +0.3470774 0.5284142 0.1678172 +0.3637862 0.5284142 0.1678172 +0.3795513 0.5284142 0.1678172 +0.3944623 0.5284142 0.1678172 +0.4085988 0.5284142 0.1678172 +0.4220313 0.5284142 0.1678172 +0.4348222 0.5284142 0.1678172 +0.4470264 0.5284142 0.1678172 +0.4586928 0.5284142 0.1678172 +0.4698649 0.5284142 0.1678172 +0.4805811 0.5284142 0.1678172 +0.490876 0.5284142 0.1678172 +0.5007803 0.5284142 0.1678172 +0.510322 0.5284142 0.1678172 +0.5195258 0.5284142 0.1678172 +0.5284142 0.5284142 0.1678172 +0.5370079 0.5284142 0.1678172 +0.5453253 0.5284142 0.1678172 +0.5533834 0.5284142 0.1678172 +0.5611974 0.5284142 0.1678172 +0.5687816 0.5284142 0.1678172 +0.092819 0.5370079 0.1678172 +0.1056428 0.5370079 0.1678172 +0.1201537 0.5370079 0.1678172 +0.1409607 0.5370079 0.1678172 +0.1678172 0.5370079 0.1678172 +0.1950164 0.5370079 0.1678172 +0.2210581 0.5370079 0.1678172 +0.245636 0.5370079 0.1678172 +0.2686816 0.5370079 0.1678172 +0.2902431 0.5370079 0.1678172 +0.3104189 0.5370079 0.1678172 +0.3293248 0.5370079 0.1678172 +0.3470774 0.5370079 0.1678172 +0.3637862 0.5370079 0.1678172 +0.3795513 0.5370079 0.1678172 +0.3944623 0.5370079 0.1678172 +0.4085988 0.5370079 0.1678172 +0.4220313 0.5370079 0.1678172 +0.4348222 0.5370079 0.1678172 +0.4470264 0.5370079 0.1678172 +0.4586928 0.5370079 0.1678172 +0.4698649 0.5370079 0.1678172 +0.4805811 0.5370079 0.1678172 +0.490876 0.5370079 0.1678172 +0.5007803 0.5370079 0.1678172 +0.510322 0.5370079 0.1678172 +0.5195258 0.5370079 0.1678172 +0.5284142 0.5370079 0.1678172 +0.5370079 0.5370079 0.1678172 +0.5453253 0.5370079 0.1678172 +0.5533834 0.5370079 0.1678172 +0.5611974 0.5370079 0.1678172 +0.5687816 0.5370079 0.1678172 +0.092819 0.5453253 0.1678172 +0.1056428 0.5453253 0.1678172 +0.1201537 0.5453253 0.1678172 +0.1409607 0.5453253 0.1678172 +0.1678172 0.5453253 0.1678172 +0.1950164 0.5453253 0.1678172 +0.2210581 0.5453253 0.1678172 +0.245636 0.5453253 0.1678172 +0.2686816 0.5453253 0.1678172 +0.2902431 0.5453253 0.1678172 +0.3104189 0.5453253 0.1678172 +0.3293248 0.5453253 0.1678172 +0.3470774 0.5453253 0.1678172 +0.3637862 0.5453253 0.1678172 +0.3795513 0.5453253 0.1678172 +0.3944623 0.5453253 0.1678172 +0.4085988 0.5453253 0.1678172 +0.4220313 0.5453253 0.1678172 +0.4348222 0.5453253 0.1678172 +0.4470264 0.5453253 0.1678172 +0.4586928 0.5453253 0.1678172 +0.4698649 0.5453253 0.1678172 +0.4805811 0.5453253 0.1678172 +0.490876 0.5453253 0.1678172 +0.5007803 0.5453253 0.1678172 +0.510322 0.5453253 0.1678172 +0.5195258 0.5453253 0.1678172 +0.5284142 0.5453253 0.1678172 +0.5370079 0.5453253 0.1678172 +0.5453253 0.5453253 0.1678172 +0.5533834 0.5453253 0.1678172 +0.5611974 0.5453253 0.1678172 +0.5687816 0.5453253 0.1678172 +0.092819 0.5533834 0.1678172 +0.1056428 0.5533834 0.1678172 +0.1201537 0.5533834 0.1678172 +0.1409607 0.5533834 0.1678172 +0.1678172 0.5533834 0.1678172 +0.1950164 0.5533834 0.1678172 +0.2210581 0.5533834 0.1678172 +0.245636 0.5533834 0.1678172 +0.2686816 0.5533834 0.1678172 +0.2902431 0.5533834 0.1678172 +0.3104189 0.5533834 0.1678172 +0.3293248 0.5533834 0.1678172 +0.3470774 0.5533834 0.1678172 +0.3637862 0.5533834 0.1678172 +0.3795513 0.5533834 0.1678172 +0.3944623 0.5533834 0.1678172 +0.4085988 0.5533834 0.1678172 +0.4220313 0.5533834 0.1678172 +0.4348222 0.5533834 0.1678172 +0.4470264 0.5533834 0.1678172 +0.4586928 0.5533834 0.1678172 +0.4698649 0.5533834 0.1678172 +0.4805811 0.5533834 0.1678172 +0.490876 0.5533834 0.1678172 +0.5007803 0.5533834 0.1678172 +0.510322 0.5533834 0.1678172 +0.5195258 0.5533834 0.1678172 +0.5284142 0.5533834 0.1678172 +0.5370079 0.5533834 0.1678172 +0.5453253 0.5533834 0.1678172 +0.5533834 0.5533834 0.1678172 +0.5611974 0.5533834 0.1678172 +0.5687816 0.5533834 0.1678172 +0.092819 0.5611974 0.1678172 +0.1056428 0.5611974 0.1678172 +0.1201537 0.5611974 0.1678172 +0.1409607 0.5611974 0.1678172 +0.1678172 0.5611974 0.1678172 +0.1950164 0.5611974 0.1678172 +0.2210581 0.5611974 0.1678172 +0.245636 0.5611974 0.1678172 +0.2686816 0.5611974 0.1678172 +0.2902431 0.5611974 0.1678172 +0.3104189 0.5611974 0.1678172 +0.3293248 0.5611974 0.1678172 +0.3470774 0.5611974 0.1678172 +0.3637862 0.5611974 0.1678172 +0.3795513 0.5611974 0.1678172 +0.3944623 0.5611974 0.1678172 +0.4085988 0.5611974 0.1678172 +0.4220313 0.5611974 0.1678172 +0.4348222 0.5611974 0.1678172 +0.4470264 0.5611974 0.1678172 +0.4586928 0.5611974 0.1678172 +0.4698649 0.5611974 0.1678172 +0.4805811 0.5611974 0.1678172 +0.490876 0.5611974 0.1678172 +0.5007803 0.5611974 0.1678172 +0.510322 0.5611974 0.1678172 +0.5195258 0.5611974 0.1678172 +0.5284142 0.5611974 0.1678172 +0.5370079 0.5611974 0.1678172 +0.5453253 0.5611974 0.1678172 +0.5533834 0.5611974 0.1678172 +0.5611974 0.5611974 0.1678172 +0.5687816 0.5611974 0.1678172 +0.092819 0.5687816 0.1678172 +0.1056428 0.5687816 0.1678172 +0.1201537 0.5687816 0.1678172 +0.1409607 0.5687816 0.1678172 +0.1678172 0.5687816 0.1678172 +0.1950164 0.5687816 0.1678172 +0.2210581 0.5687816 0.1678172 +0.245636 0.5687816 0.1678172 +0.2686816 0.5687816 0.1678172 +0.2902431 0.5687816 0.1678172 +0.3104189 0.5687816 0.1678172 +0.3293248 0.5687816 0.1678172 +0.3470774 0.5687816 0.1678172 +0.3637862 0.5687816 0.1678172 +0.3795513 0.5687816 0.1678172 +0.3944623 0.5687816 0.1678172 +0.4085988 0.5687816 0.1678172 +0.4220313 0.5687816 0.1678172 +0.4348222 0.5687816 0.1678172 +0.4470264 0.5687816 0.1678172 +0.4586928 0.5687816 0.1678172 +0.4698649 0.5687816 0.1678172 +0.4805811 0.5687816 0.1678172 +0.490876 0.5687816 0.1678172 +0.5007803 0.5687816 0.1678172 +0.510322 0.5687816 0.1678172 +0.5195258 0.5687816 0.1678172 +0.5284142 0.5687816 0.1678172 +0.5370079 0.5687816 0.1678172 +0.5453253 0.5687816 0.1678172 +0.5533834 0.5687816 0.1678172 +0.5611974 0.5687816 0.1678172 +0.5687816 0.5687816 0.1678172 +0.092819 0.092819 0.1950164 +0.1056428 0.092819 0.1950164 +0.1201537 0.092819 0.1950164 +0.1409607 0.092819 0.1950164 +0.1678172 0.092819 0.1950164 +0.1950164 0.092819 0.1950164 +0.2210581 0.092819 0.1950164 +0.245636 0.092819 0.1950164 +0.2686816 0.092819 0.1950164 +0.2902431 0.092819 0.1950164 +0.3104189 0.092819 0.1950164 +0.3293248 0.092819 0.1950164 +0.3470774 0.092819 0.1950164 +0.3637862 0.092819 0.1950164 +0.3795513 0.092819 0.1950164 +0.3944623 0.092819 0.1950164 +0.4085988 0.092819 0.1950164 +0.4220313 0.092819 0.1950164 +0.4348222 0.092819 0.1950164 +0.4470264 0.092819 0.1950164 +0.4586928 0.092819 0.1950164 +0.4698649 0.092819 0.1950164 +0.4805811 0.092819 0.1950164 +0.490876 0.092819 0.1950164 +0.5007803 0.092819 0.1950164 +0.510322 0.092819 0.1950164 +0.5195258 0.092819 0.1950164 +0.5284142 0.092819 0.1950164 +0.5370079 0.092819 0.1950164 +0.5453253 0.092819 0.1950164 +0.5533834 0.092819 0.1950164 +0.5611974 0.092819 0.1950164 +0.5687816 0.092819 0.1950164 +0.092819 0.1056428 0.1950164 +0.1056428 0.1056428 0.1950164 +0.1201537 0.1056428 0.1950164 +0.1409607 0.1056428 0.1950164 +0.1678172 0.1056428 0.1950164 +0.1950164 0.1056428 0.1950164 +0.2210581 0.1056428 0.1950164 +0.245636 0.1056428 0.1950164 +0.2686816 0.1056428 0.1950164 +0.2902431 0.1056428 0.1950164 +0.3104189 0.1056428 0.1950164 +0.3293248 0.1056428 0.1950164 +0.3470774 0.1056428 0.1950164 +0.3637862 0.1056428 0.1950164 +0.3795513 0.1056428 0.1950164 +0.3944623 0.1056428 0.1950164 +0.4085988 0.1056428 0.1950164 +0.4220313 0.1056428 0.1950164 +0.4348222 0.1056428 0.1950164 +0.4470264 0.1056428 0.1950164 +0.4586928 0.1056428 0.1950164 +0.4698649 0.1056428 0.1950164 +0.4805811 0.1056428 0.1950164 +0.490876 0.1056428 0.1950164 +0.5007803 0.1056428 0.1950164 +0.510322 0.1056428 0.1950164 +0.5195258 0.1056428 0.1950164 +0.5284142 0.1056428 0.1950164 +0.5370079 0.1056428 0.1950164 +0.5453253 0.1056428 0.1950164 +0.5533834 0.1056428 0.1950164 +0.5611974 0.1056428 0.1950164 +0.5687816 0.1056428 0.1950164 +0.092819 0.1201537 0.1950164 +0.1056428 0.1201537 0.1950164 +0.1201537 0.1201537 0.1950164 +0.1409607 0.1201537 0.1950164 +0.1678172 0.1201537 0.1950164 +0.1950164 0.1201537 0.1950164 +0.2210581 0.1201537 0.1950164 +0.245636 0.1201537 0.1950164 +0.2686816 0.1201537 0.1950164 +0.2902431 0.1201537 0.1950164 +0.3104189 0.1201537 0.1950164 +0.3293248 0.1201537 0.1950164 +0.3470774 0.1201537 0.1950164 +0.3637862 0.1201537 0.1950164 +0.3795513 0.1201537 0.1950164 +0.3944623 0.1201537 0.1950164 +0.4085988 0.1201537 0.1950164 +0.4220313 0.1201537 0.1950164 +0.4348222 0.1201537 0.1950164 +0.4470264 0.1201537 0.1950164 +0.4586928 0.1201537 0.1950164 +0.4698649 0.1201537 0.1950164 +0.4805811 0.1201537 0.1950164 +0.490876 0.1201537 0.1950164 +0.5007803 0.1201537 0.1950164 +0.510322 0.1201537 0.1950164 +0.5195258 0.1201537 0.1950164 +0.5284142 0.1201537 0.1950164 +0.5370079 0.1201537 0.1950164 +0.5453253 0.1201537 0.1950164 +0.5533834 0.1201537 0.1950164 +0.5611974 0.1201537 0.1950164 +0.5687816 0.1201537 0.1950164 +0.092819 0.1409607 0.1950164 +0.1056428 0.1409607 0.1950164 +0.1201537 0.1409607 0.1950164 +0.1409607 0.1409607 0.1950164 +0.1678172 0.1409607 0.1950164 +0.1950164 0.1409607 0.1950164 +0.2210581 0.1409607 0.1950164 +0.245636 0.1409607 0.1950164 +0.2686816 0.1409607 0.1950164 +0.2902431 0.1409607 0.1950164 +0.3104189 0.1409607 0.1950164 +0.3293248 0.1409607 0.1950164 +0.3470774 0.1409607 0.1950164 +0.3637862 0.1409607 0.1950164 +0.3795513 0.1409607 0.1950164 +0.3944623 0.1409607 0.1950164 +0.4085988 0.1409607 0.1950164 +0.4220313 0.1409607 0.1950164 +0.4348222 0.1409607 0.1950164 +0.4470264 0.1409607 0.1950164 +0.4586928 0.1409607 0.1950164 +0.4698649 0.1409607 0.1950164 +0.4805811 0.1409607 0.1950164 +0.490876 0.1409607 0.1950164 +0.5007803 0.1409607 0.1950164 +0.510322 0.1409607 0.1950164 +0.5195258 0.1409607 0.1950164 +0.5284142 0.1409607 0.1950164 +0.5370079 0.1409607 0.1950164 +0.5453253 0.1409607 0.1950164 +0.5533834 0.1409607 0.1950164 +0.5611974 0.1409607 0.1950164 +0.5687816 0.1409607 0.1950164 +0.092819 0.1678172 0.1950164 +0.1056428 0.1678172 0.1950164 +0.1201537 0.1678172 0.1950164 +0.1409607 0.1678172 0.1950164 +0.1678172 0.1678172 0.1950164 +0.1950164 0.1678172 0.1950164 +0.2210581 0.1678172 0.1950164 +0.245636 0.1678172 0.1950164 +0.2686816 0.1678172 0.1950164 +0.2902431 0.1678172 0.1950164 +0.3104189 0.1678172 0.1950164 +0.3293248 0.1678172 0.1950164 +0.3470774 0.1678172 0.1950164 +0.3637862 0.1678172 0.1950164 +0.3795513 0.1678172 0.1950164 +0.3944623 0.1678172 0.1950164 +0.4085988 0.1678172 0.1950164 +0.4220313 0.1678172 0.1950164 +0.4348222 0.1678172 0.1950164 +0.4470264 0.1678172 0.1950164 +0.4586928 0.1678172 0.1950164 +0.4698649 0.1678172 0.1950164 +0.4805811 0.1678172 0.1950164 +0.490876 0.1678172 0.1950164 +0.5007803 0.1678172 0.1950164 +0.510322 0.1678172 0.1950164 +0.5195258 0.1678172 0.1950164 +0.5284142 0.1678172 0.1950164 +0.5370079 0.1678172 0.1950164 +0.5453253 0.1678172 0.1950164 +0.5533834 0.1678172 0.1950164 +0.5611974 0.1678172 0.1950164 +0.5687816 0.1678172 0.1950164 +0.092819 0.1950164 0.1950164 +0.1056428 0.1950164 0.1950164 +0.1201537 0.1950164 0.1950164 +0.1409607 0.1950164 0.1950164 +0.1678172 0.1950164 0.1950164 +0.1950164 0.1950164 0.1950164 +0.2210581 0.1950164 0.1950164 +0.245636 0.1950164 0.1950164 +0.2686816 0.1950164 0.1950164 +0.2902431 0.1950164 0.1950164 +0.3104189 0.1950164 0.1950164 +0.3293248 0.1950164 0.1950164 +0.3470774 0.1950164 0.1950164 +0.3637862 0.1950164 0.1950164 +0.3795513 0.1950164 0.1950164 +0.3944623 0.1950164 0.1950164 +0.4085988 0.1950164 0.1950164 +0.4220313 0.1950164 0.1950164 +0.4348222 0.1950164 0.1950164 +0.4470264 0.1950164 0.1950164 +0.4586928 0.1950164 0.1950164 +0.4698649 0.1950164 0.1950164 +0.4805811 0.1950164 0.1950164 +0.490876 0.1950164 0.1950164 +0.5007803 0.1950164 0.1950164 +0.510322 0.1950164 0.1950164 +0.5195258 0.1950164 0.1950164 +0.5284142 0.1950164 0.1950164 +0.5370079 0.1950164 0.1950164 +0.5453253 0.1950164 0.1950164 +0.5533834 0.1950164 0.1950164 +0.5611974 0.1950164 0.1950164 +0.5687816 0.1950164 0.1950164 +0.092819 0.2210581 0.1950164 +0.1056428 0.2210581 0.1950164 +0.1201537 0.2210581 0.1950164 +0.1409607 0.2210581 0.1950164 +0.1678172 0.2210581 0.1950164 +0.1950164 0.2210581 0.1950164 +0.2210581 0.2210581 0.1950164 +0.245636 0.2210581 0.1950164 +0.2686816 0.2210581 0.1950164 +0.2902431 0.2210581 0.1950164 +0.3104189 0.2210581 0.1950164 +0.3293248 0.2210581 0.1950164 +0.3470774 0.2210581 0.1950164 +0.3637862 0.2210581 0.1950164 +0.3795513 0.2210581 0.1950164 +0.3944623 0.2210581 0.1950164 +0.4085988 0.2210581 0.1950164 +0.4220313 0.2210581 0.1950164 +0.4348222 0.2210581 0.1950164 +0.4470264 0.2210581 0.1950164 +0.4586928 0.2210581 0.1950164 +0.4698649 0.2210581 0.1950164 +0.4805811 0.2210581 0.1950164 +0.490876 0.2210581 0.1950164 +0.5007803 0.2210581 0.1950164 +0.510322 0.2210581 0.1950164 +0.5195258 0.2210581 0.1950164 +0.5284142 0.2210581 0.1950164 +0.5370079 0.2210581 0.1950164 +0.5453253 0.2210581 0.1950164 +0.5533834 0.2210581 0.1950164 +0.5611974 0.2210581 0.1950164 +0.5687816 0.2210581 0.1950164 +0.092819 0.245636 0.1950164 +0.1056428 0.245636 0.1950164 +0.1201537 0.245636 0.1950164 +0.1409607 0.245636 0.1950164 +0.1678172 0.245636 0.1950164 +0.1950164 0.245636 0.1950164 +0.2210581 0.245636 0.1950164 +0.245636 0.245636 0.1950164 +0.2686816 0.245636 0.1950164 +0.2902431 0.245636 0.1950164 +0.3104189 0.245636 0.1950164 +0.3293248 0.245636 0.1950164 +0.3470774 0.245636 0.1950164 +0.3637862 0.245636 0.1950164 +0.3795513 0.245636 0.1950164 +0.3944623 0.245636 0.1950164 +0.4085988 0.245636 0.1950164 +0.4220313 0.245636 0.1950164 +0.4348222 0.245636 0.1950164 +0.4470264 0.245636 0.1950164 +0.4586928 0.245636 0.1950164 +0.4698649 0.245636 0.1950164 +0.4805811 0.245636 0.1950164 +0.490876 0.245636 0.1950164 +0.5007803 0.245636 0.1950164 +0.510322 0.245636 0.1950164 +0.5195258 0.245636 0.1950164 +0.5284142 0.245636 0.1950164 +0.5370079 0.245636 0.1950164 +0.5453253 0.245636 0.1950164 +0.5533834 0.245636 0.1950164 +0.5611974 0.245636 0.1950164 +0.5687816 0.245636 0.1950164 +0.092819 0.2686816 0.1950164 +0.1056428 0.2686816 0.1950164 +0.1201537 0.2686816 0.1950164 +0.1409607 0.2686816 0.1950164 +0.1678172 0.2686816 0.1950164 +0.1950164 0.2686816 0.1950164 +0.2210581 0.2686816 0.1950164 +0.245636 0.2686816 0.1950164 +0.2686816 0.2686816 0.1950164 +0.2902431 0.2686816 0.1950164 +0.3104189 0.2686816 0.1950164 +0.3293248 0.2686816 0.1950164 +0.3470774 0.2686816 0.1950164 +0.3637862 0.2686816 0.1950164 +0.3795513 0.2686816 0.1950164 +0.3944623 0.2686816 0.1950164 +0.4085988 0.2686816 0.1950164 +0.4220313 0.2686816 0.1950164 +0.4348222 0.2686816 0.1950164 +0.4470264 0.2686816 0.1950164 +0.4586928 0.2686816 0.1950164 +0.4698649 0.2686816 0.1950164 +0.4805811 0.2686816 0.1950164 +0.490876 0.2686816 0.1950164 +0.5007803 0.2686816 0.1950164 +0.510322 0.2686816 0.1950164 +0.5195258 0.2686816 0.1950164 +0.5284142 0.2686816 0.1950164 +0.5370079 0.2686816 0.1950164 +0.5453253 0.2686816 0.1950164 +0.5533834 0.2686816 0.1950164 +0.5611974 0.2686816 0.1950164 +0.5687816 0.2686816 0.1950164 +0.092819 0.2902431 0.1950164 +0.1056428 0.2902431 0.1950164 +0.1201537 0.2902431 0.1950164 +0.1409607 0.2902431 0.1950164 +0.1678172 0.2902431 0.1950164 +0.1950164 0.2902431 0.1950164 +0.2210581 0.2902431 0.1950164 +0.245636 0.2902431 0.1950164 +0.2686816 0.2902431 0.1950164 +0.2902431 0.2902431 0.1950164 +0.3104189 0.2902431 0.1950164 +0.3293248 0.2902431 0.1950164 +0.3470774 0.2902431 0.1950164 +0.3637862 0.2902431 0.1950164 +0.3795513 0.2902431 0.1950164 +0.3944623 0.2902431 0.1950164 +0.4085988 0.2902431 0.1950164 +0.4220313 0.2902431 0.1950164 +0.4348222 0.2902431 0.1950164 +0.4470264 0.2902431 0.1950164 +0.4586928 0.2902431 0.1950164 +0.4698649 0.2902431 0.1950164 +0.4805811 0.2902431 0.1950164 +0.490876 0.2902431 0.1950164 +0.5007803 0.2902431 0.1950164 +0.510322 0.2902431 0.1950164 +0.5195258 0.2902431 0.1950164 +0.5284142 0.2902431 0.1950164 +0.5370079 0.2902431 0.1950164 +0.5453253 0.2902431 0.1950164 +0.5533834 0.2902431 0.1950164 +0.5611974 0.2902431 0.1950164 +0.5687816 0.2902431 0.1950164 +0.092819 0.3104189 0.1950164 +0.1056428 0.3104189 0.1950164 +0.1201537 0.3104189 0.1950164 +0.1409607 0.3104189 0.1950164 +0.1678172 0.3104189 0.1950164 +0.1950164 0.3104189 0.1950164 +0.2210581 0.3104189 0.1950164 +0.245636 0.3104189 0.1950164 +0.2686816 0.3104189 0.1950164 +0.2902431 0.3104189 0.1950164 +0.3104189 0.3104189 0.1950164 +0.3293248 0.3104189 0.1950164 +0.3470774 0.3104189 0.1950164 +0.3637862 0.3104189 0.1950164 +0.3795513 0.3104189 0.1950164 +0.3944623 0.3104189 0.1950164 +0.4085988 0.3104189 0.1950164 +0.4220313 0.3104189 0.1950164 +0.4348222 0.3104189 0.1950164 +0.4470264 0.3104189 0.1950164 +0.4586928 0.3104189 0.1950164 +0.4698649 0.3104189 0.1950164 +0.4805811 0.3104189 0.1950164 +0.490876 0.3104189 0.1950164 +0.5007803 0.3104189 0.1950164 +0.510322 0.3104189 0.1950164 +0.5195258 0.3104189 0.1950164 +0.5284142 0.3104189 0.1950164 +0.5370079 0.3104189 0.1950164 +0.5453253 0.3104189 0.1950164 +0.5533834 0.3104189 0.1950164 +0.5611974 0.3104189 0.1950164 +0.5687816 0.3104189 0.1950164 +0.092819 0.3293248 0.1950164 +0.1056428 0.3293248 0.1950164 +0.1201537 0.3293248 0.1950164 +0.1409607 0.3293248 0.1950164 +0.1678172 0.3293248 0.1950164 +0.1950164 0.3293248 0.1950164 +0.2210581 0.3293248 0.1950164 +0.245636 0.3293248 0.1950164 +0.2686816 0.3293248 0.1950164 +0.2902431 0.3293248 0.1950164 +0.3104189 0.3293248 0.1950164 +0.3293248 0.3293248 0.1950164 +0.3470774 0.3293248 0.1950164 +0.3637862 0.3293248 0.1950164 +0.3795513 0.3293248 0.1950164 +0.3944623 0.3293248 0.1950164 +0.4085988 0.3293248 0.1950164 +0.4220313 0.3293248 0.1950164 +0.4348222 0.3293248 0.1950164 +0.4470264 0.3293248 0.1950164 +0.4586928 0.3293248 0.1950164 +0.4698649 0.3293248 0.1950164 +0.4805811 0.3293248 0.1950164 +0.490876 0.3293248 0.1950164 +0.5007803 0.3293248 0.1950164 +0.510322 0.3293248 0.1950164 +0.5195258 0.3293248 0.1950164 +0.5284142 0.3293248 0.1950164 +0.5370079 0.3293248 0.1950164 +0.5453253 0.3293248 0.1950164 +0.5533834 0.3293248 0.1950164 +0.5611974 0.3293248 0.1950164 +0.5687816 0.3293248 0.1950164 +0.092819 0.3470774 0.1950164 +0.1056428 0.3470774 0.1950164 +0.1201537 0.3470774 0.1950164 +0.1409607 0.3470774 0.1950164 +0.1678172 0.3470774 0.1950164 +0.1950164 0.3470774 0.1950164 +0.2210581 0.3470774 0.1950164 +0.245636 0.3470774 0.1950164 +0.2686816 0.3470774 0.1950164 +0.2902431 0.3470774 0.1950164 +0.3104189 0.3470774 0.1950164 +0.3293248 0.3470774 0.1950164 +0.3470774 0.3470774 0.1950164 +0.3637862 0.3470774 0.1950164 +0.3795513 0.3470774 0.1950164 +0.3944623 0.3470774 0.1950164 +0.4085988 0.3470774 0.1950164 +0.4220313 0.3470774 0.1950164 +0.4348222 0.3470774 0.1950164 +0.4470264 0.3470774 0.1950164 +0.4586928 0.3470774 0.1950164 +0.4698649 0.3470774 0.1950164 +0.4805811 0.3470774 0.1950164 +0.490876 0.3470774 0.1950164 +0.5007803 0.3470774 0.1950164 +0.510322 0.3470774 0.1950164 +0.5195258 0.3470774 0.1950164 +0.5284142 0.3470774 0.1950164 +0.5370079 0.3470774 0.1950164 +0.5453253 0.3470774 0.1950164 +0.5533834 0.3470774 0.1950164 +0.5611974 0.3470774 0.1950164 +0.5687816 0.3470774 0.1950164 +0.092819 0.3637862 0.1950164 +0.1056428 0.3637862 0.1950164 +0.1201537 0.3637862 0.1950164 +0.1409607 0.3637862 0.1950164 +0.1678172 0.3637862 0.1950164 +0.1950164 0.3637862 0.1950164 +0.2210581 0.3637862 0.1950164 +0.245636 0.3637862 0.1950164 +0.2686816 0.3637862 0.1950164 +0.2902431 0.3637862 0.1950164 +0.3104189 0.3637862 0.1950164 +0.3293248 0.3637862 0.1950164 +0.3470774 0.3637862 0.1950164 +0.3637862 0.3637862 0.1950164 +0.3795513 0.3637862 0.1950164 +0.3944623 0.3637862 0.1950164 +0.4085988 0.3637862 0.1950164 +0.4220313 0.3637862 0.1950164 +0.4348222 0.3637862 0.1950164 +0.4470264 0.3637862 0.1950164 +0.4586928 0.3637862 0.1950164 +0.4698649 0.3637862 0.1950164 +0.4805811 0.3637862 0.1950164 +0.490876 0.3637862 0.1950164 +0.5007803 0.3637862 0.1950164 +0.510322 0.3637862 0.1950164 +0.5195258 0.3637862 0.1950164 +0.5284142 0.3637862 0.1950164 +0.5370079 0.3637862 0.1950164 +0.5453253 0.3637862 0.1950164 +0.5533834 0.3637862 0.1950164 +0.5611974 0.3637862 0.1950164 +0.5687816 0.3637862 0.1950164 +0.092819 0.3795513 0.1950164 +0.1056428 0.3795513 0.1950164 +0.1201537 0.3795513 0.1950164 +0.1409607 0.3795513 0.1950164 +0.1678172 0.3795513 0.1950164 +0.1950164 0.3795513 0.1950164 +0.2210581 0.3795513 0.1950164 +0.245636 0.3795513 0.1950164 +0.2686816 0.3795513 0.1950164 +0.2902431 0.3795513 0.1950164 +0.3104189 0.3795513 0.1950164 +0.3293248 0.3795513 0.1950164 +0.3470774 0.3795513 0.1950164 +0.3637862 0.3795513 0.1950164 +0.3795513 0.3795513 0.1950164 +0.3944623 0.3795513 0.1950164 +0.4085988 0.3795513 0.1950164 +0.4220313 0.3795513 0.1950164 +0.4348222 0.3795513 0.1950164 +0.4470264 0.3795513 0.1950164 +0.4586928 0.3795513 0.1950164 +0.4698649 0.3795513 0.1950164 +0.4805811 0.3795513 0.1950164 +0.490876 0.3795513 0.1950164 +0.5007803 0.3795513 0.1950164 +0.510322 0.3795513 0.1950164 +0.5195258 0.3795513 0.1950164 +0.5284142 0.3795513 0.1950164 +0.5370079 0.3795513 0.1950164 +0.5453253 0.3795513 0.1950164 +0.5533834 0.3795513 0.1950164 +0.5611974 0.3795513 0.1950164 +0.5687816 0.3795513 0.1950164 +0.092819 0.3944623 0.1950164 +0.1056428 0.3944623 0.1950164 +0.1201537 0.3944623 0.1950164 +0.1409607 0.3944623 0.1950164 +0.1678172 0.3944623 0.1950164 +0.1950164 0.3944623 0.1950164 +0.2210581 0.3944623 0.1950164 +0.245636 0.3944623 0.1950164 +0.2686816 0.3944623 0.1950164 +0.2902431 0.3944623 0.1950164 +0.3104189 0.3944623 0.1950164 +0.3293248 0.3944623 0.1950164 +0.3470774 0.3944623 0.1950164 +0.3637862 0.3944623 0.1950164 +0.3795513 0.3944623 0.1950164 +0.3944623 0.3944623 0.1950164 +0.4085988 0.3944623 0.1950164 +0.4220313 0.3944623 0.1950164 +0.4348222 0.3944623 0.1950164 +0.4470264 0.3944623 0.1950164 +0.4586928 0.3944623 0.1950164 +0.4698649 0.3944623 0.1950164 +0.4805811 0.3944623 0.1950164 +0.490876 0.3944623 0.1950164 +0.5007803 0.3944623 0.1950164 +0.510322 0.3944623 0.1950164 +0.5195258 0.3944623 0.1950164 +0.5284142 0.3944623 0.1950164 +0.5370079 0.3944623 0.1950164 +0.5453253 0.3944623 0.1950164 +0.5533834 0.3944623 0.1950164 +0.5611974 0.3944623 0.1950164 +0.5687816 0.3944623 0.1950164 +0.092819 0.4085988 0.1950164 +0.1056428 0.4085988 0.1950164 +0.1201537 0.4085988 0.1950164 +0.1409607 0.4085988 0.1950164 +0.1678172 0.4085988 0.1950164 +0.1950164 0.4085988 0.1950164 +0.2210581 0.4085988 0.1950164 +0.245636 0.4085988 0.1950164 +0.2686816 0.4085988 0.1950164 +0.2902431 0.4085988 0.1950164 +0.3104189 0.4085988 0.1950164 +0.3293248 0.4085988 0.1950164 +0.3470774 0.4085988 0.1950164 +0.3637862 0.4085988 0.1950164 +0.3795513 0.4085988 0.1950164 +0.3944623 0.4085988 0.1950164 +0.4085988 0.4085988 0.1950164 +0.4220313 0.4085988 0.1950164 +0.4348222 0.4085988 0.1950164 +0.4470264 0.4085988 0.1950164 +0.4586928 0.4085988 0.1950164 +0.4698649 0.4085988 0.1950164 +0.4805811 0.4085988 0.1950164 +0.490876 0.4085988 0.1950164 +0.5007803 0.4085988 0.1950164 +0.510322 0.4085988 0.1950164 +0.5195258 0.4085988 0.1950164 +0.5284142 0.4085988 0.1950164 +0.5370079 0.4085988 0.1950164 +0.5453253 0.4085988 0.1950164 +0.5533834 0.4085988 0.1950164 +0.5611974 0.4085988 0.1950164 +0.5687816 0.4085988 0.1950164 +0.092819 0.4220313 0.1950164 +0.1056428 0.4220313 0.1950164 +0.1201537 0.4220313 0.1950164 +0.1409607 0.4220313 0.1950164 +0.1678172 0.4220313 0.1950164 +0.1950164 0.4220313 0.1950164 +0.2210581 0.4220313 0.1950164 +0.245636 0.4220313 0.1950164 +0.2686816 0.4220313 0.1950164 +0.2902431 0.4220313 0.1950164 +0.3104189 0.4220313 0.1950164 +0.3293248 0.4220313 0.1950164 +0.3470774 0.4220313 0.1950164 +0.3637862 0.4220313 0.1950164 +0.3795513 0.4220313 0.1950164 +0.3944623 0.4220313 0.1950164 +0.4085988 0.4220313 0.1950164 +0.4220313 0.4220313 0.1950164 +0.4348222 0.4220313 0.1950164 +0.4470264 0.4220313 0.1950164 +0.4586928 0.4220313 0.1950164 +0.4698649 0.4220313 0.1950164 +0.4805811 0.4220313 0.1950164 +0.490876 0.4220313 0.1950164 +0.5007803 0.4220313 0.1950164 +0.510322 0.4220313 0.1950164 +0.5195258 0.4220313 0.1950164 +0.5284142 0.4220313 0.1950164 +0.5370079 0.4220313 0.1950164 +0.5453253 0.4220313 0.1950164 +0.5533834 0.4220313 0.1950164 +0.5611974 0.4220313 0.1950164 +0.5687816 0.4220313 0.1950164 +0.092819 0.4348222 0.1950164 +0.1056428 0.4348222 0.1950164 +0.1201537 0.4348222 0.1950164 +0.1409607 0.4348222 0.1950164 +0.1678172 0.4348222 0.1950164 +0.1950164 0.4348222 0.1950164 +0.2210581 0.4348222 0.1950164 +0.245636 0.4348222 0.1950164 +0.2686816 0.4348222 0.1950164 +0.2902431 0.4348222 0.1950164 +0.3104189 0.4348222 0.1950164 +0.3293248 0.4348222 0.1950164 +0.3470774 0.4348222 0.1950164 +0.3637862 0.4348222 0.1950164 +0.3795513 0.4348222 0.1950164 +0.3944623 0.4348222 0.1950164 +0.4085988 0.4348222 0.1950164 +0.4220313 0.4348222 0.1950164 +0.4348222 0.4348222 0.1950164 +0.4470264 0.4348222 0.1950164 +0.4586928 0.4348222 0.1950164 +0.4698649 0.4348222 0.1950164 +0.4805811 0.4348222 0.1950164 +0.490876 0.4348222 0.1950164 +0.5007803 0.4348222 0.1950164 +0.510322 0.4348222 0.1950164 +0.5195258 0.4348222 0.1950164 +0.5284142 0.4348222 0.1950164 +0.5370079 0.4348222 0.1950164 +0.5453253 0.4348222 0.1950164 +0.5533834 0.4348222 0.1950164 +0.5611974 0.4348222 0.1950164 +0.5687816 0.4348222 0.1950164 +0.092819 0.4470264 0.1950164 +0.1056428 0.4470264 0.1950164 +0.1201537 0.4470264 0.1950164 +0.1409607 0.4470264 0.1950164 +0.1678172 0.4470264 0.1950164 +0.1950164 0.4470264 0.1950164 +0.2210581 0.4470264 0.1950164 +0.245636 0.4470264 0.1950164 +0.2686816 0.4470264 0.1950164 +0.2902431 0.4470264 0.1950164 +0.3104189 0.4470264 0.1950164 +0.3293248 0.4470264 0.1950164 +0.3470774 0.4470264 0.1950164 +0.3637862 0.4470264 0.1950164 +0.3795513 0.4470264 0.1950164 +0.3944623 0.4470264 0.1950164 +0.4085988 0.4470264 0.1950164 +0.4220313 0.4470264 0.1950164 +0.4348222 0.4470264 0.1950164 +0.4470264 0.4470264 0.1950164 +0.4586928 0.4470264 0.1950164 +0.4698649 0.4470264 0.1950164 +0.4805811 0.4470264 0.1950164 +0.490876 0.4470264 0.1950164 +0.5007803 0.4470264 0.1950164 +0.510322 0.4470264 0.1950164 +0.5195258 0.4470264 0.1950164 +0.5284142 0.4470264 0.1950164 +0.5370079 0.4470264 0.1950164 +0.5453253 0.4470264 0.1950164 +0.5533834 0.4470264 0.1950164 +0.5611974 0.4470264 0.1950164 +0.5687816 0.4470264 0.1950164 +0.092819 0.4586928 0.1950164 +0.1056428 0.4586928 0.1950164 +0.1201537 0.4586928 0.1950164 +0.1409607 0.4586928 0.1950164 +0.1678172 0.4586928 0.1950164 +0.1950164 0.4586928 0.1950164 +0.2210581 0.4586928 0.1950164 +0.245636 0.4586928 0.1950164 +0.2686816 0.4586928 0.1950164 +0.2902431 0.4586928 0.1950164 +0.3104189 0.4586928 0.1950164 +0.3293248 0.4586928 0.1950164 +0.3470774 0.4586928 0.1950164 +0.3637862 0.4586928 0.1950164 +0.3795513 0.4586928 0.1950164 +0.3944623 0.4586928 0.1950164 +0.4085988 0.4586928 0.1950164 +0.4220313 0.4586928 0.1950164 +0.4348222 0.4586928 0.1950164 +0.4470264 0.4586928 0.1950164 +0.4586928 0.4586928 0.1950164 +0.4698649 0.4586928 0.1950164 +0.4805811 0.4586928 0.1950164 +0.490876 0.4586928 0.1950164 +0.5007803 0.4586928 0.1950164 +0.510322 0.4586928 0.1950164 +0.5195258 0.4586928 0.1950164 +0.5284142 0.4586928 0.1950164 +0.5370079 0.4586928 0.1950164 +0.5453253 0.4586928 0.1950164 +0.5533834 0.4586928 0.1950164 +0.5611974 0.4586928 0.1950164 +0.5687816 0.4586928 0.1950164 +0.092819 0.4698649 0.1950164 +0.1056428 0.4698649 0.1950164 +0.1201537 0.4698649 0.1950164 +0.1409607 0.4698649 0.1950164 +0.1678172 0.4698649 0.1950164 +0.1950164 0.4698649 0.1950164 +0.2210581 0.4698649 0.1950164 +0.245636 0.4698649 0.1950164 +0.2686816 0.4698649 0.1950164 +0.2902431 0.4698649 0.1950164 +0.3104189 0.4698649 0.1950164 +0.3293248 0.4698649 0.1950164 +0.3470774 0.4698649 0.1950164 +0.3637862 0.4698649 0.1950164 +0.3795513 0.4698649 0.1950164 +0.3944623 0.4698649 0.1950164 +0.4085988 0.4698649 0.1950164 +0.4220313 0.4698649 0.1950164 +0.4348222 0.4698649 0.1950164 +0.4470264 0.4698649 0.1950164 +0.4586928 0.4698649 0.1950164 +0.4698649 0.4698649 0.1950164 +0.4805811 0.4698649 0.1950164 +0.490876 0.4698649 0.1950164 +0.5007803 0.4698649 0.1950164 +0.510322 0.4698649 0.1950164 +0.5195258 0.4698649 0.1950164 +0.5284142 0.4698649 0.1950164 +0.5370079 0.4698649 0.1950164 +0.5453253 0.4698649 0.1950164 +0.5533834 0.4698649 0.1950164 +0.5611974 0.4698649 0.1950164 +0.5687816 0.4698649 0.1950164 +0.092819 0.4805811 0.1950164 +0.1056428 0.4805811 0.1950164 +0.1201537 0.4805811 0.1950164 +0.1409607 0.4805811 0.1950164 +0.1678172 0.4805811 0.1950164 +0.1950164 0.4805811 0.1950164 +0.2210581 0.4805811 0.1950164 +0.245636 0.4805811 0.1950164 +0.2686816 0.4805811 0.1950164 +0.2902431 0.4805811 0.1950164 +0.3104189 0.4805811 0.1950164 +0.3293248 0.4805811 0.1950164 +0.3470774 0.4805811 0.1950164 +0.3637862 0.4805811 0.1950164 +0.3795513 0.4805811 0.1950164 +0.3944623 0.4805811 0.1950164 +0.4085988 0.4805811 0.1950164 +0.4220313 0.4805811 0.1950164 +0.4348222 0.4805811 0.1950164 +0.4470264 0.4805811 0.1950164 +0.4586928 0.4805811 0.1950164 +0.4698649 0.4805811 0.1950164 +0.4805811 0.4805811 0.1950164 +0.490876 0.4805811 0.1950164 +0.5007803 0.4805811 0.1950164 +0.510322 0.4805811 0.1950164 +0.5195258 0.4805811 0.1950164 +0.5284142 0.4805811 0.1950164 +0.5370079 0.4805811 0.1950164 +0.5453253 0.4805811 0.1950164 +0.5533834 0.4805811 0.1950164 +0.5611974 0.4805811 0.1950164 +0.5687816 0.4805811 0.1950164 +0.092819 0.490876 0.1950164 +0.1056428 0.490876 0.1950164 +0.1201537 0.490876 0.1950164 +0.1409607 0.490876 0.1950164 +0.1678172 0.490876 0.1950164 +0.1950164 0.490876 0.1950164 +0.2210581 0.490876 0.1950164 +0.245636 0.490876 0.1950164 +0.2686816 0.490876 0.1950164 +0.2902431 0.490876 0.1950164 +0.3104189 0.490876 0.1950164 +0.3293248 0.490876 0.1950164 +0.3470774 0.490876 0.1950164 +0.3637862 0.490876 0.1950164 +0.3795513 0.490876 0.1950164 +0.3944623 0.490876 0.1950164 +0.4085988 0.490876 0.1950164 +0.4220313 0.490876 0.1950164 +0.4348222 0.490876 0.1950164 +0.4470264 0.490876 0.1950164 +0.4586928 0.490876 0.1950164 +0.4698649 0.490876 0.1950164 +0.4805811 0.490876 0.1950164 +0.490876 0.490876 0.1950164 +0.5007803 0.490876 0.1950164 +0.510322 0.490876 0.1950164 +0.5195258 0.490876 0.1950164 +0.5284142 0.490876 0.1950164 +0.5370079 0.490876 0.1950164 +0.5453253 0.490876 0.1950164 +0.5533834 0.490876 0.1950164 +0.5611974 0.490876 0.1950164 +0.5687816 0.490876 0.1950164 +0.092819 0.5007803 0.1950164 +0.1056428 0.5007803 0.1950164 +0.1201537 0.5007803 0.1950164 +0.1409607 0.5007803 0.1950164 +0.1678172 0.5007803 0.1950164 +0.1950164 0.5007803 0.1950164 +0.2210581 0.5007803 0.1950164 +0.245636 0.5007803 0.1950164 +0.2686816 0.5007803 0.1950164 +0.2902431 0.5007803 0.1950164 +0.3104189 0.5007803 0.1950164 +0.3293248 0.5007803 0.1950164 +0.3470774 0.5007803 0.1950164 +0.3637862 0.5007803 0.1950164 +0.3795513 0.5007803 0.1950164 +0.3944623 0.5007803 0.1950164 +0.4085988 0.5007803 0.1950164 +0.4220313 0.5007803 0.1950164 +0.4348222 0.5007803 0.1950164 +0.4470264 0.5007803 0.1950164 +0.4586928 0.5007803 0.1950164 +0.4698649 0.5007803 0.1950164 +0.4805811 0.5007803 0.1950164 +0.490876 0.5007803 0.1950164 +0.5007803 0.5007803 0.1950164 +0.510322 0.5007803 0.1950164 +0.5195258 0.5007803 0.1950164 +0.5284142 0.5007803 0.1950164 +0.5370079 0.5007803 0.1950164 +0.5453253 0.5007803 0.1950164 +0.5533834 0.5007803 0.1950164 +0.5611974 0.5007803 0.1950164 +0.5687816 0.5007803 0.1950164 +0.092819 0.510322 0.1950164 +0.1056428 0.510322 0.1950164 +0.1201537 0.510322 0.1950164 +0.1409607 0.510322 0.1950164 +0.1678172 0.510322 0.1950164 +0.1950164 0.510322 0.1950164 +0.2210581 0.510322 0.1950164 +0.245636 0.510322 0.1950164 +0.2686816 0.510322 0.1950164 +0.2902431 0.510322 0.1950164 +0.3104189 0.510322 0.1950164 +0.3293248 0.510322 0.1950164 +0.3470774 0.510322 0.1950164 +0.3637862 0.510322 0.1950164 +0.3795513 0.510322 0.1950164 +0.3944623 0.510322 0.1950164 +0.4085988 0.510322 0.1950164 +0.4220313 0.510322 0.1950164 +0.4348222 0.510322 0.1950164 +0.4470264 0.510322 0.1950164 +0.4586928 0.510322 0.1950164 +0.4698649 0.510322 0.1950164 +0.4805811 0.510322 0.1950164 +0.490876 0.510322 0.1950164 +0.5007803 0.510322 0.1950164 +0.510322 0.510322 0.1950164 +0.5195258 0.510322 0.1950164 +0.5284142 0.510322 0.1950164 +0.5370079 0.510322 0.1950164 +0.5453253 0.510322 0.1950164 +0.5533834 0.510322 0.1950164 +0.5611974 0.510322 0.1950164 +0.5687816 0.510322 0.1950164 +0.092819 0.5195258 0.1950164 +0.1056428 0.5195258 0.1950164 +0.1201537 0.5195258 0.1950164 +0.1409607 0.5195258 0.1950164 +0.1678172 0.5195258 0.1950164 +0.1950164 0.5195258 0.1950164 +0.2210581 0.5195258 0.1950164 +0.245636 0.5195258 0.1950164 +0.2686816 0.5195258 0.1950164 +0.2902431 0.5195258 0.1950164 +0.3104189 0.5195258 0.1950164 +0.3293248 0.5195258 0.1950164 +0.3470774 0.5195258 0.1950164 +0.3637862 0.5195258 0.1950164 +0.3795513 0.5195258 0.1950164 +0.3944623 0.5195258 0.1950164 +0.4085988 0.5195258 0.1950164 +0.4220313 0.5195258 0.1950164 +0.4348222 0.5195258 0.1950164 +0.4470264 0.5195258 0.1950164 +0.4586928 0.5195258 0.1950164 +0.4698649 0.5195258 0.1950164 +0.4805811 0.5195258 0.1950164 +0.490876 0.5195258 0.1950164 +0.5007803 0.5195258 0.1950164 +0.510322 0.5195258 0.1950164 +0.5195258 0.5195258 0.1950164 +0.5284142 0.5195258 0.1950164 +0.5370079 0.5195258 0.1950164 +0.5453253 0.5195258 0.1950164 +0.5533834 0.5195258 0.1950164 +0.5611974 0.5195258 0.1950164 +0.5687816 0.5195258 0.1950164 +0.092819 0.5284142 0.1950164 +0.1056428 0.5284142 0.1950164 +0.1201537 0.5284142 0.1950164 +0.1409607 0.5284142 0.1950164 +0.1678172 0.5284142 0.1950164 +0.1950164 0.5284142 0.1950164 +0.2210581 0.5284142 0.1950164 +0.245636 0.5284142 0.1950164 +0.2686816 0.5284142 0.1950164 +0.2902431 0.5284142 0.1950164 +0.3104189 0.5284142 0.1950164 +0.3293248 0.5284142 0.1950164 +0.3470774 0.5284142 0.1950164 +0.3637862 0.5284142 0.1950164 +0.3795513 0.5284142 0.1950164 +0.3944623 0.5284142 0.1950164 +0.4085988 0.5284142 0.1950164 +0.4220313 0.5284142 0.1950164 +0.4348222 0.5284142 0.1950164 +0.4470264 0.5284142 0.1950164 +0.4586928 0.5284142 0.1950164 +0.4698649 0.5284142 0.1950164 +0.4805811 0.5284142 0.1950164 +0.490876 0.5284142 0.1950164 +0.5007803 0.5284142 0.1950164 +0.510322 0.5284142 0.1950164 +0.5195258 0.5284142 0.1950164 +0.5284142 0.5284142 0.1950164 +0.5370079 0.5284142 0.1950164 +0.5453253 0.5284142 0.1950164 +0.5533834 0.5284142 0.1950164 +0.5611974 0.5284142 0.1950164 +0.5687816 0.5284142 0.1950164 +0.092819 0.5370079 0.1950164 +0.1056428 0.5370079 0.1950164 +0.1201537 0.5370079 0.1950164 +0.1409607 0.5370079 0.1950164 +0.1678172 0.5370079 0.1950164 +0.1950164 0.5370079 0.1950164 +0.2210581 0.5370079 0.1950164 +0.245636 0.5370079 0.1950164 +0.2686816 0.5370079 0.1950164 +0.2902431 0.5370079 0.1950164 +0.3104189 0.5370079 0.1950164 +0.3293248 0.5370079 0.1950164 +0.3470774 0.5370079 0.1950164 +0.3637862 0.5370079 0.1950164 +0.3795513 0.5370079 0.1950164 +0.3944623 0.5370079 0.1950164 +0.4085988 0.5370079 0.1950164 +0.4220313 0.5370079 0.1950164 +0.4348222 0.5370079 0.1950164 +0.4470264 0.5370079 0.1950164 +0.4586928 0.5370079 0.1950164 +0.4698649 0.5370079 0.1950164 +0.4805811 0.5370079 0.1950164 +0.490876 0.5370079 0.1950164 +0.5007803 0.5370079 0.1950164 +0.510322 0.5370079 0.1950164 +0.5195258 0.5370079 0.1950164 +0.5284142 0.5370079 0.1950164 +0.5370079 0.5370079 0.1950164 +0.5453253 0.5370079 0.1950164 +0.5533834 0.5370079 0.1950164 +0.5611974 0.5370079 0.1950164 +0.5687816 0.5370079 0.1950164 +0.092819 0.5453253 0.1950164 +0.1056428 0.5453253 0.1950164 +0.1201537 0.5453253 0.1950164 +0.1409607 0.5453253 0.1950164 +0.1678172 0.5453253 0.1950164 +0.1950164 0.5453253 0.1950164 +0.2210581 0.5453253 0.1950164 +0.245636 0.5453253 0.1950164 +0.2686816 0.5453253 0.1950164 +0.2902431 0.5453253 0.1950164 +0.3104189 0.5453253 0.1950164 +0.3293248 0.5453253 0.1950164 +0.3470774 0.5453253 0.1950164 +0.3637862 0.5453253 0.1950164 +0.3795513 0.5453253 0.1950164 +0.3944623 0.5453253 0.1950164 +0.4085988 0.5453253 0.1950164 +0.4220313 0.5453253 0.1950164 +0.4348222 0.5453253 0.1950164 +0.4470264 0.5453253 0.1950164 +0.4586928 0.5453253 0.1950164 +0.4698649 0.5453253 0.1950164 +0.4805811 0.5453253 0.1950164 +0.490876 0.5453253 0.1950164 +0.5007803 0.5453253 0.1950164 +0.510322 0.5453253 0.1950164 +0.5195258 0.5453253 0.1950164 +0.5284142 0.5453253 0.1950164 +0.5370079 0.5453253 0.1950164 +0.5453253 0.5453253 0.1950164 +0.5533834 0.5453253 0.1950164 +0.5611974 0.5453253 0.1950164 +0.5687816 0.5453253 0.1950164 +0.092819 0.5533834 0.1950164 +0.1056428 0.5533834 0.1950164 +0.1201537 0.5533834 0.1950164 +0.1409607 0.5533834 0.1950164 +0.1678172 0.5533834 0.1950164 +0.1950164 0.5533834 0.1950164 +0.2210581 0.5533834 0.1950164 +0.245636 0.5533834 0.1950164 +0.2686816 0.5533834 0.1950164 +0.2902431 0.5533834 0.1950164 +0.3104189 0.5533834 0.1950164 +0.3293248 0.5533834 0.1950164 +0.3470774 0.5533834 0.1950164 +0.3637862 0.5533834 0.1950164 +0.3795513 0.5533834 0.1950164 +0.3944623 0.5533834 0.1950164 +0.4085988 0.5533834 0.1950164 +0.4220313 0.5533834 0.1950164 +0.4348222 0.5533834 0.1950164 +0.4470264 0.5533834 0.1950164 +0.4586928 0.5533834 0.1950164 +0.4698649 0.5533834 0.1950164 +0.4805811 0.5533834 0.1950164 +0.490876 0.5533834 0.1950164 +0.5007803 0.5533834 0.1950164 +0.510322 0.5533834 0.1950164 +0.5195258 0.5533834 0.1950164 +0.5284142 0.5533834 0.1950164 +0.5370079 0.5533834 0.1950164 +0.5453253 0.5533834 0.1950164 +0.5533834 0.5533834 0.1950164 +0.5611974 0.5533834 0.1950164 +0.5687816 0.5533834 0.1950164 +0.092819 0.5611974 0.1950164 +0.1056428 0.5611974 0.1950164 +0.1201537 0.5611974 0.1950164 +0.1409607 0.5611974 0.1950164 +0.1678172 0.5611974 0.1950164 +0.1950164 0.5611974 0.1950164 +0.2210581 0.5611974 0.1950164 +0.245636 0.5611974 0.1950164 +0.2686816 0.5611974 0.1950164 +0.2902431 0.5611974 0.1950164 +0.3104189 0.5611974 0.1950164 +0.3293248 0.5611974 0.1950164 +0.3470774 0.5611974 0.1950164 +0.3637862 0.5611974 0.1950164 +0.3795513 0.5611974 0.1950164 +0.3944623 0.5611974 0.1950164 +0.4085988 0.5611974 0.1950164 +0.4220313 0.5611974 0.1950164 +0.4348222 0.5611974 0.1950164 +0.4470264 0.5611974 0.1950164 +0.4586928 0.5611974 0.1950164 +0.4698649 0.5611974 0.1950164 +0.4805811 0.5611974 0.1950164 +0.490876 0.5611974 0.1950164 +0.5007803 0.5611974 0.1950164 +0.510322 0.5611974 0.1950164 +0.5195258 0.5611974 0.1950164 +0.5284142 0.5611974 0.1950164 +0.5370079 0.5611974 0.1950164 +0.5453253 0.5611974 0.1950164 +0.5533834 0.5611974 0.1950164 +0.5611974 0.5611974 0.1950164 +0.5687816 0.5611974 0.1950164 +0.092819 0.5687816 0.1950164 +0.1056428 0.5687816 0.1950164 +0.1201537 0.5687816 0.1950164 +0.1409607 0.5687816 0.1950164 +0.1678172 0.5687816 0.1950164 +0.1950164 0.5687816 0.1950164 +0.2210581 0.5687816 0.1950164 +0.245636 0.5687816 0.1950164 +0.2686816 0.5687816 0.1950164 +0.2902431 0.5687816 0.1950164 +0.3104189 0.5687816 0.1950164 +0.3293248 0.5687816 0.1950164 +0.3470774 0.5687816 0.1950164 +0.3637862 0.5687816 0.1950164 +0.3795513 0.5687816 0.1950164 +0.3944623 0.5687816 0.1950164 +0.4085988 0.5687816 0.1950164 +0.4220313 0.5687816 0.1950164 +0.4348222 0.5687816 0.1950164 +0.4470264 0.5687816 0.1950164 +0.4586928 0.5687816 0.1950164 +0.4698649 0.5687816 0.1950164 +0.4805811 0.5687816 0.1950164 +0.490876 0.5687816 0.1950164 +0.5007803 0.5687816 0.1950164 +0.510322 0.5687816 0.1950164 +0.5195258 0.5687816 0.1950164 +0.5284142 0.5687816 0.1950164 +0.5370079 0.5687816 0.1950164 +0.5453253 0.5687816 0.1950164 +0.5533834 0.5687816 0.1950164 +0.5611974 0.5687816 0.1950164 +0.5687816 0.5687816 0.1950164 +0.092819 0.092819 0.2210581 +0.1056428 0.092819 0.2210581 +0.1201537 0.092819 0.2210581 +0.1409607 0.092819 0.2210581 +0.1678172 0.092819 0.2210581 +0.1950164 0.092819 0.2210581 +0.2210581 0.092819 0.2210581 +0.245636 0.092819 0.2210581 +0.2686816 0.092819 0.2210581 +0.2902431 0.092819 0.2210581 +0.3104189 0.092819 0.2210581 +0.3293248 0.092819 0.2210581 +0.3470774 0.092819 0.2210581 +0.3637862 0.092819 0.2210581 +0.3795513 0.092819 0.2210581 +0.3944623 0.092819 0.2210581 +0.4085988 0.092819 0.2210581 +0.4220313 0.092819 0.2210581 +0.4348222 0.092819 0.2210581 +0.4470264 0.092819 0.2210581 +0.4586928 0.092819 0.2210581 +0.4698649 0.092819 0.2210581 +0.4805811 0.092819 0.2210581 +0.490876 0.092819 0.2210581 +0.5007803 0.092819 0.2210581 +0.510322 0.092819 0.2210581 +0.5195258 0.092819 0.2210581 +0.5284142 0.092819 0.2210581 +0.5370079 0.092819 0.2210581 +0.5453253 0.092819 0.2210581 +0.5533834 0.092819 0.2210581 +0.5611974 0.092819 0.2210581 +0.5687816 0.092819 0.2210581 +0.092819 0.1056428 0.2210581 +0.1056428 0.1056428 0.2210581 +0.1201537 0.1056428 0.2210581 +0.1409607 0.1056428 0.2210581 +0.1678172 0.1056428 0.2210581 +0.1950164 0.1056428 0.2210581 +0.2210581 0.1056428 0.2210581 +0.245636 0.1056428 0.2210581 +0.2686816 0.1056428 0.2210581 +0.2902431 0.1056428 0.2210581 +0.3104189 0.1056428 0.2210581 +0.3293248 0.1056428 0.2210581 +0.3470774 0.1056428 0.2210581 +0.3637862 0.1056428 0.2210581 +0.3795513 0.1056428 0.2210581 +0.3944623 0.1056428 0.2210581 +0.4085988 0.1056428 0.2210581 +0.4220313 0.1056428 0.2210581 +0.4348222 0.1056428 0.2210581 +0.4470264 0.1056428 0.2210581 +0.4586928 0.1056428 0.2210581 +0.4698649 0.1056428 0.2210581 +0.4805811 0.1056428 0.2210581 +0.490876 0.1056428 0.2210581 +0.5007803 0.1056428 0.2210581 +0.510322 0.1056428 0.2210581 +0.5195258 0.1056428 0.2210581 +0.5284142 0.1056428 0.2210581 +0.5370079 0.1056428 0.2210581 +0.5453253 0.1056428 0.2210581 +0.5533834 0.1056428 0.2210581 +0.5611974 0.1056428 0.2210581 +0.5687816 0.1056428 0.2210581 +0.092819 0.1201537 0.2210581 +0.1056428 0.1201537 0.2210581 +0.1201537 0.1201537 0.2210581 +0.1409607 0.1201537 0.2210581 +0.1678172 0.1201537 0.2210581 +0.1950164 0.1201537 0.2210581 +0.2210581 0.1201537 0.2210581 +0.245636 0.1201537 0.2210581 +0.2686816 0.1201537 0.2210581 +0.2902431 0.1201537 0.2210581 +0.3104189 0.1201537 0.2210581 +0.3293248 0.1201537 0.2210581 +0.3470774 0.1201537 0.2210581 +0.3637862 0.1201537 0.2210581 +0.3795513 0.1201537 0.2210581 +0.3944623 0.1201537 0.2210581 +0.4085988 0.1201537 0.2210581 +0.4220313 0.1201537 0.2210581 +0.4348222 0.1201537 0.2210581 +0.4470264 0.1201537 0.2210581 +0.4586928 0.1201537 0.2210581 +0.4698649 0.1201537 0.2210581 +0.4805811 0.1201537 0.2210581 +0.490876 0.1201537 0.2210581 +0.5007803 0.1201537 0.2210581 +0.510322 0.1201537 0.2210581 +0.5195258 0.1201537 0.2210581 +0.5284142 0.1201537 0.2210581 +0.5370079 0.1201537 0.2210581 +0.5453253 0.1201537 0.2210581 +0.5533834 0.1201537 0.2210581 +0.5611974 0.1201537 0.2210581 +0.5687816 0.1201537 0.2210581 +0.092819 0.1409607 0.2210581 +0.1056428 0.1409607 0.2210581 +0.1201537 0.1409607 0.2210581 +0.1409607 0.1409607 0.2210581 +0.1678172 0.1409607 0.2210581 +0.1950164 0.1409607 0.2210581 +0.2210581 0.1409607 0.2210581 +0.245636 0.1409607 0.2210581 +0.2686816 0.1409607 0.2210581 +0.2902431 0.1409607 0.2210581 +0.3104189 0.1409607 0.2210581 +0.3293248 0.1409607 0.2210581 +0.3470774 0.1409607 0.2210581 +0.3637862 0.1409607 0.2210581 +0.3795513 0.1409607 0.2210581 +0.3944623 0.1409607 0.2210581 +0.4085988 0.1409607 0.2210581 +0.4220313 0.1409607 0.2210581 +0.4348222 0.1409607 0.2210581 +0.4470264 0.1409607 0.2210581 +0.4586928 0.1409607 0.2210581 +0.4698649 0.1409607 0.2210581 +0.4805811 0.1409607 0.2210581 +0.490876 0.1409607 0.2210581 +0.5007803 0.1409607 0.2210581 +0.510322 0.1409607 0.2210581 +0.5195258 0.1409607 0.2210581 +0.5284142 0.1409607 0.2210581 +0.5370079 0.1409607 0.2210581 +0.5453253 0.1409607 0.2210581 +0.5533834 0.1409607 0.2210581 +0.5611974 0.1409607 0.2210581 +0.5687816 0.1409607 0.2210581 +0.092819 0.1678172 0.2210581 +0.1056428 0.1678172 0.2210581 +0.1201537 0.1678172 0.2210581 +0.1409607 0.1678172 0.2210581 +0.1678172 0.1678172 0.2210581 +0.1950164 0.1678172 0.2210581 +0.2210581 0.1678172 0.2210581 +0.245636 0.1678172 0.2210581 +0.2686816 0.1678172 0.2210581 +0.2902431 0.1678172 0.2210581 +0.3104189 0.1678172 0.2210581 +0.3293248 0.1678172 0.2210581 +0.3470774 0.1678172 0.2210581 +0.3637862 0.1678172 0.2210581 +0.3795513 0.1678172 0.2210581 +0.3944623 0.1678172 0.2210581 +0.4085988 0.1678172 0.2210581 +0.4220313 0.1678172 0.2210581 +0.4348222 0.1678172 0.2210581 +0.4470264 0.1678172 0.2210581 +0.4586928 0.1678172 0.2210581 +0.4698649 0.1678172 0.2210581 +0.4805811 0.1678172 0.2210581 +0.490876 0.1678172 0.2210581 +0.5007803 0.1678172 0.2210581 +0.510322 0.1678172 0.2210581 +0.5195258 0.1678172 0.2210581 +0.5284142 0.1678172 0.2210581 +0.5370079 0.1678172 0.2210581 +0.5453253 0.1678172 0.2210581 +0.5533834 0.1678172 0.2210581 +0.5611974 0.1678172 0.2210581 +0.5687816 0.1678172 0.2210581 +0.092819 0.1950164 0.2210581 +0.1056428 0.1950164 0.2210581 +0.1201537 0.1950164 0.2210581 +0.1409607 0.1950164 0.2210581 +0.1678172 0.1950164 0.2210581 +0.1950164 0.1950164 0.2210581 +0.2210581 0.1950164 0.2210581 +0.245636 0.1950164 0.2210581 +0.2686816 0.1950164 0.2210581 +0.2902431 0.1950164 0.2210581 +0.3104189 0.1950164 0.2210581 +0.3293248 0.1950164 0.2210581 +0.3470774 0.1950164 0.2210581 +0.3637862 0.1950164 0.2210581 +0.3795513 0.1950164 0.2210581 +0.3944623 0.1950164 0.2210581 +0.4085988 0.1950164 0.2210581 +0.4220313 0.1950164 0.2210581 +0.4348222 0.1950164 0.2210581 +0.4470264 0.1950164 0.2210581 +0.4586928 0.1950164 0.2210581 +0.4698649 0.1950164 0.2210581 +0.4805811 0.1950164 0.2210581 +0.490876 0.1950164 0.2210581 +0.5007803 0.1950164 0.2210581 +0.510322 0.1950164 0.2210581 +0.5195258 0.1950164 0.2210581 +0.5284142 0.1950164 0.2210581 +0.5370079 0.1950164 0.2210581 +0.5453253 0.1950164 0.2210581 +0.5533834 0.1950164 0.2210581 +0.5611974 0.1950164 0.2210581 +0.5687816 0.1950164 0.2210581 +0.092819 0.2210581 0.2210581 +0.1056428 0.2210581 0.2210581 +0.1201537 0.2210581 0.2210581 +0.1409607 0.2210581 0.2210581 +0.1678172 0.2210581 0.2210581 +0.1950164 0.2210581 0.2210581 +0.2210581 0.2210581 0.2210581 +0.245636 0.2210581 0.2210581 +0.2686816 0.2210581 0.2210581 +0.2902431 0.2210581 0.2210581 +0.3104189 0.2210581 0.2210581 +0.3293248 0.2210581 0.2210581 +0.3470774 0.2210581 0.2210581 +0.3637862 0.2210581 0.2210581 +0.3795513 0.2210581 0.2210581 +0.3944623 0.2210581 0.2210581 +0.4085988 0.2210581 0.2210581 +0.4220313 0.2210581 0.2210581 +0.4348222 0.2210581 0.2210581 +0.4470264 0.2210581 0.2210581 +0.4586928 0.2210581 0.2210581 +0.4698649 0.2210581 0.2210581 +0.4805811 0.2210581 0.2210581 +0.490876 0.2210581 0.2210581 +0.5007803 0.2210581 0.2210581 +0.510322 0.2210581 0.2210581 +0.5195258 0.2210581 0.2210581 +0.5284142 0.2210581 0.2210581 +0.5370079 0.2210581 0.2210581 +0.5453253 0.2210581 0.2210581 +0.5533834 0.2210581 0.2210581 +0.5611974 0.2210581 0.2210581 +0.5687816 0.2210581 0.2210581 +0.092819 0.245636 0.2210581 +0.1056428 0.245636 0.2210581 +0.1201537 0.245636 0.2210581 +0.1409607 0.245636 0.2210581 +0.1678172 0.245636 0.2210581 +0.1950164 0.245636 0.2210581 +0.2210581 0.245636 0.2210581 +0.245636 0.245636 0.2210581 +0.2686816 0.245636 0.2210581 +0.2902431 0.245636 0.2210581 +0.3104189 0.245636 0.2210581 +0.3293248 0.245636 0.2210581 +0.3470774 0.245636 0.2210581 +0.3637862 0.245636 0.2210581 +0.3795513 0.245636 0.2210581 +0.3944623 0.245636 0.2210581 +0.4085988 0.245636 0.2210581 +0.4220313 0.245636 0.2210581 +0.4348222 0.245636 0.2210581 +0.4470264 0.245636 0.2210581 +0.4586928 0.245636 0.2210581 +0.4698649 0.245636 0.2210581 +0.4805811 0.245636 0.2210581 +0.490876 0.245636 0.2210581 +0.5007803 0.245636 0.2210581 +0.510322 0.245636 0.2210581 +0.5195258 0.245636 0.2210581 +0.5284142 0.245636 0.2210581 +0.5370079 0.245636 0.2210581 +0.5453253 0.245636 0.2210581 +0.5533834 0.245636 0.2210581 +0.5611974 0.245636 0.2210581 +0.5687816 0.245636 0.2210581 +0.092819 0.2686816 0.2210581 +0.1056428 0.2686816 0.2210581 +0.1201537 0.2686816 0.2210581 +0.1409607 0.2686816 0.2210581 +0.1678172 0.2686816 0.2210581 +0.1950164 0.2686816 0.2210581 +0.2210581 0.2686816 0.2210581 +0.245636 0.2686816 0.2210581 +0.2686816 0.2686816 0.2210581 +0.2902431 0.2686816 0.2210581 +0.3104189 0.2686816 0.2210581 +0.3293248 0.2686816 0.2210581 +0.3470774 0.2686816 0.2210581 +0.3637862 0.2686816 0.2210581 +0.3795513 0.2686816 0.2210581 +0.3944623 0.2686816 0.2210581 +0.4085988 0.2686816 0.2210581 +0.4220313 0.2686816 0.2210581 +0.4348222 0.2686816 0.2210581 +0.4470264 0.2686816 0.2210581 +0.4586928 0.2686816 0.2210581 +0.4698649 0.2686816 0.2210581 +0.4805811 0.2686816 0.2210581 +0.490876 0.2686816 0.2210581 +0.5007803 0.2686816 0.2210581 +0.510322 0.2686816 0.2210581 +0.5195258 0.2686816 0.2210581 +0.5284142 0.2686816 0.2210581 +0.5370079 0.2686816 0.2210581 +0.5453253 0.2686816 0.2210581 +0.5533834 0.2686816 0.2210581 +0.5611974 0.2686816 0.2210581 +0.5687816 0.2686816 0.2210581 +0.092819 0.2902431 0.2210581 +0.1056428 0.2902431 0.2210581 +0.1201537 0.2902431 0.2210581 +0.1409607 0.2902431 0.2210581 +0.1678172 0.2902431 0.2210581 +0.1950164 0.2902431 0.2210581 +0.2210581 0.2902431 0.2210581 +0.245636 0.2902431 0.2210581 +0.2686816 0.2902431 0.2210581 +0.2902431 0.2902431 0.2210581 +0.3104189 0.2902431 0.2210581 +0.3293248 0.2902431 0.2210581 +0.3470774 0.2902431 0.2210581 +0.3637862 0.2902431 0.2210581 +0.3795513 0.2902431 0.2210581 +0.3944623 0.2902431 0.2210581 +0.4085988 0.2902431 0.2210581 +0.4220313 0.2902431 0.2210581 +0.4348222 0.2902431 0.2210581 +0.4470264 0.2902431 0.2210581 +0.4586928 0.2902431 0.2210581 +0.4698649 0.2902431 0.2210581 +0.4805811 0.2902431 0.2210581 +0.490876 0.2902431 0.2210581 +0.5007803 0.2902431 0.2210581 +0.510322 0.2902431 0.2210581 +0.5195258 0.2902431 0.2210581 +0.5284142 0.2902431 0.2210581 +0.5370079 0.2902431 0.2210581 +0.5453253 0.2902431 0.2210581 +0.5533834 0.2902431 0.2210581 +0.5611974 0.2902431 0.2210581 +0.5687816 0.2902431 0.2210581 +0.092819 0.3104189 0.2210581 +0.1056428 0.3104189 0.2210581 +0.1201537 0.3104189 0.2210581 +0.1409607 0.3104189 0.2210581 +0.1678172 0.3104189 0.2210581 +0.1950164 0.3104189 0.2210581 +0.2210581 0.3104189 0.2210581 +0.245636 0.3104189 0.2210581 +0.2686816 0.3104189 0.2210581 +0.2902431 0.3104189 0.2210581 +0.3104189 0.3104189 0.2210581 +0.3293248 0.3104189 0.2210581 +0.3470774 0.3104189 0.2210581 +0.3637862 0.3104189 0.2210581 +0.3795513 0.3104189 0.2210581 +0.3944623 0.3104189 0.2210581 +0.4085988 0.3104189 0.2210581 +0.4220313 0.3104189 0.2210581 +0.4348222 0.3104189 0.2210581 +0.4470264 0.3104189 0.2210581 +0.4586928 0.3104189 0.2210581 +0.4698649 0.3104189 0.2210581 +0.4805811 0.3104189 0.2210581 +0.490876 0.3104189 0.2210581 +0.5007803 0.3104189 0.2210581 +0.510322 0.3104189 0.2210581 +0.5195258 0.3104189 0.2210581 +0.5284142 0.3104189 0.2210581 +0.5370079 0.3104189 0.2210581 +0.5453253 0.3104189 0.2210581 +0.5533834 0.3104189 0.2210581 +0.5611974 0.3104189 0.2210581 +0.5687816 0.3104189 0.2210581 +0.092819 0.3293248 0.2210581 +0.1056428 0.3293248 0.2210581 +0.1201537 0.3293248 0.2210581 +0.1409607 0.3293248 0.2210581 +0.1678172 0.3293248 0.2210581 +0.1950164 0.3293248 0.2210581 +0.2210581 0.3293248 0.2210581 +0.245636 0.3293248 0.2210581 +0.2686816 0.3293248 0.2210581 +0.2902431 0.3293248 0.2210581 +0.3104189 0.3293248 0.2210581 +0.3293248 0.3293248 0.2210581 +0.3470774 0.3293248 0.2210581 +0.3637862 0.3293248 0.2210581 +0.3795513 0.3293248 0.2210581 +0.3944623 0.3293248 0.2210581 +0.4085988 0.3293248 0.2210581 +0.4220313 0.3293248 0.2210581 +0.4348222 0.3293248 0.2210581 +0.4470264 0.3293248 0.2210581 +0.4586928 0.3293248 0.2210581 +0.4698649 0.3293248 0.2210581 +0.4805811 0.3293248 0.2210581 +0.490876 0.3293248 0.2210581 +0.5007803 0.3293248 0.2210581 +0.510322 0.3293248 0.2210581 +0.5195258 0.3293248 0.2210581 +0.5284142 0.3293248 0.2210581 +0.5370079 0.3293248 0.2210581 +0.5453253 0.3293248 0.2210581 +0.5533834 0.3293248 0.2210581 +0.5611974 0.3293248 0.2210581 +0.5687816 0.3293248 0.2210581 +0.092819 0.3470774 0.2210581 +0.1056428 0.3470774 0.2210581 +0.1201537 0.3470774 0.2210581 +0.1409607 0.3470774 0.2210581 +0.1678172 0.3470774 0.2210581 +0.1950164 0.3470774 0.2210581 +0.2210581 0.3470774 0.2210581 +0.245636 0.3470774 0.2210581 +0.2686816 0.3470774 0.2210581 +0.2902431 0.3470774 0.2210581 +0.3104189 0.3470774 0.2210581 +0.3293248 0.3470774 0.2210581 +0.3470774 0.3470774 0.2210581 +0.3637862 0.3470774 0.2210581 +0.3795513 0.3470774 0.2210581 +0.3944623 0.3470774 0.2210581 +0.4085988 0.3470774 0.2210581 +0.4220313 0.3470774 0.2210581 +0.4348222 0.3470774 0.2210581 +0.4470264 0.3470774 0.2210581 +0.4586928 0.3470774 0.2210581 +0.4698649 0.3470774 0.2210581 +0.4805811 0.3470774 0.2210581 +0.490876 0.3470774 0.2210581 +0.5007803 0.3470774 0.2210581 +0.510322 0.3470774 0.2210581 +0.5195258 0.3470774 0.2210581 +0.5284142 0.3470774 0.2210581 +0.5370079 0.3470774 0.2210581 +0.5453253 0.3470774 0.2210581 +0.5533834 0.3470774 0.2210581 +0.5611974 0.3470774 0.2210581 +0.5687816 0.3470774 0.2210581 +0.092819 0.3637862 0.2210581 +0.1056428 0.3637862 0.2210581 +0.1201537 0.3637862 0.2210581 +0.1409607 0.3637862 0.2210581 +0.1678172 0.3637862 0.2210581 +0.1950164 0.3637862 0.2210581 +0.2210581 0.3637862 0.2210581 +0.245636 0.3637862 0.2210581 +0.2686816 0.3637862 0.2210581 +0.2902431 0.3637862 0.2210581 +0.3104189 0.3637862 0.2210581 +0.3293248 0.3637862 0.2210581 +0.3470774 0.3637862 0.2210581 +0.3637862 0.3637862 0.2210581 +0.3795513 0.3637862 0.2210581 +0.3944623 0.3637862 0.2210581 +0.4085988 0.3637862 0.2210581 +0.4220313 0.3637862 0.2210581 +0.4348222 0.3637862 0.2210581 +0.4470264 0.3637862 0.2210581 +0.4586928 0.3637862 0.2210581 +0.4698649 0.3637862 0.2210581 +0.4805811 0.3637862 0.2210581 +0.490876 0.3637862 0.2210581 +0.5007803 0.3637862 0.2210581 +0.510322 0.3637862 0.2210581 +0.5195258 0.3637862 0.2210581 +0.5284142 0.3637862 0.2210581 +0.5370079 0.3637862 0.2210581 +0.5453253 0.3637862 0.2210581 +0.5533834 0.3637862 0.2210581 +0.5611974 0.3637862 0.2210581 +0.5687816 0.3637862 0.2210581 +0.092819 0.3795513 0.2210581 +0.1056428 0.3795513 0.2210581 +0.1201537 0.3795513 0.2210581 +0.1409607 0.3795513 0.2210581 +0.1678172 0.3795513 0.2210581 +0.1950164 0.3795513 0.2210581 +0.2210581 0.3795513 0.2210581 +0.245636 0.3795513 0.2210581 +0.2686816 0.3795513 0.2210581 +0.2902431 0.3795513 0.2210581 +0.3104189 0.3795513 0.2210581 +0.3293248 0.3795513 0.2210581 +0.3470774 0.3795513 0.2210581 +0.3637862 0.3795513 0.2210581 +0.3795513 0.3795513 0.2210581 +0.3944623 0.3795513 0.2210581 +0.4085988 0.3795513 0.2210581 +0.4220313 0.3795513 0.2210581 +0.4348222 0.3795513 0.2210581 +0.4470264 0.3795513 0.2210581 +0.4586928 0.3795513 0.2210581 +0.4698649 0.3795513 0.2210581 +0.4805811 0.3795513 0.2210581 +0.490876 0.3795513 0.2210581 +0.5007803 0.3795513 0.2210581 +0.510322 0.3795513 0.2210581 +0.5195258 0.3795513 0.2210581 +0.5284142 0.3795513 0.2210581 +0.5370079 0.3795513 0.2210581 +0.5453253 0.3795513 0.2210581 +0.5533834 0.3795513 0.2210581 +0.5611974 0.3795513 0.2210581 +0.5687816 0.3795513 0.2210581 +0.092819 0.3944623 0.2210581 +0.1056428 0.3944623 0.2210581 +0.1201537 0.3944623 0.2210581 +0.1409607 0.3944623 0.2210581 +0.1678172 0.3944623 0.2210581 +0.1950164 0.3944623 0.2210581 +0.2210581 0.3944623 0.2210581 +0.245636 0.3944623 0.2210581 +0.2686816 0.3944623 0.2210581 +0.2902431 0.3944623 0.2210581 +0.3104189 0.3944623 0.2210581 +0.3293248 0.3944623 0.2210581 +0.3470774 0.3944623 0.2210581 +0.3637862 0.3944623 0.2210581 +0.3795513 0.3944623 0.2210581 +0.3944623 0.3944623 0.2210581 +0.4085988 0.3944623 0.2210581 +0.4220313 0.3944623 0.2210581 +0.4348222 0.3944623 0.2210581 +0.4470264 0.3944623 0.2210581 +0.4586928 0.3944623 0.2210581 +0.4698649 0.3944623 0.2210581 +0.4805811 0.3944623 0.2210581 +0.490876 0.3944623 0.2210581 +0.5007803 0.3944623 0.2210581 +0.510322 0.3944623 0.2210581 +0.5195258 0.3944623 0.2210581 +0.5284142 0.3944623 0.2210581 +0.5370079 0.3944623 0.2210581 +0.5453253 0.3944623 0.2210581 +0.5533834 0.3944623 0.2210581 +0.5611974 0.3944623 0.2210581 +0.5687816 0.3944623 0.2210581 +0.092819 0.4085988 0.2210581 +0.1056428 0.4085988 0.2210581 +0.1201537 0.4085988 0.2210581 +0.1409607 0.4085988 0.2210581 +0.1678172 0.4085988 0.2210581 +0.1950164 0.4085988 0.2210581 +0.2210581 0.4085988 0.2210581 +0.245636 0.4085988 0.2210581 +0.2686816 0.4085988 0.2210581 +0.2902431 0.4085988 0.2210581 +0.3104189 0.4085988 0.2210581 +0.3293248 0.4085988 0.2210581 +0.3470774 0.4085988 0.2210581 +0.3637862 0.4085988 0.2210581 +0.3795513 0.4085988 0.2210581 +0.3944623 0.4085988 0.2210581 +0.4085988 0.4085988 0.2210581 +0.4220313 0.4085988 0.2210581 +0.4348222 0.4085988 0.2210581 +0.4470264 0.4085988 0.2210581 +0.4586928 0.4085988 0.2210581 +0.4698649 0.4085988 0.2210581 +0.4805811 0.4085988 0.2210581 +0.490876 0.4085988 0.2210581 +0.5007803 0.4085988 0.2210581 +0.510322 0.4085988 0.2210581 +0.5195258 0.4085988 0.2210581 +0.5284142 0.4085988 0.2210581 +0.5370079 0.4085988 0.2210581 +0.5453253 0.4085988 0.2210581 +0.5533834 0.4085988 0.2210581 +0.5611974 0.4085988 0.2210581 +0.5687816 0.4085988 0.2210581 +0.092819 0.4220313 0.2210581 +0.1056428 0.4220313 0.2210581 +0.1201537 0.4220313 0.2210581 +0.1409607 0.4220313 0.2210581 +0.1678172 0.4220313 0.2210581 +0.1950164 0.4220313 0.2210581 +0.2210581 0.4220313 0.2210581 +0.245636 0.4220313 0.2210581 +0.2686816 0.4220313 0.2210581 +0.2902431 0.4220313 0.2210581 +0.3104189 0.4220313 0.2210581 +0.3293248 0.4220313 0.2210581 +0.3470774 0.4220313 0.2210581 +0.3637862 0.4220313 0.2210581 +0.3795513 0.4220313 0.2210581 +0.3944623 0.4220313 0.2210581 +0.4085988 0.4220313 0.2210581 +0.4220313 0.4220313 0.2210581 +0.4348222 0.4220313 0.2210581 +0.4470264 0.4220313 0.2210581 +0.4586928 0.4220313 0.2210581 +0.4698649 0.4220313 0.2210581 +0.4805811 0.4220313 0.2210581 +0.490876 0.4220313 0.2210581 +0.5007803 0.4220313 0.2210581 +0.510322 0.4220313 0.2210581 +0.5195258 0.4220313 0.2210581 +0.5284142 0.4220313 0.2210581 +0.5370079 0.4220313 0.2210581 +0.5453253 0.4220313 0.2210581 +0.5533834 0.4220313 0.2210581 +0.5611974 0.4220313 0.2210581 +0.5687816 0.4220313 0.2210581 +0.092819 0.4348222 0.2210581 +0.1056428 0.4348222 0.2210581 +0.1201537 0.4348222 0.2210581 +0.1409607 0.4348222 0.2210581 +0.1678172 0.4348222 0.2210581 +0.1950164 0.4348222 0.2210581 +0.2210581 0.4348222 0.2210581 +0.245636 0.4348222 0.2210581 +0.2686816 0.4348222 0.2210581 +0.2902431 0.4348222 0.2210581 +0.3104189 0.4348222 0.2210581 +0.3293248 0.4348222 0.2210581 +0.3470774 0.4348222 0.2210581 +0.3637862 0.4348222 0.2210581 +0.3795513 0.4348222 0.2210581 +0.3944623 0.4348222 0.2210581 +0.4085988 0.4348222 0.2210581 +0.4220313 0.4348222 0.2210581 +0.4348222 0.4348222 0.2210581 +0.4470264 0.4348222 0.2210581 +0.4586928 0.4348222 0.2210581 +0.4698649 0.4348222 0.2210581 +0.4805811 0.4348222 0.2210581 +0.490876 0.4348222 0.2210581 +0.5007803 0.4348222 0.2210581 +0.510322 0.4348222 0.2210581 +0.5195258 0.4348222 0.2210581 +0.5284142 0.4348222 0.2210581 +0.5370079 0.4348222 0.2210581 +0.5453253 0.4348222 0.2210581 +0.5533834 0.4348222 0.2210581 +0.5611974 0.4348222 0.2210581 +0.5687816 0.4348222 0.2210581 +0.092819 0.4470264 0.2210581 +0.1056428 0.4470264 0.2210581 +0.1201537 0.4470264 0.2210581 +0.1409607 0.4470264 0.2210581 +0.1678172 0.4470264 0.2210581 +0.1950164 0.4470264 0.2210581 +0.2210581 0.4470264 0.2210581 +0.245636 0.4470264 0.2210581 +0.2686816 0.4470264 0.2210581 +0.2902431 0.4470264 0.2210581 +0.3104189 0.4470264 0.2210581 +0.3293248 0.4470264 0.2210581 +0.3470774 0.4470264 0.2210581 +0.3637862 0.4470264 0.2210581 +0.3795513 0.4470264 0.2210581 +0.3944623 0.4470264 0.2210581 +0.4085988 0.4470264 0.2210581 +0.4220313 0.4470264 0.2210581 +0.4348222 0.4470264 0.2210581 +0.4470264 0.4470264 0.2210581 +0.4586928 0.4470264 0.2210581 +0.4698649 0.4470264 0.2210581 +0.4805811 0.4470264 0.2210581 +0.490876 0.4470264 0.2210581 +0.5007803 0.4470264 0.2210581 +0.510322 0.4470264 0.2210581 +0.5195258 0.4470264 0.2210581 +0.5284142 0.4470264 0.2210581 +0.5370079 0.4470264 0.2210581 +0.5453253 0.4470264 0.2210581 +0.5533834 0.4470264 0.2210581 +0.5611974 0.4470264 0.2210581 +0.5687816 0.4470264 0.2210581 +0.092819 0.4586928 0.2210581 +0.1056428 0.4586928 0.2210581 +0.1201537 0.4586928 0.2210581 +0.1409607 0.4586928 0.2210581 +0.1678172 0.4586928 0.2210581 +0.1950164 0.4586928 0.2210581 +0.2210581 0.4586928 0.2210581 +0.245636 0.4586928 0.2210581 +0.2686816 0.4586928 0.2210581 +0.2902431 0.4586928 0.2210581 +0.3104189 0.4586928 0.2210581 +0.3293248 0.4586928 0.2210581 +0.3470774 0.4586928 0.2210581 +0.3637862 0.4586928 0.2210581 +0.3795513 0.4586928 0.2210581 +0.3944623 0.4586928 0.2210581 +0.4085988 0.4586928 0.2210581 +0.4220313 0.4586928 0.2210581 +0.4348222 0.4586928 0.2210581 +0.4470264 0.4586928 0.2210581 +0.4586928 0.4586928 0.2210581 +0.4698649 0.4586928 0.2210581 +0.4805811 0.4586928 0.2210581 +0.490876 0.4586928 0.2210581 +0.5007803 0.4586928 0.2210581 +0.510322 0.4586928 0.2210581 +0.5195258 0.4586928 0.2210581 +0.5284142 0.4586928 0.2210581 +0.5370079 0.4586928 0.2210581 +0.5453253 0.4586928 0.2210581 +0.5533834 0.4586928 0.2210581 +0.5611974 0.4586928 0.2210581 +0.5687816 0.4586928 0.2210581 +0.092819 0.4698649 0.2210581 +0.1056428 0.4698649 0.2210581 +0.1201537 0.4698649 0.2210581 +0.1409607 0.4698649 0.2210581 +0.1678172 0.4698649 0.2210581 +0.1950164 0.4698649 0.2210581 +0.2210581 0.4698649 0.2210581 +0.245636 0.4698649 0.2210581 +0.2686816 0.4698649 0.2210581 +0.2902431 0.4698649 0.2210581 +0.3104189 0.4698649 0.2210581 +0.3293248 0.4698649 0.2210581 +0.3470774 0.4698649 0.2210581 +0.3637862 0.4698649 0.2210581 +0.3795513 0.4698649 0.2210581 +0.3944623 0.4698649 0.2210581 +0.4085988 0.4698649 0.2210581 +0.4220313 0.4698649 0.2210581 +0.4348222 0.4698649 0.2210581 +0.4470264 0.4698649 0.2210581 +0.4586928 0.4698649 0.2210581 +0.4698649 0.4698649 0.2210581 +0.4805811 0.4698649 0.2210581 +0.490876 0.4698649 0.2210581 +0.5007803 0.4698649 0.2210581 +0.510322 0.4698649 0.2210581 +0.5195258 0.4698649 0.2210581 +0.5284142 0.4698649 0.2210581 +0.5370079 0.4698649 0.2210581 +0.5453253 0.4698649 0.2210581 +0.5533834 0.4698649 0.2210581 +0.5611974 0.4698649 0.2210581 +0.5687816 0.4698649 0.2210581 +0.092819 0.4805811 0.2210581 +0.1056428 0.4805811 0.2210581 +0.1201537 0.4805811 0.2210581 +0.1409607 0.4805811 0.2210581 +0.1678172 0.4805811 0.2210581 +0.1950164 0.4805811 0.2210581 +0.2210581 0.4805811 0.2210581 +0.245636 0.4805811 0.2210581 +0.2686816 0.4805811 0.2210581 +0.2902431 0.4805811 0.2210581 +0.3104189 0.4805811 0.2210581 +0.3293248 0.4805811 0.2210581 +0.3470774 0.4805811 0.2210581 +0.3637862 0.4805811 0.2210581 +0.3795513 0.4805811 0.2210581 +0.3944623 0.4805811 0.2210581 +0.4085988 0.4805811 0.2210581 +0.4220313 0.4805811 0.2210581 +0.4348222 0.4805811 0.2210581 +0.4470264 0.4805811 0.2210581 +0.4586928 0.4805811 0.2210581 +0.4698649 0.4805811 0.2210581 +0.4805811 0.4805811 0.2210581 +0.490876 0.4805811 0.2210581 +0.5007803 0.4805811 0.2210581 +0.510322 0.4805811 0.2210581 +0.5195258 0.4805811 0.2210581 +0.5284142 0.4805811 0.2210581 +0.5370079 0.4805811 0.2210581 +0.5453253 0.4805811 0.2210581 +0.5533834 0.4805811 0.2210581 +0.5611974 0.4805811 0.2210581 +0.5687816 0.4805811 0.2210581 +0.092819 0.490876 0.2210581 +0.1056428 0.490876 0.2210581 +0.1201537 0.490876 0.2210581 +0.1409607 0.490876 0.2210581 +0.1678172 0.490876 0.2210581 +0.1950164 0.490876 0.2210581 +0.2210581 0.490876 0.2210581 +0.245636 0.490876 0.2210581 +0.2686816 0.490876 0.2210581 +0.2902431 0.490876 0.2210581 +0.3104189 0.490876 0.2210581 +0.3293248 0.490876 0.2210581 +0.3470774 0.490876 0.2210581 +0.3637862 0.490876 0.2210581 +0.3795513 0.490876 0.2210581 +0.3944623 0.490876 0.2210581 +0.4085988 0.490876 0.2210581 +0.4220313 0.490876 0.2210581 +0.4348222 0.490876 0.2210581 +0.4470264 0.490876 0.2210581 +0.4586928 0.490876 0.2210581 +0.4698649 0.490876 0.2210581 +0.4805811 0.490876 0.2210581 +0.490876 0.490876 0.2210581 +0.5007803 0.490876 0.2210581 +0.510322 0.490876 0.2210581 +0.5195258 0.490876 0.2210581 +0.5284142 0.490876 0.2210581 +0.5370079 0.490876 0.2210581 +0.5453253 0.490876 0.2210581 +0.5533834 0.490876 0.2210581 +0.5611974 0.490876 0.2210581 +0.5687816 0.490876 0.2210581 +0.092819 0.5007803 0.2210581 +0.1056428 0.5007803 0.2210581 +0.1201537 0.5007803 0.2210581 +0.1409607 0.5007803 0.2210581 +0.1678172 0.5007803 0.2210581 +0.1950164 0.5007803 0.2210581 +0.2210581 0.5007803 0.2210581 +0.245636 0.5007803 0.2210581 +0.2686816 0.5007803 0.2210581 +0.2902431 0.5007803 0.2210581 +0.3104189 0.5007803 0.2210581 +0.3293248 0.5007803 0.2210581 +0.3470774 0.5007803 0.2210581 +0.3637862 0.5007803 0.2210581 +0.3795513 0.5007803 0.2210581 +0.3944623 0.5007803 0.2210581 +0.4085988 0.5007803 0.2210581 +0.4220313 0.5007803 0.2210581 +0.4348222 0.5007803 0.2210581 +0.4470264 0.5007803 0.2210581 +0.4586928 0.5007803 0.2210581 +0.4698649 0.5007803 0.2210581 +0.4805811 0.5007803 0.2210581 +0.490876 0.5007803 0.2210581 +0.5007803 0.5007803 0.2210581 +0.510322 0.5007803 0.2210581 +0.5195258 0.5007803 0.2210581 +0.5284142 0.5007803 0.2210581 +0.5370079 0.5007803 0.2210581 +0.5453253 0.5007803 0.2210581 +0.5533834 0.5007803 0.2210581 +0.5611974 0.5007803 0.2210581 +0.5687816 0.5007803 0.2210581 +0.092819 0.510322 0.2210581 +0.1056428 0.510322 0.2210581 +0.1201537 0.510322 0.2210581 +0.1409607 0.510322 0.2210581 +0.1678172 0.510322 0.2210581 +0.1950164 0.510322 0.2210581 +0.2210581 0.510322 0.2210581 +0.245636 0.510322 0.2210581 +0.2686816 0.510322 0.2210581 +0.2902431 0.510322 0.2210581 +0.3104189 0.510322 0.2210581 +0.3293248 0.510322 0.2210581 +0.3470774 0.510322 0.2210581 +0.3637862 0.510322 0.2210581 +0.3795513 0.510322 0.2210581 +0.3944623 0.510322 0.2210581 +0.4085988 0.510322 0.2210581 +0.4220313 0.510322 0.2210581 +0.4348222 0.510322 0.2210581 +0.4470264 0.510322 0.2210581 +0.4586928 0.510322 0.2210581 +0.4698649 0.510322 0.2210581 +0.4805811 0.510322 0.2210581 +0.490876 0.510322 0.2210581 +0.5007803 0.510322 0.2210581 +0.510322 0.510322 0.2210581 +0.5195258 0.510322 0.2210581 +0.5284142 0.510322 0.2210581 +0.5370079 0.510322 0.2210581 +0.5453253 0.510322 0.2210581 +0.5533834 0.510322 0.2210581 +0.5611974 0.510322 0.2210581 +0.5687816 0.510322 0.2210581 +0.092819 0.5195258 0.2210581 +0.1056428 0.5195258 0.2210581 +0.1201537 0.5195258 0.2210581 +0.1409607 0.5195258 0.2210581 +0.1678172 0.5195258 0.2210581 +0.1950164 0.5195258 0.2210581 +0.2210581 0.5195258 0.2210581 +0.245636 0.5195258 0.2210581 +0.2686816 0.5195258 0.2210581 +0.2902431 0.5195258 0.2210581 +0.3104189 0.5195258 0.2210581 +0.3293248 0.5195258 0.2210581 +0.3470774 0.5195258 0.2210581 +0.3637862 0.5195258 0.2210581 +0.3795513 0.5195258 0.2210581 +0.3944623 0.5195258 0.2210581 +0.4085988 0.5195258 0.2210581 +0.4220313 0.5195258 0.2210581 +0.4348222 0.5195258 0.2210581 +0.4470264 0.5195258 0.2210581 +0.4586928 0.5195258 0.2210581 +0.4698649 0.5195258 0.2210581 +0.4805811 0.5195258 0.2210581 +0.490876 0.5195258 0.2210581 +0.5007803 0.5195258 0.2210581 +0.510322 0.5195258 0.2210581 +0.5195258 0.5195258 0.2210581 +0.5284142 0.5195258 0.2210581 +0.5370079 0.5195258 0.2210581 +0.5453253 0.5195258 0.2210581 +0.5533834 0.5195258 0.2210581 +0.5611974 0.5195258 0.2210581 +0.5687816 0.5195258 0.2210581 +0.092819 0.5284142 0.2210581 +0.1056428 0.5284142 0.2210581 +0.1201537 0.5284142 0.2210581 +0.1409607 0.5284142 0.2210581 +0.1678172 0.5284142 0.2210581 +0.1950164 0.5284142 0.2210581 +0.2210581 0.5284142 0.2210581 +0.245636 0.5284142 0.2210581 +0.2686816 0.5284142 0.2210581 +0.2902431 0.5284142 0.2210581 +0.3104189 0.5284142 0.2210581 +0.3293248 0.5284142 0.2210581 +0.3470774 0.5284142 0.2210581 +0.3637862 0.5284142 0.2210581 +0.3795513 0.5284142 0.2210581 +0.3944623 0.5284142 0.2210581 +0.4085988 0.5284142 0.2210581 +0.4220313 0.5284142 0.2210581 +0.4348222 0.5284142 0.2210581 +0.4470264 0.5284142 0.2210581 +0.4586928 0.5284142 0.2210581 +0.4698649 0.5284142 0.2210581 +0.4805811 0.5284142 0.2210581 +0.490876 0.5284142 0.2210581 +0.5007803 0.5284142 0.2210581 +0.510322 0.5284142 0.2210581 +0.5195258 0.5284142 0.2210581 +0.5284142 0.5284142 0.2210581 +0.5370079 0.5284142 0.2210581 +0.5453253 0.5284142 0.2210581 +0.5533834 0.5284142 0.2210581 +0.5611974 0.5284142 0.2210581 +0.5687816 0.5284142 0.2210581 +0.092819 0.5370079 0.2210581 +0.1056428 0.5370079 0.2210581 +0.1201537 0.5370079 0.2210581 +0.1409607 0.5370079 0.2210581 +0.1678172 0.5370079 0.2210581 +0.1950164 0.5370079 0.2210581 +0.2210581 0.5370079 0.2210581 +0.245636 0.5370079 0.2210581 +0.2686816 0.5370079 0.2210581 +0.2902431 0.5370079 0.2210581 +0.3104189 0.5370079 0.2210581 +0.3293248 0.5370079 0.2210581 +0.3470774 0.5370079 0.2210581 +0.3637862 0.5370079 0.2210581 +0.3795513 0.5370079 0.2210581 +0.3944623 0.5370079 0.2210581 +0.4085988 0.5370079 0.2210581 +0.4220313 0.5370079 0.2210581 +0.4348222 0.5370079 0.2210581 +0.4470264 0.5370079 0.2210581 +0.4586928 0.5370079 0.2210581 +0.4698649 0.5370079 0.2210581 +0.4805811 0.5370079 0.2210581 +0.490876 0.5370079 0.2210581 +0.5007803 0.5370079 0.2210581 +0.510322 0.5370079 0.2210581 +0.5195258 0.5370079 0.2210581 +0.5284142 0.5370079 0.2210581 +0.5370079 0.5370079 0.2210581 +0.5453253 0.5370079 0.2210581 +0.5533834 0.5370079 0.2210581 +0.5611974 0.5370079 0.2210581 +0.5687816 0.5370079 0.2210581 +0.092819 0.5453253 0.2210581 +0.1056428 0.5453253 0.2210581 +0.1201537 0.5453253 0.2210581 +0.1409607 0.5453253 0.2210581 +0.1678172 0.5453253 0.2210581 +0.1950164 0.5453253 0.2210581 +0.2210581 0.5453253 0.2210581 +0.245636 0.5453253 0.2210581 +0.2686816 0.5453253 0.2210581 +0.2902431 0.5453253 0.2210581 +0.3104189 0.5453253 0.2210581 +0.3293248 0.5453253 0.2210581 +0.3470774 0.5453253 0.2210581 +0.3637862 0.5453253 0.2210581 +0.3795513 0.5453253 0.2210581 +0.3944623 0.5453253 0.2210581 +0.4085988 0.5453253 0.2210581 +0.4220313 0.5453253 0.2210581 +0.4348222 0.5453253 0.2210581 +0.4470264 0.5453253 0.2210581 +0.4586928 0.5453253 0.2210581 +0.4698649 0.5453253 0.2210581 +0.4805811 0.5453253 0.2210581 +0.490876 0.5453253 0.2210581 +0.5007803 0.5453253 0.2210581 +0.510322 0.5453253 0.2210581 +0.5195258 0.5453253 0.2210581 +0.5284142 0.5453253 0.2210581 +0.5370079 0.5453253 0.2210581 +0.5453253 0.5453253 0.2210581 +0.5533834 0.5453253 0.2210581 +0.5611974 0.5453253 0.2210581 +0.5687816 0.5453253 0.2210581 +0.092819 0.5533834 0.2210581 +0.1056428 0.5533834 0.2210581 +0.1201537 0.5533834 0.2210581 +0.1409607 0.5533834 0.2210581 +0.1678172 0.5533834 0.2210581 +0.1950164 0.5533834 0.2210581 +0.2210581 0.5533834 0.2210581 +0.245636 0.5533834 0.2210581 +0.2686816 0.5533834 0.2210581 +0.2902431 0.5533834 0.2210581 +0.3104189 0.5533834 0.2210581 +0.3293248 0.5533834 0.2210581 +0.3470774 0.5533834 0.2210581 +0.3637862 0.5533834 0.2210581 +0.3795513 0.5533834 0.2210581 +0.3944623 0.5533834 0.2210581 +0.4085988 0.5533834 0.2210581 +0.4220313 0.5533834 0.2210581 +0.4348222 0.5533834 0.2210581 +0.4470264 0.5533834 0.2210581 +0.4586928 0.5533834 0.2210581 +0.4698649 0.5533834 0.2210581 +0.4805811 0.5533834 0.2210581 +0.490876 0.5533834 0.2210581 +0.5007803 0.5533834 0.2210581 +0.510322 0.5533834 0.2210581 +0.5195258 0.5533834 0.2210581 +0.5284142 0.5533834 0.2210581 +0.5370079 0.5533834 0.2210581 +0.5453253 0.5533834 0.2210581 +0.5533834 0.5533834 0.2210581 +0.5611974 0.5533834 0.2210581 +0.5687816 0.5533834 0.2210581 +0.092819 0.5611974 0.2210581 +0.1056428 0.5611974 0.2210581 +0.1201537 0.5611974 0.2210581 +0.1409607 0.5611974 0.2210581 +0.1678172 0.5611974 0.2210581 +0.1950164 0.5611974 0.2210581 +0.2210581 0.5611974 0.2210581 +0.245636 0.5611974 0.2210581 +0.2686816 0.5611974 0.2210581 +0.2902431 0.5611974 0.2210581 +0.3104189 0.5611974 0.2210581 +0.3293248 0.5611974 0.2210581 +0.3470774 0.5611974 0.2210581 +0.3637862 0.5611974 0.2210581 +0.3795513 0.5611974 0.2210581 +0.3944623 0.5611974 0.2210581 +0.4085988 0.5611974 0.2210581 +0.4220313 0.5611974 0.2210581 +0.4348222 0.5611974 0.2210581 +0.4470264 0.5611974 0.2210581 +0.4586928 0.5611974 0.2210581 +0.4698649 0.5611974 0.2210581 +0.4805811 0.5611974 0.2210581 +0.490876 0.5611974 0.2210581 +0.5007803 0.5611974 0.2210581 +0.510322 0.5611974 0.2210581 +0.5195258 0.5611974 0.2210581 +0.5284142 0.5611974 0.2210581 +0.5370079 0.5611974 0.2210581 +0.5453253 0.5611974 0.2210581 +0.5533834 0.5611974 0.2210581 +0.5611974 0.5611974 0.2210581 +0.5687816 0.5611974 0.2210581 +0.092819 0.5687816 0.2210581 +0.1056428 0.5687816 0.2210581 +0.1201537 0.5687816 0.2210581 +0.1409607 0.5687816 0.2210581 +0.1678172 0.5687816 0.2210581 +0.1950164 0.5687816 0.2210581 +0.2210581 0.5687816 0.2210581 +0.245636 0.5687816 0.2210581 +0.2686816 0.5687816 0.2210581 +0.2902431 0.5687816 0.2210581 +0.3104189 0.5687816 0.2210581 +0.3293248 0.5687816 0.2210581 +0.3470774 0.5687816 0.2210581 +0.3637862 0.5687816 0.2210581 +0.3795513 0.5687816 0.2210581 +0.3944623 0.5687816 0.2210581 +0.4085988 0.5687816 0.2210581 +0.4220313 0.5687816 0.2210581 +0.4348222 0.5687816 0.2210581 +0.4470264 0.5687816 0.2210581 +0.4586928 0.5687816 0.2210581 +0.4698649 0.5687816 0.2210581 +0.4805811 0.5687816 0.2210581 +0.490876 0.5687816 0.2210581 +0.5007803 0.5687816 0.2210581 +0.510322 0.5687816 0.2210581 +0.5195258 0.5687816 0.2210581 +0.5284142 0.5687816 0.2210581 +0.5370079 0.5687816 0.2210581 +0.5453253 0.5687816 0.2210581 +0.5533834 0.5687816 0.2210581 +0.5611974 0.5687816 0.2210581 +0.5687816 0.5687816 0.2210581 +0.092819 0.092819 0.245636 +0.1056428 0.092819 0.245636 +0.1201537 0.092819 0.245636 +0.1409607 0.092819 0.245636 +0.1678172 0.092819 0.245636 +0.1950164 0.092819 0.245636 +0.2210581 0.092819 0.245636 +0.245636 0.092819 0.245636 +0.2686816 0.092819 0.245636 +0.2902431 0.092819 0.245636 +0.3104189 0.092819 0.245636 +0.3293248 0.092819 0.245636 +0.3470774 0.092819 0.245636 +0.3637862 0.092819 0.245636 +0.3795513 0.092819 0.245636 +0.3944623 0.092819 0.245636 +0.4085988 0.092819 0.245636 +0.4220313 0.092819 0.245636 +0.4348222 0.092819 0.245636 +0.4470264 0.092819 0.245636 +0.4586928 0.092819 0.245636 +0.4698649 0.092819 0.245636 +0.4805811 0.092819 0.245636 +0.490876 0.092819 0.245636 +0.5007803 0.092819 0.245636 +0.510322 0.092819 0.245636 +0.5195258 0.092819 0.245636 +0.5284142 0.092819 0.245636 +0.5370079 0.092819 0.245636 +0.5453253 0.092819 0.245636 +0.5533834 0.092819 0.245636 +0.5611974 0.092819 0.245636 +0.5687816 0.092819 0.245636 +0.092819 0.1056428 0.245636 +0.1056428 0.1056428 0.245636 +0.1201537 0.1056428 0.245636 +0.1409607 0.1056428 0.245636 +0.1678172 0.1056428 0.245636 +0.1950164 0.1056428 0.245636 +0.2210581 0.1056428 0.245636 +0.245636 0.1056428 0.245636 +0.2686816 0.1056428 0.245636 +0.2902431 0.1056428 0.245636 +0.3104189 0.1056428 0.245636 +0.3293248 0.1056428 0.245636 +0.3470774 0.1056428 0.245636 +0.3637862 0.1056428 0.245636 +0.3795513 0.1056428 0.245636 +0.3944623 0.1056428 0.245636 +0.4085988 0.1056428 0.245636 +0.4220313 0.1056428 0.245636 +0.4348222 0.1056428 0.245636 +0.4470264 0.1056428 0.245636 +0.4586928 0.1056428 0.245636 +0.4698649 0.1056428 0.245636 +0.4805811 0.1056428 0.245636 +0.490876 0.1056428 0.245636 +0.5007803 0.1056428 0.245636 +0.510322 0.1056428 0.245636 +0.5195258 0.1056428 0.245636 +0.5284142 0.1056428 0.245636 +0.5370079 0.1056428 0.245636 +0.5453253 0.1056428 0.245636 +0.5533834 0.1056428 0.245636 +0.5611974 0.1056428 0.245636 +0.5687816 0.1056428 0.245636 +0.092819 0.1201537 0.245636 +0.1056428 0.1201537 0.245636 +0.1201537 0.1201537 0.245636 +0.1409607 0.1201537 0.245636 +0.1678172 0.1201537 0.245636 +0.1950164 0.1201537 0.245636 +0.2210581 0.1201537 0.245636 +0.245636 0.1201537 0.245636 +0.2686816 0.1201537 0.245636 +0.2902431 0.1201537 0.245636 +0.3104189 0.1201537 0.245636 +0.3293248 0.1201537 0.245636 +0.3470774 0.1201537 0.245636 +0.3637862 0.1201537 0.245636 +0.3795513 0.1201537 0.245636 +0.3944623 0.1201537 0.245636 +0.4085988 0.1201537 0.245636 +0.4220313 0.1201537 0.245636 +0.4348222 0.1201537 0.245636 +0.4470264 0.1201537 0.245636 +0.4586928 0.1201537 0.245636 +0.4698649 0.1201537 0.245636 +0.4805811 0.1201537 0.245636 +0.490876 0.1201537 0.245636 +0.5007803 0.1201537 0.245636 +0.510322 0.1201537 0.245636 +0.5195258 0.1201537 0.245636 +0.5284142 0.1201537 0.245636 +0.5370079 0.1201537 0.245636 +0.5453253 0.1201537 0.245636 +0.5533834 0.1201537 0.245636 +0.5611974 0.1201537 0.245636 +0.5687816 0.1201537 0.245636 +0.092819 0.1409607 0.245636 +0.1056428 0.1409607 0.245636 +0.1201537 0.1409607 0.245636 +0.1409607 0.1409607 0.245636 +0.1678172 0.1409607 0.245636 +0.1950164 0.1409607 0.245636 +0.2210581 0.1409607 0.245636 +0.245636 0.1409607 0.245636 +0.2686816 0.1409607 0.245636 +0.2902431 0.1409607 0.245636 +0.3104189 0.1409607 0.245636 +0.3293248 0.1409607 0.245636 +0.3470774 0.1409607 0.245636 +0.3637862 0.1409607 0.245636 +0.3795513 0.1409607 0.245636 +0.3944623 0.1409607 0.245636 +0.4085988 0.1409607 0.245636 +0.4220313 0.1409607 0.245636 +0.4348222 0.1409607 0.245636 +0.4470264 0.1409607 0.245636 +0.4586928 0.1409607 0.245636 +0.4698649 0.1409607 0.245636 +0.4805811 0.1409607 0.245636 +0.490876 0.1409607 0.245636 +0.5007803 0.1409607 0.245636 +0.510322 0.1409607 0.245636 +0.5195258 0.1409607 0.245636 +0.5284142 0.1409607 0.245636 +0.5370079 0.1409607 0.245636 +0.5453253 0.1409607 0.245636 +0.5533834 0.1409607 0.245636 +0.5611974 0.1409607 0.245636 +0.5687816 0.1409607 0.245636 +0.092819 0.1678172 0.245636 +0.1056428 0.1678172 0.245636 +0.1201537 0.1678172 0.245636 +0.1409607 0.1678172 0.245636 +0.1678172 0.1678172 0.245636 +0.1950164 0.1678172 0.245636 +0.2210581 0.1678172 0.245636 +0.245636 0.1678172 0.245636 +0.2686816 0.1678172 0.245636 +0.2902431 0.1678172 0.245636 +0.3104189 0.1678172 0.245636 +0.3293248 0.1678172 0.245636 +0.3470774 0.1678172 0.245636 +0.3637862 0.1678172 0.245636 +0.3795513 0.1678172 0.245636 +0.3944623 0.1678172 0.245636 +0.4085988 0.1678172 0.245636 +0.4220313 0.1678172 0.245636 +0.4348222 0.1678172 0.245636 +0.4470264 0.1678172 0.245636 +0.4586928 0.1678172 0.245636 +0.4698649 0.1678172 0.245636 +0.4805811 0.1678172 0.245636 +0.490876 0.1678172 0.245636 +0.5007803 0.1678172 0.245636 +0.510322 0.1678172 0.245636 +0.5195258 0.1678172 0.245636 +0.5284142 0.1678172 0.245636 +0.5370079 0.1678172 0.245636 +0.5453253 0.1678172 0.245636 +0.5533834 0.1678172 0.245636 +0.5611974 0.1678172 0.245636 +0.5687816 0.1678172 0.245636 +0.092819 0.1950164 0.245636 +0.1056428 0.1950164 0.245636 +0.1201537 0.1950164 0.245636 +0.1409607 0.1950164 0.245636 +0.1678172 0.1950164 0.245636 +0.1950164 0.1950164 0.245636 +0.2210581 0.1950164 0.245636 +0.245636 0.1950164 0.245636 +0.2686816 0.1950164 0.245636 +0.2902431 0.1950164 0.245636 +0.3104189 0.1950164 0.245636 +0.3293248 0.1950164 0.245636 +0.3470774 0.1950164 0.245636 +0.3637862 0.1950164 0.245636 +0.3795513 0.1950164 0.245636 +0.3944623 0.1950164 0.245636 +0.4085988 0.1950164 0.245636 +0.4220313 0.1950164 0.245636 +0.4348222 0.1950164 0.245636 +0.4470264 0.1950164 0.245636 +0.4586928 0.1950164 0.245636 +0.4698649 0.1950164 0.245636 +0.4805811 0.1950164 0.245636 +0.490876 0.1950164 0.245636 +0.5007803 0.1950164 0.245636 +0.510322 0.1950164 0.245636 +0.5195258 0.1950164 0.245636 +0.5284142 0.1950164 0.245636 +0.5370079 0.1950164 0.245636 +0.5453253 0.1950164 0.245636 +0.5533834 0.1950164 0.245636 +0.5611974 0.1950164 0.245636 +0.5687816 0.1950164 0.245636 +0.092819 0.2210581 0.245636 +0.1056428 0.2210581 0.245636 +0.1201537 0.2210581 0.245636 +0.1409607 0.2210581 0.245636 +0.1678172 0.2210581 0.245636 +0.1950164 0.2210581 0.245636 +0.2210581 0.2210581 0.245636 +0.245636 0.2210581 0.245636 +0.2686816 0.2210581 0.245636 +0.2902431 0.2210581 0.245636 +0.3104189 0.2210581 0.245636 +0.3293248 0.2210581 0.245636 +0.3470774 0.2210581 0.245636 +0.3637862 0.2210581 0.245636 +0.3795513 0.2210581 0.245636 +0.3944623 0.2210581 0.245636 +0.4085988 0.2210581 0.245636 +0.4220313 0.2210581 0.245636 +0.4348222 0.2210581 0.245636 +0.4470264 0.2210581 0.245636 +0.4586928 0.2210581 0.245636 +0.4698649 0.2210581 0.245636 +0.4805811 0.2210581 0.245636 +0.490876 0.2210581 0.245636 +0.5007803 0.2210581 0.245636 +0.510322 0.2210581 0.245636 +0.5195258 0.2210581 0.245636 +0.5284142 0.2210581 0.245636 +0.5370079 0.2210581 0.245636 +0.5453253 0.2210581 0.245636 +0.5533834 0.2210581 0.245636 +0.5611974 0.2210581 0.245636 +0.5687816 0.2210581 0.245636 +0.092819 0.245636 0.245636 +0.1056428 0.245636 0.245636 +0.1201537 0.245636 0.245636 +0.1409607 0.245636 0.245636 +0.1678172 0.245636 0.245636 +0.1950164 0.245636 0.245636 +0.2210581 0.245636 0.245636 +0.245636 0.245636 0.245636 +0.2686816 0.245636 0.245636 +0.2902431 0.245636 0.245636 +0.3104189 0.245636 0.245636 +0.3293248 0.245636 0.245636 +0.3470774 0.245636 0.245636 +0.3637862 0.245636 0.245636 +0.3795513 0.245636 0.245636 +0.3944623 0.245636 0.245636 +0.4085988 0.245636 0.245636 +0.4220313 0.245636 0.245636 +0.4348222 0.245636 0.245636 +0.4470264 0.245636 0.245636 +0.4586928 0.245636 0.245636 +0.4698649 0.245636 0.245636 +0.4805811 0.245636 0.245636 +0.490876 0.245636 0.245636 +0.5007803 0.245636 0.245636 +0.510322 0.245636 0.245636 +0.5195258 0.245636 0.245636 +0.5284142 0.245636 0.245636 +0.5370079 0.245636 0.245636 +0.5453253 0.245636 0.245636 +0.5533834 0.245636 0.245636 +0.5611974 0.245636 0.245636 +0.5687816 0.245636 0.245636 +0.092819 0.2686816 0.245636 +0.1056428 0.2686816 0.245636 +0.1201537 0.2686816 0.245636 +0.1409607 0.2686816 0.245636 +0.1678172 0.2686816 0.245636 +0.1950164 0.2686816 0.245636 +0.2210581 0.2686816 0.245636 +0.245636 0.2686816 0.245636 +0.2686816 0.2686816 0.245636 +0.2902431 0.2686816 0.245636 +0.3104189 0.2686816 0.245636 +0.3293248 0.2686816 0.245636 +0.3470774 0.2686816 0.245636 +0.3637862 0.2686816 0.245636 +0.3795513 0.2686816 0.245636 +0.3944623 0.2686816 0.245636 +0.4085988 0.2686816 0.245636 +0.4220313 0.2686816 0.245636 +0.4348222 0.2686816 0.245636 +0.4470264 0.2686816 0.245636 +0.4586928 0.2686816 0.245636 +0.4698649 0.2686816 0.245636 +0.4805811 0.2686816 0.245636 +0.490876 0.2686816 0.245636 +0.5007803 0.2686816 0.245636 +0.510322 0.2686816 0.245636 +0.5195258 0.2686816 0.245636 +0.5284142 0.2686816 0.245636 +0.5370079 0.2686816 0.245636 +0.5453253 0.2686816 0.245636 +0.5533834 0.2686816 0.245636 +0.5611974 0.2686816 0.245636 +0.5687816 0.2686816 0.245636 +0.092819 0.2902431 0.245636 +0.1056428 0.2902431 0.245636 +0.1201537 0.2902431 0.245636 +0.1409607 0.2902431 0.245636 +0.1678172 0.2902431 0.245636 +0.1950164 0.2902431 0.245636 +0.2210581 0.2902431 0.245636 +0.245636 0.2902431 0.245636 +0.2686816 0.2902431 0.245636 +0.2902431 0.2902431 0.245636 +0.3104189 0.2902431 0.245636 +0.3293248 0.2902431 0.245636 +0.3470774 0.2902431 0.245636 +0.3637862 0.2902431 0.245636 +0.3795513 0.2902431 0.245636 +0.3944623 0.2902431 0.245636 +0.4085988 0.2902431 0.245636 +0.4220313 0.2902431 0.245636 +0.4348222 0.2902431 0.245636 +0.4470264 0.2902431 0.245636 +0.4586928 0.2902431 0.245636 +0.4698649 0.2902431 0.245636 +0.4805811 0.2902431 0.245636 +0.490876 0.2902431 0.245636 +0.5007803 0.2902431 0.245636 +0.510322 0.2902431 0.245636 +0.5195258 0.2902431 0.245636 +0.5284142 0.2902431 0.245636 +0.5370079 0.2902431 0.245636 +0.5453253 0.2902431 0.245636 +0.5533834 0.2902431 0.245636 +0.5611974 0.2902431 0.245636 +0.5687816 0.2902431 0.245636 +0.092819 0.3104189 0.245636 +0.1056428 0.3104189 0.245636 +0.1201537 0.3104189 0.245636 +0.1409607 0.3104189 0.245636 +0.1678172 0.3104189 0.245636 +0.1950164 0.3104189 0.245636 +0.2210581 0.3104189 0.245636 +0.245636 0.3104189 0.245636 +0.2686816 0.3104189 0.245636 +0.2902431 0.3104189 0.245636 +0.3104189 0.3104189 0.245636 +0.3293248 0.3104189 0.245636 +0.3470774 0.3104189 0.245636 +0.3637862 0.3104189 0.245636 +0.3795513 0.3104189 0.245636 +0.3944623 0.3104189 0.245636 +0.4085988 0.3104189 0.245636 +0.4220313 0.3104189 0.245636 +0.4348222 0.3104189 0.245636 +0.4470264 0.3104189 0.245636 +0.4586928 0.3104189 0.245636 +0.4698649 0.3104189 0.245636 +0.4805811 0.3104189 0.245636 +0.490876 0.3104189 0.245636 +0.5007803 0.3104189 0.245636 +0.510322 0.3104189 0.245636 +0.5195258 0.3104189 0.245636 +0.5284142 0.3104189 0.245636 +0.5370079 0.3104189 0.245636 +0.5453253 0.3104189 0.245636 +0.5533834 0.3104189 0.245636 +0.5611974 0.3104189 0.245636 +0.5687816 0.3104189 0.245636 +0.092819 0.3293248 0.245636 +0.1056428 0.3293248 0.245636 +0.1201537 0.3293248 0.245636 +0.1409607 0.3293248 0.245636 +0.1678172 0.3293248 0.245636 +0.1950164 0.3293248 0.245636 +0.2210581 0.3293248 0.245636 +0.245636 0.3293248 0.245636 +0.2686816 0.3293248 0.245636 +0.2902431 0.3293248 0.245636 +0.3104189 0.3293248 0.245636 +0.3293248 0.3293248 0.245636 +0.3470774 0.3293248 0.245636 +0.3637862 0.3293248 0.245636 +0.3795513 0.3293248 0.245636 +0.3944623 0.3293248 0.245636 +0.4085988 0.3293248 0.245636 +0.4220313 0.3293248 0.245636 +0.4348222 0.3293248 0.245636 +0.4470264 0.3293248 0.245636 +0.4586928 0.3293248 0.245636 +0.4698649 0.3293248 0.245636 +0.4805811 0.3293248 0.245636 +0.490876 0.3293248 0.245636 +0.5007803 0.3293248 0.245636 +0.510322 0.3293248 0.245636 +0.5195258 0.3293248 0.245636 +0.5284142 0.3293248 0.245636 +0.5370079 0.3293248 0.245636 +0.5453253 0.3293248 0.245636 +0.5533834 0.3293248 0.245636 +0.5611974 0.3293248 0.245636 +0.5687816 0.3293248 0.245636 +0.092819 0.3470774 0.245636 +0.1056428 0.3470774 0.245636 +0.1201537 0.3470774 0.245636 +0.1409607 0.3470774 0.245636 +0.1678172 0.3470774 0.245636 +0.1950164 0.3470774 0.245636 +0.2210581 0.3470774 0.245636 +0.245636 0.3470774 0.245636 +0.2686816 0.3470774 0.245636 +0.2902431 0.3470774 0.245636 +0.3104189 0.3470774 0.245636 +0.3293248 0.3470774 0.245636 +0.3470774 0.3470774 0.245636 +0.3637862 0.3470774 0.245636 +0.3795513 0.3470774 0.245636 +0.3944623 0.3470774 0.245636 +0.4085988 0.3470774 0.245636 +0.4220313 0.3470774 0.245636 +0.4348222 0.3470774 0.245636 +0.4470264 0.3470774 0.245636 +0.4586928 0.3470774 0.245636 +0.4698649 0.3470774 0.245636 +0.4805811 0.3470774 0.245636 +0.490876 0.3470774 0.245636 +0.5007803 0.3470774 0.245636 +0.510322 0.3470774 0.245636 +0.5195258 0.3470774 0.245636 +0.5284142 0.3470774 0.245636 +0.5370079 0.3470774 0.245636 +0.5453253 0.3470774 0.245636 +0.5533834 0.3470774 0.245636 +0.5611974 0.3470774 0.245636 +0.5687816 0.3470774 0.245636 +0.092819 0.3637862 0.245636 +0.1056428 0.3637862 0.245636 +0.1201537 0.3637862 0.245636 +0.1409607 0.3637862 0.245636 +0.1678172 0.3637862 0.245636 +0.1950164 0.3637862 0.245636 +0.2210581 0.3637862 0.245636 +0.245636 0.3637862 0.245636 +0.2686816 0.3637862 0.245636 +0.2902431 0.3637862 0.245636 +0.3104189 0.3637862 0.245636 +0.3293248 0.3637862 0.245636 +0.3470774 0.3637862 0.245636 +0.3637862 0.3637862 0.245636 +0.3795513 0.3637862 0.245636 +0.3944623 0.3637862 0.245636 +0.4085988 0.3637862 0.245636 +0.4220313 0.3637862 0.245636 +0.4348222 0.3637862 0.245636 +0.4470264 0.3637862 0.245636 +0.4586928 0.3637862 0.245636 +0.4698649 0.3637862 0.245636 +0.4805811 0.3637862 0.245636 +0.490876 0.3637862 0.245636 +0.5007803 0.3637862 0.245636 +0.510322 0.3637862 0.245636 +0.5195258 0.3637862 0.245636 +0.5284142 0.3637862 0.245636 +0.5370079 0.3637862 0.245636 +0.5453253 0.3637862 0.245636 +0.5533834 0.3637862 0.245636 +0.5611974 0.3637862 0.245636 +0.5687816 0.3637862 0.245636 +0.092819 0.3795513 0.245636 +0.1056428 0.3795513 0.245636 +0.1201537 0.3795513 0.245636 +0.1409607 0.3795513 0.245636 +0.1678172 0.3795513 0.245636 +0.1950164 0.3795513 0.245636 +0.2210581 0.3795513 0.245636 +0.245636 0.3795513 0.245636 +0.2686816 0.3795513 0.245636 +0.2902431 0.3795513 0.245636 +0.3104189 0.3795513 0.245636 +0.3293248 0.3795513 0.245636 +0.3470774 0.3795513 0.245636 +0.3637862 0.3795513 0.245636 +0.3795513 0.3795513 0.245636 +0.3944623 0.3795513 0.245636 +0.4085988 0.3795513 0.245636 +0.4220313 0.3795513 0.245636 +0.4348222 0.3795513 0.245636 +0.4470264 0.3795513 0.245636 +0.4586928 0.3795513 0.245636 +0.4698649 0.3795513 0.245636 +0.4805811 0.3795513 0.245636 +0.490876 0.3795513 0.245636 +0.5007803 0.3795513 0.245636 +0.510322 0.3795513 0.245636 +0.5195258 0.3795513 0.245636 +0.5284142 0.3795513 0.245636 +0.5370079 0.3795513 0.245636 +0.5453253 0.3795513 0.245636 +0.5533834 0.3795513 0.245636 +0.5611974 0.3795513 0.245636 +0.5687816 0.3795513 0.245636 +0.092819 0.3944623 0.245636 +0.1056428 0.3944623 0.245636 +0.1201537 0.3944623 0.245636 +0.1409607 0.3944623 0.245636 +0.1678172 0.3944623 0.245636 +0.1950164 0.3944623 0.245636 +0.2210581 0.3944623 0.245636 +0.245636 0.3944623 0.245636 +0.2686816 0.3944623 0.245636 +0.2902431 0.3944623 0.245636 +0.3104189 0.3944623 0.245636 +0.3293248 0.3944623 0.245636 +0.3470774 0.3944623 0.245636 +0.3637862 0.3944623 0.245636 +0.3795513 0.3944623 0.245636 +0.3944623 0.3944623 0.245636 +0.4085988 0.3944623 0.245636 +0.4220313 0.3944623 0.245636 +0.4348222 0.3944623 0.245636 +0.4470264 0.3944623 0.245636 +0.4586928 0.3944623 0.245636 +0.4698649 0.3944623 0.245636 +0.4805811 0.3944623 0.245636 +0.490876 0.3944623 0.245636 +0.5007803 0.3944623 0.245636 +0.510322 0.3944623 0.245636 +0.5195258 0.3944623 0.245636 +0.5284142 0.3944623 0.245636 +0.5370079 0.3944623 0.245636 +0.5453253 0.3944623 0.245636 +0.5533834 0.3944623 0.245636 +0.5611974 0.3944623 0.245636 +0.5687816 0.3944623 0.245636 +0.092819 0.4085988 0.245636 +0.1056428 0.4085988 0.245636 +0.1201537 0.4085988 0.245636 +0.1409607 0.4085988 0.245636 +0.1678172 0.4085988 0.245636 +0.1950164 0.4085988 0.245636 +0.2210581 0.4085988 0.245636 +0.245636 0.4085988 0.245636 +0.2686816 0.4085988 0.245636 +0.2902431 0.4085988 0.245636 +0.3104189 0.4085988 0.245636 +0.3293248 0.4085988 0.245636 +0.3470774 0.4085988 0.245636 +0.3637862 0.4085988 0.245636 +0.3795513 0.4085988 0.245636 +0.3944623 0.4085988 0.245636 +0.4085988 0.4085988 0.245636 +0.4220313 0.4085988 0.245636 +0.4348222 0.4085988 0.245636 +0.4470264 0.4085988 0.245636 +0.4586928 0.4085988 0.245636 +0.4698649 0.4085988 0.245636 +0.4805811 0.4085988 0.245636 +0.490876 0.4085988 0.245636 +0.5007803 0.4085988 0.245636 +0.510322 0.4085988 0.245636 +0.5195258 0.4085988 0.245636 +0.5284142 0.4085988 0.245636 +0.5370079 0.4085988 0.245636 +0.5453253 0.4085988 0.245636 +0.5533834 0.4085988 0.245636 +0.5611974 0.4085988 0.245636 +0.5687816 0.4085988 0.245636 +0.092819 0.4220313 0.245636 +0.1056428 0.4220313 0.245636 +0.1201537 0.4220313 0.245636 +0.1409607 0.4220313 0.245636 +0.1678172 0.4220313 0.245636 +0.1950164 0.4220313 0.245636 +0.2210581 0.4220313 0.245636 +0.245636 0.4220313 0.245636 +0.2686816 0.4220313 0.245636 +0.2902431 0.4220313 0.245636 +0.3104189 0.4220313 0.245636 +0.3293248 0.4220313 0.245636 +0.3470774 0.4220313 0.245636 +0.3637862 0.4220313 0.245636 +0.3795513 0.4220313 0.245636 +0.3944623 0.4220313 0.245636 +0.4085988 0.4220313 0.245636 +0.4220313 0.4220313 0.245636 +0.4348222 0.4220313 0.245636 +0.4470264 0.4220313 0.245636 +0.4586928 0.4220313 0.245636 +0.4698649 0.4220313 0.245636 +0.4805811 0.4220313 0.245636 +0.490876 0.4220313 0.245636 +0.5007803 0.4220313 0.245636 +0.510322 0.4220313 0.245636 +0.5195258 0.4220313 0.245636 +0.5284142 0.4220313 0.245636 +0.5370079 0.4220313 0.245636 +0.5453253 0.4220313 0.245636 +0.5533834 0.4220313 0.245636 +0.5611974 0.4220313 0.245636 +0.5687816 0.4220313 0.245636 +0.092819 0.4348222 0.245636 +0.1056428 0.4348222 0.245636 +0.1201537 0.4348222 0.245636 +0.1409607 0.4348222 0.245636 +0.1678172 0.4348222 0.245636 +0.1950164 0.4348222 0.245636 +0.2210581 0.4348222 0.245636 +0.245636 0.4348222 0.245636 +0.2686816 0.4348222 0.245636 +0.2902431 0.4348222 0.245636 +0.3104189 0.4348222 0.245636 +0.3293248 0.4348222 0.245636 +0.3470774 0.4348222 0.245636 +0.3637862 0.4348222 0.245636 +0.3795513 0.4348222 0.245636 +0.3944623 0.4348222 0.245636 +0.4085988 0.4348222 0.245636 +0.4220313 0.4348222 0.245636 +0.4348222 0.4348222 0.245636 +0.4470264 0.4348222 0.245636 +0.4586928 0.4348222 0.245636 +0.4698649 0.4348222 0.245636 +0.4805811 0.4348222 0.245636 +0.490876 0.4348222 0.245636 +0.5007803 0.4348222 0.245636 +0.510322 0.4348222 0.245636 +0.5195258 0.4348222 0.245636 +0.5284142 0.4348222 0.245636 +0.5370079 0.4348222 0.245636 +0.5453253 0.4348222 0.245636 +0.5533834 0.4348222 0.245636 +0.5611974 0.4348222 0.245636 +0.5687816 0.4348222 0.245636 +0.092819 0.4470264 0.245636 +0.1056428 0.4470264 0.245636 +0.1201537 0.4470264 0.245636 +0.1409607 0.4470264 0.245636 +0.1678172 0.4470264 0.245636 +0.1950164 0.4470264 0.245636 +0.2210581 0.4470264 0.245636 +0.245636 0.4470264 0.245636 +0.2686816 0.4470264 0.245636 +0.2902431 0.4470264 0.245636 +0.3104189 0.4470264 0.245636 +0.3293248 0.4470264 0.245636 +0.3470774 0.4470264 0.245636 +0.3637862 0.4470264 0.245636 +0.3795513 0.4470264 0.245636 +0.3944623 0.4470264 0.245636 +0.4085988 0.4470264 0.245636 +0.4220313 0.4470264 0.245636 +0.4348222 0.4470264 0.245636 +0.4470264 0.4470264 0.245636 +0.4586928 0.4470264 0.245636 +0.4698649 0.4470264 0.245636 +0.4805811 0.4470264 0.245636 +0.490876 0.4470264 0.245636 +0.5007803 0.4470264 0.245636 +0.510322 0.4470264 0.245636 +0.5195258 0.4470264 0.245636 +0.5284142 0.4470264 0.245636 +0.5370079 0.4470264 0.245636 +0.5453253 0.4470264 0.245636 +0.5533834 0.4470264 0.245636 +0.5611974 0.4470264 0.245636 +0.5687816 0.4470264 0.245636 +0.092819 0.4586928 0.245636 +0.1056428 0.4586928 0.245636 +0.1201537 0.4586928 0.245636 +0.1409607 0.4586928 0.245636 +0.1678172 0.4586928 0.245636 +0.1950164 0.4586928 0.245636 +0.2210581 0.4586928 0.245636 +0.245636 0.4586928 0.245636 +0.2686816 0.4586928 0.245636 +0.2902431 0.4586928 0.245636 +0.3104189 0.4586928 0.245636 +0.3293248 0.4586928 0.245636 +0.3470774 0.4586928 0.245636 +0.3637862 0.4586928 0.245636 +0.3795513 0.4586928 0.245636 +0.3944623 0.4586928 0.245636 +0.4085988 0.4586928 0.245636 +0.4220313 0.4586928 0.245636 +0.4348222 0.4586928 0.245636 +0.4470264 0.4586928 0.245636 +0.4586928 0.4586928 0.245636 +0.4698649 0.4586928 0.245636 +0.4805811 0.4586928 0.245636 +0.490876 0.4586928 0.245636 +0.5007803 0.4586928 0.245636 +0.510322 0.4586928 0.245636 +0.5195258 0.4586928 0.245636 +0.5284142 0.4586928 0.245636 +0.5370079 0.4586928 0.245636 +0.5453253 0.4586928 0.245636 +0.5533834 0.4586928 0.245636 +0.5611974 0.4586928 0.245636 +0.5687816 0.4586928 0.245636 +0.092819 0.4698649 0.245636 +0.1056428 0.4698649 0.245636 +0.1201537 0.4698649 0.245636 +0.1409607 0.4698649 0.245636 +0.1678172 0.4698649 0.245636 +0.1950164 0.4698649 0.245636 +0.2210581 0.4698649 0.245636 +0.245636 0.4698649 0.245636 +0.2686816 0.4698649 0.245636 +0.2902431 0.4698649 0.245636 +0.3104189 0.4698649 0.245636 +0.3293248 0.4698649 0.245636 +0.3470774 0.4698649 0.245636 +0.3637862 0.4698649 0.245636 +0.3795513 0.4698649 0.245636 +0.3944623 0.4698649 0.245636 +0.4085988 0.4698649 0.245636 +0.4220313 0.4698649 0.245636 +0.4348222 0.4698649 0.245636 +0.4470264 0.4698649 0.245636 +0.4586928 0.4698649 0.245636 +0.4698649 0.4698649 0.245636 +0.4805811 0.4698649 0.245636 +0.490876 0.4698649 0.245636 +0.5007803 0.4698649 0.245636 +0.510322 0.4698649 0.245636 +0.5195258 0.4698649 0.245636 +0.5284142 0.4698649 0.245636 +0.5370079 0.4698649 0.245636 +0.5453253 0.4698649 0.245636 +0.5533834 0.4698649 0.245636 +0.5611974 0.4698649 0.245636 +0.5687816 0.4698649 0.245636 +0.092819 0.4805811 0.245636 +0.1056428 0.4805811 0.245636 +0.1201537 0.4805811 0.245636 +0.1409607 0.4805811 0.245636 +0.1678172 0.4805811 0.245636 +0.1950164 0.4805811 0.245636 +0.2210581 0.4805811 0.245636 +0.245636 0.4805811 0.245636 +0.2686816 0.4805811 0.245636 +0.2902431 0.4805811 0.245636 +0.3104189 0.4805811 0.245636 +0.3293248 0.4805811 0.245636 +0.3470774 0.4805811 0.245636 +0.3637862 0.4805811 0.245636 +0.3795513 0.4805811 0.245636 +0.3944623 0.4805811 0.245636 +0.4085988 0.4805811 0.245636 +0.4220313 0.4805811 0.245636 +0.4348222 0.4805811 0.245636 +0.4470264 0.4805811 0.245636 +0.4586928 0.4805811 0.245636 +0.4698649 0.4805811 0.245636 +0.4805811 0.4805811 0.245636 +0.490876 0.4805811 0.245636 +0.5007803 0.4805811 0.245636 +0.510322 0.4805811 0.245636 +0.5195258 0.4805811 0.245636 +0.5284142 0.4805811 0.245636 +0.5370079 0.4805811 0.245636 +0.5453253 0.4805811 0.245636 +0.5533834 0.4805811 0.245636 +0.5611974 0.4805811 0.245636 +0.5687816 0.4805811 0.245636 +0.092819 0.490876 0.245636 +0.1056428 0.490876 0.245636 +0.1201537 0.490876 0.245636 +0.1409607 0.490876 0.245636 +0.1678172 0.490876 0.245636 +0.1950164 0.490876 0.245636 +0.2210581 0.490876 0.245636 +0.245636 0.490876 0.245636 +0.2686816 0.490876 0.245636 +0.2902431 0.490876 0.245636 +0.3104189 0.490876 0.245636 +0.3293248 0.490876 0.245636 +0.3470774 0.490876 0.245636 +0.3637862 0.490876 0.245636 +0.3795513 0.490876 0.245636 +0.3944623 0.490876 0.245636 +0.4085988 0.490876 0.245636 +0.4220313 0.490876 0.245636 +0.4348222 0.490876 0.245636 +0.4470264 0.490876 0.245636 +0.4586928 0.490876 0.245636 +0.4698649 0.490876 0.245636 +0.4805811 0.490876 0.245636 +0.490876 0.490876 0.245636 +0.5007803 0.490876 0.245636 +0.510322 0.490876 0.245636 +0.5195258 0.490876 0.245636 +0.5284142 0.490876 0.245636 +0.5370079 0.490876 0.245636 +0.5453253 0.490876 0.245636 +0.5533834 0.490876 0.245636 +0.5611974 0.490876 0.245636 +0.5687816 0.490876 0.245636 +0.092819 0.5007803 0.245636 +0.1056428 0.5007803 0.245636 +0.1201537 0.5007803 0.245636 +0.1409607 0.5007803 0.245636 +0.1678172 0.5007803 0.245636 +0.1950164 0.5007803 0.245636 +0.2210581 0.5007803 0.245636 +0.245636 0.5007803 0.245636 +0.2686816 0.5007803 0.245636 +0.2902431 0.5007803 0.245636 +0.3104189 0.5007803 0.245636 +0.3293248 0.5007803 0.245636 +0.3470774 0.5007803 0.245636 +0.3637862 0.5007803 0.245636 +0.3795513 0.5007803 0.245636 +0.3944623 0.5007803 0.245636 +0.4085988 0.5007803 0.245636 +0.4220313 0.5007803 0.245636 +0.4348222 0.5007803 0.245636 +0.4470264 0.5007803 0.245636 +0.4586928 0.5007803 0.245636 +0.4698649 0.5007803 0.245636 +0.4805811 0.5007803 0.245636 +0.490876 0.5007803 0.245636 +0.5007803 0.5007803 0.245636 +0.510322 0.5007803 0.245636 +0.5195258 0.5007803 0.245636 +0.5284142 0.5007803 0.245636 +0.5370079 0.5007803 0.245636 +0.5453253 0.5007803 0.245636 +0.5533834 0.5007803 0.245636 +0.5611974 0.5007803 0.245636 +0.5687816 0.5007803 0.245636 +0.092819 0.510322 0.245636 +0.1056428 0.510322 0.245636 +0.1201537 0.510322 0.245636 +0.1409607 0.510322 0.245636 +0.1678172 0.510322 0.245636 +0.1950164 0.510322 0.245636 +0.2210581 0.510322 0.245636 +0.245636 0.510322 0.245636 +0.2686816 0.510322 0.245636 +0.2902431 0.510322 0.245636 +0.3104189 0.510322 0.245636 +0.3293248 0.510322 0.245636 +0.3470774 0.510322 0.245636 +0.3637862 0.510322 0.245636 +0.3795513 0.510322 0.245636 +0.3944623 0.510322 0.245636 +0.4085988 0.510322 0.245636 +0.4220313 0.510322 0.245636 +0.4348222 0.510322 0.245636 +0.4470264 0.510322 0.245636 +0.4586928 0.510322 0.245636 +0.4698649 0.510322 0.245636 +0.4805811 0.510322 0.245636 +0.490876 0.510322 0.245636 +0.5007803 0.510322 0.245636 +0.510322 0.510322 0.245636 +0.5195258 0.510322 0.245636 +0.5284142 0.510322 0.245636 +0.5370079 0.510322 0.245636 +0.5453253 0.510322 0.245636 +0.5533834 0.510322 0.245636 +0.5611974 0.510322 0.245636 +0.5687816 0.510322 0.245636 +0.092819 0.5195258 0.245636 +0.1056428 0.5195258 0.245636 +0.1201537 0.5195258 0.245636 +0.1409607 0.5195258 0.245636 +0.1678172 0.5195258 0.245636 +0.1950164 0.5195258 0.245636 +0.2210581 0.5195258 0.245636 +0.245636 0.5195258 0.245636 +0.2686816 0.5195258 0.245636 +0.2902431 0.5195258 0.245636 +0.3104189 0.5195258 0.245636 +0.3293248 0.5195258 0.245636 +0.3470774 0.5195258 0.245636 +0.3637862 0.5195258 0.245636 +0.3795513 0.5195258 0.245636 +0.3944623 0.5195258 0.245636 +0.4085988 0.5195258 0.245636 +0.4220313 0.5195258 0.245636 +0.4348222 0.5195258 0.245636 +0.4470264 0.5195258 0.245636 +0.4586928 0.5195258 0.245636 +0.4698649 0.5195258 0.245636 +0.4805811 0.5195258 0.245636 +0.490876 0.5195258 0.245636 +0.5007803 0.5195258 0.245636 +0.510322 0.5195258 0.245636 +0.5195258 0.5195258 0.245636 +0.5284142 0.5195258 0.245636 +0.5370079 0.5195258 0.245636 +0.5453253 0.5195258 0.245636 +0.5533834 0.5195258 0.245636 +0.5611974 0.5195258 0.245636 +0.5687816 0.5195258 0.245636 +0.092819 0.5284142 0.245636 +0.1056428 0.5284142 0.245636 +0.1201537 0.5284142 0.245636 +0.1409607 0.5284142 0.245636 +0.1678172 0.5284142 0.245636 +0.1950164 0.5284142 0.245636 +0.2210581 0.5284142 0.245636 +0.245636 0.5284142 0.245636 +0.2686816 0.5284142 0.245636 +0.2902431 0.5284142 0.245636 +0.3104189 0.5284142 0.245636 +0.3293248 0.5284142 0.245636 +0.3470774 0.5284142 0.245636 +0.3637862 0.5284142 0.245636 +0.3795513 0.5284142 0.245636 +0.3944623 0.5284142 0.245636 +0.4085988 0.5284142 0.245636 +0.4220313 0.5284142 0.245636 +0.4348222 0.5284142 0.245636 +0.4470264 0.5284142 0.245636 +0.4586928 0.5284142 0.245636 +0.4698649 0.5284142 0.245636 +0.4805811 0.5284142 0.245636 +0.490876 0.5284142 0.245636 +0.5007803 0.5284142 0.245636 +0.510322 0.5284142 0.245636 +0.5195258 0.5284142 0.245636 +0.5284142 0.5284142 0.245636 +0.5370079 0.5284142 0.245636 +0.5453253 0.5284142 0.245636 +0.5533834 0.5284142 0.245636 +0.5611974 0.5284142 0.245636 +0.5687816 0.5284142 0.245636 +0.092819 0.5370079 0.245636 +0.1056428 0.5370079 0.245636 +0.1201537 0.5370079 0.245636 +0.1409607 0.5370079 0.245636 +0.1678172 0.5370079 0.245636 +0.1950164 0.5370079 0.245636 +0.2210581 0.5370079 0.245636 +0.245636 0.5370079 0.245636 +0.2686816 0.5370079 0.245636 +0.2902431 0.5370079 0.245636 +0.3104189 0.5370079 0.245636 +0.3293248 0.5370079 0.245636 +0.3470774 0.5370079 0.245636 +0.3637862 0.5370079 0.245636 +0.3795513 0.5370079 0.245636 +0.3944623 0.5370079 0.245636 +0.4085988 0.5370079 0.245636 +0.4220313 0.5370079 0.245636 +0.4348222 0.5370079 0.245636 +0.4470264 0.5370079 0.245636 +0.4586928 0.5370079 0.245636 +0.4698649 0.5370079 0.245636 +0.4805811 0.5370079 0.245636 +0.490876 0.5370079 0.245636 +0.5007803 0.5370079 0.245636 +0.510322 0.5370079 0.245636 +0.5195258 0.5370079 0.245636 +0.5284142 0.5370079 0.245636 +0.5370079 0.5370079 0.245636 +0.5453253 0.5370079 0.245636 +0.5533834 0.5370079 0.245636 +0.5611974 0.5370079 0.245636 +0.5687816 0.5370079 0.245636 +0.092819 0.5453253 0.245636 +0.1056428 0.5453253 0.245636 +0.1201537 0.5453253 0.245636 +0.1409607 0.5453253 0.245636 +0.1678172 0.5453253 0.245636 +0.1950164 0.5453253 0.245636 +0.2210581 0.5453253 0.245636 +0.245636 0.5453253 0.245636 +0.2686816 0.5453253 0.245636 +0.2902431 0.5453253 0.245636 +0.3104189 0.5453253 0.245636 +0.3293248 0.5453253 0.245636 +0.3470774 0.5453253 0.245636 +0.3637862 0.5453253 0.245636 +0.3795513 0.5453253 0.245636 +0.3944623 0.5453253 0.245636 +0.4085988 0.5453253 0.245636 +0.4220313 0.5453253 0.245636 +0.4348222 0.5453253 0.245636 +0.4470264 0.5453253 0.245636 +0.4586928 0.5453253 0.245636 +0.4698649 0.5453253 0.245636 +0.4805811 0.5453253 0.245636 +0.490876 0.5453253 0.245636 +0.5007803 0.5453253 0.245636 +0.510322 0.5453253 0.245636 +0.5195258 0.5453253 0.245636 +0.5284142 0.5453253 0.245636 +0.5370079 0.5453253 0.245636 +0.5453253 0.5453253 0.245636 +0.5533834 0.5453253 0.245636 +0.5611974 0.5453253 0.245636 +0.5687816 0.5453253 0.245636 +0.092819 0.5533834 0.245636 +0.1056428 0.5533834 0.245636 +0.1201537 0.5533834 0.245636 +0.1409607 0.5533834 0.245636 +0.1678172 0.5533834 0.245636 +0.1950164 0.5533834 0.245636 +0.2210581 0.5533834 0.245636 +0.245636 0.5533834 0.245636 +0.2686816 0.5533834 0.245636 +0.2902431 0.5533834 0.245636 +0.3104189 0.5533834 0.245636 +0.3293248 0.5533834 0.245636 +0.3470774 0.5533834 0.245636 +0.3637862 0.5533834 0.245636 +0.3795513 0.5533834 0.245636 +0.3944623 0.5533834 0.245636 +0.4085988 0.5533834 0.245636 +0.4220313 0.5533834 0.245636 +0.4348222 0.5533834 0.245636 +0.4470264 0.5533834 0.245636 +0.4586928 0.5533834 0.245636 +0.4698649 0.5533834 0.245636 +0.4805811 0.5533834 0.245636 +0.490876 0.5533834 0.245636 +0.5007803 0.5533834 0.245636 +0.510322 0.5533834 0.245636 +0.5195258 0.5533834 0.245636 +0.5284142 0.5533834 0.245636 +0.5370079 0.5533834 0.245636 +0.5453253 0.5533834 0.245636 +0.5533834 0.5533834 0.245636 +0.5611974 0.5533834 0.245636 +0.5687816 0.5533834 0.245636 +0.092819 0.5611974 0.245636 +0.1056428 0.5611974 0.245636 +0.1201537 0.5611974 0.245636 +0.1409607 0.5611974 0.245636 +0.1678172 0.5611974 0.245636 +0.1950164 0.5611974 0.245636 +0.2210581 0.5611974 0.245636 +0.245636 0.5611974 0.245636 +0.2686816 0.5611974 0.245636 +0.2902431 0.5611974 0.245636 +0.3104189 0.5611974 0.245636 +0.3293248 0.5611974 0.245636 +0.3470774 0.5611974 0.245636 +0.3637862 0.5611974 0.245636 +0.3795513 0.5611974 0.245636 +0.3944623 0.5611974 0.245636 +0.4085988 0.5611974 0.245636 +0.4220313 0.5611974 0.245636 +0.4348222 0.5611974 0.245636 +0.4470264 0.5611974 0.245636 +0.4586928 0.5611974 0.245636 +0.4698649 0.5611974 0.245636 +0.4805811 0.5611974 0.245636 +0.490876 0.5611974 0.245636 +0.5007803 0.5611974 0.245636 +0.510322 0.5611974 0.245636 +0.5195258 0.5611974 0.245636 +0.5284142 0.5611974 0.245636 +0.5370079 0.5611974 0.245636 +0.5453253 0.5611974 0.245636 +0.5533834 0.5611974 0.245636 +0.5611974 0.5611974 0.245636 +0.5687816 0.5611974 0.245636 +0.092819 0.5687816 0.245636 +0.1056428 0.5687816 0.245636 +0.1201537 0.5687816 0.245636 +0.1409607 0.5687816 0.245636 +0.1678172 0.5687816 0.245636 +0.1950164 0.5687816 0.245636 +0.2210581 0.5687816 0.245636 +0.245636 0.5687816 0.245636 +0.2686816 0.5687816 0.245636 +0.2902431 0.5687816 0.245636 +0.3104189 0.5687816 0.245636 +0.3293248 0.5687816 0.245636 +0.3470774 0.5687816 0.245636 +0.3637862 0.5687816 0.245636 +0.3795513 0.5687816 0.245636 +0.3944623 0.5687816 0.245636 +0.4085988 0.5687816 0.245636 +0.4220313 0.5687816 0.245636 +0.4348222 0.5687816 0.245636 +0.4470264 0.5687816 0.245636 +0.4586928 0.5687816 0.245636 +0.4698649 0.5687816 0.245636 +0.4805811 0.5687816 0.245636 +0.490876 0.5687816 0.245636 +0.5007803 0.5687816 0.245636 +0.510322 0.5687816 0.245636 +0.5195258 0.5687816 0.245636 +0.5284142 0.5687816 0.245636 +0.5370079 0.5687816 0.245636 +0.5453253 0.5687816 0.245636 +0.5533834 0.5687816 0.245636 +0.5611974 0.5687816 0.245636 +0.5687816 0.5687816 0.245636 +0.092819 0.092819 0.2686816 +0.1056428 0.092819 0.2686816 +0.1201537 0.092819 0.2686816 +0.1409607 0.092819 0.2686816 +0.1678172 0.092819 0.2686816 +0.1950164 0.092819 0.2686816 +0.2210581 0.092819 0.2686816 +0.245636 0.092819 0.2686816 +0.2686816 0.092819 0.2686816 +0.2902431 0.092819 0.2686816 +0.3104189 0.092819 0.2686816 +0.3293248 0.092819 0.2686816 +0.3470774 0.092819 0.2686816 +0.3637862 0.092819 0.2686816 +0.3795513 0.092819 0.2686816 +0.3944623 0.092819 0.2686816 +0.4085988 0.092819 0.2686816 +0.4220313 0.092819 0.2686816 +0.4348222 0.092819 0.2686816 +0.4470264 0.092819 0.2686816 +0.4586928 0.092819 0.2686816 +0.4698649 0.092819 0.2686816 +0.4805811 0.092819 0.2686816 +0.490876 0.092819 0.2686816 +0.5007803 0.092819 0.2686816 +0.510322 0.092819 0.2686816 +0.5195258 0.092819 0.2686816 +0.5284142 0.092819 0.2686816 +0.5370079 0.092819 0.2686816 +0.5453253 0.092819 0.2686816 +0.5533834 0.092819 0.2686816 +0.5611974 0.092819 0.2686816 +0.5687816 0.092819 0.2686816 +0.092819 0.1056428 0.2686816 +0.1056428 0.1056428 0.2686816 +0.1201537 0.1056428 0.2686816 +0.1409607 0.1056428 0.2686816 +0.1678172 0.1056428 0.2686816 +0.1950164 0.1056428 0.2686816 +0.2210581 0.1056428 0.2686816 +0.245636 0.1056428 0.2686816 +0.2686816 0.1056428 0.2686816 +0.2902431 0.1056428 0.2686816 +0.3104189 0.1056428 0.2686816 +0.3293248 0.1056428 0.2686816 +0.3470774 0.1056428 0.2686816 +0.3637862 0.1056428 0.2686816 +0.3795513 0.1056428 0.2686816 +0.3944623 0.1056428 0.2686816 +0.4085988 0.1056428 0.2686816 +0.4220313 0.1056428 0.2686816 +0.4348222 0.1056428 0.2686816 +0.4470264 0.1056428 0.2686816 +0.4586928 0.1056428 0.2686816 +0.4698649 0.1056428 0.2686816 +0.4805811 0.1056428 0.2686816 +0.490876 0.1056428 0.2686816 +0.5007803 0.1056428 0.2686816 +0.510322 0.1056428 0.2686816 +0.5195258 0.1056428 0.2686816 +0.5284142 0.1056428 0.2686816 +0.5370079 0.1056428 0.2686816 +0.5453253 0.1056428 0.2686816 +0.5533834 0.1056428 0.2686816 +0.5611974 0.1056428 0.2686816 +0.5687816 0.1056428 0.2686816 +0.092819 0.1201537 0.2686816 +0.1056428 0.1201537 0.2686816 +0.1201537 0.1201537 0.2686816 +0.1409607 0.1201537 0.2686816 +0.1678172 0.1201537 0.2686816 +0.1950164 0.1201537 0.2686816 +0.2210581 0.1201537 0.2686816 +0.245636 0.1201537 0.2686816 +0.2686816 0.1201537 0.2686816 +0.2902431 0.1201537 0.2686816 +0.3104189 0.1201537 0.2686816 +0.3293248 0.1201537 0.2686816 +0.3470774 0.1201537 0.2686816 +0.3637862 0.1201537 0.2686816 +0.3795513 0.1201537 0.2686816 +0.3944623 0.1201537 0.2686816 +0.4085988 0.1201537 0.2686816 +0.4220313 0.1201537 0.2686816 +0.4348222 0.1201537 0.2686816 +0.4470264 0.1201537 0.2686816 +0.4586928 0.1201537 0.2686816 +0.4698649 0.1201537 0.2686816 +0.4805811 0.1201537 0.2686816 +0.490876 0.1201537 0.2686816 +0.5007803 0.1201537 0.2686816 +0.510322 0.1201537 0.2686816 +0.5195258 0.1201537 0.2686816 +0.5284142 0.1201537 0.2686816 +0.5370079 0.1201537 0.2686816 +0.5453253 0.1201537 0.2686816 +0.5533834 0.1201537 0.2686816 +0.5611974 0.1201537 0.2686816 +0.5687816 0.1201537 0.2686816 +0.092819 0.1409607 0.2686816 +0.1056428 0.1409607 0.2686816 +0.1201537 0.1409607 0.2686816 +0.1409607 0.1409607 0.2686816 +0.1678172 0.1409607 0.2686816 +0.1950164 0.1409607 0.2686816 +0.2210581 0.1409607 0.2686816 +0.245636 0.1409607 0.2686816 +0.2686816 0.1409607 0.2686816 +0.2902431 0.1409607 0.2686816 +0.3104189 0.1409607 0.2686816 +0.3293248 0.1409607 0.2686816 +0.3470774 0.1409607 0.2686816 +0.3637862 0.1409607 0.2686816 +0.3795513 0.1409607 0.2686816 +0.3944623 0.1409607 0.2686816 +0.4085988 0.1409607 0.2686816 +0.4220313 0.1409607 0.2686816 +0.4348222 0.1409607 0.2686816 +0.4470264 0.1409607 0.2686816 +0.4586928 0.1409607 0.2686816 +0.4698649 0.1409607 0.2686816 +0.4805811 0.1409607 0.2686816 +0.490876 0.1409607 0.2686816 +0.5007803 0.1409607 0.2686816 +0.510322 0.1409607 0.2686816 +0.5195258 0.1409607 0.2686816 +0.5284142 0.1409607 0.2686816 +0.5370079 0.1409607 0.2686816 +0.5453253 0.1409607 0.2686816 +0.5533834 0.1409607 0.2686816 +0.5611974 0.1409607 0.2686816 +0.5687816 0.1409607 0.2686816 +0.092819 0.1678172 0.2686816 +0.1056428 0.1678172 0.2686816 +0.1201537 0.1678172 0.2686816 +0.1409607 0.1678172 0.2686816 +0.1678172 0.1678172 0.2686816 +0.1950164 0.1678172 0.2686816 +0.2210581 0.1678172 0.2686816 +0.245636 0.1678172 0.2686816 +0.2686816 0.1678172 0.2686816 +0.2902431 0.1678172 0.2686816 +0.3104189 0.1678172 0.2686816 +0.3293248 0.1678172 0.2686816 +0.3470774 0.1678172 0.2686816 +0.3637862 0.1678172 0.2686816 +0.3795513 0.1678172 0.2686816 +0.3944623 0.1678172 0.2686816 +0.4085988 0.1678172 0.2686816 +0.4220313 0.1678172 0.2686816 +0.4348222 0.1678172 0.2686816 +0.4470264 0.1678172 0.2686816 +0.4586928 0.1678172 0.2686816 +0.4698649 0.1678172 0.2686816 +0.4805811 0.1678172 0.2686816 +0.490876 0.1678172 0.2686816 +0.5007803 0.1678172 0.2686816 +0.510322 0.1678172 0.2686816 +0.5195258 0.1678172 0.2686816 +0.5284142 0.1678172 0.2686816 +0.5370079 0.1678172 0.2686816 +0.5453253 0.1678172 0.2686816 +0.5533834 0.1678172 0.2686816 +0.5611974 0.1678172 0.2686816 +0.5687816 0.1678172 0.2686816 +0.092819 0.1950164 0.2686816 +0.1056428 0.1950164 0.2686816 +0.1201537 0.1950164 0.2686816 +0.1409607 0.1950164 0.2686816 +0.1678172 0.1950164 0.2686816 +0.1950164 0.1950164 0.2686816 +0.2210581 0.1950164 0.2686816 +0.245636 0.1950164 0.2686816 +0.2686816 0.1950164 0.2686816 +0.2902431 0.1950164 0.2686816 +0.3104189 0.1950164 0.2686816 +0.3293248 0.1950164 0.2686816 +0.3470774 0.1950164 0.2686816 +0.3637862 0.1950164 0.2686816 +0.3795513 0.1950164 0.2686816 +0.3944623 0.1950164 0.2686816 +0.4085988 0.1950164 0.2686816 +0.4220313 0.1950164 0.2686816 +0.4348222 0.1950164 0.2686816 +0.4470264 0.1950164 0.2686816 +0.4586928 0.1950164 0.2686816 +0.4698649 0.1950164 0.2686816 +0.4805811 0.1950164 0.2686816 +0.490876 0.1950164 0.2686816 +0.5007803 0.1950164 0.2686816 +0.510322 0.1950164 0.2686816 +0.5195258 0.1950164 0.2686816 +0.5284142 0.1950164 0.2686816 +0.5370079 0.1950164 0.2686816 +0.5453253 0.1950164 0.2686816 +0.5533834 0.1950164 0.2686816 +0.5611974 0.1950164 0.2686816 +0.5687816 0.1950164 0.2686816 +0.092819 0.2210581 0.2686816 +0.1056428 0.2210581 0.2686816 +0.1201537 0.2210581 0.2686816 +0.1409607 0.2210581 0.2686816 +0.1678172 0.2210581 0.2686816 +0.1950164 0.2210581 0.2686816 +0.2210581 0.2210581 0.2686816 +0.245636 0.2210581 0.2686816 +0.2686816 0.2210581 0.2686816 +0.2902431 0.2210581 0.2686816 +0.3104189 0.2210581 0.2686816 +0.3293248 0.2210581 0.2686816 +0.3470774 0.2210581 0.2686816 +0.3637862 0.2210581 0.2686816 +0.3795513 0.2210581 0.2686816 +0.3944623 0.2210581 0.2686816 +0.4085988 0.2210581 0.2686816 +0.4220313 0.2210581 0.2686816 +0.4348222 0.2210581 0.2686816 +0.4470264 0.2210581 0.2686816 +0.4586928 0.2210581 0.2686816 +0.4698649 0.2210581 0.2686816 +0.4805811 0.2210581 0.2686816 +0.490876 0.2210581 0.2686816 +0.5007803 0.2210581 0.2686816 +0.510322 0.2210581 0.2686816 +0.5195258 0.2210581 0.2686816 +0.5284142 0.2210581 0.2686816 +0.5370079 0.2210581 0.2686816 +0.5453253 0.2210581 0.2686816 +0.5533834 0.2210581 0.2686816 +0.5611974 0.2210581 0.2686816 +0.5687816 0.2210581 0.2686816 +0.092819 0.245636 0.2686816 +0.1056428 0.245636 0.2686816 +0.1201537 0.245636 0.2686816 +0.1409607 0.245636 0.2686816 +0.1678172 0.245636 0.2686816 +0.1950164 0.245636 0.2686816 +0.2210581 0.245636 0.2686816 +0.245636 0.245636 0.2686816 +0.2686816 0.245636 0.2686816 +0.2902431 0.245636 0.2686816 +0.3104189 0.245636 0.2686816 +0.3293248 0.245636 0.2686816 +0.3470774 0.245636 0.2686816 +0.3637862 0.245636 0.2686816 +0.3795513 0.245636 0.2686816 +0.3944623 0.245636 0.2686816 +0.4085988 0.245636 0.2686816 +0.4220313 0.245636 0.2686816 +0.4348222 0.245636 0.2686816 +0.4470264 0.245636 0.2686816 +0.4586928 0.245636 0.2686816 +0.4698649 0.245636 0.2686816 +0.4805811 0.245636 0.2686816 +0.490876 0.245636 0.2686816 +0.5007803 0.245636 0.2686816 +0.510322 0.245636 0.2686816 +0.5195258 0.245636 0.2686816 +0.5284142 0.245636 0.2686816 +0.5370079 0.245636 0.2686816 +0.5453253 0.245636 0.2686816 +0.5533834 0.245636 0.2686816 +0.5611974 0.245636 0.2686816 +0.5687816 0.245636 0.2686816 +0.092819 0.2686816 0.2686816 +0.1056428 0.2686816 0.2686816 +0.1201537 0.2686816 0.2686816 +0.1409607 0.2686816 0.2686816 +0.1678172 0.2686816 0.2686816 +0.1950164 0.2686816 0.2686816 +0.2210581 0.2686816 0.2686816 +0.245636 0.2686816 0.2686816 +0.2686816 0.2686816 0.2686816 +0.2902431 0.2686816 0.2686816 +0.3104189 0.2686816 0.2686816 +0.3293248 0.2686816 0.2686816 +0.3470774 0.2686816 0.2686816 +0.3637862 0.2686816 0.2686816 +0.3795513 0.2686816 0.2686816 +0.3944623 0.2686816 0.2686816 +0.4085988 0.2686816 0.2686816 +0.4220313 0.2686816 0.2686816 +0.4348222 0.2686816 0.2686816 +0.4470264 0.2686816 0.2686816 +0.4586928 0.2686816 0.2686816 +0.4698649 0.2686816 0.2686816 +0.4805811 0.2686816 0.2686816 +0.490876 0.2686816 0.2686816 +0.5007803 0.2686816 0.2686816 +0.510322 0.2686816 0.2686816 +0.5195258 0.2686816 0.2686816 +0.5284142 0.2686816 0.2686816 +0.5370079 0.2686816 0.2686816 +0.5453253 0.2686816 0.2686816 +0.5533834 0.2686816 0.2686816 +0.5611974 0.2686816 0.2686816 +0.5687816 0.2686816 0.2686816 +0.092819 0.2902431 0.2686816 +0.1056428 0.2902431 0.2686816 +0.1201537 0.2902431 0.2686816 +0.1409607 0.2902431 0.2686816 +0.1678172 0.2902431 0.2686816 +0.1950164 0.2902431 0.2686816 +0.2210581 0.2902431 0.2686816 +0.245636 0.2902431 0.2686816 +0.2686816 0.2902431 0.2686816 +0.2902431 0.2902431 0.2686816 +0.3104189 0.2902431 0.2686816 +0.3293248 0.2902431 0.2686816 +0.3470774 0.2902431 0.2686816 +0.3637862 0.2902431 0.2686816 +0.3795513 0.2902431 0.2686816 +0.3944623 0.2902431 0.2686816 +0.4085988 0.2902431 0.2686816 +0.4220313 0.2902431 0.2686816 +0.4348222 0.2902431 0.2686816 +0.4470264 0.2902431 0.2686816 +0.4586928 0.2902431 0.2686816 +0.4698649 0.2902431 0.2686816 +0.4805811 0.2902431 0.2686816 +0.490876 0.2902431 0.2686816 +0.5007803 0.2902431 0.2686816 +0.510322 0.2902431 0.2686816 +0.5195258 0.2902431 0.2686816 +0.5284142 0.2902431 0.2686816 +0.5370079 0.2902431 0.2686816 +0.5453253 0.2902431 0.2686816 +0.5533834 0.2902431 0.2686816 +0.5611974 0.2902431 0.2686816 +0.5687816 0.2902431 0.2686816 +0.092819 0.3104189 0.2686816 +0.1056428 0.3104189 0.2686816 +0.1201537 0.3104189 0.2686816 +0.1409607 0.3104189 0.2686816 +0.1678172 0.3104189 0.2686816 +0.1950164 0.3104189 0.2686816 +0.2210581 0.3104189 0.2686816 +0.245636 0.3104189 0.2686816 +0.2686816 0.3104189 0.2686816 +0.2902431 0.3104189 0.2686816 +0.3104189 0.3104189 0.2686816 +0.3293248 0.3104189 0.2686816 +0.3470774 0.3104189 0.2686816 +0.3637862 0.3104189 0.2686816 +0.3795513 0.3104189 0.2686816 +0.3944623 0.3104189 0.2686816 +0.4085988 0.3104189 0.2686816 +0.4220313 0.3104189 0.2686816 +0.4348222 0.3104189 0.2686816 +0.4470264 0.3104189 0.2686816 +0.4586928 0.3104189 0.2686816 +0.4698649 0.3104189 0.2686816 +0.4805811 0.3104189 0.2686816 +0.490876 0.3104189 0.2686816 +0.5007803 0.3104189 0.2686816 +0.510322 0.3104189 0.2686816 +0.5195258 0.3104189 0.2686816 +0.5284142 0.3104189 0.2686816 +0.5370079 0.3104189 0.2686816 +0.5453253 0.3104189 0.2686816 +0.5533834 0.3104189 0.2686816 +0.5611974 0.3104189 0.2686816 +0.5687816 0.3104189 0.2686816 +0.092819 0.3293248 0.2686816 +0.1056428 0.3293248 0.2686816 +0.1201537 0.3293248 0.2686816 +0.1409607 0.3293248 0.2686816 +0.1678172 0.3293248 0.2686816 +0.1950164 0.3293248 0.2686816 +0.2210581 0.3293248 0.2686816 +0.245636 0.3293248 0.2686816 +0.2686816 0.3293248 0.2686816 +0.2902431 0.3293248 0.2686816 +0.3104189 0.3293248 0.2686816 +0.3293248 0.3293248 0.2686816 +0.3470774 0.3293248 0.2686816 +0.3637862 0.3293248 0.2686816 +0.3795513 0.3293248 0.2686816 +0.3944623 0.3293248 0.2686816 +0.4085988 0.3293248 0.2686816 +0.4220313 0.3293248 0.2686816 +0.4348222 0.3293248 0.2686816 +0.4470264 0.3293248 0.2686816 +0.4586928 0.3293248 0.2686816 +0.4698649 0.3293248 0.2686816 +0.4805811 0.3293248 0.2686816 +0.490876 0.3293248 0.2686816 +0.5007803 0.3293248 0.2686816 +0.510322 0.3293248 0.2686816 +0.5195258 0.3293248 0.2686816 +0.5284142 0.3293248 0.2686816 +0.5370079 0.3293248 0.2686816 +0.5453253 0.3293248 0.2686816 +0.5533834 0.3293248 0.2686816 +0.5611974 0.3293248 0.2686816 +0.5687816 0.3293248 0.2686816 +0.092819 0.3470774 0.2686816 +0.1056428 0.3470774 0.2686816 +0.1201537 0.3470774 0.2686816 +0.1409607 0.3470774 0.2686816 +0.1678172 0.3470774 0.2686816 +0.1950164 0.3470774 0.2686816 +0.2210581 0.3470774 0.2686816 +0.245636 0.3470774 0.2686816 +0.2686816 0.3470774 0.2686816 +0.2902431 0.3470774 0.2686816 +0.3104189 0.3470774 0.2686816 +0.3293248 0.3470774 0.2686816 +0.3470774 0.3470774 0.2686816 +0.3637862 0.3470774 0.2686816 +0.3795513 0.3470774 0.2686816 +0.3944623 0.3470774 0.2686816 +0.4085988 0.3470774 0.2686816 +0.4220313 0.3470774 0.2686816 +0.4348222 0.3470774 0.2686816 +0.4470264 0.3470774 0.2686816 +0.4586928 0.3470774 0.2686816 +0.4698649 0.3470774 0.2686816 +0.4805811 0.3470774 0.2686816 +0.490876 0.3470774 0.2686816 +0.5007803 0.3470774 0.2686816 +0.510322 0.3470774 0.2686816 +0.5195258 0.3470774 0.2686816 +0.5284142 0.3470774 0.2686816 +0.5370079 0.3470774 0.2686816 +0.5453253 0.3470774 0.2686816 +0.5533834 0.3470774 0.2686816 +0.5611974 0.3470774 0.2686816 +0.5687816 0.3470774 0.2686816 +0.092819 0.3637862 0.2686816 +0.1056428 0.3637862 0.2686816 +0.1201537 0.3637862 0.2686816 +0.1409607 0.3637862 0.2686816 +0.1678172 0.3637862 0.2686816 +0.1950164 0.3637862 0.2686816 +0.2210581 0.3637862 0.2686816 +0.245636 0.3637862 0.2686816 +0.2686816 0.3637862 0.2686816 +0.2902431 0.3637862 0.2686816 +0.3104189 0.3637862 0.2686816 +0.3293248 0.3637862 0.2686816 +0.3470774 0.3637862 0.2686816 +0.3637862 0.3637862 0.2686816 +0.3795513 0.3637862 0.2686816 +0.3944623 0.3637862 0.2686816 +0.4085988 0.3637862 0.2686816 +0.4220313 0.3637862 0.2686816 +0.4348222 0.3637862 0.2686816 +0.4470264 0.3637862 0.2686816 +0.4586928 0.3637862 0.2686816 +0.4698649 0.3637862 0.2686816 +0.4805811 0.3637862 0.2686816 +0.490876 0.3637862 0.2686816 +0.5007803 0.3637862 0.2686816 +0.510322 0.3637862 0.2686816 +0.5195258 0.3637862 0.2686816 +0.5284142 0.3637862 0.2686816 +0.5370079 0.3637862 0.2686816 +0.5453253 0.3637862 0.2686816 +0.5533834 0.3637862 0.2686816 +0.5611974 0.3637862 0.2686816 +0.5687816 0.3637862 0.2686816 +0.092819 0.3795513 0.2686816 +0.1056428 0.3795513 0.2686816 +0.1201537 0.3795513 0.2686816 +0.1409607 0.3795513 0.2686816 +0.1678172 0.3795513 0.2686816 +0.1950164 0.3795513 0.2686816 +0.2210581 0.3795513 0.2686816 +0.245636 0.3795513 0.2686816 +0.2686816 0.3795513 0.2686816 +0.2902431 0.3795513 0.2686816 +0.3104189 0.3795513 0.2686816 +0.3293248 0.3795513 0.2686816 +0.3470774 0.3795513 0.2686816 +0.3637862 0.3795513 0.2686816 +0.3795513 0.3795513 0.2686816 +0.3944623 0.3795513 0.2686816 +0.4085988 0.3795513 0.2686816 +0.4220313 0.3795513 0.2686816 +0.4348222 0.3795513 0.2686816 +0.4470264 0.3795513 0.2686816 +0.4586928 0.3795513 0.2686816 +0.4698649 0.3795513 0.2686816 +0.4805811 0.3795513 0.2686816 +0.490876 0.3795513 0.2686816 +0.5007803 0.3795513 0.2686816 +0.510322 0.3795513 0.2686816 +0.5195258 0.3795513 0.2686816 +0.5284142 0.3795513 0.2686816 +0.5370079 0.3795513 0.2686816 +0.5453253 0.3795513 0.2686816 +0.5533834 0.3795513 0.2686816 +0.5611974 0.3795513 0.2686816 +0.5687816 0.3795513 0.2686816 +0.092819 0.3944623 0.2686816 +0.1056428 0.3944623 0.2686816 +0.1201537 0.3944623 0.2686816 +0.1409607 0.3944623 0.2686816 +0.1678172 0.3944623 0.2686816 +0.1950164 0.3944623 0.2686816 +0.2210581 0.3944623 0.2686816 +0.245636 0.3944623 0.2686816 +0.2686816 0.3944623 0.2686816 +0.2902431 0.3944623 0.2686816 +0.3104189 0.3944623 0.2686816 +0.3293248 0.3944623 0.2686816 +0.3470774 0.3944623 0.2686816 +0.3637862 0.3944623 0.2686816 +0.3795513 0.3944623 0.2686816 +0.3944623 0.3944623 0.2686816 +0.4085988 0.3944623 0.2686816 +0.4220313 0.3944623 0.2686816 +0.4348222 0.3944623 0.2686816 +0.4470264 0.3944623 0.2686816 +0.4586928 0.3944623 0.2686816 +0.4698649 0.3944623 0.2686816 +0.4805811 0.3944623 0.2686816 +0.490876 0.3944623 0.2686816 +0.5007803 0.3944623 0.2686816 +0.510322 0.3944623 0.2686816 +0.5195258 0.3944623 0.2686816 +0.5284142 0.3944623 0.2686816 +0.5370079 0.3944623 0.2686816 +0.5453253 0.3944623 0.2686816 +0.5533834 0.3944623 0.2686816 +0.5611974 0.3944623 0.2686816 +0.5687816 0.3944623 0.2686816 +0.092819 0.4085988 0.2686816 +0.1056428 0.4085988 0.2686816 +0.1201537 0.4085988 0.2686816 +0.1409607 0.4085988 0.2686816 +0.1678172 0.4085988 0.2686816 +0.1950164 0.4085988 0.2686816 +0.2210581 0.4085988 0.2686816 +0.245636 0.4085988 0.2686816 +0.2686816 0.4085988 0.2686816 +0.2902431 0.4085988 0.2686816 +0.3104189 0.4085988 0.2686816 +0.3293248 0.4085988 0.2686816 +0.3470774 0.4085988 0.2686816 +0.3637862 0.4085988 0.2686816 +0.3795513 0.4085988 0.2686816 +0.3944623 0.4085988 0.2686816 +0.4085988 0.4085988 0.2686816 +0.4220313 0.4085988 0.2686816 +0.4348222 0.4085988 0.2686816 +0.4470264 0.4085988 0.2686816 +0.4586928 0.4085988 0.2686816 +0.4698649 0.4085988 0.2686816 +0.4805811 0.4085988 0.2686816 +0.490876 0.4085988 0.2686816 +0.5007803 0.4085988 0.2686816 +0.510322 0.4085988 0.2686816 +0.5195258 0.4085988 0.2686816 +0.5284142 0.4085988 0.2686816 +0.5370079 0.4085988 0.2686816 +0.5453253 0.4085988 0.2686816 +0.5533834 0.4085988 0.2686816 +0.5611974 0.4085988 0.2686816 +0.5687816 0.4085988 0.2686816 +0.092819 0.4220313 0.2686816 +0.1056428 0.4220313 0.2686816 +0.1201537 0.4220313 0.2686816 +0.1409607 0.4220313 0.2686816 +0.1678172 0.4220313 0.2686816 +0.1950164 0.4220313 0.2686816 +0.2210581 0.4220313 0.2686816 +0.245636 0.4220313 0.2686816 +0.2686816 0.4220313 0.2686816 +0.2902431 0.4220313 0.2686816 +0.3104189 0.4220313 0.2686816 +0.3293248 0.4220313 0.2686816 +0.3470774 0.4220313 0.2686816 +0.3637862 0.4220313 0.2686816 +0.3795513 0.4220313 0.2686816 +0.3944623 0.4220313 0.2686816 +0.4085988 0.4220313 0.2686816 +0.4220313 0.4220313 0.2686816 +0.4348222 0.4220313 0.2686816 +0.4470264 0.4220313 0.2686816 +0.4586928 0.4220313 0.2686816 +0.4698649 0.4220313 0.2686816 +0.4805811 0.4220313 0.2686816 +0.490876 0.4220313 0.2686816 +0.5007803 0.4220313 0.2686816 +0.510322 0.4220313 0.2686816 +0.5195258 0.4220313 0.2686816 +0.5284142 0.4220313 0.2686816 +0.5370079 0.4220313 0.2686816 +0.5453253 0.4220313 0.2686816 +0.5533834 0.4220313 0.2686816 +0.5611974 0.4220313 0.2686816 +0.5687816 0.4220313 0.2686816 +0.092819 0.4348222 0.2686816 +0.1056428 0.4348222 0.2686816 +0.1201537 0.4348222 0.2686816 +0.1409607 0.4348222 0.2686816 +0.1678172 0.4348222 0.2686816 +0.1950164 0.4348222 0.2686816 +0.2210581 0.4348222 0.2686816 +0.245636 0.4348222 0.2686816 +0.2686816 0.4348222 0.2686816 +0.2902431 0.4348222 0.2686816 +0.3104189 0.4348222 0.2686816 +0.3293248 0.4348222 0.2686816 +0.3470774 0.4348222 0.2686816 +0.3637862 0.4348222 0.2686816 +0.3795513 0.4348222 0.2686816 +0.3944623 0.4348222 0.2686816 +0.4085988 0.4348222 0.2686816 +0.4220313 0.4348222 0.2686816 +0.4348222 0.4348222 0.2686816 +0.4470264 0.4348222 0.2686816 +0.4586928 0.4348222 0.2686816 +0.4698649 0.4348222 0.2686816 +0.4805811 0.4348222 0.2686816 +0.490876 0.4348222 0.2686816 +0.5007803 0.4348222 0.2686816 +0.510322 0.4348222 0.2686816 +0.5195258 0.4348222 0.2686816 +0.5284142 0.4348222 0.2686816 +0.5370079 0.4348222 0.2686816 +0.5453253 0.4348222 0.2686816 +0.5533834 0.4348222 0.2686816 +0.5611974 0.4348222 0.2686816 +0.5687816 0.4348222 0.2686816 +0.092819 0.4470264 0.2686816 +0.1056428 0.4470264 0.2686816 +0.1201537 0.4470264 0.2686816 +0.1409607 0.4470264 0.2686816 +0.1678172 0.4470264 0.2686816 +0.1950164 0.4470264 0.2686816 +0.2210581 0.4470264 0.2686816 +0.245636 0.4470264 0.2686816 +0.2686816 0.4470264 0.2686816 +0.2902431 0.4470264 0.2686816 +0.3104189 0.4470264 0.2686816 +0.3293248 0.4470264 0.2686816 +0.3470774 0.4470264 0.2686816 +0.3637862 0.4470264 0.2686816 +0.3795513 0.4470264 0.2686816 +0.3944623 0.4470264 0.2686816 +0.4085988 0.4470264 0.2686816 +0.4220313 0.4470264 0.2686816 +0.4348222 0.4470264 0.2686816 +0.4470264 0.4470264 0.2686816 +0.4586928 0.4470264 0.2686816 +0.4698649 0.4470264 0.2686816 +0.4805811 0.4470264 0.2686816 +0.490876 0.4470264 0.2686816 +0.5007803 0.4470264 0.2686816 +0.510322 0.4470264 0.2686816 +0.5195258 0.4470264 0.2686816 +0.5284142 0.4470264 0.2686816 +0.5370079 0.4470264 0.2686816 +0.5453253 0.4470264 0.2686816 +0.5533834 0.4470264 0.2686816 +0.5611974 0.4470264 0.2686816 +0.5687816 0.4470264 0.2686816 +0.092819 0.4586928 0.2686816 +0.1056428 0.4586928 0.2686816 +0.1201537 0.4586928 0.2686816 +0.1409607 0.4586928 0.2686816 +0.1678172 0.4586928 0.2686816 +0.1950164 0.4586928 0.2686816 +0.2210581 0.4586928 0.2686816 +0.245636 0.4586928 0.2686816 +0.2686816 0.4586928 0.2686816 +0.2902431 0.4586928 0.2686816 +0.3104189 0.4586928 0.2686816 +0.3293248 0.4586928 0.2686816 +0.3470774 0.4586928 0.2686816 +0.3637862 0.4586928 0.2686816 +0.3795513 0.4586928 0.2686816 +0.3944623 0.4586928 0.2686816 +0.4085988 0.4586928 0.2686816 +0.4220313 0.4586928 0.2686816 +0.4348222 0.4586928 0.2686816 +0.4470264 0.4586928 0.2686816 +0.4586928 0.4586928 0.2686816 +0.4698649 0.4586928 0.2686816 +0.4805811 0.4586928 0.2686816 +0.490876 0.4586928 0.2686816 +0.5007803 0.4586928 0.2686816 +0.510322 0.4586928 0.2686816 +0.5195258 0.4586928 0.2686816 +0.5284142 0.4586928 0.2686816 +0.5370079 0.4586928 0.2686816 +0.5453253 0.4586928 0.2686816 +0.5533834 0.4586928 0.2686816 +0.5611974 0.4586928 0.2686816 +0.5687816 0.4586928 0.2686816 +0.092819 0.4698649 0.2686816 +0.1056428 0.4698649 0.2686816 +0.1201537 0.4698649 0.2686816 +0.1409607 0.4698649 0.2686816 +0.1678172 0.4698649 0.2686816 +0.1950164 0.4698649 0.2686816 +0.2210581 0.4698649 0.2686816 +0.245636 0.4698649 0.2686816 +0.2686816 0.4698649 0.2686816 +0.2902431 0.4698649 0.2686816 +0.3104189 0.4698649 0.2686816 +0.3293248 0.4698649 0.2686816 +0.3470774 0.4698649 0.2686816 +0.3637862 0.4698649 0.2686816 +0.3795513 0.4698649 0.2686816 +0.3944623 0.4698649 0.2686816 +0.4085988 0.4698649 0.2686816 +0.4220313 0.4698649 0.2686816 +0.4348222 0.4698649 0.2686816 +0.4470264 0.4698649 0.2686816 +0.4586928 0.4698649 0.2686816 +0.4698649 0.4698649 0.2686816 +0.4805811 0.4698649 0.2686816 +0.490876 0.4698649 0.2686816 +0.5007803 0.4698649 0.2686816 +0.510322 0.4698649 0.2686816 +0.5195258 0.4698649 0.2686816 +0.5284142 0.4698649 0.2686816 +0.5370079 0.4698649 0.2686816 +0.5453253 0.4698649 0.2686816 +0.5533834 0.4698649 0.2686816 +0.5611974 0.4698649 0.2686816 +0.5687816 0.4698649 0.2686816 +0.092819 0.4805811 0.2686816 +0.1056428 0.4805811 0.2686816 +0.1201537 0.4805811 0.2686816 +0.1409607 0.4805811 0.2686816 +0.1678172 0.4805811 0.2686816 +0.1950164 0.4805811 0.2686816 +0.2210581 0.4805811 0.2686816 +0.245636 0.4805811 0.2686816 +0.2686816 0.4805811 0.2686816 +0.2902431 0.4805811 0.2686816 +0.3104189 0.4805811 0.2686816 +0.3293248 0.4805811 0.2686816 +0.3470774 0.4805811 0.2686816 +0.3637862 0.4805811 0.2686816 +0.3795513 0.4805811 0.2686816 +0.3944623 0.4805811 0.2686816 +0.4085988 0.4805811 0.2686816 +0.4220313 0.4805811 0.2686816 +0.4348222 0.4805811 0.2686816 +0.4470264 0.4805811 0.2686816 +0.4586928 0.4805811 0.2686816 +0.4698649 0.4805811 0.2686816 +0.4805811 0.4805811 0.2686816 +0.490876 0.4805811 0.2686816 +0.5007803 0.4805811 0.2686816 +0.510322 0.4805811 0.2686816 +0.5195258 0.4805811 0.2686816 +0.5284142 0.4805811 0.2686816 +0.5370079 0.4805811 0.2686816 +0.5453253 0.4805811 0.2686816 +0.5533834 0.4805811 0.2686816 +0.5611974 0.4805811 0.2686816 +0.5687816 0.4805811 0.2686816 +0.092819 0.490876 0.2686816 +0.1056428 0.490876 0.2686816 +0.1201537 0.490876 0.2686816 +0.1409607 0.490876 0.2686816 +0.1678172 0.490876 0.2686816 +0.1950164 0.490876 0.2686816 +0.2210581 0.490876 0.2686816 +0.245636 0.490876 0.2686816 +0.2686816 0.490876 0.2686816 +0.2902431 0.490876 0.2686816 +0.3104189 0.490876 0.2686816 +0.3293248 0.490876 0.2686816 +0.3470774 0.490876 0.2686816 +0.3637862 0.490876 0.2686816 +0.3795513 0.490876 0.2686816 +0.3944623 0.490876 0.2686816 +0.4085988 0.490876 0.2686816 +0.4220313 0.490876 0.2686816 +0.4348222 0.490876 0.2686816 +0.4470264 0.490876 0.2686816 +0.4586928 0.490876 0.2686816 +0.4698649 0.490876 0.2686816 +0.4805811 0.490876 0.2686816 +0.490876 0.490876 0.2686816 +0.5007803 0.490876 0.2686816 +0.510322 0.490876 0.2686816 +0.5195258 0.490876 0.2686816 +0.5284142 0.490876 0.2686816 +0.5370079 0.490876 0.2686816 +0.5453253 0.490876 0.2686816 +0.5533834 0.490876 0.2686816 +0.5611974 0.490876 0.2686816 +0.5687816 0.490876 0.2686816 +0.092819 0.5007803 0.2686816 +0.1056428 0.5007803 0.2686816 +0.1201537 0.5007803 0.2686816 +0.1409607 0.5007803 0.2686816 +0.1678172 0.5007803 0.2686816 +0.1950164 0.5007803 0.2686816 +0.2210581 0.5007803 0.2686816 +0.245636 0.5007803 0.2686816 +0.2686816 0.5007803 0.2686816 +0.2902431 0.5007803 0.2686816 +0.3104189 0.5007803 0.2686816 +0.3293248 0.5007803 0.2686816 +0.3470774 0.5007803 0.2686816 +0.3637862 0.5007803 0.2686816 +0.3795513 0.5007803 0.2686816 +0.3944623 0.5007803 0.2686816 +0.4085988 0.5007803 0.2686816 +0.4220313 0.5007803 0.2686816 +0.4348222 0.5007803 0.2686816 +0.4470264 0.5007803 0.2686816 +0.4586928 0.5007803 0.2686816 +0.4698649 0.5007803 0.2686816 +0.4805811 0.5007803 0.2686816 +0.490876 0.5007803 0.2686816 +0.5007803 0.5007803 0.2686816 +0.510322 0.5007803 0.2686816 +0.5195258 0.5007803 0.2686816 +0.5284142 0.5007803 0.2686816 +0.5370079 0.5007803 0.2686816 +0.5453253 0.5007803 0.2686816 +0.5533834 0.5007803 0.2686816 +0.5611974 0.5007803 0.2686816 +0.5687816 0.5007803 0.2686816 +0.092819 0.510322 0.2686816 +0.1056428 0.510322 0.2686816 +0.1201537 0.510322 0.2686816 +0.1409607 0.510322 0.2686816 +0.1678172 0.510322 0.2686816 +0.1950164 0.510322 0.2686816 +0.2210581 0.510322 0.2686816 +0.245636 0.510322 0.2686816 +0.2686816 0.510322 0.2686816 +0.2902431 0.510322 0.2686816 +0.3104189 0.510322 0.2686816 +0.3293248 0.510322 0.2686816 +0.3470774 0.510322 0.2686816 +0.3637862 0.510322 0.2686816 +0.3795513 0.510322 0.2686816 +0.3944623 0.510322 0.2686816 +0.4085988 0.510322 0.2686816 +0.4220313 0.510322 0.2686816 +0.4348222 0.510322 0.2686816 +0.4470264 0.510322 0.2686816 +0.4586928 0.510322 0.2686816 +0.4698649 0.510322 0.2686816 +0.4805811 0.510322 0.2686816 +0.490876 0.510322 0.2686816 +0.5007803 0.510322 0.2686816 +0.510322 0.510322 0.2686816 +0.5195258 0.510322 0.2686816 +0.5284142 0.510322 0.2686816 +0.5370079 0.510322 0.2686816 +0.5453253 0.510322 0.2686816 +0.5533834 0.510322 0.2686816 +0.5611974 0.510322 0.2686816 +0.5687816 0.510322 0.2686816 +0.092819 0.5195258 0.2686816 +0.1056428 0.5195258 0.2686816 +0.1201537 0.5195258 0.2686816 +0.1409607 0.5195258 0.2686816 +0.1678172 0.5195258 0.2686816 +0.1950164 0.5195258 0.2686816 +0.2210581 0.5195258 0.2686816 +0.245636 0.5195258 0.2686816 +0.2686816 0.5195258 0.2686816 +0.2902431 0.5195258 0.2686816 +0.3104189 0.5195258 0.2686816 +0.3293248 0.5195258 0.2686816 +0.3470774 0.5195258 0.2686816 +0.3637862 0.5195258 0.2686816 +0.3795513 0.5195258 0.2686816 +0.3944623 0.5195258 0.2686816 +0.4085988 0.5195258 0.2686816 +0.4220313 0.5195258 0.2686816 +0.4348222 0.5195258 0.2686816 +0.4470264 0.5195258 0.2686816 +0.4586928 0.5195258 0.2686816 +0.4698649 0.5195258 0.2686816 +0.4805811 0.5195258 0.2686816 +0.490876 0.5195258 0.2686816 +0.5007803 0.5195258 0.2686816 +0.510322 0.5195258 0.2686816 +0.5195258 0.5195258 0.2686816 +0.5284142 0.5195258 0.2686816 +0.5370079 0.5195258 0.2686816 +0.5453253 0.5195258 0.2686816 +0.5533834 0.5195258 0.2686816 +0.5611974 0.5195258 0.2686816 +0.5687816 0.5195258 0.2686816 +0.092819 0.5284142 0.2686816 +0.1056428 0.5284142 0.2686816 +0.1201537 0.5284142 0.2686816 +0.1409607 0.5284142 0.2686816 +0.1678172 0.5284142 0.2686816 +0.1950164 0.5284142 0.2686816 +0.2210581 0.5284142 0.2686816 +0.245636 0.5284142 0.2686816 +0.2686816 0.5284142 0.2686816 +0.2902431 0.5284142 0.2686816 +0.3104189 0.5284142 0.2686816 +0.3293248 0.5284142 0.2686816 +0.3470774 0.5284142 0.2686816 +0.3637862 0.5284142 0.2686816 +0.3795513 0.5284142 0.2686816 +0.3944623 0.5284142 0.2686816 +0.4085988 0.5284142 0.2686816 +0.4220313 0.5284142 0.2686816 +0.4348222 0.5284142 0.2686816 +0.4470264 0.5284142 0.2686816 +0.4586928 0.5284142 0.2686816 +0.4698649 0.5284142 0.2686816 +0.4805811 0.5284142 0.2686816 +0.490876 0.5284142 0.2686816 +0.5007803 0.5284142 0.2686816 +0.510322 0.5284142 0.2686816 +0.5195258 0.5284142 0.2686816 +0.5284142 0.5284142 0.2686816 +0.5370079 0.5284142 0.2686816 +0.5453253 0.5284142 0.2686816 +0.5533834 0.5284142 0.2686816 +0.5611974 0.5284142 0.2686816 +0.5687816 0.5284142 0.2686816 +0.092819 0.5370079 0.2686816 +0.1056428 0.5370079 0.2686816 +0.1201537 0.5370079 0.2686816 +0.1409607 0.5370079 0.2686816 +0.1678172 0.5370079 0.2686816 +0.1950164 0.5370079 0.2686816 +0.2210581 0.5370079 0.2686816 +0.245636 0.5370079 0.2686816 +0.2686816 0.5370079 0.2686816 +0.2902431 0.5370079 0.2686816 +0.3104189 0.5370079 0.2686816 +0.3293248 0.5370079 0.2686816 +0.3470774 0.5370079 0.2686816 +0.3637862 0.5370079 0.2686816 +0.3795513 0.5370079 0.2686816 +0.3944623 0.5370079 0.2686816 +0.4085988 0.5370079 0.2686816 +0.4220313 0.5370079 0.2686816 +0.4348222 0.5370079 0.2686816 +0.4470264 0.5370079 0.2686816 +0.4586928 0.5370079 0.2686816 +0.4698649 0.5370079 0.2686816 +0.4805811 0.5370079 0.2686816 +0.490876 0.5370079 0.2686816 +0.5007803 0.5370079 0.2686816 +0.510322 0.5370079 0.2686816 +0.5195258 0.5370079 0.2686816 +0.5284142 0.5370079 0.2686816 +0.5370079 0.5370079 0.2686816 +0.5453253 0.5370079 0.2686816 +0.5533834 0.5370079 0.2686816 +0.5611974 0.5370079 0.2686816 +0.5687816 0.5370079 0.2686816 +0.092819 0.5453253 0.2686816 +0.1056428 0.5453253 0.2686816 +0.1201537 0.5453253 0.2686816 +0.1409607 0.5453253 0.2686816 +0.1678172 0.5453253 0.2686816 +0.1950164 0.5453253 0.2686816 +0.2210581 0.5453253 0.2686816 +0.245636 0.5453253 0.2686816 +0.2686816 0.5453253 0.2686816 +0.2902431 0.5453253 0.2686816 +0.3104189 0.5453253 0.2686816 +0.3293248 0.5453253 0.2686816 +0.3470774 0.5453253 0.2686816 +0.3637862 0.5453253 0.2686816 +0.3795513 0.5453253 0.2686816 +0.3944623 0.5453253 0.2686816 +0.4085988 0.5453253 0.2686816 +0.4220313 0.5453253 0.2686816 +0.4348222 0.5453253 0.2686816 +0.4470264 0.5453253 0.2686816 +0.4586928 0.5453253 0.2686816 +0.4698649 0.5453253 0.2686816 +0.4805811 0.5453253 0.2686816 +0.490876 0.5453253 0.2686816 +0.5007803 0.5453253 0.2686816 +0.510322 0.5453253 0.2686816 +0.5195258 0.5453253 0.2686816 +0.5284142 0.5453253 0.2686816 +0.5370079 0.5453253 0.2686816 +0.5453253 0.5453253 0.2686816 +0.5533834 0.5453253 0.2686816 +0.5611974 0.5453253 0.2686816 +0.5687816 0.5453253 0.2686816 +0.092819 0.5533834 0.2686816 +0.1056428 0.5533834 0.2686816 +0.1201537 0.5533834 0.2686816 +0.1409607 0.5533834 0.2686816 +0.1678172 0.5533834 0.2686816 +0.1950164 0.5533834 0.2686816 +0.2210581 0.5533834 0.2686816 +0.245636 0.5533834 0.2686816 +0.2686816 0.5533834 0.2686816 +0.2902431 0.5533834 0.2686816 +0.3104189 0.5533834 0.2686816 +0.3293248 0.5533834 0.2686816 +0.3470774 0.5533834 0.2686816 +0.3637862 0.5533834 0.2686816 +0.3795513 0.5533834 0.2686816 +0.3944623 0.5533834 0.2686816 +0.4085988 0.5533834 0.2686816 +0.4220313 0.5533834 0.2686816 +0.4348222 0.5533834 0.2686816 +0.4470264 0.5533834 0.2686816 +0.4586928 0.5533834 0.2686816 +0.4698649 0.5533834 0.2686816 +0.4805811 0.5533834 0.2686816 +0.490876 0.5533834 0.2686816 +0.5007803 0.5533834 0.2686816 +0.510322 0.5533834 0.2686816 +0.5195258 0.5533834 0.2686816 +0.5284142 0.5533834 0.2686816 +0.5370079 0.5533834 0.2686816 +0.5453253 0.5533834 0.2686816 +0.5533834 0.5533834 0.2686816 +0.5611974 0.5533834 0.2686816 +0.5687816 0.5533834 0.2686816 +0.092819 0.5611974 0.2686816 +0.1056428 0.5611974 0.2686816 +0.1201537 0.5611974 0.2686816 +0.1409607 0.5611974 0.2686816 +0.1678172 0.5611974 0.2686816 +0.1950164 0.5611974 0.2686816 +0.2210581 0.5611974 0.2686816 +0.245636 0.5611974 0.2686816 +0.2686816 0.5611974 0.2686816 +0.2902431 0.5611974 0.2686816 +0.3104189 0.5611974 0.2686816 +0.3293248 0.5611974 0.2686816 +0.3470774 0.5611974 0.2686816 +0.3637862 0.5611974 0.2686816 +0.3795513 0.5611974 0.2686816 +0.3944623 0.5611974 0.2686816 +0.4085988 0.5611974 0.2686816 +0.4220313 0.5611974 0.2686816 +0.4348222 0.5611974 0.2686816 +0.4470264 0.5611974 0.2686816 +0.4586928 0.5611974 0.2686816 +0.4698649 0.5611974 0.2686816 +0.4805811 0.5611974 0.2686816 +0.490876 0.5611974 0.2686816 +0.5007803 0.5611974 0.2686816 +0.510322 0.5611974 0.2686816 +0.5195258 0.5611974 0.2686816 +0.5284142 0.5611974 0.2686816 +0.5370079 0.5611974 0.2686816 +0.5453253 0.5611974 0.2686816 +0.5533834 0.5611974 0.2686816 +0.5611974 0.5611974 0.2686816 +0.5687816 0.5611974 0.2686816 +0.092819 0.5687816 0.2686816 +0.1056428 0.5687816 0.2686816 +0.1201537 0.5687816 0.2686816 +0.1409607 0.5687816 0.2686816 +0.1678172 0.5687816 0.2686816 +0.1950164 0.5687816 0.2686816 +0.2210581 0.5687816 0.2686816 +0.245636 0.5687816 0.2686816 +0.2686816 0.5687816 0.2686816 +0.2902431 0.5687816 0.2686816 +0.3104189 0.5687816 0.2686816 +0.3293248 0.5687816 0.2686816 +0.3470774 0.5687816 0.2686816 +0.3637862 0.5687816 0.2686816 +0.3795513 0.5687816 0.2686816 +0.3944623 0.5687816 0.2686816 +0.4085988 0.5687816 0.2686816 +0.4220313 0.5687816 0.2686816 +0.4348222 0.5687816 0.2686816 +0.4470264 0.5687816 0.2686816 +0.4586928 0.5687816 0.2686816 +0.4698649 0.5687816 0.2686816 +0.4805811 0.5687816 0.2686816 +0.490876 0.5687816 0.2686816 +0.5007803 0.5687816 0.2686816 +0.510322 0.5687816 0.2686816 +0.5195258 0.5687816 0.2686816 +0.5284142 0.5687816 0.2686816 +0.5370079 0.5687816 0.2686816 +0.5453253 0.5687816 0.2686816 +0.5533834 0.5687816 0.2686816 +0.5611974 0.5687816 0.2686816 +0.5687816 0.5687816 0.2686816 +0.092819 0.092819 0.2902431 +0.1056428 0.092819 0.2902431 +0.1201537 0.092819 0.2902431 +0.1409607 0.092819 0.2902431 +0.1678172 0.092819 0.2902431 +0.1950164 0.092819 0.2902431 +0.2210581 0.092819 0.2902431 +0.245636 0.092819 0.2902431 +0.2686816 0.092819 0.2902431 +0.2902431 0.092819 0.2902431 +0.3104189 0.092819 0.2902431 +0.3293248 0.092819 0.2902431 +0.3470774 0.092819 0.2902431 +0.3637862 0.092819 0.2902431 +0.3795513 0.092819 0.2902431 +0.3944623 0.092819 0.2902431 +0.4085988 0.092819 0.2902431 +0.4220313 0.092819 0.2902431 +0.4348222 0.092819 0.2902431 +0.4470264 0.092819 0.2902431 +0.4586928 0.092819 0.2902431 +0.4698649 0.092819 0.2902431 +0.4805811 0.092819 0.2902431 +0.490876 0.092819 0.2902431 +0.5007803 0.092819 0.2902431 +0.510322 0.092819 0.2902431 +0.5195258 0.092819 0.2902431 +0.5284142 0.092819 0.2902431 +0.5370079 0.092819 0.2902431 +0.5453253 0.092819 0.2902431 +0.5533834 0.092819 0.2902431 +0.5611974 0.092819 0.2902431 +0.5687816 0.092819 0.2902431 +0.092819 0.1056428 0.2902431 +0.1056428 0.1056428 0.2902431 +0.1201537 0.1056428 0.2902431 +0.1409607 0.1056428 0.2902431 +0.1678172 0.1056428 0.2902431 +0.1950164 0.1056428 0.2902431 +0.2210581 0.1056428 0.2902431 +0.245636 0.1056428 0.2902431 +0.2686816 0.1056428 0.2902431 +0.2902431 0.1056428 0.2902431 +0.3104189 0.1056428 0.2902431 +0.3293248 0.1056428 0.2902431 +0.3470774 0.1056428 0.2902431 +0.3637862 0.1056428 0.2902431 +0.3795513 0.1056428 0.2902431 +0.3944623 0.1056428 0.2902431 +0.4085988 0.1056428 0.2902431 +0.4220313 0.1056428 0.2902431 +0.4348222 0.1056428 0.2902431 +0.4470264 0.1056428 0.2902431 +0.4586928 0.1056428 0.2902431 +0.4698649 0.1056428 0.2902431 +0.4805811 0.1056428 0.2902431 +0.490876 0.1056428 0.2902431 +0.5007803 0.1056428 0.2902431 +0.510322 0.1056428 0.2902431 +0.5195258 0.1056428 0.2902431 +0.5284142 0.1056428 0.2902431 +0.5370079 0.1056428 0.2902431 +0.5453253 0.1056428 0.2902431 +0.5533834 0.1056428 0.2902431 +0.5611974 0.1056428 0.2902431 +0.5687816 0.1056428 0.2902431 +0.092819 0.1201537 0.2902431 +0.1056428 0.1201537 0.2902431 +0.1201537 0.1201537 0.2902431 +0.1409607 0.1201537 0.2902431 +0.1678172 0.1201537 0.2902431 +0.1950164 0.1201537 0.2902431 +0.2210581 0.1201537 0.2902431 +0.245636 0.1201537 0.2902431 +0.2686816 0.1201537 0.2902431 +0.2902431 0.1201537 0.2902431 +0.3104189 0.1201537 0.2902431 +0.3293248 0.1201537 0.2902431 +0.3470774 0.1201537 0.2902431 +0.3637862 0.1201537 0.2902431 +0.3795513 0.1201537 0.2902431 +0.3944623 0.1201537 0.2902431 +0.4085988 0.1201537 0.2902431 +0.4220313 0.1201537 0.2902431 +0.4348222 0.1201537 0.2902431 +0.4470264 0.1201537 0.2902431 +0.4586928 0.1201537 0.2902431 +0.4698649 0.1201537 0.2902431 +0.4805811 0.1201537 0.2902431 +0.490876 0.1201537 0.2902431 +0.5007803 0.1201537 0.2902431 +0.510322 0.1201537 0.2902431 +0.5195258 0.1201537 0.2902431 +0.5284142 0.1201537 0.2902431 +0.5370079 0.1201537 0.2902431 +0.5453253 0.1201537 0.2902431 +0.5533834 0.1201537 0.2902431 +0.5611974 0.1201537 0.2902431 +0.5687816 0.1201537 0.2902431 +0.092819 0.1409607 0.2902431 +0.1056428 0.1409607 0.2902431 +0.1201537 0.1409607 0.2902431 +0.1409607 0.1409607 0.2902431 +0.1678172 0.1409607 0.2902431 +0.1950164 0.1409607 0.2902431 +0.2210581 0.1409607 0.2902431 +0.245636 0.1409607 0.2902431 +0.2686816 0.1409607 0.2902431 +0.2902431 0.1409607 0.2902431 +0.3104189 0.1409607 0.2902431 +0.3293248 0.1409607 0.2902431 +0.3470774 0.1409607 0.2902431 +0.3637862 0.1409607 0.2902431 +0.3795513 0.1409607 0.2902431 +0.3944623 0.1409607 0.2902431 +0.4085988 0.1409607 0.2902431 +0.4220313 0.1409607 0.2902431 +0.4348222 0.1409607 0.2902431 +0.4470264 0.1409607 0.2902431 +0.4586928 0.1409607 0.2902431 +0.4698649 0.1409607 0.2902431 +0.4805811 0.1409607 0.2902431 +0.490876 0.1409607 0.2902431 +0.5007803 0.1409607 0.2902431 +0.510322 0.1409607 0.2902431 +0.5195258 0.1409607 0.2902431 +0.5284142 0.1409607 0.2902431 +0.5370079 0.1409607 0.2902431 +0.5453253 0.1409607 0.2902431 +0.5533834 0.1409607 0.2902431 +0.5611974 0.1409607 0.2902431 +0.5687816 0.1409607 0.2902431 +0.092819 0.1678172 0.2902431 +0.1056428 0.1678172 0.2902431 +0.1201537 0.1678172 0.2902431 +0.1409607 0.1678172 0.2902431 +0.1678172 0.1678172 0.2902431 +0.1950164 0.1678172 0.2902431 +0.2210581 0.1678172 0.2902431 +0.245636 0.1678172 0.2902431 +0.2686816 0.1678172 0.2902431 +0.2902431 0.1678172 0.2902431 +0.3104189 0.1678172 0.2902431 +0.3293248 0.1678172 0.2902431 +0.3470774 0.1678172 0.2902431 +0.3637862 0.1678172 0.2902431 +0.3795513 0.1678172 0.2902431 +0.3944623 0.1678172 0.2902431 +0.4085988 0.1678172 0.2902431 +0.4220313 0.1678172 0.2902431 +0.4348222 0.1678172 0.2902431 +0.4470264 0.1678172 0.2902431 +0.4586928 0.1678172 0.2902431 +0.4698649 0.1678172 0.2902431 +0.4805811 0.1678172 0.2902431 +0.490876 0.1678172 0.2902431 +0.5007803 0.1678172 0.2902431 +0.510322 0.1678172 0.2902431 +0.5195258 0.1678172 0.2902431 +0.5284142 0.1678172 0.2902431 +0.5370079 0.1678172 0.2902431 +0.5453253 0.1678172 0.2902431 +0.5533834 0.1678172 0.2902431 +0.5611974 0.1678172 0.2902431 +0.5687816 0.1678172 0.2902431 +0.092819 0.1950164 0.2902431 +0.1056428 0.1950164 0.2902431 +0.1201537 0.1950164 0.2902431 +0.1409607 0.1950164 0.2902431 +0.1678172 0.1950164 0.2902431 +0.1950164 0.1950164 0.2902431 +0.2210581 0.1950164 0.2902431 +0.245636 0.1950164 0.2902431 +0.2686816 0.1950164 0.2902431 +0.2902431 0.1950164 0.2902431 +0.3104189 0.1950164 0.2902431 +0.3293248 0.1950164 0.2902431 +0.3470774 0.1950164 0.2902431 +0.3637862 0.1950164 0.2902431 +0.3795513 0.1950164 0.2902431 +0.3944623 0.1950164 0.2902431 +0.4085988 0.1950164 0.2902431 +0.4220313 0.1950164 0.2902431 +0.4348222 0.1950164 0.2902431 +0.4470264 0.1950164 0.2902431 +0.4586928 0.1950164 0.2902431 +0.4698649 0.1950164 0.2902431 +0.4805811 0.1950164 0.2902431 +0.490876 0.1950164 0.2902431 +0.5007803 0.1950164 0.2902431 +0.510322 0.1950164 0.2902431 +0.5195258 0.1950164 0.2902431 +0.5284142 0.1950164 0.2902431 +0.5370079 0.1950164 0.2902431 +0.5453253 0.1950164 0.2902431 +0.5533834 0.1950164 0.2902431 +0.5611974 0.1950164 0.2902431 +0.5687816 0.1950164 0.2902431 +0.092819 0.2210581 0.2902431 +0.1056428 0.2210581 0.2902431 +0.1201537 0.2210581 0.2902431 +0.1409607 0.2210581 0.2902431 +0.1678172 0.2210581 0.2902431 +0.1950164 0.2210581 0.2902431 +0.2210581 0.2210581 0.2902431 +0.245636 0.2210581 0.2902431 +0.2686816 0.2210581 0.2902431 +0.2902431 0.2210581 0.2902431 +0.3104189 0.2210581 0.2902431 +0.3293248 0.2210581 0.2902431 +0.3470774 0.2210581 0.2902431 +0.3637862 0.2210581 0.2902431 +0.3795513 0.2210581 0.2902431 +0.3944623 0.2210581 0.2902431 +0.4085988 0.2210581 0.2902431 +0.4220313 0.2210581 0.2902431 +0.4348222 0.2210581 0.2902431 +0.4470264 0.2210581 0.2902431 +0.4586928 0.2210581 0.2902431 +0.4698649 0.2210581 0.2902431 +0.4805811 0.2210581 0.2902431 +0.490876 0.2210581 0.2902431 +0.5007803 0.2210581 0.2902431 +0.510322 0.2210581 0.2902431 +0.5195258 0.2210581 0.2902431 +0.5284142 0.2210581 0.2902431 +0.5370079 0.2210581 0.2902431 +0.5453253 0.2210581 0.2902431 +0.5533834 0.2210581 0.2902431 +0.5611974 0.2210581 0.2902431 +0.5687816 0.2210581 0.2902431 +0.092819 0.245636 0.2902431 +0.1056428 0.245636 0.2902431 +0.1201537 0.245636 0.2902431 +0.1409607 0.245636 0.2902431 +0.1678172 0.245636 0.2902431 +0.1950164 0.245636 0.2902431 +0.2210581 0.245636 0.2902431 +0.245636 0.245636 0.2902431 +0.2686816 0.245636 0.2902431 +0.2902431 0.245636 0.2902431 +0.3104189 0.245636 0.2902431 +0.3293248 0.245636 0.2902431 +0.3470774 0.245636 0.2902431 +0.3637862 0.245636 0.2902431 +0.3795513 0.245636 0.2902431 +0.3944623 0.245636 0.2902431 +0.4085988 0.245636 0.2902431 +0.4220313 0.245636 0.2902431 +0.4348222 0.245636 0.2902431 +0.4470264 0.245636 0.2902431 +0.4586928 0.245636 0.2902431 +0.4698649 0.245636 0.2902431 +0.4805811 0.245636 0.2902431 +0.490876 0.245636 0.2902431 +0.5007803 0.245636 0.2902431 +0.510322 0.245636 0.2902431 +0.5195258 0.245636 0.2902431 +0.5284142 0.245636 0.2902431 +0.5370079 0.245636 0.2902431 +0.5453253 0.245636 0.2902431 +0.5533834 0.245636 0.2902431 +0.5611974 0.245636 0.2902431 +0.5687816 0.245636 0.2902431 +0.092819 0.2686816 0.2902431 +0.1056428 0.2686816 0.2902431 +0.1201537 0.2686816 0.2902431 +0.1409607 0.2686816 0.2902431 +0.1678172 0.2686816 0.2902431 +0.1950164 0.2686816 0.2902431 +0.2210581 0.2686816 0.2902431 +0.245636 0.2686816 0.2902431 +0.2686816 0.2686816 0.2902431 +0.2902431 0.2686816 0.2902431 +0.3104189 0.2686816 0.2902431 +0.3293248 0.2686816 0.2902431 +0.3470774 0.2686816 0.2902431 +0.3637862 0.2686816 0.2902431 +0.3795513 0.2686816 0.2902431 +0.3944623 0.2686816 0.2902431 +0.4085988 0.2686816 0.2902431 +0.4220313 0.2686816 0.2902431 +0.4348222 0.2686816 0.2902431 +0.4470264 0.2686816 0.2902431 +0.4586928 0.2686816 0.2902431 +0.4698649 0.2686816 0.2902431 +0.4805811 0.2686816 0.2902431 +0.490876 0.2686816 0.2902431 +0.5007803 0.2686816 0.2902431 +0.510322 0.2686816 0.2902431 +0.5195258 0.2686816 0.2902431 +0.5284142 0.2686816 0.2902431 +0.5370079 0.2686816 0.2902431 +0.5453253 0.2686816 0.2902431 +0.5533834 0.2686816 0.2902431 +0.5611974 0.2686816 0.2902431 +0.5687816 0.2686816 0.2902431 +0.092819 0.2902431 0.2902431 +0.1056428 0.2902431 0.2902431 +0.1201537 0.2902431 0.2902431 +0.1409607 0.2902431 0.2902431 +0.1678172 0.2902431 0.2902431 +0.1950164 0.2902431 0.2902431 +0.2210581 0.2902431 0.2902431 +0.245636 0.2902431 0.2902431 +0.2686816 0.2902431 0.2902431 +0.2902431 0.2902431 0.2902431 +0.3104189 0.2902431 0.2902431 +0.3293248 0.2902431 0.2902431 +0.3470774 0.2902431 0.2902431 +0.3637862 0.2902431 0.2902431 +0.3795513 0.2902431 0.2902431 +0.3944623 0.2902431 0.2902431 +0.4085988 0.2902431 0.2902431 +0.4220313 0.2902431 0.2902431 +0.4348222 0.2902431 0.2902431 +0.4470264 0.2902431 0.2902431 +0.4586928 0.2902431 0.2902431 +0.4698649 0.2902431 0.2902431 +0.4805811 0.2902431 0.2902431 +0.490876 0.2902431 0.2902431 +0.5007803 0.2902431 0.2902431 +0.510322 0.2902431 0.2902431 +0.5195258 0.2902431 0.2902431 +0.5284142 0.2902431 0.2902431 +0.5370079 0.2902431 0.2902431 +0.5453253 0.2902431 0.2902431 +0.5533834 0.2902431 0.2902431 +0.5611974 0.2902431 0.2902431 +0.5687816 0.2902431 0.2902431 +0.092819 0.3104189 0.2902431 +0.1056428 0.3104189 0.2902431 +0.1201537 0.3104189 0.2902431 +0.1409607 0.3104189 0.2902431 +0.1678172 0.3104189 0.2902431 +0.1950164 0.3104189 0.2902431 +0.2210581 0.3104189 0.2902431 +0.245636 0.3104189 0.2902431 +0.2686816 0.3104189 0.2902431 +0.2902431 0.3104189 0.2902431 +0.3104189 0.3104189 0.2902431 +0.3293248 0.3104189 0.2902431 +0.3470774 0.3104189 0.2902431 +0.3637862 0.3104189 0.2902431 +0.3795513 0.3104189 0.2902431 +0.3944623 0.3104189 0.2902431 +0.4085988 0.3104189 0.2902431 +0.4220313 0.3104189 0.2902431 +0.4348222 0.3104189 0.2902431 +0.4470264 0.3104189 0.2902431 +0.4586928 0.3104189 0.2902431 +0.4698649 0.3104189 0.2902431 +0.4805811 0.3104189 0.2902431 +0.490876 0.3104189 0.2902431 +0.5007803 0.3104189 0.2902431 +0.510322 0.3104189 0.2902431 +0.5195258 0.3104189 0.2902431 +0.5284142 0.3104189 0.2902431 +0.5370079 0.3104189 0.2902431 +0.5453253 0.3104189 0.2902431 +0.5533834 0.3104189 0.2902431 +0.5611974 0.3104189 0.2902431 +0.5687816 0.3104189 0.2902431 +0.092819 0.3293248 0.2902431 +0.1056428 0.3293248 0.2902431 +0.1201537 0.3293248 0.2902431 +0.1409607 0.3293248 0.2902431 +0.1678172 0.3293248 0.2902431 +0.1950164 0.3293248 0.2902431 +0.2210581 0.3293248 0.2902431 +0.245636 0.3293248 0.2902431 +0.2686816 0.3293248 0.2902431 +0.2902431 0.3293248 0.2902431 +0.3104189 0.3293248 0.2902431 +0.3293248 0.3293248 0.2902431 +0.3470774 0.3293248 0.2902431 +0.3637862 0.3293248 0.2902431 +0.3795513 0.3293248 0.2902431 +0.3944623 0.3293248 0.2902431 +0.4085988 0.3293248 0.2902431 +0.4220313 0.3293248 0.2902431 +0.4348222 0.3293248 0.2902431 +0.4470264 0.3293248 0.2902431 +0.4586928 0.3293248 0.2902431 +0.4698649 0.3293248 0.2902431 +0.4805811 0.3293248 0.2902431 +0.490876 0.3293248 0.2902431 +0.5007803 0.3293248 0.2902431 +0.510322 0.3293248 0.2902431 +0.5195258 0.3293248 0.2902431 +0.5284142 0.3293248 0.2902431 +0.5370079 0.3293248 0.2902431 +0.5453253 0.3293248 0.2902431 +0.5533834 0.3293248 0.2902431 +0.5611974 0.3293248 0.2902431 +0.5687816 0.3293248 0.2902431 +0.092819 0.3470774 0.2902431 +0.1056428 0.3470774 0.2902431 +0.1201537 0.3470774 0.2902431 +0.1409607 0.3470774 0.2902431 +0.1678172 0.3470774 0.2902431 +0.1950164 0.3470774 0.2902431 +0.2210581 0.3470774 0.2902431 +0.245636 0.3470774 0.2902431 +0.2686816 0.3470774 0.2902431 +0.2902431 0.3470774 0.2902431 +0.3104189 0.3470774 0.2902431 +0.3293248 0.3470774 0.2902431 +0.3470774 0.3470774 0.2902431 +0.3637862 0.3470774 0.2902431 +0.3795513 0.3470774 0.2902431 +0.3944623 0.3470774 0.2902431 +0.4085988 0.3470774 0.2902431 +0.4220313 0.3470774 0.2902431 +0.4348222 0.3470774 0.2902431 +0.4470264 0.3470774 0.2902431 +0.4586928 0.3470774 0.2902431 +0.4698649 0.3470774 0.2902431 +0.4805811 0.3470774 0.2902431 +0.490876 0.3470774 0.2902431 +0.5007803 0.3470774 0.2902431 +0.510322 0.3470774 0.2902431 +0.5195258 0.3470774 0.2902431 +0.5284142 0.3470774 0.2902431 +0.5370079 0.3470774 0.2902431 +0.5453253 0.3470774 0.2902431 +0.5533834 0.3470774 0.2902431 +0.5611974 0.3470774 0.2902431 +0.5687816 0.3470774 0.2902431 +0.092819 0.3637862 0.2902431 +0.1056428 0.3637862 0.2902431 +0.1201537 0.3637862 0.2902431 +0.1409607 0.3637862 0.2902431 +0.1678172 0.3637862 0.2902431 +0.1950164 0.3637862 0.2902431 +0.2210581 0.3637862 0.2902431 +0.245636 0.3637862 0.2902431 +0.2686816 0.3637862 0.2902431 +0.2902431 0.3637862 0.2902431 +0.3104189 0.3637862 0.2902431 +0.3293248 0.3637862 0.2902431 +0.3470774 0.3637862 0.2902431 +0.3637862 0.3637862 0.2902431 +0.3795513 0.3637862 0.2902431 +0.3944623 0.3637862 0.2902431 +0.4085988 0.3637862 0.2902431 +0.4220313 0.3637862 0.2902431 +0.4348222 0.3637862 0.2902431 +0.4470264 0.3637862 0.2902431 +0.4586928 0.3637862 0.2902431 +0.4698649 0.3637862 0.2902431 +0.4805811 0.3637862 0.2902431 +0.490876 0.3637862 0.2902431 +0.5007803 0.3637862 0.2902431 +0.510322 0.3637862 0.2902431 +0.5195258 0.3637862 0.2902431 +0.5284142 0.3637862 0.2902431 +0.5370079 0.3637862 0.2902431 +0.5453253 0.3637862 0.2902431 +0.5533834 0.3637862 0.2902431 +0.5611974 0.3637862 0.2902431 +0.5687816 0.3637862 0.2902431 +0.092819 0.3795513 0.2902431 +0.1056428 0.3795513 0.2902431 +0.1201537 0.3795513 0.2902431 +0.1409607 0.3795513 0.2902431 +0.1678172 0.3795513 0.2902431 +0.1950164 0.3795513 0.2902431 +0.2210581 0.3795513 0.2902431 +0.245636 0.3795513 0.2902431 +0.2686816 0.3795513 0.2902431 +0.2902431 0.3795513 0.2902431 +0.3104189 0.3795513 0.2902431 +0.3293248 0.3795513 0.2902431 +0.3470774 0.3795513 0.2902431 +0.3637862 0.3795513 0.2902431 +0.3795513 0.3795513 0.2902431 +0.3944623 0.3795513 0.2902431 +0.4085988 0.3795513 0.2902431 +0.4220313 0.3795513 0.2902431 +0.4348222 0.3795513 0.2902431 +0.4470264 0.3795513 0.2902431 +0.4586928 0.3795513 0.2902431 +0.4698649 0.3795513 0.2902431 +0.4805811 0.3795513 0.2902431 +0.490876 0.3795513 0.2902431 +0.5007803 0.3795513 0.2902431 +0.510322 0.3795513 0.2902431 +0.5195258 0.3795513 0.2902431 +0.5284142 0.3795513 0.2902431 +0.5370079 0.3795513 0.2902431 +0.5453253 0.3795513 0.2902431 +0.5533834 0.3795513 0.2902431 +0.5611974 0.3795513 0.2902431 +0.5687816 0.3795513 0.2902431 +0.092819 0.3944623 0.2902431 +0.1056428 0.3944623 0.2902431 +0.1201537 0.3944623 0.2902431 +0.1409607 0.3944623 0.2902431 +0.1678172 0.3944623 0.2902431 +0.1950164 0.3944623 0.2902431 +0.2210581 0.3944623 0.2902431 +0.245636 0.3944623 0.2902431 +0.2686816 0.3944623 0.2902431 +0.2902431 0.3944623 0.2902431 +0.3104189 0.3944623 0.2902431 +0.3293248 0.3944623 0.2902431 +0.3470774 0.3944623 0.2902431 +0.3637862 0.3944623 0.2902431 +0.3795513 0.3944623 0.2902431 +0.3944623 0.3944623 0.2902431 +0.4085988 0.3944623 0.2902431 +0.4220313 0.3944623 0.2902431 +0.4348222 0.3944623 0.2902431 +0.4470264 0.3944623 0.2902431 +0.4586928 0.3944623 0.2902431 +0.4698649 0.3944623 0.2902431 +0.4805811 0.3944623 0.2902431 +0.490876 0.3944623 0.2902431 +0.5007803 0.3944623 0.2902431 +0.510322 0.3944623 0.2902431 +0.5195258 0.3944623 0.2902431 +0.5284142 0.3944623 0.2902431 +0.5370079 0.3944623 0.2902431 +0.5453253 0.3944623 0.2902431 +0.5533834 0.3944623 0.2902431 +0.5611974 0.3944623 0.2902431 +0.5687816 0.3944623 0.2902431 +0.092819 0.4085988 0.2902431 +0.1056428 0.4085988 0.2902431 +0.1201537 0.4085988 0.2902431 +0.1409607 0.4085988 0.2902431 +0.1678172 0.4085988 0.2902431 +0.1950164 0.4085988 0.2902431 +0.2210581 0.4085988 0.2902431 +0.245636 0.4085988 0.2902431 +0.2686816 0.4085988 0.2902431 +0.2902431 0.4085988 0.2902431 +0.3104189 0.4085988 0.2902431 +0.3293248 0.4085988 0.2902431 +0.3470774 0.4085988 0.2902431 +0.3637862 0.4085988 0.2902431 +0.3795513 0.4085988 0.2902431 +0.3944623 0.4085988 0.2902431 +0.4085988 0.4085988 0.2902431 +0.4220313 0.4085988 0.2902431 +0.4348222 0.4085988 0.2902431 +0.4470264 0.4085988 0.2902431 +0.4586928 0.4085988 0.2902431 +0.4698649 0.4085988 0.2902431 +0.4805811 0.4085988 0.2902431 +0.490876 0.4085988 0.2902431 +0.5007803 0.4085988 0.2902431 +0.510322 0.4085988 0.2902431 +0.5195258 0.4085988 0.2902431 +0.5284142 0.4085988 0.2902431 +0.5370079 0.4085988 0.2902431 +0.5453253 0.4085988 0.2902431 +0.5533834 0.4085988 0.2902431 +0.5611974 0.4085988 0.2902431 +0.5687816 0.4085988 0.2902431 +0.092819 0.4220313 0.2902431 +0.1056428 0.4220313 0.2902431 +0.1201537 0.4220313 0.2902431 +0.1409607 0.4220313 0.2902431 +0.1678172 0.4220313 0.2902431 +0.1950164 0.4220313 0.2902431 +0.2210581 0.4220313 0.2902431 +0.245636 0.4220313 0.2902431 +0.2686816 0.4220313 0.2902431 +0.2902431 0.4220313 0.2902431 +0.3104189 0.4220313 0.2902431 +0.3293248 0.4220313 0.2902431 +0.3470774 0.4220313 0.2902431 +0.3637862 0.4220313 0.2902431 +0.3795513 0.4220313 0.2902431 +0.3944623 0.4220313 0.2902431 +0.4085988 0.4220313 0.2902431 +0.4220313 0.4220313 0.2902431 +0.4348222 0.4220313 0.2902431 +0.4470264 0.4220313 0.2902431 +0.4586928 0.4220313 0.2902431 +0.4698649 0.4220313 0.2902431 +0.4805811 0.4220313 0.2902431 +0.490876 0.4220313 0.2902431 +0.5007803 0.4220313 0.2902431 +0.510322 0.4220313 0.2902431 +0.5195258 0.4220313 0.2902431 +0.5284142 0.4220313 0.2902431 +0.5370079 0.4220313 0.2902431 +0.5453253 0.4220313 0.2902431 +0.5533834 0.4220313 0.2902431 +0.5611974 0.4220313 0.2902431 +0.5687816 0.4220313 0.2902431 +0.092819 0.4348222 0.2902431 +0.1056428 0.4348222 0.2902431 +0.1201537 0.4348222 0.2902431 +0.1409607 0.4348222 0.2902431 +0.1678172 0.4348222 0.2902431 +0.1950164 0.4348222 0.2902431 +0.2210581 0.4348222 0.2902431 +0.245636 0.4348222 0.2902431 +0.2686816 0.4348222 0.2902431 +0.2902431 0.4348222 0.2902431 +0.3104189 0.4348222 0.2902431 +0.3293248 0.4348222 0.2902431 +0.3470774 0.4348222 0.2902431 +0.3637862 0.4348222 0.2902431 +0.3795513 0.4348222 0.2902431 +0.3944623 0.4348222 0.2902431 +0.4085988 0.4348222 0.2902431 +0.4220313 0.4348222 0.2902431 +0.4348222 0.4348222 0.2902431 +0.4470264 0.4348222 0.2902431 +0.4586928 0.4348222 0.2902431 +0.4698649 0.4348222 0.2902431 +0.4805811 0.4348222 0.2902431 +0.490876 0.4348222 0.2902431 +0.5007803 0.4348222 0.2902431 +0.510322 0.4348222 0.2902431 +0.5195258 0.4348222 0.2902431 +0.5284142 0.4348222 0.2902431 +0.5370079 0.4348222 0.2902431 +0.5453253 0.4348222 0.2902431 +0.5533834 0.4348222 0.2902431 +0.5611974 0.4348222 0.2902431 +0.5687816 0.4348222 0.2902431 +0.092819 0.4470264 0.2902431 +0.1056428 0.4470264 0.2902431 +0.1201537 0.4470264 0.2902431 +0.1409607 0.4470264 0.2902431 +0.1678172 0.4470264 0.2902431 +0.1950164 0.4470264 0.2902431 +0.2210581 0.4470264 0.2902431 +0.245636 0.4470264 0.2902431 +0.2686816 0.4470264 0.2902431 +0.2902431 0.4470264 0.2902431 +0.3104189 0.4470264 0.2902431 +0.3293248 0.4470264 0.2902431 +0.3470774 0.4470264 0.2902431 +0.3637862 0.4470264 0.2902431 +0.3795513 0.4470264 0.2902431 +0.3944623 0.4470264 0.2902431 +0.4085988 0.4470264 0.2902431 +0.4220313 0.4470264 0.2902431 +0.4348222 0.4470264 0.2902431 +0.4470264 0.4470264 0.2902431 +0.4586928 0.4470264 0.2902431 +0.4698649 0.4470264 0.2902431 +0.4805811 0.4470264 0.2902431 +0.490876 0.4470264 0.2902431 +0.5007803 0.4470264 0.2902431 +0.510322 0.4470264 0.2902431 +0.5195258 0.4470264 0.2902431 +0.5284142 0.4470264 0.2902431 +0.5370079 0.4470264 0.2902431 +0.5453253 0.4470264 0.2902431 +0.5533834 0.4470264 0.2902431 +0.5611974 0.4470264 0.2902431 +0.5687816 0.4470264 0.2902431 +0.092819 0.4586928 0.2902431 +0.1056428 0.4586928 0.2902431 +0.1201537 0.4586928 0.2902431 +0.1409607 0.4586928 0.2902431 +0.1678172 0.4586928 0.2902431 +0.1950164 0.4586928 0.2902431 +0.2210581 0.4586928 0.2902431 +0.245636 0.4586928 0.2902431 +0.2686816 0.4586928 0.2902431 +0.2902431 0.4586928 0.2902431 +0.3104189 0.4586928 0.2902431 +0.3293248 0.4586928 0.2902431 +0.3470774 0.4586928 0.2902431 +0.3637862 0.4586928 0.2902431 +0.3795513 0.4586928 0.2902431 +0.3944623 0.4586928 0.2902431 +0.4085988 0.4586928 0.2902431 +0.4220313 0.4586928 0.2902431 +0.4348222 0.4586928 0.2902431 +0.4470264 0.4586928 0.2902431 +0.4586928 0.4586928 0.2902431 +0.4698649 0.4586928 0.2902431 +0.4805811 0.4586928 0.2902431 +0.490876 0.4586928 0.2902431 +0.5007803 0.4586928 0.2902431 +0.510322 0.4586928 0.2902431 +0.5195258 0.4586928 0.2902431 +0.5284142 0.4586928 0.2902431 +0.5370079 0.4586928 0.2902431 +0.5453253 0.4586928 0.2902431 +0.5533834 0.4586928 0.2902431 +0.5611974 0.4586928 0.2902431 +0.5687816 0.4586928 0.2902431 +0.092819 0.4698649 0.2902431 +0.1056428 0.4698649 0.2902431 +0.1201537 0.4698649 0.2902431 +0.1409607 0.4698649 0.2902431 +0.1678172 0.4698649 0.2902431 +0.1950164 0.4698649 0.2902431 +0.2210581 0.4698649 0.2902431 +0.245636 0.4698649 0.2902431 +0.2686816 0.4698649 0.2902431 +0.2902431 0.4698649 0.2902431 +0.3104189 0.4698649 0.2902431 +0.3293248 0.4698649 0.2902431 +0.3470774 0.4698649 0.2902431 +0.3637862 0.4698649 0.2902431 +0.3795513 0.4698649 0.2902431 +0.3944623 0.4698649 0.2902431 +0.4085988 0.4698649 0.2902431 +0.4220313 0.4698649 0.2902431 +0.4348222 0.4698649 0.2902431 +0.4470264 0.4698649 0.2902431 +0.4586928 0.4698649 0.2902431 +0.4698649 0.4698649 0.2902431 +0.4805811 0.4698649 0.2902431 +0.490876 0.4698649 0.2902431 +0.5007803 0.4698649 0.2902431 +0.510322 0.4698649 0.2902431 +0.5195258 0.4698649 0.2902431 +0.5284142 0.4698649 0.2902431 +0.5370079 0.4698649 0.2902431 +0.5453253 0.4698649 0.2902431 +0.5533834 0.4698649 0.2902431 +0.5611974 0.4698649 0.2902431 +0.5687816 0.4698649 0.2902431 +0.092819 0.4805811 0.2902431 +0.1056428 0.4805811 0.2902431 +0.1201537 0.4805811 0.2902431 +0.1409607 0.4805811 0.2902431 +0.1678172 0.4805811 0.2902431 +0.1950164 0.4805811 0.2902431 +0.2210581 0.4805811 0.2902431 +0.245636 0.4805811 0.2902431 +0.2686816 0.4805811 0.2902431 +0.2902431 0.4805811 0.2902431 +0.3104189 0.4805811 0.2902431 +0.3293248 0.4805811 0.2902431 +0.3470774 0.4805811 0.2902431 +0.3637862 0.4805811 0.2902431 +0.3795513 0.4805811 0.2902431 +0.3944623 0.4805811 0.2902431 +0.4085988 0.4805811 0.2902431 +0.4220313 0.4805811 0.2902431 +0.4348222 0.4805811 0.2902431 +0.4470264 0.4805811 0.2902431 +0.4586928 0.4805811 0.2902431 +0.4698649 0.4805811 0.2902431 +0.4805811 0.4805811 0.2902431 +0.490876 0.4805811 0.2902431 +0.5007803 0.4805811 0.2902431 +0.510322 0.4805811 0.2902431 +0.5195258 0.4805811 0.2902431 +0.5284142 0.4805811 0.2902431 +0.5370079 0.4805811 0.2902431 +0.5453253 0.4805811 0.2902431 +0.5533834 0.4805811 0.2902431 +0.5611974 0.4805811 0.2902431 +0.5687816 0.4805811 0.2902431 +0.092819 0.490876 0.2902431 +0.1056428 0.490876 0.2902431 +0.1201537 0.490876 0.2902431 +0.1409607 0.490876 0.2902431 +0.1678172 0.490876 0.2902431 +0.1950164 0.490876 0.2902431 +0.2210581 0.490876 0.2902431 +0.245636 0.490876 0.2902431 +0.2686816 0.490876 0.2902431 +0.2902431 0.490876 0.2902431 +0.3104189 0.490876 0.2902431 +0.3293248 0.490876 0.2902431 +0.3470774 0.490876 0.2902431 +0.3637862 0.490876 0.2902431 +0.3795513 0.490876 0.2902431 +0.3944623 0.490876 0.2902431 +0.4085988 0.490876 0.2902431 +0.4220313 0.490876 0.2902431 +0.4348222 0.490876 0.2902431 +0.4470264 0.490876 0.2902431 +0.4586928 0.490876 0.2902431 +0.4698649 0.490876 0.2902431 +0.4805811 0.490876 0.2902431 +0.490876 0.490876 0.2902431 +0.5007803 0.490876 0.2902431 +0.510322 0.490876 0.2902431 +0.5195258 0.490876 0.2902431 +0.5284142 0.490876 0.2902431 +0.5370079 0.490876 0.2902431 +0.5453253 0.490876 0.2902431 +0.5533834 0.490876 0.2902431 +0.5611974 0.490876 0.2902431 +0.5687816 0.490876 0.2902431 +0.092819 0.5007803 0.2902431 +0.1056428 0.5007803 0.2902431 +0.1201537 0.5007803 0.2902431 +0.1409607 0.5007803 0.2902431 +0.1678172 0.5007803 0.2902431 +0.1950164 0.5007803 0.2902431 +0.2210581 0.5007803 0.2902431 +0.245636 0.5007803 0.2902431 +0.2686816 0.5007803 0.2902431 +0.2902431 0.5007803 0.2902431 +0.3104189 0.5007803 0.2902431 +0.3293248 0.5007803 0.2902431 +0.3470774 0.5007803 0.2902431 +0.3637862 0.5007803 0.2902431 +0.3795513 0.5007803 0.2902431 +0.3944623 0.5007803 0.2902431 +0.4085988 0.5007803 0.2902431 +0.4220313 0.5007803 0.2902431 +0.4348222 0.5007803 0.2902431 +0.4470264 0.5007803 0.2902431 +0.4586928 0.5007803 0.2902431 +0.4698649 0.5007803 0.2902431 +0.4805811 0.5007803 0.2902431 +0.490876 0.5007803 0.2902431 +0.5007803 0.5007803 0.2902431 +0.510322 0.5007803 0.2902431 +0.5195258 0.5007803 0.2902431 +0.5284142 0.5007803 0.2902431 +0.5370079 0.5007803 0.2902431 +0.5453253 0.5007803 0.2902431 +0.5533834 0.5007803 0.2902431 +0.5611974 0.5007803 0.2902431 +0.5687816 0.5007803 0.2902431 +0.092819 0.510322 0.2902431 +0.1056428 0.510322 0.2902431 +0.1201537 0.510322 0.2902431 +0.1409607 0.510322 0.2902431 +0.1678172 0.510322 0.2902431 +0.1950164 0.510322 0.2902431 +0.2210581 0.510322 0.2902431 +0.245636 0.510322 0.2902431 +0.2686816 0.510322 0.2902431 +0.2902431 0.510322 0.2902431 +0.3104189 0.510322 0.2902431 +0.3293248 0.510322 0.2902431 +0.3470774 0.510322 0.2902431 +0.3637862 0.510322 0.2902431 +0.3795513 0.510322 0.2902431 +0.3944623 0.510322 0.2902431 +0.4085988 0.510322 0.2902431 +0.4220313 0.510322 0.2902431 +0.4348222 0.510322 0.2902431 +0.4470264 0.510322 0.2902431 +0.4586928 0.510322 0.2902431 +0.4698649 0.510322 0.2902431 +0.4805811 0.510322 0.2902431 +0.490876 0.510322 0.2902431 +0.5007803 0.510322 0.2902431 +0.510322 0.510322 0.2902431 +0.5195258 0.510322 0.2902431 +0.5284142 0.510322 0.2902431 +0.5370079 0.510322 0.2902431 +0.5453253 0.510322 0.2902431 +0.5533834 0.510322 0.2902431 +0.5611974 0.510322 0.2902431 +0.5687816 0.510322 0.2902431 +0.092819 0.5195258 0.2902431 +0.1056428 0.5195258 0.2902431 +0.1201537 0.5195258 0.2902431 +0.1409607 0.5195258 0.2902431 +0.1678172 0.5195258 0.2902431 +0.1950164 0.5195258 0.2902431 +0.2210581 0.5195258 0.2902431 +0.245636 0.5195258 0.2902431 +0.2686816 0.5195258 0.2902431 +0.2902431 0.5195258 0.2902431 +0.3104189 0.5195258 0.2902431 +0.3293248 0.5195258 0.2902431 +0.3470774 0.5195258 0.2902431 +0.3637862 0.5195258 0.2902431 +0.3795513 0.5195258 0.2902431 +0.3944623 0.5195258 0.2902431 +0.4085988 0.5195258 0.2902431 +0.4220313 0.5195258 0.2902431 +0.4348222 0.5195258 0.2902431 +0.4470264 0.5195258 0.2902431 +0.4586928 0.5195258 0.2902431 +0.4698649 0.5195258 0.2902431 +0.4805811 0.5195258 0.2902431 +0.490876 0.5195258 0.2902431 +0.5007803 0.5195258 0.2902431 +0.510322 0.5195258 0.2902431 +0.5195258 0.5195258 0.2902431 +0.5284142 0.5195258 0.2902431 +0.5370079 0.5195258 0.2902431 +0.5453253 0.5195258 0.2902431 +0.5533834 0.5195258 0.2902431 +0.5611974 0.5195258 0.2902431 +0.5687816 0.5195258 0.2902431 +0.092819 0.5284142 0.2902431 +0.1056428 0.5284142 0.2902431 +0.1201537 0.5284142 0.2902431 +0.1409607 0.5284142 0.2902431 +0.1678172 0.5284142 0.2902431 +0.1950164 0.5284142 0.2902431 +0.2210581 0.5284142 0.2902431 +0.245636 0.5284142 0.2902431 +0.2686816 0.5284142 0.2902431 +0.2902431 0.5284142 0.2902431 +0.3104189 0.5284142 0.2902431 +0.3293248 0.5284142 0.2902431 +0.3470774 0.5284142 0.2902431 +0.3637862 0.5284142 0.2902431 +0.3795513 0.5284142 0.2902431 +0.3944623 0.5284142 0.2902431 +0.4085988 0.5284142 0.2902431 +0.4220313 0.5284142 0.2902431 +0.4348222 0.5284142 0.2902431 +0.4470264 0.5284142 0.2902431 +0.4586928 0.5284142 0.2902431 +0.4698649 0.5284142 0.2902431 +0.4805811 0.5284142 0.2902431 +0.490876 0.5284142 0.2902431 +0.5007803 0.5284142 0.2902431 +0.510322 0.5284142 0.2902431 +0.5195258 0.5284142 0.2902431 +0.5284142 0.5284142 0.2902431 +0.5370079 0.5284142 0.2902431 +0.5453253 0.5284142 0.2902431 +0.5533834 0.5284142 0.2902431 +0.5611974 0.5284142 0.2902431 +0.5687816 0.5284142 0.2902431 +0.092819 0.5370079 0.2902431 +0.1056428 0.5370079 0.2902431 +0.1201537 0.5370079 0.2902431 +0.1409607 0.5370079 0.2902431 +0.1678172 0.5370079 0.2902431 +0.1950164 0.5370079 0.2902431 +0.2210581 0.5370079 0.2902431 +0.245636 0.5370079 0.2902431 +0.2686816 0.5370079 0.2902431 +0.2902431 0.5370079 0.2902431 +0.3104189 0.5370079 0.2902431 +0.3293248 0.5370079 0.2902431 +0.3470774 0.5370079 0.2902431 +0.3637862 0.5370079 0.2902431 +0.3795513 0.5370079 0.2902431 +0.3944623 0.5370079 0.2902431 +0.4085988 0.5370079 0.2902431 +0.4220313 0.5370079 0.2902431 +0.4348222 0.5370079 0.2902431 +0.4470264 0.5370079 0.2902431 +0.4586928 0.5370079 0.2902431 +0.4698649 0.5370079 0.2902431 +0.4805811 0.5370079 0.2902431 +0.490876 0.5370079 0.2902431 +0.5007803 0.5370079 0.2902431 +0.510322 0.5370079 0.2902431 +0.5195258 0.5370079 0.2902431 +0.5284142 0.5370079 0.2902431 +0.5370079 0.5370079 0.2902431 +0.5453253 0.5370079 0.2902431 +0.5533834 0.5370079 0.2902431 +0.5611974 0.5370079 0.2902431 +0.5687816 0.5370079 0.2902431 +0.092819 0.5453253 0.2902431 +0.1056428 0.5453253 0.2902431 +0.1201537 0.5453253 0.2902431 +0.1409607 0.5453253 0.2902431 +0.1678172 0.5453253 0.2902431 +0.1950164 0.5453253 0.2902431 +0.2210581 0.5453253 0.2902431 +0.245636 0.5453253 0.2902431 +0.2686816 0.5453253 0.2902431 +0.2902431 0.5453253 0.2902431 +0.3104189 0.5453253 0.2902431 +0.3293248 0.5453253 0.2902431 +0.3470774 0.5453253 0.2902431 +0.3637862 0.5453253 0.2902431 +0.3795513 0.5453253 0.2902431 +0.3944623 0.5453253 0.2902431 +0.4085988 0.5453253 0.2902431 +0.4220313 0.5453253 0.2902431 +0.4348222 0.5453253 0.2902431 +0.4470264 0.5453253 0.2902431 +0.4586928 0.5453253 0.2902431 +0.4698649 0.5453253 0.2902431 +0.4805811 0.5453253 0.2902431 +0.490876 0.5453253 0.2902431 +0.5007803 0.5453253 0.2902431 +0.510322 0.5453253 0.2902431 +0.5195258 0.5453253 0.2902431 +0.5284142 0.5453253 0.2902431 +0.5370079 0.5453253 0.2902431 +0.5453253 0.5453253 0.2902431 +0.5533834 0.5453253 0.2902431 +0.5611974 0.5453253 0.2902431 +0.5687816 0.5453253 0.2902431 +0.092819 0.5533834 0.2902431 +0.1056428 0.5533834 0.2902431 +0.1201537 0.5533834 0.2902431 +0.1409607 0.5533834 0.2902431 +0.1678172 0.5533834 0.2902431 +0.1950164 0.5533834 0.2902431 +0.2210581 0.5533834 0.2902431 +0.245636 0.5533834 0.2902431 +0.2686816 0.5533834 0.2902431 +0.2902431 0.5533834 0.2902431 +0.3104189 0.5533834 0.2902431 +0.3293248 0.5533834 0.2902431 +0.3470774 0.5533834 0.2902431 +0.3637862 0.5533834 0.2902431 +0.3795513 0.5533834 0.2902431 +0.3944623 0.5533834 0.2902431 +0.4085988 0.5533834 0.2902431 +0.4220313 0.5533834 0.2902431 +0.4348222 0.5533834 0.2902431 +0.4470264 0.5533834 0.2902431 +0.4586928 0.5533834 0.2902431 +0.4698649 0.5533834 0.2902431 +0.4805811 0.5533834 0.2902431 +0.490876 0.5533834 0.2902431 +0.5007803 0.5533834 0.2902431 +0.510322 0.5533834 0.2902431 +0.5195258 0.5533834 0.2902431 +0.5284142 0.5533834 0.2902431 +0.5370079 0.5533834 0.2902431 +0.5453253 0.5533834 0.2902431 +0.5533834 0.5533834 0.2902431 +0.5611974 0.5533834 0.2902431 +0.5687816 0.5533834 0.2902431 +0.092819 0.5611974 0.2902431 +0.1056428 0.5611974 0.2902431 +0.1201537 0.5611974 0.2902431 +0.1409607 0.5611974 0.2902431 +0.1678172 0.5611974 0.2902431 +0.1950164 0.5611974 0.2902431 +0.2210581 0.5611974 0.2902431 +0.245636 0.5611974 0.2902431 +0.2686816 0.5611974 0.2902431 +0.2902431 0.5611974 0.2902431 +0.3104189 0.5611974 0.2902431 +0.3293248 0.5611974 0.2902431 +0.3470774 0.5611974 0.2902431 +0.3637862 0.5611974 0.2902431 +0.3795513 0.5611974 0.2902431 +0.3944623 0.5611974 0.2902431 +0.4085988 0.5611974 0.2902431 +0.4220313 0.5611974 0.2902431 +0.4348222 0.5611974 0.2902431 +0.4470264 0.5611974 0.2902431 +0.4586928 0.5611974 0.2902431 +0.4698649 0.5611974 0.2902431 +0.4805811 0.5611974 0.2902431 +0.490876 0.5611974 0.2902431 +0.5007803 0.5611974 0.2902431 +0.510322 0.5611974 0.2902431 +0.5195258 0.5611974 0.2902431 +0.5284142 0.5611974 0.2902431 +0.5370079 0.5611974 0.2902431 +0.5453253 0.5611974 0.2902431 +0.5533834 0.5611974 0.2902431 +0.5611974 0.5611974 0.2902431 +0.5687816 0.5611974 0.2902431 +0.092819 0.5687816 0.2902431 +0.1056428 0.5687816 0.2902431 +0.1201537 0.5687816 0.2902431 +0.1409607 0.5687816 0.2902431 +0.1678172 0.5687816 0.2902431 +0.1950164 0.5687816 0.2902431 +0.2210581 0.5687816 0.2902431 +0.245636 0.5687816 0.2902431 +0.2686816 0.5687816 0.2902431 +0.2902431 0.5687816 0.2902431 +0.3104189 0.5687816 0.2902431 +0.3293248 0.5687816 0.2902431 +0.3470774 0.5687816 0.2902431 +0.3637862 0.5687816 0.2902431 +0.3795513 0.5687816 0.2902431 +0.3944623 0.5687816 0.2902431 +0.4085988 0.5687816 0.2902431 +0.4220313 0.5687816 0.2902431 +0.4348222 0.5687816 0.2902431 +0.4470264 0.5687816 0.2902431 +0.4586928 0.5687816 0.2902431 +0.4698649 0.5687816 0.2902431 +0.4805811 0.5687816 0.2902431 +0.490876 0.5687816 0.2902431 +0.5007803 0.5687816 0.2902431 +0.510322 0.5687816 0.2902431 +0.5195258 0.5687816 0.2902431 +0.5284142 0.5687816 0.2902431 +0.5370079 0.5687816 0.2902431 +0.5453253 0.5687816 0.2902431 +0.5533834 0.5687816 0.2902431 +0.5611974 0.5687816 0.2902431 +0.5687816 0.5687816 0.2902431 +0.092819 0.092819 0.3104189 +0.1056428 0.092819 0.3104189 +0.1201537 0.092819 0.3104189 +0.1409607 0.092819 0.3104189 +0.1678172 0.092819 0.3104189 +0.1950164 0.092819 0.3104189 +0.2210581 0.092819 0.3104189 +0.245636 0.092819 0.3104189 +0.2686816 0.092819 0.3104189 +0.2902431 0.092819 0.3104189 +0.3104189 0.092819 0.3104189 +0.3293248 0.092819 0.3104189 +0.3470774 0.092819 0.3104189 +0.3637862 0.092819 0.3104189 +0.3795513 0.092819 0.3104189 +0.3944623 0.092819 0.3104189 +0.4085988 0.092819 0.3104189 +0.4220313 0.092819 0.3104189 +0.4348222 0.092819 0.3104189 +0.4470264 0.092819 0.3104189 +0.4586928 0.092819 0.3104189 +0.4698649 0.092819 0.3104189 +0.4805811 0.092819 0.3104189 +0.490876 0.092819 0.3104189 +0.5007803 0.092819 0.3104189 +0.510322 0.092819 0.3104189 +0.5195258 0.092819 0.3104189 +0.5284142 0.092819 0.3104189 +0.5370079 0.092819 0.3104189 +0.5453253 0.092819 0.3104189 +0.5533834 0.092819 0.3104189 +0.5611974 0.092819 0.3104189 +0.5687816 0.092819 0.3104189 +0.092819 0.1056428 0.3104189 +0.1056428 0.1056428 0.3104189 +0.1201537 0.1056428 0.3104189 +0.1409607 0.1056428 0.3104189 +0.1678172 0.1056428 0.3104189 +0.1950164 0.1056428 0.3104189 +0.2210581 0.1056428 0.3104189 +0.245636 0.1056428 0.3104189 +0.2686816 0.1056428 0.3104189 +0.2902431 0.1056428 0.3104189 +0.3104189 0.1056428 0.3104189 +0.3293248 0.1056428 0.3104189 +0.3470774 0.1056428 0.3104189 +0.3637862 0.1056428 0.3104189 +0.3795513 0.1056428 0.3104189 +0.3944623 0.1056428 0.3104189 +0.4085988 0.1056428 0.3104189 +0.4220313 0.1056428 0.3104189 +0.4348222 0.1056428 0.3104189 +0.4470264 0.1056428 0.3104189 +0.4586928 0.1056428 0.3104189 +0.4698649 0.1056428 0.3104189 +0.4805811 0.1056428 0.3104189 +0.490876 0.1056428 0.3104189 +0.5007803 0.1056428 0.3104189 +0.510322 0.1056428 0.3104189 +0.5195258 0.1056428 0.3104189 +0.5284142 0.1056428 0.3104189 +0.5370079 0.1056428 0.3104189 +0.5453253 0.1056428 0.3104189 +0.5533834 0.1056428 0.3104189 +0.5611974 0.1056428 0.3104189 +0.5687816 0.1056428 0.3104189 +0.092819 0.1201537 0.3104189 +0.1056428 0.1201537 0.3104189 +0.1201537 0.1201537 0.3104189 +0.1409607 0.1201537 0.3104189 +0.1678172 0.1201537 0.3104189 +0.1950164 0.1201537 0.3104189 +0.2210581 0.1201537 0.3104189 +0.245636 0.1201537 0.3104189 +0.2686816 0.1201537 0.3104189 +0.2902431 0.1201537 0.3104189 +0.3104189 0.1201537 0.3104189 +0.3293248 0.1201537 0.3104189 +0.3470774 0.1201537 0.3104189 +0.3637862 0.1201537 0.3104189 +0.3795513 0.1201537 0.3104189 +0.3944623 0.1201537 0.3104189 +0.4085988 0.1201537 0.3104189 +0.4220313 0.1201537 0.3104189 +0.4348222 0.1201537 0.3104189 +0.4470264 0.1201537 0.3104189 +0.4586928 0.1201537 0.3104189 +0.4698649 0.1201537 0.3104189 +0.4805811 0.1201537 0.3104189 +0.490876 0.1201537 0.3104189 +0.5007803 0.1201537 0.3104189 +0.510322 0.1201537 0.3104189 +0.5195258 0.1201537 0.3104189 +0.5284142 0.1201537 0.3104189 +0.5370079 0.1201537 0.3104189 +0.5453253 0.1201537 0.3104189 +0.5533834 0.1201537 0.3104189 +0.5611974 0.1201537 0.3104189 +0.5687816 0.1201537 0.3104189 +0.092819 0.1409607 0.3104189 +0.1056428 0.1409607 0.3104189 +0.1201537 0.1409607 0.3104189 +0.1409607 0.1409607 0.3104189 +0.1678172 0.1409607 0.3104189 +0.1950164 0.1409607 0.3104189 +0.2210581 0.1409607 0.3104189 +0.245636 0.1409607 0.3104189 +0.2686816 0.1409607 0.3104189 +0.2902431 0.1409607 0.3104189 +0.3104189 0.1409607 0.3104189 +0.3293248 0.1409607 0.3104189 +0.3470774 0.1409607 0.3104189 +0.3637862 0.1409607 0.3104189 +0.3795513 0.1409607 0.3104189 +0.3944623 0.1409607 0.3104189 +0.4085988 0.1409607 0.3104189 +0.4220313 0.1409607 0.3104189 +0.4348222 0.1409607 0.3104189 +0.4470264 0.1409607 0.3104189 +0.4586928 0.1409607 0.3104189 +0.4698649 0.1409607 0.3104189 +0.4805811 0.1409607 0.3104189 +0.490876 0.1409607 0.3104189 +0.5007803 0.1409607 0.3104189 +0.510322 0.1409607 0.3104189 +0.5195258 0.1409607 0.3104189 +0.5284142 0.1409607 0.3104189 +0.5370079 0.1409607 0.3104189 +0.5453253 0.1409607 0.3104189 +0.5533834 0.1409607 0.3104189 +0.5611974 0.1409607 0.3104189 +0.5687816 0.1409607 0.3104189 +0.092819 0.1678172 0.3104189 +0.1056428 0.1678172 0.3104189 +0.1201537 0.1678172 0.3104189 +0.1409607 0.1678172 0.3104189 +0.1678172 0.1678172 0.3104189 +0.1950164 0.1678172 0.3104189 +0.2210581 0.1678172 0.3104189 +0.245636 0.1678172 0.3104189 +0.2686816 0.1678172 0.3104189 +0.2902431 0.1678172 0.3104189 +0.3104189 0.1678172 0.3104189 +0.3293248 0.1678172 0.3104189 +0.3470774 0.1678172 0.3104189 +0.3637862 0.1678172 0.3104189 +0.3795513 0.1678172 0.3104189 +0.3944623 0.1678172 0.3104189 +0.4085988 0.1678172 0.3104189 +0.4220313 0.1678172 0.3104189 +0.4348222 0.1678172 0.3104189 +0.4470264 0.1678172 0.3104189 +0.4586928 0.1678172 0.3104189 +0.4698649 0.1678172 0.3104189 +0.4805811 0.1678172 0.3104189 +0.490876 0.1678172 0.3104189 +0.5007803 0.1678172 0.3104189 +0.510322 0.1678172 0.3104189 +0.5195258 0.1678172 0.3104189 +0.5284142 0.1678172 0.3104189 +0.5370079 0.1678172 0.3104189 +0.5453253 0.1678172 0.3104189 +0.5533834 0.1678172 0.3104189 +0.5611974 0.1678172 0.3104189 +0.5687816 0.1678172 0.3104189 +0.092819 0.1950164 0.3104189 +0.1056428 0.1950164 0.3104189 +0.1201537 0.1950164 0.3104189 +0.1409607 0.1950164 0.3104189 +0.1678172 0.1950164 0.3104189 +0.1950164 0.1950164 0.3104189 +0.2210581 0.1950164 0.3104189 +0.245636 0.1950164 0.3104189 +0.2686816 0.1950164 0.3104189 +0.2902431 0.1950164 0.3104189 +0.3104189 0.1950164 0.3104189 +0.3293248 0.1950164 0.3104189 +0.3470774 0.1950164 0.3104189 +0.3637862 0.1950164 0.3104189 +0.3795513 0.1950164 0.3104189 +0.3944623 0.1950164 0.3104189 +0.4085988 0.1950164 0.3104189 +0.4220313 0.1950164 0.3104189 +0.4348222 0.1950164 0.3104189 +0.4470264 0.1950164 0.3104189 +0.4586928 0.1950164 0.3104189 +0.4698649 0.1950164 0.3104189 +0.4805811 0.1950164 0.3104189 +0.490876 0.1950164 0.3104189 +0.5007803 0.1950164 0.3104189 +0.510322 0.1950164 0.3104189 +0.5195258 0.1950164 0.3104189 +0.5284142 0.1950164 0.3104189 +0.5370079 0.1950164 0.3104189 +0.5453253 0.1950164 0.3104189 +0.5533834 0.1950164 0.3104189 +0.5611974 0.1950164 0.3104189 +0.5687816 0.1950164 0.3104189 +0.092819 0.2210581 0.3104189 +0.1056428 0.2210581 0.3104189 +0.1201537 0.2210581 0.3104189 +0.1409607 0.2210581 0.3104189 +0.1678172 0.2210581 0.3104189 +0.1950164 0.2210581 0.3104189 +0.2210581 0.2210581 0.3104189 +0.245636 0.2210581 0.3104189 +0.2686816 0.2210581 0.3104189 +0.2902431 0.2210581 0.3104189 +0.3104189 0.2210581 0.3104189 +0.3293248 0.2210581 0.3104189 +0.3470774 0.2210581 0.3104189 +0.3637862 0.2210581 0.3104189 +0.3795513 0.2210581 0.3104189 +0.3944623 0.2210581 0.3104189 +0.4085988 0.2210581 0.3104189 +0.4220313 0.2210581 0.3104189 +0.4348222 0.2210581 0.3104189 +0.4470264 0.2210581 0.3104189 +0.4586928 0.2210581 0.3104189 +0.4698649 0.2210581 0.3104189 +0.4805811 0.2210581 0.3104189 +0.490876 0.2210581 0.3104189 +0.5007803 0.2210581 0.3104189 +0.510322 0.2210581 0.3104189 +0.5195258 0.2210581 0.3104189 +0.5284142 0.2210581 0.3104189 +0.5370079 0.2210581 0.3104189 +0.5453253 0.2210581 0.3104189 +0.5533834 0.2210581 0.3104189 +0.5611974 0.2210581 0.3104189 +0.5687816 0.2210581 0.3104189 +0.092819 0.245636 0.3104189 +0.1056428 0.245636 0.3104189 +0.1201537 0.245636 0.3104189 +0.1409607 0.245636 0.3104189 +0.1678172 0.245636 0.3104189 +0.1950164 0.245636 0.3104189 +0.2210581 0.245636 0.3104189 +0.245636 0.245636 0.3104189 +0.2686816 0.245636 0.3104189 +0.2902431 0.245636 0.3104189 +0.3104189 0.245636 0.3104189 +0.3293248 0.245636 0.3104189 +0.3470774 0.245636 0.3104189 +0.3637862 0.245636 0.3104189 +0.3795513 0.245636 0.3104189 +0.3944623 0.245636 0.3104189 +0.4085988 0.245636 0.3104189 +0.4220313 0.245636 0.3104189 +0.4348222 0.245636 0.3104189 +0.4470264 0.245636 0.3104189 +0.4586928 0.245636 0.3104189 +0.4698649 0.245636 0.3104189 +0.4805811 0.245636 0.3104189 +0.490876 0.245636 0.3104189 +0.5007803 0.245636 0.3104189 +0.510322 0.245636 0.3104189 +0.5195258 0.245636 0.3104189 +0.5284142 0.245636 0.3104189 +0.5370079 0.245636 0.3104189 +0.5453253 0.245636 0.3104189 +0.5533834 0.245636 0.3104189 +0.5611974 0.245636 0.3104189 +0.5687816 0.245636 0.3104189 +0.092819 0.2686816 0.3104189 +0.1056428 0.2686816 0.3104189 +0.1201537 0.2686816 0.3104189 +0.1409607 0.2686816 0.3104189 +0.1678172 0.2686816 0.3104189 +0.1950164 0.2686816 0.3104189 +0.2210581 0.2686816 0.3104189 +0.245636 0.2686816 0.3104189 +0.2686816 0.2686816 0.3104189 +0.2902431 0.2686816 0.3104189 +0.3104189 0.2686816 0.3104189 +0.3293248 0.2686816 0.3104189 +0.3470774 0.2686816 0.3104189 +0.3637862 0.2686816 0.3104189 +0.3795513 0.2686816 0.3104189 +0.3944623 0.2686816 0.3104189 +0.4085988 0.2686816 0.3104189 +0.4220313 0.2686816 0.3104189 +0.4348222 0.2686816 0.3104189 +0.4470264 0.2686816 0.3104189 +0.4586928 0.2686816 0.3104189 +0.4698649 0.2686816 0.3104189 +0.4805811 0.2686816 0.3104189 +0.490876 0.2686816 0.3104189 +0.5007803 0.2686816 0.3104189 +0.510322 0.2686816 0.3104189 +0.5195258 0.2686816 0.3104189 +0.5284142 0.2686816 0.3104189 +0.5370079 0.2686816 0.3104189 +0.5453253 0.2686816 0.3104189 +0.5533834 0.2686816 0.3104189 +0.5611974 0.2686816 0.3104189 +0.5687816 0.2686816 0.3104189 +0.092819 0.2902431 0.3104189 +0.1056428 0.2902431 0.3104189 +0.1201537 0.2902431 0.3104189 +0.1409607 0.2902431 0.3104189 +0.1678172 0.2902431 0.3104189 +0.1950164 0.2902431 0.3104189 +0.2210581 0.2902431 0.3104189 +0.245636 0.2902431 0.3104189 +0.2686816 0.2902431 0.3104189 +0.2902431 0.2902431 0.3104189 +0.3104189 0.2902431 0.3104189 +0.3293248 0.2902431 0.3104189 +0.3470774 0.2902431 0.3104189 +0.3637862 0.2902431 0.3104189 +0.3795513 0.2902431 0.3104189 +0.3944623 0.2902431 0.3104189 +0.4085988 0.2902431 0.3104189 +0.4220313 0.2902431 0.3104189 +0.4348222 0.2902431 0.3104189 +0.4470264 0.2902431 0.3104189 +0.4586928 0.2902431 0.3104189 +0.4698649 0.2902431 0.3104189 +0.4805811 0.2902431 0.3104189 +0.490876 0.2902431 0.3104189 +0.5007803 0.2902431 0.3104189 +0.510322 0.2902431 0.3104189 +0.5195258 0.2902431 0.3104189 +0.5284142 0.2902431 0.3104189 +0.5370079 0.2902431 0.3104189 +0.5453253 0.2902431 0.3104189 +0.5533834 0.2902431 0.3104189 +0.5611974 0.2902431 0.3104189 +0.5687816 0.2902431 0.3104189 +0.092819 0.3104189 0.3104189 +0.1056428 0.3104189 0.3104189 +0.1201537 0.3104189 0.3104189 +0.1409607 0.3104189 0.3104189 +0.1678172 0.3104189 0.3104189 +0.1950164 0.3104189 0.3104189 +0.2210581 0.3104189 0.3104189 +0.245636 0.3104189 0.3104189 +0.2686816 0.3104189 0.3104189 +0.2902431 0.3104189 0.3104189 +0.3104189 0.3104189 0.3104189 +0.3293248 0.3104189 0.3104189 +0.3470774 0.3104189 0.3104189 +0.3637862 0.3104189 0.3104189 +0.3795513 0.3104189 0.3104189 +0.3944623 0.3104189 0.3104189 +0.4085988 0.3104189 0.3104189 +0.4220313 0.3104189 0.3104189 +0.4348222 0.3104189 0.3104189 +0.4470264 0.3104189 0.3104189 +0.4586928 0.3104189 0.3104189 +0.4698649 0.3104189 0.3104189 +0.4805811 0.3104189 0.3104189 +0.490876 0.3104189 0.3104189 +0.5007803 0.3104189 0.3104189 +0.510322 0.3104189 0.3104189 +0.5195258 0.3104189 0.3104189 +0.5284142 0.3104189 0.3104189 +0.5370079 0.3104189 0.3104189 +0.5453253 0.3104189 0.3104189 +0.5533834 0.3104189 0.3104189 +0.5611974 0.3104189 0.3104189 +0.5687816 0.3104189 0.3104189 +0.092819 0.3293248 0.3104189 +0.1056428 0.3293248 0.3104189 +0.1201537 0.3293248 0.3104189 +0.1409607 0.3293248 0.3104189 +0.1678172 0.3293248 0.3104189 +0.1950164 0.3293248 0.3104189 +0.2210581 0.3293248 0.3104189 +0.245636 0.3293248 0.3104189 +0.2686816 0.3293248 0.3104189 +0.2902431 0.3293248 0.3104189 +0.3104189 0.3293248 0.3104189 +0.3293248 0.3293248 0.3104189 +0.3470774 0.3293248 0.3104189 +0.3637862 0.3293248 0.3104189 +0.3795513 0.3293248 0.3104189 +0.3944623 0.3293248 0.3104189 +0.4085988 0.3293248 0.3104189 +0.4220313 0.3293248 0.3104189 +0.4348222 0.3293248 0.3104189 +0.4470264 0.3293248 0.3104189 +0.4586928 0.3293248 0.3104189 +0.4698649 0.3293248 0.3104189 +0.4805811 0.3293248 0.3104189 +0.490876 0.3293248 0.3104189 +0.5007803 0.3293248 0.3104189 +0.510322 0.3293248 0.3104189 +0.5195258 0.3293248 0.3104189 +0.5284142 0.3293248 0.3104189 +0.5370079 0.3293248 0.3104189 +0.5453253 0.3293248 0.3104189 +0.5533834 0.3293248 0.3104189 +0.5611974 0.3293248 0.3104189 +0.5687816 0.3293248 0.3104189 +0.092819 0.3470774 0.3104189 +0.1056428 0.3470774 0.3104189 +0.1201537 0.3470774 0.3104189 +0.1409607 0.3470774 0.3104189 +0.1678172 0.3470774 0.3104189 +0.1950164 0.3470774 0.3104189 +0.2210581 0.3470774 0.3104189 +0.245636 0.3470774 0.3104189 +0.2686816 0.3470774 0.3104189 +0.2902431 0.3470774 0.3104189 +0.3104189 0.3470774 0.3104189 +0.3293248 0.3470774 0.3104189 +0.3470774 0.3470774 0.3104189 +0.3637862 0.3470774 0.3104189 +0.3795513 0.3470774 0.3104189 +0.3944623 0.3470774 0.3104189 +0.4085988 0.3470774 0.3104189 +0.4220313 0.3470774 0.3104189 +0.4348222 0.3470774 0.3104189 +0.4470264 0.3470774 0.3104189 +0.4586928 0.3470774 0.3104189 +0.4698649 0.3470774 0.3104189 +0.4805811 0.3470774 0.3104189 +0.490876 0.3470774 0.3104189 +0.5007803 0.3470774 0.3104189 +0.510322 0.3470774 0.3104189 +0.5195258 0.3470774 0.3104189 +0.5284142 0.3470774 0.3104189 +0.5370079 0.3470774 0.3104189 +0.5453253 0.3470774 0.3104189 +0.5533834 0.3470774 0.3104189 +0.5611974 0.3470774 0.3104189 +0.5687816 0.3470774 0.3104189 +0.092819 0.3637862 0.3104189 +0.1056428 0.3637862 0.3104189 +0.1201537 0.3637862 0.3104189 +0.1409607 0.3637862 0.3104189 +0.1678172 0.3637862 0.3104189 +0.1950164 0.3637862 0.3104189 +0.2210581 0.3637862 0.3104189 +0.245636 0.3637862 0.3104189 +0.2686816 0.3637862 0.3104189 +0.2902431 0.3637862 0.3104189 +0.3104189 0.3637862 0.3104189 +0.3293248 0.3637862 0.3104189 +0.3470774 0.3637862 0.3104189 +0.3637862 0.3637862 0.3104189 +0.3795513 0.3637862 0.3104189 +0.3944623 0.3637862 0.3104189 +0.4085988 0.3637862 0.3104189 +0.4220313 0.3637862 0.3104189 +0.4348222 0.3637862 0.3104189 +0.4470264 0.3637862 0.3104189 +0.4586928 0.3637862 0.3104189 +0.4698649 0.3637862 0.3104189 +0.4805811 0.3637862 0.3104189 +0.490876 0.3637862 0.3104189 +0.5007803 0.3637862 0.3104189 +0.510322 0.3637862 0.3104189 +0.5195258 0.3637862 0.3104189 +0.5284142 0.3637862 0.3104189 +0.5370079 0.3637862 0.3104189 +0.5453253 0.3637862 0.3104189 +0.5533834 0.3637862 0.3104189 +0.5611974 0.3637862 0.3104189 +0.5687816 0.3637862 0.3104189 +0.092819 0.3795513 0.3104189 +0.1056428 0.3795513 0.3104189 +0.1201537 0.3795513 0.3104189 +0.1409607 0.3795513 0.3104189 +0.1678172 0.3795513 0.3104189 +0.1950164 0.3795513 0.3104189 +0.2210581 0.3795513 0.3104189 +0.245636 0.3795513 0.3104189 +0.2686816 0.3795513 0.3104189 +0.2902431 0.3795513 0.3104189 +0.3104189 0.3795513 0.3104189 +0.3293248 0.3795513 0.3104189 +0.3470774 0.3795513 0.3104189 +0.3637862 0.3795513 0.3104189 +0.3795513 0.3795513 0.3104189 +0.3944623 0.3795513 0.3104189 +0.4085988 0.3795513 0.3104189 +0.4220313 0.3795513 0.3104189 +0.4348222 0.3795513 0.3104189 +0.4470264 0.3795513 0.3104189 +0.4586928 0.3795513 0.3104189 +0.4698649 0.3795513 0.3104189 +0.4805811 0.3795513 0.3104189 +0.490876 0.3795513 0.3104189 +0.5007803 0.3795513 0.3104189 +0.510322 0.3795513 0.3104189 +0.5195258 0.3795513 0.3104189 +0.5284142 0.3795513 0.3104189 +0.5370079 0.3795513 0.3104189 +0.5453253 0.3795513 0.3104189 +0.5533834 0.3795513 0.3104189 +0.5611974 0.3795513 0.3104189 +0.5687816 0.3795513 0.3104189 +0.092819 0.3944623 0.3104189 +0.1056428 0.3944623 0.3104189 +0.1201537 0.3944623 0.3104189 +0.1409607 0.3944623 0.3104189 +0.1678172 0.3944623 0.3104189 +0.1950164 0.3944623 0.3104189 +0.2210581 0.3944623 0.3104189 +0.245636 0.3944623 0.3104189 +0.2686816 0.3944623 0.3104189 +0.2902431 0.3944623 0.3104189 +0.3104189 0.3944623 0.3104189 +0.3293248 0.3944623 0.3104189 +0.3470774 0.3944623 0.3104189 +0.3637862 0.3944623 0.3104189 +0.3795513 0.3944623 0.3104189 +0.3944623 0.3944623 0.3104189 +0.4085988 0.3944623 0.3104189 +0.4220313 0.3944623 0.3104189 +0.4348222 0.3944623 0.3104189 +0.4470264 0.3944623 0.3104189 +0.4586928 0.3944623 0.3104189 +0.4698649 0.3944623 0.3104189 +0.4805811 0.3944623 0.3104189 +0.490876 0.3944623 0.3104189 +0.5007803 0.3944623 0.3104189 +0.510322 0.3944623 0.3104189 +0.5195258 0.3944623 0.3104189 +0.5284142 0.3944623 0.3104189 +0.5370079 0.3944623 0.3104189 +0.5453253 0.3944623 0.3104189 +0.5533834 0.3944623 0.3104189 +0.5611974 0.3944623 0.3104189 +0.5687816 0.3944623 0.3104189 +0.092819 0.4085988 0.3104189 +0.1056428 0.4085988 0.3104189 +0.1201537 0.4085988 0.3104189 +0.1409607 0.4085988 0.3104189 +0.1678172 0.4085988 0.3104189 +0.1950164 0.4085988 0.3104189 +0.2210581 0.4085988 0.3104189 +0.245636 0.4085988 0.3104189 +0.2686816 0.4085988 0.3104189 +0.2902431 0.4085988 0.3104189 +0.3104189 0.4085988 0.3104189 +0.3293248 0.4085988 0.3104189 +0.3470774 0.4085988 0.3104189 +0.3637862 0.4085988 0.3104189 +0.3795513 0.4085988 0.3104189 +0.3944623 0.4085988 0.3104189 +0.4085988 0.4085988 0.3104189 +0.4220313 0.4085988 0.3104189 +0.4348222 0.4085988 0.3104189 +0.4470264 0.4085988 0.3104189 +0.4586928 0.4085988 0.3104189 +0.4698649 0.4085988 0.3104189 +0.4805811 0.4085988 0.3104189 +0.490876 0.4085988 0.3104189 +0.5007803 0.4085988 0.3104189 +0.510322 0.4085988 0.3104189 +0.5195258 0.4085988 0.3104189 +0.5284142 0.4085988 0.3104189 +0.5370079 0.4085988 0.3104189 +0.5453253 0.4085988 0.3104189 +0.5533834 0.4085988 0.3104189 +0.5611974 0.4085988 0.3104189 +0.5687816 0.4085988 0.3104189 +0.092819 0.4220313 0.3104189 +0.1056428 0.4220313 0.3104189 +0.1201537 0.4220313 0.3104189 +0.1409607 0.4220313 0.3104189 +0.1678172 0.4220313 0.3104189 +0.1950164 0.4220313 0.3104189 +0.2210581 0.4220313 0.3104189 +0.245636 0.4220313 0.3104189 +0.2686816 0.4220313 0.3104189 +0.2902431 0.4220313 0.3104189 +0.3104189 0.4220313 0.3104189 +0.3293248 0.4220313 0.3104189 +0.3470774 0.4220313 0.3104189 +0.3637862 0.4220313 0.3104189 +0.3795513 0.4220313 0.3104189 +0.3944623 0.4220313 0.3104189 +0.4085988 0.4220313 0.3104189 +0.4220313 0.4220313 0.3104189 +0.4348222 0.4220313 0.3104189 +0.4470264 0.4220313 0.3104189 +0.4586928 0.4220313 0.3104189 +0.4698649 0.4220313 0.3104189 +0.4805811 0.4220313 0.3104189 +0.490876 0.4220313 0.3104189 +0.5007803 0.4220313 0.3104189 +0.510322 0.4220313 0.3104189 +0.5195258 0.4220313 0.3104189 +0.5284142 0.4220313 0.3104189 +0.5370079 0.4220313 0.3104189 +0.5453253 0.4220313 0.3104189 +0.5533834 0.4220313 0.3104189 +0.5611974 0.4220313 0.3104189 +0.5687816 0.4220313 0.3104189 +0.092819 0.4348222 0.3104189 +0.1056428 0.4348222 0.3104189 +0.1201537 0.4348222 0.3104189 +0.1409607 0.4348222 0.3104189 +0.1678172 0.4348222 0.3104189 +0.1950164 0.4348222 0.3104189 +0.2210581 0.4348222 0.3104189 +0.245636 0.4348222 0.3104189 +0.2686816 0.4348222 0.3104189 +0.2902431 0.4348222 0.3104189 +0.3104189 0.4348222 0.3104189 +0.3293248 0.4348222 0.3104189 +0.3470774 0.4348222 0.3104189 +0.3637862 0.4348222 0.3104189 +0.3795513 0.4348222 0.3104189 +0.3944623 0.4348222 0.3104189 +0.4085988 0.4348222 0.3104189 +0.4220313 0.4348222 0.3104189 +0.4348222 0.4348222 0.3104189 +0.4470264 0.4348222 0.3104189 +0.4586928 0.4348222 0.3104189 +0.4698649 0.4348222 0.3104189 +0.4805811 0.4348222 0.3104189 +0.490876 0.4348222 0.3104189 +0.5007803 0.4348222 0.3104189 +0.510322 0.4348222 0.3104189 +0.5195258 0.4348222 0.3104189 +0.5284142 0.4348222 0.3104189 +0.5370079 0.4348222 0.3104189 +0.5453253 0.4348222 0.3104189 +0.5533834 0.4348222 0.3104189 +0.5611974 0.4348222 0.3104189 +0.5687816 0.4348222 0.3104189 +0.092819 0.4470264 0.3104189 +0.1056428 0.4470264 0.3104189 +0.1201537 0.4470264 0.3104189 +0.1409607 0.4470264 0.3104189 +0.1678172 0.4470264 0.3104189 +0.1950164 0.4470264 0.3104189 +0.2210581 0.4470264 0.3104189 +0.245636 0.4470264 0.3104189 +0.2686816 0.4470264 0.3104189 +0.2902431 0.4470264 0.3104189 +0.3104189 0.4470264 0.3104189 +0.3293248 0.4470264 0.3104189 +0.3470774 0.4470264 0.3104189 +0.3637862 0.4470264 0.3104189 +0.3795513 0.4470264 0.3104189 +0.3944623 0.4470264 0.3104189 +0.4085988 0.4470264 0.3104189 +0.4220313 0.4470264 0.3104189 +0.4348222 0.4470264 0.3104189 +0.4470264 0.4470264 0.3104189 +0.4586928 0.4470264 0.3104189 +0.4698649 0.4470264 0.3104189 +0.4805811 0.4470264 0.3104189 +0.490876 0.4470264 0.3104189 +0.5007803 0.4470264 0.3104189 +0.510322 0.4470264 0.3104189 +0.5195258 0.4470264 0.3104189 +0.5284142 0.4470264 0.3104189 +0.5370079 0.4470264 0.3104189 +0.5453253 0.4470264 0.3104189 +0.5533834 0.4470264 0.3104189 +0.5611974 0.4470264 0.3104189 +0.5687816 0.4470264 0.3104189 +0.092819 0.4586928 0.3104189 +0.1056428 0.4586928 0.3104189 +0.1201537 0.4586928 0.3104189 +0.1409607 0.4586928 0.3104189 +0.1678172 0.4586928 0.3104189 +0.1950164 0.4586928 0.3104189 +0.2210581 0.4586928 0.3104189 +0.245636 0.4586928 0.3104189 +0.2686816 0.4586928 0.3104189 +0.2902431 0.4586928 0.3104189 +0.3104189 0.4586928 0.3104189 +0.3293248 0.4586928 0.3104189 +0.3470774 0.4586928 0.3104189 +0.3637862 0.4586928 0.3104189 +0.3795513 0.4586928 0.3104189 +0.3944623 0.4586928 0.3104189 +0.4085988 0.4586928 0.3104189 +0.4220313 0.4586928 0.3104189 +0.4348222 0.4586928 0.3104189 +0.4470264 0.4586928 0.3104189 +0.4586928 0.4586928 0.3104189 +0.4698649 0.4586928 0.3104189 +0.4805811 0.4586928 0.3104189 +0.490876 0.4586928 0.3104189 +0.5007803 0.4586928 0.3104189 +0.510322 0.4586928 0.3104189 +0.5195258 0.4586928 0.3104189 +0.5284142 0.4586928 0.3104189 +0.5370079 0.4586928 0.3104189 +0.5453253 0.4586928 0.3104189 +0.5533834 0.4586928 0.3104189 +0.5611974 0.4586928 0.3104189 +0.5687816 0.4586928 0.3104189 +0.092819 0.4698649 0.3104189 +0.1056428 0.4698649 0.3104189 +0.1201537 0.4698649 0.3104189 +0.1409607 0.4698649 0.3104189 +0.1678172 0.4698649 0.3104189 +0.1950164 0.4698649 0.3104189 +0.2210581 0.4698649 0.3104189 +0.245636 0.4698649 0.3104189 +0.2686816 0.4698649 0.3104189 +0.2902431 0.4698649 0.3104189 +0.3104189 0.4698649 0.3104189 +0.3293248 0.4698649 0.3104189 +0.3470774 0.4698649 0.3104189 +0.3637862 0.4698649 0.3104189 +0.3795513 0.4698649 0.3104189 +0.3944623 0.4698649 0.3104189 +0.4085988 0.4698649 0.3104189 +0.4220313 0.4698649 0.3104189 +0.4348222 0.4698649 0.3104189 +0.4470264 0.4698649 0.3104189 +0.4586928 0.4698649 0.3104189 +0.4698649 0.4698649 0.3104189 +0.4805811 0.4698649 0.3104189 +0.490876 0.4698649 0.3104189 +0.5007803 0.4698649 0.3104189 +0.510322 0.4698649 0.3104189 +0.5195258 0.4698649 0.3104189 +0.5284142 0.4698649 0.3104189 +0.5370079 0.4698649 0.3104189 +0.5453253 0.4698649 0.3104189 +0.5533834 0.4698649 0.3104189 +0.5611974 0.4698649 0.3104189 +0.5687816 0.4698649 0.3104189 +0.092819 0.4805811 0.3104189 +0.1056428 0.4805811 0.3104189 +0.1201537 0.4805811 0.3104189 +0.1409607 0.4805811 0.3104189 +0.1678172 0.4805811 0.3104189 +0.1950164 0.4805811 0.3104189 +0.2210581 0.4805811 0.3104189 +0.245636 0.4805811 0.3104189 +0.2686816 0.4805811 0.3104189 +0.2902431 0.4805811 0.3104189 +0.3104189 0.4805811 0.3104189 +0.3293248 0.4805811 0.3104189 +0.3470774 0.4805811 0.3104189 +0.3637862 0.4805811 0.3104189 +0.3795513 0.4805811 0.3104189 +0.3944623 0.4805811 0.3104189 +0.4085988 0.4805811 0.3104189 +0.4220313 0.4805811 0.3104189 +0.4348222 0.4805811 0.3104189 +0.4470264 0.4805811 0.3104189 +0.4586928 0.4805811 0.3104189 +0.4698649 0.4805811 0.3104189 +0.4805811 0.4805811 0.3104189 +0.490876 0.4805811 0.3104189 +0.5007803 0.4805811 0.3104189 +0.510322 0.4805811 0.3104189 +0.5195258 0.4805811 0.3104189 +0.5284142 0.4805811 0.3104189 +0.5370079 0.4805811 0.3104189 +0.5453253 0.4805811 0.3104189 +0.5533834 0.4805811 0.3104189 +0.5611974 0.4805811 0.3104189 +0.5687816 0.4805811 0.3104189 +0.092819 0.490876 0.3104189 +0.1056428 0.490876 0.3104189 +0.1201537 0.490876 0.3104189 +0.1409607 0.490876 0.3104189 +0.1678172 0.490876 0.3104189 +0.1950164 0.490876 0.3104189 +0.2210581 0.490876 0.3104189 +0.245636 0.490876 0.3104189 +0.2686816 0.490876 0.3104189 +0.2902431 0.490876 0.3104189 +0.3104189 0.490876 0.3104189 +0.3293248 0.490876 0.3104189 +0.3470774 0.490876 0.3104189 +0.3637862 0.490876 0.3104189 +0.3795513 0.490876 0.3104189 +0.3944623 0.490876 0.3104189 +0.4085988 0.490876 0.3104189 +0.4220313 0.490876 0.3104189 +0.4348222 0.490876 0.3104189 +0.4470264 0.490876 0.3104189 +0.4586928 0.490876 0.3104189 +0.4698649 0.490876 0.3104189 +0.4805811 0.490876 0.3104189 +0.490876 0.490876 0.3104189 +0.5007803 0.490876 0.3104189 +0.510322 0.490876 0.3104189 +0.5195258 0.490876 0.3104189 +0.5284142 0.490876 0.3104189 +0.5370079 0.490876 0.3104189 +0.5453253 0.490876 0.3104189 +0.5533834 0.490876 0.3104189 +0.5611974 0.490876 0.3104189 +0.5687816 0.490876 0.3104189 +0.092819 0.5007803 0.3104189 +0.1056428 0.5007803 0.3104189 +0.1201537 0.5007803 0.3104189 +0.1409607 0.5007803 0.3104189 +0.1678172 0.5007803 0.3104189 +0.1950164 0.5007803 0.3104189 +0.2210581 0.5007803 0.3104189 +0.245636 0.5007803 0.3104189 +0.2686816 0.5007803 0.3104189 +0.2902431 0.5007803 0.3104189 +0.3104189 0.5007803 0.3104189 +0.3293248 0.5007803 0.3104189 +0.3470774 0.5007803 0.3104189 +0.3637862 0.5007803 0.3104189 +0.3795513 0.5007803 0.3104189 +0.3944623 0.5007803 0.3104189 +0.4085988 0.5007803 0.3104189 +0.4220313 0.5007803 0.3104189 +0.4348222 0.5007803 0.3104189 +0.4470264 0.5007803 0.3104189 +0.4586928 0.5007803 0.3104189 +0.4698649 0.5007803 0.3104189 +0.4805811 0.5007803 0.3104189 +0.490876 0.5007803 0.3104189 +0.5007803 0.5007803 0.3104189 +0.510322 0.5007803 0.3104189 +0.5195258 0.5007803 0.3104189 +0.5284142 0.5007803 0.3104189 +0.5370079 0.5007803 0.3104189 +0.5453253 0.5007803 0.3104189 +0.5533834 0.5007803 0.3104189 +0.5611974 0.5007803 0.3104189 +0.5687816 0.5007803 0.3104189 +0.092819 0.510322 0.3104189 +0.1056428 0.510322 0.3104189 +0.1201537 0.510322 0.3104189 +0.1409607 0.510322 0.3104189 +0.1678172 0.510322 0.3104189 +0.1950164 0.510322 0.3104189 +0.2210581 0.510322 0.3104189 +0.245636 0.510322 0.3104189 +0.2686816 0.510322 0.3104189 +0.2902431 0.510322 0.3104189 +0.3104189 0.510322 0.3104189 +0.3293248 0.510322 0.3104189 +0.3470774 0.510322 0.3104189 +0.3637862 0.510322 0.3104189 +0.3795513 0.510322 0.3104189 +0.3944623 0.510322 0.3104189 +0.4085988 0.510322 0.3104189 +0.4220313 0.510322 0.3104189 +0.4348222 0.510322 0.3104189 +0.4470264 0.510322 0.3104189 +0.4586928 0.510322 0.3104189 +0.4698649 0.510322 0.3104189 +0.4805811 0.510322 0.3104189 +0.490876 0.510322 0.3104189 +0.5007803 0.510322 0.3104189 +0.510322 0.510322 0.3104189 +0.5195258 0.510322 0.3104189 +0.5284142 0.510322 0.3104189 +0.5370079 0.510322 0.3104189 +0.5453253 0.510322 0.3104189 +0.5533834 0.510322 0.3104189 +0.5611974 0.510322 0.3104189 +0.5687816 0.510322 0.3104189 +0.092819 0.5195258 0.3104189 +0.1056428 0.5195258 0.3104189 +0.1201537 0.5195258 0.3104189 +0.1409607 0.5195258 0.3104189 +0.1678172 0.5195258 0.3104189 +0.1950164 0.5195258 0.3104189 +0.2210581 0.5195258 0.3104189 +0.245636 0.5195258 0.3104189 +0.2686816 0.5195258 0.3104189 +0.2902431 0.5195258 0.3104189 +0.3104189 0.5195258 0.3104189 +0.3293248 0.5195258 0.3104189 +0.3470774 0.5195258 0.3104189 +0.3637862 0.5195258 0.3104189 +0.3795513 0.5195258 0.3104189 +0.3944623 0.5195258 0.3104189 +0.4085988 0.5195258 0.3104189 +0.4220313 0.5195258 0.3104189 +0.4348222 0.5195258 0.3104189 +0.4470264 0.5195258 0.3104189 +0.4586928 0.5195258 0.3104189 +0.4698649 0.5195258 0.3104189 +0.4805811 0.5195258 0.3104189 +0.490876 0.5195258 0.3104189 +0.5007803 0.5195258 0.3104189 +0.510322 0.5195258 0.3104189 +0.5195258 0.5195258 0.3104189 +0.5284142 0.5195258 0.3104189 +0.5370079 0.5195258 0.3104189 +0.5453253 0.5195258 0.3104189 +0.5533834 0.5195258 0.3104189 +0.5611974 0.5195258 0.3104189 +0.5687816 0.5195258 0.3104189 +0.092819 0.5284142 0.3104189 +0.1056428 0.5284142 0.3104189 +0.1201537 0.5284142 0.3104189 +0.1409607 0.5284142 0.3104189 +0.1678172 0.5284142 0.3104189 +0.1950164 0.5284142 0.3104189 +0.2210581 0.5284142 0.3104189 +0.245636 0.5284142 0.3104189 +0.2686816 0.5284142 0.3104189 +0.2902431 0.5284142 0.3104189 +0.3104189 0.5284142 0.3104189 +0.3293248 0.5284142 0.3104189 +0.3470774 0.5284142 0.3104189 +0.3637862 0.5284142 0.3104189 +0.3795513 0.5284142 0.3104189 +0.3944623 0.5284142 0.3104189 +0.4085988 0.5284142 0.3104189 +0.4220313 0.5284142 0.3104189 +0.4348222 0.5284142 0.3104189 +0.4470264 0.5284142 0.3104189 +0.4586928 0.5284142 0.3104189 +0.4698649 0.5284142 0.3104189 +0.4805811 0.5284142 0.3104189 +0.490876 0.5284142 0.3104189 +0.5007803 0.5284142 0.3104189 +0.510322 0.5284142 0.3104189 +0.5195258 0.5284142 0.3104189 +0.5284142 0.5284142 0.3104189 +0.5370079 0.5284142 0.3104189 +0.5453253 0.5284142 0.3104189 +0.5533834 0.5284142 0.3104189 +0.5611974 0.5284142 0.3104189 +0.5687816 0.5284142 0.3104189 +0.092819 0.5370079 0.3104189 +0.1056428 0.5370079 0.3104189 +0.1201537 0.5370079 0.3104189 +0.1409607 0.5370079 0.3104189 +0.1678172 0.5370079 0.3104189 +0.1950164 0.5370079 0.3104189 +0.2210581 0.5370079 0.3104189 +0.245636 0.5370079 0.3104189 +0.2686816 0.5370079 0.3104189 +0.2902431 0.5370079 0.3104189 +0.3104189 0.5370079 0.3104189 +0.3293248 0.5370079 0.3104189 +0.3470774 0.5370079 0.3104189 +0.3637862 0.5370079 0.3104189 +0.3795513 0.5370079 0.3104189 +0.3944623 0.5370079 0.3104189 +0.4085988 0.5370079 0.3104189 +0.4220313 0.5370079 0.3104189 +0.4348222 0.5370079 0.3104189 +0.4470264 0.5370079 0.3104189 +0.4586928 0.5370079 0.3104189 +0.4698649 0.5370079 0.3104189 +0.4805811 0.5370079 0.3104189 +0.490876 0.5370079 0.3104189 +0.5007803 0.5370079 0.3104189 +0.510322 0.5370079 0.3104189 +0.5195258 0.5370079 0.3104189 +0.5284142 0.5370079 0.3104189 +0.5370079 0.5370079 0.3104189 +0.5453253 0.5370079 0.3104189 +0.5533834 0.5370079 0.3104189 +0.5611974 0.5370079 0.3104189 +0.5687816 0.5370079 0.3104189 +0.092819 0.5453253 0.3104189 +0.1056428 0.5453253 0.3104189 +0.1201537 0.5453253 0.3104189 +0.1409607 0.5453253 0.3104189 +0.1678172 0.5453253 0.3104189 +0.1950164 0.5453253 0.3104189 +0.2210581 0.5453253 0.3104189 +0.245636 0.5453253 0.3104189 +0.2686816 0.5453253 0.3104189 +0.2902431 0.5453253 0.3104189 +0.3104189 0.5453253 0.3104189 +0.3293248 0.5453253 0.3104189 +0.3470774 0.5453253 0.3104189 +0.3637862 0.5453253 0.3104189 +0.3795513 0.5453253 0.3104189 +0.3944623 0.5453253 0.3104189 +0.4085988 0.5453253 0.3104189 +0.4220313 0.5453253 0.3104189 +0.4348222 0.5453253 0.3104189 +0.4470264 0.5453253 0.3104189 +0.4586928 0.5453253 0.3104189 +0.4698649 0.5453253 0.3104189 +0.4805811 0.5453253 0.3104189 +0.490876 0.5453253 0.3104189 +0.5007803 0.5453253 0.3104189 +0.510322 0.5453253 0.3104189 +0.5195258 0.5453253 0.3104189 +0.5284142 0.5453253 0.3104189 +0.5370079 0.5453253 0.3104189 +0.5453253 0.5453253 0.3104189 +0.5533834 0.5453253 0.3104189 +0.5611974 0.5453253 0.3104189 +0.5687816 0.5453253 0.3104189 +0.092819 0.5533834 0.3104189 +0.1056428 0.5533834 0.3104189 +0.1201537 0.5533834 0.3104189 +0.1409607 0.5533834 0.3104189 +0.1678172 0.5533834 0.3104189 +0.1950164 0.5533834 0.3104189 +0.2210581 0.5533834 0.3104189 +0.245636 0.5533834 0.3104189 +0.2686816 0.5533834 0.3104189 +0.2902431 0.5533834 0.3104189 +0.3104189 0.5533834 0.3104189 +0.3293248 0.5533834 0.3104189 +0.3470774 0.5533834 0.3104189 +0.3637862 0.5533834 0.3104189 +0.3795513 0.5533834 0.3104189 +0.3944623 0.5533834 0.3104189 +0.4085988 0.5533834 0.3104189 +0.4220313 0.5533834 0.3104189 +0.4348222 0.5533834 0.3104189 +0.4470264 0.5533834 0.3104189 +0.4586928 0.5533834 0.3104189 +0.4698649 0.5533834 0.3104189 +0.4805811 0.5533834 0.3104189 +0.490876 0.5533834 0.3104189 +0.5007803 0.5533834 0.3104189 +0.510322 0.5533834 0.3104189 +0.5195258 0.5533834 0.3104189 +0.5284142 0.5533834 0.3104189 +0.5370079 0.5533834 0.3104189 +0.5453253 0.5533834 0.3104189 +0.5533834 0.5533834 0.3104189 +0.5611974 0.5533834 0.3104189 +0.5687816 0.5533834 0.3104189 +0.092819 0.5611974 0.3104189 +0.1056428 0.5611974 0.3104189 +0.1201537 0.5611974 0.3104189 +0.1409607 0.5611974 0.3104189 +0.1678172 0.5611974 0.3104189 +0.1950164 0.5611974 0.3104189 +0.2210581 0.5611974 0.3104189 +0.245636 0.5611974 0.3104189 +0.2686816 0.5611974 0.3104189 +0.2902431 0.5611974 0.3104189 +0.3104189 0.5611974 0.3104189 +0.3293248 0.5611974 0.3104189 +0.3470774 0.5611974 0.3104189 +0.3637862 0.5611974 0.3104189 +0.3795513 0.5611974 0.3104189 +0.3944623 0.5611974 0.3104189 +0.4085988 0.5611974 0.3104189 +0.4220313 0.5611974 0.3104189 +0.4348222 0.5611974 0.3104189 +0.4470264 0.5611974 0.3104189 +0.4586928 0.5611974 0.3104189 +0.4698649 0.5611974 0.3104189 +0.4805811 0.5611974 0.3104189 +0.490876 0.5611974 0.3104189 +0.5007803 0.5611974 0.3104189 +0.510322 0.5611974 0.3104189 +0.5195258 0.5611974 0.3104189 +0.5284142 0.5611974 0.3104189 +0.5370079 0.5611974 0.3104189 +0.5453253 0.5611974 0.3104189 +0.5533834 0.5611974 0.3104189 +0.5611974 0.5611974 0.3104189 +0.5687816 0.5611974 0.3104189 +0.092819 0.5687816 0.3104189 +0.1056428 0.5687816 0.3104189 +0.1201537 0.5687816 0.3104189 +0.1409607 0.5687816 0.3104189 +0.1678172 0.5687816 0.3104189 +0.1950164 0.5687816 0.3104189 +0.2210581 0.5687816 0.3104189 +0.245636 0.5687816 0.3104189 +0.2686816 0.5687816 0.3104189 +0.2902431 0.5687816 0.3104189 +0.3104189 0.5687816 0.3104189 +0.3293248 0.5687816 0.3104189 +0.3470774 0.5687816 0.3104189 +0.3637862 0.5687816 0.3104189 +0.3795513 0.5687816 0.3104189 +0.3944623 0.5687816 0.3104189 +0.4085988 0.5687816 0.3104189 +0.4220313 0.5687816 0.3104189 +0.4348222 0.5687816 0.3104189 +0.4470264 0.5687816 0.3104189 +0.4586928 0.5687816 0.3104189 +0.4698649 0.5687816 0.3104189 +0.4805811 0.5687816 0.3104189 +0.490876 0.5687816 0.3104189 +0.5007803 0.5687816 0.3104189 +0.510322 0.5687816 0.3104189 +0.5195258 0.5687816 0.3104189 +0.5284142 0.5687816 0.3104189 +0.5370079 0.5687816 0.3104189 +0.5453253 0.5687816 0.3104189 +0.5533834 0.5687816 0.3104189 +0.5611974 0.5687816 0.3104189 +0.5687816 0.5687816 0.3104189 +0.092819 0.092819 0.3293248 +0.1056428 0.092819 0.3293248 +0.1201537 0.092819 0.3293248 +0.1409607 0.092819 0.3293248 +0.1678172 0.092819 0.3293248 +0.1950164 0.092819 0.3293248 +0.2210581 0.092819 0.3293248 +0.245636 0.092819 0.3293248 +0.2686816 0.092819 0.3293248 +0.2902431 0.092819 0.3293248 +0.3104189 0.092819 0.3293248 +0.3293248 0.092819 0.3293248 +0.3470774 0.092819 0.3293248 +0.3637862 0.092819 0.3293248 +0.3795513 0.092819 0.3293248 +0.3944623 0.092819 0.3293248 +0.4085988 0.092819 0.3293248 +0.4220313 0.092819 0.3293248 +0.4348222 0.092819 0.3293248 +0.4470264 0.092819 0.3293248 +0.4586928 0.092819 0.3293248 +0.4698649 0.092819 0.3293248 +0.4805811 0.092819 0.3293248 +0.490876 0.092819 0.3293248 +0.5007803 0.092819 0.3293248 +0.510322 0.092819 0.3293248 +0.5195258 0.092819 0.3293248 +0.5284142 0.092819 0.3293248 +0.5370079 0.092819 0.3293248 +0.5453253 0.092819 0.3293248 +0.5533834 0.092819 0.3293248 +0.5611974 0.092819 0.3293248 +0.5687816 0.092819 0.3293248 +0.092819 0.1056428 0.3293248 +0.1056428 0.1056428 0.3293248 +0.1201537 0.1056428 0.3293248 +0.1409607 0.1056428 0.3293248 +0.1678172 0.1056428 0.3293248 +0.1950164 0.1056428 0.3293248 +0.2210581 0.1056428 0.3293248 +0.245636 0.1056428 0.3293248 +0.2686816 0.1056428 0.3293248 +0.2902431 0.1056428 0.3293248 +0.3104189 0.1056428 0.3293248 +0.3293248 0.1056428 0.3293248 +0.3470774 0.1056428 0.3293248 +0.3637862 0.1056428 0.3293248 +0.3795513 0.1056428 0.3293248 +0.3944623 0.1056428 0.3293248 +0.4085988 0.1056428 0.3293248 +0.4220313 0.1056428 0.3293248 +0.4348222 0.1056428 0.3293248 +0.4470264 0.1056428 0.3293248 +0.4586928 0.1056428 0.3293248 +0.4698649 0.1056428 0.3293248 +0.4805811 0.1056428 0.3293248 +0.490876 0.1056428 0.3293248 +0.5007803 0.1056428 0.3293248 +0.510322 0.1056428 0.3293248 +0.5195258 0.1056428 0.3293248 +0.5284142 0.1056428 0.3293248 +0.5370079 0.1056428 0.3293248 +0.5453253 0.1056428 0.3293248 +0.5533834 0.1056428 0.3293248 +0.5611974 0.1056428 0.3293248 +0.5687816 0.1056428 0.3293248 +0.092819 0.1201537 0.3293248 +0.1056428 0.1201537 0.3293248 +0.1201537 0.1201537 0.3293248 +0.1409607 0.1201537 0.3293248 +0.1678172 0.1201537 0.3293248 +0.1950164 0.1201537 0.3293248 +0.2210581 0.1201537 0.3293248 +0.245636 0.1201537 0.3293248 +0.2686816 0.1201537 0.3293248 +0.2902431 0.1201537 0.3293248 +0.3104189 0.1201537 0.3293248 +0.3293248 0.1201537 0.3293248 +0.3470774 0.1201537 0.3293248 +0.3637862 0.1201537 0.3293248 +0.3795513 0.1201537 0.3293248 +0.3944623 0.1201537 0.3293248 +0.4085988 0.1201537 0.3293248 +0.4220313 0.1201537 0.3293248 +0.4348222 0.1201537 0.3293248 +0.4470264 0.1201537 0.3293248 +0.4586928 0.1201537 0.3293248 +0.4698649 0.1201537 0.3293248 +0.4805811 0.1201537 0.3293248 +0.490876 0.1201537 0.3293248 +0.5007803 0.1201537 0.3293248 +0.510322 0.1201537 0.3293248 +0.5195258 0.1201537 0.3293248 +0.5284142 0.1201537 0.3293248 +0.5370079 0.1201537 0.3293248 +0.5453253 0.1201537 0.3293248 +0.5533834 0.1201537 0.3293248 +0.5611974 0.1201537 0.3293248 +0.5687816 0.1201537 0.3293248 +0.092819 0.1409607 0.3293248 +0.1056428 0.1409607 0.3293248 +0.1201537 0.1409607 0.3293248 +0.1409607 0.1409607 0.3293248 +0.1678172 0.1409607 0.3293248 +0.1950164 0.1409607 0.3293248 +0.2210581 0.1409607 0.3293248 +0.245636 0.1409607 0.3293248 +0.2686816 0.1409607 0.3293248 +0.2902431 0.1409607 0.3293248 +0.3104189 0.1409607 0.3293248 +0.3293248 0.1409607 0.3293248 +0.3470774 0.1409607 0.3293248 +0.3637862 0.1409607 0.3293248 +0.3795513 0.1409607 0.3293248 +0.3944623 0.1409607 0.3293248 +0.4085988 0.1409607 0.3293248 +0.4220313 0.1409607 0.3293248 +0.4348222 0.1409607 0.3293248 +0.4470264 0.1409607 0.3293248 +0.4586928 0.1409607 0.3293248 +0.4698649 0.1409607 0.3293248 +0.4805811 0.1409607 0.3293248 +0.490876 0.1409607 0.3293248 +0.5007803 0.1409607 0.3293248 +0.510322 0.1409607 0.3293248 +0.5195258 0.1409607 0.3293248 +0.5284142 0.1409607 0.3293248 +0.5370079 0.1409607 0.3293248 +0.5453253 0.1409607 0.3293248 +0.5533834 0.1409607 0.3293248 +0.5611974 0.1409607 0.3293248 +0.5687816 0.1409607 0.3293248 +0.092819 0.1678172 0.3293248 +0.1056428 0.1678172 0.3293248 +0.1201537 0.1678172 0.3293248 +0.1409607 0.1678172 0.3293248 +0.1678172 0.1678172 0.3293248 +0.1950164 0.1678172 0.3293248 +0.2210581 0.1678172 0.3293248 +0.245636 0.1678172 0.3293248 +0.2686816 0.1678172 0.3293248 +0.2902431 0.1678172 0.3293248 +0.3104189 0.1678172 0.3293248 +0.3293248 0.1678172 0.3293248 +0.3470774 0.1678172 0.3293248 +0.3637862 0.1678172 0.3293248 +0.3795513 0.1678172 0.3293248 +0.3944623 0.1678172 0.3293248 +0.4085988 0.1678172 0.3293248 +0.4220313 0.1678172 0.3293248 +0.4348222 0.1678172 0.3293248 +0.4470264 0.1678172 0.3293248 +0.4586928 0.1678172 0.3293248 +0.4698649 0.1678172 0.3293248 +0.4805811 0.1678172 0.3293248 +0.490876 0.1678172 0.3293248 +0.5007803 0.1678172 0.3293248 +0.510322 0.1678172 0.3293248 +0.5195258 0.1678172 0.3293248 +0.5284142 0.1678172 0.3293248 +0.5370079 0.1678172 0.3293248 +0.5453253 0.1678172 0.3293248 +0.5533834 0.1678172 0.3293248 +0.5611974 0.1678172 0.3293248 +0.5687816 0.1678172 0.3293248 +0.092819 0.1950164 0.3293248 +0.1056428 0.1950164 0.3293248 +0.1201537 0.1950164 0.3293248 +0.1409607 0.1950164 0.3293248 +0.1678172 0.1950164 0.3293248 +0.1950164 0.1950164 0.3293248 +0.2210581 0.1950164 0.3293248 +0.245636 0.1950164 0.3293248 +0.2686816 0.1950164 0.3293248 +0.2902431 0.1950164 0.3293248 +0.3104189 0.1950164 0.3293248 +0.3293248 0.1950164 0.3293248 +0.3470774 0.1950164 0.3293248 +0.3637862 0.1950164 0.3293248 +0.3795513 0.1950164 0.3293248 +0.3944623 0.1950164 0.3293248 +0.4085988 0.1950164 0.3293248 +0.4220313 0.1950164 0.3293248 +0.4348222 0.1950164 0.3293248 +0.4470264 0.1950164 0.3293248 +0.4586928 0.1950164 0.3293248 +0.4698649 0.1950164 0.3293248 +0.4805811 0.1950164 0.3293248 +0.490876 0.1950164 0.3293248 +0.5007803 0.1950164 0.3293248 +0.510322 0.1950164 0.3293248 +0.5195258 0.1950164 0.3293248 +0.5284142 0.1950164 0.3293248 +0.5370079 0.1950164 0.3293248 +0.5453253 0.1950164 0.3293248 +0.5533834 0.1950164 0.3293248 +0.5611974 0.1950164 0.3293248 +0.5687816 0.1950164 0.3293248 +0.092819 0.2210581 0.3293248 +0.1056428 0.2210581 0.3293248 +0.1201537 0.2210581 0.3293248 +0.1409607 0.2210581 0.3293248 +0.1678172 0.2210581 0.3293248 +0.1950164 0.2210581 0.3293248 +0.2210581 0.2210581 0.3293248 +0.245636 0.2210581 0.3293248 +0.2686816 0.2210581 0.3293248 +0.2902431 0.2210581 0.3293248 +0.3104189 0.2210581 0.3293248 +0.3293248 0.2210581 0.3293248 +0.3470774 0.2210581 0.3293248 +0.3637862 0.2210581 0.3293248 +0.3795513 0.2210581 0.3293248 +0.3944623 0.2210581 0.3293248 +0.4085988 0.2210581 0.3293248 +0.4220313 0.2210581 0.3293248 +0.4348222 0.2210581 0.3293248 +0.4470264 0.2210581 0.3293248 +0.4586928 0.2210581 0.3293248 +0.4698649 0.2210581 0.3293248 +0.4805811 0.2210581 0.3293248 +0.490876 0.2210581 0.3293248 +0.5007803 0.2210581 0.3293248 +0.510322 0.2210581 0.3293248 +0.5195258 0.2210581 0.3293248 +0.5284142 0.2210581 0.3293248 +0.5370079 0.2210581 0.3293248 +0.5453253 0.2210581 0.3293248 +0.5533834 0.2210581 0.3293248 +0.5611974 0.2210581 0.3293248 +0.5687816 0.2210581 0.3293248 +0.092819 0.245636 0.3293248 +0.1056428 0.245636 0.3293248 +0.1201537 0.245636 0.3293248 +0.1409607 0.245636 0.3293248 +0.1678172 0.245636 0.3293248 +0.1950164 0.245636 0.3293248 +0.2210581 0.245636 0.3293248 +0.245636 0.245636 0.3293248 +0.2686816 0.245636 0.3293248 +0.2902431 0.245636 0.3293248 +0.3104189 0.245636 0.3293248 +0.3293248 0.245636 0.3293248 +0.3470774 0.245636 0.3293248 +0.3637862 0.245636 0.3293248 +0.3795513 0.245636 0.3293248 +0.3944623 0.245636 0.3293248 +0.4085988 0.245636 0.3293248 +0.4220313 0.245636 0.3293248 +0.4348222 0.245636 0.3293248 +0.4470264 0.245636 0.3293248 +0.4586928 0.245636 0.3293248 +0.4698649 0.245636 0.3293248 +0.4805811 0.245636 0.3293248 +0.490876 0.245636 0.3293248 +0.5007803 0.245636 0.3293248 +0.510322 0.245636 0.3293248 +0.5195258 0.245636 0.3293248 +0.5284142 0.245636 0.3293248 +0.5370079 0.245636 0.3293248 +0.5453253 0.245636 0.3293248 +0.5533834 0.245636 0.3293248 +0.5611974 0.245636 0.3293248 +0.5687816 0.245636 0.3293248 +0.092819 0.2686816 0.3293248 +0.1056428 0.2686816 0.3293248 +0.1201537 0.2686816 0.3293248 +0.1409607 0.2686816 0.3293248 +0.1678172 0.2686816 0.3293248 +0.1950164 0.2686816 0.3293248 +0.2210581 0.2686816 0.3293248 +0.245636 0.2686816 0.3293248 +0.2686816 0.2686816 0.3293248 +0.2902431 0.2686816 0.3293248 +0.3104189 0.2686816 0.3293248 +0.3293248 0.2686816 0.3293248 +0.3470774 0.2686816 0.3293248 +0.3637862 0.2686816 0.3293248 +0.3795513 0.2686816 0.3293248 +0.3944623 0.2686816 0.3293248 +0.4085988 0.2686816 0.3293248 +0.4220313 0.2686816 0.3293248 +0.4348222 0.2686816 0.3293248 +0.4470264 0.2686816 0.3293248 +0.4586928 0.2686816 0.3293248 +0.4698649 0.2686816 0.3293248 +0.4805811 0.2686816 0.3293248 +0.490876 0.2686816 0.3293248 +0.5007803 0.2686816 0.3293248 +0.510322 0.2686816 0.3293248 +0.5195258 0.2686816 0.3293248 +0.5284142 0.2686816 0.3293248 +0.5370079 0.2686816 0.3293248 +0.5453253 0.2686816 0.3293248 +0.5533834 0.2686816 0.3293248 +0.5611974 0.2686816 0.3293248 +0.5687816 0.2686816 0.3293248 +0.092819 0.2902431 0.3293248 +0.1056428 0.2902431 0.3293248 +0.1201537 0.2902431 0.3293248 +0.1409607 0.2902431 0.3293248 +0.1678172 0.2902431 0.3293248 +0.1950164 0.2902431 0.3293248 +0.2210581 0.2902431 0.3293248 +0.245636 0.2902431 0.3293248 +0.2686816 0.2902431 0.3293248 +0.2902431 0.2902431 0.3293248 +0.3104189 0.2902431 0.3293248 +0.3293248 0.2902431 0.3293248 +0.3470774 0.2902431 0.3293248 +0.3637862 0.2902431 0.3293248 +0.3795513 0.2902431 0.3293248 +0.3944623 0.2902431 0.3293248 +0.4085988 0.2902431 0.3293248 +0.4220313 0.2902431 0.3293248 +0.4348222 0.2902431 0.3293248 +0.4470264 0.2902431 0.3293248 +0.4586928 0.2902431 0.3293248 +0.4698649 0.2902431 0.3293248 +0.4805811 0.2902431 0.3293248 +0.490876 0.2902431 0.3293248 +0.5007803 0.2902431 0.3293248 +0.510322 0.2902431 0.3293248 +0.5195258 0.2902431 0.3293248 +0.5284142 0.2902431 0.3293248 +0.5370079 0.2902431 0.3293248 +0.5453253 0.2902431 0.3293248 +0.5533834 0.2902431 0.3293248 +0.5611974 0.2902431 0.3293248 +0.5687816 0.2902431 0.3293248 +0.092819 0.3104189 0.3293248 +0.1056428 0.3104189 0.3293248 +0.1201537 0.3104189 0.3293248 +0.1409607 0.3104189 0.3293248 +0.1678172 0.3104189 0.3293248 +0.1950164 0.3104189 0.3293248 +0.2210581 0.3104189 0.3293248 +0.245636 0.3104189 0.3293248 +0.2686816 0.3104189 0.3293248 +0.2902431 0.3104189 0.3293248 +0.3104189 0.3104189 0.3293248 +0.3293248 0.3104189 0.3293248 +0.3470774 0.3104189 0.3293248 +0.3637862 0.3104189 0.3293248 +0.3795513 0.3104189 0.3293248 +0.3944623 0.3104189 0.3293248 +0.4085988 0.3104189 0.3293248 +0.4220313 0.3104189 0.3293248 +0.4348222 0.3104189 0.3293248 +0.4470264 0.3104189 0.3293248 +0.4586928 0.3104189 0.3293248 +0.4698649 0.3104189 0.3293248 +0.4805811 0.3104189 0.3293248 +0.490876 0.3104189 0.3293248 +0.5007803 0.3104189 0.3293248 +0.510322 0.3104189 0.3293248 +0.5195258 0.3104189 0.3293248 +0.5284142 0.3104189 0.3293248 +0.5370079 0.3104189 0.3293248 +0.5453253 0.3104189 0.3293248 +0.5533834 0.3104189 0.3293248 +0.5611974 0.3104189 0.3293248 +0.5687816 0.3104189 0.3293248 +0.092819 0.3293248 0.3293248 +0.1056428 0.3293248 0.3293248 +0.1201537 0.3293248 0.3293248 +0.1409607 0.3293248 0.3293248 +0.1678172 0.3293248 0.3293248 +0.1950164 0.3293248 0.3293248 +0.2210581 0.3293248 0.3293248 +0.245636 0.3293248 0.3293248 +0.2686816 0.3293248 0.3293248 +0.2902431 0.3293248 0.3293248 +0.3104189 0.3293248 0.3293248 +0.3293248 0.3293248 0.3293248 +0.3470774 0.3293248 0.3293248 +0.3637862 0.3293248 0.3293248 +0.3795513 0.3293248 0.3293248 +0.3944623 0.3293248 0.3293248 +0.4085988 0.3293248 0.3293248 +0.4220313 0.3293248 0.3293248 +0.4348222 0.3293248 0.3293248 +0.4470264 0.3293248 0.3293248 +0.4586928 0.3293248 0.3293248 +0.4698649 0.3293248 0.3293248 +0.4805811 0.3293248 0.3293248 +0.490876 0.3293248 0.3293248 +0.5007803 0.3293248 0.3293248 +0.510322 0.3293248 0.3293248 +0.5195258 0.3293248 0.3293248 +0.5284142 0.3293248 0.3293248 +0.5370079 0.3293248 0.3293248 +0.5453253 0.3293248 0.3293248 +0.5533834 0.3293248 0.3293248 +0.5611974 0.3293248 0.3293248 +0.5687816 0.3293248 0.3293248 +0.092819 0.3470774 0.3293248 +0.1056428 0.3470774 0.3293248 +0.1201537 0.3470774 0.3293248 +0.1409607 0.3470774 0.3293248 +0.1678172 0.3470774 0.3293248 +0.1950164 0.3470774 0.3293248 +0.2210581 0.3470774 0.3293248 +0.245636 0.3470774 0.3293248 +0.2686816 0.3470774 0.3293248 +0.2902431 0.3470774 0.3293248 +0.3104189 0.3470774 0.3293248 +0.3293248 0.3470774 0.3293248 +0.3470774 0.3470774 0.3293248 +0.3637862 0.3470774 0.3293248 +0.3795513 0.3470774 0.3293248 +0.3944623 0.3470774 0.3293248 +0.4085988 0.3470774 0.3293248 +0.4220313 0.3470774 0.3293248 +0.4348222 0.3470774 0.3293248 +0.4470264 0.3470774 0.3293248 +0.4586928 0.3470774 0.3293248 +0.4698649 0.3470774 0.3293248 +0.4805811 0.3470774 0.3293248 +0.490876 0.3470774 0.3293248 +0.5007803 0.3470774 0.3293248 +0.510322 0.3470774 0.3293248 +0.5195258 0.3470774 0.3293248 +0.5284142 0.3470774 0.3293248 +0.5370079 0.3470774 0.3293248 +0.5453253 0.3470774 0.3293248 +0.5533834 0.3470774 0.3293248 +0.5611974 0.3470774 0.3293248 +0.5687816 0.3470774 0.3293248 +0.092819 0.3637862 0.3293248 +0.1056428 0.3637862 0.3293248 +0.1201537 0.3637862 0.3293248 +0.1409607 0.3637862 0.3293248 +0.1678172 0.3637862 0.3293248 +0.1950164 0.3637862 0.3293248 +0.2210581 0.3637862 0.3293248 +0.245636 0.3637862 0.3293248 +0.2686816 0.3637862 0.3293248 +0.2902431 0.3637862 0.3293248 +0.3104189 0.3637862 0.3293248 +0.3293248 0.3637862 0.3293248 +0.3470774 0.3637862 0.3293248 +0.3637862 0.3637862 0.3293248 +0.3795513 0.3637862 0.3293248 +0.3944623 0.3637862 0.3293248 +0.4085988 0.3637862 0.3293248 +0.4220313 0.3637862 0.3293248 +0.4348222 0.3637862 0.3293248 +0.4470264 0.3637862 0.3293248 +0.4586928 0.3637862 0.3293248 +0.4698649 0.3637862 0.3293248 +0.4805811 0.3637862 0.3293248 +0.490876 0.3637862 0.3293248 +0.5007803 0.3637862 0.3293248 +0.510322 0.3637862 0.3293248 +0.5195258 0.3637862 0.3293248 +0.5284142 0.3637862 0.3293248 +0.5370079 0.3637862 0.3293248 +0.5453253 0.3637862 0.3293248 +0.5533834 0.3637862 0.3293248 +0.5611974 0.3637862 0.3293248 +0.5687816 0.3637862 0.3293248 +0.092819 0.3795513 0.3293248 +0.1056428 0.3795513 0.3293248 +0.1201537 0.3795513 0.3293248 +0.1409607 0.3795513 0.3293248 +0.1678172 0.3795513 0.3293248 +0.1950164 0.3795513 0.3293248 +0.2210581 0.3795513 0.3293248 +0.245636 0.3795513 0.3293248 +0.2686816 0.3795513 0.3293248 +0.2902431 0.3795513 0.3293248 +0.3104189 0.3795513 0.3293248 +0.3293248 0.3795513 0.3293248 +0.3470774 0.3795513 0.3293248 +0.3637862 0.3795513 0.3293248 +0.3795513 0.3795513 0.3293248 +0.3944623 0.3795513 0.3293248 +0.4085988 0.3795513 0.3293248 +0.4220313 0.3795513 0.3293248 +0.4348222 0.3795513 0.3293248 +0.4470264 0.3795513 0.3293248 +0.4586928 0.3795513 0.3293248 +0.4698649 0.3795513 0.3293248 +0.4805811 0.3795513 0.3293248 +0.490876 0.3795513 0.3293248 +0.5007803 0.3795513 0.3293248 +0.510322 0.3795513 0.3293248 +0.5195258 0.3795513 0.3293248 +0.5284142 0.3795513 0.3293248 +0.5370079 0.3795513 0.3293248 +0.5453253 0.3795513 0.3293248 +0.5533834 0.3795513 0.3293248 +0.5611974 0.3795513 0.3293248 +0.5687816 0.3795513 0.3293248 +0.092819 0.3944623 0.3293248 +0.1056428 0.3944623 0.3293248 +0.1201537 0.3944623 0.3293248 +0.1409607 0.3944623 0.3293248 +0.1678172 0.3944623 0.3293248 +0.1950164 0.3944623 0.3293248 +0.2210581 0.3944623 0.3293248 +0.245636 0.3944623 0.3293248 +0.2686816 0.3944623 0.3293248 +0.2902431 0.3944623 0.3293248 +0.3104189 0.3944623 0.3293248 +0.3293248 0.3944623 0.3293248 +0.3470774 0.3944623 0.3293248 +0.3637862 0.3944623 0.3293248 +0.3795513 0.3944623 0.3293248 +0.3944623 0.3944623 0.3293248 +0.4085988 0.3944623 0.3293248 +0.4220313 0.3944623 0.3293248 +0.4348222 0.3944623 0.3293248 +0.4470264 0.3944623 0.3293248 +0.4586928 0.3944623 0.3293248 +0.4698649 0.3944623 0.3293248 +0.4805811 0.3944623 0.3293248 +0.490876 0.3944623 0.3293248 +0.5007803 0.3944623 0.3293248 +0.510322 0.3944623 0.3293248 +0.5195258 0.3944623 0.3293248 +0.5284142 0.3944623 0.3293248 +0.5370079 0.3944623 0.3293248 +0.5453253 0.3944623 0.3293248 +0.5533834 0.3944623 0.3293248 +0.5611974 0.3944623 0.3293248 +0.5687816 0.3944623 0.3293248 +0.092819 0.4085988 0.3293248 +0.1056428 0.4085988 0.3293248 +0.1201537 0.4085988 0.3293248 +0.1409607 0.4085988 0.3293248 +0.1678172 0.4085988 0.3293248 +0.1950164 0.4085988 0.3293248 +0.2210581 0.4085988 0.3293248 +0.245636 0.4085988 0.3293248 +0.2686816 0.4085988 0.3293248 +0.2902431 0.4085988 0.3293248 +0.3104189 0.4085988 0.3293248 +0.3293248 0.4085988 0.3293248 +0.3470774 0.4085988 0.3293248 +0.3637862 0.4085988 0.3293248 +0.3795513 0.4085988 0.3293248 +0.3944623 0.4085988 0.3293248 +0.4085988 0.4085988 0.3293248 +0.4220313 0.4085988 0.3293248 +0.4348222 0.4085988 0.3293248 +0.4470264 0.4085988 0.3293248 +0.4586928 0.4085988 0.3293248 +0.4698649 0.4085988 0.3293248 +0.4805811 0.4085988 0.3293248 +0.490876 0.4085988 0.3293248 +0.5007803 0.4085988 0.3293248 +0.510322 0.4085988 0.3293248 +0.5195258 0.4085988 0.3293248 +0.5284142 0.4085988 0.3293248 +0.5370079 0.4085988 0.3293248 +0.5453253 0.4085988 0.3293248 +0.5533834 0.4085988 0.3293248 +0.5611974 0.4085988 0.3293248 +0.5687816 0.4085988 0.3293248 +0.092819 0.4220313 0.3293248 +0.1056428 0.4220313 0.3293248 +0.1201537 0.4220313 0.3293248 +0.1409607 0.4220313 0.3293248 +0.1678172 0.4220313 0.3293248 +0.1950164 0.4220313 0.3293248 +0.2210581 0.4220313 0.3293248 +0.245636 0.4220313 0.3293248 +0.2686816 0.4220313 0.3293248 +0.2902431 0.4220313 0.3293248 +0.3104189 0.4220313 0.3293248 +0.3293248 0.4220313 0.3293248 +0.3470774 0.4220313 0.3293248 +0.3637862 0.4220313 0.3293248 +0.3795513 0.4220313 0.3293248 +0.3944623 0.4220313 0.3293248 +0.4085988 0.4220313 0.3293248 +0.4220313 0.4220313 0.3293248 +0.4348222 0.4220313 0.3293248 +0.4470264 0.4220313 0.3293248 +0.4586928 0.4220313 0.3293248 +0.4698649 0.4220313 0.3293248 +0.4805811 0.4220313 0.3293248 +0.490876 0.4220313 0.3293248 +0.5007803 0.4220313 0.3293248 +0.510322 0.4220313 0.3293248 +0.5195258 0.4220313 0.3293248 +0.5284142 0.4220313 0.3293248 +0.5370079 0.4220313 0.3293248 +0.5453253 0.4220313 0.3293248 +0.5533834 0.4220313 0.3293248 +0.5611974 0.4220313 0.3293248 +0.5687816 0.4220313 0.3293248 +0.092819 0.4348222 0.3293248 +0.1056428 0.4348222 0.3293248 +0.1201537 0.4348222 0.3293248 +0.1409607 0.4348222 0.3293248 +0.1678172 0.4348222 0.3293248 +0.1950164 0.4348222 0.3293248 +0.2210581 0.4348222 0.3293248 +0.245636 0.4348222 0.3293248 +0.2686816 0.4348222 0.3293248 +0.2902431 0.4348222 0.3293248 +0.3104189 0.4348222 0.3293248 +0.3293248 0.4348222 0.3293248 +0.3470774 0.4348222 0.3293248 +0.3637862 0.4348222 0.3293248 +0.3795513 0.4348222 0.3293248 +0.3944623 0.4348222 0.3293248 +0.4085988 0.4348222 0.3293248 +0.4220313 0.4348222 0.3293248 +0.4348222 0.4348222 0.3293248 +0.4470264 0.4348222 0.3293248 +0.4586928 0.4348222 0.3293248 +0.4698649 0.4348222 0.3293248 +0.4805811 0.4348222 0.3293248 +0.490876 0.4348222 0.3293248 +0.5007803 0.4348222 0.3293248 +0.510322 0.4348222 0.3293248 +0.5195258 0.4348222 0.3293248 +0.5284142 0.4348222 0.3293248 +0.5370079 0.4348222 0.3293248 +0.5453253 0.4348222 0.3293248 +0.5533834 0.4348222 0.3293248 +0.5611974 0.4348222 0.3293248 +0.5687816 0.4348222 0.3293248 +0.092819 0.4470264 0.3293248 +0.1056428 0.4470264 0.3293248 +0.1201537 0.4470264 0.3293248 +0.1409607 0.4470264 0.3293248 +0.1678172 0.4470264 0.3293248 +0.1950164 0.4470264 0.3293248 +0.2210581 0.4470264 0.3293248 +0.245636 0.4470264 0.3293248 +0.2686816 0.4470264 0.3293248 +0.2902431 0.4470264 0.3293248 +0.3104189 0.4470264 0.3293248 +0.3293248 0.4470264 0.3293248 +0.3470774 0.4470264 0.3293248 +0.3637862 0.4470264 0.3293248 +0.3795513 0.4470264 0.3293248 +0.3944623 0.4470264 0.3293248 +0.4085988 0.4470264 0.3293248 +0.4220313 0.4470264 0.3293248 +0.4348222 0.4470264 0.3293248 +0.4470264 0.4470264 0.3293248 +0.4586928 0.4470264 0.3293248 +0.4698649 0.4470264 0.3293248 +0.4805811 0.4470264 0.3293248 +0.490876 0.4470264 0.3293248 +0.5007803 0.4470264 0.3293248 +0.510322 0.4470264 0.3293248 +0.5195258 0.4470264 0.3293248 +0.5284142 0.4470264 0.3293248 +0.5370079 0.4470264 0.3293248 +0.5453253 0.4470264 0.3293248 +0.5533834 0.4470264 0.3293248 +0.5611974 0.4470264 0.3293248 +0.5687816 0.4470264 0.3293248 +0.092819 0.4586928 0.3293248 +0.1056428 0.4586928 0.3293248 +0.1201537 0.4586928 0.3293248 +0.1409607 0.4586928 0.3293248 +0.1678172 0.4586928 0.3293248 +0.1950164 0.4586928 0.3293248 +0.2210581 0.4586928 0.3293248 +0.245636 0.4586928 0.3293248 +0.2686816 0.4586928 0.3293248 +0.2902431 0.4586928 0.3293248 +0.3104189 0.4586928 0.3293248 +0.3293248 0.4586928 0.3293248 +0.3470774 0.4586928 0.3293248 +0.3637862 0.4586928 0.3293248 +0.3795513 0.4586928 0.3293248 +0.3944623 0.4586928 0.3293248 +0.4085988 0.4586928 0.3293248 +0.4220313 0.4586928 0.3293248 +0.4348222 0.4586928 0.3293248 +0.4470264 0.4586928 0.3293248 +0.4586928 0.4586928 0.3293248 +0.4698649 0.4586928 0.3293248 +0.4805811 0.4586928 0.3293248 +0.490876 0.4586928 0.3293248 +0.5007803 0.4586928 0.3293248 +0.510322 0.4586928 0.3293248 +0.5195258 0.4586928 0.3293248 +0.5284142 0.4586928 0.3293248 +0.5370079 0.4586928 0.3293248 +0.5453253 0.4586928 0.3293248 +0.5533834 0.4586928 0.3293248 +0.5611974 0.4586928 0.3293248 +0.5687816 0.4586928 0.3293248 +0.092819 0.4698649 0.3293248 +0.1056428 0.4698649 0.3293248 +0.1201537 0.4698649 0.3293248 +0.1409607 0.4698649 0.3293248 +0.1678172 0.4698649 0.3293248 +0.1950164 0.4698649 0.3293248 +0.2210581 0.4698649 0.3293248 +0.245636 0.4698649 0.3293248 +0.2686816 0.4698649 0.3293248 +0.2902431 0.4698649 0.3293248 +0.3104189 0.4698649 0.3293248 +0.3293248 0.4698649 0.3293248 +0.3470774 0.4698649 0.3293248 +0.3637862 0.4698649 0.3293248 +0.3795513 0.4698649 0.3293248 +0.3944623 0.4698649 0.3293248 +0.4085988 0.4698649 0.3293248 +0.4220313 0.4698649 0.3293248 +0.4348222 0.4698649 0.3293248 +0.4470264 0.4698649 0.3293248 +0.4586928 0.4698649 0.3293248 +0.4698649 0.4698649 0.3293248 +0.4805811 0.4698649 0.3293248 +0.490876 0.4698649 0.3293248 +0.5007803 0.4698649 0.3293248 +0.510322 0.4698649 0.3293248 +0.5195258 0.4698649 0.3293248 +0.5284142 0.4698649 0.3293248 +0.5370079 0.4698649 0.3293248 +0.5453253 0.4698649 0.3293248 +0.5533834 0.4698649 0.3293248 +0.5611974 0.4698649 0.3293248 +0.5687816 0.4698649 0.3293248 +0.092819 0.4805811 0.3293248 +0.1056428 0.4805811 0.3293248 +0.1201537 0.4805811 0.3293248 +0.1409607 0.4805811 0.3293248 +0.1678172 0.4805811 0.3293248 +0.1950164 0.4805811 0.3293248 +0.2210581 0.4805811 0.3293248 +0.245636 0.4805811 0.3293248 +0.2686816 0.4805811 0.3293248 +0.2902431 0.4805811 0.3293248 +0.3104189 0.4805811 0.3293248 +0.3293248 0.4805811 0.3293248 +0.3470774 0.4805811 0.3293248 +0.3637862 0.4805811 0.3293248 +0.3795513 0.4805811 0.3293248 +0.3944623 0.4805811 0.3293248 +0.4085988 0.4805811 0.3293248 +0.4220313 0.4805811 0.3293248 +0.4348222 0.4805811 0.3293248 +0.4470264 0.4805811 0.3293248 +0.4586928 0.4805811 0.3293248 +0.4698649 0.4805811 0.3293248 +0.4805811 0.4805811 0.3293248 +0.490876 0.4805811 0.3293248 +0.5007803 0.4805811 0.3293248 +0.510322 0.4805811 0.3293248 +0.5195258 0.4805811 0.3293248 +0.5284142 0.4805811 0.3293248 +0.5370079 0.4805811 0.3293248 +0.5453253 0.4805811 0.3293248 +0.5533834 0.4805811 0.3293248 +0.5611974 0.4805811 0.3293248 +0.5687816 0.4805811 0.3293248 +0.092819 0.490876 0.3293248 +0.1056428 0.490876 0.3293248 +0.1201537 0.490876 0.3293248 +0.1409607 0.490876 0.3293248 +0.1678172 0.490876 0.3293248 +0.1950164 0.490876 0.3293248 +0.2210581 0.490876 0.3293248 +0.245636 0.490876 0.3293248 +0.2686816 0.490876 0.3293248 +0.2902431 0.490876 0.3293248 +0.3104189 0.490876 0.3293248 +0.3293248 0.490876 0.3293248 +0.3470774 0.490876 0.3293248 +0.3637862 0.490876 0.3293248 +0.3795513 0.490876 0.3293248 +0.3944623 0.490876 0.3293248 +0.4085988 0.490876 0.3293248 +0.4220313 0.490876 0.3293248 +0.4348222 0.490876 0.3293248 +0.4470264 0.490876 0.3293248 +0.4586928 0.490876 0.3293248 +0.4698649 0.490876 0.3293248 +0.4805811 0.490876 0.3293248 +0.490876 0.490876 0.3293248 +0.5007803 0.490876 0.3293248 +0.510322 0.490876 0.3293248 +0.5195258 0.490876 0.3293248 +0.5284142 0.490876 0.3293248 +0.5370079 0.490876 0.3293248 +0.5453253 0.490876 0.3293248 +0.5533834 0.490876 0.3293248 +0.5611974 0.490876 0.3293248 +0.5687816 0.490876 0.3293248 +0.092819 0.5007803 0.3293248 +0.1056428 0.5007803 0.3293248 +0.1201537 0.5007803 0.3293248 +0.1409607 0.5007803 0.3293248 +0.1678172 0.5007803 0.3293248 +0.1950164 0.5007803 0.3293248 +0.2210581 0.5007803 0.3293248 +0.245636 0.5007803 0.3293248 +0.2686816 0.5007803 0.3293248 +0.2902431 0.5007803 0.3293248 +0.3104189 0.5007803 0.3293248 +0.3293248 0.5007803 0.3293248 +0.3470774 0.5007803 0.3293248 +0.3637862 0.5007803 0.3293248 +0.3795513 0.5007803 0.3293248 +0.3944623 0.5007803 0.3293248 +0.4085988 0.5007803 0.3293248 +0.4220313 0.5007803 0.3293248 +0.4348222 0.5007803 0.3293248 +0.4470264 0.5007803 0.3293248 +0.4586928 0.5007803 0.3293248 +0.4698649 0.5007803 0.3293248 +0.4805811 0.5007803 0.3293248 +0.490876 0.5007803 0.3293248 +0.5007803 0.5007803 0.3293248 +0.510322 0.5007803 0.3293248 +0.5195258 0.5007803 0.3293248 +0.5284142 0.5007803 0.3293248 +0.5370079 0.5007803 0.3293248 +0.5453253 0.5007803 0.3293248 +0.5533834 0.5007803 0.3293248 +0.5611974 0.5007803 0.3293248 +0.5687816 0.5007803 0.3293248 +0.092819 0.510322 0.3293248 +0.1056428 0.510322 0.3293248 +0.1201537 0.510322 0.3293248 +0.1409607 0.510322 0.3293248 +0.1678172 0.510322 0.3293248 +0.1950164 0.510322 0.3293248 +0.2210581 0.510322 0.3293248 +0.245636 0.510322 0.3293248 +0.2686816 0.510322 0.3293248 +0.2902431 0.510322 0.3293248 +0.3104189 0.510322 0.3293248 +0.3293248 0.510322 0.3293248 +0.3470774 0.510322 0.3293248 +0.3637862 0.510322 0.3293248 +0.3795513 0.510322 0.3293248 +0.3944623 0.510322 0.3293248 +0.4085988 0.510322 0.3293248 +0.4220313 0.510322 0.3293248 +0.4348222 0.510322 0.3293248 +0.4470264 0.510322 0.3293248 +0.4586928 0.510322 0.3293248 +0.4698649 0.510322 0.3293248 +0.4805811 0.510322 0.3293248 +0.490876 0.510322 0.3293248 +0.5007803 0.510322 0.3293248 +0.510322 0.510322 0.3293248 +0.5195258 0.510322 0.3293248 +0.5284142 0.510322 0.3293248 +0.5370079 0.510322 0.3293248 +0.5453253 0.510322 0.3293248 +0.5533834 0.510322 0.3293248 +0.5611974 0.510322 0.3293248 +0.5687816 0.510322 0.3293248 +0.092819 0.5195258 0.3293248 +0.1056428 0.5195258 0.3293248 +0.1201537 0.5195258 0.3293248 +0.1409607 0.5195258 0.3293248 +0.1678172 0.5195258 0.3293248 +0.1950164 0.5195258 0.3293248 +0.2210581 0.5195258 0.3293248 +0.245636 0.5195258 0.3293248 +0.2686816 0.5195258 0.3293248 +0.2902431 0.5195258 0.3293248 +0.3104189 0.5195258 0.3293248 +0.3293248 0.5195258 0.3293248 +0.3470774 0.5195258 0.3293248 +0.3637862 0.5195258 0.3293248 +0.3795513 0.5195258 0.3293248 +0.3944623 0.5195258 0.3293248 +0.4085988 0.5195258 0.3293248 +0.4220313 0.5195258 0.3293248 +0.4348222 0.5195258 0.3293248 +0.4470264 0.5195258 0.3293248 +0.4586928 0.5195258 0.3293248 +0.4698649 0.5195258 0.3293248 +0.4805811 0.5195258 0.3293248 +0.490876 0.5195258 0.3293248 +0.5007803 0.5195258 0.3293248 +0.510322 0.5195258 0.3293248 +0.5195258 0.5195258 0.3293248 +0.5284142 0.5195258 0.3293248 +0.5370079 0.5195258 0.3293248 +0.5453253 0.5195258 0.3293248 +0.5533834 0.5195258 0.3293248 +0.5611974 0.5195258 0.3293248 +0.5687816 0.5195258 0.3293248 +0.092819 0.5284142 0.3293248 +0.1056428 0.5284142 0.3293248 +0.1201537 0.5284142 0.3293248 +0.1409607 0.5284142 0.3293248 +0.1678172 0.5284142 0.3293248 +0.1950164 0.5284142 0.3293248 +0.2210581 0.5284142 0.3293248 +0.245636 0.5284142 0.3293248 +0.2686816 0.5284142 0.3293248 +0.2902431 0.5284142 0.3293248 +0.3104189 0.5284142 0.3293248 +0.3293248 0.5284142 0.3293248 +0.3470774 0.5284142 0.3293248 +0.3637862 0.5284142 0.3293248 +0.3795513 0.5284142 0.3293248 +0.3944623 0.5284142 0.3293248 +0.4085988 0.5284142 0.3293248 +0.4220313 0.5284142 0.3293248 +0.4348222 0.5284142 0.3293248 +0.4470264 0.5284142 0.3293248 +0.4586928 0.5284142 0.3293248 +0.4698649 0.5284142 0.3293248 +0.4805811 0.5284142 0.3293248 +0.490876 0.5284142 0.3293248 +0.5007803 0.5284142 0.3293248 +0.510322 0.5284142 0.3293248 +0.5195258 0.5284142 0.3293248 +0.5284142 0.5284142 0.3293248 +0.5370079 0.5284142 0.3293248 +0.5453253 0.5284142 0.3293248 +0.5533834 0.5284142 0.3293248 +0.5611974 0.5284142 0.3293248 +0.5687816 0.5284142 0.3293248 +0.092819 0.5370079 0.3293248 +0.1056428 0.5370079 0.3293248 +0.1201537 0.5370079 0.3293248 +0.1409607 0.5370079 0.3293248 +0.1678172 0.5370079 0.3293248 +0.1950164 0.5370079 0.3293248 +0.2210581 0.5370079 0.3293248 +0.245636 0.5370079 0.3293248 +0.2686816 0.5370079 0.3293248 +0.2902431 0.5370079 0.3293248 +0.3104189 0.5370079 0.3293248 +0.3293248 0.5370079 0.3293248 +0.3470774 0.5370079 0.3293248 +0.3637862 0.5370079 0.3293248 +0.3795513 0.5370079 0.3293248 +0.3944623 0.5370079 0.3293248 +0.4085988 0.5370079 0.3293248 +0.4220313 0.5370079 0.3293248 +0.4348222 0.5370079 0.3293248 +0.4470264 0.5370079 0.3293248 +0.4586928 0.5370079 0.3293248 +0.4698649 0.5370079 0.3293248 +0.4805811 0.5370079 0.3293248 +0.490876 0.5370079 0.3293248 +0.5007803 0.5370079 0.3293248 +0.510322 0.5370079 0.3293248 +0.5195258 0.5370079 0.3293248 +0.5284142 0.5370079 0.3293248 +0.5370079 0.5370079 0.3293248 +0.5453253 0.5370079 0.3293248 +0.5533834 0.5370079 0.3293248 +0.5611974 0.5370079 0.3293248 +0.5687816 0.5370079 0.3293248 +0.092819 0.5453253 0.3293248 +0.1056428 0.5453253 0.3293248 +0.1201537 0.5453253 0.3293248 +0.1409607 0.5453253 0.3293248 +0.1678172 0.5453253 0.3293248 +0.1950164 0.5453253 0.3293248 +0.2210581 0.5453253 0.3293248 +0.245636 0.5453253 0.3293248 +0.2686816 0.5453253 0.3293248 +0.2902431 0.5453253 0.3293248 +0.3104189 0.5453253 0.3293248 +0.3293248 0.5453253 0.3293248 +0.3470774 0.5453253 0.3293248 +0.3637862 0.5453253 0.3293248 +0.3795513 0.5453253 0.3293248 +0.3944623 0.5453253 0.3293248 +0.4085988 0.5453253 0.3293248 +0.4220313 0.5453253 0.3293248 +0.4348222 0.5453253 0.3293248 +0.4470264 0.5453253 0.3293248 +0.4586928 0.5453253 0.3293248 +0.4698649 0.5453253 0.3293248 +0.4805811 0.5453253 0.3293248 +0.490876 0.5453253 0.3293248 +0.5007803 0.5453253 0.3293248 +0.510322 0.5453253 0.3293248 +0.5195258 0.5453253 0.3293248 +0.5284142 0.5453253 0.3293248 +0.5370079 0.5453253 0.3293248 +0.5453253 0.5453253 0.3293248 +0.5533834 0.5453253 0.3293248 +0.5611974 0.5453253 0.3293248 +0.5687816 0.5453253 0.3293248 +0.092819 0.5533834 0.3293248 +0.1056428 0.5533834 0.3293248 +0.1201537 0.5533834 0.3293248 +0.1409607 0.5533834 0.3293248 +0.1678172 0.5533834 0.3293248 +0.1950164 0.5533834 0.3293248 +0.2210581 0.5533834 0.3293248 +0.245636 0.5533834 0.3293248 +0.2686816 0.5533834 0.3293248 +0.2902431 0.5533834 0.3293248 +0.3104189 0.5533834 0.3293248 +0.3293248 0.5533834 0.3293248 +0.3470774 0.5533834 0.3293248 +0.3637862 0.5533834 0.3293248 +0.3795513 0.5533834 0.3293248 +0.3944623 0.5533834 0.3293248 +0.4085988 0.5533834 0.3293248 +0.4220313 0.5533834 0.3293248 +0.4348222 0.5533834 0.3293248 +0.4470264 0.5533834 0.3293248 +0.4586928 0.5533834 0.3293248 +0.4698649 0.5533834 0.3293248 +0.4805811 0.5533834 0.3293248 +0.490876 0.5533834 0.3293248 +0.5007803 0.5533834 0.3293248 +0.510322 0.5533834 0.3293248 +0.5195258 0.5533834 0.3293248 +0.5284142 0.5533834 0.3293248 +0.5370079 0.5533834 0.3293248 +0.5453253 0.5533834 0.3293248 +0.5533834 0.5533834 0.3293248 +0.5611974 0.5533834 0.3293248 +0.5687816 0.5533834 0.3293248 +0.092819 0.5611974 0.3293248 +0.1056428 0.5611974 0.3293248 +0.1201537 0.5611974 0.3293248 +0.1409607 0.5611974 0.3293248 +0.1678172 0.5611974 0.3293248 +0.1950164 0.5611974 0.3293248 +0.2210581 0.5611974 0.3293248 +0.245636 0.5611974 0.3293248 +0.2686816 0.5611974 0.3293248 +0.2902431 0.5611974 0.3293248 +0.3104189 0.5611974 0.3293248 +0.3293248 0.5611974 0.3293248 +0.3470774 0.5611974 0.3293248 +0.3637862 0.5611974 0.3293248 +0.3795513 0.5611974 0.3293248 +0.3944623 0.5611974 0.3293248 +0.4085988 0.5611974 0.3293248 +0.4220313 0.5611974 0.3293248 +0.4348222 0.5611974 0.3293248 +0.4470264 0.5611974 0.3293248 +0.4586928 0.5611974 0.3293248 +0.4698649 0.5611974 0.3293248 +0.4805811 0.5611974 0.3293248 +0.490876 0.5611974 0.3293248 +0.5007803 0.5611974 0.3293248 +0.510322 0.5611974 0.3293248 +0.5195258 0.5611974 0.3293248 +0.5284142 0.5611974 0.3293248 +0.5370079 0.5611974 0.3293248 +0.5453253 0.5611974 0.3293248 +0.5533834 0.5611974 0.3293248 +0.5611974 0.5611974 0.3293248 +0.5687816 0.5611974 0.3293248 +0.092819 0.5687816 0.3293248 +0.1056428 0.5687816 0.3293248 +0.1201537 0.5687816 0.3293248 +0.1409607 0.5687816 0.3293248 +0.1678172 0.5687816 0.3293248 +0.1950164 0.5687816 0.3293248 +0.2210581 0.5687816 0.3293248 +0.245636 0.5687816 0.3293248 +0.2686816 0.5687816 0.3293248 +0.2902431 0.5687816 0.3293248 +0.3104189 0.5687816 0.3293248 +0.3293248 0.5687816 0.3293248 +0.3470774 0.5687816 0.3293248 +0.3637862 0.5687816 0.3293248 +0.3795513 0.5687816 0.3293248 +0.3944623 0.5687816 0.3293248 +0.4085988 0.5687816 0.3293248 +0.4220313 0.5687816 0.3293248 +0.4348222 0.5687816 0.3293248 +0.4470264 0.5687816 0.3293248 +0.4586928 0.5687816 0.3293248 +0.4698649 0.5687816 0.3293248 +0.4805811 0.5687816 0.3293248 +0.490876 0.5687816 0.3293248 +0.5007803 0.5687816 0.3293248 +0.510322 0.5687816 0.3293248 +0.5195258 0.5687816 0.3293248 +0.5284142 0.5687816 0.3293248 +0.5370079 0.5687816 0.3293248 +0.5453253 0.5687816 0.3293248 +0.5533834 0.5687816 0.3293248 +0.5611974 0.5687816 0.3293248 +0.5687816 0.5687816 0.3293248 +0.092819 0.092819 0.3470774 +0.1056428 0.092819 0.3470774 +0.1201537 0.092819 0.3470774 +0.1409607 0.092819 0.3470774 +0.1678172 0.092819 0.3470774 +0.1950164 0.092819 0.3470774 +0.2210581 0.092819 0.3470774 +0.245636 0.092819 0.3470774 +0.2686816 0.092819 0.3470774 +0.2902431 0.092819 0.3470774 +0.3104189 0.092819 0.3470774 +0.3293248 0.092819 0.3470774 +0.3470774 0.092819 0.3470774 +0.3637862 0.092819 0.3470774 +0.3795513 0.092819 0.3470774 +0.3944623 0.092819 0.3470774 +0.4085988 0.092819 0.3470774 +0.4220313 0.092819 0.3470774 +0.4348222 0.092819 0.3470774 +0.4470264 0.092819 0.3470774 +0.4586928 0.092819 0.3470774 +0.4698649 0.092819 0.3470774 +0.4805811 0.092819 0.3470774 +0.490876 0.092819 0.3470774 +0.5007803 0.092819 0.3470774 +0.510322 0.092819 0.3470774 +0.5195258 0.092819 0.3470774 +0.5284142 0.092819 0.3470774 +0.5370079 0.092819 0.3470774 +0.5453253 0.092819 0.3470774 +0.5533834 0.092819 0.3470774 +0.5611974 0.092819 0.3470774 +0.5687816 0.092819 0.3470774 +0.092819 0.1056428 0.3470774 +0.1056428 0.1056428 0.3470774 +0.1201537 0.1056428 0.3470774 +0.1409607 0.1056428 0.3470774 +0.1678172 0.1056428 0.3470774 +0.1950164 0.1056428 0.3470774 +0.2210581 0.1056428 0.3470774 +0.245636 0.1056428 0.3470774 +0.2686816 0.1056428 0.3470774 +0.2902431 0.1056428 0.3470774 +0.3104189 0.1056428 0.3470774 +0.3293248 0.1056428 0.3470774 +0.3470774 0.1056428 0.3470774 +0.3637862 0.1056428 0.3470774 +0.3795513 0.1056428 0.3470774 +0.3944623 0.1056428 0.3470774 +0.4085988 0.1056428 0.3470774 +0.4220313 0.1056428 0.3470774 +0.4348222 0.1056428 0.3470774 +0.4470264 0.1056428 0.3470774 +0.4586928 0.1056428 0.3470774 +0.4698649 0.1056428 0.3470774 +0.4805811 0.1056428 0.3470774 +0.490876 0.1056428 0.3470774 +0.5007803 0.1056428 0.3470774 +0.510322 0.1056428 0.3470774 +0.5195258 0.1056428 0.3470774 +0.5284142 0.1056428 0.3470774 +0.5370079 0.1056428 0.3470774 +0.5453253 0.1056428 0.3470774 +0.5533834 0.1056428 0.3470774 +0.5611974 0.1056428 0.3470774 +0.5687816 0.1056428 0.3470774 +0.092819 0.1201537 0.3470774 +0.1056428 0.1201537 0.3470774 +0.1201537 0.1201537 0.3470774 +0.1409607 0.1201537 0.3470774 +0.1678172 0.1201537 0.3470774 +0.1950164 0.1201537 0.3470774 +0.2210581 0.1201537 0.3470774 +0.245636 0.1201537 0.3470774 +0.2686816 0.1201537 0.3470774 +0.2902431 0.1201537 0.3470774 +0.3104189 0.1201537 0.3470774 +0.3293248 0.1201537 0.3470774 +0.3470774 0.1201537 0.3470774 +0.3637862 0.1201537 0.3470774 +0.3795513 0.1201537 0.3470774 +0.3944623 0.1201537 0.3470774 +0.4085988 0.1201537 0.3470774 +0.4220313 0.1201537 0.3470774 +0.4348222 0.1201537 0.3470774 +0.4470264 0.1201537 0.3470774 +0.4586928 0.1201537 0.3470774 +0.4698649 0.1201537 0.3470774 +0.4805811 0.1201537 0.3470774 +0.490876 0.1201537 0.3470774 +0.5007803 0.1201537 0.3470774 +0.510322 0.1201537 0.3470774 +0.5195258 0.1201537 0.3470774 +0.5284142 0.1201537 0.3470774 +0.5370079 0.1201537 0.3470774 +0.5453253 0.1201537 0.3470774 +0.5533834 0.1201537 0.3470774 +0.5611974 0.1201537 0.3470774 +0.5687816 0.1201537 0.3470774 +0.092819 0.1409607 0.3470774 +0.1056428 0.1409607 0.3470774 +0.1201537 0.1409607 0.3470774 +0.1409607 0.1409607 0.3470774 +0.1678172 0.1409607 0.3470774 +0.1950164 0.1409607 0.3470774 +0.2210581 0.1409607 0.3470774 +0.245636 0.1409607 0.3470774 +0.2686816 0.1409607 0.3470774 +0.2902431 0.1409607 0.3470774 +0.3104189 0.1409607 0.3470774 +0.3293248 0.1409607 0.3470774 +0.3470774 0.1409607 0.3470774 +0.3637862 0.1409607 0.3470774 +0.3795513 0.1409607 0.3470774 +0.3944623 0.1409607 0.3470774 +0.4085988 0.1409607 0.3470774 +0.4220313 0.1409607 0.3470774 +0.4348222 0.1409607 0.3470774 +0.4470264 0.1409607 0.3470774 +0.4586928 0.1409607 0.3470774 +0.4698649 0.1409607 0.3470774 +0.4805811 0.1409607 0.3470774 +0.490876 0.1409607 0.3470774 +0.5007803 0.1409607 0.3470774 +0.510322 0.1409607 0.3470774 +0.5195258 0.1409607 0.3470774 +0.5284142 0.1409607 0.3470774 +0.5370079 0.1409607 0.3470774 +0.5453253 0.1409607 0.3470774 +0.5533834 0.1409607 0.3470774 +0.5611974 0.1409607 0.3470774 +0.5687816 0.1409607 0.3470774 +0.092819 0.1678172 0.3470774 +0.1056428 0.1678172 0.3470774 +0.1201537 0.1678172 0.3470774 +0.1409607 0.1678172 0.3470774 +0.1678172 0.1678172 0.3470774 +0.1950164 0.1678172 0.3470774 +0.2210581 0.1678172 0.3470774 +0.245636 0.1678172 0.3470774 +0.2686816 0.1678172 0.3470774 +0.2902431 0.1678172 0.3470774 +0.3104189 0.1678172 0.3470774 +0.3293248 0.1678172 0.3470774 +0.3470774 0.1678172 0.3470774 +0.3637862 0.1678172 0.3470774 +0.3795513 0.1678172 0.3470774 +0.3944623 0.1678172 0.3470774 +0.4085988 0.1678172 0.3470774 +0.4220313 0.1678172 0.3470774 +0.4348222 0.1678172 0.3470774 +0.4470264 0.1678172 0.3470774 +0.4586928 0.1678172 0.3470774 +0.4698649 0.1678172 0.3470774 +0.4805811 0.1678172 0.3470774 +0.490876 0.1678172 0.3470774 +0.5007803 0.1678172 0.3470774 +0.510322 0.1678172 0.3470774 +0.5195258 0.1678172 0.3470774 +0.5284142 0.1678172 0.3470774 +0.5370079 0.1678172 0.3470774 +0.5453253 0.1678172 0.3470774 +0.5533834 0.1678172 0.3470774 +0.5611974 0.1678172 0.3470774 +0.5687816 0.1678172 0.3470774 +0.092819 0.1950164 0.3470774 +0.1056428 0.1950164 0.3470774 +0.1201537 0.1950164 0.3470774 +0.1409607 0.1950164 0.3470774 +0.1678172 0.1950164 0.3470774 +0.1950164 0.1950164 0.3470774 +0.2210581 0.1950164 0.3470774 +0.245636 0.1950164 0.3470774 +0.2686816 0.1950164 0.3470774 +0.2902431 0.1950164 0.3470774 +0.3104189 0.1950164 0.3470774 +0.3293248 0.1950164 0.3470774 +0.3470774 0.1950164 0.3470774 +0.3637862 0.1950164 0.3470774 +0.3795513 0.1950164 0.3470774 +0.3944623 0.1950164 0.3470774 +0.4085988 0.1950164 0.3470774 +0.4220313 0.1950164 0.3470774 +0.4348222 0.1950164 0.3470774 +0.4470264 0.1950164 0.3470774 +0.4586928 0.1950164 0.3470774 +0.4698649 0.1950164 0.3470774 +0.4805811 0.1950164 0.3470774 +0.490876 0.1950164 0.3470774 +0.5007803 0.1950164 0.3470774 +0.510322 0.1950164 0.3470774 +0.5195258 0.1950164 0.3470774 +0.5284142 0.1950164 0.3470774 +0.5370079 0.1950164 0.3470774 +0.5453253 0.1950164 0.3470774 +0.5533834 0.1950164 0.3470774 +0.5611974 0.1950164 0.3470774 +0.5687816 0.1950164 0.3470774 +0.092819 0.2210581 0.3470774 +0.1056428 0.2210581 0.3470774 +0.1201537 0.2210581 0.3470774 +0.1409607 0.2210581 0.3470774 +0.1678172 0.2210581 0.3470774 +0.1950164 0.2210581 0.3470774 +0.2210581 0.2210581 0.3470774 +0.245636 0.2210581 0.3470774 +0.2686816 0.2210581 0.3470774 +0.2902431 0.2210581 0.3470774 +0.3104189 0.2210581 0.3470774 +0.3293248 0.2210581 0.3470774 +0.3470774 0.2210581 0.3470774 +0.3637862 0.2210581 0.3470774 +0.3795513 0.2210581 0.3470774 +0.3944623 0.2210581 0.3470774 +0.4085988 0.2210581 0.3470774 +0.4220313 0.2210581 0.3470774 +0.4348222 0.2210581 0.3470774 +0.4470264 0.2210581 0.3470774 +0.4586928 0.2210581 0.3470774 +0.4698649 0.2210581 0.3470774 +0.4805811 0.2210581 0.3470774 +0.490876 0.2210581 0.3470774 +0.5007803 0.2210581 0.3470774 +0.510322 0.2210581 0.3470774 +0.5195258 0.2210581 0.3470774 +0.5284142 0.2210581 0.3470774 +0.5370079 0.2210581 0.3470774 +0.5453253 0.2210581 0.3470774 +0.5533834 0.2210581 0.3470774 +0.5611974 0.2210581 0.3470774 +0.5687816 0.2210581 0.3470774 +0.092819 0.245636 0.3470774 +0.1056428 0.245636 0.3470774 +0.1201537 0.245636 0.3470774 +0.1409607 0.245636 0.3470774 +0.1678172 0.245636 0.3470774 +0.1950164 0.245636 0.3470774 +0.2210581 0.245636 0.3470774 +0.245636 0.245636 0.3470774 +0.2686816 0.245636 0.3470774 +0.2902431 0.245636 0.3470774 +0.3104189 0.245636 0.3470774 +0.3293248 0.245636 0.3470774 +0.3470774 0.245636 0.3470774 +0.3637862 0.245636 0.3470774 +0.3795513 0.245636 0.3470774 +0.3944623 0.245636 0.3470774 +0.4085988 0.245636 0.3470774 +0.4220313 0.245636 0.3470774 +0.4348222 0.245636 0.3470774 +0.4470264 0.245636 0.3470774 +0.4586928 0.245636 0.3470774 +0.4698649 0.245636 0.3470774 +0.4805811 0.245636 0.3470774 +0.490876 0.245636 0.3470774 +0.5007803 0.245636 0.3470774 +0.510322 0.245636 0.3470774 +0.5195258 0.245636 0.3470774 +0.5284142 0.245636 0.3470774 +0.5370079 0.245636 0.3470774 +0.5453253 0.245636 0.3470774 +0.5533834 0.245636 0.3470774 +0.5611974 0.245636 0.3470774 +0.5687816 0.245636 0.3470774 +0.092819 0.2686816 0.3470774 +0.1056428 0.2686816 0.3470774 +0.1201537 0.2686816 0.3470774 +0.1409607 0.2686816 0.3470774 +0.1678172 0.2686816 0.3470774 +0.1950164 0.2686816 0.3470774 +0.2210581 0.2686816 0.3470774 +0.245636 0.2686816 0.3470774 +0.2686816 0.2686816 0.3470774 +0.2902431 0.2686816 0.3470774 +0.3104189 0.2686816 0.3470774 +0.3293248 0.2686816 0.3470774 +0.3470774 0.2686816 0.3470774 +0.3637862 0.2686816 0.3470774 +0.3795513 0.2686816 0.3470774 +0.3944623 0.2686816 0.3470774 +0.4085988 0.2686816 0.3470774 +0.4220313 0.2686816 0.3470774 +0.4348222 0.2686816 0.3470774 +0.4470264 0.2686816 0.3470774 +0.4586928 0.2686816 0.3470774 +0.4698649 0.2686816 0.3470774 +0.4805811 0.2686816 0.3470774 +0.490876 0.2686816 0.3470774 +0.5007803 0.2686816 0.3470774 +0.510322 0.2686816 0.3470774 +0.5195258 0.2686816 0.3470774 +0.5284142 0.2686816 0.3470774 +0.5370079 0.2686816 0.3470774 +0.5453253 0.2686816 0.3470774 +0.5533834 0.2686816 0.3470774 +0.5611974 0.2686816 0.3470774 +0.5687816 0.2686816 0.3470774 +0.092819 0.2902431 0.3470774 +0.1056428 0.2902431 0.3470774 +0.1201537 0.2902431 0.3470774 +0.1409607 0.2902431 0.3470774 +0.1678172 0.2902431 0.3470774 +0.1950164 0.2902431 0.3470774 +0.2210581 0.2902431 0.3470774 +0.245636 0.2902431 0.3470774 +0.2686816 0.2902431 0.3470774 +0.2902431 0.2902431 0.3470774 +0.3104189 0.2902431 0.3470774 +0.3293248 0.2902431 0.3470774 +0.3470774 0.2902431 0.3470774 +0.3637862 0.2902431 0.3470774 +0.3795513 0.2902431 0.3470774 +0.3944623 0.2902431 0.3470774 +0.4085988 0.2902431 0.3470774 +0.4220313 0.2902431 0.3470774 +0.4348222 0.2902431 0.3470774 +0.4470264 0.2902431 0.3470774 +0.4586928 0.2902431 0.3470774 +0.4698649 0.2902431 0.3470774 +0.4805811 0.2902431 0.3470774 +0.490876 0.2902431 0.3470774 +0.5007803 0.2902431 0.3470774 +0.510322 0.2902431 0.3470774 +0.5195258 0.2902431 0.3470774 +0.5284142 0.2902431 0.3470774 +0.5370079 0.2902431 0.3470774 +0.5453253 0.2902431 0.3470774 +0.5533834 0.2902431 0.3470774 +0.5611974 0.2902431 0.3470774 +0.5687816 0.2902431 0.3470774 +0.092819 0.3104189 0.3470774 +0.1056428 0.3104189 0.3470774 +0.1201537 0.3104189 0.3470774 +0.1409607 0.3104189 0.3470774 +0.1678172 0.3104189 0.3470774 +0.1950164 0.3104189 0.3470774 +0.2210581 0.3104189 0.3470774 +0.245636 0.3104189 0.3470774 +0.2686816 0.3104189 0.3470774 +0.2902431 0.3104189 0.3470774 +0.3104189 0.3104189 0.3470774 +0.3293248 0.3104189 0.3470774 +0.3470774 0.3104189 0.3470774 +0.3637862 0.3104189 0.3470774 +0.3795513 0.3104189 0.3470774 +0.3944623 0.3104189 0.3470774 +0.4085988 0.3104189 0.3470774 +0.4220313 0.3104189 0.3470774 +0.4348222 0.3104189 0.3470774 +0.4470264 0.3104189 0.3470774 +0.4586928 0.3104189 0.3470774 +0.4698649 0.3104189 0.3470774 +0.4805811 0.3104189 0.3470774 +0.490876 0.3104189 0.3470774 +0.5007803 0.3104189 0.3470774 +0.510322 0.3104189 0.3470774 +0.5195258 0.3104189 0.3470774 +0.5284142 0.3104189 0.3470774 +0.5370079 0.3104189 0.3470774 +0.5453253 0.3104189 0.3470774 +0.5533834 0.3104189 0.3470774 +0.5611974 0.3104189 0.3470774 +0.5687816 0.3104189 0.3470774 +0.092819 0.3293248 0.3470774 +0.1056428 0.3293248 0.3470774 +0.1201537 0.3293248 0.3470774 +0.1409607 0.3293248 0.3470774 +0.1678172 0.3293248 0.3470774 +0.1950164 0.3293248 0.3470774 +0.2210581 0.3293248 0.3470774 +0.245636 0.3293248 0.3470774 +0.2686816 0.3293248 0.3470774 +0.2902431 0.3293248 0.3470774 +0.3104189 0.3293248 0.3470774 +0.3293248 0.3293248 0.3470774 +0.3470774 0.3293248 0.3470774 +0.3637862 0.3293248 0.3470774 +0.3795513 0.3293248 0.3470774 +0.3944623 0.3293248 0.3470774 +0.4085988 0.3293248 0.3470774 +0.4220313 0.3293248 0.3470774 +0.4348222 0.3293248 0.3470774 +0.4470264 0.3293248 0.3470774 +0.4586928 0.3293248 0.3470774 +0.4698649 0.3293248 0.3470774 +0.4805811 0.3293248 0.3470774 +0.490876 0.3293248 0.3470774 +0.5007803 0.3293248 0.3470774 +0.510322 0.3293248 0.3470774 +0.5195258 0.3293248 0.3470774 +0.5284142 0.3293248 0.3470774 +0.5370079 0.3293248 0.3470774 +0.5453253 0.3293248 0.3470774 +0.5533834 0.3293248 0.3470774 +0.5611974 0.3293248 0.3470774 +0.5687816 0.3293248 0.3470774 +0.092819 0.3470774 0.3470774 +0.1056428 0.3470774 0.3470774 +0.1201537 0.3470774 0.3470774 +0.1409607 0.3470774 0.3470774 +0.1678172 0.3470774 0.3470774 +0.1950164 0.3470774 0.3470774 +0.2210581 0.3470774 0.3470774 +0.245636 0.3470774 0.3470774 +0.2686816 0.3470774 0.3470774 +0.2902431 0.3470774 0.3470774 +0.3104189 0.3470774 0.3470774 +0.3293248 0.3470774 0.3470774 +0.3470774 0.3470774 0.3470774 +0.3637862 0.3470774 0.3470774 +0.3795513 0.3470774 0.3470774 +0.3944623 0.3470774 0.3470774 +0.4085988 0.3470774 0.3470774 +0.4220313 0.3470774 0.3470774 +0.4348222 0.3470774 0.3470774 +0.4470264 0.3470774 0.3470774 +0.4586928 0.3470774 0.3470774 +0.4698649 0.3470774 0.3470774 +0.4805811 0.3470774 0.3470774 +0.490876 0.3470774 0.3470774 +0.5007803 0.3470774 0.3470774 +0.510322 0.3470774 0.3470774 +0.5195258 0.3470774 0.3470774 +0.5284142 0.3470774 0.3470774 +0.5370079 0.3470774 0.3470774 +0.5453253 0.3470774 0.3470774 +0.5533834 0.3470774 0.3470774 +0.5611974 0.3470774 0.3470774 +0.5687816 0.3470774 0.3470774 +0.092819 0.3637862 0.3470774 +0.1056428 0.3637862 0.3470774 +0.1201537 0.3637862 0.3470774 +0.1409607 0.3637862 0.3470774 +0.1678172 0.3637862 0.3470774 +0.1950164 0.3637862 0.3470774 +0.2210581 0.3637862 0.3470774 +0.245636 0.3637862 0.3470774 +0.2686816 0.3637862 0.3470774 +0.2902431 0.3637862 0.3470774 +0.3104189 0.3637862 0.3470774 +0.3293248 0.3637862 0.3470774 +0.3470774 0.3637862 0.3470774 +0.3637862 0.3637862 0.3470774 +0.3795513 0.3637862 0.3470774 +0.3944623 0.3637862 0.3470774 +0.4085988 0.3637862 0.3470774 +0.4220313 0.3637862 0.3470774 +0.4348222 0.3637862 0.3470774 +0.4470264 0.3637862 0.3470774 +0.4586928 0.3637862 0.3470774 +0.4698649 0.3637862 0.3470774 +0.4805811 0.3637862 0.3470774 +0.490876 0.3637862 0.3470774 +0.5007803 0.3637862 0.3470774 +0.510322 0.3637862 0.3470774 +0.5195258 0.3637862 0.3470774 +0.5284142 0.3637862 0.3470774 +0.5370079 0.3637862 0.3470774 +0.5453253 0.3637862 0.3470774 +0.5533834 0.3637862 0.3470774 +0.5611974 0.3637862 0.3470774 +0.5687816 0.3637862 0.3470774 +0.092819 0.3795513 0.3470774 +0.1056428 0.3795513 0.3470774 +0.1201537 0.3795513 0.3470774 +0.1409607 0.3795513 0.3470774 +0.1678172 0.3795513 0.3470774 +0.1950164 0.3795513 0.3470774 +0.2210581 0.3795513 0.3470774 +0.245636 0.3795513 0.3470774 +0.2686816 0.3795513 0.3470774 +0.2902431 0.3795513 0.3470774 +0.3104189 0.3795513 0.3470774 +0.3293248 0.3795513 0.3470774 +0.3470774 0.3795513 0.3470774 +0.3637862 0.3795513 0.3470774 +0.3795513 0.3795513 0.3470774 +0.3944623 0.3795513 0.3470774 +0.4085988 0.3795513 0.3470774 +0.4220313 0.3795513 0.3470774 +0.4348222 0.3795513 0.3470774 +0.4470264 0.3795513 0.3470774 +0.4586928 0.3795513 0.3470774 +0.4698649 0.3795513 0.3470774 +0.4805811 0.3795513 0.3470774 +0.490876 0.3795513 0.3470774 +0.5007803 0.3795513 0.3470774 +0.510322 0.3795513 0.3470774 +0.5195258 0.3795513 0.3470774 +0.5284142 0.3795513 0.3470774 +0.5370079 0.3795513 0.3470774 +0.5453253 0.3795513 0.3470774 +0.5533834 0.3795513 0.3470774 +0.5611974 0.3795513 0.3470774 +0.5687816 0.3795513 0.3470774 +0.092819 0.3944623 0.3470774 +0.1056428 0.3944623 0.3470774 +0.1201537 0.3944623 0.3470774 +0.1409607 0.3944623 0.3470774 +0.1678172 0.3944623 0.3470774 +0.1950164 0.3944623 0.3470774 +0.2210581 0.3944623 0.3470774 +0.245636 0.3944623 0.3470774 +0.2686816 0.3944623 0.3470774 +0.2902431 0.3944623 0.3470774 +0.3104189 0.3944623 0.3470774 +0.3293248 0.3944623 0.3470774 +0.3470774 0.3944623 0.3470774 +0.3637862 0.3944623 0.3470774 +0.3795513 0.3944623 0.3470774 +0.3944623 0.3944623 0.3470774 +0.4085988 0.3944623 0.3470774 +0.4220313 0.3944623 0.3470774 +0.4348222 0.3944623 0.3470774 +0.4470264 0.3944623 0.3470774 +0.4586928 0.3944623 0.3470774 +0.4698649 0.3944623 0.3470774 +0.4805811 0.3944623 0.3470774 +0.490876 0.3944623 0.3470774 +0.5007803 0.3944623 0.3470774 +0.510322 0.3944623 0.3470774 +0.5195258 0.3944623 0.3470774 +0.5284142 0.3944623 0.3470774 +0.5370079 0.3944623 0.3470774 +0.5453253 0.3944623 0.3470774 +0.5533834 0.3944623 0.3470774 +0.5611974 0.3944623 0.3470774 +0.5687816 0.3944623 0.3470774 +0.092819 0.4085988 0.3470774 +0.1056428 0.4085988 0.3470774 +0.1201537 0.4085988 0.3470774 +0.1409607 0.4085988 0.3470774 +0.1678172 0.4085988 0.3470774 +0.1950164 0.4085988 0.3470774 +0.2210581 0.4085988 0.3470774 +0.245636 0.4085988 0.3470774 +0.2686816 0.4085988 0.3470774 +0.2902431 0.4085988 0.3470774 +0.3104189 0.4085988 0.3470774 +0.3293248 0.4085988 0.3470774 +0.3470774 0.4085988 0.3470774 +0.3637862 0.4085988 0.3470774 +0.3795513 0.4085988 0.3470774 +0.3944623 0.4085988 0.3470774 +0.4085988 0.4085988 0.3470774 +0.4220313 0.4085988 0.3470774 +0.4348222 0.4085988 0.3470774 +0.4470264 0.4085988 0.3470774 +0.4586928 0.4085988 0.3470774 +0.4698649 0.4085988 0.3470774 +0.4805811 0.4085988 0.3470774 +0.490876 0.4085988 0.3470774 +0.5007803 0.4085988 0.3470774 +0.510322 0.4085988 0.3470774 +0.5195258 0.4085988 0.3470774 +0.5284142 0.4085988 0.3470774 +0.5370079 0.4085988 0.3470774 +0.5453253 0.4085988 0.3470774 +0.5533834 0.4085988 0.3470774 +0.5611974 0.4085988 0.3470774 +0.5687816 0.4085988 0.3470774 +0.092819 0.4220313 0.3470774 +0.1056428 0.4220313 0.3470774 +0.1201537 0.4220313 0.3470774 +0.1409607 0.4220313 0.3470774 +0.1678172 0.4220313 0.3470774 +0.1950164 0.4220313 0.3470774 +0.2210581 0.4220313 0.3470774 +0.245636 0.4220313 0.3470774 +0.2686816 0.4220313 0.3470774 +0.2902431 0.4220313 0.3470774 +0.3104189 0.4220313 0.3470774 +0.3293248 0.4220313 0.3470774 +0.3470774 0.4220313 0.3470774 +0.3637862 0.4220313 0.3470774 +0.3795513 0.4220313 0.3470774 +0.3944623 0.4220313 0.3470774 +0.4085988 0.4220313 0.3470774 +0.4220313 0.4220313 0.3470774 +0.4348222 0.4220313 0.3470774 +0.4470264 0.4220313 0.3470774 +0.4586928 0.4220313 0.3470774 +0.4698649 0.4220313 0.3470774 +0.4805811 0.4220313 0.3470774 +0.490876 0.4220313 0.3470774 +0.5007803 0.4220313 0.3470774 +0.510322 0.4220313 0.3470774 +0.5195258 0.4220313 0.3470774 +0.5284142 0.4220313 0.3470774 +0.5370079 0.4220313 0.3470774 +0.5453253 0.4220313 0.3470774 +0.5533834 0.4220313 0.3470774 +0.5611974 0.4220313 0.3470774 +0.5687816 0.4220313 0.3470774 +0.092819 0.4348222 0.3470774 +0.1056428 0.4348222 0.3470774 +0.1201537 0.4348222 0.3470774 +0.1409607 0.4348222 0.3470774 +0.1678172 0.4348222 0.3470774 +0.1950164 0.4348222 0.3470774 +0.2210581 0.4348222 0.3470774 +0.245636 0.4348222 0.3470774 +0.2686816 0.4348222 0.3470774 +0.2902431 0.4348222 0.3470774 +0.3104189 0.4348222 0.3470774 +0.3293248 0.4348222 0.3470774 +0.3470774 0.4348222 0.3470774 +0.3637862 0.4348222 0.3470774 +0.3795513 0.4348222 0.3470774 +0.3944623 0.4348222 0.3470774 +0.4085988 0.4348222 0.3470774 +0.4220313 0.4348222 0.3470774 +0.4348222 0.4348222 0.3470774 +0.4470264 0.4348222 0.3470774 +0.4586928 0.4348222 0.3470774 +0.4698649 0.4348222 0.3470774 +0.4805811 0.4348222 0.3470774 +0.490876 0.4348222 0.3470774 +0.5007803 0.4348222 0.3470774 +0.510322 0.4348222 0.3470774 +0.5195258 0.4348222 0.3470774 +0.5284142 0.4348222 0.3470774 +0.5370079 0.4348222 0.3470774 +0.5453253 0.4348222 0.3470774 +0.5533834 0.4348222 0.3470774 +0.5611974 0.4348222 0.3470774 +0.5687816 0.4348222 0.3470774 +0.092819 0.4470264 0.3470774 +0.1056428 0.4470264 0.3470774 +0.1201537 0.4470264 0.3470774 +0.1409607 0.4470264 0.3470774 +0.1678172 0.4470264 0.3470774 +0.1950164 0.4470264 0.3470774 +0.2210581 0.4470264 0.3470774 +0.245636 0.4470264 0.3470774 +0.2686816 0.4470264 0.3470774 +0.2902431 0.4470264 0.3470774 +0.3104189 0.4470264 0.3470774 +0.3293248 0.4470264 0.3470774 +0.3470774 0.4470264 0.3470774 +0.3637862 0.4470264 0.3470774 +0.3795513 0.4470264 0.3470774 +0.3944623 0.4470264 0.3470774 +0.4085988 0.4470264 0.3470774 +0.4220313 0.4470264 0.3470774 +0.4348222 0.4470264 0.3470774 +0.4470264 0.4470264 0.3470774 +0.4586928 0.4470264 0.3470774 +0.4698649 0.4470264 0.3470774 +0.4805811 0.4470264 0.3470774 +0.490876 0.4470264 0.3470774 +0.5007803 0.4470264 0.3470774 +0.510322 0.4470264 0.3470774 +0.5195258 0.4470264 0.3470774 +0.5284142 0.4470264 0.3470774 +0.5370079 0.4470264 0.3470774 +0.5453253 0.4470264 0.3470774 +0.5533834 0.4470264 0.3470774 +0.5611974 0.4470264 0.3470774 +0.5687816 0.4470264 0.3470774 +0.092819 0.4586928 0.3470774 +0.1056428 0.4586928 0.3470774 +0.1201537 0.4586928 0.3470774 +0.1409607 0.4586928 0.3470774 +0.1678172 0.4586928 0.3470774 +0.1950164 0.4586928 0.3470774 +0.2210581 0.4586928 0.3470774 +0.245636 0.4586928 0.3470774 +0.2686816 0.4586928 0.3470774 +0.2902431 0.4586928 0.3470774 +0.3104189 0.4586928 0.3470774 +0.3293248 0.4586928 0.3470774 +0.3470774 0.4586928 0.3470774 +0.3637862 0.4586928 0.3470774 +0.3795513 0.4586928 0.3470774 +0.3944623 0.4586928 0.3470774 +0.4085988 0.4586928 0.3470774 +0.4220313 0.4586928 0.3470774 +0.4348222 0.4586928 0.3470774 +0.4470264 0.4586928 0.3470774 +0.4586928 0.4586928 0.3470774 +0.4698649 0.4586928 0.3470774 +0.4805811 0.4586928 0.3470774 +0.490876 0.4586928 0.3470774 +0.5007803 0.4586928 0.3470774 +0.510322 0.4586928 0.3470774 +0.5195258 0.4586928 0.3470774 +0.5284142 0.4586928 0.3470774 +0.5370079 0.4586928 0.3470774 +0.5453253 0.4586928 0.3470774 +0.5533834 0.4586928 0.3470774 +0.5611974 0.4586928 0.3470774 +0.5687816 0.4586928 0.3470774 +0.092819 0.4698649 0.3470774 +0.1056428 0.4698649 0.3470774 +0.1201537 0.4698649 0.3470774 +0.1409607 0.4698649 0.3470774 +0.1678172 0.4698649 0.3470774 +0.1950164 0.4698649 0.3470774 +0.2210581 0.4698649 0.3470774 +0.245636 0.4698649 0.3470774 +0.2686816 0.4698649 0.3470774 +0.2902431 0.4698649 0.3470774 +0.3104189 0.4698649 0.3470774 +0.3293248 0.4698649 0.3470774 +0.3470774 0.4698649 0.3470774 +0.3637862 0.4698649 0.3470774 +0.3795513 0.4698649 0.3470774 +0.3944623 0.4698649 0.3470774 +0.4085988 0.4698649 0.3470774 +0.4220313 0.4698649 0.3470774 +0.4348222 0.4698649 0.3470774 +0.4470264 0.4698649 0.3470774 +0.4586928 0.4698649 0.3470774 +0.4698649 0.4698649 0.3470774 +0.4805811 0.4698649 0.3470774 +0.490876 0.4698649 0.3470774 +0.5007803 0.4698649 0.3470774 +0.510322 0.4698649 0.3470774 +0.5195258 0.4698649 0.3470774 +0.5284142 0.4698649 0.3470774 +0.5370079 0.4698649 0.3470774 +0.5453253 0.4698649 0.3470774 +0.5533834 0.4698649 0.3470774 +0.5611974 0.4698649 0.3470774 +0.5687816 0.4698649 0.3470774 +0.092819 0.4805811 0.3470774 +0.1056428 0.4805811 0.3470774 +0.1201537 0.4805811 0.3470774 +0.1409607 0.4805811 0.3470774 +0.1678172 0.4805811 0.3470774 +0.1950164 0.4805811 0.3470774 +0.2210581 0.4805811 0.3470774 +0.245636 0.4805811 0.3470774 +0.2686816 0.4805811 0.3470774 +0.2902431 0.4805811 0.3470774 +0.3104189 0.4805811 0.3470774 +0.3293248 0.4805811 0.3470774 +0.3470774 0.4805811 0.3470774 +0.3637862 0.4805811 0.3470774 +0.3795513 0.4805811 0.3470774 +0.3944623 0.4805811 0.3470774 +0.4085988 0.4805811 0.3470774 +0.4220313 0.4805811 0.3470774 +0.4348222 0.4805811 0.3470774 +0.4470264 0.4805811 0.3470774 +0.4586928 0.4805811 0.3470774 +0.4698649 0.4805811 0.3470774 +0.4805811 0.4805811 0.3470774 +0.490876 0.4805811 0.3470774 +0.5007803 0.4805811 0.3470774 +0.510322 0.4805811 0.3470774 +0.5195258 0.4805811 0.3470774 +0.5284142 0.4805811 0.3470774 +0.5370079 0.4805811 0.3470774 +0.5453253 0.4805811 0.3470774 +0.5533834 0.4805811 0.3470774 +0.5611974 0.4805811 0.3470774 +0.5687816 0.4805811 0.3470774 +0.092819 0.490876 0.3470774 +0.1056428 0.490876 0.3470774 +0.1201537 0.490876 0.3470774 +0.1409607 0.490876 0.3470774 +0.1678172 0.490876 0.3470774 +0.1950164 0.490876 0.3470774 +0.2210581 0.490876 0.3470774 +0.245636 0.490876 0.3470774 +0.2686816 0.490876 0.3470774 +0.2902431 0.490876 0.3470774 +0.3104189 0.490876 0.3470774 +0.3293248 0.490876 0.3470774 +0.3470774 0.490876 0.3470774 +0.3637862 0.490876 0.3470774 +0.3795513 0.490876 0.3470774 +0.3944623 0.490876 0.3470774 +0.4085988 0.490876 0.3470774 +0.4220313 0.490876 0.3470774 +0.4348222 0.490876 0.3470774 +0.4470264 0.490876 0.3470774 +0.4586928 0.490876 0.3470774 +0.4698649 0.490876 0.3470774 +0.4805811 0.490876 0.3470774 +0.490876 0.490876 0.3470774 +0.5007803 0.490876 0.3470774 +0.510322 0.490876 0.3470774 +0.5195258 0.490876 0.3470774 +0.5284142 0.490876 0.3470774 +0.5370079 0.490876 0.3470774 +0.5453253 0.490876 0.3470774 +0.5533834 0.490876 0.3470774 +0.5611974 0.490876 0.3470774 +0.5687816 0.490876 0.3470774 +0.092819 0.5007803 0.3470774 +0.1056428 0.5007803 0.3470774 +0.1201537 0.5007803 0.3470774 +0.1409607 0.5007803 0.3470774 +0.1678172 0.5007803 0.3470774 +0.1950164 0.5007803 0.3470774 +0.2210581 0.5007803 0.3470774 +0.245636 0.5007803 0.3470774 +0.2686816 0.5007803 0.3470774 +0.2902431 0.5007803 0.3470774 +0.3104189 0.5007803 0.3470774 +0.3293248 0.5007803 0.3470774 +0.3470774 0.5007803 0.3470774 +0.3637862 0.5007803 0.3470774 +0.3795513 0.5007803 0.3470774 +0.3944623 0.5007803 0.3470774 +0.4085988 0.5007803 0.3470774 +0.4220313 0.5007803 0.3470774 +0.4348222 0.5007803 0.3470774 +0.4470264 0.5007803 0.3470774 +0.4586928 0.5007803 0.3470774 +0.4698649 0.5007803 0.3470774 +0.4805811 0.5007803 0.3470774 +0.490876 0.5007803 0.3470774 +0.5007803 0.5007803 0.3470774 +0.510322 0.5007803 0.3470774 +0.5195258 0.5007803 0.3470774 +0.5284142 0.5007803 0.3470774 +0.5370079 0.5007803 0.3470774 +0.5453253 0.5007803 0.3470774 +0.5533834 0.5007803 0.3470774 +0.5611974 0.5007803 0.3470774 +0.5687816 0.5007803 0.3470774 +0.092819 0.510322 0.3470774 +0.1056428 0.510322 0.3470774 +0.1201537 0.510322 0.3470774 +0.1409607 0.510322 0.3470774 +0.1678172 0.510322 0.3470774 +0.1950164 0.510322 0.3470774 +0.2210581 0.510322 0.3470774 +0.245636 0.510322 0.3470774 +0.2686816 0.510322 0.3470774 +0.2902431 0.510322 0.3470774 +0.3104189 0.510322 0.3470774 +0.3293248 0.510322 0.3470774 +0.3470774 0.510322 0.3470774 +0.3637862 0.510322 0.3470774 +0.3795513 0.510322 0.3470774 +0.3944623 0.510322 0.3470774 +0.4085988 0.510322 0.3470774 +0.4220313 0.510322 0.3470774 +0.4348222 0.510322 0.3470774 +0.4470264 0.510322 0.3470774 +0.4586928 0.510322 0.3470774 +0.4698649 0.510322 0.3470774 +0.4805811 0.510322 0.3470774 +0.490876 0.510322 0.3470774 +0.5007803 0.510322 0.3470774 +0.510322 0.510322 0.3470774 +0.5195258 0.510322 0.3470774 +0.5284142 0.510322 0.3470774 +0.5370079 0.510322 0.3470774 +0.5453253 0.510322 0.3470774 +0.5533834 0.510322 0.3470774 +0.5611974 0.510322 0.3470774 +0.5687816 0.510322 0.3470774 +0.092819 0.5195258 0.3470774 +0.1056428 0.5195258 0.3470774 +0.1201537 0.5195258 0.3470774 +0.1409607 0.5195258 0.3470774 +0.1678172 0.5195258 0.3470774 +0.1950164 0.5195258 0.3470774 +0.2210581 0.5195258 0.3470774 +0.245636 0.5195258 0.3470774 +0.2686816 0.5195258 0.3470774 +0.2902431 0.5195258 0.3470774 +0.3104189 0.5195258 0.3470774 +0.3293248 0.5195258 0.3470774 +0.3470774 0.5195258 0.3470774 +0.3637862 0.5195258 0.3470774 +0.3795513 0.5195258 0.3470774 +0.3944623 0.5195258 0.3470774 +0.4085988 0.5195258 0.3470774 +0.4220313 0.5195258 0.3470774 +0.4348222 0.5195258 0.3470774 +0.4470264 0.5195258 0.3470774 +0.4586928 0.5195258 0.3470774 +0.4698649 0.5195258 0.3470774 +0.4805811 0.5195258 0.3470774 +0.490876 0.5195258 0.3470774 +0.5007803 0.5195258 0.3470774 +0.510322 0.5195258 0.3470774 +0.5195258 0.5195258 0.3470774 +0.5284142 0.5195258 0.3470774 +0.5370079 0.5195258 0.3470774 +0.5453253 0.5195258 0.3470774 +0.5533834 0.5195258 0.3470774 +0.5611974 0.5195258 0.3470774 +0.5687816 0.5195258 0.3470774 +0.092819 0.5284142 0.3470774 +0.1056428 0.5284142 0.3470774 +0.1201537 0.5284142 0.3470774 +0.1409607 0.5284142 0.3470774 +0.1678172 0.5284142 0.3470774 +0.1950164 0.5284142 0.3470774 +0.2210581 0.5284142 0.3470774 +0.245636 0.5284142 0.3470774 +0.2686816 0.5284142 0.3470774 +0.2902431 0.5284142 0.3470774 +0.3104189 0.5284142 0.3470774 +0.3293248 0.5284142 0.3470774 +0.3470774 0.5284142 0.3470774 +0.3637862 0.5284142 0.3470774 +0.3795513 0.5284142 0.3470774 +0.3944623 0.5284142 0.3470774 +0.4085988 0.5284142 0.3470774 +0.4220313 0.5284142 0.3470774 +0.4348222 0.5284142 0.3470774 +0.4470264 0.5284142 0.3470774 +0.4586928 0.5284142 0.3470774 +0.4698649 0.5284142 0.3470774 +0.4805811 0.5284142 0.3470774 +0.490876 0.5284142 0.3470774 +0.5007803 0.5284142 0.3470774 +0.510322 0.5284142 0.3470774 +0.5195258 0.5284142 0.3470774 +0.5284142 0.5284142 0.3470774 +0.5370079 0.5284142 0.3470774 +0.5453253 0.5284142 0.3470774 +0.5533834 0.5284142 0.3470774 +0.5611974 0.5284142 0.3470774 +0.5687816 0.5284142 0.3470774 +0.092819 0.5370079 0.3470774 +0.1056428 0.5370079 0.3470774 +0.1201537 0.5370079 0.3470774 +0.1409607 0.5370079 0.3470774 +0.1678172 0.5370079 0.3470774 +0.1950164 0.5370079 0.3470774 +0.2210581 0.5370079 0.3470774 +0.245636 0.5370079 0.3470774 +0.2686816 0.5370079 0.3470774 +0.2902431 0.5370079 0.3470774 +0.3104189 0.5370079 0.3470774 +0.3293248 0.5370079 0.3470774 +0.3470774 0.5370079 0.3470774 +0.3637862 0.5370079 0.3470774 +0.3795513 0.5370079 0.3470774 +0.3944623 0.5370079 0.3470774 +0.4085988 0.5370079 0.3470774 +0.4220313 0.5370079 0.3470774 +0.4348222 0.5370079 0.3470774 +0.4470264 0.5370079 0.3470774 +0.4586928 0.5370079 0.3470774 +0.4698649 0.5370079 0.3470774 +0.4805811 0.5370079 0.3470774 +0.490876 0.5370079 0.3470774 +0.5007803 0.5370079 0.3470774 +0.510322 0.5370079 0.3470774 +0.5195258 0.5370079 0.3470774 +0.5284142 0.5370079 0.3470774 +0.5370079 0.5370079 0.3470774 +0.5453253 0.5370079 0.3470774 +0.5533834 0.5370079 0.3470774 +0.5611974 0.5370079 0.3470774 +0.5687816 0.5370079 0.3470774 +0.092819 0.5453253 0.3470774 +0.1056428 0.5453253 0.3470774 +0.1201537 0.5453253 0.3470774 +0.1409607 0.5453253 0.3470774 +0.1678172 0.5453253 0.3470774 +0.1950164 0.5453253 0.3470774 +0.2210581 0.5453253 0.3470774 +0.245636 0.5453253 0.3470774 +0.2686816 0.5453253 0.3470774 +0.2902431 0.5453253 0.3470774 +0.3104189 0.5453253 0.3470774 +0.3293248 0.5453253 0.3470774 +0.3470774 0.5453253 0.3470774 +0.3637862 0.5453253 0.3470774 +0.3795513 0.5453253 0.3470774 +0.3944623 0.5453253 0.3470774 +0.4085988 0.5453253 0.3470774 +0.4220313 0.5453253 0.3470774 +0.4348222 0.5453253 0.3470774 +0.4470264 0.5453253 0.3470774 +0.4586928 0.5453253 0.3470774 +0.4698649 0.5453253 0.3470774 +0.4805811 0.5453253 0.3470774 +0.490876 0.5453253 0.3470774 +0.5007803 0.5453253 0.3470774 +0.510322 0.5453253 0.3470774 +0.5195258 0.5453253 0.3470774 +0.5284142 0.5453253 0.3470774 +0.5370079 0.5453253 0.3470774 +0.5453253 0.5453253 0.3470774 +0.5533834 0.5453253 0.3470774 +0.5611974 0.5453253 0.3470774 +0.5687816 0.5453253 0.3470774 +0.092819 0.5533834 0.3470774 +0.1056428 0.5533834 0.3470774 +0.1201537 0.5533834 0.3470774 +0.1409607 0.5533834 0.3470774 +0.1678172 0.5533834 0.3470774 +0.1950164 0.5533834 0.3470774 +0.2210581 0.5533834 0.3470774 +0.245636 0.5533834 0.3470774 +0.2686816 0.5533834 0.3470774 +0.2902431 0.5533834 0.3470774 +0.3104189 0.5533834 0.3470774 +0.3293248 0.5533834 0.3470774 +0.3470774 0.5533834 0.3470774 +0.3637862 0.5533834 0.3470774 +0.3795513 0.5533834 0.3470774 +0.3944623 0.5533834 0.3470774 +0.4085988 0.5533834 0.3470774 +0.4220313 0.5533834 0.3470774 +0.4348222 0.5533834 0.3470774 +0.4470264 0.5533834 0.3470774 +0.4586928 0.5533834 0.3470774 +0.4698649 0.5533834 0.3470774 +0.4805811 0.5533834 0.3470774 +0.490876 0.5533834 0.3470774 +0.5007803 0.5533834 0.3470774 +0.510322 0.5533834 0.3470774 +0.5195258 0.5533834 0.3470774 +0.5284142 0.5533834 0.3470774 +0.5370079 0.5533834 0.3470774 +0.5453253 0.5533834 0.3470774 +0.5533834 0.5533834 0.3470774 +0.5611974 0.5533834 0.3470774 +0.5687816 0.5533834 0.3470774 +0.092819 0.5611974 0.3470774 +0.1056428 0.5611974 0.3470774 +0.1201537 0.5611974 0.3470774 +0.1409607 0.5611974 0.3470774 +0.1678172 0.5611974 0.3470774 +0.1950164 0.5611974 0.3470774 +0.2210581 0.5611974 0.3470774 +0.245636 0.5611974 0.3470774 +0.2686816 0.5611974 0.3470774 +0.2902431 0.5611974 0.3470774 +0.3104189 0.5611974 0.3470774 +0.3293248 0.5611974 0.3470774 +0.3470774 0.5611974 0.3470774 +0.3637862 0.5611974 0.3470774 +0.3795513 0.5611974 0.3470774 +0.3944623 0.5611974 0.3470774 +0.4085988 0.5611974 0.3470774 +0.4220313 0.5611974 0.3470774 +0.4348222 0.5611974 0.3470774 +0.4470264 0.5611974 0.3470774 +0.4586928 0.5611974 0.3470774 +0.4698649 0.5611974 0.3470774 +0.4805811 0.5611974 0.3470774 +0.490876 0.5611974 0.3470774 +0.5007803 0.5611974 0.3470774 +0.510322 0.5611974 0.3470774 +0.5195258 0.5611974 0.3470774 +0.5284142 0.5611974 0.3470774 +0.5370079 0.5611974 0.3470774 +0.5453253 0.5611974 0.3470774 +0.5533834 0.5611974 0.3470774 +0.5611974 0.5611974 0.3470774 +0.5687816 0.5611974 0.3470774 +0.092819 0.5687816 0.3470774 +0.1056428 0.5687816 0.3470774 +0.1201537 0.5687816 0.3470774 +0.1409607 0.5687816 0.3470774 +0.1678172 0.5687816 0.3470774 +0.1950164 0.5687816 0.3470774 +0.2210581 0.5687816 0.3470774 +0.245636 0.5687816 0.3470774 +0.2686816 0.5687816 0.3470774 +0.2902431 0.5687816 0.3470774 +0.3104189 0.5687816 0.3470774 +0.3293248 0.5687816 0.3470774 +0.3470774 0.5687816 0.3470774 +0.3637862 0.5687816 0.3470774 +0.3795513 0.5687816 0.3470774 +0.3944623 0.5687816 0.3470774 +0.4085988 0.5687816 0.3470774 +0.4220313 0.5687816 0.3470774 +0.4348222 0.5687816 0.3470774 +0.4470264 0.5687816 0.3470774 +0.4586928 0.5687816 0.3470774 +0.4698649 0.5687816 0.3470774 +0.4805811 0.5687816 0.3470774 +0.490876 0.5687816 0.3470774 +0.5007803 0.5687816 0.3470774 +0.510322 0.5687816 0.3470774 +0.5195258 0.5687816 0.3470774 +0.5284142 0.5687816 0.3470774 +0.5370079 0.5687816 0.3470774 +0.5453253 0.5687816 0.3470774 +0.5533834 0.5687816 0.3470774 +0.5611974 0.5687816 0.3470774 +0.5687816 0.5687816 0.3470774 +0.092819 0.092819 0.3637862 +0.1056428 0.092819 0.3637862 +0.1201537 0.092819 0.3637862 +0.1409607 0.092819 0.3637862 +0.1678172 0.092819 0.3637862 +0.1950164 0.092819 0.3637862 +0.2210581 0.092819 0.3637862 +0.245636 0.092819 0.3637862 +0.2686816 0.092819 0.3637862 +0.2902431 0.092819 0.3637862 +0.3104189 0.092819 0.3637862 +0.3293248 0.092819 0.3637862 +0.3470774 0.092819 0.3637862 +0.3637862 0.092819 0.3637862 +0.3795513 0.092819 0.3637862 +0.3944623 0.092819 0.3637862 +0.4085988 0.092819 0.3637862 +0.4220313 0.092819 0.3637862 +0.4348222 0.092819 0.3637862 +0.4470264 0.092819 0.3637862 +0.4586928 0.092819 0.3637862 +0.4698649 0.092819 0.3637862 +0.4805811 0.092819 0.3637862 +0.490876 0.092819 0.3637862 +0.5007803 0.092819 0.3637862 +0.510322 0.092819 0.3637862 +0.5195258 0.092819 0.3637862 +0.5284142 0.092819 0.3637862 +0.5370079 0.092819 0.3637862 +0.5453253 0.092819 0.3637862 +0.5533834 0.092819 0.3637862 +0.5611974 0.092819 0.3637862 +0.5687816 0.092819 0.3637862 +0.092819 0.1056428 0.3637862 +0.1056428 0.1056428 0.3637862 +0.1201537 0.1056428 0.3637862 +0.1409607 0.1056428 0.3637862 +0.1678172 0.1056428 0.3637862 +0.1950164 0.1056428 0.3637862 +0.2210581 0.1056428 0.3637862 +0.245636 0.1056428 0.3637862 +0.2686816 0.1056428 0.3637862 +0.2902431 0.1056428 0.3637862 +0.3104189 0.1056428 0.3637862 +0.3293248 0.1056428 0.3637862 +0.3470774 0.1056428 0.3637862 +0.3637862 0.1056428 0.3637862 +0.3795513 0.1056428 0.3637862 +0.3944623 0.1056428 0.3637862 +0.4085988 0.1056428 0.3637862 +0.4220313 0.1056428 0.3637862 +0.4348222 0.1056428 0.3637862 +0.4470264 0.1056428 0.3637862 +0.4586928 0.1056428 0.3637862 +0.4698649 0.1056428 0.3637862 +0.4805811 0.1056428 0.3637862 +0.490876 0.1056428 0.3637862 +0.5007803 0.1056428 0.3637862 +0.510322 0.1056428 0.3637862 +0.5195258 0.1056428 0.3637862 +0.5284142 0.1056428 0.3637862 +0.5370079 0.1056428 0.3637862 +0.5453253 0.1056428 0.3637862 +0.5533834 0.1056428 0.3637862 +0.5611974 0.1056428 0.3637862 +0.5687816 0.1056428 0.3637862 +0.092819 0.1201537 0.3637862 +0.1056428 0.1201537 0.3637862 +0.1201537 0.1201537 0.3637862 +0.1409607 0.1201537 0.3637862 +0.1678172 0.1201537 0.3637862 +0.1950164 0.1201537 0.3637862 +0.2210581 0.1201537 0.3637862 +0.245636 0.1201537 0.3637862 +0.2686816 0.1201537 0.3637862 +0.2902431 0.1201537 0.3637862 +0.3104189 0.1201537 0.3637862 +0.3293248 0.1201537 0.3637862 +0.3470774 0.1201537 0.3637862 +0.3637862 0.1201537 0.3637862 +0.3795513 0.1201537 0.3637862 +0.3944623 0.1201537 0.3637862 +0.4085988 0.1201537 0.3637862 +0.4220313 0.1201537 0.3637862 +0.4348222 0.1201537 0.3637862 +0.4470264 0.1201537 0.3637862 +0.4586928 0.1201537 0.3637862 +0.4698649 0.1201537 0.3637862 +0.4805811 0.1201537 0.3637862 +0.490876 0.1201537 0.3637862 +0.5007803 0.1201537 0.3637862 +0.510322 0.1201537 0.3637862 +0.5195258 0.1201537 0.3637862 +0.5284142 0.1201537 0.3637862 +0.5370079 0.1201537 0.3637862 +0.5453253 0.1201537 0.3637862 +0.5533834 0.1201537 0.3637862 +0.5611974 0.1201537 0.3637862 +0.5687816 0.1201537 0.3637862 +0.092819 0.1409607 0.3637862 +0.1056428 0.1409607 0.3637862 +0.1201537 0.1409607 0.3637862 +0.1409607 0.1409607 0.3637862 +0.1678172 0.1409607 0.3637862 +0.1950164 0.1409607 0.3637862 +0.2210581 0.1409607 0.3637862 +0.245636 0.1409607 0.3637862 +0.2686816 0.1409607 0.3637862 +0.2902431 0.1409607 0.3637862 +0.3104189 0.1409607 0.3637862 +0.3293248 0.1409607 0.3637862 +0.3470774 0.1409607 0.3637862 +0.3637862 0.1409607 0.3637862 +0.3795513 0.1409607 0.3637862 +0.3944623 0.1409607 0.3637862 +0.4085988 0.1409607 0.3637862 +0.4220313 0.1409607 0.3637862 +0.4348222 0.1409607 0.3637862 +0.4470264 0.1409607 0.3637862 +0.4586928 0.1409607 0.3637862 +0.4698649 0.1409607 0.3637862 +0.4805811 0.1409607 0.3637862 +0.490876 0.1409607 0.3637862 +0.5007803 0.1409607 0.3637862 +0.510322 0.1409607 0.3637862 +0.5195258 0.1409607 0.3637862 +0.5284142 0.1409607 0.3637862 +0.5370079 0.1409607 0.3637862 +0.5453253 0.1409607 0.3637862 +0.5533834 0.1409607 0.3637862 +0.5611974 0.1409607 0.3637862 +0.5687816 0.1409607 0.3637862 +0.092819 0.1678172 0.3637862 +0.1056428 0.1678172 0.3637862 +0.1201537 0.1678172 0.3637862 +0.1409607 0.1678172 0.3637862 +0.1678172 0.1678172 0.3637862 +0.1950164 0.1678172 0.3637862 +0.2210581 0.1678172 0.3637862 +0.245636 0.1678172 0.3637862 +0.2686816 0.1678172 0.3637862 +0.2902431 0.1678172 0.3637862 +0.3104189 0.1678172 0.3637862 +0.3293248 0.1678172 0.3637862 +0.3470774 0.1678172 0.3637862 +0.3637862 0.1678172 0.3637862 +0.3795513 0.1678172 0.3637862 +0.3944623 0.1678172 0.3637862 +0.4085988 0.1678172 0.3637862 +0.4220313 0.1678172 0.3637862 +0.4348222 0.1678172 0.3637862 +0.4470264 0.1678172 0.3637862 +0.4586928 0.1678172 0.3637862 +0.4698649 0.1678172 0.3637862 +0.4805811 0.1678172 0.3637862 +0.490876 0.1678172 0.3637862 +0.5007803 0.1678172 0.3637862 +0.510322 0.1678172 0.3637862 +0.5195258 0.1678172 0.3637862 +0.5284142 0.1678172 0.3637862 +0.5370079 0.1678172 0.3637862 +0.5453253 0.1678172 0.3637862 +0.5533834 0.1678172 0.3637862 +0.5611974 0.1678172 0.3637862 +0.5687816 0.1678172 0.3637862 +0.092819 0.1950164 0.3637862 +0.1056428 0.1950164 0.3637862 +0.1201537 0.1950164 0.3637862 +0.1409607 0.1950164 0.3637862 +0.1678172 0.1950164 0.3637862 +0.1950164 0.1950164 0.3637862 +0.2210581 0.1950164 0.3637862 +0.245636 0.1950164 0.3637862 +0.2686816 0.1950164 0.3637862 +0.2902431 0.1950164 0.3637862 +0.3104189 0.1950164 0.3637862 +0.3293248 0.1950164 0.3637862 +0.3470774 0.1950164 0.3637862 +0.3637862 0.1950164 0.3637862 +0.3795513 0.1950164 0.3637862 +0.3944623 0.1950164 0.3637862 +0.4085988 0.1950164 0.3637862 +0.4220313 0.1950164 0.3637862 +0.4348222 0.1950164 0.3637862 +0.4470264 0.1950164 0.3637862 +0.4586928 0.1950164 0.3637862 +0.4698649 0.1950164 0.3637862 +0.4805811 0.1950164 0.3637862 +0.490876 0.1950164 0.3637862 +0.5007803 0.1950164 0.3637862 +0.510322 0.1950164 0.3637862 +0.5195258 0.1950164 0.3637862 +0.5284142 0.1950164 0.3637862 +0.5370079 0.1950164 0.3637862 +0.5453253 0.1950164 0.3637862 +0.5533834 0.1950164 0.3637862 +0.5611974 0.1950164 0.3637862 +0.5687816 0.1950164 0.3637862 +0.092819 0.2210581 0.3637862 +0.1056428 0.2210581 0.3637862 +0.1201537 0.2210581 0.3637862 +0.1409607 0.2210581 0.3637862 +0.1678172 0.2210581 0.3637862 +0.1950164 0.2210581 0.3637862 +0.2210581 0.2210581 0.3637862 +0.245636 0.2210581 0.3637862 +0.2686816 0.2210581 0.3637862 +0.2902431 0.2210581 0.3637862 +0.3104189 0.2210581 0.3637862 +0.3293248 0.2210581 0.3637862 +0.3470774 0.2210581 0.3637862 +0.3637862 0.2210581 0.3637862 +0.3795513 0.2210581 0.3637862 +0.3944623 0.2210581 0.3637862 +0.4085988 0.2210581 0.3637862 +0.4220313 0.2210581 0.3637862 +0.4348222 0.2210581 0.3637862 +0.4470264 0.2210581 0.3637862 +0.4586928 0.2210581 0.3637862 +0.4698649 0.2210581 0.3637862 +0.4805811 0.2210581 0.3637862 +0.490876 0.2210581 0.3637862 +0.5007803 0.2210581 0.3637862 +0.510322 0.2210581 0.3637862 +0.5195258 0.2210581 0.3637862 +0.5284142 0.2210581 0.3637862 +0.5370079 0.2210581 0.3637862 +0.5453253 0.2210581 0.3637862 +0.5533834 0.2210581 0.3637862 +0.5611974 0.2210581 0.3637862 +0.5687816 0.2210581 0.3637862 +0.092819 0.245636 0.3637862 +0.1056428 0.245636 0.3637862 +0.1201537 0.245636 0.3637862 +0.1409607 0.245636 0.3637862 +0.1678172 0.245636 0.3637862 +0.1950164 0.245636 0.3637862 +0.2210581 0.245636 0.3637862 +0.245636 0.245636 0.3637862 +0.2686816 0.245636 0.3637862 +0.2902431 0.245636 0.3637862 +0.3104189 0.245636 0.3637862 +0.3293248 0.245636 0.3637862 +0.3470774 0.245636 0.3637862 +0.3637862 0.245636 0.3637862 +0.3795513 0.245636 0.3637862 +0.3944623 0.245636 0.3637862 +0.4085988 0.245636 0.3637862 +0.4220313 0.245636 0.3637862 +0.4348222 0.245636 0.3637862 +0.4470264 0.245636 0.3637862 +0.4586928 0.245636 0.3637862 +0.4698649 0.245636 0.3637862 +0.4805811 0.245636 0.3637862 +0.490876 0.245636 0.3637862 +0.5007803 0.245636 0.3637862 +0.510322 0.245636 0.3637862 +0.5195258 0.245636 0.3637862 +0.5284142 0.245636 0.3637862 +0.5370079 0.245636 0.3637862 +0.5453253 0.245636 0.3637862 +0.5533834 0.245636 0.3637862 +0.5611974 0.245636 0.3637862 +0.5687816 0.245636 0.3637862 +0.092819 0.2686816 0.3637862 +0.1056428 0.2686816 0.3637862 +0.1201537 0.2686816 0.3637862 +0.1409607 0.2686816 0.3637862 +0.1678172 0.2686816 0.3637862 +0.1950164 0.2686816 0.3637862 +0.2210581 0.2686816 0.3637862 +0.245636 0.2686816 0.3637862 +0.2686816 0.2686816 0.3637862 +0.2902431 0.2686816 0.3637862 +0.3104189 0.2686816 0.3637862 +0.3293248 0.2686816 0.3637862 +0.3470774 0.2686816 0.3637862 +0.3637862 0.2686816 0.3637862 +0.3795513 0.2686816 0.3637862 +0.3944623 0.2686816 0.3637862 +0.4085988 0.2686816 0.3637862 +0.4220313 0.2686816 0.3637862 +0.4348222 0.2686816 0.3637862 +0.4470264 0.2686816 0.3637862 +0.4586928 0.2686816 0.3637862 +0.4698649 0.2686816 0.3637862 +0.4805811 0.2686816 0.3637862 +0.490876 0.2686816 0.3637862 +0.5007803 0.2686816 0.3637862 +0.510322 0.2686816 0.3637862 +0.5195258 0.2686816 0.3637862 +0.5284142 0.2686816 0.3637862 +0.5370079 0.2686816 0.3637862 +0.5453253 0.2686816 0.3637862 +0.5533834 0.2686816 0.3637862 +0.5611974 0.2686816 0.3637862 +0.5687816 0.2686816 0.3637862 +0.092819 0.2902431 0.3637862 +0.1056428 0.2902431 0.3637862 +0.1201537 0.2902431 0.3637862 +0.1409607 0.2902431 0.3637862 +0.1678172 0.2902431 0.3637862 +0.1950164 0.2902431 0.3637862 +0.2210581 0.2902431 0.3637862 +0.245636 0.2902431 0.3637862 +0.2686816 0.2902431 0.3637862 +0.2902431 0.2902431 0.3637862 +0.3104189 0.2902431 0.3637862 +0.3293248 0.2902431 0.3637862 +0.3470774 0.2902431 0.3637862 +0.3637862 0.2902431 0.3637862 +0.3795513 0.2902431 0.3637862 +0.3944623 0.2902431 0.3637862 +0.4085988 0.2902431 0.3637862 +0.4220313 0.2902431 0.3637862 +0.4348222 0.2902431 0.3637862 +0.4470264 0.2902431 0.3637862 +0.4586928 0.2902431 0.3637862 +0.4698649 0.2902431 0.3637862 +0.4805811 0.2902431 0.3637862 +0.490876 0.2902431 0.3637862 +0.5007803 0.2902431 0.3637862 +0.510322 0.2902431 0.3637862 +0.5195258 0.2902431 0.3637862 +0.5284142 0.2902431 0.3637862 +0.5370079 0.2902431 0.3637862 +0.5453253 0.2902431 0.3637862 +0.5533834 0.2902431 0.3637862 +0.5611974 0.2902431 0.3637862 +0.5687816 0.2902431 0.3637862 +0.092819 0.3104189 0.3637862 +0.1056428 0.3104189 0.3637862 +0.1201537 0.3104189 0.3637862 +0.1409607 0.3104189 0.3637862 +0.1678172 0.3104189 0.3637862 +0.1950164 0.3104189 0.3637862 +0.2210581 0.3104189 0.3637862 +0.245636 0.3104189 0.3637862 +0.2686816 0.3104189 0.3637862 +0.2902431 0.3104189 0.3637862 +0.3104189 0.3104189 0.3637862 +0.3293248 0.3104189 0.3637862 +0.3470774 0.3104189 0.3637862 +0.3637862 0.3104189 0.3637862 +0.3795513 0.3104189 0.3637862 +0.3944623 0.3104189 0.3637862 +0.4085988 0.3104189 0.3637862 +0.4220313 0.3104189 0.3637862 +0.4348222 0.3104189 0.3637862 +0.4470264 0.3104189 0.3637862 +0.4586928 0.3104189 0.3637862 +0.4698649 0.3104189 0.3637862 +0.4805811 0.3104189 0.3637862 +0.490876 0.3104189 0.3637862 +0.5007803 0.3104189 0.3637862 +0.510322 0.3104189 0.3637862 +0.5195258 0.3104189 0.3637862 +0.5284142 0.3104189 0.3637862 +0.5370079 0.3104189 0.3637862 +0.5453253 0.3104189 0.3637862 +0.5533834 0.3104189 0.3637862 +0.5611974 0.3104189 0.3637862 +0.5687816 0.3104189 0.3637862 +0.092819 0.3293248 0.3637862 +0.1056428 0.3293248 0.3637862 +0.1201537 0.3293248 0.3637862 +0.1409607 0.3293248 0.3637862 +0.1678172 0.3293248 0.3637862 +0.1950164 0.3293248 0.3637862 +0.2210581 0.3293248 0.3637862 +0.245636 0.3293248 0.3637862 +0.2686816 0.3293248 0.3637862 +0.2902431 0.3293248 0.3637862 +0.3104189 0.3293248 0.3637862 +0.3293248 0.3293248 0.3637862 +0.3470774 0.3293248 0.3637862 +0.3637862 0.3293248 0.3637862 +0.3795513 0.3293248 0.3637862 +0.3944623 0.3293248 0.3637862 +0.4085988 0.3293248 0.3637862 +0.4220313 0.3293248 0.3637862 +0.4348222 0.3293248 0.3637862 +0.4470264 0.3293248 0.3637862 +0.4586928 0.3293248 0.3637862 +0.4698649 0.3293248 0.3637862 +0.4805811 0.3293248 0.3637862 +0.490876 0.3293248 0.3637862 +0.5007803 0.3293248 0.3637862 +0.510322 0.3293248 0.3637862 +0.5195258 0.3293248 0.3637862 +0.5284142 0.3293248 0.3637862 +0.5370079 0.3293248 0.3637862 +0.5453253 0.3293248 0.3637862 +0.5533834 0.3293248 0.3637862 +0.5611974 0.3293248 0.3637862 +0.5687816 0.3293248 0.3637862 +0.092819 0.3470774 0.3637862 +0.1056428 0.3470774 0.3637862 +0.1201537 0.3470774 0.3637862 +0.1409607 0.3470774 0.3637862 +0.1678172 0.3470774 0.3637862 +0.1950164 0.3470774 0.3637862 +0.2210581 0.3470774 0.3637862 +0.245636 0.3470774 0.3637862 +0.2686816 0.3470774 0.3637862 +0.2902431 0.3470774 0.3637862 +0.3104189 0.3470774 0.3637862 +0.3293248 0.3470774 0.3637862 +0.3470774 0.3470774 0.3637862 +0.3637862 0.3470774 0.3637862 +0.3795513 0.3470774 0.3637862 +0.3944623 0.3470774 0.3637862 +0.4085988 0.3470774 0.3637862 +0.4220313 0.3470774 0.3637862 +0.4348222 0.3470774 0.3637862 +0.4470264 0.3470774 0.3637862 +0.4586928 0.3470774 0.3637862 +0.4698649 0.3470774 0.3637862 +0.4805811 0.3470774 0.3637862 +0.490876 0.3470774 0.3637862 +0.5007803 0.3470774 0.3637862 +0.510322 0.3470774 0.3637862 +0.5195258 0.3470774 0.3637862 +0.5284142 0.3470774 0.3637862 +0.5370079 0.3470774 0.3637862 +0.5453253 0.3470774 0.3637862 +0.5533834 0.3470774 0.3637862 +0.5611974 0.3470774 0.3637862 +0.5687816 0.3470774 0.3637862 +0.092819 0.3637862 0.3637862 +0.1056428 0.3637862 0.3637862 +0.1201537 0.3637862 0.3637862 +0.1409607 0.3637862 0.3637862 +0.1678172 0.3637862 0.3637862 +0.1950164 0.3637862 0.3637862 +0.2210581 0.3637862 0.3637862 +0.245636 0.3637862 0.3637862 +0.2686816 0.3637862 0.3637862 +0.2902431 0.3637862 0.3637862 +0.3104189 0.3637862 0.3637862 +0.3293248 0.3637862 0.3637862 +0.3470774 0.3637862 0.3637862 +0.3637862 0.3637862 0.3637862 +0.3795513 0.3637862 0.3637862 +0.3944623 0.3637862 0.3637862 +0.4085988 0.3637862 0.3637862 +0.4220313 0.3637862 0.3637862 +0.4348222 0.3637862 0.3637862 +0.4470264 0.3637862 0.3637862 +0.4586928 0.3637862 0.3637862 +0.4698649 0.3637862 0.3637862 +0.4805811 0.3637862 0.3637862 +0.490876 0.3637862 0.3637862 +0.5007803 0.3637862 0.3637862 +0.510322 0.3637862 0.3637862 +0.5195258 0.3637862 0.3637862 +0.5284142 0.3637862 0.3637862 +0.5370079 0.3637862 0.3637862 +0.5453253 0.3637862 0.3637862 +0.5533834 0.3637862 0.3637862 +0.5611974 0.3637862 0.3637862 +0.5687816 0.3637862 0.3637862 +0.092819 0.3795513 0.3637862 +0.1056428 0.3795513 0.3637862 +0.1201537 0.3795513 0.3637862 +0.1409607 0.3795513 0.3637862 +0.1678172 0.3795513 0.3637862 +0.1950164 0.3795513 0.3637862 +0.2210581 0.3795513 0.3637862 +0.245636 0.3795513 0.3637862 +0.2686816 0.3795513 0.3637862 +0.2902431 0.3795513 0.3637862 +0.3104189 0.3795513 0.3637862 +0.3293248 0.3795513 0.3637862 +0.3470774 0.3795513 0.3637862 +0.3637862 0.3795513 0.3637862 +0.3795513 0.3795513 0.3637862 +0.3944623 0.3795513 0.3637862 +0.4085988 0.3795513 0.3637862 +0.4220313 0.3795513 0.3637862 +0.4348222 0.3795513 0.3637862 +0.4470264 0.3795513 0.3637862 +0.4586928 0.3795513 0.3637862 +0.4698649 0.3795513 0.3637862 +0.4805811 0.3795513 0.3637862 +0.490876 0.3795513 0.3637862 +0.5007803 0.3795513 0.3637862 +0.510322 0.3795513 0.3637862 +0.5195258 0.3795513 0.3637862 +0.5284142 0.3795513 0.3637862 +0.5370079 0.3795513 0.3637862 +0.5453253 0.3795513 0.3637862 +0.5533834 0.3795513 0.3637862 +0.5611974 0.3795513 0.3637862 +0.5687816 0.3795513 0.3637862 +0.092819 0.3944623 0.3637862 +0.1056428 0.3944623 0.3637862 +0.1201537 0.3944623 0.3637862 +0.1409607 0.3944623 0.3637862 +0.1678172 0.3944623 0.3637862 +0.1950164 0.3944623 0.3637862 +0.2210581 0.3944623 0.3637862 +0.245636 0.3944623 0.3637862 +0.2686816 0.3944623 0.3637862 +0.2902431 0.3944623 0.3637862 +0.3104189 0.3944623 0.3637862 +0.3293248 0.3944623 0.3637862 +0.3470774 0.3944623 0.3637862 +0.3637862 0.3944623 0.3637862 +0.3795513 0.3944623 0.3637862 +0.3944623 0.3944623 0.3637862 +0.4085988 0.3944623 0.3637862 +0.4220313 0.3944623 0.3637862 +0.4348222 0.3944623 0.3637862 +0.4470264 0.3944623 0.3637862 +0.4586928 0.3944623 0.3637862 +0.4698649 0.3944623 0.3637862 +0.4805811 0.3944623 0.3637862 +0.490876 0.3944623 0.3637862 +0.5007803 0.3944623 0.3637862 +0.510322 0.3944623 0.3637862 +0.5195258 0.3944623 0.3637862 +0.5284142 0.3944623 0.3637862 +0.5370079 0.3944623 0.3637862 +0.5453253 0.3944623 0.3637862 +0.5533834 0.3944623 0.3637862 +0.5611974 0.3944623 0.3637862 +0.5687816 0.3944623 0.3637862 +0.092819 0.4085988 0.3637862 +0.1056428 0.4085988 0.3637862 +0.1201537 0.4085988 0.3637862 +0.1409607 0.4085988 0.3637862 +0.1678172 0.4085988 0.3637862 +0.1950164 0.4085988 0.3637862 +0.2210581 0.4085988 0.3637862 +0.245636 0.4085988 0.3637862 +0.2686816 0.4085988 0.3637862 +0.2902431 0.4085988 0.3637862 +0.3104189 0.4085988 0.3637862 +0.3293248 0.4085988 0.3637862 +0.3470774 0.4085988 0.3637862 +0.3637862 0.4085988 0.3637862 +0.3795513 0.4085988 0.3637862 +0.3944623 0.4085988 0.3637862 +0.4085988 0.4085988 0.3637862 +0.4220313 0.4085988 0.3637862 +0.4348222 0.4085988 0.3637862 +0.4470264 0.4085988 0.3637862 +0.4586928 0.4085988 0.3637862 +0.4698649 0.4085988 0.3637862 +0.4805811 0.4085988 0.3637862 +0.490876 0.4085988 0.3637862 +0.5007803 0.4085988 0.3637862 +0.510322 0.4085988 0.3637862 +0.5195258 0.4085988 0.3637862 +0.5284142 0.4085988 0.3637862 +0.5370079 0.4085988 0.3637862 +0.5453253 0.4085988 0.3637862 +0.5533834 0.4085988 0.3637862 +0.5611974 0.4085988 0.3637862 +0.5687816 0.4085988 0.3637862 +0.092819 0.4220313 0.3637862 +0.1056428 0.4220313 0.3637862 +0.1201537 0.4220313 0.3637862 +0.1409607 0.4220313 0.3637862 +0.1678172 0.4220313 0.3637862 +0.1950164 0.4220313 0.3637862 +0.2210581 0.4220313 0.3637862 +0.245636 0.4220313 0.3637862 +0.2686816 0.4220313 0.3637862 +0.2902431 0.4220313 0.3637862 +0.3104189 0.4220313 0.3637862 +0.3293248 0.4220313 0.3637862 +0.3470774 0.4220313 0.3637862 +0.3637862 0.4220313 0.3637862 +0.3795513 0.4220313 0.3637862 +0.3944623 0.4220313 0.3637862 +0.4085988 0.4220313 0.3637862 +0.4220313 0.4220313 0.3637862 +0.4348222 0.4220313 0.3637862 +0.4470264 0.4220313 0.3637862 +0.4586928 0.4220313 0.3637862 +0.4698649 0.4220313 0.3637862 +0.4805811 0.4220313 0.3637862 +0.490876 0.4220313 0.3637862 +0.5007803 0.4220313 0.3637862 +0.510322 0.4220313 0.3637862 +0.5195258 0.4220313 0.3637862 +0.5284142 0.4220313 0.3637862 +0.5370079 0.4220313 0.3637862 +0.5453253 0.4220313 0.3637862 +0.5533834 0.4220313 0.3637862 +0.5611974 0.4220313 0.3637862 +0.5687816 0.4220313 0.3637862 +0.092819 0.4348222 0.3637862 +0.1056428 0.4348222 0.3637862 +0.1201537 0.4348222 0.3637862 +0.1409607 0.4348222 0.3637862 +0.1678172 0.4348222 0.3637862 +0.1950164 0.4348222 0.3637862 +0.2210581 0.4348222 0.3637862 +0.245636 0.4348222 0.3637862 +0.2686816 0.4348222 0.3637862 +0.2902431 0.4348222 0.3637862 +0.3104189 0.4348222 0.3637862 +0.3293248 0.4348222 0.3637862 +0.3470774 0.4348222 0.3637862 +0.3637862 0.4348222 0.3637862 +0.3795513 0.4348222 0.3637862 +0.3944623 0.4348222 0.3637862 +0.4085988 0.4348222 0.3637862 +0.4220313 0.4348222 0.3637862 +0.4348222 0.4348222 0.3637862 +0.4470264 0.4348222 0.3637862 +0.4586928 0.4348222 0.3637862 +0.4698649 0.4348222 0.3637862 +0.4805811 0.4348222 0.3637862 +0.490876 0.4348222 0.3637862 +0.5007803 0.4348222 0.3637862 +0.510322 0.4348222 0.3637862 +0.5195258 0.4348222 0.3637862 +0.5284142 0.4348222 0.3637862 +0.5370079 0.4348222 0.3637862 +0.5453253 0.4348222 0.3637862 +0.5533834 0.4348222 0.3637862 +0.5611974 0.4348222 0.3637862 +0.5687816 0.4348222 0.3637862 +0.092819 0.4470264 0.3637862 +0.1056428 0.4470264 0.3637862 +0.1201537 0.4470264 0.3637862 +0.1409607 0.4470264 0.3637862 +0.1678172 0.4470264 0.3637862 +0.1950164 0.4470264 0.3637862 +0.2210581 0.4470264 0.3637862 +0.245636 0.4470264 0.3637862 +0.2686816 0.4470264 0.3637862 +0.2902431 0.4470264 0.3637862 +0.3104189 0.4470264 0.3637862 +0.3293248 0.4470264 0.3637862 +0.3470774 0.4470264 0.3637862 +0.3637862 0.4470264 0.3637862 +0.3795513 0.4470264 0.3637862 +0.3944623 0.4470264 0.3637862 +0.4085988 0.4470264 0.3637862 +0.4220313 0.4470264 0.3637862 +0.4348222 0.4470264 0.3637862 +0.4470264 0.4470264 0.3637862 +0.4586928 0.4470264 0.3637862 +0.4698649 0.4470264 0.3637862 +0.4805811 0.4470264 0.3637862 +0.490876 0.4470264 0.3637862 +0.5007803 0.4470264 0.3637862 +0.510322 0.4470264 0.3637862 +0.5195258 0.4470264 0.3637862 +0.5284142 0.4470264 0.3637862 +0.5370079 0.4470264 0.3637862 +0.5453253 0.4470264 0.3637862 +0.5533834 0.4470264 0.3637862 +0.5611974 0.4470264 0.3637862 +0.5687816 0.4470264 0.3637862 +0.092819 0.4586928 0.3637862 +0.1056428 0.4586928 0.3637862 +0.1201537 0.4586928 0.3637862 +0.1409607 0.4586928 0.3637862 +0.1678172 0.4586928 0.3637862 +0.1950164 0.4586928 0.3637862 +0.2210581 0.4586928 0.3637862 +0.245636 0.4586928 0.3637862 +0.2686816 0.4586928 0.3637862 +0.2902431 0.4586928 0.3637862 +0.3104189 0.4586928 0.3637862 +0.3293248 0.4586928 0.3637862 +0.3470774 0.4586928 0.3637862 +0.3637862 0.4586928 0.3637862 +0.3795513 0.4586928 0.3637862 +0.3944623 0.4586928 0.3637862 +0.4085988 0.4586928 0.3637862 +0.4220313 0.4586928 0.3637862 +0.4348222 0.4586928 0.3637862 +0.4470264 0.4586928 0.3637862 +0.4586928 0.4586928 0.3637862 +0.4698649 0.4586928 0.3637862 +0.4805811 0.4586928 0.3637862 +0.490876 0.4586928 0.3637862 +0.5007803 0.4586928 0.3637862 +0.510322 0.4586928 0.3637862 +0.5195258 0.4586928 0.3637862 +0.5284142 0.4586928 0.3637862 +0.5370079 0.4586928 0.3637862 +0.5453253 0.4586928 0.3637862 +0.5533834 0.4586928 0.3637862 +0.5611974 0.4586928 0.3637862 +0.5687816 0.4586928 0.3637862 +0.092819 0.4698649 0.3637862 +0.1056428 0.4698649 0.3637862 +0.1201537 0.4698649 0.3637862 +0.1409607 0.4698649 0.3637862 +0.1678172 0.4698649 0.3637862 +0.1950164 0.4698649 0.3637862 +0.2210581 0.4698649 0.3637862 +0.245636 0.4698649 0.3637862 +0.2686816 0.4698649 0.3637862 +0.2902431 0.4698649 0.3637862 +0.3104189 0.4698649 0.3637862 +0.3293248 0.4698649 0.3637862 +0.3470774 0.4698649 0.3637862 +0.3637862 0.4698649 0.3637862 +0.3795513 0.4698649 0.3637862 +0.3944623 0.4698649 0.3637862 +0.4085988 0.4698649 0.3637862 +0.4220313 0.4698649 0.3637862 +0.4348222 0.4698649 0.3637862 +0.4470264 0.4698649 0.3637862 +0.4586928 0.4698649 0.3637862 +0.4698649 0.4698649 0.3637862 +0.4805811 0.4698649 0.3637862 +0.490876 0.4698649 0.3637862 +0.5007803 0.4698649 0.3637862 +0.510322 0.4698649 0.3637862 +0.5195258 0.4698649 0.3637862 +0.5284142 0.4698649 0.3637862 +0.5370079 0.4698649 0.3637862 +0.5453253 0.4698649 0.3637862 +0.5533834 0.4698649 0.3637862 +0.5611974 0.4698649 0.3637862 +0.5687816 0.4698649 0.3637862 +0.092819 0.4805811 0.3637862 +0.1056428 0.4805811 0.3637862 +0.1201537 0.4805811 0.3637862 +0.1409607 0.4805811 0.3637862 +0.1678172 0.4805811 0.3637862 +0.1950164 0.4805811 0.3637862 +0.2210581 0.4805811 0.3637862 +0.245636 0.4805811 0.3637862 +0.2686816 0.4805811 0.3637862 +0.2902431 0.4805811 0.3637862 +0.3104189 0.4805811 0.3637862 +0.3293248 0.4805811 0.3637862 +0.3470774 0.4805811 0.3637862 +0.3637862 0.4805811 0.3637862 +0.3795513 0.4805811 0.3637862 +0.3944623 0.4805811 0.3637862 +0.4085988 0.4805811 0.3637862 +0.4220313 0.4805811 0.3637862 +0.4348222 0.4805811 0.3637862 +0.4470264 0.4805811 0.3637862 +0.4586928 0.4805811 0.3637862 +0.4698649 0.4805811 0.3637862 +0.4805811 0.4805811 0.3637862 +0.490876 0.4805811 0.3637862 +0.5007803 0.4805811 0.3637862 +0.510322 0.4805811 0.3637862 +0.5195258 0.4805811 0.3637862 +0.5284142 0.4805811 0.3637862 +0.5370079 0.4805811 0.3637862 +0.5453253 0.4805811 0.3637862 +0.5533834 0.4805811 0.3637862 +0.5611974 0.4805811 0.3637862 +0.5687816 0.4805811 0.3637862 +0.092819 0.490876 0.3637862 +0.1056428 0.490876 0.3637862 +0.1201537 0.490876 0.3637862 +0.1409607 0.490876 0.3637862 +0.1678172 0.490876 0.3637862 +0.1950164 0.490876 0.3637862 +0.2210581 0.490876 0.3637862 +0.245636 0.490876 0.3637862 +0.2686816 0.490876 0.3637862 +0.2902431 0.490876 0.3637862 +0.3104189 0.490876 0.3637862 +0.3293248 0.490876 0.3637862 +0.3470774 0.490876 0.3637862 +0.3637862 0.490876 0.3637862 +0.3795513 0.490876 0.3637862 +0.3944623 0.490876 0.3637862 +0.4085988 0.490876 0.3637862 +0.4220313 0.490876 0.3637862 +0.4348222 0.490876 0.3637862 +0.4470264 0.490876 0.3637862 +0.4586928 0.490876 0.3637862 +0.4698649 0.490876 0.3637862 +0.4805811 0.490876 0.3637862 +0.490876 0.490876 0.3637862 +0.5007803 0.490876 0.3637862 +0.510322 0.490876 0.3637862 +0.5195258 0.490876 0.3637862 +0.5284142 0.490876 0.3637862 +0.5370079 0.490876 0.3637862 +0.5453253 0.490876 0.3637862 +0.5533834 0.490876 0.3637862 +0.5611974 0.490876 0.3637862 +0.5687816 0.490876 0.3637862 +0.092819 0.5007803 0.3637862 +0.1056428 0.5007803 0.3637862 +0.1201537 0.5007803 0.3637862 +0.1409607 0.5007803 0.3637862 +0.1678172 0.5007803 0.3637862 +0.1950164 0.5007803 0.3637862 +0.2210581 0.5007803 0.3637862 +0.245636 0.5007803 0.3637862 +0.2686816 0.5007803 0.3637862 +0.2902431 0.5007803 0.3637862 +0.3104189 0.5007803 0.3637862 +0.3293248 0.5007803 0.3637862 +0.3470774 0.5007803 0.3637862 +0.3637862 0.5007803 0.3637862 +0.3795513 0.5007803 0.3637862 +0.3944623 0.5007803 0.3637862 +0.4085988 0.5007803 0.3637862 +0.4220313 0.5007803 0.3637862 +0.4348222 0.5007803 0.3637862 +0.4470264 0.5007803 0.3637862 +0.4586928 0.5007803 0.3637862 +0.4698649 0.5007803 0.3637862 +0.4805811 0.5007803 0.3637862 +0.490876 0.5007803 0.3637862 +0.5007803 0.5007803 0.3637862 +0.510322 0.5007803 0.3637862 +0.5195258 0.5007803 0.3637862 +0.5284142 0.5007803 0.3637862 +0.5370079 0.5007803 0.3637862 +0.5453253 0.5007803 0.3637862 +0.5533834 0.5007803 0.3637862 +0.5611974 0.5007803 0.3637862 +0.5687816 0.5007803 0.3637862 +0.092819 0.510322 0.3637862 +0.1056428 0.510322 0.3637862 +0.1201537 0.510322 0.3637862 +0.1409607 0.510322 0.3637862 +0.1678172 0.510322 0.3637862 +0.1950164 0.510322 0.3637862 +0.2210581 0.510322 0.3637862 +0.245636 0.510322 0.3637862 +0.2686816 0.510322 0.3637862 +0.2902431 0.510322 0.3637862 +0.3104189 0.510322 0.3637862 +0.3293248 0.510322 0.3637862 +0.3470774 0.510322 0.3637862 +0.3637862 0.510322 0.3637862 +0.3795513 0.510322 0.3637862 +0.3944623 0.510322 0.3637862 +0.4085988 0.510322 0.3637862 +0.4220313 0.510322 0.3637862 +0.4348222 0.510322 0.3637862 +0.4470264 0.510322 0.3637862 +0.4586928 0.510322 0.3637862 +0.4698649 0.510322 0.3637862 +0.4805811 0.510322 0.3637862 +0.490876 0.510322 0.3637862 +0.5007803 0.510322 0.3637862 +0.510322 0.510322 0.3637862 +0.5195258 0.510322 0.3637862 +0.5284142 0.510322 0.3637862 +0.5370079 0.510322 0.3637862 +0.5453253 0.510322 0.3637862 +0.5533834 0.510322 0.3637862 +0.5611974 0.510322 0.3637862 +0.5687816 0.510322 0.3637862 +0.092819 0.5195258 0.3637862 +0.1056428 0.5195258 0.3637862 +0.1201537 0.5195258 0.3637862 +0.1409607 0.5195258 0.3637862 +0.1678172 0.5195258 0.3637862 +0.1950164 0.5195258 0.3637862 +0.2210581 0.5195258 0.3637862 +0.245636 0.5195258 0.3637862 +0.2686816 0.5195258 0.3637862 +0.2902431 0.5195258 0.3637862 +0.3104189 0.5195258 0.3637862 +0.3293248 0.5195258 0.3637862 +0.3470774 0.5195258 0.3637862 +0.3637862 0.5195258 0.3637862 +0.3795513 0.5195258 0.3637862 +0.3944623 0.5195258 0.3637862 +0.4085988 0.5195258 0.3637862 +0.4220313 0.5195258 0.3637862 +0.4348222 0.5195258 0.3637862 +0.4470264 0.5195258 0.3637862 +0.4586928 0.5195258 0.3637862 +0.4698649 0.5195258 0.3637862 +0.4805811 0.5195258 0.3637862 +0.490876 0.5195258 0.3637862 +0.5007803 0.5195258 0.3637862 +0.510322 0.5195258 0.3637862 +0.5195258 0.5195258 0.3637862 +0.5284142 0.5195258 0.3637862 +0.5370079 0.5195258 0.3637862 +0.5453253 0.5195258 0.3637862 +0.5533834 0.5195258 0.3637862 +0.5611974 0.5195258 0.3637862 +0.5687816 0.5195258 0.3637862 +0.092819 0.5284142 0.3637862 +0.1056428 0.5284142 0.3637862 +0.1201537 0.5284142 0.3637862 +0.1409607 0.5284142 0.3637862 +0.1678172 0.5284142 0.3637862 +0.1950164 0.5284142 0.3637862 +0.2210581 0.5284142 0.3637862 +0.245636 0.5284142 0.3637862 +0.2686816 0.5284142 0.3637862 +0.2902431 0.5284142 0.3637862 +0.3104189 0.5284142 0.3637862 +0.3293248 0.5284142 0.3637862 +0.3470774 0.5284142 0.3637862 +0.3637862 0.5284142 0.3637862 +0.3795513 0.5284142 0.3637862 +0.3944623 0.5284142 0.3637862 +0.4085988 0.5284142 0.3637862 +0.4220313 0.5284142 0.3637862 +0.4348222 0.5284142 0.3637862 +0.4470264 0.5284142 0.3637862 +0.4586928 0.5284142 0.3637862 +0.4698649 0.5284142 0.3637862 +0.4805811 0.5284142 0.3637862 +0.490876 0.5284142 0.3637862 +0.5007803 0.5284142 0.3637862 +0.510322 0.5284142 0.3637862 +0.5195258 0.5284142 0.3637862 +0.5284142 0.5284142 0.3637862 +0.5370079 0.5284142 0.3637862 +0.5453253 0.5284142 0.3637862 +0.5533834 0.5284142 0.3637862 +0.5611974 0.5284142 0.3637862 +0.5687816 0.5284142 0.3637862 +0.092819 0.5370079 0.3637862 +0.1056428 0.5370079 0.3637862 +0.1201537 0.5370079 0.3637862 +0.1409607 0.5370079 0.3637862 +0.1678172 0.5370079 0.3637862 +0.1950164 0.5370079 0.3637862 +0.2210581 0.5370079 0.3637862 +0.245636 0.5370079 0.3637862 +0.2686816 0.5370079 0.3637862 +0.2902431 0.5370079 0.3637862 +0.3104189 0.5370079 0.3637862 +0.3293248 0.5370079 0.3637862 +0.3470774 0.5370079 0.3637862 +0.3637862 0.5370079 0.3637862 +0.3795513 0.5370079 0.3637862 +0.3944623 0.5370079 0.3637862 +0.4085988 0.5370079 0.3637862 +0.4220313 0.5370079 0.3637862 +0.4348222 0.5370079 0.3637862 +0.4470264 0.5370079 0.3637862 +0.4586928 0.5370079 0.3637862 +0.4698649 0.5370079 0.3637862 +0.4805811 0.5370079 0.3637862 +0.490876 0.5370079 0.3637862 +0.5007803 0.5370079 0.3637862 +0.510322 0.5370079 0.3637862 +0.5195258 0.5370079 0.3637862 +0.5284142 0.5370079 0.3637862 +0.5370079 0.5370079 0.3637862 +0.5453253 0.5370079 0.3637862 +0.5533834 0.5370079 0.3637862 +0.5611974 0.5370079 0.3637862 +0.5687816 0.5370079 0.3637862 +0.092819 0.5453253 0.3637862 +0.1056428 0.5453253 0.3637862 +0.1201537 0.5453253 0.3637862 +0.1409607 0.5453253 0.3637862 +0.1678172 0.5453253 0.3637862 +0.1950164 0.5453253 0.3637862 +0.2210581 0.5453253 0.3637862 +0.245636 0.5453253 0.3637862 +0.2686816 0.5453253 0.3637862 +0.2902431 0.5453253 0.3637862 +0.3104189 0.5453253 0.3637862 +0.3293248 0.5453253 0.3637862 +0.3470774 0.5453253 0.3637862 +0.3637862 0.5453253 0.3637862 +0.3795513 0.5453253 0.3637862 +0.3944623 0.5453253 0.3637862 +0.4085988 0.5453253 0.3637862 +0.4220313 0.5453253 0.3637862 +0.4348222 0.5453253 0.3637862 +0.4470264 0.5453253 0.3637862 +0.4586928 0.5453253 0.3637862 +0.4698649 0.5453253 0.3637862 +0.4805811 0.5453253 0.3637862 +0.490876 0.5453253 0.3637862 +0.5007803 0.5453253 0.3637862 +0.510322 0.5453253 0.3637862 +0.5195258 0.5453253 0.3637862 +0.5284142 0.5453253 0.3637862 +0.5370079 0.5453253 0.3637862 +0.5453253 0.5453253 0.3637862 +0.5533834 0.5453253 0.3637862 +0.5611974 0.5453253 0.3637862 +0.5687816 0.5453253 0.3637862 +0.092819 0.5533834 0.3637862 +0.1056428 0.5533834 0.3637862 +0.1201537 0.5533834 0.3637862 +0.1409607 0.5533834 0.3637862 +0.1678172 0.5533834 0.3637862 +0.1950164 0.5533834 0.3637862 +0.2210581 0.5533834 0.3637862 +0.245636 0.5533834 0.3637862 +0.2686816 0.5533834 0.3637862 +0.2902431 0.5533834 0.3637862 +0.3104189 0.5533834 0.3637862 +0.3293248 0.5533834 0.3637862 +0.3470774 0.5533834 0.3637862 +0.3637862 0.5533834 0.3637862 +0.3795513 0.5533834 0.3637862 +0.3944623 0.5533834 0.3637862 +0.4085988 0.5533834 0.3637862 +0.4220313 0.5533834 0.3637862 +0.4348222 0.5533834 0.3637862 +0.4470264 0.5533834 0.3637862 +0.4586928 0.5533834 0.3637862 +0.4698649 0.5533834 0.3637862 +0.4805811 0.5533834 0.3637862 +0.490876 0.5533834 0.3637862 +0.5007803 0.5533834 0.3637862 +0.510322 0.5533834 0.3637862 +0.5195258 0.5533834 0.3637862 +0.5284142 0.5533834 0.3637862 +0.5370079 0.5533834 0.3637862 +0.5453253 0.5533834 0.3637862 +0.5533834 0.5533834 0.3637862 +0.5611974 0.5533834 0.3637862 +0.5687816 0.5533834 0.3637862 +0.092819 0.5611974 0.3637862 +0.1056428 0.5611974 0.3637862 +0.1201537 0.5611974 0.3637862 +0.1409607 0.5611974 0.3637862 +0.1678172 0.5611974 0.3637862 +0.1950164 0.5611974 0.3637862 +0.2210581 0.5611974 0.3637862 +0.245636 0.5611974 0.3637862 +0.2686816 0.5611974 0.3637862 +0.2902431 0.5611974 0.3637862 +0.3104189 0.5611974 0.3637862 +0.3293248 0.5611974 0.3637862 +0.3470774 0.5611974 0.3637862 +0.3637862 0.5611974 0.3637862 +0.3795513 0.5611974 0.3637862 +0.3944623 0.5611974 0.3637862 +0.4085988 0.5611974 0.3637862 +0.4220313 0.5611974 0.3637862 +0.4348222 0.5611974 0.3637862 +0.4470264 0.5611974 0.3637862 +0.4586928 0.5611974 0.3637862 +0.4698649 0.5611974 0.3637862 +0.4805811 0.5611974 0.3637862 +0.490876 0.5611974 0.3637862 +0.5007803 0.5611974 0.3637862 +0.510322 0.5611974 0.3637862 +0.5195258 0.5611974 0.3637862 +0.5284142 0.5611974 0.3637862 +0.5370079 0.5611974 0.3637862 +0.5453253 0.5611974 0.3637862 +0.5533834 0.5611974 0.3637862 +0.5611974 0.5611974 0.3637862 +0.5687816 0.5611974 0.3637862 +0.092819 0.5687816 0.3637862 +0.1056428 0.5687816 0.3637862 +0.1201537 0.5687816 0.3637862 +0.1409607 0.5687816 0.3637862 +0.1678172 0.5687816 0.3637862 +0.1950164 0.5687816 0.3637862 +0.2210581 0.5687816 0.3637862 +0.245636 0.5687816 0.3637862 +0.2686816 0.5687816 0.3637862 +0.2902431 0.5687816 0.3637862 +0.3104189 0.5687816 0.3637862 +0.3293248 0.5687816 0.3637862 +0.3470774 0.5687816 0.3637862 +0.3637862 0.5687816 0.3637862 +0.3795513 0.5687816 0.3637862 +0.3944623 0.5687816 0.3637862 +0.4085988 0.5687816 0.3637862 +0.4220313 0.5687816 0.3637862 +0.4348222 0.5687816 0.3637862 +0.4470264 0.5687816 0.3637862 +0.4586928 0.5687816 0.3637862 +0.4698649 0.5687816 0.3637862 +0.4805811 0.5687816 0.3637862 +0.490876 0.5687816 0.3637862 +0.5007803 0.5687816 0.3637862 +0.510322 0.5687816 0.3637862 +0.5195258 0.5687816 0.3637862 +0.5284142 0.5687816 0.3637862 +0.5370079 0.5687816 0.3637862 +0.5453253 0.5687816 0.3637862 +0.5533834 0.5687816 0.3637862 +0.5611974 0.5687816 0.3637862 +0.5687816 0.5687816 0.3637862 +0.092819 0.092819 0.3795513 +0.1056428 0.092819 0.3795513 +0.1201537 0.092819 0.3795513 +0.1409607 0.092819 0.3795513 +0.1678172 0.092819 0.3795513 +0.1950164 0.092819 0.3795513 +0.2210581 0.092819 0.3795513 +0.245636 0.092819 0.3795513 +0.2686816 0.092819 0.3795513 +0.2902431 0.092819 0.3795513 +0.3104189 0.092819 0.3795513 +0.3293248 0.092819 0.3795513 +0.3470774 0.092819 0.3795513 +0.3637862 0.092819 0.3795513 +0.3795513 0.092819 0.3795513 +0.3944623 0.092819 0.3795513 +0.4085988 0.092819 0.3795513 +0.4220313 0.092819 0.3795513 +0.4348222 0.092819 0.3795513 +0.4470264 0.092819 0.3795513 +0.4586928 0.092819 0.3795513 +0.4698649 0.092819 0.3795513 +0.4805811 0.092819 0.3795513 +0.490876 0.092819 0.3795513 +0.5007803 0.092819 0.3795513 +0.510322 0.092819 0.3795513 +0.5195258 0.092819 0.3795513 +0.5284142 0.092819 0.3795513 +0.5370079 0.092819 0.3795513 +0.5453253 0.092819 0.3795513 +0.5533834 0.092819 0.3795513 +0.5611974 0.092819 0.3795513 +0.5687816 0.092819 0.3795513 +0.092819 0.1056428 0.3795513 +0.1056428 0.1056428 0.3795513 +0.1201537 0.1056428 0.3795513 +0.1409607 0.1056428 0.3795513 +0.1678172 0.1056428 0.3795513 +0.1950164 0.1056428 0.3795513 +0.2210581 0.1056428 0.3795513 +0.245636 0.1056428 0.3795513 +0.2686816 0.1056428 0.3795513 +0.2902431 0.1056428 0.3795513 +0.3104189 0.1056428 0.3795513 +0.3293248 0.1056428 0.3795513 +0.3470774 0.1056428 0.3795513 +0.3637862 0.1056428 0.3795513 +0.3795513 0.1056428 0.3795513 +0.3944623 0.1056428 0.3795513 +0.4085988 0.1056428 0.3795513 +0.4220313 0.1056428 0.3795513 +0.4348222 0.1056428 0.3795513 +0.4470264 0.1056428 0.3795513 +0.4586928 0.1056428 0.3795513 +0.4698649 0.1056428 0.3795513 +0.4805811 0.1056428 0.3795513 +0.490876 0.1056428 0.3795513 +0.5007803 0.1056428 0.3795513 +0.510322 0.1056428 0.3795513 +0.5195258 0.1056428 0.3795513 +0.5284142 0.1056428 0.3795513 +0.5370079 0.1056428 0.3795513 +0.5453253 0.1056428 0.3795513 +0.5533834 0.1056428 0.3795513 +0.5611974 0.1056428 0.3795513 +0.5687816 0.1056428 0.3795513 +0.092819 0.1201537 0.3795513 +0.1056428 0.1201537 0.3795513 +0.1201537 0.1201537 0.3795513 +0.1409607 0.1201537 0.3795513 +0.1678172 0.1201537 0.3795513 +0.1950164 0.1201537 0.3795513 +0.2210581 0.1201537 0.3795513 +0.245636 0.1201537 0.3795513 +0.2686816 0.1201537 0.3795513 +0.2902431 0.1201537 0.3795513 +0.3104189 0.1201537 0.3795513 +0.3293248 0.1201537 0.3795513 +0.3470774 0.1201537 0.3795513 +0.3637862 0.1201537 0.3795513 +0.3795513 0.1201537 0.3795513 +0.3944623 0.1201537 0.3795513 +0.4085988 0.1201537 0.3795513 +0.4220313 0.1201537 0.3795513 +0.4348222 0.1201537 0.3795513 +0.4470264 0.1201537 0.3795513 +0.4586928 0.1201537 0.3795513 +0.4698649 0.1201537 0.3795513 +0.4805811 0.1201537 0.3795513 +0.490876 0.1201537 0.3795513 +0.5007803 0.1201537 0.3795513 +0.510322 0.1201537 0.3795513 +0.5195258 0.1201537 0.3795513 +0.5284142 0.1201537 0.3795513 +0.5370079 0.1201537 0.3795513 +0.5453253 0.1201537 0.3795513 +0.5533834 0.1201537 0.3795513 +0.5611974 0.1201537 0.3795513 +0.5687816 0.1201537 0.3795513 +0.092819 0.1409607 0.3795513 +0.1056428 0.1409607 0.3795513 +0.1201537 0.1409607 0.3795513 +0.1409607 0.1409607 0.3795513 +0.1678172 0.1409607 0.3795513 +0.1950164 0.1409607 0.3795513 +0.2210581 0.1409607 0.3795513 +0.245636 0.1409607 0.3795513 +0.2686816 0.1409607 0.3795513 +0.2902431 0.1409607 0.3795513 +0.3104189 0.1409607 0.3795513 +0.3293248 0.1409607 0.3795513 +0.3470774 0.1409607 0.3795513 +0.3637862 0.1409607 0.3795513 +0.3795513 0.1409607 0.3795513 +0.3944623 0.1409607 0.3795513 +0.4085988 0.1409607 0.3795513 +0.4220313 0.1409607 0.3795513 +0.4348222 0.1409607 0.3795513 +0.4470264 0.1409607 0.3795513 +0.4586928 0.1409607 0.3795513 +0.4698649 0.1409607 0.3795513 +0.4805811 0.1409607 0.3795513 +0.490876 0.1409607 0.3795513 +0.5007803 0.1409607 0.3795513 +0.510322 0.1409607 0.3795513 +0.5195258 0.1409607 0.3795513 +0.5284142 0.1409607 0.3795513 +0.5370079 0.1409607 0.3795513 +0.5453253 0.1409607 0.3795513 +0.5533834 0.1409607 0.3795513 +0.5611974 0.1409607 0.3795513 +0.5687816 0.1409607 0.3795513 +0.092819 0.1678172 0.3795513 +0.1056428 0.1678172 0.3795513 +0.1201537 0.1678172 0.3795513 +0.1409607 0.1678172 0.3795513 +0.1678172 0.1678172 0.3795513 +0.1950164 0.1678172 0.3795513 +0.2210581 0.1678172 0.3795513 +0.245636 0.1678172 0.3795513 +0.2686816 0.1678172 0.3795513 +0.2902431 0.1678172 0.3795513 +0.3104189 0.1678172 0.3795513 +0.3293248 0.1678172 0.3795513 +0.3470774 0.1678172 0.3795513 +0.3637862 0.1678172 0.3795513 +0.3795513 0.1678172 0.3795513 +0.3944623 0.1678172 0.3795513 +0.4085988 0.1678172 0.3795513 +0.4220313 0.1678172 0.3795513 +0.4348222 0.1678172 0.3795513 +0.4470264 0.1678172 0.3795513 +0.4586928 0.1678172 0.3795513 +0.4698649 0.1678172 0.3795513 +0.4805811 0.1678172 0.3795513 +0.490876 0.1678172 0.3795513 +0.5007803 0.1678172 0.3795513 +0.510322 0.1678172 0.3795513 +0.5195258 0.1678172 0.3795513 +0.5284142 0.1678172 0.3795513 +0.5370079 0.1678172 0.3795513 +0.5453253 0.1678172 0.3795513 +0.5533834 0.1678172 0.3795513 +0.5611974 0.1678172 0.3795513 +0.5687816 0.1678172 0.3795513 +0.092819 0.1950164 0.3795513 +0.1056428 0.1950164 0.3795513 +0.1201537 0.1950164 0.3795513 +0.1409607 0.1950164 0.3795513 +0.1678172 0.1950164 0.3795513 +0.1950164 0.1950164 0.3795513 +0.2210581 0.1950164 0.3795513 +0.245636 0.1950164 0.3795513 +0.2686816 0.1950164 0.3795513 +0.2902431 0.1950164 0.3795513 +0.3104189 0.1950164 0.3795513 +0.3293248 0.1950164 0.3795513 +0.3470774 0.1950164 0.3795513 +0.3637862 0.1950164 0.3795513 +0.3795513 0.1950164 0.3795513 +0.3944623 0.1950164 0.3795513 +0.4085988 0.1950164 0.3795513 +0.4220313 0.1950164 0.3795513 +0.4348222 0.1950164 0.3795513 +0.4470264 0.1950164 0.3795513 +0.4586928 0.1950164 0.3795513 +0.4698649 0.1950164 0.3795513 +0.4805811 0.1950164 0.3795513 +0.490876 0.1950164 0.3795513 +0.5007803 0.1950164 0.3795513 +0.510322 0.1950164 0.3795513 +0.5195258 0.1950164 0.3795513 +0.5284142 0.1950164 0.3795513 +0.5370079 0.1950164 0.3795513 +0.5453253 0.1950164 0.3795513 +0.5533834 0.1950164 0.3795513 +0.5611974 0.1950164 0.3795513 +0.5687816 0.1950164 0.3795513 +0.092819 0.2210581 0.3795513 +0.1056428 0.2210581 0.3795513 +0.1201537 0.2210581 0.3795513 +0.1409607 0.2210581 0.3795513 +0.1678172 0.2210581 0.3795513 +0.1950164 0.2210581 0.3795513 +0.2210581 0.2210581 0.3795513 +0.245636 0.2210581 0.3795513 +0.2686816 0.2210581 0.3795513 +0.2902431 0.2210581 0.3795513 +0.3104189 0.2210581 0.3795513 +0.3293248 0.2210581 0.3795513 +0.3470774 0.2210581 0.3795513 +0.3637862 0.2210581 0.3795513 +0.3795513 0.2210581 0.3795513 +0.3944623 0.2210581 0.3795513 +0.4085988 0.2210581 0.3795513 +0.4220313 0.2210581 0.3795513 +0.4348222 0.2210581 0.3795513 +0.4470264 0.2210581 0.3795513 +0.4586928 0.2210581 0.3795513 +0.4698649 0.2210581 0.3795513 +0.4805811 0.2210581 0.3795513 +0.490876 0.2210581 0.3795513 +0.5007803 0.2210581 0.3795513 +0.510322 0.2210581 0.3795513 +0.5195258 0.2210581 0.3795513 +0.5284142 0.2210581 0.3795513 +0.5370079 0.2210581 0.3795513 +0.5453253 0.2210581 0.3795513 +0.5533834 0.2210581 0.3795513 +0.5611974 0.2210581 0.3795513 +0.5687816 0.2210581 0.3795513 +0.092819 0.245636 0.3795513 +0.1056428 0.245636 0.3795513 +0.1201537 0.245636 0.3795513 +0.1409607 0.245636 0.3795513 +0.1678172 0.245636 0.3795513 +0.1950164 0.245636 0.3795513 +0.2210581 0.245636 0.3795513 +0.245636 0.245636 0.3795513 +0.2686816 0.245636 0.3795513 +0.2902431 0.245636 0.3795513 +0.3104189 0.245636 0.3795513 +0.3293248 0.245636 0.3795513 +0.3470774 0.245636 0.3795513 +0.3637862 0.245636 0.3795513 +0.3795513 0.245636 0.3795513 +0.3944623 0.245636 0.3795513 +0.4085988 0.245636 0.3795513 +0.4220313 0.245636 0.3795513 +0.4348222 0.245636 0.3795513 +0.4470264 0.245636 0.3795513 +0.4586928 0.245636 0.3795513 +0.4698649 0.245636 0.3795513 +0.4805811 0.245636 0.3795513 +0.490876 0.245636 0.3795513 +0.5007803 0.245636 0.3795513 +0.510322 0.245636 0.3795513 +0.5195258 0.245636 0.3795513 +0.5284142 0.245636 0.3795513 +0.5370079 0.245636 0.3795513 +0.5453253 0.245636 0.3795513 +0.5533834 0.245636 0.3795513 +0.5611974 0.245636 0.3795513 +0.5687816 0.245636 0.3795513 +0.092819 0.2686816 0.3795513 +0.1056428 0.2686816 0.3795513 +0.1201537 0.2686816 0.3795513 +0.1409607 0.2686816 0.3795513 +0.1678172 0.2686816 0.3795513 +0.1950164 0.2686816 0.3795513 +0.2210581 0.2686816 0.3795513 +0.245636 0.2686816 0.3795513 +0.2686816 0.2686816 0.3795513 +0.2902431 0.2686816 0.3795513 +0.3104189 0.2686816 0.3795513 +0.3293248 0.2686816 0.3795513 +0.3470774 0.2686816 0.3795513 +0.3637862 0.2686816 0.3795513 +0.3795513 0.2686816 0.3795513 +0.3944623 0.2686816 0.3795513 +0.4085988 0.2686816 0.3795513 +0.4220313 0.2686816 0.3795513 +0.4348222 0.2686816 0.3795513 +0.4470264 0.2686816 0.3795513 +0.4586928 0.2686816 0.3795513 +0.4698649 0.2686816 0.3795513 +0.4805811 0.2686816 0.3795513 +0.490876 0.2686816 0.3795513 +0.5007803 0.2686816 0.3795513 +0.510322 0.2686816 0.3795513 +0.5195258 0.2686816 0.3795513 +0.5284142 0.2686816 0.3795513 +0.5370079 0.2686816 0.3795513 +0.5453253 0.2686816 0.3795513 +0.5533834 0.2686816 0.3795513 +0.5611974 0.2686816 0.3795513 +0.5687816 0.2686816 0.3795513 +0.092819 0.2902431 0.3795513 +0.1056428 0.2902431 0.3795513 +0.1201537 0.2902431 0.3795513 +0.1409607 0.2902431 0.3795513 +0.1678172 0.2902431 0.3795513 +0.1950164 0.2902431 0.3795513 +0.2210581 0.2902431 0.3795513 +0.245636 0.2902431 0.3795513 +0.2686816 0.2902431 0.3795513 +0.2902431 0.2902431 0.3795513 +0.3104189 0.2902431 0.3795513 +0.3293248 0.2902431 0.3795513 +0.3470774 0.2902431 0.3795513 +0.3637862 0.2902431 0.3795513 +0.3795513 0.2902431 0.3795513 +0.3944623 0.2902431 0.3795513 +0.4085988 0.2902431 0.3795513 +0.4220313 0.2902431 0.3795513 +0.4348222 0.2902431 0.3795513 +0.4470264 0.2902431 0.3795513 +0.4586928 0.2902431 0.3795513 +0.4698649 0.2902431 0.3795513 +0.4805811 0.2902431 0.3795513 +0.490876 0.2902431 0.3795513 +0.5007803 0.2902431 0.3795513 +0.510322 0.2902431 0.3795513 +0.5195258 0.2902431 0.3795513 +0.5284142 0.2902431 0.3795513 +0.5370079 0.2902431 0.3795513 +0.5453253 0.2902431 0.3795513 +0.5533834 0.2902431 0.3795513 +0.5611974 0.2902431 0.3795513 +0.5687816 0.2902431 0.3795513 +0.092819 0.3104189 0.3795513 +0.1056428 0.3104189 0.3795513 +0.1201537 0.3104189 0.3795513 +0.1409607 0.3104189 0.3795513 +0.1678172 0.3104189 0.3795513 +0.1950164 0.3104189 0.3795513 +0.2210581 0.3104189 0.3795513 +0.245636 0.3104189 0.3795513 +0.2686816 0.3104189 0.3795513 +0.2902431 0.3104189 0.3795513 +0.3104189 0.3104189 0.3795513 +0.3293248 0.3104189 0.3795513 +0.3470774 0.3104189 0.3795513 +0.3637862 0.3104189 0.3795513 +0.3795513 0.3104189 0.3795513 +0.3944623 0.3104189 0.3795513 +0.4085988 0.3104189 0.3795513 +0.4220313 0.3104189 0.3795513 +0.4348222 0.3104189 0.3795513 +0.4470264 0.3104189 0.3795513 +0.4586928 0.3104189 0.3795513 +0.4698649 0.3104189 0.3795513 +0.4805811 0.3104189 0.3795513 +0.490876 0.3104189 0.3795513 +0.5007803 0.3104189 0.3795513 +0.510322 0.3104189 0.3795513 +0.5195258 0.3104189 0.3795513 +0.5284142 0.3104189 0.3795513 +0.5370079 0.3104189 0.3795513 +0.5453253 0.3104189 0.3795513 +0.5533834 0.3104189 0.3795513 +0.5611974 0.3104189 0.3795513 +0.5687816 0.3104189 0.3795513 +0.092819 0.3293248 0.3795513 +0.1056428 0.3293248 0.3795513 +0.1201537 0.3293248 0.3795513 +0.1409607 0.3293248 0.3795513 +0.1678172 0.3293248 0.3795513 +0.1950164 0.3293248 0.3795513 +0.2210581 0.3293248 0.3795513 +0.245636 0.3293248 0.3795513 +0.2686816 0.3293248 0.3795513 +0.2902431 0.3293248 0.3795513 +0.3104189 0.3293248 0.3795513 +0.3293248 0.3293248 0.3795513 +0.3470774 0.3293248 0.3795513 +0.3637862 0.3293248 0.3795513 +0.3795513 0.3293248 0.3795513 +0.3944623 0.3293248 0.3795513 +0.4085988 0.3293248 0.3795513 +0.4220313 0.3293248 0.3795513 +0.4348222 0.3293248 0.3795513 +0.4470264 0.3293248 0.3795513 +0.4586928 0.3293248 0.3795513 +0.4698649 0.3293248 0.3795513 +0.4805811 0.3293248 0.3795513 +0.490876 0.3293248 0.3795513 +0.5007803 0.3293248 0.3795513 +0.510322 0.3293248 0.3795513 +0.5195258 0.3293248 0.3795513 +0.5284142 0.3293248 0.3795513 +0.5370079 0.3293248 0.3795513 +0.5453253 0.3293248 0.3795513 +0.5533834 0.3293248 0.3795513 +0.5611974 0.3293248 0.3795513 +0.5687816 0.3293248 0.3795513 +0.092819 0.3470774 0.3795513 +0.1056428 0.3470774 0.3795513 +0.1201537 0.3470774 0.3795513 +0.1409607 0.3470774 0.3795513 +0.1678172 0.3470774 0.3795513 +0.1950164 0.3470774 0.3795513 +0.2210581 0.3470774 0.3795513 +0.245636 0.3470774 0.3795513 +0.2686816 0.3470774 0.3795513 +0.2902431 0.3470774 0.3795513 +0.3104189 0.3470774 0.3795513 +0.3293248 0.3470774 0.3795513 +0.3470774 0.3470774 0.3795513 +0.3637862 0.3470774 0.3795513 +0.3795513 0.3470774 0.3795513 +0.3944623 0.3470774 0.3795513 +0.4085988 0.3470774 0.3795513 +0.4220313 0.3470774 0.3795513 +0.4348222 0.3470774 0.3795513 +0.4470264 0.3470774 0.3795513 +0.4586928 0.3470774 0.3795513 +0.4698649 0.3470774 0.3795513 +0.4805811 0.3470774 0.3795513 +0.490876 0.3470774 0.3795513 +0.5007803 0.3470774 0.3795513 +0.510322 0.3470774 0.3795513 +0.5195258 0.3470774 0.3795513 +0.5284142 0.3470774 0.3795513 +0.5370079 0.3470774 0.3795513 +0.5453253 0.3470774 0.3795513 +0.5533834 0.3470774 0.3795513 +0.5611974 0.3470774 0.3795513 +0.5687816 0.3470774 0.3795513 +0.092819 0.3637862 0.3795513 +0.1056428 0.3637862 0.3795513 +0.1201537 0.3637862 0.3795513 +0.1409607 0.3637862 0.3795513 +0.1678172 0.3637862 0.3795513 +0.1950164 0.3637862 0.3795513 +0.2210581 0.3637862 0.3795513 +0.245636 0.3637862 0.3795513 +0.2686816 0.3637862 0.3795513 +0.2902431 0.3637862 0.3795513 +0.3104189 0.3637862 0.3795513 +0.3293248 0.3637862 0.3795513 +0.3470774 0.3637862 0.3795513 +0.3637862 0.3637862 0.3795513 +0.3795513 0.3637862 0.3795513 +0.3944623 0.3637862 0.3795513 +0.4085988 0.3637862 0.3795513 +0.4220313 0.3637862 0.3795513 +0.4348222 0.3637862 0.3795513 +0.4470264 0.3637862 0.3795513 +0.4586928 0.3637862 0.3795513 +0.4698649 0.3637862 0.3795513 +0.4805811 0.3637862 0.3795513 +0.490876 0.3637862 0.3795513 +0.5007803 0.3637862 0.3795513 +0.510322 0.3637862 0.3795513 +0.5195258 0.3637862 0.3795513 +0.5284142 0.3637862 0.3795513 +0.5370079 0.3637862 0.3795513 +0.5453253 0.3637862 0.3795513 +0.5533834 0.3637862 0.3795513 +0.5611974 0.3637862 0.3795513 +0.5687816 0.3637862 0.3795513 +0.092819 0.3795513 0.3795513 +0.1056428 0.3795513 0.3795513 +0.1201537 0.3795513 0.3795513 +0.1409607 0.3795513 0.3795513 +0.1678172 0.3795513 0.3795513 +0.1950164 0.3795513 0.3795513 +0.2210581 0.3795513 0.3795513 +0.245636 0.3795513 0.3795513 +0.2686816 0.3795513 0.3795513 +0.2902431 0.3795513 0.3795513 +0.3104189 0.3795513 0.3795513 +0.3293248 0.3795513 0.3795513 +0.3470774 0.3795513 0.3795513 +0.3637862 0.3795513 0.3795513 +0.3795513 0.3795513 0.3795513 +0.3944623 0.3795513 0.3795513 +0.4085988 0.3795513 0.3795513 +0.4220313 0.3795513 0.3795513 +0.4348222 0.3795513 0.3795513 +0.4470264 0.3795513 0.3795513 +0.4586928 0.3795513 0.3795513 +0.4698649 0.3795513 0.3795513 +0.4805811 0.3795513 0.3795513 +0.490876 0.3795513 0.3795513 +0.5007803 0.3795513 0.3795513 +0.510322 0.3795513 0.3795513 +0.5195258 0.3795513 0.3795513 +0.5284142 0.3795513 0.3795513 +0.5370079 0.3795513 0.3795513 +0.5453253 0.3795513 0.3795513 +0.5533834 0.3795513 0.3795513 +0.5611974 0.3795513 0.3795513 +0.5687816 0.3795513 0.3795513 +0.092819 0.3944623 0.3795513 +0.1056428 0.3944623 0.3795513 +0.1201537 0.3944623 0.3795513 +0.1409607 0.3944623 0.3795513 +0.1678172 0.3944623 0.3795513 +0.1950164 0.3944623 0.3795513 +0.2210581 0.3944623 0.3795513 +0.245636 0.3944623 0.3795513 +0.2686816 0.3944623 0.3795513 +0.2902431 0.3944623 0.3795513 +0.3104189 0.3944623 0.3795513 +0.3293248 0.3944623 0.3795513 +0.3470774 0.3944623 0.3795513 +0.3637862 0.3944623 0.3795513 +0.3795513 0.3944623 0.3795513 +0.3944623 0.3944623 0.3795513 +0.4085988 0.3944623 0.3795513 +0.4220313 0.3944623 0.3795513 +0.4348222 0.3944623 0.3795513 +0.4470264 0.3944623 0.3795513 +0.4586928 0.3944623 0.3795513 +0.4698649 0.3944623 0.3795513 +0.4805811 0.3944623 0.3795513 +0.490876 0.3944623 0.3795513 +0.5007803 0.3944623 0.3795513 +0.510322 0.3944623 0.3795513 +0.5195258 0.3944623 0.3795513 +0.5284142 0.3944623 0.3795513 +0.5370079 0.3944623 0.3795513 +0.5453253 0.3944623 0.3795513 +0.5533834 0.3944623 0.3795513 +0.5611974 0.3944623 0.3795513 +0.5687816 0.3944623 0.3795513 +0.092819 0.4085988 0.3795513 +0.1056428 0.4085988 0.3795513 +0.1201537 0.4085988 0.3795513 +0.1409607 0.4085988 0.3795513 +0.1678172 0.4085988 0.3795513 +0.1950164 0.4085988 0.3795513 +0.2210581 0.4085988 0.3795513 +0.245636 0.4085988 0.3795513 +0.2686816 0.4085988 0.3795513 +0.2902431 0.4085988 0.3795513 +0.3104189 0.4085988 0.3795513 +0.3293248 0.4085988 0.3795513 +0.3470774 0.4085988 0.3795513 +0.3637862 0.4085988 0.3795513 +0.3795513 0.4085988 0.3795513 +0.3944623 0.4085988 0.3795513 +0.4085988 0.4085988 0.3795513 +0.4220313 0.4085988 0.3795513 +0.4348222 0.4085988 0.3795513 +0.4470264 0.4085988 0.3795513 +0.4586928 0.4085988 0.3795513 +0.4698649 0.4085988 0.3795513 +0.4805811 0.4085988 0.3795513 +0.490876 0.4085988 0.3795513 +0.5007803 0.4085988 0.3795513 +0.510322 0.4085988 0.3795513 +0.5195258 0.4085988 0.3795513 +0.5284142 0.4085988 0.3795513 +0.5370079 0.4085988 0.3795513 +0.5453253 0.4085988 0.3795513 +0.5533834 0.4085988 0.3795513 +0.5611974 0.4085988 0.3795513 +0.5687816 0.4085988 0.3795513 +0.092819 0.4220313 0.3795513 +0.1056428 0.4220313 0.3795513 +0.1201537 0.4220313 0.3795513 +0.1409607 0.4220313 0.3795513 +0.1678172 0.4220313 0.3795513 +0.1950164 0.4220313 0.3795513 +0.2210581 0.4220313 0.3795513 +0.245636 0.4220313 0.3795513 +0.2686816 0.4220313 0.3795513 +0.2902431 0.4220313 0.3795513 +0.3104189 0.4220313 0.3795513 +0.3293248 0.4220313 0.3795513 +0.3470774 0.4220313 0.3795513 +0.3637862 0.4220313 0.3795513 +0.3795513 0.4220313 0.3795513 +0.3944623 0.4220313 0.3795513 +0.4085988 0.4220313 0.3795513 +0.4220313 0.4220313 0.3795513 +0.4348222 0.4220313 0.3795513 +0.4470264 0.4220313 0.3795513 +0.4586928 0.4220313 0.3795513 +0.4698649 0.4220313 0.3795513 +0.4805811 0.4220313 0.3795513 +0.490876 0.4220313 0.3795513 +0.5007803 0.4220313 0.3795513 +0.510322 0.4220313 0.3795513 +0.5195258 0.4220313 0.3795513 +0.5284142 0.4220313 0.3795513 +0.5370079 0.4220313 0.3795513 +0.5453253 0.4220313 0.3795513 +0.5533834 0.4220313 0.3795513 +0.5611974 0.4220313 0.3795513 +0.5687816 0.4220313 0.3795513 +0.092819 0.4348222 0.3795513 +0.1056428 0.4348222 0.3795513 +0.1201537 0.4348222 0.3795513 +0.1409607 0.4348222 0.3795513 +0.1678172 0.4348222 0.3795513 +0.1950164 0.4348222 0.3795513 +0.2210581 0.4348222 0.3795513 +0.245636 0.4348222 0.3795513 +0.2686816 0.4348222 0.3795513 +0.2902431 0.4348222 0.3795513 +0.3104189 0.4348222 0.3795513 +0.3293248 0.4348222 0.3795513 +0.3470774 0.4348222 0.3795513 +0.3637862 0.4348222 0.3795513 +0.3795513 0.4348222 0.3795513 +0.3944623 0.4348222 0.3795513 +0.4085988 0.4348222 0.3795513 +0.4220313 0.4348222 0.3795513 +0.4348222 0.4348222 0.3795513 +0.4470264 0.4348222 0.3795513 +0.4586928 0.4348222 0.3795513 +0.4698649 0.4348222 0.3795513 +0.4805811 0.4348222 0.3795513 +0.490876 0.4348222 0.3795513 +0.5007803 0.4348222 0.3795513 +0.510322 0.4348222 0.3795513 +0.5195258 0.4348222 0.3795513 +0.5284142 0.4348222 0.3795513 +0.5370079 0.4348222 0.3795513 +0.5453253 0.4348222 0.3795513 +0.5533834 0.4348222 0.3795513 +0.5611974 0.4348222 0.3795513 +0.5687816 0.4348222 0.3795513 +0.092819 0.4470264 0.3795513 +0.1056428 0.4470264 0.3795513 +0.1201537 0.4470264 0.3795513 +0.1409607 0.4470264 0.3795513 +0.1678172 0.4470264 0.3795513 +0.1950164 0.4470264 0.3795513 +0.2210581 0.4470264 0.3795513 +0.245636 0.4470264 0.3795513 +0.2686816 0.4470264 0.3795513 +0.2902431 0.4470264 0.3795513 +0.3104189 0.4470264 0.3795513 +0.3293248 0.4470264 0.3795513 +0.3470774 0.4470264 0.3795513 +0.3637862 0.4470264 0.3795513 +0.3795513 0.4470264 0.3795513 +0.3944623 0.4470264 0.3795513 +0.4085988 0.4470264 0.3795513 +0.4220313 0.4470264 0.3795513 +0.4348222 0.4470264 0.3795513 +0.4470264 0.4470264 0.3795513 +0.4586928 0.4470264 0.3795513 +0.4698649 0.4470264 0.3795513 +0.4805811 0.4470264 0.3795513 +0.490876 0.4470264 0.3795513 +0.5007803 0.4470264 0.3795513 +0.510322 0.4470264 0.3795513 +0.5195258 0.4470264 0.3795513 +0.5284142 0.4470264 0.3795513 +0.5370079 0.4470264 0.3795513 +0.5453253 0.4470264 0.3795513 +0.5533834 0.4470264 0.3795513 +0.5611974 0.4470264 0.3795513 +0.5687816 0.4470264 0.3795513 +0.092819 0.4586928 0.3795513 +0.1056428 0.4586928 0.3795513 +0.1201537 0.4586928 0.3795513 +0.1409607 0.4586928 0.3795513 +0.1678172 0.4586928 0.3795513 +0.1950164 0.4586928 0.3795513 +0.2210581 0.4586928 0.3795513 +0.245636 0.4586928 0.3795513 +0.2686816 0.4586928 0.3795513 +0.2902431 0.4586928 0.3795513 +0.3104189 0.4586928 0.3795513 +0.3293248 0.4586928 0.3795513 +0.3470774 0.4586928 0.3795513 +0.3637862 0.4586928 0.3795513 +0.3795513 0.4586928 0.3795513 +0.3944623 0.4586928 0.3795513 +0.4085988 0.4586928 0.3795513 +0.4220313 0.4586928 0.3795513 +0.4348222 0.4586928 0.3795513 +0.4470264 0.4586928 0.3795513 +0.4586928 0.4586928 0.3795513 +0.4698649 0.4586928 0.3795513 +0.4805811 0.4586928 0.3795513 +0.490876 0.4586928 0.3795513 +0.5007803 0.4586928 0.3795513 +0.510322 0.4586928 0.3795513 +0.5195258 0.4586928 0.3795513 +0.5284142 0.4586928 0.3795513 +0.5370079 0.4586928 0.3795513 +0.5453253 0.4586928 0.3795513 +0.5533834 0.4586928 0.3795513 +0.5611974 0.4586928 0.3795513 +0.5687816 0.4586928 0.3795513 +0.092819 0.4698649 0.3795513 +0.1056428 0.4698649 0.3795513 +0.1201537 0.4698649 0.3795513 +0.1409607 0.4698649 0.3795513 +0.1678172 0.4698649 0.3795513 +0.1950164 0.4698649 0.3795513 +0.2210581 0.4698649 0.3795513 +0.245636 0.4698649 0.3795513 +0.2686816 0.4698649 0.3795513 +0.2902431 0.4698649 0.3795513 +0.3104189 0.4698649 0.3795513 +0.3293248 0.4698649 0.3795513 +0.3470774 0.4698649 0.3795513 +0.3637862 0.4698649 0.3795513 +0.3795513 0.4698649 0.3795513 +0.3944623 0.4698649 0.3795513 +0.4085988 0.4698649 0.3795513 +0.4220313 0.4698649 0.3795513 +0.4348222 0.4698649 0.3795513 +0.4470264 0.4698649 0.3795513 +0.4586928 0.4698649 0.3795513 +0.4698649 0.4698649 0.3795513 +0.4805811 0.4698649 0.3795513 +0.490876 0.4698649 0.3795513 +0.5007803 0.4698649 0.3795513 +0.510322 0.4698649 0.3795513 +0.5195258 0.4698649 0.3795513 +0.5284142 0.4698649 0.3795513 +0.5370079 0.4698649 0.3795513 +0.5453253 0.4698649 0.3795513 +0.5533834 0.4698649 0.3795513 +0.5611974 0.4698649 0.3795513 +0.5687816 0.4698649 0.3795513 +0.092819 0.4805811 0.3795513 +0.1056428 0.4805811 0.3795513 +0.1201537 0.4805811 0.3795513 +0.1409607 0.4805811 0.3795513 +0.1678172 0.4805811 0.3795513 +0.1950164 0.4805811 0.3795513 +0.2210581 0.4805811 0.3795513 +0.245636 0.4805811 0.3795513 +0.2686816 0.4805811 0.3795513 +0.2902431 0.4805811 0.3795513 +0.3104189 0.4805811 0.3795513 +0.3293248 0.4805811 0.3795513 +0.3470774 0.4805811 0.3795513 +0.3637862 0.4805811 0.3795513 +0.3795513 0.4805811 0.3795513 +0.3944623 0.4805811 0.3795513 +0.4085988 0.4805811 0.3795513 +0.4220313 0.4805811 0.3795513 +0.4348222 0.4805811 0.3795513 +0.4470264 0.4805811 0.3795513 +0.4586928 0.4805811 0.3795513 +0.4698649 0.4805811 0.3795513 +0.4805811 0.4805811 0.3795513 +0.490876 0.4805811 0.3795513 +0.5007803 0.4805811 0.3795513 +0.510322 0.4805811 0.3795513 +0.5195258 0.4805811 0.3795513 +0.5284142 0.4805811 0.3795513 +0.5370079 0.4805811 0.3795513 +0.5453253 0.4805811 0.3795513 +0.5533834 0.4805811 0.3795513 +0.5611974 0.4805811 0.3795513 +0.5687816 0.4805811 0.3795513 +0.092819 0.490876 0.3795513 +0.1056428 0.490876 0.3795513 +0.1201537 0.490876 0.3795513 +0.1409607 0.490876 0.3795513 +0.1678172 0.490876 0.3795513 +0.1950164 0.490876 0.3795513 +0.2210581 0.490876 0.3795513 +0.245636 0.490876 0.3795513 +0.2686816 0.490876 0.3795513 +0.2902431 0.490876 0.3795513 +0.3104189 0.490876 0.3795513 +0.3293248 0.490876 0.3795513 +0.3470774 0.490876 0.3795513 +0.3637862 0.490876 0.3795513 +0.3795513 0.490876 0.3795513 +0.3944623 0.490876 0.3795513 +0.4085988 0.490876 0.3795513 +0.4220313 0.490876 0.3795513 +0.4348222 0.490876 0.3795513 +0.4470264 0.490876 0.3795513 +0.4586928 0.490876 0.3795513 +0.4698649 0.490876 0.3795513 +0.4805811 0.490876 0.3795513 +0.490876 0.490876 0.3795513 +0.5007803 0.490876 0.3795513 +0.510322 0.490876 0.3795513 +0.5195258 0.490876 0.3795513 +0.5284142 0.490876 0.3795513 +0.5370079 0.490876 0.3795513 +0.5453253 0.490876 0.3795513 +0.5533834 0.490876 0.3795513 +0.5611974 0.490876 0.3795513 +0.5687816 0.490876 0.3795513 +0.092819 0.5007803 0.3795513 +0.1056428 0.5007803 0.3795513 +0.1201537 0.5007803 0.3795513 +0.1409607 0.5007803 0.3795513 +0.1678172 0.5007803 0.3795513 +0.1950164 0.5007803 0.3795513 +0.2210581 0.5007803 0.3795513 +0.245636 0.5007803 0.3795513 +0.2686816 0.5007803 0.3795513 +0.2902431 0.5007803 0.3795513 +0.3104189 0.5007803 0.3795513 +0.3293248 0.5007803 0.3795513 +0.3470774 0.5007803 0.3795513 +0.3637862 0.5007803 0.3795513 +0.3795513 0.5007803 0.3795513 +0.3944623 0.5007803 0.3795513 +0.4085988 0.5007803 0.3795513 +0.4220313 0.5007803 0.3795513 +0.4348222 0.5007803 0.3795513 +0.4470264 0.5007803 0.3795513 +0.4586928 0.5007803 0.3795513 +0.4698649 0.5007803 0.3795513 +0.4805811 0.5007803 0.3795513 +0.490876 0.5007803 0.3795513 +0.5007803 0.5007803 0.3795513 +0.510322 0.5007803 0.3795513 +0.5195258 0.5007803 0.3795513 +0.5284142 0.5007803 0.3795513 +0.5370079 0.5007803 0.3795513 +0.5453253 0.5007803 0.3795513 +0.5533834 0.5007803 0.3795513 +0.5611974 0.5007803 0.3795513 +0.5687816 0.5007803 0.3795513 +0.092819 0.510322 0.3795513 +0.1056428 0.510322 0.3795513 +0.1201537 0.510322 0.3795513 +0.1409607 0.510322 0.3795513 +0.1678172 0.510322 0.3795513 +0.1950164 0.510322 0.3795513 +0.2210581 0.510322 0.3795513 +0.245636 0.510322 0.3795513 +0.2686816 0.510322 0.3795513 +0.2902431 0.510322 0.3795513 +0.3104189 0.510322 0.3795513 +0.3293248 0.510322 0.3795513 +0.3470774 0.510322 0.3795513 +0.3637862 0.510322 0.3795513 +0.3795513 0.510322 0.3795513 +0.3944623 0.510322 0.3795513 +0.4085988 0.510322 0.3795513 +0.4220313 0.510322 0.3795513 +0.4348222 0.510322 0.3795513 +0.4470264 0.510322 0.3795513 +0.4586928 0.510322 0.3795513 +0.4698649 0.510322 0.3795513 +0.4805811 0.510322 0.3795513 +0.490876 0.510322 0.3795513 +0.5007803 0.510322 0.3795513 +0.510322 0.510322 0.3795513 +0.5195258 0.510322 0.3795513 +0.5284142 0.510322 0.3795513 +0.5370079 0.510322 0.3795513 +0.5453253 0.510322 0.3795513 +0.5533834 0.510322 0.3795513 +0.5611974 0.510322 0.3795513 +0.5687816 0.510322 0.3795513 +0.092819 0.5195258 0.3795513 +0.1056428 0.5195258 0.3795513 +0.1201537 0.5195258 0.3795513 +0.1409607 0.5195258 0.3795513 +0.1678172 0.5195258 0.3795513 +0.1950164 0.5195258 0.3795513 +0.2210581 0.5195258 0.3795513 +0.245636 0.5195258 0.3795513 +0.2686816 0.5195258 0.3795513 +0.2902431 0.5195258 0.3795513 +0.3104189 0.5195258 0.3795513 +0.3293248 0.5195258 0.3795513 +0.3470774 0.5195258 0.3795513 +0.3637862 0.5195258 0.3795513 +0.3795513 0.5195258 0.3795513 +0.3944623 0.5195258 0.3795513 +0.4085988 0.5195258 0.3795513 +0.4220313 0.5195258 0.3795513 +0.4348222 0.5195258 0.3795513 +0.4470264 0.5195258 0.3795513 +0.4586928 0.5195258 0.3795513 +0.4698649 0.5195258 0.3795513 +0.4805811 0.5195258 0.3795513 +0.490876 0.5195258 0.3795513 +0.5007803 0.5195258 0.3795513 +0.510322 0.5195258 0.3795513 +0.5195258 0.5195258 0.3795513 +0.5284142 0.5195258 0.3795513 +0.5370079 0.5195258 0.3795513 +0.5453253 0.5195258 0.3795513 +0.5533834 0.5195258 0.3795513 +0.5611974 0.5195258 0.3795513 +0.5687816 0.5195258 0.3795513 +0.092819 0.5284142 0.3795513 +0.1056428 0.5284142 0.3795513 +0.1201537 0.5284142 0.3795513 +0.1409607 0.5284142 0.3795513 +0.1678172 0.5284142 0.3795513 +0.1950164 0.5284142 0.3795513 +0.2210581 0.5284142 0.3795513 +0.245636 0.5284142 0.3795513 +0.2686816 0.5284142 0.3795513 +0.2902431 0.5284142 0.3795513 +0.3104189 0.5284142 0.3795513 +0.3293248 0.5284142 0.3795513 +0.3470774 0.5284142 0.3795513 +0.3637862 0.5284142 0.3795513 +0.3795513 0.5284142 0.3795513 +0.3944623 0.5284142 0.3795513 +0.4085988 0.5284142 0.3795513 +0.4220313 0.5284142 0.3795513 +0.4348222 0.5284142 0.3795513 +0.4470264 0.5284142 0.3795513 +0.4586928 0.5284142 0.3795513 +0.4698649 0.5284142 0.3795513 +0.4805811 0.5284142 0.3795513 +0.490876 0.5284142 0.3795513 +0.5007803 0.5284142 0.3795513 +0.510322 0.5284142 0.3795513 +0.5195258 0.5284142 0.3795513 +0.5284142 0.5284142 0.3795513 +0.5370079 0.5284142 0.3795513 +0.5453253 0.5284142 0.3795513 +0.5533834 0.5284142 0.3795513 +0.5611974 0.5284142 0.3795513 +0.5687816 0.5284142 0.3795513 +0.092819 0.5370079 0.3795513 +0.1056428 0.5370079 0.3795513 +0.1201537 0.5370079 0.3795513 +0.1409607 0.5370079 0.3795513 +0.1678172 0.5370079 0.3795513 +0.1950164 0.5370079 0.3795513 +0.2210581 0.5370079 0.3795513 +0.245636 0.5370079 0.3795513 +0.2686816 0.5370079 0.3795513 +0.2902431 0.5370079 0.3795513 +0.3104189 0.5370079 0.3795513 +0.3293248 0.5370079 0.3795513 +0.3470774 0.5370079 0.3795513 +0.3637862 0.5370079 0.3795513 +0.3795513 0.5370079 0.3795513 +0.3944623 0.5370079 0.3795513 +0.4085988 0.5370079 0.3795513 +0.4220313 0.5370079 0.3795513 +0.4348222 0.5370079 0.3795513 +0.4470264 0.5370079 0.3795513 +0.4586928 0.5370079 0.3795513 +0.4698649 0.5370079 0.3795513 +0.4805811 0.5370079 0.3795513 +0.490876 0.5370079 0.3795513 +0.5007803 0.5370079 0.3795513 +0.510322 0.5370079 0.3795513 +0.5195258 0.5370079 0.3795513 +0.5284142 0.5370079 0.3795513 +0.5370079 0.5370079 0.3795513 +0.5453253 0.5370079 0.3795513 +0.5533834 0.5370079 0.3795513 +0.5611974 0.5370079 0.3795513 +0.5687816 0.5370079 0.3795513 +0.092819 0.5453253 0.3795513 +0.1056428 0.5453253 0.3795513 +0.1201537 0.5453253 0.3795513 +0.1409607 0.5453253 0.3795513 +0.1678172 0.5453253 0.3795513 +0.1950164 0.5453253 0.3795513 +0.2210581 0.5453253 0.3795513 +0.245636 0.5453253 0.3795513 +0.2686816 0.5453253 0.3795513 +0.2902431 0.5453253 0.3795513 +0.3104189 0.5453253 0.3795513 +0.3293248 0.5453253 0.3795513 +0.3470774 0.5453253 0.3795513 +0.3637862 0.5453253 0.3795513 +0.3795513 0.5453253 0.3795513 +0.3944623 0.5453253 0.3795513 +0.4085988 0.5453253 0.3795513 +0.4220313 0.5453253 0.3795513 +0.4348222 0.5453253 0.3795513 +0.4470264 0.5453253 0.3795513 +0.4586928 0.5453253 0.3795513 +0.4698649 0.5453253 0.3795513 +0.4805811 0.5453253 0.3795513 +0.490876 0.5453253 0.3795513 +0.5007803 0.5453253 0.3795513 +0.510322 0.5453253 0.3795513 +0.5195258 0.5453253 0.3795513 +0.5284142 0.5453253 0.3795513 +0.5370079 0.5453253 0.3795513 +0.5453253 0.5453253 0.3795513 +0.5533834 0.5453253 0.3795513 +0.5611974 0.5453253 0.3795513 +0.5687816 0.5453253 0.3795513 +0.092819 0.5533834 0.3795513 +0.1056428 0.5533834 0.3795513 +0.1201537 0.5533834 0.3795513 +0.1409607 0.5533834 0.3795513 +0.1678172 0.5533834 0.3795513 +0.1950164 0.5533834 0.3795513 +0.2210581 0.5533834 0.3795513 +0.245636 0.5533834 0.3795513 +0.2686816 0.5533834 0.3795513 +0.2902431 0.5533834 0.3795513 +0.3104189 0.5533834 0.3795513 +0.3293248 0.5533834 0.3795513 +0.3470774 0.5533834 0.3795513 +0.3637862 0.5533834 0.3795513 +0.3795513 0.5533834 0.3795513 +0.3944623 0.5533834 0.3795513 +0.4085988 0.5533834 0.3795513 +0.4220313 0.5533834 0.3795513 +0.4348222 0.5533834 0.3795513 +0.4470264 0.5533834 0.3795513 +0.4586928 0.5533834 0.3795513 +0.4698649 0.5533834 0.3795513 +0.4805811 0.5533834 0.3795513 +0.490876 0.5533834 0.3795513 +0.5007803 0.5533834 0.3795513 +0.510322 0.5533834 0.3795513 +0.5195258 0.5533834 0.3795513 +0.5284142 0.5533834 0.3795513 +0.5370079 0.5533834 0.3795513 +0.5453253 0.5533834 0.3795513 +0.5533834 0.5533834 0.3795513 +0.5611974 0.5533834 0.3795513 +0.5687816 0.5533834 0.3795513 +0.092819 0.5611974 0.3795513 +0.1056428 0.5611974 0.3795513 +0.1201537 0.5611974 0.3795513 +0.1409607 0.5611974 0.3795513 +0.1678172 0.5611974 0.3795513 +0.1950164 0.5611974 0.3795513 +0.2210581 0.5611974 0.3795513 +0.245636 0.5611974 0.3795513 +0.2686816 0.5611974 0.3795513 +0.2902431 0.5611974 0.3795513 +0.3104189 0.5611974 0.3795513 +0.3293248 0.5611974 0.3795513 +0.3470774 0.5611974 0.3795513 +0.3637862 0.5611974 0.3795513 +0.3795513 0.5611974 0.3795513 +0.3944623 0.5611974 0.3795513 +0.4085988 0.5611974 0.3795513 +0.4220313 0.5611974 0.3795513 +0.4348222 0.5611974 0.3795513 +0.4470264 0.5611974 0.3795513 +0.4586928 0.5611974 0.3795513 +0.4698649 0.5611974 0.3795513 +0.4805811 0.5611974 0.3795513 +0.490876 0.5611974 0.3795513 +0.5007803 0.5611974 0.3795513 +0.510322 0.5611974 0.3795513 +0.5195258 0.5611974 0.3795513 +0.5284142 0.5611974 0.3795513 +0.5370079 0.5611974 0.3795513 +0.5453253 0.5611974 0.3795513 +0.5533834 0.5611974 0.3795513 +0.5611974 0.5611974 0.3795513 +0.5687816 0.5611974 0.3795513 +0.092819 0.5687816 0.3795513 +0.1056428 0.5687816 0.3795513 +0.1201537 0.5687816 0.3795513 +0.1409607 0.5687816 0.3795513 +0.1678172 0.5687816 0.3795513 +0.1950164 0.5687816 0.3795513 +0.2210581 0.5687816 0.3795513 +0.245636 0.5687816 0.3795513 +0.2686816 0.5687816 0.3795513 +0.2902431 0.5687816 0.3795513 +0.3104189 0.5687816 0.3795513 +0.3293248 0.5687816 0.3795513 +0.3470774 0.5687816 0.3795513 +0.3637862 0.5687816 0.3795513 +0.3795513 0.5687816 0.3795513 +0.3944623 0.5687816 0.3795513 +0.4085988 0.5687816 0.3795513 +0.4220313 0.5687816 0.3795513 +0.4348222 0.5687816 0.3795513 +0.4470264 0.5687816 0.3795513 +0.4586928 0.5687816 0.3795513 +0.4698649 0.5687816 0.3795513 +0.4805811 0.5687816 0.3795513 +0.490876 0.5687816 0.3795513 +0.5007803 0.5687816 0.3795513 +0.510322 0.5687816 0.3795513 +0.5195258 0.5687816 0.3795513 +0.5284142 0.5687816 0.3795513 +0.5370079 0.5687816 0.3795513 +0.5453253 0.5687816 0.3795513 +0.5533834 0.5687816 0.3795513 +0.5611974 0.5687816 0.3795513 +0.5687816 0.5687816 0.3795513 +0.092819 0.092819 0.3944623 +0.1056428 0.092819 0.3944623 +0.1201537 0.092819 0.3944623 +0.1409607 0.092819 0.3944623 +0.1678172 0.092819 0.3944623 +0.1950164 0.092819 0.3944623 +0.2210581 0.092819 0.3944623 +0.245636 0.092819 0.3944623 +0.2686816 0.092819 0.3944623 +0.2902431 0.092819 0.3944623 +0.3104189 0.092819 0.3944623 +0.3293248 0.092819 0.3944623 +0.3470774 0.092819 0.3944623 +0.3637862 0.092819 0.3944623 +0.3795513 0.092819 0.3944623 +0.3944623 0.092819 0.3944623 +0.4085988 0.092819 0.3944623 +0.4220313 0.092819 0.3944623 +0.4348222 0.092819 0.3944623 +0.4470264 0.092819 0.3944623 +0.4586928 0.092819 0.3944623 +0.4698649 0.092819 0.3944623 +0.4805811 0.092819 0.3944623 +0.490876 0.092819 0.3944623 +0.5007803 0.092819 0.3944623 +0.510322 0.092819 0.3944623 +0.5195258 0.092819 0.3944623 +0.5284142 0.092819 0.3944623 +0.5370079 0.092819 0.3944623 +0.5453253 0.092819 0.3944623 +0.5533834 0.092819 0.3944623 +0.5611974 0.092819 0.3944623 +0.5687816 0.092819 0.3944623 +0.092819 0.1056428 0.3944623 +0.1056428 0.1056428 0.3944623 +0.1201537 0.1056428 0.3944623 +0.1409607 0.1056428 0.3944623 +0.1678172 0.1056428 0.3944623 +0.1950164 0.1056428 0.3944623 +0.2210581 0.1056428 0.3944623 +0.245636 0.1056428 0.3944623 +0.2686816 0.1056428 0.3944623 +0.2902431 0.1056428 0.3944623 +0.3104189 0.1056428 0.3944623 +0.3293248 0.1056428 0.3944623 +0.3470774 0.1056428 0.3944623 +0.3637862 0.1056428 0.3944623 +0.3795513 0.1056428 0.3944623 +0.3944623 0.1056428 0.3944623 +0.4085988 0.1056428 0.3944623 +0.4220313 0.1056428 0.3944623 +0.4348222 0.1056428 0.3944623 +0.4470264 0.1056428 0.3944623 +0.4586928 0.1056428 0.3944623 +0.4698649 0.1056428 0.3944623 +0.4805811 0.1056428 0.3944623 +0.490876 0.1056428 0.3944623 +0.5007803 0.1056428 0.3944623 +0.510322 0.1056428 0.3944623 +0.5195258 0.1056428 0.3944623 +0.5284142 0.1056428 0.3944623 +0.5370079 0.1056428 0.3944623 +0.5453253 0.1056428 0.3944623 +0.5533834 0.1056428 0.3944623 +0.5611974 0.1056428 0.3944623 +0.5687816 0.1056428 0.3944623 +0.092819 0.1201537 0.3944623 +0.1056428 0.1201537 0.3944623 +0.1201537 0.1201537 0.3944623 +0.1409607 0.1201537 0.3944623 +0.1678172 0.1201537 0.3944623 +0.1950164 0.1201537 0.3944623 +0.2210581 0.1201537 0.3944623 +0.245636 0.1201537 0.3944623 +0.2686816 0.1201537 0.3944623 +0.2902431 0.1201537 0.3944623 +0.3104189 0.1201537 0.3944623 +0.3293248 0.1201537 0.3944623 +0.3470774 0.1201537 0.3944623 +0.3637862 0.1201537 0.3944623 +0.3795513 0.1201537 0.3944623 +0.3944623 0.1201537 0.3944623 +0.4085988 0.1201537 0.3944623 +0.4220313 0.1201537 0.3944623 +0.4348222 0.1201537 0.3944623 +0.4470264 0.1201537 0.3944623 +0.4586928 0.1201537 0.3944623 +0.4698649 0.1201537 0.3944623 +0.4805811 0.1201537 0.3944623 +0.490876 0.1201537 0.3944623 +0.5007803 0.1201537 0.3944623 +0.510322 0.1201537 0.3944623 +0.5195258 0.1201537 0.3944623 +0.5284142 0.1201537 0.3944623 +0.5370079 0.1201537 0.3944623 +0.5453253 0.1201537 0.3944623 +0.5533834 0.1201537 0.3944623 +0.5611974 0.1201537 0.3944623 +0.5687816 0.1201537 0.3944623 +0.092819 0.1409607 0.3944623 +0.1056428 0.1409607 0.3944623 +0.1201537 0.1409607 0.3944623 +0.1409607 0.1409607 0.3944623 +0.1678172 0.1409607 0.3944623 +0.1950164 0.1409607 0.3944623 +0.2210581 0.1409607 0.3944623 +0.245636 0.1409607 0.3944623 +0.2686816 0.1409607 0.3944623 +0.2902431 0.1409607 0.3944623 +0.3104189 0.1409607 0.3944623 +0.3293248 0.1409607 0.3944623 +0.3470774 0.1409607 0.3944623 +0.3637862 0.1409607 0.3944623 +0.3795513 0.1409607 0.3944623 +0.3944623 0.1409607 0.3944623 +0.4085988 0.1409607 0.3944623 +0.4220313 0.1409607 0.3944623 +0.4348222 0.1409607 0.3944623 +0.4470264 0.1409607 0.3944623 +0.4586928 0.1409607 0.3944623 +0.4698649 0.1409607 0.3944623 +0.4805811 0.1409607 0.3944623 +0.490876 0.1409607 0.3944623 +0.5007803 0.1409607 0.3944623 +0.510322 0.1409607 0.3944623 +0.5195258 0.1409607 0.3944623 +0.5284142 0.1409607 0.3944623 +0.5370079 0.1409607 0.3944623 +0.5453253 0.1409607 0.3944623 +0.5533834 0.1409607 0.3944623 +0.5611974 0.1409607 0.3944623 +0.5687816 0.1409607 0.3944623 +0.092819 0.1678172 0.3944623 +0.1056428 0.1678172 0.3944623 +0.1201537 0.1678172 0.3944623 +0.1409607 0.1678172 0.3944623 +0.1678172 0.1678172 0.3944623 +0.1950164 0.1678172 0.3944623 +0.2210581 0.1678172 0.3944623 +0.245636 0.1678172 0.3944623 +0.2686816 0.1678172 0.3944623 +0.2902431 0.1678172 0.3944623 +0.3104189 0.1678172 0.3944623 +0.3293248 0.1678172 0.3944623 +0.3470774 0.1678172 0.3944623 +0.3637862 0.1678172 0.3944623 +0.3795513 0.1678172 0.3944623 +0.3944623 0.1678172 0.3944623 +0.4085988 0.1678172 0.3944623 +0.4220313 0.1678172 0.3944623 +0.4348222 0.1678172 0.3944623 +0.4470264 0.1678172 0.3944623 +0.4586928 0.1678172 0.3944623 +0.4698649 0.1678172 0.3944623 +0.4805811 0.1678172 0.3944623 +0.490876 0.1678172 0.3944623 +0.5007803 0.1678172 0.3944623 +0.510322 0.1678172 0.3944623 +0.5195258 0.1678172 0.3944623 +0.5284142 0.1678172 0.3944623 +0.5370079 0.1678172 0.3944623 +0.5453253 0.1678172 0.3944623 +0.5533834 0.1678172 0.3944623 +0.5611974 0.1678172 0.3944623 +0.5687816 0.1678172 0.3944623 +0.092819 0.1950164 0.3944623 +0.1056428 0.1950164 0.3944623 +0.1201537 0.1950164 0.3944623 +0.1409607 0.1950164 0.3944623 +0.1678172 0.1950164 0.3944623 +0.1950164 0.1950164 0.3944623 +0.2210581 0.1950164 0.3944623 +0.245636 0.1950164 0.3944623 +0.2686816 0.1950164 0.3944623 +0.2902431 0.1950164 0.3944623 +0.3104189 0.1950164 0.3944623 +0.3293248 0.1950164 0.3944623 +0.3470774 0.1950164 0.3944623 +0.3637862 0.1950164 0.3944623 +0.3795513 0.1950164 0.3944623 +0.3944623 0.1950164 0.3944623 +0.4085988 0.1950164 0.3944623 +0.4220313 0.1950164 0.3944623 +0.4348222 0.1950164 0.3944623 +0.4470264 0.1950164 0.3944623 +0.4586928 0.1950164 0.3944623 +0.4698649 0.1950164 0.3944623 +0.4805811 0.1950164 0.3944623 +0.490876 0.1950164 0.3944623 +0.5007803 0.1950164 0.3944623 +0.510322 0.1950164 0.3944623 +0.5195258 0.1950164 0.3944623 +0.5284142 0.1950164 0.3944623 +0.5370079 0.1950164 0.3944623 +0.5453253 0.1950164 0.3944623 +0.5533834 0.1950164 0.3944623 +0.5611974 0.1950164 0.3944623 +0.5687816 0.1950164 0.3944623 +0.092819 0.2210581 0.3944623 +0.1056428 0.2210581 0.3944623 +0.1201537 0.2210581 0.3944623 +0.1409607 0.2210581 0.3944623 +0.1678172 0.2210581 0.3944623 +0.1950164 0.2210581 0.3944623 +0.2210581 0.2210581 0.3944623 +0.245636 0.2210581 0.3944623 +0.2686816 0.2210581 0.3944623 +0.2902431 0.2210581 0.3944623 +0.3104189 0.2210581 0.3944623 +0.3293248 0.2210581 0.3944623 +0.3470774 0.2210581 0.3944623 +0.3637862 0.2210581 0.3944623 +0.3795513 0.2210581 0.3944623 +0.3944623 0.2210581 0.3944623 +0.4085988 0.2210581 0.3944623 +0.4220313 0.2210581 0.3944623 +0.4348222 0.2210581 0.3944623 +0.4470264 0.2210581 0.3944623 +0.4586928 0.2210581 0.3944623 +0.4698649 0.2210581 0.3944623 +0.4805811 0.2210581 0.3944623 +0.490876 0.2210581 0.3944623 +0.5007803 0.2210581 0.3944623 +0.510322 0.2210581 0.3944623 +0.5195258 0.2210581 0.3944623 +0.5284142 0.2210581 0.3944623 +0.5370079 0.2210581 0.3944623 +0.5453253 0.2210581 0.3944623 +0.5533834 0.2210581 0.3944623 +0.5611974 0.2210581 0.3944623 +0.5687816 0.2210581 0.3944623 +0.092819 0.245636 0.3944623 +0.1056428 0.245636 0.3944623 +0.1201537 0.245636 0.3944623 +0.1409607 0.245636 0.3944623 +0.1678172 0.245636 0.3944623 +0.1950164 0.245636 0.3944623 +0.2210581 0.245636 0.3944623 +0.245636 0.245636 0.3944623 +0.2686816 0.245636 0.3944623 +0.2902431 0.245636 0.3944623 +0.3104189 0.245636 0.3944623 +0.3293248 0.245636 0.3944623 +0.3470774 0.245636 0.3944623 +0.3637862 0.245636 0.3944623 +0.3795513 0.245636 0.3944623 +0.3944623 0.245636 0.3944623 +0.4085988 0.245636 0.3944623 +0.4220313 0.245636 0.3944623 +0.4348222 0.245636 0.3944623 +0.4470264 0.245636 0.3944623 +0.4586928 0.245636 0.3944623 +0.4698649 0.245636 0.3944623 +0.4805811 0.245636 0.3944623 +0.490876 0.245636 0.3944623 +0.5007803 0.245636 0.3944623 +0.510322 0.245636 0.3944623 +0.5195258 0.245636 0.3944623 +0.5284142 0.245636 0.3944623 +0.5370079 0.245636 0.3944623 +0.5453253 0.245636 0.3944623 +0.5533834 0.245636 0.3944623 +0.5611974 0.245636 0.3944623 +0.5687816 0.245636 0.3944623 +0.092819 0.2686816 0.3944623 +0.1056428 0.2686816 0.3944623 +0.1201537 0.2686816 0.3944623 +0.1409607 0.2686816 0.3944623 +0.1678172 0.2686816 0.3944623 +0.1950164 0.2686816 0.3944623 +0.2210581 0.2686816 0.3944623 +0.245636 0.2686816 0.3944623 +0.2686816 0.2686816 0.3944623 +0.2902431 0.2686816 0.3944623 +0.3104189 0.2686816 0.3944623 +0.3293248 0.2686816 0.3944623 +0.3470774 0.2686816 0.3944623 +0.3637862 0.2686816 0.3944623 +0.3795513 0.2686816 0.3944623 +0.3944623 0.2686816 0.3944623 +0.4085988 0.2686816 0.3944623 +0.4220313 0.2686816 0.3944623 +0.4348222 0.2686816 0.3944623 +0.4470264 0.2686816 0.3944623 +0.4586928 0.2686816 0.3944623 +0.4698649 0.2686816 0.3944623 +0.4805811 0.2686816 0.3944623 +0.490876 0.2686816 0.3944623 +0.5007803 0.2686816 0.3944623 +0.510322 0.2686816 0.3944623 +0.5195258 0.2686816 0.3944623 +0.5284142 0.2686816 0.3944623 +0.5370079 0.2686816 0.3944623 +0.5453253 0.2686816 0.3944623 +0.5533834 0.2686816 0.3944623 +0.5611974 0.2686816 0.3944623 +0.5687816 0.2686816 0.3944623 +0.092819 0.2902431 0.3944623 +0.1056428 0.2902431 0.3944623 +0.1201537 0.2902431 0.3944623 +0.1409607 0.2902431 0.3944623 +0.1678172 0.2902431 0.3944623 +0.1950164 0.2902431 0.3944623 +0.2210581 0.2902431 0.3944623 +0.245636 0.2902431 0.3944623 +0.2686816 0.2902431 0.3944623 +0.2902431 0.2902431 0.3944623 +0.3104189 0.2902431 0.3944623 +0.3293248 0.2902431 0.3944623 +0.3470774 0.2902431 0.3944623 +0.3637862 0.2902431 0.3944623 +0.3795513 0.2902431 0.3944623 +0.3944623 0.2902431 0.3944623 +0.4085988 0.2902431 0.3944623 +0.4220313 0.2902431 0.3944623 +0.4348222 0.2902431 0.3944623 +0.4470264 0.2902431 0.3944623 +0.4586928 0.2902431 0.3944623 +0.4698649 0.2902431 0.3944623 +0.4805811 0.2902431 0.3944623 +0.490876 0.2902431 0.3944623 +0.5007803 0.2902431 0.3944623 +0.510322 0.2902431 0.3944623 +0.5195258 0.2902431 0.3944623 +0.5284142 0.2902431 0.3944623 +0.5370079 0.2902431 0.3944623 +0.5453253 0.2902431 0.3944623 +0.5533834 0.2902431 0.3944623 +0.5611974 0.2902431 0.3944623 +0.5687816 0.2902431 0.3944623 +0.092819 0.3104189 0.3944623 +0.1056428 0.3104189 0.3944623 +0.1201537 0.3104189 0.3944623 +0.1409607 0.3104189 0.3944623 +0.1678172 0.3104189 0.3944623 +0.1950164 0.3104189 0.3944623 +0.2210581 0.3104189 0.3944623 +0.245636 0.3104189 0.3944623 +0.2686816 0.3104189 0.3944623 +0.2902431 0.3104189 0.3944623 +0.3104189 0.3104189 0.3944623 +0.3293248 0.3104189 0.3944623 +0.3470774 0.3104189 0.3944623 +0.3637862 0.3104189 0.3944623 +0.3795513 0.3104189 0.3944623 +0.3944623 0.3104189 0.3944623 +0.4085988 0.3104189 0.3944623 +0.4220313 0.3104189 0.3944623 +0.4348222 0.3104189 0.3944623 +0.4470264 0.3104189 0.3944623 +0.4586928 0.3104189 0.3944623 +0.4698649 0.3104189 0.3944623 +0.4805811 0.3104189 0.3944623 +0.490876 0.3104189 0.3944623 +0.5007803 0.3104189 0.3944623 +0.510322 0.3104189 0.3944623 +0.5195258 0.3104189 0.3944623 +0.5284142 0.3104189 0.3944623 +0.5370079 0.3104189 0.3944623 +0.5453253 0.3104189 0.3944623 +0.5533834 0.3104189 0.3944623 +0.5611974 0.3104189 0.3944623 +0.5687816 0.3104189 0.3944623 +0.092819 0.3293248 0.3944623 +0.1056428 0.3293248 0.3944623 +0.1201537 0.3293248 0.3944623 +0.1409607 0.3293248 0.3944623 +0.1678172 0.3293248 0.3944623 +0.1950164 0.3293248 0.3944623 +0.2210581 0.3293248 0.3944623 +0.245636 0.3293248 0.3944623 +0.2686816 0.3293248 0.3944623 +0.2902431 0.3293248 0.3944623 +0.3104189 0.3293248 0.3944623 +0.3293248 0.3293248 0.3944623 +0.3470774 0.3293248 0.3944623 +0.3637862 0.3293248 0.3944623 +0.3795513 0.3293248 0.3944623 +0.3944623 0.3293248 0.3944623 +0.4085988 0.3293248 0.3944623 +0.4220313 0.3293248 0.3944623 +0.4348222 0.3293248 0.3944623 +0.4470264 0.3293248 0.3944623 +0.4586928 0.3293248 0.3944623 +0.4698649 0.3293248 0.3944623 +0.4805811 0.3293248 0.3944623 +0.490876 0.3293248 0.3944623 +0.5007803 0.3293248 0.3944623 +0.510322 0.3293248 0.3944623 +0.5195258 0.3293248 0.3944623 +0.5284142 0.3293248 0.3944623 +0.5370079 0.3293248 0.3944623 +0.5453253 0.3293248 0.3944623 +0.5533834 0.3293248 0.3944623 +0.5611974 0.3293248 0.3944623 +0.5687816 0.3293248 0.3944623 +0.092819 0.3470774 0.3944623 +0.1056428 0.3470774 0.3944623 +0.1201537 0.3470774 0.3944623 +0.1409607 0.3470774 0.3944623 +0.1678172 0.3470774 0.3944623 +0.1950164 0.3470774 0.3944623 +0.2210581 0.3470774 0.3944623 +0.245636 0.3470774 0.3944623 +0.2686816 0.3470774 0.3944623 +0.2902431 0.3470774 0.3944623 +0.3104189 0.3470774 0.3944623 +0.3293248 0.3470774 0.3944623 +0.3470774 0.3470774 0.3944623 +0.3637862 0.3470774 0.3944623 +0.3795513 0.3470774 0.3944623 +0.3944623 0.3470774 0.3944623 +0.4085988 0.3470774 0.3944623 +0.4220313 0.3470774 0.3944623 +0.4348222 0.3470774 0.3944623 +0.4470264 0.3470774 0.3944623 +0.4586928 0.3470774 0.3944623 +0.4698649 0.3470774 0.3944623 +0.4805811 0.3470774 0.3944623 +0.490876 0.3470774 0.3944623 +0.5007803 0.3470774 0.3944623 +0.510322 0.3470774 0.3944623 +0.5195258 0.3470774 0.3944623 +0.5284142 0.3470774 0.3944623 +0.5370079 0.3470774 0.3944623 +0.5453253 0.3470774 0.3944623 +0.5533834 0.3470774 0.3944623 +0.5611974 0.3470774 0.3944623 +0.5687816 0.3470774 0.3944623 +0.092819 0.3637862 0.3944623 +0.1056428 0.3637862 0.3944623 +0.1201537 0.3637862 0.3944623 +0.1409607 0.3637862 0.3944623 +0.1678172 0.3637862 0.3944623 +0.1950164 0.3637862 0.3944623 +0.2210581 0.3637862 0.3944623 +0.245636 0.3637862 0.3944623 +0.2686816 0.3637862 0.3944623 +0.2902431 0.3637862 0.3944623 +0.3104189 0.3637862 0.3944623 +0.3293248 0.3637862 0.3944623 +0.3470774 0.3637862 0.3944623 +0.3637862 0.3637862 0.3944623 +0.3795513 0.3637862 0.3944623 +0.3944623 0.3637862 0.3944623 +0.4085988 0.3637862 0.3944623 +0.4220313 0.3637862 0.3944623 +0.4348222 0.3637862 0.3944623 +0.4470264 0.3637862 0.3944623 +0.4586928 0.3637862 0.3944623 +0.4698649 0.3637862 0.3944623 +0.4805811 0.3637862 0.3944623 +0.490876 0.3637862 0.3944623 +0.5007803 0.3637862 0.3944623 +0.510322 0.3637862 0.3944623 +0.5195258 0.3637862 0.3944623 +0.5284142 0.3637862 0.3944623 +0.5370079 0.3637862 0.3944623 +0.5453253 0.3637862 0.3944623 +0.5533834 0.3637862 0.3944623 +0.5611974 0.3637862 0.3944623 +0.5687816 0.3637862 0.3944623 +0.092819 0.3795513 0.3944623 +0.1056428 0.3795513 0.3944623 +0.1201537 0.3795513 0.3944623 +0.1409607 0.3795513 0.3944623 +0.1678172 0.3795513 0.3944623 +0.1950164 0.3795513 0.3944623 +0.2210581 0.3795513 0.3944623 +0.245636 0.3795513 0.3944623 +0.2686816 0.3795513 0.3944623 +0.2902431 0.3795513 0.3944623 +0.3104189 0.3795513 0.3944623 +0.3293248 0.3795513 0.3944623 +0.3470774 0.3795513 0.3944623 +0.3637862 0.3795513 0.3944623 +0.3795513 0.3795513 0.3944623 +0.3944623 0.3795513 0.3944623 +0.4085988 0.3795513 0.3944623 +0.4220313 0.3795513 0.3944623 +0.4348222 0.3795513 0.3944623 +0.4470264 0.3795513 0.3944623 +0.4586928 0.3795513 0.3944623 +0.4698649 0.3795513 0.3944623 +0.4805811 0.3795513 0.3944623 +0.490876 0.3795513 0.3944623 +0.5007803 0.3795513 0.3944623 +0.510322 0.3795513 0.3944623 +0.5195258 0.3795513 0.3944623 +0.5284142 0.3795513 0.3944623 +0.5370079 0.3795513 0.3944623 +0.5453253 0.3795513 0.3944623 +0.5533834 0.3795513 0.3944623 +0.5611974 0.3795513 0.3944623 +0.5687816 0.3795513 0.3944623 +0.092819 0.3944623 0.3944623 +0.1056428 0.3944623 0.3944623 +0.1201537 0.3944623 0.3944623 +0.1409607 0.3944623 0.3944623 +0.1678172 0.3944623 0.3944623 +0.1950164 0.3944623 0.3944623 +0.2210581 0.3944623 0.3944623 +0.245636 0.3944623 0.3944623 +0.2686816 0.3944623 0.3944623 +0.2902431 0.3944623 0.3944623 +0.3104189 0.3944623 0.3944623 +0.3293248 0.3944623 0.3944623 +0.3470774 0.3944623 0.3944623 +0.3637862 0.3944623 0.3944623 +0.3795513 0.3944623 0.3944623 +0.3944623 0.3944623 0.3944623 +0.4085988 0.3944623 0.3944623 +0.4220313 0.3944623 0.3944623 +0.4348222 0.3944623 0.3944623 +0.4470264 0.3944623 0.3944623 +0.4586928 0.3944623 0.3944623 +0.4698649 0.3944623 0.3944623 +0.4805811 0.3944623 0.3944623 +0.490876 0.3944623 0.3944623 +0.5007803 0.3944623 0.3944623 +0.510322 0.3944623 0.3944623 +0.5195258 0.3944623 0.3944623 +0.5284142 0.3944623 0.3944623 +0.5370079 0.3944623 0.3944623 +0.5453253 0.3944623 0.3944623 +0.5533834 0.3944623 0.3944623 +0.5611974 0.3944623 0.3944623 +0.5687816 0.3944623 0.3944623 +0.092819 0.4085988 0.3944623 +0.1056428 0.4085988 0.3944623 +0.1201537 0.4085988 0.3944623 +0.1409607 0.4085988 0.3944623 +0.1678172 0.4085988 0.3944623 +0.1950164 0.4085988 0.3944623 +0.2210581 0.4085988 0.3944623 +0.245636 0.4085988 0.3944623 +0.2686816 0.4085988 0.3944623 +0.2902431 0.4085988 0.3944623 +0.3104189 0.4085988 0.3944623 +0.3293248 0.4085988 0.3944623 +0.3470774 0.4085988 0.3944623 +0.3637862 0.4085988 0.3944623 +0.3795513 0.4085988 0.3944623 +0.3944623 0.4085988 0.3944623 +0.4085988 0.4085988 0.3944623 +0.4220313 0.4085988 0.3944623 +0.4348222 0.4085988 0.3944623 +0.4470264 0.4085988 0.3944623 +0.4586928 0.4085988 0.3944623 +0.4698649 0.4085988 0.3944623 +0.4805811 0.4085988 0.3944623 +0.490876 0.4085988 0.3944623 +0.5007803 0.4085988 0.3944623 +0.510322 0.4085988 0.3944623 +0.5195258 0.4085988 0.3944623 +0.5284142 0.4085988 0.3944623 +0.5370079 0.4085988 0.3944623 +0.5453253 0.4085988 0.3944623 +0.5533834 0.4085988 0.3944623 +0.5611974 0.4085988 0.3944623 +0.5687816 0.4085988 0.3944623 +0.092819 0.4220313 0.3944623 +0.1056428 0.4220313 0.3944623 +0.1201537 0.4220313 0.3944623 +0.1409607 0.4220313 0.3944623 +0.1678172 0.4220313 0.3944623 +0.1950164 0.4220313 0.3944623 +0.2210581 0.4220313 0.3944623 +0.245636 0.4220313 0.3944623 +0.2686816 0.4220313 0.3944623 +0.2902431 0.4220313 0.3944623 +0.3104189 0.4220313 0.3944623 +0.3293248 0.4220313 0.3944623 +0.3470774 0.4220313 0.3944623 +0.3637862 0.4220313 0.3944623 +0.3795513 0.4220313 0.3944623 +0.3944623 0.4220313 0.3944623 +0.4085988 0.4220313 0.3944623 +0.4220313 0.4220313 0.3944623 +0.4348222 0.4220313 0.3944623 +0.4470264 0.4220313 0.3944623 +0.4586928 0.4220313 0.3944623 +0.4698649 0.4220313 0.3944623 +0.4805811 0.4220313 0.3944623 +0.490876 0.4220313 0.3944623 +0.5007803 0.4220313 0.3944623 +0.510322 0.4220313 0.3944623 +0.5195258 0.4220313 0.3944623 +0.5284142 0.4220313 0.3944623 +0.5370079 0.4220313 0.3944623 +0.5453253 0.4220313 0.3944623 +0.5533834 0.4220313 0.3944623 +0.5611974 0.4220313 0.3944623 +0.5687816 0.4220313 0.3944623 +0.092819 0.4348222 0.3944623 +0.1056428 0.4348222 0.3944623 +0.1201537 0.4348222 0.3944623 +0.1409607 0.4348222 0.3944623 +0.1678172 0.4348222 0.3944623 +0.1950164 0.4348222 0.3944623 +0.2210581 0.4348222 0.3944623 +0.245636 0.4348222 0.3944623 +0.2686816 0.4348222 0.3944623 +0.2902431 0.4348222 0.3944623 +0.3104189 0.4348222 0.3944623 +0.3293248 0.4348222 0.3944623 +0.3470774 0.4348222 0.3944623 +0.3637862 0.4348222 0.3944623 +0.3795513 0.4348222 0.3944623 +0.3944623 0.4348222 0.3944623 +0.4085988 0.4348222 0.3944623 +0.4220313 0.4348222 0.3944623 +0.4348222 0.4348222 0.3944623 +0.4470264 0.4348222 0.3944623 +0.4586928 0.4348222 0.3944623 +0.4698649 0.4348222 0.3944623 +0.4805811 0.4348222 0.3944623 +0.490876 0.4348222 0.3944623 +0.5007803 0.4348222 0.3944623 +0.510322 0.4348222 0.3944623 +0.5195258 0.4348222 0.3944623 +0.5284142 0.4348222 0.3944623 +0.5370079 0.4348222 0.3944623 +0.5453253 0.4348222 0.3944623 +0.5533834 0.4348222 0.3944623 +0.5611974 0.4348222 0.3944623 +0.5687816 0.4348222 0.3944623 +0.092819 0.4470264 0.3944623 +0.1056428 0.4470264 0.3944623 +0.1201537 0.4470264 0.3944623 +0.1409607 0.4470264 0.3944623 +0.1678172 0.4470264 0.3944623 +0.1950164 0.4470264 0.3944623 +0.2210581 0.4470264 0.3944623 +0.245636 0.4470264 0.3944623 +0.2686816 0.4470264 0.3944623 +0.2902431 0.4470264 0.3944623 +0.3104189 0.4470264 0.3944623 +0.3293248 0.4470264 0.3944623 +0.3470774 0.4470264 0.3944623 +0.3637862 0.4470264 0.3944623 +0.3795513 0.4470264 0.3944623 +0.3944623 0.4470264 0.3944623 +0.4085988 0.4470264 0.3944623 +0.4220313 0.4470264 0.3944623 +0.4348222 0.4470264 0.3944623 +0.4470264 0.4470264 0.3944623 +0.4586928 0.4470264 0.3944623 +0.4698649 0.4470264 0.3944623 +0.4805811 0.4470264 0.3944623 +0.490876 0.4470264 0.3944623 +0.5007803 0.4470264 0.3944623 +0.510322 0.4470264 0.3944623 +0.5195258 0.4470264 0.3944623 +0.5284142 0.4470264 0.3944623 +0.5370079 0.4470264 0.3944623 +0.5453253 0.4470264 0.3944623 +0.5533834 0.4470264 0.3944623 +0.5611974 0.4470264 0.3944623 +0.5687816 0.4470264 0.3944623 +0.092819 0.4586928 0.3944623 +0.1056428 0.4586928 0.3944623 +0.1201537 0.4586928 0.3944623 +0.1409607 0.4586928 0.3944623 +0.1678172 0.4586928 0.3944623 +0.1950164 0.4586928 0.3944623 +0.2210581 0.4586928 0.3944623 +0.245636 0.4586928 0.3944623 +0.2686816 0.4586928 0.3944623 +0.2902431 0.4586928 0.3944623 +0.3104189 0.4586928 0.3944623 +0.3293248 0.4586928 0.3944623 +0.3470774 0.4586928 0.3944623 +0.3637862 0.4586928 0.3944623 +0.3795513 0.4586928 0.3944623 +0.3944623 0.4586928 0.3944623 +0.4085988 0.4586928 0.3944623 +0.4220313 0.4586928 0.3944623 +0.4348222 0.4586928 0.3944623 +0.4470264 0.4586928 0.3944623 +0.4586928 0.4586928 0.3944623 +0.4698649 0.4586928 0.3944623 +0.4805811 0.4586928 0.3944623 +0.490876 0.4586928 0.3944623 +0.5007803 0.4586928 0.3944623 +0.510322 0.4586928 0.3944623 +0.5195258 0.4586928 0.3944623 +0.5284142 0.4586928 0.3944623 +0.5370079 0.4586928 0.3944623 +0.5453253 0.4586928 0.3944623 +0.5533834 0.4586928 0.3944623 +0.5611974 0.4586928 0.3944623 +0.5687816 0.4586928 0.3944623 +0.092819 0.4698649 0.3944623 +0.1056428 0.4698649 0.3944623 +0.1201537 0.4698649 0.3944623 +0.1409607 0.4698649 0.3944623 +0.1678172 0.4698649 0.3944623 +0.1950164 0.4698649 0.3944623 +0.2210581 0.4698649 0.3944623 +0.245636 0.4698649 0.3944623 +0.2686816 0.4698649 0.3944623 +0.2902431 0.4698649 0.3944623 +0.3104189 0.4698649 0.3944623 +0.3293248 0.4698649 0.3944623 +0.3470774 0.4698649 0.3944623 +0.3637862 0.4698649 0.3944623 +0.3795513 0.4698649 0.3944623 +0.3944623 0.4698649 0.3944623 +0.4085988 0.4698649 0.3944623 +0.4220313 0.4698649 0.3944623 +0.4348222 0.4698649 0.3944623 +0.4470264 0.4698649 0.3944623 +0.4586928 0.4698649 0.3944623 +0.4698649 0.4698649 0.3944623 +0.4805811 0.4698649 0.3944623 +0.490876 0.4698649 0.3944623 +0.5007803 0.4698649 0.3944623 +0.510322 0.4698649 0.3944623 +0.5195258 0.4698649 0.3944623 +0.5284142 0.4698649 0.3944623 +0.5370079 0.4698649 0.3944623 +0.5453253 0.4698649 0.3944623 +0.5533834 0.4698649 0.3944623 +0.5611974 0.4698649 0.3944623 +0.5687816 0.4698649 0.3944623 +0.092819 0.4805811 0.3944623 +0.1056428 0.4805811 0.3944623 +0.1201537 0.4805811 0.3944623 +0.1409607 0.4805811 0.3944623 +0.1678172 0.4805811 0.3944623 +0.1950164 0.4805811 0.3944623 +0.2210581 0.4805811 0.3944623 +0.245636 0.4805811 0.3944623 +0.2686816 0.4805811 0.3944623 +0.2902431 0.4805811 0.3944623 +0.3104189 0.4805811 0.3944623 +0.3293248 0.4805811 0.3944623 +0.3470774 0.4805811 0.3944623 +0.3637862 0.4805811 0.3944623 +0.3795513 0.4805811 0.3944623 +0.3944623 0.4805811 0.3944623 +0.4085988 0.4805811 0.3944623 +0.4220313 0.4805811 0.3944623 +0.4348222 0.4805811 0.3944623 +0.4470264 0.4805811 0.3944623 +0.4586928 0.4805811 0.3944623 +0.4698649 0.4805811 0.3944623 +0.4805811 0.4805811 0.3944623 +0.490876 0.4805811 0.3944623 +0.5007803 0.4805811 0.3944623 +0.510322 0.4805811 0.3944623 +0.5195258 0.4805811 0.3944623 +0.5284142 0.4805811 0.3944623 +0.5370079 0.4805811 0.3944623 +0.5453253 0.4805811 0.3944623 +0.5533834 0.4805811 0.3944623 +0.5611974 0.4805811 0.3944623 +0.5687816 0.4805811 0.3944623 +0.092819 0.490876 0.3944623 +0.1056428 0.490876 0.3944623 +0.1201537 0.490876 0.3944623 +0.1409607 0.490876 0.3944623 +0.1678172 0.490876 0.3944623 +0.1950164 0.490876 0.3944623 +0.2210581 0.490876 0.3944623 +0.245636 0.490876 0.3944623 +0.2686816 0.490876 0.3944623 +0.2902431 0.490876 0.3944623 +0.3104189 0.490876 0.3944623 +0.3293248 0.490876 0.3944623 +0.3470774 0.490876 0.3944623 +0.3637862 0.490876 0.3944623 +0.3795513 0.490876 0.3944623 +0.3944623 0.490876 0.3944623 +0.4085988 0.490876 0.3944623 +0.4220313 0.490876 0.3944623 +0.4348222 0.490876 0.3944623 +0.4470264 0.490876 0.3944623 +0.4586928 0.490876 0.3944623 +0.4698649 0.490876 0.3944623 +0.4805811 0.490876 0.3944623 +0.490876 0.490876 0.3944623 +0.5007803 0.490876 0.3944623 +0.510322 0.490876 0.3944623 +0.5195258 0.490876 0.3944623 +0.5284142 0.490876 0.3944623 +0.5370079 0.490876 0.3944623 +0.5453253 0.490876 0.3944623 +0.5533834 0.490876 0.3944623 +0.5611974 0.490876 0.3944623 +0.5687816 0.490876 0.3944623 +0.092819 0.5007803 0.3944623 +0.1056428 0.5007803 0.3944623 +0.1201537 0.5007803 0.3944623 +0.1409607 0.5007803 0.3944623 +0.1678172 0.5007803 0.3944623 +0.1950164 0.5007803 0.3944623 +0.2210581 0.5007803 0.3944623 +0.245636 0.5007803 0.3944623 +0.2686816 0.5007803 0.3944623 +0.2902431 0.5007803 0.3944623 +0.3104189 0.5007803 0.3944623 +0.3293248 0.5007803 0.3944623 +0.3470774 0.5007803 0.3944623 +0.3637862 0.5007803 0.3944623 +0.3795513 0.5007803 0.3944623 +0.3944623 0.5007803 0.3944623 +0.4085988 0.5007803 0.3944623 +0.4220313 0.5007803 0.3944623 +0.4348222 0.5007803 0.3944623 +0.4470264 0.5007803 0.3944623 +0.4586928 0.5007803 0.3944623 +0.4698649 0.5007803 0.3944623 +0.4805811 0.5007803 0.3944623 +0.490876 0.5007803 0.3944623 +0.5007803 0.5007803 0.3944623 +0.510322 0.5007803 0.3944623 +0.5195258 0.5007803 0.3944623 +0.5284142 0.5007803 0.3944623 +0.5370079 0.5007803 0.3944623 +0.5453253 0.5007803 0.3944623 +0.5533834 0.5007803 0.3944623 +0.5611974 0.5007803 0.3944623 +0.5687816 0.5007803 0.3944623 +0.092819 0.510322 0.3944623 +0.1056428 0.510322 0.3944623 +0.1201537 0.510322 0.3944623 +0.1409607 0.510322 0.3944623 +0.1678172 0.510322 0.3944623 +0.1950164 0.510322 0.3944623 +0.2210581 0.510322 0.3944623 +0.245636 0.510322 0.3944623 +0.2686816 0.510322 0.3944623 +0.2902431 0.510322 0.3944623 +0.3104189 0.510322 0.3944623 +0.3293248 0.510322 0.3944623 +0.3470774 0.510322 0.3944623 +0.3637862 0.510322 0.3944623 +0.3795513 0.510322 0.3944623 +0.3944623 0.510322 0.3944623 +0.4085988 0.510322 0.3944623 +0.4220313 0.510322 0.3944623 +0.4348222 0.510322 0.3944623 +0.4470264 0.510322 0.3944623 +0.4586928 0.510322 0.3944623 +0.4698649 0.510322 0.3944623 +0.4805811 0.510322 0.3944623 +0.490876 0.510322 0.3944623 +0.5007803 0.510322 0.3944623 +0.510322 0.510322 0.3944623 +0.5195258 0.510322 0.3944623 +0.5284142 0.510322 0.3944623 +0.5370079 0.510322 0.3944623 +0.5453253 0.510322 0.3944623 +0.5533834 0.510322 0.3944623 +0.5611974 0.510322 0.3944623 +0.5687816 0.510322 0.3944623 +0.092819 0.5195258 0.3944623 +0.1056428 0.5195258 0.3944623 +0.1201537 0.5195258 0.3944623 +0.1409607 0.5195258 0.3944623 +0.1678172 0.5195258 0.3944623 +0.1950164 0.5195258 0.3944623 +0.2210581 0.5195258 0.3944623 +0.245636 0.5195258 0.3944623 +0.2686816 0.5195258 0.3944623 +0.2902431 0.5195258 0.3944623 +0.3104189 0.5195258 0.3944623 +0.3293248 0.5195258 0.3944623 +0.3470774 0.5195258 0.3944623 +0.3637862 0.5195258 0.3944623 +0.3795513 0.5195258 0.3944623 +0.3944623 0.5195258 0.3944623 +0.4085988 0.5195258 0.3944623 +0.4220313 0.5195258 0.3944623 +0.4348222 0.5195258 0.3944623 +0.4470264 0.5195258 0.3944623 +0.4586928 0.5195258 0.3944623 +0.4698649 0.5195258 0.3944623 +0.4805811 0.5195258 0.3944623 +0.490876 0.5195258 0.3944623 +0.5007803 0.5195258 0.3944623 +0.510322 0.5195258 0.3944623 +0.5195258 0.5195258 0.3944623 +0.5284142 0.5195258 0.3944623 +0.5370079 0.5195258 0.3944623 +0.5453253 0.5195258 0.3944623 +0.5533834 0.5195258 0.3944623 +0.5611974 0.5195258 0.3944623 +0.5687816 0.5195258 0.3944623 +0.092819 0.5284142 0.3944623 +0.1056428 0.5284142 0.3944623 +0.1201537 0.5284142 0.3944623 +0.1409607 0.5284142 0.3944623 +0.1678172 0.5284142 0.3944623 +0.1950164 0.5284142 0.3944623 +0.2210581 0.5284142 0.3944623 +0.245636 0.5284142 0.3944623 +0.2686816 0.5284142 0.3944623 +0.2902431 0.5284142 0.3944623 +0.3104189 0.5284142 0.3944623 +0.3293248 0.5284142 0.3944623 +0.3470774 0.5284142 0.3944623 +0.3637862 0.5284142 0.3944623 +0.3795513 0.5284142 0.3944623 +0.3944623 0.5284142 0.3944623 +0.4085988 0.5284142 0.3944623 +0.4220313 0.5284142 0.3944623 +0.4348222 0.5284142 0.3944623 +0.4470264 0.5284142 0.3944623 +0.4586928 0.5284142 0.3944623 +0.4698649 0.5284142 0.3944623 +0.4805811 0.5284142 0.3944623 +0.490876 0.5284142 0.3944623 +0.5007803 0.5284142 0.3944623 +0.510322 0.5284142 0.3944623 +0.5195258 0.5284142 0.3944623 +0.5284142 0.5284142 0.3944623 +0.5370079 0.5284142 0.3944623 +0.5453253 0.5284142 0.3944623 +0.5533834 0.5284142 0.3944623 +0.5611974 0.5284142 0.3944623 +0.5687816 0.5284142 0.3944623 +0.092819 0.5370079 0.3944623 +0.1056428 0.5370079 0.3944623 +0.1201537 0.5370079 0.3944623 +0.1409607 0.5370079 0.3944623 +0.1678172 0.5370079 0.3944623 +0.1950164 0.5370079 0.3944623 +0.2210581 0.5370079 0.3944623 +0.245636 0.5370079 0.3944623 +0.2686816 0.5370079 0.3944623 +0.2902431 0.5370079 0.3944623 +0.3104189 0.5370079 0.3944623 +0.3293248 0.5370079 0.3944623 +0.3470774 0.5370079 0.3944623 +0.3637862 0.5370079 0.3944623 +0.3795513 0.5370079 0.3944623 +0.3944623 0.5370079 0.3944623 +0.4085988 0.5370079 0.3944623 +0.4220313 0.5370079 0.3944623 +0.4348222 0.5370079 0.3944623 +0.4470264 0.5370079 0.3944623 +0.4586928 0.5370079 0.3944623 +0.4698649 0.5370079 0.3944623 +0.4805811 0.5370079 0.3944623 +0.490876 0.5370079 0.3944623 +0.5007803 0.5370079 0.3944623 +0.510322 0.5370079 0.3944623 +0.5195258 0.5370079 0.3944623 +0.5284142 0.5370079 0.3944623 +0.5370079 0.5370079 0.3944623 +0.5453253 0.5370079 0.3944623 +0.5533834 0.5370079 0.3944623 +0.5611974 0.5370079 0.3944623 +0.5687816 0.5370079 0.3944623 +0.092819 0.5453253 0.3944623 +0.1056428 0.5453253 0.3944623 +0.1201537 0.5453253 0.3944623 +0.1409607 0.5453253 0.3944623 +0.1678172 0.5453253 0.3944623 +0.1950164 0.5453253 0.3944623 +0.2210581 0.5453253 0.3944623 +0.245636 0.5453253 0.3944623 +0.2686816 0.5453253 0.3944623 +0.2902431 0.5453253 0.3944623 +0.3104189 0.5453253 0.3944623 +0.3293248 0.5453253 0.3944623 +0.3470774 0.5453253 0.3944623 +0.3637862 0.5453253 0.3944623 +0.3795513 0.5453253 0.3944623 +0.3944623 0.5453253 0.3944623 +0.4085988 0.5453253 0.3944623 +0.4220313 0.5453253 0.3944623 +0.4348222 0.5453253 0.3944623 +0.4470264 0.5453253 0.3944623 +0.4586928 0.5453253 0.3944623 +0.4698649 0.5453253 0.3944623 +0.4805811 0.5453253 0.3944623 +0.490876 0.5453253 0.3944623 +0.5007803 0.5453253 0.3944623 +0.510322 0.5453253 0.3944623 +0.5195258 0.5453253 0.3944623 +0.5284142 0.5453253 0.3944623 +0.5370079 0.5453253 0.3944623 +0.5453253 0.5453253 0.3944623 +0.5533834 0.5453253 0.3944623 +0.5611974 0.5453253 0.3944623 +0.5687816 0.5453253 0.3944623 +0.092819 0.5533834 0.3944623 +0.1056428 0.5533834 0.3944623 +0.1201537 0.5533834 0.3944623 +0.1409607 0.5533834 0.3944623 +0.1678172 0.5533834 0.3944623 +0.1950164 0.5533834 0.3944623 +0.2210581 0.5533834 0.3944623 +0.245636 0.5533834 0.3944623 +0.2686816 0.5533834 0.3944623 +0.2902431 0.5533834 0.3944623 +0.3104189 0.5533834 0.3944623 +0.3293248 0.5533834 0.3944623 +0.3470774 0.5533834 0.3944623 +0.3637862 0.5533834 0.3944623 +0.3795513 0.5533834 0.3944623 +0.3944623 0.5533834 0.3944623 +0.4085988 0.5533834 0.3944623 +0.4220313 0.5533834 0.3944623 +0.4348222 0.5533834 0.3944623 +0.4470264 0.5533834 0.3944623 +0.4586928 0.5533834 0.3944623 +0.4698649 0.5533834 0.3944623 +0.4805811 0.5533834 0.3944623 +0.490876 0.5533834 0.3944623 +0.5007803 0.5533834 0.3944623 +0.510322 0.5533834 0.3944623 +0.5195258 0.5533834 0.3944623 +0.5284142 0.5533834 0.3944623 +0.5370079 0.5533834 0.3944623 +0.5453253 0.5533834 0.3944623 +0.5533834 0.5533834 0.3944623 +0.5611974 0.5533834 0.3944623 +0.5687816 0.5533834 0.3944623 +0.092819 0.5611974 0.3944623 +0.1056428 0.5611974 0.3944623 +0.1201537 0.5611974 0.3944623 +0.1409607 0.5611974 0.3944623 +0.1678172 0.5611974 0.3944623 +0.1950164 0.5611974 0.3944623 +0.2210581 0.5611974 0.3944623 +0.245636 0.5611974 0.3944623 +0.2686816 0.5611974 0.3944623 +0.2902431 0.5611974 0.3944623 +0.3104189 0.5611974 0.3944623 +0.3293248 0.5611974 0.3944623 +0.3470774 0.5611974 0.3944623 +0.3637862 0.5611974 0.3944623 +0.3795513 0.5611974 0.3944623 +0.3944623 0.5611974 0.3944623 +0.4085988 0.5611974 0.3944623 +0.4220313 0.5611974 0.3944623 +0.4348222 0.5611974 0.3944623 +0.4470264 0.5611974 0.3944623 +0.4586928 0.5611974 0.3944623 +0.4698649 0.5611974 0.3944623 +0.4805811 0.5611974 0.3944623 +0.490876 0.5611974 0.3944623 +0.5007803 0.5611974 0.3944623 +0.510322 0.5611974 0.3944623 +0.5195258 0.5611974 0.3944623 +0.5284142 0.5611974 0.3944623 +0.5370079 0.5611974 0.3944623 +0.5453253 0.5611974 0.3944623 +0.5533834 0.5611974 0.3944623 +0.5611974 0.5611974 0.3944623 +0.5687816 0.5611974 0.3944623 +0.092819 0.5687816 0.3944623 +0.1056428 0.5687816 0.3944623 +0.1201537 0.5687816 0.3944623 +0.1409607 0.5687816 0.3944623 +0.1678172 0.5687816 0.3944623 +0.1950164 0.5687816 0.3944623 +0.2210581 0.5687816 0.3944623 +0.245636 0.5687816 0.3944623 +0.2686816 0.5687816 0.3944623 +0.2902431 0.5687816 0.3944623 +0.3104189 0.5687816 0.3944623 +0.3293248 0.5687816 0.3944623 +0.3470774 0.5687816 0.3944623 +0.3637862 0.5687816 0.3944623 +0.3795513 0.5687816 0.3944623 +0.3944623 0.5687816 0.3944623 +0.4085988 0.5687816 0.3944623 +0.4220313 0.5687816 0.3944623 +0.4348222 0.5687816 0.3944623 +0.4470264 0.5687816 0.3944623 +0.4586928 0.5687816 0.3944623 +0.4698649 0.5687816 0.3944623 +0.4805811 0.5687816 0.3944623 +0.490876 0.5687816 0.3944623 +0.5007803 0.5687816 0.3944623 +0.510322 0.5687816 0.3944623 +0.5195258 0.5687816 0.3944623 +0.5284142 0.5687816 0.3944623 +0.5370079 0.5687816 0.3944623 +0.5453253 0.5687816 0.3944623 +0.5533834 0.5687816 0.3944623 +0.5611974 0.5687816 0.3944623 +0.5687816 0.5687816 0.3944623 +0.092819 0.092819 0.4085988 +0.1056428 0.092819 0.4085988 +0.1201537 0.092819 0.4085988 +0.1409607 0.092819 0.4085988 +0.1678172 0.092819 0.4085988 +0.1950164 0.092819 0.4085988 +0.2210581 0.092819 0.4085988 +0.245636 0.092819 0.4085988 +0.2686816 0.092819 0.4085988 +0.2902431 0.092819 0.4085988 +0.3104189 0.092819 0.4085988 +0.3293248 0.092819 0.4085988 +0.3470774 0.092819 0.4085988 +0.3637862 0.092819 0.4085988 +0.3795513 0.092819 0.4085988 +0.3944623 0.092819 0.4085988 +0.4085988 0.092819 0.4085988 +0.4220313 0.092819 0.4085988 +0.4348222 0.092819 0.4085988 +0.4470264 0.092819 0.4085988 +0.4586928 0.092819 0.4085988 +0.4698649 0.092819 0.4085988 +0.4805811 0.092819 0.4085988 +0.490876 0.092819 0.4085988 +0.5007803 0.092819 0.4085988 +0.510322 0.092819 0.4085988 +0.5195258 0.092819 0.4085988 +0.5284142 0.092819 0.4085988 +0.5370079 0.092819 0.4085988 +0.5453253 0.092819 0.4085988 +0.5533834 0.092819 0.4085988 +0.5611974 0.092819 0.4085988 +0.5687816 0.092819 0.4085988 +0.092819 0.1056428 0.4085988 +0.1056428 0.1056428 0.4085988 +0.1201537 0.1056428 0.4085988 +0.1409607 0.1056428 0.4085988 +0.1678172 0.1056428 0.4085988 +0.1950164 0.1056428 0.4085988 +0.2210581 0.1056428 0.4085988 +0.245636 0.1056428 0.4085988 +0.2686816 0.1056428 0.4085988 +0.2902431 0.1056428 0.4085988 +0.3104189 0.1056428 0.4085988 +0.3293248 0.1056428 0.4085988 +0.3470774 0.1056428 0.4085988 +0.3637862 0.1056428 0.4085988 +0.3795513 0.1056428 0.4085988 +0.3944623 0.1056428 0.4085988 +0.4085988 0.1056428 0.4085988 +0.4220313 0.1056428 0.4085988 +0.4348222 0.1056428 0.4085988 +0.4470264 0.1056428 0.4085988 +0.4586928 0.1056428 0.4085988 +0.4698649 0.1056428 0.4085988 +0.4805811 0.1056428 0.4085988 +0.490876 0.1056428 0.4085988 +0.5007803 0.1056428 0.4085988 +0.510322 0.1056428 0.4085988 +0.5195258 0.1056428 0.4085988 +0.5284142 0.1056428 0.4085988 +0.5370079 0.1056428 0.4085988 +0.5453253 0.1056428 0.4085988 +0.5533834 0.1056428 0.4085988 +0.5611974 0.1056428 0.4085988 +0.5687816 0.1056428 0.4085988 +0.092819 0.1201537 0.4085988 +0.1056428 0.1201537 0.4085988 +0.1201537 0.1201537 0.4085988 +0.1409607 0.1201537 0.4085988 +0.1678172 0.1201537 0.4085988 +0.1950164 0.1201537 0.4085988 +0.2210581 0.1201537 0.4085988 +0.245636 0.1201537 0.4085988 +0.2686816 0.1201537 0.4085988 +0.2902431 0.1201537 0.4085988 +0.3104189 0.1201537 0.4085988 +0.3293248 0.1201537 0.4085988 +0.3470774 0.1201537 0.4085988 +0.3637862 0.1201537 0.4085988 +0.3795513 0.1201537 0.4085988 +0.3944623 0.1201537 0.4085988 +0.4085988 0.1201537 0.4085988 +0.4220313 0.1201537 0.4085988 +0.4348222 0.1201537 0.4085988 +0.4470264 0.1201537 0.4085988 +0.4586928 0.1201537 0.4085988 +0.4698649 0.1201537 0.4085988 +0.4805811 0.1201537 0.4085988 +0.490876 0.1201537 0.4085988 +0.5007803 0.1201537 0.4085988 +0.510322 0.1201537 0.4085988 +0.5195258 0.1201537 0.4085988 +0.5284142 0.1201537 0.4085988 +0.5370079 0.1201537 0.4085988 +0.5453253 0.1201537 0.4085988 +0.5533834 0.1201537 0.4085988 +0.5611974 0.1201537 0.4085988 +0.5687816 0.1201537 0.4085988 +0.092819 0.1409607 0.4085988 +0.1056428 0.1409607 0.4085988 +0.1201537 0.1409607 0.4085988 +0.1409607 0.1409607 0.4085988 +0.1678172 0.1409607 0.4085988 +0.1950164 0.1409607 0.4085988 +0.2210581 0.1409607 0.4085988 +0.245636 0.1409607 0.4085988 +0.2686816 0.1409607 0.4085988 +0.2902431 0.1409607 0.4085988 +0.3104189 0.1409607 0.4085988 +0.3293248 0.1409607 0.4085988 +0.3470774 0.1409607 0.4085988 +0.3637862 0.1409607 0.4085988 +0.3795513 0.1409607 0.4085988 +0.3944623 0.1409607 0.4085988 +0.4085988 0.1409607 0.4085988 +0.4220313 0.1409607 0.4085988 +0.4348222 0.1409607 0.4085988 +0.4470264 0.1409607 0.4085988 +0.4586928 0.1409607 0.4085988 +0.4698649 0.1409607 0.4085988 +0.4805811 0.1409607 0.4085988 +0.490876 0.1409607 0.4085988 +0.5007803 0.1409607 0.4085988 +0.510322 0.1409607 0.4085988 +0.5195258 0.1409607 0.4085988 +0.5284142 0.1409607 0.4085988 +0.5370079 0.1409607 0.4085988 +0.5453253 0.1409607 0.4085988 +0.5533834 0.1409607 0.4085988 +0.5611974 0.1409607 0.4085988 +0.5687816 0.1409607 0.4085988 +0.092819 0.1678172 0.4085988 +0.1056428 0.1678172 0.4085988 +0.1201537 0.1678172 0.4085988 +0.1409607 0.1678172 0.4085988 +0.1678172 0.1678172 0.4085988 +0.1950164 0.1678172 0.4085988 +0.2210581 0.1678172 0.4085988 +0.245636 0.1678172 0.4085988 +0.2686816 0.1678172 0.4085988 +0.2902431 0.1678172 0.4085988 +0.3104189 0.1678172 0.4085988 +0.3293248 0.1678172 0.4085988 +0.3470774 0.1678172 0.4085988 +0.3637862 0.1678172 0.4085988 +0.3795513 0.1678172 0.4085988 +0.3944623 0.1678172 0.4085988 +0.4085988 0.1678172 0.4085988 +0.4220313 0.1678172 0.4085988 +0.4348222 0.1678172 0.4085988 +0.4470264 0.1678172 0.4085988 +0.4586928 0.1678172 0.4085988 +0.4698649 0.1678172 0.4085988 +0.4805811 0.1678172 0.4085988 +0.490876 0.1678172 0.4085988 +0.5007803 0.1678172 0.4085988 +0.510322 0.1678172 0.4085988 +0.5195258 0.1678172 0.4085988 +0.5284142 0.1678172 0.4085988 +0.5370079 0.1678172 0.4085988 +0.5453253 0.1678172 0.4085988 +0.5533834 0.1678172 0.4085988 +0.5611974 0.1678172 0.4085988 +0.5687816 0.1678172 0.4085988 +0.092819 0.1950164 0.4085988 +0.1056428 0.1950164 0.4085988 +0.1201537 0.1950164 0.4085988 +0.1409607 0.1950164 0.4085988 +0.1678172 0.1950164 0.4085988 +0.1950164 0.1950164 0.4085988 +0.2210581 0.1950164 0.4085988 +0.245636 0.1950164 0.4085988 +0.2686816 0.1950164 0.4085988 +0.2902431 0.1950164 0.4085988 +0.3104189 0.1950164 0.4085988 +0.3293248 0.1950164 0.4085988 +0.3470774 0.1950164 0.4085988 +0.3637862 0.1950164 0.4085988 +0.3795513 0.1950164 0.4085988 +0.3944623 0.1950164 0.4085988 +0.4085988 0.1950164 0.4085988 +0.4220313 0.1950164 0.4085988 +0.4348222 0.1950164 0.4085988 +0.4470264 0.1950164 0.4085988 +0.4586928 0.1950164 0.4085988 +0.4698649 0.1950164 0.4085988 +0.4805811 0.1950164 0.4085988 +0.490876 0.1950164 0.4085988 +0.5007803 0.1950164 0.4085988 +0.510322 0.1950164 0.4085988 +0.5195258 0.1950164 0.4085988 +0.5284142 0.1950164 0.4085988 +0.5370079 0.1950164 0.4085988 +0.5453253 0.1950164 0.4085988 +0.5533834 0.1950164 0.4085988 +0.5611974 0.1950164 0.4085988 +0.5687816 0.1950164 0.4085988 +0.092819 0.2210581 0.4085988 +0.1056428 0.2210581 0.4085988 +0.1201537 0.2210581 0.4085988 +0.1409607 0.2210581 0.4085988 +0.1678172 0.2210581 0.4085988 +0.1950164 0.2210581 0.4085988 +0.2210581 0.2210581 0.4085988 +0.245636 0.2210581 0.4085988 +0.2686816 0.2210581 0.4085988 +0.2902431 0.2210581 0.4085988 +0.3104189 0.2210581 0.4085988 +0.3293248 0.2210581 0.4085988 +0.3470774 0.2210581 0.4085988 +0.3637862 0.2210581 0.4085988 +0.3795513 0.2210581 0.4085988 +0.3944623 0.2210581 0.4085988 +0.4085988 0.2210581 0.4085988 +0.4220313 0.2210581 0.4085988 +0.4348222 0.2210581 0.4085988 +0.4470264 0.2210581 0.4085988 +0.4586928 0.2210581 0.4085988 +0.4698649 0.2210581 0.4085988 +0.4805811 0.2210581 0.4085988 +0.490876 0.2210581 0.4085988 +0.5007803 0.2210581 0.4085988 +0.510322 0.2210581 0.4085988 +0.5195258 0.2210581 0.4085988 +0.5284142 0.2210581 0.4085988 +0.5370079 0.2210581 0.4085988 +0.5453253 0.2210581 0.4085988 +0.5533834 0.2210581 0.4085988 +0.5611974 0.2210581 0.4085988 +0.5687816 0.2210581 0.4085988 +0.092819 0.245636 0.4085988 +0.1056428 0.245636 0.4085988 +0.1201537 0.245636 0.4085988 +0.1409607 0.245636 0.4085988 +0.1678172 0.245636 0.4085988 +0.1950164 0.245636 0.4085988 +0.2210581 0.245636 0.4085988 +0.245636 0.245636 0.4085988 +0.2686816 0.245636 0.4085988 +0.2902431 0.245636 0.4085988 +0.3104189 0.245636 0.4085988 +0.3293248 0.245636 0.4085988 +0.3470774 0.245636 0.4085988 +0.3637862 0.245636 0.4085988 +0.3795513 0.245636 0.4085988 +0.3944623 0.245636 0.4085988 +0.4085988 0.245636 0.4085988 +0.4220313 0.245636 0.4085988 +0.4348222 0.245636 0.4085988 +0.4470264 0.245636 0.4085988 +0.4586928 0.245636 0.4085988 +0.4698649 0.245636 0.4085988 +0.4805811 0.245636 0.4085988 +0.490876 0.245636 0.4085988 +0.5007803 0.245636 0.4085988 +0.510322 0.245636 0.4085988 +0.5195258 0.245636 0.4085988 +0.5284142 0.245636 0.4085988 +0.5370079 0.245636 0.4085988 +0.5453253 0.245636 0.4085988 +0.5533834 0.245636 0.4085988 +0.5611974 0.245636 0.4085988 +0.5687816 0.245636 0.4085988 +0.092819 0.2686816 0.4085988 +0.1056428 0.2686816 0.4085988 +0.1201537 0.2686816 0.4085988 +0.1409607 0.2686816 0.4085988 +0.1678172 0.2686816 0.4085988 +0.1950164 0.2686816 0.4085988 +0.2210581 0.2686816 0.4085988 +0.245636 0.2686816 0.4085988 +0.2686816 0.2686816 0.4085988 +0.2902431 0.2686816 0.4085988 +0.3104189 0.2686816 0.4085988 +0.3293248 0.2686816 0.4085988 +0.3470774 0.2686816 0.4085988 +0.3637862 0.2686816 0.4085988 +0.3795513 0.2686816 0.4085988 +0.3944623 0.2686816 0.4085988 +0.4085988 0.2686816 0.4085988 +0.4220313 0.2686816 0.4085988 +0.4348222 0.2686816 0.4085988 +0.4470264 0.2686816 0.4085988 +0.4586928 0.2686816 0.4085988 +0.4698649 0.2686816 0.4085988 +0.4805811 0.2686816 0.4085988 +0.490876 0.2686816 0.4085988 +0.5007803 0.2686816 0.4085988 +0.510322 0.2686816 0.4085988 +0.5195258 0.2686816 0.4085988 +0.5284142 0.2686816 0.4085988 +0.5370079 0.2686816 0.4085988 +0.5453253 0.2686816 0.4085988 +0.5533834 0.2686816 0.4085988 +0.5611974 0.2686816 0.4085988 +0.5687816 0.2686816 0.4085988 +0.092819 0.2902431 0.4085988 +0.1056428 0.2902431 0.4085988 +0.1201537 0.2902431 0.4085988 +0.1409607 0.2902431 0.4085988 +0.1678172 0.2902431 0.4085988 +0.1950164 0.2902431 0.4085988 +0.2210581 0.2902431 0.4085988 +0.245636 0.2902431 0.4085988 +0.2686816 0.2902431 0.4085988 +0.2902431 0.2902431 0.4085988 +0.3104189 0.2902431 0.4085988 +0.3293248 0.2902431 0.4085988 +0.3470774 0.2902431 0.4085988 +0.3637862 0.2902431 0.4085988 +0.3795513 0.2902431 0.4085988 +0.3944623 0.2902431 0.4085988 +0.4085988 0.2902431 0.4085988 +0.4220313 0.2902431 0.4085988 +0.4348222 0.2902431 0.4085988 +0.4470264 0.2902431 0.4085988 +0.4586928 0.2902431 0.4085988 +0.4698649 0.2902431 0.4085988 +0.4805811 0.2902431 0.4085988 +0.490876 0.2902431 0.4085988 +0.5007803 0.2902431 0.4085988 +0.510322 0.2902431 0.4085988 +0.5195258 0.2902431 0.4085988 +0.5284142 0.2902431 0.4085988 +0.5370079 0.2902431 0.4085988 +0.5453253 0.2902431 0.4085988 +0.5533834 0.2902431 0.4085988 +0.5611974 0.2902431 0.4085988 +0.5687816 0.2902431 0.4085988 +0.092819 0.3104189 0.4085988 +0.1056428 0.3104189 0.4085988 +0.1201537 0.3104189 0.4085988 +0.1409607 0.3104189 0.4085988 +0.1678172 0.3104189 0.4085988 +0.1950164 0.3104189 0.4085988 +0.2210581 0.3104189 0.4085988 +0.245636 0.3104189 0.4085988 +0.2686816 0.3104189 0.4085988 +0.2902431 0.3104189 0.4085988 +0.3104189 0.3104189 0.4085988 +0.3293248 0.3104189 0.4085988 +0.3470774 0.3104189 0.4085988 +0.3637862 0.3104189 0.4085988 +0.3795513 0.3104189 0.4085988 +0.3944623 0.3104189 0.4085988 +0.4085988 0.3104189 0.4085988 +0.4220313 0.3104189 0.4085988 +0.4348222 0.3104189 0.4085988 +0.4470264 0.3104189 0.4085988 +0.4586928 0.3104189 0.4085988 +0.4698649 0.3104189 0.4085988 +0.4805811 0.3104189 0.4085988 +0.490876 0.3104189 0.4085988 +0.5007803 0.3104189 0.4085988 +0.510322 0.3104189 0.4085988 +0.5195258 0.3104189 0.4085988 +0.5284142 0.3104189 0.4085988 +0.5370079 0.3104189 0.4085988 +0.5453253 0.3104189 0.4085988 +0.5533834 0.3104189 0.4085988 +0.5611974 0.3104189 0.4085988 +0.5687816 0.3104189 0.4085988 +0.092819 0.3293248 0.4085988 +0.1056428 0.3293248 0.4085988 +0.1201537 0.3293248 0.4085988 +0.1409607 0.3293248 0.4085988 +0.1678172 0.3293248 0.4085988 +0.1950164 0.3293248 0.4085988 +0.2210581 0.3293248 0.4085988 +0.245636 0.3293248 0.4085988 +0.2686816 0.3293248 0.4085988 +0.2902431 0.3293248 0.4085988 +0.3104189 0.3293248 0.4085988 +0.3293248 0.3293248 0.4085988 +0.3470774 0.3293248 0.4085988 +0.3637862 0.3293248 0.4085988 +0.3795513 0.3293248 0.4085988 +0.3944623 0.3293248 0.4085988 +0.4085988 0.3293248 0.4085988 +0.4220313 0.3293248 0.4085988 +0.4348222 0.3293248 0.4085988 +0.4470264 0.3293248 0.4085988 +0.4586928 0.3293248 0.4085988 +0.4698649 0.3293248 0.4085988 +0.4805811 0.3293248 0.4085988 +0.490876 0.3293248 0.4085988 +0.5007803 0.3293248 0.4085988 +0.510322 0.3293248 0.4085988 +0.5195258 0.3293248 0.4085988 +0.5284142 0.3293248 0.4085988 +0.5370079 0.3293248 0.4085988 +0.5453253 0.3293248 0.4085988 +0.5533834 0.3293248 0.4085988 +0.5611974 0.3293248 0.4085988 +0.5687816 0.3293248 0.4085988 +0.092819 0.3470774 0.4085988 +0.1056428 0.3470774 0.4085988 +0.1201537 0.3470774 0.4085988 +0.1409607 0.3470774 0.4085988 +0.1678172 0.3470774 0.4085988 +0.1950164 0.3470774 0.4085988 +0.2210581 0.3470774 0.4085988 +0.245636 0.3470774 0.4085988 +0.2686816 0.3470774 0.4085988 +0.2902431 0.3470774 0.4085988 +0.3104189 0.3470774 0.4085988 +0.3293248 0.3470774 0.4085988 +0.3470774 0.3470774 0.4085988 +0.3637862 0.3470774 0.4085988 +0.3795513 0.3470774 0.4085988 +0.3944623 0.3470774 0.4085988 +0.4085988 0.3470774 0.4085988 +0.4220313 0.3470774 0.4085988 +0.4348222 0.3470774 0.4085988 +0.4470264 0.3470774 0.4085988 +0.4586928 0.3470774 0.4085988 +0.4698649 0.3470774 0.4085988 +0.4805811 0.3470774 0.4085988 +0.490876 0.3470774 0.4085988 +0.5007803 0.3470774 0.4085988 +0.510322 0.3470774 0.4085988 +0.5195258 0.3470774 0.4085988 +0.5284142 0.3470774 0.4085988 +0.5370079 0.3470774 0.4085988 +0.5453253 0.3470774 0.4085988 +0.5533834 0.3470774 0.4085988 +0.5611974 0.3470774 0.4085988 +0.5687816 0.3470774 0.4085988 +0.092819 0.3637862 0.4085988 +0.1056428 0.3637862 0.4085988 +0.1201537 0.3637862 0.4085988 +0.1409607 0.3637862 0.4085988 +0.1678172 0.3637862 0.4085988 +0.1950164 0.3637862 0.4085988 +0.2210581 0.3637862 0.4085988 +0.245636 0.3637862 0.4085988 +0.2686816 0.3637862 0.4085988 +0.2902431 0.3637862 0.4085988 +0.3104189 0.3637862 0.4085988 +0.3293248 0.3637862 0.4085988 +0.3470774 0.3637862 0.4085988 +0.3637862 0.3637862 0.4085988 +0.3795513 0.3637862 0.4085988 +0.3944623 0.3637862 0.4085988 +0.4085988 0.3637862 0.4085988 +0.4220313 0.3637862 0.4085988 +0.4348222 0.3637862 0.4085988 +0.4470264 0.3637862 0.4085988 +0.4586928 0.3637862 0.4085988 +0.4698649 0.3637862 0.4085988 +0.4805811 0.3637862 0.4085988 +0.490876 0.3637862 0.4085988 +0.5007803 0.3637862 0.4085988 +0.510322 0.3637862 0.4085988 +0.5195258 0.3637862 0.4085988 +0.5284142 0.3637862 0.4085988 +0.5370079 0.3637862 0.4085988 +0.5453253 0.3637862 0.4085988 +0.5533834 0.3637862 0.4085988 +0.5611974 0.3637862 0.4085988 +0.5687816 0.3637862 0.4085988 +0.092819 0.3795513 0.4085988 +0.1056428 0.3795513 0.4085988 +0.1201537 0.3795513 0.4085988 +0.1409607 0.3795513 0.4085988 +0.1678172 0.3795513 0.4085988 +0.1950164 0.3795513 0.4085988 +0.2210581 0.3795513 0.4085988 +0.245636 0.3795513 0.4085988 +0.2686816 0.3795513 0.4085988 +0.2902431 0.3795513 0.4085988 +0.3104189 0.3795513 0.4085988 +0.3293248 0.3795513 0.4085988 +0.3470774 0.3795513 0.4085988 +0.3637862 0.3795513 0.4085988 +0.3795513 0.3795513 0.4085988 +0.3944623 0.3795513 0.4085988 +0.4085988 0.3795513 0.4085988 +0.4220313 0.3795513 0.4085988 +0.4348222 0.3795513 0.4085988 +0.4470264 0.3795513 0.4085988 +0.4586928 0.3795513 0.4085988 +0.4698649 0.3795513 0.4085988 +0.4805811 0.3795513 0.4085988 +0.490876 0.3795513 0.4085988 +0.5007803 0.3795513 0.4085988 +0.510322 0.3795513 0.4085988 +0.5195258 0.3795513 0.4085988 +0.5284142 0.3795513 0.4085988 +0.5370079 0.3795513 0.4085988 +0.5453253 0.3795513 0.4085988 +0.5533834 0.3795513 0.4085988 +0.5611974 0.3795513 0.4085988 +0.5687816 0.3795513 0.4085988 +0.092819 0.3944623 0.4085988 +0.1056428 0.3944623 0.4085988 +0.1201537 0.3944623 0.4085988 +0.1409607 0.3944623 0.4085988 +0.1678172 0.3944623 0.4085988 +0.1950164 0.3944623 0.4085988 +0.2210581 0.3944623 0.4085988 +0.245636 0.3944623 0.4085988 +0.2686816 0.3944623 0.4085988 +0.2902431 0.3944623 0.4085988 +0.3104189 0.3944623 0.4085988 +0.3293248 0.3944623 0.4085988 +0.3470774 0.3944623 0.4085988 +0.3637862 0.3944623 0.4085988 +0.3795513 0.3944623 0.4085988 +0.3944623 0.3944623 0.4085988 +0.4085988 0.3944623 0.4085988 +0.4220313 0.3944623 0.4085988 +0.4348222 0.3944623 0.4085988 +0.4470264 0.3944623 0.4085988 +0.4586928 0.3944623 0.4085988 +0.4698649 0.3944623 0.4085988 +0.4805811 0.3944623 0.4085988 +0.490876 0.3944623 0.4085988 +0.5007803 0.3944623 0.4085988 +0.510322 0.3944623 0.4085988 +0.5195258 0.3944623 0.4085988 +0.5284142 0.3944623 0.4085988 +0.5370079 0.3944623 0.4085988 +0.5453253 0.3944623 0.4085988 +0.5533834 0.3944623 0.4085988 +0.5611974 0.3944623 0.4085988 +0.5687816 0.3944623 0.4085988 +0.092819 0.4085988 0.4085988 +0.1056428 0.4085988 0.4085988 +0.1201537 0.4085988 0.4085988 +0.1409607 0.4085988 0.4085988 +0.1678172 0.4085988 0.4085988 +0.1950164 0.4085988 0.4085988 +0.2210581 0.4085988 0.4085988 +0.245636 0.4085988 0.4085988 +0.2686816 0.4085988 0.4085988 +0.2902431 0.4085988 0.4085988 +0.3104189 0.4085988 0.4085988 +0.3293248 0.4085988 0.4085988 +0.3470774 0.4085988 0.4085988 +0.3637862 0.4085988 0.4085988 +0.3795513 0.4085988 0.4085988 +0.3944623 0.4085988 0.4085988 +0.4085988 0.4085988 0.4085988 +0.4220313 0.4085988 0.4085988 +0.4348222 0.4085988 0.4085988 +0.4470264 0.4085988 0.4085988 +0.4586928 0.4085988 0.4085988 +0.4698649 0.4085988 0.4085988 +0.4805811 0.4085988 0.4085988 +0.490876 0.4085988 0.4085988 +0.5007803 0.4085988 0.4085988 +0.510322 0.4085988 0.4085988 +0.5195258 0.4085988 0.4085988 +0.5284142 0.4085988 0.4085988 +0.5370079 0.4085988 0.4085988 +0.5453253 0.4085988 0.4085988 +0.5533834 0.4085988 0.4085988 +0.5611974 0.4085988 0.4085988 +0.5687816 0.4085988 0.4085988 +0.092819 0.4220313 0.4085988 +0.1056428 0.4220313 0.4085988 +0.1201537 0.4220313 0.4085988 +0.1409607 0.4220313 0.4085988 +0.1678172 0.4220313 0.4085988 +0.1950164 0.4220313 0.4085988 +0.2210581 0.4220313 0.4085988 +0.245636 0.4220313 0.4085988 +0.2686816 0.4220313 0.4085988 +0.2902431 0.4220313 0.4085988 +0.3104189 0.4220313 0.4085988 +0.3293248 0.4220313 0.4085988 +0.3470774 0.4220313 0.4085988 +0.3637862 0.4220313 0.4085988 +0.3795513 0.4220313 0.4085988 +0.3944623 0.4220313 0.4085988 +0.4085988 0.4220313 0.4085988 +0.4220313 0.4220313 0.4085988 +0.4348222 0.4220313 0.4085988 +0.4470264 0.4220313 0.4085988 +0.4586928 0.4220313 0.4085988 +0.4698649 0.4220313 0.4085988 +0.4805811 0.4220313 0.4085988 +0.490876 0.4220313 0.4085988 +0.5007803 0.4220313 0.4085988 +0.510322 0.4220313 0.4085988 +0.5195258 0.4220313 0.4085988 +0.5284142 0.4220313 0.4085988 +0.5370079 0.4220313 0.4085988 +0.5453253 0.4220313 0.4085988 +0.5533834 0.4220313 0.4085988 +0.5611974 0.4220313 0.4085988 +0.5687816 0.4220313 0.4085988 +0.092819 0.4348222 0.4085988 +0.1056428 0.4348222 0.4085988 +0.1201537 0.4348222 0.4085988 +0.1409607 0.4348222 0.4085988 +0.1678172 0.4348222 0.4085988 +0.1950164 0.4348222 0.4085988 +0.2210581 0.4348222 0.4085988 +0.245636 0.4348222 0.4085988 +0.2686816 0.4348222 0.4085988 +0.2902431 0.4348222 0.4085988 +0.3104189 0.4348222 0.4085988 +0.3293248 0.4348222 0.4085988 +0.3470774 0.4348222 0.4085988 +0.3637862 0.4348222 0.4085988 +0.3795513 0.4348222 0.4085988 +0.3944623 0.4348222 0.4085988 +0.4085988 0.4348222 0.4085988 +0.4220313 0.4348222 0.4085988 +0.4348222 0.4348222 0.4085988 +0.4470264 0.4348222 0.4085988 +0.4586928 0.4348222 0.4085988 +0.4698649 0.4348222 0.4085988 +0.4805811 0.4348222 0.4085988 +0.490876 0.4348222 0.4085988 +0.5007803 0.4348222 0.4085988 +0.510322 0.4348222 0.4085988 +0.5195258 0.4348222 0.4085988 +0.5284142 0.4348222 0.4085988 +0.5370079 0.4348222 0.4085988 +0.5453253 0.4348222 0.4085988 +0.5533834 0.4348222 0.4085988 +0.5611974 0.4348222 0.4085988 +0.5687816 0.4348222 0.4085988 +0.092819 0.4470264 0.4085988 +0.1056428 0.4470264 0.4085988 +0.1201537 0.4470264 0.4085988 +0.1409607 0.4470264 0.4085988 +0.1678172 0.4470264 0.4085988 +0.1950164 0.4470264 0.4085988 +0.2210581 0.4470264 0.4085988 +0.245636 0.4470264 0.4085988 +0.2686816 0.4470264 0.4085988 +0.2902431 0.4470264 0.4085988 +0.3104189 0.4470264 0.4085988 +0.3293248 0.4470264 0.4085988 +0.3470774 0.4470264 0.4085988 +0.3637862 0.4470264 0.4085988 +0.3795513 0.4470264 0.4085988 +0.3944623 0.4470264 0.4085988 +0.4085988 0.4470264 0.4085988 +0.4220313 0.4470264 0.4085988 +0.4348222 0.4470264 0.4085988 +0.4470264 0.4470264 0.4085988 +0.4586928 0.4470264 0.4085988 +0.4698649 0.4470264 0.4085988 +0.4805811 0.4470264 0.4085988 +0.490876 0.4470264 0.4085988 +0.5007803 0.4470264 0.4085988 +0.510322 0.4470264 0.4085988 +0.5195258 0.4470264 0.4085988 +0.5284142 0.4470264 0.4085988 +0.5370079 0.4470264 0.4085988 +0.5453253 0.4470264 0.4085988 +0.5533834 0.4470264 0.4085988 +0.5611974 0.4470264 0.4085988 +0.5687816 0.4470264 0.4085988 +0.092819 0.4586928 0.4085988 +0.1056428 0.4586928 0.4085988 +0.1201537 0.4586928 0.4085988 +0.1409607 0.4586928 0.4085988 +0.1678172 0.4586928 0.4085988 +0.1950164 0.4586928 0.4085988 +0.2210581 0.4586928 0.4085988 +0.245636 0.4586928 0.4085988 +0.2686816 0.4586928 0.4085988 +0.2902431 0.4586928 0.4085988 +0.3104189 0.4586928 0.4085988 +0.3293248 0.4586928 0.4085988 +0.3470774 0.4586928 0.4085988 +0.3637862 0.4586928 0.4085988 +0.3795513 0.4586928 0.4085988 +0.3944623 0.4586928 0.4085988 +0.4085988 0.4586928 0.4085988 +0.4220313 0.4586928 0.4085988 +0.4348222 0.4586928 0.4085988 +0.4470264 0.4586928 0.4085988 +0.4586928 0.4586928 0.4085988 +0.4698649 0.4586928 0.4085988 +0.4805811 0.4586928 0.4085988 +0.490876 0.4586928 0.4085988 +0.5007803 0.4586928 0.4085988 +0.510322 0.4586928 0.4085988 +0.5195258 0.4586928 0.4085988 +0.5284142 0.4586928 0.4085988 +0.5370079 0.4586928 0.4085988 +0.5453253 0.4586928 0.4085988 +0.5533834 0.4586928 0.4085988 +0.5611974 0.4586928 0.4085988 +0.5687816 0.4586928 0.4085988 +0.092819 0.4698649 0.4085988 +0.1056428 0.4698649 0.4085988 +0.1201537 0.4698649 0.4085988 +0.1409607 0.4698649 0.4085988 +0.1678172 0.4698649 0.4085988 +0.1950164 0.4698649 0.4085988 +0.2210581 0.4698649 0.4085988 +0.245636 0.4698649 0.4085988 +0.2686816 0.4698649 0.4085988 +0.2902431 0.4698649 0.4085988 +0.3104189 0.4698649 0.4085988 +0.3293248 0.4698649 0.4085988 +0.3470774 0.4698649 0.4085988 +0.3637862 0.4698649 0.4085988 +0.3795513 0.4698649 0.4085988 +0.3944623 0.4698649 0.4085988 +0.4085988 0.4698649 0.4085988 +0.4220313 0.4698649 0.4085988 +0.4348222 0.4698649 0.4085988 +0.4470264 0.4698649 0.4085988 +0.4586928 0.4698649 0.4085988 +0.4698649 0.4698649 0.4085988 +0.4805811 0.4698649 0.4085988 +0.490876 0.4698649 0.4085988 +0.5007803 0.4698649 0.4085988 +0.510322 0.4698649 0.4085988 +0.5195258 0.4698649 0.4085988 +0.5284142 0.4698649 0.4085988 +0.5370079 0.4698649 0.4085988 +0.5453253 0.4698649 0.4085988 +0.5533834 0.4698649 0.4085988 +0.5611974 0.4698649 0.4085988 +0.5687816 0.4698649 0.4085988 +0.092819 0.4805811 0.4085988 +0.1056428 0.4805811 0.4085988 +0.1201537 0.4805811 0.4085988 +0.1409607 0.4805811 0.4085988 +0.1678172 0.4805811 0.4085988 +0.1950164 0.4805811 0.4085988 +0.2210581 0.4805811 0.4085988 +0.245636 0.4805811 0.4085988 +0.2686816 0.4805811 0.4085988 +0.2902431 0.4805811 0.4085988 +0.3104189 0.4805811 0.4085988 +0.3293248 0.4805811 0.4085988 +0.3470774 0.4805811 0.4085988 +0.3637862 0.4805811 0.4085988 +0.3795513 0.4805811 0.4085988 +0.3944623 0.4805811 0.4085988 +0.4085988 0.4805811 0.4085988 +0.4220313 0.4805811 0.4085988 +0.4348222 0.4805811 0.4085988 +0.4470264 0.4805811 0.4085988 +0.4586928 0.4805811 0.4085988 +0.4698649 0.4805811 0.4085988 +0.4805811 0.4805811 0.4085988 +0.490876 0.4805811 0.4085988 +0.5007803 0.4805811 0.4085988 +0.510322 0.4805811 0.4085988 +0.5195258 0.4805811 0.4085988 +0.5284142 0.4805811 0.4085988 +0.5370079 0.4805811 0.4085988 +0.5453253 0.4805811 0.4085988 +0.5533834 0.4805811 0.4085988 +0.5611974 0.4805811 0.4085988 +0.5687816 0.4805811 0.4085988 +0.092819 0.490876 0.4085988 +0.1056428 0.490876 0.4085988 +0.1201537 0.490876 0.4085988 +0.1409607 0.490876 0.4085988 +0.1678172 0.490876 0.4085988 +0.1950164 0.490876 0.4085988 +0.2210581 0.490876 0.4085988 +0.245636 0.490876 0.4085988 +0.2686816 0.490876 0.4085988 +0.2902431 0.490876 0.4085988 +0.3104189 0.490876 0.4085988 +0.3293248 0.490876 0.4085988 +0.3470774 0.490876 0.4085988 +0.3637862 0.490876 0.4085988 +0.3795513 0.490876 0.4085988 +0.3944623 0.490876 0.4085988 +0.4085988 0.490876 0.4085988 +0.4220313 0.490876 0.4085988 +0.4348222 0.490876 0.4085988 +0.4470264 0.490876 0.4085988 +0.4586928 0.490876 0.4085988 +0.4698649 0.490876 0.4085988 +0.4805811 0.490876 0.4085988 +0.490876 0.490876 0.4085988 +0.5007803 0.490876 0.4085988 +0.510322 0.490876 0.4085988 +0.5195258 0.490876 0.4085988 +0.5284142 0.490876 0.4085988 +0.5370079 0.490876 0.4085988 +0.5453253 0.490876 0.4085988 +0.5533834 0.490876 0.4085988 +0.5611974 0.490876 0.4085988 +0.5687816 0.490876 0.4085988 +0.092819 0.5007803 0.4085988 +0.1056428 0.5007803 0.4085988 +0.1201537 0.5007803 0.4085988 +0.1409607 0.5007803 0.4085988 +0.1678172 0.5007803 0.4085988 +0.1950164 0.5007803 0.4085988 +0.2210581 0.5007803 0.4085988 +0.245636 0.5007803 0.4085988 +0.2686816 0.5007803 0.4085988 +0.2902431 0.5007803 0.4085988 +0.3104189 0.5007803 0.4085988 +0.3293248 0.5007803 0.4085988 +0.3470774 0.5007803 0.4085988 +0.3637862 0.5007803 0.4085988 +0.3795513 0.5007803 0.4085988 +0.3944623 0.5007803 0.4085988 +0.4085988 0.5007803 0.4085988 +0.4220313 0.5007803 0.4085988 +0.4348222 0.5007803 0.4085988 +0.4470264 0.5007803 0.4085988 +0.4586928 0.5007803 0.4085988 +0.4698649 0.5007803 0.4085988 +0.4805811 0.5007803 0.4085988 +0.490876 0.5007803 0.4085988 +0.5007803 0.5007803 0.4085988 +0.510322 0.5007803 0.4085988 +0.5195258 0.5007803 0.4085988 +0.5284142 0.5007803 0.4085988 +0.5370079 0.5007803 0.4085988 +0.5453253 0.5007803 0.4085988 +0.5533834 0.5007803 0.4085988 +0.5611974 0.5007803 0.4085988 +0.5687816 0.5007803 0.4085988 +0.092819 0.510322 0.4085988 +0.1056428 0.510322 0.4085988 +0.1201537 0.510322 0.4085988 +0.1409607 0.510322 0.4085988 +0.1678172 0.510322 0.4085988 +0.1950164 0.510322 0.4085988 +0.2210581 0.510322 0.4085988 +0.245636 0.510322 0.4085988 +0.2686816 0.510322 0.4085988 +0.2902431 0.510322 0.4085988 +0.3104189 0.510322 0.4085988 +0.3293248 0.510322 0.4085988 +0.3470774 0.510322 0.4085988 +0.3637862 0.510322 0.4085988 +0.3795513 0.510322 0.4085988 +0.3944623 0.510322 0.4085988 +0.4085988 0.510322 0.4085988 +0.4220313 0.510322 0.4085988 +0.4348222 0.510322 0.4085988 +0.4470264 0.510322 0.4085988 +0.4586928 0.510322 0.4085988 +0.4698649 0.510322 0.4085988 +0.4805811 0.510322 0.4085988 +0.490876 0.510322 0.4085988 +0.5007803 0.510322 0.4085988 +0.510322 0.510322 0.4085988 +0.5195258 0.510322 0.4085988 +0.5284142 0.510322 0.4085988 +0.5370079 0.510322 0.4085988 +0.5453253 0.510322 0.4085988 +0.5533834 0.510322 0.4085988 +0.5611974 0.510322 0.4085988 +0.5687816 0.510322 0.4085988 +0.092819 0.5195258 0.4085988 +0.1056428 0.5195258 0.4085988 +0.1201537 0.5195258 0.4085988 +0.1409607 0.5195258 0.4085988 +0.1678172 0.5195258 0.4085988 +0.1950164 0.5195258 0.4085988 +0.2210581 0.5195258 0.4085988 +0.245636 0.5195258 0.4085988 +0.2686816 0.5195258 0.4085988 +0.2902431 0.5195258 0.4085988 +0.3104189 0.5195258 0.4085988 +0.3293248 0.5195258 0.4085988 +0.3470774 0.5195258 0.4085988 +0.3637862 0.5195258 0.4085988 +0.3795513 0.5195258 0.4085988 +0.3944623 0.5195258 0.4085988 +0.4085988 0.5195258 0.4085988 +0.4220313 0.5195258 0.4085988 +0.4348222 0.5195258 0.4085988 +0.4470264 0.5195258 0.4085988 +0.4586928 0.5195258 0.4085988 +0.4698649 0.5195258 0.4085988 +0.4805811 0.5195258 0.4085988 +0.490876 0.5195258 0.4085988 +0.5007803 0.5195258 0.4085988 +0.510322 0.5195258 0.4085988 +0.5195258 0.5195258 0.4085988 +0.5284142 0.5195258 0.4085988 +0.5370079 0.5195258 0.4085988 +0.5453253 0.5195258 0.4085988 +0.5533834 0.5195258 0.4085988 +0.5611974 0.5195258 0.4085988 +0.5687816 0.5195258 0.4085988 +0.092819 0.5284142 0.4085988 +0.1056428 0.5284142 0.4085988 +0.1201537 0.5284142 0.4085988 +0.1409607 0.5284142 0.4085988 +0.1678172 0.5284142 0.4085988 +0.1950164 0.5284142 0.4085988 +0.2210581 0.5284142 0.4085988 +0.245636 0.5284142 0.4085988 +0.2686816 0.5284142 0.4085988 +0.2902431 0.5284142 0.4085988 +0.3104189 0.5284142 0.4085988 +0.3293248 0.5284142 0.4085988 +0.3470774 0.5284142 0.4085988 +0.3637862 0.5284142 0.4085988 +0.3795513 0.5284142 0.4085988 +0.3944623 0.5284142 0.4085988 +0.4085988 0.5284142 0.4085988 +0.4220313 0.5284142 0.4085988 +0.4348222 0.5284142 0.4085988 +0.4470264 0.5284142 0.4085988 +0.4586928 0.5284142 0.4085988 +0.4698649 0.5284142 0.4085988 +0.4805811 0.5284142 0.4085988 +0.490876 0.5284142 0.4085988 +0.5007803 0.5284142 0.4085988 +0.510322 0.5284142 0.4085988 +0.5195258 0.5284142 0.4085988 +0.5284142 0.5284142 0.4085988 +0.5370079 0.5284142 0.4085988 +0.5453253 0.5284142 0.4085988 +0.5533834 0.5284142 0.4085988 +0.5611974 0.5284142 0.4085988 +0.5687816 0.5284142 0.4085988 +0.092819 0.5370079 0.4085988 +0.1056428 0.5370079 0.4085988 +0.1201537 0.5370079 0.4085988 +0.1409607 0.5370079 0.4085988 +0.1678172 0.5370079 0.4085988 +0.1950164 0.5370079 0.4085988 +0.2210581 0.5370079 0.4085988 +0.245636 0.5370079 0.4085988 +0.2686816 0.5370079 0.4085988 +0.2902431 0.5370079 0.4085988 +0.3104189 0.5370079 0.4085988 +0.3293248 0.5370079 0.4085988 +0.3470774 0.5370079 0.4085988 +0.3637862 0.5370079 0.4085988 +0.3795513 0.5370079 0.4085988 +0.3944623 0.5370079 0.4085988 +0.4085988 0.5370079 0.4085988 +0.4220313 0.5370079 0.4085988 +0.4348222 0.5370079 0.4085988 +0.4470264 0.5370079 0.4085988 +0.4586928 0.5370079 0.4085988 +0.4698649 0.5370079 0.4085988 +0.4805811 0.5370079 0.4085988 +0.490876 0.5370079 0.4085988 +0.5007803 0.5370079 0.4085988 +0.510322 0.5370079 0.4085988 +0.5195258 0.5370079 0.4085988 +0.5284142 0.5370079 0.4085988 +0.5370079 0.5370079 0.4085988 +0.5453253 0.5370079 0.4085988 +0.5533834 0.5370079 0.4085988 +0.5611974 0.5370079 0.4085988 +0.5687816 0.5370079 0.4085988 +0.092819 0.5453253 0.4085988 +0.1056428 0.5453253 0.4085988 +0.1201537 0.5453253 0.4085988 +0.1409607 0.5453253 0.4085988 +0.1678172 0.5453253 0.4085988 +0.1950164 0.5453253 0.4085988 +0.2210581 0.5453253 0.4085988 +0.245636 0.5453253 0.4085988 +0.2686816 0.5453253 0.4085988 +0.2902431 0.5453253 0.4085988 +0.3104189 0.5453253 0.4085988 +0.3293248 0.5453253 0.4085988 +0.3470774 0.5453253 0.4085988 +0.3637862 0.5453253 0.4085988 +0.3795513 0.5453253 0.4085988 +0.3944623 0.5453253 0.4085988 +0.4085988 0.5453253 0.4085988 +0.4220313 0.5453253 0.4085988 +0.4348222 0.5453253 0.4085988 +0.4470264 0.5453253 0.4085988 +0.4586928 0.5453253 0.4085988 +0.4698649 0.5453253 0.4085988 +0.4805811 0.5453253 0.4085988 +0.490876 0.5453253 0.4085988 +0.5007803 0.5453253 0.4085988 +0.510322 0.5453253 0.4085988 +0.5195258 0.5453253 0.4085988 +0.5284142 0.5453253 0.4085988 +0.5370079 0.5453253 0.4085988 +0.5453253 0.5453253 0.4085988 +0.5533834 0.5453253 0.4085988 +0.5611974 0.5453253 0.4085988 +0.5687816 0.5453253 0.4085988 +0.092819 0.5533834 0.4085988 +0.1056428 0.5533834 0.4085988 +0.1201537 0.5533834 0.4085988 +0.1409607 0.5533834 0.4085988 +0.1678172 0.5533834 0.4085988 +0.1950164 0.5533834 0.4085988 +0.2210581 0.5533834 0.4085988 +0.245636 0.5533834 0.4085988 +0.2686816 0.5533834 0.4085988 +0.2902431 0.5533834 0.4085988 +0.3104189 0.5533834 0.4085988 +0.3293248 0.5533834 0.4085988 +0.3470774 0.5533834 0.4085988 +0.3637862 0.5533834 0.4085988 +0.3795513 0.5533834 0.4085988 +0.3944623 0.5533834 0.4085988 +0.4085988 0.5533834 0.4085988 +0.4220313 0.5533834 0.4085988 +0.4348222 0.5533834 0.4085988 +0.4470264 0.5533834 0.4085988 +0.4586928 0.5533834 0.4085988 +0.4698649 0.5533834 0.4085988 +0.4805811 0.5533834 0.4085988 +0.490876 0.5533834 0.4085988 +0.5007803 0.5533834 0.4085988 +0.510322 0.5533834 0.4085988 +0.5195258 0.5533834 0.4085988 +0.5284142 0.5533834 0.4085988 +0.5370079 0.5533834 0.4085988 +0.5453253 0.5533834 0.4085988 +0.5533834 0.5533834 0.4085988 +0.5611974 0.5533834 0.4085988 +0.5687816 0.5533834 0.4085988 +0.092819 0.5611974 0.4085988 +0.1056428 0.5611974 0.4085988 +0.1201537 0.5611974 0.4085988 +0.1409607 0.5611974 0.4085988 +0.1678172 0.5611974 0.4085988 +0.1950164 0.5611974 0.4085988 +0.2210581 0.5611974 0.4085988 +0.245636 0.5611974 0.4085988 +0.2686816 0.5611974 0.4085988 +0.2902431 0.5611974 0.4085988 +0.3104189 0.5611974 0.4085988 +0.3293248 0.5611974 0.4085988 +0.3470774 0.5611974 0.4085988 +0.3637862 0.5611974 0.4085988 +0.3795513 0.5611974 0.4085988 +0.3944623 0.5611974 0.4085988 +0.4085988 0.5611974 0.4085988 +0.4220313 0.5611974 0.4085988 +0.4348222 0.5611974 0.4085988 +0.4470264 0.5611974 0.4085988 +0.4586928 0.5611974 0.4085988 +0.4698649 0.5611974 0.4085988 +0.4805811 0.5611974 0.4085988 +0.490876 0.5611974 0.4085988 +0.5007803 0.5611974 0.4085988 +0.510322 0.5611974 0.4085988 +0.5195258 0.5611974 0.4085988 +0.5284142 0.5611974 0.4085988 +0.5370079 0.5611974 0.4085988 +0.5453253 0.5611974 0.4085988 +0.5533834 0.5611974 0.4085988 +0.5611974 0.5611974 0.4085988 +0.5687816 0.5611974 0.4085988 +0.092819 0.5687816 0.4085988 +0.1056428 0.5687816 0.4085988 +0.1201537 0.5687816 0.4085988 +0.1409607 0.5687816 0.4085988 +0.1678172 0.5687816 0.4085988 +0.1950164 0.5687816 0.4085988 +0.2210581 0.5687816 0.4085988 +0.245636 0.5687816 0.4085988 +0.2686816 0.5687816 0.4085988 +0.2902431 0.5687816 0.4085988 +0.3104189 0.5687816 0.4085988 +0.3293248 0.5687816 0.4085988 +0.3470774 0.5687816 0.4085988 +0.3637862 0.5687816 0.4085988 +0.3795513 0.5687816 0.4085988 +0.3944623 0.5687816 0.4085988 +0.4085988 0.5687816 0.4085988 +0.4220313 0.5687816 0.4085988 +0.4348222 0.5687816 0.4085988 +0.4470264 0.5687816 0.4085988 +0.4586928 0.5687816 0.4085988 +0.4698649 0.5687816 0.4085988 +0.4805811 0.5687816 0.4085988 +0.490876 0.5687816 0.4085988 +0.5007803 0.5687816 0.4085988 +0.510322 0.5687816 0.4085988 +0.5195258 0.5687816 0.4085988 +0.5284142 0.5687816 0.4085988 +0.5370079 0.5687816 0.4085988 +0.5453253 0.5687816 0.4085988 +0.5533834 0.5687816 0.4085988 +0.5611974 0.5687816 0.4085988 +0.5687816 0.5687816 0.4085988 +0.092819 0.092819 0.4220313 +0.1056428 0.092819 0.4220313 +0.1201537 0.092819 0.4220313 +0.1409607 0.092819 0.4220313 +0.1678172 0.092819 0.4220313 +0.1950164 0.092819 0.4220313 +0.2210581 0.092819 0.4220313 +0.245636 0.092819 0.4220313 +0.2686816 0.092819 0.4220313 +0.2902431 0.092819 0.4220313 +0.3104189 0.092819 0.4220313 +0.3293248 0.092819 0.4220313 +0.3470774 0.092819 0.4220313 +0.3637862 0.092819 0.4220313 +0.3795513 0.092819 0.4220313 +0.3944623 0.092819 0.4220313 +0.4085988 0.092819 0.4220313 +0.4220313 0.092819 0.4220313 +0.4348222 0.092819 0.4220313 +0.4470264 0.092819 0.4220313 +0.4586928 0.092819 0.4220313 +0.4698649 0.092819 0.4220313 +0.4805811 0.092819 0.4220313 +0.490876 0.092819 0.4220313 +0.5007803 0.092819 0.4220313 +0.510322 0.092819 0.4220313 +0.5195258 0.092819 0.4220313 +0.5284142 0.092819 0.4220313 +0.5370079 0.092819 0.4220313 +0.5453253 0.092819 0.4220313 +0.5533834 0.092819 0.4220313 +0.5611974 0.092819 0.4220313 +0.5687816 0.092819 0.4220313 +0.092819 0.1056428 0.4220313 +0.1056428 0.1056428 0.4220313 +0.1201537 0.1056428 0.4220313 +0.1409607 0.1056428 0.4220313 +0.1678172 0.1056428 0.4220313 +0.1950164 0.1056428 0.4220313 +0.2210581 0.1056428 0.4220313 +0.245636 0.1056428 0.4220313 +0.2686816 0.1056428 0.4220313 +0.2902431 0.1056428 0.4220313 +0.3104189 0.1056428 0.4220313 +0.3293248 0.1056428 0.4220313 +0.3470774 0.1056428 0.4220313 +0.3637862 0.1056428 0.4220313 +0.3795513 0.1056428 0.4220313 +0.3944623 0.1056428 0.4220313 +0.4085988 0.1056428 0.4220313 +0.4220313 0.1056428 0.4220313 +0.4348222 0.1056428 0.4220313 +0.4470264 0.1056428 0.4220313 +0.4586928 0.1056428 0.4220313 +0.4698649 0.1056428 0.4220313 +0.4805811 0.1056428 0.4220313 +0.490876 0.1056428 0.4220313 +0.5007803 0.1056428 0.4220313 +0.510322 0.1056428 0.4220313 +0.5195258 0.1056428 0.4220313 +0.5284142 0.1056428 0.4220313 +0.5370079 0.1056428 0.4220313 +0.5453253 0.1056428 0.4220313 +0.5533834 0.1056428 0.4220313 +0.5611974 0.1056428 0.4220313 +0.5687816 0.1056428 0.4220313 +0.092819 0.1201537 0.4220313 +0.1056428 0.1201537 0.4220313 +0.1201537 0.1201537 0.4220313 +0.1409607 0.1201537 0.4220313 +0.1678172 0.1201537 0.4220313 +0.1950164 0.1201537 0.4220313 +0.2210581 0.1201537 0.4220313 +0.245636 0.1201537 0.4220313 +0.2686816 0.1201537 0.4220313 +0.2902431 0.1201537 0.4220313 +0.3104189 0.1201537 0.4220313 +0.3293248 0.1201537 0.4220313 +0.3470774 0.1201537 0.4220313 +0.3637862 0.1201537 0.4220313 +0.3795513 0.1201537 0.4220313 +0.3944623 0.1201537 0.4220313 +0.4085988 0.1201537 0.4220313 +0.4220313 0.1201537 0.4220313 +0.4348222 0.1201537 0.4220313 +0.4470264 0.1201537 0.4220313 +0.4586928 0.1201537 0.4220313 +0.4698649 0.1201537 0.4220313 +0.4805811 0.1201537 0.4220313 +0.490876 0.1201537 0.4220313 +0.5007803 0.1201537 0.4220313 +0.510322 0.1201537 0.4220313 +0.5195258 0.1201537 0.4220313 +0.5284142 0.1201537 0.4220313 +0.5370079 0.1201537 0.4220313 +0.5453253 0.1201537 0.4220313 +0.5533834 0.1201537 0.4220313 +0.5611974 0.1201537 0.4220313 +0.5687816 0.1201537 0.4220313 +0.092819 0.1409607 0.4220313 +0.1056428 0.1409607 0.4220313 +0.1201537 0.1409607 0.4220313 +0.1409607 0.1409607 0.4220313 +0.1678172 0.1409607 0.4220313 +0.1950164 0.1409607 0.4220313 +0.2210581 0.1409607 0.4220313 +0.245636 0.1409607 0.4220313 +0.2686816 0.1409607 0.4220313 +0.2902431 0.1409607 0.4220313 +0.3104189 0.1409607 0.4220313 +0.3293248 0.1409607 0.4220313 +0.3470774 0.1409607 0.4220313 +0.3637862 0.1409607 0.4220313 +0.3795513 0.1409607 0.4220313 +0.3944623 0.1409607 0.4220313 +0.4085988 0.1409607 0.4220313 +0.4220313 0.1409607 0.4220313 +0.4348222 0.1409607 0.4220313 +0.4470264 0.1409607 0.4220313 +0.4586928 0.1409607 0.4220313 +0.4698649 0.1409607 0.4220313 +0.4805811 0.1409607 0.4220313 +0.490876 0.1409607 0.4220313 +0.5007803 0.1409607 0.4220313 +0.510322 0.1409607 0.4220313 +0.5195258 0.1409607 0.4220313 +0.5284142 0.1409607 0.4220313 +0.5370079 0.1409607 0.4220313 +0.5453253 0.1409607 0.4220313 +0.5533834 0.1409607 0.4220313 +0.5611974 0.1409607 0.4220313 +0.5687816 0.1409607 0.4220313 +0.092819 0.1678172 0.4220313 +0.1056428 0.1678172 0.4220313 +0.1201537 0.1678172 0.4220313 +0.1409607 0.1678172 0.4220313 +0.1678172 0.1678172 0.4220313 +0.1950164 0.1678172 0.4220313 +0.2210581 0.1678172 0.4220313 +0.245636 0.1678172 0.4220313 +0.2686816 0.1678172 0.4220313 +0.2902431 0.1678172 0.4220313 +0.3104189 0.1678172 0.4220313 +0.3293248 0.1678172 0.4220313 +0.3470774 0.1678172 0.4220313 +0.3637862 0.1678172 0.4220313 +0.3795513 0.1678172 0.4220313 +0.3944623 0.1678172 0.4220313 +0.4085988 0.1678172 0.4220313 +0.4220313 0.1678172 0.4220313 +0.4348222 0.1678172 0.4220313 +0.4470264 0.1678172 0.4220313 +0.4586928 0.1678172 0.4220313 +0.4698649 0.1678172 0.4220313 +0.4805811 0.1678172 0.4220313 +0.490876 0.1678172 0.4220313 +0.5007803 0.1678172 0.4220313 +0.510322 0.1678172 0.4220313 +0.5195258 0.1678172 0.4220313 +0.5284142 0.1678172 0.4220313 +0.5370079 0.1678172 0.4220313 +0.5453253 0.1678172 0.4220313 +0.5533834 0.1678172 0.4220313 +0.5611974 0.1678172 0.4220313 +0.5687816 0.1678172 0.4220313 +0.092819 0.1950164 0.4220313 +0.1056428 0.1950164 0.4220313 +0.1201537 0.1950164 0.4220313 +0.1409607 0.1950164 0.4220313 +0.1678172 0.1950164 0.4220313 +0.1950164 0.1950164 0.4220313 +0.2210581 0.1950164 0.4220313 +0.245636 0.1950164 0.4220313 +0.2686816 0.1950164 0.4220313 +0.2902431 0.1950164 0.4220313 +0.3104189 0.1950164 0.4220313 +0.3293248 0.1950164 0.4220313 +0.3470774 0.1950164 0.4220313 +0.3637862 0.1950164 0.4220313 +0.3795513 0.1950164 0.4220313 +0.3944623 0.1950164 0.4220313 +0.4085988 0.1950164 0.4220313 +0.4220313 0.1950164 0.4220313 +0.4348222 0.1950164 0.4220313 +0.4470264 0.1950164 0.4220313 +0.4586928 0.1950164 0.4220313 +0.4698649 0.1950164 0.4220313 +0.4805811 0.1950164 0.4220313 +0.490876 0.1950164 0.4220313 +0.5007803 0.1950164 0.4220313 +0.510322 0.1950164 0.4220313 +0.5195258 0.1950164 0.4220313 +0.5284142 0.1950164 0.4220313 +0.5370079 0.1950164 0.4220313 +0.5453253 0.1950164 0.4220313 +0.5533834 0.1950164 0.4220313 +0.5611974 0.1950164 0.4220313 +0.5687816 0.1950164 0.4220313 +0.092819 0.2210581 0.4220313 +0.1056428 0.2210581 0.4220313 +0.1201537 0.2210581 0.4220313 +0.1409607 0.2210581 0.4220313 +0.1678172 0.2210581 0.4220313 +0.1950164 0.2210581 0.4220313 +0.2210581 0.2210581 0.4220313 +0.245636 0.2210581 0.4220313 +0.2686816 0.2210581 0.4220313 +0.2902431 0.2210581 0.4220313 +0.3104189 0.2210581 0.4220313 +0.3293248 0.2210581 0.4220313 +0.3470774 0.2210581 0.4220313 +0.3637862 0.2210581 0.4220313 +0.3795513 0.2210581 0.4220313 +0.3944623 0.2210581 0.4220313 +0.4085988 0.2210581 0.4220313 +0.4220313 0.2210581 0.4220313 +0.4348222 0.2210581 0.4220313 +0.4470264 0.2210581 0.4220313 +0.4586928 0.2210581 0.4220313 +0.4698649 0.2210581 0.4220313 +0.4805811 0.2210581 0.4220313 +0.490876 0.2210581 0.4220313 +0.5007803 0.2210581 0.4220313 +0.510322 0.2210581 0.4220313 +0.5195258 0.2210581 0.4220313 +0.5284142 0.2210581 0.4220313 +0.5370079 0.2210581 0.4220313 +0.5453253 0.2210581 0.4220313 +0.5533834 0.2210581 0.4220313 +0.5611974 0.2210581 0.4220313 +0.5687816 0.2210581 0.4220313 +0.092819 0.245636 0.4220313 +0.1056428 0.245636 0.4220313 +0.1201537 0.245636 0.4220313 +0.1409607 0.245636 0.4220313 +0.1678172 0.245636 0.4220313 +0.1950164 0.245636 0.4220313 +0.2210581 0.245636 0.4220313 +0.245636 0.245636 0.4220313 +0.2686816 0.245636 0.4220313 +0.2902431 0.245636 0.4220313 +0.3104189 0.245636 0.4220313 +0.3293248 0.245636 0.4220313 +0.3470774 0.245636 0.4220313 +0.3637862 0.245636 0.4220313 +0.3795513 0.245636 0.4220313 +0.3944623 0.245636 0.4220313 +0.4085988 0.245636 0.4220313 +0.4220313 0.245636 0.4220313 +0.4348222 0.245636 0.4220313 +0.4470264 0.245636 0.4220313 +0.4586928 0.245636 0.4220313 +0.4698649 0.245636 0.4220313 +0.4805811 0.245636 0.4220313 +0.490876 0.245636 0.4220313 +0.5007803 0.245636 0.4220313 +0.510322 0.245636 0.4220313 +0.5195258 0.245636 0.4220313 +0.5284142 0.245636 0.4220313 +0.5370079 0.245636 0.4220313 +0.5453253 0.245636 0.4220313 +0.5533834 0.245636 0.4220313 +0.5611974 0.245636 0.4220313 +0.5687816 0.245636 0.4220313 +0.092819 0.2686816 0.4220313 +0.1056428 0.2686816 0.4220313 +0.1201537 0.2686816 0.4220313 +0.1409607 0.2686816 0.4220313 +0.1678172 0.2686816 0.4220313 +0.1950164 0.2686816 0.4220313 +0.2210581 0.2686816 0.4220313 +0.245636 0.2686816 0.4220313 +0.2686816 0.2686816 0.4220313 +0.2902431 0.2686816 0.4220313 +0.3104189 0.2686816 0.4220313 +0.3293248 0.2686816 0.4220313 +0.3470774 0.2686816 0.4220313 +0.3637862 0.2686816 0.4220313 +0.3795513 0.2686816 0.4220313 +0.3944623 0.2686816 0.4220313 +0.4085988 0.2686816 0.4220313 +0.4220313 0.2686816 0.4220313 +0.4348222 0.2686816 0.4220313 +0.4470264 0.2686816 0.4220313 +0.4586928 0.2686816 0.4220313 +0.4698649 0.2686816 0.4220313 +0.4805811 0.2686816 0.4220313 +0.490876 0.2686816 0.4220313 +0.5007803 0.2686816 0.4220313 +0.510322 0.2686816 0.4220313 +0.5195258 0.2686816 0.4220313 +0.5284142 0.2686816 0.4220313 +0.5370079 0.2686816 0.4220313 +0.5453253 0.2686816 0.4220313 +0.5533834 0.2686816 0.4220313 +0.5611974 0.2686816 0.4220313 +0.5687816 0.2686816 0.4220313 +0.092819 0.2902431 0.4220313 +0.1056428 0.2902431 0.4220313 +0.1201537 0.2902431 0.4220313 +0.1409607 0.2902431 0.4220313 +0.1678172 0.2902431 0.4220313 +0.1950164 0.2902431 0.4220313 +0.2210581 0.2902431 0.4220313 +0.245636 0.2902431 0.4220313 +0.2686816 0.2902431 0.4220313 +0.2902431 0.2902431 0.4220313 +0.3104189 0.2902431 0.4220313 +0.3293248 0.2902431 0.4220313 +0.3470774 0.2902431 0.4220313 +0.3637862 0.2902431 0.4220313 +0.3795513 0.2902431 0.4220313 +0.3944623 0.2902431 0.4220313 +0.4085988 0.2902431 0.4220313 +0.4220313 0.2902431 0.4220313 +0.4348222 0.2902431 0.4220313 +0.4470264 0.2902431 0.4220313 +0.4586928 0.2902431 0.4220313 +0.4698649 0.2902431 0.4220313 +0.4805811 0.2902431 0.4220313 +0.490876 0.2902431 0.4220313 +0.5007803 0.2902431 0.4220313 +0.510322 0.2902431 0.4220313 +0.5195258 0.2902431 0.4220313 +0.5284142 0.2902431 0.4220313 +0.5370079 0.2902431 0.4220313 +0.5453253 0.2902431 0.4220313 +0.5533834 0.2902431 0.4220313 +0.5611974 0.2902431 0.4220313 +0.5687816 0.2902431 0.4220313 +0.092819 0.3104189 0.4220313 +0.1056428 0.3104189 0.4220313 +0.1201537 0.3104189 0.4220313 +0.1409607 0.3104189 0.4220313 +0.1678172 0.3104189 0.4220313 +0.1950164 0.3104189 0.4220313 +0.2210581 0.3104189 0.4220313 +0.245636 0.3104189 0.4220313 +0.2686816 0.3104189 0.4220313 +0.2902431 0.3104189 0.4220313 +0.3104189 0.3104189 0.4220313 +0.3293248 0.3104189 0.4220313 +0.3470774 0.3104189 0.4220313 +0.3637862 0.3104189 0.4220313 +0.3795513 0.3104189 0.4220313 +0.3944623 0.3104189 0.4220313 +0.4085988 0.3104189 0.4220313 +0.4220313 0.3104189 0.4220313 +0.4348222 0.3104189 0.4220313 +0.4470264 0.3104189 0.4220313 +0.4586928 0.3104189 0.4220313 +0.4698649 0.3104189 0.4220313 +0.4805811 0.3104189 0.4220313 +0.490876 0.3104189 0.4220313 +0.5007803 0.3104189 0.4220313 +0.510322 0.3104189 0.4220313 +0.5195258 0.3104189 0.4220313 +0.5284142 0.3104189 0.4220313 +0.5370079 0.3104189 0.4220313 +0.5453253 0.3104189 0.4220313 +0.5533834 0.3104189 0.4220313 +0.5611974 0.3104189 0.4220313 +0.5687816 0.3104189 0.4220313 +0.092819 0.3293248 0.4220313 +0.1056428 0.3293248 0.4220313 +0.1201537 0.3293248 0.4220313 +0.1409607 0.3293248 0.4220313 +0.1678172 0.3293248 0.4220313 +0.1950164 0.3293248 0.4220313 +0.2210581 0.3293248 0.4220313 +0.245636 0.3293248 0.4220313 +0.2686816 0.3293248 0.4220313 +0.2902431 0.3293248 0.4220313 +0.3104189 0.3293248 0.4220313 +0.3293248 0.3293248 0.4220313 +0.3470774 0.3293248 0.4220313 +0.3637862 0.3293248 0.4220313 +0.3795513 0.3293248 0.4220313 +0.3944623 0.3293248 0.4220313 +0.4085988 0.3293248 0.4220313 +0.4220313 0.3293248 0.4220313 +0.4348222 0.3293248 0.4220313 +0.4470264 0.3293248 0.4220313 +0.4586928 0.3293248 0.4220313 +0.4698649 0.3293248 0.4220313 +0.4805811 0.3293248 0.4220313 +0.490876 0.3293248 0.4220313 +0.5007803 0.3293248 0.4220313 +0.510322 0.3293248 0.4220313 +0.5195258 0.3293248 0.4220313 +0.5284142 0.3293248 0.4220313 +0.5370079 0.3293248 0.4220313 +0.5453253 0.3293248 0.4220313 +0.5533834 0.3293248 0.4220313 +0.5611974 0.3293248 0.4220313 +0.5687816 0.3293248 0.4220313 +0.092819 0.3470774 0.4220313 +0.1056428 0.3470774 0.4220313 +0.1201537 0.3470774 0.4220313 +0.1409607 0.3470774 0.4220313 +0.1678172 0.3470774 0.4220313 +0.1950164 0.3470774 0.4220313 +0.2210581 0.3470774 0.4220313 +0.245636 0.3470774 0.4220313 +0.2686816 0.3470774 0.4220313 +0.2902431 0.3470774 0.4220313 +0.3104189 0.3470774 0.4220313 +0.3293248 0.3470774 0.4220313 +0.3470774 0.3470774 0.4220313 +0.3637862 0.3470774 0.4220313 +0.3795513 0.3470774 0.4220313 +0.3944623 0.3470774 0.4220313 +0.4085988 0.3470774 0.4220313 +0.4220313 0.3470774 0.4220313 +0.4348222 0.3470774 0.4220313 +0.4470264 0.3470774 0.4220313 +0.4586928 0.3470774 0.4220313 +0.4698649 0.3470774 0.4220313 +0.4805811 0.3470774 0.4220313 +0.490876 0.3470774 0.4220313 +0.5007803 0.3470774 0.4220313 +0.510322 0.3470774 0.4220313 +0.5195258 0.3470774 0.4220313 +0.5284142 0.3470774 0.4220313 +0.5370079 0.3470774 0.4220313 +0.5453253 0.3470774 0.4220313 +0.5533834 0.3470774 0.4220313 +0.5611974 0.3470774 0.4220313 +0.5687816 0.3470774 0.4220313 +0.092819 0.3637862 0.4220313 +0.1056428 0.3637862 0.4220313 +0.1201537 0.3637862 0.4220313 +0.1409607 0.3637862 0.4220313 +0.1678172 0.3637862 0.4220313 +0.1950164 0.3637862 0.4220313 +0.2210581 0.3637862 0.4220313 +0.245636 0.3637862 0.4220313 +0.2686816 0.3637862 0.4220313 +0.2902431 0.3637862 0.4220313 +0.3104189 0.3637862 0.4220313 +0.3293248 0.3637862 0.4220313 +0.3470774 0.3637862 0.4220313 +0.3637862 0.3637862 0.4220313 +0.3795513 0.3637862 0.4220313 +0.3944623 0.3637862 0.4220313 +0.4085988 0.3637862 0.4220313 +0.4220313 0.3637862 0.4220313 +0.4348222 0.3637862 0.4220313 +0.4470264 0.3637862 0.4220313 +0.4586928 0.3637862 0.4220313 +0.4698649 0.3637862 0.4220313 +0.4805811 0.3637862 0.4220313 +0.490876 0.3637862 0.4220313 +0.5007803 0.3637862 0.4220313 +0.510322 0.3637862 0.4220313 +0.5195258 0.3637862 0.4220313 +0.5284142 0.3637862 0.4220313 +0.5370079 0.3637862 0.4220313 +0.5453253 0.3637862 0.4220313 +0.5533834 0.3637862 0.4220313 +0.5611974 0.3637862 0.4220313 +0.5687816 0.3637862 0.4220313 +0.092819 0.3795513 0.4220313 +0.1056428 0.3795513 0.4220313 +0.1201537 0.3795513 0.4220313 +0.1409607 0.3795513 0.4220313 +0.1678172 0.3795513 0.4220313 +0.1950164 0.3795513 0.4220313 +0.2210581 0.3795513 0.4220313 +0.245636 0.3795513 0.4220313 +0.2686816 0.3795513 0.4220313 +0.2902431 0.3795513 0.4220313 +0.3104189 0.3795513 0.4220313 +0.3293248 0.3795513 0.4220313 +0.3470774 0.3795513 0.4220313 +0.3637862 0.3795513 0.4220313 +0.3795513 0.3795513 0.4220313 +0.3944623 0.3795513 0.4220313 +0.4085988 0.3795513 0.4220313 +0.4220313 0.3795513 0.4220313 +0.4348222 0.3795513 0.4220313 +0.4470264 0.3795513 0.4220313 +0.4586928 0.3795513 0.4220313 +0.4698649 0.3795513 0.4220313 +0.4805811 0.3795513 0.4220313 +0.490876 0.3795513 0.4220313 +0.5007803 0.3795513 0.4220313 +0.510322 0.3795513 0.4220313 +0.5195258 0.3795513 0.4220313 +0.5284142 0.3795513 0.4220313 +0.5370079 0.3795513 0.4220313 +0.5453253 0.3795513 0.4220313 +0.5533834 0.3795513 0.4220313 +0.5611974 0.3795513 0.4220313 +0.5687816 0.3795513 0.4220313 +0.092819 0.3944623 0.4220313 +0.1056428 0.3944623 0.4220313 +0.1201537 0.3944623 0.4220313 +0.1409607 0.3944623 0.4220313 +0.1678172 0.3944623 0.4220313 +0.1950164 0.3944623 0.4220313 +0.2210581 0.3944623 0.4220313 +0.245636 0.3944623 0.4220313 +0.2686816 0.3944623 0.4220313 +0.2902431 0.3944623 0.4220313 +0.3104189 0.3944623 0.4220313 +0.3293248 0.3944623 0.4220313 +0.3470774 0.3944623 0.4220313 +0.3637862 0.3944623 0.4220313 +0.3795513 0.3944623 0.4220313 +0.3944623 0.3944623 0.4220313 +0.4085988 0.3944623 0.4220313 +0.4220313 0.3944623 0.4220313 +0.4348222 0.3944623 0.4220313 +0.4470264 0.3944623 0.4220313 +0.4586928 0.3944623 0.4220313 +0.4698649 0.3944623 0.4220313 +0.4805811 0.3944623 0.4220313 +0.490876 0.3944623 0.4220313 +0.5007803 0.3944623 0.4220313 +0.510322 0.3944623 0.4220313 +0.5195258 0.3944623 0.4220313 +0.5284142 0.3944623 0.4220313 +0.5370079 0.3944623 0.4220313 +0.5453253 0.3944623 0.4220313 +0.5533834 0.3944623 0.4220313 +0.5611974 0.3944623 0.4220313 +0.5687816 0.3944623 0.4220313 +0.092819 0.4085988 0.4220313 +0.1056428 0.4085988 0.4220313 +0.1201537 0.4085988 0.4220313 +0.1409607 0.4085988 0.4220313 +0.1678172 0.4085988 0.4220313 +0.1950164 0.4085988 0.4220313 +0.2210581 0.4085988 0.4220313 +0.245636 0.4085988 0.4220313 +0.2686816 0.4085988 0.4220313 +0.2902431 0.4085988 0.4220313 +0.3104189 0.4085988 0.4220313 +0.3293248 0.4085988 0.4220313 +0.3470774 0.4085988 0.4220313 +0.3637862 0.4085988 0.4220313 +0.3795513 0.4085988 0.4220313 +0.3944623 0.4085988 0.4220313 +0.4085988 0.4085988 0.4220313 +0.4220313 0.4085988 0.4220313 +0.4348222 0.4085988 0.4220313 +0.4470264 0.4085988 0.4220313 +0.4586928 0.4085988 0.4220313 +0.4698649 0.4085988 0.4220313 +0.4805811 0.4085988 0.4220313 +0.490876 0.4085988 0.4220313 +0.5007803 0.4085988 0.4220313 +0.510322 0.4085988 0.4220313 +0.5195258 0.4085988 0.4220313 +0.5284142 0.4085988 0.4220313 +0.5370079 0.4085988 0.4220313 +0.5453253 0.4085988 0.4220313 +0.5533834 0.4085988 0.4220313 +0.5611974 0.4085988 0.4220313 +0.5687816 0.4085988 0.4220313 +0.092819 0.4220313 0.4220313 +0.1056428 0.4220313 0.4220313 +0.1201537 0.4220313 0.4220313 +0.1409607 0.4220313 0.4220313 +0.1678172 0.4220313 0.4220313 +0.1950164 0.4220313 0.4220313 +0.2210581 0.4220313 0.4220313 +0.245636 0.4220313 0.4220313 +0.2686816 0.4220313 0.4220313 +0.2902431 0.4220313 0.4220313 +0.3104189 0.4220313 0.4220313 +0.3293248 0.4220313 0.4220313 +0.3470774 0.4220313 0.4220313 +0.3637862 0.4220313 0.4220313 +0.3795513 0.4220313 0.4220313 +0.3944623 0.4220313 0.4220313 +0.4085988 0.4220313 0.4220313 +0.4220313 0.4220313 0.4220313 +0.4348222 0.4220313 0.4220313 +0.4470264 0.4220313 0.4220313 +0.4586928 0.4220313 0.4220313 +0.4698649 0.4220313 0.4220313 +0.4805811 0.4220313 0.4220313 +0.490876 0.4220313 0.4220313 +0.5007803 0.4220313 0.4220313 +0.510322 0.4220313 0.4220313 +0.5195258 0.4220313 0.4220313 +0.5284142 0.4220313 0.4220313 +0.5370079 0.4220313 0.4220313 +0.5453253 0.4220313 0.4220313 +0.5533834 0.4220313 0.4220313 +0.5611974 0.4220313 0.4220313 +0.5687816 0.4220313 0.4220313 +0.092819 0.4348222 0.4220313 +0.1056428 0.4348222 0.4220313 +0.1201537 0.4348222 0.4220313 +0.1409607 0.4348222 0.4220313 +0.1678172 0.4348222 0.4220313 +0.1950164 0.4348222 0.4220313 +0.2210581 0.4348222 0.4220313 +0.245636 0.4348222 0.4220313 +0.2686816 0.4348222 0.4220313 +0.2902431 0.4348222 0.4220313 +0.3104189 0.4348222 0.4220313 +0.3293248 0.4348222 0.4220313 +0.3470774 0.4348222 0.4220313 +0.3637862 0.4348222 0.4220313 +0.3795513 0.4348222 0.4220313 +0.3944623 0.4348222 0.4220313 +0.4085988 0.4348222 0.4220313 +0.4220313 0.4348222 0.4220313 +0.4348222 0.4348222 0.4220313 +0.4470264 0.4348222 0.4220313 +0.4586928 0.4348222 0.4220313 +0.4698649 0.4348222 0.4220313 +0.4805811 0.4348222 0.4220313 +0.490876 0.4348222 0.4220313 +0.5007803 0.4348222 0.4220313 +0.510322 0.4348222 0.4220313 +0.5195258 0.4348222 0.4220313 +0.5284142 0.4348222 0.4220313 +0.5370079 0.4348222 0.4220313 +0.5453253 0.4348222 0.4220313 +0.5533834 0.4348222 0.4220313 +0.5611974 0.4348222 0.4220313 +0.5687816 0.4348222 0.4220313 +0.092819 0.4470264 0.4220313 +0.1056428 0.4470264 0.4220313 +0.1201537 0.4470264 0.4220313 +0.1409607 0.4470264 0.4220313 +0.1678172 0.4470264 0.4220313 +0.1950164 0.4470264 0.4220313 +0.2210581 0.4470264 0.4220313 +0.245636 0.4470264 0.4220313 +0.2686816 0.4470264 0.4220313 +0.2902431 0.4470264 0.4220313 +0.3104189 0.4470264 0.4220313 +0.3293248 0.4470264 0.4220313 +0.3470774 0.4470264 0.4220313 +0.3637862 0.4470264 0.4220313 +0.3795513 0.4470264 0.4220313 +0.3944623 0.4470264 0.4220313 +0.4085988 0.4470264 0.4220313 +0.4220313 0.4470264 0.4220313 +0.4348222 0.4470264 0.4220313 +0.4470264 0.4470264 0.4220313 +0.4586928 0.4470264 0.4220313 +0.4698649 0.4470264 0.4220313 +0.4805811 0.4470264 0.4220313 +0.490876 0.4470264 0.4220313 +0.5007803 0.4470264 0.4220313 +0.510322 0.4470264 0.4220313 +0.5195258 0.4470264 0.4220313 +0.5284142 0.4470264 0.4220313 +0.5370079 0.4470264 0.4220313 +0.5453253 0.4470264 0.4220313 +0.5533834 0.4470264 0.4220313 +0.5611974 0.4470264 0.4220313 +0.5687816 0.4470264 0.4220313 +0.092819 0.4586928 0.4220313 +0.1056428 0.4586928 0.4220313 +0.1201537 0.4586928 0.4220313 +0.1409607 0.4586928 0.4220313 +0.1678172 0.4586928 0.4220313 +0.1950164 0.4586928 0.4220313 +0.2210581 0.4586928 0.4220313 +0.245636 0.4586928 0.4220313 +0.2686816 0.4586928 0.4220313 +0.2902431 0.4586928 0.4220313 +0.3104189 0.4586928 0.4220313 +0.3293248 0.4586928 0.4220313 +0.3470774 0.4586928 0.4220313 +0.3637862 0.4586928 0.4220313 +0.3795513 0.4586928 0.4220313 +0.3944623 0.4586928 0.4220313 +0.4085988 0.4586928 0.4220313 +0.4220313 0.4586928 0.4220313 +0.4348222 0.4586928 0.4220313 +0.4470264 0.4586928 0.4220313 +0.4586928 0.4586928 0.4220313 +0.4698649 0.4586928 0.4220313 +0.4805811 0.4586928 0.4220313 +0.490876 0.4586928 0.4220313 +0.5007803 0.4586928 0.4220313 +0.510322 0.4586928 0.4220313 +0.5195258 0.4586928 0.4220313 +0.5284142 0.4586928 0.4220313 +0.5370079 0.4586928 0.4220313 +0.5453253 0.4586928 0.4220313 +0.5533834 0.4586928 0.4220313 +0.5611974 0.4586928 0.4220313 +0.5687816 0.4586928 0.4220313 +0.092819 0.4698649 0.4220313 +0.1056428 0.4698649 0.4220313 +0.1201537 0.4698649 0.4220313 +0.1409607 0.4698649 0.4220313 +0.1678172 0.4698649 0.4220313 +0.1950164 0.4698649 0.4220313 +0.2210581 0.4698649 0.4220313 +0.245636 0.4698649 0.4220313 +0.2686816 0.4698649 0.4220313 +0.2902431 0.4698649 0.4220313 +0.3104189 0.4698649 0.4220313 +0.3293248 0.4698649 0.4220313 +0.3470774 0.4698649 0.4220313 +0.3637862 0.4698649 0.4220313 +0.3795513 0.4698649 0.4220313 +0.3944623 0.4698649 0.4220313 +0.4085988 0.4698649 0.4220313 +0.4220313 0.4698649 0.4220313 +0.4348222 0.4698649 0.4220313 +0.4470264 0.4698649 0.4220313 +0.4586928 0.4698649 0.4220313 +0.4698649 0.4698649 0.4220313 +0.4805811 0.4698649 0.4220313 +0.490876 0.4698649 0.4220313 +0.5007803 0.4698649 0.4220313 +0.510322 0.4698649 0.4220313 +0.5195258 0.4698649 0.4220313 +0.5284142 0.4698649 0.4220313 +0.5370079 0.4698649 0.4220313 +0.5453253 0.4698649 0.4220313 +0.5533834 0.4698649 0.4220313 +0.5611974 0.4698649 0.4220313 +0.5687816 0.4698649 0.4220313 +0.092819 0.4805811 0.4220313 +0.1056428 0.4805811 0.4220313 +0.1201537 0.4805811 0.4220313 +0.1409607 0.4805811 0.4220313 +0.1678172 0.4805811 0.4220313 +0.1950164 0.4805811 0.4220313 +0.2210581 0.4805811 0.4220313 +0.245636 0.4805811 0.4220313 +0.2686816 0.4805811 0.4220313 +0.2902431 0.4805811 0.4220313 +0.3104189 0.4805811 0.4220313 +0.3293248 0.4805811 0.4220313 +0.3470774 0.4805811 0.4220313 +0.3637862 0.4805811 0.4220313 +0.3795513 0.4805811 0.4220313 +0.3944623 0.4805811 0.4220313 +0.4085988 0.4805811 0.4220313 +0.4220313 0.4805811 0.4220313 +0.4348222 0.4805811 0.4220313 +0.4470264 0.4805811 0.4220313 +0.4586928 0.4805811 0.4220313 +0.4698649 0.4805811 0.4220313 +0.4805811 0.4805811 0.4220313 +0.490876 0.4805811 0.4220313 +0.5007803 0.4805811 0.4220313 +0.510322 0.4805811 0.4220313 +0.5195258 0.4805811 0.4220313 +0.5284142 0.4805811 0.4220313 +0.5370079 0.4805811 0.4220313 +0.5453253 0.4805811 0.4220313 +0.5533834 0.4805811 0.4220313 +0.5611974 0.4805811 0.4220313 +0.5687816 0.4805811 0.4220313 +0.092819 0.490876 0.4220313 +0.1056428 0.490876 0.4220313 +0.1201537 0.490876 0.4220313 +0.1409607 0.490876 0.4220313 +0.1678172 0.490876 0.4220313 +0.1950164 0.490876 0.4220313 +0.2210581 0.490876 0.4220313 +0.245636 0.490876 0.4220313 +0.2686816 0.490876 0.4220313 +0.2902431 0.490876 0.4220313 +0.3104189 0.490876 0.4220313 +0.3293248 0.490876 0.4220313 +0.3470774 0.490876 0.4220313 +0.3637862 0.490876 0.4220313 +0.3795513 0.490876 0.4220313 +0.3944623 0.490876 0.4220313 +0.4085988 0.490876 0.4220313 +0.4220313 0.490876 0.4220313 +0.4348222 0.490876 0.4220313 +0.4470264 0.490876 0.4220313 +0.4586928 0.490876 0.4220313 +0.4698649 0.490876 0.4220313 +0.4805811 0.490876 0.4220313 +0.490876 0.490876 0.4220313 +0.5007803 0.490876 0.4220313 +0.510322 0.490876 0.4220313 +0.5195258 0.490876 0.4220313 +0.5284142 0.490876 0.4220313 +0.5370079 0.490876 0.4220313 +0.5453253 0.490876 0.4220313 +0.5533834 0.490876 0.4220313 +0.5611974 0.490876 0.4220313 +0.5687816 0.490876 0.4220313 +0.092819 0.5007803 0.4220313 +0.1056428 0.5007803 0.4220313 +0.1201537 0.5007803 0.4220313 +0.1409607 0.5007803 0.4220313 +0.1678172 0.5007803 0.4220313 +0.1950164 0.5007803 0.4220313 +0.2210581 0.5007803 0.4220313 +0.245636 0.5007803 0.4220313 +0.2686816 0.5007803 0.4220313 +0.2902431 0.5007803 0.4220313 +0.3104189 0.5007803 0.4220313 +0.3293248 0.5007803 0.4220313 +0.3470774 0.5007803 0.4220313 +0.3637862 0.5007803 0.4220313 +0.3795513 0.5007803 0.4220313 +0.3944623 0.5007803 0.4220313 +0.4085988 0.5007803 0.4220313 +0.4220313 0.5007803 0.4220313 +0.4348222 0.5007803 0.4220313 +0.4470264 0.5007803 0.4220313 +0.4586928 0.5007803 0.4220313 +0.4698649 0.5007803 0.4220313 +0.4805811 0.5007803 0.4220313 +0.490876 0.5007803 0.4220313 +0.5007803 0.5007803 0.4220313 +0.510322 0.5007803 0.4220313 +0.5195258 0.5007803 0.4220313 +0.5284142 0.5007803 0.4220313 +0.5370079 0.5007803 0.4220313 +0.5453253 0.5007803 0.4220313 +0.5533834 0.5007803 0.4220313 +0.5611974 0.5007803 0.4220313 +0.5687816 0.5007803 0.4220313 +0.092819 0.510322 0.4220313 +0.1056428 0.510322 0.4220313 +0.1201537 0.510322 0.4220313 +0.1409607 0.510322 0.4220313 +0.1678172 0.510322 0.4220313 +0.1950164 0.510322 0.4220313 +0.2210581 0.510322 0.4220313 +0.245636 0.510322 0.4220313 +0.2686816 0.510322 0.4220313 +0.2902431 0.510322 0.4220313 +0.3104189 0.510322 0.4220313 +0.3293248 0.510322 0.4220313 +0.3470774 0.510322 0.4220313 +0.3637862 0.510322 0.4220313 +0.3795513 0.510322 0.4220313 +0.3944623 0.510322 0.4220313 +0.4085988 0.510322 0.4220313 +0.4220313 0.510322 0.4220313 +0.4348222 0.510322 0.4220313 +0.4470264 0.510322 0.4220313 +0.4586928 0.510322 0.4220313 +0.4698649 0.510322 0.4220313 +0.4805811 0.510322 0.4220313 +0.490876 0.510322 0.4220313 +0.5007803 0.510322 0.4220313 +0.510322 0.510322 0.4220313 +0.5195258 0.510322 0.4220313 +0.5284142 0.510322 0.4220313 +0.5370079 0.510322 0.4220313 +0.5453253 0.510322 0.4220313 +0.5533834 0.510322 0.4220313 +0.5611974 0.510322 0.4220313 +0.5687816 0.510322 0.4220313 +0.092819 0.5195258 0.4220313 +0.1056428 0.5195258 0.4220313 +0.1201537 0.5195258 0.4220313 +0.1409607 0.5195258 0.4220313 +0.1678172 0.5195258 0.4220313 +0.1950164 0.5195258 0.4220313 +0.2210581 0.5195258 0.4220313 +0.245636 0.5195258 0.4220313 +0.2686816 0.5195258 0.4220313 +0.2902431 0.5195258 0.4220313 +0.3104189 0.5195258 0.4220313 +0.3293248 0.5195258 0.4220313 +0.3470774 0.5195258 0.4220313 +0.3637862 0.5195258 0.4220313 +0.3795513 0.5195258 0.4220313 +0.3944623 0.5195258 0.4220313 +0.4085988 0.5195258 0.4220313 +0.4220313 0.5195258 0.4220313 +0.4348222 0.5195258 0.4220313 +0.4470264 0.5195258 0.4220313 +0.4586928 0.5195258 0.4220313 +0.4698649 0.5195258 0.4220313 +0.4805811 0.5195258 0.4220313 +0.490876 0.5195258 0.4220313 +0.5007803 0.5195258 0.4220313 +0.510322 0.5195258 0.4220313 +0.5195258 0.5195258 0.4220313 +0.5284142 0.5195258 0.4220313 +0.5370079 0.5195258 0.4220313 +0.5453253 0.5195258 0.4220313 +0.5533834 0.5195258 0.4220313 +0.5611974 0.5195258 0.4220313 +0.5687816 0.5195258 0.4220313 +0.092819 0.5284142 0.4220313 +0.1056428 0.5284142 0.4220313 +0.1201537 0.5284142 0.4220313 +0.1409607 0.5284142 0.4220313 +0.1678172 0.5284142 0.4220313 +0.1950164 0.5284142 0.4220313 +0.2210581 0.5284142 0.4220313 +0.245636 0.5284142 0.4220313 +0.2686816 0.5284142 0.4220313 +0.2902431 0.5284142 0.4220313 +0.3104189 0.5284142 0.4220313 +0.3293248 0.5284142 0.4220313 +0.3470774 0.5284142 0.4220313 +0.3637862 0.5284142 0.4220313 +0.3795513 0.5284142 0.4220313 +0.3944623 0.5284142 0.4220313 +0.4085988 0.5284142 0.4220313 +0.4220313 0.5284142 0.4220313 +0.4348222 0.5284142 0.4220313 +0.4470264 0.5284142 0.4220313 +0.4586928 0.5284142 0.4220313 +0.4698649 0.5284142 0.4220313 +0.4805811 0.5284142 0.4220313 +0.490876 0.5284142 0.4220313 +0.5007803 0.5284142 0.4220313 +0.510322 0.5284142 0.4220313 +0.5195258 0.5284142 0.4220313 +0.5284142 0.5284142 0.4220313 +0.5370079 0.5284142 0.4220313 +0.5453253 0.5284142 0.4220313 +0.5533834 0.5284142 0.4220313 +0.5611974 0.5284142 0.4220313 +0.5687816 0.5284142 0.4220313 +0.092819 0.5370079 0.4220313 +0.1056428 0.5370079 0.4220313 +0.1201537 0.5370079 0.4220313 +0.1409607 0.5370079 0.4220313 +0.1678172 0.5370079 0.4220313 +0.1950164 0.5370079 0.4220313 +0.2210581 0.5370079 0.4220313 +0.245636 0.5370079 0.4220313 +0.2686816 0.5370079 0.4220313 +0.2902431 0.5370079 0.4220313 +0.3104189 0.5370079 0.4220313 +0.3293248 0.5370079 0.4220313 +0.3470774 0.5370079 0.4220313 +0.3637862 0.5370079 0.4220313 +0.3795513 0.5370079 0.4220313 +0.3944623 0.5370079 0.4220313 +0.4085988 0.5370079 0.4220313 +0.4220313 0.5370079 0.4220313 +0.4348222 0.5370079 0.4220313 +0.4470264 0.5370079 0.4220313 +0.4586928 0.5370079 0.4220313 +0.4698649 0.5370079 0.4220313 +0.4805811 0.5370079 0.4220313 +0.490876 0.5370079 0.4220313 +0.5007803 0.5370079 0.4220313 +0.510322 0.5370079 0.4220313 +0.5195258 0.5370079 0.4220313 +0.5284142 0.5370079 0.4220313 +0.5370079 0.5370079 0.4220313 +0.5453253 0.5370079 0.4220313 +0.5533834 0.5370079 0.4220313 +0.5611974 0.5370079 0.4220313 +0.5687816 0.5370079 0.4220313 +0.092819 0.5453253 0.4220313 +0.1056428 0.5453253 0.4220313 +0.1201537 0.5453253 0.4220313 +0.1409607 0.5453253 0.4220313 +0.1678172 0.5453253 0.4220313 +0.1950164 0.5453253 0.4220313 +0.2210581 0.5453253 0.4220313 +0.245636 0.5453253 0.4220313 +0.2686816 0.5453253 0.4220313 +0.2902431 0.5453253 0.4220313 +0.3104189 0.5453253 0.4220313 +0.3293248 0.5453253 0.4220313 +0.3470774 0.5453253 0.4220313 +0.3637862 0.5453253 0.4220313 +0.3795513 0.5453253 0.4220313 +0.3944623 0.5453253 0.4220313 +0.4085988 0.5453253 0.4220313 +0.4220313 0.5453253 0.4220313 +0.4348222 0.5453253 0.4220313 +0.4470264 0.5453253 0.4220313 +0.4586928 0.5453253 0.4220313 +0.4698649 0.5453253 0.4220313 +0.4805811 0.5453253 0.4220313 +0.490876 0.5453253 0.4220313 +0.5007803 0.5453253 0.4220313 +0.510322 0.5453253 0.4220313 +0.5195258 0.5453253 0.4220313 +0.5284142 0.5453253 0.4220313 +0.5370079 0.5453253 0.4220313 +0.5453253 0.5453253 0.4220313 +0.5533834 0.5453253 0.4220313 +0.5611974 0.5453253 0.4220313 +0.5687816 0.5453253 0.4220313 +0.092819 0.5533834 0.4220313 +0.1056428 0.5533834 0.4220313 +0.1201537 0.5533834 0.4220313 +0.1409607 0.5533834 0.4220313 +0.1678172 0.5533834 0.4220313 +0.1950164 0.5533834 0.4220313 +0.2210581 0.5533834 0.4220313 +0.245636 0.5533834 0.4220313 +0.2686816 0.5533834 0.4220313 +0.2902431 0.5533834 0.4220313 +0.3104189 0.5533834 0.4220313 +0.3293248 0.5533834 0.4220313 +0.3470774 0.5533834 0.4220313 +0.3637862 0.5533834 0.4220313 +0.3795513 0.5533834 0.4220313 +0.3944623 0.5533834 0.4220313 +0.4085988 0.5533834 0.4220313 +0.4220313 0.5533834 0.4220313 +0.4348222 0.5533834 0.4220313 +0.4470264 0.5533834 0.4220313 +0.4586928 0.5533834 0.4220313 +0.4698649 0.5533834 0.4220313 +0.4805811 0.5533834 0.4220313 +0.490876 0.5533834 0.4220313 +0.5007803 0.5533834 0.4220313 +0.510322 0.5533834 0.4220313 +0.5195258 0.5533834 0.4220313 +0.5284142 0.5533834 0.4220313 +0.5370079 0.5533834 0.4220313 +0.5453253 0.5533834 0.4220313 +0.5533834 0.5533834 0.4220313 +0.5611974 0.5533834 0.4220313 +0.5687816 0.5533834 0.4220313 +0.092819 0.5611974 0.4220313 +0.1056428 0.5611974 0.4220313 +0.1201537 0.5611974 0.4220313 +0.1409607 0.5611974 0.4220313 +0.1678172 0.5611974 0.4220313 +0.1950164 0.5611974 0.4220313 +0.2210581 0.5611974 0.4220313 +0.245636 0.5611974 0.4220313 +0.2686816 0.5611974 0.4220313 +0.2902431 0.5611974 0.4220313 +0.3104189 0.5611974 0.4220313 +0.3293248 0.5611974 0.4220313 +0.3470774 0.5611974 0.4220313 +0.3637862 0.5611974 0.4220313 +0.3795513 0.5611974 0.4220313 +0.3944623 0.5611974 0.4220313 +0.4085988 0.5611974 0.4220313 +0.4220313 0.5611974 0.4220313 +0.4348222 0.5611974 0.4220313 +0.4470264 0.5611974 0.4220313 +0.4586928 0.5611974 0.4220313 +0.4698649 0.5611974 0.4220313 +0.4805811 0.5611974 0.4220313 +0.490876 0.5611974 0.4220313 +0.5007803 0.5611974 0.4220313 +0.510322 0.5611974 0.4220313 +0.5195258 0.5611974 0.4220313 +0.5284142 0.5611974 0.4220313 +0.5370079 0.5611974 0.4220313 +0.5453253 0.5611974 0.4220313 +0.5533834 0.5611974 0.4220313 +0.5611974 0.5611974 0.4220313 +0.5687816 0.5611974 0.4220313 +0.092819 0.5687816 0.4220313 +0.1056428 0.5687816 0.4220313 +0.1201537 0.5687816 0.4220313 +0.1409607 0.5687816 0.4220313 +0.1678172 0.5687816 0.4220313 +0.1950164 0.5687816 0.4220313 +0.2210581 0.5687816 0.4220313 +0.245636 0.5687816 0.4220313 +0.2686816 0.5687816 0.4220313 +0.2902431 0.5687816 0.4220313 +0.3104189 0.5687816 0.4220313 +0.3293248 0.5687816 0.4220313 +0.3470774 0.5687816 0.4220313 +0.3637862 0.5687816 0.4220313 +0.3795513 0.5687816 0.4220313 +0.3944623 0.5687816 0.4220313 +0.4085988 0.5687816 0.4220313 +0.4220313 0.5687816 0.4220313 +0.4348222 0.5687816 0.4220313 +0.4470264 0.5687816 0.4220313 +0.4586928 0.5687816 0.4220313 +0.4698649 0.5687816 0.4220313 +0.4805811 0.5687816 0.4220313 +0.490876 0.5687816 0.4220313 +0.5007803 0.5687816 0.4220313 +0.510322 0.5687816 0.4220313 +0.5195258 0.5687816 0.4220313 +0.5284142 0.5687816 0.4220313 +0.5370079 0.5687816 0.4220313 +0.5453253 0.5687816 0.4220313 +0.5533834 0.5687816 0.4220313 +0.5611974 0.5687816 0.4220313 +0.5687816 0.5687816 0.4220313 +0.092819 0.092819 0.4348222 +0.1056428 0.092819 0.4348222 +0.1201537 0.092819 0.4348222 +0.1409607 0.092819 0.4348222 +0.1678172 0.092819 0.4348222 +0.1950164 0.092819 0.4348222 +0.2210581 0.092819 0.4348222 +0.245636 0.092819 0.4348222 +0.2686816 0.092819 0.4348222 +0.2902431 0.092819 0.4348222 +0.3104189 0.092819 0.4348222 +0.3293248 0.092819 0.4348222 +0.3470774 0.092819 0.4348222 +0.3637862 0.092819 0.4348222 +0.3795513 0.092819 0.4348222 +0.3944623 0.092819 0.4348222 +0.4085988 0.092819 0.4348222 +0.4220313 0.092819 0.4348222 +0.4348222 0.092819 0.4348222 +0.4470264 0.092819 0.4348222 +0.4586928 0.092819 0.4348222 +0.4698649 0.092819 0.4348222 +0.4805811 0.092819 0.4348222 +0.490876 0.092819 0.4348222 +0.5007803 0.092819 0.4348222 +0.510322 0.092819 0.4348222 +0.5195258 0.092819 0.4348222 +0.5284142 0.092819 0.4348222 +0.5370079 0.092819 0.4348222 +0.5453253 0.092819 0.4348222 +0.5533834 0.092819 0.4348222 +0.5611974 0.092819 0.4348222 +0.5687816 0.092819 0.4348222 +0.092819 0.1056428 0.4348222 +0.1056428 0.1056428 0.4348222 +0.1201537 0.1056428 0.4348222 +0.1409607 0.1056428 0.4348222 +0.1678172 0.1056428 0.4348222 +0.1950164 0.1056428 0.4348222 +0.2210581 0.1056428 0.4348222 +0.245636 0.1056428 0.4348222 +0.2686816 0.1056428 0.4348222 +0.2902431 0.1056428 0.4348222 +0.3104189 0.1056428 0.4348222 +0.3293248 0.1056428 0.4348222 +0.3470774 0.1056428 0.4348222 +0.3637862 0.1056428 0.4348222 +0.3795513 0.1056428 0.4348222 +0.3944623 0.1056428 0.4348222 +0.4085988 0.1056428 0.4348222 +0.4220313 0.1056428 0.4348222 +0.4348222 0.1056428 0.4348222 +0.4470264 0.1056428 0.4348222 +0.4586928 0.1056428 0.4348222 +0.4698649 0.1056428 0.4348222 +0.4805811 0.1056428 0.4348222 +0.490876 0.1056428 0.4348222 +0.5007803 0.1056428 0.4348222 +0.510322 0.1056428 0.4348222 +0.5195258 0.1056428 0.4348222 +0.5284142 0.1056428 0.4348222 +0.5370079 0.1056428 0.4348222 +0.5453253 0.1056428 0.4348222 +0.5533834 0.1056428 0.4348222 +0.5611974 0.1056428 0.4348222 +0.5687816 0.1056428 0.4348222 +0.092819 0.1201537 0.4348222 +0.1056428 0.1201537 0.4348222 +0.1201537 0.1201537 0.4348222 +0.1409607 0.1201537 0.4348222 +0.1678172 0.1201537 0.4348222 +0.1950164 0.1201537 0.4348222 +0.2210581 0.1201537 0.4348222 +0.245636 0.1201537 0.4348222 +0.2686816 0.1201537 0.4348222 +0.2902431 0.1201537 0.4348222 +0.3104189 0.1201537 0.4348222 +0.3293248 0.1201537 0.4348222 +0.3470774 0.1201537 0.4348222 +0.3637862 0.1201537 0.4348222 +0.3795513 0.1201537 0.4348222 +0.3944623 0.1201537 0.4348222 +0.4085988 0.1201537 0.4348222 +0.4220313 0.1201537 0.4348222 +0.4348222 0.1201537 0.4348222 +0.4470264 0.1201537 0.4348222 +0.4586928 0.1201537 0.4348222 +0.4698649 0.1201537 0.4348222 +0.4805811 0.1201537 0.4348222 +0.490876 0.1201537 0.4348222 +0.5007803 0.1201537 0.4348222 +0.510322 0.1201537 0.4348222 +0.5195258 0.1201537 0.4348222 +0.5284142 0.1201537 0.4348222 +0.5370079 0.1201537 0.4348222 +0.5453253 0.1201537 0.4348222 +0.5533834 0.1201537 0.4348222 +0.5611974 0.1201537 0.4348222 +0.5687816 0.1201537 0.4348222 +0.092819 0.1409607 0.4348222 +0.1056428 0.1409607 0.4348222 +0.1201537 0.1409607 0.4348222 +0.1409607 0.1409607 0.4348222 +0.1678172 0.1409607 0.4348222 +0.1950164 0.1409607 0.4348222 +0.2210581 0.1409607 0.4348222 +0.245636 0.1409607 0.4348222 +0.2686816 0.1409607 0.4348222 +0.2902431 0.1409607 0.4348222 +0.3104189 0.1409607 0.4348222 +0.3293248 0.1409607 0.4348222 +0.3470774 0.1409607 0.4348222 +0.3637862 0.1409607 0.4348222 +0.3795513 0.1409607 0.4348222 +0.3944623 0.1409607 0.4348222 +0.4085988 0.1409607 0.4348222 +0.4220313 0.1409607 0.4348222 +0.4348222 0.1409607 0.4348222 +0.4470264 0.1409607 0.4348222 +0.4586928 0.1409607 0.4348222 +0.4698649 0.1409607 0.4348222 +0.4805811 0.1409607 0.4348222 +0.490876 0.1409607 0.4348222 +0.5007803 0.1409607 0.4348222 +0.510322 0.1409607 0.4348222 +0.5195258 0.1409607 0.4348222 +0.5284142 0.1409607 0.4348222 +0.5370079 0.1409607 0.4348222 +0.5453253 0.1409607 0.4348222 +0.5533834 0.1409607 0.4348222 +0.5611974 0.1409607 0.4348222 +0.5687816 0.1409607 0.4348222 +0.092819 0.1678172 0.4348222 +0.1056428 0.1678172 0.4348222 +0.1201537 0.1678172 0.4348222 +0.1409607 0.1678172 0.4348222 +0.1678172 0.1678172 0.4348222 +0.1950164 0.1678172 0.4348222 +0.2210581 0.1678172 0.4348222 +0.245636 0.1678172 0.4348222 +0.2686816 0.1678172 0.4348222 +0.2902431 0.1678172 0.4348222 +0.3104189 0.1678172 0.4348222 +0.3293248 0.1678172 0.4348222 +0.3470774 0.1678172 0.4348222 +0.3637862 0.1678172 0.4348222 +0.3795513 0.1678172 0.4348222 +0.3944623 0.1678172 0.4348222 +0.4085988 0.1678172 0.4348222 +0.4220313 0.1678172 0.4348222 +0.4348222 0.1678172 0.4348222 +0.4470264 0.1678172 0.4348222 +0.4586928 0.1678172 0.4348222 +0.4698649 0.1678172 0.4348222 +0.4805811 0.1678172 0.4348222 +0.490876 0.1678172 0.4348222 +0.5007803 0.1678172 0.4348222 +0.510322 0.1678172 0.4348222 +0.5195258 0.1678172 0.4348222 +0.5284142 0.1678172 0.4348222 +0.5370079 0.1678172 0.4348222 +0.5453253 0.1678172 0.4348222 +0.5533834 0.1678172 0.4348222 +0.5611974 0.1678172 0.4348222 +0.5687816 0.1678172 0.4348222 +0.092819 0.1950164 0.4348222 +0.1056428 0.1950164 0.4348222 +0.1201537 0.1950164 0.4348222 +0.1409607 0.1950164 0.4348222 +0.1678172 0.1950164 0.4348222 +0.1950164 0.1950164 0.4348222 +0.2210581 0.1950164 0.4348222 +0.245636 0.1950164 0.4348222 +0.2686816 0.1950164 0.4348222 +0.2902431 0.1950164 0.4348222 +0.3104189 0.1950164 0.4348222 +0.3293248 0.1950164 0.4348222 +0.3470774 0.1950164 0.4348222 +0.3637862 0.1950164 0.4348222 +0.3795513 0.1950164 0.4348222 +0.3944623 0.1950164 0.4348222 +0.4085988 0.1950164 0.4348222 +0.4220313 0.1950164 0.4348222 +0.4348222 0.1950164 0.4348222 +0.4470264 0.1950164 0.4348222 +0.4586928 0.1950164 0.4348222 +0.4698649 0.1950164 0.4348222 +0.4805811 0.1950164 0.4348222 +0.490876 0.1950164 0.4348222 +0.5007803 0.1950164 0.4348222 +0.510322 0.1950164 0.4348222 +0.5195258 0.1950164 0.4348222 +0.5284142 0.1950164 0.4348222 +0.5370079 0.1950164 0.4348222 +0.5453253 0.1950164 0.4348222 +0.5533834 0.1950164 0.4348222 +0.5611974 0.1950164 0.4348222 +0.5687816 0.1950164 0.4348222 +0.092819 0.2210581 0.4348222 +0.1056428 0.2210581 0.4348222 +0.1201537 0.2210581 0.4348222 +0.1409607 0.2210581 0.4348222 +0.1678172 0.2210581 0.4348222 +0.1950164 0.2210581 0.4348222 +0.2210581 0.2210581 0.4348222 +0.245636 0.2210581 0.4348222 +0.2686816 0.2210581 0.4348222 +0.2902431 0.2210581 0.4348222 +0.3104189 0.2210581 0.4348222 +0.3293248 0.2210581 0.4348222 +0.3470774 0.2210581 0.4348222 +0.3637862 0.2210581 0.4348222 +0.3795513 0.2210581 0.4348222 +0.3944623 0.2210581 0.4348222 +0.4085988 0.2210581 0.4348222 +0.4220313 0.2210581 0.4348222 +0.4348222 0.2210581 0.4348222 +0.4470264 0.2210581 0.4348222 +0.4586928 0.2210581 0.4348222 +0.4698649 0.2210581 0.4348222 +0.4805811 0.2210581 0.4348222 +0.490876 0.2210581 0.4348222 +0.5007803 0.2210581 0.4348222 +0.510322 0.2210581 0.4348222 +0.5195258 0.2210581 0.4348222 +0.5284142 0.2210581 0.4348222 +0.5370079 0.2210581 0.4348222 +0.5453253 0.2210581 0.4348222 +0.5533834 0.2210581 0.4348222 +0.5611974 0.2210581 0.4348222 +0.5687816 0.2210581 0.4348222 +0.092819 0.245636 0.4348222 +0.1056428 0.245636 0.4348222 +0.1201537 0.245636 0.4348222 +0.1409607 0.245636 0.4348222 +0.1678172 0.245636 0.4348222 +0.1950164 0.245636 0.4348222 +0.2210581 0.245636 0.4348222 +0.245636 0.245636 0.4348222 +0.2686816 0.245636 0.4348222 +0.2902431 0.245636 0.4348222 +0.3104189 0.245636 0.4348222 +0.3293248 0.245636 0.4348222 +0.3470774 0.245636 0.4348222 +0.3637862 0.245636 0.4348222 +0.3795513 0.245636 0.4348222 +0.3944623 0.245636 0.4348222 +0.4085988 0.245636 0.4348222 +0.4220313 0.245636 0.4348222 +0.4348222 0.245636 0.4348222 +0.4470264 0.245636 0.4348222 +0.4586928 0.245636 0.4348222 +0.4698649 0.245636 0.4348222 +0.4805811 0.245636 0.4348222 +0.490876 0.245636 0.4348222 +0.5007803 0.245636 0.4348222 +0.510322 0.245636 0.4348222 +0.5195258 0.245636 0.4348222 +0.5284142 0.245636 0.4348222 +0.5370079 0.245636 0.4348222 +0.5453253 0.245636 0.4348222 +0.5533834 0.245636 0.4348222 +0.5611974 0.245636 0.4348222 +0.5687816 0.245636 0.4348222 +0.092819 0.2686816 0.4348222 +0.1056428 0.2686816 0.4348222 +0.1201537 0.2686816 0.4348222 +0.1409607 0.2686816 0.4348222 +0.1678172 0.2686816 0.4348222 +0.1950164 0.2686816 0.4348222 +0.2210581 0.2686816 0.4348222 +0.245636 0.2686816 0.4348222 +0.2686816 0.2686816 0.4348222 +0.2902431 0.2686816 0.4348222 +0.3104189 0.2686816 0.4348222 +0.3293248 0.2686816 0.4348222 +0.3470774 0.2686816 0.4348222 +0.3637862 0.2686816 0.4348222 +0.3795513 0.2686816 0.4348222 +0.3944623 0.2686816 0.4348222 +0.4085988 0.2686816 0.4348222 +0.4220313 0.2686816 0.4348222 +0.4348222 0.2686816 0.4348222 +0.4470264 0.2686816 0.4348222 +0.4586928 0.2686816 0.4348222 +0.4698649 0.2686816 0.4348222 +0.4805811 0.2686816 0.4348222 +0.490876 0.2686816 0.4348222 +0.5007803 0.2686816 0.4348222 +0.510322 0.2686816 0.4348222 +0.5195258 0.2686816 0.4348222 +0.5284142 0.2686816 0.4348222 +0.5370079 0.2686816 0.4348222 +0.5453253 0.2686816 0.4348222 +0.5533834 0.2686816 0.4348222 +0.5611974 0.2686816 0.4348222 +0.5687816 0.2686816 0.4348222 +0.092819 0.2902431 0.4348222 +0.1056428 0.2902431 0.4348222 +0.1201537 0.2902431 0.4348222 +0.1409607 0.2902431 0.4348222 +0.1678172 0.2902431 0.4348222 +0.1950164 0.2902431 0.4348222 +0.2210581 0.2902431 0.4348222 +0.245636 0.2902431 0.4348222 +0.2686816 0.2902431 0.4348222 +0.2902431 0.2902431 0.4348222 +0.3104189 0.2902431 0.4348222 +0.3293248 0.2902431 0.4348222 +0.3470774 0.2902431 0.4348222 +0.3637862 0.2902431 0.4348222 +0.3795513 0.2902431 0.4348222 +0.3944623 0.2902431 0.4348222 +0.4085988 0.2902431 0.4348222 +0.4220313 0.2902431 0.4348222 +0.4348222 0.2902431 0.4348222 +0.4470264 0.2902431 0.4348222 +0.4586928 0.2902431 0.4348222 +0.4698649 0.2902431 0.4348222 +0.4805811 0.2902431 0.4348222 +0.490876 0.2902431 0.4348222 +0.5007803 0.2902431 0.4348222 +0.510322 0.2902431 0.4348222 +0.5195258 0.2902431 0.4348222 +0.5284142 0.2902431 0.4348222 +0.5370079 0.2902431 0.4348222 +0.5453253 0.2902431 0.4348222 +0.5533834 0.2902431 0.4348222 +0.5611974 0.2902431 0.4348222 +0.5687816 0.2902431 0.4348222 +0.092819 0.3104189 0.4348222 +0.1056428 0.3104189 0.4348222 +0.1201537 0.3104189 0.4348222 +0.1409607 0.3104189 0.4348222 +0.1678172 0.3104189 0.4348222 +0.1950164 0.3104189 0.4348222 +0.2210581 0.3104189 0.4348222 +0.245636 0.3104189 0.4348222 +0.2686816 0.3104189 0.4348222 +0.2902431 0.3104189 0.4348222 +0.3104189 0.3104189 0.4348222 +0.3293248 0.3104189 0.4348222 +0.3470774 0.3104189 0.4348222 +0.3637862 0.3104189 0.4348222 +0.3795513 0.3104189 0.4348222 +0.3944623 0.3104189 0.4348222 +0.4085988 0.3104189 0.4348222 +0.4220313 0.3104189 0.4348222 +0.4348222 0.3104189 0.4348222 +0.4470264 0.3104189 0.4348222 +0.4586928 0.3104189 0.4348222 +0.4698649 0.3104189 0.4348222 +0.4805811 0.3104189 0.4348222 +0.490876 0.3104189 0.4348222 +0.5007803 0.3104189 0.4348222 +0.510322 0.3104189 0.4348222 +0.5195258 0.3104189 0.4348222 +0.5284142 0.3104189 0.4348222 +0.5370079 0.3104189 0.4348222 +0.5453253 0.3104189 0.4348222 +0.5533834 0.3104189 0.4348222 +0.5611974 0.3104189 0.4348222 +0.5687816 0.3104189 0.4348222 +0.092819 0.3293248 0.4348222 +0.1056428 0.3293248 0.4348222 +0.1201537 0.3293248 0.4348222 +0.1409607 0.3293248 0.4348222 +0.1678172 0.3293248 0.4348222 +0.1950164 0.3293248 0.4348222 +0.2210581 0.3293248 0.4348222 +0.245636 0.3293248 0.4348222 +0.2686816 0.3293248 0.4348222 +0.2902431 0.3293248 0.4348222 +0.3104189 0.3293248 0.4348222 +0.3293248 0.3293248 0.4348222 +0.3470774 0.3293248 0.4348222 +0.3637862 0.3293248 0.4348222 +0.3795513 0.3293248 0.4348222 +0.3944623 0.3293248 0.4348222 +0.4085988 0.3293248 0.4348222 +0.4220313 0.3293248 0.4348222 +0.4348222 0.3293248 0.4348222 +0.4470264 0.3293248 0.4348222 +0.4586928 0.3293248 0.4348222 +0.4698649 0.3293248 0.4348222 +0.4805811 0.3293248 0.4348222 +0.490876 0.3293248 0.4348222 +0.5007803 0.3293248 0.4348222 +0.510322 0.3293248 0.4348222 +0.5195258 0.3293248 0.4348222 +0.5284142 0.3293248 0.4348222 +0.5370079 0.3293248 0.4348222 +0.5453253 0.3293248 0.4348222 +0.5533834 0.3293248 0.4348222 +0.5611974 0.3293248 0.4348222 +0.5687816 0.3293248 0.4348222 +0.092819 0.3470774 0.4348222 +0.1056428 0.3470774 0.4348222 +0.1201537 0.3470774 0.4348222 +0.1409607 0.3470774 0.4348222 +0.1678172 0.3470774 0.4348222 +0.1950164 0.3470774 0.4348222 +0.2210581 0.3470774 0.4348222 +0.245636 0.3470774 0.4348222 +0.2686816 0.3470774 0.4348222 +0.2902431 0.3470774 0.4348222 +0.3104189 0.3470774 0.4348222 +0.3293248 0.3470774 0.4348222 +0.3470774 0.3470774 0.4348222 +0.3637862 0.3470774 0.4348222 +0.3795513 0.3470774 0.4348222 +0.3944623 0.3470774 0.4348222 +0.4085988 0.3470774 0.4348222 +0.4220313 0.3470774 0.4348222 +0.4348222 0.3470774 0.4348222 +0.4470264 0.3470774 0.4348222 +0.4586928 0.3470774 0.4348222 +0.4698649 0.3470774 0.4348222 +0.4805811 0.3470774 0.4348222 +0.490876 0.3470774 0.4348222 +0.5007803 0.3470774 0.4348222 +0.510322 0.3470774 0.4348222 +0.5195258 0.3470774 0.4348222 +0.5284142 0.3470774 0.4348222 +0.5370079 0.3470774 0.4348222 +0.5453253 0.3470774 0.4348222 +0.5533834 0.3470774 0.4348222 +0.5611974 0.3470774 0.4348222 +0.5687816 0.3470774 0.4348222 +0.092819 0.3637862 0.4348222 +0.1056428 0.3637862 0.4348222 +0.1201537 0.3637862 0.4348222 +0.1409607 0.3637862 0.4348222 +0.1678172 0.3637862 0.4348222 +0.1950164 0.3637862 0.4348222 +0.2210581 0.3637862 0.4348222 +0.245636 0.3637862 0.4348222 +0.2686816 0.3637862 0.4348222 +0.2902431 0.3637862 0.4348222 +0.3104189 0.3637862 0.4348222 +0.3293248 0.3637862 0.4348222 +0.3470774 0.3637862 0.4348222 +0.3637862 0.3637862 0.4348222 +0.3795513 0.3637862 0.4348222 +0.3944623 0.3637862 0.4348222 +0.4085988 0.3637862 0.4348222 +0.4220313 0.3637862 0.4348222 +0.4348222 0.3637862 0.4348222 +0.4470264 0.3637862 0.4348222 +0.4586928 0.3637862 0.4348222 +0.4698649 0.3637862 0.4348222 +0.4805811 0.3637862 0.4348222 +0.490876 0.3637862 0.4348222 +0.5007803 0.3637862 0.4348222 +0.510322 0.3637862 0.4348222 +0.5195258 0.3637862 0.4348222 +0.5284142 0.3637862 0.4348222 +0.5370079 0.3637862 0.4348222 +0.5453253 0.3637862 0.4348222 +0.5533834 0.3637862 0.4348222 +0.5611974 0.3637862 0.4348222 +0.5687816 0.3637862 0.4348222 +0.092819 0.3795513 0.4348222 +0.1056428 0.3795513 0.4348222 +0.1201537 0.3795513 0.4348222 +0.1409607 0.3795513 0.4348222 +0.1678172 0.3795513 0.4348222 +0.1950164 0.3795513 0.4348222 +0.2210581 0.3795513 0.4348222 +0.245636 0.3795513 0.4348222 +0.2686816 0.3795513 0.4348222 +0.2902431 0.3795513 0.4348222 +0.3104189 0.3795513 0.4348222 +0.3293248 0.3795513 0.4348222 +0.3470774 0.3795513 0.4348222 +0.3637862 0.3795513 0.4348222 +0.3795513 0.3795513 0.4348222 +0.3944623 0.3795513 0.4348222 +0.4085988 0.3795513 0.4348222 +0.4220313 0.3795513 0.4348222 +0.4348222 0.3795513 0.4348222 +0.4470264 0.3795513 0.4348222 +0.4586928 0.3795513 0.4348222 +0.4698649 0.3795513 0.4348222 +0.4805811 0.3795513 0.4348222 +0.490876 0.3795513 0.4348222 +0.5007803 0.3795513 0.4348222 +0.510322 0.3795513 0.4348222 +0.5195258 0.3795513 0.4348222 +0.5284142 0.3795513 0.4348222 +0.5370079 0.3795513 0.4348222 +0.5453253 0.3795513 0.4348222 +0.5533834 0.3795513 0.4348222 +0.5611974 0.3795513 0.4348222 +0.5687816 0.3795513 0.4348222 +0.092819 0.3944623 0.4348222 +0.1056428 0.3944623 0.4348222 +0.1201537 0.3944623 0.4348222 +0.1409607 0.3944623 0.4348222 +0.1678172 0.3944623 0.4348222 +0.1950164 0.3944623 0.4348222 +0.2210581 0.3944623 0.4348222 +0.245636 0.3944623 0.4348222 +0.2686816 0.3944623 0.4348222 +0.2902431 0.3944623 0.4348222 +0.3104189 0.3944623 0.4348222 +0.3293248 0.3944623 0.4348222 +0.3470774 0.3944623 0.4348222 +0.3637862 0.3944623 0.4348222 +0.3795513 0.3944623 0.4348222 +0.3944623 0.3944623 0.4348222 +0.4085988 0.3944623 0.4348222 +0.4220313 0.3944623 0.4348222 +0.4348222 0.3944623 0.4348222 +0.4470264 0.3944623 0.4348222 +0.4586928 0.3944623 0.4348222 +0.4698649 0.3944623 0.4348222 +0.4805811 0.3944623 0.4348222 +0.490876 0.3944623 0.4348222 +0.5007803 0.3944623 0.4348222 +0.510322 0.3944623 0.4348222 +0.5195258 0.3944623 0.4348222 +0.5284142 0.3944623 0.4348222 +0.5370079 0.3944623 0.4348222 +0.5453253 0.3944623 0.4348222 +0.5533834 0.3944623 0.4348222 +0.5611974 0.3944623 0.4348222 +0.5687816 0.3944623 0.4348222 +0.092819 0.4085988 0.4348222 +0.1056428 0.4085988 0.4348222 +0.1201537 0.4085988 0.4348222 +0.1409607 0.4085988 0.4348222 +0.1678172 0.4085988 0.4348222 +0.1950164 0.4085988 0.4348222 +0.2210581 0.4085988 0.4348222 +0.245636 0.4085988 0.4348222 +0.2686816 0.4085988 0.4348222 +0.2902431 0.4085988 0.4348222 +0.3104189 0.4085988 0.4348222 +0.3293248 0.4085988 0.4348222 +0.3470774 0.4085988 0.4348222 +0.3637862 0.4085988 0.4348222 +0.3795513 0.4085988 0.4348222 +0.3944623 0.4085988 0.4348222 +0.4085988 0.4085988 0.4348222 +0.4220313 0.4085988 0.4348222 +0.4348222 0.4085988 0.4348222 +0.4470264 0.4085988 0.4348222 +0.4586928 0.4085988 0.4348222 +0.4698649 0.4085988 0.4348222 +0.4805811 0.4085988 0.4348222 +0.490876 0.4085988 0.4348222 +0.5007803 0.4085988 0.4348222 +0.510322 0.4085988 0.4348222 +0.5195258 0.4085988 0.4348222 +0.5284142 0.4085988 0.4348222 +0.5370079 0.4085988 0.4348222 +0.5453253 0.4085988 0.4348222 +0.5533834 0.4085988 0.4348222 +0.5611974 0.4085988 0.4348222 +0.5687816 0.4085988 0.4348222 +0.092819 0.4220313 0.4348222 +0.1056428 0.4220313 0.4348222 +0.1201537 0.4220313 0.4348222 +0.1409607 0.4220313 0.4348222 +0.1678172 0.4220313 0.4348222 +0.1950164 0.4220313 0.4348222 +0.2210581 0.4220313 0.4348222 +0.245636 0.4220313 0.4348222 +0.2686816 0.4220313 0.4348222 +0.2902431 0.4220313 0.4348222 +0.3104189 0.4220313 0.4348222 +0.3293248 0.4220313 0.4348222 +0.3470774 0.4220313 0.4348222 +0.3637862 0.4220313 0.4348222 +0.3795513 0.4220313 0.4348222 +0.3944623 0.4220313 0.4348222 +0.4085988 0.4220313 0.4348222 +0.4220313 0.4220313 0.4348222 +0.4348222 0.4220313 0.4348222 +0.4470264 0.4220313 0.4348222 +0.4586928 0.4220313 0.4348222 +0.4698649 0.4220313 0.4348222 +0.4805811 0.4220313 0.4348222 +0.490876 0.4220313 0.4348222 +0.5007803 0.4220313 0.4348222 +0.510322 0.4220313 0.4348222 +0.5195258 0.4220313 0.4348222 +0.5284142 0.4220313 0.4348222 +0.5370079 0.4220313 0.4348222 +0.5453253 0.4220313 0.4348222 +0.5533834 0.4220313 0.4348222 +0.5611974 0.4220313 0.4348222 +0.5687816 0.4220313 0.4348222 +0.092819 0.4348222 0.4348222 +0.1056428 0.4348222 0.4348222 +0.1201537 0.4348222 0.4348222 +0.1409607 0.4348222 0.4348222 +0.1678172 0.4348222 0.4348222 +0.1950164 0.4348222 0.4348222 +0.2210581 0.4348222 0.4348222 +0.245636 0.4348222 0.4348222 +0.2686816 0.4348222 0.4348222 +0.2902431 0.4348222 0.4348222 +0.3104189 0.4348222 0.4348222 +0.3293248 0.4348222 0.4348222 +0.3470774 0.4348222 0.4348222 +0.3637862 0.4348222 0.4348222 +0.3795513 0.4348222 0.4348222 +0.3944623 0.4348222 0.4348222 +0.4085988 0.4348222 0.4348222 +0.4220313 0.4348222 0.4348222 +0.4348222 0.4348222 0.4348222 +0.4470264 0.4348222 0.4348222 +0.4586928 0.4348222 0.4348222 +0.4698649 0.4348222 0.4348222 +0.4805811 0.4348222 0.4348222 +0.490876 0.4348222 0.4348222 +0.5007803 0.4348222 0.4348222 +0.510322 0.4348222 0.4348222 +0.5195258 0.4348222 0.4348222 +0.5284142 0.4348222 0.4348222 +0.5370079 0.4348222 0.4348222 +0.5453253 0.4348222 0.4348222 +0.5533834 0.4348222 0.4348222 +0.5611974 0.4348222 0.4348222 +0.5687816 0.4348222 0.4348222 +0.092819 0.4470264 0.4348222 +0.1056428 0.4470264 0.4348222 +0.1201537 0.4470264 0.4348222 +0.1409607 0.4470264 0.4348222 +0.1678172 0.4470264 0.4348222 +0.1950164 0.4470264 0.4348222 +0.2210581 0.4470264 0.4348222 +0.245636 0.4470264 0.4348222 +0.2686816 0.4470264 0.4348222 +0.2902431 0.4470264 0.4348222 +0.3104189 0.4470264 0.4348222 +0.3293248 0.4470264 0.4348222 +0.3470774 0.4470264 0.4348222 +0.3637862 0.4470264 0.4348222 +0.3795513 0.4470264 0.4348222 +0.3944623 0.4470264 0.4348222 +0.4085988 0.4470264 0.4348222 +0.4220313 0.4470264 0.4348222 +0.4348222 0.4470264 0.4348222 +0.4470264 0.4470264 0.4348222 +0.4586928 0.4470264 0.4348222 +0.4698649 0.4470264 0.4348222 +0.4805811 0.4470264 0.4348222 +0.490876 0.4470264 0.4348222 +0.5007803 0.4470264 0.4348222 +0.510322 0.4470264 0.4348222 +0.5195258 0.4470264 0.4348222 +0.5284142 0.4470264 0.4348222 +0.5370079 0.4470264 0.4348222 +0.5453253 0.4470264 0.4348222 +0.5533834 0.4470264 0.4348222 +0.5611974 0.4470264 0.4348222 +0.5687816 0.4470264 0.4348222 +0.092819 0.4586928 0.4348222 +0.1056428 0.4586928 0.4348222 +0.1201537 0.4586928 0.4348222 +0.1409607 0.4586928 0.4348222 +0.1678172 0.4586928 0.4348222 +0.1950164 0.4586928 0.4348222 +0.2210581 0.4586928 0.4348222 +0.245636 0.4586928 0.4348222 +0.2686816 0.4586928 0.4348222 +0.2902431 0.4586928 0.4348222 +0.3104189 0.4586928 0.4348222 +0.3293248 0.4586928 0.4348222 +0.3470774 0.4586928 0.4348222 +0.3637862 0.4586928 0.4348222 +0.3795513 0.4586928 0.4348222 +0.3944623 0.4586928 0.4348222 +0.4085988 0.4586928 0.4348222 +0.4220313 0.4586928 0.4348222 +0.4348222 0.4586928 0.4348222 +0.4470264 0.4586928 0.4348222 +0.4586928 0.4586928 0.4348222 +0.4698649 0.4586928 0.4348222 +0.4805811 0.4586928 0.4348222 +0.490876 0.4586928 0.4348222 +0.5007803 0.4586928 0.4348222 +0.510322 0.4586928 0.4348222 +0.5195258 0.4586928 0.4348222 +0.5284142 0.4586928 0.4348222 +0.5370079 0.4586928 0.4348222 +0.5453253 0.4586928 0.4348222 +0.5533834 0.4586928 0.4348222 +0.5611974 0.4586928 0.4348222 +0.5687816 0.4586928 0.4348222 +0.092819 0.4698649 0.4348222 +0.1056428 0.4698649 0.4348222 +0.1201537 0.4698649 0.4348222 +0.1409607 0.4698649 0.4348222 +0.1678172 0.4698649 0.4348222 +0.1950164 0.4698649 0.4348222 +0.2210581 0.4698649 0.4348222 +0.245636 0.4698649 0.4348222 +0.2686816 0.4698649 0.4348222 +0.2902431 0.4698649 0.4348222 +0.3104189 0.4698649 0.4348222 +0.3293248 0.4698649 0.4348222 +0.3470774 0.4698649 0.4348222 +0.3637862 0.4698649 0.4348222 +0.3795513 0.4698649 0.4348222 +0.3944623 0.4698649 0.4348222 +0.4085988 0.4698649 0.4348222 +0.4220313 0.4698649 0.4348222 +0.4348222 0.4698649 0.4348222 +0.4470264 0.4698649 0.4348222 +0.4586928 0.4698649 0.4348222 +0.4698649 0.4698649 0.4348222 +0.4805811 0.4698649 0.4348222 +0.490876 0.4698649 0.4348222 +0.5007803 0.4698649 0.4348222 +0.510322 0.4698649 0.4348222 +0.5195258 0.4698649 0.4348222 +0.5284142 0.4698649 0.4348222 +0.5370079 0.4698649 0.4348222 +0.5453253 0.4698649 0.4348222 +0.5533834 0.4698649 0.4348222 +0.5611974 0.4698649 0.4348222 +0.5687816 0.4698649 0.4348222 +0.092819 0.4805811 0.4348222 +0.1056428 0.4805811 0.4348222 +0.1201537 0.4805811 0.4348222 +0.1409607 0.4805811 0.4348222 +0.1678172 0.4805811 0.4348222 +0.1950164 0.4805811 0.4348222 +0.2210581 0.4805811 0.4348222 +0.245636 0.4805811 0.4348222 +0.2686816 0.4805811 0.4348222 +0.2902431 0.4805811 0.4348222 +0.3104189 0.4805811 0.4348222 +0.3293248 0.4805811 0.4348222 +0.3470774 0.4805811 0.4348222 +0.3637862 0.4805811 0.4348222 +0.3795513 0.4805811 0.4348222 +0.3944623 0.4805811 0.4348222 +0.4085988 0.4805811 0.4348222 +0.4220313 0.4805811 0.4348222 +0.4348222 0.4805811 0.4348222 +0.4470264 0.4805811 0.4348222 +0.4586928 0.4805811 0.4348222 +0.4698649 0.4805811 0.4348222 +0.4805811 0.4805811 0.4348222 +0.490876 0.4805811 0.4348222 +0.5007803 0.4805811 0.4348222 +0.510322 0.4805811 0.4348222 +0.5195258 0.4805811 0.4348222 +0.5284142 0.4805811 0.4348222 +0.5370079 0.4805811 0.4348222 +0.5453253 0.4805811 0.4348222 +0.5533834 0.4805811 0.4348222 +0.5611974 0.4805811 0.4348222 +0.5687816 0.4805811 0.4348222 +0.092819 0.490876 0.4348222 +0.1056428 0.490876 0.4348222 +0.1201537 0.490876 0.4348222 +0.1409607 0.490876 0.4348222 +0.1678172 0.490876 0.4348222 +0.1950164 0.490876 0.4348222 +0.2210581 0.490876 0.4348222 +0.245636 0.490876 0.4348222 +0.2686816 0.490876 0.4348222 +0.2902431 0.490876 0.4348222 +0.3104189 0.490876 0.4348222 +0.3293248 0.490876 0.4348222 +0.3470774 0.490876 0.4348222 +0.3637862 0.490876 0.4348222 +0.3795513 0.490876 0.4348222 +0.3944623 0.490876 0.4348222 +0.4085988 0.490876 0.4348222 +0.4220313 0.490876 0.4348222 +0.4348222 0.490876 0.4348222 +0.4470264 0.490876 0.4348222 +0.4586928 0.490876 0.4348222 +0.4698649 0.490876 0.4348222 +0.4805811 0.490876 0.4348222 +0.490876 0.490876 0.4348222 +0.5007803 0.490876 0.4348222 +0.510322 0.490876 0.4348222 +0.5195258 0.490876 0.4348222 +0.5284142 0.490876 0.4348222 +0.5370079 0.490876 0.4348222 +0.5453253 0.490876 0.4348222 +0.5533834 0.490876 0.4348222 +0.5611974 0.490876 0.4348222 +0.5687816 0.490876 0.4348222 +0.092819 0.5007803 0.4348222 +0.1056428 0.5007803 0.4348222 +0.1201537 0.5007803 0.4348222 +0.1409607 0.5007803 0.4348222 +0.1678172 0.5007803 0.4348222 +0.1950164 0.5007803 0.4348222 +0.2210581 0.5007803 0.4348222 +0.245636 0.5007803 0.4348222 +0.2686816 0.5007803 0.4348222 +0.2902431 0.5007803 0.4348222 +0.3104189 0.5007803 0.4348222 +0.3293248 0.5007803 0.4348222 +0.3470774 0.5007803 0.4348222 +0.3637862 0.5007803 0.4348222 +0.3795513 0.5007803 0.4348222 +0.3944623 0.5007803 0.4348222 +0.4085988 0.5007803 0.4348222 +0.4220313 0.5007803 0.4348222 +0.4348222 0.5007803 0.4348222 +0.4470264 0.5007803 0.4348222 +0.4586928 0.5007803 0.4348222 +0.4698649 0.5007803 0.4348222 +0.4805811 0.5007803 0.4348222 +0.490876 0.5007803 0.4348222 +0.5007803 0.5007803 0.4348222 +0.510322 0.5007803 0.4348222 +0.5195258 0.5007803 0.4348222 +0.5284142 0.5007803 0.4348222 +0.5370079 0.5007803 0.4348222 +0.5453253 0.5007803 0.4348222 +0.5533834 0.5007803 0.4348222 +0.5611974 0.5007803 0.4348222 +0.5687816 0.5007803 0.4348222 +0.092819 0.510322 0.4348222 +0.1056428 0.510322 0.4348222 +0.1201537 0.510322 0.4348222 +0.1409607 0.510322 0.4348222 +0.1678172 0.510322 0.4348222 +0.1950164 0.510322 0.4348222 +0.2210581 0.510322 0.4348222 +0.245636 0.510322 0.4348222 +0.2686816 0.510322 0.4348222 +0.2902431 0.510322 0.4348222 +0.3104189 0.510322 0.4348222 +0.3293248 0.510322 0.4348222 +0.3470774 0.510322 0.4348222 +0.3637862 0.510322 0.4348222 +0.3795513 0.510322 0.4348222 +0.3944623 0.510322 0.4348222 +0.4085988 0.510322 0.4348222 +0.4220313 0.510322 0.4348222 +0.4348222 0.510322 0.4348222 +0.4470264 0.510322 0.4348222 +0.4586928 0.510322 0.4348222 +0.4698649 0.510322 0.4348222 +0.4805811 0.510322 0.4348222 +0.490876 0.510322 0.4348222 +0.5007803 0.510322 0.4348222 +0.510322 0.510322 0.4348222 +0.5195258 0.510322 0.4348222 +0.5284142 0.510322 0.4348222 +0.5370079 0.510322 0.4348222 +0.5453253 0.510322 0.4348222 +0.5533834 0.510322 0.4348222 +0.5611974 0.510322 0.4348222 +0.5687816 0.510322 0.4348222 +0.092819 0.5195258 0.4348222 +0.1056428 0.5195258 0.4348222 +0.1201537 0.5195258 0.4348222 +0.1409607 0.5195258 0.4348222 +0.1678172 0.5195258 0.4348222 +0.1950164 0.5195258 0.4348222 +0.2210581 0.5195258 0.4348222 +0.245636 0.5195258 0.4348222 +0.2686816 0.5195258 0.4348222 +0.2902431 0.5195258 0.4348222 +0.3104189 0.5195258 0.4348222 +0.3293248 0.5195258 0.4348222 +0.3470774 0.5195258 0.4348222 +0.3637862 0.5195258 0.4348222 +0.3795513 0.5195258 0.4348222 +0.3944623 0.5195258 0.4348222 +0.4085988 0.5195258 0.4348222 +0.4220313 0.5195258 0.4348222 +0.4348222 0.5195258 0.4348222 +0.4470264 0.5195258 0.4348222 +0.4586928 0.5195258 0.4348222 +0.4698649 0.5195258 0.4348222 +0.4805811 0.5195258 0.4348222 +0.490876 0.5195258 0.4348222 +0.5007803 0.5195258 0.4348222 +0.510322 0.5195258 0.4348222 +0.5195258 0.5195258 0.4348222 +0.5284142 0.5195258 0.4348222 +0.5370079 0.5195258 0.4348222 +0.5453253 0.5195258 0.4348222 +0.5533834 0.5195258 0.4348222 +0.5611974 0.5195258 0.4348222 +0.5687816 0.5195258 0.4348222 +0.092819 0.5284142 0.4348222 +0.1056428 0.5284142 0.4348222 +0.1201537 0.5284142 0.4348222 +0.1409607 0.5284142 0.4348222 +0.1678172 0.5284142 0.4348222 +0.1950164 0.5284142 0.4348222 +0.2210581 0.5284142 0.4348222 +0.245636 0.5284142 0.4348222 +0.2686816 0.5284142 0.4348222 +0.2902431 0.5284142 0.4348222 +0.3104189 0.5284142 0.4348222 +0.3293248 0.5284142 0.4348222 +0.3470774 0.5284142 0.4348222 +0.3637862 0.5284142 0.4348222 +0.3795513 0.5284142 0.4348222 +0.3944623 0.5284142 0.4348222 +0.4085988 0.5284142 0.4348222 +0.4220313 0.5284142 0.4348222 +0.4348222 0.5284142 0.4348222 +0.4470264 0.5284142 0.4348222 +0.4586928 0.5284142 0.4348222 +0.4698649 0.5284142 0.4348222 +0.4805811 0.5284142 0.4348222 +0.490876 0.5284142 0.4348222 +0.5007803 0.5284142 0.4348222 +0.510322 0.5284142 0.4348222 +0.5195258 0.5284142 0.4348222 +0.5284142 0.5284142 0.4348222 +0.5370079 0.5284142 0.4348222 +0.5453253 0.5284142 0.4348222 +0.5533834 0.5284142 0.4348222 +0.5611974 0.5284142 0.4348222 +0.5687816 0.5284142 0.4348222 +0.092819 0.5370079 0.4348222 +0.1056428 0.5370079 0.4348222 +0.1201537 0.5370079 0.4348222 +0.1409607 0.5370079 0.4348222 +0.1678172 0.5370079 0.4348222 +0.1950164 0.5370079 0.4348222 +0.2210581 0.5370079 0.4348222 +0.245636 0.5370079 0.4348222 +0.2686816 0.5370079 0.4348222 +0.2902431 0.5370079 0.4348222 +0.3104189 0.5370079 0.4348222 +0.3293248 0.5370079 0.4348222 +0.3470774 0.5370079 0.4348222 +0.3637862 0.5370079 0.4348222 +0.3795513 0.5370079 0.4348222 +0.3944623 0.5370079 0.4348222 +0.4085988 0.5370079 0.4348222 +0.4220313 0.5370079 0.4348222 +0.4348222 0.5370079 0.4348222 +0.4470264 0.5370079 0.4348222 +0.4586928 0.5370079 0.4348222 +0.4698649 0.5370079 0.4348222 +0.4805811 0.5370079 0.4348222 +0.490876 0.5370079 0.4348222 +0.5007803 0.5370079 0.4348222 +0.510322 0.5370079 0.4348222 +0.5195258 0.5370079 0.4348222 +0.5284142 0.5370079 0.4348222 +0.5370079 0.5370079 0.4348222 +0.5453253 0.5370079 0.4348222 +0.5533834 0.5370079 0.4348222 +0.5611974 0.5370079 0.4348222 +0.5687816 0.5370079 0.4348222 +0.092819 0.5453253 0.4348222 +0.1056428 0.5453253 0.4348222 +0.1201537 0.5453253 0.4348222 +0.1409607 0.5453253 0.4348222 +0.1678172 0.5453253 0.4348222 +0.1950164 0.5453253 0.4348222 +0.2210581 0.5453253 0.4348222 +0.245636 0.5453253 0.4348222 +0.2686816 0.5453253 0.4348222 +0.2902431 0.5453253 0.4348222 +0.3104189 0.5453253 0.4348222 +0.3293248 0.5453253 0.4348222 +0.3470774 0.5453253 0.4348222 +0.3637862 0.5453253 0.4348222 +0.3795513 0.5453253 0.4348222 +0.3944623 0.5453253 0.4348222 +0.4085988 0.5453253 0.4348222 +0.4220313 0.5453253 0.4348222 +0.4348222 0.5453253 0.4348222 +0.4470264 0.5453253 0.4348222 +0.4586928 0.5453253 0.4348222 +0.4698649 0.5453253 0.4348222 +0.4805811 0.5453253 0.4348222 +0.490876 0.5453253 0.4348222 +0.5007803 0.5453253 0.4348222 +0.510322 0.5453253 0.4348222 +0.5195258 0.5453253 0.4348222 +0.5284142 0.5453253 0.4348222 +0.5370079 0.5453253 0.4348222 +0.5453253 0.5453253 0.4348222 +0.5533834 0.5453253 0.4348222 +0.5611974 0.5453253 0.4348222 +0.5687816 0.5453253 0.4348222 +0.092819 0.5533834 0.4348222 +0.1056428 0.5533834 0.4348222 +0.1201537 0.5533834 0.4348222 +0.1409607 0.5533834 0.4348222 +0.1678172 0.5533834 0.4348222 +0.1950164 0.5533834 0.4348222 +0.2210581 0.5533834 0.4348222 +0.245636 0.5533834 0.4348222 +0.2686816 0.5533834 0.4348222 +0.2902431 0.5533834 0.4348222 +0.3104189 0.5533834 0.4348222 +0.3293248 0.5533834 0.4348222 +0.3470774 0.5533834 0.4348222 +0.3637862 0.5533834 0.4348222 +0.3795513 0.5533834 0.4348222 +0.3944623 0.5533834 0.4348222 +0.4085988 0.5533834 0.4348222 +0.4220313 0.5533834 0.4348222 +0.4348222 0.5533834 0.4348222 +0.4470264 0.5533834 0.4348222 +0.4586928 0.5533834 0.4348222 +0.4698649 0.5533834 0.4348222 +0.4805811 0.5533834 0.4348222 +0.490876 0.5533834 0.4348222 +0.5007803 0.5533834 0.4348222 +0.510322 0.5533834 0.4348222 +0.5195258 0.5533834 0.4348222 +0.5284142 0.5533834 0.4348222 +0.5370079 0.5533834 0.4348222 +0.5453253 0.5533834 0.4348222 +0.5533834 0.5533834 0.4348222 +0.5611974 0.5533834 0.4348222 +0.5687816 0.5533834 0.4348222 +0.092819 0.5611974 0.4348222 +0.1056428 0.5611974 0.4348222 +0.1201537 0.5611974 0.4348222 +0.1409607 0.5611974 0.4348222 +0.1678172 0.5611974 0.4348222 +0.1950164 0.5611974 0.4348222 +0.2210581 0.5611974 0.4348222 +0.245636 0.5611974 0.4348222 +0.2686816 0.5611974 0.4348222 +0.2902431 0.5611974 0.4348222 +0.3104189 0.5611974 0.4348222 +0.3293248 0.5611974 0.4348222 +0.3470774 0.5611974 0.4348222 +0.3637862 0.5611974 0.4348222 +0.3795513 0.5611974 0.4348222 +0.3944623 0.5611974 0.4348222 +0.4085988 0.5611974 0.4348222 +0.4220313 0.5611974 0.4348222 +0.4348222 0.5611974 0.4348222 +0.4470264 0.5611974 0.4348222 +0.4586928 0.5611974 0.4348222 +0.4698649 0.5611974 0.4348222 +0.4805811 0.5611974 0.4348222 +0.490876 0.5611974 0.4348222 +0.5007803 0.5611974 0.4348222 +0.510322 0.5611974 0.4348222 +0.5195258 0.5611974 0.4348222 +0.5284142 0.5611974 0.4348222 +0.5370079 0.5611974 0.4348222 +0.5453253 0.5611974 0.4348222 +0.5533834 0.5611974 0.4348222 +0.5611974 0.5611974 0.4348222 +0.5687816 0.5611974 0.4348222 +0.092819 0.5687816 0.4348222 +0.1056428 0.5687816 0.4348222 +0.1201537 0.5687816 0.4348222 +0.1409607 0.5687816 0.4348222 +0.1678172 0.5687816 0.4348222 +0.1950164 0.5687816 0.4348222 +0.2210581 0.5687816 0.4348222 +0.245636 0.5687816 0.4348222 +0.2686816 0.5687816 0.4348222 +0.2902431 0.5687816 0.4348222 +0.3104189 0.5687816 0.4348222 +0.3293248 0.5687816 0.4348222 +0.3470774 0.5687816 0.4348222 +0.3637862 0.5687816 0.4348222 +0.3795513 0.5687816 0.4348222 +0.3944623 0.5687816 0.4348222 +0.4085988 0.5687816 0.4348222 +0.4220313 0.5687816 0.4348222 +0.4348222 0.5687816 0.4348222 +0.4470264 0.5687816 0.4348222 +0.4586928 0.5687816 0.4348222 +0.4698649 0.5687816 0.4348222 +0.4805811 0.5687816 0.4348222 +0.490876 0.5687816 0.4348222 +0.5007803 0.5687816 0.4348222 +0.510322 0.5687816 0.4348222 +0.5195258 0.5687816 0.4348222 +0.5284142 0.5687816 0.4348222 +0.5370079 0.5687816 0.4348222 +0.5453253 0.5687816 0.4348222 +0.5533834 0.5687816 0.4348222 +0.5611974 0.5687816 0.4348222 +0.5687816 0.5687816 0.4348222 +0.092819 0.092819 0.4470264 +0.1056428 0.092819 0.4470264 +0.1201537 0.092819 0.4470264 +0.1409607 0.092819 0.4470264 +0.1678172 0.092819 0.4470264 +0.1950164 0.092819 0.4470264 +0.2210581 0.092819 0.4470264 +0.245636 0.092819 0.4470264 +0.2686816 0.092819 0.4470264 +0.2902431 0.092819 0.4470264 +0.3104189 0.092819 0.4470264 +0.3293248 0.092819 0.4470264 +0.3470774 0.092819 0.4470264 +0.3637862 0.092819 0.4470264 +0.3795513 0.092819 0.4470264 +0.3944623 0.092819 0.4470264 +0.4085988 0.092819 0.4470264 +0.4220313 0.092819 0.4470264 +0.4348222 0.092819 0.4470264 +0.4470264 0.092819 0.4470264 +0.4586928 0.092819 0.4470264 +0.4698649 0.092819 0.4470264 +0.4805811 0.092819 0.4470264 +0.490876 0.092819 0.4470264 +0.5007803 0.092819 0.4470264 +0.510322 0.092819 0.4470264 +0.5195258 0.092819 0.4470264 +0.5284142 0.092819 0.4470264 +0.5370079 0.092819 0.4470264 +0.5453253 0.092819 0.4470264 +0.5533834 0.092819 0.4470264 +0.5611974 0.092819 0.4470264 +0.5687816 0.092819 0.4470264 +0.092819 0.1056428 0.4470264 +0.1056428 0.1056428 0.4470264 +0.1201537 0.1056428 0.4470264 +0.1409607 0.1056428 0.4470264 +0.1678172 0.1056428 0.4470264 +0.1950164 0.1056428 0.4470264 +0.2210581 0.1056428 0.4470264 +0.245636 0.1056428 0.4470264 +0.2686816 0.1056428 0.4470264 +0.2902431 0.1056428 0.4470264 +0.3104189 0.1056428 0.4470264 +0.3293248 0.1056428 0.4470264 +0.3470774 0.1056428 0.4470264 +0.3637862 0.1056428 0.4470264 +0.3795513 0.1056428 0.4470264 +0.3944623 0.1056428 0.4470264 +0.4085988 0.1056428 0.4470264 +0.4220313 0.1056428 0.4470264 +0.4348222 0.1056428 0.4470264 +0.4470264 0.1056428 0.4470264 +0.4586928 0.1056428 0.4470264 +0.4698649 0.1056428 0.4470264 +0.4805811 0.1056428 0.4470264 +0.490876 0.1056428 0.4470264 +0.5007803 0.1056428 0.4470264 +0.510322 0.1056428 0.4470264 +0.5195258 0.1056428 0.4470264 +0.5284142 0.1056428 0.4470264 +0.5370079 0.1056428 0.4470264 +0.5453253 0.1056428 0.4470264 +0.5533834 0.1056428 0.4470264 +0.5611974 0.1056428 0.4470264 +0.5687816 0.1056428 0.4470264 +0.092819 0.1201537 0.4470264 +0.1056428 0.1201537 0.4470264 +0.1201537 0.1201537 0.4470264 +0.1409607 0.1201537 0.4470264 +0.1678172 0.1201537 0.4470264 +0.1950164 0.1201537 0.4470264 +0.2210581 0.1201537 0.4470264 +0.245636 0.1201537 0.4470264 +0.2686816 0.1201537 0.4470264 +0.2902431 0.1201537 0.4470264 +0.3104189 0.1201537 0.4470264 +0.3293248 0.1201537 0.4470264 +0.3470774 0.1201537 0.4470264 +0.3637862 0.1201537 0.4470264 +0.3795513 0.1201537 0.4470264 +0.3944623 0.1201537 0.4470264 +0.4085988 0.1201537 0.4470264 +0.4220313 0.1201537 0.4470264 +0.4348222 0.1201537 0.4470264 +0.4470264 0.1201537 0.4470264 +0.4586928 0.1201537 0.4470264 +0.4698649 0.1201537 0.4470264 +0.4805811 0.1201537 0.4470264 +0.490876 0.1201537 0.4470264 +0.5007803 0.1201537 0.4470264 +0.510322 0.1201537 0.4470264 +0.5195258 0.1201537 0.4470264 +0.5284142 0.1201537 0.4470264 +0.5370079 0.1201537 0.4470264 +0.5453253 0.1201537 0.4470264 +0.5533834 0.1201537 0.4470264 +0.5611974 0.1201537 0.4470264 +0.5687816 0.1201537 0.4470264 +0.092819 0.1409607 0.4470264 +0.1056428 0.1409607 0.4470264 +0.1201537 0.1409607 0.4470264 +0.1409607 0.1409607 0.4470264 +0.1678172 0.1409607 0.4470264 +0.1950164 0.1409607 0.4470264 +0.2210581 0.1409607 0.4470264 +0.245636 0.1409607 0.4470264 +0.2686816 0.1409607 0.4470264 +0.2902431 0.1409607 0.4470264 +0.3104189 0.1409607 0.4470264 +0.3293248 0.1409607 0.4470264 +0.3470774 0.1409607 0.4470264 +0.3637862 0.1409607 0.4470264 +0.3795513 0.1409607 0.4470264 +0.3944623 0.1409607 0.4470264 +0.4085988 0.1409607 0.4470264 +0.4220313 0.1409607 0.4470264 +0.4348222 0.1409607 0.4470264 +0.4470264 0.1409607 0.4470264 +0.4586928 0.1409607 0.4470264 +0.4698649 0.1409607 0.4470264 +0.4805811 0.1409607 0.4470264 +0.490876 0.1409607 0.4470264 +0.5007803 0.1409607 0.4470264 +0.510322 0.1409607 0.4470264 +0.5195258 0.1409607 0.4470264 +0.5284142 0.1409607 0.4470264 +0.5370079 0.1409607 0.4470264 +0.5453253 0.1409607 0.4470264 +0.5533834 0.1409607 0.4470264 +0.5611974 0.1409607 0.4470264 +0.5687816 0.1409607 0.4470264 +0.092819 0.1678172 0.4470264 +0.1056428 0.1678172 0.4470264 +0.1201537 0.1678172 0.4470264 +0.1409607 0.1678172 0.4470264 +0.1678172 0.1678172 0.4470264 +0.1950164 0.1678172 0.4470264 +0.2210581 0.1678172 0.4470264 +0.245636 0.1678172 0.4470264 +0.2686816 0.1678172 0.4470264 +0.2902431 0.1678172 0.4470264 +0.3104189 0.1678172 0.4470264 +0.3293248 0.1678172 0.4470264 +0.3470774 0.1678172 0.4470264 +0.3637862 0.1678172 0.4470264 +0.3795513 0.1678172 0.4470264 +0.3944623 0.1678172 0.4470264 +0.4085988 0.1678172 0.4470264 +0.4220313 0.1678172 0.4470264 +0.4348222 0.1678172 0.4470264 +0.4470264 0.1678172 0.4470264 +0.4586928 0.1678172 0.4470264 +0.4698649 0.1678172 0.4470264 +0.4805811 0.1678172 0.4470264 +0.490876 0.1678172 0.4470264 +0.5007803 0.1678172 0.4470264 +0.510322 0.1678172 0.4470264 +0.5195258 0.1678172 0.4470264 +0.5284142 0.1678172 0.4470264 +0.5370079 0.1678172 0.4470264 +0.5453253 0.1678172 0.4470264 +0.5533834 0.1678172 0.4470264 +0.5611974 0.1678172 0.4470264 +0.5687816 0.1678172 0.4470264 +0.092819 0.1950164 0.4470264 +0.1056428 0.1950164 0.4470264 +0.1201537 0.1950164 0.4470264 +0.1409607 0.1950164 0.4470264 +0.1678172 0.1950164 0.4470264 +0.1950164 0.1950164 0.4470264 +0.2210581 0.1950164 0.4470264 +0.245636 0.1950164 0.4470264 +0.2686816 0.1950164 0.4470264 +0.2902431 0.1950164 0.4470264 +0.3104189 0.1950164 0.4470264 +0.3293248 0.1950164 0.4470264 +0.3470774 0.1950164 0.4470264 +0.3637862 0.1950164 0.4470264 +0.3795513 0.1950164 0.4470264 +0.3944623 0.1950164 0.4470264 +0.4085988 0.1950164 0.4470264 +0.4220313 0.1950164 0.4470264 +0.4348222 0.1950164 0.4470264 +0.4470264 0.1950164 0.4470264 +0.4586928 0.1950164 0.4470264 +0.4698649 0.1950164 0.4470264 +0.4805811 0.1950164 0.4470264 +0.490876 0.1950164 0.4470264 +0.5007803 0.1950164 0.4470264 +0.510322 0.1950164 0.4470264 +0.5195258 0.1950164 0.4470264 +0.5284142 0.1950164 0.4470264 +0.5370079 0.1950164 0.4470264 +0.5453253 0.1950164 0.4470264 +0.5533834 0.1950164 0.4470264 +0.5611974 0.1950164 0.4470264 +0.5687816 0.1950164 0.4470264 +0.092819 0.2210581 0.4470264 +0.1056428 0.2210581 0.4470264 +0.1201537 0.2210581 0.4470264 +0.1409607 0.2210581 0.4470264 +0.1678172 0.2210581 0.4470264 +0.1950164 0.2210581 0.4470264 +0.2210581 0.2210581 0.4470264 +0.245636 0.2210581 0.4470264 +0.2686816 0.2210581 0.4470264 +0.2902431 0.2210581 0.4470264 +0.3104189 0.2210581 0.4470264 +0.3293248 0.2210581 0.4470264 +0.3470774 0.2210581 0.4470264 +0.3637862 0.2210581 0.4470264 +0.3795513 0.2210581 0.4470264 +0.3944623 0.2210581 0.4470264 +0.4085988 0.2210581 0.4470264 +0.4220313 0.2210581 0.4470264 +0.4348222 0.2210581 0.4470264 +0.4470264 0.2210581 0.4470264 +0.4586928 0.2210581 0.4470264 +0.4698649 0.2210581 0.4470264 +0.4805811 0.2210581 0.4470264 +0.490876 0.2210581 0.4470264 +0.5007803 0.2210581 0.4470264 +0.510322 0.2210581 0.4470264 +0.5195258 0.2210581 0.4470264 +0.5284142 0.2210581 0.4470264 +0.5370079 0.2210581 0.4470264 +0.5453253 0.2210581 0.4470264 +0.5533834 0.2210581 0.4470264 +0.5611974 0.2210581 0.4470264 +0.5687816 0.2210581 0.4470264 +0.092819 0.245636 0.4470264 +0.1056428 0.245636 0.4470264 +0.1201537 0.245636 0.4470264 +0.1409607 0.245636 0.4470264 +0.1678172 0.245636 0.4470264 +0.1950164 0.245636 0.4470264 +0.2210581 0.245636 0.4470264 +0.245636 0.245636 0.4470264 +0.2686816 0.245636 0.4470264 +0.2902431 0.245636 0.4470264 +0.3104189 0.245636 0.4470264 +0.3293248 0.245636 0.4470264 +0.3470774 0.245636 0.4470264 +0.3637862 0.245636 0.4470264 +0.3795513 0.245636 0.4470264 +0.3944623 0.245636 0.4470264 +0.4085988 0.245636 0.4470264 +0.4220313 0.245636 0.4470264 +0.4348222 0.245636 0.4470264 +0.4470264 0.245636 0.4470264 +0.4586928 0.245636 0.4470264 +0.4698649 0.245636 0.4470264 +0.4805811 0.245636 0.4470264 +0.490876 0.245636 0.4470264 +0.5007803 0.245636 0.4470264 +0.510322 0.245636 0.4470264 +0.5195258 0.245636 0.4470264 +0.5284142 0.245636 0.4470264 +0.5370079 0.245636 0.4470264 +0.5453253 0.245636 0.4470264 +0.5533834 0.245636 0.4470264 +0.5611974 0.245636 0.4470264 +0.5687816 0.245636 0.4470264 +0.092819 0.2686816 0.4470264 +0.1056428 0.2686816 0.4470264 +0.1201537 0.2686816 0.4470264 +0.1409607 0.2686816 0.4470264 +0.1678172 0.2686816 0.4470264 +0.1950164 0.2686816 0.4470264 +0.2210581 0.2686816 0.4470264 +0.245636 0.2686816 0.4470264 +0.2686816 0.2686816 0.4470264 +0.2902431 0.2686816 0.4470264 +0.3104189 0.2686816 0.4470264 +0.3293248 0.2686816 0.4470264 +0.3470774 0.2686816 0.4470264 +0.3637862 0.2686816 0.4470264 +0.3795513 0.2686816 0.4470264 +0.3944623 0.2686816 0.4470264 +0.4085988 0.2686816 0.4470264 +0.4220313 0.2686816 0.4470264 +0.4348222 0.2686816 0.4470264 +0.4470264 0.2686816 0.4470264 +0.4586928 0.2686816 0.4470264 +0.4698649 0.2686816 0.4470264 +0.4805811 0.2686816 0.4470264 +0.490876 0.2686816 0.4470264 +0.5007803 0.2686816 0.4470264 +0.510322 0.2686816 0.4470264 +0.5195258 0.2686816 0.4470264 +0.5284142 0.2686816 0.4470264 +0.5370079 0.2686816 0.4470264 +0.5453253 0.2686816 0.4470264 +0.5533834 0.2686816 0.4470264 +0.5611974 0.2686816 0.4470264 +0.5687816 0.2686816 0.4470264 +0.092819 0.2902431 0.4470264 +0.1056428 0.2902431 0.4470264 +0.1201537 0.2902431 0.4470264 +0.1409607 0.2902431 0.4470264 +0.1678172 0.2902431 0.4470264 +0.1950164 0.2902431 0.4470264 +0.2210581 0.2902431 0.4470264 +0.245636 0.2902431 0.4470264 +0.2686816 0.2902431 0.4470264 +0.2902431 0.2902431 0.4470264 +0.3104189 0.2902431 0.4470264 +0.3293248 0.2902431 0.4470264 +0.3470774 0.2902431 0.4470264 +0.3637862 0.2902431 0.4470264 +0.3795513 0.2902431 0.4470264 +0.3944623 0.2902431 0.4470264 +0.4085988 0.2902431 0.4470264 +0.4220313 0.2902431 0.4470264 +0.4348222 0.2902431 0.4470264 +0.4470264 0.2902431 0.4470264 +0.4586928 0.2902431 0.4470264 +0.4698649 0.2902431 0.4470264 +0.4805811 0.2902431 0.4470264 +0.490876 0.2902431 0.4470264 +0.5007803 0.2902431 0.4470264 +0.510322 0.2902431 0.4470264 +0.5195258 0.2902431 0.4470264 +0.5284142 0.2902431 0.4470264 +0.5370079 0.2902431 0.4470264 +0.5453253 0.2902431 0.4470264 +0.5533834 0.2902431 0.4470264 +0.5611974 0.2902431 0.4470264 +0.5687816 0.2902431 0.4470264 +0.092819 0.3104189 0.4470264 +0.1056428 0.3104189 0.4470264 +0.1201537 0.3104189 0.4470264 +0.1409607 0.3104189 0.4470264 +0.1678172 0.3104189 0.4470264 +0.1950164 0.3104189 0.4470264 +0.2210581 0.3104189 0.4470264 +0.245636 0.3104189 0.4470264 +0.2686816 0.3104189 0.4470264 +0.2902431 0.3104189 0.4470264 +0.3104189 0.3104189 0.4470264 +0.3293248 0.3104189 0.4470264 +0.3470774 0.3104189 0.4470264 +0.3637862 0.3104189 0.4470264 +0.3795513 0.3104189 0.4470264 +0.3944623 0.3104189 0.4470264 +0.4085988 0.3104189 0.4470264 +0.4220313 0.3104189 0.4470264 +0.4348222 0.3104189 0.4470264 +0.4470264 0.3104189 0.4470264 +0.4586928 0.3104189 0.4470264 +0.4698649 0.3104189 0.4470264 +0.4805811 0.3104189 0.4470264 +0.490876 0.3104189 0.4470264 +0.5007803 0.3104189 0.4470264 +0.510322 0.3104189 0.4470264 +0.5195258 0.3104189 0.4470264 +0.5284142 0.3104189 0.4470264 +0.5370079 0.3104189 0.4470264 +0.5453253 0.3104189 0.4470264 +0.5533834 0.3104189 0.4470264 +0.5611974 0.3104189 0.4470264 +0.5687816 0.3104189 0.4470264 +0.092819 0.3293248 0.4470264 +0.1056428 0.3293248 0.4470264 +0.1201537 0.3293248 0.4470264 +0.1409607 0.3293248 0.4470264 +0.1678172 0.3293248 0.4470264 +0.1950164 0.3293248 0.4470264 +0.2210581 0.3293248 0.4470264 +0.245636 0.3293248 0.4470264 +0.2686816 0.3293248 0.4470264 +0.2902431 0.3293248 0.4470264 +0.3104189 0.3293248 0.4470264 +0.3293248 0.3293248 0.4470264 +0.3470774 0.3293248 0.4470264 +0.3637862 0.3293248 0.4470264 +0.3795513 0.3293248 0.4470264 +0.3944623 0.3293248 0.4470264 +0.4085988 0.3293248 0.4470264 +0.4220313 0.3293248 0.4470264 +0.4348222 0.3293248 0.4470264 +0.4470264 0.3293248 0.4470264 +0.4586928 0.3293248 0.4470264 +0.4698649 0.3293248 0.4470264 +0.4805811 0.3293248 0.4470264 +0.490876 0.3293248 0.4470264 +0.5007803 0.3293248 0.4470264 +0.510322 0.3293248 0.4470264 +0.5195258 0.3293248 0.4470264 +0.5284142 0.3293248 0.4470264 +0.5370079 0.3293248 0.4470264 +0.5453253 0.3293248 0.4470264 +0.5533834 0.3293248 0.4470264 +0.5611974 0.3293248 0.4470264 +0.5687816 0.3293248 0.4470264 +0.092819 0.3470774 0.4470264 +0.1056428 0.3470774 0.4470264 +0.1201537 0.3470774 0.4470264 +0.1409607 0.3470774 0.4470264 +0.1678172 0.3470774 0.4470264 +0.1950164 0.3470774 0.4470264 +0.2210581 0.3470774 0.4470264 +0.245636 0.3470774 0.4470264 +0.2686816 0.3470774 0.4470264 +0.2902431 0.3470774 0.4470264 +0.3104189 0.3470774 0.4470264 +0.3293248 0.3470774 0.4470264 +0.3470774 0.3470774 0.4470264 +0.3637862 0.3470774 0.4470264 +0.3795513 0.3470774 0.4470264 +0.3944623 0.3470774 0.4470264 +0.4085988 0.3470774 0.4470264 +0.4220313 0.3470774 0.4470264 +0.4348222 0.3470774 0.4470264 +0.4470264 0.3470774 0.4470264 +0.4586928 0.3470774 0.4470264 +0.4698649 0.3470774 0.4470264 +0.4805811 0.3470774 0.4470264 +0.490876 0.3470774 0.4470264 +0.5007803 0.3470774 0.4470264 +0.510322 0.3470774 0.4470264 +0.5195258 0.3470774 0.4470264 +0.5284142 0.3470774 0.4470264 +0.5370079 0.3470774 0.4470264 +0.5453253 0.3470774 0.4470264 +0.5533834 0.3470774 0.4470264 +0.5611974 0.3470774 0.4470264 +0.5687816 0.3470774 0.4470264 +0.092819 0.3637862 0.4470264 +0.1056428 0.3637862 0.4470264 +0.1201537 0.3637862 0.4470264 +0.1409607 0.3637862 0.4470264 +0.1678172 0.3637862 0.4470264 +0.1950164 0.3637862 0.4470264 +0.2210581 0.3637862 0.4470264 +0.245636 0.3637862 0.4470264 +0.2686816 0.3637862 0.4470264 +0.2902431 0.3637862 0.4470264 +0.3104189 0.3637862 0.4470264 +0.3293248 0.3637862 0.4470264 +0.3470774 0.3637862 0.4470264 +0.3637862 0.3637862 0.4470264 +0.3795513 0.3637862 0.4470264 +0.3944623 0.3637862 0.4470264 +0.4085988 0.3637862 0.4470264 +0.4220313 0.3637862 0.4470264 +0.4348222 0.3637862 0.4470264 +0.4470264 0.3637862 0.4470264 +0.4586928 0.3637862 0.4470264 +0.4698649 0.3637862 0.4470264 +0.4805811 0.3637862 0.4470264 +0.490876 0.3637862 0.4470264 +0.5007803 0.3637862 0.4470264 +0.510322 0.3637862 0.4470264 +0.5195258 0.3637862 0.4470264 +0.5284142 0.3637862 0.4470264 +0.5370079 0.3637862 0.4470264 +0.5453253 0.3637862 0.4470264 +0.5533834 0.3637862 0.4470264 +0.5611974 0.3637862 0.4470264 +0.5687816 0.3637862 0.4470264 +0.092819 0.3795513 0.4470264 +0.1056428 0.3795513 0.4470264 +0.1201537 0.3795513 0.4470264 +0.1409607 0.3795513 0.4470264 +0.1678172 0.3795513 0.4470264 +0.1950164 0.3795513 0.4470264 +0.2210581 0.3795513 0.4470264 +0.245636 0.3795513 0.4470264 +0.2686816 0.3795513 0.4470264 +0.2902431 0.3795513 0.4470264 +0.3104189 0.3795513 0.4470264 +0.3293248 0.3795513 0.4470264 +0.3470774 0.3795513 0.4470264 +0.3637862 0.3795513 0.4470264 +0.3795513 0.3795513 0.4470264 +0.3944623 0.3795513 0.4470264 +0.4085988 0.3795513 0.4470264 +0.4220313 0.3795513 0.4470264 +0.4348222 0.3795513 0.4470264 +0.4470264 0.3795513 0.4470264 +0.4586928 0.3795513 0.4470264 +0.4698649 0.3795513 0.4470264 +0.4805811 0.3795513 0.4470264 +0.490876 0.3795513 0.4470264 +0.5007803 0.3795513 0.4470264 +0.510322 0.3795513 0.4470264 +0.5195258 0.3795513 0.4470264 +0.5284142 0.3795513 0.4470264 +0.5370079 0.3795513 0.4470264 +0.5453253 0.3795513 0.4470264 +0.5533834 0.3795513 0.4470264 +0.5611974 0.3795513 0.4470264 +0.5687816 0.3795513 0.4470264 +0.092819 0.3944623 0.4470264 +0.1056428 0.3944623 0.4470264 +0.1201537 0.3944623 0.4470264 +0.1409607 0.3944623 0.4470264 +0.1678172 0.3944623 0.4470264 +0.1950164 0.3944623 0.4470264 +0.2210581 0.3944623 0.4470264 +0.245636 0.3944623 0.4470264 +0.2686816 0.3944623 0.4470264 +0.2902431 0.3944623 0.4470264 +0.3104189 0.3944623 0.4470264 +0.3293248 0.3944623 0.4470264 +0.3470774 0.3944623 0.4470264 +0.3637862 0.3944623 0.4470264 +0.3795513 0.3944623 0.4470264 +0.3944623 0.3944623 0.4470264 +0.4085988 0.3944623 0.4470264 +0.4220313 0.3944623 0.4470264 +0.4348222 0.3944623 0.4470264 +0.4470264 0.3944623 0.4470264 +0.4586928 0.3944623 0.4470264 +0.4698649 0.3944623 0.4470264 +0.4805811 0.3944623 0.4470264 +0.490876 0.3944623 0.4470264 +0.5007803 0.3944623 0.4470264 +0.510322 0.3944623 0.4470264 +0.5195258 0.3944623 0.4470264 +0.5284142 0.3944623 0.4470264 +0.5370079 0.3944623 0.4470264 +0.5453253 0.3944623 0.4470264 +0.5533834 0.3944623 0.4470264 +0.5611974 0.3944623 0.4470264 +0.5687816 0.3944623 0.4470264 +0.092819 0.4085988 0.4470264 +0.1056428 0.4085988 0.4470264 +0.1201537 0.4085988 0.4470264 +0.1409607 0.4085988 0.4470264 +0.1678172 0.4085988 0.4470264 +0.1950164 0.4085988 0.4470264 +0.2210581 0.4085988 0.4470264 +0.245636 0.4085988 0.4470264 +0.2686816 0.4085988 0.4470264 +0.2902431 0.4085988 0.4470264 +0.3104189 0.4085988 0.4470264 +0.3293248 0.4085988 0.4470264 +0.3470774 0.4085988 0.4470264 +0.3637862 0.4085988 0.4470264 +0.3795513 0.4085988 0.4470264 +0.3944623 0.4085988 0.4470264 +0.4085988 0.4085988 0.4470264 +0.4220313 0.4085988 0.4470264 +0.4348222 0.4085988 0.4470264 +0.4470264 0.4085988 0.4470264 +0.4586928 0.4085988 0.4470264 +0.4698649 0.4085988 0.4470264 +0.4805811 0.4085988 0.4470264 +0.490876 0.4085988 0.4470264 +0.5007803 0.4085988 0.4470264 +0.510322 0.4085988 0.4470264 +0.5195258 0.4085988 0.4470264 +0.5284142 0.4085988 0.4470264 +0.5370079 0.4085988 0.4470264 +0.5453253 0.4085988 0.4470264 +0.5533834 0.4085988 0.4470264 +0.5611974 0.4085988 0.4470264 +0.5687816 0.4085988 0.4470264 +0.092819 0.4220313 0.4470264 +0.1056428 0.4220313 0.4470264 +0.1201537 0.4220313 0.4470264 +0.1409607 0.4220313 0.4470264 +0.1678172 0.4220313 0.4470264 +0.1950164 0.4220313 0.4470264 +0.2210581 0.4220313 0.4470264 +0.245636 0.4220313 0.4470264 +0.2686816 0.4220313 0.4470264 +0.2902431 0.4220313 0.4470264 +0.3104189 0.4220313 0.4470264 +0.3293248 0.4220313 0.4470264 +0.3470774 0.4220313 0.4470264 +0.3637862 0.4220313 0.4470264 +0.3795513 0.4220313 0.4470264 +0.3944623 0.4220313 0.4470264 +0.4085988 0.4220313 0.4470264 +0.4220313 0.4220313 0.4470264 +0.4348222 0.4220313 0.4470264 +0.4470264 0.4220313 0.4470264 +0.4586928 0.4220313 0.4470264 +0.4698649 0.4220313 0.4470264 +0.4805811 0.4220313 0.4470264 +0.490876 0.4220313 0.4470264 +0.5007803 0.4220313 0.4470264 +0.510322 0.4220313 0.4470264 +0.5195258 0.4220313 0.4470264 +0.5284142 0.4220313 0.4470264 +0.5370079 0.4220313 0.4470264 +0.5453253 0.4220313 0.4470264 +0.5533834 0.4220313 0.4470264 +0.5611974 0.4220313 0.4470264 +0.5687816 0.4220313 0.4470264 +0.092819 0.4348222 0.4470264 +0.1056428 0.4348222 0.4470264 +0.1201537 0.4348222 0.4470264 +0.1409607 0.4348222 0.4470264 +0.1678172 0.4348222 0.4470264 +0.1950164 0.4348222 0.4470264 +0.2210581 0.4348222 0.4470264 +0.245636 0.4348222 0.4470264 +0.2686816 0.4348222 0.4470264 +0.2902431 0.4348222 0.4470264 +0.3104189 0.4348222 0.4470264 +0.3293248 0.4348222 0.4470264 +0.3470774 0.4348222 0.4470264 +0.3637862 0.4348222 0.4470264 +0.3795513 0.4348222 0.4470264 +0.3944623 0.4348222 0.4470264 +0.4085988 0.4348222 0.4470264 +0.4220313 0.4348222 0.4470264 +0.4348222 0.4348222 0.4470264 +0.4470264 0.4348222 0.4470264 +0.4586928 0.4348222 0.4470264 +0.4698649 0.4348222 0.4470264 +0.4805811 0.4348222 0.4470264 +0.490876 0.4348222 0.4470264 +0.5007803 0.4348222 0.4470264 +0.510322 0.4348222 0.4470264 +0.5195258 0.4348222 0.4470264 +0.5284142 0.4348222 0.4470264 +0.5370079 0.4348222 0.4470264 +0.5453253 0.4348222 0.4470264 +0.5533834 0.4348222 0.4470264 +0.5611974 0.4348222 0.4470264 +0.5687816 0.4348222 0.4470264 +0.092819 0.4470264 0.4470264 +0.1056428 0.4470264 0.4470264 +0.1201537 0.4470264 0.4470264 +0.1409607 0.4470264 0.4470264 +0.1678172 0.4470264 0.4470264 +0.1950164 0.4470264 0.4470264 +0.2210581 0.4470264 0.4470264 +0.245636 0.4470264 0.4470264 +0.2686816 0.4470264 0.4470264 +0.2902431 0.4470264 0.4470264 +0.3104189 0.4470264 0.4470264 +0.3293248 0.4470264 0.4470264 +0.3470774 0.4470264 0.4470264 +0.3637862 0.4470264 0.4470264 +0.3795513 0.4470264 0.4470264 +0.3944623 0.4470264 0.4470264 +0.4085988 0.4470264 0.4470264 +0.4220313 0.4470264 0.4470264 +0.4348222 0.4470264 0.4470264 +0.4470264 0.4470264 0.4470264 +0.4586928 0.4470264 0.4470264 +0.4698649 0.4470264 0.4470264 +0.4805811 0.4470264 0.4470264 +0.490876 0.4470264 0.4470264 +0.5007803 0.4470264 0.4470264 +0.510322 0.4470264 0.4470264 +0.5195258 0.4470264 0.4470264 +0.5284142 0.4470264 0.4470264 +0.5370079 0.4470264 0.4470264 +0.5453253 0.4470264 0.4470264 +0.5533834 0.4470264 0.4470264 +0.5611974 0.4470264 0.4470264 +0.5687816 0.4470264 0.4470264 +0.092819 0.4586928 0.4470264 +0.1056428 0.4586928 0.4470264 +0.1201537 0.4586928 0.4470264 +0.1409607 0.4586928 0.4470264 +0.1678172 0.4586928 0.4470264 +0.1950164 0.4586928 0.4470264 +0.2210581 0.4586928 0.4470264 +0.245636 0.4586928 0.4470264 +0.2686816 0.4586928 0.4470264 +0.2902431 0.4586928 0.4470264 +0.3104189 0.4586928 0.4470264 +0.3293248 0.4586928 0.4470264 +0.3470774 0.4586928 0.4470264 +0.3637862 0.4586928 0.4470264 +0.3795513 0.4586928 0.4470264 +0.3944623 0.4586928 0.4470264 +0.4085988 0.4586928 0.4470264 +0.4220313 0.4586928 0.4470264 +0.4348222 0.4586928 0.4470264 +0.4470264 0.4586928 0.4470264 +0.4586928 0.4586928 0.4470264 +0.4698649 0.4586928 0.4470264 +0.4805811 0.4586928 0.4470264 +0.490876 0.4586928 0.4470264 +0.5007803 0.4586928 0.4470264 +0.510322 0.4586928 0.4470264 +0.5195258 0.4586928 0.4470264 +0.5284142 0.4586928 0.4470264 +0.5370079 0.4586928 0.4470264 +0.5453253 0.4586928 0.4470264 +0.5533834 0.4586928 0.4470264 +0.5611974 0.4586928 0.4470264 +0.5687816 0.4586928 0.4470264 +0.092819 0.4698649 0.4470264 +0.1056428 0.4698649 0.4470264 +0.1201537 0.4698649 0.4470264 +0.1409607 0.4698649 0.4470264 +0.1678172 0.4698649 0.4470264 +0.1950164 0.4698649 0.4470264 +0.2210581 0.4698649 0.4470264 +0.245636 0.4698649 0.4470264 +0.2686816 0.4698649 0.4470264 +0.2902431 0.4698649 0.4470264 +0.3104189 0.4698649 0.4470264 +0.3293248 0.4698649 0.4470264 +0.3470774 0.4698649 0.4470264 +0.3637862 0.4698649 0.4470264 +0.3795513 0.4698649 0.4470264 +0.3944623 0.4698649 0.4470264 +0.4085988 0.4698649 0.4470264 +0.4220313 0.4698649 0.4470264 +0.4348222 0.4698649 0.4470264 +0.4470264 0.4698649 0.4470264 +0.4586928 0.4698649 0.4470264 +0.4698649 0.4698649 0.4470264 +0.4805811 0.4698649 0.4470264 +0.490876 0.4698649 0.4470264 +0.5007803 0.4698649 0.4470264 +0.510322 0.4698649 0.4470264 +0.5195258 0.4698649 0.4470264 +0.5284142 0.4698649 0.4470264 +0.5370079 0.4698649 0.4470264 +0.5453253 0.4698649 0.4470264 +0.5533834 0.4698649 0.4470264 +0.5611974 0.4698649 0.4470264 +0.5687816 0.4698649 0.4470264 +0.092819 0.4805811 0.4470264 +0.1056428 0.4805811 0.4470264 +0.1201537 0.4805811 0.4470264 +0.1409607 0.4805811 0.4470264 +0.1678172 0.4805811 0.4470264 +0.1950164 0.4805811 0.4470264 +0.2210581 0.4805811 0.4470264 +0.245636 0.4805811 0.4470264 +0.2686816 0.4805811 0.4470264 +0.2902431 0.4805811 0.4470264 +0.3104189 0.4805811 0.4470264 +0.3293248 0.4805811 0.4470264 +0.3470774 0.4805811 0.4470264 +0.3637862 0.4805811 0.4470264 +0.3795513 0.4805811 0.4470264 +0.3944623 0.4805811 0.4470264 +0.4085988 0.4805811 0.4470264 +0.4220313 0.4805811 0.4470264 +0.4348222 0.4805811 0.4470264 +0.4470264 0.4805811 0.4470264 +0.4586928 0.4805811 0.4470264 +0.4698649 0.4805811 0.4470264 +0.4805811 0.4805811 0.4470264 +0.490876 0.4805811 0.4470264 +0.5007803 0.4805811 0.4470264 +0.510322 0.4805811 0.4470264 +0.5195258 0.4805811 0.4470264 +0.5284142 0.4805811 0.4470264 +0.5370079 0.4805811 0.4470264 +0.5453253 0.4805811 0.4470264 +0.5533834 0.4805811 0.4470264 +0.5611974 0.4805811 0.4470264 +0.5687816 0.4805811 0.4470264 +0.092819 0.490876 0.4470264 +0.1056428 0.490876 0.4470264 +0.1201537 0.490876 0.4470264 +0.1409607 0.490876 0.4470264 +0.1678172 0.490876 0.4470264 +0.1950164 0.490876 0.4470264 +0.2210581 0.490876 0.4470264 +0.245636 0.490876 0.4470264 +0.2686816 0.490876 0.4470264 +0.2902431 0.490876 0.4470264 +0.3104189 0.490876 0.4470264 +0.3293248 0.490876 0.4470264 +0.3470774 0.490876 0.4470264 +0.3637862 0.490876 0.4470264 +0.3795513 0.490876 0.4470264 +0.3944623 0.490876 0.4470264 +0.4085988 0.490876 0.4470264 +0.4220313 0.490876 0.4470264 +0.4348222 0.490876 0.4470264 +0.4470264 0.490876 0.4470264 +0.4586928 0.490876 0.4470264 +0.4698649 0.490876 0.4470264 +0.4805811 0.490876 0.4470264 +0.490876 0.490876 0.4470264 +0.5007803 0.490876 0.4470264 +0.510322 0.490876 0.4470264 +0.5195258 0.490876 0.4470264 +0.5284142 0.490876 0.4470264 +0.5370079 0.490876 0.4470264 +0.5453253 0.490876 0.4470264 +0.5533834 0.490876 0.4470264 +0.5611974 0.490876 0.4470264 +0.5687816 0.490876 0.4470264 +0.092819 0.5007803 0.4470264 +0.1056428 0.5007803 0.4470264 +0.1201537 0.5007803 0.4470264 +0.1409607 0.5007803 0.4470264 +0.1678172 0.5007803 0.4470264 +0.1950164 0.5007803 0.4470264 +0.2210581 0.5007803 0.4470264 +0.245636 0.5007803 0.4470264 +0.2686816 0.5007803 0.4470264 +0.2902431 0.5007803 0.4470264 +0.3104189 0.5007803 0.4470264 +0.3293248 0.5007803 0.4470264 +0.3470774 0.5007803 0.4470264 +0.3637862 0.5007803 0.4470264 +0.3795513 0.5007803 0.4470264 +0.3944623 0.5007803 0.4470264 +0.4085988 0.5007803 0.4470264 +0.4220313 0.5007803 0.4470264 +0.4348222 0.5007803 0.4470264 +0.4470264 0.5007803 0.4470264 +0.4586928 0.5007803 0.4470264 +0.4698649 0.5007803 0.4470264 +0.4805811 0.5007803 0.4470264 +0.490876 0.5007803 0.4470264 +0.5007803 0.5007803 0.4470264 +0.510322 0.5007803 0.4470264 +0.5195258 0.5007803 0.4470264 +0.5284142 0.5007803 0.4470264 +0.5370079 0.5007803 0.4470264 +0.5453253 0.5007803 0.4470264 +0.5533834 0.5007803 0.4470264 +0.5611974 0.5007803 0.4470264 +0.5687816 0.5007803 0.4470264 +0.092819 0.510322 0.4470264 +0.1056428 0.510322 0.4470264 +0.1201537 0.510322 0.4470264 +0.1409607 0.510322 0.4470264 +0.1678172 0.510322 0.4470264 +0.1950164 0.510322 0.4470264 +0.2210581 0.510322 0.4470264 +0.245636 0.510322 0.4470264 +0.2686816 0.510322 0.4470264 +0.2902431 0.510322 0.4470264 +0.3104189 0.510322 0.4470264 +0.3293248 0.510322 0.4470264 +0.3470774 0.510322 0.4470264 +0.3637862 0.510322 0.4470264 +0.3795513 0.510322 0.4470264 +0.3944623 0.510322 0.4470264 +0.4085988 0.510322 0.4470264 +0.4220313 0.510322 0.4470264 +0.4348222 0.510322 0.4470264 +0.4470264 0.510322 0.4470264 +0.4586928 0.510322 0.4470264 +0.4698649 0.510322 0.4470264 +0.4805811 0.510322 0.4470264 +0.490876 0.510322 0.4470264 +0.5007803 0.510322 0.4470264 +0.510322 0.510322 0.4470264 +0.5195258 0.510322 0.4470264 +0.5284142 0.510322 0.4470264 +0.5370079 0.510322 0.4470264 +0.5453253 0.510322 0.4470264 +0.5533834 0.510322 0.4470264 +0.5611974 0.510322 0.4470264 +0.5687816 0.510322 0.4470264 +0.092819 0.5195258 0.4470264 +0.1056428 0.5195258 0.4470264 +0.1201537 0.5195258 0.4470264 +0.1409607 0.5195258 0.4470264 +0.1678172 0.5195258 0.4470264 +0.1950164 0.5195258 0.4470264 +0.2210581 0.5195258 0.4470264 +0.245636 0.5195258 0.4470264 +0.2686816 0.5195258 0.4470264 +0.2902431 0.5195258 0.4470264 +0.3104189 0.5195258 0.4470264 +0.3293248 0.5195258 0.4470264 +0.3470774 0.5195258 0.4470264 +0.3637862 0.5195258 0.4470264 +0.3795513 0.5195258 0.4470264 +0.3944623 0.5195258 0.4470264 +0.4085988 0.5195258 0.4470264 +0.4220313 0.5195258 0.4470264 +0.4348222 0.5195258 0.4470264 +0.4470264 0.5195258 0.4470264 +0.4586928 0.5195258 0.4470264 +0.4698649 0.5195258 0.4470264 +0.4805811 0.5195258 0.4470264 +0.490876 0.5195258 0.4470264 +0.5007803 0.5195258 0.4470264 +0.510322 0.5195258 0.4470264 +0.5195258 0.5195258 0.4470264 +0.5284142 0.5195258 0.4470264 +0.5370079 0.5195258 0.4470264 +0.5453253 0.5195258 0.4470264 +0.5533834 0.5195258 0.4470264 +0.5611974 0.5195258 0.4470264 +0.5687816 0.5195258 0.4470264 +0.092819 0.5284142 0.4470264 +0.1056428 0.5284142 0.4470264 +0.1201537 0.5284142 0.4470264 +0.1409607 0.5284142 0.4470264 +0.1678172 0.5284142 0.4470264 +0.1950164 0.5284142 0.4470264 +0.2210581 0.5284142 0.4470264 +0.245636 0.5284142 0.4470264 +0.2686816 0.5284142 0.4470264 +0.2902431 0.5284142 0.4470264 +0.3104189 0.5284142 0.4470264 +0.3293248 0.5284142 0.4470264 +0.3470774 0.5284142 0.4470264 +0.3637862 0.5284142 0.4470264 +0.3795513 0.5284142 0.4470264 +0.3944623 0.5284142 0.4470264 +0.4085988 0.5284142 0.4470264 +0.4220313 0.5284142 0.4470264 +0.4348222 0.5284142 0.4470264 +0.4470264 0.5284142 0.4470264 +0.4586928 0.5284142 0.4470264 +0.4698649 0.5284142 0.4470264 +0.4805811 0.5284142 0.4470264 +0.490876 0.5284142 0.4470264 +0.5007803 0.5284142 0.4470264 +0.510322 0.5284142 0.4470264 +0.5195258 0.5284142 0.4470264 +0.5284142 0.5284142 0.4470264 +0.5370079 0.5284142 0.4470264 +0.5453253 0.5284142 0.4470264 +0.5533834 0.5284142 0.4470264 +0.5611974 0.5284142 0.4470264 +0.5687816 0.5284142 0.4470264 +0.092819 0.5370079 0.4470264 +0.1056428 0.5370079 0.4470264 +0.1201537 0.5370079 0.4470264 +0.1409607 0.5370079 0.4470264 +0.1678172 0.5370079 0.4470264 +0.1950164 0.5370079 0.4470264 +0.2210581 0.5370079 0.4470264 +0.245636 0.5370079 0.4470264 +0.2686816 0.5370079 0.4470264 +0.2902431 0.5370079 0.4470264 +0.3104189 0.5370079 0.4470264 +0.3293248 0.5370079 0.4470264 +0.3470774 0.5370079 0.4470264 +0.3637862 0.5370079 0.4470264 +0.3795513 0.5370079 0.4470264 +0.3944623 0.5370079 0.4470264 +0.4085988 0.5370079 0.4470264 +0.4220313 0.5370079 0.4470264 +0.4348222 0.5370079 0.4470264 +0.4470264 0.5370079 0.4470264 +0.4586928 0.5370079 0.4470264 +0.4698649 0.5370079 0.4470264 +0.4805811 0.5370079 0.4470264 +0.490876 0.5370079 0.4470264 +0.5007803 0.5370079 0.4470264 +0.510322 0.5370079 0.4470264 +0.5195258 0.5370079 0.4470264 +0.5284142 0.5370079 0.4470264 +0.5370079 0.5370079 0.4470264 +0.5453253 0.5370079 0.4470264 +0.5533834 0.5370079 0.4470264 +0.5611974 0.5370079 0.4470264 +0.5687816 0.5370079 0.4470264 +0.092819 0.5453253 0.4470264 +0.1056428 0.5453253 0.4470264 +0.1201537 0.5453253 0.4470264 +0.1409607 0.5453253 0.4470264 +0.1678172 0.5453253 0.4470264 +0.1950164 0.5453253 0.4470264 +0.2210581 0.5453253 0.4470264 +0.245636 0.5453253 0.4470264 +0.2686816 0.5453253 0.4470264 +0.2902431 0.5453253 0.4470264 +0.3104189 0.5453253 0.4470264 +0.3293248 0.5453253 0.4470264 +0.3470774 0.5453253 0.4470264 +0.3637862 0.5453253 0.4470264 +0.3795513 0.5453253 0.4470264 +0.3944623 0.5453253 0.4470264 +0.4085988 0.5453253 0.4470264 +0.4220313 0.5453253 0.4470264 +0.4348222 0.5453253 0.4470264 +0.4470264 0.5453253 0.4470264 +0.4586928 0.5453253 0.4470264 +0.4698649 0.5453253 0.4470264 +0.4805811 0.5453253 0.4470264 +0.490876 0.5453253 0.4470264 +0.5007803 0.5453253 0.4470264 +0.510322 0.5453253 0.4470264 +0.5195258 0.5453253 0.4470264 +0.5284142 0.5453253 0.4470264 +0.5370079 0.5453253 0.4470264 +0.5453253 0.5453253 0.4470264 +0.5533834 0.5453253 0.4470264 +0.5611974 0.5453253 0.4470264 +0.5687816 0.5453253 0.4470264 +0.092819 0.5533834 0.4470264 +0.1056428 0.5533834 0.4470264 +0.1201537 0.5533834 0.4470264 +0.1409607 0.5533834 0.4470264 +0.1678172 0.5533834 0.4470264 +0.1950164 0.5533834 0.4470264 +0.2210581 0.5533834 0.4470264 +0.245636 0.5533834 0.4470264 +0.2686816 0.5533834 0.4470264 +0.2902431 0.5533834 0.4470264 +0.3104189 0.5533834 0.4470264 +0.3293248 0.5533834 0.4470264 +0.3470774 0.5533834 0.4470264 +0.3637862 0.5533834 0.4470264 +0.3795513 0.5533834 0.4470264 +0.3944623 0.5533834 0.4470264 +0.4085988 0.5533834 0.4470264 +0.4220313 0.5533834 0.4470264 +0.4348222 0.5533834 0.4470264 +0.4470264 0.5533834 0.4470264 +0.4586928 0.5533834 0.4470264 +0.4698649 0.5533834 0.4470264 +0.4805811 0.5533834 0.4470264 +0.490876 0.5533834 0.4470264 +0.5007803 0.5533834 0.4470264 +0.510322 0.5533834 0.4470264 +0.5195258 0.5533834 0.4470264 +0.5284142 0.5533834 0.4470264 +0.5370079 0.5533834 0.4470264 +0.5453253 0.5533834 0.4470264 +0.5533834 0.5533834 0.4470264 +0.5611974 0.5533834 0.4470264 +0.5687816 0.5533834 0.4470264 +0.092819 0.5611974 0.4470264 +0.1056428 0.5611974 0.4470264 +0.1201537 0.5611974 0.4470264 +0.1409607 0.5611974 0.4470264 +0.1678172 0.5611974 0.4470264 +0.1950164 0.5611974 0.4470264 +0.2210581 0.5611974 0.4470264 +0.245636 0.5611974 0.4470264 +0.2686816 0.5611974 0.4470264 +0.2902431 0.5611974 0.4470264 +0.3104189 0.5611974 0.4470264 +0.3293248 0.5611974 0.4470264 +0.3470774 0.5611974 0.4470264 +0.3637862 0.5611974 0.4470264 +0.3795513 0.5611974 0.4470264 +0.3944623 0.5611974 0.4470264 +0.4085988 0.5611974 0.4470264 +0.4220313 0.5611974 0.4470264 +0.4348222 0.5611974 0.4470264 +0.4470264 0.5611974 0.4470264 +0.4586928 0.5611974 0.4470264 +0.4698649 0.5611974 0.4470264 +0.4805811 0.5611974 0.4470264 +0.490876 0.5611974 0.4470264 +0.5007803 0.5611974 0.4470264 +0.510322 0.5611974 0.4470264 +0.5195258 0.5611974 0.4470264 +0.5284142 0.5611974 0.4470264 +0.5370079 0.5611974 0.4470264 +0.5453253 0.5611974 0.4470264 +0.5533834 0.5611974 0.4470264 +0.5611974 0.5611974 0.4470264 +0.5687816 0.5611974 0.4470264 +0.092819 0.5687816 0.4470264 +0.1056428 0.5687816 0.4470264 +0.1201537 0.5687816 0.4470264 +0.1409607 0.5687816 0.4470264 +0.1678172 0.5687816 0.4470264 +0.1950164 0.5687816 0.4470264 +0.2210581 0.5687816 0.4470264 +0.245636 0.5687816 0.4470264 +0.2686816 0.5687816 0.4470264 +0.2902431 0.5687816 0.4470264 +0.3104189 0.5687816 0.4470264 +0.3293248 0.5687816 0.4470264 +0.3470774 0.5687816 0.4470264 +0.3637862 0.5687816 0.4470264 +0.3795513 0.5687816 0.4470264 +0.3944623 0.5687816 0.4470264 +0.4085988 0.5687816 0.4470264 +0.4220313 0.5687816 0.4470264 +0.4348222 0.5687816 0.4470264 +0.4470264 0.5687816 0.4470264 +0.4586928 0.5687816 0.4470264 +0.4698649 0.5687816 0.4470264 +0.4805811 0.5687816 0.4470264 +0.490876 0.5687816 0.4470264 +0.5007803 0.5687816 0.4470264 +0.510322 0.5687816 0.4470264 +0.5195258 0.5687816 0.4470264 +0.5284142 0.5687816 0.4470264 +0.5370079 0.5687816 0.4470264 +0.5453253 0.5687816 0.4470264 +0.5533834 0.5687816 0.4470264 +0.5611974 0.5687816 0.4470264 +0.5687816 0.5687816 0.4470264 +0.092819 0.092819 0.4586928 +0.1056428 0.092819 0.4586928 +0.1201537 0.092819 0.4586928 +0.1409607 0.092819 0.4586928 +0.1678172 0.092819 0.4586928 +0.1950164 0.092819 0.4586928 +0.2210581 0.092819 0.4586928 +0.245636 0.092819 0.4586928 +0.2686816 0.092819 0.4586928 +0.2902431 0.092819 0.4586928 +0.3104189 0.092819 0.4586928 +0.3293248 0.092819 0.4586928 +0.3470774 0.092819 0.4586928 +0.3637862 0.092819 0.4586928 +0.3795513 0.092819 0.4586928 +0.3944623 0.092819 0.4586928 +0.4085988 0.092819 0.4586928 +0.4220313 0.092819 0.4586928 +0.4348222 0.092819 0.4586928 +0.4470264 0.092819 0.4586928 +0.4586928 0.092819 0.4586928 +0.4698649 0.092819 0.4586928 +0.4805811 0.092819 0.4586928 +0.490876 0.092819 0.4586928 +0.5007803 0.092819 0.4586928 +0.510322 0.092819 0.4586928 +0.5195258 0.092819 0.4586928 +0.5284142 0.092819 0.4586928 +0.5370079 0.092819 0.4586928 +0.5453253 0.092819 0.4586928 +0.5533834 0.092819 0.4586928 +0.5611974 0.092819 0.4586928 +0.5687816 0.092819 0.4586928 +0.092819 0.1056428 0.4586928 +0.1056428 0.1056428 0.4586928 +0.1201537 0.1056428 0.4586928 +0.1409607 0.1056428 0.4586928 +0.1678172 0.1056428 0.4586928 +0.1950164 0.1056428 0.4586928 +0.2210581 0.1056428 0.4586928 +0.245636 0.1056428 0.4586928 +0.2686816 0.1056428 0.4586928 +0.2902431 0.1056428 0.4586928 +0.3104189 0.1056428 0.4586928 +0.3293248 0.1056428 0.4586928 +0.3470774 0.1056428 0.4586928 +0.3637862 0.1056428 0.4586928 +0.3795513 0.1056428 0.4586928 +0.3944623 0.1056428 0.4586928 +0.4085988 0.1056428 0.4586928 +0.4220313 0.1056428 0.4586928 +0.4348222 0.1056428 0.4586928 +0.4470264 0.1056428 0.4586928 +0.4586928 0.1056428 0.4586928 +0.4698649 0.1056428 0.4586928 +0.4805811 0.1056428 0.4586928 +0.490876 0.1056428 0.4586928 +0.5007803 0.1056428 0.4586928 +0.510322 0.1056428 0.4586928 +0.5195258 0.1056428 0.4586928 +0.5284142 0.1056428 0.4586928 +0.5370079 0.1056428 0.4586928 +0.5453253 0.1056428 0.4586928 +0.5533834 0.1056428 0.4586928 +0.5611974 0.1056428 0.4586928 +0.5687816 0.1056428 0.4586928 +0.092819 0.1201537 0.4586928 +0.1056428 0.1201537 0.4586928 +0.1201537 0.1201537 0.4586928 +0.1409607 0.1201537 0.4586928 +0.1678172 0.1201537 0.4586928 +0.1950164 0.1201537 0.4586928 +0.2210581 0.1201537 0.4586928 +0.245636 0.1201537 0.4586928 +0.2686816 0.1201537 0.4586928 +0.2902431 0.1201537 0.4586928 +0.3104189 0.1201537 0.4586928 +0.3293248 0.1201537 0.4586928 +0.3470774 0.1201537 0.4586928 +0.3637862 0.1201537 0.4586928 +0.3795513 0.1201537 0.4586928 +0.3944623 0.1201537 0.4586928 +0.4085988 0.1201537 0.4586928 +0.4220313 0.1201537 0.4586928 +0.4348222 0.1201537 0.4586928 +0.4470264 0.1201537 0.4586928 +0.4586928 0.1201537 0.4586928 +0.4698649 0.1201537 0.4586928 +0.4805811 0.1201537 0.4586928 +0.490876 0.1201537 0.4586928 +0.5007803 0.1201537 0.4586928 +0.510322 0.1201537 0.4586928 +0.5195258 0.1201537 0.4586928 +0.5284142 0.1201537 0.4586928 +0.5370079 0.1201537 0.4586928 +0.5453253 0.1201537 0.4586928 +0.5533834 0.1201537 0.4586928 +0.5611974 0.1201537 0.4586928 +0.5687816 0.1201537 0.4586928 +0.092819 0.1409607 0.4586928 +0.1056428 0.1409607 0.4586928 +0.1201537 0.1409607 0.4586928 +0.1409607 0.1409607 0.4586928 +0.1678172 0.1409607 0.4586928 +0.1950164 0.1409607 0.4586928 +0.2210581 0.1409607 0.4586928 +0.245636 0.1409607 0.4586928 +0.2686816 0.1409607 0.4586928 +0.2902431 0.1409607 0.4586928 +0.3104189 0.1409607 0.4586928 +0.3293248 0.1409607 0.4586928 +0.3470774 0.1409607 0.4586928 +0.3637862 0.1409607 0.4586928 +0.3795513 0.1409607 0.4586928 +0.3944623 0.1409607 0.4586928 +0.4085988 0.1409607 0.4586928 +0.4220313 0.1409607 0.4586928 +0.4348222 0.1409607 0.4586928 +0.4470264 0.1409607 0.4586928 +0.4586928 0.1409607 0.4586928 +0.4698649 0.1409607 0.4586928 +0.4805811 0.1409607 0.4586928 +0.490876 0.1409607 0.4586928 +0.5007803 0.1409607 0.4586928 +0.510322 0.1409607 0.4586928 +0.5195258 0.1409607 0.4586928 +0.5284142 0.1409607 0.4586928 +0.5370079 0.1409607 0.4586928 +0.5453253 0.1409607 0.4586928 +0.5533834 0.1409607 0.4586928 +0.5611974 0.1409607 0.4586928 +0.5687816 0.1409607 0.4586928 +0.092819 0.1678172 0.4586928 +0.1056428 0.1678172 0.4586928 +0.1201537 0.1678172 0.4586928 +0.1409607 0.1678172 0.4586928 +0.1678172 0.1678172 0.4586928 +0.1950164 0.1678172 0.4586928 +0.2210581 0.1678172 0.4586928 +0.245636 0.1678172 0.4586928 +0.2686816 0.1678172 0.4586928 +0.2902431 0.1678172 0.4586928 +0.3104189 0.1678172 0.4586928 +0.3293248 0.1678172 0.4586928 +0.3470774 0.1678172 0.4586928 +0.3637862 0.1678172 0.4586928 +0.3795513 0.1678172 0.4586928 +0.3944623 0.1678172 0.4586928 +0.4085988 0.1678172 0.4586928 +0.4220313 0.1678172 0.4586928 +0.4348222 0.1678172 0.4586928 +0.4470264 0.1678172 0.4586928 +0.4586928 0.1678172 0.4586928 +0.4698649 0.1678172 0.4586928 +0.4805811 0.1678172 0.4586928 +0.490876 0.1678172 0.4586928 +0.5007803 0.1678172 0.4586928 +0.510322 0.1678172 0.4586928 +0.5195258 0.1678172 0.4586928 +0.5284142 0.1678172 0.4586928 +0.5370079 0.1678172 0.4586928 +0.5453253 0.1678172 0.4586928 +0.5533834 0.1678172 0.4586928 +0.5611974 0.1678172 0.4586928 +0.5687816 0.1678172 0.4586928 +0.092819 0.1950164 0.4586928 +0.1056428 0.1950164 0.4586928 +0.1201537 0.1950164 0.4586928 +0.1409607 0.1950164 0.4586928 +0.1678172 0.1950164 0.4586928 +0.1950164 0.1950164 0.4586928 +0.2210581 0.1950164 0.4586928 +0.245636 0.1950164 0.4586928 +0.2686816 0.1950164 0.4586928 +0.2902431 0.1950164 0.4586928 +0.3104189 0.1950164 0.4586928 +0.3293248 0.1950164 0.4586928 +0.3470774 0.1950164 0.4586928 +0.3637862 0.1950164 0.4586928 +0.3795513 0.1950164 0.4586928 +0.3944623 0.1950164 0.4586928 +0.4085988 0.1950164 0.4586928 +0.4220313 0.1950164 0.4586928 +0.4348222 0.1950164 0.4586928 +0.4470264 0.1950164 0.4586928 +0.4586928 0.1950164 0.4586928 +0.4698649 0.1950164 0.4586928 +0.4805811 0.1950164 0.4586928 +0.490876 0.1950164 0.4586928 +0.5007803 0.1950164 0.4586928 +0.510322 0.1950164 0.4586928 +0.5195258 0.1950164 0.4586928 +0.5284142 0.1950164 0.4586928 +0.5370079 0.1950164 0.4586928 +0.5453253 0.1950164 0.4586928 +0.5533834 0.1950164 0.4586928 +0.5611974 0.1950164 0.4586928 +0.5687816 0.1950164 0.4586928 +0.092819 0.2210581 0.4586928 +0.1056428 0.2210581 0.4586928 +0.1201537 0.2210581 0.4586928 +0.1409607 0.2210581 0.4586928 +0.1678172 0.2210581 0.4586928 +0.1950164 0.2210581 0.4586928 +0.2210581 0.2210581 0.4586928 +0.245636 0.2210581 0.4586928 +0.2686816 0.2210581 0.4586928 +0.2902431 0.2210581 0.4586928 +0.3104189 0.2210581 0.4586928 +0.3293248 0.2210581 0.4586928 +0.3470774 0.2210581 0.4586928 +0.3637862 0.2210581 0.4586928 +0.3795513 0.2210581 0.4586928 +0.3944623 0.2210581 0.4586928 +0.4085988 0.2210581 0.4586928 +0.4220313 0.2210581 0.4586928 +0.4348222 0.2210581 0.4586928 +0.4470264 0.2210581 0.4586928 +0.4586928 0.2210581 0.4586928 +0.4698649 0.2210581 0.4586928 +0.4805811 0.2210581 0.4586928 +0.490876 0.2210581 0.4586928 +0.5007803 0.2210581 0.4586928 +0.510322 0.2210581 0.4586928 +0.5195258 0.2210581 0.4586928 +0.5284142 0.2210581 0.4586928 +0.5370079 0.2210581 0.4586928 +0.5453253 0.2210581 0.4586928 +0.5533834 0.2210581 0.4586928 +0.5611974 0.2210581 0.4586928 +0.5687816 0.2210581 0.4586928 +0.092819 0.245636 0.4586928 +0.1056428 0.245636 0.4586928 +0.1201537 0.245636 0.4586928 +0.1409607 0.245636 0.4586928 +0.1678172 0.245636 0.4586928 +0.1950164 0.245636 0.4586928 +0.2210581 0.245636 0.4586928 +0.245636 0.245636 0.4586928 +0.2686816 0.245636 0.4586928 +0.2902431 0.245636 0.4586928 +0.3104189 0.245636 0.4586928 +0.3293248 0.245636 0.4586928 +0.3470774 0.245636 0.4586928 +0.3637862 0.245636 0.4586928 +0.3795513 0.245636 0.4586928 +0.3944623 0.245636 0.4586928 +0.4085988 0.245636 0.4586928 +0.4220313 0.245636 0.4586928 +0.4348222 0.245636 0.4586928 +0.4470264 0.245636 0.4586928 +0.4586928 0.245636 0.4586928 +0.4698649 0.245636 0.4586928 +0.4805811 0.245636 0.4586928 +0.490876 0.245636 0.4586928 +0.5007803 0.245636 0.4586928 +0.510322 0.245636 0.4586928 +0.5195258 0.245636 0.4586928 +0.5284142 0.245636 0.4586928 +0.5370079 0.245636 0.4586928 +0.5453253 0.245636 0.4586928 +0.5533834 0.245636 0.4586928 +0.5611974 0.245636 0.4586928 +0.5687816 0.245636 0.4586928 +0.092819 0.2686816 0.4586928 +0.1056428 0.2686816 0.4586928 +0.1201537 0.2686816 0.4586928 +0.1409607 0.2686816 0.4586928 +0.1678172 0.2686816 0.4586928 +0.1950164 0.2686816 0.4586928 +0.2210581 0.2686816 0.4586928 +0.245636 0.2686816 0.4586928 +0.2686816 0.2686816 0.4586928 +0.2902431 0.2686816 0.4586928 +0.3104189 0.2686816 0.4586928 +0.3293248 0.2686816 0.4586928 +0.3470774 0.2686816 0.4586928 +0.3637862 0.2686816 0.4586928 +0.3795513 0.2686816 0.4586928 +0.3944623 0.2686816 0.4586928 +0.4085988 0.2686816 0.4586928 +0.4220313 0.2686816 0.4586928 +0.4348222 0.2686816 0.4586928 +0.4470264 0.2686816 0.4586928 +0.4586928 0.2686816 0.4586928 +0.4698649 0.2686816 0.4586928 +0.4805811 0.2686816 0.4586928 +0.490876 0.2686816 0.4586928 +0.5007803 0.2686816 0.4586928 +0.510322 0.2686816 0.4586928 +0.5195258 0.2686816 0.4586928 +0.5284142 0.2686816 0.4586928 +0.5370079 0.2686816 0.4586928 +0.5453253 0.2686816 0.4586928 +0.5533834 0.2686816 0.4586928 +0.5611974 0.2686816 0.4586928 +0.5687816 0.2686816 0.4586928 +0.092819 0.2902431 0.4586928 +0.1056428 0.2902431 0.4586928 +0.1201537 0.2902431 0.4586928 +0.1409607 0.2902431 0.4586928 +0.1678172 0.2902431 0.4586928 +0.1950164 0.2902431 0.4586928 +0.2210581 0.2902431 0.4586928 +0.245636 0.2902431 0.4586928 +0.2686816 0.2902431 0.4586928 +0.2902431 0.2902431 0.4586928 +0.3104189 0.2902431 0.4586928 +0.3293248 0.2902431 0.4586928 +0.3470774 0.2902431 0.4586928 +0.3637862 0.2902431 0.4586928 +0.3795513 0.2902431 0.4586928 +0.3944623 0.2902431 0.4586928 +0.4085988 0.2902431 0.4586928 +0.4220313 0.2902431 0.4586928 +0.4348222 0.2902431 0.4586928 +0.4470264 0.2902431 0.4586928 +0.4586928 0.2902431 0.4586928 +0.4698649 0.2902431 0.4586928 +0.4805811 0.2902431 0.4586928 +0.490876 0.2902431 0.4586928 +0.5007803 0.2902431 0.4586928 +0.510322 0.2902431 0.4586928 +0.5195258 0.2902431 0.4586928 +0.5284142 0.2902431 0.4586928 +0.5370079 0.2902431 0.4586928 +0.5453253 0.2902431 0.4586928 +0.5533834 0.2902431 0.4586928 +0.5611974 0.2902431 0.4586928 +0.5687816 0.2902431 0.4586928 +0.092819 0.3104189 0.4586928 +0.1056428 0.3104189 0.4586928 +0.1201537 0.3104189 0.4586928 +0.1409607 0.3104189 0.4586928 +0.1678172 0.3104189 0.4586928 +0.1950164 0.3104189 0.4586928 +0.2210581 0.3104189 0.4586928 +0.245636 0.3104189 0.4586928 +0.2686816 0.3104189 0.4586928 +0.2902431 0.3104189 0.4586928 +0.3104189 0.3104189 0.4586928 +0.3293248 0.3104189 0.4586928 +0.3470774 0.3104189 0.4586928 +0.3637862 0.3104189 0.4586928 +0.3795513 0.3104189 0.4586928 +0.3944623 0.3104189 0.4586928 +0.4085988 0.3104189 0.4586928 +0.4220313 0.3104189 0.4586928 +0.4348222 0.3104189 0.4586928 +0.4470264 0.3104189 0.4586928 +0.4586928 0.3104189 0.4586928 +0.4698649 0.3104189 0.4586928 +0.4805811 0.3104189 0.4586928 +0.490876 0.3104189 0.4586928 +0.5007803 0.3104189 0.4586928 +0.510322 0.3104189 0.4586928 +0.5195258 0.3104189 0.4586928 +0.5284142 0.3104189 0.4586928 +0.5370079 0.3104189 0.4586928 +0.5453253 0.3104189 0.4586928 +0.5533834 0.3104189 0.4586928 +0.5611974 0.3104189 0.4586928 +0.5687816 0.3104189 0.4586928 +0.092819 0.3293248 0.4586928 +0.1056428 0.3293248 0.4586928 +0.1201537 0.3293248 0.4586928 +0.1409607 0.3293248 0.4586928 +0.1678172 0.3293248 0.4586928 +0.1950164 0.3293248 0.4586928 +0.2210581 0.3293248 0.4586928 +0.245636 0.3293248 0.4586928 +0.2686816 0.3293248 0.4586928 +0.2902431 0.3293248 0.4586928 +0.3104189 0.3293248 0.4586928 +0.3293248 0.3293248 0.4586928 +0.3470774 0.3293248 0.4586928 +0.3637862 0.3293248 0.4586928 +0.3795513 0.3293248 0.4586928 +0.3944623 0.3293248 0.4586928 +0.4085988 0.3293248 0.4586928 +0.4220313 0.3293248 0.4586928 +0.4348222 0.3293248 0.4586928 +0.4470264 0.3293248 0.4586928 +0.4586928 0.3293248 0.4586928 +0.4698649 0.3293248 0.4586928 +0.4805811 0.3293248 0.4586928 +0.490876 0.3293248 0.4586928 +0.5007803 0.3293248 0.4586928 +0.510322 0.3293248 0.4586928 +0.5195258 0.3293248 0.4586928 +0.5284142 0.3293248 0.4586928 +0.5370079 0.3293248 0.4586928 +0.5453253 0.3293248 0.4586928 +0.5533834 0.3293248 0.4586928 +0.5611974 0.3293248 0.4586928 +0.5687816 0.3293248 0.4586928 +0.092819 0.3470774 0.4586928 +0.1056428 0.3470774 0.4586928 +0.1201537 0.3470774 0.4586928 +0.1409607 0.3470774 0.4586928 +0.1678172 0.3470774 0.4586928 +0.1950164 0.3470774 0.4586928 +0.2210581 0.3470774 0.4586928 +0.245636 0.3470774 0.4586928 +0.2686816 0.3470774 0.4586928 +0.2902431 0.3470774 0.4586928 +0.3104189 0.3470774 0.4586928 +0.3293248 0.3470774 0.4586928 +0.3470774 0.3470774 0.4586928 +0.3637862 0.3470774 0.4586928 +0.3795513 0.3470774 0.4586928 +0.3944623 0.3470774 0.4586928 +0.4085988 0.3470774 0.4586928 +0.4220313 0.3470774 0.4586928 +0.4348222 0.3470774 0.4586928 +0.4470264 0.3470774 0.4586928 +0.4586928 0.3470774 0.4586928 +0.4698649 0.3470774 0.4586928 +0.4805811 0.3470774 0.4586928 +0.490876 0.3470774 0.4586928 +0.5007803 0.3470774 0.4586928 +0.510322 0.3470774 0.4586928 +0.5195258 0.3470774 0.4586928 +0.5284142 0.3470774 0.4586928 +0.5370079 0.3470774 0.4586928 +0.5453253 0.3470774 0.4586928 +0.5533834 0.3470774 0.4586928 +0.5611974 0.3470774 0.4586928 +0.5687816 0.3470774 0.4586928 +0.092819 0.3637862 0.4586928 +0.1056428 0.3637862 0.4586928 +0.1201537 0.3637862 0.4586928 +0.1409607 0.3637862 0.4586928 +0.1678172 0.3637862 0.4586928 +0.1950164 0.3637862 0.4586928 +0.2210581 0.3637862 0.4586928 +0.245636 0.3637862 0.4586928 +0.2686816 0.3637862 0.4586928 +0.2902431 0.3637862 0.4586928 +0.3104189 0.3637862 0.4586928 +0.3293248 0.3637862 0.4586928 +0.3470774 0.3637862 0.4586928 +0.3637862 0.3637862 0.4586928 +0.3795513 0.3637862 0.4586928 +0.3944623 0.3637862 0.4586928 +0.4085988 0.3637862 0.4586928 +0.4220313 0.3637862 0.4586928 +0.4348222 0.3637862 0.4586928 +0.4470264 0.3637862 0.4586928 +0.4586928 0.3637862 0.4586928 +0.4698649 0.3637862 0.4586928 +0.4805811 0.3637862 0.4586928 +0.490876 0.3637862 0.4586928 +0.5007803 0.3637862 0.4586928 +0.510322 0.3637862 0.4586928 +0.5195258 0.3637862 0.4586928 +0.5284142 0.3637862 0.4586928 +0.5370079 0.3637862 0.4586928 +0.5453253 0.3637862 0.4586928 +0.5533834 0.3637862 0.4586928 +0.5611974 0.3637862 0.4586928 +0.5687816 0.3637862 0.4586928 +0.092819 0.3795513 0.4586928 +0.1056428 0.3795513 0.4586928 +0.1201537 0.3795513 0.4586928 +0.1409607 0.3795513 0.4586928 +0.1678172 0.3795513 0.4586928 +0.1950164 0.3795513 0.4586928 +0.2210581 0.3795513 0.4586928 +0.245636 0.3795513 0.4586928 +0.2686816 0.3795513 0.4586928 +0.2902431 0.3795513 0.4586928 +0.3104189 0.3795513 0.4586928 +0.3293248 0.3795513 0.4586928 +0.3470774 0.3795513 0.4586928 +0.3637862 0.3795513 0.4586928 +0.3795513 0.3795513 0.4586928 +0.3944623 0.3795513 0.4586928 +0.4085988 0.3795513 0.4586928 +0.4220313 0.3795513 0.4586928 +0.4348222 0.3795513 0.4586928 +0.4470264 0.3795513 0.4586928 +0.4586928 0.3795513 0.4586928 +0.4698649 0.3795513 0.4586928 +0.4805811 0.3795513 0.4586928 +0.490876 0.3795513 0.4586928 +0.5007803 0.3795513 0.4586928 +0.510322 0.3795513 0.4586928 +0.5195258 0.3795513 0.4586928 +0.5284142 0.3795513 0.4586928 +0.5370079 0.3795513 0.4586928 +0.5453253 0.3795513 0.4586928 +0.5533834 0.3795513 0.4586928 +0.5611974 0.3795513 0.4586928 +0.5687816 0.3795513 0.4586928 +0.092819 0.3944623 0.4586928 +0.1056428 0.3944623 0.4586928 +0.1201537 0.3944623 0.4586928 +0.1409607 0.3944623 0.4586928 +0.1678172 0.3944623 0.4586928 +0.1950164 0.3944623 0.4586928 +0.2210581 0.3944623 0.4586928 +0.245636 0.3944623 0.4586928 +0.2686816 0.3944623 0.4586928 +0.2902431 0.3944623 0.4586928 +0.3104189 0.3944623 0.4586928 +0.3293248 0.3944623 0.4586928 +0.3470774 0.3944623 0.4586928 +0.3637862 0.3944623 0.4586928 +0.3795513 0.3944623 0.4586928 +0.3944623 0.3944623 0.4586928 +0.4085988 0.3944623 0.4586928 +0.4220313 0.3944623 0.4586928 +0.4348222 0.3944623 0.4586928 +0.4470264 0.3944623 0.4586928 +0.4586928 0.3944623 0.4586928 +0.4698649 0.3944623 0.4586928 +0.4805811 0.3944623 0.4586928 +0.490876 0.3944623 0.4586928 +0.5007803 0.3944623 0.4586928 +0.510322 0.3944623 0.4586928 +0.5195258 0.3944623 0.4586928 +0.5284142 0.3944623 0.4586928 +0.5370079 0.3944623 0.4586928 +0.5453253 0.3944623 0.4586928 +0.5533834 0.3944623 0.4586928 +0.5611974 0.3944623 0.4586928 +0.5687816 0.3944623 0.4586928 +0.092819 0.4085988 0.4586928 +0.1056428 0.4085988 0.4586928 +0.1201537 0.4085988 0.4586928 +0.1409607 0.4085988 0.4586928 +0.1678172 0.4085988 0.4586928 +0.1950164 0.4085988 0.4586928 +0.2210581 0.4085988 0.4586928 +0.245636 0.4085988 0.4586928 +0.2686816 0.4085988 0.4586928 +0.2902431 0.4085988 0.4586928 +0.3104189 0.4085988 0.4586928 +0.3293248 0.4085988 0.4586928 +0.3470774 0.4085988 0.4586928 +0.3637862 0.4085988 0.4586928 +0.3795513 0.4085988 0.4586928 +0.3944623 0.4085988 0.4586928 +0.4085988 0.4085988 0.4586928 +0.4220313 0.4085988 0.4586928 +0.4348222 0.4085988 0.4586928 +0.4470264 0.4085988 0.4586928 +0.4586928 0.4085988 0.4586928 +0.4698649 0.4085988 0.4586928 +0.4805811 0.4085988 0.4586928 +0.490876 0.4085988 0.4586928 +0.5007803 0.4085988 0.4586928 +0.510322 0.4085988 0.4586928 +0.5195258 0.4085988 0.4586928 +0.5284142 0.4085988 0.4586928 +0.5370079 0.4085988 0.4586928 +0.5453253 0.4085988 0.4586928 +0.5533834 0.4085988 0.4586928 +0.5611974 0.4085988 0.4586928 +0.5687816 0.4085988 0.4586928 +0.092819 0.4220313 0.4586928 +0.1056428 0.4220313 0.4586928 +0.1201537 0.4220313 0.4586928 +0.1409607 0.4220313 0.4586928 +0.1678172 0.4220313 0.4586928 +0.1950164 0.4220313 0.4586928 +0.2210581 0.4220313 0.4586928 +0.245636 0.4220313 0.4586928 +0.2686816 0.4220313 0.4586928 +0.2902431 0.4220313 0.4586928 +0.3104189 0.4220313 0.4586928 +0.3293248 0.4220313 0.4586928 +0.3470774 0.4220313 0.4586928 +0.3637862 0.4220313 0.4586928 +0.3795513 0.4220313 0.4586928 +0.3944623 0.4220313 0.4586928 +0.4085988 0.4220313 0.4586928 +0.4220313 0.4220313 0.4586928 +0.4348222 0.4220313 0.4586928 +0.4470264 0.4220313 0.4586928 +0.4586928 0.4220313 0.4586928 +0.4698649 0.4220313 0.4586928 +0.4805811 0.4220313 0.4586928 +0.490876 0.4220313 0.4586928 +0.5007803 0.4220313 0.4586928 +0.510322 0.4220313 0.4586928 +0.5195258 0.4220313 0.4586928 +0.5284142 0.4220313 0.4586928 +0.5370079 0.4220313 0.4586928 +0.5453253 0.4220313 0.4586928 +0.5533834 0.4220313 0.4586928 +0.5611974 0.4220313 0.4586928 +0.5687816 0.4220313 0.4586928 +0.092819 0.4348222 0.4586928 +0.1056428 0.4348222 0.4586928 +0.1201537 0.4348222 0.4586928 +0.1409607 0.4348222 0.4586928 +0.1678172 0.4348222 0.4586928 +0.1950164 0.4348222 0.4586928 +0.2210581 0.4348222 0.4586928 +0.245636 0.4348222 0.4586928 +0.2686816 0.4348222 0.4586928 +0.2902431 0.4348222 0.4586928 +0.3104189 0.4348222 0.4586928 +0.3293248 0.4348222 0.4586928 +0.3470774 0.4348222 0.4586928 +0.3637862 0.4348222 0.4586928 +0.3795513 0.4348222 0.4586928 +0.3944623 0.4348222 0.4586928 +0.4085988 0.4348222 0.4586928 +0.4220313 0.4348222 0.4586928 +0.4348222 0.4348222 0.4586928 +0.4470264 0.4348222 0.4586928 +0.4586928 0.4348222 0.4586928 +0.4698649 0.4348222 0.4586928 +0.4805811 0.4348222 0.4586928 +0.490876 0.4348222 0.4586928 +0.5007803 0.4348222 0.4586928 +0.510322 0.4348222 0.4586928 +0.5195258 0.4348222 0.4586928 +0.5284142 0.4348222 0.4586928 +0.5370079 0.4348222 0.4586928 +0.5453253 0.4348222 0.4586928 +0.5533834 0.4348222 0.4586928 +0.5611974 0.4348222 0.4586928 +0.5687816 0.4348222 0.4586928 +0.092819 0.4470264 0.4586928 +0.1056428 0.4470264 0.4586928 +0.1201537 0.4470264 0.4586928 +0.1409607 0.4470264 0.4586928 +0.1678172 0.4470264 0.4586928 +0.1950164 0.4470264 0.4586928 +0.2210581 0.4470264 0.4586928 +0.245636 0.4470264 0.4586928 +0.2686816 0.4470264 0.4586928 +0.2902431 0.4470264 0.4586928 +0.3104189 0.4470264 0.4586928 +0.3293248 0.4470264 0.4586928 +0.3470774 0.4470264 0.4586928 +0.3637862 0.4470264 0.4586928 +0.3795513 0.4470264 0.4586928 +0.3944623 0.4470264 0.4586928 +0.4085988 0.4470264 0.4586928 +0.4220313 0.4470264 0.4586928 +0.4348222 0.4470264 0.4586928 +0.4470264 0.4470264 0.4586928 +0.4586928 0.4470264 0.4586928 +0.4698649 0.4470264 0.4586928 +0.4805811 0.4470264 0.4586928 +0.490876 0.4470264 0.4586928 +0.5007803 0.4470264 0.4586928 +0.510322 0.4470264 0.4586928 +0.5195258 0.4470264 0.4586928 +0.5284142 0.4470264 0.4586928 +0.5370079 0.4470264 0.4586928 +0.5453253 0.4470264 0.4586928 +0.5533834 0.4470264 0.4586928 +0.5611974 0.4470264 0.4586928 +0.5687816 0.4470264 0.4586928 +0.092819 0.4586928 0.4586928 +0.1056428 0.4586928 0.4586928 +0.1201537 0.4586928 0.4586928 +0.1409607 0.4586928 0.4586928 +0.1678172 0.4586928 0.4586928 +0.1950164 0.4586928 0.4586928 +0.2210581 0.4586928 0.4586928 +0.245636 0.4586928 0.4586928 +0.2686816 0.4586928 0.4586928 +0.2902431 0.4586928 0.4586928 +0.3104189 0.4586928 0.4586928 +0.3293248 0.4586928 0.4586928 +0.3470774 0.4586928 0.4586928 +0.3637862 0.4586928 0.4586928 +0.3795513 0.4586928 0.4586928 +0.3944623 0.4586928 0.4586928 +0.4085988 0.4586928 0.4586928 +0.4220313 0.4586928 0.4586928 +0.4348222 0.4586928 0.4586928 +0.4470264 0.4586928 0.4586928 +0.4586928 0.4586928 0.4586928 +0.4698649 0.4586928 0.4586928 +0.4805811 0.4586928 0.4586928 +0.490876 0.4586928 0.4586928 +0.5007803 0.4586928 0.4586928 +0.510322 0.4586928 0.4586928 +0.5195258 0.4586928 0.4586928 +0.5284142 0.4586928 0.4586928 +0.5370079 0.4586928 0.4586928 +0.5453253 0.4586928 0.4586928 +0.5533834 0.4586928 0.4586928 +0.5611974 0.4586928 0.4586928 +0.5687816 0.4586928 0.4586928 +0.092819 0.4698649 0.4586928 +0.1056428 0.4698649 0.4586928 +0.1201537 0.4698649 0.4586928 +0.1409607 0.4698649 0.4586928 +0.1678172 0.4698649 0.4586928 +0.1950164 0.4698649 0.4586928 +0.2210581 0.4698649 0.4586928 +0.245636 0.4698649 0.4586928 +0.2686816 0.4698649 0.4586928 +0.2902431 0.4698649 0.4586928 +0.3104189 0.4698649 0.4586928 +0.3293248 0.4698649 0.4586928 +0.3470774 0.4698649 0.4586928 +0.3637862 0.4698649 0.4586928 +0.3795513 0.4698649 0.4586928 +0.3944623 0.4698649 0.4586928 +0.4085988 0.4698649 0.4586928 +0.4220313 0.4698649 0.4586928 +0.4348222 0.4698649 0.4586928 +0.4470264 0.4698649 0.4586928 +0.4586928 0.4698649 0.4586928 +0.4698649 0.4698649 0.4586928 +0.4805811 0.4698649 0.4586928 +0.490876 0.4698649 0.4586928 +0.5007803 0.4698649 0.4586928 +0.510322 0.4698649 0.4586928 +0.5195258 0.4698649 0.4586928 +0.5284142 0.4698649 0.4586928 +0.5370079 0.4698649 0.4586928 +0.5453253 0.4698649 0.4586928 +0.5533834 0.4698649 0.4586928 +0.5611974 0.4698649 0.4586928 +0.5687816 0.4698649 0.4586928 +0.092819 0.4805811 0.4586928 +0.1056428 0.4805811 0.4586928 +0.1201537 0.4805811 0.4586928 +0.1409607 0.4805811 0.4586928 +0.1678172 0.4805811 0.4586928 +0.1950164 0.4805811 0.4586928 +0.2210581 0.4805811 0.4586928 +0.245636 0.4805811 0.4586928 +0.2686816 0.4805811 0.4586928 +0.2902431 0.4805811 0.4586928 +0.3104189 0.4805811 0.4586928 +0.3293248 0.4805811 0.4586928 +0.3470774 0.4805811 0.4586928 +0.3637862 0.4805811 0.4586928 +0.3795513 0.4805811 0.4586928 +0.3944623 0.4805811 0.4586928 +0.4085988 0.4805811 0.4586928 +0.4220313 0.4805811 0.4586928 +0.4348222 0.4805811 0.4586928 +0.4470264 0.4805811 0.4586928 +0.4586928 0.4805811 0.4586928 +0.4698649 0.4805811 0.4586928 +0.4805811 0.4805811 0.4586928 +0.490876 0.4805811 0.4586928 +0.5007803 0.4805811 0.4586928 +0.510322 0.4805811 0.4586928 +0.5195258 0.4805811 0.4586928 +0.5284142 0.4805811 0.4586928 +0.5370079 0.4805811 0.4586928 +0.5453253 0.4805811 0.4586928 +0.5533834 0.4805811 0.4586928 +0.5611974 0.4805811 0.4586928 +0.5687816 0.4805811 0.4586928 +0.092819 0.490876 0.4586928 +0.1056428 0.490876 0.4586928 +0.1201537 0.490876 0.4586928 +0.1409607 0.490876 0.4586928 +0.1678172 0.490876 0.4586928 +0.1950164 0.490876 0.4586928 +0.2210581 0.490876 0.4586928 +0.245636 0.490876 0.4586928 +0.2686816 0.490876 0.4586928 +0.2902431 0.490876 0.4586928 +0.3104189 0.490876 0.4586928 +0.3293248 0.490876 0.4586928 +0.3470774 0.490876 0.4586928 +0.3637862 0.490876 0.4586928 +0.3795513 0.490876 0.4586928 +0.3944623 0.490876 0.4586928 +0.4085988 0.490876 0.4586928 +0.4220313 0.490876 0.4586928 +0.4348222 0.490876 0.4586928 +0.4470264 0.490876 0.4586928 +0.4586928 0.490876 0.4586928 +0.4698649 0.490876 0.4586928 +0.4805811 0.490876 0.4586928 +0.490876 0.490876 0.4586928 +0.5007803 0.490876 0.4586928 +0.510322 0.490876 0.4586928 +0.5195258 0.490876 0.4586928 +0.5284142 0.490876 0.4586928 +0.5370079 0.490876 0.4586928 +0.5453253 0.490876 0.4586928 +0.5533834 0.490876 0.4586928 +0.5611974 0.490876 0.4586928 +0.5687816 0.490876 0.4586928 +0.092819 0.5007803 0.4586928 +0.1056428 0.5007803 0.4586928 +0.1201537 0.5007803 0.4586928 +0.1409607 0.5007803 0.4586928 +0.1678172 0.5007803 0.4586928 +0.1950164 0.5007803 0.4586928 +0.2210581 0.5007803 0.4586928 +0.245636 0.5007803 0.4586928 +0.2686816 0.5007803 0.4586928 +0.2902431 0.5007803 0.4586928 +0.3104189 0.5007803 0.4586928 +0.3293248 0.5007803 0.4586928 +0.3470774 0.5007803 0.4586928 +0.3637862 0.5007803 0.4586928 +0.3795513 0.5007803 0.4586928 +0.3944623 0.5007803 0.4586928 +0.4085988 0.5007803 0.4586928 +0.4220313 0.5007803 0.4586928 +0.4348222 0.5007803 0.4586928 +0.4470264 0.5007803 0.4586928 +0.4586928 0.5007803 0.4586928 +0.4698649 0.5007803 0.4586928 +0.4805811 0.5007803 0.4586928 +0.490876 0.5007803 0.4586928 +0.5007803 0.5007803 0.4586928 +0.510322 0.5007803 0.4586928 +0.5195258 0.5007803 0.4586928 +0.5284142 0.5007803 0.4586928 +0.5370079 0.5007803 0.4586928 +0.5453253 0.5007803 0.4586928 +0.5533834 0.5007803 0.4586928 +0.5611974 0.5007803 0.4586928 +0.5687816 0.5007803 0.4586928 +0.092819 0.510322 0.4586928 +0.1056428 0.510322 0.4586928 +0.1201537 0.510322 0.4586928 +0.1409607 0.510322 0.4586928 +0.1678172 0.510322 0.4586928 +0.1950164 0.510322 0.4586928 +0.2210581 0.510322 0.4586928 +0.245636 0.510322 0.4586928 +0.2686816 0.510322 0.4586928 +0.2902431 0.510322 0.4586928 +0.3104189 0.510322 0.4586928 +0.3293248 0.510322 0.4586928 +0.3470774 0.510322 0.4586928 +0.3637862 0.510322 0.4586928 +0.3795513 0.510322 0.4586928 +0.3944623 0.510322 0.4586928 +0.4085988 0.510322 0.4586928 +0.4220313 0.510322 0.4586928 +0.4348222 0.510322 0.4586928 +0.4470264 0.510322 0.4586928 +0.4586928 0.510322 0.4586928 +0.4698649 0.510322 0.4586928 +0.4805811 0.510322 0.4586928 +0.490876 0.510322 0.4586928 +0.5007803 0.510322 0.4586928 +0.510322 0.510322 0.4586928 +0.5195258 0.510322 0.4586928 +0.5284142 0.510322 0.4586928 +0.5370079 0.510322 0.4586928 +0.5453253 0.510322 0.4586928 +0.5533834 0.510322 0.4586928 +0.5611974 0.510322 0.4586928 +0.5687816 0.510322 0.4586928 +0.092819 0.5195258 0.4586928 +0.1056428 0.5195258 0.4586928 +0.1201537 0.5195258 0.4586928 +0.1409607 0.5195258 0.4586928 +0.1678172 0.5195258 0.4586928 +0.1950164 0.5195258 0.4586928 +0.2210581 0.5195258 0.4586928 +0.245636 0.5195258 0.4586928 +0.2686816 0.5195258 0.4586928 +0.2902431 0.5195258 0.4586928 +0.3104189 0.5195258 0.4586928 +0.3293248 0.5195258 0.4586928 +0.3470774 0.5195258 0.4586928 +0.3637862 0.5195258 0.4586928 +0.3795513 0.5195258 0.4586928 +0.3944623 0.5195258 0.4586928 +0.4085988 0.5195258 0.4586928 +0.4220313 0.5195258 0.4586928 +0.4348222 0.5195258 0.4586928 +0.4470264 0.5195258 0.4586928 +0.4586928 0.5195258 0.4586928 +0.4698649 0.5195258 0.4586928 +0.4805811 0.5195258 0.4586928 +0.490876 0.5195258 0.4586928 +0.5007803 0.5195258 0.4586928 +0.510322 0.5195258 0.4586928 +0.5195258 0.5195258 0.4586928 +0.5284142 0.5195258 0.4586928 +0.5370079 0.5195258 0.4586928 +0.5453253 0.5195258 0.4586928 +0.5533834 0.5195258 0.4586928 +0.5611974 0.5195258 0.4586928 +0.5687816 0.5195258 0.4586928 +0.092819 0.5284142 0.4586928 +0.1056428 0.5284142 0.4586928 +0.1201537 0.5284142 0.4586928 +0.1409607 0.5284142 0.4586928 +0.1678172 0.5284142 0.4586928 +0.1950164 0.5284142 0.4586928 +0.2210581 0.5284142 0.4586928 +0.245636 0.5284142 0.4586928 +0.2686816 0.5284142 0.4586928 +0.2902431 0.5284142 0.4586928 +0.3104189 0.5284142 0.4586928 +0.3293248 0.5284142 0.4586928 +0.3470774 0.5284142 0.4586928 +0.3637862 0.5284142 0.4586928 +0.3795513 0.5284142 0.4586928 +0.3944623 0.5284142 0.4586928 +0.4085988 0.5284142 0.4586928 +0.4220313 0.5284142 0.4586928 +0.4348222 0.5284142 0.4586928 +0.4470264 0.5284142 0.4586928 +0.4586928 0.5284142 0.4586928 +0.4698649 0.5284142 0.4586928 +0.4805811 0.5284142 0.4586928 +0.490876 0.5284142 0.4586928 +0.5007803 0.5284142 0.4586928 +0.510322 0.5284142 0.4586928 +0.5195258 0.5284142 0.4586928 +0.5284142 0.5284142 0.4586928 +0.5370079 0.5284142 0.4586928 +0.5453253 0.5284142 0.4586928 +0.5533834 0.5284142 0.4586928 +0.5611974 0.5284142 0.4586928 +0.5687816 0.5284142 0.4586928 +0.092819 0.5370079 0.4586928 +0.1056428 0.5370079 0.4586928 +0.1201537 0.5370079 0.4586928 +0.1409607 0.5370079 0.4586928 +0.1678172 0.5370079 0.4586928 +0.1950164 0.5370079 0.4586928 +0.2210581 0.5370079 0.4586928 +0.245636 0.5370079 0.4586928 +0.2686816 0.5370079 0.4586928 +0.2902431 0.5370079 0.4586928 +0.3104189 0.5370079 0.4586928 +0.3293248 0.5370079 0.4586928 +0.3470774 0.5370079 0.4586928 +0.3637862 0.5370079 0.4586928 +0.3795513 0.5370079 0.4586928 +0.3944623 0.5370079 0.4586928 +0.4085988 0.5370079 0.4586928 +0.4220313 0.5370079 0.4586928 +0.4348222 0.5370079 0.4586928 +0.4470264 0.5370079 0.4586928 +0.4586928 0.5370079 0.4586928 +0.4698649 0.5370079 0.4586928 +0.4805811 0.5370079 0.4586928 +0.490876 0.5370079 0.4586928 +0.5007803 0.5370079 0.4586928 +0.510322 0.5370079 0.4586928 +0.5195258 0.5370079 0.4586928 +0.5284142 0.5370079 0.4586928 +0.5370079 0.5370079 0.4586928 +0.5453253 0.5370079 0.4586928 +0.5533834 0.5370079 0.4586928 +0.5611974 0.5370079 0.4586928 +0.5687816 0.5370079 0.4586928 +0.092819 0.5453253 0.4586928 +0.1056428 0.5453253 0.4586928 +0.1201537 0.5453253 0.4586928 +0.1409607 0.5453253 0.4586928 +0.1678172 0.5453253 0.4586928 +0.1950164 0.5453253 0.4586928 +0.2210581 0.5453253 0.4586928 +0.245636 0.5453253 0.4586928 +0.2686816 0.5453253 0.4586928 +0.2902431 0.5453253 0.4586928 +0.3104189 0.5453253 0.4586928 +0.3293248 0.5453253 0.4586928 +0.3470774 0.5453253 0.4586928 +0.3637862 0.5453253 0.4586928 +0.3795513 0.5453253 0.4586928 +0.3944623 0.5453253 0.4586928 +0.4085988 0.5453253 0.4586928 +0.4220313 0.5453253 0.4586928 +0.4348222 0.5453253 0.4586928 +0.4470264 0.5453253 0.4586928 +0.4586928 0.5453253 0.4586928 +0.4698649 0.5453253 0.4586928 +0.4805811 0.5453253 0.4586928 +0.490876 0.5453253 0.4586928 +0.5007803 0.5453253 0.4586928 +0.510322 0.5453253 0.4586928 +0.5195258 0.5453253 0.4586928 +0.5284142 0.5453253 0.4586928 +0.5370079 0.5453253 0.4586928 +0.5453253 0.5453253 0.4586928 +0.5533834 0.5453253 0.4586928 +0.5611974 0.5453253 0.4586928 +0.5687816 0.5453253 0.4586928 +0.092819 0.5533834 0.4586928 +0.1056428 0.5533834 0.4586928 +0.1201537 0.5533834 0.4586928 +0.1409607 0.5533834 0.4586928 +0.1678172 0.5533834 0.4586928 +0.1950164 0.5533834 0.4586928 +0.2210581 0.5533834 0.4586928 +0.245636 0.5533834 0.4586928 +0.2686816 0.5533834 0.4586928 +0.2902431 0.5533834 0.4586928 +0.3104189 0.5533834 0.4586928 +0.3293248 0.5533834 0.4586928 +0.3470774 0.5533834 0.4586928 +0.3637862 0.5533834 0.4586928 +0.3795513 0.5533834 0.4586928 +0.3944623 0.5533834 0.4586928 +0.4085988 0.5533834 0.4586928 +0.4220313 0.5533834 0.4586928 +0.4348222 0.5533834 0.4586928 +0.4470264 0.5533834 0.4586928 +0.4586928 0.5533834 0.4586928 +0.4698649 0.5533834 0.4586928 +0.4805811 0.5533834 0.4586928 +0.490876 0.5533834 0.4586928 +0.5007803 0.5533834 0.4586928 +0.510322 0.5533834 0.4586928 +0.5195258 0.5533834 0.4586928 +0.5284142 0.5533834 0.4586928 +0.5370079 0.5533834 0.4586928 +0.5453253 0.5533834 0.4586928 +0.5533834 0.5533834 0.4586928 +0.5611974 0.5533834 0.4586928 +0.5687816 0.5533834 0.4586928 +0.092819 0.5611974 0.4586928 +0.1056428 0.5611974 0.4586928 +0.1201537 0.5611974 0.4586928 +0.1409607 0.5611974 0.4586928 +0.1678172 0.5611974 0.4586928 +0.1950164 0.5611974 0.4586928 +0.2210581 0.5611974 0.4586928 +0.245636 0.5611974 0.4586928 +0.2686816 0.5611974 0.4586928 +0.2902431 0.5611974 0.4586928 +0.3104189 0.5611974 0.4586928 +0.3293248 0.5611974 0.4586928 +0.3470774 0.5611974 0.4586928 +0.3637862 0.5611974 0.4586928 +0.3795513 0.5611974 0.4586928 +0.3944623 0.5611974 0.4586928 +0.4085988 0.5611974 0.4586928 +0.4220313 0.5611974 0.4586928 +0.4348222 0.5611974 0.4586928 +0.4470264 0.5611974 0.4586928 +0.4586928 0.5611974 0.4586928 +0.4698649 0.5611974 0.4586928 +0.4805811 0.5611974 0.4586928 +0.490876 0.5611974 0.4586928 +0.5007803 0.5611974 0.4586928 +0.510322 0.5611974 0.4586928 +0.5195258 0.5611974 0.4586928 +0.5284142 0.5611974 0.4586928 +0.5370079 0.5611974 0.4586928 +0.5453253 0.5611974 0.4586928 +0.5533834 0.5611974 0.4586928 +0.5611974 0.5611974 0.4586928 +0.5687816 0.5611974 0.4586928 +0.092819 0.5687816 0.4586928 +0.1056428 0.5687816 0.4586928 +0.1201537 0.5687816 0.4586928 +0.1409607 0.5687816 0.4586928 +0.1678172 0.5687816 0.4586928 +0.1950164 0.5687816 0.4586928 +0.2210581 0.5687816 0.4586928 +0.245636 0.5687816 0.4586928 +0.2686816 0.5687816 0.4586928 +0.2902431 0.5687816 0.4586928 +0.3104189 0.5687816 0.4586928 +0.3293248 0.5687816 0.4586928 +0.3470774 0.5687816 0.4586928 +0.3637862 0.5687816 0.4586928 +0.3795513 0.5687816 0.4586928 +0.3944623 0.5687816 0.4586928 +0.4085988 0.5687816 0.4586928 +0.4220313 0.5687816 0.4586928 +0.4348222 0.5687816 0.4586928 +0.4470264 0.5687816 0.4586928 +0.4586928 0.5687816 0.4586928 +0.4698649 0.5687816 0.4586928 +0.4805811 0.5687816 0.4586928 +0.490876 0.5687816 0.4586928 +0.5007803 0.5687816 0.4586928 +0.510322 0.5687816 0.4586928 +0.5195258 0.5687816 0.4586928 +0.5284142 0.5687816 0.4586928 +0.5370079 0.5687816 0.4586928 +0.5453253 0.5687816 0.4586928 +0.5533834 0.5687816 0.4586928 +0.5611974 0.5687816 0.4586928 +0.5687816 0.5687816 0.4586928 +0.092819 0.092819 0.4698649 +0.1056428 0.092819 0.4698649 +0.1201537 0.092819 0.4698649 +0.1409607 0.092819 0.4698649 +0.1678172 0.092819 0.4698649 +0.1950164 0.092819 0.4698649 +0.2210581 0.092819 0.4698649 +0.245636 0.092819 0.4698649 +0.2686816 0.092819 0.4698649 +0.2902431 0.092819 0.4698649 +0.3104189 0.092819 0.4698649 +0.3293248 0.092819 0.4698649 +0.3470774 0.092819 0.4698649 +0.3637862 0.092819 0.4698649 +0.3795513 0.092819 0.4698649 +0.3944623 0.092819 0.4698649 +0.4085988 0.092819 0.4698649 +0.4220313 0.092819 0.4698649 +0.4348222 0.092819 0.4698649 +0.4470264 0.092819 0.4698649 +0.4586928 0.092819 0.4698649 +0.4698649 0.092819 0.4698649 +0.4805811 0.092819 0.4698649 +0.490876 0.092819 0.4698649 +0.5007803 0.092819 0.4698649 +0.510322 0.092819 0.4698649 +0.5195258 0.092819 0.4698649 +0.5284142 0.092819 0.4698649 +0.5370079 0.092819 0.4698649 +0.5453253 0.092819 0.4698649 +0.5533834 0.092819 0.4698649 +0.5611974 0.092819 0.4698649 +0.5687816 0.092819 0.4698649 +0.092819 0.1056428 0.4698649 +0.1056428 0.1056428 0.4698649 +0.1201537 0.1056428 0.4698649 +0.1409607 0.1056428 0.4698649 +0.1678172 0.1056428 0.4698649 +0.1950164 0.1056428 0.4698649 +0.2210581 0.1056428 0.4698649 +0.245636 0.1056428 0.4698649 +0.2686816 0.1056428 0.4698649 +0.2902431 0.1056428 0.4698649 +0.3104189 0.1056428 0.4698649 +0.3293248 0.1056428 0.4698649 +0.3470774 0.1056428 0.4698649 +0.3637862 0.1056428 0.4698649 +0.3795513 0.1056428 0.4698649 +0.3944623 0.1056428 0.4698649 +0.4085988 0.1056428 0.4698649 +0.4220313 0.1056428 0.4698649 +0.4348222 0.1056428 0.4698649 +0.4470264 0.1056428 0.4698649 +0.4586928 0.1056428 0.4698649 +0.4698649 0.1056428 0.4698649 +0.4805811 0.1056428 0.4698649 +0.490876 0.1056428 0.4698649 +0.5007803 0.1056428 0.4698649 +0.510322 0.1056428 0.4698649 +0.5195258 0.1056428 0.4698649 +0.5284142 0.1056428 0.4698649 +0.5370079 0.1056428 0.4698649 +0.5453253 0.1056428 0.4698649 +0.5533834 0.1056428 0.4698649 +0.5611974 0.1056428 0.4698649 +0.5687816 0.1056428 0.4698649 +0.092819 0.1201537 0.4698649 +0.1056428 0.1201537 0.4698649 +0.1201537 0.1201537 0.4698649 +0.1409607 0.1201537 0.4698649 +0.1678172 0.1201537 0.4698649 +0.1950164 0.1201537 0.4698649 +0.2210581 0.1201537 0.4698649 +0.245636 0.1201537 0.4698649 +0.2686816 0.1201537 0.4698649 +0.2902431 0.1201537 0.4698649 +0.3104189 0.1201537 0.4698649 +0.3293248 0.1201537 0.4698649 +0.3470774 0.1201537 0.4698649 +0.3637862 0.1201537 0.4698649 +0.3795513 0.1201537 0.4698649 +0.3944623 0.1201537 0.4698649 +0.4085988 0.1201537 0.4698649 +0.4220313 0.1201537 0.4698649 +0.4348222 0.1201537 0.4698649 +0.4470264 0.1201537 0.4698649 +0.4586928 0.1201537 0.4698649 +0.4698649 0.1201537 0.4698649 +0.4805811 0.1201537 0.4698649 +0.490876 0.1201537 0.4698649 +0.5007803 0.1201537 0.4698649 +0.510322 0.1201537 0.4698649 +0.5195258 0.1201537 0.4698649 +0.5284142 0.1201537 0.4698649 +0.5370079 0.1201537 0.4698649 +0.5453253 0.1201537 0.4698649 +0.5533834 0.1201537 0.4698649 +0.5611974 0.1201537 0.4698649 +0.5687816 0.1201537 0.4698649 +0.092819 0.1409607 0.4698649 +0.1056428 0.1409607 0.4698649 +0.1201537 0.1409607 0.4698649 +0.1409607 0.1409607 0.4698649 +0.1678172 0.1409607 0.4698649 +0.1950164 0.1409607 0.4698649 +0.2210581 0.1409607 0.4698649 +0.245636 0.1409607 0.4698649 +0.2686816 0.1409607 0.4698649 +0.2902431 0.1409607 0.4698649 +0.3104189 0.1409607 0.4698649 +0.3293248 0.1409607 0.4698649 +0.3470774 0.1409607 0.4698649 +0.3637862 0.1409607 0.4698649 +0.3795513 0.1409607 0.4698649 +0.3944623 0.1409607 0.4698649 +0.4085988 0.1409607 0.4698649 +0.4220313 0.1409607 0.4698649 +0.4348222 0.1409607 0.4698649 +0.4470264 0.1409607 0.4698649 +0.4586928 0.1409607 0.4698649 +0.4698649 0.1409607 0.4698649 +0.4805811 0.1409607 0.4698649 +0.490876 0.1409607 0.4698649 +0.5007803 0.1409607 0.4698649 +0.510322 0.1409607 0.4698649 +0.5195258 0.1409607 0.4698649 +0.5284142 0.1409607 0.4698649 +0.5370079 0.1409607 0.4698649 +0.5453253 0.1409607 0.4698649 +0.5533834 0.1409607 0.4698649 +0.5611974 0.1409607 0.4698649 +0.5687816 0.1409607 0.4698649 +0.092819 0.1678172 0.4698649 +0.1056428 0.1678172 0.4698649 +0.1201537 0.1678172 0.4698649 +0.1409607 0.1678172 0.4698649 +0.1678172 0.1678172 0.4698649 +0.1950164 0.1678172 0.4698649 +0.2210581 0.1678172 0.4698649 +0.245636 0.1678172 0.4698649 +0.2686816 0.1678172 0.4698649 +0.2902431 0.1678172 0.4698649 +0.3104189 0.1678172 0.4698649 +0.3293248 0.1678172 0.4698649 +0.3470774 0.1678172 0.4698649 +0.3637862 0.1678172 0.4698649 +0.3795513 0.1678172 0.4698649 +0.3944623 0.1678172 0.4698649 +0.4085988 0.1678172 0.4698649 +0.4220313 0.1678172 0.4698649 +0.4348222 0.1678172 0.4698649 +0.4470264 0.1678172 0.4698649 +0.4586928 0.1678172 0.4698649 +0.4698649 0.1678172 0.4698649 +0.4805811 0.1678172 0.4698649 +0.490876 0.1678172 0.4698649 +0.5007803 0.1678172 0.4698649 +0.510322 0.1678172 0.4698649 +0.5195258 0.1678172 0.4698649 +0.5284142 0.1678172 0.4698649 +0.5370079 0.1678172 0.4698649 +0.5453253 0.1678172 0.4698649 +0.5533834 0.1678172 0.4698649 +0.5611974 0.1678172 0.4698649 +0.5687816 0.1678172 0.4698649 +0.092819 0.1950164 0.4698649 +0.1056428 0.1950164 0.4698649 +0.1201537 0.1950164 0.4698649 +0.1409607 0.1950164 0.4698649 +0.1678172 0.1950164 0.4698649 +0.1950164 0.1950164 0.4698649 +0.2210581 0.1950164 0.4698649 +0.245636 0.1950164 0.4698649 +0.2686816 0.1950164 0.4698649 +0.2902431 0.1950164 0.4698649 +0.3104189 0.1950164 0.4698649 +0.3293248 0.1950164 0.4698649 +0.3470774 0.1950164 0.4698649 +0.3637862 0.1950164 0.4698649 +0.3795513 0.1950164 0.4698649 +0.3944623 0.1950164 0.4698649 +0.4085988 0.1950164 0.4698649 +0.4220313 0.1950164 0.4698649 +0.4348222 0.1950164 0.4698649 +0.4470264 0.1950164 0.4698649 +0.4586928 0.1950164 0.4698649 +0.4698649 0.1950164 0.4698649 +0.4805811 0.1950164 0.4698649 +0.490876 0.1950164 0.4698649 +0.5007803 0.1950164 0.4698649 +0.510322 0.1950164 0.4698649 +0.5195258 0.1950164 0.4698649 +0.5284142 0.1950164 0.4698649 +0.5370079 0.1950164 0.4698649 +0.5453253 0.1950164 0.4698649 +0.5533834 0.1950164 0.4698649 +0.5611974 0.1950164 0.4698649 +0.5687816 0.1950164 0.4698649 +0.092819 0.2210581 0.4698649 +0.1056428 0.2210581 0.4698649 +0.1201537 0.2210581 0.4698649 +0.1409607 0.2210581 0.4698649 +0.1678172 0.2210581 0.4698649 +0.1950164 0.2210581 0.4698649 +0.2210581 0.2210581 0.4698649 +0.245636 0.2210581 0.4698649 +0.2686816 0.2210581 0.4698649 +0.2902431 0.2210581 0.4698649 +0.3104189 0.2210581 0.4698649 +0.3293248 0.2210581 0.4698649 +0.3470774 0.2210581 0.4698649 +0.3637862 0.2210581 0.4698649 +0.3795513 0.2210581 0.4698649 +0.3944623 0.2210581 0.4698649 +0.4085988 0.2210581 0.4698649 +0.4220313 0.2210581 0.4698649 +0.4348222 0.2210581 0.4698649 +0.4470264 0.2210581 0.4698649 +0.4586928 0.2210581 0.4698649 +0.4698649 0.2210581 0.4698649 +0.4805811 0.2210581 0.4698649 +0.490876 0.2210581 0.4698649 +0.5007803 0.2210581 0.4698649 +0.510322 0.2210581 0.4698649 +0.5195258 0.2210581 0.4698649 +0.5284142 0.2210581 0.4698649 +0.5370079 0.2210581 0.4698649 +0.5453253 0.2210581 0.4698649 +0.5533834 0.2210581 0.4698649 +0.5611974 0.2210581 0.4698649 +0.5687816 0.2210581 0.4698649 +0.092819 0.245636 0.4698649 +0.1056428 0.245636 0.4698649 +0.1201537 0.245636 0.4698649 +0.1409607 0.245636 0.4698649 +0.1678172 0.245636 0.4698649 +0.1950164 0.245636 0.4698649 +0.2210581 0.245636 0.4698649 +0.245636 0.245636 0.4698649 +0.2686816 0.245636 0.4698649 +0.2902431 0.245636 0.4698649 +0.3104189 0.245636 0.4698649 +0.3293248 0.245636 0.4698649 +0.3470774 0.245636 0.4698649 +0.3637862 0.245636 0.4698649 +0.3795513 0.245636 0.4698649 +0.3944623 0.245636 0.4698649 +0.4085988 0.245636 0.4698649 +0.4220313 0.245636 0.4698649 +0.4348222 0.245636 0.4698649 +0.4470264 0.245636 0.4698649 +0.4586928 0.245636 0.4698649 +0.4698649 0.245636 0.4698649 +0.4805811 0.245636 0.4698649 +0.490876 0.245636 0.4698649 +0.5007803 0.245636 0.4698649 +0.510322 0.245636 0.4698649 +0.5195258 0.245636 0.4698649 +0.5284142 0.245636 0.4698649 +0.5370079 0.245636 0.4698649 +0.5453253 0.245636 0.4698649 +0.5533834 0.245636 0.4698649 +0.5611974 0.245636 0.4698649 +0.5687816 0.245636 0.4698649 +0.092819 0.2686816 0.4698649 +0.1056428 0.2686816 0.4698649 +0.1201537 0.2686816 0.4698649 +0.1409607 0.2686816 0.4698649 +0.1678172 0.2686816 0.4698649 +0.1950164 0.2686816 0.4698649 +0.2210581 0.2686816 0.4698649 +0.245636 0.2686816 0.4698649 +0.2686816 0.2686816 0.4698649 +0.2902431 0.2686816 0.4698649 +0.3104189 0.2686816 0.4698649 +0.3293248 0.2686816 0.4698649 +0.3470774 0.2686816 0.4698649 +0.3637862 0.2686816 0.4698649 +0.3795513 0.2686816 0.4698649 +0.3944623 0.2686816 0.4698649 +0.4085988 0.2686816 0.4698649 +0.4220313 0.2686816 0.4698649 +0.4348222 0.2686816 0.4698649 +0.4470264 0.2686816 0.4698649 +0.4586928 0.2686816 0.4698649 +0.4698649 0.2686816 0.4698649 +0.4805811 0.2686816 0.4698649 +0.490876 0.2686816 0.4698649 +0.5007803 0.2686816 0.4698649 +0.510322 0.2686816 0.4698649 +0.5195258 0.2686816 0.4698649 +0.5284142 0.2686816 0.4698649 +0.5370079 0.2686816 0.4698649 +0.5453253 0.2686816 0.4698649 +0.5533834 0.2686816 0.4698649 +0.5611974 0.2686816 0.4698649 +0.5687816 0.2686816 0.4698649 +0.092819 0.2902431 0.4698649 +0.1056428 0.2902431 0.4698649 +0.1201537 0.2902431 0.4698649 +0.1409607 0.2902431 0.4698649 +0.1678172 0.2902431 0.4698649 +0.1950164 0.2902431 0.4698649 +0.2210581 0.2902431 0.4698649 +0.245636 0.2902431 0.4698649 +0.2686816 0.2902431 0.4698649 +0.2902431 0.2902431 0.4698649 +0.3104189 0.2902431 0.4698649 +0.3293248 0.2902431 0.4698649 +0.3470774 0.2902431 0.4698649 +0.3637862 0.2902431 0.4698649 +0.3795513 0.2902431 0.4698649 +0.3944623 0.2902431 0.4698649 +0.4085988 0.2902431 0.4698649 +0.4220313 0.2902431 0.4698649 +0.4348222 0.2902431 0.4698649 +0.4470264 0.2902431 0.4698649 +0.4586928 0.2902431 0.4698649 +0.4698649 0.2902431 0.4698649 +0.4805811 0.2902431 0.4698649 +0.490876 0.2902431 0.4698649 +0.5007803 0.2902431 0.4698649 +0.510322 0.2902431 0.4698649 +0.5195258 0.2902431 0.4698649 +0.5284142 0.2902431 0.4698649 +0.5370079 0.2902431 0.4698649 +0.5453253 0.2902431 0.4698649 +0.5533834 0.2902431 0.4698649 +0.5611974 0.2902431 0.4698649 +0.5687816 0.2902431 0.4698649 +0.092819 0.3104189 0.4698649 +0.1056428 0.3104189 0.4698649 +0.1201537 0.3104189 0.4698649 +0.1409607 0.3104189 0.4698649 +0.1678172 0.3104189 0.4698649 +0.1950164 0.3104189 0.4698649 +0.2210581 0.3104189 0.4698649 +0.245636 0.3104189 0.4698649 +0.2686816 0.3104189 0.4698649 +0.2902431 0.3104189 0.4698649 +0.3104189 0.3104189 0.4698649 +0.3293248 0.3104189 0.4698649 +0.3470774 0.3104189 0.4698649 +0.3637862 0.3104189 0.4698649 +0.3795513 0.3104189 0.4698649 +0.3944623 0.3104189 0.4698649 +0.4085988 0.3104189 0.4698649 +0.4220313 0.3104189 0.4698649 +0.4348222 0.3104189 0.4698649 +0.4470264 0.3104189 0.4698649 +0.4586928 0.3104189 0.4698649 +0.4698649 0.3104189 0.4698649 +0.4805811 0.3104189 0.4698649 +0.490876 0.3104189 0.4698649 +0.5007803 0.3104189 0.4698649 +0.510322 0.3104189 0.4698649 +0.5195258 0.3104189 0.4698649 +0.5284142 0.3104189 0.4698649 +0.5370079 0.3104189 0.4698649 +0.5453253 0.3104189 0.4698649 +0.5533834 0.3104189 0.4698649 +0.5611974 0.3104189 0.4698649 +0.5687816 0.3104189 0.4698649 +0.092819 0.3293248 0.4698649 +0.1056428 0.3293248 0.4698649 +0.1201537 0.3293248 0.4698649 +0.1409607 0.3293248 0.4698649 +0.1678172 0.3293248 0.4698649 +0.1950164 0.3293248 0.4698649 +0.2210581 0.3293248 0.4698649 +0.245636 0.3293248 0.4698649 +0.2686816 0.3293248 0.4698649 +0.2902431 0.3293248 0.4698649 +0.3104189 0.3293248 0.4698649 +0.3293248 0.3293248 0.4698649 +0.3470774 0.3293248 0.4698649 +0.3637862 0.3293248 0.4698649 +0.3795513 0.3293248 0.4698649 +0.3944623 0.3293248 0.4698649 +0.4085988 0.3293248 0.4698649 +0.4220313 0.3293248 0.4698649 +0.4348222 0.3293248 0.4698649 +0.4470264 0.3293248 0.4698649 +0.4586928 0.3293248 0.4698649 +0.4698649 0.3293248 0.4698649 +0.4805811 0.3293248 0.4698649 +0.490876 0.3293248 0.4698649 +0.5007803 0.3293248 0.4698649 +0.510322 0.3293248 0.4698649 +0.5195258 0.3293248 0.4698649 +0.5284142 0.3293248 0.4698649 +0.5370079 0.3293248 0.4698649 +0.5453253 0.3293248 0.4698649 +0.5533834 0.3293248 0.4698649 +0.5611974 0.3293248 0.4698649 +0.5687816 0.3293248 0.4698649 +0.092819 0.3470774 0.4698649 +0.1056428 0.3470774 0.4698649 +0.1201537 0.3470774 0.4698649 +0.1409607 0.3470774 0.4698649 +0.1678172 0.3470774 0.4698649 +0.1950164 0.3470774 0.4698649 +0.2210581 0.3470774 0.4698649 +0.245636 0.3470774 0.4698649 +0.2686816 0.3470774 0.4698649 +0.2902431 0.3470774 0.4698649 +0.3104189 0.3470774 0.4698649 +0.3293248 0.3470774 0.4698649 +0.3470774 0.3470774 0.4698649 +0.3637862 0.3470774 0.4698649 +0.3795513 0.3470774 0.4698649 +0.3944623 0.3470774 0.4698649 +0.4085988 0.3470774 0.4698649 +0.4220313 0.3470774 0.4698649 +0.4348222 0.3470774 0.4698649 +0.4470264 0.3470774 0.4698649 +0.4586928 0.3470774 0.4698649 +0.4698649 0.3470774 0.4698649 +0.4805811 0.3470774 0.4698649 +0.490876 0.3470774 0.4698649 +0.5007803 0.3470774 0.4698649 +0.510322 0.3470774 0.4698649 +0.5195258 0.3470774 0.4698649 +0.5284142 0.3470774 0.4698649 +0.5370079 0.3470774 0.4698649 +0.5453253 0.3470774 0.4698649 +0.5533834 0.3470774 0.4698649 +0.5611974 0.3470774 0.4698649 +0.5687816 0.3470774 0.4698649 +0.092819 0.3637862 0.4698649 +0.1056428 0.3637862 0.4698649 +0.1201537 0.3637862 0.4698649 +0.1409607 0.3637862 0.4698649 +0.1678172 0.3637862 0.4698649 +0.1950164 0.3637862 0.4698649 +0.2210581 0.3637862 0.4698649 +0.245636 0.3637862 0.4698649 +0.2686816 0.3637862 0.4698649 +0.2902431 0.3637862 0.4698649 +0.3104189 0.3637862 0.4698649 +0.3293248 0.3637862 0.4698649 +0.3470774 0.3637862 0.4698649 +0.3637862 0.3637862 0.4698649 +0.3795513 0.3637862 0.4698649 +0.3944623 0.3637862 0.4698649 +0.4085988 0.3637862 0.4698649 +0.4220313 0.3637862 0.4698649 +0.4348222 0.3637862 0.4698649 +0.4470264 0.3637862 0.4698649 +0.4586928 0.3637862 0.4698649 +0.4698649 0.3637862 0.4698649 +0.4805811 0.3637862 0.4698649 +0.490876 0.3637862 0.4698649 +0.5007803 0.3637862 0.4698649 +0.510322 0.3637862 0.4698649 +0.5195258 0.3637862 0.4698649 +0.5284142 0.3637862 0.4698649 +0.5370079 0.3637862 0.4698649 +0.5453253 0.3637862 0.4698649 +0.5533834 0.3637862 0.4698649 +0.5611974 0.3637862 0.4698649 +0.5687816 0.3637862 0.4698649 +0.092819 0.3795513 0.4698649 +0.1056428 0.3795513 0.4698649 +0.1201537 0.3795513 0.4698649 +0.1409607 0.3795513 0.4698649 +0.1678172 0.3795513 0.4698649 +0.1950164 0.3795513 0.4698649 +0.2210581 0.3795513 0.4698649 +0.245636 0.3795513 0.4698649 +0.2686816 0.3795513 0.4698649 +0.2902431 0.3795513 0.4698649 +0.3104189 0.3795513 0.4698649 +0.3293248 0.3795513 0.4698649 +0.3470774 0.3795513 0.4698649 +0.3637862 0.3795513 0.4698649 +0.3795513 0.3795513 0.4698649 +0.3944623 0.3795513 0.4698649 +0.4085988 0.3795513 0.4698649 +0.4220313 0.3795513 0.4698649 +0.4348222 0.3795513 0.4698649 +0.4470264 0.3795513 0.4698649 +0.4586928 0.3795513 0.4698649 +0.4698649 0.3795513 0.4698649 +0.4805811 0.3795513 0.4698649 +0.490876 0.3795513 0.4698649 +0.5007803 0.3795513 0.4698649 +0.510322 0.3795513 0.4698649 +0.5195258 0.3795513 0.4698649 +0.5284142 0.3795513 0.4698649 +0.5370079 0.3795513 0.4698649 +0.5453253 0.3795513 0.4698649 +0.5533834 0.3795513 0.4698649 +0.5611974 0.3795513 0.4698649 +0.5687816 0.3795513 0.4698649 +0.092819 0.3944623 0.4698649 +0.1056428 0.3944623 0.4698649 +0.1201537 0.3944623 0.4698649 +0.1409607 0.3944623 0.4698649 +0.1678172 0.3944623 0.4698649 +0.1950164 0.3944623 0.4698649 +0.2210581 0.3944623 0.4698649 +0.245636 0.3944623 0.4698649 +0.2686816 0.3944623 0.4698649 +0.2902431 0.3944623 0.4698649 +0.3104189 0.3944623 0.4698649 +0.3293248 0.3944623 0.4698649 +0.3470774 0.3944623 0.4698649 +0.3637862 0.3944623 0.4698649 +0.3795513 0.3944623 0.4698649 +0.3944623 0.3944623 0.4698649 +0.4085988 0.3944623 0.4698649 +0.4220313 0.3944623 0.4698649 +0.4348222 0.3944623 0.4698649 +0.4470264 0.3944623 0.4698649 +0.4586928 0.3944623 0.4698649 +0.4698649 0.3944623 0.4698649 +0.4805811 0.3944623 0.4698649 +0.490876 0.3944623 0.4698649 +0.5007803 0.3944623 0.4698649 +0.510322 0.3944623 0.4698649 +0.5195258 0.3944623 0.4698649 +0.5284142 0.3944623 0.4698649 +0.5370079 0.3944623 0.4698649 +0.5453253 0.3944623 0.4698649 +0.5533834 0.3944623 0.4698649 +0.5611974 0.3944623 0.4698649 +0.5687816 0.3944623 0.4698649 +0.092819 0.4085988 0.4698649 +0.1056428 0.4085988 0.4698649 +0.1201537 0.4085988 0.4698649 +0.1409607 0.4085988 0.4698649 +0.1678172 0.4085988 0.4698649 +0.1950164 0.4085988 0.4698649 +0.2210581 0.4085988 0.4698649 +0.245636 0.4085988 0.4698649 +0.2686816 0.4085988 0.4698649 +0.2902431 0.4085988 0.4698649 +0.3104189 0.4085988 0.4698649 +0.3293248 0.4085988 0.4698649 +0.3470774 0.4085988 0.4698649 +0.3637862 0.4085988 0.4698649 +0.3795513 0.4085988 0.4698649 +0.3944623 0.4085988 0.4698649 +0.4085988 0.4085988 0.4698649 +0.4220313 0.4085988 0.4698649 +0.4348222 0.4085988 0.4698649 +0.4470264 0.4085988 0.4698649 +0.4586928 0.4085988 0.4698649 +0.4698649 0.4085988 0.4698649 +0.4805811 0.4085988 0.4698649 +0.490876 0.4085988 0.4698649 +0.5007803 0.4085988 0.4698649 +0.510322 0.4085988 0.4698649 +0.5195258 0.4085988 0.4698649 +0.5284142 0.4085988 0.4698649 +0.5370079 0.4085988 0.4698649 +0.5453253 0.4085988 0.4698649 +0.5533834 0.4085988 0.4698649 +0.5611974 0.4085988 0.4698649 +0.5687816 0.4085988 0.4698649 +0.092819 0.4220313 0.4698649 +0.1056428 0.4220313 0.4698649 +0.1201537 0.4220313 0.4698649 +0.1409607 0.4220313 0.4698649 +0.1678172 0.4220313 0.4698649 +0.1950164 0.4220313 0.4698649 +0.2210581 0.4220313 0.4698649 +0.245636 0.4220313 0.4698649 +0.2686816 0.4220313 0.4698649 +0.2902431 0.4220313 0.4698649 +0.3104189 0.4220313 0.4698649 +0.3293248 0.4220313 0.4698649 +0.3470774 0.4220313 0.4698649 +0.3637862 0.4220313 0.4698649 +0.3795513 0.4220313 0.4698649 +0.3944623 0.4220313 0.4698649 +0.4085988 0.4220313 0.4698649 +0.4220313 0.4220313 0.4698649 +0.4348222 0.4220313 0.4698649 +0.4470264 0.4220313 0.4698649 +0.4586928 0.4220313 0.4698649 +0.4698649 0.4220313 0.4698649 +0.4805811 0.4220313 0.4698649 +0.490876 0.4220313 0.4698649 +0.5007803 0.4220313 0.4698649 +0.510322 0.4220313 0.4698649 +0.5195258 0.4220313 0.4698649 +0.5284142 0.4220313 0.4698649 +0.5370079 0.4220313 0.4698649 +0.5453253 0.4220313 0.4698649 +0.5533834 0.4220313 0.4698649 +0.5611974 0.4220313 0.4698649 +0.5687816 0.4220313 0.4698649 +0.092819 0.4348222 0.4698649 +0.1056428 0.4348222 0.4698649 +0.1201537 0.4348222 0.4698649 +0.1409607 0.4348222 0.4698649 +0.1678172 0.4348222 0.4698649 +0.1950164 0.4348222 0.4698649 +0.2210581 0.4348222 0.4698649 +0.245636 0.4348222 0.4698649 +0.2686816 0.4348222 0.4698649 +0.2902431 0.4348222 0.4698649 +0.3104189 0.4348222 0.4698649 +0.3293248 0.4348222 0.4698649 +0.3470774 0.4348222 0.4698649 +0.3637862 0.4348222 0.4698649 +0.3795513 0.4348222 0.4698649 +0.3944623 0.4348222 0.4698649 +0.4085988 0.4348222 0.4698649 +0.4220313 0.4348222 0.4698649 +0.4348222 0.4348222 0.4698649 +0.4470264 0.4348222 0.4698649 +0.4586928 0.4348222 0.4698649 +0.4698649 0.4348222 0.4698649 +0.4805811 0.4348222 0.4698649 +0.490876 0.4348222 0.4698649 +0.5007803 0.4348222 0.4698649 +0.510322 0.4348222 0.4698649 +0.5195258 0.4348222 0.4698649 +0.5284142 0.4348222 0.4698649 +0.5370079 0.4348222 0.4698649 +0.5453253 0.4348222 0.4698649 +0.5533834 0.4348222 0.4698649 +0.5611974 0.4348222 0.4698649 +0.5687816 0.4348222 0.4698649 +0.092819 0.4470264 0.4698649 +0.1056428 0.4470264 0.4698649 +0.1201537 0.4470264 0.4698649 +0.1409607 0.4470264 0.4698649 +0.1678172 0.4470264 0.4698649 +0.1950164 0.4470264 0.4698649 +0.2210581 0.4470264 0.4698649 +0.245636 0.4470264 0.4698649 +0.2686816 0.4470264 0.4698649 +0.2902431 0.4470264 0.4698649 +0.3104189 0.4470264 0.4698649 +0.3293248 0.4470264 0.4698649 +0.3470774 0.4470264 0.4698649 +0.3637862 0.4470264 0.4698649 +0.3795513 0.4470264 0.4698649 +0.3944623 0.4470264 0.4698649 +0.4085988 0.4470264 0.4698649 +0.4220313 0.4470264 0.4698649 +0.4348222 0.4470264 0.4698649 +0.4470264 0.4470264 0.4698649 +0.4586928 0.4470264 0.4698649 +0.4698649 0.4470264 0.4698649 +0.4805811 0.4470264 0.4698649 +0.490876 0.4470264 0.4698649 +0.5007803 0.4470264 0.4698649 +0.510322 0.4470264 0.4698649 +0.5195258 0.4470264 0.4698649 +0.5284142 0.4470264 0.4698649 +0.5370079 0.4470264 0.4698649 +0.5453253 0.4470264 0.4698649 +0.5533834 0.4470264 0.4698649 +0.5611974 0.4470264 0.4698649 +0.5687816 0.4470264 0.4698649 +0.092819 0.4586928 0.4698649 +0.1056428 0.4586928 0.4698649 +0.1201537 0.4586928 0.4698649 +0.1409607 0.4586928 0.4698649 +0.1678172 0.4586928 0.4698649 +0.1950164 0.4586928 0.4698649 +0.2210581 0.4586928 0.4698649 +0.245636 0.4586928 0.4698649 +0.2686816 0.4586928 0.4698649 +0.2902431 0.4586928 0.4698649 +0.3104189 0.4586928 0.4698649 +0.3293248 0.4586928 0.4698649 +0.3470774 0.4586928 0.4698649 +0.3637862 0.4586928 0.4698649 +0.3795513 0.4586928 0.4698649 +0.3944623 0.4586928 0.4698649 +0.4085988 0.4586928 0.4698649 +0.4220313 0.4586928 0.4698649 +0.4348222 0.4586928 0.4698649 +0.4470264 0.4586928 0.4698649 +0.4586928 0.4586928 0.4698649 +0.4698649 0.4586928 0.4698649 +0.4805811 0.4586928 0.4698649 +0.490876 0.4586928 0.4698649 +0.5007803 0.4586928 0.4698649 +0.510322 0.4586928 0.4698649 +0.5195258 0.4586928 0.4698649 +0.5284142 0.4586928 0.4698649 +0.5370079 0.4586928 0.4698649 +0.5453253 0.4586928 0.4698649 +0.5533834 0.4586928 0.4698649 +0.5611974 0.4586928 0.4698649 +0.5687816 0.4586928 0.4698649 +0.092819 0.4698649 0.4698649 +0.1056428 0.4698649 0.4698649 +0.1201537 0.4698649 0.4698649 +0.1409607 0.4698649 0.4698649 +0.1678172 0.4698649 0.4698649 +0.1950164 0.4698649 0.4698649 +0.2210581 0.4698649 0.4698649 +0.245636 0.4698649 0.4698649 +0.2686816 0.4698649 0.4698649 +0.2902431 0.4698649 0.4698649 +0.3104189 0.4698649 0.4698649 +0.3293248 0.4698649 0.4698649 +0.3470774 0.4698649 0.4698649 +0.3637862 0.4698649 0.4698649 +0.3795513 0.4698649 0.4698649 +0.3944623 0.4698649 0.4698649 +0.4085988 0.4698649 0.4698649 +0.4220313 0.4698649 0.4698649 +0.4348222 0.4698649 0.4698649 +0.4470264 0.4698649 0.4698649 +0.4586928 0.4698649 0.4698649 +0.4698649 0.4698649 0.4698649 +0.4805811 0.4698649 0.4698649 +0.490876 0.4698649 0.4698649 +0.5007803 0.4698649 0.4698649 +0.510322 0.4698649 0.4698649 +0.5195258 0.4698649 0.4698649 +0.5284142 0.4698649 0.4698649 +0.5370079 0.4698649 0.4698649 +0.5453253 0.4698649 0.4698649 +0.5533834 0.4698649 0.4698649 +0.5611974 0.4698649 0.4698649 +0.5687816 0.4698649 0.4698649 +0.092819 0.4805811 0.4698649 +0.1056428 0.4805811 0.4698649 +0.1201537 0.4805811 0.4698649 +0.1409607 0.4805811 0.4698649 +0.1678172 0.4805811 0.4698649 +0.1950164 0.4805811 0.4698649 +0.2210581 0.4805811 0.4698649 +0.245636 0.4805811 0.4698649 +0.2686816 0.4805811 0.4698649 +0.2902431 0.4805811 0.4698649 +0.3104189 0.4805811 0.4698649 +0.3293248 0.4805811 0.4698649 +0.3470774 0.4805811 0.4698649 +0.3637862 0.4805811 0.4698649 +0.3795513 0.4805811 0.4698649 +0.3944623 0.4805811 0.4698649 +0.4085988 0.4805811 0.4698649 +0.4220313 0.4805811 0.4698649 +0.4348222 0.4805811 0.4698649 +0.4470264 0.4805811 0.4698649 +0.4586928 0.4805811 0.4698649 +0.4698649 0.4805811 0.4698649 +0.4805811 0.4805811 0.4698649 +0.490876 0.4805811 0.4698649 +0.5007803 0.4805811 0.4698649 +0.510322 0.4805811 0.4698649 +0.5195258 0.4805811 0.4698649 +0.5284142 0.4805811 0.4698649 +0.5370079 0.4805811 0.4698649 +0.5453253 0.4805811 0.4698649 +0.5533834 0.4805811 0.4698649 +0.5611974 0.4805811 0.4698649 +0.5687816 0.4805811 0.4698649 +0.092819 0.490876 0.4698649 +0.1056428 0.490876 0.4698649 +0.1201537 0.490876 0.4698649 +0.1409607 0.490876 0.4698649 +0.1678172 0.490876 0.4698649 +0.1950164 0.490876 0.4698649 +0.2210581 0.490876 0.4698649 +0.245636 0.490876 0.4698649 +0.2686816 0.490876 0.4698649 +0.2902431 0.490876 0.4698649 +0.3104189 0.490876 0.4698649 +0.3293248 0.490876 0.4698649 +0.3470774 0.490876 0.4698649 +0.3637862 0.490876 0.4698649 +0.3795513 0.490876 0.4698649 +0.3944623 0.490876 0.4698649 +0.4085988 0.490876 0.4698649 +0.4220313 0.490876 0.4698649 +0.4348222 0.490876 0.4698649 +0.4470264 0.490876 0.4698649 +0.4586928 0.490876 0.4698649 +0.4698649 0.490876 0.4698649 +0.4805811 0.490876 0.4698649 +0.490876 0.490876 0.4698649 +0.5007803 0.490876 0.4698649 +0.510322 0.490876 0.4698649 +0.5195258 0.490876 0.4698649 +0.5284142 0.490876 0.4698649 +0.5370079 0.490876 0.4698649 +0.5453253 0.490876 0.4698649 +0.5533834 0.490876 0.4698649 +0.5611974 0.490876 0.4698649 +0.5687816 0.490876 0.4698649 +0.092819 0.5007803 0.4698649 +0.1056428 0.5007803 0.4698649 +0.1201537 0.5007803 0.4698649 +0.1409607 0.5007803 0.4698649 +0.1678172 0.5007803 0.4698649 +0.1950164 0.5007803 0.4698649 +0.2210581 0.5007803 0.4698649 +0.245636 0.5007803 0.4698649 +0.2686816 0.5007803 0.4698649 +0.2902431 0.5007803 0.4698649 +0.3104189 0.5007803 0.4698649 +0.3293248 0.5007803 0.4698649 +0.3470774 0.5007803 0.4698649 +0.3637862 0.5007803 0.4698649 +0.3795513 0.5007803 0.4698649 +0.3944623 0.5007803 0.4698649 +0.4085988 0.5007803 0.4698649 +0.4220313 0.5007803 0.4698649 +0.4348222 0.5007803 0.4698649 +0.4470264 0.5007803 0.4698649 +0.4586928 0.5007803 0.4698649 +0.4698649 0.5007803 0.4698649 +0.4805811 0.5007803 0.4698649 +0.490876 0.5007803 0.4698649 +0.5007803 0.5007803 0.4698649 +0.510322 0.5007803 0.4698649 +0.5195258 0.5007803 0.4698649 +0.5284142 0.5007803 0.4698649 +0.5370079 0.5007803 0.4698649 +0.5453253 0.5007803 0.4698649 +0.5533834 0.5007803 0.4698649 +0.5611974 0.5007803 0.4698649 +0.5687816 0.5007803 0.4698649 +0.092819 0.510322 0.4698649 +0.1056428 0.510322 0.4698649 +0.1201537 0.510322 0.4698649 +0.1409607 0.510322 0.4698649 +0.1678172 0.510322 0.4698649 +0.1950164 0.510322 0.4698649 +0.2210581 0.510322 0.4698649 +0.245636 0.510322 0.4698649 +0.2686816 0.510322 0.4698649 +0.2902431 0.510322 0.4698649 +0.3104189 0.510322 0.4698649 +0.3293248 0.510322 0.4698649 +0.3470774 0.510322 0.4698649 +0.3637862 0.510322 0.4698649 +0.3795513 0.510322 0.4698649 +0.3944623 0.510322 0.4698649 +0.4085988 0.510322 0.4698649 +0.4220313 0.510322 0.4698649 +0.4348222 0.510322 0.4698649 +0.4470264 0.510322 0.4698649 +0.4586928 0.510322 0.4698649 +0.4698649 0.510322 0.4698649 +0.4805811 0.510322 0.4698649 +0.490876 0.510322 0.4698649 +0.5007803 0.510322 0.4698649 +0.510322 0.510322 0.4698649 +0.5195258 0.510322 0.4698649 +0.5284142 0.510322 0.4698649 +0.5370079 0.510322 0.4698649 +0.5453253 0.510322 0.4698649 +0.5533834 0.510322 0.4698649 +0.5611974 0.510322 0.4698649 +0.5687816 0.510322 0.4698649 +0.092819 0.5195258 0.4698649 +0.1056428 0.5195258 0.4698649 +0.1201537 0.5195258 0.4698649 +0.1409607 0.5195258 0.4698649 +0.1678172 0.5195258 0.4698649 +0.1950164 0.5195258 0.4698649 +0.2210581 0.5195258 0.4698649 +0.245636 0.5195258 0.4698649 +0.2686816 0.5195258 0.4698649 +0.2902431 0.5195258 0.4698649 +0.3104189 0.5195258 0.4698649 +0.3293248 0.5195258 0.4698649 +0.3470774 0.5195258 0.4698649 +0.3637862 0.5195258 0.4698649 +0.3795513 0.5195258 0.4698649 +0.3944623 0.5195258 0.4698649 +0.4085988 0.5195258 0.4698649 +0.4220313 0.5195258 0.4698649 +0.4348222 0.5195258 0.4698649 +0.4470264 0.5195258 0.4698649 +0.4586928 0.5195258 0.4698649 +0.4698649 0.5195258 0.4698649 +0.4805811 0.5195258 0.4698649 +0.490876 0.5195258 0.4698649 +0.5007803 0.5195258 0.4698649 +0.510322 0.5195258 0.4698649 +0.5195258 0.5195258 0.4698649 +0.5284142 0.5195258 0.4698649 +0.5370079 0.5195258 0.4698649 +0.5453253 0.5195258 0.4698649 +0.5533834 0.5195258 0.4698649 +0.5611974 0.5195258 0.4698649 +0.5687816 0.5195258 0.4698649 +0.092819 0.5284142 0.4698649 +0.1056428 0.5284142 0.4698649 +0.1201537 0.5284142 0.4698649 +0.1409607 0.5284142 0.4698649 +0.1678172 0.5284142 0.4698649 +0.1950164 0.5284142 0.4698649 +0.2210581 0.5284142 0.4698649 +0.245636 0.5284142 0.4698649 +0.2686816 0.5284142 0.4698649 +0.2902431 0.5284142 0.4698649 +0.3104189 0.5284142 0.4698649 +0.3293248 0.5284142 0.4698649 +0.3470774 0.5284142 0.4698649 +0.3637862 0.5284142 0.4698649 +0.3795513 0.5284142 0.4698649 +0.3944623 0.5284142 0.4698649 +0.4085988 0.5284142 0.4698649 +0.4220313 0.5284142 0.4698649 +0.4348222 0.5284142 0.4698649 +0.4470264 0.5284142 0.4698649 +0.4586928 0.5284142 0.4698649 +0.4698649 0.5284142 0.4698649 +0.4805811 0.5284142 0.4698649 +0.490876 0.5284142 0.4698649 +0.5007803 0.5284142 0.4698649 +0.510322 0.5284142 0.4698649 +0.5195258 0.5284142 0.4698649 +0.5284142 0.5284142 0.4698649 +0.5370079 0.5284142 0.4698649 +0.5453253 0.5284142 0.4698649 +0.5533834 0.5284142 0.4698649 +0.5611974 0.5284142 0.4698649 +0.5687816 0.5284142 0.4698649 +0.092819 0.5370079 0.4698649 +0.1056428 0.5370079 0.4698649 +0.1201537 0.5370079 0.4698649 +0.1409607 0.5370079 0.4698649 +0.1678172 0.5370079 0.4698649 +0.1950164 0.5370079 0.4698649 +0.2210581 0.5370079 0.4698649 +0.245636 0.5370079 0.4698649 +0.2686816 0.5370079 0.4698649 +0.2902431 0.5370079 0.4698649 +0.3104189 0.5370079 0.4698649 +0.3293248 0.5370079 0.4698649 +0.3470774 0.5370079 0.4698649 +0.3637862 0.5370079 0.4698649 +0.3795513 0.5370079 0.4698649 +0.3944623 0.5370079 0.4698649 +0.4085988 0.5370079 0.4698649 +0.4220313 0.5370079 0.4698649 +0.4348222 0.5370079 0.4698649 +0.4470264 0.5370079 0.4698649 +0.4586928 0.5370079 0.4698649 +0.4698649 0.5370079 0.4698649 +0.4805811 0.5370079 0.4698649 +0.490876 0.5370079 0.4698649 +0.5007803 0.5370079 0.4698649 +0.510322 0.5370079 0.4698649 +0.5195258 0.5370079 0.4698649 +0.5284142 0.5370079 0.4698649 +0.5370079 0.5370079 0.4698649 +0.5453253 0.5370079 0.4698649 +0.5533834 0.5370079 0.4698649 +0.5611974 0.5370079 0.4698649 +0.5687816 0.5370079 0.4698649 +0.092819 0.5453253 0.4698649 +0.1056428 0.5453253 0.4698649 +0.1201537 0.5453253 0.4698649 +0.1409607 0.5453253 0.4698649 +0.1678172 0.5453253 0.4698649 +0.1950164 0.5453253 0.4698649 +0.2210581 0.5453253 0.4698649 +0.245636 0.5453253 0.4698649 +0.2686816 0.5453253 0.4698649 +0.2902431 0.5453253 0.4698649 +0.3104189 0.5453253 0.4698649 +0.3293248 0.5453253 0.4698649 +0.3470774 0.5453253 0.4698649 +0.3637862 0.5453253 0.4698649 +0.3795513 0.5453253 0.4698649 +0.3944623 0.5453253 0.4698649 +0.4085988 0.5453253 0.4698649 +0.4220313 0.5453253 0.4698649 +0.4348222 0.5453253 0.4698649 +0.4470264 0.5453253 0.4698649 +0.4586928 0.5453253 0.4698649 +0.4698649 0.5453253 0.4698649 +0.4805811 0.5453253 0.4698649 +0.490876 0.5453253 0.4698649 +0.5007803 0.5453253 0.4698649 +0.510322 0.5453253 0.4698649 +0.5195258 0.5453253 0.4698649 +0.5284142 0.5453253 0.4698649 +0.5370079 0.5453253 0.4698649 +0.5453253 0.5453253 0.4698649 +0.5533834 0.5453253 0.4698649 +0.5611974 0.5453253 0.4698649 +0.5687816 0.5453253 0.4698649 +0.092819 0.5533834 0.4698649 +0.1056428 0.5533834 0.4698649 +0.1201537 0.5533834 0.4698649 +0.1409607 0.5533834 0.4698649 +0.1678172 0.5533834 0.4698649 +0.1950164 0.5533834 0.4698649 +0.2210581 0.5533834 0.4698649 +0.245636 0.5533834 0.4698649 +0.2686816 0.5533834 0.4698649 +0.2902431 0.5533834 0.4698649 +0.3104189 0.5533834 0.4698649 +0.3293248 0.5533834 0.4698649 +0.3470774 0.5533834 0.4698649 +0.3637862 0.5533834 0.4698649 +0.3795513 0.5533834 0.4698649 +0.3944623 0.5533834 0.4698649 +0.4085988 0.5533834 0.4698649 +0.4220313 0.5533834 0.4698649 +0.4348222 0.5533834 0.4698649 +0.4470264 0.5533834 0.4698649 +0.4586928 0.5533834 0.4698649 +0.4698649 0.5533834 0.4698649 +0.4805811 0.5533834 0.4698649 +0.490876 0.5533834 0.4698649 +0.5007803 0.5533834 0.4698649 +0.510322 0.5533834 0.4698649 +0.5195258 0.5533834 0.4698649 +0.5284142 0.5533834 0.4698649 +0.5370079 0.5533834 0.4698649 +0.5453253 0.5533834 0.4698649 +0.5533834 0.5533834 0.4698649 +0.5611974 0.5533834 0.4698649 +0.5687816 0.5533834 0.4698649 +0.092819 0.5611974 0.4698649 +0.1056428 0.5611974 0.4698649 +0.1201537 0.5611974 0.4698649 +0.1409607 0.5611974 0.4698649 +0.1678172 0.5611974 0.4698649 +0.1950164 0.5611974 0.4698649 +0.2210581 0.5611974 0.4698649 +0.245636 0.5611974 0.4698649 +0.2686816 0.5611974 0.4698649 +0.2902431 0.5611974 0.4698649 +0.3104189 0.5611974 0.4698649 +0.3293248 0.5611974 0.4698649 +0.3470774 0.5611974 0.4698649 +0.3637862 0.5611974 0.4698649 +0.3795513 0.5611974 0.4698649 +0.3944623 0.5611974 0.4698649 +0.4085988 0.5611974 0.4698649 +0.4220313 0.5611974 0.4698649 +0.4348222 0.5611974 0.4698649 +0.4470264 0.5611974 0.4698649 +0.4586928 0.5611974 0.4698649 +0.4698649 0.5611974 0.4698649 +0.4805811 0.5611974 0.4698649 +0.490876 0.5611974 0.4698649 +0.5007803 0.5611974 0.4698649 +0.510322 0.5611974 0.4698649 +0.5195258 0.5611974 0.4698649 +0.5284142 0.5611974 0.4698649 +0.5370079 0.5611974 0.4698649 +0.5453253 0.5611974 0.4698649 +0.5533834 0.5611974 0.4698649 +0.5611974 0.5611974 0.4698649 +0.5687816 0.5611974 0.4698649 +0.092819 0.5687816 0.4698649 +0.1056428 0.5687816 0.4698649 +0.1201537 0.5687816 0.4698649 +0.1409607 0.5687816 0.4698649 +0.1678172 0.5687816 0.4698649 +0.1950164 0.5687816 0.4698649 +0.2210581 0.5687816 0.4698649 +0.245636 0.5687816 0.4698649 +0.2686816 0.5687816 0.4698649 +0.2902431 0.5687816 0.4698649 +0.3104189 0.5687816 0.4698649 +0.3293248 0.5687816 0.4698649 +0.3470774 0.5687816 0.4698649 +0.3637862 0.5687816 0.4698649 +0.3795513 0.5687816 0.4698649 +0.3944623 0.5687816 0.4698649 +0.4085988 0.5687816 0.4698649 +0.4220313 0.5687816 0.4698649 +0.4348222 0.5687816 0.4698649 +0.4470264 0.5687816 0.4698649 +0.4586928 0.5687816 0.4698649 +0.4698649 0.5687816 0.4698649 +0.4805811 0.5687816 0.4698649 +0.490876 0.5687816 0.4698649 +0.5007803 0.5687816 0.4698649 +0.510322 0.5687816 0.4698649 +0.5195258 0.5687816 0.4698649 +0.5284142 0.5687816 0.4698649 +0.5370079 0.5687816 0.4698649 +0.5453253 0.5687816 0.4698649 +0.5533834 0.5687816 0.4698649 +0.5611974 0.5687816 0.4698649 +0.5687816 0.5687816 0.4698649 +0.092819 0.092819 0.4805811 +0.1056428 0.092819 0.4805811 +0.1201537 0.092819 0.4805811 +0.1409607 0.092819 0.4805811 +0.1678172 0.092819 0.4805811 +0.1950164 0.092819 0.4805811 +0.2210581 0.092819 0.4805811 +0.245636 0.092819 0.4805811 +0.2686816 0.092819 0.4805811 +0.2902431 0.092819 0.4805811 +0.3104189 0.092819 0.4805811 +0.3293248 0.092819 0.4805811 +0.3470774 0.092819 0.4805811 +0.3637862 0.092819 0.4805811 +0.3795513 0.092819 0.4805811 +0.3944623 0.092819 0.4805811 +0.4085988 0.092819 0.4805811 +0.4220313 0.092819 0.4805811 +0.4348222 0.092819 0.4805811 +0.4470264 0.092819 0.4805811 +0.4586928 0.092819 0.4805811 +0.4698649 0.092819 0.4805811 +0.4805811 0.092819 0.4805811 +0.490876 0.092819 0.4805811 +0.5007803 0.092819 0.4805811 +0.510322 0.092819 0.4805811 +0.5195258 0.092819 0.4805811 +0.5284142 0.092819 0.4805811 +0.5370079 0.092819 0.4805811 +0.5453253 0.092819 0.4805811 +0.5533834 0.092819 0.4805811 +0.5611974 0.092819 0.4805811 +0.5687816 0.092819 0.4805811 +0.092819 0.1056428 0.4805811 +0.1056428 0.1056428 0.4805811 +0.1201537 0.1056428 0.4805811 +0.1409607 0.1056428 0.4805811 +0.1678172 0.1056428 0.4805811 +0.1950164 0.1056428 0.4805811 +0.2210581 0.1056428 0.4805811 +0.245636 0.1056428 0.4805811 +0.2686816 0.1056428 0.4805811 +0.2902431 0.1056428 0.4805811 +0.3104189 0.1056428 0.4805811 +0.3293248 0.1056428 0.4805811 +0.3470774 0.1056428 0.4805811 +0.3637862 0.1056428 0.4805811 +0.3795513 0.1056428 0.4805811 +0.3944623 0.1056428 0.4805811 +0.4085988 0.1056428 0.4805811 +0.4220313 0.1056428 0.4805811 +0.4348222 0.1056428 0.4805811 +0.4470264 0.1056428 0.4805811 +0.4586928 0.1056428 0.4805811 +0.4698649 0.1056428 0.4805811 +0.4805811 0.1056428 0.4805811 +0.490876 0.1056428 0.4805811 +0.5007803 0.1056428 0.4805811 +0.510322 0.1056428 0.4805811 +0.5195258 0.1056428 0.4805811 +0.5284142 0.1056428 0.4805811 +0.5370079 0.1056428 0.4805811 +0.5453253 0.1056428 0.4805811 +0.5533834 0.1056428 0.4805811 +0.5611974 0.1056428 0.4805811 +0.5687816 0.1056428 0.4805811 +0.092819 0.1201537 0.4805811 +0.1056428 0.1201537 0.4805811 +0.1201537 0.1201537 0.4805811 +0.1409607 0.1201537 0.4805811 +0.1678172 0.1201537 0.4805811 +0.1950164 0.1201537 0.4805811 +0.2210581 0.1201537 0.4805811 +0.245636 0.1201537 0.4805811 +0.2686816 0.1201537 0.4805811 +0.2902431 0.1201537 0.4805811 +0.3104189 0.1201537 0.4805811 +0.3293248 0.1201537 0.4805811 +0.3470774 0.1201537 0.4805811 +0.3637862 0.1201537 0.4805811 +0.3795513 0.1201537 0.4805811 +0.3944623 0.1201537 0.4805811 +0.4085988 0.1201537 0.4805811 +0.4220313 0.1201537 0.4805811 +0.4348222 0.1201537 0.4805811 +0.4470264 0.1201537 0.4805811 +0.4586928 0.1201537 0.4805811 +0.4698649 0.1201537 0.4805811 +0.4805811 0.1201537 0.4805811 +0.490876 0.1201537 0.4805811 +0.5007803 0.1201537 0.4805811 +0.510322 0.1201537 0.4805811 +0.5195258 0.1201537 0.4805811 +0.5284142 0.1201537 0.4805811 +0.5370079 0.1201537 0.4805811 +0.5453253 0.1201537 0.4805811 +0.5533834 0.1201537 0.4805811 +0.5611974 0.1201537 0.4805811 +0.5687816 0.1201537 0.4805811 +0.092819 0.1409607 0.4805811 +0.1056428 0.1409607 0.4805811 +0.1201537 0.1409607 0.4805811 +0.1409607 0.1409607 0.4805811 +0.1678172 0.1409607 0.4805811 +0.1950164 0.1409607 0.4805811 +0.2210581 0.1409607 0.4805811 +0.245636 0.1409607 0.4805811 +0.2686816 0.1409607 0.4805811 +0.2902431 0.1409607 0.4805811 +0.3104189 0.1409607 0.4805811 +0.3293248 0.1409607 0.4805811 +0.3470774 0.1409607 0.4805811 +0.3637862 0.1409607 0.4805811 +0.3795513 0.1409607 0.4805811 +0.3944623 0.1409607 0.4805811 +0.4085988 0.1409607 0.4805811 +0.4220313 0.1409607 0.4805811 +0.4348222 0.1409607 0.4805811 +0.4470264 0.1409607 0.4805811 +0.4586928 0.1409607 0.4805811 +0.4698649 0.1409607 0.4805811 +0.4805811 0.1409607 0.4805811 +0.490876 0.1409607 0.4805811 +0.5007803 0.1409607 0.4805811 +0.510322 0.1409607 0.4805811 +0.5195258 0.1409607 0.4805811 +0.5284142 0.1409607 0.4805811 +0.5370079 0.1409607 0.4805811 +0.5453253 0.1409607 0.4805811 +0.5533834 0.1409607 0.4805811 +0.5611974 0.1409607 0.4805811 +0.5687816 0.1409607 0.4805811 +0.092819 0.1678172 0.4805811 +0.1056428 0.1678172 0.4805811 +0.1201537 0.1678172 0.4805811 +0.1409607 0.1678172 0.4805811 +0.1678172 0.1678172 0.4805811 +0.1950164 0.1678172 0.4805811 +0.2210581 0.1678172 0.4805811 +0.245636 0.1678172 0.4805811 +0.2686816 0.1678172 0.4805811 +0.2902431 0.1678172 0.4805811 +0.3104189 0.1678172 0.4805811 +0.3293248 0.1678172 0.4805811 +0.3470774 0.1678172 0.4805811 +0.3637862 0.1678172 0.4805811 +0.3795513 0.1678172 0.4805811 +0.3944623 0.1678172 0.4805811 +0.4085988 0.1678172 0.4805811 +0.4220313 0.1678172 0.4805811 +0.4348222 0.1678172 0.4805811 +0.4470264 0.1678172 0.4805811 +0.4586928 0.1678172 0.4805811 +0.4698649 0.1678172 0.4805811 +0.4805811 0.1678172 0.4805811 +0.490876 0.1678172 0.4805811 +0.5007803 0.1678172 0.4805811 +0.510322 0.1678172 0.4805811 +0.5195258 0.1678172 0.4805811 +0.5284142 0.1678172 0.4805811 +0.5370079 0.1678172 0.4805811 +0.5453253 0.1678172 0.4805811 +0.5533834 0.1678172 0.4805811 +0.5611974 0.1678172 0.4805811 +0.5687816 0.1678172 0.4805811 +0.092819 0.1950164 0.4805811 +0.1056428 0.1950164 0.4805811 +0.1201537 0.1950164 0.4805811 +0.1409607 0.1950164 0.4805811 +0.1678172 0.1950164 0.4805811 +0.1950164 0.1950164 0.4805811 +0.2210581 0.1950164 0.4805811 +0.245636 0.1950164 0.4805811 +0.2686816 0.1950164 0.4805811 +0.2902431 0.1950164 0.4805811 +0.3104189 0.1950164 0.4805811 +0.3293248 0.1950164 0.4805811 +0.3470774 0.1950164 0.4805811 +0.3637862 0.1950164 0.4805811 +0.3795513 0.1950164 0.4805811 +0.3944623 0.1950164 0.4805811 +0.4085988 0.1950164 0.4805811 +0.4220313 0.1950164 0.4805811 +0.4348222 0.1950164 0.4805811 +0.4470264 0.1950164 0.4805811 +0.4586928 0.1950164 0.4805811 +0.4698649 0.1950164 0.4805811 +0.4805811 0.1950164 0.4805811 +0.490876 0.1950164 0.4805811 +0.5007803 0.1950164 0.4805811 +0.510322 0.1950164 0.4805811 +0.5195258 0.1950164 0.4805811 +0.5284142 0.1950164 0.4805811 +0.5370079 0.1950164 0.4805811 +0.5453253 0.1950164 0.4805811 +0.5533834 0.1950164 0.4805811 +0.5611974 0.1950164 0.4805811 +0.5687816 0.1950164 0.4805811 +0.092819 0.2210581 0.4805811 +0.1056428 0.2210581 0.4805811 +0.1201537 0.2210581 0.4805811 +0.1409607 0.2210581 0.4805811 +0.1678172 0.2210581 0.4805811 +0.1950164 0.2210581 0.4805811 +0.2210581 0.2210581 0.4805811 +0.245636 0.2210581 0.4805811 +0.2686816 0.2210581 0.4805811 +0.2902431 0.2210581 0.4805811 +0.3104189 0.2210581 0.4805811 +0.3293248 0.2210581 0.4805811 +0.3470774 0.2210581 0.4805811 +0.3637862 0.2210581 0.4805811 +0.3795513 0.2210581 0.4805811 +0.3944623 0.2210581 0.4805811 +0.4085988 0.2210581 0.4805811 +0.4220313 0.2210581 0.4805811 +0.4348222 0.2210581 0.4805811 +0.4470264 0.2210581 0.4805811 +0.4586928 0.2210581 0.4805811 +0.4698649 0.2210581 0.4805811 +0.4805811 0.2210581 0.4805811 +0.490876 0.2210581 0.4805811 +0.5007803 0.2210581 0.4805811 +0.510322 0.2210581 0.4805811 +0.5195258 0.2210581 0.4805811 +0.5284142 0.2210581 0.4805811 +0.5370079 0.2210581 0.4805811 +0.5453253 0.2210581 0.4805811 +0.5533834 0.2210581 0.4805811 +0.5611974 0.2210581 0.4805811 +0.5687816 0.2210581 0.4805811 +0.092819 0.245636 0.4805811 +0.1056428 0.245636 0.4805811 +0.1201537 0.245636 0.4805811 +0.1409607 0.245636 0.4805811 +0.1678172 0.245636 0.4805811 +0.1950164 0.245636 0.4805811 +0.2210581 0.245636 0.4805811 +0.245636 0.245636 0.4805811 +0.2686816 0.245636 0.4805811 +0.2902431 0.245636 0.4805811 +0.3104189 0.245636 0.4805811 +0.3293248 0.245636 0.4805811 +0.3470774 0.245636 0.4805811 +0.3637862 0.245636 0.4805811 +0.3795513 0.245636 0.4805811 +0.3944623 0.245636 0.4805811 +0.4085988 0.245636 0.4805811 +0.4220313 0.245636 0.4805811 +0.4348222 0.245636 0.4805811 +0.4470264 0.245636 0.4805811 +0.4586928 0.245636 0.4805811 +0.4698649 0.245636 0.4805811 +0.4805811 0.245636 0.4805811 +0.490876 0.245636 0.4805811 +0.5007803 0.245636 0.4805811 +0.510322 0.245636 0.4805811 +0.5195258 0.245636 0.4805811 +0.5284142 0.245636 0.4805811 +0.5370079 0.245636 0.4805811 +0.5453253 0.245636 0.4805811 +0.5533834 0.245636 0.4805811 +0.5611974 0.245636 0.4805811 +0.5687816 0.245636 0.4805811 +0.092819 0.2686816 0.4805811 +0.1056428 0.2686816 0.4805811 +0.1201537 0.2686816 0.4805811 +0.1409607 0.2686816 0.4805811 +0.1678172 0.2686816 0.4805811 +0.1950164 0.2686816 0.4805811 +0.2210581 0.2686816 0.4805811 +0.245636 0.2686816 0.4805811 +0.2686816 0.2686816 0.4805811 +0.2902431 0.2686816 0.4805811 +0.3104189 0.2686816 0.4805811 +0.3293248 0.2686816 0.4805811 +0.3470774 0.2686816 0.4805811 +0.3637862 0.2686816 0.4805811 +0.3795513 0.2686816 0.4805811 +0.3944623 0.2686816 0.4805811 +0.4085988 0.2686816 0.4805811 +0.4220313 0.2686816 0.4805811 +0.4348222 0.2686816 0.4805811 +0.4470264 0.2686816 0.4805811 +0.4586928 0.2686816 0.4805811 +0.4698649 0.2686816 0.4805811 +0.4805811 0.2686816 0.4805811 +0.490876 0.2686816 0.4805811 +0.5007803 0.2686816 0.4805811 +0.510322 0.2686816 0.4805811 +0.5195258 0.2686816 0.4805811 +0.5284142 0.2686816 0.4805811 +0.5370079 0.2686816 0.4805811 +0.5453253 0.2686816 0.4805811 +0.5533834 0.2686816 0.4805811 +0.5611974 0.2686816 0.4805811 +0.5687816 0.2686816 0.4805811 +0.092819 0.2902431 0.4805811 +0.1056428 0.2902431 0.4805811 +0.1201537 0.2902431 0.4805811 +0.1409607 0.2902431 0.4805811 +0.1678172 0.2902431 0.4805811 +0.1950164 0.2902431 0.4805811 +0.2210581 0.2902431 0.4805811 +0.245636 0.2902431 0.4805811 +0.2686816 0.2902431 0.4805811 +0.2902431 0.2902431 0.4805811 +0.3104189 0.2902431 0.4805811 +0.3293248 0.2902431 0.4805811 +0.3470774 0.2902431 0.4805811 +0.3637862 0.2902431 0.4805811 +0.3795513 0.2902431 0.4805811 +0.3944623 0.2902431 0.4805811 +0.4085988 0.2902431 0.4805811 +0.4220313 0.2902431 0.4805811 +0.4348222 0.2902431 0.4805811 +0.4470264 0.2902431 0.4805811 +0.4586928 0.2902431 0.4805811 +0.4698649 0.2902431 0.4805811 +0.4805811 0.2902431 0.4805811 +0.490876 0.2902431 0.4805811 +0.5007803 0.2902431 0.4805811 +0.510322 0.2902431 0.4805811 +0.5195258 0.2902431 0.4805811 +0.5284142 0.2902431 0.4805811 +0.5370079 0.2902431 0.4805811 +0.5453253 0.2902431 0.4805811 +0.5533834 0.2902431 0.4805811 +0.5611974 0.2902431 0.4805811 +0.5687816 0.2902431 0.4805811 +0.092819 0.3104189 0.4805811 +0.1056428 0.3104189 0.4805811 +0.1201537 0.3104189 0.4805811 +0.1409607 0.3104189 0.4805811 +0.1678172 0.3104189 0.4805811 +0.1950164 0.3104189 0.4805811 +0.2210581 0.3104189 0.4805811 +0.245636 0.3104189 0.4805811 +0.2686816 0.3104189 0.4805811 +0.2902431 0.3104189 0.4805811 +0.3104189 0.3104189 0.4805811 +0.3293248 0.3104189 0.4805811 +0.3470774 0.3104189 0.4805811 +0.3637862 0.3104189 0.4805811 +0.3795513 0.3104189 0.4805811 +0.3944623 0.3104189 0.4805811 +0.4085988 0.3104189 0.4805811 +0.4220313 0.3104189 0.4805811 +0.4348222 0.3104189 0.4805811 +0.4470264 0.3104189 0.4805811 +0.4586928 0.3104189 0.4805811 +0.4698649 0.3104189 0.4805811 +0.4805811 0.3104189 0.4805811 +0.490876 0.3104189 0.4805811 +0.5007803 0.3104189 0.4805811 +0.510322 0.3104189 0.4805811 +0.5195258 0.3104189 0.4805811 +0.5284142 0.3104189 0.4805811 +0.5370079 0.3104189 0.4805811 +0.5453253 0.3104189 0.4805811 +0.5533834 0.3104189 0.4805811 +0.5611974 0.3104189 0.4805811 +0.5687816 0.3104189 0.4805811 +0.092819 0.3293248 0.4805811 +0.1056428 0.3293248 0.4805811 +0.1201537 0.3293248 0.4805811 +0.1409607 0.3293248 0.4805811 +0.1678172 0.3293248 0.4805811 +0.1950164 0.3293248 0.4805811 +0.2210581 0.3293248 0.4805811 +0.245636 0.3293248 0.4805811 +0.2686816 0.3293248 0.4805811 +0.2902431 0.3293248 0.4805811 +0.3104189 0.3293248 0.4805811 +0.3293248 0.3293248 0.4805811 +0.3470774 0.3293248 0.4805811 +0.3637862 0.3293248 0.4805811 +0.3795513 0.3293248 0.4805811 +0.3944623 0.3293248 0.4805811 +0.4085988 0.3293248 0.4805811 +0.4220313 0.3293248 0.4805811 +0.4348222 0.3293248 0.4805811 +0.4470264 0.3293248 0.4805811 +0.4586928 0.3293248 0.4805811 +0.4698649 0.3293248 0.4805811 +0.4805811 0.3293248 0.4805811 +0.490876 0.3293248 0.4805811 +0.5007803 0.3293248 0.4805811 +0.510322 0.3293248 0.4805811 +0.5195258 0.3293248 0.4805811 +0.5284142 0.3293248 0.4805811 +0.5370079 0.3293248 0.4805811 +0.5453253 0.3293248 0.4805811 +0.5533834 0.3293248 0.4805811 +0.5611974 0.3293248 0.4805811 +0.5687816 0.3293248 0.4805811 +0.092819 0.3470774 0.4805811 +0.1056428 0.3470774 0.4805811 +0.1201537 0.3470774 0.4805811 +0.1409607 0.3470774 0.4805811 +0.1678172 0.3470774 0.4805811 +0.1950164 0.3470774 0.4805811 +0.2210581 0.3470774 0.4805811 +0.245636 0.3470774 0.4805811 +0.2686816 0.3470774 0.4805811 +0.2902431 0.3470774 0.4805811 +0.3104189 0.3470774 0.4805811 +0.3293248 0.3470774 0.4805811 +0.3470774 0.3470774 0.4805811 +0.3637862 0.3470774 0.4805811 +0.3795513 0.3470774 0.4805811 +0.3944623 0.3470774 0.4805811 +0.4085988 0.3470774 0.4805811 +0.4220313 0.3470774 0.4805811 +0.4348222 0.3470774 0.4805811 +0.4470264 0.3470774 0.4805811 +0.4586928 0.3470774 0.4805811 +0.4698649 0.3470774 0.4805811 +0.4805811 0.3470774 0.4805811 +0.490876 0.3470774 0.4805811 +0.5007803 0.3470774 0.4805811 +0.510322 0.3470774 0.4805811 +0.5195258 0.3470774 0.4805811 +0.5284142 0.3470774 0.4805811 +0.5370079 0.3470774 0.4805811 +0.5453253 0.3470774 0.4805811 +0.5533834 0.3470774 0.4805811 +0.5611974 0.3470774 0.4805811 +0.5687816 0.3470774 0.4805811 +0.092819 0.3637862 0.4805811 +0.1056428 0.3637862 0.4805811 +0.1201537 0.3637862 0.4805811 +0.1409607 0.3637862 0.4805811 +0.1678172 0.3637862 0.4805811 +0.1950164 0.3637862 0.4805811 +0.2210581 0.3637862 0.4805811 +0.245636 0.3637862 0.4805811 +0.2686816 0.3637862 0.4805811 +0.2902431 0.3637862 0.4805811 +0.3104189 0.3637862 0.4805811 +0.3293248 0.3637862 0.4805811 +0.3470774 0.3637862 0.4805811 +0.3637862 0.3637862 0.4805811 +0.3795513 0.3637862 0.4805811 +0.3944623 0.3637862 0.4805811 +0.4085988 0.3637862 0.4805811 +0.4220313 0.3637862 0.4805811 +0.4348222 0.3637862 0.4805811 +0.4470264 0.3637862 0.4805811 +0.4586928 0.3637862 0.4805811 +0.4698649 0.3637862 0.4805811 +0.4805811 0.3637862 0.4805811 +0.490876 0.3637862 0.4805811 +0.5007803 0.3637862 0.4805811 +0.510322 0.3637862 0.4805811 +0.5195258 0.3637862 0.4805811 +0.5284142 0.3637862 0.4805811 +0.5370079 0.3637862 0.4805811 +0.5453253 0.3637862 0.4805811 +0.5533834 0.3637862 0.4805811 +0.5611974 0.3637862 0.4805811 +0.5687816 0.3637862 0.4805811 +0.092819 0.3795513 0.4805811 +0.1056428 0.3795513 0.4805811 +0.1201537 0.3795513 0.4805811 +0.1409607 0.3795513 0.4805811 +0.1678172 0.3795513 0.4805811 +0.1950164 0.3795513 0.4805811 +0.2210581 0.3795513 0.4805811 +0.245636 0.3795513 0.4805811 +0.2686816 0.3795513 0.4805811 +0.2902431 0.3795513 0.4805811 +0.3104189 0.3795513 0.4805811 +0.3293248 0.3795513 0.4805811 +0.3470774 0.3795513 0.4805811 +0.3637862 0.3795513 0.4805811 +0.3795513 0.3795513 0.4805811 +0.3944623 0.3795513 0.4805811 +0.4085988 0.3795513 0.4805811 +0.4220313 0.3795513 0.4805811 +0.4348222 0.3795513 0.4805811 +0.4470264 0.3795513 0.4805811 +0.4586928 0.3795513 0.4805811 +0.4698649 0.3795513 0.4805811 +0.4805811 0.3795513 0.4805811 +0.490876 0.3795513 0.4805811 +0.5007803 0.3795513 0.4805811 +0.510322 0.3795513 0.4805811 +0.5195258 0.3795513 0.4805811 +0.5284142 0.3795513 0.4805811 +0.5370079 0.3795513 0.4805811 +0.5453253 0.3795513 0.4805811 +0.5533834 0.3795513 0.4805811 +0.5611974 0.3795513 0.4805811 +0.5687816 0.3795513 0.4805811 +0.092819 0.3944623 0.4805811 +0.1056428 0.3944623 0.4805811 +0.1201537 0.3944623 0.4805811 +0.1409607 0.3944623 0.4805811 +0.1678172 0.3944623 0.4805811 +0.1950164 0.3944623 0.4805811 +0.2210581 0.3944623 0.4805811 +0.245636 0.3944623 0.4805811 +0.2686816 0.3944623 0.4805811 +0.2902431 0.3944623 0.4805811 +0.3104189 0.3944623 0.4805811 +0.3293248 0.3944623 0.4805811 +0.3470774 0.3944623 0.4805811 +0.3637862 0.3944623 0.4805811 +0.3795513 0.3944623 0.4805811 +0.3944623 0.3944623 0.4805811 +0.4085988 0.3944623 0.4805811 +0.4220313 0.3944623 0.4805811 +0.4348222 0.3944623 0.4805811 +0.4470264 0.3944623 0.4805811 +0.4586928 0.3944623 0.4805811 +0.4698649 0.3944623 0.4805811 +0.4805811 0.3944623 0.4805811 +0.490876 0.3944623 0.4805811 +0.5007803 0.3944623 0.4805811 +0.510322 0.3944623 0.4805811 +0.5195258 0.3944623 0.4805811 +0.5284142 0.3944623 0.4805811 +0.5370079 0.3944623 0.4805811 +0.5453253 0.3944623 0.4805811 +0.5533834 0.3944623 0.4805811 +0.5611974 0.3944623 0.4805811 +0.5687816 0.3944623 0.4805811 +0.092819 0.4085988 0.4805811 +0.1056428 0.4085988 0.4805811 +0.1201537 0.4085988 0.4805811 +0.1409607 0.4085988 0.4805811 +0.1678172 0.4085988 0.4805811 +0.1950164 0.4085988 0.4805811 +0.2210581 0.4085988 0.4805811 +0.245636 0.4085988 0.4805811 +0.2686816 0.4085988 0.4805811 +0.2902431 0.4085988 0.4805811 +0.3104189 0.4085988 0.4805811 +0.3293248 0.4085988 0.4805811 +0.3470774 0.4085988 0.4805811 +0.3637862 0.4085988 0.4805811 +0.3795513 0.4085988 0.4805811 +0.3944623 0.4085988 0.4805811 +0.4085988 0.4085988 0.4805811 +0.4220313 0.4085988 0.4805811 +0.4348222 0.4085988 0.4805811 +0.4470264 0.4085988 0.4805811 +0.4586928 0.4085988 0.4805811 +0.4698649 0.4085988 0.4805811 +0.4805811 0.4085988 0.4805811 +0.490876 0.4085988 0.4805811 +0.5007803 0.4085988 0.4805811 +0.510322 0.4085988 0.4805811 +0.5195258 0.4085988 0.4805811 +0.5284142 0.4085988 0.4805811 +0.5370079 0.4085988 0.4805811 +0.5453253 0.4085988 0.4805811 +0.5533834 0.4085988 0.4805811 +0.5611974 0.4085988 0.4805811 +0.5687816 0.4085988 0.4805811 +0.092819 0.4220313 0.4805811 +0.1056428 0.4220313 0.4805811 +0.1201537 0.4220313 0.4805811 +0.1409607 0.4220313 0.4805811 +0.1678172 0.4220313 0.4805811 +0.1950164 0.4220313 0.4805811 +0.2210581 0.4220313 0.4805811 +0.245636 0.4220313 0.4805811 +0.2686816 0.4220313 0.4805811 +0.2902431 0.4220313 0.4805811 +0.3104189 0.4220313 0.4805811 +0.3293248 0.4220313 0.4805811 +0.3470774 0.4220313 0.4805811 +0.3637862 0.4220313 0.4805811 +0.3795513 0.4220313 0.4805811 +0.3944623 0.4220313 0.4805811 +0.4085988 0.4220313 0.4805811 +0.4220313 0.4220313 0.4805811 +0.4348222 0.4220313 0.4805811 +0.4470264 0.4220313 0.4805811 +0.4586928 0.4220313 0.4805811 +0.4698649 0.4220313 0.4805811 +0.4805811 0.4220313 0.4805811 +0.490876 0.4220313 0.4805811 +0.5007803 0.4220313 0.4805811 +0.510322 0.4220313 0.4805811 +0.5195258 0.4220313 0.4805811 +0.5284142 0.4220313 0.4805811 +0.5370079 0.4220313 0.4805811 +0.5453253 0.4220313 0.4805811 +0.5533834 0.4220313 0.4805811 +0.5611974 0.4220313 0.4805811 +0.5687816 0.4220313 0.4805811 +0.092819 0.4348222 0.4805811 +0.1056428 0.4348222 0.4805811 +0.1201537 0.4348222 0.4805811 +0.1409607 0.4348222 0.4805811 +0.1678172 0.4348222 0.4805811 +0.1950164 0.4348222 0.4805811 +0.2210581 0.4348222 0.4805811 +0.245636 0.4348222 0.4805811 +0.2686816 0.4348222 0.4805811 +0.2902431 0.4348222 0.4805811 +0.3104189 0.4348222 0.4805811 +0.3293248 0.4348222 0.4805811 +0.3470774 0.4348222 0.4805811 +0.3637862 0.4348222 0.4805811 +0.3795513 0.4348222 0.4805811 +0.3944623 0.4348222 0.4805811 +0.4085988 0.4348222 0.4805811 +0.4220313 0.4348222 0.4805811 +0.4348222 0.4348222 0.4805811 +0.4470264 0.4348222 0.4805811 +0.4586928 0.4348222 0.4805811 +0.4698649 0.4348222 0.4805811 +0.4805811 0.4348222 0.4805811 +0.490876 0.4348222 0.4805811 +0.5007803 0.4348222 0.4805811 +0.510322 0.4348222 0.4805811 +0.5195258 0.4348222 0.4805811 +0.5284142 0.4348222 0.4805811 +0.5370079 0.4348222 0.4805811 +0.5453253 0.4348222 0.4805811 +0.5533834 0.4348222 0.4805811 +0.5611974 0.4348222 0.4805811 +0.5687816 0.4348222 0.4805811 +0.092819 0.4470264 0.4805811 +0.1056428 0.4470264 0.4805811 +0.1201537 0.4470264 0.4805811 +0.1409607 0.4470264 0.4805811 +0.1678172 0.4470264 0.4805811 +0.1950164 0.4470264 0.4805811 +0.2210581 0.4470264 0.4805811 +0.245636 0.4470264 0.4805811 +0.2686816 0.4470264 0.4805811 +0.2902431 0.4470264 0.4805811 +0.3104189 0.4470264 0.4805811 +0.3293248 0.4470264 0.4805811 +0.3470774 0.4470264 0.4805811 +0.3637862 0.4470264 0.4805811 +0.3795513 0.4470264 0.4805811 +0.3944623 0.4470264 0.4805811 +0.4085988 0.4470264 0.4805811 +0.4220313 0.4470264 0.4805811 +0.4348222 0.4470264 0.4805811 +0.4470264 0.4470264 0.4805811 +0.4586928 0.4470264 0.4805811 +0.4698649 0.4470264 0.4805811 +0.4805811 0.4470264 0.4805811 +0.490876 0.4470264 0.4805811 +0.5007803 0.4470264 0.4805811 +0.510322 0.4470264 0.4805811 +0.5195258 0.4470264 0.4805811 +0.5284142 0.4470264 0.4805811 +0.5370079 0.4470264 0.4805811 +0.5453253 0.4470264 0.4805811 +0.5533834 0.4470264 0.4805811 +0.5611974 0.4470264 0.4805811 +0.5687816 0.4470264 0.4805811 +0.092819 0.4586928 0.4805811 +0.1056428 0.4586928 0.4805811 +0.1201537 0.4586928 0.4805811 +0.1409607 0.4586928 0.4805811 +0.1678172 0.4586928 0.4805811 +0.1950164 0.4586928 0.4805811 +0.2210581 0.4586928 0.4805811 +0.245636 0.4586928 0.4805811 +0.2686816 0.4586928 0.4805811 +0.2902431 0.4586928 0.4805811 +0.3104189 0.4586928 0.4805811 +0.3293248 0.4586928 0.4805811 +0.3470774 0.4586928 0.4805811 +0.3637862 0.4586928 0.4805811 +0.3795513 0.4586928 0.4805811 +0.3944623 0.4586928 0.4805811 +0.4085988 0.4586928 0.4805811 +0.4220313 0.4586928 0.4805811 +0.4348222 0.4586928 0.4805811 +0.4470264 0.4586928 0.4805811 +0.4586928 0.4586928 0.4805811 +0.4698649 0.4586928 0.4805811 +0.4805811 0.4586928 0.4805811 +0.490876 0.4586928 0.4805811 +0.5007803 0.4586928 0.4805811 +0.510322 0.4586928 0.4805811 +0.5195258 0.4586928 0.4805811 +0.5284142 0.4586928 0.4805811 +0.5370079 0.4586928 0.4805811 +0.5453253 0.4586928 0.4805811 +0.5533834 0.4586928 0.4805811 +0.5611974 0.4586928 0.4805811 +0.5687816 0.4586928 0.4805811 +0.092819 0.4698649 0.4805811 +0.1056428 0.4698649 0.4805811 +0.1201537 0.4698649 0.4805811 +0.1409607 0.4698649 0.4805811 +0.1678172 0.4698649 0.4805811 +0.1950164 0.4698649 0.4805811 +0.2210581 0.4698649 0.4805811 +0.245636 0.4698649 0.4805811 +0.2686816 0.4698649 0.4805811 +0.2902431 0.4698649 0.4805811 +0.3104189 0.4698649 0.4805811 +0.3293248 0.4698649 0.4805811 +0.3470774 0.4698649 0.4805811 +0.3637862 0.4698649 0.4805811 +0.3795513 0.4698649 0.4805811 +0.3944623 0.4698649 0.4805811 +0.4085988 0.4698649 0.4805811 +0.4220313 0.4698649 0.4805811 +0.4348222 0.4698649 0.4805811 +0.4470264 0.4698649 0.4805811 +0.4586928 0.4698649 0.4805811 +0.4698649 0.4698649 0.4805811 +0.4805811 0.4698649 0.4805811 +0.490876 0.4698649 0.4805811 +0.5007803 0.4698649 0.4805811 +0.510322 0.4698649 0.4805811 +0.5195258 0.4698649 0.4805811 +0.5284142 0.4698649 0.4805811 +0.5370079 0.4698649 0.4805811 +0.5453253 0.4698649 0.4805811 +0.5533834 0.4698649 0.4805811 +0.5611974 0.4698649 0.4805811 +0.5687816 0.4698649 0.4805811 +0.092819 0.4805811 0.4805811 +0.1056428 0.4805811 0.4805811 +0.1201537 0.4805811 0.4805811 +0.1409607 0.4805811 0.4805811 +0.1678172 0.4805811 0.4805811 +0.1950164 0.4805811 0.4805811 +0.2210581 0.4805811 0.4805811 +0.245636 0.4805811 0.4805811 +0.2686816 0.4805811 0.4805811 +0.2902431 0.4805811 0.4805811 +0.3104189 0.4805811 0.4805811 +0.3293248 0.4805811 0.4805811 +0.3470774 0.4805811 0.4805811 +0.3637862 0.4805811 0.4805811 +0.3795513 0.4805811 0.4805811 +0.3944623 0.4805811 0.4805811 +0.4085988 0.4805811 0.4805811 +0.4220313 0.4805811 0.4805811 +0.4348222 0.4805811 0.4805811 +0.4470264 0.4805811 0.4805811 +0.4586928 0.4805811 0.4805811 +0.4698649 0.4805811 0.4805811 +0.4805811 0.4805811 0.4805811 +0.490876 0.4805811 0.4805811 +0.5007803 0.4805811 0.4805811 +0.510322 0.4805811 0.4805811 +0.5195258 0.4805811 0.4805811 +0.5284142 0.4805811 0.4805811 +0.5370079 0.4805811 0.4805811 +0.5453253 0.4805811 0.4805811 +0.5533834 0.4805811 0.4805811 +0.5611974 0.4805811 0.4805811 +0.5687816 0.4805811 0.4805811 +0.092819 0.490876 0.4805811 +0.1056428 0.490876 0.4805811 +0.1201537 0.490876 0.4805811 +0.1409607 0.490876 0.4805811 +0.1678172 0.490876 0.4805811 +0.1950164 0.490876 0.4805811 +0.2210581 0.490876 0.4805811 +0.245636 0.490876 0.4805811 +0.2686816 0.490876 0.4805811 +0.2902431 0.490876 0.4805811 +0.3104189 0.490876 0.4805811 +0.3293248 0.490876 0.4805811 +0.3470774 0.490876 0.4805811 +0.3637862 0.490876 0.4805811 +0.3795513 0.490876 0.4805811 +0.3944623 0.490876 0.4805811 +0.4085988 0.490876 0.4805811 +0.4220313 0.490876 0.4805811 +0.4348222 0.490876 0.4805811 +0.4470264 0.490876 0.4805811 +0.4586928 0.490876 0.4805811 +0.4698649 0.490876 0.4805811 +0.4805811 0.490876 0.4805811 +0.490876 0.490876 0.4805811 +0.5007803 0.490876 0.4805811 +0.510322 0.490876 0.4805811 +0.5195258 0.490876 0.4805811 +0.5284142 0.490876 0.4805811 +0.5370079 0.490876 0.4805811 +0.5453253 0.490876 0.4805811 +0.5533834 0.490876 0.4805811 +0.5611974 0.490876 0.4805811 +0.5687816 0.490876 0.4805811 +0.092819 0.5007803 0.4805811 +0.1056428 0.5007803 0.4805811 +0.1201537 0.5007803 0.4805811 +0.1409607 0.5007803 0.4805811 +0.1678172 0.5007803 0.4805811 +0.1950164 0.5007803 0.4805811 +0.2210581 0.5007803 0.4805811 +0.245636 0.5007803 0.4805811 +0.2686816 0.5007803 0.4805811 +0.2902431 0.5007803 0.4805811 +0.3104189 0.5007803 0.4805811 +0.3293248 0.5007803 0.4805811 +0.3470774 0.5007803 0.4805811 +0.3637862 0.5007803 0.4805811 +0.3795513 0.5007803 0.4805811 +0.3944623 0.5007803 0.4805811 +0.4085988 0.5007803 0.4805811 +0.4220313 0.5007803 0.4805811 +0.4348222 0.5007803 0.4805811 +0.4470264 0.5007803 0.4805811 +0.4586928 0.5007803 0.4805811 +0.4698649 0.5007803 0.4805811 +0.4805811 0.5007803 0.4805811 +0.490876 0.5007803 0.4805811 +0.5007803 0.5007803 0.4805811 +0.510322 0.5007803 0.4805811 +0.5195258 0.5007803 0.4805811 +0.5284142 0.5007803 0.4805811 +0.5370079 0.5007803 0.4805811 +0.5453253 0.5007803 0.4805811 +0.5533834 0.5007803 0.4805811 +0.5611974 0.5007803 0.4805811 +0.5687816 0.5007803 0.4805811 +0.092819 0.510322 0.4805811 +0.1056428 0.510322 0.4805811 +0.1201537 0.510322 0.4805811 +0.1409607 0.510322 0.4805811 +0.1678172 0.510322 0.4805811 +0.1950164 0.510322 0.4805811 +0.2210581 0.510322 0.4805811 +0.245636 0.510322 0.4805811 +0.2686816 0.510322 0.4805811 +0.2902431 0.510322 0.4805811 +0.3104189 0.510322 0.4805811 +0.3293248 0.510322 0.4805811 +0.3470774 0.510322 0.4805811 +0.3637862 0.510322 0.4805811 +0.3795513 0.510322 0.4805811 +0.3944623 0.510322 0.4805811 +0.4085988 0.510322 0.4805811 +0.4220313 0.510322 0.4805811 +0.4348222 0.510322 0.4805811 +0.4470264 0.510322 0.4805811 +0.4586928 0.510322 0.4805811 +0.4698649 0.510322 0.4805811 +0.4805811 0.510322 0.4805811 +0.490876 0.510322 0.4805811 +0.5007803 0.510322 0.4805811 +0.510322 0.510322 0.4805811 +0.5195258 0.510322 0.4805811 +0.5284142 0.510322 0.4805811 +0.5370079 0.510322 0.4805811 +0.5453253 0.510322 0.4805811 +0.5533834 0.510322 0.4805811 +0.5611974 0.510322 0.4805811 +0.5687816 0.510322 0.4805811 +0.092819 0.5195258 0.4805811 +0.1056428 0.5195258 0.4805811 +0.1201537 0.5195258 0.4805811 +0.1409607 0.5195258 0.4805811 +0.1678172 0.5195258 0.4805811 +0.1950164 0.5195258 0.4805811 +0.2210581 0.5195258 0.4805811 +0.245636 0.5195258 0.4805811 +0.2686816 0.5195258 0.4805811 +0.2902431 0.5195258 0.4805811 +0.3104189 0.5195258 0.4805811 +0.3293248 0.5195258 0.4805811 +0.3470774 0.5195258 0.4805811 +0.3637862 0.5195258 0.4805811 +0.3795513 0.5195258 0.4805811 +0.3944623 0.5195258 0.4805811 +0.4085988 0.5195258 0.4805811 +0.4220313 0.5195258 0.4805811 +0.4348222 0.5195258 0.4805811 +0.4470264 0.5195258 0.4805811 +0.4586928 0.5195258 0.4805811 +0.4698649 0.5195258 0.4805811 +0.4805811 0.5195258 0.4805811 +0.490876 0.5195258 0.4805811 +0.5007803 0.5195258 0.4805811 +0.510322 0.5195258 0.4805811 +0.5195258 0.5195258 0.4805811 +0.5284142 0.5195258 0.4805811 +0.5370079 0.5195258 0.4805811 +0.5453253 0.5195258 0.4805811 +0.5533834 0.5195258 0.4805811 +0.5611974 0.5195258 0.4805811 +0.5687816 0.5195258 0.4805811 +0.092819 0.5284142 0.4805811 +0.1056428 0.5284142 0.4805811 +0.1201537 0.5284142 0.4805811 +0.1409607 0.5284142 0.4805811 +0.1678172 0.5284142 0.4805811 +0.1950164 0.5284142 0.4805811 +0.2210581 0.5284142 0.4805811 +0.245636 0.5284142 0.4805811 +0.2686816 0.5284142 0.4805811 +0.2902431 0.5284142 0.4805811 +0.3104189 0.5284142 0.4805811 +0.3293248 0.5284142 0.4805811 +0.3470774 0.5284142 0.4805811 +0.3637862 0.5284142 0.4805811 +0.3795513 0.5284142 0.4805811 +0.3944623 0.5284142 0.4805811 +0.4085988 0.5284142 0.4805811 +0.4220313 0.5284142 0.4805811 +0.4348222 0.5284142 0.4805811 +0.4470264 0.5284142 0.4805811 +0.4586928 0.5284142 0.4805811 +0.4698649 0.5284142 0.4805811 +0.4805811 0.5284142 0.4805811 +0.490876 0.5284142 0.4805811 +0.5007803 0.5284142 0.4805811 +0.510322 0.5284142 0.4805811 +0.5195258 0.5284142 0.4805811 +0.5284142 0.5284142 0.4805811 +0.5370079 0.5284142 0.4805811 +0.5453253 0.5284142 0.4805811 +0.5533834 0.5284142 0.4805811 +0.5611974 0.5284142 0.4805811 +0.5687816 0.5284142 0.4805811 +0.092819 0.5370079 0.4805811 +0.1056428 0.5370079 0.4805811 +0.1201537 0.5370079 0.4805811 +0.1409607 0.5370079 0.4805811 +0.1678172 0.5370079 0.4805811 +0.1950164 0.5370079 0.4805811 +0.2210581 0.5370079 0.4805811 +0.245636 0.5370079 0.4805811 +0.2686816 0.5370079 0.4805811 +0.2902431 0.5370079 0.4805811 +0.3104189 0.5370079 0.4805811 +0.3293248 0.5370079 0.4805811 +0.3470774 0.5370079 0.4805811 +0.3637862 0.5370079 0.4805811 +0.3795513 0.5370079 0.4805811 +0.3944623 0.5370079 0.4805811 +0.4085988 0.5370079 0.4805811 +0.4220313 0.5370079 0.4805811 +0.4348222 0.5370079 0.4805811 +0.4470264 0.5370079 0.4805811 +0.4586928 0.5370079 0.4805811 +0.4698649 0.5370079 0.4805811 +0.4805811 0.5370079 0.4805811 +0.490876 0.5370079 0.4805811 +0.5007803 0.5370079 0.4805811 +0.510322 0.5370079 0.4805811 +0.5195258 0.5370079 0.4805811 +0.5284142 0.5370079 0.4805811 +0.5370079 0.5370079 0.4805811 +0.5453253 0.5370079 0.4805811 +0.5533834 0.5370079 0.4805811 +0.5611974 0.5370079 0.4805811 +0.5687816 0.5370079 0.4805811 +0.092819 0.5453253 0.4805811 +0.1056428 0.5453253 0.4805811 +0.1201537 0.5453253 0.4805811 +0.1409607 0.5453253 0.4805811 +0.1678172 0.5453253 0.4805811 +0.1950164 0.5453253 0.4805811 +0.2210581 0.5453253 0.4805811 +0.245636 0.5453253 0.4805811 +0.2686816 0.5453253 0.4805811 +0.2902431 0.5453253 0.4805811 +0.3104189 0.5453253 0.4805811 +0.3293248 0.5453253 0.4805811 +0.3470774 0.5453253 0.4805811 +0.3637862 0.5453253 0.4805811 +0.3795513 0.5453253 0.4805811 +0.3944623 0.5453253 0.4805811 +0.4085988 0.5453253 0.4805811 +0.4220313 0.5453253 0.4805811 +0.4348222 0.5453253 0.4805811 +0.4470264 0.5453253 0.4805811 +0.4586928 0.5453253 0.4805811 +0.4698649 0.5453253 0.4805811 +0.4805811 0.5453253 0.4805811 +0.490876 0.5453253 0.4805811 +0.5007803 0.5453253 0.4805811 +0.510322 0.5453253 0.4805811 +0.5195258 0.5453253 0.4805811 +0.5284142 0.5453253 0.4805811 +0.5370079 0.5453253 0.4805811 +0.5453253 0.5453253 0.4805811 +0.5533834 0.5453253 0.4805811 +0.5611974 0.5453253 0.4805811 +0.5687816 0.5453253 0.4805811 +0.092819 0.5533834 0.4805811 +0.1056428 0.5533834 0.4805811 +0.1201537 0.5533834 0.4805811 +0.1409607 0.5533834 0.4805811 +0.1678172 0.5533834 0.4805811 +0.1950164 0.5533834 0.4805811 +0.2210581 0.5533834 0.4805811 +0.245636 0.5533834 0.4805811 +0.2686816 0.5533834 0.4805811 +0.2902431 0.5533834 0.4805811 +0.3104189 0.5533834 0.4805811 +0.3293248 0.5533834 0.4805811 +0.3470774 0.5533834 0.4805811 +0.3637862 0.5533834 0.4805811 +0.3795513 0.5533834 0.4805811 +0.3944623 0.5533834 0.4805811 +0.4085988 0.5533834 0.4805811 +0.4220313 0.5533834 0.4805811 +0.4348222 0.5533834 0.4805811 +0.4470264 0.5533834 0.4805811 +0.4586928 0.5533834 0.4805811 +0.4698649 0.5533834 0.4805811 +0.4805811 0.5533834 0.4805811 +0.490876 0.5533834 0.4805811 +0.5007803 0.5533834 0.4805811 +0.510322 0.5533834 0.4805811 +0.5195258 0.5533834 0.4805811 +0.5284142 0.5533834 0.4805811 +0.5370079 0.5533834 0.4805811 +0.5453253 0.5533834 0.4805811 +0.5533834 0.5533834 0.4805811 +0.5611974 0.5533834 0.4805811 +0.5687816 0.5533834 0.4805811 +0.092819 0.5611974 0.4805811 +0.1056428 0.5611974 0.4805811 +0.1201537 0.5611974 0.4805811 +0.1409607 0.5611974 0.4805811 +0.1678172 0.5611974 0.4805811 +0.1950164 0.5611974 0.4805811 +0.2210581 0.5611974 0.4805811 +0.245636 0.5611974 0.4805811 +0.2686816 0.5611974 0.4805811 +0.2902431 0.5611974 0.4805811 +0.3104189 0.5611974 0.4805811 +0.3293248 0.5611974 0.4805811 +0.3470774 0.5611974 0.4805811 +0.3637862 0.5611974 0.4805811 +0.3795513 0.5611974 0.4805811 +0.3944623 0.5611974 0.4805811 +0.4085988 0.5611974 0.4805811 +0.4220313 0.5611974 0.4805811 +0.4348222 0.5611974 0.4805811 +0.4470264 0.5611974 0.4805811 +0.4586928 0.5611974 0.4805811 +0.4698649 0.5611974 0.4805811 +0.4805811 0.5611974 0.4805811 +0.490876 0.5611974 0.4805811 +0.5007803 0.5611974 0.4805811 +0.510322 0.5611974 0.4805811 +0.5195258 0.5611974 0.4805811 +0.5284142 0.5611974 0.4805811 +0.5370079 0.5611974 0.4805811 +0.5453253 0.5611974 0.4805811 +0.5533834 0.5611974 0.4805811 +0.5611974 0.5611974 0.4805811 +0.5687816 0.5611974 0.4805811 +0.092819 0.5687816 0.4805811 +0.1056428 0.5687816 0.4805811 +0.1201537 0.5687816 0.4805811 +0.1409607 0.5687816 0.4805811 +0.1678172 0.5687816 0.4805811 +0.1950164 0.5687816 0.4805811 +0.2210581 0.5687816 0.4805811 +0.245636 0.5687816 0.4805811 +0.2686816 0.5687816 0.4805811 +0.2902431 0.5687816 0.4805811 +0.3104189 0.5687816 0.4805811 +0.3293248 0.5687816 0.4805811 +0.3470774 0.5687816 0.4805811 +0.3637862 0.5687816 0.4805811 +0.3795513 0.5687816 0.4805811 +0.3944623 0.5687816 0.4805811 +0.4085988 0.5687816 0.4805811 +0.4220313 0.5687816 0.4805811 +0.4348222 0.5687816 0.4805811 +0.4470264 0.5687816 0.4805811 +0.4586928 0.5687816 0.4805811 +0.4698649 0.5687816 0.4805811 +0.4805811 0.5687816 0.4805811 +0.490876 0.5687816 0.4805811 +0.5007803 0.5687816 0.4805811 +0.510322 0.5687816 0.4805811 +0.5195258 0.5687816 0.4805811 +0.5284142 0.5687816 0.4805811 +0.5370079 0.5687816 0.4805811 +0.5453253 0.5687816 0.4805811 +0.5533834 0.5687816 0.4805811 +0.5611974 0.5687816 0.4805811 +0.5687816 0.5687816 0.4805811 +0.092819 0.092819 0.490876 +0.1056428 0.092819 0.490876 +0.1201537 0.092819 0.490876 +0.1409607 0.092819 0.490876 +0.1678172 0.092819 0.490876 +0.1950164 0.092819 0.490876 +0.2210581 0.092819 0.490876 +0.245636 0.092819 0.490876 +0.2686816 0.092819 0.490876 +0.2902431 0.092819 0.490876 +0.3104189 0.092819 0.490876 +0.3293248 0.092819 0.490876 +0.3470774 0.092819 0.490876 +0.3637862 0.092819 0.490876 +0.3795513 0.092819 0.490876 +0.3944623 0.092819 0.490876 +0.4085988 0.092819 0.490876 +0.4220313 0.092819 0.490876 +0.4348222 0.092819 0.490876 +0.4470264 0.092819 0.490876 +0.4586928 0.092819 0.490876 +0.4698649 0.092819 0.490876 +0.4805811 0.092819 0.490876 +0.490876 0.092819 0.490876 +0.5007803 0.092819 0.490876 +0.510322 0.092819 0.490876 +0.5195258 0.092819 0.490876 +0.5284142 0.092819 0.490876 +0.5370079 0.092819 0.490876 +0.5453253 0.092819 0.490876 +0.5533834 0.092819 0.490876 +0.5611974 0.092819 0.490876 +0.5687816 0.092819 0.490876 +0.092819 0.1056428 0.490876 +0.1056428 0.1056428 0.490876 +0.1201537 0.1056428 0.490876 +0.1409607 0.1056428 0.490876 +0.1678172 0.1056428 0.490876 +0.1950164 0.1056428 0.490876 +0.2210581 0.1056428 0.490876 +0.245636 0.1056428 0.490876 +0.2686816 0.1056428 0.490876 +0.2902431 0.1056428 0.490876 +0.3104189 0.1056428 0.490876 +0.3293248 0.1056428 0.490876 +0.3470774 0.1056428 0.490876 +0.3637862 0.1056428 0.490876 +0.3795513 0.1056428 0.490876 +0.3944623 0.1056428 0.490876 +0.4085988 0.1056428 0.490876 +0.4220313 0.1056428 0.490876 +0.4348222 0.1056428 0.490876 +0.4470264 0.1056428 0.490876 +0.4586928 0.1056428 0.490876 +0.4698649 0.1056428 0.490876 +0.4805811 0.1056428 0.490876 +0.490876 0.1056428 0.490876 +0.5007803 0.1056428 0.490876 +0.510322 0.1056428 0.490876 +0.5195258 0.1056428 0.490876 +0.5284142 0.1056428 0.490876 +0.5370079 0.1056428 0.490876 +0.5453253 0.1056428 0.490876 +0.5533834 0.1056428 0.490876 +0.5611974 0.1056428 0.490876 +0.5687816 0.1056428 0.490876 +0.092819 0.1201537 0.490876 +0.1056428 0.1201537 0.490876 +0.1201537 0.1201537 0.490876 +0.1409607 0.1201537 0.490876 +0.1678172 0.1201537 0.490876 +0.1950164 0.1201537 0.490876 +0.2210581 0.1201537 0.490876 +0.245636 0.1201537 0.490876 +0.2686816 0.1201537 0.490876 +0.2902431 0.1201537 0.490876 +0.3104189 0.1201537 0.490876 +0.3293248 0.1201537 0.490876 +0.3470774 0.1201537 0.490876 +0.3637862 0.1201537 0.490876 +0.3795513 0.1201537 0.490876 +0.3944623 0.1201537 0.490876 +0.4085988 0.1201537 0.490876 +0.4220313 0.1201537 0.490876 +0.4348222 0.1201537 0.490876 +0.4470264 0.1201537 0.490876 +0.4586928 0.1201537 0.490876 +0.4698649 0.1201537 0.490876 +0.4805811 0.1201537 0.490876 +0.490876 0.1201537 0.490876 +0.5007803 0.1201537 0.490876 +0.510322 0.1201537 0.490876 +0.5195258 0.1201537 0.490876 +0.5284142 0.1201537 0.490876 +0.5370079 0.1201537 0.490876 +0.5453253 0.1201537 0.490876 +0.5533834 0.1201537 0.490876 +0.5611974 0.1201537 0.490876 +0.5687816 0.1201537 0.490876 +0.092819 0.1409607 0.490876 +0.1056428 0.1409607 0.490876 +0.1201537 0.1409607 0.490876 +0.1409607 0.1409607 0.490876 +0.1678172 0.1409607 0.490876 +0.1950164 0.1409607 0.490876 +0.2210581 0.1409607 0.490876 +0.245636 0.1409607 0.490876 +0.2686816 0.1409607 0.490876 +0.2902431 0.1409607 0.490876 +0.3104189 0.1409607 0.490876 +0.3293248 0.1409607 0.490876 +0.3470774 0.1409607 0.490876 +0.3637862 0.1409607 0.490876 +0.3795513 0.1409607 0.490876 +0.3944623 0.1409607 0.490876 +0.4085988 0.1409607 0.490876 +0.4220313 0.1409607 0.490876 +0.4348222 0.1409607 0.490876 +0.4470264 0.1409607 0.490876 +0.4586928 0.1409607 0.490876 +0.4698649 0.1409607 0.490876 +0.4805811 0.1409607 0.490876 +0.490876 0.1409607 0.490876 +0.5007803 0.1409607 0.490876 +0.510322 0.1409607 0.490876 +0.5195258 0.1409607 0.490876 +0.5284142 0.1409607 0.490876 +0.5370079 0.1409607 0.490876 +0.5453253 0.1409607 0.490876 +0.5533834 0.1409607 0.490876 +0.5611974 0.1409607 0.490876 +0.5687816 0.1409607 0.490876 +0.092819 0.1678172 0.490876 +0.1056428 0.1678172 0.490876 +0.1201537 0.1678172 0.490876 +0.1409607 0.1678172 0.490876 +0.1678172 0.1678172 0.490876 +0.1950164 0.1678172 0.490876 +0.2210581 0.1678172 0.490876 +0.245636 0.1678172 0.490876 +0.2686816 0.1678172 0.490876 +0.2902431 0.1678172 0.490876 +0.3104189 0.1678172 0.490876 +0.3293248 0.1678172 0.490876 +0.3470774 0.1678172 0.490876 +0.3637862 0.1678172 0.490876 +0.3795513 0.1678172 0.490876 +0.3944623 0.1678172 0.490876 +0.4085988 0.1678172 0.490876 +0.4220313 0.1678172 0.490876 +0.4348222 0.1678172 0.490876 +0.4470264 0.1678172 0.490876 +0.4586928 0.1678172 0.490876 +0.4698649 0.1678172 0.490876 +0.4805811 0.1678172 0.490876 +0.490876 0.1678172 0.490876 +0.5007803 0.1678172 0.490876 +0.510322 0.1678172 0.490876 +0.5195258 0.1678172 0.490876 +0.5284142 0.1678172 0.490876 +0.5370079 0.1678172 0.490876 +0.5453253 0.1678172 0.490876 +0.5533834 0.1678172 0.490876 +0.5611974 0.1678172 0.490876 +0.5687816 0.1678172 0.490876 +0.092819 0.1950164 0.490876 +0.1056428 0.1950164 0.490876 +0.1201537 0.1950164 0.490876 +0.1409607 0.1950164 0.490876 +0.1678172 0.1950164 0.490876 +0.1950164 0.1950164 0.490876 +0.2210581 0.1950164 0.490876 +0.245636 0.1950164 0.490876 +0.2686816 0.1950164 0.490876 +0.2902431 0.1950164 0.490876 +0.3104189 0.1950164 0.490876 +0.3293248 0.1950164 0.490876 +0.3470774 0.1950164 0.490876 +0.3637862 0.1950164 0.490876 +0.3795513 0.1950164 0.490876 +0.3944623 0.1950164 0.490876 +0.4085988 0.1950164 0.490876 +0.4220313 0.1950164 0.490876 +0.4348222 0.1950164 0.490876 +0.4470264 0.1950164 0.490876 +0.4586928 0.1950164 0.490876 +0.4698649 0.1950164 0.490876 +0.4805811 0.1950164 0.490876 +0.490876 0.1950164 0.490876 +0.5007803 0.1950164 0.490876 +0.510322 0.1950164 0.490876 +0.5195258 0.1950164 0.490876 +0.5284142 0.1950164 0.490876 +0.5370079 0.1950164 0.490876 +0.5453253 0.1950164 0.490876 +0.5533834 0.1950164 0.490876 +0.5611974 0.1950164 0.490876 +0.5687816 0.1950164 0.490876 +0.092819 0.2210581 0.490876 +0.1056428 0.2210581 0.490876 +0.1201537 0.2210581 0.490876 +0.1409607 0.2210581 0.490876 +0.1678172 0.2210581 0.490876 +0.1950164 0.2210581 0.490876 +0.2210581 0.2210581 0.490876 +0.245636 0.2210581 0.490876 +0.2686816 0.2210581 0.490876 +0.2902431 0.2210581 0.490876 +0.3104189 0.2210581 0.490876 +0.3293248 0.2210581 0.490876 +0.3470774 0.2210581 0.490876 +0.3637862 0.2210581 0.490876 +0.3795513 0.2210581 0.490876 +0.3944623 0.2210581 0.490876 +0.4085988 0.2210581 0.490876 +0.4220313 0.2210581 0.490876 +0.4348222 0.2210581 0.490876 +0.4470264 0.2210581 0.490876 +0.4586928 0.2210581 0.490876 +0.4698649 0.2210581 0.490876 +0.4805811 0.2210581 0.490876 +0.490876 0.2210581 0.490876 +0.5007803 0.2210581 0.490876 +0.510322 0.2210581 0.490876 +0.5195258 0.2210581 0.490876 +0.5284142 0.2210581 0.490876 +0.5370079 0.2210581 0.490876 +0.5453253 0.2210581 0.490876 +0.5533834 0.2210581 0.490876 +0.5611974 0.2210581 0.490876 +0.5687816 0.2210581 0.490876 +0.092819 0.245636 0.490876 +0.1056428 0.245636 0.490876 +0.1201537 0.245636 0.490876 +0.1409607 0.245636 0.490876 +0.1678172 0.245636 0.490876 +0.1950164 0.245636 0.490876 +0.2210581 0.245636 0.490876 +0.245636 0.245636 0.490876 +0.2686816 0.245636 0.490876 +0.2902431 0.245636 0.490876 +0.3104189 0.245636 0.490876 +0.3293248 0.245636 0.490876 +0.3470774 0.245636 0.490876 +0.3637862 0.245636 0.490876 +0.3795513 0.245636 0.490876 +0.3944623 0.245636 0.490876 +0.4085988 0.245636 0.490876 +0.4220313 0.245636 0.490876 +0.4348222 0.245636 0.490876 +0.4470264 0.245636 0.490876 +0.4586928 0.245636 0.490876 +0.4698649 0.245636 0.490876 +0.4805811 0.245636 0.490876 +0.490876 0.245636 0.490876 +0.5007803 0.245636 0.490876 +0.510322 0.245636 0.490876 +0.5195258 0.245636 0.490876 +0.5284142 0.245636 0.490876 +0.5370079 0.245636 0.490876 +0.5453253 0.245636 0.490876 +0.5533834 0.245636 0.490876 +0.5611974 0.245636 0.490876 +0.5687816 0.245636 0.490876 +0.092819 0.2686816 0.490876 +0.1056428 0.2686816 0.490876 +0.1201537 0.2686816 0.490876 +0.1409607 0.2686816 0.490876 +0.1678172 0.2686816 0.490876 +0.1950164 0.2686816 0.490876 +0.2210581 0.2686816 0.490876 +0.245636 0.2686816 0.490876 +0.2686816 0.2686816 0.490876 +0.2902431 0.2686816 0.490876 +0.3104189 0.2686816 0.490876 +0.3293248 0.2686816 0.490876 +0.3470774 0.2686816 0.490876 +0.3637862 0.2686816 0.490876 +0.3795513 0.2686816 0.490876 +0.3944623 0.2686816 0.490876 +0.4085988 0.2686816 0.490876 +0.4220313 0.2686816 0.490876 +0.4348222 0.2686816 0.490876 +0.4470264 0.2686816 0.490876 +0.4586928 0.2686816 0.490876 +0.4698649 0.2686816 0.490876 +0.4805811 0.2686816 0.490876 +0.490876 0.2686816 0.490876 +0.5007803 0.2686816 0.490876 +0.510322 0.2686816 0.490876 +0.5195258 0.2686816 0.490876 +0.5284142 0.2686816 0.490876 +0.5370079 0.2686816 0.490876 +0.5453253 0.2686816 0.490876 +0.5533834 0.2686816 0.490876 +0.5611974 0.2686816 0.490876 +0.5687816 0.2686816 0.490876 +0.092819 0.2902431 0.490876 +0.1056428 0.2902431 0.490876 +0.1201537 0.2902431 0.490876 +0.1409607 0.2902431 0.490876 +0.1678172 0.2902431 0.490876 +0.1950164 0.2902431 0.490876 +0.2210581 0.2902431 0.490876 +0.245636 0.2902431 0.490876 +0.2686816 0.2902431 0.490876 +0.2902431 0.2902431 0.490876 +0.3104189 0.2902431 0.490876 +0.3293248 0.2902431 0.490876 +0.3470774 0.2902431 0.490876 +0.3637862 0.2902431 0.490876 +0.3795513 0.2902431 0.490876 +0.3944623 0.2902431 0.490876 +0.4085988 0.2902431 0.490876 +0.4220313 0.2902431 0.490876 +0.4348222 0.2902431 0.490876 +0.4470264 0.2902431 0.490876 +0.4586928 0.2902431 0.490876 +0.4698649 0.2902431 0.490876 +0.4805811 0.2902431 0.490876 +0.490876 0.2902431 0.490876 +0.5007803 0.2902431 0.490876 +0.510322 0.2902431 0.490876 +0.5195258 0.2902431 0.490876 +0.5284142 0.2902431 0.490876 +0.5370079 0.2902431 0.490876 +0.5453253 0.2902431 0.490876 +0.5533834 0.2902431 0.490876 +0.5611974 0.2902431 0.490876 +0.5687816 0.2902431 0.490876 +0.092819 0.3104189 0.490876 +0.1056428 0.3104189 0.490876 +0.1201537 0.3104189 0.490876 +0.1409607 0.3104189 0.490876 +0.1678172 0.3104189 0.490876 +0.1950164 0.3104189 0.490876 +0.2210581 0.3104189 0.490876 +0.245636 0.3104189 0.490876 +0.2686816 0.3104189 0.490876 +0.2902431 0.3104189 0.490876 +0.3104189 0.3104189 0.490876 +0.3293248 0.3104189 0.490876 +0.3470774 0.3104189 0.490876 +0.3637862 0.3104189 0.490876 +0.3795513 0.3104189 0.490876 +0.3944623 0.3104189 0.490876 +0.4085988 0.3104189 0.490876 +0.4220313 0.3104189 0.490876 +0.4348222 0.3104189 0.490876 +0.4470264 0.3104189 0.490876 +0.4586928 0.3104189 0.490876 +0.4698649 0.3104189 0.490876 +0.4805811 0.3104189 0.490876 +0.490876 0.3104189 0.490876 +0.5007803 0.3104189 0.490876 +0.510322 0.3104189 0.490876 +0.5195258 0.3104189 0.490876 +0.5284142 0.3104189 0.490876 +0.5370079 0.3104189 0.490876 +0.5453253 0.3104189 0.490876 +0.5533834 0.3104189 0.490876 +0.5611974 0.3104189 0.490876 +0.5687816 0.3104189 0.490876 +0.092819 0.3293248 0.490876 +0.1056428 0.3293248 0.490876 +0.1201537 0.3293248 0.490876 +0.1409607 0.3293248 0.490876 +0.1678172 0.3293248 0.490876 +0.1950164 0.3293248 0.490876 +0.2210581 0.3293248 0.490876 +0.245636 0.3293248 0.490876 +0.2686816 0.3293248 0.490876 +0.2902431 0.3293248 0.490876 +0.3104189 0.3293248 0.490876 +0.3293248 0.3293248 0.490876 +0.3470774 0.3293248 0.490876 +0.3637862 0.3293248 0.490876 +0.3795513 0.3293248 0.490876 +0.3944623 0.3293248 0.490876 +0.4085988 0.3293248 0.490876 +0.4220313 0.3293248 0.490876 +0.4348222 0.3293248 0.490876 +0.4470264 0.3293248 0.490876 +0.4586928 0.3293248 0.490876 +0.4698649 0.3293248 0.490876 +0.4805811 0.3293248 0.490876 +0.490876 0.3293248 0.490876 +0.5007803 0.3293248 0.490876 +0.510322 0.3293248 0.490876 +0.5195258 0.3293248 0.490876 +0.5284142 0.3293248 0.490876 +0.5370079 0.3293248 0.490876 +0.5453253 0.3293248 0.490876 +0.5533834 0.3293248 0.490876 +0.5611974 0.3293248 0.490876 +0.5687816 0.3293248 0.490876 +0.092819 0.3470774 0.490876 +0.1056428 0.3470774 0.490876 +0.1201537 0.3470774 0.490876 +0.1409607 0.3470774 0.490876 +0.1678172 0.3470774 0.490876 +0.1950164 0.3470774 0.490876 +0.2210581 0.3470774 0.490876 +0.245636 0.3470774 0.490876 +0.2686816 0.3470774 0.490876 +0.2902431 0.3470774 0.490876 +0.3104189 0.3470774 0.490876 +0.3293248 0.3470774 0.490876 +0.3470774 0.3470774 0.490876 +0.3637862 0.3470774 0.490876 +0.3795513 0.3470774 0.490876 +0.3944623 0.3470774 0.490876 +0.4085988 0.3470774 0.490876 +0.4220313 0.3470774 0.490876 +0.4348222 0.3470774 0.490876 +0.4470264 0.3470774 0.490876 +0.4586928 0.3470774 0.490876 +0.4698649 0.3470774 0.490876 +0.4805811 0.3470774 0.490876 +0.490876 0.3470774 0.490876 +0.5007803 0.3470774 0.490876 +0.510322 0.3470774 0.490876 +0.5195258 0.3470774 0.490876 +0.5284142 0.3470774 0.490876 +0.5370079 0.3470774 0.490876 +0.5453253 0.3470774 0.490876 +0.5533834 0.3470774 0.490876 +0.5611974 0.3470774 0.490876 +0.5687816 0.3470774 0.490876 +0.092819 0.3637862 0.490876 +0.1056428 0.3637862 0.490876 +0.1201537 0.3637862 0.490876 +0.1409607 0.3637862 0.490876 +0.1678172 0.3637862 0.490876 +0.1950164 0.3637862 0.490876 +0.2210581 0.3637862 0.490876 +0.245636 0.3637862 0.490876 +0.2686816 0.3637862 0.490876 +0.2902431 0.3637862 0.490876 +0.3104189 0.3637862 0.490876 +0.3293248 0.3637862 0.490876 +0.3470774 0.3637862 0.490876 +0.3637862 0.3637862 0.490876 +0.3795513 0.3637862 0.490876 +0.3944623 0.3637862 0.490876 +0.4085988 0.3637862 0.490876 +0.4220313 0.3637862 0.490876 +0.4348222 0.3637862 0.490876 +0.4470264 0.3637862 0.490876 +0.4586928 0.3637862 0.490876 +0.4698649 0.3637862 0.490876 +0.4805811 0.3637862 0.490876 +0.490876 0.3637862 0.490876 +0.5007803 0.3637862 0.490876 +0.510322 0.3637862 0.490876 +0.5195258 0.3637862 0.490876 +0.5284142 0.3637862 0.490876 +0.5370079 0.3637862 0.490876 +0.5453253 0.3637862 0.490876 +0.5533834 0.3637862 0.490876 +0.5611974 0.3637862 0.490876 +0.5687816 0.3637862 0.490876 +0.092819 0.3795513 0.490876 +0.1056428 0.3795513 0.490876 +0.1201537 0.3795513 0.490876 +0.1409607 0.3795513 0.490876 +0.1678172 0.3795513 0.490876 +0.1950164 0.3795513 0.490876 +0.2210581 0.3795513 0.490876 +0.245636 0.3795513 0.490876 +0.2686816 0.3795513 0.490876 +0.2902431 0.3795513 0.490876 +0.3104189 0.3795513 0.490876 +0.3293248 0.3795513 0.490876 +0.3470774 0.3795513 0.490876 +0.3637862 0.3795513 0.490876 +0.3795513 0.3795513 0.490876 +0.3944623 0.3795513 0.490876 +0.4085988 0.3795513 0.490876 +0.4220313 0.3795513 0.490876 +0.4348222 0.3795513 0.490876 +0.4470264 0.3795513 0.490876 +0.4586928 0.3795513 0.490876 +0.4698649 0.3795513 0.490876 +0.4805811 0.3795513 0.490876 +0.490876 0.3795513 0.490876 +0.5007803 0.3795513 0.490876 +0.510322 0.3795513 0.490876 +0.5195258 0.3795513 0.490876 +0.5284142 0.3795513 0.490876 +0.5370079 0.3795513 0.490876 +0.5453253 0.3795513 0.490876 +0.5533834 0.3795513 0.490876 +0.5611974 0.3795513 0.490876 +0.5687816 0.3795513 0.490876 +0.092819 0.3944623 0.490876 +0.1056428 0.3944623 0.490876 +0.1201537 0.3944623 0.490876 +0.1409607 0.3944623 0.490876 +0.1678172 0.3944623 0.490876 +0.1950164 0.3944623 0.490876 +0.2210581 0.3944623 0.490876 +0.245636 0.3944623 0.490876 +0.2686816 0.3944623 0.490876 +0.2902431 0.3944623 0.490876 +0.3104189 0.3944623 0.490876 +0.3293248 0.3944623 0.490876 +0.3470774 0.3944623 0.490876 +0.3637862 0.3944623 0.490876 +0.3795513 0.3944623 0.490876 +0.3944623 0.3944623 0.490876 +0.4085988 0.3944623 0.490876 +0.4220313 0.3944623 0.490876 +0.4348222 0.3944623 0.490876 +0.4470264 0.3944623 0.490876 +0.4586928 0.3944623 0.490876 +0.4698649 0.3944623 0.490876 +0.4805811 0.3944623 0.490876 +0.490876 0.3944623 0.490876 +0.5007803 0.3944623 0.490876 +0.510322 0.3944623 0.490876 +0.5195258 0.3944623 0.490876 +0.5284142 0.3944623 0.490876 +0.5370079 0.3944623 0.490876 +0.5453253 0.3944623 0.490876 +0.5533834 0.3944623 0.490876 +0.5611974 0.3944623 0.490876 +0.5687816 0.3944623 0.490876 +0.092819 0.4085988 0.490876 +0.1056428 0.4085988 0.490876 +0.1201537 0.4085988 0.490876 +0.1409607 0.4085988 0.490876 +0.1678172 0.4085988 0.490876 +0.1950164 0.4085988 0.490876 +0.2210581 0.4085988 0.490876 +0.245636 0.4085988 0.490876 +0.2686816 0.4085988 0.490876 +0.2902431 0.4085988 0.490876 +0.3104189 0.4085988 0.490876 +0.3293248 0.4085988 0.490876 +0.3470774 0.4085988 0.490876 +0.3637862 0.4085988 0.490876 +0.3795513 0.4085988 0.490876 +0.3944623 0.4085988 0.490876 +0.4085988 0.4085988 0.490876 +0.4220313 0.4085988 0.490876 +0.4348222 0.4085988 0.490876 +0.4470264 0.4085988 0.490876 +0.4586928 0.4085988 0.490876 +0.4698649 0.4085988 0.490876 +0.4805811 0.4085988 0.490876 +0.490876 0.4085988 0.490876 +0.5007803 0.4085988 0.490876 +0.510322 0.4085988 0.490876 +0.5195258 0.4085988 0.490876 +0.5284142 0.4085988 0.490876 +0.5370079 0.4085988 0.490876 +0.5453253 0.4085988 0.490876 +0.5533834 0.4085988 0.490876 +0.5611974 0.4085988 0.490876 +0.5687816 0.4085988 0.490876 +0.092819 0.4220313 0.490876 +0.1056428 0.4220313 0.490876 +0.1201537 0.4220313 0.490876 +0.1409607 0.4220313 0.490876 +0.1678172 0.4220313 0.490876 +0.1950164 0.4220313 0.490876 +0.2210581 0.4220313 0.490876 +0.245636 0.4220313 0.490876 +0.2686816 0.4220313 0.490876 +0.2902431 0.4220313 0.490876 +0.3104189 0.4220313 0.490876 +0.3293248 0.4220313 0.490876 +0.3470774 0.4220313 0.490876 +0.3637862 0.4220313 0.490876 +0.3795513 0.4220313 0.490876 +0.3944623 0.4220313 0.490876 +0.4085988 0.4220313 0.490876 +0.4220313 0.4220313 0.490876 +0.4348222 0.4220313 0.490876 +0.4470264 0.4220313 0.490876 +0.4586928 0.4220313 0.490876 +0.4698649 0.4220313 0.490876 +0.4805811 0.4220313 0.490876 +0.490876 0.4220313 0.490876 +0.5007803 0.4220313 0.490876 +0.510322 0.4220313 0.490876 +0.5195258 0.4220313 0.490876 +0.5284142 0.4220313 0.490876 +0.5370079 0.4220313 0.490876 +0.5453253 0.4220313 0.490876 +0.5533834 0.4220313 0.490876 +0.5611974 0.4220313 0.490876 +0.5687816 0.4220313 0.490876 +0.092819 0.4348222 0.490876 +0.1056428 0.4348222 0.490876 +0.1201537 0.4348222 0.490876 +0.1409607 0.4348222 0.490876 +0.1678172 0.4348222 0.490876 +0.1950164 0.4348222 0.490876 +0.2210581 0.4348222 0.490876 +0.245636 0.4348222 0.490876 +0.2686816 0.4348222 0.490876 +0.2902431 0.4348222 0.490876 +0.3104189 0.4348222 0.490876 +0.3293248 0.4348222 0.490876 +0.3470774 0.4348222 0.490876 +0.3637862 0.4348222 0.490876 +0.3795513 0.4348222 0.490876 +0.3944623 0.4348222 0.490876 +0.4085988 0.4348222 0.490876 +0.4220313 0.4348222 0.490876 +0.4348222 0.4348222 0.490876 +0.4470264 0.4348222 0.490876 +0.4586928 0.4348222 0.490876 +0.4698649 0.4348222 0.490876 +0.4805811 0.4348222 0.490876 +0.490876 0.4348222 0.490876 +0.5007803 0.4348222 0.490876 +0.510322 0.4348222 0.490876 +0.5195258 0.4348222 0.490876 +0.5284142 0.4348222 0.490876 +0.5370079 0.4348222 0.490876 +0.5453253 0.4348222 0.490876 +0.5533834 0.4348222 0.490876 +0.5611974 0.4348222 0.490876 +0.5687816 0.4348222 0.490876 +0.092819 0.4470264 0.490876 +0.1056428 0.4470264 0.490876 +0.1201537 0.4470264 0.490876 +0.1409607 0.4470264 0.490876 +0.1678172 0.4470264 0.490876 +0.1950164 0.4470264 0.490876 +0.2210581 0.4470264 0.490876 +0.245636 0.4470264 0.490876 +0.2686816 0.4470264 0.490876 +0.2902431 0.4470264 0.490876 +0.3104189 0.4470264 0.490876 +0.3293248 0.4470264 0.490876 +0.3470774 0.4470264 0.490876 +0.3637862 0.4470264 0.490876 +0.3795513 0.4470264 0.490876 +0.3944623 0.4470264 0.490876 +0.4085988 0.4470264 0.490876 +0.4220313 0.4470264 0.490876 +0.4348222 0.4470264 0.490876 +0.4470264 0.4470264 0.490876 +0.4586928 0.4470264 0.490876 +0.4698649 0.4470264 0.490876 +0.4805811 0.4470264 0.490876 +0.490876 0.4470264 0.490876 +0.5007803 0.4470264 0.490876 +0.510322 0.4470264 0.490876 +0.5195258 0.4470264 0.490876 +0.5284142 0.4470264 0.490876 +0.5370079 0.4470264 0.490876 +0.5453253 0.4470264 0.490876 +0.5533834 0.4470264 0.490876 +0.5611974 0.4470264 0.490876 +0.5687816 0.4470264 0.490876 +0.092819 0.4586928 0.490876 +0.1056428 0.4586928 0.490876 +0.1201537 0.4586928 0.490876 +0.1409607 0.4586928 0.490876 +0.1678172 0.4586928 0.490876 +0.1950164 0.4586928 0.490876 +0.2210581 0.4586928 0.490876 +0.245636 0.4586928 0.490876 +0.2686816 0.4586928 0.490876 +0.2902431 0.4586928 0.490876 +0.3104189 0.4586928 0.490876 +0.3293248 0.4586928 0.490876 +0.3470774 0.4586928 0.490876 +0.3637862 0.4586928 0.490876 +0.3795513 0.4586928 0.490876 +0.3944623 0.4586928 0.490876 +0.4085988 0.4586928 0.490876 +0.4220313 0.4586928 0.490876 +0.4348222 0.4586928 0.490876 +0.4470264 0.4586928 0.490876 +0.4586928 0.4586928 0.490876 +0.4698649 0.4586928 0.490876 +0.4805811 0.4586928 0.490876 +0.490876 0.4586928 0.490876 +0.5007803 0.4586928 0.490876 +0.510322 0.4586928 0.490876 +0.5195258 0.4586928 0.490876 +0.5284142 0.4586928 0.490876 +0.5370079 0.4586928 0.490876 +0.5453253 0.4586928 0.490876 +0.5533834 0.4586928 0.490876 +0.5611974 0.4586928 0.490876 +0.5687816 0.4586928 0.490876 +0.092819 0.4698649 0.490876 +0.1056428 0.4698649 0.490876 +0.1201537 0.4698649 0.490876 +0.1409607 0.4698649 0.490876 +0.1678172 0.4698649 0.490876 +0.1950164 0.4698649 0.490876 +0.2210581 0.4698649 0.490876 +0.245636 0.4698649 0.490876 +0.2686816 0.4698649 0.490876 +0.2902431 0.4698649 0.490876 +0.3104189 0.4698649 0.490876 +0.3293248 0.4698649 0.490876 +0.3470774 0.4698649 0.490876 +0.3637862 0.4698649 0.490876 +0.3795513 0.4698649 0.490876 +0.3944623 0.4698649 0.490876 +0.4085988 0.4698649 0.490876 +0.4220313 0.4698649 0.490876 +0.4348222 0.4698649 0.490876 +0.4470264 0.4698649 0.490876 +0.4586928 0.4698649 0.490876 +0.4698649 0.4698649 0.490876 +0.4805811 0.4698649 0.490876 +0.490876 0.4698649 0.490876 +0.5007803 0.4698649 0.490876 +0.510322 0.4698649 0.490876 +0.5195258 0.4698649 0.490876 +0.5284142 0.4698649 0.490876 +0.5370079 0.4698649 0.490876 +0.5453253 0.4698649 0.490876 +0.5533834 0.4698649 0.490876 +0.5611974 0.4698649 0.490876 +0.5687816 0.4698649 0.490876 +0.092819 0.4805811 0.490876 +0.1056428 0.4805811 0.490876 +0.1201537 0.4805811 0.490876 +0.1409607 0.4805811 0.490876 +0.1678172 0.4805811 0.490876 +0.1950164 0.4805811 0.490876 +0.2210581 0.4805811 0.490876 +0.245636 0.4805811 0.490876 +0.2686816 0.4805811 0.490876 +0.2902431 0.4805811 0.490876 +0.3104189 0.4805811 0.490876 +0.3293248 0.4805811 0.490876 +0.3470774 0.4805811 0.490876 +0.3637862 0.4805811 0.490876 +0.3795513 0.4805811 0.490876 +0.3944623 0.4805811 0.490876 +0.4085988 0.4805811 0.490876 +0.4220313 0.4805811 0.490876 +0.4348222 0.4805811 0.490876 +0.4470264 0.4805811 0.490876 +0.4586928 0.4805811 0.490876 +0.4698649 0.4805811 0.490876 +0.4805811 0.4805811 0.490876 +0.490876 0.4805811 0.490876 +0.5007803 0.4805811 0.490876 +0.510322 0.4805811 0.490876 +0.5195258 0.4805811 0.490876 +0.5284142 0.4805811 0.490876 +0.5370079 0.4805811 0.490876 +0.5453253 0.4805811 0.490876 +0.5533834 0.4805811 0.490876 +0.5611974 0.4805811 0.490876 +0.5687816 0.4805811 0.490876 +0.092819 0.490876 0.490876 +0.1056428 0.490876 0.490876 +0.1201537 0.490876 0.490876 +0.1409607 0.490876 0.490876 +0.1678172 0.490876 0.490876 +0.1950164 0.490876 0.490876 +0.2210581 0.490876 0.490876 +0.245636 0.490876 0.490876 +0.2686816 0.490876 0.490876 +0.2902431 0.490876 0.490876 +0.3104189 0.490876 0.490876 +0.3293248 0.490876 0.490876 +0.3470774 0.490876 0.490876 +0.3637862 0.490876 0.490876 +0.3795513 0.490876 0.490876 +0.3944623 0.490876 0.490876 +0.4085988 0.490876 0.490876 +0.4220313 0.490876 0.490876 +0.4348222 0.490876 0.490876 +0.4470264 0.490876 0.490876 +0.4586928 0.490876 0.490876 +0.4698649 0.490876 0.490876 +0.4805811 0.490876 0.490876 +0.490876 0.490876 0.490876 +0.5007803 0.490876 0.490876 +0.510322 0.490876 0.490876 +0.5195258 0.490876 0.490876 +0.5284142 0.490876 0.490876 +0.5370079 0.490876 0.490876 +0.5453253 0.490876 0.490876 +0.5533834 0.490876 0.490876 +0.5611974 0.490876 0.490876 +0.5687816 0.490876 0.490876 +0.092819 0.5007803 0.490876 +0.1056428 0.5007803 0.490876 +0.1201537 0.5007803 0.490876 +0.1409607 0.5007803 0.490876 +0.1678172 0.5007803 0.490876 +0.1950164 0.5007803 0.490876 +0.2210581 0.5007803 0.490876 +0.245636 0.5007803 0.490876 +0.2686816 0.5007803 0.490876 +0.2902431 0.5007803 0.490876 +0.3104189 0.5007803 0.490876 +0.3293248 0.5007803 0.490876 +0.3470774 0.5007803 0.490876 +0.3637862 0.5007803 0.490876 +0.3795513 0.5007803 0.490876 +0.3944623 0.5007803 0.490876 +0.4085988 0.5007803 0.490876 +0.4220313 0.5007803 0.490876 +0.4348222 0.5007803 0.490876 +0.4470264 0.5007803 0.490876 +0.4586928 0.5007803 0.490876 +0.4698649 0.5007803 0.490876 +0.4805811 0.5007803 0.490876 +0.490876 0.5007803 0.490876 +0.5007803 0.5007803 0.490876 +0.510322 0.5007803 0.490876 +0.5195258 0.5007803 0.490876 +0.5284142 0.5007803 0.490876 +0.5370079 0.5007803 0.490876 +0.5453253 0.5007803 0.490876 +0.5533834 0.5007803 0.490876 +0.5611974 0.5007803 0.490876 +0.5687816 0.5007803 0.490876 +0.092819 0.510322 0.490876 +0.1056428 0.510322 0.490876 +0.1201537 0.510322 0.490876 +0.1409607 0.510322 0.490876 +0.1678172 0.510322 0.490876 +0.1950164 0.510322 0.490876 +0.2210581 0.510322 0.490876 +0.245636 0.510322 0.490876 +0.2686816 0.510322 0.490876 +0.2902431 0.510322 0.490876 +0.3104189 0.510322 0.490876 +0.3293248 0.510322 0.490876 +0.3470774 0.510322 0.490876 +0.3637862 0.510322 0.490876 +0.3795513 0.510322 0.490876 +0.3944623 0.510322 0.490876 +0.4085988 0.510322 0.490876 +0.4220313 0.510322 0.490876 +0.4348222 0.510322 0.490876 +0.4470264 0.510322 0.490876 +0.4586928 0.510322 0.490876 +0.4698649 0.510322 0.490876 +0.4805811 0.510322 0.490876 +0.490876 0.510322 0.490876 +0.5007803 0.510322 0.490876 +0.510322 0.510322 0.490876 +0.5195258 0.510322 0.490876 +0.5284142 0.510322 0.490876 +0.5370079 0.510322 0.490876 +0.5453253 0.510322 0.490876 +0.5533834 0.510322 0.490876 +0.5611974 0.510322 0.490876 +0.5687816 0.510322 0.490876 +0.092819 0.5195258 0.490876 +0.1056428 0.5195258 0.490876 +0.1201537 0.5195258 0.490876 +0.1409607 0.5195258 0.490876 +0.1678172 0.5195258 0.490876 +0.1950164 0.5195258 0.490876 +0.2210581 0.5195258 0.490876 +0.245636 0.5195258 0.490876 +0.2686816 0.5195258 0.490876 +0.2902431 0.5195258 0.490876 +0.3104189 0.5195258 0.490876 +0.3293248 0.5195258 0.490876 +0.3470774 0.5195258 0.490876 +0.3637862 0.5195258 0.490876 +0.3795513 0.5195258 0.490876 +0.3944623 0.5195258 0.490876 +0.4085988 0.5195258 0.490876 +0.4220313 0.5195258 0.490876 +0.4348222 0.5195258 0.490876 +0.4470264 0.5195258 0.490876 +0.4586928 0.5195258 0.490876 +0.4698649 0.5195258 0.490876 +0.4805811 0.5195258 0.490876 +0.490876 0.5195258 0.490876 +0.5007803 0.5195258 0.490876 +0.510322 0.5195258 0.490876 +0.5195258 0.5195258 0.490876 +0.5284142 0.5195258 0.490876 +0.5370079 0.5195258 0.490876 +0.5453253 0.5195258 0.490876 +0.5533834 0.5195258 0.490876 +0.5611974 0.5195258 0.490876 +0.5687816 0.5195258 0.490876 +0.092819 0.5284142 0.490876 +0.1056428 0.5284142 0.490876 +0.1201537 0.5284142 0.490876 +0.1409607 0.5284142 0.490876 +0.1678172 0.5284142 0.490876 +0.1950164 0.5284142 0.490876 +0.2210581 0.5284142 0.490876 +0.245636 0.5284142 0.490876 +0.2686816 0.5284142 0.490876 +0.2902431 0.5284142 0.490876 +0.3104189 0.5284142 0.490876 +0.3293248 0.5284142 0.490876 +0.3470774 0.5284142 0.490876 +0.3637862 0.5284142 0.490876 +0.3795513 0.5284142 0.490876 +0.3944623 0.5284142 0.490876 +0.4085988 0.5284142 0.490876 +0.4220313 0.5284142 0.490876 +0.4348222 0.5284142 0.490876 +0.4470264 0.5284142 0.490876 +0.4586928 0.5284142 0.490876 +0.4698649 0.5284142 0.490876 +0.4805811 0.5284142 0.490876 +0.490876 0.5284142 0.490876 +0.5007803 0.5284142 0.490876 +0.510322 0.5284142 0.490876 +0.5195258 0.5284142 0.490876 +0.5284142 0.5284142 0.490876 +0.5370079 0.5284142 0.490876 +0.5453253 0.5284142 0.490876 +0.5533834 0.5284142 0.490876 +0.5611974 0.5284142 0.490876 +0.5687816 0.5284142 0.490876 +0.092819 0.5370079 0.490876 +0.1056428 0.5370079 0.490876 +0.1201537 0.5370079 0.490876 +0.1409607 0.5370079 0.490876 +0.1678172 0.5370079 0.490876 +0.1950164 0.5370079 0.490876 +0.2210581 0.5370079 0.490876 +0.245636 0.5370079 0.490876 +0.2686816 0.5370079 0.490876 +0.2902431 0.5370079 0.490876 +0.3104189 0.5370079 0.490876 +0.3293248 0.5370079 0.490876 +0.3470774 0.5370079 0.490876 +0.3637862 0.5370079 0.490876 +0.3795513 0.5370079 0.490876 +0.3944623 0.5370079 0.490876 +0.4085988 0.5370079 0.490876 +0.4220313 0.5370079 0.490876 +0.4348222 0.5370079 0.490876 +0.4470264 0.5370079 0.490876 +0.4586928 0.5370079 0.490876 +0.4698649 0.5370079 0.490876 +0.4805811 0.5370079 0.490876 +0.490876 0.5370079 0.490876 +0.5007803 0.5370079 0.490876 +0.510322 0.5370079 0.490876 +0.5195258 0.5370079 0.490876 +0.5284142 0.5370079 0.490876 +0.5370079 0.5370079 0.490876 +0.5453253 0.5370079 0.490876 +0.5533834 0.5370079 0.490876 +0.5611974 0.5370079 0.490876 +0.5687816 0.5370079 0.490876 +0.092819 0.5453253 0.490876 +0.1056428 0.5453253 0.490876 +0.1201537 0.5453253 0.490876 +0.1409607 0.5453253 0.490876 +0.1678172 0.5453253 0.490876 +0.1950164 0.5453253 0.490876 +0.2210581 0.5453253 0.490876 +0.245636 0.5453253 0.490876 +0.2686816 0.5453253 0.490876 +0.2902431 0.5453253 0.490876 +0.3104189 0.5453253 0.490876 +0.3293248 0.5453253 0.490876 +0.3470774 0.5453253 0.490876 +0.3637862 0.5453253 0.490876 +0.3795513 0.5453253 0.490876 +0.3944623 0.5453253 0.490876 +0.4085988 0.5453253 0.490876 +0.4220313 0.5453253 0.490876 +0.4348222 0.5453253 0.490876 +0.4470264 0.5453253 0.490876 +0.4586928 0.5453253 0.490876 +0.4698649 0.5453253 0.490876 +0.4805811 0.5453253 0.490876 +0.490876 0.5453253 0.490876 +0.5007803 0.5453253 0.490876 +0.510322 0.5453253 0.490876 +0.5195258 0.5453253 0.490876 +0.5284142 0.5453253 0.490876 +0.5370079 0.5453253 0.490876 +0.5453253 0.5453253 0.490876 +0.5533834 0.5453253 0.490876 +0.5611974 0.5453253 0.490876 +0.5687816 0.5453253 0.490876 +0.092819 0.5533834 0.490876 +0.1056428 0.5533834 0.490876 +0.1201537 0.5533834 0.490876 +0.1409607 0.5533834 0.490876 +0.1678172 0.5533834 0.490876 +0.1950164 0.5533834 0.490876 +0.2210581 0.5533834 0.490876 +0.245636 0.5533834 0.490876 +0.2686816 0.5533834 0.490876 +0.2902431 0.5533834 0.490876 +0.3104189 0.5533834 0.490876 +0.3293248 0.5533834 0.490876 +0.3470774 0.5533834 0.490876 +0.3637862 0.5533834 0.490876 +0.3795513 0.5533834 0.490876 +0.3944623 0.5533834 0.490876 +0.4085988 0.5533834 0.490876 +0.4220313 0.5533834 0.490876 +0.4348222 0.5533834 0.490876 +0.4470264 0.5533834 0.490876 +0.4586928 0.5533834 0.490876 +0.4698649 0.5533834 0.490876 +0.4805811 0.5533834 0.490876 +0.490876 0.5533834 0.490876 +0.5007803 0.5533834 0.490876 +0.510322 0.5533834 0.490876 +0.5195258 0.5533834 0.490876 +0.5284142 0.5533834 0.490876 +0.5370079 0.5533834 0.490876 +0.5453253 0.5533834 0.490876 +0.5533834 0.5533834 0.490876 +0.5611974 0.5533834 0.490876 +0.5687816 0.5533834 0.490876 +0.092819 0.5611974 0.490876 +0.1056428 0.5611974 0.490876 +0.1201537 0.5611974 0.490876 +0.1409607 0.5611974 0.490876 +0.1678172 0.5611974 0.490876 +0.1950164 0.5611974 0.490876 +0.2210581 0.5611974 0.490876 +0.245636 0.5611974 0.490876 +0.2686816 0.5611974 0.490876 +0.2902431 0.5611974 0.490876 +0.3104189 0.5611974 0.490876 +0.3293248 0.5611974 0.490876 +0.3470774 0.5611974 0.490876 +0.3637862 0.5611974 0.490876 +0.3795513 0.5611974 0.490876 +0.3944623 0.5611974 0.490876 +0.4085988 0.5611974 0.490876 +0.4220313 0.5611974 0.490876 +0.4348222 0.5611974 0.490876 +0.4470264 0.5611974 0.490876 +0.4586928 0.5611974 0.490876 +0.4698649 0.5611974 0.490876 +0.4805811 0.5611974 0.490876 +0.490876 0.5611974 0.490876 +0.5007803 0.5611974 0.490876 +0.510322 0.5611974 0.490876 +0.5195258 0.5611974 0.490876 +0.5284142 0.5611974 0.490876 +0.5370079 0.5611974 0.490876 +0.5453253 0.5611974 0.490876 +0.5533834 0.5611974 0.490876 +0.5611974 0.5611974 0.490876 +0.5687816 0.5611974 0.490876 +0.092819 0.5687816 0.490876 +0.1056428 0.5687816 0.490876 +0.1201537 0.5687816 0.490876 +0.1409607 0.5687816 0.490876 +0.1678172 0.5687816 0.490876 +0.1950164 0.5687816 0.490876 +0.2210581 0.5687816 0.490876 +0.245636 0.5687816 0.490876 +0.2686816 0.5687816 0.490876 +0.2902431 0.5687816 0.490876 +0.3104189 0.5687816 0.490876 +0.3293248 0.5687816 0.490876 +0.3470774 0.5687816 0.490876 +0.3637862 0.5687816 0.490876 +0.3795513 0.5687816 0.490876 +0.3944623 0.5687816 0.490876 +0.4085988 0.5687816 0.490876 +0.4220313 0.5687816 0.490876 +0.4348222 0.5687816 0.490876 +0.4470264 0.5687816 0.490876 +0.4586928 0.5687816 0.490876 +0.4698649 0.5687816 0.490876 +0.4805811 0.5687816 0.490876 +0.490876 0.5687816 0.490876 +0.5007803 0.5687816 0.490876 +0.510322 0.5687816 0.490876 +0.5195258 0.5687816 0.490876 +0.5284142 0.5687816 0.490876 +0.5370079 0.5687816 0.490876 +0.5453253 0.5687816 0.490876 +0.5533834 0.5687816 0.490876 +0.5611974 0.5687816 0.490876 +0.5687816 0.5687816 0.490876 +0.092819 0.092819 0.5007803 +0.1056428 0.092819 0.5007803 +0.1201537 0.092819 0.5007803 +0.1409607 0.092819 0.5007803 +0.1678172 0.092819 0.5007803 +0.1950164 0.092819 0.5007803 +0.2210581 0.092819 0.5007803 +0.245636 0.092819 0.5007803 +0.2686816 0.092819 0.5007803 +0.2902431 0.092819 0.5007803 +0.3104189 0.092819 0.5007803 +0.3293248 0.092819 0.5007803 +0.3470774 0.092819 0.5007803 +0.3637862 0.092819 0.5007803 +0.3795513 0.092819 0.5007803 +0.3944623 0.092819 0.5007803 +0.4085988 0.092819 0.5007803 +0.4220313 0.092819 0.5007803 +0.4348222 0.092819 0.5007803 +0.4470264 0.092819 0.5007803 +0.4586928 0.092819 0.5007803 +0.4698649 0.092819 0.5007803 +0.4805811 0.092819 0.5007803 +0.490876 0.092819 0.5007803 +0.5007803 0.092819 0.5007803 +0.510322 0.092819 0.5007803 +0.5195258 0.092819 0.5007803 +0.5284142 0.092819 0.5007803 +0.5370079 0.092819 0.5007803 +0.5453253 0.092819 0.5007803 +0.5533834 0.092819 0.5007803 +0.5611974 0.092819 0.5007803 +0.5687816 0.092819 0.5007803 +0.092819 0.1056428 0.5007803 +0.1056428 0.1056428 0.5007803 +0.1201537 0.1056428 0.5007803 +0.1409607 0.1056428 0.5007803 +0.1678172 0.1056428 0.5007803 +0.1950164 0.1056428 0.5007803 +0.2210581 0.1056428 0.5007803 +0.245636 0.1056428 0.5007803 +0.2686816 0.1056428 0.5007803 +0.2902431 0.1056428 0.5007803 +0.3104189 0.1056428 0.5007803 +0.3293248 0.1056428 0.5007803 +0.3470774 0.1056428 0.5007803 +0.3637862 0.1056428 0.5007803 +0.3795513 0.1056428 0.5007803 +0.3944623 0.1056428 0.5007803 +0.4085988 0.1056428 0.5007803 +0.4220313 0.1056428 0.5007803 +0.4348222 0.1056428 0.5007803 +0.4470264 0.1056428 0.5007803 +0.4586928 0.1056428 0.5007803 +0.4698649 0.1056428 0.5007803 +0.4805811 0.1056428 0.5007803 +0.490876 0.1056428 0.5007803 +0.5007803 0.1056428 0.5007803 +0.510322 0.1056428 0.5007803 +0.5195258 0.1056428 0.5007803 +0.5284142 0.1056428 0.5007803 +0.5370079 0.1056428 0.5007803 +0.5453253 0.1056428 0.5007803 +0.5533834 0.1056428 0.5007803 +0.5611974 0.1056428 0.5007803 +0.5687816 0.1056428 0.5007803 +0.092819 0.1201537 0.5007803 +0.1056428 0.1201537 0.5007803 +0.1201537 0.1201537 0.5007803 +0.1409607 0.1201537 0.5007803 +0.1678172 0.1201537 0.5007803 +0.1950164 0.1201537 0.5007803 +0.2210581 0.1201537 0.5007803 +0.245636 0.1201537 0.5007803 +0.2686816 0.1201537 0.5007803 +0.2902431 0.1201537 0.5007803 +0.3104189 0.1201537 0.5007803 +0.3293248 0.1201537 0.5007803 +0.3470774 0.1201537 0.5007803 +0.3637862 0.1201537 0.5007803 +0.3795513 0.1201537 0.5007803 +0.3944623 0.1201537 0.5007803 +0.4085988 0.1201537 0.5007803 +0.4220313 0.1201537 0.5007803 +0.4348222 0.1201537 0.5007803 +0.4470264 0.1201537 0.5007803 +0.4586928 0.1201537 0.5007803 +0.4698649 0.1201537 0.5007803 +0.4805811 0.1201537 0.5007803 +0.490876 0.1201537 0.5007803 +0.5007803 0.1201537 0.5007803 +0.510322 0.1201537 0.5007803 +0.5195258 0.1201537 0.5007803 +0.5284142 0.1201537 0.5007803 +0.5370079 0.1201537 0.5007803 +0.5453253 0.1201537 0.5007803 +0.5533834 0.1201537 0.5007803 +0.5611974 0.1201537 0.5007803 +0.5687816 0.1201537 0.5007803 +0.092819 0.1409607 0.5007803 +0.1056428 0.1409607 0.5007803 +0.1201537 0.1409607 0.5007803 +0.1409607 0.1409607 0.5007803 +0.1678172 0.1409607 0.5007803 +0.1950164 0.1409607 0.5007803 +0.2210581 0.1409607 0.5007803 +0.245636 0.1409607 0.5007803 +0.2686816 0.1409607 0.5007803 +0.2902431 0.1409607 0.5007803 +0.3104189 0.1409607 0.5007803 +0.3293248 0.1409607 0.5007803 +0.3470774 0.1409607 0.5007803 +0.3637862 0.1409607 0.5007803 +0.3795513 0.1409607 0.5007803 +0.3944623 0.1409607 0.5007803 +0.4085988 0.1409607 0.5007803 +0.4220313 0.1409607 0.5007803 +0.4348222 0.1409607 0.5007803 +0.4470264 0.1409607 0.5007803 +0.4586928 0.1409607 0.5007803 +0.4698649 0.1409607 0.5007803 +0.4805811 0.1409607 0.5007803 +0.490876 0.1409607 0.5007803 +0.5007803 0.1409607 0.5007803 +0.510322 0.1409607 0.5007803 +0.5195258 0.1409607 0.5007803 +0.5284142 0.1409607 0.5007803 +0.5370079 0.1409607 0.5007803 +0.5453253 0.1409607 0.5007803 +0.5533834 0.1409607 0.5007803 +0.5611974 0.1409607 0.5007803 +0.5687816 0.1409607 0.5007803 +0.092819 0.1678172 0.5007803 +0.1056428 0.1678172 0.5007803 +0.1201537 0.1678172 0.5007803 +0.1409607 0.1678172 0.5007803 +0.1678172 0.1678172 0.5007803 +0.1950164 0.1678172 0.5007803 +0.2210581 0.1678172 0.5007803 +0.245636 0.1678172 0.5007803 +0.2686816 0.1678172 0.5007803 +0.2902431 0.1678172 0.5007803 +0.3104189 0.1678172 0.5007803 +0.3293248 0.1678172 0.5007803 +0.3470774 0.1678172 0.5007803 +0.3637862 0.1678172 0.5007803 +0.3795513 0.1678172 0.5007803 +0.3944623 0.1678172 0.5007803 +0.4085988 0.1678172 0.5007803 +0.4220313 0.1678172 0.5007803 +0.4348222 0.1678172 0.5007803 +0.4470264 0.1678172 0.5007803 +0.4586928 0.1678172 0.5007803 +0.4698649 0.1678172 0.5007803 +0.4805811 0.1678172 0.5007803 +0.490876 0.1678172 0.5007803 +0.5007803 0.1678172 0.5007803 +0.510322 0.1678172 0.5007803 +0.5195258 0.1678172 0.5007803 +0.5284142 0.1678172 0.5007803 +0.5370079 0.1678172 0.5007803 +0.5453253 0.1678172 0.5007803 +0.5533834 0.1678172 0.5007803 +0.5611974 0.1678172 0.5007803 +0.5687816 0.1678172 0.5007803 +0.092819 0.1950164 0.5007803 +0.1056428 0.1950164 0.5007803 +0.1201537 0.1950164 0.5007803 +0.1409607 0.1950164 0.5007803 +0.1678172 0.1950164 0.5007803 +0.1950164 0.1950164 0.5007803 +0.2210581 0.1950164 0.5007803 +0.245636 0.1950164 0.5007803 +0.2686816 0.1950164 0.5007803 +0.2902431 0.1950164 0.5007803 +0.3104189 0.1950164 0.5007803 +0.3293248 0.1950164 0.5007803 +0.3470774 0.1950164 0.5007803 +0.3637862 0.1950164 0.5007803 +0.3795513 0.1950164 0.5007803 +0.3944623 0.1950164 0.5007803 +0.4085988 0.1950164 0.5007803 +0.4220313 0.1950164 0.5007803 +0.4348222 0.1950164 0.5007803 +0.4470264 0.1950164 0.5007803 +0.4586928 0.1950164 0.5007803 +0.4698649 0.1950164 0.5007803 +0.4805811 0.1950164 0.5007803 +0.490876 0.1950164 0.5007803 +0.5007803 0.1950164 0.5007803 +0.510322 0.1950164 0.5007803 +0.5195258 0.1950164 0.5007803 +0.5284142 0.1950164 0.5007803 +0.5370079 0.1950164 0.5007803 +0.5453253 0.1950164 0.5007803 +0.5533834 0.1950164 0.5007803 +0.5611974 0.1950164 0.5007803 +0.5687816 0.1950164 0.5007803 +0.092819 0.2210581 0.5007803 +0.1056428 0.2210581 0.5007803 +0.1201537 0.2210581 0.5007803 +0.1409607 0.2210581 0.5007803 +0.1678172 0.2210581 0.5007803 +0.1950164 0.2210581 0.5007803 +0.2210581 0.2210581 0.5007803 +0.245636 0.2210581 0.5007803 +0.2686816 0.2210581 0.5007803 +0.2902431 0.2210581 0.5007803 +0.3104189 0.2210581 0.5007803 +0.3293248 0.2210581 0.5007803 +0.3470774 0.2210581 0.5007803 +0.3637862 0.2210581 0.5007803 +0.3795513 0.2210581 0.5007803 +0.3944623 0.2210581 0.5007803 +0.4085988 0.2210581 0.5007803 +0.4220313 0.2210581 0.5007803 +0.4348222 0.2210581 0.5007803 +0.4470264 0.2210581 0.5007803 +0.4586928 0.2210581 0.5007803 +0.4698649 0.2210581 0.5007803 +0.4805811 0.2210581 0.5007803 +0.490876 0.2210581 0.5007803 +0.5007803 0.2210581 0.5007803 +0.510322 0.2210581 0.5007803 +0.5195258 0.2210581 0.5007803 +0.5284142 0.2210581 0.5007803 +0.5370079 0.2210581 0.5007803 +0.5453253 0.2210581 0.5007803 +0.5533834 0.2210581 0.5007803 +0.5611974 0.2210581 0.5007803 +0.5687816 0.2210581 0.5007803 +0.092819 0.245636 0.5007803 +0.1056428 0.245636 0.5007803 +0.1201537 0.245636 0.5007803 +0.1409607 0.245636 0.5007803 +0.1678172 0.245636 0.5007803 +0.1950164 0.245636 0.5007803 +0.2210581 0.245636 0.5007803 +0.245636 0.245636 0.5007803 +0.2686816 0.245636 0.5007803 +0.2902431 0.245636 0.5007803 +0.3104189 0.245636 0.5007803 +0.3293248 0.245636 0.5007803 +0.3470774 0.245636 0.5007803 +0.3637862 0.245636 0.5007803 +0.3795513 0.245636 0.5007803 +0.3944623 0.245636 0.5007803 +0.4085988 0.245636 0.5007803 +0.4220313 0.245636 0.5007803 +0.4348222 0.245636 0.5007803 +0.4470264 0.245636 0.5007803 +0.4586928 0.245636 0.5007803 +0.4698649 0.245636 0.5007803 +0.4805811 0.245636 0.5007803 +0.490876 0.245636 0.5007803 +0.5007803 0.245636 0.5007803 +0.510322 0.245636 0.5007803 +0.5195258 0.245636 0.5007803 +0.5284142 0.245636 0.5007803 +0.5370079 0.245636 0.5007803 +0.5453253 0.245636 0.5007803 +0.5533834 0.245636 0.5007803 +0.5611974 0.245636 0.5007803 +0.5687816 0.245636 0.5007803 +0.092819 0.2686816 0.5007803 +0.1056428 0.2686816 0.5007803 +0.1201537 0.2686816 0.5007803 +0.1409607 0.2686816 0.5007803 +0.1678172 0.2686816 0.5007803 +0.1950164 0.2686816 0.5007803 +0.2210581 0.2686816 0.5007803 +0.245636 0.2686816 0.5007803 +0.2686816 0.2686816 0.5007803 +0.2902431 0.2686816 0.5007803 +0.3104189 0.2686816 0.5007803 +0.3293248 0.2686816 0.5007803 +0.3470774 0.2686816 0.5007803 +0.3637862 0.2686816 0.5007803 +0.3795513 0.2686816 0.5007803 +0.3944623 0.2686816 0.5007803 +0.4085988 0.2686816 0.5007803 +0.4220313 0.2686816 0.5007803 +0.4348222 0.2686816 0.5007803 +0.4470264 0.2686816 0.5007803 +0.4586928 0.2686816 0.5007803 +0.4698649 0.2686816 0.5007803 +0.4805811 0.2686816 0.5007803 +0.490876 0.2686816 0.5007803 +0.5007803 0.2686816 0.5007803 +0.510322 0.2686816 0.5007803 +0.5195258 0.2686816 0.5007803 +0.5284142 0.2686816 0.5007803 +0.5370079 0.2686816 0.5007803 +0.5453253 0.2686816 0.5007803 +0.5533834 0.2686816 0.5007803 +0.5611974 0.2686816 0.5007803 +0.5687816 0.2686816 0.5007803 +0.092819 0.2902431 0.5007803 +0.1056428 0.2902431 0.5007803 +0.1201537 0.2902431 0.5007803 +0.1409607 0.2902431 0.5007803 +0.1678172 0.2902431 0.5007803 +0.1950164 0.2902431 0.5007803 +0.2210581 0.2902431 0.5007803 +0.245636 0.2902431 0.5007803 +0.2686816 0.2902431 0.5007803 +0.2902431 0.2902431 0.5007803 +0.3104189 0.2902431 0.5007803 +0.3293248 0.2902431 0.5007803 +0.3470774 0.2902431 0.5007803 +0.3637862 0.2902431 0.5007803 +0.3795513 0.2902431 0.5007803 +0.3944623 0.2902431 0.5007803 +0.4085988 0.2902431 0.5007803 +0.4220313 0.2902431 0.5007803 +0.4348222 0.2902431 0.5007803 +0.4470264 0.2902431 0.5007803 +0.4586928 0.2902431 0.5007803 +0.4698649 0.2902431 0.5007803 +0.4805811 0.2902431 0.5007803 +0.490876 0.2902431 0.5007803 +0.5007803 0.2902431 0.5007803 +0.510322 0.2902431 0.5007803 +0.5195258 0.2902431 0.5007803 +0.5284142 0.2902431 0.5007803 +0.5370079 0.2902431 0.5007803 +0.5453253 0.2902431 0.5007803 +0.5533834 0.2902431 0.5007803 +0.5611974 0.2902431 0.5007803 +0.5687816 0.2902431 0.5007803 +0.092819 0.3104189 0.5007803 +0.1056428 0.3104189 0.5007803 +0.1201537 0.3104189 0.5007803 +0.1409607 0.3104189 0.5007803 +0.1678172 0.3104189 0.5007803 +0.1950164 0.3104189 0.5007803 +0.2210581 0.3104189 0.5007803 +0.245636 0.3104189 0.5007803 +0.2686816 0.3104189 0.5007803 +0.2902431 0.3104189 0.5007803 +0.3104189 0.3104189 0.5007803 +0.3293248 0.3104189 0.5007803 +0.3470774 0.3104189 0.5007803 +0.3637862 0.3104189 0.5007803 +0.3795513 0.3104189 0.5007803 +0.3944623 0.3104189 0.5007803 +0.4085988 0.3104189 0.5007803 +0.4220313 0.3104189 0.5007803 +0.4348222 0.3104189 0.5007803 +0.4470264 0.3104189 0.5007803 +0.4586928 0.3104189 0.5007803 +0.4698649 0.3104189 0.5007803 +0.4805811 0.3104189 0.5007803 +0.490876 0.3104189 0.5007803 +0.5007803 0.3104189 0.5007803 +0.510322 0.3104189 0.5007803 +0.5195258 0.3104189 0.5007803 +0.5284142 0.3104189 0.5007803 +0.5370079 0.3104189 0.5007803 +0.5453253 0.3104189 0.5007803 +0.5533834 0.3104189 0.5007803 +0.5611974 0.3104189 0.5007803 +0.5687816 0.3104189 0.5007803 +0.092819 0.3293248 0.5007803 +0.1056428 0.3293248 0.5007803 +0.1201537 0.3293248 0.5007803 +0.1409607 0.3293248 0.5007803 +0.1678172 0.3293248 0.5007803 +0.1950164 0.3293248 0.5007803 +0.2210581 0.3293248 0.5007803 +0.245636 0.3293248 0.5007803 +0.2686816 0.3293248 0.5007803 +0.2902431 0.3293248 0.5007803 +0.3104189 0.3293248 0.5007803 +0.3293248 0.3293248 0.5007803 +0.3470774 0.3293248 0.5007803 +0.3637862 0.3293248 0.5007803 +0.3795513 0.3293248 0.5007803 +0.3944623 0.3293248 0.5007803 +0.4085988 0.3293248 0.5007803 +0.4220313 0.3293248 0.5007803 +0.4348222 0.3293248 0.5007803 +0.4470264 0.3293248 0.5007803 +0.4586928 0.3293248 0.5007803 +0.4698649 0.3293248 0.5007803 +0.4805811 0.3293248 0.5007803 +0.490876 0.3293248 0.5007803 +0.5007803 0.3293248 0.5007803 +0.510322 0.3293248 0.5007803 +0.5195258 0.3293248 0.5007803 +0.5284142 0.3293248 0.5007803 +0.5370079 0.3293248 0.5007803 +0.5453253 0.3293248 0.5007803 +0.5533834 0.3293248 0.5007803 +0.5611974 0.3293248 0.5007803 +0.5687816 0.3293248 0.5007803 +0.092819 0.3470774 0.5007803 +0.1056428 0.3470774 0.5007803 +0.1201537 0.3470774 0.5007803 +0.1409607 0.3470774 0.5007803 +0.1678172 0.3470774 0.5007803 +0.1950164 0.3470774 0.5007803 +0.2210581 0.3470774 0.5007803 +0.245636 0.3470774 0.5007803 +0.2686816 0.3470774 0.5007803 +0.2902431 0.3470774 0.5007803 +0.3104189 0.3470774 0.5007803 +0.3293248 0.3470774 0.5007803 +0.3470774 0.3470774 0.5007803 +0.3637862 0.3470774 0.5007803 +0.3795513 0.3470774 0.5007803 +0.3944623 0.3470774 0.5007803 +0.4085988 0.3470774 0.5007803 +0.4220313 0.3470774 0.5007803 +0.4348222 0.3470774 0.5007803 +0.4470264 0.3470774 0.5007803 +0.4586928 0.3470774 0.5007803 +0.4698649 0.3470774 0.5007803 +0.4805811 0.3470774 0.5007803 +0.490876 0.3470774 0.5007803 +0.5007803 0.3470774 0.5007803 +0.510322 0.3470774 0.5007803 +0.5195258 0.3470774 0.5007803 +0.5284142 0.3470774 0.5007803 +0.5370079 0.3470774 0.5007803 +0.5453253 0.3470774 0.5007803 +0.5533834 0.3470774 0.5007803 +0.5611974 0.3470774 0.5007803 +0.5687816 0.3470774 0.5007803 +0.092819 0.3637862 0.5007803 +0.1056428 0.3637862 0.5007803 +0.1201537 0.3637862 0.5007803 +0.1409607 0.3637862 0.5007803 +0.1678172 0.3637862 0.5007803 +0.1950164 0.3637862 0.5007803 +0.2210581 0.3637862 0.5007803 +0.245636 0.3637862 0.5007803 +0.2686816 0.3637862 0.5007803 +0.2902431 0.3637862 0.5007803 +0.3104189 0.3637862 0.5007803 +0.3293248 0.3637862 0.5007803 +0.3470774 0.3637862 0.5007803 +0.3637862 0.3637862 0.5007803 +0.3795513 0.3637862 0.5007803 +0.3944623 0.3637862 0.5007803 +0.4085988 0.3637862 0.5007803 +0.4220313 0.3637862 0.5007803 +0.4348222 0.3637862 0.5007803 +0.4470264 0.3637862 0.5007803 +0.4586928 0.3637862 0.5007803 +0.4698649 0.3637862 0.5007803 +0.4805811 0.3637862 0.5007803 +0.490876 0.3637862 0.5007803 +0.5007803 0.3637862 0.5007803 +0.510322 0.3637862 0.5007803 +0.5195258 0.3637862 0.5007803 +0.5284142 0.3637862 0.5007803 +0.5370079 0.3637862 0.5007803 +0.5453253 0.3637862 0.5007803 +0.5533834 0.3637862 0.5007803 +0.5611974 0.3637862 0.5007803 +0.5687816 0.3637862 0.5007803 +0.092819 0.3795513 0.5007803 +0.1056428 0.3795513 0.5007803 +0.1201537 0.3795513 0.5007803 +0.1409607 0.3795513 0.5007803 +0.1678172 0.3795513 0.5007803 +0.1950164 0.3795513 0.5007803 +0.2210581 0.3795513 0.5007803 +0.245636 0.3795513 0.5007803 +0.2686816 0.3795513 0.5007803 +0.2902431 0.3795513 0.5007803 +0.3104189 0.3795513 0.5007803 +0.3293248 0.3795513 0.5007803 +0.3470774 0.3795513 0.5007803 +0.3637862 0.3795513 0.5007803 +0.3795513 0.3795513 0.5007803 +0.3944623 0.3795513 0.5007803 +0.4085988 0.3795513 0.5007803 +0.4220313 0.3795513 0.5007803 +0.4348222 0.3795513 0.5007803 +0.4470264 0.3795513 0.5007803 +0.4586928 0.3795513 0.5007803 +0.4698649 0.3795513 0.5007803 +0.4805811 0.3795513 0.5007803 +0.490876 0.3795513 0.5007803 +0.5007803 0.3795513 0.5007803 +0.510322 0.3795513 0.5007803 +0.5195258 0.3795513 0.5007803 +0.5284142 0.3795513 0.5007803 +0.5370079 0.3795513 0.5007803 +0.5453253 0.3795513 0.5007803 +0.5533834 0.3795513 0.5007803 +0.5611974 0.3795513 0.5007803 +0.5687816 0.3795513 0.5007803 +0.092819 0.3944623 0.5007803 +0.1056428 0.3944623 0.5007803 +0.1201537 0.3944623 0.5007803 +0.1409607 0.3944623 0.5007803 +0.1678172 0.3944623 0.5007803 +0.1950164 0.3944623 0.5007803 +0.2210581 0.3944623 0.5007803 +0.245636 0.3944623 0.5007803 +0.2686816 0.3944623 0.5007803 +0.2902431 0.3944623 0.5007803 +0.3104189 0.3944623 0.5007803 +0.3293248 0.3944623 0.5007803 +0.3470774 0.3944623 0.5007803 +0.3637862 0.3944623 0.5007803 +0.3795513 0.3944623 0.5007803 +0.3944623 0.3944623 0.5007803 +0.4085988 0.3944623 0.5007803 +0.4220313 0.3944623 0.5007803 +0.4348222 0.3944623 0.5007803 +0.4470264 0.3944623 0.5007803 +0.4586928 0.3944623 0.5007803 +0.4698649 0.3944623 0.5007803 +0.4805811 0.3944623 0.5007803 +0.490876 0.3944623 0.5007803 +0.5007803 0.3944623 0.5007803 +0.510322 0.3944623 0.5007803 +0.5195258 0.3944623 0.5007803 +0.5284142 0.3944623 0.5007803 +0.5370079 0.3944623 0.5007803 +0.5453253 0.3944623 0.5007803 +0.5533834 0.3944623 0.5007803 +0.5611974 0.3944623 0.5007803 +0.5687816 0.3944623 0.5007803 +0.092819 0.4085988 0.5007803 +0.1056428 0.4085988 0.5007803 +0.1201537 0.4085988 0.5007803 +0.1409607 0.4085988 0.5007803 +0.1678172 0.4085988 0.5007803 +0.1950164 0.4085988 0.5007803 +0.2210581 0.4085988 0.5007803 +0.245636 0.4085988 0.5007803 +0.2686816 0.4085988 0.5007803 +0.2902431 0.4085988 0.5007803 +0.3104189 0.4085988 0.5007803 +0.3293248 0.4085988 0.5007803 +0.3470774 0.4085988 0.5007803 +0.3637862 0.4085988 0.5007803 +0.3795513 0.4085988 0.5007803 +0.3944623 0.4085988 0.5007803 +0.4085988 0.4085988 0.5007803 +0.4220313 0.4085988 0.5007803 +0.4348222 0.4085988 0.5007803 +0.4470264 0.4085988 0.5007803 +0.4586928 0.4085988 0.5007803 +0.4698649 0.4085988 0.5007803 +0.4805811 0.4085988 0.5007803 +0.490876 0.4085988 0.5007803 +0.5007803 0.4085988 0.5007803 +0.510322 0.4085988 0.5007803 +0.5195258 0.4085988 0.5007803 +0.5284142 0.4085988 0.5007803 +0.5370079 0.4085988 0.5007803 +0.5453253 0.4085988 0.5007803 +0.5533834 0.4085988 0.5007803 +0.5611974 0.4085988 0.5007803 +0.5687816 0.4085988 0.5007803 +0.092819 0.4220313 0.5007803 +0.1056428 0.4220313 0.5007803 +0.1201537 0.4220313 0.5007803 +0.1409607 0.4220313 0.5007803 +0.1678172 0.4220313 0.5007803 +0.1950164 0.4220313 0.5007803 +0.2210581 0.4220313 0.5007803 +0.245636 0.4220313 0.5007803 +0.2686816 0.4220313 0.5007803 +0.2902431 0.4220313 0.5007803 +0.3104189 0.4220313 0.5007803 +0.3293248 0.4220313 0.5007803 +0.3470774 0.4220313 0.5007803 +0.3637862 0.4220313 0.5007803 +0.3795513 0.4220313 0.5007803 +0.3944623 0.4220313 0.5007803 +0.4085988 0.4220313 0.5007803 +0.4220313 0.4220313 0.5007803 +0.4348222 0.4220313 0.5007803 +0.4470264 0.4220313 0.5007803 +0.4586928 0.4220313 0.5007803 +0.4698649 0.4220313 0.5007803 +0.4805811 0.4220313 0.5007803 +0.490876 0.4220313 0.5007803 +0.5007803 0.4220313 0.5007803 +0.510322 0.4220313 0.5007803 +0.5195258 0.4220313 0.5007803 +0.5284142 0.4220313 0.5007803 +0.5370079 0.4220313 0.5007803 +0.5453253 0.4220313 0.5007803 +0.5533834 0.4220313 0.5007803 +0.5611974 0.4220313 0.5007803 +0.5687816 0.4220313 0.5007803 +0.092819 0.4348222 0.5007803 +0.1056428 0.4348222 0.5007803 +0.1201537 0.4348222 0.5007803 +0.1409607 0.4348222 0.5007803 +0.1678172 0.4348222 0.5007803 +0.1950164 0.4348222 0.5007803 +0.2210581 0.4348222 0.5007803 +0.245636 0.4348222 0.5007803 +0.2686816 0.4348222 0.5007803 +0.2902431 0.4348222 0.5007803 +0.3104189 0.4348222 0.5007803 +0.3293248 0.4348222 0.5007803 +0.3470774 0.4348222 0.5007803 +0.3637862 0.4348222 0.5007803 +0.3795513 0.4348222 0.5007803 +0.3944623 0.4348222 0.5007803 +0.4085988 0.4348222 0.5007803 +0.4220313 0.4348222 0.5007803 +0.4348222 0.4348222 0.5007803 +0.4470264 0.4348222 0.5007803 +0.4586928 0.4348222 0.5007803 +0.4698649 0.4348222 0.5007803 +0.4805811 0.4348222 0.5007803 +0.490876 0.4348222 0.5007803 +0.5007803 0.4348222 0.5007803 +0.510322 0.4348222 0.5007803 +0.5195258 0.4348222 0.5007803 +0.5284142 0.4348222 0.5007803 +0.5370079 0.4348222 0.5007803 +0.5453253 0.4348222 0.5007803 +0.5533834 0.4348222 0.5007803 +0.5611974 0.4348222 0.5007803 +0.5687816 0.4348222 0.5007803 +0.092819 0.4470264 0.5007803 +0.1056428 0.4470264 0.5007803 +0.1201537 0.4470264 0.5007803 +0.1409607 0.4470264 0.5007803 +0.1678172 0.4470264 0.5007803 +0.1950164 0.4470264 0.5007803 +0.2210581 0.4470264 0.5007803 +0.245636 0.4470264 0.5007803 +0.2686816 0.4470264 0.5007803 +0.2902431 0.4470264 0.5007803 +0.3104189 0.4470264 0.5007803 +0.3293248 0.4470264 0.5007803 +0.3470774 0.4470264 0.5007803 +0.3637862 0.4470264 0.5007803 +0.3795513 0.4470264 0.5007803 +0.3944623 0.4470264 0.5007803 +0.4085988 0.4470264 0.5007803 +0.4220313 0.4470264 0.5007803 +0.4348222 0.4470264 0.5007803 +0.4470264 0.4470264 0.5007803 +0.4586928 0.4470264 0.5007803 +0.4698649 0.4470264 0.5007803 +0.4805811 0.4470264 0.5007803 +0.490876 0.4470264 0.5007803 +0.5007803 0.4470264 0.5007803 +0.510322 0.4470264 0.5007803 +0.5195258 0.4470264 0.5007803 +0.5284142 0.4470264 0.5007803 +0.5370079 0.4470264 0.5007803 +0.5453253 0.4470264 0.5007803 +0.5533834 0.4470264 0.5007803 +0.5611974 0.4470264 0.5007803 +0.5687816 0.4470264 0.5007803 +0.092819 0.4586928 0.5007803 +0.1056428 0.4586928 0.5007803 +0.1201537 0.4586928 0.5007803 +0.1409607 0.4586928 0.5007803 +0.1678172 0.4586928 0.5007803 +0.1950164 0.4586928 0.5007803 +0.2210581 0.4586928 0.5007803 +0.245636 0.4586928 0.5007803 +0.2686816 0.4586928 0.5007803 +0.2902431 0.4586928 0.5007803 +0.3104189 0.4586928 0.5007803 +0.3293248 0.4586928 0.5007803 +0.3470774 0.4586928 0.5007803 +0.3637862 0.4586928 0.5007803 +0.3795513 0.4586928 0.5007803 +0.3944623 0.4586928 0.5007803 +0.4085988 0.4586928 0.5007803 +0.4220313 0.4586928 0.5007803 +0.4348222 0.4586928 0.5007803 +0.4470264 0.4586928 0.5007803 +0.4586928 0.4586928 0.5007803 +0.4698649 0.4586928 0.5007803 +0.4805811 0.4586928 0.5007803 +0.490876 0.4586928 0.5007803 +0.5007803 0.4586928 0.5007803 +0.510322 0.4586928 0.5007803 +0.5195258 0.4586928 0.5007803 +0.5284142 0.4586928 0.5007803 +0.5370079 0.4586928 0.5007803 +0.5453253 0.4586928 0.5007803 +0.5533834 0.4586928 0.5007803 +0.5611974 0.4586928 0.5007803 +0.5687816 0.4586928 0.5007803 +0.092819 0.4698649 0.5007803 +0.1056428 0.4698649 0.5007803 +0.1201537 0.4698649 0.5007803 +0.1409607 0.4698649 0.5007803 +0.1678172 0.4698649 0.5007803 +0.1950164 0.4698649 0.5007803 +0.2210581 0.4698649 0.5007803 +0.245636 0.4698649 0.5007803 +0.2686816 0.4698649 0.5007803 +0.2902431 0.4698649 0.5007803 +0.3104189 0.4698649 0.5007803 +0.3293248 0.4698649 0.5007803 +0.3470774 0.4698649 0.5007803 +0.3637862 0.4698649 0.5007803 +0.3795513 0.4698649 0.5007803 +0.3944623 0.4698649 0.5007803 +0.4085988 0.4698649 0.5007803 +0.4220313 0.4698649 0.5007803 +0.4348222 0.4698649 0.5007803 +0.4470264 0.4698649 0.5007803 +0.4586928 0.4698649 0.5007803 +0.4698649 0.4698649 0.5007803 +0.4805811 0.4698649 0.5007803 +0.490876 0.4698649 0.5007803 +0.5007803 0.4698649 0.5007803 +0.510322 0.4698649 0.5007803 +0.5195258 0.4698649 0.5007803 +0.5284142 0.4698649 0.5007803 +0.5370079 0.4698649 0.5007803 +0.5453253 0.4698649 0.5007803 +0.5533834 0.4698649 0.5007803 +0.5611974 0.4698649 0.5007803 +0.5687816 0.4698649 0.5007803 +0.092819 0.4805811 0.5007803 +0.1056428 0.4805811 0.5007803 +0.1201537 0.4805811 0.5007803 +0.1409607 0.4805811 0.5007803 +0.1678172 0.4805811 0.5007803 +0.1950164 0.4805811 0.5007803 +0.2210581 0.4805811 0.5007803 +0.245636 0.4805811 0.5007803 +0.2686816 0.4805811 0.5007803 +0.2902431 0.4805811 0.5007803 +0.3104189 0.4805811 0.5007803 +0.3293248 0.4805811 0.5007803 +0.3470774 0.4805811 0.5007803 +0.3637862 0.4805811 0.5007803 +0.3795513 0.4805811 0.5007803 +0.3944623 0.4805811 0.5007803 +0.4085988 0.4805811 0.5007803 +0.4220313 0.4805811 0.5007803 +0.4348222 0.4805811 0.5007803 +0.4470264 0.4805811 0.5007803 +0.4586928 0.4805811 0.5007803 +0.4698649 0.4805811 0.5007803 +0.4805811 0.4805811 0.5007803 +0.490876 0.4805811 0.5007803 +0.5007803 0.4805811 0.5007803 +0.510322 0.4805811 0.5007803 +0.5195258 0.4805811 0.5007803 +0.5284142 0.4805811 0.5007803 +0.5370079 0.4805811 0.5007803 +0.5453253 0.4805811 0.5007803 +0.5533834 0.4805811 0.5007803 +0.5611974 0.4805811 0.5007803 +0.5687816 0.4805811 0.5007803 +0.092819 0.490876 0.5007803 +0.1056428 0.490876 0.5007803 +0.1201537 0.490876 0.5007803 +0.1409607 0.490876 0.5007803 +0.1678172 0.490876 0.5007803 +0.1950164 0.490876 0.5007803 +0.2210581 0.490876 0.5007803 +0.245636 0.490876 0.5007803 +0.2686816 0.490876 0.5007803 +0.2902431 0.490876 0.5007803 +0.3104189 0.490876 0.5007803 +0.3293248 0.490876 0.5007803 +0.3470774 0.490876 0.5007803 +0.3637862 0.490876 0.5007803 +0.3795513 0.490876 0.5007803 +0.3944623 0.490876 0.5007803 +0.4085988 0.490876 0.5007803 +0.4220313 0.490876 0.5007803 +0.4348222 0.490876 0.5007803 +0.4470264 0.490876 0.5007803 +0.4586928 0.490876 0.5007803 +0.4698649 0.490876 0.5007803 +0.4805811 0.490876 0.5007803 +0.490876 0.490876 0.5007803 +0.5007803 0.490876 0.5007803 +0.510322 0.490876 0.5007803 +0.5195258 0.490876 0.5007803 +0.5284142 0.490876 0.5007803 +0.5370079 0.490876 0.5007803 +0.5453253 0.490876 0.5007803 +0.5533834 0.490876 0.5007803 +0.5611974 0.490876 0.5007803 +0.5687816 0.490876 0.5007803 +0.092819 0.5007803 0.5007803 +0.1056428 0.5007803 0.5007803 +0.1201537 0.5007803 0.5007803 +0.1409607 0.5007803 0.5007803 +0.1678172 0.5007803 0.5007803 +0.1950164 0.5007803 0.5007803 +0.2210581 0.5007803 0.5007803 +0.245636 0.5007803 0.5007803 +0.2686816 0.5007803 0.5007803 +0.2902431 0.5007803 0.5007803 +0.3104189 0.5007803 0.5007803 +0.3293248 0.5007803 0.5007803 +0.3470774 0.5007803 0.5007803 +0.3637862 0.5007803 0.5007803 +0.3795513 0.5007803 0.5007803 +0.3944623 0.5007803 0.5007803 +0.4085988 0.5007803 0.5007803 +0.4220313 0.5007803 0.5007803 +0.4348222 0.5007803 0.5007803 +0.4470264 0.5007803 0.5007803 +0.4586928 0.5007803 0.5007803 +0.4698649 0.5007803 0.5007803 +0.4805811 0.5007803 0.5007803 +0.490876 0.5007803 0.5007803 +0.5007803 0.5007803 0.5007803 +0.510322 0.5007803 0.5007803 +0.5195258 0.5007803 0.5007803 +0.5284142 0.5007803 0.5007803 +0.5370079 0.5007803 0.5007803 +0.5453253 0.5007803 0.5007803 +0.5533834 0.5007803 0.5007803 +0.5611974 0.5007803 0.5007803 +0.5687816 0.5007803 0.5007803 +0.092819 0.510322 0.5007803 +0.1056428 0.510322 0.5007803 +0.1201537 0.510322 0.5007803 +0.1409607 0.510322 0.5007803 +0.1678172 0.510322 0.5007803 +0.1950164 0.510322 0.5007803 +0.2210581 0.510322 0.5007803 +0.245636 0.510322 0.5007803 +0.2686816 0.510322 0.5007803 +0.2902431 0.510322 0.5007803 +0.3104189 0.510322 0.5007803 +0.3293248 0.510322 0.5007803 +0.3470774 0.510322 0.5007803 +0.3637862 0.510322 0.5007803 +0.3795513 0.510322 0.5007803 +0.3944623 0.510322 0.5007803 +0.4085988 0.510322 0.5007803 +0.4220313 0.510322 0.5007803 +0.4348222 0.510322 0.5007803 +0.4470264 0.510322 0.5007803 +0.4586928 0.510322 0.5007803 +0.4698649 0.510322 0.5007803 +0.4805811 0.510322 0.5007803 +0.490876 0.510322 0.5007803 +0.5007803 0.510322 0.5007803 +0.510322 0.510322 0.5007803 +0.5195258 0.510322 0.5007803 +0.5284142 0.510322 0.5007803 +0.5370079 0.510322 0.5007803 +0.5453253 0.510322 0.5007803 +0.5533834 0.510322 0.5007803 +0.5611974 0.510322 0.5007803 +0.5687816 0.510322 0.5007803 +0.092819 0.5195258 0.5007803 +0.1056428 0.5195258 0.5007803 +0.1201537 0.5195258 0.5007803 +0.1409607 0.5195258 0.5007803 +0.1678172 0.5195258 0.5007803 +0.1950164 0.5195258 0.5007803 +0.2210581 0.5195258 0.5007803 +0.245636 0.5195258 0.5007803 +0.2686816 0.5195258 0.5007803 +0.2902431 0.5195258 0.5007803 +0.3104189 0.5195258 0.5007803 +0.3293248 0.5195258 0.5007803 +0.3470774 0.5195258 0.5007803 +0.3637862 0.5195258 0.5007803 +0.3795513 0.5195258 0.5007803 +0.3944623 0.5195258 0.5007803 +0.4085988 0.5195258 0.5007803 +0.4220313 0.5195258 0.5007803 +0.4348222 0.5195258 0.5007803 +0.4470264 0.5195258 0.5007803 +0.4586928 0.5195258 0.5007803 +0.4698649 0.5195258 0.5007803 +0.4805811 0.5195258 0.5007803 +0.490876 0.5195258 0.5007803 +0.5007803 0.5195258 0.5007803 +0.510322 0.5195258 0.5007803 +0.5195258 0.5195258 0.5007803 +0.5284142 0.5195258 0.5007803 +0.5370079 0.5195258 0.5007803 +0.5453253 0.5195258 0.5007803 +0.5533834 0.5195258 0.5007803 +0.5611974 0.5195258 0.5007803 +0.5687816 0.5195258 0.5007803 +0.092819 0.5284142 0.5007803 +0.1056428 0.5284142 0.5007803 +0.1201537 0.5284142 0.5007803 +0.1409607 0.5284142 0.5007803 +0.1678172 0.5284142 0.5007803 +0.1950164 0.5284142 0.5007803 +0.2210581 0.5284142 0.5007803 +0.245636 0.5284142 0.5007803 +0.2686816 0.5284142 0.5007803 +0.2902431 0.5284142 0.5007803 +0.3104189 0.5284142 0.5007803 +0.3293248 0.5284142 0.5007803 +0.3470774 0.5284142 0.5007803 +0.3637862 0.5284142 0.5007803 +0.3795513 0.5284142 0.5007803 +0.3944623 0.5284142 0.5007803 +0.4085988 0.5284142 0.5007803 +0.4220313 0.5284142 0.5007803 +0.4348222 0.5284142 0.5007803 +0.4470264 0.5284142 0.5007803 +0.4586928 0.5284142 0.5007803 +0.4698649 0.5284142 0.5007803 +0.4805811 0.5284142 0.5007803 +0.490876 0.5284142 0.5007803 +0.5007803 0.5284142 0.5007803 +0.510322 0.5284142 0.5007803 +0.5195258 0.5284142 0.5007803 +0.5284142 0.5284142 0.5007803 +0.5370079 0.5284142 0.5007803 +0.5453253 0.5284142 0.5007803 +0.5533834 0.5284142 0.5007803 +0.5611974 0.5284142 0.5007803 +0.5687816 0.5284142 0.5007803 +0.092819 0.5370079 0.5007803 +0.1056428 0.5370079 0.5007803 +0.1201537 0.5370079 0.5007803 +0.1409607 0.5370079 0.5007803 +0.1678172 0.5370079 0.5007803 +0.1950164 0.5370079 0.5007803 +0.2210581 0.5370079 0.5007803 +0.245636 0.5370079 0.5007803 +0.2686816 0.5370079 0.5007803 +0.2902431 0.5370079 0.5007803 +0.3104189 0.5370079 0.5007803 +0.3293248 0.5370079 0.5007803 +0.3470774 0.5370079 0.5007803 +0.3637862 0.5370079 0.5007803 +0.3795513 0.5370079 0.5007803 +0.3944623 0.5370079 0.5007803 +0.4085988 0.5370079 0.5007803 +0.4220313 0.5370079 0.5007803 +0.4348222 0.5370079 0.5007803 +0.4470264 0.5370079 0.5007803 +0.4586928 0.5370079 0.5007803 +0.4698649 0.5370079 0.5007803 +0.4805811 0.5370079 0.5007803 +0.490876 0.5370079 0.5007803 +0.5007803 0.5370079 0.5007803 +0.510322 0.5370079 0.5007803 +0.5195258 0.5370079 0.5007803 +0.5284142 0.5370079 0.5007803 +0.5370079 0.5370079 0.5007803 +0.5453253 0.5370079 0.5007803 +0.5533834 0.5370079 0.5007803 +0.5611974 0.5370079 0.5007803 +0.5687816 0.5370079 0.5007803 +0.092819 0.5453253 0.5007803 +0.1056428 0.5453253 0.5007803 +0.1201537 0.5453253 0.5007803 +0.1409607 0.5453253 0.5007803 +0.1678172 0.5453253 0.5007803 +0.1950164 0.5453253 0.5007803 +0.2210581 0.5453253 0.5007803 +0.245636 0.5453253 0.5007803 +0.2686816 0.5453253 0.5007803 +0.2902431 0.5453253 0.5007803 +0.3104189 0.5453253 0.5007803 +0.3293248 0.5453253 0.5007803 +0.3470774 0.5453253 0.5007803 +0.3637862 0.5453253 0.5007803 +0.3795513 0.5453253 0.5007803 +0.3944623 0.5453253 0.5007803 +0.4085988 0.5453253 0.5007803 +0.4220313 0.5453253 0.5007803 +0.4348222 0.5453253 0.5007803 +0.4470264 0.5453253 0.5007803 +0.4586928 0.5453253 0.5007803 +0.4698649 0.5453253 0.5007803 +0.4805811 0.5453253 0.5007803 +0.490876 0.5453253 0.5007803 +0.5007803 0.5453253 0.5007803 +0.510322 0.5453253 0.5007803 +0.5195258 0.5453253 0.5007803 +0.5284142 0.5453253 0.5007803 +0.5370079 0.5453253 0.5007803 +0.5453253 0.5453253 0.5007803 +0.5533834 0.5453253 0.5007803 +0.5611974 0.5453253 0.5007803 +0.5687816 0.5453253 0.5007803 +0.092819 0.5533834 0.5007803 +0.1056428 0.5533834 0.5007803 +0.1201537 0.5533834 0.5007803 +0.1409607 0.5533834 0.5007803 +0.1678172 0.5533834 0.5007803 +0.1950164 0.5533834 0.5007803 +0.2210581 0.5533834 0.5007803 +0.245636 0.5533834 0.5007803 +0.2686816 0.5533834 0.5007803 +0.2902431 0.5533834 0.5007803 +0.3104189 0.5533834 0.5007803 +0.3293248 0.5533834 0.5007803 +0.3470774 0.5533834 0.5007803 +0.3637862 0.5533834 0.5007803 +0.3795513 0.5533834 0.5007803 +0.3944623 0.5533834 0.5007803 +0.4085988 0.5533834 0.5007803 +0.4220313 0.5533834 0.5007803 +0.4348222 0.5533834 0.5007803 +0.4470264 0.5533834 0.5007803 +0.4586928 0.5533834 0.5007803 +0.4698649 0.5533834 0.5007803 +0.4805811 0.5533834 0.5007803 +0.490876 0.5533834 0.5007803 +0.5007803 0.5533834 0.5007803 +0.510322 0.5533834 0.5007803 +0.5195258 0.5533834 0.5007803 +0.5284142 0.5533834 0.5007803 +0.5370079 0.5533834 0.5007803 +0.5453253 0.5533834 0.5007803 +0.5533834 0.5533834 0.5007803 +0.5611974 0.5533834 0.5007803 +0.5687816 0.5533834 0.5007803 +0.092819 0.5611974 0.5007803 +0.1056428 0.5611974 0.5007803 +0.1201537 0.5611974 0.5007803 +0.1409607 0.5611974 0.5007803 +0.1678172 0.5611974 0.5007803 +0.1950164 0.5611974 0.5007803 +0.2210581 0.5611974 0.5007803 +0.245636 0.5611974 0.5007803 +0.2686816 0.5611974 0.5007803 +0.2902431 0.5611974 0.5007803 +0.3104189 0.5611974 0.5007803 +0.3293248 0.5611974 0.5007803 +0.3470774 0.5611974 0.5007803 +0.3637862 0.5611974 0.5007803 +0.3795513 0.5611974 0.5007803 +0.3944623 0.5611974 0.5007803 +0.4085988 0.5611974 0.5007803 +0.4220313 0.5611974 0.5007803 +0.4348222 0.5611974 0.5007803 +0.4470264 0.5611974 0.5007803 +0.4586928 0.5611974 0.5007803 +0.4698649 0.5611974 0.5007803 +0.4805811 0.5611974 0.5007803 +0.490876 0.5611974 0.5007803 +0.5007803 0.5611974 0.5007803 +0.510322 0.5611974 0.5007803 +0.5195258 0.5611974 0.5007803 +0.5284142 0.5611974 0.5007803 +0.5370079 0.5611974 0.5007803 +0.5453253 0.5611974 0.5007803 +0.5533834 0.5611974 0.5007803 +0.5611974 0.5611974 0.5007803 +0.5687816 0.5611974 0.5007803 +0.092819 0.5687816 0.5007803 +0.1056428 0.5687816 0.5007803 +0.1201537 0.5687816 0.5007803 +0.1409607 0.5687816 0.5007803 +0.1678172 0.5687816 0.5007803 +0.1950164 0.5687816 0.5007803 +0.2210581 0.5687816 0.5007803 +0.245636 0.5687816 0.5007803 +0.2686816 0.5687816 0.5007803 +0.2902431 0.5687816 0.5007803 +0.3104189 0.5687816 0.5007803 +0.3293248 0.5687816 0.5007803 +0.3470774 0.5687816 0.5007803 +0.3637862 0.5687816 0.5007803 +0.3795513 0.5687816 0.5007803 +0.3944623 0.5687816 0.5007803 +0.4085988 0.5687816 0.5007803 +0.4220313 0.5687816 0.5007803 +0.4348222 0.5687816 0.5007803 +0.4470264 0.5687816 0.5007803 +0.4586928 0.5687816 0.5007803 +0.4698649 0.5687816 0.5007803 +0.4805811 0.5687816 0.5007803 +0.490876 0.5687816 0.5007803 +0.5007803 0.5687816 0.5007803 +0.510322 0.5687816 0.5007803 +0.5195258 0.5687816 0.5007803 +0.5284142 0.5687816 0.5007803 +0.5370079 0.5687816 0.5007803 +0.5453253 0.5687816 0.5007803 +0.5533834 0.5687816 0.5007803 +0.5611974 0.5687816 0.5007803 +0.5687816 0.5687816 0.5007803 +0.092819 0.092819 0.510322 +0.1056428 0.092819 0.510322 +0.1201537 0.092819 0.510322 +0.1409607 0.092819 0.510322 +0.1678172 0.092819 0.510322 +0.1950164 0.092819 0.510322 +0.2210581 0.092819 0.510322 +0.245636 0.092819 0.510322 +0.2686816 0.092819 0.510322 +0.2902431 0.092819 0.510322 +0.3104189 0.092819 0.510322 +0.3293248 0.092819 0.510322 +0.3470774 0.092819 0.510322 +0.3637862 0.092819 0.510322 +0.3795513 0.092819 0.510322 +0.3944623 0.092819 0.510322 +0.4085988 0.092819 0.510322 +0.4220313 0.092819 0.510322 +0.4348222 0.092819 0.510322 +0.4470264 0.092819 0.510322 +0.4586928 0.092819 0.510322 +0.4698649 0.092819 0.510322 +0.4805811 0.092819 0.510322 +0.490876 0.092819 0.510322 +0.5007803 0.092819 0.510322 +0.510322 0.092819 0.510322 +0.5195258 0.092819 0.510322 +0.5284142 0.092819 0.510322 +0.5370079 0.092819 0.510322 +0.5453253 0.092819 0.510322 +0.5533834 0.092819 0.510322 +0.5611974 0.092819 0.510322 +0.5687816 0.092819 0.510322 +0.092819 0.1056428 0.510322 +0.1056428 0.1056428 0.510322 +0.1201537 0.1056428 0.510322 +0.1409607 0.1056428 0.510322 +0.1678172 0.1056428 0.510322 +0.1950164 0.1056428 0.510322 +0.2210581 0.1056428 0.510322 +0.245636 0.1056428 0.510322 +0.2686816 0.1056428 0.510322 +0.2902431 0.1056428 0.510322 +0.3104189 0.1056428 0.510322 +0.3293248 0.1056428 0.510322 +0.3470774 0.1056428 0.510322 +0.3637862 0.1056428 0.510322 +0.3795513 0.1056428 0.510322 +0.3944623 0.1056428 0.510322 +0.4085988 0.1056428 0.510322 +0.4220313 0.1056428 0.510322 +0.4348222 0.1056428 0.510322 +0.4470264 0.1056428 0.510322 +0.4586928 0.1056428 0.510322 +0.4698649 0.1056428 0.510322 +0.4805811 0.1056428 0.510322 +0.490876 0.1056428 0.510322 +0.5007803 0.1056428 0.510322 +0.510322 0.1056428 0.510322 +0.5195258 0.1056428 0.510322 +0.5284142 0.1056428 0.510322 +0.5370079 0.1056428 0.510322 +0.5453253 0.1056428 0.510322 +0.5533834 0.1056428 0.510322 +0.5611974 0.1056428 0.510322 +0.5687816 0.1056428 0.510322 +0.092819 0.1201537 0.510322 +0.1056428 0.1201537 0.510322 +0.1201537 0.1201537 0.510322 +0.1409607 0.1201537 0.510322 +0.1678172 0.1201537 0.510322 +0.1950164 0.1201537 0.510322 +0.2210581 0.1201537 0.510322 +0.245636 0.1201537 0.510322 +0.2686816 0.1201537 0.510322 +0.2902431 0.1201537 0.510322 +0.3104189 0.1201537 0.510322 +0.3293248 0.1201537 0.510322 +0.3470774 0.1201537 0.510322 +0.3637862 0.1201537 0.510322 +0.3795513 0.1201537 0.510322 +0.3944623 0.1201537 0.510322 +0.4085988 0.1201537 0.510322 +0.4220313 0.1201537 0.510322 +0.4348222 0.1201537 0.510322 +0.4470264 0.1201537 0.510322 +0.4586928 0.1201537 0.510322 +0.4698649 0.1201537 0.510322 +0.4805811 0.1201537 0.510322 +0.490876 0.1201537 0.510322 +0.5007803 0.1201537 0.510322 +0.510322 0.1201537 0.510322 +0.5195258 0.1201537 0.510322 +0.5284142 0.1201537 0.510322 +0.5370079 0.1201537 0.510322 +0.5453253 0.1201537 0.510322 +0.5533834 0.1201537 0.510322 +0.5611974 0.1201537 0.510322 +0.5687816 0.1201537 0.510322 +0.092819 0.1409607 0.510322 +0.1056428 0.1409607 0.510322 +0.1201537 0.1409607 0.510322 +0.1409607 0.1409607 0.510322 +0.1678172 0.1409607 0.510322 +0.1950164 0.1409607 0.510322 +0.2210581 0.1409607 0.510322 +0.245636 0.1409607 0.510322 +0.2686816 0.1409607 0.510322 +0.2902431 0.1409607 0.510322 +0.3104189 0.1409607 0.510322 +0.3293248 0.1409607 0.510322 +0.3470774 0.1409607 0.510322 +0.3637862 0.1409607 0.510322 +0.3795513 0.1409607 0.510322 +0.3944623 0.1409607 0.510322 +0.4085988 0.1409607 0.510322 +0.4220313 0.1409607 0.510322 +0.4348222 0.1409607 0.510322 +0.4470264 0.1409607 0.510322 +0.4586928 0.1409607 0.510322 +0.4698649 0.1409607 0.510322 +0.4805811 0.1409607 0.510322 +0.490876 0.1409607 0.510322 +0.5007803 0.1409607 0.510322 +0.510322 0.1409607 0.510322 +0.5195258 0.1409607 0.510322 +0.5284142 0.1409607 0.510322 +0.5370079 0.1409607 0.510322 +0.5453253 0.1409607 0.510322 +0.5533834 0.1409607 0.510322 +0.5611974 0.1409607 0.510322 +0.5687816 0.1409607 0.510322 +0.092819 0.1678172 0.510322 +0.1056428 0.1678172 0.510322 +0.1201537 0.1678172 0.510322 +0.1409607 0.1678172 0.510322 +0.1678172 0.1678172 0.510322 +0.1950164 0.1678172 0.510322 +0.2210581 0.1678172 0.510322 +0.245636 0.1678172 0.510322 +0.2686816 0.1678172 0.510322 +0.2902431 0.1678172 0.510322 +0.3104189 0.1678172 0.510322 +0.3293248 0.1678172 0.510322 +0.3470774 0.1678172 0.510322 +0.3637862 0.1678172 0.510322 +0.3795513 0.1678172 0.510322 +0.3944623 0.1678172 0.510322 +0.4085988 0.1678172 0.510322 +0.4220313 0.1678172 0.510322 +0.4348222 0.1678172 0.510322 +0.4470264 0.1678172 0.510322 +0.4586928 0.1678172 0.510322 +0.4698649 0.1678172 0.510322 +0.4805811 0.1678172 0.510322 +0.490876 0.1678172 0.510322 +0.5007803 0.1678172 0.510322 +0.510322 0.1678172 0.510322 +0.5195258 0.1678172 0.510322 +0.5284142 0.1678172 0.510322 +0.5370079 0.1678172 0.510322 +0.5453253 0.1678172 0.510322 +0.5533834 0.1678172 0.510322 +0.5611974 0.1678172 0.510322 +0.5687816 0.1678172 0.510322 +0.092819 0.1950164 0.510322 +0.1056428 0.1950164 0.510322 +0.1201537 0.1950164 0.510322 +0.1409607 0.1950164 0.510322 +0.1678172 0.1950164 0.510322 +0.1950164 0.1950164 0.510322 +0.2210581 0.1950164 0.510322 +0.245636 0.1950164 0.510322 +0.2686816 0.1950164 0.510322 +0.2902431 0.1950164 0.510322 +0.3104189 0.1950164 0.510322 +0.3293248 0.1950164 0.510322 +0.3470774 0.1950164 0.510322 +0.3637862 0.1950164 0.510322 +0.3795513 0.1950164 0.510322 +0.3944623 0.1950164 0.510322 +0.4085988 0.1950164 0.510322 +0.4220313 0.1950164 0.510322 +0.4348222 0.1950164 0.510322 +0.4470264 0.1950164 0.510322 +0.4586928 0.1950164 0.510322 +0.4698649 0.1950164 0.510322 +0.4805811 0.1950164 0.510322 +0.490876 0.1950164 0.510322 +0.5007803 0.1950164 0.510322 +0.510322 0.1950164 0.510322 +0.5195258 0.1950164 0.510322 +0.5284142 0.1950164 0.510322 +0.5370079 0.1950164 0.510322 +0.5453253 0.1950164 0.510322 +0.5533834 0.1950164 0.510322 +0.5611974 0.1950164 0.510322 +0.5687816 0.1950164 0.510322 +0.092819 0.2210581 0.510322 +0.1056428 0.2210581 0.510322 +0.1201537 0.2210581 0.510322 +0.1409607 0.2210581 0.510322 +0.1678172 0.2210581 0.510322 +0.1950164 0.2210581 0.510322 +0.2210581 0.2210581 0.510322 +0.245636 0.2210581 0.510322 +0.2686816 0.2210581 0.510322 +0.2902431 0.2210581 0.510322 +0.3104189 0.2210581 0.510322 +0.3293248 0.2210581 0.510322 +0.3470774 0.2210581 0.510322 +0.3637862 0.2210581 0.510322 +0.3795513 0.2210581 0.510322 +0.3944623 0.2210581 0.510322 +0.4085988 0.2210581 0.510322 +0.4220313 0.2210581 0.510322 +0.4348222 0.2210581 0.510322 +0.4470264 0.2210581 0.510322 +0.4586928 0.2210581 0.510322 +0.4698649 0.2210581 0.510322 +0.4805811 0.2210581 0.510322 +0.490876 0.2210581 0.510322 +0.5007803 0.2210581 0.510322 +0.510322 0.2210581 0.510322 +0.5195258 0.2210581 0.510322 +0.5284142 0.2210581 0.510322 +0.5370079 0.2210581 0.510322 +0.5453253 0.2210581 0.510322 +0.5533834 0.2210581 0.510322 +0.5611974 0.2210581 0.510322 +0.5687816 0.2210581 0.510322 +0.092819 0.245636 0.510322 +0.1056428 0.245636 0.510322 +0.1201537 0.245636 0.510322 +0.1409607 0.245636 0.510322 +0.1678172 0.245636 0.510322 +0.1950164 0.245636 0.510322 +0.2210581 0.245636 0.510322 +0.245636 0.245636 0.510322 +0.2686816 0.245636 0.510322 +0.2902431 0.245636 0.510322 +0.3104189 0.245636 0.510322 +0.3293248 0.245636 0.510322 +0.3470774 0.245636 0.510322 +0.3637862 0.245636 0.510322 +0.3795513 0.245636 0.510322 +0.3944623 0.245636 0.510322 +0.4085988 0.245636 0.510322 +0.4220313 0.245636 0.510322 +0.4348222 0.245636 0.510322 +0.4470264 0.245636 0.510322 +0.4586928 0.245636 0.510322 +0.4698649 0.245636 0.510322 +0.4805811 0.245636 0.510322 +0.490876 0.245636 0.510322 +0.5007803 0.245636 0.510322 +0.510322 0.245636 0.510322 +0.5195258 0.245636 0.510322 +0.5284142 0.245636 0.510322 +0.5370079 0.245636 0.510322 +0.5453253 0.245636 0.510322 +0.5533834 0.245636 0.510322 +0.5611974 0.245636 0.510322 +0.5687816 0.245636 0.510322 +0.092819 0.2686816 0.510322 +0.1056428 0.2686816 0.510322 +0.1201537 0.2686816 0.510322 +0.1409607 0.2686816 0.510322 +0.1678172 0.2686816 0.510322 +0.1950164 0.2686816 0.510322 +0.2210581 0.2686816 0.510322 +0.245636 0.2686816 0.510322 +0.2686816 0.2686816 0.510322 +0.2902431 0.2686816 0.510322 +0.3104189 0.2686816 0.510322 +0.3293248 0.2686816 0.510322 +0.3470774 0.2686816 0.510322 +0.3637862 0.2686816 0.510322 +0.3795513 0.2686816 0.510322 +0.3944623 0.2686816 0.510322 +0.4085988 0.2686816 0.510322 +0.4220313 0.2686816 0.510322 +0.4348222 0.2686816 0.510322 +0.4470264 0.2686816 0.510322 +0.4586928 0.2686816 0.510322 +0.4698649 0.2686816 0.510322 +0.4805811 0.2686816 0.510322 +0.490876 0.2686816 0.510322 +0.5007803 0.2686816 0.510322 +0.510322 0.2686816 0.510322 +0.5195258 0.2686816 0.510322 +0.5284142 0.2686816 0.510322 +0.5370079 0.2686816 0.510322 +0.5453253 0.2686816 0.510322 +0.5533834 0.2686816 0.510322 +0.5611974 0.2686816 0.510322 +0.5687816 0.2686816 0.510322 +0.092819 0.2902431 0.510322 +0.1056428 0.2902431 0.510322 +0.1201537 0.2902431 0.510322 +0.1409607 0.2902431 0.510322 +0.1678172 0.2902431 0.510322 +0.1950164 0.2902431 0.510322 +0.2210581 0.2902431 0.510322 +0.245636 0.2902431 0.510322 +0.2686816 0.2902431 0.510322 +0.2902431 0.2902431 0.510322 +0.3104189 0.2902431 0.510322 +0.3293248 0.2902431 0.510322 +0.3470774 0.2902431 0.510322 +0.3637862 0.2902431 0.510322 +0.3795513 0.2902431 0.510322 +0.3944623 0.2902431 0.510322 +0.4085988 0.2902431 0.510322 +0.4220313 0.2902431 0.510322 +0.4348222 0.2902431 0.510322 +0.4470264 0.2902431 0.510322 +0.4586928 0.2902431 0.510322 +0.4698649 0.2902431 0.510322 +0.4805811 0.2902431 0.510322 +0.490876 0.2902431 0.510322 +0.5007803 0.2902431 0.510322 +0.510322 0.2902431 0.510322 +0.5195258 0.2902431 0.510322 +0.5284142 0.2902431 0.510322 +0.5370079 0.2902431 0.510322 +0.5453253 0.2902431 0.510322 +0.5533834 0.2902431 0.510322 +0.5611974 0.2902431 0.510322 +0.5687816 0.2902431 0.510322 +0.092819 0.3104189 0.510322 +0.1056428 0.3104189 0.510322 +0.1201537 0.3104189 0.510322 +0.1409607 0.3104189 0.510322 +0.1678172 0.3104189 0.510322 +0.1950164 0.3104189 0.510322 +0.2210581 0.3104189 0.510322 +0.245636 0.3104189 0.510322 +0.2686816 0.3104189 0.510322 +0.2902431 0.3104189 0.510322 +0.3104189 0.3104189 0.510322 +0.3293248 0.3104189 0.510322 +0.3470774 0.3104189 0.510322 +0.3637862 0.3104189 0.510322 +0.3795513 0.3104189 0.510322 +0.3944623 0.3104189 0.510322 +0.4085988 0.3104189 0.510322 +0.4220313 0.3104189 0.510322 +0.4348222 0.3104189 0.510322 +0.4470264 0.3104189 0.510322 +0.4586928 0.3104189 0.510322 +0.4698649 0.3104189 0.510322 +0.4805811 0.3104189 0.510322 +0.490876 0.3104189 0.510322 +0.5007803 0.3104189 0.510322 +0.510322 0.3104189 0.510322 +0.5195258 0.3104189 0.510322 +0.5284142 0.3104189 0.510322 +0.5370079 0.3104189 0.510322 +0.5453253 0.3104189 0.510322 +0.5533834 0.3104189 0.510322 +0.5611974 0.3104189 0.510322 +0.5687816 0.3104189 0.510322 +0.092819 0.3293248 0.510322 +0.1056428 0.3293248 0.510322 +0.1201537 0.3293248 0.510322 +0.1409607 0.3293248 0.510322 +0.1678172 0.3293248 0.510322 +0.1950164 0.3293248 0.510322 +0.2210581 0.3293248 0.510322 +0.245636 0.3293248 0.510322 +0.2686816 0.3293248 0.510322 +0.2902431 0.3293248 0.510322 +0.3104189 0.3293248 0.510322 +0.3293248 0.3293248 0.510322 +0.3470774 0.3293248 0.510322 +0.3637862 0.3293248 0.510322 +0.3795513 0.3293248 0.510322 +0.3944623 0.3293248 0.510322 +0.4085988 0.3293248 0.510322 +0.4220313 0.3293248 0.510322 +0.4348222 0.3293248 0.510322 +0.4470264 0.3293248 0.510322 +0.4586928 0.3293248 0.510322 +0.4698649 0.3293248 0.510322 +0.4805811 0.3293248 0.510322 +0.490876 0.3293248 0.510322 +0.5007803 0.3293248 0.510322 +0.510322 0.3293248 0.510322 +0.5195258 0.3293248 0.510322 +0.5284142 0.3293248 0.510322 +0.5370079 0.3293248 0.510322 +0.5453253 0.3293248 0.510322 +0.5533834 0.3293248 0.510322 +0.5611974 0.3293248 0.510322 +0.5687816 0.3293248 0.510322 +0.092819 0.3470774 0.510322 +0.1056428 0.3470774 0.510322 +0.1201537 0.3470774 0.510322 +0.1409607 0.3470774 0.510322 +0.1678172 0.3470774 0.510322 +0.1950164 0.3470774 0.510322 +0.2210581 0.3470774 0.510322 +0.245636 0.3470774 0.510322 +0.2686816 0.3470774 0.510322 +0.2902431 0.3470774 0.510322 +0.3104189 0.3470774 0.510322 +0.3293248 0.3470774 0.510322 +0.3470774 0.3470774 0.510322 +0.3637862 0.3470774 0.510322 +0.3795513 0.3470774 0.510322 +0.3944623 0.3470774 0.510322 +0.4085988 0.3470774 0.510322 +0.4220313 0.3470774 0.510322 +0.4348222 0.3470774 0.510322 +0.4470264 0.3470774 0.510322 +0.4586928 0.3470774 0.510322 +0.4698649 0.3470774 0.510322 +0.4805811 0.3470774 0.510322 +0.490876 0.3470774 0.510322 +0.5007803 0.3470774 0.510322 +0.510322 0.3470774 0.510322 +0.5195258 0.3470774 0.510322 +0.5284142 0.3470774 0.510322 +0.5370079 0.3470774 0.510322 +0.5453253 0.3470774 0.510322 +0.5533834 0.3470774 0.510322 +0.5611974 0.3470774 0.510322 +0.5687816 0.3470774 0.510322 +0.092819 0.3637862 0.510322 +0.1056428 0.3637862 0.510322 +0.1201537 0.3637862 0.510322 +0.1409607 0.3637862 0.510322 +0.1678172 0.3637862 0.510322 +0.1950164 0.3637862 0.510322 +0.2210581 0.3637862 0.510322 +0.245636 0.3637862 0.510322 +0.2686816 0.3637862 0.510322 +0.2902431 0.3637862 0.510322 +0.3104189 0.3637862 0.510322 +0.3293248 0.3637862 0.510322 +0.3470774 0.3637862 0.510322 +0.3637862 0.3637862 0.510322 +0.3795513 0.3637862 0.510322 +0.3944623 0.3637862 0.510322 +0.4085988 0.3637862 0.510322 +0.4220313 0.3637862 0.510322 +0.4348222 0.3637862 0.510322 +0.4470264 0.3637862 0.510322 +0.4586928 0.3637862 0.510322 +0.4698649 0.3637862 0.510322 +0.4805811 0.3637862 0.510322 +0.490876 0.3637862 0.510322 +0.5007803 0.3637862 0.510322 +0.510322 0.3637862 0.510322 +0.5195258 0.3637862 0.510322 +0.5284142 0.3637862 0.510322 +0.5370079 0.3637862 0.510322 +0.5453253 0.3637862 0.510322 +0.5533834 0.3637862 0.510322 +0.5611974 0.3637862 0.510322 +0.5687816 0.3637862 0.510322 +0.092819 0.3795513 0.510322 +0.1056428 0.3795513 0.510322 +0.1201537 0.3795513 0.510322 +0.1409607 0.3795513 0.510322 +0.1678172 0.3795513 0.510322 +0.1950164 0.3795513 0.510322 +0.2210581 0.3795513 0.510322 +0.245636 0.3795513 0.510322 +0.2686816 0.3795513 0.510322 +0.2902431 0.3795513 0.510322 +0.3104189 0.3795513 0.510322 +0.3293248 0.3795513 0.510322 +0.3470774 0.3795513 0.510322 +0.3637862 0.3795513 0.510322 +0.3795513 0.3795513 0.510322 +0.3944623 0.3795513 0.510322 +0.4085988 0.3795513 0.510322 +0.4220313 0.3795513 0.510322 +0.4348222 0.3795513 0.510322 +0.4470264 0.3795513 0.510322 +0.4586928 0.3795513 0.510322 +0.4698649 0.3795513 0.510322 +0.4805811 0.3795513 0.510322 +0.490876 0.3795513 0.510322 +0.5007803 0.3795513 0.510322 +0.510322 0.3795513 0.510322 +0.5195258 0.3795513 0.510322 +0.5284142 0.3795513 0.510322 +0.5370079 0.3795513 0.510322 +0.5453253 0.3795513 0.510322 +0.5533834 0.3795513 0.510322 +0.5611974 0.3795513 0.510322 +0.5687816 0.3795513 0.510322 +0.092819 0.3944623 0.510322 +0.1056428 0.3944623 0.510322 +0.1201537 0.3944623 0.510322 +0.1409607 0.3944623 0.510322 +0.1678172 0.3944623 0.510322 +0.1950164 0.3944623 0.510322 +0.2210581 0.3944623 0.510322 +0.245636 0.3944623 0.510322 +0.2686816 0.3944623 0.510322 +0.2902431 0.3944623 0.510322 +0.3104189 0.3944623 0.510322 +0.3293248 0.3944623 0.510322 +0.3470774 0.3944623 0.510322 +0.3637862 0.3944623 0.510322 +0.3795513 0.3944623 0.510322 +0.3944623 0.3944623 0.510322 +0.4085988 0.3944623 0.510322 +0.4220313 0.3944623 0.510322 +0.4348222 0.3944623 0.510322 +0.4470264 0.3944623 0.510322 +0.4586928 0.3944623 0.510322 +0.4698649 0.3944623 0.510322 +0.4805811 0.3944623 0.510322 +0.490876 0.3944623 0.510322 +0.5007803 0.3944623 0.510322 +0.510322 0.3944623 0.510322 +0.5195258 0.3944623 0.510322 +0.5284142 0.3944623 0.510322 +0.5370079 0.3944623 0.510322 +0.5453253 0.3944623 0.510322 +0.5533834 0.3944623 0.510322 +0.5611974 0.3944623 0.510322 +0.5687816 0.3944623 0.510322 +0.092819 0.4085988 0.510322 +0.1056428 0.4085988 0.510322 +0.1201537 0.4085988 0.510322 +0.1409607 0.4085988 0.510322 +0.1678172 0.4085988 0.510322 +0.1950164 0.4085988 0.510322 +0.2210581 0.4085988 0.510322 +0.245636 0.4085988 0.510322 +0.2686816 0.4085988 0.510322 +0.2902431 0.4085988 0.510322 +0.3104189 0.4085988 0.510322 +0.3293248 0.4085988 0.510322 +0.3470774 0.4085988 0.510322 +0.3637862 0.4085988 0.510322 +0.3795513 0.4085988 0.510322 +0.3944623 0.4085988 0.510322 +0.4085988 0.4085988 0.510322 +0.4220313 0.4085988 0.510322 +0.4348222 0.4085988 0.510322 +0.4470264 0.4085988 0.510322 +0.4586928 0.4085988 0.510322 +0.4698649 0.4085988 0.510322 +0.4805811 0.4085988 0.510322 +0.490876 0.4085988 0.510322 +0.5007803 0.4085988 0.510322 +0.510322 0.4085988 0.510322 +0.5195258 0.4085988 0.510322 +0.5284142 0.4085988 0.510322 +0.5370079 0.4085988 0.510322 +0.5453253 0.4085988 0.510322 +0.5533834 0.4085988 0.510322 +0.5611974 0.4085988 0.510322 +0.5687816 0.4085988 0.510322 +0.092819 0.4220313 0.510322 +0.1056428 0.4220313 0.510322 +0.1201537 0.4220313 0.510322 +0.1409607 0.4220313 0.510322 +0.1678172 0.4220313 0.510322 +0.1950164 0.4220313 0.510322 +0.2210581 0.4220313 0.510322 +0.245636 0.4220313 0.510322 +0.2686816 0.4220313 0.510322 +0.2902431 0.4220313 0.510322 +0.3104189 0.4220313 0.510322 +0.3293248 0.4220313 0.510322 +0.3470774 0.4220313 0.510322 +0.3637862 0.4220313 0.510322 +0.3795513 0.4220313 0.510322 +0.3944623 0.4220313 0.510322 +0.4085988 0.4220313 0.510322 +0.4220313 0.4220313 0.510322 +0.4348222 0.4220313 0.510322 +0.4470264 0.4220313 0.510322 +0.4586928 0.4220313 0.510322 +0.4698649 0.4220313 0.510322 +0.4805811 0.4220313 0.510322 +0.490876 0.4220313 0.510322 +0.5007803 0.4220313 0.510322 +0.510322 0.4220313 0.510322 +0.5195258 0.4220313 0.510322 +0.5284142 0.4220313 0.510322 +0.5370079 0.4220313 0.510322 +0.5453253 0.4220313 0.510322 +0.5533834 0.4220313 0.510322 +0.5611974 0.4220313 0.510322 +0.5687816 0.4220313 0.510322 +0.092819 0.4348222 0.510322 +0.1056428 0.4348222 0.510322 +0.1201537 0.4348222 0.510322 +0.1409607 0.4348222 0.510322 +0.1678172 0.4348222 0.510322 +0.1950164 0.4348222 0.510322 +0.2210581 0.4348222 0.510322 +0.245636 0.4348222 0.510322 +0.2686816 0.4348222 0.510322 +0.2902431 0.4348222 0.510322 +0.3104189 0.4348222 0.510322 +0.3293248 0.4348222 0.510322 +0.3470774 0.4348222 0.510322 +0.3637862 0.4348222 0.510322 +0.3795513 0.4348222 0.510322 +0.3944623 0.4348222 0.510322 +0.4085988 0.4348222 0.510322 +0.4220313 0.4348222 0.510322 +0.4348222 0.4348222 0.510322 +0.4470264 0.4348222 0.510322 +0.4586928 0.4348222 0.510322 +0.4698649 0.4348222 0.510322 +0.4805811 0.4348222 0.510322 +0.490876 0.4348222 0.510322 +0.5007803 0.4348222 0.510322 +0.510322 0.4348222 0.510322 +0.5195258 0.4348222 0.510322 +0.5284142 0.4348222 0.510322 +0.5370079 0.4348222 0.510322 +0.5453253 0.4348222 0.510322 +0.5533834 0.4348222 0.510322 +0.5611974 0.4348222 0.510322 +0.5687816 0.4348222 0.510322 +0.092819 0.4470264 0.510322 +0.1056428 0.4470264 0.510322 +0.1201537 0.4470264 0.510322 +0.1409607 0.4470264 0.510322 +0.1678172 0.4470264 0.510322 +0.1950164 0.4470264 0.510322 +0.2210581 0.4470264 0.510322 +0.245636 0.4470264 0.510322 +0.2686816 0.4470264 0.510322 +0.2902431 0.4470264 0.510322 +0.3104189 0.4470264 0.510322 +0.3293248 0.4470264 0.510322 +0.3470774 0.4470264 0.510322 +0.3637862 0.4470264 0.510322 +0.3795513 0.4470264 0.510322 +0.3944623 0.4470264 0.510322 +0.4085988 0.4470264 0.510322 +0.4220313 0.4470264 0.510322 +0.4348222 0.4470264 0.510322 +0.4470264 0.4470264 0.510322 +0.4586928 0.4470264 0.510322 +0.4698649 0.4470264 0.510322 +0.4805811 0.4470264 0.510322 +0.490876 0.4470264 0.510322 +0.5007803 0.4470264 0.510322 +0.510322 0.4470264 0.510322 +0.5195258 0.4470264 0.510322 +0.5284142 0.4470264 0.510322 +0.5370079 0.4470264 0.510322 +0.5453253 0.4470264 0.510322 +0.5533834 0.4470264 0.510322 +0.5611974 0.4470264 0.510322 +0.5687816 0.4470264 0.510322 +0.092819 0.4586928 0.510322 +0.1056428 0.4586928 0.510322 +0.1201537 0.4586928 0.510322 +0.1409607 0.4586928 0.510322 +0.1678172 0.4586928 0.510322 +0.1950164 0.4586928 0.510322 +0.2210581 0.4586928 0.510322 +0.245636 0.4586928 0.510322 +0.2686816 0.4586928 0.510322 +0.2902431 0.4586928 0.510322 +0.3104189 0.4586928 0.510322 +0.3293248 0.4586928 0.510322 +0.3470774 0.4586928 0.510322 +0.3637862 0.4586928 0.510322 +0.3795513 0.4586928 0.510322 +0.3944623 0.4586928 0.510322 +0.4085988 0.4586928 0.510322 +0.4220313 0.4586928 0.510322 +0.4348222 0.4586928 0.510322 +0.4470264 0.4586928 0.510322 +0.4586928 0.4586928 0.510322 +0.4698649 0.4586928 0.510322 +0.4805811 0.4586928 0.510322 +0.490876 0.4586928 0.510322 +0.5007803 0.4586928 0.510322 +0.510322 0.4586928 0.510322 +0.5195258 0.4586928 0.510322 +0.5284142 0.4586928 0.510322 +0.5370079 0.4586928 0.510322 +0.5453253 0.4586928 0.510322 +0.5533834 0.4586928 0.510322 +0.5611974 0.4586928 0.510322 +0.5687816 0.4586928 0.510322 +0.092819 0.4698649 0.510322 +0.1056428 0.4698649 0.510322 +0.1201537 0.4698649 0.510322 +0.1409607 0.4698649 0.510322 +0.1678172 0.4698649 0.510322 +0.1950164 0.4698649 0.510322 +0.2210581 0.4698649 0.510322 +0.245636 0.4698649 0.510322 +0.2686816 0.4698649 0.510322 +0.2902431 0.4698649 0.510322 +0.3104189 0.4698649 0.510322 +0.3293248 0.4698649 0.510322 +0.3470774 0.4698649 0.510322 +0.3637862 0.4698649 0.510322 +0.3795513 0.4698649 0.510322 +0.3944623 0.4698649 0.510322 +0.4085988 0.4698649 0.510322 +0.4220313 0.4698649 0.510322 +0.4348222 0.4698649 0.510322 +0.4470264 0.4698649 0.510322 +0.4586928 0.4698649 0.510322 +0.4698649 0.4698649 0.510322 +0.4805811 0.4698649 0.510322 +0.490876 0.4698649 0.510322 +0.5007803 0.4698649 0.510322 +0.510322 0.4698649 0.510322 +0.5195258 0.4698649 0.510322 +0.5284142 0.4698649 0.510322 +0.5370079 0.4698649 0.510322 +0.5453253 0.4698649 0.510322 +0.5533834 0.4698649 0.510322 +0.5611974 0.4698649 0.510322 +0.5687816 0.4698649 0.510322 +0.092819 0.4805811 0.510322 +0.1056428 0.4805811 0.510322 +0.1201537 0.4805811 0.510322 +0.1409607 0.4805811 0.510322 +0.1678172 0.4805811 0.510322 +0.1950164 0.4805811 0.510322 +0.2210581 0.4805811 0.510322 +0.245636 0.4805811 0.510322 +0.2686816 0.4805811 0.510322 +0.2902431 0.4805811 0.510322 +0.3104189 0.4805811 0.510322 +0.3293248 0.4805811 0.510322 +0.3470774 0.4805811 0.510322 +0.3637862 0.4805811 0.510322 +0.3795513 0.4805811 0.510322 +0.3944623 0.4805811 0.510322 +0.4085988 0.4805811 0.510322 +0.4220313 0.4805811 0.510322 +0.4348222 0.4805811 0.510322 +0.4470264 0.4805811 0.510322 +0.4586928 0.4805811 0.510322 +0.4698649 0.4805811 0.510322 +0.4805811 0.4805811 0.510322 +0.490876 0.4805811 0.510322 +0.5007803 0.4805811 0.510322 +0.510322 0.4805811 0.510322 +0.5195258 0.4805811 0.510322 +0.5284142 0.4805811 0.510322 +0.5370079 0.4805811 0.510322 +0.5453253 0.4805811 0.510322 +0.5533834 0.4805811 0.510322 +0.5611974 0.4805811 0.510322 +0.5687816 0.4805811 0.510322 +0.092819 0.490876 0.510322 +0.1056428 0.490876 0.510322 +0.1201537 0.490876 0.510322 +0.1409607 0.490876 0.510322 +0.1678172 0.490876 0.510322 +0.1950164 0.490876 0.510322 +0.2210581 0.490876 0.510322 +0.245636 0.490876 0.510322 +0.2686816 0.490876 0.510322 +0.2902431 0.490876 0.510322 +0.3104189 0.490876 0.510322 +0.3293248 0.490876 0.510322 +0.3470774 0.490876 0.510322 +0.3637862 0.490876 0.510322 +0.3795513 0.490876 0.510322 +0.3944623 0.490876 0.510322 +0.4085988 0.490876 0.510322 +0.4220313 0.490876 0.510322 +0.4348222 0.490876 0.510322 +0.4470264 0.490876 0.510322 +0.4586928 0.490876 0.510322 +0.4698649 0.490876 0.510322 +0.4805811 0.490876 0.510322 +0.490876 0.490876 0.510322 +0.5007803 0.490876 0.510322 +0.510322 0.490876 0.510322 +0.5195258 0.490876 0.510322 +0.5284142 0.490876 0.510322 +0.5370079 0.490876 0.510322 +0.5453253 0.490876 0.510322 +0.5533834 0.490876 0.510322 +0.5611974 0.490876 0.510322 +0.5687816 0.490876 0.510322 +0.092819 0.5007803 0.510322 +0.1056428 0.5007803 0.510322 +0.1201537 0.5007803 0.510322 +0.1409607 0.5007803 0.510322 +0.1678172 0.5007803 0.510322 +0.1950164 0.5007803 0.510322 +0.2210581 0.5007803 0.510322 +0.245636 0.5007803 0.510322 +0.2686816 0.5007803 0.510322 +0.2902431 0.5007803 0.510322 +0.3104189 0.5007803 0.510322 +0.3293248 0.5007803 0.510322 +0.3470774 0.5007803 0.510322 +0.3637862 0.5007803 0.510322 +0.3795513 0.5007803 0.510322 +0.3944623 0.5007803 0.510322 +0.4085988 0.5007803 0.510322 +0.4220313 0.5007803 0.510322 +0.4348222 0.5007803 0.510322 +0.4470264 0.5007803 0.510322 +0.4586928 0.5007803 0.510322 +0.4698649 0.5007803 0.510322 +0.4805811 0.5007803 0.510322 +0.490876 0.5007803 0.510322 +0.5007803 0.5007803 0.510322 +0.510322 0.5007803 0.510322 +0.5195258 0.5007803 0.510322 +0.5284142 0.5007803 0.510322 +0.5370079 0.5007803 0.510322 +0.5453253 0.5007803 0.510322 +0.5533834 0.5007803 0.510322 +0.5611974 0.5007803 0.510322 +0.5687816 0.5007803 0.510322 +0.092819 0.510322 0.510322 +0.1056428 0.510322 0.510322 +0.1201537 0.510322 0.510322 +0.1409607 0.510322 0.510322 +0.1678172 0.510322 0.510322 +0.1950164 0.510322 0.510322 +0.2210581 0.510322 0.510322 +0.245636 0.510322 0.510322 +0.2686816 0.510322 0.510322 +0.2902431 0.510322 0.510322 +0.3104189 0.510322 0.510322 +0.3293248 0.510322 0.510322 +0.3470774 0.510322 0.510322 +0.3637862 0.510322 0.510322 +0.3795513 0.510322 0.510322 +0.3944623 0.510322 0.510322 +0.4085988 0.510322 0.510322 +0.4220313 0.510322 0.510322 +0.4348222 0.510322 0.510322 +0.4470264 0.510322 0.510322 +0.4586928 0.510322 0.510322 +0.4698649 0.510322 0.510322 +0.4805811 0.510322 0.510322 +0.490876 0.510322 0.510322 +0.5007803 0.510322 0.510322 +0.510322 0.510322 0.510322 +0.5195258 0.510322 0.510322 +0.5284142 0.510322 0.510322 +0.5370079 0.510322 0.510322 +0.5453253 0.510322 0.510322 +0.5533834 0.510322 0.510322 +0.5611974 0.510322 0.510322 +0.5687816 0.510322 0.510322 +0.092819 0.5195258 0.510322 +0.1056428 0.5195258 0.510322 +0.1201537 0.5195258 0.510322 +0.1409607 0.5195258 0.510322 +0.1678172 0.5195258 0.510322 +0.1950164 0.5195258 0.510322 +0.2210581 0.5195258 0.510322 +0.245636 0.5195258 0.510322 +0.2686816 0.5195258 0.510322 +0.2902431 0.5195258 0.510322 +0.3104189 0.5195258 0.510322 +0.3293248 0.5195258 0.510322 +0.3470774 0.5195258 0.510322 +0.3637862 0.5195258 0.510322 +0.3795513 0.5195258 0.510322 +0.3944623 0.5195258 0.510322 +0.4085988 0.5195258 0.510322 +0.4220313 0.5195258 0.510322 +0.4348222 0.5195258 0.510322 +0.4470264 0.5195258 0.510322 +0.4586928 0.5195258 0.510322 +0.4698649 0.5195258 0.510322 +0.4805811 0.5195258 0.510322 +0.490876 0.5195258 0.510322 +0.5007803 0.5195258 0.510322 +0.510322 0.5195258 0.510322 +0.5195258 0.5195258 0.510322 +0.5284142 0.5195258 0.510322 +0.5370079 0.5195258 0.510322 +0.5453253 0.5195258 0.510322 +0.5533834 0.5195258 0.510322 +0.5611974 0.5195258 0.510322 +0.5687816 0.5195258 0.510322 +0.092819 0.5284142 0.510322 +0.1056428 0.5284142 0.510322 +0.1201537 0.5284142 0.510322 +0.1409607 0.5284142 0.510322 +0.1678172 0.5284142 0.510322 +0.1950164 0.5284142 0.510322 +0.2210581 0.5284142 0.510322 +0.245636 0.5284142 0.510322 +0.2686816 0.5284142 0.510322 +0.2902431 0.5284142 0.510322 +0.3104189 0.5284142 0.510322 +0.3293248 0.5284142 0.510322 +0.3470774 0.5284142 0.510322 +0.3637862 0.5284142 0.510322 +0.3795513 0.5284142 0.510322 +0.3944623 0.5284142 0.510322 +0.4085988 0.5284142 0.510322 +0.4220313 0.5284142 0.510322 +0.4348222 0.5284142 0.510322 +0.4470264 0.5284142 0.510322 +0.4586928 0.5284142 0.510322 +0.4698649 0.5284142 0.510322 +0.4805811 0.5284142 0.510322 +0.490876 0.5284142 0.510322 +0.5007803 0.5284142 0.510322 +0.510322 0.5284142 0.510322 +0.5195258 0.5284142 0.510322 +0.5284142 0.5284142 0.510322 +0.5370079 0.5284142 0.510322 +0.5453253 0.5284142 0.510322 +0.5533834 0.5284142 0.510322 +0.5611974 0.5284142 0.510322 +0.5687816 0.5284142 0.510322 +0.092819 0.5370079 0.510322 +0.1056428 0.5370079 0.510322 +0.1201537 0.5370079 0.510322 +0.1409607 0.5370079 0.510322 +0.1678172 0.5370079 0.510322 +0.1950164 0.5370079 0.510322 +0.2210581 0.5370079 0.510322 +0.245636 0.5370079 0.510322 +0.2686816 0.5370079 0.510322 +0.2902431 0.5370079 0.510322 +0.3104189 0.5370079 0.510322 +0.3293248 0.5370079 0.510322 +0.3470774 0.5370079 0.510322 +0.3637862 0.5370079 0.510322 +0.3795513 0.5370079 0.510322 +0.3944623 0.5370079 0.510322 +0.4085988 0.5370079 0.510322 +0.4220313 0.5370079 0.510322 +0.4348222 0.5370079 0.510322 +0.4470264 0.5370079 0.510322 +0.4586928 0.5370079 0.510322 +0.4698649 0.5370079 0.510322 +0.4805811 0.5370079 0.510322 +0.490876 0.5370079 0.510322 +0.5007803 0.5370079 0.510322 +0.510322 0.5370079 0.510322 +0.5195258 0.5370079 0.510322 +0.5284142 0.5370079 0.510322 +0.5370079 0.5370079 0.510322 +0.5453253 0.5370079 0.510322 +0.5533834 0.5370079 0.510322 +0.5611974 0.5370079 0.510322 +0.5687816 0.5370079 0.510322 +0.092819 0.5453253 0.510322 +0.1056428 0.5453253 0.510322 +0.1201537 0.5453253 0.510322 +0.1409607 0.5453253 0.510322 +0.1678172 0.5453253 0.510322 +0.1950164 0.5453253 0.510322 +0.2210581 0.5453253 0.510322 +0.245636 0.5453253 0.510322 +0.2686816 0.5453253 0.510322 +0.2902431 0.5453253 0.510322 +0.3104189 0.5453253 0.510322 +0.3293248 0.5453253 0.510322 +0.3470774 0.5453253 0.510322 +0.3637862 0.5453253 0.510322 +0.3795513 0.5453253 0.510322 +0.3944623 0.5453253 0.510322 +0.4085988 0.5453253 0.510322 +0.4220313 0.5453253 0.510322 +0.4348222 0.5453253 0.510322 +0.4470264 0.5453253 0.510322 +0.4586928 0.5453253 0.510322 +0.4698649 0.5453253 0.510322 +0.4805811 0.5453253 0.510322 +0.490876 0.5453253 0.510322 +0.5007803 0.5453253 0.510322 +0.510322 0.5453253 0.510322 +0.5195258 0.5453253 0.510322 +0.5284142 0.5453253 0.510322 +0.5370079 0.5453253 0.510322 +0.5453253 0.5453253 0.510322 +0.5533834 0.5453253 0.510322 +0.5611974 0.5453253 0.510322 +0.5687816 0.5453253 0.510322 +0.092819 0.5533834 0.510322 +0.1056428 0.5533834 0.510322 +0.1201537 0.5533834 0.510322 +0.1409607 0.5533834 0.510322 +0.1678172 0.5533834 0.510322 +0.1950164 0.5533834 0.510322 +0.2210581 0.5533834 0.510322 +0.245636 0.5533834 0.510322 +0.2686816 0.5533834 0.510322 +0.2902431 0.5533834 0.510322 +0.3104189 0.5533834 0.510322 +0.3293248 0.5533834 0.510322 +0.3470774 0.5533834 0.510322 +0.3637862 0.5533834 0.510322 +0.3795513 0.5533834 0.510322 +0.3944623 0.5533834 0.510322 +0.4085988 0.5533834 0.510322 +0.4220313 0.5533834 0.510322 +0.4348222 0.5533834 0.510322 +0.4470264 0.5533834 0.510322 +0.4586928 0.5533834 0.510322 +0.4698649 0.5533834 0.510322 +0.4805811 0.5533834 0.510322 +0.490876 0.5533834 0.510322 +0.5007803 0.5533834 0.510322 +0.510322 0.5533834 0.510322 +0.5195258 0.5533834 0.510322 +0.5284142 0.5533834 0.510322 +0.5370079 0.5533834 0.510322 +0.5453253 0.5533834 0.510322 +0.5533834 0.5533834 0.510322 +0.5611974 0.5533834 0.510322 +0.5687816 0.5533834 0.510322 +0.092819 0.5611974 0.510322 +0.1056428 0.5611974 0.510322 +0.1201537 0.5611974 0.510322 +0.1409607 0.5611974 0.510322 +0.1678172 0.5611974 0.510322 +0.1950164 0.5611974 0.510322 +0.2210581 0.5611974 0.510322 +0.245636 0.5611974 0.510322 +0.2686816 0.5611974 0.510322 +0.2902431 0.5611974 0.510322 +0.3104189 0.5611974 0.510322 +0.3293248 0.5611974 0.510322 +0.3470774 0.5611974 0.510322 +0.3637862 0.5611974 0.510322 +0.3795513 0.5611974 0.510322 +0.3944623 0.5611974 0.510322 +0.4085988 0.5611974 0.510322 +0.4220313 0.5611974 0.510322 +0.4348222 0.5611974 0.510322 +0.4470264 0.5611974 0.510322 +0.4586928 0.5611974 0.510322 +0.4698649 0.5611974 0.510322 +0.4805811 0.5611974 0.510322 +0.490876 0.5611974 0.510322 +0.5007803 0.5611974 0.510322 +0.510322 0.5611974 0.510322 +0.5195258 0.5611974 0.510322 +0.5284142 0.5611974 0.510322 +0.5370079 0.5611974 0.510322 +0.5453253 0.5611974 0.510322 +0.5533834 0.5611974 0.510322 +0.5611974 0.5611974 0.510322 +0.5687816 0.5611974 0.510322 +0.092819 0.5687816 0.510322 +0.1056428 0.5687816 0.510322 +0.1201537 0.5687816 0.510322 +0.1409607 0.5687816 0.510322 +0.1678172 0.5687816 0.510322 +0.1950164 0.5687816 0.510322 +0.2210581 0.5687816 0.510322 +0.245636 0.5687816 0.510322 +0.2686816 0.5687816 0.510322 +0.2902431 0.5687816 0.510322 +0.3104189 0.5687816 0.510322 +0.3293248 0.5687816 0.510322 +0.3470774 0.5687816 0.510322 +0.3637862 0.5687816 0.510322 +0.3795513 0.5687816 0.510322 +0.3944623 0.5687816 0.510322 +0.4085988 0.5687816 0.510322 +0.4220313 0.5687816 0.510322 +0.4348222 0.5687816 0.510322 +0.4470264 0.5687816 0.510322 +0.4586928 0.5687816 0.510322 +0.4698649 0.5687816 0.510322 +0.4805811 0.5687816 0.510322 +0.490876 0.5687816 0.510322 +0.5007803 0.5687816 0.510322 +0.510322 0.5687816 0.510322 +0.5195258 0.5687816 0.510322 +0.5284142 0.5687816 0.510322 +0.5370079 0.5687816 0.510322 +0.5453253 0.5687816 0.510322 +0.5533834 0.5687816 0.510322 +0.5611974 0.5687816 0.510322 +0.5687816 0.5687816 0.510322 +0.092819 0.092819 0.5195258 +0.1056428 0.092819 0.5195258 +0.1201537 0.092819 0.5195258 +0.1409607 0.092819 0.5195258 +0.1678172 0.092819 0.5195258 +0.1950164 0.092819 0.5195258 +0.2210581 0.092819 0.5195258 +0.245636 0.092819 0.5195258 +0.2686816 0.092819 0.5195258 +0.2902431 0.092819 0.5195258 +0.3104189 0.092819 0.5195258 +0.3293248 0.092819 0.5195258 +0.3470774 0.092819 0.5195258 +0.3637862 0.092819 0.5195258 +0.3795513 0.092819 0.5195258 +0.3944623 0.092819 0.5195258 +0.4085988 0.092819 0.5195258 +0.4220313 0.092819 0.5195258 +0.4348222 0.092819 0.5195258 +0.4470264 0.092819 0.5195258 +0.4586928 0.092819 0.5195258 +0.4698649 0.092819 0.5195258 +0.4805811 0.092819 0.5195258 +0.490876 0.092819 0.5195258 +0.5007803 0.092819 0.5195258 +0.510322 0.092819 0.5195258 +0.5195258 0.092819 0.5195258 +0.5284142 0.092819 0.5195258 +0.5370079 0.092819 0.5195258 +0.5453253 0.092819 0.5195258 +0.5533834 0.092819 0.5195258 +0.5611974 0.092819 0.5195258 +0.5687816 0.092819 0.5195258 +0.092819 0.1056428 0.5195258 +0.1056428 0.1056428 0.5195258 +0.1201537 0.1056428 0.5195258 +0.1409607 0.1056428 0.5195258 +0.1678172 0.1056428 0.5195258 +0.1950164 0.1056428 0.5195258 +0.2210581 0.1056428 0.5195258 +0.245636 0.1056428 0.5195258 +0.2686816 0.1056428 0.5195258 +0.2902431 0.1056428 0.5195258 +0.3104189 0.1056428 0.5195258 +0.3293248 0.1056428 0.5195258 +0.3470774 0.1056428 0.5195258 +0.3637862 0.1056428 0.5195258 +0.3795513 0.1056428 0.5195258 +0.3944623 0.1056428 0.5195258 +0.4085988 0.1056428 0.5195258 +0.4220313 0.1056428 0.5195258 +0.4348222 0.1056428 0.5195258 +0.4470264 0.1056428 0.5195258 +0.4586928 0.1056428 0.5195258 +0.4698649 0.1056428 0.5195258 +0.4805811 0.1056428 0.5195258 +0.490876 0.1056428 0.5195258 +0.5007803 0.1056428 0.5195258 +0.510322 0.1056428 0.5195258 +0.5195258 0.1056428 0.5195258 +0.5284142 0.1056428 0.5195258 +0.5370079 0.1056428 0.5195258 +0.5453253 0.1056428 0.5195258 +0.5533834 0.1056428 0.5195258 +0.5611974 0.1056428 0.5195258 +0.5687816 0.1056428 0.5195258 +0.092819 0.1201537 0.5195258 +0.1056428 0.1201537 0.5195258 +0.1201537 0.1201537 0.5195258 +0.1409607 0.1201537 0.5195258 +0.1678172 0.1201537 0.5195258 +0.1950164 0.1201537 0.5195258 +0.2210581 0.1201537 0.5195258 +0.245636 0.1201537 0.5195258 +0.2686816 0.1201537 0.5195258 +0.2902431 0.1201537 0.5195258 +0.3104189 0.1201537 0.5195258 +0.3293248 0.1201537 0.5195258 +0.3470774 0.1201537 0.5195258 +0.3637862 0.1201537 0.5195258 +0.3795513 0.1201537 0.5195258 +0.3944623 0.1201537 0.5195258 +0.4085988 0.1201537 0.5195258 +0.4220313 0.1201537 0.5195258 +0.4348222 0.1201537 0.5195258 +0.4470264 0.1201537 0.5195258 +0.4586928 0.1201537 0.5195258 +0.4698649 0.1201537 0.5195258 +0.4805811 0.1201537 0.5195258 +0.490876 0.1201537 0.5195258 +0.5007803 0.1201537 0.5195258 +0.510322 0.1201537 0.5195258 +0.5195258 0.1201537 0.5195258 +0.5284142 0.1201537 0.5195258 +0.5370079 0.1201537 0.5195258 +0.5453253 0.1201537 0.5195258 +0.5533834 0.1201537 0.5195258 +0.5611974 0.1201537 0.5195258 +0.5687816 0.1201537 0.5195258 +0.092819 0.1409607 0.5195258 +0.1056428 0.1409607 0.5195258 +0.1201537 0.1409607 0.5195258 +0.1409607 0.1409607 0.5195258 +0.1678172 0.1409607 0.5195258 +0.1950164 0.1409607 0.5195258 +0.2210581 0.1409607 0.5195258 +0.245636 0.1409607 0.5195258 +0.2686816 0.1409607 0.5195258 +0.2902431 0.1409607 0.5195258 +0.3104189 0.1409607 0.5195258 +0.3293248 0.1409607 0.5195258 +0.3470774 0.1409607 0.5195258 +0.3637862 0.1409607 0.5195258 +0.3795513 0.1409607 0.5195258 +0.3944623 0.1409607 0.5195258 +0.4085988 0.1409607 0.5195258 +0.4220313 0.1409607 0.5195258 +0.4348222 0.1409607 0.5195258 +0.4470264 0.1409607 0.5195258 +0.4586928 0.1409607 0.5195258 +0.4698649 0.1409607 0.5195258 +0.4805811 0.1409607 0.5195258 +0.490876 0.1409607 0.5195258 +0.5007803 0.1409607 0.5195258 +0.510322 0.1409607 0.5195258 +0.5195258 0.1409607 0.5195258 +0.5284142 0.1409607 0.5195258 +0.5370079 0.1409607 0.5195258 +0.5453253 0.1409607 0.5195258 +0.5533834 0.1409607 0.5195258 +0.5611974 0.1409607 0.5195258 +0.5687816 0.1409607 0.5195258 +0.092819 0.1678172 0.5195258 +0.1056428 0.1678172 0.5195258 +0.1201537 0.1678172 0.5195258 +0.1409607 0.1678172 0.5195258 +0.1678172 0.1678172 0.5195258 +0.1950164 0.1678172 0.5195258 +0.2210581 0.1678172 0.5195258 +0.245636 0.1678172 0.5195258 +0.2686816 0.1678172 0.5195258 +0.2902431 0.1678172 0.5195258 +0.3104189 0.1678172 0.5195258 +0.3293248 0.1678172 0.5195258 +0.3470774 0.1678172 0.5195258 +0.3637862 0.1678172 0.5195258 +0.3795513 0.1678172 0.5195258 +0.3944623 0.1678172 0.5195258 +0.4085988 0.1678172 0.5195258 +0.4220313 0.1678172 0.5195258 +0.4348222 0.1678172 0.5195258 +0.4470264 0.1678172 0.5195258 +0.4586928 0.1678172 0.5195258 +0.4698649 0.1678172 0.5195258 +0.4805811 0.1678172 0.5195258 +0.490876 0.1678172 0.5195258 +0.5007803 0.1678172 0.5195258 +0.510322 0.1678172 0.5195258 +0.5195258 0.1678172 0.5195258 +0.5284142 0.1678172 0.5195258 +0.5370079 0.1678172 0.5195258 +0.5453253 0.1678172 0.5195258 +0.5533834 0.1678172 0.5195258 +0.5611974 0.1678172 0.5195258 +0.5687816 0.1678172 0.5195258 +0.092819 0.1950164 0.5195258 +0.1056428 0.1950164 0.5195258 +0.1201537 0.1950164 0.5195258 +0.1409607 0.1950164 0.5195258 +0.1678172 0.1950164 0.5195258 +0.1950164 0.1950164 0.5195258 +0.2210581 0.1950164 0.5195258 +0.245636 0.1950164 0.5195258 +0.2686816 0.1950164 0.5195258 +0.2902431 0.1950164 0.5195258 +0.3104189 0.1950164 0.5195258 +0.3293248 0.1950164 0.5195258 +0.3470774 0.1950164 0.5195258 +0.3637862 0.1950164 0.5195258 +0.3795513 0.1950164 0.5195258 +0.3944623 0.1950164 0.5195258 +0.4085988 0.1950164 0.5195258 +0.4220313 0.1950164 0.5195258 +0.4348222 0.1950164 0.5195258 +0.4470264 0.1950164 0.5195258 +0.4586928 0.1950164 0.5195258 +0.4698649 0.1950164 0.5195258 +0.4805811 0.1950164 0.5195258 +0.490876 0.1950164 0.5195258 +0.5007803 0.1950164 0.5195258 +0.510322 0.1950164 0.5195258 +0.5195258 0.1950164 0.5195258 +0.5284142 0.1950164 0.5195258 +0.5370079 0.1950164 0.5195258 +0.5453253 0.1950164 0.5195258 +0.5533834 0.1950164 0.5195258 +0.5611974 0.1950164 0.5195258 +0.5687816 0.1950164 0.5195258 +0.092819 0.2210581 0.5195258 +0.1056428 0.2210581 0.5195258 +0.1201537 0.2210581 0.5195258 +0.1409607 0.2210581 0.5195258 +0.1678172 0.2210581 0.5195258 +0.1950164 0.2210581 0.5195258 +0.2210581 0.2210581 0.5195258 +0.245636 0.2210581 0.5195258 +0.2686816 0.2210581 0.5195258 +0.2902431 0.2210581 0.5195258 +0.3104189 0.2210581 0.5195258 +0.3293248 0.2210581 0.5195258 +0.3470774 0.2210581 0.5195258 +0.3637862 0.2210581 0.5195258 +0.3795513 0.2210581 0.5195258 +0.3944623 0.2210581 0.5195258 +0.4085988 0.2210581 0.5195258 +0.4220313 0.2210581 0.5195258 +0.4348222 0.2210581 0.5195258 +0.4470264 0.2210581 0.5195258 +0.4586928 0.2210581 0.5195258 +0.4698649 0.2210581 0.5195258 +0.4805811 0.2210581 0.5195258 +0.490876 0.2210581 0.5195258 +0.5007803 0.2210581 0.5195258 +0.510322 0.2210581 0.5195258 +0.5195258 0.2210581 0.5195258 +0.5284142 0.2210581 0.5195258 +0.5370079 0.2210581 0.5195258 +0.5453253 0.2210581 0.5195258 +0.5533834 0.2210581 0.5195258 +0.5611974 0.2210581 0.5195258 +0.5687816 0.2210581 0.5195258 +0.092819 0.245636 0.5195258 +0.1056428 0.245636 0.5195258 +0.1201537 0.245636 0.5195258 +0.1409607 0.245636 0.5195258 +0.1678172 0.245636 0.5195258 +0.1950164 0.245636 0.5195258 +0.2210581 0.245636 0.5195258 +0.245636 0.245636 0.5195258 +0.2686816 0.245636 0.5195258 +0.2902431 0.245636 0.5195258 +0.3104189 0.245636 0.5195258 +0.3293248 0.245636 0.5195258 +0.3470774 0.245636 0.5195258 +0.3637862 0.245636 0.5195258 +0.3795513 0.245636 0.5195258 +0.3944623 0.245636 0.5195258 +0.4085988 0.245636 0.5195258 +0.4220313 0.245636 0.5195258 +0.4348222 0.245636 0.5195258 +0.4470264 0.245636 0.5195258 +0.4586928 0.245636 0.5195258 +0.4698649 0.245636 0.5195258 +0.4805811 0.245636 0.5195258 +0.490876 0.245636 0.5195258 +0.5007803 0.245636 0.5195258 +0.510322 0.245636 0.5195258 +0.5195258 0.245636 0.5195258 +0.5284142 0.245636 0.5195258 +0.5370079 0.245636 0.5195258 +0.5453253 0.245636 0.5195258 +0.5533834 0.245636 0.5195258 +0.5611974 0.245636 0.5195258 +0.5687816 0.245636 0.5195258 +0.092819 0.2686816 0.5195258 +0.1056428 0.2686816 0.5195258 +0.1201537 0.2686816 0.5195258 +0.1409607 0.2686816 0.5195258 +0.1678172 0.2686816 0.5195258 +0.1950164 0.2686816 0.5195258 +0.2210581 0.2686816 0.5195258 +0.245636 0.2686816 0.5195258 +0.2686816 0.2686816 0.5195258 +0.2902431 0.2686816 0.5195258 +0.3104189 0.2686816 0.5195258 +0.3293248 0.2686816 0.5195258 +0.3470774 0.2686816 0.5195258 +0.3637862 0.2686816 0.5195258 +0.3795513 0.2686816 0.5195258 +0.3944623 0.2686816 0.5195258 +0.4085988 0.2686816 0.5195258 +0.4220313 0.2686816 0.5195258 +0.4348222 0.2686816 0.5195258 +0.4470264 0.2686816 0.5195258 +0.4586928 0.2686816 0.5195258 +0.4698649 0.2686816 0.5195258 +0.4805811 0.2686816 0.5195258 +0.490876 0.2686816 0.5195258 +0.5007803 0.2686816 0.5195258 +0.510322 0.2686816 0.5195258 +0.5195258 0.2686816 0.5195258 +0.5284142 0.2686816 0.5195258 +0.5370079 0.2686816 0.5195258 +0.5453253 0.2686816 0.5195258 +0.5533834 0.2686816 0.5195258 +0.5611974 0.2686816 0.5195258 +0.5687816 0.2686816 0.5195258 +0.092819 0.2902431 0.5195258 +0.1056428 0.2902431 0.5195258 +0.1201537 0.2902431 0.5195258 +0.1409607 0.2902431 0.5195258 +0.1678172 0.2902431 0.5195258 +0.1950164 0.2902431 0.5195258 +0.2210581 0.2902431 0.5195258 +0.245636 0.2902431 0.5195258 +0.2686816 0.2902431 0.5195258 +0.2902431 0.2902431 0.5195258 +0.3104189 0.2902431 0.5195258 +0.3293248 0.2902431 0.5195258 +0.3470774 0.2902431 0.5195258 +0.3637862 0.2902431 0.5195258 +0.3795513 0.2902431 0.5195258 +0.3944623 0.2902431 0.5195258 +0.4085988 0.2902431 0.5195258 +0.4220313 0.2902431 0.5195258 +0.4348222 0.2902431 0.5195258 +0.4470264 0.2902431 0.5195258 +0.4586928 0.2902431 0.5195258 +0.4698649 0.2902431 0.5195258 +0.4805811 0.2902431 0.5195258 +0.490876 0.2902431 0.5195258 +0.5007803 0.2902431 0.5195258 +0.510322 0.2902431 0.5195258 +0.5195258 0.2902431 0.5195258 +0.5284142 0.2902431 0.5195258 +0.5370079 0.2902431 0.5195258 +0.5453253 0.2902431 0.5195258 +0.5533834 0.2902431 0.5195258 +0.5611974 0.2902431 0.5195258 +0.5687816 0.2902431 0.5195258 +0.092819 0.3104189 0.5195258 +0.1056428 0.3104189 0.5195258 +0.1201537 0.3104189 0.5195258 +0.1409607 0.3104189 0.5195258 +0.1678172 0.3104189 0.5195258 +0.1950164 0.3104189 0.5195258 +0.2210581 0.3104189 0.5195258 +0.245636 0.3104189 0.5195258 +0.2686816 0.3104189 0.5195258 +0.2902431 0.3104189 0.5195258 +0.3104189 0.3104189 0.5195258 +0.3293248 0.3104189 0.5195258 +0.3470774 0.3104189 0.5195258 +0.3637862 0.3104189 0.5195258 +0.3795513 0.3104189 0.5195258 +0.3944623 0.3104189 0.5195258 +0.4085988 0.3104189 0.5195258 +0.4220313 0.3104189 0.5195258 +0.4348222 0.3104189 0.5195258 +0.4470264 0.3104189 0.5195258 +0.4586928 0.3104189 0.5195258 +0.4698649 0.3104189 0.5195258 +0.4805811 0.3104189 0.5195258 +0.490876 0.3104189 0.5195258 +0.5007803 0.3104189 0.5195258 +0.510322 0.3104189 0.5195258 +0.5195258 0.3104189 0.5195258 +0.5284142 0.3104189 0.5195258 +0.5370079 0.3104189 0.5195258 +0.5453253 0.3104189 0.5195258 +0.5533834 0.3104189 0.5195258 +0.5611974 0.3104189 0.5195258 +0.5687816 0.3104189 0.5195258 +0.092819 0.3293248 0.5195258 +0.1056428 0.3293248 0.5195258 +0.1201537 0.3293248 0.5195258 +0.1409607 0.3293248 0.5195258 +0.1678172 0.3293248 0.5195258 +0.1950164 0.3293248 0.5195258 +0.2210581 0.3293248 0.5195258 +0.245636 0.3293248 0.5195258 +0.2686816 0.3293248 0.5195258 +0.2902431 0.3293248 0.5195258 +0.3104189 0.3293248 0.5195258 +0.3293248 0.3293248 0.5195258 +0.3470774 0.3293248 0.5195258 +0.3637862 0.3293248 0.5195258 +0.3795513 0.3293248 0.5195258 +0.3944623 0.3293248 0.5195258 +0.4085988 0.3293248 0.5195258 +0.4220313 0.3293248 0.5195258 +0.4348222 0.3293248 0.5195258 +0.4470264 0.3293248 0.5195258 +0.4586928 0.3293248 0.5195258 +0.4698649 0.3293248 0.5195258 +0.4805811 0.3293248 0.5195258 +0.490876 0.3293248 0.5195258 +0.5007803 0.3293248 0.5195258 +0.510322 0.3293248 0.5195258 +0.5195258 0.3293248 0.5195258 +0.5284142 0.3293248 0.5195258 +0.5370079 0.3293248 0.5195258 +0.5453253 0.3293248 0.5195258 +0.5533834 0.3293248 0.5195258 +0.5611974 0.3293248 0.5195258 +0.5687816 0.3293248 0.5195258 +0.092819 0.3470774 0.5195258 +0.1056428 0.3470774 0.5195258 +0.1201537 0.3470774 0.5195258 +0.1409607 0.3470774 0.5195258 +0.1678172 0.3470774 0.5195258 +0.1950164 0.3470774 0.5195258 +0.2210581 0.3470774 0.5195258 +0.245636 0.3470774 0.5195258 +0.2686816 0.3470774 0.5195258 +0.2902431 0.3470774 0.5195258 +0.3104189 0.3470774 0.5195258 +0.3293248 0.3470774 0.5195258 +0.3470774 0.3470774 0.5195258 +0.3637862 0.3470774 0.5195258 +0.3795513 0.3470774 0.5195258 +0.3944623 0.3470774 0.5195258 +0.4085988 0.3470774 0.5195258 +0.4220313 0.3470774 0.5195258 +0.4348222 0.3470774 0.5195258 +0.4470264 0.3470774 0.5195258 +0.4586928 0.3470774 0.5195258 +0.4698649 0.3470774 0.5195258 +0.4805811 0.3470774 0.5195258 +0.490876 0.3470774 0.5195258 +0.5007803 0.3470774 0.5195258 +0.510322 0.3470774 0.5195258 +0.5195258 0.3470774 0.5195258 +0.5284142 0.3470774 0.5195258 +0.5370079 0.3470774 0.5195258 +0.5453253 0.3470774 0.5195258 +0.5533834 0.3470774 0.5195258 +0.5611974 0.3470774 0.5195258 +0.5687816 0.3470774 0.5195258 +0.092819 0.3637862 0.5195258 +0.1056428 0.3637862 0.5195258 +0.1201537 0.3637862 0.5195258 +0.1409607 0.3637862 0.5195258 +0.1678172 0.3637862 0.5195258 +0.1950164 0.3637862 0.5195258 +0.2210581 0.3637862 0.5195258 +0.245636 0.3637862 0.5195258 +0.2686816 0.3637862 0.5195258 +0.2902431 0.3637862 0.5195258 +0.3104189 0.3637862 0.5195258 +0.3293248 0.3637862 0.5195258 +0.3470774 0.3637862 0.5195258 +0.3637862 0.3637862 0.5195258 +0.3795513 0.3637862 0.5195258 +0.3944623 0.3637862 0.5195258 +0.4085988 0.3637862 0.5195258 +0.4220313 0.3637862 0.5195258 +0.4348222 0.3637862 0.5195258 +0.4470264 0.3637862 0.5195258 +0.4586928 0.3637862 0.5195258 +0.4698649 0.3637862 0.5195258 +0.4805811 0.3637862 0.5195258 +0.490876 0.3637862 0.5195258 +0.5007803 0.3637862 0.5195258 +0.510322 0.3637862 0.5195258 +0.5195258 0.3637862 0.5195258 +0.5284142 0.3637862 0.5195258 +0.5370079 0.3637862 0.5195258 +0.5453253 0.3637862 0.5195258 +0.5533834 0.3637862 0.5195258 +0.5611974 0.3637862 0.5195258 +0.5687816 0.3637862 0.5195258 +0.092819 0.3795513 0.5195258 +0.1056428 0.3795513 0.5195258 +0.1201537 0.3795513 0.5195258 +0.1409607 0.3795513 0.5195258 +0.1678172 0.3795513 0.5195258 +0.1950164 0.3795513 0.5195258 +0.2210581 0.3795513 0.5195258 +0.245636 0.3795513 0.5195258 +0.2686816 0.3795513 0.5195258 +0.2902431 0.3795513 0.5195258 +0.3104189 0.3795513 0.5195258 +0.3293248 0.3795513 0.5195258 +0.3470774 0.3795513 0.5195258 +0.3637862 0.3795513 0.5195258 +0.3795513 0.3795513 0.5195258 +0.3944623 0.3795513 0.5195258 +0.4085988 0.3795513 0.5195258 +0.4220313 0.3795513 0.5195258 +0.4348222 0.3795513 0.5195258 +0.4470264 0.3795513 0.5195258 +0.4586928 0.3795513 0.5195258 +0.4698649 0.3795513 0.5195258 +0.4805811 0.3795513 0.5195258 +0.490876 0.3795513 0.5195258 +0.5007803 0.3795513 0.5195258 +0.510322 0.3795513 0.5195258 +0.5195258 0.3795513 0.5195258 +0.5284142 0.3795513 0.5195258 +0.5370079 0.3795513 0.5195258 +0.5453253 0.3795513 0.5195258 +0.5533834 0.3795513 0.5195258 +0.5611974 0.3795513 0.5195258 +0.5687816 0.3795513 0.5195258 +0.092819 0.3944623 0.5195258 +0.1056428 0.3944623 0.5195258 +0.1201537 0.3944623 0.5195258 +0.1409607 0.3944623 0.5195258 +0.1678172 0.3944623 0.5195258 +0.1950164 0.3944623 0.5195258 +0.2210581 0.3944623 0.5195258 +0.245636 0.3944623 0.5195258 +0.2686816 0.3944623 0.5195258 +0.2902431 0.3944623 0.5195258 +0.3104189 0.3944623 0.5195258 +0.3293248 0.3944623 0.5195258 +0.3470774 0.3944623 0.5195258 +0.3637862 0.3944623 0.5195258 +0.3795513 0.3944623 0.5195258 +0.3944623 0.3944623 0.5195258 +0.4085988 0.3944623 0.5195258 +0.4220313 0.3944623 0.5195258 +0.4348222 0.3944623 0.5195258 +0.4470264 0.3944623 0.5195258 +0.4586928 0.3944623 0.5195258 +0.4698649 0.3944623 0.5195258 +0.4805811 0.3944623 0.5195258 +0.490876 0.3944623 0.5195258 +0.5007803 0.3944623 0.5195258 +0.510322 0.3944623 0.5195258 +0.5195258 0.3944623 0.5195258 +0.5284142 0.3944623 0.5195258 +0.5370079 0.3944623 0.5195258 +0.5453253 0.3944623 0.5195258 +0.5533834 0.3944623 0.5195258 +0.5611974 0.3944623 0.5195258 +0.5687816 0.3944623 0.5195258 +0.092819 0.4085988 0.5195258 +0.1056428 0.4085988 0.5195258 +0.1201537 0.4085988 0.5195258 +0.1409607 0.4085988 0.5195258 +0.1678172 0.4085988 0.5195258 +0.1950164 0.4085988 0.5195258 +0.2210581 0.4085988 0.5195258 +0.245636 0.4085988 0.5195258 +0.2686816 0.4085988 0.5195258 +0.2902431 0.4085988 0.5195258 +0.3104189 0.4085988 0.5195258 +0.3293248 0.4085988 0.5195258 +0.3470774 0.4085988 0.5195258 +0.3637862 0.4085988 0.5195258 +0.3795513 0.4085988 0.5195258 +0.3944623 0.4085988 0.5195258 +0.4085988 0.4085988 0.5195258 +0.4220313 0.4085988 0.5195258 +0.4348222 0.4085988 0.5195258 +0.4470264 0.4085988 0.5195258 +0.4586928 0.4085988 0.5195258 +0.4698649 0.4085988 0.5195258 +0.4805811 0.4085988 0.5195258 +0.490876 0.4085988 0.5195258 +0.5007803 0.4085988 0.5195258 +0.510322 0.4085988 0.5195258 +0.5195258 0.4085988 0.5195258 +0.5284142 0.4085988 0.5195258 +0.5370079 0.4085988 0.5195258 +0.5453253 0.4085988 0.5195258 +0.5533834 0.4085988 0.5195258 +0.5611974 0.4085988 0.5195258 +0.5687816 0.4085988 0.5195258 +0.092819 0.4220313 0.5195258 +0.1056428 0.4220313 0.5195258 +0.1201537 0.4220313 0.5195258 +0.1409607 0.4220313 0.5195258 +0.1678172 0.4220313 0.5195258 +0.1950164 0.4220313 0.5195258 +0.2210581 0.4220313 0.5195258 +0.245636 0.4220313 0.5195258 +0.2686816 0.4220313 0.5195258 +0.2902431 0.4220313 0.5195258 +0.3104189 0.4220313 0.5195258 +0.3293248 0.4220313 0.5195258 +0.3470774 0.4220313 0.5195258 +0.3637862 0.4220313 0.5195258 +0.3795513 0.4220313 0.5195258 +0.3944623 0.4220313 0.5195258 +0.4085988 0.4220313 0.5195258 +0.4220313 0.4220313 0.5195258 +0.4348222 0.4220313 0.5195258 +0.4470264 0.4220313 0.5195258 +0.4586928 0.4220313 0.5195258 +0.4698649 0.4220313 0.5195258 +0.4805811 0.4220313 0.5195258 +0.490876 0.4220313 0.5195258 +0.5007803 0.4220313 0.5195258 +0.510322 0.4220313 0.5195258 +0.5195258 0.4220313 0.5195258 +0.5284142 0.4220313 0.5195258 +0.5370079 0.4220313 0.5195258 +0.5453253 0.4220313 0.5195258 +0.5533834 0.4220313 0.5195258 +0.5611974 0.4220313 0.5195258 +0.5687816 0.4220313 0.5195258 +0.092819 0.4348222 0.5195258 +0.1056428 0.4348222 0.5195258 +0.1201537 0.4348222 0.5195258 +0.1409607 0.4348222 0.5195258 +0.1678172 0.4348222 0.5195258 +0.1950164 0.4348222 0.5195258 +0.2210581 0.4348222 0.5195258 +0.245636 0.4348222 0.5195258 +0.2686816 0.4348222 0.5195258 +0.2902431 0.4348222 0.5195258 +0.3104189 0.4348222 0.5195258 +0.3293248 0.4348222 0.5195258 +0.3470774 0.4348222 0.5195258 +0.3637862 0.4348222 0.5195258 +0.3795513 0.4348222 0.5195258 +0.3944623 0.4348222 0.5195258 +0.4085988 0.4348222 0.5195258 +0.4220313 0.4348222 0.5195258 +0.4348222 0.4348222 0.5195258 +0.4470264 0.4348222 0.5195258 +0.4586928 0.4348222 0.5195258 +0.4698649 0.4348222 0.5195258 +0.4805811 0.4348222 0.5195258 +0.490876 0.4348222 0.5195258 +0.5007803 0.4348222 0.5195258 +0.510322 0.4348222 0.5195258 +0.5195258 0.4348222 0.5195258 +0.5284142 0.4348222 0.5195258 +0.5370079 0.4348222 0.5195258 +0.5453253 0.4348222 0.5195258 +0.5533834 0.4348222 0.5195258 +0.5611974 0.4348222 0.5195258 +0.5687816 0.4348222 0.5195258 +0.092819 0.4470264 0.5195258 +0.1056428 0.4470264 0.5195258 +0.1201537 0.4470264 0.5195258 +0.1409607 0.4470264 0.5195258 +0.1678172 0.4470264 0.5195258 +0.1950164 0.4470264 0.5195258 +0.2210581 0.4470264 0.5195258 +0.245636 0.4470264 0.5195258 +0.2686816 0.4470264 0.5195258 +0.2902431 0.4470264 0.5195258 +0.3104189 0.4470264 0.5195258 +0.3293248 0.4470264 0.5195258 +0.3470774 0.4470264 0.5195258 +0.3637862 0.4470264 0.5195258 +0.3795513 0.4470264 0.5195258 +0.3944623 0.4470264 0.5195258 +0.4085988 0.4470264 0.5195258 +0.4220313 0.4470264 0.5195258 +0.4348222 0.4470264 0.5195258 +0.4470264 0.4470264 0.5195258 +0.4586928 0.4470264 0.5195258 +0.4698649 0.4470264 0.5195258 +0.4805811 0.4470264 0.5195258 +0.490876 0.4470264 0.5195258 +0.5007803 0.4470264 0.5195258 +0.510322 0.4470264 0.5195258 +0.5195258 0.4470264 0.5195258 +0.5284142 0.4470264 0.5195258 +0.5370079 0.4470264 0.5195258 +0.5453253 0.4470264 0.5195258 +0.5533834 0.4470264 0.5195258 +0.5611974 0.4470264 0.5195258 +0.5687816 0.4470264 0.5195258 +0.092819 0.4586928 0.5195258 +0.1056428 0.4586928 0.5195258 +0.1201537 0.4586928 0.5195258 +0.1409607 0.4586928 0.5195258 +0.1678172 0.4586928 0.5195258 +0.1950164 0.4586928 0.5195258 +0.2210581 0.4586928 0.5195258 +0.245636 0.4586928 0.5195258 +0.2686816 0.4586928 0.5195258 +0.2902431 0.4586928 0.5195258 +0.3104189 0.4586928 0.5195258 +0.3293248 0.4586928 0.5195258 +0.3470774 0.4586928 0.5195258 +0.3637862 0.4586928 0.5195258 +0.3795513 0.4586928 0.5195258 +0.3944623 0.4586928 0.5195258 +0.4085988 0.4586928 0.5195258 +0.4220313 0.4586928 0.5195258 +0.4348222 0.4586928 0.5195258 +0.4470264 0.4586928 0.5195258 +0.4586928 0.4586928 0.5195258 +0.4698649 0.4586928 0.5195258 +0.4805811 0.4586928 0.5195258 +0.490876 0.4586928 0.5195258 +0.5007803 0.4586928 0.5195258 +0.510322 0.4586928 0.5195258 +0.5195258 0.4586928 0.5195258 +0.5284142 0.4586928 0.5195258 +0.5370079 0.4586928 0.5195258 +0.5453253 0.4586928 0.5195258 +0.5533834 0.4586928 0.5195258 +0.5611974 0.4586928 0.5195258 +0.5687816 0.4586928 0.5195258 +0.092819 0.4698649 0.5195258 +0.1056428 0.4698649 0.5195258 +0.1201537 0.4698649 0.5195258 +0.1409607 0.4698649 0.5195258 +0.1678172 0.4698649 0.5195258 +0.1950164 0.4698649 0.5195258 +0.2210581 0.4698649 0.5195258 +0.245636 0.4698649 0.5195258 +0.2686816 0.4698649 0.5195258 +0.2902431 0.4698649 0.5195258 +0.3104189 0.4698649 0.5195258 +0.3293248 0.4698649 0.5195258 +0.3470774 0.4698649 0.5195258 +0.3637862 0.4698649 0.5195258 +0.3795513 0.4698649 0.5195258 +0.3944623 0.4698649 0.5195258 +0.4085988 0.4698649 0.5195258 +0.4220313 0.4698649 0.5195258 +0.4348222 0.4698649 0.5195258 +0.4470264 0.4698649 0.5195258 +0.4586928 0.4698649 0.5195258 +0.4698649 0.4698649 0.5195258 +0.4805811 0.4698649 0.5195258 +0.490876 0.4698649 0.5195258 +0.5007803 0.4698649 0.5195258 +0.510322 0.4698649 0.5195258 +0.5195258 0.4698649 0.5195258 +0.5284142 0.4698649 0.5195258 +0.5370079 0.4698649 0.5195258 +0.5453253 0.4698649 0.5195258 +0.5533834 0.4698649 0.5195258 +0.5611974 0.4698649 0.5195258 +0.5687816 0.4698649 0.5195258 +0.092819 0.4805811 0.5195258 +0.1056428 0.4805811 0.5195258 +0.1201537 0.4805811 0.5195258 +0.1409607 0.4805811 0.5195258 +0.1678172 0.4805811 0.5195258 +0.1950164 0.4805811 0.5195258 +0.2210581 0.4805811 0.5195258 +0.245636 0.4805811 0.5195258 +0.2686816 0.4805811 0.5195258 +0.2902431 0.4805811 0.5195258 +0.3104189 0.4805811 0.5195258 +0.3293248 0.4805811 0.5195258 +0.3470774 0.4805811 0.5195258 +0.3637862 0.4805811 0.5195258 +0.3795513 0.4805811 0.5195258 +0.3944623 0.4805811 0.5195258 +0.4085988 0.4805811 0.5195258 +0.4220313 0.4805811 0.5195258 +0.4348222 0.4805811 0.5195258 +0.4470264 0.4805811 0.5195258 +0.4586928 0.4805811 0.5195258 +0.4698649 0.4805811 0.5195258 +0.4805811 0.4805811 0.5195258 +0.490876 0.4805811 0.5195258 +0.5007803 0.4805811 0.5195258 +0.510322 0.4805811 0.5195258 +0.5195258 0.4805811 0.5195258 +0.5284142 0.4805811 0.5195258 +0.5370079 0.4805811 0.5195258 +0.5453253 0.4805811 0.5195258 +0.5533834 0.4805811 0.5195258 +0.5611974 0.4805811 0.5195258 +0.5687816 0.4805811 0.5195258 +0.092819 0.490876 0.5195258 +0.1056428 0.490876 0.5195258 +0.1201537 0.490876 0.5195258 +0.1409607 0.490876 0.5195258 +0.1678172 0.490876 0.5195258 +0.1950164 0.490876 0.5195258 +0.2210581 0.490876 0.5195258 +0.245636 0.490876 0.5195258 +0.2686816 0.490876 0.5195258 +0.2902431 0.490876 0.5195258 +0.3104189 0.490876 0.5195258 +0.3293248 0.490876 0.5195258 +0.3470774 0.490876 0.5195258 +0.3637862 0.490876 0.5195258 +0.3795513 0.490876 0.5195258 +0.3944623 0.490876 0.5195258 +0.4085988 0.490876 0.5195258 +0.4220313 0.490876 0.5195258 +0.4348222 0.490876 0.5195258 +0.4470264 0.490876 0.5195258 +0.4586928 0.490876 0.5195258 +0.4698649 0.490876 0.5195258 +0.4805811 0.490876 0.5195258 +0.490876 0.490876 0.5195258 +0.5007803 0.490876 0.5195258 +0.510322 0.490876 0.5195258 +0.5195258 0.490876 0.5195258 +0.5284142 0.490876 0.5195258 +0.5370079 0.490876 0.5195258 +0.5453253 0.490876 0.5195258 +0.5533834 0.490876 0.5195258 +0.5611974 0.490876 0.5195258 +0.5687816 0.490876 0.5195258 +0.092819 0.5007803 0.5195258 +0.1056428 0.5007803 0.5195258 +0.1201537 0.5007803 0.5195258 +0.1409607 0.5007803 0.5195258 +0.1678172 0.5007803 0.5195258 +0.1950164 0.5007803 0.5195258 +0.2210581 0.5007803 0.5195258 +0.245636 0.5007803 0.5195258 +0.2686816 0.5007803 0.5195258 +0.2902431 0.5007803 0.5195258 +0.3104189 0.5007803 0.5195258 +0.3293248 0.5007803 0.5195258 +0.3470774 0.5007803 0.5195258 +0.3637862 0.5007803 0.5195258 +0.3795513 0.5007803 0.5195258 +0.3944623 0.5007803 0.5195258 +0.4085988 0.5007803 0.5195258 +0.4220313 0.5007803 0.5195258 +0.4348222 0.5007803 0.5195258 +0.4470264 0.5007803 0.5195258 +0.4586928 0.5007803 0.5195258 +0.4698649 0.5007803 0.5195258 +0.4805811 0.5007803 0.5195258 +0.490876 0.5007803 0.5195258 +0.5007803 0.5007803 0.5195258 +0.510322 0.5007803 0.5195258 +0.5195258 0.5007803 0.5195258 +0.5284142 0.5007803 0.5195258 +0.5370079 0.5007803 0.5195258 +0.5453253 0.5007803 0.5195258 +0.5533834 0.5007803 0.5195258 +0.5611974 0.5007803 0.5195258 +0.5687816 0.5007803 0.5195258 +0.092819 0.510322 0.5195258 +0.1056428 0.510322 0.5195258 +0.1201537 0.510322 0.5195258 +0.1409607 0.510322 0.5195258 +0.1678172 0.510322 0.5195258 +0.1950164 0.510322 0.5195258 +0.2210581 0.510322 0.5195258 +0.245636 0.510322 0.5195258 +0.2686816 0.510322 0.5195258 +0.2902431 0.510322 0.5195258 +0.3104189 0.510322 0.5195258 +0.3293248 0.510322 0.5195258 +0.3470774 0.510322 0.5195258 +0.3637862 0.510322 0.5195258 +0.3795513 0.510322 0.5195258 +0.3944623 0.510322 0.5195258 +0.4085988 0.510322 0.5195258 +0.4220313 0.510322 0.5195258 +0.4348222 0.510322 0.5195258 +0.4470264 0.510322 0.5195258 +0.4586928 0.510322 0.5195258 +0.4698649 0.510322 0.5195258 +0.4805811 0.510322 0.5195258 +0.490876 0.510322 0.5195258 +0.5007803 0.510322 0.5195258 +0.510322 0.510322 0.5195258 +0.5195258 0.510322 0.5195258 +0.5284142 0.510322 0.5195258 +0.5370079 0.510322 0.5195258 +0.5453253 0.510322 0.5195258 +0.5533834 0.510322 0.5195258 +0.5611974 0.510322 0.5195258 +0.5687816 0.510322 0.5195258 +0.092819 0.5195258 0.5195258 +0.1056428 0.5195258 0.5195258 +0.1201537 0.5195258 0.5195258 +0.1409607 0.5195258 0.5195258 +0.1678172 0.5195258 0.5195258 +0.1950164 0.5195258 0.5195258 +0.2210581 0.5195258 0.5195258 +0.245636 0.5195258 0.5195258 +0.2686816 0.5195258 0.5195258 +0.2902431 0.5195258 0.5195258 +0.3104189 0.5195258 0.5195258 +0.3293248 0.5195258 0.5195258 +0.3470774 0.5195258 0.5195258 +0.3637862 0.5195258 0.5195258 +0.3795513 0.5195258 0.5195258 +0.3944623 0.5195258 0.5195258 +0.4085988 0.5195258 0.5195258 +0.4220313 0.5195258 0.5195258 +0.4348222 0.5195258 0.5195258 +0.4470264 0.5195258 0.5195258 +0.4586928 0.5195258 0.5195258 +0.4698649 0.5195258 0.5195258 +0.4805811 0.5195258 0.5195258 +0.490876 0.5195258 0.5195258 +0.5007803 0.5195258 0.5195258 +0.510322 0.5195258 0.5195258 +0.5195258 0.5195258 0.5195258 +0.5284142 0.5195258 0.5195258 +0.5370079 0.5195258 0.5195258 +0.5453253 0.5195258 0.5195258 +0.5533834 0.5195258 0.5195258 +0.5611974 0.5195258 0.5195258 +0.5687816 0.5195258 0.5195258 +0.092819 0.5284142 0.5195258 +0.1056428 0.5284142 0.5195258 +0.1201537 0.5284142 0.5195258 +0.1409607 0.5284142 0.5195258 +0.1678172 0.5284142 0.5195258 +0.1950164 0.5284142 0.5195258 +0.2210581 0.5284142 0.5195258 +0.245636 0.5284142 0.5195258 +0.2686816 0.5284142 0.5195258 +0.2902431 0.5284142 0.5195258 +0.3104189 0.5284142 0.5195258 +0.3293248 0.5284142 0.5195258 +0.3470774 0.5284142 0.5195258 +0.3637862 0.5284142 0.5195258 +0.3795513 0.5284142 0.5195258 +0.3944623 0.5284142 0.5195258 +0.4085988 0.5284142 0.5195258 +0.4220313 0.5284142 0.5195258 +0.4348222 0.5284142 0.5195258 +0.4470264 0.5284142 0.5195258 +0.4586928 0.5284142 0.5195258 +0.4698649 0.5284142 0.5195258 +0.4805811 0.5284142 0.5195258 +0.490876 0.5284142 0.5195258 +0.5007803 0.5284142 0.5195258 +0.510322 0.5284142 0.5195258 +0.5195258 0.5284142 0.5195258 +0.5284142 0.5284142 0.5195258 +0.5370079 0.5284142 0.5195258 +0.5453253 0.5284142 0.5195258 +0.5533834 0.5284142 0.5195258 +0.5611974 0.5284142 0.5195258 +0.5687816 0.5284142 0.5195258 +0.092819 0.5370079 0.5195258 +0.1056428 0.5370079 0.5195258 +0.1201537 0.5370079 0.5195258 +0.1409607 0.5370079 0.5195258 +0.1678172 0.5370079 0.5195258 +0.1950164 0.5370079 0.5195258 +0.2210581 0.5370079 0.5195258 +0.245636 0.5370079 0.5195258 +0.2686816 0.5370079 0.5195258 +0.2902431 0.5370079 0.5195258 +0.3104189 0.5370079 0.5195258 +0.3293248 0.5370079 0.5195258 +0.3470774 0.5370079 0.5195258 +0.3637862 0.5370079 0.5195258 +0.3795513 0.5370079 0.5195258 +0.3944623 0.5370079 0.5195258 +0.4085988 0.5370079 0.5195258 +0.4220313 0.5370079 0.5195258 +0.4348222 0.5370079 0.5195258 +0.4470264 0.5370079 0.5195258 +0.4586928 0.5370079 0.5195258 +0.4698649 0.5370079 0.5195258 +0.4805811 0.5370079 0.5195258 +0.490876 0.5370079 0.5195258 +0.5007803 0.5370079 0.5195258 +0.510322 0.5370079 0.5195258 +0.5195258 0.5370079 0.5195258 +0.5284142 0.5370079 0.5195258 +0.5370079 0.5370079 0.5195258 +0.5453253 0.5370079 0.5195258 +0.5533834 0.5370079 0.5195258 +0.5611974 0.5370079 0.5195258 +0.5687816 0.5370079 0.5195258 +0.092819 0.5453253 0.5195258 +0.1056428 0.5453253 0.5195258 +0.1201537 0.5453253 0.5195258 +0.1409607 0.5453253 0.5195258 +0.1678172 0.5453253 0.5195258 +0.1950164 0.5453253 0.5195258 +0.2210581 0.5453253 0.5195258 +0.245636 0.5453253 0.5195258 +0.2686816 0.5453253 0.5195258 +0.2902431 0.5453253 0.5195258 +0.3104189 0.5453253 0.5195258 +0.3293248 0.5453253 0.5195258 +0.3470774 0.5453253 0.5195258 +0.3637862 0.5453253 0.5195258 +0.3795513 0.5453253 0.5195258 +0.3944623 0.5453253 0.5195258 +0.4085988 0.5453253 0.5195258 +0.4220313 0.5453253 0.5195258 +0.4348222 0.5453253 0.5195258 +0.4470264 0.5453253 0.5195258 +0.4586928 0.5453253 0.5195258 +0.4698649 0.5453253 0.5195258 +0.4805811 0.5453253 0.5195258 +0.490876 0.5453253 0.5195258 +0.5007803 0.5453253 0.5195258 +0.510322 0.5453253 0.5195258 +0.5195258 0.5453253 0.5195258 +0.5284142 0.5453253 0.5195258 +0.5370079 0.5453253 0.5195258 +0.5453253 0.5453253 0.5195258 +0.5533834 0.5453253 0.5195258 +0.5611974 0.5453253 0.5195258 +0.5687816 0.5453253 0.5195258 +0.092819 0.5533834 0.5195258 +0.1056428 0.5533834 0.5195258 +0.1201537 0.5533834 0.5195258 +0.1409607 0.5533834 0.5195258 +0.1678172 0.5533834 0.5195258 +0.1950164 0.5533834 0.5195258 +0.2210581 0.5533834 0.5195258 +0.245636 0.5533834 0.5195258 +0.2686816 0.5533834 0.5195258 +0.2902431 0.5533834 0.5195258 +0.3104189 0.5533834 0.5195258 +0.3293248 0.5533834 0.5195258 +0.3470774 0.5533834 0.5195258 +0.3637862 0.5533834 0.5195258 +0.3795513 0.5533834 0.5195258 +0.3944623 0.5533834 0.5195258 +0.4085988 0.5533834 0.5195258 +0.4220313 0.5533834 0.5195258 +0.4348222 0.5533834 0.5195258 +0.4470264 0.5533834 0.5195258 +0.4586928 0.5533834 0.5195258 +0.4698649 0.5533834 0.5195258 +0.4805811 0.5533834 0.5195258 +0.490876 0.5533834 0.5195258 +0.5007803 0.5533834 0.5195258 +0.510322 0.5533834 0.5195258 +0.5195258 0.5533834 0.5195258 +0.5284142 0.5533834 0.5195258 +0.5370079 0.5533834 0.5195258 +0.5453253 0.5533834 0.5195258 +0.5533834 0.5533834 0.5195258 +0.5611974 0.5533834 0.5195258 +0.5687816 0.5533834 0.5195258 +0.092819 0.5611974 0.5195258 +0.1056428 0.5611974 0.5195258 +0.1201537 0.5611974 0.5195258 +0.1409607 0.5611974 0.5195258 +0.1678172 0.5611974 0.5195258 +0.1950164 0.5611974 0.5195258 +0.2210581 0.5611974 0.5195258 +0.245636 0.5611974 0.5195258 +0.2686816 0.5611974 0.5195258 +0.2902431 0.5611974 0.5195258 +0.3104189 0.5611974 0.5195258 +0.3293248 0.5611974 0.5195258 +0.3470774 0.5611974 0.5195258 +0.3637862 0.5611974 0.5195258 +0.3795513 0.5611974 0.5195258 +0.3944623 0.5611974 0.5195258 +0.4085988 0.5611974 0.5195258 +0.4220313 0.5611974 0.5195258 +0.4348222 0.5611974 0.5195258 +0.4470264 0.5611974 0.5195258 +0.4586928 0.5611974 0.5195258 +0.4698649 0.5611974 0.5195258 +0.4805811 0.5611974 0.5195258 +0.490876 0.5611974 0.5195258 +0.5007803 0.5611974 0.5195258 +0.510322 0.5611974 0.5195258 +0.5195258 0.5611974 0.5195258 +0.5284142 0.5611974 0.5195258 +0.5370079 0.5611974 0.5195258 +0.5453253 0.5611974 0.5195258 +0.5533834 0.5611974 0.5195258 +0.5611974 0.5611974 0.5195258 +0.5687816 0.5611974 0.5195258 +0.092819 0.5687816 0.5195258 +0.1056428 0.5687816 0.5195258 +0.1201537 0.5687816 0.5195258 +0.1409607 0.5687816 0.5195258 +0.1678172 0.5687816 0.5195258 +0.1950164 0.5687816 0.5195258 +0.2210581 0.5687816 0.5195258 +0.245636 0.5687816 0.5195258 +0.2686816 0.5687816 0.5195258 +0.2902431 0.5687816 0.5195258 +0.3104189 0.5687816 0.5195258 +0.3293248 0.5687816 0.5195258 +0.3470774 0.5687816 0.5195258 +0.3637862 0.5687816 0.5195258 +0.3795513 0.5687816 0.5195258 +0.3944623 0.5687816 0.5195258 +0.4085988 0.5687816 0.5195258 +0.4220313 0.5687816 0.5195258 +0.4348222 0.5687816 0.5195258 +0.4470264 0.5687816 0.5195258 +0.4586928 0.5687816 0.5195258 +0.4698649 0.5687816 0.5195258 +0.4805811 0.5687816 0.5195258 +0.490876 0.5687816 0.5195258 +0.5007803 0.5687816 0.5195258 +0.510322 0.5687816 0.5195258 +0.5195258 0.5687816 0.5195258 +0.5284142 0.5687816 0.5195258 +0.5370079 0.5687816 0.5195258 +0.5453253 0.5687816 0.5195258 +0.5533834 0.5687816 0.5195258 +0.5611974 0.5687816 0.5195258 +0.5687816 0.5687816 0.5195258 +0.092819 0.092819 0.5284142 +0.1056428 0.092819 0.5284142 +0.1201537 0.092819 0.5284142 +0.1409607 0.092819 0.5284142 +0.1678172 0.092819 0.5284142 +0.1950164 0.092819 0.5284142 +0.2210581 0.092819 0.5284142 +0.245636 0.092819 0.5284142 +0.2686816 0.092819 0.5284142 +0.2902431 0.092819 0.5284142 +0.3104189 0.092819 0.5284142 +0.3293248 0.092819 0.5284142 +0.3470774 0.092819 0.5284142 +0.3637862 0.092819 0.5284142 +0.3795513 0.092819 0.5284142 +0.3944623 0.092819 0.5284142 +0.4085988 0.092819 0.5284142 +0.4220313 0.092819 0.5284142 +0.4348222 0.092819 0.5284142 +0.4470264 0.092819 0.5284142 +0.4586928 0.092819 0.5284142 +0.4698649 0.092819 0.5284142 +0.4805811 0.092819 0.5284142 +0.490876 0.092819 0.5284142 +0.5007803 0.092819 0.5284142 +0.510322 0.092819 0.5284142 +0.5195258 0.092819 0.5284142 +0.5284142 0.092819 0.5284142 +0.5370079 0.092819 0.5284142 +0.5453253 0.092819 0.5284142 +0.5533834 0.092819 0.5284142 +0.5611974 0.092819 0.5284142 +0.5687816 0.092819 0.5284142 +0.092819 0.1056428 0.5284142 +0.1056428 0.1056428 0.5284142 +0.1201537 0.1056428 0.5284142 +0.1409607 0.1056428 0.5284142 +0.1678172 0.1056428 0.5284142 +0.1950164 0.1056428 0.5284142 +0.2210581 0.1056428 0.5284142 +0.245636 0.1056428 0.5284142 +0.2686816 0.1056428 0.5284142 +0.2902431 0.1056428 0.5284142 +0.3104189 0.1056428 0.5284142 +0.3293248 0.1056428 0.5284142 +0.3470774 0.1056428 0.5284142 +0.3637862 0.1056428 0.5284142 +0.3795513 0.1056428 0.5284142 +0.3944623 0.1056428 0.5284142 +0.4085988 0.1056428 0.5284142 +0.4220313 0.1056428 0.5284142 +0.4348222 0.1056428 0.5284142 +0.4470264 0.1056428 0.5284142 +0.4586928 0.1056428 0.5284142 +0.4698649 0.1056428 0.5284142 +0.4805811 0.1056428 0.5284142 +0.490876 0.1056428 0.5284142 +0.5007803 0.1056428 0.5284142 +0.510322 0.1056428 0.5284142 +0.5195258 0.1056428 0.5284142 +0.5284142 0.1056428 0.5284142 +0.5370079 0.1056428 0.5284142 +0.5453253 0.1056428 0.5284142 +0.5533834 0.1056428 0.5284142 +0.5611974 0.1056428 0.5284142 +0.5687816 0.1056428 0.5284142 +0.092819 0.1201537 0.5284142 +0.1056428 0.1201537 0.5284142 +0.1201537 0.1201537 0.5284142 +0.1409607 0.1201537 0.5284142 +0.1678172 0.1201537 0.5284142 +0.1950164 0.1201537 0.5284142 +0.2210581 0.1201537 0.5284142 +0.245636 0.1201537 0.5284142 +0.2686816 0.1201537 0.5284142 +0.2902431 0.1201537 0.5284142 +0.3104189 0.1201537 0.5284142 +0.3293248 0.1201537 0.5284142 +0.3470774 0.1201537 0.5284142 +0.3637862 0.1201537 0.5284142 +0.3795513 0.1201537 0.5284142 +0.3944623 0.1201537 0.5284142 +0.4085988 0.1201537 0.5284142 +0.4220313 0.1201537 0.5284142 +0.4348222 0.1201537 0.5284142 +0.4470264 0.1201537 0.5284142 +0.4586928 0.1201537 0.5284142 +0.4698649 0.1201537 0.5284142 +0.4805811 0.1201537 0.5284142 +0.490876 0.1201537 0.5284142 +0.5007803 0.1201537 0.5284142 +0.510322 0.1201537 0.5284142 +0.5195258 0.1201537 0.5284142 +0.5284142 0.1201537 0.5284142 +0.5370079 0.1201537 0.5284142 +0.5453253 0.1201537 0.5284142 +0.5533834 0.1201537 0.5284142 +0.5611974 0.1201537 0.5284142 +0.5687816 0.1201537 0.5284142 +0.092819 0.1409607 0.5284142 +0.1056428 0.1409607 0.5284142 +0.1201537 0.1409607 0.5284142 +0.1409607 0.1409607 0.5284142 +0.1678172 0.1409607 0.5284142 +0.1950164 0.1409607 0.5284142 +0.2210581 0.1409607 0.5284142 +0.245636 0.1409607 0.5284142 +0.2686816 0.1409607 0.5284142 +0.2902431 0.1409607 0.5284142 +0.3104189 0.1409607 0.5284142 +0.3293248 0.1409607 0.5284142 +0.3470774 0.1409607 0.5284142 +0.3637862 0.1409607 0.5284142 +0.3795513 0.1409607 0.5284142 +0.3944623 0.1409607 0.5284142 +0.4085988 0.1409607 0.5284142 +0.4220313 0.1409607 0.5284142 +0.4348222 0.1409607 0.5284142 +0.4470264 0.1409607 0.5284142 +0.4586928 0.1409607 0.5284142 +0.4698649 0.1409607 0.5284142 +0.4805811 0.1409607 0.5284142 +0.490876 0.1409607 0.5284142 +0.5007803 0.1409607 0.5284142 +0.510322 0.1409607 0.5284142 +0.5195258 0.1409607 0.5284142 +0.5284142 0.1409607 0.5284142 +0.5370079 0.1409607 0.5284142 +0.5453253 0.1409607 0.5284142 +0.5533834 0.1409607 0.5284142 +0.5611974 0.1409607 0.5284142 +0.5687816 0.1409607 0.5284142 +0.092819 0.1678172 0.5284142 +0.1056428 0.1678172 0.5284142 +0.1201537 0.1678172 0.5284142 +0.1409607 0.1678172 0.5284142 +0.1678172 0.1678172 0.5284142 +0.1950164 0.1678172 0.5284142 +0.2210581 0.1678172 0.5284142 +0.245636 0.1678172 0.5284142 +0.2686816 0.1678172 0.5284142 +0.2902431 0.1678172 0.5284142 +0.3104189 0.1678172 0.5284142 +0.3293248 0.1678172 0.5284142 +0.3470774 0.1678172 0.5284142 +0.3637862 0.1678172 0.5284142 +0.3795513 0.1678172 0.5284142 +0.3944623 0.1678172 0.5284142 +0.4085988 0.1678172 0.5284142 +0.4220313 0.1678172 0.5284142 +0.4348222 0.1678172 0.5284142 +0.4470264 0.1678172 0.5284142 +0.4586928 0.1678172 0.5284142 +0.4698649 0.1678172 0.5284142 +0.4805811 0.1678172 0.5284142 +0.490876 0.1678172 0.5284142 +0.5007803 0.1678172 0.5284142 +0.510322 0.1678172 0.5284142 +0.5195258 0.1678172 0.5284142 +0.5284142 0.1678172 0.5284142 +0.5370079 0.1678172 0.5284142 +0.5453253 0.1678172 0.5284142 +0.5533834 0.1678172 0.5284142 +0.5611974 0.1678172 0.5284142 +0.5687816 0.1678172 0.5284142 +0.092819 0.1950164 0.5284142 +0.1056428 0.1950164 0.5284142 +0.1201537 0.1950164 0.5284142 +0.1409607 0.1950164 0.5284142 +0.1678172 0.1950164 0.5284142 +0.1950164 0.1950164 0.5284142 +0.2210581 0.1950164 0.5284142 +0.245636 0.1950164 0.5284142 +0.2686816 0.1950164 0.5284142 +0.2902431 0.1950164 0.5284142 +0.3104189 0.1950164 0.5284142 +0.3293248 0.1950164 0.5284142 +0.3470774 0.1950164 0.5284142 +0.3637862 0.1950164 0.5284142 +0.3795513 0.1950164 0.5284142 +0.3944623 0.1950164 0.5284142 +0.4085988 0.1950164 0.5284142 +0.4220313 0.1950164 0.5284142 +0.4348222 0.1950164 0.5284142 +0.4470264 0.1950164 0.5284142 +0.4586928 0.1950164 0.5284142 +0.4698649 0.1950164 0.5284142 +0.4805811 0.1950164 0.5284142 +0.490876 0.1950164 0.5284142 +0.5007803 0.1950164 0.5284142 +0.510322 0.1950164 0.5284142 +0.5195258 0.1950164 0.5284142 +0.5284142 0.1950164 0.5284142 +0.5370079 0.1950164 0.5284142 +0.5453253 0.1950164 0.5284142 +0.5533834 0.1950164 0.5284142 +0.5611974 0.1950164 0.5284142 +0.5687816 0.1950164 0.5284142 +0.092819 0.2210581 0.5284142 +0.1056428 0.2210581 0.5284142 +0.1201537 0.2210581 0.5284142 +0.1409607 0.2210581 0.5284142 +0.1678172 0.2210581 0.5284142 +0.1950164 0.2210581 0.5284142 +0.2210581 0.2210581 0.5284142 +0.245636 0.2210581 0.5284142 +0.2686816 0.2210581 0.5284142 +0.2902431 0.2210581 0.5284142 +0.3104189 0.2210581 0.5284142 +0.3293248 0.2210581 0.5284142 +0.3470774 0.2210581 0.5284142 +0.3637862 0.2210581 0.5284142 +0.3795513 0.2210581 0.5284142 +0.3944623 0.2210581 0.5284142 +0.4085988 0.2210581 0.5284142 +0.4220313 0.2210581 0.5284142 +0.4348222 0.2210581 0.5284142 +0.4470264 0.2210581 0.5284142 +0.4586928 0.2210581 0.5284142 +0.4698649 0.2210581 0.5284142 +0.4805811 0.2210581 0.5284142 +0.490876 0.2210581 0.5284142 +0.5007803 0.2210581 0.5284142 +0.510322 0.2210581 0.5284142 +0.5195258 0.2210581 0.5284142 +0.5284142 0.2210581 0.5284142 +0.5370079 0.2210581 0.5284142 +0.5453253 0.2210581 0.5284142 +0.5533834 0.2210581 0.5284142 +0.5611974 0.2210581 0.5284142 +0.5687816 0.2210581 0.5284142 +0.092819 0.245636 0.5284142 +0.1056428 0.245636 0.5284142 +0.1201537 0.245636 0.5284142 +0.1409607 0.245636 0.5284142 +0.1678172 0.245636 0.5284142 +0.1950164 0.245636 0.5284142 +0.2210581 0.245636 0.5284142 +0.245636 0.245636 0.5284142 +0.2686816 0.245636 0.5284142 +0.2902431 0.245636 0.5284142 +0.3104189 0.245636 0.5284142 +0.3293248 0.245636 0.5284142 +0.3470774 0.245636 0.5284142 +0.3637862 0.245636 0.5284142 +0.3795513 0.245636 0.5284142 +0.3944623 0.245636 0.5284142 +0.4085988 0.245636 0.5284142 +0.4220313 0.245636 0.5284142 +0.4348222 0.245636 0.5284142 +0.4470264 0.245636 0.5284142 +0.4586928 0.245636 0.5284142 +0.4698649 0.245636 0.5284142 +0.4805811 0.245636 0.5284142 +0.490876 0.245636 0.5284142 +0.5007803 0.245636 0.5284142 +0.510322 0.245636 0.5284142 +0.5195258 0.245636 0.5284142 +0.5284142 0.245636 0.5284142 +0.5370079 0.245636 0.5284142 +0.5453253 0.245636 0.5284142 +0.5533834 0.245636 0.5284142 +0.5611974 0.245636 0.5284142 +0.5687816 0.245636 0.5284142 +0.092819 0.2686816 0.5284142 +0.1056428 0.2686816 0.5284142 +0.1201537 0.2686816 0.5284142 +0.1409607 0.2686816 0.5284142 +0.1678172 0.2686816 0.5284142 +0.1950164 0.2686816 0.5284142 +0.2210581 0.2686816 0.5284142 +0.245636 0.2686816 0.5284142 +0.2686816 0.2686816 0.5284142 +0.2902431 0.2686816 0.5284142 +0.3104189 0.2686816 0.5284142 +0.3293248 0.2686816 0.5284142 +0.3470774 0.2686816 0.5284142 +0.3637862 0.2686816 0.5284142 +0.3795513 0.2686816 0.5284142 +0.3944623 0.2686816 0.5284142 +0.4085988 0.2686816 0.5284142 +0.4220313 0.2686816 0.5284142 +0.4348222 0.2686816 0.5284142 +0.4470264 0.2686816 0.5284142 +0.4586928 0.2686816 0.5284142 +0.4698649 0.2686816 0.5284142 +0.4805811 0.2686816 0.5284142 +0.490876 0.2686816 0.5284142 +0.5007803 0.2686816 0.5284142 +0.510322 0.2686816 0.5284142 +0.5195258 0.2686816 0.5284142 +0.5284142 0.2686816 0.5284142 +0.5370079 0.2686816 0.5284142 +0.5453253 0.2686816 0.5284142 +0.5533834 0.2686816 0.5284142 +0.5611974 0.2686816 0.5284142 +0.5687816 0.2686816 0.5284142 +0.092819 0.2902431 0.5284142 +0.1056428 0.2902431 0.5284142 +0.1201537 0.2902431 0.5284142 +0.1409607 0.2902431 0.5284142 +0.1678172 0.2902431 0.5284142 +0.1950164 0.2902431 0.5284142 +0.2210581 0.2902431 0.5284142 +0.245636 0.2902431 0.5284142 +0.2686816 0.2902431 0.5284142 +0.2902431 0.2902431 0.5284142 +0.3104189 0.2902431 0.5284142 +0.3293248 0.2902431 0.5284142 +0.3470774 0.2902431 0.5284142 +0.3637862 0.2902431 0.5284142 +0.3795513 0.2902431 0.5284142 +0.3944623 0.2902431 0.5284142 +0.4085988 0.2902431 0.5284142 +0.4220313 0.2902431 0.5284142 +0.4348222 0.2902431 0.5284142 +0.4470264 0.2902431 0.5284142 +0.4586928 0.2902431 0.5284142 +0.4698649 0.2902431 0.5284142 +0.4805811 0.2902431 0.5284142 +0.490876 0.2902431 0.5284142 +0.5007803 0.2902431 0.5284142 +0.510322 0.2902431 0.5284142 +0.5195258 0.2902431 0.5284142 +0.5284142 0.2902431 0.5284142 +0.5370079 0.2902431 0.5284142 +0.5453253 0.2902431 0.5284142 +0.5533834 0.2902431 0.5284142 +0.5611974 0.2902431 0.5284142 +0.5687816 0.2902431 0.5284142 +0.092819 0.3104189 0.5284142 +0.1056428 0.3104189 0.5284142 +0.1201537 0.3104189 0.5284142 +0.1409607 0.3104189 0.5284142 +0.1678172 0.3104189 0.5284142 +0.1950164 0.3104189 0.5284142 +0.2210581 0.3104189 0.5284142 +0.245636 0.3104189 0.5284142 +0.2686816 0.3104189 0.5284142 +0.2902431 0.3104189 0.5284142 +0.3104189 0.3104189 0.5284142 +0.3293248 0.3104189 0.5284142 +0.3470774 0.3104189 0.5284142 +0.3637862 0.3104189 0.5284142 +0.3795513 0.3104189 0.5284142 +0.3944623 0.3104189 0.5284142 +0.4085988 0.3104189 0.5284142 +0.4220313 0.3104189 0.5284142 +0.4348222 0.3104189 0.5284142 +0.4470264 0.3104189 0.5284142 +0.4586928 0.3104189 0.5284142 +0.4698649 0.3104189 0.5284142 +0.4805811 0.3104189 0.5284142 +0.490876 0.3104189 0.5284142 +0.5007803 0.3104189 0.5284142 +0.510322 0.3104189 0.5284142 +0.5195258 0.3104189 0.5284142 +0.5284142 0.3104189 0.5284142 +0.5370079 0.3104189 0.5284142 +0.5453253 0.3104189 0.5284142 +0.5533834 0.3104189 0.5284142 +0.5611974 0.3104189 0.5284142 +0.5687816 0.3104189 0.5284142 +0.092819 0.3293248 0.5284142 +0.1056428 0.3293248 0.5284142 +0.1201537 0.3293248 0.5284142 +0.1409607 0.3293248 0.5284142 +0.1678172 0.3293248 0.5284142 +0.1950164 0.3293248 0.5284142 +0.2210581 0.3293248 0.5284142 +0.245636 0.3293248 0.5284142 +0.2686816 0.3293248 0.5284142 +0.2902431 0.3293248 0.5284142 +0.3104189 0.3293248 0.5284142 +0.3293248 0.3293248 0.5284142 +0.3470774 0.3293248 0.5284142 +0.3637862 0.3293248 0.5284142 +0.3795513 0.3293248 0.5284142 +0.3944623 0.3293248 0.5284142 +0.4085988 0.3293248 0.5284142 +0.4220313 0.3293248 0.5284142 +0.4348222 0.3293248 0.5284142 +0.4470264 0.3293248 0.5284142 +0.4586928 0.3293248 0.5284142 +0.4698649 0.3293248 0.5284142 +0.4805811 0.3293248 0.5284142 +0.490876 0.3293248 0.5284142 +0.5007803 0.3293248 0.5284142 +0.510322 0.3293248 0.5284142 +0.5195258 0.3293248 0.5284142 +0.5284142 0.3293248 0.5284142 +0.5370079 0.3293248 0.5284142 +0.5453253 0.3293248 0.5284142 +0.5533834 0.3293248 0.5284142 +0.5611974 0.3293248 0.5284142 +0.5687816 0.3293248 0.5284142 +0.092819 0.3470774 0.5284142 +0.1056428 0.3470774 0.5284142 +0.1201537 0.3470774 0.5284142 +0.1409607 0.3470774 0.5284142 +0.1678172 0.3470774 0.5284142 +0.1950164 0.3470774 0.5284142 +0.2210581 0.3470774 0.5284142 +0.245636 0.3470774 0.5284142 +0.2686816 0.3470774 0.5284142 +0.2902431 0.3470774 0.5284142 +0.3104189 0.3470774 0.5284142 +0.3293248 0.3470774 0.5284142 +0.3470774 0.3470774 0.5284142 +0.3637862 0.3470774 0.5284142 +0.3795513 0.3470774 0.5284142 +0.3944623 0.3470774 0.5284142 +0.4085988 0.3470774 0.5284142 +0.4220313 0.3470774 0.5284142 +0.4348222 0.3470774 0.5284142 +0.4470264 0.3470774 0.5284142 +0.4586928 0.3470774 0.5284142 +0.4698649 0.3470774 0.5284142 +0.4805811 0.3470774 0.5284142 +0.490876 0.3470774 0.5284142 +0.5007803 0.3470774 0.5284142 +0.510322 0.3470774 0.5284142 +0.5195258 0.3470774 0.5284142 +0.5284142 0.3470774 0.5284142 +0.5370079 0.3470774 0.5284142 +0.5453253 0.3470774 0.5284142 +0.5533834 0.3470774 0.5284142 +0.5611974 0.3470774 0.5284142 +0.5687816 0.3470774 0.5284142 +0.092819 0.3637862 0.5284142 +0.1056428 0.3637862 0.5284142 +0.1201537 0.3637862 0.5284142 +0.1409607 0.3637862 0.5284142 +0.1678172 0.3637862 0.5284142 +0.1950164 0.3637862 0.5284142 +0.2210581 0.3637862 0.5284142 +0.245636 0.3637862 0.5284142 +0.2686816 0.3637862 0.5284142 +0.2902431 0.3637862 0.5284142 +0.3104189 0.3637862 0.5284142 +0.3293248 0.3637862 0.5284142 +0.3470774 0.3637862 0.5284142 +0.3637862 0.3637862 0.5284142 +0.3795513 0.3637862 0.5284142 +0.3944623 0.3637862 0.5284142 +0.4085988 0.3637862 0.5284142 +0.4220313 0.3637862 0.5284142 +0.4348222 0.3637862 0.5284142 +0.4470264 0.3637862 0.5284142 +0.4586928 0.3637862 0.5284142 +0.4698649 0.3637862 0.5284142 +0.4805811 0.3637862 0.5284142 +0.490876 0.3637862 0.5284142 +0.5007803 0.3637862 0.5284142 +0.510322 0.3637862 0.5284142 +0.5195258 0.3637862 0.5284142 +0.5284142 0.3637862 0.5284142 +0.5370079 0.3637862 0.5284142 +0.5453253 0.3637862 0.5284142 +0.5533834 0.3637862 0.5284142 +0.5611974 0.3637862 0.5284142 +0.5687816 0.3637862 0.5284142 +0.092819 0.3795513 0.5284142 +0.1056428 0.3795513 0.5284142 +0.1201537 0.3795513 0.5284142 +0.1409607 0.3795513 0.5284142 +0.1678172 0.3795513 0.5284142 +0.1950164 0.3795513 0.5284142 +0.2210581 0.3795513 0.5284142 +0.245636 0.3795513 0.5284142 +0.2686816 0.3795513 0.5284142 +0.2902431 0.3795513 0.5284142 +0.3104189 0.3795513 0.5284142 +0.3293248 0.3795513 0.5284142 +0.3470774 0.3795513 0.5284142 +0.3637862 0.3795513 0.5284142 +0.3795513 0.3795513 0.5284142 +0.3944623 0.3795513 0.5284142 +0.4085988 0.3795513 0.5284142 +0.4220313 0.3795513 0.5284142 +0.4348222 0.3795513 0.5284142 +0.4470264 0.3795513 0.5284142 +0.4586928 0.3795513 0.5284142 +0.4698649 0.3795513 0.5284142 +0.4805811 0.3795513 0.5284142 +0.490876 0.3795513 0.5284142 +0.5007803 0.3795513 0.5284142 +0.510322 0.3795513 0.5284142 +0.5195258 0.3795513 0.5284142 +0.5284142 0.3795513 0.5284142 +0.5370079 0.3795513 0.5284142 +0.5453253 0.3795513 0.5284142 +0.5533834 0.3795513 0.5284142 +0.5611974 0.3795513 0.5284142 +0.5687816 0.3795513 0.5284142 +0.092819 0.3944623 0.5284142 +0.1056428 0.3944623 0.5284142 +0.1201537 0.3944623 0.5284142 +0.1409607 0.3944623 0.5284142 +0.1678172 0.3944623 0.5284142 +0.1950164 0.3944623 0.5284142 +0.2210581 0.3944623 0.5284142 +0.245636 0.3944623 0.5284142 +0.2686816 0.3944623 0.5284142 +0.2902431 0.3944623 0.5284142 +0.3104189 0.3944623 0.5284142 +0.3293248 0.3944623 0.5284142 +0.3470774 0.3944623 0.5284142 +0.3637862 0.3944623 0.5284142 +0.3795513 0.3944623 0.5284142 +0.3944623 0.3944623 0.5284142 +0.4085988 0.3944623 0.5284142 +0.4220313 0.3944623 0.5284142 +0.4348222 0.3944623 0.5284142 +0.4470264 0.3944623 0.5284142 +0.4586928 0.3944623 0.5284142 +0.4698649 0.3944623 0.5284142 +0.4805811 0.3944623 0.5284142 +0.490876 0.3944623 0.5284142 +0.5007803 0.3944623 0.5284142 +0.510322 0.3944623 0.5284142 +0.5195258 0.3944623 0.5284142 +0.5284142 0.3944623 0.5284142 +0.5370079 0.3944623 0.5284142 +0.5453253 0.3944623 0.5284142 +0.5533834 0.3944623 0.5284142 +0.5611974 0.3944623 0.5284142 +0.5687816 0.3944623 0.5284142 +0.092819 0.4085988 0.5284142 +0.1056428 0.4085988 0.5284142 +0.1201537 0.4085988 0.5284142 +0.1409607 0.4085988 0.5284142 +0.1678172 0.4085988 0.5284142 +0.1950164 0.4085988 0.5284142 +0.2210581 0.4085988 0.5284142 +0.245636 0.4085988 0.5284142 +0.2686816 0.4085988 0.5284142 +0.2902431 0.4085988 0.5284142 +0.3104189 0.4085988 0.5284142 +0.3293248 0.4085988 0.5284142 +0.3470774 0.4085988 0.5284142 +0.3637862 0.4085988 0.5284142 +0.3795513 0.4085988 0.5284142 +0.3944623 0.4085988 0.5284142 +0.4085988 0.4085988 0.5284142 +0.4220313 0.4085988 0.5284142 +0.4348222 0.4085988 0.5284142 +0.4470264 0.4085988 0.5284142 +0.4586928 0.4085988 0.5284142 +0.4698649 0.4085988 0.5284142 +0.4805811 0.4085988 0.5284142 +0.490876 0.4085988 0.5284142 +0.5007803 0.4085988 0.5284142 +0.510322 0.4085988 0.5284142 +0.5195258 0.4085988 0.5284142 +0.5284142 0.4085988 0.5284142 +0.5370079 0.4085988 0.5284142 +0.5453253 0.4085988 0.5284142 +0.5533834 0.4085988 0.5284142 +0.5611974 0.4085988 0.5284142 +0.5687816 0.4085988 0.5284142 +0.092819 0.4220313 0.5284142 +0.1056428 0.4220313 0.5284142 +0.1201537 0.4220313 0.5284142 +0.1409607 0.4220313 0.5284142 +0.1678172 0.4220313 0.5284142 +0.1950164 0.4220313 0.5284142 +0.2210581 0.4220313 0.5284142 +0.245636 0.4220313 0.5284142 +0.2686816 0.4220313 0.5284142 +0.2902431 0.4220313 0.5284142 +0.3104189 0.4220313 0.5284142 +0.3293248 0.4220313 0.5284142 +0.3470774 0.4220313 0.5284142 +0.3637862 0.4220313 0.5284142 +0.3795513 0.4220313 0.5284142 +0.3944623 0.4220313 0.5284142 +0.4085988 0.4220313 0.5284142 +0.4220313 0.4220313 0.5284142 +0.4348222 0.4220313 0.5284142 +0.4470264 0.4220313 0.5284142 +0.4586928 0.4220313 0.5284142 +0.4698649 0.4220313 0.5284142 +0.4805811 0.4220313 0.5284142 +0.490876 0.4220313 0.5284142 +0.5007803 0.4220313 0.5284142 +0.510322 0.4220313 0.5284142 +0.5195258 0.4220313 0.5284142 +0.5284142 0.4220313 0.5284142 +0.5370079 0.4220313 0.5284142 +0.5453253 0.4220313 0.5284142 +0.5533834 0.4220313 0.5284142 +0.5611974 0.4220313 0.5284142 +0.5687816 0.4220313 0.5284142 +0.092819 0.4348222 0.5284142 +0.1056428 0.4348222 0.5284142 +0.1201537 0.4348222 0.5284142 +0.1409607 0.4348222 0.5284142 +0.1678172 0.4348222 0.5284142 +0.1950164 0.4348222 0.5284142 +0.2210581 0.4348222 0.5284142 +0.245636 0.4348222 0.5284142 +0.2686816 0.4348222 0.5284142 +0.2902431 0.4348222 0.5284142 +0.3104189 0.4348222 0.5284142 +0.3293248 0.4348222 0.5284142 +0.3470774 0.4348222 0.5284142 +0.3637862 0.4348222 0.5284142 +0.3795513 0.4348222 0.5284142 +0.3944623 0.4348222 0.5284142 +0.4085988 0.4348222 0.5284142 +0.4220313 0.4348222 0.5284142 +0.4348222 0.4348222 0.5284142 +0.4470264 0.4348222 0.5284142 +0.4586928 0.4348222 0.5284142 +0.4698649 0.4348222 0.5284142 +0.4805811 0.4348222 0.5284142 +0.490876 0.4348222 0.5284142 +0.5007803 0.4348222 0.5284142 +0.510322 0.4348222 0.5284142 +0.5195258 0.4348222 0.5284142 +0.5284142 0.4348222 0.5284142 +0.5370079 0.4348222 0.5284142 +0.5453253 0.4348222 0.5284142 +0.5533834 0.4348222 0.5284142 +0.5611974 0.4348222 0.5284142 +0.5687816 0.4348222 0.5284142 +0.092819 0.4470264 0.5284142 +0.1056428 0.4470264 0.5284142 +0.1201537 0.4470264 0.5284142 +0.1409607 0.4470264 0.5284142 +0.1678172 0.4470264 0.5284142 +0.1950164 0.4470264 0.5284142 +0.2210581 0.4470264 0.5284142 +0.245636 0.4470264 0.5284142 +0.2686816 0.4470264 0.5284142 +0.2902431 0.4470264 0.5284142 +0.3104189 0.4470264 0.5284142 +0.3293248 0.4470264 0.5284142 +0.3470774 0.4470264 0.5284142 +0.3637862 0.4470264 0.5284142 +0.3795513 0.4470264 0.5284142 +0.3944623 0.4470264 0.5284142 +0.4085988 0.4470264 0.5284142 +0.4220313 0.4470264 0.5284142 +0.4348222 0.4470264 0.5284142 +0.4470264 0.4470264 0.5284142 +0.4586928 0.4470264 0.5284142 +0.4698649 0.4470264 0.5284142 +0.4805811 0.4470264 0.5284142 +0.490876 0.4470264 0.5284142 +0.5007803 0.4470264 0.5284142 +0.510322 0.4470264 0.5284142 +0.5195258 0.4470264 0.5284142 +0.5284142 0.4470264 0.5284142 +0.5370079 0.4470264 0.5284142 +0.5453253 0.4470264 0.5284142 +0.5533834 0.4470264 0.5284142 +0.5611974 0.4470264 0.5284142 +0.5687816 0.4470264 0.5284142 +0.092819 0.4586928 0.5284142 +0.1056428 0.4586928 0.5284142 +0.1201537 0.4586928 0.5284142 +0.1409607 0.4586928 0.5284142 +0.1678172 0.4586928 0.5284142 +0.1950164 0.4586928 0.5284142 +0.2210581 0.4586928 0.5284142 +0.245636 0.4586928 0.5284142 +0.2686816 0.4586928 0.5284142 +0.2902431 0.4586928 0.5284142 +0.3104189 0.4586928 0.5284142 +0.3293248 0.4586928 0.5284142 +0.3470774 0.4586928 0.5284142 +0.3637862 0.4586928 0.5284142 +0.3795513 0.4586928 0.5284142 +0.3944623 0.4586928 0.5284142 +0.4085988 0.4586928 0.5284142 +0.4220313 0.4586928 0.5284142 +0.4348222 0.4586928 0.5284142 +0.4470264 0.4586928 0.5284142 +0.4586928 0.4586928 0.5284142 +0.4698649 0.4586928 0.5284142 +0.4805811 0.4586928 0.5284142 +0.490876 0.4586928 0.5284142 +0.5007803 0.4586928 0.5284142 +0.510322 0.4586928 0.5284142 +0.5195258 0.4586928 0.5284142 +0.5284142 0.4586928 0.5284142 +0.5370079 0.4586928 0.5284142 +0.5453253 0.4586928 0.5284142 +0.5533834 0.4586928 0.5284142 +0.5611974 0.4586928 0.5284142 +0.5687816 0.4586928 0.5284142 +0.092819 0.4698649 0.5284142 +0.1056428 0.4698649 0.5284142 +0.1201537 0.4698649 0.5284142 +0.1409607 0.4698649 0.5284142 +0.1678172 0.4698649 0.5284142 +0.1950164 0.4698649 0.5284142 +0.2210581 0.4698649 0.5284142 +0.245636 0.4698649 0.5284142 +0.2686816 0.4698649 0.5284142 +0.2902431 0.4698649 0.5284142 +0.3104189 0.4698649 0.5284142 +0.3293248 0.4698649 0.5284142 +0.3470774 0.4698649 0.5284142 +0.3637862 0.4698649 0.5284142 +0.3795513 0.4698649 0.5284142 +0.3944623 0.4698649 0.5284142 +0.4085988 0.4698649 0.5284142 +0.4220313 0.4698649 0.5284142 +0.4348222 0.4698649 0.5284142 +0.4470264 0.4698649 0.5284142 +0.4586928 0.4698649 0.5284142 +0.4698649 0.4698649 0.5284142 +0.4805811 0.4698649 0.5284142 +0.490876 0.4698649 0.5284142 +0.5007803 0.4698649 0.5284142 +0.510322 0.4698649 0.5284142 +0.5195258 0.4698649 0.5284142 +0.5284142 0.4698649 0.5284142 +0.5370079 0.4698649 0.5284142 +0.5453253 0.4698649 0.5284142 +0.5533834 0.4698649 0.5284142 +0.5611974 0.4698649 0.5284142 +0.5687816 0.4698649 0.5284142 +0.092819 0.4805811 0.5284142 +0.1056428 0.4805811 0.5284142 +0.1201537 0.4805811 0.5284142 +0.1409607 0.4805811 0.5284142 +0.1678172 0.4805811 0.5284142 +0.1950164 0.4805811 0.5284142 +0.2210581 0.4805811 0.5284142 +0.245636 0.4805811 0.5284142 +0.2686816 0.4805811 0.5284142 +0.2902431 0.4805811 0.5284142 +0.3104189 0.4805811 0.5284142 +0.3293248 0.4805811 0.5284142 +0.3470774 0.4805811 0.5284142 +0.3637862 0.4805811 0.5284142 +0.3795513 0.4805811 0.5284142 +0.3944623 0.4805811 0.5284142 +0.4085988 0.4805811 0.5284142 +0.4220313 0.4805811 0.5284142 +0.4348222 0.4805811 0.5284142 +0.4470264 0.4805811 0.5284142 +0.4586928 0.4805811 0.5284142 +0.4698649 0.4805811 0.5284142 +0.4805811 0.4805811 0.5284142 +0.490876 0.4805811 0.5284142 +0.5007803 0.4805811 0.5284142 +0.510322 0.4805811 0.5284142 +0.5195258 0.4805811 0.5284142 +0.5284142 0.4805811 0.5284142 +0.5370079 0.4805811 0.5284142 +0.5453253 0.4805811 0.5284142 +0.5533834 0.4805811 0.5284142 +0.5611974 0.4805811 0.5284142 +0.5687816 0.4805811 0.5284142 +0.092819 0.490876 0.5284142 +0.1056428 0.490876 0.5284142 +0.1201537 0.490876 0.5284142 +0.1409607 0.490876 0.5284142 +0.1678172 0.490876 0.5284142 +0.1950164 0.490876 0.5284142 +0.2210581 0.490876 0.5284142 +0.245636 0.490876 0.5284142 +0.2686816 0.490876 0.5284142 +0.2902431 0.490876 0.5284142 +0.3104189 0.490876 0.5284142 +0.3293248 0.490876 0.5284142 +0.3470774 0.490876 0.5284142 +0.3637862 0.490876 0.5284142 +0.3795513 0.490876 0.5284142 +0.3944623 0.490876 0.5284142 +0.4085988 0.490876 0.5284142 +0.4220313 0.490876 0.5284142 +0.4348222 0.490876 0.5284142 +0.4470264 0.490876 0.5284142 +0.4586928 0.490876 0.5284142 +0.4698649 0.490876 0.5284142 +0.4805811 0.490876 0.5284142 +0.490876 0.490876 0.5284142 +0.5007803 0.490876 0.5284142 +0.510322 0.490876 0.5284142 +0.5195258 0.490876 0.5284142 +0.5284142 0.490876 0.5284142 +0.5370079 0.490876 0.5284142 +0.5453253 0.490876 0.5284142 +0.5533834 0.490876 0.5284142 +0.5611974 0.490876 0.5284142 +0.5687816 0.490876 0.5284142 +0.092819 0.5007803 0.5284142 +0.1056428 0.5007803 0.5284142 +0.1201537 0.5007803 0.5284142 +0.1409607 0.5007803 0.5284142 +0.1678172 0.5007803 0.5284142 +0.1950164 0.5007803 0.5284142 +0.2210581 0.5007803 0.5284142 +0.245636 0.5007803 0.5284142 +0.2686816 0.5007803 0.5284142 +0.2902431 0.5007803 0.5284142 +0.3104189 0.5007803 0.5284142 +0.3293248 0.5007803 0.5284142 +0.3470774 0.5007803 0.5284142 +0.3637862 0.5007803 0.5284142 +0.3795513 0.5007803 0.5284142 +0.3944623 0.5007803 0.5284142 +0.4085988 0.5007803 0.5284142 +0.4220313 0.5007803 0.5284142 +0.4348222 0.5007803 0.5284142 +0.4470264 0.5007803 0.5284142 +0.4586928 0.5007803 0.5284142 +0.4698649 0.5007803 0.5284142 +0.4805811 0.5007803 0.5284142 +0.490876 0.5007803 0.5284142 +0.5007803 0.5007803 0.5284142 +0.510322 0.5007803 0.5284142 +0.5195258 0.5007803 0.5284142 +0.5284142 0.5007803 0.5284142 +0.5370079 0.5007803 0.5284142 +0.5453253 0.5007803 0.5284142 +0.5533834 0.5007803 0.5284142 +0.5611974 0.5007803 0.5284142 +0.5687816 0.5007803 0.5284142 +0.092819 0.510322 0.5284142 +0.1056428 0.510322 0.5284142 +0.1201537 0.510322 0.5284142 +0.1409607 0.510322 0.5284142 +0.1678172 0.510322 0.5284142 +0.1950164 0.510322 0.5284142 +0.2210581 0.510322 0.5284142 +0.245636 0.510322 0.5284142 +0.2686816 0.510322 0.5284142 +0.2902431 0.510322 0.5284142 +0.3104189 0.510322 0.5284142 +0.3293248 0.510322 0.5284142 +0.3470774 0.510322 0.5284142 +0.3637862 0.510322 0.5284142 +0.3795513 0.510322 0.5284142 +0.3944623 0.510322 0.5284142 +0.4085988 0.510322 0.5284142 +0.4220313 0.510322 0.5284142 +0.4348222 0.510322 0.5284142 +0.4470264 0.510322 0.5284142 +0.4586928 0.510322 0.5284142 +0.4698649 0.510322 0.5284142 +0.4805811 0.510322 0.5284142 +0.490876 0.510322 0.5284142 +0.5007803 0.510322 0.5284142 +0.510322 0.510322 0.5284142 +0.5195258 0.510322 0.5284142 +0.5284142 0.510322 0.5284142 +0.5370079 0.510322 0.5284142 +0.5453253 0.510322 0.5284142 +0.5533834 0.510322 0.5284142 +0.5611974 0.510322 0.5284142 +0.5687816 0.510322 0.5284142 +0.092819 0.5195258 0.5284142 +0.1056428 0.5195258 0.5284142 +0.1201537 0.5195258 0.5284142 +0.1409607 0.5195258 0.5284142 +0.1678172 0.5195258 0.5284142 +0.1950164 0.5195258 0.5284142 +0.2210581 0.5195258 0.5284142 +0.245636 0.5195258 0.5284142 +0.2686816 0.5195258 0.5284142 +0.2902431 0.5195258 0.5284142 +0.3104189 0.5195258 0.5284142 +0.3293248 0.5195258 0.5284142 +0.3470774 0.5195258 0.5284142 +0.3637862 0.5195258 0.5284142 +0.3795513 0.5195258 0.5284142 +0.3944623 0.5195258 0.5284142 +0.4085988 0.5195258 0.5284142 +0.4220313 0.5195258 0.5284142 +0.4348222 0.5195258 0.5284142 +0.4470264 0.5195258 0.5284142 +0.4586928 0.5195258 0.5284142 +0.4698649 0.5195258 0.5284142 +0.4805811 0.5195258 0.5284142 +0.490876 0.5195258 0.5284142 +0.5007803 0.5195258 0.5284142 +0.510322 0.5195258 0.5284142 +0.5195258 0.5195258 0.5284142 +0.5284142 0.5195258 0.5284142 +0.5370079 0.5195258 0.5284142 +0.5453253 0.5195258 0.5284142 +0.5533834 0.5195258 0.5284142 +0.5611974 0.5195258 0.5284142 +0.5687816 0.5195258 0.5284142 +0.092819 0.5284142 0.5284142 +0.1056428 0.5284142 0.5284142 +0.1201537 0.5284142 0.5284142 +0.1409607 0.5284142 0.5284142 +0.1678172 0.5284142 0.5284142 +0.1950164 0.5284142 0.5284142 +0.2210581 0.5284142 0.5284142 +0.245636 0.5284142 0.5284142 +0.2686816 0.5284142 0.5284142 +0.2902431 0.5284142 0.5284142 +0.3104189 0.5284142 0.5284142 +0.3293248 0.5284142 0.5284142 +0.3470774 0.5284142 0.5284142 +0.3637862 0.5284142 0.5284142 +0.3795513 0.5284142 0.5284142 +0.3944623 0.5284142 0.5284142 +0.4085988 0.5284142 0.5284142 +0.4220313 0.5284142 0.5284142 +0.4348222 0.5284142 0.5284142 +0.4470264 0.5284142 0.5284142 +0.4586928 0.5284142 0.5284142 +0.4698649 0.5284142 0.5284142 +0.4805811 0.5284142 0.5284142 +0.490876 0.5284142 0.5284142 +0.5007803 0.5284142 0.5284142 +0.510322 0.5284142 0.5284142 +0.5195258 0.5284142 0.5284142 +0.5284142 0.5284142 0.5284142 +0.5370079 0.5284142 0.5284142 +0.5453253 0.5284142 0.5284142 +0.5533834 0.5284142 0.5284142 +0.5611974 0.5284142 0.5284142 +0.5687816 0.5284142 0.5284142 +0.092819 0.5370079 0.5284142 +0.1056428 0.5370079 0.5284142 +0.1201537 0.5370079 0.5284142 +0.1409607 0.5370079 0.5284142 +0.1678172 0.5370079 0.5284142 +0.1950164 0.5370079 0.5284142 +0.2210581 0.5370079 0.5284142 +0.245636 0.5370079 0.5284142 +0.2686816 0.5370079 0.5284142 +0.2902431 0.5370079 0.5284142 +0.3104189 0.5370079 0.5284142 +0.3293248 0.5370079 0.5284142 +0.3470774 0.5370079 0.5284142 +0.3637862 0.5370079 0.5284142 +0.3795513 0.5370079 0.5284142 +0.3944623 0.5370079 0.5284142 +0.4085988 0.5370079 0.5284142 +0.4220313 0.5370079 0.5284142 +0.4348222 0.5370079 0.5284142 +0.4470264 0.5370079 0.5284142 +0.4586928 0.5370079 0.5284142 +0.4698649 0.5370079 0.5284142 +0.4805811 0.5370079 0.5284142 +0.490876 0.5370079 0.5284142 +0.5007803 0.5370079 0.5284142 +0.510322 0.5370079 0.5284142 +0.5195258 0.5370079 0.5284142 +0.5284142 0.5370079 0.5284142 +0.5370079 0.5370079 0.5284142 +0.5453253 0.5370079 0.5284142 +0.5533834 0.5370079 0.5284142 +0.5611974 0.5370079 0.5284142 +0.5687816 0.5370079 0.5284142 +0.092819 0.5453253 0.5284142 +0.1056428 0.5453253 0.5284142 +0.1201537 0.5453253 0.5284142 +0.1409607 0.5453253 0.5284142 +0.1678172 0.5453253 0.5284142 +0.1950164 0.5453253 0.5284142 +0.2210581 0.5453253 0.5284142 +0.245636 0.5453253 0.5284142 +0.2686816 0.5453253 0.5284142 +0.2902431 0.5453253 0.5284142 +0.3104189 0.5453253 0.5284142 +0.3293248 0.5453253 0.5284142 +0.3470774 0.5453253 0.5284142 +0.3637862 0.5453253 0.5284142 +0.3795513 0.5453253 0.5284142 +0.3944623 0.5453253 0.5284142 +0.4085988 0.5453253 0.5284142 +0.4220313 0.5453253 0.5284142 +0.4348222 0.5453253 0.5284142 +0.4470264 0.5453253 0.5284142 +0.4586928 0.5453253 0.5284142 +0.4698649 0.5453253 0.5284142 +0.4805811 0.5453253 0.5284142 +0.490876 0.5453253 0.5284142 +0.5007803 0.5453253 0.5284142 +0.510322 0.5453253 0.5284142 +0.5195258 0.5453253 0.5284142 +0.5284142 0.5453253 0.5284142 +0.5370079 0.5453253 0.5284142 +0.5453253 0.5453253 0.5284142 +0.5533834 0.5453253 0.5284142 +0.5611974 0.5453253 0.5284142 +0.5687816 0.5453253 0.5284142 +0.092819 0.5533834 0.5284142 +0.1056428 0.5533834 0.5284142 +0.1201537 0.5533834 0.5284142 +0.1409607 0.5533834 0.5284142 +0.1678172 0.5533834 0.5284142 +0.1950164 0.5533834 0.5284142 +0.2210581 0.5533834 0.5284142 +0.245636 0.5533834 0.5284142 +0.2686816 0.5533834 0.5284142 +0.2902431 0.5533834 0.5284142 +0.3104189 0.5533834 0.5284142 +0.3293248 0.5533834 0.5284142 +0.3470774 0.5533834 0.5284142 +0.3637862 0.5533834 0.5284142 +0.3795513 0.5533834 0.5284142 +0.3944623 0.5533834 0.5284142 +0.4085988 0.5533834 0.5284142 +0.4220313 0.5533834 0.5284142 +0.4348222 0.5533834 0.5284142 +0.4470264 0.5533834 0.5284142 +0.4586928 0.5533834 0.5284142 +0.4698649 0.5533834 0.5284142 +0.4805811 0.5533834 0.5284142 +0.490876 0.5533834 0.5284142 +0.5007803 0.5533834 0.5284142 +0.510322 0.5533834 0.5284142 +0.5195258 0.5533834 0.5284142 +0.5284142 0.5533834 0.5284142 +0.5370079 0.5533834 0.5284142 +0.5453253 0.5533834 0.5284142 +0.5533834 0.5533834 0.5284142 +0.5611974 0.5533834 0.5284142 +0.5687816 0.5533834 0.5284142 +0.092819 0.5611974 0.5284142 +0.1056428 0.5611974 0.5284142 +0.1201537 0.5611974 0.5284142 +0.1409607 0.5611974 0.5284142 +0.1678172 0.5611974 0.5284142 +0.1950164 0.5611974 0.5284142 +0.2210581 0.5611974 0.5284142 +0.245636 0.5611974 0.5284142 +0.2686816 0.5611974 0.5284142 +0.2902431 0.5611974 0.5284142 +0.3104189 0.5611974 0.5284142 +0.3293248 0.5611974 0.5284142 +0.3470774 0.5611974 0.5284142 +0.3637862 0.5611974 0.5284142 +0.3795513 0.5611974 0.5284142 +0.3944623 0.5611974 0.5284142 +0.4085988 0.5611974 0.5284142 +0.4220313 0.5611974 0.5284142 +0.4348222 0.5611974 0.5284142 +0.4470264 0.5611974 0.5284142 +0.4586928 0.5611974 0.5284142 +0.4698649 0.5611974 0.5284142 +0.4805811 0.5611974 0.5284142 +0.490876 0.5611974 0.5284142 +0.5007803 0.5611974 0.5284142 +0.510322 0.5611974 0.5284142 +0.5195258 0.5611974 0.5284142 +0.5284142 0.5611974 0.5284142 +0.5370079 0.5611974 0.5284142 +0.5453253 0.5611974 0.5284142 +0.5533834 0.5611974 0.5284142 +0.5611974 0.5611974 0.5284142 +0.5687816 0.5611974 0.5284142 +0.092819 0.5687816 0.5284142 +0.1056428 0.5687816 0.5284142 +0.1201537 0.5687816 0.5284142 +0.1409607 0.5687816 0.5284142 +0.1678172 0.5687816 0.5284142 +0.1950164 0.5687816 0.5284142 +0.2210581 0.5687816 0.5284142 +0.245636 0.5687816 0.5284142 +0.2686816 0.5687816 0.5284142 +0.2902431 0.5687816 0.5284142 +0.3104189 0.5687816 0.5284142 +0.3293248 0.5687816 0.5284142 +0.3470774 0.5687816 0.5284142 +0.3637862 0.5687816 0.5284142 +0.3795513 0.5687816 0.5284142 +0.3944623 0.5687816 0.5284142 +0.4085988 0.5687816 0.5284142 +0.4220313 0.5687816 0.5284142 +0.4348222 0.5687816 0.5284142 +0.4470264 0.5687816 0.5284142 +0.4586928 0.5687816 0.5284142 +0.4698649 0.5687816 0.5284142 +0.4805811 0.5687816 0.5284142 +0.490876 0.5687816 0.5284142 +0.5007803 0.5687816 0.5284142 +0.510322 0.5687816 0.5284142 +0.5195258 0.5687816 0.5284142 +0.5284142 0.5687816 0.5284142 +0.5370079 0.5687816 0.5284142 +0.5453253 0.5687816 0.5284142 +0.5533834 0.5687816 0.5284142 +0.5611974 0.5687816 0.5284142 +0.5687816 0.5687816 0.5284142 +0.092819 0.092819 0.5370079 +0.1056428 0.092819 0.5370079 +0.1201537 0.092819 0.5370079 +0.1409607 0.092819 0.5370079 +0.1678172 0.092819 0.5370079 +0.1950164 0.092819 0.5370079 +0.2210581 0.092819 0.5370079 +0.245636 0.092819 0.5370079 +0.2686816 0.092819 0.5370079 +0.2902431 0.092819 0.5370079 +0.3104189 0.092819 0.5370079 +0.3293248 0.092819 0.5370079 +0.3470774 0.092819 0.5370079 +0.3637862 0.092819 0.5370079 +0.3795513 0.092819 0.5370079 +0.3944623 0.092819 0.5370079 +0.4085988 0.092819 0.5370079 +0.4220313 0.092819 0.5370079 +0.4348222 0.092819 0.5370079 +0.4470264 0.092819 0.5370079 +0.4586928 0.092819 0.5370079 +0.4698649 0.092819 0.5370079 +0.4805811 0.092819 0.5370079 +0.490876 0.092819 0.5370079 +0.5007803 0.092819 0.5370079 +0.510322 0.092819 0.5370079 +0.5195258 0.092819 0.5370079 +0.5284142 0.092819 0.5370079 +0.5370079 0.092819 0.5370079 +0.5453253 0.092819 0.5370079 +0.5533834 0.092819 0.5370079 +0.5611974 0.092819 0.5370079 +0.5687816 0.092819 0.5370079 +0.092819 0.1056428 0.5370079 +0.1056428 0.1056428 0.5370079 +0.1201537 0.1056428 0.5370079 +0.1409607 0.1056428 0.5370079 +0.1678172 0.1056428 0.5370079 +0.1950164 0.1056428 0.5370079 +0.2210581 0.1056428 0.5370079 +0.245636 0.1056428 0.5370079 +0.2686816 0.1056428 0.5370079 +0.2902431 0.1056428 0.5370079 +0.3104189 0.1056428 0.5370079 +0.3293248 0.1056428 0.5370079 +0.3470774 0.1056428 0.5370079 +0.3637862 0.1056428 0.5370079 +0.3795513 0.1056428 0.5370079 +0.3944623 0.1056428 0.5370079 +0.4085988 0.1056428 0.5370079 +0.4220313 0.1056428 0.5370079 +0.4348222 0.1056428 0.5370079 +0.4470264 0.1056428 0.5370079 +0.4586928 0.1056428 0.5370079 +0.4698649 0.1056428 0.5370079 +0.4805811 0.1056428 0.5370079 +0.490876 0.1056428 0.5370079 +0.5007803 0.1056428 0.5370079 +0.510322 0.1056428 0.5370079 +0.5195258 0.1056428 0.5370079 +0.5284142 0.1056428 0.5370079 +0.5370079 0.1056428 0.5370079 +0.5453253 0.1056428 0.5370079 +0.5533834 0.1056428 0.5370079 +0.5611974 0.1056428 0.5370079 +0.5687816 0.1056428 0.5370079 +0.092819 0.1201537 0.5370079 +0.1056428 0.1201537 0.5370079 +0.1201537 0.1201537 0.5370079 +0.1409607 0.1201537 0.5370079 +0.1678172 0.1201537 0.5370079 +0.1950164 0.1201537 0.5370079 +0.2210581 0.1201537 0.5370079 +0.245636 0.1201537 0.5370079 +0.2686816 0.1201537 0.5370079 +0.2902431 0.1201537 0.5370079 +0.3104189 0.1201537 0.5370079 +0.3293248 0.1201537 0.5370079 +0.3470774 0.1201537 0.5370079 +0.3637862 0.1201537 0.5370079 +0.3795513 0.1201537 0.5370079 +0.3944623 0.1201537 0.5370079 +0.4085988 0.1201537 0.5370079 +0.4220313 0.1201537 0.5370079 +0.4348222 0.1201537 0.5370079 +0.4470264 0.1201537 0.5370079 +0.4586928 0.1201537 0.5370079 +0.4698649 0.1201537 0.5370079 +0.4805811 0.1201537 0.5370079 +0.490876 0.1201537 0.5370079 +0.5007803 0.1201537 0.5370079 +0.510322 0.1201537 0.5370079 +0.5195258 0.1201537 0.5370079 +0.5284142 0.1201537 0.5370079 +0.5370079 0.1201537 0.5370079 +0.5453253 0.1201537 0.5370079 +0.5533834 0.1201537 0.5370079 +0.5611974 0.1201537 0.5370079 +0.5687816 0.1201537 0.5370079 +0.092819 0.1409607 0.5370079 +0.1056428 0.1409607 0.5370079 +0.1201537 0.1409607 0.5370079 +0.1409607 0.1409607 0.5370079 +0.1678172 0.1409607 0.5370079 +0.1950164 0.1409607 0.5370079 +0.2210581 0.1409607 0.5370079 +0.245636 0.1409607 0.5370079 +0.2686816 0.1409607 0.5370079 +0.2902431 0.1409607 0.5370079 +0.3104189 0.1409607 0.5370079 +0.3293248 0.1409607 0.5370079 +0.3470774 0.1409607 0.5370079 +0.3637862 0.1409607 0.5370079 +0.3795513 0.1409607 0.5370079 +0.3944623 0.1409607 0.5370079 +0.4085988 0.1409607 0.5370079 +0.4220313 0.1409607 0.5370079 +0.4348222 0.1409607 0.5370079 +0.4470264 0.1409607 0.5370079 +0.4586928 0.1409607 0.5370079 +0.4698649 0.1409607 0.5370079 +0.4805811 0.1409607 0.5370079 +0.490876 0.1409607 0.5370079 +0.5007803 0.1409607 0.5370079 +0.510322 0.1409607 0.5370079 +0.5195258 0.1409607 0.5370079 +0.5284142 0.1409607 0.5370079 +0.5370079 0.1409607 0.5370079 +0.5453253 0.1409607 0.5370079 +0.5533834 0.1409607 0.5370079 +0.5611974 0.1409607 0.5370079 +0.5687816 0.1409607 0.5370079 +0.092819 0.1678172 0.5370079 +0.1056428 0.1678172 0.5370079 +0.1201537 0.1678172 0.5370079 +0.1409607 0.1678172 0.5370079 +0.1678172 0.1678172 0.5370079 +0.1950164 0.1678172 0.5370079 +0.2210581 0.1678172 0.5370079 +0.245636 0.1678172 0.5370079 +0.2686816 0.1678172 0.5370079 +0.2902431 0.1678172 0.5370079 +0.3104189 0.1678172 0.5370079 +0.3293248 0.1678172 0.5370079 +0.3470774 0.1678172 0.5370079 +0.3637862 0.1678172 0.5370079 +0.3795513 0.1678172 0.5370079 +0.3944623 0.1678172 0.5370079 +0.4085988 0.1678172 0.5370079 +0.4220313 0.1678172 0.5370079 +0.4348222 0.1678172 0.5370079 +0.4470264 0.1678172 0.5370079 +0.4586928 0.1678172 0.5370079 +0.4698649 0.1678172 0.5370079 +0.4805811 0.1678172 0.5370079 +0.490876 0.1678172 0.5370079 +0.5007803 0.1678172 0.5370079 +0.510322 0.1678172 0.5370079 +0.5195258 0.1678172 0.5370079 +0.5284142 0.1678172 0.5370079 +0.5370079 0.1678172 0.5370079 +0.5453253 0.1678172 0.5370079 +0.5533834 0.1678172 0.5370079 +0.5611974 0.1678172 0.5370079 +0.5687816 0.1678172 0.5370079 +0.092819 0.1950164 0.5370079 +0.1056428 0.1950164 0.5370079 +0.1201537 0.1950164 0.5370079 +0.1409607 0.1950164 0.5370079 +0.1678172 0.1950164 0.5370079 +0.1950164 0.1950164 0.5370079 +0.2210581 0.1950164 0.5370079 +0.245636 0.1950164 0.5370079 +0.2686816 0.1950164 0.5370079 +0.2902431 0.1950164 0.5370079 +0.3104189 0.1950164 0.5370079 +0.3293248 0.1950164 0.5370079 +0.3470774 0.1950164 0.5370079 +0.3637862 0.1950164 0.5370079 +0.3795513 0.1950164 0.5370079 +0.3944623 0.1950164 0.5370079 +0.4085988 0.1950164 0.5370079 +0.4220313 0.1950164 0.5370079 +0.4348222 0.1950164 0.5370079 +0.4470264 0.1950164 0.5370079 +0.4586928 0.1950164 0.5370079 +0.4698649 0.1950164 0.5370079 +0.4805811 0.1950164 0.5370079 +0.490876 0.1950164 0.5370079 +0.5007803 0.1950164 0.5370079 +0.510322 0.1950164 0.5370079 +0.5195258 0.1950164 0.5370079 +0.5284142 0.1950164 0.5370079 +0.5370079 0.1950164 0.5370079 +0.5453253 0.1950164 0.5370079 +0.5533834 0.1950164 0.5370079 +0.5611974 0.1950164 0.5370079 +0.5687816 0.1950164 0.5370079 +0.092819 0.2210581 0.5370079 +0.1056428 0.2210581 0.5370079 +0.1201537 0.2210581 0.5370079 +0.1409607 0.2210581 0.5370079 +0.1678172 0.2210581 0.5370079 +0.1950164 0.2210581 0.5370079 +0.2210581 0.2210581 0.5370079 +0.245636 0.2210581 0.5370079 +0.2686816 0.2210581 0.5370079 +0.2902431 0.2210581 0.5370079 +0.3104189 0.2210581 0.5370079 +0.3293248 0.2210581 0.5370079 +0.3470774 0.2210581 0.5370079 +0.3637862 0.2210581 0.5370079 +0.3795513 0.2210581 0.5370079 +0.3944623 0.2210581 0.5370079 +0.4085988 0.2210581 0.5370079 +0.4220313 0.2210581 0.5370079 +0.4348222 0.2210581 0.5370079 +0.4470264 0.2210581 0.5370079 +0.4586928 0.2210581 0.5370079 +0.4698649 0.2210581 0.5370079 +0.4805811 0.2210581 0.5370079 +0.490876 0.2210581 0.5370079 +0.5007803 0.2210581 0.5370079 +0.510322 0.2210581 0.5370079 +0.5195258 0.2210581 0.5370079 +0.5284142 0.2210581 0.5370079 +0.5370079 0.2210581 0.5370079 +0.5453253 0.2210581 0.5370079 +0.5533834 0.2210581 0.5370079 +0.5611974 0.2210581 0.5370079 +0.5687816 0.2210581 0.5370079 +0.092819 0.245636 0.5370079 +0.1056428 0.245636 0.5370079 +0.1201537 0.245636 0.5370079 +0.1409607 0.245636 0.5370079 +0.1678172 0.245636 0.5370079 +0.1950164 0.245636 0.5370079 +0.2210581 0.245636 0.5370079 +0.245636 0.245636 0.5370079 +0.2686816 0.245636 0.5370079 +0.2902431 0.245636 0.5370079 +0.3104189 0.245636 0.5370079 +0.3293248 0.245636 0.5370079 +0.3470774 0.245636 0.5370079 +0.3637862 0.245636 0.5370079 +0.3795513 0.245636 0.5370079 +0.3944623 0.245636 0.5370079 +0.4085988 0.245636 0.5370079 +0.4220313 0.245636 0.5370079 +0.4348222 0.245636 0.5370079 +0.4470264 0.245636 0.5370079 +0.4586928 0.245636 0.5370079 +0.4698649 0.245636 0.5370079 +0.4805811 0.245636 0.5370079 +0.490876 0.245636 0.5370079 +0.5007803 0.245636 0.5370079 +0.510322 0.245636 0.5370079 +0.5195258 0.245636 0.5370079 +0.5284142 0.245636 0.5370079 +0.5370079 0.245636 0.5370079 +0.5453253 0.245636 0.5370079 +0.5533834 0.245636 0.5370079 +0.5611974 0.245636 0.5370079 +0.5687816 0.245636 0.5370079 +0.092819 0.2686816 0.5370079 +0.1056428 0.2686816 0.5370079 +0.1201537 0.2686816 0.5370079 +0.1409607 0.2686816 0.5370079 +0.1678172 0.2686816 0.5370079 +0.1950164 0.2686816 0.5370079 +0.2210581 0.2686816 0.5370079 +0.245636 0.2686816 0.5370079 +0.2686816 0.2686816 0.5370079 +0.2902431 0.2686816 0.5370079 +0.3104189 0.2686816 0.5370079 +0.3293248 0.2686816 0.5370079 +0.3470774 0.2686816 0.5370079 +0.3637862 0.2686816 0.5370079 +0.3795513 0.2686816 0.5370079 +0.3944623 0.2686816 0.5370079 +0.4085988 0.2686816 0.5370079 +0.4220313 0.2686816 0.5370079 +0.4348222 0.2686816 0.5370079 +0.4470264 0.2686816 0.5370079 +0.4586928 0.2686816 0.5370079 +0.4698649 0.2686816 0.5370079 +0.4805811 0.2686816 0.5370079 +0.490876 0.2686816 0.5370079 +0.5007803 0.2686816 0.5370079 +0.510322 0.2686816 0.5370079 +0.5195258 0.2686816 0.5370079 +0.5284142 0.2686816 0.5370079 +0.5370079 0.2686816 0.5370079 +0.5453253 0.2686816 0.5370079 +0.5533834 0.2686816 0.5370079 +0.5611974 0.2686816 0.5370079 +0.5687816 0.2686816 0.5370079 +0.092819 0.2902431 0.5370079 +0.1056428 0.2902431 0.5370079 +0.1201537 0.2902431 0.5370079 +0.1409607 0.2902431 0.5370079 +0.1678172 0.2902431 0.5370079 +0.1950164 0.2902431 0.5370079 +0.2210581 0.2902431 0.5370079 +0.245636 0.2902431 0.5370079 +0.2686816 0.2902431 0.5370079 +0.2902431 0.2902431 0.5370079 +0.3104189 0.2902431 0.5370079 +0.3293248 0.2902431 0.5370079 +0.3470774 0.2902431 0.5370079 +0.3637862 0.2902431 0.5370079 +0.3795513 0.2902431 0.5370079 +0.3944623 0.2902431 0.5370079 +0.4085988 0.2902431 0.5370079 +0.4220313 0.2902431 0.5370079 +0.4348222 0.2902431 0.5370079 +0.4470264 0.2902431 0.5370079 +0.4586928 0.2902431 0.5370079 +0.4698649 0.2902431 0.5370079 +0.4805811 0.2902431 0.5370079 +0.490876 0.2902431 0.5370079 +0.5007803 0.2902431 0.5370079 +0.510322 0.2902431 0.5370079 +0.5195258 0.2902431 0.5370079 +0.5284142 0.2902431 0.5370079 +0.5370079 0.2902431 0.5370079 +0.5453253 0.2902431 0.5370079 +0.5533834 0.2902431 0.5370079 +0.5611974 0.2902431 0.5370079 +0.5687816 0.2902431 0.5370079 +0.092819 0.3104189 0.5370079 +0.1056428 0.3104189 0.5370079 +0.1201537 0.3104189 0.5370079 +0.1409607 0.3104189 0.5370079 +0.1678172 0.3104189 0.5370079 +0.1950164 0.3104189 0.5370079 +0.2210581 0.3104189 0.5370079 +0.245636 0.3104189 0.5370079 +0.2686816 0.3104189 0.5370079 +0.2902431 0.3104189 0.5370079 +0.3104189 0.3104189 0.5370079 +0.3293248 0.3104189 0.5370079 +0.3470774 0.3104189 0.5370079 +0.3637862 0.3104189 0.5370079 +0.3795513 0.3104189 0.5370079 +0.3944623 0.3104189 0.5370079 +0.4085988 0.3104189 0.5370079 +0.4220313 0.3104189 0.5370079 +0.4348222 0.3104189 0.5370079 +0.4470264 0.3104189 0.5370079 +0.4586928 0.3104189 0.5370079 +0.4698649 0.3104189 0.5370079 +0.4805811 0.3104189 0.5370079 +0.490876 0.3104189 0.5370079 +0.5007803 0.3104189 0.5370079 +0.510322 0.3104189 0.5370079 +0.5195258 0.3104189 0.5370079 +0.5284142 0.3104189 0.5370079 +0.5370079 0.3104189 0.5370079 +0.5453253 0.3104189 0.5370079 +0.5533834 0.3104189 0.5370079 +0.5611974 0.3104189 0.5370079 +0.5687816 0.3104189 0.5370079 +0.092819 0.3293248 0.5370079 +0.1056428 0.3293248 0.5370079 +0.1201537 0.3293248 0.5370079 +0.1409607 0.3293248 0.5370079 +0.1678172 0.3293248 0.5370079 +0.1950164 0.3293248 0.5370079 +0.2210581 0.3293248 0.5370079 +0.245636 0.3293248 0.5370079 +0.2686816 0.3293248 0.5370079 +0.2902431 0.3293248 0.5370079 +0.3104189 0.3293248 0.5370079 +0.3293248 0.3293248 0.5370079 +0.3470774 0.3293248 0.5370079 +0.3637862 0.3293248 0.5370079 +0.3795513 0.3293248 0.5370079 +0.3944623 0.3293248 0.5370079 +0.4085988 0.3293248 0.5370079 +0.4220313 0.3293248 0.5370079 +0.4348222 0.3293248 0.5370079 +0.4470264 0.3293248 0.5370079 +0.4586928 0.3293248 0.5370079 +0.4698649 0.3293248 0.5370079 +0.4805811 0.3293248 0.5370079 +0.490876 0.3293248 0.5370079 +0.5007803 0.3293248 0.5370079 +0.510322 0.3293248 0.5370079 +0.5195258 0.3293248 0.5370079 +0.5284142 0.3293248 0.5370079 +0.5370079 0.3293248 0.5370079 +0.5453253 0.3293248 0.5370079 +0.5533834 0.3293248 0.5370079 +0.5611974 0.3293248 0.5370079 +0.5687816 0.3293248 0.5370079 +0.092819 0.3470774 0.5370079 +0.1056428 0.3470774 0.5370079 +0.1201537 0.3470774 0.5370079 +0.1409607 0.3470774 0.5370079 +0.1678172 0.3470774 0.5370079 +0.1950164 0.3470774 0.5370079 +0.2210581 0.3470774 0.5370079 +0.245636 0.3470774 0.5370079 +0.2686816 0.3470774 0.5370079 +0.2902431 0.3470774 0.5370079 +0.3104189 0.3470774 0.5370079 +0.3293248 0.3470774 0.5370079 +0.3470774 0.3470774 0.5370079 +0.3637862 0.3470774 0.5370079 +0.3795513 0.3470774 0.5370079 +0.3944623 0.3470774 0.5370079 +0.4085988 0.3470774 0.5370079 +0.4220313 0.3470774 0.5370079 +0.4348222 0.3470774 0.5370079 +0.4470264 0.3470774 0.5370079 +0.4586928 0.3470774 0.5370079 +0.4698649 0.3470774 0.5370079 +0.4805811 0.3470774 0.5370079 +0.490876 0.3470774 0.5370079 +0.5007803 0.3470774 0.5370079 +0.510322 0.3470774 0.5370079 +0.5195258 0.3470774 0.5370079 +0.5284142 0.3470774 0.5370079 +0.5370079 0.3470774 0.5370079 +0.5453253 0.3470774 0.5370079 +0.5533834 0.3470774 0.5370079 +0.5611974 0.3470774 0.5370079 +0.5687816 0.3470774 0.5370079 +0.092819 0.3637862 0.5370079 +0.1056428 0.3637862 0.5370079 +0.1201537 0.3637862 0.5370079 +0.1409607 0.3637862 0.5370079 +0.1678172 0.3637862 0.5370079 +0.1950164 0.3637862 0.5370079 +0.2210581 0.3637862 0.5370079 +0.245636 0.3637862 0.5370079 +0.2686816 0.3637862 0.5370079 +0.2902431 0.3637862 0.5370079 +0.3104189 0.3637862 0.5370079 +0.3293248 0.3637862 0.5370079 +0.3470774 0.3637862 0.5370079 +0.3637862 0.3637862 0.5370079 +0.3795513 0.3637862 0.5370079 +0.3944623 0.3637862 0.5370079 +0.4085988 0.3637862 0.5370079 +0.4220313 0.3637862 0.5370079 +0.4348222 0.3637862 0.5370079 +0.4470264 0.3637862 0.5370079 +0.4586928 0.3637862 0.5370079 +0.4698649 0.3637862 0.5370079 +0.4805811 0.3637862 0.5370079 +0.490876 0.3637862 0.5370079 +0.5007803 0.3637862 0.5370079 +0.510322 0.3637862 0.5370079 +0.5195258 0.3637862 0.5370079 +0.5284142 0.3637862 0.5370079 +0.5370079 0.3637862 0.5370079 +0.5453253 0.3637862 0.5370079 +0.5533834 0.3637862 0.5370079 +0.5611974 0.3637862 0.5370079 +0.5687816 0.3637862 0.5370079 +0.092819 0.3795513 0.5370079 +0.1056428 0.3795513 0.5370079 +0.1201537 0.3795513 0.5370079 +0.1409607 0.3795513 0.5370079 +0.1678172 0.3795513 0.5370079 +0.1950164 0.3795513 0.5370079 +0.2210581 0.3795513 0.5370079 +0.245636 0.3795513 0.5370079 +0.2686816 0.3795513 0.5370079 +0.2902431 0.3795513 0.5370079 +0.3104189 0.3795513 0.5370079 +0.3293248 0.3795513 0.5370079 +0.3470774 0.3795513 0.5370079 +0.3637862 0.3795513 0.5370079 +0.3795513 0.3795513 0.5370079 +0.3944623 0.3795513 0.5370079 +0.4085988 0.3795513 0.5370079 +0.4220313 0.3795513 0.5370079 +0.4348222 0.3795513 0.5370079 +0.4470264 0.3795513 0.5370079 +0.4586928 0.3795513 0.5370079 +0.4698649 0.3795513 0.5370079 +0.4805811 0.3795513 0.5370079 +0.490876 0.3795513 0.5370079 +0.5007803 0.3795513 0.5370079 +0.510322 0.3795513 0.5370079 +0.5195258 0.3795513 0.5370079 +0.5284142 0.3795513 0.5370079 +0.5370079 0.3795513 0.5370079 +0.5453253 0.3795513 0.5370079 +0.5533834 0.3795513 0.5370079 +0.5611974 0.3795513 0.5370079 +0.5687816 0.3795513 0.5370079 +0.092819 0.3944623 0.5370079 +0.1056428 0.3944623 0.5370079 +0.1201537 0.3944623 0.5370079 +0.1409607 0.3944623 0.5370079 +0.1678172 0.3944623 0.5370079 +0.1950164 0.3944623 0.5370079 +0.2210581 0.3944623 0.5370079 +0.245636 0.3944623 0.5370079 +0.2686816 0.3944623 0.5370079 +0.2902431 0.3944623 0.5370079 +0.3104189 0.3944623 0.5370079 +0.3293248 0.3944623 0.5370079 +0.3470774 0.3944623 0.5370079 +0.3637862 0.3944623 0.5370079 +0.3795513 0.3944623 0.5370079 +0.3944623 0.3944623 0.5370079 +0.4085988 0.3944623 0.5370079 +0.4220313 0.3944623 0.5370079 +0.4348222 0.3944623 0.5370079 +0.4470264 0.3944623 0.5370079 +0.4586928 0.3944623 0.5370079 +0.4698649 0.3944623 0.5370079 +0.4805811 0.3944623 0.5370079 +0.490876 0.3944623 0.5370079 +0.5007803 0.3944623 0.5370079 +0.510322 0.3944623 0.5370079 +0.5195258 0.3944623 0.5370079 +0.5284142 0.3944623 0.5370079 +0.5370079 0.3944623 0.5370079 +0.5453253 0.3944623 0.5370079 +0.5533834 0.3944623 0.5370079 +0.5611974 0.3944623 0.5370079 +0.5687816 0.3944623 0.5370079 +0.092819 0.4085988 0.5370079 +0.1056428 0.4085988 0.5370079 +0.1201537 0.4085988 0.5370079 +0.1409607 0.4085988 0.5370079 +0.1678172 0.4085988 0.5370079 +0.1950164 0.4085988 0.5370079 +0.2210581 0.4085988 0.5370079 +0.245636 0.4085988 0.5370079 +0.2686816 0.4085988 0.5370079 +0.2902431 0.4085988 0.5370079 +0.3104189 0.4085988 0.5370079 +0.3293248 0.4085988 0.5370079 +0.3470774 0.4085988 0.5370079 +0.3637862 0.4085988 0.5370079 +0.3795513 0.4085988 0.5370079 +0.3944623 0.4085988 0.5370079 +0.4085988 0.4085988 0.5370079 +0.4220313 0.4085988 0.5370079 +0.4348222 0.4085988 0.5370079 +0.4470264 0.4085988 0.5370079 +0.4586928 0.4085988 0.5370079 +0.4698649 0.4085988 0.5370079 +0.4805811 0.4085988 0.5370079 +0.490876 0.4085988 0.5370079 +0.5007803 0.4085988 0.5370079 +0.510322 0.4085988 0.5370079 +0.5195258 0.4085988 0.5370079 +0.5284142 0.4085988 0.5370079 +0.5370079 0.4085988 0.5370079 +0.5453253 0.4085988 0.5370079 +0.5533834 0.4085988 0.5370079 +0.5611974 0.4085988 0.5370079 +0.5687816 0.4085988 0.5370079 +0.092819 0.4220313 0.5370079 +0.1056428 0.4220313 0.5370079 +0.1201537 0.4220313 0.5370079 +0.1409607 0.4220313 0.5370079 +0.1678172 0.4220313 0.5370079 +0.1950164 0.4220313 0.5370079 +0.2210581 0.4220313 0.5370079 +0.245636 0.4220313 0.5370079 +0.2686816 0.4220313 0.5370079 +0.2902431 0.4220313 0.5370079 +0.3104189 0.4220313 0.5370079 +0.3293248 0.4220313 0.5370079 +0.3470774 0.4220313 0.5370079 +0.3637862 0.4220313 0.5370079 +0.3795513 0.4220313 0.5370079 +0.3944623 0.4220313 0.5370079 +0.4085988 0.4220313 0.5370079 +0.4220313 0.4220313 0.5370079 +0.4348222 0.4220313 0.5370079 +0.4470264 0.4220313 0.5370079 +0.4586928 0.4220313 0.5370079 +0.4698649 0.4220313 0.5370079 +0.4805811 0.4220313 0.5370079 +0.490876 0.4220313 0.5370079 +0.5007803 0.4220313 0.5370079 +0.510322 0.4220313 0.5370079 +0.5195258 0.4220313 0.5370079 +0.5284142 0.4220313 0.5370079 +0.5370079 0.4220313 0.5370079 +0.5453253 0.4220313 0.5370079 +0.5533834 0.4220313 0.5370079 +0.5611974 0.4220313 0.5370079 +0.5687816 0.4220313 0.5370079 +0.092819 0.4348222 0.5370079 +0.1056428 0.4348222 0.5370079 +0.1201537 0.4348222 0.5370079 +0.1409607 0.4348222 0.5370079 +0.1678172 0.4348222 0.5370079 +0.1950164 0.4348222 0.5370079 +0.2210581 0.4348222 0.5370079 +0.245636 0.4348222 0.5370079 +0.2686816 0.4348222 0.5370079 +0.2902431 0.4348222 0.5370079 +0.3104189 0.4348222 0.5370079 +0.3293248 0.4348222 0.5370079 +0.3470774 0.4348222 0.5370079 +0.3637862 0.4348222 0.5370079 +0.3795513 0.4348222 0.5370079 +0.3944623 0.4348222 0.5370079 +0.4085988 0.4348222 0.5370079 +0.4220313 0.4348222 0.5370079 +0.4348222 0.4348222 0.5370079 +0.4470264 0.4348222 0.5370079 +0.4586928 0.4348222 0.5370079 +0.4698649 0.4348222 0.5370079 +0.4805811 0.4348222 0.5370079 +0.490876 0.4348222 0.5370079 +0.5007803 0.4348222 0.5370079 +0.510322 0.4348222 0.5370079 +0.5195258 0.4348222 0.5370079 +0.5284142 0.4348222 0.5370079 +0.5370079 0.4348222 0.5370079 +0.5453253 0.4348222 0.5370079 +0.5533834 0.4348222 0.5370079 +0.5611974 0.4348222 0.5370079 +0.5687816 0.4348222 0.5370079 +0.092819 0.4470264 0.5370079 +0.1056428 0.4470264 0.5370079 +0.1201537 0.4470264 0.5370079 +0.1409607 0.4470264 0.5370079 +0.1678172 0.4470264 0.5370079 +0.1950164 0.4470264 0.5370079 +0.2210581 0.4470264 0.5370079 +0.245636 0.4470264 0.5370079 +0.2686816 0.4470264 0.5370079 +0.2902431 0.4470264 0.5370079 +0.3104189 0.4470264 0.5370079 +0.3293248 0.4470264 0.5370079 +0.3470774 0.4470264 0.5370079 +0.3637862 0.4470264 0.5370079 +0.3795513 0.4470264 0.5370079 +0.3944623 0.4470264 0.5370079 +0.4085988 0.4470264 0.5370079 +0.4220313 0.4470264 0.5370079 +0.4348222 0.4470264 0.5370079 +0.4470264 0.4470264 0.5370079 +0.4586928 0.4470264 0.5370079 +0.4698649 0.4470264 0.5370079 +0.4805811 0.4470264 0.5370079 +0.490876 0.4470264 0.5370079 +0.5007803 0.4470264 0.5370079 +0.510322 0.4470264 0.5370079 +0.5195258 0.4470264 0.5370079 +0.5284142 0.4470264 0.5370079 +0.5370079 0.4470264 0.5370079 +0.5453253 0.4470264 0.5370079 +0.5533834 0.4470264 0.5370079 +0.5611974 0.4470264 0.5370079 +0.5687816 0.4470264 0.5370079 +0.092819 0.4586928 0.5370079 +0.1056428 0.4586928 0.5370079 +0.1201537 0.4586928 0.5370079 +0.1409607 0.4586928 0.5370079 +0.1678172 0.4586928 0.5370079 +0.1950164 0.4586928 0.5370079 +0.2210581 0.4586928 0.5370079 +0.245636 0.4586928 0.5370079 +0.2686816 0.4586928 0.5370079 +0.2902431 0.4586928 0.5370079 +0.3104189 0.4586928 0.5370079 +0.3293248 0.4586928 0.5370079 +0.3470774 0.4586928 0.5370079 +0.3637862 0.4586928 0.5370079 +0.3795513 0.4586928 0.5370079 +0.3944623 0.4586928 0.5370079 +0.4085988 0.4586928 0.5370079 +0.4220313 0.4586928 0.5370079 +0.4348222 0.4586928 0.5370079 +0.4470264 0.4586928 0.5370079 +0.4586928 0.4586928 0.5370079 +0.4698649 0.4586928 0.5370079 +0.4805811 0.4586928 0.5370079 +0.490876 0.4586928 0.5370079 +0.5007803 0.4586928 0.5370079 +0.510322 0.4586928 0.5370079 +0.5195258 0.4586928 0.5370079 +0.5284142 0.4586928 0.5370079 +0.5370079 0.4586928 0.5370079 +0.5453253 0.4586928 0.5370079 +0.5533834 0.4586928 0.5370079 +0.5611974 0.4586928 0.5370079 +0.5687816 0.4586928 0.5370079 +0.092819 0.4698649 0.5370079 +0.1056428 0.4698649 0.5370079 +0.1201537 0.4698649 0.5370079 +0.1409607 0.4698649 0.5370079 +0.1678172 0.4698649 0.5370079 +0.1950164 0.4698649 0.5370079 +0.2210581 0.4698649 0.5370079 +0.245636 0.4698649 0.5370079 +0.2686816 0.4698649 0.5370079 +0.2902431 0.4698649 0.5370079 +0.3104189 0.4698649 0.5370079 +0.3293248 0.4698649 0.5370079 +0.3470774 0.4698649 0.5370079 +0.3637862 0.4698649 0.5370079 +0.3795513 0.4698649 0.5370079 +0.3944623 0.4698649 0.5370079 +0.4085988 0.4698649 0.5370079 +0.4220313 0.4698649 0.5370079 +0.4348222 0.4698649 0.5370079 +0.4470264 0.4698649 0.5370079 +0.4586928 0.4698649 0.5370079 +0.4698649 0.4698649 0.5370079 +0.4805811 0.4698649 0.5370079 +0.490876 0.4698649 0.5370079 +0.5007803 0.4698649 0.5370079 +0.510322 0.4698649 0.5370079 +0.5195258 0.4698649 0.5370079 +0.5284142 0.4698649 0.5370079 +0.5370079 0.4698649 0.5370079 +0.5453253 0.4698649 0.5370079 +0.5533834 0.4698649 0.5370079 +0.5611974 0.4698649 0.5370079 +0.5687816 0.4698649 0.5370079 +0.092819 0.4805811 0.5370079 +0.1056428 0.4805811 0.5370079 +0.1201537 0.4805811 0.5370079 +0.1409607 0.4805811 0.5370079 +0.1678172 0.4805811 0.5370079 +0.1950164 0.4805811 0.5370079 +0.2210581 0.4805811 0.5370079 +0.245636 0.4805811 0.5370079 +0.2686816 0.4805811 0.5370079 +0.2902431 0.4805811 0.5370079 +0.3104189 0.4805811 0.5370079 +0.3293248 0.4805811 0.5370079 +0.3470774 0.4805811 0.5370079 +0.3637862 0.4805811 0.5370079 +0.3795513 0.4805811 0.5370079 +0.3944623 0.4805811 0.5370079 +0.4085988 0.4805811 0.5370079 +0.4220313 0.4805811 0.5370079 +0.4348222 0.4805811 0.5370079 +0.4470264 0.4805811 0.5370079 +0.4586928 0.4805811 0.5370079 +0.4698649 0.4805811 0.5370079 +0.4805811 0.4805811 0.5370079 +0.490876 0.4805811 0.5370079 +0.5007803 0.4805811 0.5370079 +0.510322 0.4805811 0.5370079 +0.5195258 0.4805811 0.5370079 +0.5284142 0.4805811 0.5370079 +0.5370079 0.4805811 0.5370079 +0.5453253 0.4805811 0.5370079 +0.5533834 0.4805811 0.5370079 +0.5611974 0.4805811 0.5370079 +0.5687816 0.4805811 0.5370079 +0.092819 0.490876 0.5370079 +0.1056428 0.490876 0.5370079 +0.1201537 0.490876 0.5370079 +0.1409607 0.490876 0.5370079 +0.1678172 0.490876 0.5370079 +0.1950164 0.490876 0.5370079 +0.2210581 0.490876 0.5370079 +0.245636 0.490876 0.5370079 +0.2686816 0.490876 0.5370079 +0.2902431 0.490876 0.5370079 +0.3104189 0.490876 0.5370079 +0.3293248 0.490876 0.5370079 +0.3470774 0.490876 0.5370079 +0.3637862 0.490876 0.5370079 +0.3795513 0.490876 0.5370079 +0.3944623 0.490876 0.5370079 +0.4085988 0.490876 0.5370079 +0.4220313 0.490876 0.5370079 +0.4348222 0.490876 0.5370079 +0.4470264 0.490876 0.5370079 +0.4586928 0.490876 0.5370079 +0.4698649 0.490876 0.5370079 +0.4805811 0.490876 0.5370079 +0.490876 0.490876 0.5370079 +0.5007803 0.490876 0.5370079 +0.510322 0.490876 0.5370079 +0.5195258 0.490876 0.5370079 +0.5284142 0.490876 0.5370079 +0.5370079 0.490876 0.5370079 +0.5453253 0.490876 0.5370079 +0.5533834 0.490876 0.5370079 +0.5611974 0.490876 0.5370079 +0.5687816 0.490876 0.5370079 +0.092819 0.5007803 0.5370079 +0.1056428 0.5007803 0.5370079 +0.1201537 0.5007803 0.5370079 +0.1409607 0.5007803 0.5370079 +0.1678172 0.5007803 0.5370079 +0.1950164 0.5007803 0.5370079 +0.2210581 0.5007803 0.5370079 +0.245636 0.5007803 0.5370079 +0.2686816 0.5007803 0.5370079 +0.2902431 0.5007803 0.5370079 +0.3104189 0.5007803 0.5370079 +0.3293248 0.5007803 0.5370079 +0.3470774 0.5007803 0.5370079 +0.3637862 0.5007803 0.5370079 +0.3795513 0.5007803 0.5370079 +0.3944623 0.5007803 0.5370079 +0.4085988 0.5007803 0.5370079 +0.4220313 0.5007803 0.5370079 +0.4348222 0.5007803 0.5370079 +0.4470264 0.5007803 0.5370079 +0.4586928 0.5007803 0.5370079 +0.4698649 0.5007803 0.5370079 +0.4805811 0.5007803 0.5370079 +0.490876 0.5007803 0.5370079 +0.5007803 0.5007803 0.5370079 +0.510322 0.5007803 0.5370079 +0.5195258 0.5007803 0.5370079 +0.5284142 0.5007803 0.5370079 +0.5370079 0.5007803 0.5370079 +0.5453253 0.5007803 0.5370079 +0.5533834 0.5007803 0.5370079 +0.5611974 0.5007803 0.5370079 +0.5687816 0.5007803 0.5370079 +0.092819 0.510322 0.5370079 +0.1056428 0.510322 0.5370079 +0.1201537 0.510322 0.5370079 +0.1409607 0.510322 0.5370079 +0.1678172 0.510322 0.5370079 +0.1950164 0.510322 0.5370079 +0.2210581 0.510322 0.5370079 +0.245636 0.510322 0.5370079 +0.2686816 0.510322 0.5370079 +0.2902431 0.510322 0.5370079 +0.3104189 0.510322 0.5370079 +0.3293248 0.510322 0.5370079 +0.3470774 0.510322 0.5370079 +0.3637862 0.510322 0.5370079 +0.3795513 0.510322 0.5370079 +0.3944623 0.510322 0.5370079 +0.4085988 0.510322 0.5370079 +0.4220313 0.510322 0.5370079 +0.4348222 0.510322 0.5370079 +0.4470264 0.510322 0.5370079 +0.4586928 0.510322 0.5370079 +0.4698649 0.510322 0.5370079 +0.4805811 0.510322 0.5370079 +0.490876 0.510322 0.5370079 +0.5007803 0.510322 0.5370079 +0.510322 0.510322 0.5370079 +0.5195258 0.510322 0.5370079 +0.5284142 0.510322 0.5370079 +0.5370079 0.510322 0.5370079 +0.5453253 0.510322 0.5370079 +0.5533834 0.510322 0.5370079 +0.5611974 0.510322 0.5370079 +0.5687816 0.510322 0.5370079 +0.092819 0.5195258 0.5370079 +0.1056428 0.5195258 0.5370079 +0.1201537 0.5195258 0.5370079 +0.1409607 0.5195258 0.5370079 +0.1678172 0.5195258 0.5370079 +0.1950164 0.5195258 0.5370079 +0.2210581 0.5195258 0.5370079 +0.245636 0.5195258 0.5370079 +0.2686816 0.5195258 0.5370079 +0.2902431 0.5195258 0.5370079 +0.3104189 0.5195258 0.5370079 +0.3293248 0.5195258 0.5370079 +0.3470774 0.5195258 0.5370079 +0.3637862 0.5195258 0.5370079 +0.3795513 0.5195258 0.5370079 +0.3944623 0.5195258 0.5370079 +0.4085988 0.5195258 0.5370079 +0.4220313 0.5195258 0.5370079 +0.4348222 0.5195258 0.5370079 +0.4470264 0.5195258 0.5370079 +0.4586928 0.5195258 0.5370079 +0.4698649 0.5195258 0.5370079 +0.4805811 0.5195258 0.5370079 +0.490876 0.5195258 0.5370079 +0.5007803 0.5195258 0.5370079 +0.510322 0.5195258 0.5370079 +0.5195258 0.5195258 0.5370079 +0.5284142 0.5195258 0.5370079 +0.5370079 0.5195258 0.5370079 +0.5453253 0.5195258 0.5370079 +0.5533834 0.5195258 0.5370079 +0.5611974 0.5195258 0.5370079 +0.5687816 0.5195258 0.5370079 +0.092819 0.5284142 0.5370079 +0.1056428 0.5284142 0.5370079 +0.1201537 0.5284142 0.5370079 +0.1409607 0.5284142 0.5370079 +0.1678172 0.5284142 0.5370079 +0.1950164 0.5284142 0.5370079 +0.2210581 0.5284142 0.5370079 +0.245636 0.5284142 0.5370079 +0.2686816 0.5284142 0.5370079 +0.2902431 0.5284142 0.5370079 +0.3104189 0.5284142 0.5370079 +0.3293248 0.5284142 0.5370079 +0.3470774 0.5284142 0.5370079 +0.3637862 0.5284142 0.5370079 +0.3795513 0.5284142 0.5370079 +0.3944623 0.5284142 0.5370079 +0.4085988 0.5284142 0.5370079 +0.4220313 0.5284142 0.5370079 +0.4348222 0.5284142 0.5370079 +0.4470264 0.5284142 0.5370079 +0.4586928 0.5284142 0.5370079 +0.4698649 0.5284142 0.5370079 +0.4805811 0.5284142 0.5370079 +0.490876 0.5284142 0.5370079 +0.5007803 0.5284142 0.5370079 +0.510322 0.5284142 0.5370079 +0.5195258 0.5284142 0.5370079 +0.5284142 0.5284142 0.5370079 +0.5370079 0.5284142 0.5370079 +0.5453253 0.5284142 0.5370079 +0.5533834 0.5284142 0.5370079 +0.5611974 0.5284142 0.5370079 +0.5687816 0.5284142 0.5370079 +0.092819 0.5370079 0.5370079 +0.1056428 0.5370079 0.5370079 +0.1201537 0.5370079 0.5370079 +0.1409607 0.5370079 0.5370079 +0.1678172 0.5370079 0.5370079 +0.1950164 0.5370079 0.5370079 +0.2210581 0.5370079 0.5370079 +0.245636 0.5370079 0.5370079 +0.2686816 0.5370079 0.5370079 +0.2902431 0.5370079 0.5370079 +0.3104189 0.5370079 0.5370079 +0.3293248 0.5370079 0.5370079 +0.3470774 0.5370079 0.5370079 +0.3637862 0.5370079 0.5370079 +0.3795513 0.5370079 0.5370079 +0.3944623 0.5370079 0.5370079 +0.4085988 0.5370079 0.5370079 +0.4220313 0.5370079 0.5370079 +0.4348222 0.5370079 0.5370079 +0.4470264 0.5370079 0.5370079 +0.4586928 0.5370079 0.5370079 +0.4698649 0.5370079 0.5370079 +0.4805811 0.5370079 0.5370079 +0.490876 0.5370079 0.5370079 +0.5007803 0.5370079 0.5370079 +0.510322 0.5370079 0.5370079 +0.5195258 0.5370079 0.5370079 +0.5284142 0.5370079 0.5370079 +0.5370079 0.5370079 0.5370079 +0.5453253 0.5370079 0.5370079 +0.5533834 0.5370079 0.5370079 +0.5611974 0.5370079 0.5370079 +0.5687816 0.5370079 0.5370079 +0.092819 0.5453253 0.5370079 +0.1056428 0.5453253 0.5370079 +0.1201537 0.5453253 0.5370079 +0.1409607 0.5453253 0.5370079 +0.1678172 0.5453253 0.5370079 +0.1950164 0.5453253 0.5370079 +0.2210581 0.5453253 0.5370079 +0.245636 0.5453253 0.5370079 +0.2686816 0.5453253 0.5370079 +0.2902431 0.5453253 0.5370079 +0.3104189 0.5453253 0.5370079 +0.3293248 0.5453253 0.5370079 +0.3470774 0.5453253 0.5370079 +0.3637862 0.5453253 0.5370079 +0.3795513 0.5453253 0.5370079 +0.3944623 0.5453253 0.5370079 +0.4085988 0.5453253 0.5370079 +0.4220313 0.5453253 0.5370079 +0.4348222 0.5453253 0.5370079 +0.4470264 0.5453253 0.5370079 +0.4586928 0.5453253 0.5370079 +0.4698649 0.5453253 0.5370079 +0.4805811 0.5453253 0.5370079 +0.490876 0.5453253 0.5370079 +0.5007803 0.5453253 0.5370079 +0.510322 0.5453253 0.5370079 +0.5195258 0.5453253 0.5370079 +0.5284142 0.5453253 0.5370079 +0.5370079 0.5453253 0.5370079 +0.5453253 0.5453253 0.5370079 +0.5533834 0.5453253 0.5370079 +0.5611974 0.5453253 0.5370079 +0.5687816 0.5453253 0.5370079 +0.092819 0.5533834 0.5370079 +0.1056428 0.5533834 0.5370079 +0.1201537 0.5533834 0.5370079 +0.1409607 0.5533834 0.5370079 +0.1678172 0.5533834 0.5370079 +0.1950164 0.5533834 0.5370079 +0.2210581 0.5533834 0.5370079 +0.245636 0.5533834 0.5370079 +0.2686816 0.5533834 0.5370079 +0.2902431 0.5533834 0.5370079 +0.3104189 0.5533834 0.5370079 +0.3293248 0.5533834 0.5370079 +0.3470774 0.5533834 0.5370079 +0.3637862 0.5533834 0.5370079 +0.3795513 0.5533834 0.5370079 +0.3944623 0.5533834 0.5370079 +0.4085988 0.5533834 0.5370079 +0.4220313 0.5533834 0.5370079 +0.4348222 0.5533834 0.5370079 +0.4470264 0.5533834 0.5370079 +0.4586928 0.5533834 0.5370079 +0.4698649 0.5533834 0.5370079 +0.4805811 0.5533834 0.5370079 +0.490876 0.5533834 0.5370079 +0.5007803 0.5533834 0.5370079 +0.510322 0.5533834 0.5370079 +0.5195258 0.5533834 0.5370079 +0.5284142 0.5533834 0.5370079 +0.5370079 0.5533834 0.5370079 +0.5453253 0.5533834 0.5370079 +0.5533834 0.5533834 0.5370079 +0.5611974 0.5533834 0.5370079 +0.5687816 0.5533834 0.5370079 +0.092819 0.5611974 0.5370079 +0.1056428 0.5611974 0.5370079 +0.1201537 0.5611974 0.5370079 +0.1409607 0.5611974 0.5370079 +0.1678172 0.5611974 0.5370079 +0.1950164 0.5611974 0.5370079 +0.2210581 0.5611974 0.5370079 +0.245636 0.5611974 0.5370079 +0.2686816 0.5611974 0.5370079 +0.2902431 0.5611974 0.5370079 +0.3104189 0.5611974 0.5370079 +0.3293248 0.5611974 0.5370079 +0.3470774 0.5611974 0.5370079 +0.3637862 0.5611974 0.5370079 +0.3795513 0.5611974 0.5370079 +0.3944623 0.5611974 0.5370079 +0.4085988 0.5611974 0.5370079 +0.4220313 0.5611974 0.5370079 +0.4348222 0.5611974 0.5370079 +0.4470264 0.5611974 0.5370079 +0.4586928 0.5611974 0.5370079 +0.4698649 0.5611974 0.5370079 +0.4805811 0.5611974 0.5370079 +0.490876 0.5611974 0.5370079 +0.5007803 0.5611974 0.5370079 +0.510322 0.5611974 0.5370079 +0.5195258 0.5611974 0.5370079 +0.5284142 0.5611974 0.5370079 +0.5370079 0.5611974 0.5370079 +0.5453253 0.5611974 0.5370079 +0.5533834 0.5611974 0.5370079 +0.5611974 0.5611974 0.5370079 +0.5687816 0.5611974 0.5370079 +0.092819 0.5687816 0.5370079 +0.1056428 0.5687816 0.5370079 +0.1201537 0.5687816 0.5370079 +0.1409607 0.5687816 0.5370079 +0.1678172 0.5687816 0.5370079 +0.1950164 0.5687816 0.5370079 +0.2210581 0.5687816 0.5370079 +0.245636 0.5687816 0.5370079 +0.2686816 0.5687816 0.5370079 +0.2902431 0.5687816 0.5370079 +0.3104189 0.5687816 0.5370079 +0.3293248 0.5687816 0.5370079 +0.3470774 0.5687816 0.5370079 +0.3637862 0.5687816 0.5370079 +0.3795513 0.5687816 0.5370079 +0.3944623 0.5687816 0.5370079 +0.4085988 0.5687816 0.5370079 +0.4220313 0.5687816 0.5370079 +0.4348222 0.5687816 0.5370079 +0.4470264 0.5687816 0.5370079 +0.4586928 0.5687816 0.5370079 +0.4698649 0.5687816 0.5370079 +0.4805811 0.5687816 0.5370079 +0.490876 0.5687816 0.5370079 +0.5007803 0.5687816 0.5370079 +0.510322 0.5687816 0.5370079 +0.5195258 0.5687816 0.5370079 +0.5284142 0.5687816 0.5370079 +0.5370079 0.5687816 0.5370079 +0.5453253 0.5687816 0.5370079 +0.5533834 0.5687816 0.5370079 +0.5611974 0.5687816 0.5370079 +0.5687816 0.5687816 0.5370079 +0.092819 0.092819 0.5453253 +0.1056428 0.092819 0.5453253 +0.1201537 0.092819 0.5453253 +0.1409607 0.092819 0.5453253 +0.1678172 0.092819 0.5453253 +0.1950164 0.092819 0.5453253 +0.2210581 0.092819 0.5453253 +0.245636 0.092819 0.5453253 +0.2686816 0.092819 0.5453253 +0.2902431 0.092819 0.5453253 +0.3104189 0.092819 0.5453253 +0.3293248 0.092819 0.5453253 +0.3470774 0.092819 0.5453253 +0.3637862 0.092819 0.5453253 +0.3795513 0.092819 0.5453253 +0.3944623 0.092819 0.5453253 +0.4085988 0.092819 0.5453253 +0.4220313 0.092819 0.5453253 +0.4348222 0.092819 0.5453253 +0.4470264 0.092819 0.5453253 +0.4586928 0.092819 0.5453253 +0.4698649 0.092819 0.5453253 +0.4805811 0.092819 0.5453253 +0.490876 0.092819 0.5453253 +0.5007803 0.092819 0.5453253 +0.510322 0.092819 0.5453253 +0.5195258 0.092819 0.5453253 +0.5284142 0.092819 0.5453253 +0.5370079 0.092819 0.5453253 +0.5453253 0.092819 0.5453253 +0.5533834 0.092819 0.5453253 +0.5611974 0.092819 0.5453253 +0.5687816 0.092819 0.5453253 +0.092819 0.1056428 0.5453253 +0.1056428 0.1056428 0.5453253 +0.1201537 0.1056428 0.5453253 +0.1409607 0.1056428 0.5453253 +0.1678172 0.1056428 0.5453253 +0.1950164 0.1056428 0.5453253 +0.2210581 0.1056428 0.5453253 +0.245636 0.1056428 0.5453253 +0.2686816 0.1056428 0.5453253 +0.2902431 0.1056428 0.5453253 +0.3104189 0.1056428 0.5453253 +0.3293248 0.1056428 0.5453253 +0.3470774 0.1056428 0.5453253 +0.3637862 0.1056428 0.5453253 +0.3795513 0.1056428 0.5453253 +0.3944623 0.1056428 0.5453253 +0.4085988 0.1056428 0.5453253 +0.4220313 0.1056428 0.5453253 +0.4348222 0.1056428 0.5453253 +0.4470264 0.1056428 0.5453253 +0.4586928 0.1056428 0.5453253 +0.4698649 0.1056428 0.5453253 +0.4805811 0.1056428 0.5453253 +0.490876 0.1056428 0.5453253 +0.5007803 0.1056428 0.5453253 +0.510322 0.1056428 0.5453253 +0.5195258 0.1056428 0.5453253 +0.5284142 0.1056428 0.5453253 +0.5370079 0.1056428 0.5453253 +0.5453253 0.1056428 0.5453253 +0.5533834 0.1056428 0.5453253 +0.5611974 0.1056428 0.5453253 +0.5687816 0.1056428 0.5453253 +0.092819 0.1201537 0.5453253 +0.1056428 0.1201537 0.5453253 +0.1201537 0.1201537 0.5453253 +0.1409607 0.1201537 0.5453253 +0.1678172 0.1201537 0.5453253 +0.1950164 0.1201537 0.5453253 +0.2210581 0.1201537 0.5453253 +0.245636 0.1201537 0.5453253 +0.2686816 0.1201537 0.5453253 +0.2902431 0.1201537 0.5453253 +0.3104189 0.1201537 0.5453253 +0.3293248 0.1201537 0.5453253 +0.3470774 0.1201537 0.5453253 +0.3637862 0.1201537 0.5453253 +0.3795513 0.1201537 0.5453253 +0.3944623 0.1201537 0.5453253 +0.4085988 0.1201537 0.5453253 +0.4220313 0.1201537 0.5453253 +0.4348222 0.1201537 0.5453253 +0.4470264 0.1201537 0.5453253 +0.4586928 0.1201537 0.5453253 +0.4698649 0.1201537 0.5453253 +0.4805811 0.1201537 0.5453253 +0.490876 0.1201537 0.5453253 +0.5007803 0.1201537 0.5453253 +0.510322 0.1201537 0.5453253 +0.5195258 0.1201537 0.5453253 +0.5284142 0.1201537 0.5453253 +0.5370079 0.1201537 0.5453253 +0.5453253 0.1201537 0.5453253 +0.5533834 0.1201537 0.5453253 +0.5611974 0.1201537 0.5453253 +0.5687816 0.1201537 0.5453253 +0.092819 0.1409607 0.5453253 +0.1056428 0.1409607 0.5453253 +0.1201537 0.1409607 0.5453253 +0.1409607 0.1409607 0.5453253 +0.1678172 0.1409607 0.5453253 +0.1950164 0.1409607 0.5453253 +0.2210581 0.1409607 0.5453253 +0.245636 0.1409607 0.5453253 +0.2686816 0.1409607 0.5453253 +0.2902431 0.1409607 0.5453253 +0.3104189 0.1409607 0.5453253 +0.3293248 0.1409607 0.5453253 +0.3470774 0.1409607 0.5453253 +0.3637862 0.1409607 0.5453253 +0.3795513 0.1409607 0.5453253 +0.3944623 0.1409607 0.5453253 +0.4085988 0.1409607 0.5453253 +0.4220313 0.1409607 0.5453253 +0.4348222 0.1409607 0.5453253 +0.4470264 0.1409607 0.5453253 +0.4586928 0.1409607 0.5453253 +0.4698649 0.1409607 0.5453253 +0.4805811 0.1409607 0.5453253 +0.490876 0.1409607 0.5453253 +0.5007803 0.1409607 0.5453253 +0.510322 0.1409607 0.5453253 +0.5195258 0.1409607 0.5453253 +0.5284142 0.1409607 0.5453253 +0.5370079 0.1409607 0.5453253 +0.5453253 0.1409607 0.5453253 +0.5533834 0.1409607 0.5453253 +0.5611974 0.1409607 0.5453253 +0.5687816 0.1409607 0.5453253 +0.092819 0.1678172 0.5453253 +0.1056428 0.1678172 0.5453253 +0.1201537 0.1678172 0.5453253 +0.1409607 0.1678172 0.5453253 +0.1678172 0.1678172 0.5453253 +0.1950164 0.1678172 0.5453253 +0.2210581 0.1678172 0.5453253 +0.245636 0.1678172 0.5453253 +0.2686816 0.1678172 0.5453253 +0.2902431 0.1678172 0.5453253 +0.3104189 0.1678172 0.5453253 +0.3293248 0.1678172 0.5453253 +0.3470774 0.1678172 0.5453253 +0.3637862 0.1678172 0.5453253 +0.3795513 0.1678172 0.5453253 +0.3944623 0.1678172 0.5453253 +0.4085988 0.1678172 0.5453253 +0.4220313 0.1678172 0.5453253 +0.4348222 0.1678172 0.5453253 +0.4470264 0.1678172 0.5453253 +0.4586928 0.1678172 0.5453253 +0.4698649 0.1678172 0.5453253 +0.4805811 0.1678172 0.5453253 +0.490876 0.1678172 0.5453253 +0.5007803 0.1678172 0.5453253 +0.510322 0.1678172 0.5453253 +0.5195258 0.1678172 0.5453253 +0.5284142 0.1678172 0.5453253 +0.5370079 0.1678172 0.5453253 +0.5453253 0.1678172 0.5453253 +0.5533834 0.1678172 0.5453253 +0.5611974 0.1678172 0.5453253 +0.5687816 0.1678172 0.5453253 +0.092819 0.1950164 0.5453253 +0.1056428 0.1950164 0.5453253 +0.1201537 0.1950164 0.5453253 +0.1409607 0.1950164 0.5453253 +0.1678172 0.1950164 0.5453253 +0.1950164 0.1950164 0.5453253 +0.2210581 0.1950164 0.5453253 +0.245636 0.1950164 0.5453253 +0.2686816 0.1950164 0.5453253 +0.2902431 0.1950164 0.5453253 +0.3104189 0.1950164 0.5453253 +0.3293248 0.1950164 0.5453253 +0.3470774 0.1950164 0.5453253 +0.3637862 0.1950164 0.5453253 +0.3795513 0.1950164 0.5453253 +0.3944623 0.1950164 0.5453253 +0.4085988 0.1950164 0.5453253 +0.4220313 0.1950164 0.5453253 +0.4348222 0.1950164 0.5453253 +0.4470264 0.1950164 0.5453253 +0.4586928 0.1950164 0.5453253 +0.4698649 0.1950164 0.5453253 +0.4805811 0.1950164 0.5453253 +0.490876 0.1950164 0.5453253 +0.5007803 0.1950164 0.5453253 +0.510322 0.1950164 0.5453253 +0.5195258 0.1950164 0.5453253 +0.5284142 0.1950164 0.5453253 +0.5370079 0.1950164 0.5453253 +0.5453253 0.1950164 0.5453253 +0.5533834 0.1950164 0.5453253 +0.5611974 0.1950164 0.5453253 +0.5687816 0.1950164 0.5453253 +0.092819 0.2210581 0.5453253 +0.1056428 0.2210581 0.5453253 +0.1201537 0.2210581 0.5453253 +0.1409607 0.2210581 0.5453253 +0.1678172 0.2210581 0.5453253 +0.1950164 0.2210581 0.5453253 +0.2210581 0.2210581 0.5453253 +0.245636 0.2210581 0.5453253 +0.2686816 0.2210581 0.5453253 +0.2902431 0.2210581 0.5453253 +0.3104189 0.2210581 0.5453253 +0.3293248 0.2210581 0.5453253 +0.3470774 0.2210581 0.5453253 +0.3637862 0.2210581 0.5453253 +0.3795513 0.2210581 0.5453253 +0.3944623 0.2210581 0.5453253 +0.4085988 0.2210581 0.5453253 +0.4220313 0.2210581 0.5453253 +0.4348222 0.2210581 0.5453253 +0.4470264 0.2210581 0.5453253 +0.4586928 0.2210581 0.5453253 +0.4698649 0.2210581 0.5453253 +0.4805811 0.2210581 0.5453253 +0.490876 0.2210581 0.5453253 +0.5007803 0.2210581 0.5453253 +0.510322 0.2210581 0.5453253 +0.5195258 0.2210581 0.5453253 +0.5284142 0.2210581 0.5453253 +0.5370079 0.2210581 0.5453253 +0.5453253 0.2210581 0.5453253 +0.5533834 0.2210581 0.5453253 +0.5611974 0.2210581 0.5453253 +0.5687816 0.2210581 0.5453253 +0.092819 0.245636 0.5453253 +0.1056428 0.245636 0.5453253 +0.1201537 0.245636 0.5453253 +0.1409607 0.245636 0.5453253 +0.1678172 0.245636 0.5453253 +0.1950164 0.245636 0.5453253 +0.2210581 0.245636 0.5453253 +0.245636 0.245636 0.5453253 +0.2686816 0.245636 0.5453253 +0.2902431 0.245636 0.5453253 +0.3104189 0.245636 0.5453253 +0.3293248 0.245636 0.5453253 +0.3470774 0.245636 0.5453253 +0.3637862 0.245636 0.5453253 +0.3795513 0.245636 0.5453253 +0.3944623 0.245636 0.5453253 +0.4085988 0.245636 0.5453253 +0.4220313 0.245636 0.5453253 +0.4348222 0.245636 0.5453253 +0.4470264 0.245636 0.5453253 +0.4586928 0.245636 0.5453253 +0.4698649 0.245636 0.5453253 +0.4805811 0.245636 0.5453253 +0.490876 0.245636 0.5453253 +0.5007803 0.245636 0.5453253 +0.510322 0.245636 0.5453253 +0.5195258 0.245636 0.5453253 +0.5284142 0.245636 0.5453253 +0.5370079 0.245636 0.5453253 +0.5453253 0.245636 0.5453253 +0.5533834 0.245636 0.5453253 +0.5611974 0.245636 0.5453253 +0.5687816 0.245636 0.5453253 +0.092819 0.2686816 0.5453253 +0.1056428 0.2686816 0.5453253 +0.1201537 0.2686816 0.5453253 +0.1409607 0.2686816 0.5453253 +0.1678172 0.2686816 0.5453253 +0.1950164 0.2686816 0.5453253 +0.2210581 0.2686816 0.5453253 +0.245636 0.2686816 0.5453253 +0.2686816 0.2686816 0.5453253 +0.2902431 0.2686816 0.5453253 +0.3104189 0.2686816 0.5453253 +0.3293248 0.2686816 0.5453253 +0.3470774 0.2686816 0.5453253 +0.3637862 0.2686816 0.5453253 +0.3795513 0.2686816 0.5453253 +0.3944623 0.2686816 0.5453253 +0.4085988 0.2686816 0.5453253 +0.4220313 0.2686816 0.5453253 +0.4348222 0.2686816 0.5453253 +0.4470264 0.2686816 0.5453253 +0.4586928 0.2686816 0.5453253 +0.4698649 0.2686816 0.5453253 +0.4805811 0.2686816 0.5453253 +0.490876 0.2686816 0.5453253 +0.5007803 0.2686816 0.5453253 +0.510322 0.2686816 0.5453253 +0.5195258 0.2686816 0.5453253 +0.5284142 0.2686816 0.5453253 +0.5370079 0.2686816 0.5453253 +0.5453253 0.2686816 0.5453253 +0.5533834 0.2686816 0.5453253 +0.5611974 0.2686816 0.5453253 +0.5687816 0.2686816 0.5453253 +0.092819 0.2902431 0.5453253 +0.1056428 0.2902431 0.5453253 +0.1201537 0.2902431 0.5453253 +0.1409607 0.2902431 0.5453253 +0.1678172 0.2902431 0.5453253 +0.1950164 0.2902431 0.5453253 +0.2210581 0.2902431 0.5453253 +0.245636 0.2902431 0.5453253 +0.2686816 0.2902431 0.5453253 +0.2902431 0.2902431 0.5453253 +0.3104189 0.2902431 0.5453253 +0.3293248 0.2902431 0.5453253 +0.3470774 0.2902431 0.5453253 +0.3637862 0.2902431 0.5453253 +0.3795513 0.2902431 0.5453253 +0.3944623 0.2902431 0.5453253 +0.4085988 0.2902431 0.5453253 +0.4220313 0.2902431 0.5453253 +0.4348222 0.2902431 0.5453253 +0.4470264 0.2902431 0.5453253 +0.4586928 0.2902431 0.5453253 +0.4698649 0.2902431 0.5453253 +0.4805811 0.2902431 0.5453253 +0.490876 0.2902431 0.5453253 +0.5007803 0.2902431 0.5453253 +0.510322 0.2902431 0.5453253 +0.5195258 0.2902431 0.5453253 +0.5284142 0.2902431 0.5453253 +0.5370079 0.2902431 0.5453253 +0.5453253 0.2902431 0.5453253 +0.5533834 0.2902431 0.5453253 +0.5611974 0.2902431 0.5453253 +0.5687816 0.2902431 0.5453253 +0.092819 0.3104189 0.5453253 +0.1056428 0.3104189 0.5453253 +0.1201537 0.3104189 0.5453253 +0.1409607 0.3104189 0.5453253 +0.1678172 0.3104189 0.5453253 +0.1950164 0.3104189 0.5453253 +0.2210581 0.3104189 0.5453253 +0.245636 0.3104189 0.5453253 +0.2686816 0.3104189 0.5453253 +0.2902431 0.3104189 0.5453253 +0.3104189 0.3104189 0.5453253 +0.3293248 0.3104189 0.5453253 +0.3470774 0.3104189 0.5453253 +0.3637862 0.3104189 0.5453253 +0.3795513 0.3104189 0.5453253 +0.3944623 0.3104189 0.5453253 +0.4085988 0.3104189 0.5453253 +0.4220313 0.3104189 0.5453253 +0.4348222 0.3104189 0.5453253 +0.4470264 0.3104189 0.5453253 +0.4586928 0.3104189 0.5453253 +0.4698649 0.3104189 0.5453253 +0.4805811 0.3104189 0.5453253 +0.490876 0.3104189 0.5453253 +0.5007803 0.3104189 0.5453253 +0.510322 0.3104189 0.5453253 +0.5195258 0.3104189 0.5453253 +0.5284142 0.3104189 0.5453253 +0.5370079 0.3104189 0.5453253 +0.5453253 0.3104189 0.5453253 +0.5533834 0.3104189 0.5453253 +0.5611974 0.3104189 0.5453253 +0.5687816 0.3104189 0.5453253 +0.092819 0.3293248 0.5453253 +0.1056428 0.3293248 0.5453253 +0.1201537 0.3293248 0.5453253 +0.1409607 0.3293248 0.5453253 +0.1678172 0.3293248 0.5453253 +0.1950164 0.3293248 0.5453253 +0.2210581 0.3293248 0.5453253 +0.245636 0.3293248 0.5453253 +0.2686816 0.3293248 0.5453253 +0.2902431 0.3293248 0.5453253 +0.3104189 0.3293248 0.5453253 +0.3293248 0.3293248 0.5453253 +0.3470774 0.3293248 0.5453253 +0.3637862 0.3293248 0.5453253 +0.3795513 0.3293248 0.5453253 +0.3944623 0.3293248 0.5453253 +0.4085988 0.3293248 0.5453253 +0.4220313 0.3293248 0.5453253 +0.4348222 0.3293248 0.5453253 +0.4470264 0.3293248 0.5453253 +0.4586928 0.3293248 0.5453253 +0.4698649 0.3293248 0.5453253 +0.4805811 0.3293248 0.5453253 +0.490876 0.3293248 0.5453253 +0.5007803 0.3293248 0.5453253 +0.510322 0.3293248 0.5453253 +0.5195258 0.3293248 0.5453253 +0.5284142 0.3293248 0.5453253 +0.5370079 0.3293248 0.5453253 +0.5453253 0.3293248 0.5453253 +0.5533834 0.3293248 0.5453253 +0.5611974 0.3293248 0.5453253 +0.5687816 0.3293248 0.5453253 +0.092819 0.3470774 0.5453253 +0.1056428 0.3470774 0.5453253 +0.1201537 0.3470774 0.5453253 +0.1409607 0.3470774 0.5453253 +0.1678172 0.3470774 0.5453253 +0.1950164 0.3470774 0.5453253 +0.2210581 0.3470774 0.5453253 +0.245636 0.3470774 0.5453253 +0.2686816 0.3470774 0.5453253 +0.2902431 0.3470774 0.5453253 +0.3104189 0.3470774 0.5453253 +0.3293248 0.3470774 0.5453253 +0.3470774 0.3470774 0.5453253 +0.3637862 0.3470774 0.5453253 +0.3795513 0.3470774 0.5453253 +0.3944623 0.3470774 0.5453253 +0.4085988 0.3470774 0.5453253 +0.4220313 0.3470774 0.5453253 +0.4348222 0.3470774 0.5453253 +0.4470264 0.3470774 0.5453253 +0.4586928 0.3470774 0.5453253 +0.4698649 0.3470774 0.5453253 +0.4805811 0.3470774 0.5453253 +0.490876 0.3470774 0.5453253 +0.5007803 0.3470774 0.5453253 +0.510322 0.3470774 0.5453253 +0.5195258 0.3470774 0.5453253 +0.5284142 0.3470774 0.5453253 +0.5370079 0.3470774 0.5453253 +0.5453253 0.3470774 0.5453253 +0.5533834 0.3470774 0.5453253 +0.5611974 0.3470774 0.5453253 +0.5687816 0.3470774 0.5453253 +0.092819 0.3637862 0.5453253 +0.1056428 0.3637862 0.5453253 +0.1201537 0.3637862 0.5453253 +0.1409607 0.3637862 0.5453253 +0.1678172 0.3637862 0.5453253 +0.1950164 0.3637862 0.5453253 +0.2210581 0.3637862 0.5453253 +0.245636 0.3637862 0.5453253 +0.2686816 0.3637862 0.5453253 +0.2902431 0.3637862 0.5453253 +0.3104189 0.3637862 0.5453253 +0.3293248 0.3637862 0.5453253 +0.3470774 0.3637862 0.5453253 +0.3637862 0.3637862 0.5453253 +0.3795513 0.3637862 0.5453253 +0.3944623 0.3637862 0.5453253 +0.4085988 0.3637862 0.5453253 +0.4220313 0.3637862 0.5453253 +0.4348222 0.3637862 0.5453253 +0.4470264 0.3637862 0.5453253 +0.4586928 0.3637862 0.5453253 +0.4698649 0.3637862 0.5453253 +0.4805811 0.3637862 0.5453253 +0.490876 0.3637862 0.5453253 +0.5007803 0.3637862 0.5453253 +0.510322 0.3637862 0.5453253 +0.5195258 0.3637862 0.5453253 +0.5284142 0.3637862 0.5453253 +0.5370079 0.3637862 0.5453253 +0.5453253 0.3637862 0.5453253 +0.5533834 0.3637862 0.5453253 +0.5611974 0.3637862 0.5453253 +0.5687816 0.3637862 0.5453253 +0.092819 0.3795513 0.5453253 +0.1056428 0.3795513 0.5453253 +0.1201537 0.3795513 0.5453253 +0.1409607 0.3795513 0.5453253 +0.1678172 0.3795513 0.5453253 +0.1950164 0.3795513 0.5453253 +0.2210581 0.3795513 0.5453253 +0.245636 0.3795513 0.5453253 +0.2686816 0.3795513 0.5453253 +0.2902431 0.3795513 0.5453253 +0.3104189 0.3795513 0.5453253 +0.3293248 0.3795513 0.5453253 +0.3470774 0.3795513 0.5453253 +0.3637862 0.3795513 0.5453253 +0.3795513 0.3795513 0.5453253 +0.3944623 0.3795513 0.5453253 +0.4085988 0.3795513 0.5453253 +0.4220313 0.3795513 0.5453253 +0.4348222 0.3795513 0.5453253 +0.4470264 0.3795513 0.5453253 +0.4586928 0.3795513 0.5453253 +0.4698649 0.3795513 0.5453253 +0.4805811 0.3795513 0.5453253 +0.490876 0.3795513 0.5453253 +0.5007803 0.3795513 0.5453253 +0.510322 0.3795513 0.5453253 +0.5195258 0.3795513 0.5453253 +0.5284142 0.3795513 0.5453253 +0.5370079 0.3795513 0.5453253 +0.5453253 0.3795513 0.5453253 +0.5533834 0.3795513 0.5453253 +0.5611974 0.3795513 0.5453253 +0.5687816 0.3795513 0.5453253 +0.092819 0.3944623 0.5453253 +0.1056428 0.3944623 0.5453253 +0.1201537 0.3944623 0.5453253 +0.1409607 0.3944623 0.5453253 +0.1678172 0.3944623 0.5453253 +0.1950164 0.3944623 0.5453253 +0.2210581 0.3944623 0.5453253 +0.245636 0.3944623 0.5453253 +0.2686816 0.3944623 0.5453253 +0.2902431 0.3944623 0.5453253 +0.3104189 0.3944623 0.5453253 +0.3293248 0.3944623 0.5453253 +0.3470774 0.3944623 0.5453253 +0.3637862 0.3944623 0.5453253 +0.3795513 0.3944623 0.5453253 +0.3944623 0.3944623 0.5453253 +0.4085988 0.3944623 0.5453253 +0.4220313 0.3944623 0.5453253 +0.4348222 0.3944623 0.5453253 +0.4470264 0.3944623 0.5453253 +0.4586928 0.3944623 0.5453253 +0.4698649 0.3944623 0.5453253 +0.4805811 0.3944623 0.5453253 +0.490876 0.3944623 0.5453253 +0.5007803 0.3944623 0.5453253 +0.510322 0.3944623 0.5453253 +0.5195258 0.3944623 0.5453253 +0.5284142 0.3944623 0.5453253 +0.5370079 0.3944623 0.5453253 +0.5453253 0.3944623 0.5453253 +0.5533834 0.3944623 0.5453253 +0.5611974 0.3944623 0.5453253 +0.5687816 0.3944623 0.5453253 +0.092819 0.4085988 0.5453253 +0.1056428 0.4085988 0.5453253 +0.1201537 0.4085988 0.5453253 +0.1409607 0.4085988 0.5453253 +0.1678172 0.4085988 0.5453253 +0.1950164 0.4085988 0.5453253 +0.2210581 0.4085988 0.5453253 +0.245636 0.4085988 0.5453253 +0.2686816 0.4085988 0.5453253 +0.2902431 0.4085988 0.5453253 +0.3104189 0.4085988 0.5453253 +0.3293248 0.4085988 0.5453253 +0.3470774 0.4085988 0.5453253 +0.3637862 0.4085988 0.5453253 +0.3795513 0.4085988 0.5453253 +0.3944623 0.4085988 0.5453253 +0.4085988 0.4085988 0.5453253 +0.4220313 0.4085988 0.5453253 +0.4348222 0.4085988 0.5453253 +0.4470264 0.4085988 0.5453253 +0.4586928 0.4085988 0.5453253 +0.4698649 0.4085988 0.5453253 +0.4805811 0.4085988 0.5453253 +0.490876 0.4085988 0.5453253 +0.5007803 0.4085988 0.5453253 +0.510322 0.4085988 0.5453253 +0.5195258 0.4085988 0.5453253 +0.5284142 0.4085988 0.5453253 +0.5370079 0.4085988 0.5453253 +0.5453253 0.4085988 0.5453253 +0.5533834 0.4085988 0.5453253 +0.5611974 0.4085988 0.5453253 +0.5687816 0.4085988 0.5453253 +0.092819 0.4220313 0.5453253 +0.1056428 0.4220313 0.5453253 +0.1201537 0.4220313 0.5453253 +0.1409607 0.4220313 0.5453253 +0.1678172 0.4220313 0.5453253 +0.1950164 0.4220313 0.5453253 +0.2210581 0.4220313 0.5453253 +0.245636 0.4220313 0.5453253 +0.2686816 0.4220313 0.5453253 +0.2902431 0.4220313 0.5453253 +0.3104189 0.4220313 0.5453253 +0.3293248 0.4220313 0.5453253 +0.3470774 0.4220313 0.5453253 +0.3637862 0.4220313 0.5453253 +0.3795513 0.4220313 0.5453253 +0.3944623 0.4220313 0.5453253 +0.4085988 0.4220313 0.5453253 +0.4220313 0.4220313 0.5453253 +0.4348222 0.4220313 0.5453253 +0.4470264 0.4220313 0.5453253 +0.4586928 0.4220313 0.5453253 +0.4698649 0.4220313 0.5453253 +0.4805811 0.4220313 0.5453253 +0.490876 0.4220313 0.5453253 +0.5007803 0.4220313 0.5453253 +0.510322 0.4220313 0.5453253 +0.5195258 0.4220313 0.5453253 +0.5284142 0.4220313 0.5453253 +0.5370079 0.4220313 0.5453253 +0.5453253 0.4220313 0.5453253 +0.5533834 0.4220313 0.5453253 +0.5611974 0.4220313 0.5453253 +0.5687816 0.4220313 0.5453253 +0.092819 0.4348222 0.5453253 +0.1056428 0.4348222 0.5453253 +0.1201537 0.4348222 0.5453253 +0.1409607 0.4348222 0.5453253 +0.1678172 0.4348222 0.5453253 +0.1950164 0.4348222 0.5453253 +0.2210581 0.4348222 0.5453253 +0.245636 0.4348222 0.5453253 +0.2686816 0.4348222 0.5453253 +0.2902431 0.4348222 0.5453253 +0.3104189 0.4348222 0.5453253 +0.3293248 0.4348222 0.5453253 +0.3470774 0.4348222 0.5453253 +0.3637862 0.4348222 0.5453253 +0.3795513 0.4348222 0.5453253 +0.3944623 0.4348222 0.5453253 +0.4085988 0.4348222 0.5453253 +0.4220313 0.4348222 0.5453253 +0.4348222 0.4348222 0.5453253 +0.4470264 0.4348222 0.5453253 +0.4586928 0.4348222 0.5453253 +0.4698649 0.4348222 0.5453253 +0.4805811 0.4348222 0.5453253 +0.490876 0.4348222 0.5453253 +0.5007803 0.4348222 0.5453253 +0.510322 0.4348222 0.5453253 +0.5195258 0.4348222 0.5453253 +0.5284142 0.4348222 0.5453253 +0.5370079 0.4348222 0.5453253 +0.5453253 0.4348222 0.5453253 +0.5533834 0.4348222 0.5453253 +0.5611974 0.4348222 0.5453253 +0.5687816 0.4348222 0.5453253 +0.092819 0.4470264 0.5453253 +0.1056428 0.4470264 0.5453253 +0.1201537 0.4470264 0.5453253 +0.1409607 0.4470264 0.5453253 +0.1678172 0.4470264 0.5453253 +0.1950164 0.4470264 0.5453253 +0.2210581 0.4470264 0.5453253 +0.245636 0.4470264 0.5453253 +0.2686816 0.4470264 0.5453253 +0.2902431 0.4470264 0.5453253 +0.3104189 0.4470264 0.5453253 +0.3293248 0.4470264 0.5453253 +0.3470774 0.4470264 0.5453253 +0.3637862 0.4470264 0.5453253 +0.3795513 0.4470264 0.5453253 +0.3944623 0.4470264 0.5453253 +0.4085988 0.4470264 0.5453253 +0.4220313 0.4470264 0.5453253 +0.4348222 0.4470264 0.5453253 +0.4470264 0.4470264 0.5453253 +0.4586928 0.4470264 0.5453253 +0.4698649 0.4470264 0.5453253 +0.4805811 0.4470264 0.5453253 +0.490876 0.4470264 0.5453253 +0.5007803 0.4470264 0.5453253 +0.510322 0.4470264 0.5453253 +0.5195258 0.4470264 0.5453253 +0.5284142 0.4470264 0.5453253 +0.5370079 0.4470264 0.5453253 +0.5453253 0.4470264 0.5453253 +0.5533834 0.4470264 0.5453253 +0.5611974 0.4470264 0.5453253 +0.5687816 0.4470264 0.5453253 +0.092819 0.4586928 0.5453253 +0.1056428 0.4586928 0.5453253 +0.1201537 0.4586928 0.5453253 +0.1409607 0.4586928 0.5453253 +0.1678172 0.4586928 0.5453253 +0.1950164 0.4586928 0.5453253 +0.2210581 0.4586928 0.5453253 +0.245636 0.4586928 0.5453253 +0.2686816 0.4586928 0.5453253 +0.2902431 0.4586928 0.5453253 +0.3104189 0.4586928 0.5453253 +0.3293248 0.4586928 0.5453253 +0.3470774 0.4586928 0.5453253 +0.3637862 0.4586928 0.5453253 +0.3795513 0.4586928 0.5453253 +0.3944623 0.4586928 0.5453253 +0.4085988 0.4586928 0.5453253 +0.4220313 0.4586928 0.5453253 +0.4348222 0.4586928 0.5453253 +0.4470264 0.4586928 0.5453253 +0.4586928 0.4586928 0.5453253 +0.4698649 0.4586928 0.5453253 +0.4805811 0.4586928 0.5453253 +0.490876 0.4586928 0.5453253 +0.5007803 0.4586928 0.5453253 +0.510322 0.4586928 0.5453253 +0.5195258 0.4586928 0.5453253 +0.5284142 0.4586928 0.5453253 +0.5370079 0.4586928 0.5453253 +0.5453253 0.4586928 0.5453253 +0.5533834 0.4586928 0.5453253 +0.5611974 0.4586928 0.5453253 +0.5687816 0.4586928 0.5453253 +0.092819 0.4698649 0.5453253 +0.1056428 0.4698649 0.5453253 +0.1201537 0.4698649 0.5453253 +0.1409607 0.4698649 0.5453253 +0.1678172 0.4698649 0.5453253 +0.1950164 0.4698649 0.5453253 +0.2210581 0.4698649 0.5453253 +0.245636 0.4698649 0.5453253 +0.2686816 0.4698649 0.5453253 +0.2902431 0.4698649 0.5453253 +0.3104189 0.4698649 0.5453253 +0.3293248 0.4698649 0.5453253 +0.3470774 0.4698649 0.5453253 +0.3637862 0.4698649 0.5453253 +0.3795513 0.4698649 0.5453253 +0.3944623 0.4698649 0.5453253 +0.4085988 0.4698649 0.5453253 +0.4220313 0.4698649 0.5453253 +0.4348222 0.4698649 0.5453253 +0.4470264 0.4698649 0.5453253 +0.4586928 0.4698649 0.5453253 +0.4698649 0.4698649 0.5453253 +0.4805811 0.4698649 0.5453253 +0.490876 0.4698649 0.5453253 +0.5007803 0.4698649 0.5453253 +0.510322 0.4698649 0.5453253 +0.5195258 0.4698649 0.5453253 +0.5284142 0.4698649 0.5453253 +0.5370079 0.4698649 0.5453253 +0.5453253 0.4698649 0.5453253 +0.5533834 0.4698649 0.5453253 +0.5611974 0.4698649 0.5453253 +0.5687816 0.4698649 0.5453253 +0.092819 0.4805811 0.5453253 +0.1056428 0.4805811 0.5453253 +0.1201537 0.4805811 0.5453253 +0.1409607 0.4805811 0.5453253 +0.1678172 0.4805811 0.5453253 +0.1950164 0.4805811 0.5453253 +0.2210581 0.4805811 0.5453253 +0.245636 0.4805811 0.5453253 +0.2686816 0.4805811 0.5453253 +0.2902431 0.4805811 0.5453253 +0.3104189 0.4805811 0.5453253 +0.3293248 0.4805811 0.5453253 +0.3470774 0.4805811 0.5453253 +0.3637862 0.4805811 0.5453253 +0.3795513 0.4805811 0.5453253 +0.3944623 0.4805811 0.5453253 +0.4085988 0.4805811 0.5453253 +0.4220313 0.4805811 0.5453253 +0.4348222 0.4805811 0.5453253 +0.4470264 0.4805811 0.5453253 +0.4586928 0.4805811 0.5453253 +0.4698649 0.4805811 0.5453253 +0.4805811 0.4805811 0.5453253 +0.490876 0.4805811 0.5453253 +0.5007803 0.4805811 0.5453253 +0.510322 0.4805811 0.5453253 +0.5195258 0.4805811 0.5453253 +0.5284142 0.4805811 0.5453253 +0.5370079 0.4805811 0.5453253 +0.5453253 0.4805811 0.5453253 +0.5533834 0.4805811 0.5453253 +0.5611974 0.4805811 0.5453253 +0.5687816 0.4805811 0.5453253 +0.092819 0.490876 0.5453253 +0.1056428 0.490876 0.5453253 +0.1201537 0.490876 0.5453253 +0.1409607 0.490876 0.5453253 +0.1678172 0.490876 0.5453253 +0.1950164 0.490876 0.5453253 +0.2210581 0.490876 0.5453253 +0.245636 0.490876 0.5453253 +0.2686816 0.490876 0.5453253 +0.2902431 0.490876 0.5453253 +0.3104189 0.490876 0.5453253 +0.3293248 0.490876 0.5453253 +0.3470774 0.490876 0.5453253 +0.3637862 0.490876 0.5453253 +0.3795513 0.490876 0.5453253 +0.3944623 0.490876 0.5453253 +0.4085988 0.490876 0.5453253 +0.4220313 0.490876 0.5453253 +0.4348222 0.490876 0.5453253 +0.4470264 0.490876 0.5453253 +0.4586928 0.490876 0.5453253 +0.4698649 0.490876 0.5453253 +0.4805811 0.490876 0.5453253 +0.490876 0.490876 0.5453253 +0.5007803 0.490876 0.5453253 +0.510322 0.490876 0.5453253 +0.5195258 0.490876 0.5453253 +0.5284142 0.490876 0.5453253 +0.5370079 0.490876 0.5453253 +0.5453253 0.490876 0.5453253 +0.5533834 0.490876 0.5453253 +0.5611974 0.490876 0.5453253 +0.5687816 0.490876 0.5453253 +0.092819 0.5007803 0.5453253 +0.1056428 0.5007803 0.5453253 +0.1201537 0.5007803 0.5453253 +0.1409607 0.5007803 0.5453253 +0.1678172 0.5007803 0.5453253 +0.1950164 0.5007803 0.5453253 +0.2210581 0.5007803 0.5453253 +0.245636 0.5007803 0.5453253 +0.2686816 0.5007803 0.5453253 +0.2902431 0.5007803 0.5453253 +0.3104189 0.5007803 0.5453253 +0.3293248 0.5007803 0.5453253 +0.3470774 0.5007803 0.5453253 +0.3637862 0.5007803 0.5453253 +0.3795513 0.5007803 0.5453253 +0.3944623 0.5007803 0.5453253 +0.4085988 0.5007803 0.5453253 +0.4220313 0.5007803 0.5453253 +0.4348222 0.5007803 0.5453253 +0.4470264 0.5007803 0.5453253 +0.4586928 0.5007803 0.5453253 +0.4698649 0.5007803 0.5453253 +0.4805811 0.5007803 0.5453253 +0.490876 0.5007803 0.5453253 +0.5007803 0.5007803 0.5453253 +0.510322 0.5007803 0.5453253 +0.5195258 0.5007803 0.5453253 +0.5284142 0.5007803 0.5453253 +0.5370079 0.5007803 0.5453253 +0.5453253 0.5007803 0.5453253 +0.5533834 0.5007803 0.5453253 +0.5611974 0.5007803 0.5453253 +0.5687816 0.5007803 0.5453253 +0.092819 0.510322 0.5453253 +0.1056428 0.510322 0.5453253 +0.1201537 0.510322 0.5453253 +0.1409607 0.510322 0.5453253 +0.1678172 0.510322 0.5453253 +0.1950164 0.510322 0.5453253 +0.2210581 0.510322 0.5453253 +0.245636 0.510322 0.5453253 +0.2686816 0.510322 0.5453253 +0.2902431 0.510322 0.5453253 +0.3104189 0.510322 0.5453253 +0.3293248 0.510322 0.5453253 +0.3470774 0.510322 0.5453253 +0.3637862 0.510322 0.5453253 +0.3795513 0.510322 0.5453253 +0.3944623 0.510322 0.5453253 +0.4085988 0.510322 0.5453253 +0.4220313 0.510322 0.5453253 +0.4348222 0.510322 0.5453253 +0.4470264 0.510322 0.5453253 +0.4586928 0.510322 0.5453253 +0.4698649 0.510322 0.5453253 +0.4805811 0.510322 0.5453253 +0.490876 0.510322 0.5453253 +0.5007803 0.510322 0.5453253 +0.510322 0.510322 0.5453253 +0.5195258 0.510322 0.5453253 +0.5284142 0.510322 0.5453253 +0.5370079 0.510322 0.5453253 +0.5453253 0.510322 0.5453253 +0.5533834 0.510322 0.5453253 +0.5611974 0.510322 0.5453253 +0.5687816 0.510322 0.5453253 +0.092819 0.5195258 0.5453253 +0.1056428 0.5195258 0.5453253 +0.1201537 0.5195258 0.5453253 +0.1409607 0.5195258 0.5453253 +0.1678172 0.5195258 0.5453253 +0.1950164 0.5195258 0.5453253 +0.2210581 0.5195258 0.5453253 +0.245636 0.5195258 0.5453253 +0.2686816 0.5195258 0.5453253 +0.2902431 0.5195258 0.5453253 +0.3104189 0.5195258 0.5453253 +0.3293248 0.5195258 0.5453253 +0.3470774 0.5195258 0.5453253 +0.3637862 0.5195258 0.5453253 +0.3795513 0.5195258 0.5453253 +0.3944623 0.5195258 0.5453253 +0.4085988 0.5195258 0.5453253 +0.4220313 0.5195258 0.5453253 +0.4348222 0.5195258 0.5453253 +0.4470264 0.5195258 0.5453253 +0.4586928 0.5195258 0.5453253 +0.4698649 0.5195258 0.5453253 +0.4805811 0.5195258 0.5453253 +0.490876 0.5195258 0.5453253 +0.5007803 0.5195258 0.5453253 +0.510322 0.5195258 0.5453253 +0.5195258 0.5195258 0.5453253 +0.5284142 0.5195258 0.5453253 +0.5370079 0.5195258 0.5453253 +0.5453253 0.5195258 0.5453253 +0.5533834 0.5195258 0.5453253 +0.5611974 0.5195258 0.5453253 +0.5687816 0.5195258 0.5453253 +0.092819 0.5284142 0.5453253 +0.1056428 0.5284142 0.5453253 +0.1201537 0.5284142 0.5453253 +0.1409607 0.5284142 0.5453253 +0.1678172 0.5284142 0.5453253 +0.1950164 0.5284142 0.5453253 +0.2210581 0.5284142 0.5453253 +0.245636 0.5284142 0.5453253 +0.2686816 0.5284142 0.5453253 +0.2902431 0.5284142 0.5453253 +0.3104189 0.5284142 0.5453253 +0.3293248 0.5284142 0.5453253 +0.3470774 0.5284142 0.5453253 +0.3637862 0.5284142 0.5453253 +0.3795513 0.5284142 0.5453253 +0.3944623 0.5284142 0.5453253 +0.4085988 0.5284142 0.5453253 +0.4220313 0.5284142 0.5453253 +0.4348222 0.5284142 0.5453253 +0.4470264 0.5284142 0.5453253 +0.4586928 0.5284142 0.5453253 +0.4698649 0.5284142 0.5453253 +0.4805811 0.5284142 0.5453253 +0.490876 0.5284142 0.5453253 +0.5007803 0.5284142 0.5453253 +0.510322 0.5284142 0.5453253 +0.5195258 0.5284142 0.5453253 +0.5284142 0.5284142 0.5453253 +0.5370079 0.5284142 0.5453253 +0.5453253 0.5284142 0.5453253 +0.5533834 0.5284142 0.5453253 +0.5611974 0.5284142 0.5453253 +0.5687816 0.5284142 0.5453253 +0.092819 0.5370079 0.5453253 +0.1056428 0.5370079 0.5453253 +0.1201537 0.5370079 0.5453253 +0.1409607 0.5370079 0.5453253 +0.1678172 0.5370079 0.5453253 +0.1950164 0.5370079 0.5453253 +0.2210581 0.5370079 0.5453253 +0.245636 0.5370079 0.5453253 +0.2686816 0.5370079 0.5453253 +0.2902431 0.5370079 0.5453253 +0.3104189 0.5370079 0.5453253 +0.3293248 0.5370079 0.5453253 +0.3470774 0.5370079 0.5453253 +0.3637862 0.5370079 0.5453253 +0.3795513 0.5370079 0.5453253 +0.3944623 0.5370079 0.5453253 +0.4085988 0.5370079 0.5453253 +0.4220313 0.5370079 0.5453253 +0.4348222 0.5370079 0.5453253 +0.4470264 0.5370079 0.5453253 +0.4586928 0.5370079 0.5453253 +0.4698649 0.5370079 0.5453253 +0.4805811 0.5370079 0.5453253 +0.490876 0.5370079 0.5453253 +0.5007803 0.5370079 0.5453253 +0.510322 0.5370079 0.5453253 +0.5195258 0.5370079 0.5453253 +0.5284142 0.5370079 0.5453253 +0.5370079 0.5370079 0.5453253 +0.5453253 0.5370079 0.5453253 +0.5533834 0.5370079 0.5453253 +0.5611974 0.5370079 0.5453253 +0.5687816 0.5370079 0.5453253 +0.092819 0.5453253 0.5453253 +0.1056428 0.5453253 0.5453253 +0.1201537 0.5453253 0.5453253 +0.1409607 0.5453253 0.5453253 +0.1678172 0.5453253 0.5453253 +0.1950164 0.5453253 0.5453253 +0.2210581 0.5453253 0.5453253 +0.245636 0.5453253 0.5453253 +0.2686816 0.5453253 0.5453253 +0.2902431 0.5453253 0.5453253 +0.3104189 0.5453253 0.5453253 +0.3293248 0.5453253 0.5453253 +0.3470774 0.5453253 0.5453253 +0.3637862 0.5453253 0.5453253 +0.3795513 0.5453253 0.5453253 +0.3944623 0.5453253 0.5453253 +0.4085988 0.5453253 0.5453253 +0.4220313 0.5453253 0.5453253 +0.4348222 0.5453253 0.5453253 +0.4470264 0.5453253 0.5453253 +0.4586928 0.5453253 0.5453253 +0.4698649 0.5453253 0.5453253 +0.4805811 0.5453253 0.5453253 +0.490876 0.5453253 0.5453253 +0.5007803 0.5453253 0.5453253 +0.510322 0.5453253 0.5453253 +0.5195258 0.5453253 0.5453253 +0.5284142 0.5453253 0.5453253 +0.5370079 0.5453253 0.5453253 +0.5453253 0.5453253 0.5453253 +0.5533834 0.5453253 0.5453253 +0.5611974 0.5453253 0.5453253 +0.5687816 0.5453253 0.5453253 +0.092819 0.5533834 0.5453253 +0.1056428 0.5533834 0.5453253 +0.1201537 0.5533834 0.5453253 +0.1409607 0.5533834 0.5453253 +0.1678172 0.5533834 0.5453253 +0.1950164 0.5533834 0.5453253 +0.2210581 0.5533834 0.5453253 +0.245636 0.5533834 0.5453253 +0.2686816 0.5533834 0.5453253 +0.2902431 0.5533834 0.5453253 +0.3104189 0.5533834 0.5453253 +0.3293248 0.5533834 0.5453253 +0.3470774 0.5533834 0.5453253 +0.3637862 0.5533834 0.5453253 +0.3795513 0.5533834 0.5453253 +0.3944623 0.5533834 0.5453253 +0.4085988 0.5533834 0.5453253 +0.4220313 0.5533834 0.5453253 +0.4348222 0.5533834 0.5453253 +0.4470264 0.5533834 0.5453253 +0.4586928 0.5533834 0.5453253 +0.4698649 0.5533834 0.5453253 +0.4805811 0.5533834 0.5453253 +0.490876 0.5533834 0.5453253 +0.5007803 0.5533834 0.5453253 +0.510322 0.5533834 0.5453253 +0.5195258 0.5533834 0.5453253 +0.5284142 0.5533834 0.5453253 +0.5370079 0.5533834 0.5453253 +0.5453253 0.5533834 0.5453253 +0.5533834 0.5533834 0.5453253 +0.5611974 0.5533834 0.5453253 +0.5687816 0.5533834 0.5453253 +0.092819 0.5611974 0.5453253 +0.1056428 0.5611974 0.5453253 +0.1201537 0.5611974 0.5453253 +0.1409607 0.5611974 0.5453253 +0.1678172 0.5611974 0.5453253 +0.1950164 0.5611974 0.5453253 +0.2210581 0.5611974 0.5453253 +0.245636 0.5611974 0.5453253 +0.2686816 0.5611974 0.5453253 +0.2902431 0.5611974 0.5453253 +0.3104189 0.5611974 0.5453253 +0.3293248 0.5611974 0.5453253 +0.3470774 0.5611974 0.5453253 +0.3637862 0.5611974 0.5453253 +0.3795513 0.5611974 0.5453253 +0.3944623 0.5611974 0.5453253 +0.4085988 0.5611974 0.5453253 +0.4220313 0.5611974 0.5453253 +0.4348222 0.5611974 0.5453253 +0.4470264 0.5611974 0.5453253 +0.4586928 0.5611974 0.5453253 +0.4698649 0.5611974 0.5453253 +0.4805811 0.5611974 0.5453253 +0.490876 0.5611974 0.5453253 +0.5007803 0.5611974 0.5453253 +0.510322 0.5611974 0.5453253 +0.5195258 0.5611974 0.5453253 +0.5284142 0.5611974 0.5453253 +0.5370079 0.5611974 0.5453253 +0.5453253 0.5611974 0.5453253 +0.5533834 0.5611974 0.5453253 +0.5611974 0.5611974 0.5453253 +0.5687816 0.5611974 0.5453253 +0.092819 0.5687816 0.5453253 +0.1056428 0.5687816 0.5453253 +0.1201537 0.5687816 0.5453253 +0.1409607 0.5687816 0.5453253 +0.1678172 0.5687816 0.5453253 +0.1950164 0.5687816 0.5453253 +0.2210581 0.5687816 0.5453253 +0.245636 0.5687816 0.5453253 +0.2686816 0.5687816 0.5453253 +0.2902431 0.5687816 0.5453253 +0.3104189 0.5687816 0.5453253 +0.3293248 0.5687816 0.5453253 +0.3470774 0.5687816 0.5453253 +0.3637862 0.5687816 0.5453253 +0.3795513 0.5687816 0.5453253 +0.3944623 0.5687816 0.5453253 +0.4085988 0.5687816 0.5453253 +0.4220313 0.5687816 0.5453253 +0.4348222 0.5687816 0.5453253 +0.4470264 0.5687816 0.5453253 +0.4586928 0.5687816 0.5453253 +0.4698649 0.5687816 0.5453253 +0.4805811 0.5687816 0.5453253 +0.490876 0.5687816 0.5453253 +0.5007803 0.5687816 0.5453253 +0.510322 0.5687816 0.5453253 +0.5195258 0.5687816 0.5453253 +0.5284142 0.5687816 0.5453253 +0.5370079 0.5687816 0.5453253 +0.5453253 0.5687816 0.5453253 +0.5533834 0.5687816 0.5453253 +0.5611974 0.5687816 0.5453253 +0.5687816 0.5687816 0.5453253 +0.092819 0.092819 0.5533834 +0.1056428 0.092819 0.5533834 +0.1201537 0.092819 0.5533834 +0.1409607 0.092819 0.5533834 +0.1678172 0.092819 0.5533834 +0.1950164 0.092819 0.5533834 +0.2210581 0.092819 0.5533834 +0.245636 0.092819 0.5533834 +0.2686816 0.092819 0.5533834 +0.2902431 0.092819 0.5533834 +0.3104189 0.092819 0.5533834 +0.3293248 0.092819 0.5533834 +0.3470774 0.092819 0.5533834 +0.3637862 0.092819 0.5533834 +0.3795513 0.092819 0.5533834 +0.3944623 0.092819 0.5533834 +0.4085988 0.092819 0.5533834 +0.4220313 0.092819 0.5533834 +0.4348222 0.092819 0.5533834 +0.4470264 0.092819 0.5533834 +0.4586928 0.092819 0.5533834 +0.4698649 0.092819 0.5533834 +0.4805811 0.092819 0.5533834 +0.490876 0.092819 0.5533834 +0.5007803 0.092819 0.5533834 +0.510322 0.092819 0.5533834 +0.5195258 0.092819 0.5533834 +0.5284142 0.092819 0.5533834 +0.5370079 0.092819 0.5533834 +0.5453253 0.092819 0.5533834 +0.5533834 0.092819 0.5533834 +0.5611974 0.092819 0.5533834 +0.5687816 0.092819 0.5533834 +0.092819 0.1056428 0.5533834 +0.1056428 0.1056428 0.5533834 +0.1201537 0.1056428 0.5533834 +0.1409607 0.1056428 0.5533834 +0.1678172 0.1056428 0.5533834 +0.1950164 0.1056428 0.5533834 +0.2210581 0.1056428 0.5533834 +0.245636 0.1056428 0.5533834 +0.2686816 0.1056428 0.5533834 +0.2902431 0.1056428 0.5533834 +0.3104189 0.1056428 0.5533834 +0.3293248 0.1056428 0.5533834 +0.3470774 0.1056428 0.5533834 +0.3637862 0.1056428 0.5533834 +0.3795513 0.1056428 0.5533834 +0.3944623 0.1056428 0.5533834 +0.4085988 0.1056428 0.5533834 +0.4220313 0.1056428 0.5533834 +0.4348222 0.1056428 0.5533834 +0.4470264 0.1056428 0.5533834 +0.4586928 0.1056428 0.5533834 +0.4698649 0.1056428 0.5533834 +0.4805811 0.1056428 0.5533834 +0.490876 0.1056428 0.5533834 +0.5007803 0.1056428 0.5533834 +0.510322 0.1056428 0.5533834 +0.5195258 0.1056428 0.5533834 +0.5284142 0.1056428 0.5533834 +0.5370079 0.1056428 0.5533834 +0.5453253 0.1056428 0.5533834 +0.5533834 0.1056428 0.5533834 +0.5611974 0.1056428 0.5533834 +0.5687816 0.1056428 0.5533834 +0.092819 0.1201537 0.5533834 +0.1056428 0.1201537 0.5533834 +0.1201537 0.1201537 0.5533834 +0.1409607 0.1201537 0.5533834 +0.1678172 0.1201537 0.5533834 +0.1950164 0.1201537 0.5533834 +0.2210581 0.1201537 0.5533834 +0.245636 0.1201537 0.5533834 +0.2686816 0.1201537 0.5533834 +0.2902431 0.1201537 0.5533834 +0.3104189 0.1201537 0.5533834 +0.3293248 0.1201537 0.5533834 +0.3470774 0.1201537 0.5533834 +0.3637862 0.1201537 0.5533834 +0.3795513 0.1201537 0.5533834 +0.3944623 0.1201537 0.5533834 +0.4085988 0.1201537 0.5533834 +0.4220313 0.1201537 0.5533834 +0.4348222 0.1201537 0.5533834 +0.4470264 0.1201537 0.5533834 +0.4586928 0.1201537 0.5533834 +0.4698649 0.1201537 0.5533834 +0.4805811 0.1201537 0.5533834 +0.490876 0.1201537 0.5533834 +0.5007803 0.1201537 0.5533834 +0.510322 0.1201537 0.5533834 +0.5195258 0.1201537 0.5533834 +0.5284142 0.1201537 0.5533834 +0.5370079 0.1201537 0.5533834 +0.5453253 0.1201537 0.5533834 +0.5533834 0.1201537 0.5533834 +0.5611974 0.1201537 0.5533834 +0.5687816 0.1201537 0.5533834 +0.092819 0.1409607 0.5533834 +0.1056428 0.1409607 0.5533834 +0.1201537 0.1409607 0.5533834 +0.1409607 0.1409607 0.5533834 +0.1678172 0.1409607 0.5533834 +0.1950164 0.1409607 0.5533834 +0.2210581 0.1409607 0.5533834 +0.245636 0.1409607 0.5533834 +0.2686816 0.1409607 0.5533834 +0.2902431 0.1409607 0.5533834 +0.3104189 0.1409607 0.5533834 +0.3293248 0.1409607 0.5533834 +0.3470774 0.1409607 0.5533834 +0.3637862 0.1409607 0.5533834 +0.3795513 0.1409607 0.5533834 +0.3944623 0.1409607 0.5533834 +0.4085988 0.1409607 0.5533834 +0.4220313 0.1409607 0.5533834 +0.4348222 0.1409607 0.5533834 +0.4470264 0.1409607 0.5533834 +0.4586928 0.1409607 0.5533834 +0.4698649 0.1409607 0.5533834 +0.4805811 0.1409607 0.5533834 +0.490876 0.1409607 0.5533834 +0.5007803 0.1409607 0.5533834 +0.510322 0.1409607 0.5533834 +0.5195258 0.1409607 0.5533834 +0.5284142 0.1409607 0.5533834 +0.5370079 0.1409607 0.5533834 +0.5453253 0.1409607 0.5533834 +0.5533834 0.1409607 0.5533834 +0.5611974 0.1409607 0.5533834 +0.5687816 0.1409607 0.5533834 +0.092819 0.1678172 0.5533834 +0.1056428 0.1678172 0.5533834 +0.1201537 0.1678172 0.5533834 +0.1409607 0.1678172 0.5533834 +0.1678172 0.1678172 0.5533834 +0.1950164 0.1678172 0.5533834 +0.2210581 0.1678172 0.5533834 +0.245636 0.1678172 0.5533834 +0.2686816 0.1678172 0.5533834 +0.2902431 0.1678172 0.5533834 +0.3104189 0.1678172 0.5533834 +0.3293248 0.1678172 0.5533834 +0.3470774 0.1678172 0.5533834 +0.3637862 0.1678172 0.5533834 +0.3795513 0.1678172 0.5533834 +0.3944623 0.1678172 0.5533834 +0.4085988 0.1678172 0.5533834 +0.4220313 0.1678172 0.5533834 +0.4348222 0.1678172 0.5533834 +0.4470264 0.1678172 0.5533834 +0.4586928 0.1678172 0.5533834 +0.4698649 0.1678172 0.5533834 +0.4805811 0.1678172 0.5533834 +0.490876 0.1678172 0.5533834 +0.5007803 0.1678172 0.5533834 +0.510322 0.1678172 0.5533834 +0.5195258 0.1678172 0.5533834 +0.5284142 0.1678172 0.5533834 +0.5370079 0.1678172 0.5533834 +0.5453253 0.1678172 0.5533834 +0.5533834 0.1678172 0.5533834 +0.5611974 0.1678172 0.5533834 +0.5687816 0.1678172 0.5533834 +0.092819 0.1950164 0.5533834 +0.1056428 0.1950164 0.5533834 +0.1201537 0.1950164 0.5533834 +0.1409607 0.1950164 0.5533834 +0.1678172 0.1950164 0.5533834 +0.1950164 0.1950164 0.5533834 +0.2210581 0.1950164 0.5533834 +0.245636 0.1950164 0.5533834 +0.2686816 0.1950164 0.5533834 +0.2902431 0.1950164 0.5533834 +0.3104189 0.1950164 0.5533834 +0.3293248 0.1950164 0.5533834 +0.3470774 0.1950164 0.5533834 +0.3637862 0.1950164 0.5533834 +0.3795513 0.1950164 0.5533834 +0.3944623 0.1950164 0.5533834 +0.4085988 0.1950164 0.5533834 +0.4220313 0.1950164 0.5533834 +0.4348222 0.1950164 0.5533834 +0.4470264 0.1950164 0.5533834 +0.4586928 0.1950164 0.5533834 +0.4698649 0.1950164 0.5533834 +0.4805811 0.1950164 0.5533834 +0.490876 0.1950164 0.5533834 +0.5007803 0.1950164 0.5533834 +0.510322 0.1950164 0.5533834 +0.5195258 0.1950164 0.5533834 +0.5284142 0.1950164 0.5533834 +0.5370079 0.1950164 0.5533834 +0.5453253 0.1950164 0.5533834 +0.5533834 0.1950164 0.5533834 +0.5611974 0.1950164 0.5533834 +0.5687816 0.1950164 0.5533834 +0.092819 0.2210581 0.5533834 +0.1056428 0.2210581 0.5533834 +0.1201537 0.2210581 0.5533834 +0.1409607 0.2210581 0.5533834 +0.1678172 0.2210581 0.5533834 +0.1950164 0.2210581 0.5533834 +0.2210581 0.2210581 0.5533834 +0.245636 0.2210581 0.5533834 +0.2686816 0.2210581 0.5533834 +0.2902431 0.2210581 0.5533834 +0.3104189 0.2210581 0.5533834 +0.3293248 0.2210581 0.5533834 +0.3470774 0.2210581 0.5533834 +0.3637862 0.2210581 0.5533834 +0.3795513 0.2210581 0.5533834 +0.3944623 0.2210581 0.5533834 +0.4085988 0.2210581 0.5533834 +0.4220313 0.2210581 0.5533834 +0.4348222 0.2210581 0.5533834 +0.4470264 0.2210581 0.5533834 +0.4586928 0.2210581 0.5533834 +0.4698649 0.2210581 0.5533834 +0.4805811 0.2210581 0.5533834 +0.490876 0.2210581 0.5533834 +0.5007803 0.2210581 0.5533834 +0.510322 0.2210581 0.5533834 +0.5195258 0.2210581 0.5533834 +0.5284142 0.2210581 0.5533834 +0.5370079 0.2210581 0.5533834 +0.5453253 0.2210581 0.5533834 +0.5533834 0.2210581 0.5533834 +0.5611974 0.2210581 0.5533834 +0.5687816 0.2210581 0.5533834 +0.092819 0.245636 0.5533834 +0.1056428 0.245636 0.5533834 +0.1201537 0.245636 0.5533834 +0.1409607 0.245636 0.5533834 +0.1678172 0.245636 0.5533834 +0.1950164 0.245636 0.5533834 +0.2210581 0.245636 0.5533834 +0.245636 0.245636 0.5533834 +0.2686816 0.245636 0.5533834 +0.2902431 0.245636 0.5533834 +0.3104189 0.245636 0.5533834 +0.3293248 0.245636 0.5533834 +0.3470774 0.245636 0.5533834 +0.3637862 0.245636 0.5533834 +0.3795513 0.245636 0.5533834 +0.3944623 0.245636 0.5533834 +0.4085988 0.245636 0.5533834 +0.4220313 0.245636 0.5533834 +0.4348222 0.245636 0.5533834 +0.4470264 0.245636 0.5533834 +0.4586928 0.245636 0.5533834 +0.4698649 0.245636 0.5533834 +0.4805811 0.245636 0.5533834 +0.490876 0.245636 0.5533834 +0.5007803 0.245636 0.5533834 +0.510322 0.245636 0.5533834 +0.5195258 0.245636 0.5533834 +0.5284142 0.245636 0.5533834 +0.5370079 0.245636 0.5533834 +0.5453253 0.245636 0.5533834 +0.5533834 0.245636 0.5533834 +0.5611974 0.245636 0.5533834 +0.5687816 0.245636 0.5533834 +0.092819 0.2686816 0.5533834 +0.1056428 0.2686816 0.5533834 +0.1201537 0.2686816 0.5533834 +0.1409607 0.2686816 0.5533834 +0.1678172 0.2686816 0.5533834 +0.1950164 0.2686816 0.5533834 +0.2210581 0.2686816 0.5533834 +0.245636 0.2686816 0.5533834 +0.2686816 0.2686816 0.5533834 +0.2902431 0.2686816 0.5533834 +0.3104189 0.2686816 0.5533834 +0.3293248 0.2686816 0.5533834 +0.3470774 0.2686816 0.5533834 +0.3637862 0.2686816 0.5533834 +0.3795513 0.2686816 0.5533834 +0.3944623 0.2686816 0.5533834 +0.4085988 0.2686816 0.5533834 +0.4220313 0.2686816 0.5533834 +0.4348222 0.2686816 0.5533834 +0.4470264 0.2686816 0.5533834 +0.4586928 0.2686816 0.5533834 +0.4698649 0.2686816 0.5533834 +0.4805811 0.2686816 0.5533834 +0.490876 0.2686816 0.5533834 +0.5007803 0.2686816 0.5533834 +0.510322 0.2686816 0.5533834 +0.5195258 0.2686816 0.5533834 +0.5284142 0.2686816 0.5533834 +0.5370079 0.2686816 0.5533834 +0.5453253 0.2686816 0.5533834 +0.5533834 0.2686816 0.5533834 +0.5611974 0.2686816 0.5533834 +0.5687816 0.2686816 0.5533834 +0.092819 0.2902431 0.5533834 +0.1056428 0.2902431 0.5533834 +0.1201537 0.2902431 0.5533834 +0.1409607 0.2902431 0.5533834 +0.1678172 0.2902431 0.5533834 +0.1950164 0.2902431 0.5533834 +0.2210581 0.2902431 0.5533834 +0.245636 0.2902431 0.5533834 +0.2686816 0.2902431 0.5533834 +0.2902431 0.2902431 0.5533834 +0.3104189 0.2902431 0.5533834 +0.3293248 0.2902431 0.5533834 +0.3470774 0.2902431 0.5533834 +0.3637862 0.2902431 0.5533834 +0.3795513 0.2902431 0.5533834 +0.3944623 0.2902431 0.5533834 +0.4085988 0.2902431 0.5533834 +0.4220313 0.2902431 0.5533834 +0.4348222 0.2902431 0.5533834 +0.4470264 0.2902431 0.5533834 +0.4586928 0.2902431 0.5533834 +0.4698649 0.2902431 0.5533834 +0.4805811 0.2902431 0.5533834 +0.490876 0.2902431 0.5533834 +0.5007803 0.2902431 0.5533834 +0.510322 0.2902431 0.5533834 +0.5195258 0.2902431 0.5533834 +0.5284142 0.2902431 0.5533834 +0.5370079 0.2902431 0.5533834 +0.5453253 0.2902431 0.5533834 +0.5533834 0.2902431 0.5533834 +0.5611974 0.2902431 0.5533834 +0.5687816 0.2902431 0.5533834 +0.092819 0.3104189 0.5533834 +0.1056428 0.3104189 0.5533834 +0.1201537 0.3104189 0.5533834 +0.1409607 0.3104189 0.5533834 +0.1678172 0.3104189 0.5533834 +0.1950164 0.3104189 0.5533834 +0.2210581 0.3104189 0.5533834 +0.245636 0.3104189 0.5533834 +0.2686816 0.3104189 0.5533834 +0.2902431 0.3104189 0.5533834 +0.3104189 0.3104189 0.5533834 +0.3293248 0.3104189 0.5533834 +0.3470774 0.3104189 0.5533834 +0.3637862 0.3104189 0.5533834 +0.3795513 0.3104189 0.5533834 +0.3944623 0.3104189 0.5533834 +0.4085988 0.3104189 0.5533834 +0.4220313 0.3104189 0.5533834 +0.4348222 0.3104189 0.5533834 +0.4470264 0.3104189 0.5533834 +0.4586928 0.3104189 0.5533834 +0.4698649 0.3104189 0.5533834 +0.4805811 0.3104189 0.5533834 +0.490876 0.3104189 0.5533834 +0.5007803 0.3104189 0.5533834 +0.510322 0.3104189 0.5533834 +0.5195258 0.3104189 0.5533834 +0.5284142 0.3104189 0.5533834 +0.5370079 0.3104189 0.5533834 +0.5453253 0.3104189 0.5533834 +0.5533834 0.3104189 0.5533834 +0.5611974 0.3104189 0.5533834 +0.5687816 0.3104189 0.5533834 +0.092819 0.3293248 0.5533834 +0.1056428 0.3293248 0.5533834 +0.1201537 0.3293248 0.5533834 +0.1409607 0.3293248 0.5533834 +0.1678172 0.3293248 0.5533834 +0.1950164 0.3293248 0.5533834 +0.2210581 0.3293248 0.5533834 +0.245636 0.3293248 0.5533834 +0.2686816 0.3293248 0.5533834 +0.2902431 0.3293248 0.5533834 +0.3104189 0.3293248 0.5533834 +0.3293248 0.3293248 0.5533834 +0.3470774 0.3293248 0.5533834 +0.3637862 0.3293248 0.5533834 +0.3795513 0.3293248 0.5533834 +0.3944623 0.3293248 0.5533834 +0.4085988 0.3293248 0.5533834 +0.4220313 0.3293248 0.5533834 +0.4348222 0.3293248 0.5533834 +0.4470264 0.3293248 0.5533834 +0.4586928 0.3293248 0.5533834 +0.4698649 0.3293248 0.5533834 +0.4805811 0.3293248 0.5533834 +0.490876 0.3293248 0.5533834 +0.5007803 0.3293248 0.5533834 +0.510322 0.3293248 0.5533834 +0.5195258 0.3293248 0.5533834 +0.5284142 0.3293248 0.5533834 +0.5370079 0.3293248 0.5533834 +0.5453253 0.3293248 0.5533834 +0.5533834 0.3293248 0.5533834 +0.5611974 0.3293248 0.5533834 +0.5687816 0.3293248 0.5533834 +0.092819 0.3470774 0.5533834 +0.1056428 0.3470774 0.5533834 +0.1201537 0.3470774 0.5533834 +0.1409607 0.3470774 0.5533834 +0.1678172 0.3470774 0.5533834 +0.1950164 0.3470774 0.5533834 +0.2210581 0.3470774 0.5533834 +0.245636 0.3470774 0.5533834 +0.2686816 0.3470774 0.5533834 +0.2902431 0.3470774 0.5533834 +0.3104189 0.3470774 0.5533834 +0.3293248 0.3470774 0.5533834 +0.3470774 0.3470774 0.5533834 +0.3637862 0.3470774 0.5533834 +0.3795513 0.3470774 0.5533834 +0.3944623 0.3470774 0.5533834 +0.4085988 0.3470774 0.5533834 +0.4220313 0.3470774 0.5533834 +0.4348222 0.3470774 0.5533834 +0.4470264 0.3470774 0.5533834 +0.4586928 0.3470774 0.5533834 +0.4698649 0.3470774 0.5533834 +0.4805811 0.3470774 0.5533834 +0.490876 0.3470774 0.5533834 +0.5007803 0.3470774 0.5533834 +0.510322 0.3470774 0.5533834 +0.5195258 0.3470774 0.5533834 +0.5284142 0.3470774 0.5533834 +0.5370079 0.3470774 0.5533834 +0.5453253 0.3470774 0.5533834 +0.5533834 0.3470774 0.5533834 +0.5611974 0.3470774 0.5533834 +0.5687816 0.3470774 0.5533834 +0.092819 0.3637862 0.5533834 +0.1056428 0.3637862 0.5533834 +0.1201537 0.3637862 0.5533834 +0.1409607 0.3637862 0.5533834 +0.1678172 0.3637862 0.5533834 +0.1950164 0.3637862 0.5533834 +0.2210581 0.3637862 0.5533834 +0.245636 0.3637862 0.5533834 +0.2686816 0.3637862 0.5533834 +0.2902431 0.3637862 0.5533834 +0.3104189 0.3637862 0.5533834 +0.3293248 0.3637862 0.5533834 +0.3470774 0.3637862 0.5533834 +0.3637862 0.3637862 0.5533834 +0.3795513 0.3637862 0.5533834 +0.3944623 0.3637862 0.5533834 +0.4085988 0.3637862 0.5533834 +0.4220313 0.3637862 0.5533834 +0.4348222 0.3637862 0.5533834 +0.4470264 0.3637862 0.5533834 +0.4586928 0.3637862 0.5533834 +0.4698649 0.3637862 0.5533834 +0.4805811 0.3637862 0.5533834 +0.490876 0.3637862 0.5533834 +0.5007803 0.3637862 0.5533834 +0.510322 0.3637862 0.5533834 +0.5195258 0.3637862 0.5533834 +0.5284142 0.3637862 0.5533834 +0.5370079 0.3637862 0.5533834 +0.5453253 0.3637862 0.5533834 +0.5533834 0.3637862 0.5533834 +0.5611974 0.3637862 0.5533834 +0.5687816 0.3637862 0.5533834 +0.092819 0.3795513 0.5533834 +0.1056428 0.3795513 0.5533834 +0.1201537 0.3795513 0.5533834 +0.1409607 0.3795513 0.5533834 +0.1678172 0.3795513 0.5533834 +0.1950164 0.3795513 0.5533834 +0.2210581 0.3795513 0.5533834 +0.245636 0.3795513 0.5533834 +0.2686816 0.3795513 0.5533834 +0.2902431 0.3795513 0.5533834 +0.3104189 0.3795513 0.5533834 +0.3293248 0.3795513 0.5533834 +0.3470774 0.3795513 0.5533834 +0.3637862 0.3795513 0.5533834 +0.3795513 0.3795513 0.5533834 +0.3944623 0.3795513 0.5533834 +0.4085988 0.3795513 0.5533834 +0.4220313 0.3795513 0.5533834 +0.4348222 0.3795513 0.5533834 +0.4470264 0.3795513 0.5533834 +0.4586928 0.3795513 0.5533834 +0.4698649 0.3795513 0.5533834 +0.4805811 0.3795513 0.5533834 +0.490876 0.3795513 0.5533834 +0.5007803 0.3795513 0.5533834 +0.510322 0.3795513 0.5533834 +0.5195258 0.3795513 0.5533834 +0.5284142 0.3795513 0.5533834 +0.5370079 0.3795513 0.5533834 +0.5453253 0.3795513 0.5533834 +0.5533834 0.3795513 0.5533834 +0.5611974 0.3795513 0.5533834 +0.5687816 0.3795513 0.5533834 +0.092819 0.3944623 0.5533834 +0.1056428 0.3944623 0.5533834 +0.1201537 0.3944623 0.5533834 +0.1409607 0.3944623 0.5533834 +0.1678172 0.3944623 0.5533834 +0.1950164 0.3944623 0.5533834 +0.2210581 0.3944623 0.5533834 +0.245636 0.3944623 0.5533834 +0.2686816 0.3944623 0.5533834 +0.2902431 0.3944623 0.5533834 +0.3104189 0.3944623 0.5533834 +0.3293248 0.3944623 0.5533834 +0.3470774 0.3944623 0.5533834 +0.3637862 0.3944623 0.5533834 +0.3795513 0.3944623 0.5533834 +0.3944623 0.3944623 0.5533834 +0.4085988 0.3944623 0.5533834 +0.4220313 0.3944623 0.5533834 +0.4348222 0.3944623 0.5533834 +0.4470264 0.3944623 0.5533834 +0.4586928 0.3944623 0.5533834 +0.4698649 0.3944623 0.5533834 +0.4805811 0.3944623 0.5533834 +0.490876 0.3944623 0.5533834 +0.5007803 0.3944623 0.5533834 +0.510322 0.3944623 0.5533834 +0.5195258 0.3944623 0.5533834 +0.5284142 0.3944623 0.5533834 +0.5370079 0.3944623 0.5533834 +0.5453253 0.3944623 0.5533834 +0.5533834 0.3944623 0.5533834 +0.5611974 0.3944623 0.5533834 +0.5687816 0.3944623 0.5533834 +0.092819 0.4085988 0.5533834 +0.1056428 0.4085988 0.5533834 +0.1201537 0.4085988 0.5533834 +0.1409607 0.4085988 0.5533834 +0.1678172 0.4085988 0.5533834 +0.1950164 0.4085988 0.5533834 +0.2210581 0.4085988 0.5533834 +0.245636 0.4085988 0.5533834 +0.2686816 0.4085988 0.5533834 +0.2902431 0.4085988 0.5533834 +0.3104189 0.4085988 0.5533834 +0.3293248 0.4085988 0.5533834 +0.3470774 0.4085988 0.5533834 +0.3637862 0.4085988 0.5533834 +0.3795513 0.4085988 0.5533834 +0.3944623 0.4085988 0.5533834 +0.4085988 0.4085988 0.5533834 +0.4220313 0.4085988 0.5533834 +0.4348222 0.4085988 0.5533834 +0.4470264 0.4085988 0.5533834 +0.4586928 0.4085988 0.5533834 +0.4698649 0.4085988 0.5533834 +0.4805811 0.4085988 0.5533834 +0.490876 0.4085988 0.5533834 +0.5007803 0.4085988 0.5533834 +0.510322 0.4085988 0.5533834 +0.5195258 0.4085988 0.5533834 +0.5284142 0.4085988 0.5533834 +0.5370079 0.4085988 0.5533834 +0.5453253 0.4085988 0.5533834 +0.5533834 0.4085988 0.5533834 +0.5611974 0.4085988 0.5533834 +0.5687816 0.4085988 0.5533834 +0.092819 0.4220313 0.5533834 +0.1056428 0.4220313 0.5533834 +0.1201537 0.4220313 0.5533834 +0.1409607 0.4220313 0.5533834 +0.1678172 0.4220313 0.5533834 +0.1950164 0.4220313 0.5533834 +0.2210581 0.4220313 0.5533834 +0.245636 0.4220313 0.5533834 +0.2686816 0.4220313 0.5533834 +0.2902431 0.4220313 0.5533834 +0.3104189 0.4220313 0.5533834 +0.3293248 0.4220313 0.5533834 +0.3470774 0.4220313 0.5533834 +0.3637862 0.4220313 0.5533834 +0.3795513 0.4220313 0.5533834 +0.3944623 0.4220313 0.5533834 +0.4085988 0.4220313 0.5533834 +0.4220313 0.4220313 0.5533834 +0.4348222 0.4220313 0.5533834 +0.4470264 0.4220313 0.5533834 +0.4586928 0.4220313 0.5533834 +0.4698649 0.4220313 0.5533834 +0.4805811 0.4220313 0.5533834 +0.490876 0.4220313 0.5533834 +0.5007803 0.4220313 0.5533834 +0.510322 0.4220313 0.5533834 +0.5195258 0.4220313 0.5533834 +0.5284142 0.4220313 0.5533834 +0.5370079 0.4220313 0.5533834 +0.5453253 0.4220313 0.5533834 +0.5533834 0.4220313 0.5533834 +0.5611974 0.4220313 0.5533834 +0.5687816 0.4220313 0.5533834 +0.092819 0.4348222 0.5533834 +0.1056428 0.4348222 0.5533834 +0.1201537 0.4348222 0.5533834 +0.1409607 0.4348222 0.5533834 +0.1678172 0.4348222 0.5533834 +0.1950164 0.4348222 0.5533834 +0.2210581 0.4348222 0.5533834 +0.245636 0.4348222 0.5533834 +0.2686816 0.4348222 0.5533834 +0.2902431 0.4348222 0.5533834 +0.3104189 0.4348222 0.5533834 +0.3293248 0.4348222 0.5533834 +0.3470774 0.4348222 0.5533834 +0.3637862 0.4348222 0.5533834 +0.3795513 0.4348222 0.5533834 +0.3944623 0.4348222 0.5533834 +0.4085988 0.4348222 0.5533834 +0.4220313 0.4348222 0.5533834 +0.4348222 0.4348222 0.5533834 +0.4470264 0.4348222 0.5533834 +0.4586928 0.4348222 0.5533834 +0.4698649 0.4348222 0.5533834 +0.4805811 0.4348222 0.5533834 +0.490876 0.4348222 0.5533834 +0.5007803 0.4348222 0.5533834 +0.510322 0.4348222 0.5533834 +0.5195258 0.4348222 0.5533834 +0.5284142 0.4348222 0.5533834 +0.5370079 0.4348222 0.5533834 +0.5453253 0.4348222 0.5533834 +0.5533834 0.4348222 0.5533834 +0.5611974 0.4348222 0.5533834 +0.5687816 0.4348222 0.5533834 +0.092819 0.4470264 0.5533834 +0.1056428 0.4470264 0.5533834 +0.1201537 0.4470264 0.5533834 +0.1409607 0.4470264 0.5533834 +0.1678172 0.4470264 0.5533834 +0.1950164 0.4470264 0.5533834 +0.2210581 0.4470264 0.5533834 +0.245636 0.4470264 0.5533834 +0.2686816 0.4470264 0.5533834 +0.2902431 0.4470264 0.5533834 +0.3104189 0.4470264 0.5533834 +0.3293248 0.4470264 0.5533834 +0.3470774 0.4470264 0.5533834 +0.3637862 0.4470264 0.5533834 +0.3795513 0.4470264 0.5533834 +0.3944623 0.4470264 0.5533834 +0.4085988 0.4470264 0.5533834 +0.4220313 0.4470264 0.5533834 +0.4348222 0.4470264 0.5533834 +0.4470264 0.4470264 0.5533834 +0.4586928 0.4470264 0.5533834 +0.4698649 0.4470264 0.5533834 +0.4805811 0.4470264 0.5533834 +0.490876 0.4470264 0.5533834 +0.5007803 0.4470264 0.5533834 +0.510322 0.4470264 0.5533834 +0.5195258 0.4470264 0.5533834 +0.5284142 0.4470264 0.5533834 +0.5370079 0.4470264 0.5533834 +0.5453253 0.4470264 0.5533834 +0.5533834 0.4470264 0.5533834 +0.5611974 0.4470264 0.5533834 +0.5687816 0.4470264 0.5533834 +0.092819 0.4586928 0.5533834 +0.1056428 0.4586928 0.5533834 +0.1201537 0.4586928 0.5533834 +0.1409607 0.4586928 0.5533834 +0.1678172 0.4586928 0.5533834 +0.1950164 0.4586928 0.5533834 +0.2210581 0.4586928 0.5533834 +0.245636 0.4586928 0.5533834 +0.2686816 0.4586928 0.5533834 +0.2902431 0.4586928 0.5533834 +0.3104189 0.4586928 0.5533834 +0.3293248 0.4586928 0.5533834 +0.3470774 0.4586928 0.5533834 +0.3637862 0.4586928 0.5533834 +0.3795513 0.4586928 0.5533834 +0.3944623 0.4586928 0.5533834 +0.4085988 0.4586928 0.5533834 +0.4220313 0.4586928 0.5533834 +0.4348222 0.4586928 0.5533834 +0.4470264 0.4586928 0.5533834 +0.4586928 0.4586928 0.5533834 +0.4698649 0.4586928 0.5533834 +0.4805811 0.4586928 0.5533834 +0.490876 0.4586928 0.5533834 +0.5007803 0.4586928 0.5533834 +0.510322 0.4586928 0.5533834 +0.5195258 0.4586928 0.5533834 +0.5284142 0.4586928 0.5533834 +0.5370079 0.4586928 0.5533834 +0.5453253 0.4586928 0.5533834 +0.5533834 0.4586928 0.5533834 +0.5611974 0.4586928 0.5533834 +0.5687816 0.4586928 0.5533834 +0.092819 0.4698649 0.5533834 +0.1056428 0.4698649 0.5533834 +0.1201537 0.4698649 0.5533834 +0.1409607 0.4698649 0.5533834 +0.1678172 0.4698649 0.5533834 +0.1950164 0.4698649 0.5533834 +0.2210581 0.4698649 0.5533834 +0.245636 0.4698649 0.5533834 +0.2686816 0.4698649 0.5533834 +0.2902431 0.4698649 0.5533834 +0.3104189 0.4698649 0.5533834 +0.3293248 0.4698649 0.5533834 +0.3470774 0.4698649 0.5533834 +0.3637862 0.4698649 0.5533834 +0.3795513 0.4698649 0.5533834 +0.3944623 0.4698649 0.5533834 +0.4085988 0.4698649 0.5533834 +0.4220313 0.4698649 0.5533834 +0.4348222 0.4698649 0.5533834 +0.4470264 0.4698649 0.5533834 +0.4586928 0.4698649 0.5533834 +0.4698649 0.4698649 0.5533834 +0.4805811 0.4698649 0.5533834 +0.490876 0.4698649 0.5533834 +0.5007803 0.4698649 0.5533834 +0.510322 0.4698649 0.5533834 +0.5195258 0.4698649 0.5533834 +0.5284142 0.4698649 0.5533834 +0.5370079 0.4698649 0.5533834 +0.5453253 0.4698649 0.5533834 +0.5533834 0.4698649 0.5533834 +0.5611974 0.4698649 0.5533834 +0.5687816 0.4698649 0.5533834 +0.092819 0.4805811 0.5533834 +0.1056428 0.4805811 0.5533834 +0.1201537 0.4805811 0.5533834 +0.1409607 0.4805811 0.5533834 +0.1678172 0.4805811 0.5533834 +0.1950164 0.4805811 0.5533834 +0.2210581 0.4805811 0.5533834 +0.245636 0.4805811 0.5533834 +0.2686816 0.4805811 0.5533834 +0.2902431 0.4805811 0.5533834 +0.3104189 0.4805811 0.5533834 +0.3293248 0.4805811 0.5533834 +0.3470774 0.4805811 0.5533834 +0.3637862 0.4805811 0.5533834 +0.3795513 0.4805811 0.5533834 +0.3944623 0.4805811 0.5533834 +0.4085988 0.4805811 0.5533834 +0.4220313 0.4805811 0.5533834 +0.4348222 0.4805811 0.5533834 +0.4470264 0.4805811 0.5533834 +0.4586928 0.4805811 0.5533834 +0.4698649 0.4805811 0.5533834 +0.4805811 0.4805811 0.5533834 +0.490876 0.4805811 0.5533834 +0.5007803 0.4805811 0.5533834 +0.510322 0.4805811 0.5533834 +0.5195258 0.4805811 0.5533834 +0.5284142 0.4805811 0.5533834 +0.5370079 0.4805811 0.5533834 +0.5453253 0.4805811 0.5533834 +0.5533834 0.4805811 0.5533834 +0.5611974 0.4805811 0.5533834 +0.5687816 0.4805811 0.5533834 +0.092819 0.490876 0.5533834 +0.1056428 0.490876 0.5533834 +0.1201537 0.490876 0.5533834 +0.1409607 0.490876 0.5533834 +0.1678172 0.490876 0.5533834 +0.1950164 0.490876 0.5533834 +0.2210581 0.490876 0.5533834 +0.245636 0.490876 0.5533834 +0.2686816 0.490876 0.5533834 +0.2902431 0.490876 0.5533834 +0.3104189 0.490876 0.5533834 +0.3293248 0.490876 0.5533834 +0.3470774 0.490876 0.5533834 +0.3637862 0.490876 0.5533834 +0.3795513 0.490876 0.5533834 +0.3944623 0.490876 0.5533834 +0.4085988 0.490876 0.5533834 +0.4220313 0.490876 0.5533834 +0.4348222 0.490876 0.5533834 +0.4470264 0.490876 0.5533834 +0.4586928 0.490876 0.5533834 +0.4698649 0.490876 0.5533834 +0.4805811 0.490876 0.5533834 +0.490876 0.490876 0.5533834 +0.5007803 0.490876 0.5533834 +0.510322 0.490876 0.5533834 +0.5195258 0.490876 0.5533834 +0.5284142 0.490876 0.5533834 +0.5370079 0.490876 0.5533834 +0.5453253 0.490876 0.5533834 +0.5533834 0.490876 0.5533834 +0.5611974 0.490876 0.5533834 +0.5687816 0.490876 0.5533834 +0.092819 0.5007803 0.5533834 +0.1056428 0.5007803 0.5533834 +0.1201537 0.5007803 0.5533834 +0.1409607 0.5007803 0.5533834 +0.1678172 0.5007803 0.5533834 +0.1950164 0.5007803 0.5533834 +0.2210581 0.5007803 0.5533834 +0.245636 0.5007803 0.5533834 +0.2686816 0.5007803 0.5533834 +0.2902431 0.5007803 0.5533834 +0.3104189 0.5007803 0.5533834 +0.3293248 0.5007803 0.5533834 +0.3470774 0.5007803 0.5533834 +0.3637862 0.5007803 0.5533834 +0.3795513 0.5007803 0.5533834 +0.3944623 0.5007803 0.5533834 +0.4085988 0.5007803 0.5533834 +0.4220313 0.5007803 0.5533834 +0.4348222 0.5007803 0.5533834 +0.4470264 0.5007803 0.5533834 +0.4586928 0.5007803 0.5533834 +0.4698649 0.5007803 0.5533834 +0.4805811 0.5007803 0.5533834 +0.490876 0.5007803 0.5533834 +0.5007803 0.5007803 0.5533834 +0.510322 0.5007803 0.5533834 +0.5195258 0.5007803 0.5533834 +0.5284142 0.5007803 0.5533834 +0.5370079 0.5007803 0.5533834 +0.5453253 0.5007803 0.5533834 +0.5533834 0.5007803 0.5533834 +0.5611974 0.5007803 0.5533834 +0.5687816 0.5007803 0.5533834 +0.092819 0.510322 0.5533834 +0.1056428 0.510322 0.5533834 +0.1201537 0.510322 0.5533834 +0.1409607 0.510322 0.5533834 +0.1678172 0.510322 0.5533834 +0.1950164 0.510322 0.5533834 +0.2210581 0.510322 0.5533834 +0.245636 0.510322 0.5533834 +0.2686816 0.510322 0.5533834 +0.2902431 0.510322 0.5533834 +0.3104189 0.510322 0.5533834 +0.3293248 0.510322 0.5533834 +0.3470774 0.510322 0.5533834 +0.3637862 0.510322 0.5533834 +0.3795513 0.510322 0.5533834 +0.3944623 0.510322 0.5533834 +0.4085988 0.510322 0.5533834 +0.4220313 0.510322 0.5533834 +0.4348222 0.510322 0.5533834 +0.4470264 0.510322 0.5533834 +0.4586928 0.510322 0.5533834 +0.4698649 0.510322 0.5533834 +0.4805811 0.510322 0.5533834 +0.490876 0.510322 0.5533834 +0.5007803 0.510322 0.5533834 +0.510322 0.510322 0.5533834 +0.5195258 0.510322 0.5533834 +0.5284142 0.510322 0.5533834 +0.5370079 0.510322 0.5533834 +0.5453253 0.510322 0.5533834 +0.5533834 0.510322 0.5533834 +0.5611974 0.510322 0.5533834 +0.5687816 0.510322 0.5533834 +0.092819 0.5195258 0.5533834 +0.1056428 0.5195258 0.5533834 +0.1201537 0.5195258 0.5533834 +0.1409607 0.5195258 0.5533834 +0.1678172 0.5195258 0.5533834 +0.1950164 0.5195258 0.5533834 +0.2210581 0.5195258 0.5533834 +0.245636 0.5195258 0.5533834 +0.2686816 0.5195258 0.5533834 +0.2902431 0.5195258 0.5533834 +0.3104189 0.5195258 0.5533834 +0.3293248 0.5195258 0.5533834 +0.3470774 0.5195258 0.5533834 +0.3637862 0.5195258 0.5533834 +0.3795513 0.5195258 0.5533834 +0.3944623 0.5195258 0.5533834 +0.4085988 0.5195258 0.5533834 +0.4220313 0.5195258 0.5533834 +0.4348222 0.5195258 0.5533834 +0.4470264 0.5195258 0.5533834 +0.4586928 0.5195258 0.5533834 +0.4698649 0.5195258 0.5533834 +0.4805811 0.5195258 0.5533834 +0.490876 0.5195258 0.5533834 +0.5007803 0.5195258 0.5533834 +0.510322 0.5195258 0.5533834 +0.5195258 0.5195258 0.5533834 +0.5284142 0.5195258 0.5533834 +0.5370079 0.5195258 0.5533834 +0.5453253 0.5195258 0.5533834 +0.5533834 0.5195258 0.5533834 +0.5611974 0.5195258 0.5533834 +0.5687816 0.5195258 0.5533834 +0.092819 0.5284142 0.5533834 +0.1056428 0.5284142 0.5533834 +0.1201537 0.5284142 0.5533834 +0.1409607 0.5284142 0.5533834 +0.1678172 0.5284142 0.5533834 +0.1950164 0.5284142 0.5533834 +0.2210581 0.5284142 0.5533834 +0.245636 0.5284142 0.5533834 +0.2686816 0.5284142 0.5533834 +0.2902431 0.5284142 0.5533834 +0.3104189 0.5284142 0.5533834 +0.3293248 0.5284142 0.5533834 +0.3470774 0.5284142 0.5533834 +0.3637862 0.5284142 0.5533834 +0.3795513 0.5284142 0.5533834 +0.3944623 0.5284142 0.5533834 +0.4085988 0.5284142 0.5533834 +0.4220313 0.5284142 0.5533834 +0.4348222 0.5284142 0.5533834 +0.4470264 0.5284142 0.5533834 +0.4586928 0.5284142 0.5533834 +0.4698649 0.5284142 0.5533834 +0.4805811 0.5284142 0.5533834 +0.490876 0.5284142 0.5533834 +0.5007803 0.5284142 0.5533834 +0.510322 0.5284142 0.5533834 +0.5195258 0.5284142 0.5533834 +0.5284142 0.5284142 0.5533834 +0.5370079 0.5284142 0.5533834 +0.5453253 0.5284142 0.5533834 +0.5533834 0.5284142 0.5533834 +0.5611974 0.5284142 0.5533834 +0.5687816 0.5284142 0.5533834 +0.092819 0.5370079 0.5533834 +0.1056428 0.5370079 0.5533834 +0.1201537 0.5370079 0.5533834 +0.1409607 0.5370079 0.5533834 +0.1678172 0.5370079 0.5533834 +0.1950164 0.5370079 0.5533834 +0.2210581 0.5370079 0.5533834 +0.245636 0.5370079 0.5533834 +0.2686816 0.5370079 0.5533834 +0.2902431 0.5370079 0.5533834 +0.3104189 0.5370079 0.5533834 +0.3293248 0.5370079 0.5533834 +0.3470774 0.5370079 0.5533834 +0.3637862 0.5370079 0.5533834 +0.3795513 0.5370079 0.5533834 +0.3944623 0.5370079 0.5533834 +0.4085988 0.5370079 0.5533834 +0.4220313 0.5370079 0.5533834 +0.4348222 0.5370079 0.5533834 +0.4470264 0.5370079 0.5533834 +0.4586928 0.5370079 0.5533834 +0.4698649 0.5370079 0.5533834 +0.4805811 0.5370079 0.5533834 +0.490876 0.5370079 0.5533834 +0.5007803 0.5370079 0.5533834 +0.510322 0.5370079 0.5533834 +0.5195258 0.5370079 0.5533834 +0.5284142 0.5370079 0.5533834 +0.5370079 0.5370079 0.5533834 +0.5453253 0.5370079 0.5533834 +0.5533834 0.5370079 0.5533834 +0.5611974 0.5370079 0.5533834 +0.5687816 0.5370079 0.5533834 +0.092819 0.5453253 0.5533834 +0.1056428 0.5453253 0.5533834 +0.1201537 0.5453253 0.5533834 +0.1409607 0.5453253 0.5533834 +0.1678172 0.5453253 0.5533834 +0.1950164 0.5453253 0.5533834 +0.2210581 0.5453253 0.5533834 +0.245636 0.5453253 0.5533834 +0.2686816 0.5453253 0.5533834 +0.2902431 0.5453253 0.5533834 +0.3104189 0.5453253 0.5533834 +0.3293248 0.5453253 0.5533834 +0.3470774 0.5453253 0.5533834 +0.3637862 0.5453253 0.5533834 +0.3795513 0.5453253 0.5533834 +0.3944623 0.5453253 0.5533834 +0.4085988 0.5453253 0.5533834 +0.4220313 0.5453253 0.5533834 +0.4348222 0.5453253 0.5533834 +0.4470264 0.5453253 0.5533834 +0.4586928 0.5453253 0.5533834 +0.4698649 0.5453253 0.5533834 +0.4805811 0.5453253 0.5533834 +0.490876 0.5453253 0.5533834 +0.5007803 0.5453253 0.5533834 +0.510322 0.5453253 0.5533834 +0.5195258 0.5453253 0.5533834 +0.5284142 0.5453253 0.5533834 +0.5370079 0.5453253 0.5533834 +0.5453253 0.5453253 0.5533834 +0.5533834 0.5453253 0.5533834 +0.5611974 0.5453253 0.5533834 +0.5687816 0.5453253 0.5533834 +0.092819 0.5533834 0.5533834 +0.1056428 0.5533834 0.5533834 +0.1201537 0.5533834 0.5533834 +0.1409607 0.5533834 0.5533834 +0.1678172 0.5533834 0.5533834 +0.1950164 0.5533834 0.5533834 +0.2210581 0.5533834 0.5533834 +0.245636 0.5533834 0.5533834 +0.2686816 0.5533834 0.5533834 +0.2902431 0.5533834 0.5533834 +0.3104189 0.5533834 0.5533834 +0.3293248 0.5533834 0.5533834 +0.3470774 0.5533834 0.5533834 +0.3637862 0.5533834 0.5533834 +0.3795513 0.5533834 0.5533834 +0.3944623 0.5533834 0.5533834 +0.4085988 0.5533834 0.5533834 +0.4220313 0.5533834 0.5533834 +0.4348222 0.5533834 0.5533834 +0.4470264 0.5533834 0.5533834 +0.4586928 0.5533834 0.5533834 +0.4698649 0.5533834 0.5533834 +0.4805811 0.5533834 0.5533834 +0.490876 0.5533834 0.5533834 +0.5007803 0.5533834 0.5533834 +0.510322 0.5533834 0.5533834 +0.5195258 0.5533834 0.5533834 +0.5284142 0.5533834 0.5533834 +0.5370079 0.5533834 0.5533834 +0.5453253 0.5533834 0.5533834 +0.5533834 0.5533834 0.5533834 +0.5611974 0.5533834 0.5533834 +0.5687816 0.5533834 0.5533834 +0.092819 0.5611974 0.5533834 +0.1056428 0.5611974 0.5533834 +0.1201537 0.5611974 0.5533834 +0.1409607 0.5611974 0.5533834 +0.1678172 0.5611974 0.5533834 +0.1950164 0.5611974 0.5533834 +0.2210581 0.5611974 0.5533834 +0.245636 0.5611974 0.5533834 +0.2686816 0.5611974 0.5533834 +0.2902431 0.5611974 0.5533834 +0.3104189 0.5611974 0.5533834 +0.3293248 0.5611974 0.5533834 +0.3470774 0.5611974 0.5533834 +0.3637862 0.5611974 0.5533834 +0.3795513 0.5611974 0.5533834 +0.3944623 0.5611974 0.5533834 +0.4085988 0.5611974 0.5533834 +0.4220313 0.5611974 0.5533834 +0.4348222 0.5611974 0.5533834 +0.4470264 0.5611974 0.5533834 +0.4586928 0.5611974 0.5533834 +0.4698649 0.5611974 0.5533834 +0.4805811 0.5611974 0.5533834 +0.490876 0.5611974 0.5533834 +0.5007803 0.5611974 0.5533834 +0.510322 0.5611974 0.5533834 +0.5195258 0.5611974 0.5533834 +0.5284142 0.5611974 0.5533834 +0.5370079 0.5611974 0.5533834 +0.5453253 0.5611974 0.5533834 +0.5533834 0.5611974 0.5533834 +0.5611974 0.5611974 0.5533834 +0.5687816 0.5611974 0.5533834 +0.092819 0.5687816 0.5533834 +0.1056428 0.5687816 0.5533834 +0.1201537 0.5687816 0.5533834 +0.1409607 0.5687816 0.5533834 +0.1678172 0.5687816 0.5533834 +0.1950164 0.5687816 0.5533834 +0.2210581 0.5687816 0.5533834 +0.245636 0.5687816 0.5533834 +0.2686816 0.5687816 0.5533834 +0.2902431 0.5687816 0.5533834 +0.3104189 0.5687816 0.5533834 +0.3293248 0.5687816 0.5533834 +0.3470774 0.5687816 0.5533834 +0.3637862 0.5687816 0.5533834 +0.3795513 0.5687816 0.5533834 +0.3944623 0.5687816 0.5533834 +0.4085988 0.5687816 0.5533834 +0.4220313 0.5687816 0.5533834 +0.4348222 0.5687816 0.5533834 +0.4470264 0.5687816 0.5533834 +0.4586928 0.5687816 0.5533834 +0.4698649 0.5687816 0.5533834 +0.4805811 0.5687816 0.5533834 +0.490876 0.5687816 0.5533834 +0.5007803 0.5687816 0.5533834 +0.510322 0.5687816 0.5533834 +0.5195258 0.5687816 0.5533834 +0.5284142 0.5687816 0.5533834 +0.5370079 0.5687816 0.5533834 +0.5453253 0.5687816 0.5533834 +0.5533834 0.5687816 0.5533834 +0.5611974 0.5687816 0.5533834 +0.5687816 0.5687816 0.5533834 +0.092819 0.092819 0.5611974 +0.1056428 0.092819 0.5611974 +0.1201537 0.092819 0.5611974 +0.1409607 0.092819 0.5611974 +0.1678172 0.092819 0.5611974 +0.1950164 0.092819 0.5611974 +0.2210581 0.092819 0.5611974 +0.245636 0.092819 0.5611974 +0.2686816 0.092819 0.5611974 +0.2902431 0.092819 0.5611974 +0.3104189 0.092819 0.5611974 +0.3293248 0.092819 0.5611974 +0.3470774 0.092819 0.5611974 +0.3637862 0.092819 0.5611974 +0.3795513 0.092819 0.5611974 +0.3944623 0.092819 0.5611974 +0.4085988 0.092819 0.5611974 +0.4220313 0.092819 0.5611974 +0.4348222 0.092819 0.5611974 +0.4470264 0.092819 0.5611974 +0.4586928 0.092819 0.5611974 +0.4698649 0.092819 0.5611974 +0.4805811 0.092819 0.5611974 +0.490876 0.092819 0.5611974 +0.5007803 0.092819 0.5611974 +0.510322 0.092819 0.5611974 +0.5195258 0.092819 0.5611974 +0.5284142 0.092819 0.5611974 +0.5370079 0.092819 0.5611974 +0.5453253 0.092819 0.5611974 +0.5533834 0.092819 0.5611974 +0.5611974 0.092819 0.5611974 +0.5687816 0.092819 0.5611974 +0.092819 0.1056428 0.5611974 +0.1056428 0.1056428 0.5611974 +0.1201537 0.1056428 0.5611974 +0.1409607 0.1056428 0.5611974 +0.1678172 0.1056428 0.5611974 +0.1950164 0.1056428 0.5611974 +0.2210581 0.1056428 0.5611974 +0.245636 0.1056428 0.5611974 +0.2686816 0.1056428 0.5611974 +0.2902431 0.1056428 0.5611974 +0.3104189 0.1056428 0.5611974 +0.3293248 0.1056428 0.5611974 +0.3470774 0.1056428 0.5611974 +0.3637862 0.1056428 0.5611974 +0.3795513 0.1056428 0.5611974 +0.3944623 0.1056428 0.5611974 +0.4085988 0.1056428 0.5611974 +0.4220313 0.1056428 0.5611974 +0.4348222 0.1056428 0.5611974 +0.4470264 0.1056428 0.5611974 +0.4586928 0.1056428 0.5611974 +0.4698649 0.1056428 0.5611974 +0.4805811 0.1056428 0.5611974 +0.490876 0.1056428 0.5611974 +0.5007803 0.1056428 0.5611974 +0.510322 0.1056428 0.5611974 +0.5195258 0.1056428 0.5611974 +0.5284142 0.1056428 0.5611974 +0.5370079 0.1056428 0.5611974 +0.5453253 0.1056428 0.5611974 +0.5533834 0.1056428 0.5611974 +0.5611974 0.1056428 0.5611974 +0.5687816 0.1056428 0.5611974 +0.092819 0.1201537 0.5611974 +0.1056428 0.1201537 0.5611974 +0.1201537 0.1201537 0.5611974 +0.1409607 0.1201537 0.5611974 +0.1678172 0.1201537 0.5611974 +0.1950164 0.1201537 0.5611974 +0.2210581 0.1201537 0.5611974 +0.245636 0.1201537 0.5611974 +0.2686816 0.1201537 0.5611974 +0.2902431 0.1201537 0.5611974 +0.3104189 0.1201537 0.5611974 +0.3293248 0.1201537 0.5611974 +0.3470774 0.1201537 0.5611974 +0.3637862 0.1201537 0.5611974 +0.3795513 0.1201537 0.5611974 +0.3944623 0.1201537 0.5611974 +0.4085988 0.1201537 0.5611974 +0.4220313 0.1201537 0.5611974 +0.4348222 0.1201537 0.5611974 +0.4470264 0.1201537 0.5611974 +0.4586928 0.1201537 0.5611974 +0.4698649 0.1201537 0.5611974 +0.4805811 0.1201537 0.5611974 +0.490876 0.1201537 0.5611974 +0.5007803 0.1201537 0.5611974 +0.510322 0.1201537 0.5611974 +0.5195258 0.1201537 0.5611974 +0.5284142 0.1201537 0.5611974 +0.5370079 0.1201537 0.5611974 +0.5453253 0.1201537 0.5611974 +0.5533834 0.1201537 0.5611974 +0.5611974 0.1201537 0.5611974 +0.5687816 0.1201537 0.5611974 +0.092819 0.1409607 0.5611974 +0.1056428 0.1409607 0.5611974 +0.1201537 0.1409607 0.5611974 +0.1409607 0.1409607 0.5611974 +0.1678172 0.1409607 0.5611974 +0.1950164 0.1409607 0.5611974 +0.2210581 0.1409607 0.5611974 +0.245636 0.1409607 0.5611974 +0.2686816 0.1409607 0.5611974 +0.2902431 0.1409607 0.5611974 +0.3104189 0.1409607 0.5611974 +0.3293248 0.1409607 0.5611974 +0.3470774 0.1409607 0.5611974 +0.3637862 0.1409607 0.5611974 +0.3795513 0.1409607 0.5611974 +0.3944623 0.1409607 0.5611974 +0.4085988 0.1409607 0.5611974 +0.4220313 0.1409607 0.5611974 +0.4348222 0.1409607 0.5611974 +0.4470264 0.1409607 0.5611974 +0.4586928 0.1409607 0.5611974 +0.4698649 0.1409607 0.5611974 +0.4805811 0.1409607 0.5611974 +0.490876 0.1409607 0.5611974 +0.5007803 0.1409607 0.5611974 +0.510322 0.1409607 0.5611974 +0.5195258 0.1409607 0.5611974 +0.5284142 0.1409607 0.5611974 +0.5370079 0.1409607 0.5611974 +0.5453253 0.1409607 0.5611974 +0.5533834 0.1409607 0.5611974 +0.5611974 0.1409607 0.5611974 +0.5687816 0.1409607 0.5611974 +0.092819 0.1678172 0.5611974 +0.1056428 0.1678172 0.5611974 +0.1201537 0.1678172 0.5611974 +0.1409607 0.1678172 0.5611974 +0.1678172 0.1678172 0.5611974 +0.1950164 0.1678172 0.5611974 +0.2210581 0.1678172 0.5611974 +0.245636 0.1678172 0.5611974 +0.2686816 0.1678172 0.5611974 +0.2902431 0.1678172 0.5611974 +0.3104189 0.1678172 0.5611974 +0.3293248 0.1678172 0.5611974 +0.3470774 0.1678172 0.5611974 +0.3637862 0.1678172 0.5611974 +0.3795513 0.1678172 0.5611974 +0.3944623 0.1678172 0.5611974 +0.4085988 0.1678172 0.5611974 +0.4220313 0.1678172 0.5611974 +0.4348222 0.1678172 0.5611974 +0.4470264 0.1678172 0.5611974 +0.4586928 0.1678172 0.5611974 +0.4698649 0.1678172 0.5611974 +0.4805811 0.1678172 0.5611974 +0.490876 0.1678172 0.5611974 +0.5007803 0.1678172 0.5611974 +0.510322 0.1678172 0.5611974 +0.5195258 0.1678172 0.5611974 +0.5284142 0.1678172 0.5611974 +0.5370079 0.1678172 0.5611974 +0.5453253 0.1678172 0.5611974 +0.5533834 0.1678172 0.5611974 +0.5611974 0.1678172 0.5611974 +0.5687816 0.1678172 0.5611974 +0.092819 0.1950164 0.5611974 +0.1056428 0.1950164 0.5611974 +0.1201537 0.1950164 0.5611974 +0.1409607 0.1950164 0.5611974 +0.1678172 0.1950164 0.5611974 +0.1950164 0.1950164 0.5611974 +0.2210581 0.1950164 0.5611974 +0.245636 0.1950164 0.5611974 +0.2686816 0.1950164 0.5611974 +0.2902431 0.1950164 0.5611974 +0.3104189 0.1950164 0.5611974 +0.3293248 0.1950164 0.5611974 +0.3470774 0.1950164 0.5611974 +0.3637862 0.1950164 0.5611974 +0.3795513 0.1950164 0.5611974 +0.3944623 0.1950164 0.5611974 +0.4085988 0.1950164 0.5611974 +0.4220313 0.1950164 0.5611974 +0.4348222 0.1950164 0.5611974 +0.4470264 0.1950164 0.5611974 +0.4586928 0.1950164 0.5611974 +0.4698649 0.1950164 0.5611974 +0.4805811 0.1950164 0.5611974 +0.490876 0.1950164 0.5611974 +0.5007803 0.1950164 0.5611974 +0.510322 0.1950164 0.5611974 +0.5195258 0.1950164 0.5611974 +0.5284142 0.1950164 0.5611974 +0.5370079 0.1950164 0.5611974 +0.5453253 0.1950164 0.5611974 +0.5533834 0.1950164 0.5611974 +0.5611974 0.1950164 0.5611974 +0.5687816 0.1950164 0.5611974 +0.092819 0.2210581 0.5611974 +0.1056428 0.2210581 0.5611974 +0.1201537 0.2210581 0.5611974 +0.1409607 0.2210581 0.5611974 +0.1678172 0.2210581 0.5611974 +0.1950164 0.2210581 0.5611974 +0.2210581 0.2210581 0.5611974 +0.245636 0.2210581 0.5611974 +0.2686816 0.2210581 0.5611974 +0.2902431 0.2210581 0.5611974 +0.3104189 0.2210581 0.5611974 +0.3293248 0.2210581 0.5611974 +0.3470774 0.2210581 0.5611974 +0.3637862 0.2210581 0.5611974 +0.3795513 0.2210581 0.5611974 +0.3944623 0.2210581 0.5611974 +0.4085988 0.2210581 0.5611974 +0.4220313 0.2210581 0.5611974 +0.4348222 0.2210581 0.5611974 +0.4470264 0.2210581 0.5611974 +0.4586928 0.2210581 0.5611974 +0.4698649 0.2210581 0.5611974 +0.4805811 0.2210581 0.5611974 +0.490876 0.2210581 0.5611974 +0.5007803 0.2210581 0.5611974 +0.510322 0.2210581 0.5611974 +0.5195258 0.2210581 0.5611974 +0.5284142 0.2210581 0.5611974 +0.5370079 0.2210581 0.5611974 +0.5453253 0.2210581 0.5611974 +0.5533834 0.2210581 0.5611974 +0.5611974 0.2210581 0.5611974 +0.5687816 0.2210581 0.5611974 +0.092819 0.245636 0.5611974 +0.1056428 0.245636 0.5611974 +0.1201537 0.245636 0.5611974 +0.1409607 0.245636 0.5611974 +0.1678172 0.245636 0.5611974 +0.1950164 0.245636 0.5611974 +0.2210581 0.245636 0.5611974 +0.245636 0.245636 0.5611974 +0.2686816 0.245636 0.5611974 +0.2902431 0.245636 0.5611974 +0.3104189 0.245636 0.5611974 +0.3293248 0.245636 0.5611974 +0.3470774 0.245636 0.5611974 +0.3637862 0.245636 0.5611974 +0.3795513 0.245636 0.5611974 +0.3944623 0.245636 0.5611974 +0.4085988 0.245636 0.5611974 +0.4220313 0.245636 0.5611974 +0.4348222 0.245636 0.5611974 +0.4470264 0.245636 0.5611974 +0.4586928 0.245636 0.5611974 +0.4698649 0.245636 0.5611974 +0.4805811 0.245636 0.5611974 +0.490876 0.245636 0.5611974 +0.5007803 0.245636 0.5611974 +0.510322 0.245636 0.5611974 +0.5195258 0.245636 0.5611974 +0.5284142 0.245636 0.5611974 +0.5370079 0.245636 0.5611974 +0.5453253 0.245636 0.5611974 +0.5533834 0.245636 0.5611974 +0.5611974 0.245636 0.5611974 +0.5687816 0.245636 0.5611974 +0.092819 0.2686816 0.5611974 +0.1056428 0.2686816 0.5611974 +0.1201537 0.2686816 0.5611974 +0.1409607 0.2686816 0.5611974 +0.1678172 0.2686816 0.5611974 +0.1950164 0.2686816 0.5611974 +0.2210581 0.2686816 0.5611974 +0.245636 0.2686816 0.5611974 +0.2686816 0.2686816 0.5611974 +0.2902431 0.2686816 0.5611974 +0.3104189 0.2686816 0.5611974 +0.3293248 0.2686816 0.5611974 +0.3470774 0.2686816 0.5611974 +0.3637862 0.2686816 0.5611974 +0.3795513 0.2686816 0.5611974 +0.3944623 0.2686816 0.5611974 +0.4085988 0.2686816 0.5611974 +0.4220313 0.2686816 0.5611974 +0.4348222 0.2686816 0.5611974 +0.4470264 0.2686816 0.5611974 +0.4586928 0.2686816 0.5611974 +0.4698649 0.2686816 0.5611974 +0.4805811 0.2686816 0.5611974 +0.490876 0.2686816 0.5611974 +0.5007803 0.2686816 0.5611974 +0.510322 0.2686816 0.5611974 +0.5195258 0.2686816 0.5611974 +0.5284142 0.2686816 0.5611974 +0.5370079 0.2686816 0.5611974 +0.5453253 0.2686816 0.5611974 +0.5533834 0.2686816 0.5611974 +0.5611974 0.2686816 0.5611974 +0.5687816 0.2686816 0.5611974 +0.092819 0.2902431 0.5611974 +0.1056428 0.2902431 0.5611974 +0.1201537 0.2902431 0.5611974 +0.1409607 0.2902431 0.5611974 +0.1678172 0.2902431 0.5611974 +0.1950164 0.2902431 0.5611974 +0.2210581 0.2902431 0.5611974 +0.245636 0.2902431 0.5611974 +0.2686816 0.2902431 0.5611974 +0.2902431 0.2902431 0.5611974 +0.3104189 0.2902431 0.5611974 +0.3293248 0.2902431 0.5611974 +0.3470774 0.2902431 0.5611974 +0.3637862 0.2902431 0.5611974 +0.3795513 0.2902431 0.5611974 +0.3944623 0.2902431 0.5611974 +0.4085988 0.2902431 0.5611974 +0.4220313 0.2902431 0.5611974 +0.4348222 0.2902431 0.5611974 +0.4470264 0.2902431 0.5611974 +0.4586928 0.2902431 0.5611974 +0.4698649 0.2902431 0.5611974 +0.4805811 0.2902431 0.5611974 +0.490876 0.2902431 0.5611974 +0.5007803 0.2902431 0.5611974 +0.510322 0.2902431 0.5611974 +0.5195258 0.2902431 0.5611974 +0.5284142 0.2902431 0.5611974 +0.5370079 0.2902431 0.5611974 +0.5453253 0.2902431 0.5611974 +0.5533834 0.2902431 0.5611974 +0.5611974 0.2902431 0.5611974 +0.5687816 0.2902431 0.5611974 +0.092819 0.3104189 0.5611974 +0.1056428 0.3104189 0.5611974 +0.1201537 0.3104189 0.5611974 +0.1409607 0.3104189 0.5611974 +0.1678172 0.3104189 0.5611974 +0.1950164 0.3104189 0.5611974 +0.2210581 0.3104189 0.5611974 +0.245636 0.3104189 0.5611974 +0.2686816 0.3104189 0.5611974 +0.2902431 0.3104189 0.5611974 +0.3104189 0.3104189 0.5611974 +0.3293248 0.3104189 0.5611974 +0.3470774 0.3104189 0.5611974 +0.3637862 0.3104189 0.5611974 +0.3795513 0.3104189 0.5611974 +0.3944623 0.3104189 0.5611974 +0.4085988 0.3104189 0.5611974 +0.4220313 0.3104189 0.5611974 +0.4348222 0.3104189 0.5611974 +0.4470264 0.3104189 0.5611974 +0.4586928 0.3104189 0.5611974 +0.4698649 0.3104189 0.5611974 +0.4805811 0.3104189 0.5611974 +0.490876 0.3104189 0.5611974 +0.5007803 0.3104189 0.5611974 +0.510322 0.3104189 0.5611974 +0.5195258 0.3104189 0.5611974 +0.5284142 0.3104189 0.5611974 +0.5370079 0.3104189 0.5611974 +0.5453253 0.3104189 0.5611974 +0.5533834 0.3104189 0.5611974 +0.5611974 0.3104189 0.5611974 +0.5687816 0.3104189 0.5611974 +0.092819 0.3293248 0.5611974 +0.1056428 0.3293248 0.5611974 +0.1201537 0.3293248 0.5611974 +0.1409607 0.3293248 0.5611974 +0.1678172 0.3293248 0.5611974 +0.1950164 0.3293248 0.5611974 +0.2210581 0.3293248 0.5611974 +0.245636 0.3293248 0.5611974 +0.2686816 0.3293248 0.5611974 +0.2902431 0.3293248 0.5611974 +0.3104189 0.3293248 0.5611974 +0.3293248 0.3293248 0.5611974 +0.3470774 0.3293248 0.5611974 +0.3637862 0.3293248 0.5611974 +0.3795513 0.3293248 0.5611974 +0.3944623 0.3293248 0.5611974 +0.4085988 0.3293248 0.5611974 +0.4220313 0.3293248 0.5611974 +0.4348222 0.3293248 0.5611974 +0.4470264 0.3293248 0.5611974 +0.4586928 0.3293248 0.5611974 +0.4698649 0.3293248 0.5611974 +0.4805811 0.3293248 0.5611974 +0.490876 0.3293248 0.5611974 +0.5007803 0.3293248 0.5611974 +0.510322 0.3293248 0.5611974 +0.5195258 0.3293248 0.5611974 +0.5284142 0.3293248 0.5611974 +0.5370079 0.3293248 0.5611974 +0.5453253 0.3293248 0.5611974 +0.5533834 0.3293248 0.5611974 +0.5611974 0.3293248 0.5611974 +0.5687816 0.3293248 0.5611974 +0.092819 0.3470774 0.5611974 +0.1056428 0.3470774 0.5611974 +0.1201537 0.3470774 0.5611974 +0.1409607 0.3470774 0.5611974 +0.1678172 0.3470774 0.5611974 +0.1950164 0.3470774 0.5611974 +0.2210581 0.3470774 0.5611974 +0.245636 0.3470774 0.5611974 +0.2686816 0.3470774 0.5611974 +0.2902431 0.3470774 0.5611974 +0.3104189 0.3470774 0.5611974 +0.3293248 0.3470774 0.5611974 +0.3470774 0.3470774 0.5611974 +0.3637862 0.3470774 0.5611974 +0.3795513 0.3470774 0.5611974 +0.3944623 0.3470774 0.5611974 +0.4085988 0.3470774 0.5611974 +0.4220313 0.3470774 0.5611974 +0.4348222 0.3470774 0.5611974 +0.4470264 0.3470774 0.5611974 +0.4586928 0.3470774 0.5611974 +0.4698649 0.3470774 0.5611974 +0.4805811 0.3470774 0.5611974 +0.490876 0.3470774 0.5611974 +0.5007803 0.3470774 0.5611974 +0.510322 0.3470774 0.5611974 +0.5195258 0.3470774 0.5611974 +0.5284142 0.3470774 0.5611974 +0.5370079 0.3470774 0.5611974 +0.5453253 0.3470774 0.5611974 +0.5533834 0.3470774 0.5611974 +0.5611974 0.3470774 0.5611974 +0.5687816 0.3470774 0.5611974 +0.092819 0.3637862 0.5611974 +0.1056428 0.3637862 0.5611974 +0.1201537 0.3637862 0.5611974 +0.1409607 0.3637862 0.5611974 +0.1678172 0.3637862 0.5611974 +0.1950164 0.3637862 0.5611974 +0.2210581 0.3637862 0.5611974 +0.245636 0.3637862 0.5611974 +0.2686816 0.3637862 0.5611974 +0.2902431 0.3637862 0.5611974 +0.3104189 0.3637862 0.5611974 +0.3293248 0.3637862 0.5611974 +0.3470774 0.3637862 0.5611974 +0.3637862 0.3637862 0.5611974 +0.3795513 0.3637862 0.5611974 +0.3944623 0.3637862 0.5611974 +0.4085988 0.3637862 0.5611974 +0.4220313 0.3637862 0.5611974 +0.4348222 0.3637862 0.5611974 +0.4470264 0.3637862 0.5611974 +0.4586928 0.3637862 0.5611974 +0.4698649 0.3637862 0.5611974 +0.4805811 0.3637862 0.5611974 +0.490876 0.3637862 0.5611974 +0.5007803 0.3637862 0.5611974 +0.510322 0.3637862 0.5611974 +0.5195258 0.3637862 0.5611974 +0.5284142 0.3637862 0.5611974 +0.5370079 0.3637862 0.5611974 +0.5453253 0.3637862 0.5611974 +0.5533834 0.3637862 0.5611974 +0.5611974 0.3637862 0.5611974 +0.5687816 0.3637862 0.5611974 +0.092819 0.3795513 0.5611974 +0.1056428 0.3795513 0.5611974 +0.1201537 0.3795513 0.5611974 +0.1409607 0.3795513 0.5611974 +0.1678172 0.3795513 0.5611974 +0.1950164 0.3795513 0.5611974 +0.2210581 0.3795513 0.5611974 +0.245636 0.3795513 0.5611974 +0.2686816 0.3795513 0.5611974 +0.2902431 0.3795513 0.5611974 +0.3104189 0.3795513 0.5611974 +0.3293248 0.3795513 0.5611974 +0.3470774 0.3795513 0.5611974 +0.3637862 0.3795513 0.5611974 +0.3795513 0.3795513 0.5611974 +0.3944623 0.3795513 0.5611974 +0.4085988 0.3795513 0.5611974 +0.4220313 0.3795513 0.5611974 +0.4348222 0.3795513 0.5611974 +0.4470264 0.3795513 0.5611974 +0.4586928 0.3795513 0.5611974 +0.4698649 0.3795513 0.5611974 +0.4805811 0.3795513 0.5611974 +0.490876 0.3795513 0.5611974 +0.5007803 0.3795513 0.5611974 +0.510322 0.3795513 0.5611974 +0.5195258 0.3795513 0.5611974 +0.5284142 0.3795513 0.5611974 +0.5370079 0.3795513 0.5611974 +0.5453253 0.3795513 0.5611974 +0.5533834 0.3795513 0.5611974 +0.5611974 0.3795513 0.5611974 +0.5687816 0.3795513 0.5611974 +0.092819 0.3944623 0.5611974 +0.1056428 0.3944623 0.5611974 +0.1201537 0.3944623 0.5611974 +0.1409607 0.3944623 0.5611974 +0.1678172 0.3944623 0.5611974 +0.1950164 0.3944623 0.5611974 +0.2210581 0.3944623 0.5611974 +0.245636 0.3944623 0.5611974 +0.2686816 0.3944623 0.5611974 +0.2902431 0.3944623 0.5611974 +0.3104189 0.3944623 0.5611974 +0.3293248 0.3944623 0.5611974 +0.3470774 0.3944623 0.5611974 +0.3637862 0.3944623 0.5611974 +0.3795513 0.3944623 0.5611974 +0.3944623 0.3944623 0.5611974 +0.4085988 0.3944623 0.5611974 +0.4220313 0.3944623 0.5611974 +0.4348222 0.3944623 0.5611974 +0.4470264 0.3944623 0.5611974 +0.4586928 0.3944623 0.5611974 +0.4698649 0.3944623 0.5611974 +0.4805811 0.3944623 0.5611974 +0.490876 0.3944623 0.5611974 +0.5007803 0.3944623 0.5611974 +0.510322 0.3944623 0.5611974 +0.5195258 0.3944623 0.5611974 +0.5284142 0.3944623 0.5611974 +0.5370079 0.3944623 0.5611974 +0.5453253 0.3944623 0.5611974 +0.5533834 0.3944623 0.5611974 +0.5611974 0.3944623 0.5611974 +0.5687816 0.3944623 0.5611974 +0.092819 0.4085988 0.5611974 +0.1056428 0.4085988 0.5611974 +0.1201537 0.4085988 0.5611974 +0.1409607 0.4085988 0.5611974 +0.1678172 0.4085988 0.5611974 +0.1950164 0.4085988 0.5611974 +0.2210581 0.4085988 0.5611974 +0.245636 0.4085988 0.5611974 +0.2686816 0.4085988 0.5611974 +0.2902431 0.4085988 0.5611974 +0.3104189 0.4085988 0.5611974 +0.3293248 0.4085988 0.5611974 +0.3470774 0.4085988 0.5611974 +0.3637862 0.4085988 0.5611974 +0.3795513 0.4085988 0.5611974 +0.3944623 0.4085988 0.5611974 +0.4085988 0.4085988 0.5611974 +0.4220313 0.4085988 0.5611974 +0.4348222 0.4085988 0.5611974 +0.4470264 0.4085988 0.5611974 +0.4586928 0.4085988 0.5611974 +0.4698649 0.4085988 0.5611974 +0.4805811 0.4085988 0.5611974 +0.490876 0.4085988 0.5611974 +0.5007803 0.4085988 0.5611974 +0.510322 0.4085988 0.5611974 +0.5195258 0.4085988 0.5611974 +0.5284142 0.4085988 0.5611974 +0.5370079 0.4085988 0.5611974 +0.5453253 0.4085988 0.5611974 +0.5533834 0.4085988 0.5611974 +0.5611974 0.4085988 0.5611974 +0.5687816 0.4085988 0.5611974 +0.092819 0.4220313 0.5611974 +0.1056428 0.4220313 0.5611974 +0.1201537 0.4220313 0.5611974 +0.1409607 0.4220313 0.5611974 +0.1678172 0.4220313 0.5611974 +0.1950164 0.4220313 0.5611974 +0.2210581 0.4220313 0.5611974 +0.245636 0.4220313 0.5611974 +0.2686816 0.4220313 0.5611974 +0.2902431 0.4220313 0.5611974 +0.3104189 0.4220313 0.5611974 +0.3293248 0.4220313 0.5611974 +0.3470774 0.4220313 0.5611974 +0.3637862 0.4220313 0.5611974 +0.3795513 0.4220313 0.5611974 +0.3944623 0.4220313 0.5611974 +0.4085988 0.4220313 0.5611974 +0.4220313 0.4220313 0.5611974 +0.4348222 0.4220313 0.5611974 +0.4470264 0.4220313 0.5611974 +0.4586928 0.4220313 0.5611974 +0.4698649 0.4220313 0.5611974 +0.4805811 0.4220313 0.5611974 +0.490876 0.4220313 0.5611974 +0.5007803 0.4220313 0.5611974 +0.510322 0.4220313 0.5611974 +0.5195258 0.4220313 0.5611974 +0.5284142 0.4220313 0.5611974 +0.5370079 0.4220313 0.5611974 +0.5453253 0.4220313 0.5611974 +0.5533834 0.4220313 0.5611974 +0.5611974 0.4220313 0.5611974 +0.5687816 0.4220313 0.5611974 +0.092819 0.4348222 0.5611974 +0.1056428 0.4348222 0.5611974 +0.1201537 0.4348222 0.5611974 +0.1409607 0.4348222 0.5611974 +0.1678172 0.4348222 0.5611974 +0.1950164 0.4348222 0.5611974 +0.2210581 0.4348222 0.5611974 +0.245636 0.4348222 0.5611974 +0.2686816 0.4348222 0.5611974 +0.2902431 0.4348222 0.5611974 +0.3104189 0.4348222 0.5611974 +0.3293248 0.4348222 0.5611974 +0.3470774 0.4348222 0.5611974 +0.3637862 0.4348222 0.5611974 +0.3795513 0.4348222 0.5611974 +0.3944623 0.4348222 0.5611974 +0.4085988 0.4348222 0.5611974 +0.4220313 0.4348222 0.5611974 +0.4348222 0.4348222 0.5611974 +0.4470264 0.4348222 0.5611974 +0.4586928 0.4348222 0.5611974 +0.4698649 0.4348222 0.5611974 +0.4805811 0.4348222 0.5611974 +0.490876 0.4348222 0.5611974 +0.5007803 0.4348222 0.5611974 +0.510322 0.4348222 0.5611974 +0.5195258 0.4348222 0.5611974 +0.5284142 0.4348222 0.5611974 +0.5370079 0.4348222 0.5611974 +0.5453253 0.4348222 0.5611974 +0.5533834 0.4348222 0.5611974 +0.5611974 0.4348222 0.5611974 +0.5687816 0.4348222 0.5611974 +0.092819 0.4470264 0.5611974 +0.1056428 0.4470264 0.5611974 +0.1201537 0.4470264 0.5611974 +0.1409607 0.4470264 0.5611974 +0.1678172 0.4470264 0.5611974 +0.1950164 0.4470264 0.5611974 +0.2210581 0.4470264 0.5611974 +0.245636 0.4470264 0.5611974 +0.2686816 0.4470264 0.5611974 +0.2902431 0.4470264 0.5611974 +0.3104189 0.4470264 0.5611974 +0.3293248 0.4470264 0.5611974 +0.3470774 0.4470264 0.5611974 +0.3637862 0.4470264 0.5611974 +0.3795513 0.4470264 0.5611974 +0.3944623 0.4470264 0.5611974 +0.4085988 0.4470264 0.5611974 +0.4220313 0.4470264 0.5611974 +0.4348222 0.4470264 0.5611974 +0.4470264 0.4470264 0.5611974 +0.4586928 0.4470264 0.5611974 +0.4698649 0.4470264 0.5611974 +0.4805811 0.4470264 0.5611974 +0.490876 0.4470264 0.5611974 +0.5007803 0.4470264 0.5611974 +0.510322 0.4470264 0.5611974 +0.5195258 0.4470264 0.5611974 +0.5284142 0.4470264 0.5611974 +0.5370079 0.4470264 0.5611974 +0.5453253 0.4470264 0.5611974 +0.5533834 0.4470264 0.5611974 +0.5611974 0.4470264 0.5611974 +0.5687816 0.4470264 0.5611974 +0.092819 0.4586928 0.5611974 +0.1056428 0.4586928 0.5611974 +0.1201537 0.4586928 0.5611974 +0.1409607 0.4586928 0.5611974 +0.1678172 0.4586928 0.5611974 +0.1950164 0.4586928 0.5611974 +0.2210581 0.4586928 0.5611974 +0.245636 0.4586928 0.5611974 +0.2686816 0.4586928 0.5611974 +0.2902431 0.4586928 0.5611974 +0.3104189 0.4586928 0.5611974 +0.3293248 0.4586928 0.5611974 +0.3470774 0.4586928 0.5611974 +0.3637862 0.4586928 0.5611974 +0.3795513 0.4586928 0.5611974 +0.3944623 0.4586928 0.5611974 +0.4085988 0.4586928 0.5611974 +0.4220313 0.4586928 0.5611974 +0.4348222 0.4586928 0.5611974 +0.4470264 0.4586928 0.5611974 +0.4586928 0.4586928 0.5611974 +0.4698649 0.4586928 0.5611974 +0.4805811 0.4586928 0.5611974 +0.490876 0.4586928 0.5611974 +0.5007803 0.4586928 0.5611974 +0.510322 0.4586928 0.5611974 +0.5195258 0.4586928 0.5611974 +0.5284142 0.4586928 0.5611974 +0.5370079 0.4586928 0.5611974 +0.5453253 0.4586928 0.5611974 +0.5533834 0.4586928 0.5611974 +0.5611974 0.4586928 0.5611974 +0.5687816 0.4586928 0.5611974 +0.092819 0.4698649 0.5611974 +0.1056428 0.4698649 0.5611974 +0.1201537 0.4698649 0.5611974 +0.1409607 0.4698649 0.5611974 +0.1678172 0.4698649 0.5611974 +0.1950164 0.4698649 0.5611974 +0.2210581 0.4698649 0.5611974 +0.245636 0.4698649 0.5611974 +0.2686816 0.4698649 0.5611974 +0.2902431 0.4698649 0.5611974 +0.3104189 0.4698649 0.5611974 +0.3293248 0.4698649 0.5611974 +0.3470774 0.4698649 0.5611974 +0.3637862 0.4698649 0.5611974 +0.3795513 0.4698649 0.5611974 +0.3944623 0.4698649 0.5611974 +0.4085988 0.4698649 0.5611974 +0.4220313 0.4698649 0.5611974 +0.4348222 0.4698649 0.5611974 +0.4470264 0.4698649 0.5611974 +0.4586928 0.4698649 0.5611974 +0.4698649 0.4698649 0.5611974 +0.4805811 0.4698649 0.5611974 +0.490876 0.4698649 0.5611974 +0.5007803 0.4698649 0.5611974 +0.510322 0.4698649 0.5611974 +0.5195258 0.4698649 0.5611974 +0.5284142 0.4698649 0.5611974 +0.5370079 0.4698649 0.5611974 +0.5453253 0.4698649 0.5611974 +0.5533834 0.4698649 0.5611974 +0.5611974 0.4698649 0.5611974 +0.5687816 0.4698649 0.5611974 +0.092819 0.4805811 0.5611974 +0.1056428 0.4805811 0.5611974 +0.1201537 0.4805811 0.5611974 +0.1409607 0.4805811 0.5611974 +0.1678172 0.4805811 0.5611974 +0.1950164 0.4805811 0.5611974 +0.2210581 0.4805811 0.5611974 +0.245636 0.4805811 0.5611974 +0.2686816 0.4805811 0.5611974 +0.2902431 0.4805811 0.5611974 +0.3104189 0.4805811 0.5611974 +0.3293248 0.4805811 0.5611974 +0.3470774 0.4805811 0.5611974 +0.3637862 0.4805811 0.5611974 +0.3795513 0.4805811 0.5611974 +0.3944623 0.4805811 0.5611974 +0.4085988 0.4805811 0.5611974 +0.4220313 0.4805811 0.5611974 +0.4348222 0.4805811 0.5611974 +0.4470264 0.4805811 0.5611974 +0.4586928 0.4805811 0.5611974 +0.4698649 0.4805811 0.5611974 +0.4805811 0.4805811 0.5611974 +0.490876 0.4805811 0.5611974 +0.5007803 0.4805811 0.5611974 +0.510322 0.4805811 0.5611974 +0.5195258 0.4805811 0.5611974 +0.5284142 0.4805811 0.5611974 +0.5370079 0.4805811 0.5611974 +0.5453253 0.4805811 0.5611974 +0.5533834 0.4805811 0.5611974 +0.5611974 0.4805811 0.5611974 +0.5687816 0.4805811 0.5611974 +0.092819 0.490876 0.5611974 +0.1056428 0.490876 0.5611974 +0.1201537 0.490876 0.5611974 +0.1409607 0.490876 0.5611974 +0.1678172 0.490876 0.5611974 +0.1950164 0.490876 0.5611974 +0.2210581 0.490876 0.5611974 +0.245636 0.490876 0.5611974 +0.2686816 0.490876 0.5611974 +0.2902431 0.490876 0.5611974 +0.3104189 0.490876 0.5611974 +0.3293248 0.490876 0.5611974 +0.3470774 0.490876 0.5611974 +0.3637862 0.490876 0.5611974 +0.3795513 0.490876 0.5611974 +0.3944623 0.490876 0.5611974 +0.4085988 0.490876 0.5611974 +0.4220313 0.490876 0.5611974 +0.4348222 0.490876 0.5611974 +0.4470264 0.490876 0.5611974 +0.4586928 0.490876 0.5611974 +0.4698649 0.490876 0.5611974 +0.4805811 0.490876 0.5611974 +0.490876 0.490876 0.5611974 +0.5007803 0.490876 0.5611974 +0.510322 0.490876 0.5611974 +0.5195258 0.490876 0.5611974 +0.5284142 0.490876 0.5611974 +0.5370079 0.490876 0.5611974 +0.5453253 0.490876 0.5611974 +0.5533834 0.490876 0.5611974 +0.5611974 0.490876 0.5611974 +0.5687816 0.490876 0.5611974 +0.092819 0.5007803 0.5611974 +0.1056428 0.5007803 0.5611974 +0.1201537 0.5007803 0.5611974 +0.1409607 0.5007803 0.5611974 +0.1678172 0.5007803 0.5611974 +0.1950164 0.5007803 0.5611974 +0.2210581 0.5007803 0.5611974 +0.245636 0.5007803 0.5611974 +0.2686816 0.5007803 0.5611974 +0.2902431 0.5007803 0.5611974 +0.3104189 0.5007803 0.5611974 +0.3293248 0.5007803 0.5611974 +0.3470774 0.5007803 0.5611974 +0.3637862 0.5007803 0.5611974 +0.3795513 0.5007803 0.5611974 +0.3944623 0.5007803 0.5611974 +0.4085988 0.5007803 0.5611974 +0.4220313 0.5007803 0.5611974 +0.4348222 0.5007803 0.5611974 +0.4470264 0.5007803 0.5611974 +0.4586928 0.5007803 0.5611974 +0.4698649 0.5007803 0.5611974 +0.4805811 0.5007803 0.5611974 +0.490876 0.5007803 0.5611974 +0.5007803 0.5007803 0.5611974 +0.510322 0.5007803 0.5611974 +0.5195258 0.5007803 0.5611974 +0.5284142 0.5007803 0.5611974 +0.5370079 0.5007803 0.5611974 +0.5453253 0.5007803 0.5611974 +0.5533834 0.5007803 0.5611974 +0.5611974 0.5007803 0.5611974 +0.5687816 0.5007803 0.5611974 +0.092819 0.510322 0.5611974 +0.1056428 0.510322 0.5611974 +0.1201537 0.510322 0.5611974 +0.1409607 0.510322 0.5611974 +0.1678172 0.510322 0.5611974 +0.1950164 0.510322 0.5611974 +0.2210581 0.510322 0.5611974 +0.245636 0.510322 0.5611974 +0.2686816 0.510322 0.5611974 +0.2902431 0.510322 0.5611974 +0.3104189 0.510322 0.5611974 +0.3293248 0.510322 0.5611974 +0.3470774 0.510322 0.5611974 +0.3637862 0.510322 0.5611974 +0.3795513 0.510322 0.5611974 +0.3944623 0.510322 0.5611974 +0.4085988 0.510322 0.5611974 +0.4220313 0.510322 0.5611974 +0.4348222 0.510322 0.5611974 +0.4470264 0.510322 0.5611974 +0.4586928 0.510322 0.5611974 +0.4698649 0.510322 0.5611974 +0.4805811 0.510322 0.5611974 +0.490876 0.510322 0.5611974 +0.5007803 0.510322 0.5611974 +0.510322 0.510322 0.5611974 +0.5195258 0.510322 0.5611974 +0.5284142 0.510322 0.5611974 +0.5370079 0.510322 0.5611974 +0.5453253 0.510322 0.5611974 +0.5533834 0.510322 0.5611974 +0.5611974 0.510322 0.5611974 +0.5687816 0.510322 0.5611974 +0.092819 0.5195258 0.5611974 +0.1056428 0.5195258 0.5611974 +0.1201537 0.5195258 0.5611974 +0.1409607 0.5195258 0.5611974 +0.1678172 0.5195258 0.5611974 +0.1950164 0.5195258 0.5611974 +0.2210581 0.5195258 0.5611974 +0.245636 0.5195258 0.5611974 +0.2686816 0.5195258 0.5611974 +0.2902431 0.5195258 0.5611974 +0.3104189 0.5195258 0.5611974 +0.3293248 0.5195258 0.5611974 +0.3470774 0.5195258 0.5611974 +0.3637862 0.5195258 0.5611974 +0.3795513 0.5195258 0.5611974 +0.3944623 0.5195258 0.5611974 +0.4085988 0.5195258 0.5611974 +0.4220313 0.5195258 0.5611974 +0.4348222 0.5195258 0.5611974 +0.4470264 0.5195258 0.5611974 +0.4586928 0.5195258 0.5611974 +0.4698649 0.5195258 0.5611974 +0.4805811 0.5195258 0.5611974 +0.490876 0.5195258 0.5611974 +0.5007803 0.5195258 0.5611974 +0.510322 0.5195258 0.5611974 +0.5195258 0.5195258 0.5611974 +0.5284142 0.5195258 0.5611974 +0.5370079 0.5195258 0.5611974 +0.5453253 0.5195258 0.5611974 +0.5533834 0.5195258 0.5611974 +0.5611974 0.5195258 0.5611974 +0.5687816 0.5195258 0.5611974 +0.092819 0.5284142 0.5611974 +0.1056428 0.5284142 0.5611974 +0.1201537 0.5284142 0.5611974 +0.1409607 0.5284142 0.5611974 +0.1678172 0.5284142 0.5611974 +0.1950164 0.5284142 0.5611974 +0.2210581 0.5284142 0.5611974 +0.245636 0.5284142 0.5611974 +0.2686816 0.5284142 0.5611974 +0.2902431 0.5284142 0.5611974 +0.3104189 0.5284142 0.5611974 +0.3293248 0.5284142 0.5611974 +0.3470774 0.5284142 0.5611974 +0.3637862 0.5284142 0.5611974 +0.3795513 0.5284142 0.5611974 +0.3944623 0.5284142 0.5611974 +0.4085988 0.5284142 0.5611974 +0.4220313 0.5284142 0.5611974 +0.4348222 0.5284142 0.5611974 +0.4470264 0.5284142 0.5611974 +0.4586928 0.5284142 0.5611974 +0.4698649 0.5284142 0.5611974 +0.4805811 0.5284142 0.5611974 +0.490876 0.5284142 0.5611974 +0.5007803 0.5284142 0.5611974 +0.510322 0.5284142 0.5611974 +0.5195258 0.5284142 0.5611974 +0.5284142 0.5284142 0.5611974 +0.5370079 0.5284142 0.5611974 +0.5453253 0.5284142 0.5611974 +0.5533834 0.5284142 0.5611974 +0.5611974 0.5284142 0.5611974 +0.5687816 0.5284142 0.5611974 +0.092819 0.5370079 0.5611974 +0.1056428 0.5370079 0.5611974 +0.1201537 0.5370079 0.5611974 +0.1409607 0.5370079 0.5611974 +0.1678172 0.5370079 0.5611974 +0.1950164 0.5370079 0.5611974 +0.2210581 0.5370079 0.5611974 +0.245636 0.5370079 0.5611974 +0.2686816 0.5370079 0.5611974 +0.2902431 0.5370079 0.5611974 +0.3104189 0.5370079 0.5611974 +0.3293248 0.5370079 0.5611974 +0.3470774 0.5370079 0.5611974 +0.3637862 0.5370079 0.5611974 +0.3795513 0.5370079 0.5611974 +0.3944623 0.5370079 0.5611974 +0.4085988 0.5370079 0.5611974 +0.4220313 0.5370079 0.5611974 +0.4348222 0.5370079 0.5611974 +0.4470264 0.5370079 0.5611974 +0.4586928 0.5370079 0.5611974 +0.4698649 0.5370079 0.5611974 +0.4805811 0.5370079 0.5611974 +0.490876 0.5370079 0.5611974 +0.5007803 0.5370079 0.5611974 +0.510322 0.5370079 0.5611974 +0.5195258 0.5370079 0.5611974 +0.5284142 0.5370079 0.5611974 +0.5370079 0.5370079 0.5611974 +0.5453253 0.5370079 0.5611974 +0.5533834 0.5370079 0.5611974 +0.5611974 0.5370079 0.5611974 +0.5687816 0.5370079 0.5611974 +0.092819 0.5453253 0.5611974 +0.1056428 0.5453253 0.5611974 +0.1201537 0.5453253 0.5611974 +0.1409607 0.5453253 0.5611974 +0.1678172 0.5453253 0.5611974 +0.1950164 0.5453253 0.5611974 +0.2210581 0.5453253 0.5611974 +0.245636 0.5453253 0.5611974 +0.2686816 0.5453253 0.5611974 +0.2902431 0.5453253 0.5611974 +0.3104189 0.5453253 0.5611974 +0.3293248 0.5453253 0.5611974 +0.3470774 0.5453253 0.5611974 +0.3637862 0.5453253 0.5611974 +0.3795513 0.5453253 0.5611974 +0.3944623 0.5453253 0.5611974 +0.4085988 0.5453253 0.5611974 +0.4220313 0.5453253 0.5611974 +0.4348222 0.5453253 0.5611974 +0.4470264 0.5453253 0.5611974 +0.4586928 0.5453253 0.5611974 +0.4698649 0.5453253 0.5611974 +0.4805811 0.5453253 0.5611974 +0.490876 0.5453253 0.5611974 +0.5007803 0.5453253 0.5611974 +0.510322 0.5453253 0.5611974 +0.5195258 0.5453253 0.5611974 +0.5284142 0.5453253 0.5611974 +0.5370079 0.5453253 0.5611974 +0.5453253 0.5453253 0.5611974 +0.5533834 0.5453253 0.5611974 +0.5611974 0.5453253 0.5611974 +0.5687816 0.5453253 0.5611974 +0.092819 0.5533834 0.5611974 +0.1056428 0.5533834 0.5611974 +0.1201537 0.5533834 0.5611974 +0.1409607 0.5533834 0.5611974 +0.1678172 0.5533834 0.5611974 +0.1950164 0.5533834 0.5611974 +0.2210581 0.5533834 0.5611974 +0.245636 0.5533834 0.5611974 +0.2686816 0.5533834 0.5611974 +0.2902431 0.5533834 0.5611974 +0.3104189 0.5533834 0.5611974 +0.3293248 0.5533834 0.5611974 +0.3470774 0.5533834 0.5611974 +0.3637862 0.5533834 0.5611974 +0.3795513 0.5533834 0.5611974 +0.3944623 0.5533834 0.5611974 +0.4085988 0.5533834 0.5611974 +0.4220313 0.5533834 0.5611974 +0.4348222 0.5533834 0.5611974 +0.4470264 0.5533834 0.5611974 +0.4586928 0.5533834 0.5611974 +0.4698649 0.5533834 0.5611974 +0.4805811 0.5533834 0.5611974 +0.490876 0.5533834 0.5611974 +0.5007803 0.5533834 0.5611974 +0.510322 0.5533834 0.5611974 +0.5195258 0.5533834 0.5611974 +0.5284142 0.5533834 0.5611974 +0.5370079 0.5533834 0.5611974 +0.5453253 0.5533834 0.5611974 +0.5533834 0.5533834 0.5611974 +0.5611974 0.5533834 0.5611974 +0.5687816 0.5533834 0.5611974 +0.092819 0.5611974 0.5611974 +0.1056428 0.5611974 0.5611974 +0.1201537 0.5611974 0.5611974 +0.1409607 0.5611974 0.5611974 +0.1678172 0.5611974 0.5611974 +0.1950164 0.5611974 0.5611974 +0.2210581 0.5611974 0.5611974 +0.245636 0.5611974 0.5611974 +0.2686816 0.5611974 0.5611974 +0.2902431 0.5611974 0.5611974 +0.3104189 0.5611974 0.5611974 +0.3293248 0.5611974 0.5611974 +0.3470774 0.5611974 0.5611974 +0.3637862 0.5611974 0.5611974 +0.3795513 0.5611974 0.5611974 +0.3944623 0.5611974 0.5611974 +0.4085988 0.5611974 0.5611974 +0.4220313 0.5611974 0.5611974 +0.4348222 0.5611974 0.5611974 +0.4470264 0.5611974 0.5611974 +0.4586928 0.5611974 0.5611974 +0.4698649 0.5611974 0.5611974 +0.4805811 0.5611974 0.5611974 +0.490876 0.5611974 0.5611974 +0.5007803 0.5611974 0.5611974 +0.510322 0.5611974 0.5611974 +0.5195258 0.5611974 0.5611974 +0.5284142 0.5611974 0.5611974 +0.5370079 0.5611974 0.5611974 +0.5453253 0.5611974 0.5611974 +0.5533834 0.5611974 0.5611974 +0.5611974 0.5611974 0.5611974 +0.5687816 0.5611974 0.5611974 +0.092819 0.5687816 0.5611974 +0.1056428 0.5687816 0.5611974 +0.1201537 0.5687816 0.5611974 +0.1409607 0.5687816 0.5611974 +0.1678172 0.5687816 0.5611974 +0.1950164 0.5687816 0.5611974 +0.2210581 0.5687816 0.5611974 +0.245636 0.5687816 0.5611974 +0.2686816 0.5687816 0.5611974 +0.2902431 0.5687816 0.5611974 +0.3104189 0.5687816 0.5611974 +0.3293248 0.5687816 0.5611974 +0.3470774 0.5687816 0.5611974 +0.3637862 0.5687816 0.5611974 +0.3795513 0.5687816 0.5611974 +0.3944623 0.5687816 0.5611974 +0.4085988 0.5687816 0.5611974 +0.4220313 0.5687816 0.5611974 +0.4348222 0.5687816 0.5611974 +0.4470264 0.5687816 0.5611974 +0.4586928 0.5687816 0.5611974 +0.4698649 0.5687816 0.5611974 +0.4805811 0.5687816 0.5611974 +0.490876 0.5687816 0.5611974 +0.5007803 0.5687816 0.5611974 +0.510322 0.5687816 0.5611974 +0.5195258 0.5687816 0.5611974 +0.5284142 0.5687816 0.5611974 +0.5370079 0.5687816 0.5611974 +0.5453253 0.5687816 0.5611974 +0.5533834 0.5687816 0.5611974 +0.5611974 0.5687816 0.5611974 +0.5687816 0.5687816 0.5611974 +0.092819 0.092819 0.5687816 +0.1056428 0.092819 0.5687816 +0.1201537 0.092819 0.5687816 +0.1409607 0.092819 0.5687816 +0.1678172 0.092819 0.5687816 +0.1950164 0.092819 0.5687816 +0.2210581 0.092819 0.5687816 +0.245636 0.092819 0.5687816 +0.2686816 0.092819 0.5687816 +0.2902431 0.092819 0.5687816 +0.3104189 0.092819 0.5687816 +0.3293248 0.092819 0.5687816 +0.3470774 0.092819 0.5687816 +0.3637862 0.092819 0.5687816 +0.3795513 0.092819 0.5687816 +0.3944623 0.092819 0.5687816 +0.4085988 0.092819 0.5687816 +0.4220313 0.092819 0.5687816 +0.4348222 0.092819 0.5687816 +0.4470264 0.092819 0.5687816 +0.4586928 0.092819 0.5687816 +0.4698649 0.092819 0.5687816 +0.4805811 0.092819 0.5687816 +0.490876 0.092819 0.5687816 +0.5007803 0.092819 0.5687816 +0.510322 0.092819 0.5687816 +0.5195258 0.092819 0.5687816 +0.5284142 0.092819 0.5687816 +0.5370079 0.092819 0.5687816 +0.5453253 0.092819 0.5687816 +0.5533834 0.092819 0.5687816 +0.5611974 0.092819 0.5687816 +0.5687816 0.092819 0.5687816 +0.092819 0.1056428 0.5687816 +0.1056428 0.1056428 0.5687816 +0.1201537 0.1056428 0.5687816 +0.1409607 0.1056428 0.5687816 +0.1678172 0.1056428 0.5687816 +0.1950164 0.1056428 0.5687816 +0.2210581 0.1056428 0.5687816 +0.245636 0.1056428 0.5687816 +0.2686816 0.1056428 0.5687816 +0.2902431 0.1056428 0.5687816 +0.3104189 0.1056428 0.5687816 +0.3293248 0.1056428 0.5687816 +0.3470774 0.1056428 0.5687816 +0.3637862 0.1056428 0.5687816 +0.3795513 0.1056428 0.5687816 +0.3944623 0.1056428 0.5687816 +0.4085988 0.1056428 0.5687816 +0.4220313 0.1056428 0.5687816 +0.4348222 0.1056428 0.5687816 +0.4470264 0.1056428 0.5687816 +0.4586928 0.1056428 0.5687816 +0.4698649 0.1056428 0.5687816 +0.4805811 0.1056428 0.5687816 +0.490876 0.1056428 0.5687816 +0.5007803 0.1056428 0.5687816 +0.510322 0.1056428 0.5687816 +0.5195258 0.1056428 0.5687816 +0.5284142 0.1056428 0.5687816 +0.5370079 0.1056428 0.5687816 +0.5453253 0.1056428 0.5687816 +0.5533834 0.1056428 0.5687816 +0.5611974 0.1056428 0.5687816 +0.5687816 0.1056428 0.5687816 +0.092819 0.1201537 0.5687816 +0.1056428 0.1201537 0.5687816 +0.1201537 0.1201537 0.5687816 +0.1409607 0.1201537 0.5687816 +0.1678172 0.1201537 0.5687816 +0.1950164 0.1201537 0.5687816 +0.2210581 0.1201537 0.5687816 +0.245636 0.1201537 0.5687816 +0.2686816 0.1201537 0.5687816 +0.2902431 0.1201537 0.5687816 +0.3104189 0.1201537 0.5687816 +0.3293248 0.1201537 0.5687816 +0.3470774 0.1201537 0.5687816 +0.3637862 0.1201537 0.5687816 +0.3795513 0.1201537 0.5687816 +0.3944623 0.1201537 0.5687816 +0.4085988 0.1201537 0.5687816 +0.4220313 0.1201537 0.5687816 +0.4348222 0.1201537 0.5687816 +0.4470264 0.1201537 0.5687816 +0.4586928 0.1201537 0.5687816 +0.4698649 0.1201537 0.5687816 +0.4805811 0.1201537 0.5687816 +0.490876 0.1201537 0.5687816 +0.5007803 0.1201537 0.5687816 +0.510322 0.1201537 0.5687816 +0.5195258 0.1201537 0.5687816 +0.5284142 0.1201537 0.5687816 +0.5370079 0.1201537 0.5687816 +0.5453253 0.1201537 0.5687816 +0.5533834 0.1201537 0.5687816 +0.5611974 0.1201537 0.5687816 +0.5687816 0.1201537 0.5687816 +0.092819 0.1409607 0.5687816 +0.1056428 0.1409607 0.5687816 +0.1201537 0.1409607 0.5687816 +0.1409607 0.1409607 0.5687816 +0.1678172 0.1409607 0.5687816 +0.1950164 0.1409607 0.5687816 +0.2210581 0.1409607 0.5687816 +0.245636 0.1409607 0.5687816 +0.2686816 0.1409607 0.5687816 +0.2902431 0.1409607 0.5687816 +0.3104189 0.1409607 0.5687816 +0.3293248 0.1409607 0.5687816 +0.3470774 0.1409607 0.5687816 +0.3637862 0.1409607 0.5687816 +0.3795513 0.1409607 0.5687816 +0.3944623 0.1409607 0.5687816 +0.4085988 0.1409607 0.5687816 +0.4220313 0.1409607 0.5687816 +0.4348222 0.1409607 0.5687816 +0.4470264 0.1409607 0.5687816 +0.4586928 0.1409607 0.5687816 +0.4698649 0.1409607 0.5687816 +0.4805811 0.1409607 0.5687816 +0.490876 0.1409607 0.5687816 +0.5007803 0.1409607 0.5687816 +0.510322 0.1409607 0.5687816 +0.5195258 0.1409607 0.5687816 +0.5284142 0.1409607 0.5687816 +0.5370079 0.1409607 0.5687816 +0.5453253 0.1409607 0.5687816 +0.5533834 0.1409607 0.5687816 +0.5611974 0.1409607 0.5687816 +0.5687816 0.1409607 0.5687816 +0.092819 0.1678172 0.5687816 +0.1056428 0.1678172 0.5687816 +0.1201537 0.1678172 0.5687816 +0.1409607 0.1678172 0.5687816 +0.1678172 0.1678172 0.5687816 +0.1950164 0.1678172 0.5687816 +0.2210581 0.1678172 0.5687816 +0.245636 0.1678172 0.5687816 +0.2686816 0.1678172 0.5687816 +0.2902431 0.1678172 0.5687816 +0.3104189 0.1678172 0.5687816 +0.3293248 0.1678172 0.5687816 +0.3470774 0.1678172 0.5687816 +0.3637862 0.1678172 0.5687816 +0.3795513 0.1678172 0.5687816 +0.3944623 0.1678172 0.5687816 +0.4085988 0.1678172 0.5687816 +0.4220313 0.1678172 0.5687816 +0.4348222 0.1678172 0.5687816 +0.4470264 0.1678172 0.5687816 +0.4586928 0.1678172 0.5687816 +0.4698649 0.1678172 0.5687816 +0.4805811 0.1678172 0.5687816 +0.490876 0.1678172 0.5687816 +0.5007803 0.1678172 0.5687816 +0.510322 0.1678172 0.5687816 +0.5195258 0.1678172 0.5687816 +0.5284142 0.1678172 0.5687816 +0.5370079 0.1678172 0.5687816 +0.5453253 0.1678172 0.5687816 +0.5533834 0.1678172 0.5687816 +0.5611974 0.1678172 0.5687816 +0.5687816 0.1678172 0.5687816 +0.092819 0.1950164 0.5687816 +0.1056428 0.1950164 0.5687816 +0.1201537 0.1950164 0.5687816 +0.1409607 0.1950164 0.5687816 +0.1678172 0.1950164 0.5687816 +0.1950164 0.1950164 0.5687816 +0.2210581 0.1950164 0.5687816 +0.245636 0.1950164 0.5687816 +0.2686816 0.1950164 0.5687816 +0.2902431 0.1950164 0.5687816 +0.3104189 0.1950164 0.5687816 +0.3293248 0.1950164 0.5687816 +0.3470774 0.1950164 0.5687816 +0.3637862 0.1950164 0.5687816 +0.3795513 0.1950164 0.5687816 +0.3944623 0.1950164 0.5687816 +0.4085988 0.1950164 0.5687816 +0.4220313 0.1950164 0.5687816 +0.4348222 0.1950164 0.5687816 +0.4470264 0.1950164 0.5687816 +0.4586928 0.1950164 0.5687816 +0.4698649 0.1950164 0.5687816 +0.4805811 0.1950164 0.5687816 +0.490876 0.1950164 0.5687816 +0.5007803 0.1950164 0.5687816 +0.510322 0.1950164 0.5687816 +0.5195258 0.1950164 0.5687816 +0.5284142 0.1950164 0.5687816 +0.5370079 0.1950164 0.5687816 +0.5453253 0.1950164 0.5687816 +0.5533834 0.1950164 0.5687816 +0.5611974 0.1950164 0.5687816 +0.5687816 0.1950164 0.5687816 +0.092819 0.2210581 0.5687816 +0.1056428 0.2210581 0.5687816 +0.1201537 0.2210581 0.5687816 +0.1409607 0.2210581 0.5687816 +0.1678172 0.2210581 0.5687816 +0.1950164 0.2210581 0.5687816 +0.2210581 0.2210581 0.5687816 +0.245636 0.2210581 0.5687816 +0.2686816 0.2210581 0.5687816 +0.2902431 0.2210581 0.5687816 +0.3104189 0.2210581 0.5687816 +0.3293248 0.2210581 0.5687816 +0.3470774 0.2210581 0.5687816 +0.3637862 0.2210581 0.5687816 +0.3795513 0.2210581 0.5687816 +0.3944623 0.2210581 0.5687816 +0.4085988 0.2210581 0.5687816 +0.4220313 0.2210581 0.5687816 +0.4348222 0.2210581 0.5687816 +0.4470264 0.2210581 0.5687816 +0.4586928 0.2210581 0.5687816 +0.4698649 0.2210581 0.5687816 +0.4805811 0.2210581 0.5687816 +0.490876 0.2210581 0.5687816 +0.5007803 0.2210581 0.5687816 +0.510322 0.2210581 0.5687816 +0.5195258 0.2210581 0.5687816 +0.5284142 0.2210581 0.5687816 +0.5370079 0.2210581 0.5687816 +0.5453253 0.2210581 0.5687816 +0.5533834 0.2210581 0.5687816 +0.5611974 0.2210581 0.5687816 +0.5687816 0.2210581 0.5687816 +0.092819 0.245636 0.5687816 +0.1056428 0.245636 0.5687816 +0.1201537 0.245636 0.5687816 +0.1409607 0.245636 0.5687816 +0.1678172 0.245636 0.5687816 +0.1950164 0.245636 0.5687816 +0.2210581 0.245636 0.5687816 +0.245636 0.245636 0.5687816 +0.2686816 0.245636 0.5687816 +0.2902431 0.245636 0.5687816 +0.3104189 0.245636 0.5687816 +0.3293248 0.245636 0.5687816 +0.3470774 0.245636 0.5687816 +0.3637862 0.245636 0.5687816 +0.3795513 0.245636 0.5687816 +0.3944623 0.245636 0.5687816 +0.4085988 0.245636 0.5687816 +0.4220313 0.245636 0.5687816 +0.4348222 0.245636 0.5687816 +0.4470264 0.245636 0.5687816 +0.4586928 0.245636 0.5687816 +0.4698649 0.245636 0.5687816 +0.4805811 0.245636 0.5687816 +0.490876 0.245636 0.5687816 +0.5007803 0.245636 0.5687816 +0.510322 0.245636 0.5687816 +0.5195258 0.245636 0.5687816 +0.5284142 0.245636 0.5687816 +0.5370079 0.245636 0.5687816 +0.5453253 0.245636 0.5687816 +0.5533834 0.245636 0.5687816 +0.5611974 0.245636 0.5687816 +0.5687816 0.245636 0.5687816 +0.092819 0.2686816 0.5687816 +0.1056428 0.2686816 0.5687816 +0.1201537 0.2686816 0.5687816 +0.1409607 0.2686816 0.5687816 +0.1678172 0.2686816 0.5687816 +0.1950164 0.2686816 0.5687816 +0.2210581 0.2686816 0.5687816 +0.245636 0.2686816 0.5687816 +0.2686816 0.2686816 0.5687816 +0.2902431 0.2686816 0.5687816 +0.3104189 0.2686816 0.5687816 +0.3293248 0.2686816 0.5687816 +0.3470774 0.2686816 0.5687816 +0.3637862 0.2686816 0.5687816 +0.3795513 0.2686816 0.5687816 +0.3944623 0.2686816 0.5687816 +0.4085988 0.2686816 0.5687816 +0.4220313 0.2686816 0.5687816 +0.4348222 0.2686816 0.5687816 +0.4470264 0.2686816 0.5687816 +0.4586928 0.2686816 0.5687816 +0.4698649 0.2686816 0.5687816 +0.4805811 0.2686816 0.5687816 +0.490876 0.2686816 0.5687816 +0.5007803 0.2686816 0.5687816 +0.510322 0.2686816 0.5687816 +0.5195258 0.2686816 0.5687816 +0.5284142 0.2686816 0.5687816 +0.5370079 0.2686816 0.5687816 +0.5453253 0.2686816 0.5687816 +0.5533834 0.2686816 0.5687816 +0.5611974 0.2686816 0.5687816 +0.5687816 0.2686816 0.5687816 +0.092819 0.2902431 0.5687816 +0.1056428 0.2902431 0.5687816 +0.1201537 0.2902431 0.5687816 +0.1409607 0.2902431 0.5687816 +0.1678172 0.2902431 0.5687816 +0.1950164 0.2902431 0.5687816 +0.2210581 0.2902431 0.5687816 +0.245636 0.2902431 0.5687816 +0.2686816 0.2902431 0.5687816 +0.2902431 0.2902431 0.5687816 +0.3104189 0.2902431 0.5687816 +0.3293248 0.2902431 0.5687816 +0.3470774 0.2902431 0.5687816 +0.3637862 0.2902431 0.5687816 +0.3795513 0.2902431 0.5687816 +0.3944623 0.2902431 0.5687816 +0.4085988 0.2902431 0.5687816 +0.4220313 0.2902431 0.5687816 +0.4348222 0.2902431 0.5687816 +0.4470264 0.2902431 0.5687816 +0.4586928 0.2902431 0.5687816 +0.4698649 0.2902431 0.5687816 +0.4805811 0.2902431 0.5687816 +0.490876 0.2902431 0.5687816 +0.5007803 0.2902431 0.5687816 +0.510322 0.2902431 0.5687816 +0.5195258 0.2902431 0.5687816 +0.5284142 0.2902431 0.5687816 +0.5370079 0.2902431 0.5687816 +0.5453253 0.2902431 0.5687816 +0.5533834 0.2902431 0.5687816 +0.5611974 0.2902431 0.5687816 +0.5687816 0.2902431 0.5687816 +0.092819 0.3104189 0.5687816 +0.1056428 0.3104189 0.5687816 +0.1201537 0.3104189 0.5687816 +0.1409607 0.3104189 0.5687816 +0.1678172 0.3104189 0.5687816 +0.1950164 0.3104189 0.5687816 +0.2210581 0.3104189 0.5687816 +0.245636 0.3104189 0.5687816 +0.2686816 0.3104189 0.5687816 +0.2902431 0.3104189 0.5687816 +0.3104189 0.3104189 0.5687816 +0.3293248 0.3104189 0.5687816 +0.3470774 0.3104189 0.5687816 +0.3637862 0.3104189 0.5687816 +0.3795513 0.3104189 0.5687816 +0.3944623 0.3104189 0.5687816 +0.4085988 0.3104189 0.5687816 +0.4220313 0.3104189 0.5687816 +0.4348222 0.3104189 0.5687816 +0.4470264 0.3104189 0.5687816 +0.4586928 0.3104189 0.5687816 +0.4698649 0.3104189 0.5687816 +0.4805811 0.3104189 0.5687816 +0.490876 0.3104189 0.5687816 +0.5007803 0.3104189 0.5687816 +0.510322 0.3104189 0.5687816 +0.5195258 0.3104189 0.5687816 +0.5284142 0.3104189 0.5687816 +0.5370079 0.3104189 0.5687816 +0.5453253 0.3104189 0.5687816 +0.5533834 0.3104189 0.5687816 +0.5611974 0.3104189 0.5687816 +0.5687816 0.3104189 0.5687816 +0.092819 0.3293248 0.5687816 +0.1056428 0.3293248 0.5687816 +0.1201537 0.3293248 0.5687816 +0.1409607 0.3293248 0.5687816 +0.1678172 0.3293248 0.5687816 +0.1950164 0.3293248 0.5687816 +0.2210581 0.3293248 0.5687816 +0.245636 0.3293248 0.5687816 +0.2686816 0.3293248 0.5687816 +0.2902431 0.3293248 0.5687816 +0.3104189 0.3293248 0.5687816 +0.3293248 0.3293248 0.5687816 +0.3470774 0.3293248 0.5687816 +0.3637862 0.3293248 0.5687816 +0.3795513 0.3293248 0.5687816 +0.3944623 0.3293248 0.5687816 +0.4085988 0.3293248 0.5687816 +0.4220313 0.3293248 0.5687816 +0.4348222 0.3293248 0.5687816 +0.4470264 0.3293248 0.5687816 +0.4586928 0.3293248 0.5687816 +0.4698649 0.3293248 0.5687816 +0.4805811 0.3293248 0.5687816 +0.490876 0.3293248 0.5687816 +0.5007803 0.3293248 0.5687816 +0.510322 0.3293248 0.5687816 +0.5195258 0.3293248 0.5687816 +0.5284142 0.3293248 0.5687816 +0.5370079 0.3293248 0.5687816 +0.5453253 0.3293248 0.5687816 +0.5533834 0.3293248 0.5687816 +0.5611974 0.3293248 0.5687816 +0.5687816 0.3293248 0.5687816 +0.092819 0.3470774 0.5687816 +0.1056428 0.3470774 0.5687816 +0.1201537 0.3470774 0.5687816 +0.1409607 0.3470774 0.5687816 +0.1678172 0.3470774 0.5687816 +0.1950164 0.3470774 0.5687816 +0.2210581 0.3470774 0.5687816 +0.245636 0.3470774 0.5687816 +0.2686816 0.3470774 0.5687816 +0.2902431 0.3470774 0.5687816 +0.3104189 0.3470774 0.5687816 +0.3293248 0.3470774 0.5687816 +0.3470774 0.3470774 0.5687816 +0.3637862 0.3470774 0.5687816 +0.3795513 0.3470774 0.5687816 +0.3944623 0.3470774 0.5687816 +0.4085988 0.3470774 0.5687816 +0.4220313 0.3470774 0.5687816 +0.4348222 0.3470774 0.5687816 +0.4470264 0.3470774 0.5687816 +0.4586928 0.3470774 0.5687816 +0.4698649 0.3470774 0.5687816 +0.4805811 0.3470774 0.5687816 +0.490876 0.3470774 0.5687816 +0.5007803 0.3470774 0.5687816 +0.510322 0.3470774 0.5687816 +0.5195258 0.3470774 0.5687816 +0.5284142 0.3470774 0.5687816 +0.5370079 0.3470774 0.5687816 +0.5453253 0.3470774 0.5687816 +0.5533834 0.3470774 0.5687816 +0.5611974 0.3470774 0.5687816 +0.5687816 0.3470774 0.5687816 +0.092819 0.3637862 0.5687816 +0.1056428 0.3637862 0.5687816 +0.1201537 0.3637862 0.5687816 +0.1409607 0.3637862 0.5687816 +0.1678172 0.3637862 0.5687816 +0.1950164 0.3637862 0.5687816 +0.2210581 0.3637862 0.5687816 +0.245636 0.3637862 0.5687816 +0.2686816 0.3637862 0.5687816 +0.2902431 0.3637862 0.5687816 +0.3104189 0.3637862 0.5687816 +0.3293248 0.3637862 0.5687816 +0.3470774 0.3637862 0.5687816 +0.3637862 0.3637862 0.5687816 +0.3795513 0.3637862 0.5687816 +0.3944623 0.3637862 0.5687816 +0.4085988 0.3637862 0.5687816 +0.4220313 0.3637862 0.5687816 +0.4348222 0.3637862 0.5687816 +0.4470264 0.3637862 0.5687816 +0.4586928 0.3637862 0.5687816 +0.4698649 0.3637862 0.5687816 +0.4805811 0.3637862 0.5687816 +0.490876 0.3637862 0.5687816 +0.5007803 0.3637862 0.5687816 +0.510322 0.3637862 0.5687816 +0.5195258 0.3637862 0.5687816 +0.5284142 0.3637862 0.5687816 +0.5370079 0.3637862 0.5687816 +0.5453253 0.3637862 0.5687816 +0.5533834 0.3637862 0.5687816 +0.5611974 0.3637862 0.5687816 +0.5687816 0.3637862 0.5687816 +0.092819 0.3795513 0.5687816 +0.1056428 0.3795513 0.5687816 +0.1201537 0.3795513 0.5687816 +0.1409607 0.3795513 0.5687816 +0.1678172 0.3795513 0.5687816 +0.1950164 0.3795513 0.5687816 +0.2210581 0.3795513 0.5687816 +0.245636 0.3795513 0.5687816 +0.2686816 0.3795513 0.5687816 +0.2902431 0.3795513 0.5687816 +0.3104189 0.3795513 0.5687816 +0.3293248 0.3795513 0.5687816 +0.3470774 0.3795513 0.5687816 +0.3637862 0.3795513 0.5687816 +0.3795513 0.3795513 0.5687816 +0.3944623 0.3795513 0.5687816 +0.4085988 0.3795513 0.5687816 +0.4220313 0.3795513 0.5687816 +0.4348222 0.3795513 0.5687816 +0.4470264 0.3795513 0.5687816 +0.4586928 0.3795513 0.5687816 +0.4698649 0.3795513 0.5687816 +0.4805811 0.3795513 0.5687816 +0.490876 0.3795513 0.5687816 +0.5007803 0.3795513 0.5687816 +0.510322 0.3795513 0.5687816 +0.5195258 0.3795513 0.5687816 +0.5284142 0.3795513 0.5687816 +0.5370079 0.3795513 0.5687816 +0.5453253 0.3795513 0.5687816 +0.5533834 0.3795513 0.5687816 +0.5611974 0.3795513 0.5687816 +0.5687816 0.3795513 0.5687816 +0.092819 0.3944623 0.5687816 +0.1056428 0.3944623 0.5687816 +0.1201537 0.3944623 0.5687816 +0.1409607 0.3944623 0.5687816 +0.1678172 0.3944623 0.5687816 +0.1950164 0.3944623 0.5687816 +0.2210581 0.3944623 0.5687816 +0.245636 0.3944623 0.5687816 +0.2686816 0.3944623 0.5687816 +0.2902431 0.3944623 0.5687816 +0.3104189 0.3944623 0.5687816 +0.3293248 0.3944623 0.5687816 +0.3470774 0.3944623 0.5687816 +0.3637862 0.3944623 0.5687816 +0.3795513 0.3944623 0.5687816 +0.3944623 0.3944623 0.5687816 +0.4085988 0.3944623 0.5687816 +0.4220313 0.3944623 0.5687816 +0.4348222 0.3944623 0.5687816 +0.4470264 0.3944623 0.5687816 +0.4586928 0.3944623 0.5687816 +0.4698649 0.3944623 0.5687816 +0.4805811 0.3944623 0.5687816 +0.490876 0.3944623 0.5687816 +0.5007803 0.3944623 0.5687816 +0.510322 0.3944623 0.5687816 +0.5195258 0.3944623 0.5687816 +0.5284142 0.3944623 0.5687816 +0.5370079 0.3944623 0.5687816 +0.5453253 0.3944623 0.5687816 +0.5533834 0.3944623 0.5687816 +0.5611974 0.3944623 0.5687816 +0.5687816 0.3944623 0.5687816 +0.092819 0.4085988 0.5687816 +0.1056428 0.4085988 0.5687816 +0.1201537 0.4085988 0.5687816 +0.1409607 0.4085988 0.5687816 +0.1678172 0.4085988 0.5687816 +0.1950164 0.4085988 0.5687816 +0.2210581 0.4085988 0.5687816 +0.245636 0.4085988 0.5687816 +0.2686816 0.4085988 0.5687816 +0.2902431 0.4085988 0.5687816 +0.3104189 0.4085988 0.5687816 +0.3293248 0.4085988 0.5687816 +0.3470774 0.4085988 0.5687816 +0.3637862 0.4085988 0.5687816 +0.3795513 0.4085988 0.5687816 +0.3944623 0.4085988 0.5687816 +0.4085988 0.4085988 0.5687816 +0.4220313 0.4085988 0.5687816 +0.4348222 0.4085988 0.5687816 +0.4470264 0.4085988 0.5687816 +0.4586928 0.4085988 0.5687816 +0.4698649 0.4085988 0.5687816 +0.4805811 0.4085988 0.5687816 +0.490876 0.4085988 0.5687816 +0.5007803 0.4085988 0.5687816 +0.510322 0.4085988 0.5687816 +0.5195258 0.4085988 0.5687816 +0.5284142 0.4085988 0.5687816 +0.5370079 0.4085988 0.5687816 +0.5453253 0.4085988 0.5687816 +0.5533834 0.4085988 0.5687816 +0.5611974 0.4085988 0.5687816 +0.5687816 0.4085988 0.5687816 +0.092819 0.4220313 0.5687816 +0.1056428 0.4220313 0.5687816 +0.1201537 0.4220313 0.5687816 +0.1409607 0.4220313 0.5687816 +0.1678172 0.4220313 0.5687816 +0.1950164 0.4220313 0.5687816 +0.2210581 0.4220313 0.5687816 +0.245636 0.4220313 0.5687816 +0.2686816 0.4220313 0.5687816 +0.2902431 0.4220313 0.5687816 +0.3104189 0.4220313 0.5687816 +0.3293248 0.4220313 0.5687816 +0.3470774 0.4220313 0.5687816 +0.3637862 0.4220313 0.5687816 +0.3795513 0.4220313 0.5687816 +0.3944623 0.4220313 0.5687816 +0.4085988 0.4220313 0.5687816 +0.4220313 0.4220313 0.5687816 +0.4348222 0.4220313 0.5687816 +0.4470264 0.4220313 0.5687816 +0.4586928 0.4220313 0.5687816 +0.4698649 0.4220313 0.5687816 +0.4805811 0.4220313 0.5687816 +0.490876 0.4220313 0.5687816 +0.5007803 0.4220313 0.5687816 +0.510322 0.4220313 0.5687816 +0.5195258 0.4220313 0.5687816 +0.5284142 0.4220313 0.5687816 +0.5370079 0.4220313 0.5687816 +0.5453253 0.4220313 0.5687816 +0.5533834 0.4220313 0.5687816 +0.5611974 0.4220313 0.5687816 +0.5687816 0.4220313 0.5687816 +0.092819 0.4348222 0.5687816 +0.1056428 0.4348222 0.5687816 +0.1201537 0.4348222 0.5687816 +0.1409607 0.4348222 0.5687816 +0.1678172 0.4348222 0.5687816 +0.1950164 0.4348222 0.5687816 +0.2210581 0.4348222 0.5687816 +0.245636 0.4348222 0.5687816 +0.2686816 0.4348222 0.5687816 +0.2902431 0.4348222 0.5687816 +0.3104189 0.4348222 0.5687816 +0.3293248 0.4348222 0.5687816 +0.3470774 0.4348222 0.5687816 +0.3637862 0.4348222 0.5687816 +0.3795513 0.4348222 0.5687816 +0.3944623 0.4348222 0.5687816 +0.4085988 0.4348222 0.5687816 +0.4220313 0.4348222 0.5687816 +0.4348222 0.4348222 0.5687816 +0.4470264 0.4348222 0.5687816 +0.4586928 0.4348222 0.5687816 +0.4698649 0.4348222 0.5687816 +0.4805811 0.4348222 0.5687816 +0.490876 0.4348222 0.5687816 +0.5007803 0.4348222 0.5687816 +0.510322 0.4348222 0.5687816 +0.5195258 0.4348222 0.5687816 +0.5284142 0.4348222 0.5687816 +0.5370079 0.4348222 0.5687816 +0.5453253 0.4348222 0.5687816 +0.5533834 0.4348222 0.5687816 +0.5611974 0.4348222 0.5687816 +0.5687816 0.4348222 0.5687816 +0.092819 0.4470264 0.5687816 +0.1056428 0.4470264 0.5687816 +0.1201537 0.4470264 0.5687816 +0.1409607 0.4470264 0.5687816 +0.1678172 0.4470264 0.5687816 +0.1950164 0.4470264 0.5687816 +0.2210581 0.4470264 0.5687816 +0.245636 0.4470264 0.5687816 +0.2686816 0.4470264 0.5687816 +0.2902431 0.4470264 0.5687816 +0.3104189 0.4470264 0.5687816 +0.3293248 0.4470264 0.5687816 +0.3470774 0.4470264 0.5687816 +0.3637862 0.4470264 0.5687816 +0.3795513 0.4470264 0.5687816 +0.3944623 0.4470264 0.5687816 +0.4085988 0.4470264 0.5687816 +0.4220313 0.4470264 0.5687816 +0.4348222 0.4470264 0.5687816 +0.4470264 0.4470264 0.5687816 +0.4586928 0.4470264 0.5687816 +0.4698649 0.4470264 0.5687816 +0.4805811 0.4470264 0.5687816 +0.490876 0.4470264 0.5687816 +0.5007803 0.4470264 0.5687816 +0.510322 0.4470264 0.5687816 +0.5195258 0.4470264 0.5687816 +0.5284142 0.4470264 0.5687816 +0.5370079 0.4470264 0.5687816 +0.5453253 0.4470264 0.5687816 +0.5533834 0.4470264 0.5687816 +0.5611974 0.4470264 0.5687816 +0.5687816 0.4470264 0.5687816 +0.092819 0.4586928 0.5687816 +0.1056428 0.4586928 0.5687816 +0.1201537 0.4586928 0.5687816 +0.1409607 0.4586928 0.5687816 +0.1678172 0.4586928 0.5687816 +0.1950164 0.4586928 0.5687816 +0.2210581 0.4586928 0.5687816 +0.245636 0.4586928 0.5687816 +0.2686816 0.4586928 0.5687816 +0.2902431 0.4586928 0.5687816 +0.3104189 0.4586928 0.5687816 +0.3293248 0.4586928 0.5687816 +0.3470774 0.4586928 0.5687816 +0.3637862 0.4586928 0.5687816 +0.3795513 0.4586928 0.5687816 +0.3944623 0.4586928 0.5687816 +0.4085988 0.4586928 0.5687816 +0.4220313 0.4586928 0.5687816 +0.4348222 0.4586928 0.5687816 +0.4470264 0.4586928 0.5687816 +0.4586928 0.4586928 0.5687816 +0.4698649 0.4586928 0.5687816 +0.4805811 0.4586928 0.5687816 +0.490876 0.4586928 0.5687816 +0.5007803 0.4586928 0.5687816 +0.510322 0.4586928 0.5687816 +0.5195258 0.4586928 0.5687816 +0.5284142 0.4586928 0.5687816 +0.5370079 0.4586928 0.5687816 +0.5453253 0.4586928 0.5687816 +0.5533834 0.4586928 0.5687816 +0.5611974 0.4586928 0.5687816 +0.5687816 0.4586928 0.5687816 +0.092819 0.4698649 0.5687816 +0.1056428 0.4698649 0.5687816 +0.1201537 0.4698649 0.5687816 +0.1409607 0.4698649 0.5687816 +0.1678172 0.4698649 0.5687816 +0.1950164 0.4698649 0.5687816 +0.2210581 0.4698649 0.5687816 +0.245636 0.4698649 0.5687816 +0.2686816 0.4698649 0.5687816 +0.2902431 0.4698649 0.5687816 +0.3104189 0.4698649 0.5687816 +0.3293248 0.4698649 0.5687816 +0.3470774 0.4698649 0.5687816 +0.3637862 0.4698649 0.5687816 +0.3795513 0.4698649 0.5687816 +0.3944623 0.4698649 0.5687816 +0.4085988 0.4698649 0.5687816 +0.4220313 0.4698649 0.5687816 +0.4348222 0.4698649 0.5687816 +0.4470264 0.4698649 0.5687816 +0.4586928 0.4698649 0.5687816 +0.4698649 0.4698649 0.5687816 +0.4805811 0.4698649 0.5687816 +0.490876 0.4698649 0.5687816 +0.5007803 0.4698649 0.5687816 +0.510322 0.4698649 0.5687816 +0.5195258 0.4698649 0.5687816 +0.5284142 0.4698649 0.5687816 +0.5370079 0.4698649 0.5687816 +0.5453253 0.4698649 0.5687816 +0.5533834 0.4698649 0.5687816 +0.5611974 0.4698649 0.5687816 +0.5687816 0.4698649 0.5687816 +0.092819 0.4805811 0.5687816 +0.1056428 0.4805811 0.5687816 +0.1201537 0.4805811 0.5687816 +0.1409607 0.4805811 0.5687816 +0.1678172 0.4805811 0.5687816 +0.1950164 0.4805811 0.5687816 +0.2210581 0.4805811 0.5687816 +0.245636 0.4805811 0.5687816 +0.2686816 0.4805811 0.5687816 +0.2902431 0.4805811 0.5687816 +0.3104189 0.4805811 0.5687816 +0.3293248 0.4805811 0.5687816 +0.3470774 0.4805811 0.5687816 +0.3637862 0.4805811 0.5687816 +0.3795513 0.4805811 0.5687816 +0.3944623 0.4805811 0.5687816 +0.4085988 0.4805811 0.5687816 +0.4220313 0.4805811 0.5687816 +0.4348222 0.4805811 0.5687816 +0.4470264 0.4805811 0.5687816 +0.4586928 0.4805811 0.5687816 +0.4698649 0.4805811 0.5687816 +0.4805811 0.4805811 0.5687816 +0.490876 0.4805811 0.5687816 +0.5007803 0.4805811 0.5687816 +0.510322 0.4805811 0.5687816 +0.5195258 0.4805811 0.5687816 +0.5284142 0.4805811 0.5687816 +0.5370079 0.4805811 0.5687816 +0.5453253 0.4805811 0.5687816 +0.5533834 0.4805811 0.5687816 +0.5611974 0.4805811 0.5687816 +0.5687816 0.4805811 0.5687816 +0.092819 0.490876 0.5687816 +0.1056428 0.490876 0.5687816 +0.1201537 0.490876 0.5687816 +0.1409607 0.490876 0.5687816 +0.1678172 0.490876 0.5687816 +0.1950164 0.490876 0.5687816 +0.2210581 0.490876 0.5687816 +0.245636 0.490876 0.5687816 +0.2686816 0.490876 0.5687816 +0.2902431 0.490876 0.5687816 +0.3104189 0.490876 0.5687816 +0.3293248 0.490876 0.5687816 +0.3470774 0.490876 0.5687816 +0.3637862 0.490876 0.5687816 +0.3795513 0.490876 0.5687816 +0.3944623 0.490876 0.5687816 +0.4085988 0.490876 0.5687816 +0.4220313 0.490876 0.5687816 +0.4348222 0.490876 0.5687816 +0.4470264 0.490876 0.5687816 +0.4586928 0.490876 0.5687816 +0.4698649 0.490876 0.5687816 +0.4805811 0.490876 0.5687816 +0.490876 0.490876 0.5687816 +0.5007803 0.490876 0.5687816 +0.510322 0.490876 0.5687816 +0.5195258 0.490876 0.5687816 +0.5284142 0.490876 0.5687816 +0.5370079 0.490876 0.5687816 +0.5453253 0.490876 0.5687816 +0.5533834 0.490876 0.5687816 +0.5611974 0.490876 0.5687816 +0.5687816 0.490876 0.5687816 +0.092819 0.5007803 0.5687816 +0.1056428 0.5007803 0.5687816 +0.1201537 0.5007803 0.5687816 +0.1409607 0.5007803 0.5687816 +0.1678172 0.5007803 0.5687816 +0.1950164 0.5007803 0.5687816 +0.2210581 0.5007803 0.5687816 +0.245636 0.5007803 0.5687816 +0.2686816 0.5007803 0.5687816 +0.2902431 0.5007803 0.5687816 +0.3104189 0.5007803 0.5687816 +0.3293248 0.5007803 0.5687816 +0.3470774 0.5007803 0.5687816 +0.3637862 0.5007803 0.5687816 +0.3795513 0.5007803 0.5687816 +0.3944623 0.5007803 0.5687816 +0.4085988 0.5007803 0.5687816 +0.4220313 0.5007803 0.5687816 +0.4348222 0.5007803 0.5687816 +0.4470264 0.5007803 0.5687816 +0.4586928 0.5007803 0.5687816 +0.4698649 0.5007803 0.5687816 +0.4805811 0.5007803 0.5687816 +0.490876 0.5007803 0.5687816 +0.5007803 0.5007803 0.5687816 +0.510322 0.5007803 0.5687816 +0.5195258 0.5007803 0.5687816 +0.5284142 0.5007803 0.5687816 +0.5370079 0.5007803 0.5687816 +0.5453253 0.5007803 0.5687816 +0.5533834 0.5007803 0.5687816 +0.5611974 0.5007803 0.5687816 +0.5687816 0.5007803 0.5687816 +0.092819 0.510322 0.5687816 +0.1056428 0.510322 0.5687816 +0.1201537 0.510322 0.5687816 +0.1409607 0.510322 0.5687816 +0.1678172 0.510322 0.5687816 +0.1950164 0.510322 0.5687816 +0.2210581 0.510322 0.5687816 +0.245636 0.510322 0.5687816 +0.2686816 0.510322 0.5687816 +0.2902431 0.510322 0.5687816 +0.3104189 0.510322 0.5687816 +0.3293248 0.510322 0.5687816 +0.3470774 0.510322 0.5687816 +0.3637862 0.510322 0.5687816 +0.3795513 0.510322 0.5687816 +0.3944623 0.510322 0.5687816 +0.4085988 0.510322 0.5687816 +0.4220313 0.510322 0.5687816 +0.4348222 0.510322 0.5687816 +0.4470264 0.510322 0.5687816 +0.4586928 0.510322 0.5687816 +0.4698649 0.510322 0.5687816 +0.4805811 0.510322 0.5687816 +0.490876 0.510322 0.5687816 +0.5007803 0.510322 0.5687816 +0.510322 0.510322 0.5687816 +0.5195258 0.510322 0.5687816 +0.5284142 0.510322 0.5687816 +0.5370079 0.510322 0.5687816 +0.5453253 0.510322 0.5687816 +0.5533834 0.510322 0.5687816 +0.5611974 0.510322 0.5687816 +0.5687816 0.510322 0.5687816 +0.092819 0.5195258 0.5687816 +0.1056428 0.5195258 0.5687816 +0.1201537 0.5195258 0.5687816 +0.1409607 0.5195258 0.5687816 +0.1678172 0.5195258 0.5687816 +0.1950164 0.5195258 0.5687816 +0.2210581 0.5195258 0.5687816 +0.245636 0.5195258 0.5687816 +0.2686816 0.5195258 0.5687816 +0.2902431 0.5195258 0.5687816 +0.3104189 0.5195258 0.5687816 +0.3293248 0.5195258 0.5687816 +0.3470774 0.5195258 0.5687816 +0.3637862 0.5195258 0.5687816 +0.3795513 0.5195258 0.5687816 +0.3944623 0.5195258 0.5687816 +0.4085988 0.5195258 0.5687816 +0.4220313 0.5195258 0.5687816 +0.4348222 0.5195258 0.5687816 +0.4470264 0.5195258 0.5687816 +0.4586928 0.5195258 0.5687816 +0.4698649 0.5195258 0.5687816 +0.4805811 0.5195258 0.5687816 +0.490876 0.5195258 0.5687816 +0.5007803 0.5195258 0.5687816 +0.510322 0.5195258 0.5687816 +0.5195258 0.5195258 0.5687816 +0.5284142 0.5195258 0.5687816 +0.5370079 0.5195258 0.5687816 +0.5453253 0.5195258 0.5687816 +0.5533834 0.5195258 0.5687816 +0.5611974 0.5195258 0.5687816 +0.5687816 0.5195258 0.5687816 +0.092819 0.5284142 0.5687816 +0.1056428 0.5284142 0.5687816 +0.1201537 0.5284142 0.5687816 +0.1409607 0.5284142 0.5687816 +0.1678172 0.5284142 0.5687816 +0.1950164 0.5284142 0.5687816 +0.2210581 0.5284142 0.5687816 +0.245636 0.5284142 0.5687816 +0.2686816 0.5284142 0.5687816 +0.2902431 0.5284142 0.5687816 +0.3104189 0.5284142 0.5687816 +0.3293248 0.5284142 0.5687816 +0.3470774 0.5284142 0.5687816 +0.3637862 0.5284142 0.5687816 +0.3795513 0.5284142 0.5687816 +0.3944623 0.5284142 0.5687816 +0.4085988 0.5284142 0.5687816 +0.4220313 0.5284142 0.5687816 +0.4348222 0.5284142 0.5687816 +0.4470264 0.5284142 0.5687816 +0.4586928 0.5284142 0.5687816 +0.4698649 0.5284142 0.5687816 +0.4805811 0.5284142 0.5687816 +0.490876 0.5284142 0.5687816 +0.5007803 0.5284142 0.5687816 +0.510322 0.5284142 0.5687816 +0.5195258 0.5284142 0.5687816 +0.5284142 0.5284142 0.5687816 +0.5370079 0.5284142 0.5687816 +0.5453253 0.5284142 0.5687816 +0.5533834 0.5284142 0.5687816 +0.5611974 0.5284142 0.5687816 +0.5687816 0.5284142 0.5687816 +0.092819 0.5370079 0.5687816 +0.1056428 0.5370079 0.5687816 +0.1201537 0.5370079 0.5687816 +0.1409607 0.5370079 0.5687816 +0.1678172 0.5370079 0.5687816 +0.1950164 0.5370079 0.5687816 +0.2210581 0.5370079 0.5687816 +0.245636 0.5370079 0.5687816 +0.2686816 0.5370079 0.5687816 +0.2902431 0.5370079 0.5687816 +0.3104189 0.5370079 0.5687816 +0.3293248 0.5370079 0.5687816 +0.3470774 0.5370079 0.5687816 +0.3637862 0.5370079 0.5687816 +0.3795513 0.5370079 0.5687816 +0.3944623 0.5370079 0.5687816 +0.4085988 0.5370079 0.5687816 +0.4220313 0.5370079 0.5687816 +0.4348222 0.5370079 0.5687816 +0.4470264 0.5370079 0.5687816 +0.4586928 0.5370079 0.5687816 +0.4698649 0.5370079 0.5687816 +0.4805811 0.5370079 0.5687816 +0.490876 0.5370079 0.5687816 +0.5007803 0.5370079 0.5687816 +0.510322 0.5370079 0.5687816 +0.5195258 0.5370079 0.5687816 +0.5284142 0.5370079 0.5687816 +0.5370079 0.5370079 0.5687816 +0.5453253 0.5370079 0.5687816 +0.5533834 0.5370079 0.5687816 +0.5611974 0.5370079 0.5687816 +0.5687816 0.5370079 0.5687816 +0.092819 0.5453253 0.5687816 +0.1056428 0.5453253 0.5687816 +0.1201537 0.5453253 0.5687816 +0.1409607 0.5453253 0.5687816 +0.1678172 0.5453253 0.5687816 +0.1950164 0.5453253 0.5687816 +0.2210581 0.5453253 0.5687816 +0.245636 0.5453253 0.5687816 +0.2686816 0.5453253 0.5687816 +0.2902431 0.5453253 0.5687816 +0.3104189 0.5453253 0.5687816 +0.3293248 0.5453253 0.5687816 +0.3470774 0.5453253 0.5687816 +0.3637862 0.5453253 0.5687816 +0.3795513 0.5453253 0.5687816 +0.3944623 0.5453253 0.5687816 +0.4085988 0.5453253 0.5687816 +0.4220313 0.5453253 0.5687816 +0.4348222 0.5453253 0.5687816 +0.4470264 0.5453253 0.5687816 +0.4586928 0.5453253 0.5687816 +0.4698649 0.5453253 0.5687816 +0.4805811 0.5453253 0.5687816 +0.490876 0.5453253 0.5687816 +0.5007803 0.5453253 0.5687816 +0.510322 0.5453253 0.5687816 +0.5195258 0.5453253 0.5687816 +0.5284142 0.5453253 0.5687816 +0.5370079 0.5453253 0.5687816 +0.5453253 0.5453253 0.5687816 +0.5533834 0.5453253 0.5687816 +0.5611974 0.5453253 0.5687816 +0.5687816 0.5453253 0.5687816 +0.092819 0.5533834 0.5687816 +0.1056428 0.5533834 0.5687816 +0.1201537 0.5533834 0.5687816 +0.1409607 0.5533834 0.5687816 +0.1678172 0.5533834 0.5687816 +0.1950164 0.5533834 0.5687816 +0.2210581 0.5533834 0.5687816 +0.245636 0.5533834 0.5687816 +0.2686816 0.5533834 0.5687816 +0.2902431 0.5533834 0.5687816 +0.3104189 0.5533834 0.5687816 +0.3293248 0.5533834 0.5687816 +0.3470774 0.5533834 0.5687816 +0.3637862 0.5533834 0.5687816 +0.3795513 0.5533834 0.5687816 +0.3944623 0.5533834 0.5687816 +0.4085988 0.5533834 0.5687816 +0.4220313 0.5533834 0.5687816 +0.4348222 0.5533834 0.5687816 +0.4470264 0.5533834 0.5687816 +0.4586928 0.5533834 0.5687816 +0.4698649 0.5533834 0.5687816 +0.4805811 0.5533834 0.5687816 +0.490876 0.5533834 0.5687816 +0.5007803 0.5533834 0.5687816 +0.510322 0.5533834 0.5687816 +0.5195258 0.5533834 0.5687816 +0.5284142 0.5533834 0.5687816 +0.5370079 0.5533834 0.5687816 +0.5453253 0.5533834 0.5687816 +0.5533834 0.5533834 0.5687816 +0.5611974 0.5533834 0.5687816 +0.5687816 0.5533834 0.5687816 +0.092819 0.5611974 0.5687816 +0.1056428 0.5611974 0.5687816 +0.1201537 0.5611974 0.5687816 +0.1409607 0.5611974 0.5687816 +0.1678172 0.5611974 0.5687816 +0.1950164 0.5611974 0.5687816 +0.2210581 0.5611974 0.5687816 +0.245636 0.5611974 0.5687816 +0.2686816 0.5611974 0.5687816 +0.2902431 0.5611974 0.5687816 +0.3104189 0.5611974 0.5687816 +0.3293248 0.5611974 0.5687816 +0.3470774 0.5611974 0.5687816 +0.3637862 0.5611974 0.5687816 +0.3795513 0.5611974 0.5687816 +0.3944623 0.5611974 0.5687816 +0.4085988 0.5611974 0.5687816 +0.4220313 0.5611974 0.5687816 +0.4348222 0.5611974 0.5687816 +0.4470264 0.5611974 0.5687816 +0.4586928 0.5611974 0.5687816 +0.4698649 0.5611974 0.5687816 +0.4805811 0.5611974 0.5687816 +0.490876 0.5611974 0.5687816 +0.5007803 0.5611974 0.5687816 +0.510322 0.5611974 0.5687816 +0.5195258 0.5611974 0.5687816 +0.5284142 0.5611974 0.5687816 +0.5370079 0.5611974 0.5687816 +0.5453253 0.5611974 0.5687816 +0.5533834 0.5611974 0.5687816 +0.5611974 0.5611974 0.5687816 +0.5687816 0.5611974 0.5687816 +0.092819 0.5687816 0.5687816 +0.1056428 0.5687816 0.5687816 +0.1201537 0.5687816 0.5687816 +0.1409607 0.5687816 0.5687816 +0.1678172 0.5687816 0.5687816 +0.1950164 0.5687816 0.5687816 +0.2210581 0.5687816 0.5687816 +0.245636 0.5687816 0.5687816 +0.2686816 0.5687816 0.5687816 +0.2902431 0.5687816 0.5687816 +0.3104189 0.5687816 0.5687816 +0.3293248 0.5687816 0.5687816 +0.3470774 0.5687816 0.5687816 +0.3637862 0.5687816 0.5687816 +0.3795513 0.5687816 0.5687816 +0.3944623 0.5687816 0.5687816 +0.4085988 0.5687816 0.5687816 +0.4220313 0.5687816 0.5687816 +0.4348222 0.5687816 0.5687816 +0.4470264 0.5687816 0.5687816 +0.4586928 0.5687816 0.5687816 +0.4698649 0.5687816 0.5687816 +0.4805811 0.5687816 0.5687816 +0.490876 0.5687816 0.5687816 +0.5007803 0.5687816 0.5687816 +0.510322 0.5687816 0.5687816 +0.5195258 0.5687816 0.5687816 +0.5284142 0.5687816 0.5687816 +0.5370079 0.5687816 0.5687816 +0.5453253 0.5687816 0.5687816 +0.5533834 0.5687816 0.5687816 +0.5611974 0.5687816 0.5687816 +0.5687816 0.5687816 0.5687816 diff --git a/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube.meta b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube.meta new file mode 100644 index 0000000..7000094 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/Cubes/sRGB_to_Unity_Log_r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0667d6b8b8bbc4241a55ac71faa5de15 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LUTs.meta b/com.unity.postprocessing/PostProcessing/Textures/LUTs.meta new file mode 100644 index 0000000..1f94f0c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LUTs.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 499867e2df2e54e4aad0b9333221f875 +folderAsset: yes +timeCreated: 1473255405 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png b/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png new file mode 100644 index 0000000..b8724d4 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta b/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta new file mode 100644 index 0000000..26b8290 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 4f98e9c96c8a48541b5eb704e92d99b8 +timeCreated: 1494512026 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt.meta b/com.unity.postprocessing/PostProcessing/Textures/LensDirt.meta new file mode 100644 index 0000000..1efaa7c --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LensDirt.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 705e7922061713741885ae52a3e0bea4 +folderAsset: yes +timeCreated: 1472737148 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png new file mode 100644 index 0000000..d90b8c0 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png.meta b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png.meta new file mode 100644 index 0000000..62af47e --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt00.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 69e847bbff1cf5449a4ee0bbd045dbc9 +timeCreated: 1472572785 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png new file mode 100644 index 0000000..eb9efb6 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png.meta b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png.meta new file mode 100644 index 0000000..e735079 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt01.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 3884f7a2d04ffe8409ad9200b275896f +timeCreated: 1472551546 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png new file mode 100644 index 0000000..bc52c2a Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png.meta b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png.meta new file mode 100644 index 0000000..3ccc215 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt02.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: a2960ffde020f27409e070d92fb2e00b +timeCreated: 1472632371 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png new file mode 100644 index 0000000..7ccd8af Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png.meta b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png.meta new file mode 100644 index 0000000..5a8a1fa --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/LensDirt/LensDirt03.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 7a051dbda2d7bc447bee412427cd311e +timeCreated: 1472641925 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SMAA.meta b/com.unity.postprocessing/PostProcessing/Textures/SMAA.meta new file mode 100644 index 0000000..6ece3b5 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SMAA.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 38da3638e0c5cfc4cbafb133be6af039 +folderAsset: yes +timeCreated: 1497735225 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga b/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga new file mode 100644 index 0000000..57f595e Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga.meta new file mode 100644 index 0000000..fb232df --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SMAA/AreaTex.tga.meta @@ -0,0 +1,108 @@ +fileFormatVersion: 2 +guid: 73ec4ae984a0a0f44a2be737e41a6f2f +timeCreated: 1497870375 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga b/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga new file mode 100644 index 0000000..bda78d0 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga.meta new file mode 100644 index 0000000..f863177 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SMAA/SearchTex.tga.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: d99701099481a2f489610e977df6dcbc +timeCreated: 1497870385 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 1 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs.meta b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs.meta new file mode 100644 index 0000000..833d265 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 67d9249960fda4c41b0a23a65573a8a2 +folderAsset: yes +timeCreated: 1473255405 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga new file mode 100644 index 0000000..81828f5 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga.meta new file mode 100644 index 0000000..f47c5b8 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_BlueRed.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 318cbcd94840f1d48aca4d86234dc2e7 +timeCreated: 1473255656 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga new file mode 100644 index 0000000..4dd4db7 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga.meta new file mode 100644 index 0000000..1bec2a9 --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_GreenPurple.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 4a8f054acfbd08043a931cd22760758d +timeCreated: 1473255985 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga new file mode 100644 index 0000000..d67304c Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga.meta new file mode 100644 index 0000000..1077fda --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_PurpleGreen.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 42183971d24cfe443a346e7ec6e83bbb +timeCreated: 1473256088 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga new file mode 100644 index 0000000..43cd826 Binary files /dev/null and b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga differ diff --git a/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga.meta b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga.meta new file mode 100644 index 0000000..fbe39ef --- /dev/null +++ b/com.unity.postprocessing/PostProcessing/Textures/SpectralLUTs/SpectralLut_RedBlue.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: ff5f3317371838d4fa16ac6c2acf2040 +timeCreated: 1473255656 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests.meta b/com.unity.postprocessing/Tests.meta new file mode 100644 index 0000000..93e120b --- /dev/null +++ b/com.unity.postprocessing/Tests.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 882f12b796afd644694351ea7b9e9c00 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/.tests.json b/com.unity.postprocessing/Tests/.tests.json new file mode 100644 index 0000000..760457c --- /dev/null +++ b/com.unity.postprocessing/Tests/.tests.json @@ -0,0 +1,3 @@ +{ + "createSeparatePackage": false +} \ No newline at end of file diff --git a/com.unity.postprocessing/Tests/Editor.meta b/com.unity.postprocessing/Tests/Editor.meta new file mode 100644 index 0000000..c057b52 --- /dev/null +++ b/com.unity.postprocessing/Tests/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 442a14ff04d835d4ca7c574aa4237b07 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs b/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs new file mode 100644 index 0000000..2255720 --- /dev/null +++ b/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs @@ -0,0 +1,10 @@ +using NUnit.Framework; + +class PostProcessEditorTests +{ + [Test] + public void DummyTest() + { + Assert.IsTrue(true); + } +} diff --git a/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs.meta b/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs.meta new file mode 100644 index 0000000..e64ca7f --- /dev/null +++ b/com.unity.postprocessing/Tests/Editor/PostProcessEditorTests.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c235f7d2e7a5d3847b50e73fccc74bab +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef b/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef new file mode 100644 index 0000000..3ff1129 --- /dev/null +++ b/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef @@ -0,0 +1,21 @@ +{ + "name": "Unity.Postprocessing.Editor.Tests", + "references": [ + "Unity.Postprocessing.Runtime", + "Unity.Postprocessing.Editor" + ], + "optionalUnityReferences": [ + "TestAssemblies" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": true, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [ + "UNITY_INCLUDE_TESTS" + ] +} diff --git a/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta b/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta new file mode 100644 index 0000000..25deac8 --- /dev/null +++ b/com.unity.postprocessing/Tests/Editor/Unity.Postprocessing.Editor.Tests.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6d1cd2be5ba39024fb7362476c42d023 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/Runtime.meta b/com.unity.postprocessing/Tests/Runtime.meta new file mode 100644 index 0000000..c22377e --- /dev/null +++ b/com.unity.postprocessing/Tests/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ac1374fad5b72b488c0aa6dc2a6b481 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs b/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs new file mode 100644 index 0000000..422f57f --- /dev/null +++ b/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs @@ -0,0 +1,84 @@ +using System; +using NUnit.Framework; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +class PostProcessingTests +{ + [Test] + public void Profile_AddSettings() + { + var profile = NewProfile(); + + var bloom = profile.AddSettings(); + Assert.IsNotNull(bloom); + + Destroy(profile); + } + + [Test] + public void Profile_HasSettings() + { + var profile = NewProfile(typeof(Bloom)); + + Assert.IsTrue(profile.HasSettings()); + Assert.IsFalse(profile.HasSettings()); + + Destroy(profile); + } + + [Test] + public void Profile_GetSettings() + { + var profile = NewProfile(typeof(Bloom)); + + Assert.IsNotNull(profile.GetSetting()); + Assert.IsNull(profile.GetSetting()); + + Destroy(profile); + } + + [Test] + public void Profile_TryGetSettings() + { + var profile = NewProfile(typeof(Bloom)); + + Bloom outBloom; + var exists = profile.TryGetSettings(out outBloom); + Assert.IsTrue(exists); + Assert.IsNotNull(outBloom); + + ChromaticAberration outChroma; + exists = profile.TryGetSettings(out outChroma); + Assert.IsFalse(exists); + Assert.IsNull(outChroma); + + Destroy(profile); + } + + [Test] + public void Profile_RemoveSettings() + { + var profile = NewProfile(typeof(Bloom)); + + profile.RemoveSettings(); + Assert.IsFalse(profile.HasSettings()); + + Destroy(profile); + } + + static PostProcessProfile NewProfile(params Type[] types) + { + var profile = ScriptableObject.CreateInstance(); + + foreach (var t in types) + profile.AddSettings(t); + + return profile; + } + + static void Destroy(PostProcessProfile profile) + { + UnityEngine.Object.DestroyImmediate(profile); + } +} diff --git a/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs.meta b/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs.meta new file mode 100644 index 0000000..4432157 --- /dev/null +++ b/com.unity.postprocessing/Tests/Runtime/PostProcessingRuntimeTests.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d82acb873f357d046901f9e9f888911a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef b/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef new file mode 100644 index 0000000..c0cb973 --- /dev/null +++ b/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef @@ -0,0 +1,15 @@ +{ + "name": "Unity.Postprocessing.Runtime.Tests", + "references": [ + "Unity.Postprocessing.Runtime" + ], + "optionalUnityReferences": [ + "TestAssemblies" + ], + "defineConstraints": [ + "UNITY_INCLUDE_TESTS" + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": true +} diff --git a/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta b/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta new file mode 100644 index 0000000..153de42 --- /dev/null +++ b/com.unity.postprocessing/Tests/Runtime/Unity.Postprocessing.Runtime.Tests.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f40b851808c81294bac71a52a2bc39de +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.unity.postprocessing/package.json b/com.unity.postprocessing/package.json new file mode 100644 index 0000000..6b5ef79 --- /dev/null +++ b/com.unity.postprocessing/package.json @@ -0,0 +1,11 @@ +{ + "name": "com.unity.postprocessing", + "version": "3.3.1", + "displayName": "Post Processing", + "unity": "2019.4", + "unityRelease": "19f1", + "description": "The post-processing stack (v2) comes with a collection of effects and image filters you can apply to your cameras to improve the visuals of your games.", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } +} diff --git a/com.unity.postprocessing/package.json.meta b/com.unity.postprocessing/package.json.meta new file mode 100644 index 0000000..d4f5433 --- /dev/null +++ b/com.unity.postprocessing/package.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2705889b3a9580a47b334f039bfdcb00 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: